In [17]:
#importing os which gives the ability to interact with the operating system 
import os 
#Importing the nltk library 
import nltk 
#From the nltk library, I am importing stopwords... I may or may not decide to remove stopwords, 
#but I would like to at least look at what nltk has deemed as stopwords. Currently, I am thinking I might only 
#remove words that have 2 letters or less. 
from nltk.corpus import stopwords
#Importing the nltk word tokenizers 
from nltk.tokenize import word_tokenize 
# Importing the nltk stanford word tokenizer 
from nltk.tokenize.stanford import StanfordTokenizer 
#Importing a lemmatizer 
from nltk.stem import WordNetLemmatizer as lemma 
#Porter stemmer 
from nltk.stem.porter import PorterStemmer 

import pandas as pd

#To make things look nicer when I print them 
from pprint import pprint 


#Function 1: Creating a function to read in my files. This function will read in all the files in a specific directory. 
    #inputs: list of all of the file names to read 
    #        the path where the files are located 
    #outputs: a list, each element in the list is the content for each file that was read in. 
def stop_word_removal(item_that_you_want_to_remove_stopwords_in): 
    removed_stopwords = [] 
    stop_words = stopwords.words("english")
    for word in item_that_you_want_to_remove_stopwords_in: 
        if word in stop_words: 
            continue
        if word not in stop_words: 
            removed_stopwords.append(word)
    return(removed_stopwords)
In [18]:
import nltk
from nltk.tokenize import word_tokenize
file = open('moviereview.csv')
movies_df = pd.DataFrame(file)
In [19]:
movies_df.columns = ["review"]
In [20]:
movies_df["review"] = movies_df["review"].str.replace('[^\w\s]', "")
In [21]:
movies_df["review"] = movies_df["review"].str.lower()
In [22]:
movies_df["review"] = movies_df.apply(lambda row: nltk.word_tokenize(row["review"]), axis = 1)
In [23]:
movies_df["review"] = movies_df.apply(lambda row: stop_word_removal(row["review"]), axis = 1)
In [ ]:
 
In [24]:
bag_of_words = [] 
from collections import Counter 
for word in movies_df["review"]: 
    bag_of_words.append(Counter(word))
In [25]:
pprint(bag_of_words)
[Counter({'textreviewclass': 1}),
 Counter({'movie': 6,
          'pretty': 5,
          'film': 5,
          'make': 5,
          'teen': 4,
          'get': 3,
          'even': 3,
          'films': 3,
          'nit': 3,
          'like': 3,
          'two': 2,
          'go': 2,
          'nthey': 2,
          'see': 2,
          'mindfuck': 2,
          'cool': 2,
          'idea': 2,
          'bad': 2,
          'one': 2,
          'since': 2,
          'lost': 2,
          'highway': 2,
          'memento': 2,
          'good': 2,
          'didnt': 2,
          'problem': 2,
          'simply': 2,
          'world': 2,
          'audience': 2,
          'going': 2,
          'nthere': 2,
          'characters': 2,
          'coming': 2,
          'dead': 2,
          'others': 2,
          'look': 2,
          'scenes': 2,
          'things': 2,
          'dont': 2,
          'biggest': 2,
          'secret': 2,
          'hide': 2,
          'minutes': 2,
          'entertaining': 2,
          'really': 2,
          'nthe': 2,
          'part': 2,
          'actually': 2,
          'strangeness': 2,
          'little': 2,
          'sense': 2,
          'still': 2,
          'ni': 2,
          'guess': 2,
          'sagemiller': 2,
          'away': 2,
          'throughout': 2,
          'doesnt': 2,
          'way': 2,
          '710': 2,
          'crow': 2,
          '910': 2,
          '1010': 2,
          'plot': 1,
          'couples': 1,
          'church': 1,
          'party': 1,
          'drink': 1,
          'drive': 1,
          'accident': 1,
          'none': 1,
          'guys': 1,
          'dies': 1,
          'girlfriend': 1,
          'continues': 1,
          'life': 1,
          'nightmares': 1,
          'nwhats': 1,
          'deal': 1,
          'nwatch': 1,
          'sorta': 1,
          'find': 1,
          'ncritique': 1,
          'generation': 1,
          'touches': 1,
          'presents': 1,
          'package': 1,
          'nwhich': 1,
          'makes': 1,
          'review': 1,
          'harder': 1,
          'write': 1,
          'generally': 1,
          'applaud': 1,
          'attempt': 1,
          'break': 1,
          'mold': 1,
          'mess': 1,
          'head': 1,
          'ways': 1,
          'making': 1,
          'types': 1,
          'folks': 1,
          'snag': 1,
          'correctly': 1,
          'seem': 1,
          'taken': 1,
          'neat': 1,
          'concept': 1,
          'executed': 1,
          'terribly': 1,
          'nso': 1,
          'problems': 1,
          'nwell': 1,
          'main': 1,
          'jumbled': 1,
          'starts': 1,
          'normal': 1,
          'downshifts': 1,
          'fantasy': 1,
          'member': 1,
          'whats': 1,
          'dreams': 1,
          'back': 1,
          'strange': 1,
          'apparitions': 1,
          'disappearances': 1,
          'looooot': 1,
          'chase': 1,
          'tons': 1,
          'weird': 1,
          'happen': 1,
          'explained': 1,
          'nnow': 1,
          'personally': 1,
          'mind': 1,
          'trying': 1,
          'unravel': 1,
          'every': 1,
          'give': 1,
          'clue': 1,
          'kind': 1,
          'fed': 1,
          'nits': 1,
          'obviously': 1,
          'got': 1,
          'big': 1,
          'seems': 1,
          'want': 1,
          'completely': 1,
          'final': 1,
          'five': 1,
          'nand': 1,
          'thrilling': 1,
          'engaging': 1,
          'meantime': 1,
          'nnot': 1,
          'sad': 1,
          'arrow': 1,
          'dig': 1,
          'flicks': 1,
          'figured': 1,
          'halfway': 1,
          'point': 1,
          'start': 1,
          'bit': 1,
          'bottom': 1,
          'line': 1,
          'movies': 1,
          'always': 1,
          'sure': 1,
          'given': 1,
          'password': 1,
          'enter': 1,
          'understanding': 1,
          'mean': 1,
          'showing': 1,
          'melissa': 1,
          'running': 1,
          'visions': 1,
          '20': 1,
          'plain': 1,
          'lazy': 1,
          'nokay': 1,
          'nare': 1,
          'people': 1,
          'chasing': 1,
          'know': 1,
          'ndo': 1,
          'need': 1,
          'nhow': 1,
          'giving': 1,
          'us': 1,
          'different': 1,
          'offering': 1,
          'insight': 1,
          'napparently': 1,
          'studio': 1,
          'took': 1,
          'director': 1,
          'chopped': 1,
          'shows': 1,
          'mightve': 1,
          'decent': 1,
          'somewhere': 1,
          'suits': 1,
          'decided': 1,
          'turning': 1,
          'music': 1,
          'video': 1,
          'edge': 1,
          'would': 1,
          'actors': 1,
          'although': 1,
          'wes': 1,
          'bentley': 1,
          'seemed': 1,
          'playing': 1,
          'exact': 1,
          'character': 1,
          'american': 1,
          'beauty': 1,
          'new': 1,
          'neighborhood': 1,
          'nbut': 1,
          'kudos': 1,
          'holds': 1,
          'entire': 1,
          'feeling': 1,
          'unraveling': 1,
          'noverall': 1,
          'stick': 1,
          'entertain': 1,
          'confusing': 1,
          'rarely': 1,
          'excites': 1,
          'feels': 1,
          'redundant': 1,
          'runtime': 1,
          'despite': 1,
          'ending': 1,
          'explanation': 1,
          'craziness': 1,
          'came': 1,
          'noh': 1,
          'horror': 1,
          'slasher': 1,
          'flick': 1,
          'njust': 1,
          'packaged': 1,
          'someone': 1,
          'apparently': 1,
          'assuming': 1,
          'genre': 1,
          'hot': 1,
          'kids': 1,
          'also': 1,
          'wrapped': 1,
          'production': 1,
          'years': 1,
          'ago': 1,
          'sitting': 1,
          'shelves': 1,
          'ever': 1,
          'nwhatever': 1,
          'skip': 1,
          'nwheres': 1,
          'joblo': 1,
          'na': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          '3': 1,
          'blair': 1,
          'witch': 1,
          '2': 1,
          'salvation': 1,
          '410': 1,
          'stir': 1,
          'echoes': 1,
          '810': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'know': 4,
          'baldwin': 3,
          'ship': 3,
          'like': 3,
          'dont': 3,
          'curtis': 2,
          'crew': 2,
          'kick': 2,
          'power': 2,
          'gore': 2,
          'really': 2,
          'course': 2,
          'around': 2,
          'robots': 2,
          'nthe': 2,
          'acting': 2,
          'happy': 1,
          'bastards': 1,
          'quick': 1,
          'review': 1,
          'ndamn': 1,
          'y2k': 1,
          'bug': 1,
          'nits': 1,
          'got': 1,
          'head': 1,
          'start': 1,
          'starring': 1,
          'jamie': 1,
          'lee': 1,
          'another': 1,
          'brother': 1,
          'william': 1,
          'time': 1,
          'story': 1,
          'regarding': 1,
          'tugboat': 1,
          'comes': 1,
          'across': 1,
          'deserted': 1,
          'russian': 1,
          'tech': 1,
          'strangeness': 1,
          'back': 1,
          'nlittle': 1,
          'within': 1,
          'ngoing': 1,
          'bringing': 1,
          'action': 1,
          'sequences': 1,
          'virus': 1,
          'still': 1,
          'feels': 1,
          'empty': 1,
          'going': 1,
          'flash': 1,
          'substance': 1,
          'nwe': 1,
          'middle': 1,
          'nowhere': 1,
          'origin': 1,
          'took': 1,
          'big': 1,
          'pink': 1,
          'flashy': 1,
          'thing': 1,
          'hit': 1,
          'mir': 1,
          'donald': 1,
          'sutherland': 1,
          'stumbling': 1,
          'drunkenly': 1,
          'throughout': 1,
          'nhere': 1,
          'hey': 1,
          'lets': 1,
          'chase': 1,
          'people': 1,
          'average': 1,
          'even': 1,
          'likes': 1,
          'nyoure': 1,
          'likely': 1,
          'get': 1,
          'work': 1,
          'halloween': 1,
          'h20': 1,
          'nsutherland': 1,
          'wasted': 1,
          'well': 1,
          'hes': 1,
          'real': 1,
          'star': 1,
          'stan': 1,
          'winstons': 1,
          'robot': 1,
          'design': 1,
          'schnazzy': 1,
          'cgi': 1,
          'occasional': 1,
          'good': 1,
          'shot': 1,
          'picking': 1,
          'someones': 1,
          'brain': 1,
          'nso': 1,
          'body': 1,
          'parts': 1,
          'turn': 1,
          'heres': 1,
          'notherwise': 1,
          'pretty': 1,
          'much': 1,
          'sunken': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'show': 6,
          'nthe': 6,
          'one': 5,
          'like': 4,
          'television': 4,
          'even': 4,
          'cool': 3,
          'nice': 3,
          'hair': 3,
          'really': 3,
          'characters': 3,
          'audience': 3,
          'make': 2,
          'movie': 2,
          'watch': 2,
          'late': 2,
          '1960s': 2,
          'mod': 2,
          'squad': 2,
          'go': 2,
          'much': 2,
          'music': 2,
          'danes': 2,
          'enough': 2,
          'nit': 2,
          'based': 2,
          'plot': 2,
          'weve': 2,
          'nothing': 2,
          'teenage': 2,
          'mindset': 2,
          'way': 2,
          'us': 2,
          'number': 2,
          'clear': 2,
          'movies': 1,
          'jaded': 1,
          'viewer': 1,
          'thankful': 1,
          'invention': 1,
          'timex': 1,
          'indiglo': 1,
          'nbased': 1,
          'name': 1,
          'tells': 1,
          'tale': 1,
          'three': 1,
          'reformed': 1,
          'criminals': 1,
          'employ': 1,
          'police': 1,
          'undercover': 1,
          'nhowever': 1,
          'things': 1,
          'wrong': 1,
          'evidence': 1,
          'gets': 1,
          'stolen': 1,
          'immediately': 1,
          'suspicion': 1,
          'nof': 1,
          'course': 1,
          'ads': 1,
          'seem': 1,
          'nquick': 1,
          'cuts': 1,
          'claire': 1,
          'cute': 1,
          'outfits': 1,
          'car': 1,
          'chases': 1,
          'stuff': 1,
          'blowing': 1,
          'nsounds': 1,
          'nafter': 1,
          'first': 1,
          'fifteen': 1,
          'minutes': 1,
          'quickly': 1,
          'becomes': 1,
          'apparent': 1,
          'certainly': 1,
          'slick': 1,
          'looking': 1,
          'production': 1,
          'complete': 1,
          'costumes': 1,
          'simply': 1,
          'isnt': 1,
          'best': 1,
          'described': 1,
          'cross': 1,
          'hourlong': 1,
          'cop': 1,
          'video': 1,
          'stretched': 1,
          'span': 1,
          'hour': 1,
          'half': 1,
          'nand': 1,
          'comes': 1,
          'every': 1,
          'single': 1,
          'clich': 1,
          'doesnt': 1,
          'matter': 1,
          'elements': 1,
          'recycled': 1,
          'everything': 1,
          'already': 1,
          'seen': 1,
          'acting': 1,
          'spectacular': 1,
          'sometimes': 1,
          'bordering': 1,
          'wooden': 1,
          'nclaire': 1,
          'omar': 1,
          'epps': 1,
          'deliver': 1,
          'lines': 1,
          'bored': 1,
          'transfers': 1,
          'onto': 1,
          'escape': 1,
          'relatively': 1,
          'unscathed': 1,
          'giovanni': 1,
          'ribisi': 1,
          'plays': 1,
          'resident': 1,
          'crazy': 1,
          'man': 1,
          'ultimately': 1,
          'thing': 1,
          'worth': 1,
          'watching': 1,
          'nunfortunately': 1,
          'hes': 1,
          'save': 1,
          'convoluted': 1,
          'mess': 1,
          'dont': 1,
          'apart': 1,
          'occupying': 1,
          'screen': 1,
          'time': 1,
          'nwith': 1,
          'young': 1,
          'cast': 1,
          'clothes': 1,
          'hip': 1,
          'soundtrack': 1,
          'appears': 1,
          'geared': 1,
          'towards': 1,
          'ndespite': 1,
          'american': 1,
          'r': 1,
          'rating': 1,
          'content': 1,
          'justify': 1,
          'juvenile': 1,
          'older': 1,
          'ninformation': 1,
          'literally': 1,
          'spoonfed': 1,
          'would': 1,
          'hard': 1,
          'instead': 1,
          'telling': 1,
          'dialogue': 1,
          'poorly': 1,
          'written': 1,
          'extremely': 1,
          'predictable': 1,
          'progresses': 1,
          'likely': 1,
          'wont': 1,
          'care': 1,
          'heroes': 1,
          'jeopardy': 1,
          'youll': 1,
          'know': 1,
          'arent': 1,
          'nbasing': 1,
          'nobody': 1,
          'remembers': 1,
          'questionable': 1,
          'wisdom': 1,
          'especially': 1,
          'considers': 1,
          'target': 1,
          'fact': 1,
          'memorable': 1,
          'films': 1,
          'shows': 1,
          'counted': 1,
          'hand': 1,
          'thats': 1,
          'missing': 1,
          'finger': 1,
          'two': 1,
          'times': 1,
          'checked': 1,
          'six': 1,
          'indication': 1,
          'attempt': 1,
          'cash': 1,
          'spending': 1,
          'dollar': 1,
          'judging': 1,
          'rash': 1,
          'awful': 1,
          'teenflicks': 1,
          'seeing': 1,
          'navoid': 1,
          'costs': 1,
          'nneg': 1}),
 Counter({'quest': 5,
          'camelot': 4,
          'much': 3,
          'kayley': 3,
          'arthurs': 3,
          'disneys': 2,
          'cartoon': 2,
          'nthe': 2,
          'animation': 2,
          'neven': 2,
          'table': 2,
          'n': 2,
          'see': 2,
          'footage': 2,
          'one': 2,
          'least': 2,
          'find': 2,
          'though': 2,
          'mess': 2,
          'personality': 2,
          'warner': 1,
          'bros': 1,
          'first': 1,
          'featurelength': 1,
          'fullyanimated': 1,
          'attempt': 1,
          'steal': 1,
          'clout': 1,
          'empire': 1,
          'mouse': 1,
          'reason': 1,
          'worried': 1,
          'recent': 1,
          'challenger': 1,
          'throne': 1,
          'last': 1,
          'falls': 1,
          'promising': 1,
          'flawed': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'production': 1,
          'anastasia': 1,
          'hercules': 1,
          'lively': 1,
          'cast': 1,
          'colorful': 1,
          'palate': 1,
          'beat': 1,
          'handsdown': 1,
          'came': 1,
          'time': 1,
          'crown': 1,
          '1997s': 1,
          'best': 1,
          'piece': 1,
          'nthis': 1,
          'year': 1,
          'contest': 1,
          'pretty': 1,
          'dead': 1,
          'arrival': 1,
          'magic': 1,
          'kingdom': 1,
          'mediocre': 1,
          'thatd': 1,
          'pocahontas': 1,
          'keeping': 1,
          'score': 1,
          'isnt': 1,
          'nearly': 1,
          'dull': 1,
          'story': 1,
          'revolves': 1,
          'around': 1,
          'adventures': 1,
          'freespirited': 1,
          'voiced': 1,
          'jessalyn': 1,
          'gilsig': 1,
          'earlyteen': 1,
          'daughter': 1,
          'belated': 1,
          'knight': 1,
          'king': 1,
          'round': 1,
          'nkayleys': 1,
          'dream': 1,
          'follow': 1,
          'fathers': 1,
          'footsteps': 1,
          'gets': 1,
          'chance': 1,
          'evil': 1,
          'warlord': 1,
          'ruber': 1,
          'gary': 1,
          'oldman': 1,
          'exround': 1,
          'membergonebad': 1,
          'steals': 1,
          'magical': 1,
          'sword': 1,
          'excalibur': 1,
          'accidentally': 1,
          'loses': 1,
          'dangerous': 1,
          'boobytrapped': 1,
          'forest': 1,
          'nwith': 1,
          'help': 1,
          'hunky': 1,
          'blind': 1,
          'timberlanddweller': 1,
          'garrett': 1,
          'carey': 1,
          'elwes': 1,
          'twoheaded': 1,
          'dragon': 1,
          'eric': 1,
          'idle': 1,
          'rickles': 1,
          'thats': 1,
          'always': 1,
          'arguing': 1,
          'might': 1,
          'able': 1,
          'break': 1,
          'medieval': 1,
          'sexist': 1,
          'mold': 1,
          'prove': 1,
          'worth': 1,
          'fighter': 1,
          'side': 1,
          'missing': 1,
          'pure': 1,
          'showmanship': 1,
          'essential': 1,
          'element': 1,
          'ever': 1,
          'expected': 1,
          'climb': 1,
          'high': 1,
          'ranks': 1,
          'disney': 1,
          'ntheres': 1,
          'nothing': 1,
          'differentiates': 1,
          'something': 1,
          'youd': 1,
          'given': 1,
          'saturday': 1,
          'morning': 1,
          'subpar': 1,
          'instantly': 1,
          'forgettable': 1,
          'songs': 1,
          'poorlyintegrated': 1,
          'computerized': 1,
          'compare': 1,
          'garretts': 1,
          'runin': 1,
          'angry': 1,
          'ogre': 1,
          'hercs': 1,
          'battle': 1,
          'hydra': 1,
          'ni': 1,
          'rest': 1,
          'case': 1,
          'characters': 1,
          'stink': 1,
          'none': 1,
          'remotely': 1,
          'interesting': 1,
          'film': 1,
          'becomes': 1,
          'race': 1,
          'outbland': 1,
          'others': 1,
          'nin': 1,
          'end': 1,
          'tie': 1,
          'win': 1,
          'nthat': 1,
          'dragons': 1,
          'comedy': 1,
          'shtick': 1,
          'awfully': 1,
          'cloying': 1,
          'shows': 1,
          'signs': 1,
          'pulse': 1,
          'nat': 1,
          'fans': 1,
          'early90s': 1,
          'tgif': 1,
          'television': 1,
          'lineup': 1,
          'thrilled': 1,
          'jaleel': 1,
          'urkel': 1,
          'white': 1,
          'bronson': 1,
          'balki': 1,
          'pinchot': 1,
          'sharing': 1,
          'na': 1,
          'scenes': 1,
          'nicely': 1,
          'realized': 1,
          'im': 1,
          'loss': 1,
          'recall': 1,
          'enough': 1,
          'specific': 1,
          'actors': 1,
          'providing': 1,
          'voice': 1,
          'talent': 1,
          'enthusiastic': 1,
          'paired': 1,
          'singers': 1,
          'dont': 1,
          'sound': 1,
          'thing': 1,
          'like': 1,
          'big': 1,
          'musical': 1,
          'moments': 1,
          'jane': 1,
          'seymour': 1,
          'celine': 1,
          'dion': 1,
          'nbut': 1,
          'must': 1,
          'strain': 1,
          'good': 1,
          'naside': 1,
          'fact': 1,
          'children': 1,
          'probably': 1,
          'bored': 1,
          'watching': 1,
          'adults': 1,
          'grievous': 1,
          'error': 1,
          'complete': 1,
          'lack': 1,
          'nand': 1,
          'learn': 1,
          'goes': 1,
          'long': 1,
          'way': 1,
          'nneg': 1}),
 Counter({'stalked': 6,
          'daryl': 6,
          'stalker': 6,
          'nstalked': 5,
          'though': 5,
          'brooke': 5,
          'even': 4,
          'house': 4,
          'another': 3,
          'one': 3,
          'nthe': 3,
          'story': 3,
          'course': 3,
          'obvious': 3,
          'door': 3,
          'man': 2,
          'boy': 2,
          'restauranteur': 2,
          'pictures': 2,
          'type': 2,
          'film': 2,
          'may': 2,
          'typically': 2,
          'stars': 2,
          'nudity': 2,
          'cable': 2,
          'psycho': 2,
          'rejected': 2,
          'much': 2,
          'suspense': 2,
          'opening': 2,
          'credits': 2,
          'narrator': 2,
          'stalkers': 2,
          'actor': 2,
          'underwood': 2,
          'nof': 2,
          'nif': 2,
          'movie': 2,
          'bit': 2,
          'victim': 2,
          'around': 2,
          'tries': 2,
          'plans': 2,
          'pet': 2,
          'found': 2,
          'guess': 2,
          'adequate': 2,
          'bad': 2,
          'either': 2,
          'dabo': 2,
          'ditzy': 2,
          'toolbox': 2,
          'front': 2,
          'synopsis': 1,
          'mentally': 1,
          'unstable': 1,
          'undergoing': 1,
          'psychotherapy': 1,
          'saves': 1,
          'potentially': 1,
          'fatal': 1,
          'accident': 1,
          'falls': 1,
          'love': 1,
          'boys': 1,
          'mother': 1,
          'fledgling': 1,
          'nunsuccessfully': 1,
          'attempting': 1,
          'gain': 1,
          'womans': 1,
          'favor': 1,
          'takes': 1,
          'kills': 1,
          'number': 1,
          'people': 1,
          'way': 1,
          'ncomments': 1,
          'yet': 1,
          'seemingly': 1,
          'endless': 1,
          'string': 1,
          'spurnedpsychosgettingtheirrevenge': 1,
          'movies': 1,
          'stable': 1,
          'category': 1,
          '1990s': 1,
          'industry': 1,
          'theatrical': 1,
          'directtovideo': 1,
          'ntheir': 1,
          'proliferation': 1,
          'due': 1,
          'part': 1,
          'fact': 1,
          'theyre': 1,
          'inexpensive': 1,
          'produce': 1,
          'special': 1,
          'effects': 1,
          'big': 1,
          'name': 1,
          'serve': 1,
          'vehicles': 1,
          'flash': 1,
          'allowing': 1,
          'frequent': 1,
          'latenight': 1,
          'television': 1,
          'wavers': 1,
          'slightly': 1,
          'norm': 1,
          'respect': 1,
          'never': 1,
          'actually': 1,
          'affair': 1,
          'contrary': 1,
          'hes': 1,
          'rather': 1,
          'quickly': 1,
          'exlover': 1,
          'exwife': 1,
          'exhusband': 1,
          'nother': 1,
          'redundant': 1,
          'entry': 1,
          'doomed': 1,
          'collect': 1,
          'dust': 1,
          'video': 1,
          'shelves': 1,
          'viewed': 1,
          'midnight': 1,
          'provide': 1,
          'sets': 1,
          'ninterspersed': 1,
          'throughout': 1,
          'instance': 1,
          'serioussounding': 1,
          'spouts': 1,
          'statistics': 1,
          'ponders': 1,
          'cause': 1,
          'stalk': 1,
          'implicitly': 1,
          'implied': 1,
          'men': 1,
          'shown': 1,
          'screen': 1,
          'nafter': 1,
          'snapshot': 1,
          'jay': 1,
          'appears': 1,
          'states': 1,
          'gleason': 1,
          'tells': 1,
          'audience': 1,
          'really': 1,
          'daniels': 1,
          'meant': 1,
          'called': 1,
          'nokay': 1,
          'know': 1,
          'starts': 1,
          'guesswork': 1,
          'required': 1,
          'proceeds': 1,
          'begins': 1,
          'sequence': 1,
          'contrived': 1,
          'quite': 1,
          'brings': 1,
          'together': 1,
          'ndaryl': 1,
          'obsesses': 1,
          'follows': 1,
          'woo': 1,
          'nultimately': 1,
          'become': 1,
          'desperate': 1,
          'elaborate': 1,
          'nthese': 1,
          'include': 1,
          'alltime': 1,
          'psychoinlove': 1,
          'cliche': 1,
          'murdered': 1,
          'nfor': 1,
          'reason': 1,
          'genres': 1,
          'films': 1,
          'require': 1,
          'dead': 1,
          'exception': 1,
          'cat': 1,
          'time': 1,
          'shower': 1,
          'nevents': 1,
          'like': 1,
          'lead': 1,
          'inevitable': 1,
          'showdown': 1,
          'survives': 1,
          'invariably': 1,
          'always': 1,
          'youll': 1,
          'conclusion': 1,
          'turkey': 1,
          'nstalkeds': 1,
          'cast': 1,
          'uniformly': 1,
          'anything': 1,
          'write': 1,
          'home': 1,
          'also': 1,
          'njay': 1,
          'turns': 1,
          'toward': 1,
          'melodrama': 1,
          'nhe': 1,
          'overdoes': 1,
          'words': 1,
          'still': 1,
          'manages': 1,
          'creepy': 1,
          'enough': 1,
          'pass': 1,
          'demands': 1,
          'nmaryam': 1,
          'close': 1,
          'star': 1,
          'played': 1,
          'bond': 1,
          'chick': 1,
          'living': 1,
          'daylights': 1,
          'equally': 1,
          'title': 1,
          'seems': 1,
          'times': 1,
          'strong': 1,
          'independent': 1,
          'businessowner': 1,
          'nbrooke': 1,
          'needs': 1,
          'however': 1,
          'plot': 1,
          'proceed': 1,
          'ntoward': 1,
          'end': 1,
          'example': 1,
          'suspicions': 1,
          'nto': 1,
          'ensure': 1,
          'wont': 1,
          'use': 1,
          'excuse': 1,
          'see': 1,
          'decides': 1,
          'return': 1,
          'left': 1,
          'place': 1,
          'ndoes': 1,
          'leave': 1,
          'answers': 1,
          'nshe': 1,
          'opens': 1,
          'wanders': 1,
          'nwhen': 1,
          'returns': 1,
          'enters': 1,
          'heroine': 1,
          'danger': 1,
          'nsomehow': 1,
          'car': 1,
          'parked': 1,
          'right': 1,
          'oblivious': 1,
          'presence': 1,
          'inside': 1,
          'whole': 1,
          'episode': 1,
          'places': 1,
          'incredible': 1,
          'strain': 1,
          'audiences': 1,
          'suspension': 1,
          'disbelief': 1,
          'questions': 1,
          'validity': 1,
          'characters': 1,
          'intelligence': 1,
          'receives': 1,
          'two': 1,
          'highly': 1,
          'derivative': 1,
          'somewhat': 1,
          'boring': 1,
          'watched': 1,
          'nrated': 1,
          'r': 1,
          'mostly': 1,
          'several': 1,
          'murder': 1,
          'scenes': 1,
          'brief': 1,
          'strip': 1,
          'bar': 1,
          'offensive': 1,
          'many': 1,
          'thrillers': 1,
          'genre': 1,
          'youre': 1,
          'mood': 1,
          'good': 1,
          'stake': 1,
          'something': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'mars': 13,
          'film': 7,
          'ghosts': 7,
          'precinct': 6,
          'flashback': 6,
          'carpenter': 5,
          '4': 5,
          'assault': 4,
          '13': 4,
          'horror': 4,
          'many': 3,
          'films': 3,
          '0': 3,
          'scenes': 3,
          'something': 3,
          'nghosts': 3,
          'alien': 3,
          'really': 3,
          'changed': 3,
          'time': 3,
          'much': 3,
          'nthe': 3,
          'within': 3,
          'better': 3,
          '2176': 2,
          'planet': 2,
          'police': 2,
          'face': 2,
          'menace': 2,
          'lot': 2,
          'story': 2,
          'njohn': 2,
          'previous': 2,
          'fight': 2,
          'make': 2,
          'movie': 2,
          'humans': 2,
          'surprisingly': 2,
          'made': 2,
          'pieces': 2,
          'nit': 2,
          'good': 2,
          'takes': 2,
          'place': 2,
          'nsociety': 2,
          'little': 2,
          'women': 2,
          'control': 2,
          'carpenters': 2,
          '9': 2,
          'somewhat': 2,
          'martian': 2,
          'mining': 2,
          'ninstead': 2,
          'criminal': 2,
          'behave': 2,
          'entirely': 2,
          'night': 2,
          'red': 2,
          'give': 2,
          'looks': 2,
          'mission': 2,
          'scale': 2,
          'capsule': 1,
          'taking': 1,
          'custody': 1,
          'accused': 1,
          'murderer': 1,
          'title': 1,
          'nthere': 1,
          'fighting': 1,
          'whole': 1,
          'otherwise': 1,
          'reprises': 1,
          'ideas': 1,
          'especially': 1,
          'new': 1,
          'comes': 1,
          'homage': 1,
          'n': 1,
          'apparently': 1,
          'believes': 1,
          'action': 1,
          'people': 1,
          'horrible': 1,
          'nfor': 1,
          'writer': 1,
          'director': 1,
          'supposedly': 1,
          'expert': 1,
          'bad': 1,
          'mistake': 1,
          'called': 1,
          'drawn': 1,
          'lowpowered': 1,
          'nin': 1,
          'addition': 1,
          'anybody': 1,
          'john': 1,
          'would': 1,
          'grounds': 1,
          'sue': 1,
          'nthis': 1,
          'chock': 1,
          'full': 1,
          'taken': 1,
          'thing': 1,
          'prince': 1,
          'darkness': 1,
          'fact': 1,
          'surprising': 1,
          'managed': 1,
          'fit': 1,
          'work': 1,
          'admittedly': 1,
          'novel': 1,
          'way': 1,
          'nbut': 1,
          'still': 1,
          'science': 1,
          'fiction': 1,
          'experience': 1,
          'year': 1,
          'nmars': 1,
          'mostly': 1,
          'terraformed': 1,
          'walk': 1,
          'surface': 1,
          'without': 1,
          'breathing': 1,
          'gear': 1,
          'budget': 1,
          'never': 1,
          'mentioned': 1,
          'gravity': 1,
          'increased': 1,
          'somehow': 1,
          'earthnormal': 1,
          'making': 1,
          'easier': 1,
          'bit': 1,
          'advanced': 1,
          'napparently': 1,
          'culture': 1,
          'positions': 1,
          'nand': 1,
          'view': 1,
          'mess': 1,
          'things': 1,
          'stagnated': 1,
          'female': 1,
          'beyond': 1,
          'minor': 1,
          'technological': 1,
          'advances': 1,
          'society': 1,
          'less': 1,
          '175': 1,
          'years': 1,
          'might': 1,
          'expect': 1,
          'change': 1,
          'ten': 1,
          'basic': 1,
          'plot': 1,
          'common': 1,
          'except': 1,
          'yes': 1,
          'replaced': 1,
          'tacky': 1,
          'looking': 1,
          'rundown': 1,
          'colony': 1,
          'napolean': 1,
          'wilson': 1,
          'desolation': 1,
          'williams': 1,
          'facing': 1,
          'hoodlums': 1,
          'automatic': 1,
          'weapons': 1,
          'well': 1,
          'nbecause': 1,
          'nature': 1,
          'manner': 1,
          'essentially': 1,
          'human': 1,
          'savages': 1,
          'another': 1,
          'lapse': 1,
          'imagination': 1,
          'told': 1,
          'filmed': 1,
          'almost': 1,
          'tones': 1,
          'yellow': 1,
          'black': 1,
          'ncarpenter': 1,
          'manages': 1,
          'us': 1,
          'powerful': 1,
          'opening': 1,
          'scene': 1,
          'showing': 1,
          'train': 1,
          'rushing': 1,
          'sound': 1,
          'music': 1,
          'heavy': 1,
          'beat': 1,
          'nsadly': 1,
          'follows': 1,
          'buildup': 1,
          'terror': 1,
          'creates': 1,
          'like': 1,
          'fugitive': 1,
          'wannabes': 1,
          'rock': 1,
          'band': 1,
          'kiss': 1,
          'nhis': 1,
          'idea': 1,
          'building': 1,
          'suspense': 1,
          'bunch': 1,
          'sudden': 1,
          'jump': 1,
          'sucker': 1,
          'viewer': 1,
          'thinking': 1,
          'scary': 1,
          'happening': 1,
          'prove': 1,
          'boring': 1,
          'nthese': 1,
          'standard': 1,
          'haunted': 1,
          'house': 1,
          'shock': 1,
          'effects': 1,
          'require': 1,
          'great': 1,
          'talent': 1,
          'audience': 1,
          'nsomewhat': 1,
          'newer': 1,
          'also': 1,
          'unimpressive': 1,
          'cgi': 1,
          'digital': 1,
          'decapitations': 1,
          'fights': 1,
          'nwithin': 1,
          'short': 1,
          'stretch': 1,
          'seen': 1,
          'release': 1,
          'nafter': 1,
          'panned': 1,
          'reviewers': 1,
          'goes': 1,
          'ni': 1,
          'rate': 1,
          '10': 1,
          'nfollowing': 1,
          'showed': 1,
          'wife': 1,
          'liked': 1,
          'moderately': 1,
          'classic': 1,
          'nher': 1,
          'comment': 1,
          'seeing': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'8mm': 6,
          'films': 4,
          'like': 4,
          'schumacher': 4,
          'nis': 3,
          'sick': 3,
          'people': 3,
          'see': 3,
          'snuff': 3,
          'nthe': 3,
          'film': 3,
          'rather': 3,
          'really': 2,
          'hardcore': 2,
          'murder': 2,
          'influence': 2,
          'want': 2,
          'nim': 2,
          'talking': 2,
          'batman': 2,
          'time': 2,
          'certainly': 2,
          'nand': 2,
          'unpleasant': 2,
          'nthere': 2,
          'life': 2,
          'cage': 2,
          'welles': 2,
          'nwelles': 2,
          'look': 2,
          'face': 2,
          'ask': 1,
          'eight': 1,
          'millimeter': 1,
          'wholesome': 1,
          'surveillance': 1,
          'man': 1,
          'loses': 1,
          'sight': 1,
          'values': 1,
          'becoming': 1,
          'enmeshed': 1,
          'seedy': 1,
          'sleazy': 1,
          'underworld': 1,
          'pornography': 1,
          'business': 1,
          'bubbling': 1,
          'beneath': 1,
          'surface': 1,
          'bigtown': 1,
          'americana': 1,
          'theres': 1,
          'sordid': 1,
          'world': 1,
          'depraved': 1,
          'wont': 1,
          'necessarily': 1,
          'stop': 1,
          'short': 1,
          'order': 1,
          'satisfy': 1,
          'twisted': 1,
          'desires': 1,
          'position': 1,
          'making': 1,
          'kinds': 1,
          'demented': 1,
          'supposed': 1,
          'documentaries': 1,
          'victims': 1,
          'brutalized': 1,
          'killed': 1,
          'camera': 1,
          'director': 1,
          'joel': 1,
          'nwith': 1,
          'recent': 1,
          'run': 1,
          'big': 1,
          'budget': 1,
          'movies': 1,
          'credit': 1,
          'robin': 1,
          'kill': 1,
          'forever': 1,
          'client': 1,
          'kind': 1,
          'something': 1,
          'nprobably': 1,
          'first': 1,
          'twothirds': 1,
          'unwind': 1,
          'fairly': 1,
          'conventional': 1,
          'missing': 1,
          'persons': 1,
          'drama': 1,
          'albeit': 1,
          'particularly': 1,
          'unsavory': 1,
          'core': 1,
          'nthen': 1,
          'threatening': 1,
          'along': 1,
          'explodes': 1,
          'violence': 1,
          'think': 1,
          'finally': 1,
          'tags': 1,
          'ridiculous': 1,
          'selfrighteous': 1,
          'finale': 1,
          'drags': 1,
          'whole': 1,
          'experience': 1,
          'even': 1,
          'ntrust': 1,
          'better': 1,
          'ways': 1,
          'waste': 1,
          'two': 1,
          'hours': 1,
          'nnicolas': 1,
          'snake': 1,
          'eyes': 1,
          'plays': 1,
          'private': 1,
          'investigator': 1,
          'tom': 1,
          'hired': 1,
          'wealthy': 1,
          'philadelphia': 1,
          'widow': 1,
          'determine': 1,
          'whether': 1,
          'reel': 1,
          'found': 1,
          'late': 1,
          'husbands': 1,
          'safe': 1,
          'documents': 1,
          'young': 1,
          'girls': 1,
          'goes': 1,
          'assignment': 1,
          'matteroffactly': 1,
          'pieces': 1,
          'puzzle': 1,
          'fall': 1,
          'place': 1,
          'neatly': 1,
          'almost': 1,
          'dont': 1,
          'need': 1,
          'specialized': 1,
          'skills': 1,
          'training': 1,
          'makes': 1,
          'easy': 1,
          'cops': 1,
          'obviously': 1,
          'never': 1,
          'toilet': 1,
          'tanks': 1,
          'clues': 1,
          'deeper': 1,
          'digs': 1,
          'investigation': 1,
          'obsessed': 1,
          'becomes': 1,
          'george': 1,
          'c': 1,
          'scott': 1,
          'paul': 1,
          'schraders': 1,
          'noccasionally': 1,
          'little': 1,
          'flickering': 1,
          'sound': 1,
          'whirs': 1,
          'head': 1,
          'sprockets': 1,
          'winding': 1,
          'projector': 1,
          'reminding': 1,
          'task': 1,
          'hints': 1,
          'taking': 1,
          'toll': 1,
          'lovely': 1,
          'wife': 1,
          'played': 1,
          'catherine': 1,
          'keener': 1,
          'frustrated': 1,
          'husband': 1,
          'spending': 1,
          'cleveland': 1,
          'ugly': 1,
          'splitlevel': 1,
          'home': 1,
          'harrisburg': 1,
          'pa': 1,
          'n': 1,
          'doesnt': 1,
          'condemn': 1,
          'condone': 1,
          'subject': 1,
          'matter': 1,
          'exploits': 1,
          'irony': 1,
          'course': 1,
          'seven': 1,
          'scribe': 1,
          'andrew': 1,
          'kevin': 1,
          'walkers': 1,
          'vision': 1,
          'lane': 1,
          'limited': 1,
          'show': 1,
          'rrated': 1,
          'firstrun': 1,
          'hollywood': 1,
          'product': 1,
          'nso': 1,
          'snippets': 1,
          'lot': 1,
          'footage': 1,
          'nicolas': 1,
          'covering': 1,
          'horror': 1,
          'nlater': 1,
          'turn': 1,
          'joaquin': 1,
          'phoenix': 1,
          'whos': 1,
          'quite': 1,
          'good': 1,
          'far': 1,
          'interesting': 1,
          'character': 1,
          'adult': 1,
          'bookstore': 1,
          'flunky': 1,
          'max': 1,
          'california': 1,
          'cover': 1,
          'horrid': 1,
          'thing': 1,
          'screened': 1,
          'nall': 1,
          'get': 1,
          'familiar': 1,
          'yet': 1,
          'offensive': 1,
          'revelation': 1,
          'sexual': 1,
          'deviants': 1,
          'indeed': 1,
          'monsters': 1,
          'everyday': 1,
          'nneither': 1,
          'super': 1,
          'standard': 1,
          'shocking': 1,
          'banality': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'grant': 6,
          'grants': 5,
          'months': 4,
          'annoying': 4,
          'nervous': 4,
          'nine': 3,
          'laughs': 3,
          'hugh': 3,
          'smiles': 3,
          'slapstick': 3,
          '60': 3,
          'pregnant': 3,
          'asshole': 3,
          'jokes': 3,
          'thats': 2,
          'even': 2,
          'nits': 2,
          'terrible': 2,
          'mess': 2,
          'referring': 2,
          'nnot': 2,
          'flutters': 2,
          'pass': 2,
          'nbut': 2,
          'since': 2,
          'head': 2,
          'scene': 2,
          'paid': 2,
          'included': 2,
          'robin': 2,
          'williams': 2,
          'girlfriend': 2,
          'exchange': 2,
          'nnine': 2,
          'humor': 2,
          'nhugh': 2,
          'plays': 2,
          'child': 2,
          'nso': 2,
          'could': 2,
          'unfunny': 2,
          'nkid': 2,
          'dads': 2,
          'eyelashes': 2,
          'smile': 2,
          'ten': 2,
          'year': 2,
          'olds': 2,
          'way': 2,
          'nthe': 2,
          'played': 2,
          'arnold': 2,
          'one': 2,
          'character': 2,
          'exactly': 1,
          'long': 1,
          'felt': 1,
          'nthere': 1,
          'werent': 1,
          'starring': 1,
          'man': 1,
          'mr': 1,
          'huge': 1,
          'dork': 1,
          'whole': 1,
          'oralsexprostitution': 1,
          'thing': 1,
          'bugs': 1,
          'fact': 1,
          'adam': 1,
          'sandlerannoying': 1,
          'talking': 1,
          'jim': 1,
          'carreyannoying': 1,
          'nsince': 1,
          'eye': 1,
          'acting': 1,
          'hand': 1,
          'really': 1,
          'bad': 1,
          'fistfight': 1,
          'delivery': 1,
          'room': 1,
          'culminating': 1,
          'joan': 1,
          'cusacks': 1,
          'lapa': 1,
          'obscene': 1,
          'double': 1,
          'entendres': 1,
          'obstetrician': 1,
          'tells': 1,
          'big': 1,
          'pussy': 1,
          'course': 1,
          'size': 1,
          'cat': 1,
          'hairs': 1,
          'coat': 1,
          'nonetheless': 1,
          'comedy': 1,
          'predictable': 1,
          'cookiecutter': 1,
          'originality': 1,
          'plot': 1,
          'successful': 1,
          'psychiatrist': 1,
          'nwhy': 1,
          'psychologist': 1,
          'scriptwriters': 1,
          'inject': 1,
          'following': 1,
          'ngrant': 1,
          'offers': 1,
          'responds': 1,
          'english': 1,
          'accent': 1,
          'ithinkiactuallyhave': 1,
          'talent': 1,
          'attitude': 1,
          'possibly': 1,
          'elaborate': 1,
          '_huge_': 1,
          'nmore': 1,
          'like': 1,
          'beside': 1,
          'point': 1,
          'includes': 1,
          'many': 1,
          'needlessly': 1,
          'stupid': 1,
          'get': 1,
          'audience': 1,
          'everyone': 1,
          'else': 1,
          'shakes': 1,
          'disbelief': 1,
          'anyway': 1,
          'finds': 1,
          'usual': 1,
          'reaction': 1,
          'fluttered': 1,
          'nthis': 1,
          'paves': 1,
          'every': 1,
          'possible': 1,
          'pregnancychild': 1,
          'birth': 1,
          'gag': 1,
          'book': 1,
          'especially': 1,
          'equally': 1,
          'friends': 1,
          'wife': 1,
          'also': 1,
          'friend': 1,
          'tom': 1,
          'provides': 1,
          'cacophonous': 1,
          'none': 1,
          'funny': 1,
          'beats': 1,
          'costumed': 1,
          'arnie': 1,
          'dinosaur': 1,
          'draw': 1,
          'parallels': 1,
          'toy': 1,
          'store': 1,
          'interesting': 1,
          'jeff': 1,
          'goldblum': 1,
          'hid': 1,
          'away': 1,
          'somewhere': 1,
          'dreadful': 1,
          'hideaway': 1,
          'artist': 1,
          'fear': 1,
          'simultaneous': 1,
          'longing': 1,
          'commitment': 1,
          'russian': 1,
          'doctor': 1,
          'recently': 1,
          'decided': 1,
          'switch': 1,
          'veterinary': 1,
          'medicine': 1,
          'obstetrics': 1,
          'much': 1,
          'nhis': 1,
          'onejoke': 1,
          'old': 1,
          'foreignguywhomispronouncesenglish': 1,
          'stereotype': 1,
          'someone': 1,
          'say': 1,
          'yakov': 1,
          'smirnov': 1,
          'nthats': 1,
          'favorite': 1,
          'vodka': 1,
          'hence': 1,
          'line': 1,
          'time': 1,
          'take': 1,
          'look': 1,
          'volvo': 1,
          'another': 1,
          'nasty': 1,
          'unamusing': 1,
          'joke': 1,
          'except': 1,
          'goes': 1,
          'right': 1,
          'heads': 1,
          'adults': 1,
          'simultaneously': 1,
          'groan': 1,
          'complete': 1,
          'failure': 1,
          'low': 1,
          'intelligence': 1,
          'high': 1,
          'loud': 1,
          'failed': 1,
          'uninspired': 1,
          'lunacy': 1,
          'sunset': 1,
          'boulevard': 1,
          'arrest': 1,
          'please': 1,
          'caughtwithhispantsdown': 1,
          'may': 1,
          'bring': 1,
          'people': 1,
          'theaters': 1,
          'certainly': 1,
          'wont': 1,
          'leave': 1,
          'faces': 1,
          '90': 1,
          'minutes': 1,
          'neverything': 1,
          'forced': 1,
          'unauthentic': 1,
          'anyone': 1,
          'q': 1,
          'nover': 1,
          '80': 1,
          'sorry': 1,
          'know': 1,
          'wasted': 1,
          'money': 1,
          'unfulfilled': 1,
          'desire': 1,
          'least': 1,
          'didnt': 1,
          'spend': 1,
          'bucks': 1,
          'nneg': 1}),
 Counter({'aberdeen': 7,
          'skarsg': 5,
          'tomas': 5,
          'rd': 4,
          'time': 3,
          'kaisa': 3,
          'rampling': 3,
          'hospital': 3,
          'movies': 3,
          'nif': 3,
          'signs': 3,
          'wonders': 3,
          'road': 2,
          'trip': 2,
          'drama': 2,
          'strindberg': 2,
          'relationships': 2,
          'secrets': 2,
          'unable': 2,
          'far': 2,
          'lena': 2,
          'headey': 2,
          'years': 2,
          'even': 2,
          'norway': 2,
          'mother': 2,
          'bed': 2,
          'nin': 2,
          'ndespite': 2,
          'figure': 2,
          'theyre': 2,
          'naberdeen': 2,
          'paying': 2,
          'attention': 2,
          'much': 2,
          'nits': 2,
          'film': 2,
          'films': 2,
          'nthe': 2,
          'never': 2,
          'call': 1,
          'walking': 1,
          'wounded': 1,
          'nstellan': 1,
          'plays': 1,
          'convincingly': 1,
          'zombified': 1,
          'drunken': 1,
          'loser': 1,
          'difficult': 1,
          'spend': 1,
          'nearly': 1,
          'two': 1,
          'hours': 1,
          'screen': 1,
          'smelly': 1,
          'boozedout': 1,
          'presence': 1,
          'nyet': 1,
          'everreliable': 1,
          'swedish': 1,
          'actor': 1,
          'adds': 1,
          'depth': 1,
          'significance': 1,
          'otherwise': 1,
          'plodding': 1,
          'forgettable': 1,
          'sentimental': 1,
          'painfully': 1,
          'mundane': 1,
          'european': 1,
          'nplaywright': 1,
          'august': 1,
          'built': 1,
          'career': 1,
          'families': 1,
          'paralyzed': 1,
          'express': 1,
          'longings': 1,
          'hour': 1,
          'late': 1,
          'nthats': 1,
          'accurate': 1,
          'reflection': 1,
          'strives': 1,
          'focusing': 1,
          'pairing': 1,
          'alcoholic': 1,
          'father': 1,
          'alienated': 1,
          'openly': 1,
          'hostile': 1,
          'yuppie': 1,
          'daughter': 1,
          'gossip': 1,
          'nthey': 1,
          'havent': 1,
          'spoken': 1,
          'wouldnt': 1,
          'making': 1,
          'long': 1,
          'scotland': 1,
          'automobile': 1,
          'werent': 1,
          'kaisas': 1,
          'charlotte': 1,
          'sand': 1,
          'rotting': 1,
          'away': 1,
          'cancer': 1,
          'soap': 1,
          'opera': 1,
          'twist': 1,
          'days': 1,
          'live': 1,
          'n': 1,
          'right': 1,
          'ntoo': 1,
          'blitzed': 1,
          'step': 1,
          'foot': 1,
          'plane': 1,
          'hits': 1,
          'open': 1,
          'nloathing': 1,
          'make': 1,
          'periodic': 1,
          'stops': 1,
          'puke': 1,
          'dashboard': 1,
          'pass': 1,
          'whenever': 1,
          'isnt': 1,
          'muttering': 1,
          'rotten': 1,
          'kid': 1,
          'turned': 1,
          'sloshed': 1,
          'viewpoint': 1,
          'recognizes': 1,
          'apple': 1,
          'hasnt': 1,
          'fallen': 1,
          'tree': 1,
          'nkaisa': 1,
          'gets': 1,
          'nosebleeds': 1,
          'snorting': 1,
          'coke': 1,
          'sabotages': 1,
          'personal': 1,
          'indifference': 1,
          'restrain': 1,
          'quick': 1,
          'vindictive': 1,
          'temper': 1,
          'naint': 1,
          'pair': 1,
          'nunable': 1,
          'find': 1,
          'true': 1,
          'notes': 1,
          'unspoken': 1,
          'familial': 1,
          'empathy': 1,
          'onenote': 1,
          'repetitively': 1,
          'bitchy': 1,
          'dialogue': 1,
          'screenwriters': 1,
          'kristin': 1,
          'amundsen': 1,
          'hans': 1,
          'petter': 1,
          'moland': 1,
          'fabricate': 1,
          'series': 1,
          'contrivances': 1,
          'propel': 1,
          'events': 1,
          'forward': 1,
          'lost': 1,
          'money': 1,
          'roving': 1,
          'street': 1,
          'hooligans': 1,
          'looking': 1,
          'drunks': 1,
          'kick': 1,
          'around': 1,
          'nosy': 1,
          'cops': 1,
          'flat': 1,
          'tires': 1,
          'schematic': 1,
          'convenient': 1,
          'narrative': 1,
          'nby': 1,
          'reach': 1,
          'unveil': 1,
          'dark': 1,
          'past': 1,
          'simplistic': 1,
          'devices': 1,
          'trivialize': 1,
          'fatherdaughter': 1,
          'conflict': 1,
          'also': 1,
          'mainstays': 1,
          'many': 1,
          'bad': 1,
          'wannabe': 1,
          'nthis': 1,
          'revelation': 1,
          'exists': 1,
          'purely': 1,
          'sake': 1,
          'doesnt': 1,
          'know': 1,
          'else': 1,
          'go': 1,
          'nweak': 1,
          'unimaginative': 1,
          'casting': 1,
          'thwarts': 1,
          'pivotal': 1,
          'role': 1,
          'stronger': 1,
          'actress': 1,
          'perhaps': 1,
          'could': 1,
          'able': 1,
          'coast': 1,
          'performances': 1,
          'moody': 1,
          'haunting': 1,
          'cinematography': 1,
          'rendering': 1,
          'pastoral': 1,
          'ghost': 1,
          'world': 1,
          'reference': 1,
          'certain': 1,
          'superior': 1,
          'american': 1,
          'indie': 1,
          'flick': 1,
          'intentional': 1,
          'nheadeys': 1,
          'busy': 1,
          'acting': 1,
          'using': 1,
          'face': 1,
          'furrowed': 1,
          'brow': 1,
          'convey': 1,
          'every': 1,
          'last': 1,
          'twitch': 1,
          'insouciance': 1,
          'maybe': 1,
          'shed': 1,
          'less': 1,
          'reveal': 1,
          'worthwhile': 1,
          'compare': 1,
          'earlier': 1,
          'released': 1,
          '2001': 1,
          'jonathan': 1,
          'nossiters': 1,
          'captivating': 1,
          'played': 1,
          'disturbed': 1,
          'parental': 1,
          'figures': 1,
          'bound': 1,
          'ceremonial': 1,
          'wedlock': 1,
          'differences': 1,
          'way': 1,
          'characters': 1,
          'presented': 1,
          'significant': 1,
          'luminous': 1,
          'diva': 1,
          'preening': 1,
          'static': 1,
          'rds': 1,
          'solid': 1,
          'performance': 1,
          'pathetic': 1,
          'drunk': 1,
          'given': 1,
          'chance': 1,
          'emote': 1,
          'anything': 1,
          'besides': 1,
          'catatonic': 1,
          'sorrow': 1,
          'ntheres': 1,
          'genuine': 1,
          'ferocity': 1,
          'sexually': 1,
          'charged': 1,
          'frisson': 1,
          'understated': 1,
          'confrontations': 1,
          'allowing': 1,
          'suggest': 1,
          'gray': 1,
          'zone': 1,
          'complications': 1,
          'accompany': 1,
          'torn': 1,
          'romance': 1,
          'stifled': 1,
          'curiosity': 1,
          'nnossiters': 1,
          'thoroughly': 1,
          'explores': 1,
          'neurotic': 1,
          'territory': 1,
          'addition': 1,
          'delving': 1,
          'americanization': 1,
          'greece': 1,
          'use': 1,
          'mysticism': 1,
          'illusion': 1,
          'deflect': 1,
          'pain': 1,
          'sometimes': 1,
          'feels': 1,
          'overloaded': 1,
          'ideas': 1,
          'least': 1,
          'willing': 1,
          'stretch': 1,
          'beyond': 1,
          'weve': 1,
          'come': 1,
          'expect': 1,
          'traditional': 1,
          'half': 1,
          'ambitious': 1,
          'content': 1,
          'sleepwalk': 1,
          'rhythms': 1,
          'timing': 1,
          'nwhen': 1,
          'character': 1,
          'driven': 1,
          'stories': 1,
          'stop': 1,
          'complexities': 1,
          'real': 1,
          'life': 1,
          'depressing': 1,
          'answer': 1,
          'found': 1,
          'lawrence': 1,
          'kasdans': 1,
          'trite': 1,
          'occasionally': 1,
          'useful': 1,
          'grand': 1,
          'canyon': 1,
          'steve': 1,
          'martins': 1,
          'hollywood': 1,
          'mogul': 1,
          'pronounces': 1,
          'lifes': 1,
          'riddles': 1,
          'answered': 1,
          'neven': 1,
          'foreign': 1,
          'taking': 1,
          'advice': 1,
          'heart': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'film': 7,
          'bad': 5,
          'nthe': 5,
          'man': 4,
          'guy': 4,
          'top': 4,
          'dude': 3,
          'one': 3,
          'say': 3,
          'chambers': 3,
          'sequences': 3,
          'much': 3,
          'ni': 3,
          'n': 3,
          'plot': 2,
          'french': 2,
          'tim': 2,
          'roth': 2,
          'musketeer': 2,
          'old': 2,
          'years': 2,
          'well': 2,
          'know': 2,
          'rest': 2,
          'pretty': 2,
          'see': 2,
          'nokay': 2,
          'first': 2,
          'plain': 2,
          'boring': 2,
          'nits': 2,
          'entirely': 2,
          'next': 2,
          'main': 2,
          'justin': 2,
          'think': 2,
          'suvari': 2,
          'comes': 2,
          'nnow': 2,
          'seen': 2,
          'something': 2,
          'times': 2,
          'please': 2,
          'day': 2,
          'american': 2,
          'romantic': 2,
          'stretch': 2,
          'thing': 2,
          'certain': 2,
          'scene': 2,
          'little': 2,
          'created': 2,
          'films': 2,
          'nwhy': 2,
          'cut': 2,
          'tower': 2,
          'hanging': 2,
          'sequence': 2,
          'later': 2,
          'away': 2,
          'reason': 2,
          'anyone': 2,
          'would': 2,
          'cool': 2,
          'essentially': 2,
          'name': 2,
          '710': 2,
          '610': 2,
          'young': 1,
          'boy': 1,
          'sees': 1,
          'parents': 1,
          'killed': 1,
          'eyes': 1,
          'oops': 1,
          'nmean': 1,
          'evil': 1,
          'nhe': 1,
          'vows': 1,
          'revenge': 1,
          'taught': 1,
          'ways': 1,
          'used': 1,
          'nanyway': 1,
          'fourteen': 1,
          'go': 1,
          'arrgh': 1,
          'swishswishzzzzzzz': 1,
          'ncritique': 1,
          'nlets': 1,
          'start': 1,
          'story': 1,
          'original': 1,
          'predictable': 1,
          'lacks': 1,
          'energy': 1,
          'whats': 1,
          'nacting': 1,
          'nhmmmm': 1,
          'actor': 1,
          'basically': 1,
          'uncharismatic': 1,
          'version': 1,
          'chris': 1,
          'odonnell': 1,
          'less': 1,
          'range': 1,
          'mena': 1,
          'nnot': 1,
          'thora': 1,
          'birch': 1,
          'dungeons': 1,
          'dragons': 1,
          'miscast': 1,
          'deliveries': 1,
          'awful': 1,
          'pisspoor': 1,
          'accent': 1,
          'goes': 1,
          'im': 1,
          'sure': 1,
          'ms': 1,
          'suvaris': 1,
          'fault': 1,
          'directors': 1,
          'ive': 1,
          'definitely': 1,
          'higher': 1,
          'level': 1,
          'semisaving': 1,
          'grace': 1,
          'actorwise': 1,
          'irrepressible': 1,
          'havent': 1,
          'nthousand': 1,
          'ntim': 1,
          'love': 1,
          'god': 1,
          'beg': 1,
          'agent': 1,
          'ask': 1,
          'marketplace': 1,
          'modern': 1,
          'roles': 1,
          'nice': 1,
          'comedy': 1,
          'nstretch': 1,
          'nwe': 1,
          'better': 1,
          'gunk': 1,
          'nalright': 1,
          'else': 1,
          'noh': 1,
          'yeah': 1,
          'score': 1,
          'nyikes': 1,
          'hows': 1,
          'taking': 1,
          'notches': 1,
          'fellas': 1,
          'nthis': 1,
          'blares': 1,
          'ear': 1,
          'whenever': 1,
          'feels': 1,
          'need': 1,
          'accentuate': 1,
          'actually': 1,
          'annoy': 1,
          'important': 1,
          'behind': 1,
          'music': 1,
          'recognize': 1,
          'isnt': 1,
          'real': 1,
          'epic': 1,
          'imagination': 1,
          'fluffy': 1,
          'rehashed': 1,
          'cakewalk': 1,
          'shrewd': 1,
          'studio': 1,
          'heads': 1,
          'decided': 1,
          'take': 1,
          'advantage': 1,
          'whole': 1,
          'kungfu': 1,
          'phenomenon': 1,
          'test': 1,
          'classic': 1,
          'ndudes': 1,
          'nfailed': 1,
          'around': 1,
          'keep': 1,
          'reading': 1,
          'editing': 1,
          'also': 1,
          'shoddy': 1,
          'dialogue': 1,
          'banal': 1,
          'stilted': 1,
          'problems': 1,
          'plentiful': 1,
          'horse': 1,
          'carriage': 1,
          'stand': 1,
          'opponent': 1,
          'takes': 1,
          'forever': 1,
          'scampering': 1,
          'way': 1,
          'back': 1,
          'dont': 1,
          'mouseketeers': 1,
          'rope': 1,
          'instead': 1,
          'jumping': 1,
          'chords': 1,
          'fighting': 1,
          'doesnt': 1,
          'anybody': 1,
          'look': 1,
          'older': 1,
          'says': 1,
          '14': 1,
          'least': 1,
          'change': 1,
          'nyour': 1,
          'shirt': 1,
          'nkeep': 1,
          'mind': 1,
          'never': 1,
          'strayed': 1,
          'championing': 1,
          'movies': 1,
          'simply': 1,
          'sake': 1,
          'fun': 1,
          'time': 1,
          'flick': 1,
          'didnt': 1,
          'nit': 1,
          'stretches': 1,
          'acting': 1,
          'atrocious': 1,
          'lake': 1,
          'reminded': 1,
          'plays': 1,
          'high': 1,
          'school': 1,
          'made': 1,
          'cringe': 1,
          'care': 1,
          'since': 1,
          'musketeers': 1,
          'fat': 1,
          'give': 1,
          'raisondetre': 1,
          'fight': 1,
          'come': 1,
          'despite': 1,
          'lack': 1,
          'numbers': 1,
          'hoping': 1,
          'packed': 1,
          'stuntwork': 1,
          'promoted': 1,
          'trailer': 1,
          'snippets': 1,
          'two': 1,
          'major': 1,
          'swashbuckling': 1,
          'right': 1,
          'beginning': 1,
          'finishes': 1,
          'juggling': 1,
          'ladders': 1,
          'ladder': 1,
          'definite': 1,
          'keeper': 1,
          'unfortunately': 1,
          'regurgitated': 1,
          'crap': 1,
          'nand': 1,
          'tell': 1,
          'catherine': 1,
          'deneuve': 1,
          'got': 1,
          'placed': 1,
          'credits': 1,
          'nhullo': 1,
          'called': 1,
          'stars': 1,
          'ndeneuve': 1,
          'barely': 1,
          'nugh': 1,
          'another': 1,
          'small': 1,
          'annoyed': 1,
          'trash': 1,
          'together': 1,
          'gang': 1,
          'nvow': 1,
          'stay': 1,
          'nthank': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'na': 1,
          'knights': 1,
          'tale': 1,
          'outlaws': 1,
          '510': 1,
          'crouching': 1,
          'tiger': 1,
          'hidden': 1,
          'dragon': 1,
          'matrix': 1,
          '810': 1,
          'replacement': 1,
          'killers': 1,
          'romeo': 1,
          'must': 1,
          'die': 1,
          '310': 1,
          'shanghai': 1,
          'noon': 1,
          'nneg': 1}),
 Counter({'big': 8,
          'john': 7,
          'e': 7,
          'l': 5,
          'howie': 5,
          'something': 4,
          'best': 3,
          'michael': 3,
          'movie': 3,
          'work': 3,
          'actually': 3,
          'world': 3,
          'cuesta': 3,
          'dramatic': 3,
          'bit': 2,
          'role': 2,
          'long': 2,
          'hes': 2,
          'given': 2,
          'want': 2,
          'see': 2,
          'ncox': 2,
          'indie': 2,
          'feels': 2,
          'pad': 2,
          'nhes': 2,
          'old': 2,
          'listens': 2,
          'problems': 2,
          'nl': 2,
          'middleclass': 2,
          'transparent': 2,
          'nin': 2,
          'makes': 2,
          'boy': 2,
          'doesnt': 2,
          'nthis': 2,
          'much': 2,
          'complex': 2,
          'child': 2,
          'howies': 2,
          'johns': 2,
          'nthere': 2,
          'well': 2,
          'obvious': 2,
          'nits': 2,
          'contrivances': 2,
          'note': 2,
          'films': 2,
          'remembered': 1,
          'understated': 1,
          'performance': 1,
          'dr': 1,
          'hannibal': 1,
          'lecter': 1,
          'manns': 1,
          'forensics': 1,
          'thriller': 1,
          'manhunter': 1,
          'scottish': 1,
          'character': 1,
          'actor': 1,
          'brian': 1,
          'cox': 1,
          'brings': 1,
          'special': 1,
          'every': 1,
          'works': 1,
          'nusually': 1,
          'playing': 1,
          'studio': 1,
          'schlock': 1,
          'dies': 1,
          'halfway': 1,
          'kiss': 1,
          'goodnight': 1,
          'occasionally': 1,
          'meaty': 1,
          'substantial': 1,
          'nif': 1,
          'brilliant': 1,
          'acting': 1,
          'check': 1,
          'dogged': 1,
          'police': 1,
          'inspector': 1,
          'opposite': 1,
          'frances': 1,
          'mcdormand': 1,
          'ken': 1,
          'loachs': 1,
          'hidden': 1,
          'agenda': 1,
          'plays': 1,
          'harrigan': 1,
          'disturbing': 1,
          'new': 1,
          'flick': 1,
          'lot': 1,
          '47': 1,
          'picked': 1,
          'sundance': 1,
          'distributors': 1,
          'scared': 1,
          'budge': 1,
          'nbig': 1,
          'love': 1,
          'dares': 1,
          'speak': 1,
          'name': 1,
          'expresses': 1,
          'seeking': 1,
          'adolescents': 1,
          'bringing': 1,
          'back': 1,
          'nwhat': 1,
          'bothered': 1,
          'audience': 1,
          'members': 1,
          'presentation': 1,
          'oddly': 1,
          'empathetic': 1,
          'light': 1,
          'eventempered': 1,
          'funny': 1,
          'robust': 1,
          'man': 1,
          'kids': 1,
          'opposed': 1,
          'parents': 1,
          'friends': 1,
          'caught': 1,
          'highwire': 1,
          'act': 1,
          'confused': 1,
          'lives': 1,
          'nhell': 1,
          'sexforpay': 1,
          'elaborate': 1,
          'courtship': 1,
          'charming': 1,
          'temptations': 1,
          'grownup': 1,
          'stands': 1,
          'island': 1,
          'expressway': 1,
          'slices': 1,
          'strip': 1,
          'malls': 1,
          'homes': 1,
          'suburbia': 1,
          'nfilmmaker': 1,
          'uses': 1,
          'pretty': 1,
          'metaphor': 1,
          'dangerous': 1,
          'escape': 1,
          '15year': 1,
          'protagonist': 1,
          'paul': 1,
          'franklin': 1,
          'dano': 1,
          'opening': 1,
          'voiceover': 1,
          'reveals': 1,
          'morbid': 1,
          'preoccupation': 1,
          'death': 1,
          'road': 1,
          'citing': 1,
          'nhighway': 1,
          'deaths': 1,
          'filmmaker': 1,
          'alan': 1,
          'j': 1,
          'pakula': 1,
          'songwriter': 1,
          'harry': 1,
          'chapin': 1,
          'mother': 1,
          'exit': 1,
          '52': 1,
          'fascinated': 1,
          'disturbed': 1,
          'feelings': 1,
          'projected': 1,
          'onto': 1,
          'follows': 1,
          'around': 1,
          'bright': 1,
          'red': 1,
          'car': 1,
          'never': 1,
          'move': 1,
          'force': 1,
          'usual': 1,
          'molesters': 1,
          'seen': 1,
          'movies': 1,
          'beast': 1,
          'ashamed': 1,
          'would': 1,
          'worked': 1,
          'halfhour': 1,
          'short': 1,
          'film': 1,
          'illadvised': 1,
          'foray': 1,
          'unnecessary': 1,
          'padding': 1,
          'miserable': 1,
          'dad': 1,
          'bruce': 1,
          'altman': 1,
          'hot': 1,
          'seat': 1,
          'whitecollar': 1,
          'crime': 1,
          'degenerate': 1,
          'youngsters': 1,
          'get': 1,
          'kicks': 1,
          'robbing': 1,
          'houses': 1,
          'homoerotic': 1,
          'shenanigans': 1,
          'wiseass': 1,
          'gary': 1,
          'terrio': 1,
          'billy': 1,
          'kay': 1,
          'handsome': 1,
          'artful': 1,
          'dodger': 1,
          'nrather': 1,
          'add': 1,
          'themes': 1,
          'suburban': 1,
          'ennui': 1,
          'needed': 1,
          'another': 1,
          'subject': 1,
          'awkward': 1,
          'subplots': 1,
          'running': 1,
          'time': 1,
          'adequate': 1,
          'feature': 1,
          'length': 1,
          'nconcurrently': 1,
          'relationship': 1,
          'evenly': 1,
          'paced': 1,
          'exceptionally': 1,
          'acted': 1,
          'sporting': 1,
          'baseball': 1,
          'cap': 1,
          'faded': 1,
          'marine': 1,
          'tattoo': 1,
          'bluff': 1,
          'bluster': 1,
          'ndano': 1,
          'quiet': 1,
          'first': 1,
          'glance': 1,
          'seems': 1,
          'withdrawn': 1,
          'nwere': 1,
          'used': 1,
          'actors': 1,
          'whose': 1,
          'choices': 1,
          'broad': 1,
          'calling': 1,
          'haley': 1,
          'joel': 1,
          'surprising': 1,
          'one': 1,
          'throughout': 1,
          'scene': 1,
          'nthe': 1,
          'restraint': 1,
          'admirable': 1,
          'nbut': 1,
          'screenplay': 1,
          'always': 1,
          'give': 1,
          'material': 1,
          'nwhen': 1,
          'reads': 1,
          'walt': 1,
          'whitman': 1,
          'poem': 1,
          'moment': 1,
          'precious': 1,
          'ndirector': 1,
          'lingers': 1,
          'ecstatic': 1,
          'reaction': 1,
          'shot': 1,
          'may': 1,
          'hearing': 1,
          'glenn': 1,
          'gould': 1,
          'performing': 1,
          'bachs': 1,
          'goldberg': 1,
          'variations': 1,
          'also': 1,
          'involving': 1,
          'toy': 1,
          'walter': 1,
          'masterson': 1,
          'jealous': 1,
          'newbie': 1,
          'plot': 1,
          'thread': 1,
          'predictably': 1,
          'leads': 1,
          'violence': 1,
          'nnot': 1,
          'content': 1,
          'haunting': 1,
          'observational': 1,
          'portrait': 1,
          'teen': 1,
          'alienation': 1,
          'royally': 1,
          'screwed': 1,
          'like': 1,
          'terry': 1,
          'zwigoffs': 1,
          'superb': 1,
          'ghost': 1,
          'lacks': 1,
          'confidence': 1,
          'end': 1,
          'ambivalent': 1,
          'typical': 1,
          'unimaginative': 1,
          'cinema': 1,
          'wrap': 1,
          'things': 1,
          'bullet': 1,
          'sparing': 1,
          'writers': 1,
          'come': 1,
          'philosophical': 1,
          'regard': 1,
          'n': 1,
          'countless': 1,
          'share': 1,
          'common': 1,
          'blockbuster': 1,
          'action': 1,
          'solved': 1,
          'obstacle': 1,
          'removed': 1,
          'nhow': 1,
          'often': 1,
          'real': 1,
          'life': 1,
          'way': 1,
          'nto': 1,
          'extend': 1,
          'question': 1,
          'striving': 1,
          'realism': 1,
          'destroy': 1,
          'illusion': 1,
          'nneg': 1}),
 Counter({'garofalo': 9,
          'matchmaker': 4,
          'like': 4,
          'leary': 3,
          'irish': 3,
          'ireland': 3,
          'movies': 3,
          'dog': 3,
          'ohara': 3,
          'ni': 3,
          'almost': 2,
          'movie': 2,
          'nit': 2,
          'ngarofalo': 2,
          'plays': 2,
          'senator': 2,
          'way': 2,
          'play': 2,
          'made': 2,
          'go': 2,
          'done': 2,
          'every': 2,
          'cliche': 2,
          'town': 2,
          'hotel': 2,
          'around': 2,
          'luggage': 2,
          'comes': 2,
          'meet': 2,
          'happens': 2,
          'time': 2,
          'bathtub': 2,
          'points': 2,
          'guessing': 2,
          'end': 2,
          'lonely': 2,
          'together': 2,
          'even': 2,
          'janeane': 1,
          'romantic': 1,
          'comedy': 1,
          'good': 1,
          'idea': 1,
          'couple': 1,
          'years': 1,
          'ago': 1,
          'truth': 1,
          'cats': 1,
          'dogs': 1,
          'excruciating': 1,
          'nthis': 1,
          'bythebooks': 1,
          'plods': 1,
          'along': 1,
          'predestined': 1,
          'course': 1,
          'surprises': 1,
          'laughs': 1,
          'also': 1,
          'jumps': 1,
          'everpopular': 1,
          'political': 1,
          'satire': 1,
          'bandwagon': 1,
          'manages': 1,
          'fall': 1,
          'flat': 1,
          'campaign': 1,
          'aide': 1,
          'massacusetts': 1,
          'jay': 1,
          'sanders': 1,
          'running': 1,
          'reelection': 1,
          'ndenis': 1,
          'stereotypical': 1,
          'strategist': 1,
          'ethics': 1,
          'decides': 1,
          'scandal': 1,
          'plagued': 1,
          'win': 1,
          'roots': 1,
          'cash': 1,
          'boston': 1,
          'roman': 1,
          'catholic': 1,
          'democrat': 1,
          'contingent': 1,
          'thats': 1,
          'kennedy': 1,
          'family': 1,
          'popular': 1,
          'nso': 1,
          'orders': 1,
          'dig': 1,
          'relatives': 1,
          'exploit': 1,
          'nshe': 1,
          'soon': 1,
          'learns': 1,
          'easier': 1,
          'said': 1,
          'mantra': 1,
          'nthe': 1,
          'falls': 1,
          'things': 1,
          'wrong': 1,
          'take': 1,
          'tiny': 1,
          'plane': 1,
          'misses': 1,
          'bus': 1,
          'cant': 1,
          'get': 1,
          'room': 1,
          'ends': 1,
          'smallest': 1,
          'trashiest': 1,
          'one': 1,
          'piss': 1,
          'nthen': 1,
          'roger': 1,
          'ebert': 1,
          'calls': 1,
          'cute': 1,
          'romance': 1,
          'man': 1,
          'woman': 1,
          'first': 1,
          'unconventional': 1,
          'cinematic': 1,
          'nin': 1,
          'walks': 1,
          'bathroom': 1,
          'finds': 1,
          'nude': 1,
          'sean': 1,
          'david': 1,
          'sitting': 1,
          'side': 1,
          'nno': 1,
          'water': 1,
          'nalso': 1,
          'hates': 1,
          'sight': 1,
          'nthats': 1,
          'works': 1,
          'know': 1,
          'instant': 1,
          'saw': 1,
          'irishman': 1,
          'shed': 1,
          'hate': 1,
          'awhile': 1,
          'succumb': 1,
          'charms': 1,
          'live': 1,
          'happily': 1,
          'reel': 1,
          'allowing': 1,
          'superficial': 1,
          'detail': 1,
          'throw': 1,
          'relationship': 1,
          'turmoil': 1,
          'theyd': 1,
          'reconcile': 1,
          'happy': 1,
          'tune': 1,
          'credits': 1,
          'havent': 1,
          'mentioned': 1,
          'twist': 1,
          'yet': 1,
          'small': 1,
          'annual': 1,
          'matchmaking': 1,
          'festival': 1,
          'folks': 1,
          'county': 1,
          'pair': 1,
          'future': 1,
          'bliss': 1,
          'nmilo': 1,
          'oshea': 1,
          'looks': 1,
          'tom': 1,
          'snyder': 1,
          'pops': 1,
          'onscreen': 1,
          'occasionally': 1,
          'spew': 1,
          'words': 1,
          'wisdom': 1,
          'bring': 1,
          'souls': 1,
          'nrest': 1,
          'assured': 1,
          'hell': 1,
          'match': 1,
          'noh': 1,
          'keeping': 1,
          'matchmakers': 1,
          'utter': 1,
          'predictability': 1,
          'dies': 1,
          'toward': 1,
          'nwhat': 1,
          'message': 1,
          'nsometimes': 1,
          'respectable': 1,
          'person': 1,
          'comedic': 1,
          'distinction': 1,
          'sell': 1,
          'weak': 1,
          'script': 1,
          'excited': 1,
          'see': 1,
          'actually': 1,
          'two': 1,
          'three': 1,
          'scenes': 1,
          'nleary': 1,
          'stays': 1,
          'stateside': 1,
          'part': 1,
          'yelling': 1,
          'phone': 1,
          'generally': 1,
          'asshole': 1,
          'nhe': 1,
          'undoes': 1,
          'old': 1,
          'microphones': 1,
          'still': 1,
          'hes': 1,
          'giving': 1,
          'speech': 1,
          'nboth': 1,
          'known': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'musketeers': 7,
          'musketeer': 4,
          'paris': 4,
          'way': 3,
          'production': 3,
          'asian': 3,
          'nthe': 3,
          'action': 3,
          'filmmaking': 2,
          'isnt': 2,
          'xing': 2,
          'end': 2,
          'ripoff': 2,
          'screenplay': 2,
          'ndartagnan': 2,
          'justin': 2,
          'chambers': 2,
          'nhe': 2,
          'cardinal': 2,
          'stephen': 2,
          'rea': 2,
          'febre': 2,
          'tim': 2,
          'roth': 2,
          'leader': 2,
          'hyams': 2,
          'eastern': 2,
          'western': 2,
          'films': 2,
          'scenes': 2,
          'carry': 2,
          'highflying': 1,
          'hong': 1,
          'kong': 1,
          'style': 1,
          'made': 1,
          'classics': 1,
          'pretty': 1,
          'nthis': 1,
          'time': 1,
          'nod': 1,
          'asia': 1,
          'goes': 1,
          'france': 1,
          'excruciating': 1,
          'bland': 1,
          'lukewarm': 1,
          'version': 1,
          'dumass': 1,
          'three': 1,
          'nby': 1,
          'bringing': 1,
          'popular': 1,
          'actorstunt': 1,
          'coordinator': 1,
          'xiong': 1,
          'whose': 1,
          'prior': 1,
          'american': 1,
          'attempts': 1,
          'stunt': 1,
          'choreography': 1,
          'laughable': 1,
          'van': 1,
          'damme': 1,
          'vehicle': 1,
          'double': 1,
          'team': 1,
          'dennis': 1,
          'rodman': 1,
          'cinematic': 1,
          'joke': 1,
          'simon': 1,
          'sez': 1,
          'thrown': 1,
          'air': 1,
          'fighting': 1,
          'result': 1,
          'tepid': 1,
          'dull': 1,
          'actionadventure': 1,
          'stinks': 1,
          'indiana': 1,
          'jones': 1,
          'bad': 1,
          'kung': 1,
          'fu': 1,
          'story': 1,
          'simple': 1,
          'grandmother': 1,
          'could': 1,
          'adapted': 1,
          'vengeful': 1,
          'son': 1,
          'slain': 1,
          'travels': 1,
          'join': 1,
          'royal': 1,
          'find': 1,
          'man': 1,
          'killed': 1,
          'parents': 1,
          'nin': 1,
          'meets': 1,
          'cunning': 1,
          'richelieu': 1,
          'trying': 1,
          'overthrow': 1,
          'king': 1,
          'richelieus': 1,
          'maninblack': 1,
          'associate': 1,
          'killer': 1,
          'folks': 1,
          'finds': 1,
          'disbanded': 1,
          'drunk': 1,
          'rounds': 1,
          'aramis': 1,
          'nick': 1,
          'moran': 1,
          'athos': 1,
          'jan': 1,
          'gregor': 1,
          'kremp': 1,
          'porthos': 1,
          'steven': 1,
          'spiers': 1,
          'free': 1,
          'wrongfully': 1,
          'imprisoned': 1,
          'treville': 1,
          'kings': 1,
          'prison': 1,
          'new': 1,
          'frisky': 1,
          'love': 1,
          'interestchambermaid': 1,
          'francesca': 1,
          'mena': 1,
          'suvari': 1,
          'play': 1,
          'footsy': 1,
          'coo': 1,
          'hunts': 1,
          'finally': 1,
          'queen': 1,
          'catherine': 1,
          'deneuve': 1,
          'ends': 1,
          'captured': 1,
          'menancing': 1,
          'forcing': 1,
          'regroup': 1,
          'dartagnan': 1,
          'leading': 1,
          'charge': 1,
          'save': 1,
          'day': 1,
          'ndirector': 1,
          'peter': 1,
          'days': 1,
          'obviously': 1,
          'wanted': 1,
          'blend': 1,
          'styles': 1,
          'disaster': 1,
          'none': 1,
          'problem': 1,
          'reality': 1,
          'taken': 1,
          'lead': 1,
          'ones': 1,
          'njet': 1,
          'lis': 1,
          'high': 1,
          'risk': 1,
          'die': 1,
          'hard': 1,
          'around': 1,
          'nironically': 1,
          'awfully': 1,
          'little': 1,
          'swordplay': 1,
          'film': 1,
          'maybe': 1,
          'ten': 1,
          'minutes': 1,
          'swashbuckling': 1,
          'spread': 1,
          'five': 1,
          'nmost': 1,
          'bulk': 1,
          '20': 1,
          '30minute': 1,
          'sequences': 1,
          'know': 1,
          'picture': 1,
          'instead': 1,
          'weighs': 1,
          'predictable': 1,
          'monotonous': 1,
          'gene': 1,
          'quintano': 1,
          'sudden': 1,
          'death': 1,
          'horrible': 1,
          'acting': 1,
          'prosaic': 1,
          'attempt': 1,
          'wedding': 1,
          'planner': 1,
          'deliver': 1,
          'mousy': 1,
          'self': 1,
          'nchambers': 1,
          'dartangnan': 1,
          'hes': 1,
          'mouseketeer': 1,
          'nand': 1,
          'use': 1,
          'candles': 1,
          'torches': 1,
          'light': 1,
          'grime': 1,
          'filth': 1,
          '17th': 1,
          'century': 1,
          'wellnoted': 1,
          'thats': 1,
          'standout': 1,
          'overall': 1,
          'flat': 1,
          'nneg': 1}),
 Counter({'movie': 27,
          'first': 14,
          'n': 9,
          'like': 7,
          'fight': 6,
          'kombat': 5,
          'mortal': 4,
          'didnt': 4,
          'nthe': 4,
          'scene': 4,
          'even': 4,
          'many': 4,
          'folks': 4,
          'one': 4,
          'nin': 3,
          'fan': 3,
          'games': 3,
          'earth': 3,
          'khan': 3,
          'game': 3,
          'cast': 3,
          'scenes': 3,
          'seen': 3,
          'silly': 3,
          'character': 3,
          'played': 3,
          'liu': 3,
          'kang': 3,
          'much': 3,
          'annihilation': 2,
          'making': 2,
          'going': 2,
          'two': 2,
          'andor': 2,
          'martial': 2,
          'arts': 2,
          'tournament': 2,
          '5': 2,
          'mortals': 2,
          'shao': 2,
          'final': 2,
          'take': 2,
          'know': 2,
          'probably': 2,
          'story': 2,
          'try': 2,
          'really': 2,
          'cool': 2,
          'plot': 2,
          'nand': 2,
          'success': 2,
          'hes': 2,
          'gets': 2,
          'bad': 2,
          'simply': 2,
          'ni': 2,
          'wrong': 2,
          'hess': 2,
          'playing': 2,
          'sonya': 2,
          'blade': 2,
          'us': 2,
          'loved': 2,
          'remar': 2,
          'raiden': 2,
          'god': 2,
          'thunder': 2,
          'generally': 2,
          'actors': 2,
          'part': 2,
          'characters': 2,
          'nfor': 2,
          'give': 2,
          'convincing': 2,
          'works': 1,
          'must': 1,
          'reviewed': 1,
          'multiple': 1,
          'levels': 1,
          'nfirst': 1,
          'theres': 1,
          'rampant': 1,
          'usage': 1,
          'randian': 1,
          'subtext': 1,
          'pervades': 1,
          'entire': 1,
          'nbut': 1,
          'occasionaly': 1,
          'almost': 1,
          'ironic': 1,
          'selfdepreciating': 1,
          'remark': 1,
          'tosses': 1,
          'clearly': 1,
          'marxist': 1,
          'imagery': 1,
          'nno': 1,
          'njust': 1,
          'kidding': 1,
          'nhad': 1,
          'moment': 1,
          'seriousness': 1,
          'however': 1,
          'fair': 1,
          'necessary': 1,
          'provide': 1,
          'viewpoints': 1,
          'watcher': 1,
          'unfamiliar': 1,
          'marginally': 1,
          'familiar': 1,
          'whole': 1,
          'phenomenon': 1,
          '1995': 1,
          'concerned': 1,
          'would': 1,
          'decide': 1,
          'fate': 1,
          'billion': 1,
          'inhabitants': 1,
          'theory': 1,
          'prevented': 1,
          'emperor': 1,
          'taking': 1,
          'nunfortunately': 1,
          'poor': 1,
          'loser': 1,
          'showed': 1,
          'arriving': 1,
          'anyway': 1,
          'ready': 1,
          'planet': 1,
          'heroes': 1,
          'assumed': 1,
          'fighting': 1,
          'stance': 1,
          'extraordinarily': 1,
          'entertaining': 1,
          'fans': 1,
          'nid': 1,
          'go': 1,
          'far': 1,
          'say': 1,
          'enjoyed': 1,
          'writers': 1,
          'directors': 1,
          'knew': 1,
          'limitations': 1,
          'basic': 1,
          'overachieve': 1,
          'nthere': 1,
          'lot': 1,
          'accompanying': 1,
          'music': 1,
          'intersperesed': 1,
          'distracting': 1,
          'ultimately': 1,
          'nonintrusive': 1,
          'bits': 1,
          'fluff': 1,
          'passing': 1,
          'smashing': 1,
          'box': 1,
          'office': 1,
          'nmortal': 1,
          'picks': 1,
          'precisely': 1,
          'left': 1,
          'introductory': 1,
          'exposition': 1,
          'clue': 1,
          'may': 1,
          'nshao': 1,
          'decided': 1,
          'anyways': 1,
          'hell': 1,
          'rule': 1,
          'winning': 1,
          'nthereafter': 1,
          'follows': 1,
          'approximately': 1,
          '85': 1,
          'minutes': 1,
          'film': 1,
          'alternates': 1,
          'confused': 1,
          'trite': 1,
          'plain': 1,
          'stupid': 1,
          'none': 1,
          'general': 1,
          'impression': 1,
          'producers': 1,
          'thought': 1,
          'hey': 1,
          'last': 1,
          'get': 1,
          'money': 1,
          'make': 1,
          'real': 1,
          'ntoo': 1,
          'stick': 1,
          'formula': 1,
          'could': 1,
          'write': 1,
          'volumes': 1,
          'things': 1,
          'picture': 1,
          'high': 1,
          'points': 1,
          'acting': 1,
          'truly': 1,
          'nsandra': 1,
          'particularly': 1,
          'execrable': 1,
          'especially': 1,
          'tries': 1,
          'convince': 1,
          'johnny': 1,
          'cage': 1,
          'greased': 1,
          'beginning': 1,
          'worst': 1,
          'pieces': 1,
          'miscasting': 1,
          'think': 1,
          'ive': 1,
          'ever': 1,
          'james': 1,
          'plays': 1,
          'christopher': 1,
          'lambert': 1,
          'though': 1,
          'joke': 1,
          'french': 1,
          'actor': 1,
          'japanese': 1,
          'revered': 1,
          'chinese': 1,
          'mystics': 1,
          'type': 1,
          'tim': 1,
          'tiny': 1,
          'lister': 1,
          'jr': 1,
          'president': 1,
          'u': 1,
          'fifth': 1,
          'element': 1,
          'example': 1,
          'always': 1,
          'favorite': 1,
          'utility': 1,
          'totally': 1,
          'doesnt': 1,
          'luxury': 1,
          'amused': 1,
          'selfawareness': 1,
          'introduced': 1,
          'potentially': 1,
          'important': 1,
          'never': 1,
          'number': 1,
          'completely': 1,
          'meaningless': 1,
          'sidetracks': 1,
          'including': 1,
          'muddled': 1,
          'robin': 1,
          'shou': 1,
          'seeks': 1,
          'nightwolf': 1,
          'litefoot': 1,
          'mystical': 1,
          'hallucination': 1,
          'wanders': 1,
          'jade': 1,
          'irina': 1,
          'pantaeva': 1,
          'reasons': 1,
          'others': 1,
          '2': 1,
          'unless': 1,
          'youre': 1,
          'huge': 1,
          'case': 1,
          'following': 1,
          'critiques': 1,
          'also': 1,
          'apply': 1,
          'sandra': 1,
          'worse': 1,
          'actress': 1,
          'bridgette': 1,
          'wilson': 1,
          'fighter': 1,
          'nwilson': 1,
          'looked': 1,
          'mimicing': 1,
          'movements': 1,
          'taught': 1,
          'choreographer': 1,
          'nhess': 1,
          'looks': 1,
          'actually': 1,
          'knows': 1,
          'puts': 1,
          'together': 1,
          'believable': 1,
          'fights': 1,
          'least': 1,
          'thing': 1,
          'often': 1,
          'nsonya': 1,
          'kiss': 1,
          'death': 1,
          'jax': 1,
          'earthquake': 1,
          'animality': 1,
          'na': 1,
          'big': 1,
          'bonus': 1,
          'looking': 1,
          'similar': 1,
          'moves': 1,
          'found': 1,
          'rarely': 1,
          'arent': 1,
          'mistakenly': 1,
          'hang': 1,
          'robust': 1,
          'nsilly': 1,
          'lamest': 1,
          'involved': 1,
          'women': 1,
          'turns': 1,
          'mudwrestling': 1,
          'match': 1,
          'nlame': 1,
          'obviously': 1,
          'sexist': 1,
          'politically': 1,
          'incorrect': 1,
          'noticed': 1,
          'remarked': 1,
          'upon': 1,
          'special': 1,
          'effects': 1,
          'better': 1,
          'except': 1,
          'emporer': 1,
          'perform': 1,
          'animalities': 1,
          'nmotaro': 1,
          'sheeva': 1,
          'lifelike': 1,
          'goro': 1,
          'enjoy': 1,
          'nyoull': 1,
          'nearly': 1,
          'liked': 1,
          'nneg': 1}),
 Counter({'recurring': 6,
          'baldwin': 5,
          'n': 5,
          'shattered': 4,
          'image': 4,
          'like': 4,
          'nand': 4,
          'parillaud': 3,
          'film': 3,
          'assassin': 3,
          'time': 3,
          'black': 3,
          'characters': 3,
          'femme': 2,
          'william': 2,
          'youre': 2,
          'really': 2,
          'nits': 2,
          'woman': 2,
          'whos': 2,
          'haunted': 2,
          'nightmare': 2,
          'shes': 2,
          'hired': 2,
          'jamaica': 2,
          'course': 2,
          'care': 2,
          'scenes': 2,
          'boring': 2,
          'might': 2,
          'interesting': 2,
          'dialogue': 2,
          'isnt': 2,
          'dont': 2,
          'parillauds': 2,
          'couple': 2,
          'pants': 2,
          'la': 1,
          'nikita': 1,
          'nhe': 1,
          'backdraft': 1,
          'sliver': 1,
          'fair': 1,
          'game': 1,
          'cindy': 1,
          'crawford': 1,
          'ntogether': 1,
          'anne': 1,
          'conspire': 1,
          'make': 1,
          'biggest': 1,
          'piece': 1,
          'hooey': 1,
          'since': 1,
          'stallonestone': 1,
          'thriller': 1,
          'specialist': 1,
          'nthe': 1,
          'poses': 1,
          'question': 1,
          'life': 1,
          'living': 1,
          'dream': 1,
          'dreams': 1,
          'reality': 1,
          'either': 1,
          'honeymooning': 1,
          'nit': 1,
          'doesnt': 1,
          'much': 1,
          'matter': 1,
          'believe': 1,
          'runs': 1,
          'painful': 1,
          'pedestrian': 1,
          'wont': 1,
          'nthese': 1,
          'two': 1,
          'lives': 1,
          'looking': 1,
          'siouxsie': 1,
          'sioux': 1,
          'wig': 1,
          'emotionless': 1,
          'eyes': 1,
          'leather': 1,
          'clothing': 1,
          'seattlebased': 1,
          'moping': 1,
          'around': 1,
          'karen': 1,
          'carpenter': 1,
          'play': 1,
          'endlessly': 1,
          'throughout': 1,
          'result': 1,
          'twice': 1,
          'complicated': 1,
          'plots': 1,
          'cant': 1,
          'entertaining': 1,
          'nof': 1,
          'helps': 1,
          'crisp': 1,
          'modicum': 1,
          'style': 1,
          'complex': 1,
          'stupid': 1,
          'nparillaud': 1,
          'arent': 1,
          'exactly': 1,
          'shakespearean': 1,
          'material': 1,
          'begin': 1,
          'saddled': 1,
          'leaden': 1,
          'zero': 1,
          'chance': 1,
          'breaking': 1,
          'free': 1,
          'cardboard': 1,
          'confines': 1,
          'nlines': 1,
          'beg': 1,
          'insist': 1,
          'ni': 1,
          'nthats': 1,
          'character': 1,
          'talking': 1,
          'nto': 1,
          'cat': 1,
          'reason': 1,
          'couldnt': 1,
          'less': 1,
          'nhuh': 1,
          'wonderful': 1,
          'bathroom': 1,
          'interchange': 1,
          'early': 1,
          'give': 1,
          'minutes': 1,
          'know': 1,
          'ill': 1,
          'charm': 1,
          'kind': 1,
          'ntalking': 1,
          'clothes': 1,
          'faster': 1,
          'say': 1,
          'point': 1,
          'return': 1,
          'nwe': 1,
          'come': 1,
          'expect': 1,
          'billy': 1,
          'nice': 1,
          'learned': 1,
          'something': 1,
          'first': 1,
          'nbut': 1,
          'theres': 1,
          'nothing': 1,
          'learn': 1,
          'nkaren': 1,
          'cereal': 1,
          'box': 1,
          'someonesouttogetme': 1,
          'crybaby': 1,
          'imagines': 1,
          'voice': 1,
          'end': 1,
          'phone': 1,
          'stranger': 1,
          'sends': 1,
          'flowers': 1,
          'maybe': 1,
          'even': 1,
          'husband': 1,
          'wouldbe': 1,
          'killer': 1,
          'nsiouxsie': 1,
          'chromium': 1,
          'cool': 1,
          'toughasnails': 1,
          'crack': 1,
          'killing': 1,
          'machine': 1,
          'shoots': 1,
          'mirrors': 1,
          'order': 1,
          'justify': 1,
          'films': 1,
          'meaningless': 1,
          'stock': 1,
          'title': 1,
          'nbaldwin': 1,
          'seems': 1,
          'interested': 1,
          'nest': 1,
          'egg': 1,
          'pave': 1,
          'paradise': 1,
          'put': 1,
          'parking': 1,
          'lot': 1,
          'neach': 1,
          'graham': 1,
          'greene': 1,
          'shows': 1,
          'gets': 1,
          'killed': 1,
          'nbarbet': 1,
          'schroeder': 1,
          'reversal': 1,
          'fortune': 1,
          'coproduced': 1,
          'ashamed': 1,
          'nevery': 1,
          'fun': 1,
          'watch': 1,
          'bad': 1,
          'movie': 1,
          'every': 1,
          'makes': 1,
          'agonizingly': 1,
          'clear': 1,
          'nneg': 1}),
 Counter({'mars': 8,
          'ghosts': 6,
          'film': 5,
          'john': 4,
          'carpenter': 4,
          'carpenters': 4,
          'bmovie': 4,
          'red': 4,
          'films': 3,
          'special': 3,
          'effects': 3,
          'nin': 3,
          'category': 3,
          'henstridge': 3,
          'work': 3,
          'however': 3,
          'lots': 3,
          'nthe': 3,
          '2': 3,
          'escape': 2,
          'always': 2,
          'horror': 2,
          'science': 2,
          'fiction': 2,
          'bent': 2,
          'went': 2,
          'swirling': 2,
          'gases': 2,
          'martian': 2,
          'ballard': 2,
          'sillylooking': 2,
          'train': 2,
          'back': 2,
          'desolation': 2,
          'cube': 2,
          'wonder': 2,
          'never': 2,
          'seems': 2,
          'doesnt': 2,
          'n': 2,
          'dialogue': 2,
          'without': 2,
          'might': 2,
          'western': 2,
          'nits': 2,
          'planet': 2,
          'sadly': 2,
          'makes': 1,
          'bmovies': 1,
          'nalways': 1,
          'halloween': 1,
          'new': 1,
          'york': 1,
          'thing': 1,
          'looks': 1,
          'live': 1,
          'l': 1,
          'vampires': 1,
          'ncarpenters': 1,
          'latest': 1,
          'opus': 1,
          'outing': 1,
          'schlock': 1,
          'aptlytitled': 1,
          'case': 1,
          'suppose': 1,
          'looking': 1,
          'someone': 1,
          'elses': 1,
          'nlike': 1,
          'prefixed': 1,
          'possessive': 1,
          'unashamed': 1,
          'punctuated': 1,
          'plot': 1,
          'actors': 1,
          'one': 1,
          'storyline': 1,
          'borders': 1,
          'idiotic': 1,
          'times': 1,
          'chaotic': 1,
          'ndormant': 1,
          'martians': 1,
          'e': 1,
          'awakened': 1,
          'meddling': 1,
          'humans': 1,
          'possess': 1,
          'souls': 1,
          'hapless': 1,
          'mining': 1,
          'colonists': 1,
          'rendering': 1,
          'testy': 1,
          'marilyn': 1,
          'manson': 1,
          'lookalikes': 1,
          'nall': 1,
          'explained': 1,
          'flashback': 1,
          'grand': 1,
          'poohbah': 1,
          'counsel': 1,
          'police': 1,
          'official': 1,
          'melanie': 1,
          'natasha': 1,
          'sub': 1,
          'species': 1,
          'returnee': 1,
          'nofficer': 1,
          'bring': 1,
          'incarcerated': 1,
          'felon': 1,
          'james': 1,
          'williams': 1,
          'found': 1,
          'pretty': 1,
          'picture': 1,
          'second': 1,
          'ms': 1,
          'blonde': 1,
          'hair': 1,
          'pulled': 1,
          'tightly': 1,
          'awkwardly': 1,
          'ponytail': 1,
          'ice': 1,
          'appropriatelynamed': 1,
          'pam': 1,
          'grier': 1,
          'briefly': 1,
          'oddlywho': 1,
          'wanted': 1,
          'host': 1,
          'extras': 1,
          'assuming': 1,
          'story': 1,
          'going': 1,
          'carry': 1,
          'therefore': 1,
          'didnt': 1,
          'need': 1,
          'try': 1,
          'hard': 1,
          'number': 1,
          'three': 1,
          'addition': 1,
          'couple': 1,
          'birdseyeview': 1,
          'shots': 1,
          'sprawling': 1,
          'metropolis': 1,
          'reddish': 1,
          'also': 1,
          'nstateoftheart': 1,
          'trademark': 1,
          'writerdirector': 1,
          'problem': 1,
          'finding': 1,
          'waste': 1,
          'budget': 1,
          'department': 1,
          'lock': 1,
          'laughing': 1,
          'stock': 1,
          'barrel': 1,
          'standard': 1,
          'fare': 1,
          'dingy': 1,
          'interiors': 1,
          'cluttered': 1,
          'exteriors': 1,
          'inane': 1,
          'leather': 1,
          'scarred': 1,
          'crazedlooking': 1,
          'aliens': 1,
          'weaponry': 1,
          'often': 1,
          'explodes': 1,
          'warfare': 1,
          'warningspontaneously': 1,
          'stupidly': 1,
          'ncarpenter': 1,
          'like': 1,
          'think': 1,
          'hes': 1,
          'made': 1,
          'real': 1,
          'heroes': 1,
          'villains': 1,
          'border': 1,
          'conflicts': 1,
          'shootouts': 1,
          'minus': 1,
          'hissing': 1,
          'snake': 1,
          'plissken': 1,
          'ni': 1,
          'thought': 1,
          'id': 1,
          'miss': 1,
          'guy': 1,
          'ndubbed': 1,
          'onenote': 1,
          'minimalist': 1,
          'music': 1,
          'soundtracks': 1,
          'graduated': 1,
          'simplistic': 1,
          'yet': 1,
          'effective': 1,
          'scoring': 1,
          'highlighting': 1,
          'action': 1,
          'loud': 1,
          'screeching': 1,
          'guitar': 1,
          'nfortunately': 1,
          'drowns': 1,
          'lot': 1,
          'final': 1,
          'exchange': 1,
          'er': 1,
          'though': 1,
          'audible': 1,
          'priceless': 1,
          'nmars': 1,
          'proven': 1,
          'infertile': 1,
          'breeding': 1,
          'ground': 1,
          'hollywood': 1,
          'last': 1,
          'year': 1,
          'stillborn': 1,
          'mission': 1,
          'val': 1,
          'kilmer': 1,
          'adds': 1,
          'disappointing': 1,
          'returns': 1,
          'opening': 1,
          'weekend': 1,
          'overshadowed': 1,
          'bunch': 1,
          'sequels': 1,
          'among': 1,
          'american': 1,
          'pie': 1,
          'rush': 1,
          'hour': 1,
          'irony': 1,
          'feels': 1,
          'absent': 1,
          'nthere': 1,
          'occasional': 1,
          'references': 1,
          'course': 1,
          'well': 1,
          'set': 1,
          'perth': 1,
          'amboys': 1,
          'earths': 1,
          'closest': 1,
          'neighbor': 1,
          'ntwo': 1,
          'things': 1,
          'keep': 1,
          'getting': 1,
          'huge': 1,
          'slap': 1,
          'upside': 1,
          'head': 1,
          'n1': 1,
          'nhenstridge': 1,
          'keeps': 1,
          'top': 1,
          'miraculously': 1,
          'pretend': 1,
          'anything': 1,
          'nwhat': 1,
          'means': 1,
          'fans': 1,
          'superior': 1,
          'intelligent': 1,
          'grade': 1,
          'scifihorror': 1,
          'singularly': 1,
          'luck': 1,
          'nneg': 1}),
 Counter({'movie': 15,
          'alicia': 9,
          'zero': 8,
          'babysitter': 5,
          'one': 4,
          'nthe': 4,
          'nand': 4,
          'ever': 4,
          'star': 4,
          'shes': 4,
          'im': 3,
          'guy': 3,
          'would': 3,
          'could': 3,
          'nso': 3,
          'last': 3,
          'minutes': 3,
          'plus': 3,
          'male': 3,
          'even': 3,
          'silverstone': 2,
          'beautiful': 2,
          'critic': 2,
          'large': 2,
          'good': 2,
          'like': 2,
          'none': 2,
          'seen': 2,
          'ni': 2,
          'theater': 2,
          'course': 2,
          'bad': 2,
          'characters': 2,
          'saw': 2,
          'wasnt': 2,
          'worst': 2,
          'us': 2,
          'night': 2,
          'thriller': 2,
          'probably': 2,
          'already': 2,
          'know': 2,
          'ten': 2,
          'drama': 2,
          'action': 2,
          'get': 2,
          'spends': 2,
          'bubble': 2,
          'bath': 2,
          'friday': 2,
          'party': 2,
          'least': 2,
          'every': 2,
          'fantasies': 2,
          'sex': 2,
          'fact': 2,
          'cant': 2,
          'really': 1,
          'starting': 1,
          'wonder': 1,
          'nsure': 1,
          'creatures': 1,
          'gods': 1,
          'green': 1,
          'earth': 1,
          'second': 1,
          'comes': 1,
          'choosing': 1,
          'movies': 1,
          'stars': 1,
          'always': 1,
          'strikes': 1,
          'crush': 1,
          'slowmoving': 1,
          'predictable': 1,
          'piece': 1,
          'fluff': 1,
          'nhideaway': 1,
          'horrific': 1,
          'novel': 1,
          'adaptation': 1,
          'minor': 1,
          'role': 1,
          'nclueless': 1,
          'annoying': 1,
          'unfunny': 1,
          'waste': 1,
          'time': 1,
          'people': 1,
          'emailed': 1,
          'saying': 1,
          'clueless': 1,
          'doesnt': 1,
          'girl': 1,
          'said': 1,
          'id': 1,
          'open': 1,
          'mind': 1,
          'enjoyed': 1,
          'nnothing': 1,
          'truth': 1,
          'went': 1,
          'expecting': 1,
          'love': 1,
          'preview': 1,
          'looked': 1,
          'crazymadinlove': 1,
          'bunch': 1,
          'jokes': 1,
          'coming': 1,
          'whiny': 1,
          'unlikable': 1,
          'nalmost': 1,
          'everyone': 1,
          'felt': 1,
          'way': 1,
          'nwhen': 1,
          'walking': 1,
          'yelled': 1,
          'fin': 1,
          'ive': 1,
          'rest': 1,
          'laugh': 1,
          'agreement': 1,
          'walked': 1,
          'video': 1,
          'store': 1,
          'alicias': 1,
          'pretty': 1,
          'face': 1,
          'cover': 1,
          'madeforvideo': 1,
          'called': 1,
          'knew': 1,
          'inner': 1,
          'compulsion': 1,
          'ill': 1,
          'never': 1,
          'understand': 1,
          'made': 1,
          'rent': 1,
          'anyway': 1,
          'nwhat': 1,
          'got': 1,
          '90': 1,
          'regretthe': 1,
          'paragraph': 1,
          'competition': 1,
          'nwhere': 1,
          'begin': 1,
          'criticizing': 1,
          'plot': 1,
          'thin': 1,
          'shred': 1,
          'moves': 1,
          'slower': 1,
          'glacier': 1,
          'writing': 1,
          'done': 1,
          'year': 1,
          'old': 1,
          'still': 1,
          'wasted': 1,
          'appeal': 1,
          'whatsoever': 1,
          'nthere': 1,
          'humor': 1,
          'suspense': 1,
          'story': 1,
          'needlessly': 1,
          'pointlessly': 1,
          'concluded': 1,
          'violent': 1,
          'sequence': 1,
          'nzero': 1,
          'equals': 1,
          'nwell': 1,
          'twenty': 1,
          'bathtub': 1,
          'instantly': 1,
          'joined': 1,
          'ranks': 1,
          'four': 1,
          'features': 1,
          'settle': 1,
          'nalicia': 1,
          'plays': 1,
          'whos': 1,
          'spending': 1,
          'looking': 1,
          'two': 1,
          'kids': 1,
          'whose': 1,
          'parents': 1,
          'getting': 1,
          'drunk': 1,
          'cocktail': 1,
          'anyone': 1,
          'automatically': 1,
          'nights': 1,
          'home': 1,
          'nas': 1,
          'trods': 1,
          'along': 1,
          'discover': 1,
          'mostlysilent': 1,
          'also': 1,
          'object': 1,
          'viewers': 1,
          'drunken': 1,
          'father': 1,
          'thinks': 1,
          'thing': 1,
          'recapture': 1,
          'lost': 1,
          'youth': 1,
          'boyfriend': 1,
          'lets': 1,
          'imagination': 1,
          'run': 1,
          'wild': 1,
          'spying': 1,
          'outside': 1,
          'prepubescent': 1,
          'boy': 1,
          'looks': 1,
          'bathroom': 1,
          'keyhole': 1,
          'taking': 1,
          'nthey': 1,
          'throw': 1,
          'middle': 1,
          'aged': 1,
          'wifes': 1,
          'counterpart': 1,
          'nnot': 1,
          'asked': 1,
          'thought': 1,
          'seeing': 1,
          '200': 1,
          'pound': 1,
          'woman': 1,
          'black': 1,
          'silk': 1,
          'teddy': 1,
          'nat': 1,
          'fanatasies': 1,
          'leave': 1,
          'realm': 1,
          'pgrated': 1,
          'nin': 1,
          'imagine': 1,
          'becoming': 1,
          'cinemax': 1,
          'latenight': 1,
          'staple': 1,
          'theres': 1,
          'absolutely': 1,
          'nudity': 1,
          'call': 1,
          'flick': 1,
          'nive': 1,
          'pointed': 1,
          'fall': 1,
          'comedy': 1,
          'classify': 1,
          'nbad': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'get': 5,
          'much': 5,
          'space': 4,
          'contact': 4,
          'film': 4,
          'like': 4,
          'scifi': 3,
          'films': 3,
          'little': 3,
          'crew': 3,
          'anything': 3,
          'us': 3,
          'depalma': 3,
          'really': 3,
          'mix': 2,
          'nwell': 2,
          'would': 2,
          'lot': 2,
          'said': 2,
          'planet': 2,
          'another': 2,
          'actually': 2,
          'starts': 2,
          'decent': 2,
          'minutes': 2,
          'interesting': 2,
          'dont': 2,
          'secret': 2,
          'end': 2,
          'eventually': 2,
          'settles': 2,
          'ending': 2,
          'might': 2,
          'well': 2,
          'nof': 2,
          'course': 2,
          'obvious': 2,
          'computer': 2,
          'story': 2,
          'brass': 2,
          'ndidnt': 2,
          'dialogue': 2,
          'blame': 2,
          'great': 2,
          'see': 2,
          'say': 2,
          'admire': 2,
          'think': 2,
          'worrying': 2,
          'together': 1,
          'plot': 1,
          'elements': 1,
          'various': 1,
          'successful': 1,
          'close': 1,
          'encounters': 1,
          'third': 1,
          'kind': 1,
          '2001': 1,
          'odyssey': 1,
          'apollo': 1,
          '13': 1,
          'whatever': 1,
          'youd': 1,
          'sure': 1,
          'hell': 1,
          'hope': 1,
          'thousand': 1,
          'times': 1,
          'better': 1,
          'shoddy': 1,
          'attempt': 1,
          'melange': 1,
          'considering': 1,
          'disastrous': 1,
          'results': 1,
          'left': 1,
          'nthis': 1,
          'takes': 1,
          'bit': 1,
          'everything': 1,
          'ultimately': 1,
          'adds': 1,
          'nothing': 1,
          'nits': 1,
          'nmovie': 1,
          'sucks': 1,
          'nplot': 1,
          'rescue': 1,
          'astronauts': 1,
          'sent': 1,
          'mars': 1,
          'year': 1,
          '2020': 1,
          'unknown': 1,
          'energy': 1,
          'force': 1,
          'leads': 1,
          'loss': 1,
          'previous': 1,
          'gang': 1,
          'aviators': 1,
          'visit': 1,
          'red': 1,
          'ncritique': 1,
          'extremely': 1,
          'underwhelming': 1,
          'best': 1,
          'way': 1,
          'describe': 1,
          'nuneven': 1,
          'nthe': 1,
          'trailer': 1,
          'showed': 1,
          'promise': 1,
          'buzz': 1,
          'around': 1,
          'soso': 1,
          'even': 1,
          'first': 1,
          'twenty': 1,
          'leading': 1,
          'believe': 1,
          'going': 1,
          'go': 1,
          'somewhere': 1,
          'nbut': 1,
          'isnt': 1,
          'long': 1,
          'entire': 1,
          'downshifts': 1,
          'neutral': 1,
          'features': 1,
          'walks': 1,
          'cherrycolored': 1,
          'tries': 1,
          'hard': 1,
          'pain': 1,
          'characters': 1,
          'unsuccessfully': 1,
          'tosses': 1,
          'romance': 1,
          'nin': 1,
          'know': 1,
          'seemed': 1,
          'bunch': 1,
          'nerdies': 1,
          'talking': 1,
          'techie': 1,
          'jargon': 1,
          'hour': 1,
          'half': 1,
          'figure': 1,
          'big': 1,
          'practically': 1,
          'yawning': 1,
          'excitement': 1,
          'nultimately': 1,
          'premise': 1,
          'joins': 1,
          'misadventures': 1,
          'main': 1,
          'crux': 1,
          'journey': 1,
          'one': 1,
          'anticlimactic': 1,
          'endings': 1,
          'side': 1,
          'nmind': 1,
          'enjoyed': 1,
          'shrugoftheshoulders': 1,
          'enjoy': 1,
          'frivolous': 1,
          'ditty': 1,
          'remember': 1,
          'painfully': 1,
          'distracting': 1,
          'generated': 1,
          'effects': 1,
          'nugh': 1,
          'nwhat': 1,
          'friggin': 1,
          'mess': 1,
          'nfilms': 1,
          'generally': 1,
          'wondering': 1,
          'hollywood': 1,
          'anybody': 1,
          'recognize': 1,
          'crappiness': 1,
          'script': 1,
          'read': 1,
          'bad': 1,
          'cheezy': 1,
          'lines': 1,
          'derivative': 1,
          'nature': 1,
          'work': 1,
          'mind': 1,
          'director': 1,
          'helm': 1,
          'aint': 1,
          'saying': 1,
          'cant': 1,
          'inclusion': 1,
          'jerry': 1,
          'oconnell': 1,
          'fine': 1,
          'thespians': 1,
          'nnuff': 1,
          'nneither': 1,
          'cranking': 1,
          'juice': 1,
          'musical': 1,
          'score': 1,
          'last': 1,
          'fifteen': 1,
          'presumably': 1,
          'order': 1,
          'wake': 1,
          'audience': 1,
          'okay': 1,
          'brian': 1,
          'scene': 1,
          'supposed': 1,
          'powerful': 1,
          'wow': 1,
          'yawn': 1,
          'nears': 1,
          'hurt': 1,
          'nso': 1,
          'salvageable': 1,
          'nsure': 1,
          'ngary': 1,
          'sinise': 1,
          'job': 1,
          'cheadle': 1,
          'doesnt': 1,
          'completely': 1,
          'bore': 1,
          'moves': 1,
          'along': 1,
          'slowly': 1,
          'without': 1,
          'happening': 1,
          'yes': 1,
          'sandtwister': 1,
          'effect': 1,
          'commercial': 1,
          'done': 1,
          'nother': 1,
          'ni': 1,
          'guess': 1,
          'could': 1,
          'filmmakers': 1,
          'become': 1,
          'devious': 1,
          'product': 1,
          'placement': 1,
          'strategies': 1,
          'oops': 1,
          'ndid': 1,
          'meant': 1,
          'disgusted': 1,
          'nall': 1,
          'delivers': 1,
          'actual': 1,
          'substance': 1,
          'offers': 1,
          'twobit': 1,
          'masked': 1,
          'mumbojumbo': 1,
          'pretends': 1,
          'deep': 1,
          'sappy': 1,
          'presenting': 1,
          'pathetic': 1,
          'graphic': 1,
          'part': 1,
          'gives': 1,
          'able': 1,
          'money': 1,
          'back': 1,
          'sitting': 1,
          'rehashed': 1,
          'dreck': 1,
          'ngo': 1,
          'ninth': 1,
          'gate': 1,
          'ntheres': 1,
          'nand': 1,
          'personal': 1,
          'note': 1,
          'time': 1,
          'stop': 1,
          'proverbial': 1,
          '12minute': 1,
          'uninterrupted': 1,
          'sequences': 1,
          'start': 1,
          'crappy': 1,
          'movies': 1,
          'getting': 1,
          'nneg': 1}),
 Counter({'end': 7,
          'films': 4,
          'film': 4,
          'take': 4,
          'two': 3,
          'crazy': 3,
          'grenier': 3,
          'comedy': 3,
          'school': 3,
          'law': 2,
          'movies': 2,
          'leads': 2,
          'together': 2,
          'youre': 2,
          'youve': 2,
          'nnow': 2,
          'say': 2,
          'know': 2,
          'drive': 2,
          'going': 2,
          'get': 2,
          'worth': 2,
          'hart': 2,
          'hunky': 2,
          'stud': 2,
          'whos': 2,
          'wants': 2,
          'make': 2,
          'big': 2,
          'dance': 2,
          'turn': 2,
          'nwill': 2,
          'like': 2,
          'work': 2,
          'ndo': 2,
          'writers': 2,
          'high': 2,
          'joke': 2,
          'theres': 2,
          'njust': 2,
          'kids': 2,
          'nin': 2,
          'part': 2,
          'credits': 2,
          'entertaining': 2,
          'song': 2,
          'brief': 2,
          'v': 2,
          'crowd': 1,
          'pleasing': 1,
          'romantic': 1,
          'states': 1,
          'must': 1,
          'nif': 1,
          'familiar': 1,
          'maybe': 1,
          'seen': 1,
          'trailer': 1,
          'shows': 1,
          'regular': 1,
          'reader': 1,
          'mine': 1,
          'heard': 1,
          'countless': 1,
          'times': 1,
          'journey': 1,
          'ending': 1,
          'nno': 1,
          'definitely': 1,
          'nmelissa': 1,
          'joan': 1,
          'abcs': 1,
          'sabrina': 1,
          'teenage': 1,
          'witch': 1,
          'likes': 1,
          'basketball': 1,
          'team': 1,
          'nadrien': 1,
          'grungy': 1,
          'neighbor': 1,
          'broken': 1,
          'activist': 1,
          'girlfriend': 1,
          'napparently': 1,
          'exgirlfriend': 1,
          'jealous': 1,
          'enough': 1,
          'back': 1,
          'someone': 1,
          'year': 1,
          'nso': 1,
          'pretend': 1,
          'date': 1,
          'reason': 1,
          'gives': 1,
          'bath': 1,
          'new': 1,
          'popularity': 1,
          'friends': 1,
          'scheme': 1,
          'care': 1,
          'nthe': 1,
          'teen': 1,
          'resurgence': 1,
          'late': 1,
          'surprisingly': 1,
          'good': 1,
          'terms': 1,
          'nwhat': 1,
          'makes': 1,
          'cant': 1,
          'hardly': 1,
          'wait': 1,
          '10': 1,
          'things': 1,
          'hate': 1,
          'lesser': 1,
          'extent': 1,
          'shes': 1,
          'never': 1,
          'kissed': 1,
          'seem': 1,
          'realize': 1,
          'write': 1,
          'scripts': 1,
          'accordingly': 1,
          'ni': 1,
          'dont': 1,
          'intention': 1,
          'nthere': 1,
          'smart': 1,
          'obvious': 1,
          'endings': 1,
          'getting': 1,
          'nhere': 1,
          'nothing': 1,
          'teens': 1,
          'whining': 1,
          'favor': 1,
          'go': 1,
          'job': 1,
          'something': 1,
          'shut': 1,
          'hell': 1,
          'honesty': 1,
          'best': 1,
          'normally': 1,
          'followed': 1,
          'movie': 1,
          'finally': 1,
          'case': 1,
          'though': 1,
          'really': 1,
          'nafter': 1,
          'obligatory': 1,
          'second': 1,
          'playing': 1,
          'britney': 1,
          'spears': 1,
          'titular': 1,
          'quick': 1,
          'commercial': 1,
          'jingle': 1,
          'burger': 1,
          'joint': 1,
          'hang': 1,
          'rendition': 1,
          'nnothing': 1,
          'great': 1,
          'anything': 1,
          '90': 1,
          'minutes': 1,
          'preceded': 1,
          'nscifi': 1,
          'fans': 1,
          'note': 1,
          'appearances': 1,
          'stephen': 1,
          'collins': 1,
          'star': 1,
          'trek': 1,
          'motion': 1,
          'picture': 1,
          'faye': 1,
          'grant': 1,
          'tv': 1,
          'miniseries': 1,
          'final': 1,
          'battle': 1,
          'npg13': 1,
          'nneg': 1}),
 Counter({'joe': 16,
          'big': 16,
          'gorilla': 12,
          'film': 6,
          'young': 5,
          'nthe': 5,
          'poachers': 4,
          'movie': 4,
          'characters': 4,
          'mother': 4,
          'strasser': 4,
          'isnt': 4,
          'mighty': 3,
          'minutes': 3,
          'get': 3,
          'one': 3,
          'njoe': 3,
          'said': 3,
          'nhe': 3,
          'special': 3,
          'nas': 3,
          'nand': 3,
          'effects': 3,
          'jill': 3,
          'really': 3,
          'bad': 3,
          'enough': 2,
          'much': 2,
          'ever': 2,
          'like': 2,
          'kill': 2,
          'sell': 2,
          'friend': 2,
          'quite': 2,
          'digital': 2,
          'things': 2,
          'hes': 2,
          'might': 2,
          'five': 2,
          'doesnt': 2,
          'story': 2,
          'words': 2,
          'picture': 2,
          'nits': 2,
          'formality': 2,
          'also': 2,
          'theron': 2,
          'protect': 2,
          'gregg': 2,
          'guy': 2,
          'killed': 2,
          'jills': 2,
          'preserve': 2,
          'safe': 2,
          'way': 2,
          'course': 2,
          'nbut': 2,
          'arent': 2,
          'dialogue': 2,
          'phrases': 2,
          'n': 2,
          'cage': 2,
          'word': 2,
          'little': 2,
          'interesting': 2,
          'blunders': 1,
          'nearly': 1,
          'twenty': 1,
          'actually': 1,
          'see': 1,
          'great': 1,
          'nhis': 1,
          'entrance': 1,
          'however': 1,
          'grand': 1,
          'trees': 1,
          'leaps': 1,
          'gargantuan': 1,
          'imposing': 1,
          'sporting': 1,
          'hands': 1,
          'crush': 1,
          'volkswagen': 1,
          'bug': 1,
          'pair': 1,
          'feet': 1,
          'larger': 1,
          'pro': 1,
          'basketball': 1,
          'player': 1,
          'bellows': 1,
          'angry': 1,
          'would': 1,
          'millions': 1,
          'dollars': 1,
          'nduring': 1,
          'scene': 1,
          'turned': 1,
          'wow': 1,
          'nthats': 1,
          'ape': 1,
          'runs': 1,
          'around': 1,
          'fields': 1,
          'chasing': 1,
          'cars': 1,
          'people': 1,
          'picks': 1,
          'stares': 1,
          'pensively': 1,
          'breaks': 1,
          'accident': 1,
          'avoid': 1,
          'clumsiness': 1,
          'effect': 1,
          'image': 1,
          'hold': 1,
          'interest': 1,
          'character': 1,
          'register': 1,
          'put': 1,
          'limp': 1,
          'come': 1,
          'family': 1,
          'entertainment': 1,
          'never': 1,
          'stamp': 1,
          'quality': 1,
          'silly': 1,
          'pretending': 1,
          'heart': 1,
          'remake': 1,
          '1949': 1,
          'mostly': 1,
          'strictly': 1,
          'human': 1,
          'main': 1,
          'poor': 1,
          'charlize': 1,
          'forced': 1,
          'waste': 1,
          'talent': 1,
          'lover': 1,
          'gorillas': 1,
          'child': 1,
          'witnessed': 1,
          'group': 1,
          'murder': 1,
          'lives': 1,
          'jungle': 1,
          'wildlife': 1,
          'nspecifically': 1,
          'shes': 1,
          'giant': 1,
          'since': 1,
          'childhood': 1,
          'nsoon': 1,
          'zoologist': 1,
          'ohara': 1,
          'bill': 1,
          'paxton': 1,
          'discovers': 1,
          'quickly': 1,
          'realizes': 1,
          'want': 1,
          'game': 1,
          'hunter': 1,
          'named': 1,
          'rade': 1,
          'sherbedgia': 1,
          'happens': 1,
          'nso': 1,
          'effort': 1,
          'save': 1,
          'take': 1,
          'instantly': 1,
          'clear': 1,
          'nin': 1,
          'addition': 1,
          'space': 1,
          'small': 1,
          'add': 1,
          'complications': 1,
          'shows': 1,
          'benevolent': 1,
          'pretext': 1,
          'tells': 1,
          'recognizes': 1,
          'njill': 1,
          'recognize': 1,
          'even': 1,
          'though': 1,
          'nthis': 1,
          'many': 1,
          'examples': 1,
          'stupidity': 1,
          'fulfills': 1,
          'every': 1,
          'stereotype': 1,
          'comes': 1,
          'offensive': 1,
          'competent': 1,
          'actors': 1,
          'nifty': 1,
          'sets': 1,
          'lot': 1,
          'scenes': 1,
          'digitized': 1,
          'dumb': 1,
          'satisfying': 1,
          'level': 1,
          'beyond': 1,
          'visuals': 1,
          'nif': 1,
          'critic': 1,
          'says': 1,
          'fair': 1,
          'quote': 1,
          'spoken': 1,
          'happy': 1,
          'need': 1,
          'ni': 1,
          'dont': 1,
          'know': 1,
          'theyre': 1,
          'close': 1,
          'present': 1,
          'state': 1,
          'obvious': 1,
          'npaxton': 1,
          'talented': 1,
          'performers': 1,
          'deserve': 1,
          'work': 1,
          'script': 1,
          'provides': 1,
          'nsadly': 1,
          'wastes': 1,
          'nthere': 1,
          'clever': 1,
          'moments': 1,
          'although': 1,
          'none': 1,
          'surfacing': 1,
          'memory': 1,
          'moment': 1,
          'held': 1,
          'attention': 1,
          'least': 1,
          'certainly': 1,
          'kids': 1,
          'doubt': 1,
          'give': 1,
          'nightmares': 1,
          'adults': 1,
          'audience': 1,
          'likely': 1,
          'find': 1,
          'anything': 1,
          'na': 1,
          'something': 1,
          'needs': 1,
          'done': 1,
          'nnobody': 1,
          'figures': 1,
          'nneg': 1}),
 Counter({'spawn': 10,
          'nthe': 5,
          'movie': 4,
          'simmons': 4,
          'like': 4,
          'nin': 3,
          'hell': 3,
          'clown': 3,
          'would': 3,
          'one': 3,
          'even': 3,
          'think': 3,
          'story': 3,
          'batman': 3,
          'guys': 2,
          'nit': 2,
          'appears': 2,
          'made': 2,
          'forces': 2,
          'earth': 2,
          'wynn': 2,
          'scenes': 2,
          'making': 2,
          'world': 2,
          'wanda': 2,
          'years': 2,
          'form': 2,
          'leguizamo': 2,
          'look': 2,
          'computergenerated': 2,
          'movies': 2,
          'interesting': 2,
          'nwhat': 2,
          'pest': 2,
          'nas': 2,
          'people': 2,
          'features': 1,
          'good': 1,
          'bad': 1,
          'lots': 1,
          'fighting': 1,
          'bloody': 1,
          'violence': 1,
          'leatherclad': 1,
          'machine': 1,
          'gun': 1,
          'chick': 1,
          'gooey': 1,
          'selfhealing': 1,
          'bullet': 1,
          'holes': 1,
          'scatological': 1,
          'humor': 1,
          'maneating': 1,
          'monster': 1,
          'tailor': 1,
          'swarm': 1,
          '12': 1,
          '13yearold': 1,
          'boys': 1,
          'classic': 1,
          'example': 1,
          'telling': 1,
          'showing': 1,
          'opens': 1,
          'truckload': 1,
          'mumbo': 1,
          'jumbo': 1,
          'darkness': 1,
          'light': 1,
          'men': 1,
          'ones': 1,
          'create': 1,
          'evil': 1,
          'nso': 1,
          'much': 1,
          'message': 1,
          'lurches': 1,
          'forward': 1,
          'plight': 1,
          'al': 1,
          'michael': 1,
          'jai': 1,
          'white': 1,
          'government': 1,
          'assassinoperative': 1,
          'murdered': 1,
          'diabolical': 1,
          'boss': 1,
          'jason': 1,
          'martin': 1,
          'sheen': 1,
          'plays': 1,
          'oscar': 1,
          'clip': 1,
          'top': 1,
          'secret': 1,
          'mission': 1,
          'north': 1,
          'korean': 1,
          'biological': 1,
          'weapons': 1,
          'plant': 1,
          'nsimmons': 1,
          'goes': 1,
          'back': 1,
          'deal': 1,
          'satan': 1,
          'agrees': 1,
          'command': 1,
          'devils': 1,
          'army': 1,
          'overtake': 1,
          'allowed': 1,
          'return': 1,
          'see': 1,
          'wife': 1,
          'underused': 1,
          'theresa': 1,
          'randle': 1,
          'little': 1,
          'girl': 1,
          'cyan': 1,
          'sydni': 1,
          'beaudoin': 1,
          'nof': 1,
          'course': 1,
          'seeing': 1,
          'five': 1,
          'passed': 1,
          'fallen': 1,
          'married': 1,
          'partner': 1,
          'b': 1,
          'nsweeney': 1,
          'nhis': 1,
          'uh': 1,
          'shoulder': 1,
          'cry': 1,
          'comes': 1,
          'john': 1,
          'disgustingly': 1,
          'disproportioned': 1,
          'minion': 1,
          'satans': 1,
          'nclown': 1,
          'manipulates': 1,
          'superhuman': 1,
          'stand': 1,
          'nwynn': 1,
          'thinks': 1,
          'league': 1,
          'doubledealing': 1,
          'recognizes': 1,
          'threat': 1,
          'undergoes': 1,
          'operation': 1,
          'bomb': 1,
          'placed': 1,
          'heart': 1,
          'stops': 1,
          'beating': 1,
          'major': 1,
          'cities': 1,
          'around': 1,
          'detonate': 1,
          'causing': 1,
          'leak': 1,
          'disease': 1,
          'makes': 1,
          'ebola': 1,
          'virus': 1,
          'skin': 1,
          'rash': 1,
          'nphew': 1,
          'got': 1,
          'easy': 1,
          'dismiss': 1,
          'another': 1,
          'heavyonfx': 1,
          'shortonsubstance': 1,
          'action': 1,
          'pics': 1,
          'doesnt': 1,
          'work': 1,
          'level': 1,
          'sequences': 1,
          'often': 1,
          'plenty': 1,
          'problem': 1,
          'several': 1,
          'set': 1,
          'present': 1,
          'devil': 1,
          'looks': 1,
          'acts': 1,
          'video': 1,
          'game': 1,
          'graphic': 1,
          'healthy': 1,
          'budget': 1,
          'youd': 1,
          'could': 1,
          'afforded': 1,
          'make': 1,
          'mouth': 1,
          'move': 1,
          'talks': 1,
          'nother': 1,
          'elements': 1,
          'soso': 1,
          'spawns': 1,
          'enormous': 1,
          'red': 1,
          'flowing': 1,
          'cape': 1,
          'wonderful': 1,
          'sight': 1,
          'obvious': 1,
          'hes': 1,
          'played': 1,
          'costumed': 1,
          'actor': 1,
          'image': 1,
          'contact': 1,
          'special': 1,
          'effects': 1,
          'serve': 1,
          'nand': 1,
          'isnt': 1,
          'character': 1,
          'films': 1,
          'reliance': 1,
          'razzledazzle': 1,
          'acceptable': 1,
          'given': 1,
          'somebody': 1,
          'root': 1,
          'funky': 1,
          'alterego': 1,
          'completely': 1,
          'underdeveloped': 1,
          'need': 1,
          'luke': 1,
          'skywalker': 1,
          'neven': 1,
          'watching': 1,
          'adventures': 1,
          'kleenex': 1,
          'man': 1,
          'npoor': 1,
          'nhe': 1,
          'starred': 1,
          'februarys': 1,
          'still': 1,
          'worst': 1,
          'far': 1,
          'although': 1,
          'give': 1,
          'run': 1,
          'money': 1,
          'overacts': 1,
          'extreme': 1,
          'never': 1,
          'missing': 1,
          'opportunity': 1,
          'poortaste': 1,
          'punchline': 1,
          'nleguizamo': 1,
          'farts': 1,
          'green': 1,
          'mist': 1,
          'munches': 1,
          'pizza': 1,
          'slice': 1,
          'covered': 1,
          'maggots': 1,
          'dons': 1,
          'miniskirt': 1,
          'performs': 1,
          'cheerleader': 1,
          'routine': 1,
          'turning': 1,
          'giant': 1,
          'grey': 1,
          'demon': 1,
          'guy': 1,
          'brilliant': 1,
          'wong': 1,
          'foo': 1,
          'thanks': 1,
          'everything': 1,
          'njulie': 1,
          'newmar': 1,
          'wasting': 1,
          'talent': 1,
          'nim': 1,
          'liked': 1,
          'robin': 1,
          'summers': 1,
          'bigbudget': 1,
          'comic': 1,
          'book': 1,
          'film': 1,
          'nyet': 1,
          'catching': 1,
          'inevitable': 1,
          'comparison': 1,
          'hope': 1,
          'change': 1,
          'minds': 1,
          'superior': 1,
          'adaptation': 1,
          'ntheres': 1,
          'compelling': 1,
          'somewhere': 1,
          'including': 1,
          'strong': 1,
          'religious': 1,
          'overtones': 1,
          'debut': 1,
          'first': 1,
          'africanamerican': 1,
          'superhero': 1,
          'ever': 1,
          'found': 1,
          'anywhere': 1,
          'near': 1,
          'awful': 1,
          'stinks': 1,
          'worse': 1,
          'dead': 1,
          'trout': 1,
          'nneg': 1}),
 Counter({'dreams': 5,
          'claire': 4,
          'creepy': 2,
          'clairvoyant': 2,
          'potential': 2,
          'least': 2,
          'nifty': 2,
          'even': 2,
          'comes': 2,
          'enough': 2,
          'nthis': 2,
          'film': 2,
          'didnt': 2,
          'nshe': 2,
          'sense': 2,
          'turns': 2,
          'vivian': 2,
          'hes': 2,
          'might': 1,
          'keep': 1,
          'awake': 1,
          'night': 1,
          'imagery': 1,
          'bizarre': 1,
          'visual': 1,
          'style': 1,
          'story': 1,
          'madman': 1,
          'lures': 1,
          'young': 1,
          'girls': 1,
          'untimely': 1,
          'deaths': 1,
          'nno': 1,
          'source': 1,
          'sleeplessness': 1,
          'lies': 1,
          'within': 1,
          'movies': 1,
          'brutally': 1,
          'squandered': 1,
          'admittedly': 1,
          'premise': 1,
          'tired': 1,
          'serial': 1,
          'killer': 1,
          'genre': 1,
          'standards': 1,
          'nthe': 1,
          'big': 1,
          'letdown': 1,
          'however': 1,
          'upon': 1,
          'realization': 1,
          '100minute': 1,
          'headscratcher': 1,
          'masterminded': 1,
          'neil': 1,
          'jordan': 1,
          'man': 1,
          'behind': 1,
          'crying': 1,
          'game': 1,
          'nhes': 1,
          'stranger': 1,
          'cinematic': 1,
          'weirdness': 1,
          'nutty': 1,
          'nonsense': 1,
          'really': 1,
          'pushes': 1,
          'envelope': 1,
          'nthings': 1,
          'start': 1,
          'strong': 1,
          'cinematographer': 1,
          'darius': 1,
          'khondjis': 1,
          'stunning': 1,
          'camera': 1,
          'work': 1,
          'guiding': 1,
          'viewers': 1,
          'bowels': 1,
          'underwater': 1,
          'ghost': 1,
          'town': 1,
          'prologue': 1,
          'establishes': 1,
          'notably': 1,
          'grim': 1,
          'tone': 1,
          'right': 1,
          'bat': 1,
          'eerie': 1,
          'opulence': 1,
          'remains': 1,
          'dazzling': 1,
          'display': 1,
          'showmanship': 1,
          'throughout': 1,
          'entire': 1,
          'theres': 1,
          'something': 1,
          'macabre': 1,
          'way': 1,
          'khondji': 1,
          'photographs': 1,
          'rustic': 1,
          'seemingly': 1,
          'innocent': 1,
          'new': 1,
          'england': 1,
          'autumn': 1,
          'ever': 1,
          'deserve': 1,
          'good': 1,
          'polish': 1,
          'one': 1,
          'ndont': 1,
          'knock': 1,
          'look': 1,
          'say': 1,
          'foolish': 1,
          'plot': 1,
          'underdeveloped': 1,
          'characters': 1,
          'flat': 1,
          'dialogue': 1,
          'nannette': 1,
          'bening': 1,
          'another': 1,
          'asset': 1,
          'shouldnt': 1,
          'lucky': 1,
          'boast': 1,
          'gives': 1,
          'increasingly': 1,
          'effective': 1,
          'performance': 1,
          'role': 1,
          'doesnt': 1,
          'much': 1,
          'return': 1,
          'plays': 1,
          'cooper': 1,
          'massachusetts': 1,
          'childrens': 1,
          'book': 1,
          'illustrator': 1,
          'whos': 1,
          'plagued': 1,
          'terrifying': 1,
          'nightmares': 1,
          'involving': 1,
          'kidnaped': 1,
          'children': 1,
          'thinks': 1,
          'visions': 1,
          'warning': 1,
          'knell': 1,
          'horrible': 1,
          'soontobecommitted': 1,
          'crimes': 1,
          'neither': 1,
          'hohum': 1,
          'husband': 1,
          'aidan': 1,
          'quinn': 1,
          'hohummer': 1,
          'police': 1,
          'muster': 1,
          'take': 1,
          'seriously': 1,
          'thriller': 1,
          'know': 1,
          'fact': 1,
          'money': 1,
          'credit': 1,
          'benings': 1,
          'acting': 1,
          'delves': 1,
          'equally': 1,
          'claires': 1,
          'madness': 1,
          'compassion': 1,
          'nbut': 1,
          'soon': 1,
          'body': 1,
          'given': 1,
          'authorities': 1,
          'reason': 1,
          'believe': 1,
          'claims': 1,
          'trades': 1,
          'supernatural': 1,
          'chills': 1,
          'long': 1,
          'series': 1,
          'allegedly': 1,
          'spooky': 1,
          'jolts': 1,
          'simply': 1,
          'refuse': 1,
          'make': 1,
          'nscenes': 1,
          'pile': 1,
          'like': 1,
          'car': 1,
          'wreck': 1,
          'little': 1,
          'explanation': 1,
          'exposition': 1,
          'nsubplots': 1,
          'appear': 1,
          'disappear': 1,
          'nwhen': 1,
          'finally': 1,
          'facetoface': 1,
          'evil': 1,
          'murderer': 1,
          'robert': 1,
          'downey': 1,
          'jr': 1,
          'name': 1,
          'got': 1,
          'major': 1,
          'issues': 1,
          'mama': 1,
          'la': 1,
          'norman': 1,
          'bates': 1,
          'n': 1,
          'reaches': 1,
          'absurdist': 1,
          'zenith': 1,
          'climax': 1,
          'drags': 1,
          'mumbled': 1,
          'revelations': 1,
          'laughable': 1,
          'twists': 1,
          'nsome': 1,
          'questions': 1,
          'whats': 1,
          'garbage': 1,
          'disposal': 1,
          'retching': 1,
          'applesauce': 1,
          'nare': 1,
          'drawings': 1,
          'wall': 1,
          'blood': 1,
          'paint': 1,
          'nwho': 1,
          'cranked': 1,
          'andrews': 1,
          'sisters': 1,
          'cd': 1,
          'player': 1,
          'caused': 1,
          'swing': 1,
          'move': 1,
          'nwhat': 1,
          'computer': 1,
          'ndoes': 1,
          'possess': 1,
          'gift': 1,
          'telekinesis': 1,
          'addition': 1,
          'powers': 1,
          'nwhy': 1,
          'would': 1,
          'continually': 1,
          'endanger': 1,
          'necessary': 1,
          'ultimate': 1,
          'plan': 1,
          'nis': 1,
          'woman': 1,
          'australia': 1,
          'integral': 1,
          'anything': 1,
          'nand': 1,
          'aforementioned': 1,
          'flooded': 1,
          'city': 1,
          'function': 1,
          '_really_': 1,
          'serve': 1,
          'nsigh': 1,
          'nat': 1,
          'imagine': 1,
          'better': 1,
          'movie': 1,
          'certain': 1,
          'talent': 1,
          'go': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'van': 8,
          'movie': 7,
          'knock': 5,
          'damme': 5,
          'even': 5,
          'worst': 4,
          'dammes': 4,
          'clear': 4,
          'nthe': 4,
          'nand': 4,
          'seen': 3,
          'supposed': 3,
          'never': 3,
          'bad': 3,
          'camera': 3,
          'problem': 3,
          'one': 3,
          'special': 3,
          'effects': 3,
          'way': 3,
          'car': 3,
          'cheap': 2,
          'action': 2,
          'nits': 2,
          'stars': 2,
          'schneider': 2,
          'plays': 2,
          'rochon': 2,
          'idea': 2,
          'explanation': 2,
          'know': 2,
          'reason': 2,
          'chan': 2,
          'comes': 2,
          'many': 2,
          'films': 2,
          'made': 2,
          'directed': 2,
          'lets': 2,
          'second': 2,
          'thats': 2,
          'point': 2,
          'get': 2,
          'nfor': 2,
          'example': 2,
          'raimi': 2,
          'movies': 2,
          'watching': 2,
          'neven': 2,
          'scene': 2,
          'drives': 2,
          'gives': 2,
          'performance': 2,
          'usually': 2,
          'every': 2,
          'funny': 2,
          'exactly': 1,
          'also': 1,
          'thus': 1,
          'far': 1,
          'year': 1,
          'ni': 1,
          'figured': 1,
          'would': 1,
          'least': 1,
          'couple': 1,
          'months': 1,
          'saw': 1,
          '1998': 1,
          'alas': 1,
          'already': 1,
          'found': 1,
          'njeanclaude': 1,
          'think': 1,
          'designer': 1,
          'jeans': 1,
          'executive': 1,
          'discovers': 1,
          'halfbrother': 1,
          'supplying': 1,
          'cheaper': 1,
          'goods': 1,
          'nrob': 1,
          'partner': 1,
          'nactually': 1,
          'nshe': 1,
          'sort': 1,
          'popped': 1,
          'halfway': 1,
          'without': 1,
          'nmany': 1,
          'things': 1,
          'explained': 1,
          'bizarre': 1,
          'seemed': 1,
          'jackie': 1,
          'impression': 1,
          'throughout': 1,
          'flick': 1,
          'nwhere': 1,
          'endearing': 1,
          'normal': 1,
          'guy': 1,
          'character': 1,
          'wimp': 1,
          'nwere': 1,
          'given': 1,
          'basis': 1,
          'actions': 1,
          'nto': 1,
          'hour': 1,
          'style': 1,
          'strange': 1,
          'experiment': 1,
          'gone': 1,
          'horribly': 1,
          'wrong': 1,
          'ntsui': 1,
          'hark': 1,
          'last': 1,
          'nearly': 1,
          'double': 1,
          'team': 1,
          'rest': 1,
          'exaggeration': 1,
          'nwe': 1,
          'treated': 1,
          'five': 1,
          'shot': 1,
          'view': 1,
          'foot': 1,
          'entering': 1,
          'shoe': 1,
          'nfabulous': 1,
          'nseriously': 1,
          'though': 1,
          'directors': 1,
          'want': 1,
          'play': 1,
          'around': 1,
          'conventions': 1,
          'long': 1,
          'dont': 1,
          'carried': 1,
          'away': 1,
          'look': 1,
          'sam': 1,
          'n': 1,
          'army': 1,
          'darkness': 1,
          'best': 1,
          'features': 1,
          'inventive': 1,
          'work': 1,
          'ever': 1,
          'story': 1,
          'nthats': 1,
          'concept': 1,
          'tsui': 1,
          'cant': 1,
          'seem': 1,
          'grasp': 1,
          'outrageous': 1,
          'angles': 1,
          'rule': 1,
          'audience': 1,
          'doesnt': 1,
          'clue': 1,
          'whats': 1,
          'happening': 1,
          'nanother': 1,
          'looks': 1,
          'stock': 1,
          'used': 1,
          'low': 1,
          'caliber': 1,
          'thought': 1,
          'chinese': 1,
          'shown': 1,
          'really': 1,
          'late': 1,
          'night': 1,
          'inexplicable': 1,
          'everyones': 1,
          'voice': 1,
          'seems': 1,
          'dubbed': 1,
          'seemingly': 1,
          'aspect': 1,
          'director': 1,
          'actually': 1,
          'cared': 1,
          'inconsistent': 1,
          'window': 1,
          'slams': 1,
          'ground': 1,
          'left': 1,
          'wheel': 1,
          'completely': 1,
          'destroyed': 1,
          'nseconds': 1,
          'later': 1,
          'full': 1,
          'speed': 1,
          'nhey': 1,
          'suspending': 1,
          'disbelief': 1,
          'line': 1,
          'must': 1,
          'drawn': 1,
          'somewhere': 1,
          'nfinally': 1,
          'acting': 1,
          'nnobody': 1,
          'good': 1,
          'nvan': 1,
          'actor': 1,
          'like': 1,
          'mark': 1,
          'playing': 1,
          'everyman': 1,
          'provide': 1,
          'comic': 1,
          'relief': 1,
          'assume': 1,
          'totally': 1,
          'unfunny': 1,
          'acts': 1,
          'solid': 1,
          'paul': 1,
          'sorvino': 1,
          'terribly': 1,
          'overthetop': 1,
          'nonce': 1,
          'nin': 1,
          'case': 1,
          'havent': 1,
          'yet': 1,
          'enough': 1,
          'career': 1,
          'possibly': 1,
          'decade': 1,
          'inept': 1,
          'nthere': 1,
          'redeeming': 1,
          'factors': 1,
          'seriously': 1,
          'hope': 1,
          'print': 1,
          'burned': 1,
          'crisp': 1,
          'somehow': 1,
          'memory': 1,
          'erased': 1,
          'nneg': 1}),
 Counter({'film': 17,
          'one': 7,
          'like': 6,
          'rick': 6,
          'character': 6,
          'way': 6,
          'whos': 5,
          'shot': 5,
          'would': 5,
          'kind': 4,
          'movie': 4,
          'nits': 4,
          'since': 4,
          'least': 4,
          'makes': 4,
          'wrong': 4,
          'different': 4,
          'nthis': 4,
          'happened': 4,
          'scene': 4,
          'extremely': 4,
          'much': 3,
          'depalma': 3,
          'perspectives': 3,
          'follow': 3,
          'arena': 3,
          'happens': 3,
          'many': 3,
          'well': 3,
          'theres': 3,
          'half': 3,
          'life': 3,
          'piece': 3,
          'flawed': 3,
          'snake': 2,
          'eyes': 2,
          'aggravating': 2,
          'becomes': 2,
          'disappointing': 2,
          'great': 2,
          'even': 2,
          'cage': 2,
          'worse': 2,
          'story': 2,
          'could': 2,
          'opens': 2,
          'hall': 2,
          'fame': 2,
          'nin': 2,
          'mean': 2,
          'may': 2,
          'opening': 2,
          'meet': 2,
          'santoro': 2,
          'talks': 2,
          'kevin': 2,
          'also': 2,
          'big': 2,
          'thats': 2,
          'kirkland': 2,
          'behind': 2,
          'gets': 2,
          'red': 2,
          'nwhat': 2,
          'really': 2,
          'people': 2,
          'get': 2,
          'conspiracy': 2,
          'nas': 2,
          'learn': 2,
          'cops': 2,
          'takes': 2,
          'interesting': 2,
          'watch': 2,
          'nit': 2,
          'answer': 2,
          'mystery': 2,
          'nbut': 2,
          'worst': 2,
          'person': 2,
          'didnt': 2,
          'think': 2,
          'rely': 2,
          'decided': 2,
          'become': 2,
          'less': 2,
          'credible': 2,
          'end': 2,
          'mysteries': 2,
          'deux': 2,
          'ex': 2,
          'ndepalma': 2,
          'koepp': 2,
          'complexity': 2,
          'nhe': 2,
          'see': 2,
          'redemption': 2,
          'make': 2,
          'promises': 2,
          'perhaps': 2,
          'hour': 2,
          'hed': 2,
          'shows': 1,
          'potential': 1,
          'unbelievably': 1,
          'brian': 1,
          'hes': 1,
          'director': 1,
          'films': 1,
          'always': 1,
          'greeted': 1,
          'fanfare': 1,
          'nand': 1,
          'starring': 1,
          'nicolas': 1,
          'gives': 1,
          'brauvara': 1,
          'performance': 1,
          'hardly': 1,
          'worth': 1,
          'talents': 1,
          'sole': 1,
          'reason': 1,
          'totally': 1,
          'intelligent': 1,
          'absolutely': 1,
          'subtlety': 1,
          'handled': 1,
          'complexly': 1,
          'intensely': 1,
          'point': 1,
          'turn': 1,
          'leads': 1,
          'halfassedness': 1,
          'deservedly': 1,
          'eighthassedness': 1,
          'certain': 1,
          'circles': 1,
          'advertised': 1,
          'modern': 1,
          'day': 1,
          'version': 1,
          'kurosawas': 1,
          'classic': 1,
          'rashomon': 1,
          'crime': 1,
          'told': 1,
          'four': 1,
          'looks': 1,
          'though': 1,
          'actually': 1,
          'might': 1,
          'add': 1,
          'superb': 1,
          'long': 1,
          'steadicam': 1,
          'protagonist': 1,
          'crooked': 1,
          'atlantic': 1,
          'city': 1,
          'detective': 1,
          'boxing': 1,
          'match': 1,
          'cell': 1,
          'phone': 1,
          'wife': 1,
          'interupts': 1,
          'payperview': 1,
          'event': 1,
          'tv': 1,
          'chases': 1,
          'gambler': 1,
          'enters': 1,
          'pumped': 1,
          'fight': 1,
          'sits': 1,
          'bud': 1,
          'dunne': 1,
          'gary': 1,
          'sinise': 1,
          'confused': 1,
          'actor': 1,
          'dunn': 1,
          'watches': 1,
          'ntheres': 1,
          'name': 1,
          'crowd': 1,
          'secretary': 1,
          'defense': 1,
          'charles': 1,
          'joel': 1,
          'fabiani': 1,
          'sitting': 1,
          'second': 1,
          'heavyweight': 1,
          'champion': 1,
          'lincoln': 1,
          'tyler': 1,
          'stan': 1,
          'shaw': 1,
          'knocked': 1,
          'creates': 1,
          'herrings': 1,
          'possibilities': 1,
          'close': 1,
          'examination': 1,
          'total': 1,
          'deconstruction': 1,
          'asks': 1,
          'sets': 1,
          'begins': 1,
          'question': 1,
          'ndiscovers': 1,
          'good': 1,
          'possibility': 1,
          'trying': 1,
          'information': 1,
          'woman': 1,
          'talking': 1,
          'carla': 1,
          'gugino': 1,
          'flees': 1,
          'panic': 1,
          'tries': 1,
          'hide': 1,
          'adjacent': 1,
          'casinohotel': 1,
          'blocked': 1,
          'doors': 1,
          'witness': 1,
          'going': 1,
          'pretty': 1,
          'fine': 1,
          'dandy': 1,
          'step': 1,
          'nwe': 1,
          'early': 1,
          'find': 1,
          'part': 1,
          'obviously': 1,
          'supposed': 1,
          'herring': 1,
          'stupid': 1,
          'cliched': 1,
          'turns': 1,
          'chase': 1,
          'already': 1,
          'know': 1,
          'cant': 1,
          'ricks': 1,
          'investigation': 1,
          'ran': 1,
          'guts': 1,
          'complex': 1,
          'original': 1,
          'third': 1,
          'fall': 1,
          'back': 1,
          'easy': 1,
          'nevents': 1,
          'proposterous': 1,
          'offender': 1,
          'machina': 1,
          'nthats': 1,
          'outside': 1,
          'intereference': 1,
          'brings': 1,
          'sudden': 1,
          'conclusion': 1,
          'everything': 1,
          'okay': 1,
          'time': 1,
          'hurricane': 1,
          'outofcontrol': 1,
          'police': 1,
          'car': 1,
          'round': 1,
          'ball': 1,
          'adorned': 1,
          'went': 1,
          'screenwriter': 1,
          'david': 1,
          'respective': 1,
          'fields': 1,
          'known': 1,
          'bringing': 1,
          'idolizes': 1,
          'hitchcock': 1,
          'death': 1,
          'done': 1,
          'masterpiece': 1,
          'blow': 1,
          'soundman': 1,
          'uses': 1,
          'elements': 1,
          'uncover': 1,
          'granted': 1,
          'intriguing': 1,
          'overthetop': 1,
          'setups': 1,
          'notably': 1,
          'beginning': 1,
          'sequence': 1,
          'camera': 1,
          'pans': 1,
          'top': 1,
          'bunch': 1,
          'rooms': 1,
          'hotel': 1,
          'forgetting': 1,
          'anything': 1,
          'boundaries': 1,
          'nat': 1,
          'direction': 1,
          'partly': 1,
          'nthen': 1,
          'showed': 1,
          'ability': 1,
          'making': 1,
          'characters': 1,
          'flaws': 1,
          'come': 1,
          'depalmas': 1,
          'earlier': 1,
          'carlitos': 1,
          'dove': 1,
          'right': 1,
          'past': 1,
          'examined': 1,
          'write': 1,
          'seems': 1,
          'halfassed': 1,
          'effort': 1,
          'nhes': 1,
          'wasnt': 1,
          'formulaic': 1,
          'na': 1,
          'towards': 1,
          'fatal': 1,
          'decision': 1,
          'cheapened': 1,
          'fact': 1,
          'emotional': 1,
          'buildup': 1,
          'said': 1,
          'opposite': 1,
          'says': 1,
          'gone': 1,
          'intelligence': 1,
          'disection': 1,
          'pulls': 1,
          'rug': 1,
          'us': 1,
          'convinced': 1,
          'able': 1,
          'go': 1,
          'watching': 1,
          'first': 1,
          'couldnt': 1,
          'wait': 1,
          'unearthed': 1,
          'given': 1,
          'choice': 1,
          'believe': 1,
          'nnow': 1,
          'nunfortunately': 1,
          'two': 1,
          'major': 1,
          'machinas': 1,
          'disasterous': 1,
          'ending': 1,
          'goes': 1,
          'autopilot': 1,
          'stale': 1,
          'recycled': 1,
          'crap': 1,
          'weve': 1,
          'seen': 1,
          'never': 1,
          'someone': 1,
          'nneg': 1}),
 Counter({'girls': 6,
          'crucible': 5,
          'scene': 5,
          'one': 3,
          'nnot': 3,
          'john': 3,
          'day': 3,
          'lewis': 3,
          'abigail': 3,
          'nthe': 3,
          'opening': 3,
          'elizabeth': 3,
          'moral': 3,
          'boiling': 2,
          'forest': 2,
          'love': 2,
          'proctor': 2,
          'ryder': 2,
          'seizes': 2,
          'chicken': 2,
          'bit': 2,
          'puritan': 2,
          'witches': 2,
          'blame': 2,
          'play': 2,
          'plays': 2,
          'abigails': 2,
          'nit': 2,
          'frenzy': 2,
          'nwhen': 2,
          'nabigail': 2,
          'much': 2,
          'human': 2,
          'forgive': 1,
          'fevered': 1,
          'criticism': 1,
          'fervor': 1,
          'infects': 1,
          'nset': 1,
          '1692': 1,
          'salem': 1,
          'massachusetts': 1,
          'opens': 1,
          'group': 1,
          'teenage': 1,
          'passionately': 1,
          'singing': 1,
          'dancing': 1,
          'around': 1,
          'cauldron': 1,
          'middle': 1,
          'glow': 1,
          'full': 1,
          'moon': 1,
          'nthey': 1,
          'beckon': 1,
          'names': 1,
          'men': 1,
          'targets': 1,
          'spells': 1,
          'nthen': 1,
          'lets': 1,
          'hair': 1,
          'sheds': 1,
          'clothes': 1,
          'outdone': 1,
          'quest': 1,
          'regain': 1,
          'attention': 1,
          'daniel': 1,
          'winona': 1,
          'suddenly': 1,
          'beats': 1,
          'ground': 1,
          'smears': 1,
          'face': 1,
          'lips': 1,
          'fresh': 1,
          'blood': 1,
          'ntaking': 1,
          'even': 1,
          'adolescent': 1,
          'hormone': 1,
          'surges': 1,
          'account': 1,
          'surely': 1,
          'chickenbashing': 1,
          'excessive': 1,
          'especially': 1,
          'prim': 1,
          'sensibilities': 1,
          'nsurely': 1,
          'eye': 1,
          'close': 1,
          'coven': 1,
          'gets': 1,
          'errs': 1,
          'beginning': 1,
          'arthur': 1,
          'millers': 1,
          'name': 1,
          'summoned': 1,
          'addition': 1,
          'screen': 1,
          'adaptation': 1,
          'nthis': 1,
          'far': 1,
          'harmless': 1,
          'event': 1,
          'bad': 1,
          'start': 1,
          'already': 1,
          'shaky': 1,
          'morality': 1,
          'tale': 1,
          'describes': 1,
          'films': 1,
          'tense': 1,
          'exchanges': 1,
          'makes': 1,
          'wonder': 1,
          'veracity': 1,
          'accusation': 1,
          'reply': 1,
          'adds': 1,
          'charged': 1,
          'atmosphere': 1,
          'nin': 1,
          'film': 1,
          'becomes': 1,
          'unintentional': 1,
          'pandoras': 1,
          'box': 1,
          'credulity': 1,
          'stretched': 1,
          'obsession': 1,
          'unfortunately': 1,
          'spotlighted': 1,
          'positions': 1,
          'cautionary': 1,
          'fable': 1,
          'obsessive': 1,
          'malevolent': 1,
          'women': 1,
          'witch': 1,
          'hunts': 1,
          'bring': 1,
          'back': 1,
          'memory': 1,
          'rabbit': 1,
          'away': 1,
          'pot': 1,
          'surprisingly': 1,
          'nighttime': 1,
          'go': 1,
          'unnoticed': 1,
          'two': 1,
          'fail': 1,
          'wake': 1,
          'following': 1,
          'morning': 1,
          'invoked': 1,
          'eager': 1,
          'questioned': 1,
          'confession': 1,
          'guilt': 1,
          'accompanied': 1,
          'announcement': 1,
          'return': 1,
          'god': 1,
          'thereafter': 1,
          'converted': 1,
          'immaculate': 1,
          'witnesses': 1,
          'led': 1,
          'lustfully': 1,
          'nwith': 1,
          'alarming': 1,
          'synchronicity': 1,
          'hormonallyadvantaged': 1,
          'zealously': 1,
          'gesture': 1,
          'point': 1,
          'accusing': 1,
          'fingers': 1,
          'innocents': 1,
          'constant': 1,
          'reminders': 1,
          'passion': 1,
          'sets': 1,
          'inexorable': 1,
          'motion': 1,
          'opportunity': 1,
          'rid': 1,
          'rival': 1,
          'proctors': 1,
          'wife': 1,
          'joan': 1,
          'allen': 1,
          'including': 1,
          'among': 1,
          'accused': 1,
          'witchcraft': 1,
          'nappropriately': 1,
          'narrowwaisted': 1,
          'equipped': 1,
          'distractingly': 1,
          'white': 1,
          'smile': 1,
          'watch': 1,
          'teeth': 1,
          'deteriorate': 1,
          'quickly': 1,
          'murky': 1,
          'yellow': 1,
          'dashing': 1,
          'hero': 1,
          'overearnestness': 1,
          'longs': 1,
          'watched': 1,
          'ndirector': 1,
          'nicholas': 1,
          'hytner': 1,
          'guilty': 1,
          'encouraging': 1,
          'foamingmouth': 1,
          'fervour': 1,
          'shots': 1,
          'stare': 1,
          'mounted': 1,
          'pedestal': 1,
          'admiration': 1,
          'notherwise': 1,
          'hytners': 1,
          'direction': 1,
          'unremarkable': 1,
          'nryders': 1,
          'performance': 1,
          'consistent': 1,
          'mood': 1,
          'swings': 1,
          'nher': 1,
          'fits': 1,
          'energetic': 1,
          'enough': 1,
          'quieter': 1,
          'moments': 1,
          'less': 1,
          'successful': 1,
          'supposedly': 1,
          'revels': 1,
          'newfound': 1,
          'power': 1,
          'fails': 1,
          'convincingly': 1,
          'haughty': 1,
          'although': 1,
          'haughtiness': 1,
          'spare': 1,
          'npaul': 1,
          'scofield': 1,
          'fine': 1,
          'overzealous': 1,
          'judge': 1,
          'danforth': 1,
          'incessant': 1,
          'posturings': 1,
          'characters': 1,
          'along': 1,
          'recurrent': 1,
          'histrionics': 1,
          'young': 1,
          'pricks': 1,
          'nerves': 1,
          'nprobably': 1,
          'refuge': 1,
          'restraint': 1,
          'amidst': 1,
          'huffing': 1,
          'puffing': 1,
          'allens': 1,
          'comes': 1,
          'sympathetic': 1,
          'character': 1,
          'na': 1,
          'near': 1,
          'end': 1,
          'featuring': 1,
          'private': 1,
          'conversation': 1,
          'imprisoned': 1,
          'undeniably': 1,
          'powerful': 1,
          'given': 1,
          'reprieve': 1,
          'bantering': 1,
          'consequences': 1,
          'revealed': 1,
          'nunfortunately': 1,
          'johns': 1,
          'audience': 1,
          'increases': 1,
          'urge': 1,
          'pontificate': 1,
          'returns': 1,
          'urgency': 1,
          'situation': 1,
          'lost': 1,
          'clear': 1,
          'miller': 1,
          'meant': 1,
          'well': 1,
          'wish': 1,
          'delicacy': 1,
          'fewer': 1,
          'diversions': 1,
          'nhis': 1,
          'screenplay': 1,
          'imperfect': 1,
          'creature': 1,
          'distractions': 1,
          'coming': 1,
          'loud': 1,
          'message': 1,
          'result': 1,
          'clumsy': 1,
          'muddle': 1,
          'felt': 1,
          'like': 1,
          'head': 1,
          'ceaselessly': 1,
          'banged': 1,
          'piousness': 1,
          'heavyhanded': 1,
          'wholly': 1,
          'believable': 1,
          'gallows': 1,
          'beckoned': 1,
          'sweet': 1,
          'release': 1,
          'indeed': 1,
          'nfar': 1,
          'bewitching': 1,
          'tests': 1,
          'patience': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 8,
          'scene': 5,
          'something': 5,
          'one': 3,
          'hold': 3,
          'half': 3,
          'like': 3,
          'makes': 3,
          'expect': 2,
          'experience': 2,
          'walking': 2,
          'new': 2,
          'godard': 2,
          'also': 2,
          'love': 2,
          'four': 2,
          'would': 2,
          'nit': 2,
          'sense': 2,
          'could': 2,
          'character': 2,
          'worthwhile': 2,
          'time': 2,
          'easily': 2,
          'nbut': 2,
          'nyou': 2,
          'missed': 2,
          'anything': 2,
          'hope': 2,
          'even': 2,
          'first': 2,
          'nand': 2,
          'thinking': 2,
          'black': 2,
          'used': 2,
          'along': 2,
          'numerous': 2,
          'might': 1,
          'cathartic': 1,
          'viewing': 1,
          'jeanluc': 1,
          'nafter': 1,
          'founding': 1,
          'member': 1,
          'highly': 1,
          'influential': 1,
          'french': 1,
          'wave': 1,
          'nhe': 1,
          'esteemed': 1,
          'critic': 1,
          'lending': 1,
          'intelligence': 1,
          'historical': 1,
          'perspective': 1,
          'us': 1,
          'much': 1,
          'writing': 1,
          'nhowever': 1,
          'latest': 1,
          'creation': 1,
          'praise': 1,
          'possibly': 1,
          'exasperating': 1,
          'year': 1,
          'abstract': 1,
          'concept': 1,
          'based': 1,
          'merit': 1,
          'dissect': 1,
          'following': 1,
          'categories': 1,
          'meeting': 1,
          'physical': 1,
          'passion': 1,
          'quarrels': 1,
          'reconciliation': 1,
          'nthese': 1,
          'universal': 1,
          'truths': 1,
          'revealed': 1,
          'three': 1,
          'different': 1,
          'couples': 1,
          'young': 1,
          'adult': 1,
          'elderly': 1,
          'edgars': 1,
          'bruno': 1,
          'putzulu': 1,
          'selfappointed': 1,
          'task': 1,
          'capture': 1,
          'moments': 1,
          'recent': 1,
          'breakup': 1,
          'define': 1,
          'central': 1,
          'idea': 1,
          'things': 1,
          'make': 1,
          'nwhether': 1,
          'project': 1,
          'end': 1,
          'play': 1,
          'opera': 1,
          'remains': 1,
          'undecided': 1,
          'thesis': 1,
          'simple': 1,
          'enough': 1,
          'played': 1,
          'right': 1,
          'really': 1,
          'sympathetic': 1,
          'value': 1,
          'anyone': 1,
          'ninstead': 1,
          'ensues': 1,
          'hour': 1,
          'repetitive': 1,
          'vignettes': 1,
          'next': 1,
          'engaging': 1,
          'last': 1,
          'nonly': 1,
          'utter': 1,
          'happens': 1,
          'youre': 1,
          'thoroughly': 1,
          'bored': 1,
          'miss': 1,
          'dont': 1,
          'fret': 1,
          'surface': 1,
          'sleep': 1,
          'whole': 1,
          'sections': 1,
          'fellow': 1,
          'critics': 1,
          'wake': 1,
          'exactly': 1,
          'nodded': 1,
          'background': 1,
          'music': 1,
          'keeps': 1,
          'state': 1,
          'urgency': 1,
          'suspense': 1,
          'conversations': 1,
          'nits': 1,
          'repeated': 1,
          'failures': 1,
          'pay': 1,
          'lose': 1,
          'speeches': 1,
          'think': 1,
          'else': 1,
          'anyones': 1,
          'interest': 1,
          'nto': 1,
          'godards': 1,
          'credit': 1,
          'certainly': 1,
          'knows': 1,
          'frame': 1,
          'white': 1,
          'footage': 1,
          'starkly': 1,
          'beautiful': 1,
          'nwatching': 1,
          'edgar': 1,
          'read': 1,
          'train': 1,
          'track': 1,
          'mountain': 1,
          'wish': 1,
          'ponder': 1,
          'poignant': 1,
          'say': 1,
          'angrier': 1,
          'opportunities': 1,
          'environments': 1,
          'city': 1,
          'country': 1,
          'impeccably': 1,
          'captured': 1,
          'crisp': 1,
          'detail': 1,
          'script': 1,
          'never': 1,
          'complements': 1,
          'nunfortunately': 1,
          'manages': 1,
          'pillage': 1,
          'photographic': 1,
          'eye': 1,
          'randomly': 1,
          'cutting': 1,
          'times': 1,
          'within': 1,
          'given': 1,
          'nsometimes': 1,
          'breaks': 1,
          'chapter': 1,
          'headings': 1,
          'cryptic': 1,
          'spoken': 1,
          'words': 1,
          'second': 1,
          'composed': 1,
          'nauseating': 1,
          'hypercolor': 1,
          'often': 1,
          'blurs': 1,
          'image': 1,
          'suddenly': 1,
          'feel': 1,
          'doomed': 1,
          'straight': 1,
          'scanners': 1,
          'complains': 1,
          'united': 1,
          'states': 1,
          'bastardizing': 1,
          'history': 1,
          'making': 1,
          'movies': 1,
          'nsteven': 1,
          'spielberg': 1,
          'picked': 1,
          'particular': 1,
          'nwhile': 1,
          'ill': 1,
          'grant': 1,
          'happen': 1,
          'tend': 1,
          'shy': 1,
          'away': 1,
          'watching': 1,
          'garbage': 1,
          'still': 1,
          'pointless': 1,
          'focus': 1,
          'purports': 1,
          'articulate': 1,
          'specific': 1,
          'qualities': 1,
          'couplehood': 1,
          'goes': 1,
          'show': 1,
          'intelligent': 1,
          'person': 1,
          'isnt': 1,
          'necessarily': 1,
          'admirable': 1,
          'storyteller': 1,
          'days': 1,
          'breathless': 1,
          'nneg': 1}),
 Counter({'mars': 4,
          'convenient': 4,
          'hand': 4,
          'ghosts': 3,
          'cube': 3,
          'residents': 3,
          'one': 3,
          'dynamite': 3,
          'even': 3,
          'convenience': 2,
          'remote': 2,
          'taken': 2,
          'williams': 2,
          'ice': 2,
          'forced': 2,
          'film': 2,
          'story': 2,
          'zombie': 2,
          'characters': 2,
          'moments': 2,
          'machine': 2,
          'life': 2,
          'fun': 2,
          'bad': 2,
          'conveniently': 2,
          'future': 2,
          'nand': 2,
          'tell': 2,
          'america': 1,
          'loves': 1,
          'nafter': 1,
          'culture': 1,
          'invented': 1,
          'cell': 1,
          'phone': 1,
          '24hour': 1,
          'atm': 1,
          'beloved': 1,
          'control': 1,
          'nyet': 1,
          'perhaps': 1,
          'time': 1,
          'love': 1,
          'far': 1,
          'nghosts': 1,
          'stars': 1,
          'natasha': 1,
          'henstridge': 1,
          'tough': 1,
          'nails': 1,
          'pillpoppin': 1,
          'martian': 1,
          'cop': 1,
          'sent': 1,
          'squadron': 1,
          'retrieve': 1,
          'demolition': 1,
          'mining': 1,
          'town': 1,
          'trial': 1,
          'back': 1,
          'home': 1,
          'nwhen': 1,
          'comrades': 1,
          'appropriately': 1,
          'dubbed': 1,
          'commander': 1,
          'rookies': 1,
          'guy': 1,
          'cool': 1,
          'accent': 1,
          'discover': 1,
          'towns': 1,
          'slaughtered': 1,
          'team': 1,
          'escape': 1,
          'remaining': 1,
          'headchopping': 1,
          'alienpossessed': 1,
          'clutches': 1,
          'nfilled': 1,
          'lovely': 1,
          'overuse': 1,
          'storytelling': 1,
          'flashbacks': 1,
          'flashessideways': 1,
          'viewpoint': 1,
          'changes': 1,
          'hapless': 1,
          'mishmash': 1,
          'poorly': 1,
          'constructed': 1,
          'dialogue': 1,
          'illconceived': 1,
          'action': 1,
          'sequences': 1,
          'nthe': 1,
          'thing': 1,
          'keeping': 1,
          'becoming': 1,
          'incomprehensible': 1,
          'mess': 1,
          'sheer': 1,
          'idiotic': 1,
          'simplicity': 1,
          'nripped': 1,
          'straight': 1,
          'pages': 1,
          '1970s': 1,
          'movie': 1,
          'leaps': 1,
          'moment': 1,
          'next': 1,
          'stopping': 1,
          'kill': 1,
          'lose': 1,
          'nattempts': 1,
          'character': 1,
          'interaction': 1,
          'development': 1,
          'rare': 1,
          'nmost': 1,
          'come': 1,
          'kwikemart': 1,
          'wisdom': 1,
          'dispensed': 1,
          'heartily': 1,
          'around': 1,
          'slushee': 1,
          'eventempered': 1,
          'streetwise': 1,
          'nwith': 1,
          'gun': 1,
          'cap': 1,
          'reminisces': 1,
          'street': 1,
          'comparing': 1,
          'zombiestomping': 1,
          'brother': 1,
          'kids': 1,
          'napparently': 1,
          'crime': 1,
          'bronx': 1,
          'gotten': 1,
          'actually': 1,
          'ritually': 1,
          'decapitating': 1,
          'another': 1,
          'entertainment': 1,
          'nbut': 1,
          'films': 1,
          'darkest': 1,
          'fate': 1,
          'lends': 1,
          'supplying': 1,
          'heavily': 1,
          'armored': 1,
          'transportation': 1,
          'easily': 1,
          'accessible': 1,
          'rifles': 1,
          'nyes': 1,
          'man': 1,
          'may': 1,
          'travel': 1,
          'space': 1,
          'conquer': 1,
          'nothing': 1,
          'beats': 1,
          'good': 1,
          'stick': 1,
          'tnt': 1,
          'know': 1,
          'every': 1,
          'police': 1,
          'station': 1,
          'past': 1,
          'present': 1,
          'keeps': 1,
          'healthy': 1,
          'supply': 1,
          'ncharacters': 1,
          'die': 1,
          'heads': 1,
          'lopped': 1,
          'supporting': 1,
          'roles': 1,
          'anyway': 1,
          'care': 1,
          'nas': 1,
          'long': 1,
          'plenty': 1,
          'narcotics': 1,
          'immunity': 1,
          'guaranteed': 1,
          'neventually': 1,
          'though': 1,
          'welltrained': 1,
          'alien': 1,
          'gets': 1,
          'bit': 1,
          'uppity': 1,
          'needs': 1,
          'taught': 1,
          'lesson': 1,
          'nwhat': 1,
          'better': 1,
          'way': 1,
          'sacrificing': 1,
          'minor': 1,
          'nuclear': 1,
          'detonation': 1,
          'killing': 1,
          'anything': 1,
          'guns': 1,
          'cant': 1,
          'handle': 1,
          'nexplosions': 1,
          'nukes': 1,
          'dont': 1,
          'get': 1,
          'placed': 1,
          'packs': 1,
          'train': 1,
          'stolen': 1,
          'set': 1,
          'road': 1,
          'warrior': 1,
          'certainly': 1,
          'nin': 1,
          'end': 1,
          'defines': 1,
          'cops': 1,
          'tribunal': 1,
          'pronounces': 1,
          'us': 1,
          'nfor': 1,
          'indeed': 1,
          'john': 1,
          'carpenter': 1,
          'run': 1,
          'things': 1,
          'say': 1,
          'instead': 1,
          'decided': 1,
          'use': 1,
          'whatever': 1,
          'ridiculously': 1,
          'nneg': 1}),
 Counter({'one': 7,
          'guy': 6,
          'movie': 6,
          'character': 6,
          'affleck': 6,
          'action': 6,
          'reindeer': 5,
          'games': 5,
          'nthe': 5,
          'audience': 5,
          'film': 5,
          'rudy': 5,
          'bad': 5,
          'like': 5,
          'never': 4,
          'twists': 4,
          'n': 4,
          'nick': 4,
          'scenes': 4,
          'films': 3,
          'way': 3,
          'behind': 3,
          'story': 3,
          'something': 3,
          'us': 3,
          'much': 3,
          'ending': 3,
          'used': 3,
          'thing': 3,
          'frequently': 3,
          'role': 3,
          'sinise': 3,
          'top': 3,
          'ashley': 3,
          'three': 2,
          'recent': 2,
          'kruger': 2,
          'arlington': 2,
          'cant': 2,
          'characters': 2,
          'even': 2,
          'numerous': 2,
          'turns': 2,
          'many': 2,
          'watching': 2,
          'becomes': 2,
          'oh': 2,
          'f': 2,
          'take': 2,
          'twist': 2,
          'almost': 2,
          'stupid': 2,
          'nand': 2,
          'would': 2,
          'time': 2,
          'keeps': 2,
          'damned': 2,
          'krugers': 2,
          'old': 2,
          'less': 2,
          'better': 2,
          'get': 2,
          'know': 2,
          'suddenly': 2,
          'whole': 2,
          'works': 2,
          'quickly': 2,
          'becoming': 2,
          'work': 2,
          'several': 2,
          'nthis': 2,
          'considering': 2,
          'place': 2,
          'could': 2,
          'ben': 2,
          'hardened': 2,
          'criminal': 2,
          'flick': 2,
          'prison': 2,
          'nearly': 2,
          'self': 2,
          'nit': 2,
          'whos': 2,
          'played': 2,
          'gary': 2,
          'another': 2,
          'theron': 2,
          'frenzied': 2,
          'looks': 2,
          'nhe': 2,
          'indian': 2,
          'casino': 2,
          'nthough': 2,
          'chance': 2,
          'two': 2,
          '2': 2,
          'following': 2,
          'actor': 2,
          'frankenheimer': 2,
          'play': 2,
          'made': 2,
          'next': 2,
          'charm': 2,
          'script': 2,
          'easily': 1,
          'worst': 1,
          'penned': 1,
          'ehren': 1,
          'scream': 1,
          '3': 1,
          'rd': 1,
          'others': 1,
          'derivative': 1,
          'special': 1,
          'seem': 1,
          'write': 1,
          'believable': 1,
          'dialogue': 1,
          'sample': 1,
          'rule': 1,
          '1': 1,
          'put': 1,
          'car': 1,
          'thief': 1,
          'wheel': 1,
          'create': 1,
          'multifaceted': 1,
          'engineer': 1,
          'coherent': 1,
          'plots': 1,
          'sure': 1,
          'knows': 1,
          'pile': 1,
          'nonsensical': 1,
          'matter': 1,
          'deems': 1,
          'actual': 1,
          'increasingly': 1,
          'unlikely': 1,
          'nhis': 1,
          'screenplay': 1,
          'tables': 1,
          'times': 1,
          'punishment': 1,
          'reward': 1,
          'anywhere': 1,
          'sight': 1,
          'ni': 1,
          'envision': 1,
          'laughing': 1,
          'keyboard': 1,
          'thought': 1,
          'gon': 1,
          'na': 1,
          'go': 1,
          'ck': 1,
          'jack': 1,
          'ass': 1,
          'decipher': 1,
          'mother': 1,
          'cker': 1,
          'nits': 1,
          'writer': 1,
          'angry': 1,
          'shelling': 1,
          'money': 1,
          'see': 1,
          'hell': 1,
          'anyone': 1,
          'want': 1,
          'invest': 1,
          'screenwriter': 1,
          'changing': 1,
          'rules': 1,
          'reason': 1,
          'congratulate': 1,
          'damn': 1,
          'clever': 1,
          'nauteur': 1,
          'theory': 1,
          'style': 1,
          'directors': 1,
          'winds': 1,
          'screen': 1,
          'nkruger': 1,
          'obviously': 1,
          'paid': 1,
          'mind': 1,
          'chestnut': 1,
          'sometimes': 1,
          'claim': 1,
          'originals': 1,
          'rds': 1,
          'direct': 1,
          'steal': 1,
          'alan': 1,
          'j': 1,
          'pakula': 1,
          'thriller': 1,
          'parallax': 1,
          'view': 1,
          'ol': 1,
          'gem': 1,
          'incriminates': 1,
          'themself': 1,
          'saying': 1,
          'shouldnt': 1,
          'pronouns': 1,
          'protect': 1,
          'gender': 1,
          'grammar': 1,
          'nbe': 1,
          'stunned': 1,
          'protagonist': 1,
          'asks': 1,
          'realizing': 1,
          'along': 1,
          'nsince': 1,
          'endings': 1,
          'currently': 1,
          'vogue': 1,
          'seeing': 1,
          'screenplays': 1,
          'usually': 1,
          'come': 1,
          'equipped': 1,
          'per': 1,
          'guess': 1,
          'wonder': 1,
          'nhes': 1,
          'miramaxs': 1,
          'mickey': 1,
          'mouse': 1,
          'company': 1,
          'already': 1,
          'signed': 1,
          'upcoming': 1,
          'projects': 1,
          'appropriate': 1,
          'miramax': 1,
          'label': 1,
          'artistically': 1,
          'daring': 1,
          'become': 1,
          'grindhouse': 1,
          'coddling': 1,
          'foreign': 1,
          'imports': 1,
          'life': 1,
          'beautiful': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'vehicles': 1,
          'ntheir': 1,
          'companys': 1,
          'current': 1,
          'logo': 1,
          'ride': 1,
          'trends': 1,
          'nreindeer': 1,
          'stars': 1,
          'supposedly': 1,
          'spending': 1,
          'days': 1,
          'nights': 1,
          'bars': 1,
          'fantasies': 1,
          'pecan': 1,
          'pies': 1,
          'dancing': 1,
          'atop': 1,
          'head': 1,
          'nalthough': 1,
          'given': 1,
          'barbed': 1,
          'wire': 1,
          'tattoos': 1,
          'insinuate': 1,
          'assness': 1,
          'plays': 1,
          'steve': 1,
          'guttenberg': 1,
          'preciously': 1,
          'mugging': 1,
          'police': 1,
          'academy': 1,
          'naffleck': 1,
          'puppy': 1,
          'dog': 1,
          'impossible': 1,
          'believe': 1,
          'survive': 1,
          'harsh': 1,
          'environment': 1,
          'without': 1,
          'everyones': 1,
          'bitch': 1,
          'badly': 1,
          'written': 1,
          'grows': 1,
          'balls': 1,
          'plot': 1,
          'calls': 1,
          'outrageous': 1,
          'directing': 1,
          'consciously': 1,
          'gritty': 1,
          'close': 1,
          'parody': 1,
          'recall': 1,
          'serious': 1,
          'getting': 1,
          'may': 1,
          'wiser': 1,
          'makers': 1,
          'simply': 1,
          'went': 1,
          'direction': 1,
          'casting': 1,
          'jerry': 1,
          'seinfeld': 1,
          'howard': 1,
          'stern': 1,
          'sniveling': 1,
          'yet': 1,
          'villain': 1,
          'performance': 1,
          'njames': 1,
          'frain': 1,
          'rudys': 1,
          'cellmate': 1,
          'manslaughterer': 1,
          'found': 1,
          'pen': 1,
          'pal': 1,
          'gorgeous': 1,
          'mason': 1,
          'charlize': 1,
          'nashley': 1,
          'groupie': 1,
          'sends': 1,
          'cheesecake': 1,
          'photos': 1,
          'though': 1,
          'shes': 1,
          'seen': 1,
          'picture': 1,
          'nwhich': 1,
          'fine': 1,
          'since': 1,
          'killed': 1,
          'nearriot': 1,
          'paroled': 1,
          'day': 1,
          'takes': 1,
          'leads': 1,
          'sudden': 1,
          'sex': 1,
          'scene': 1,
          'kinda': 1,
          'rape': 1,
          'surprise': 1,
          'visit': 1,
          'ashleys': 1,
          'brother': 1,
          'gabriel': 1,
          'waltzes': 1,
          'shabby': 1,
          'hotel': 1,
          'room': 1,
          'flanked': 1,
          'thuggish': 1,
          'cohorts': 1,
          'plans': 1,
          'rob': 1,
          'christmas': 1,
          'eve': 1,
          'assistance': 1,
          'thinks': 1,
          'according': 1,
          'wrote': 1,
          'letters': 1,
          'guard': 1,
          'end': 1,
          'pulls': 1,
          'rug': 1,
          'everything': 1,
          'ive': 1,
          'described': 1,
          'might': 1,
          'well': 1,
          'irrelevant': 1,
          'expect': 1,
          'chose': 1,
          'catching': 1,
          'prey': 1,
          'proceeds': 1,
          'stall': 1,
          'interminably': 1,
          'good': 1,
          'kill': 1,
          'captor': 1,
          'crack': 1,
          'oneliner': 1,
          'nincluded': 1,
          'different': 1,
          'guys': 1,
          'explaining': 1,
          'motives': 1,
          'hero': 1,
          'killing': 1,
          'talkfest': 1,
          'explained': 1,
          'flustered': 1,
          'incredulous': 1,
          'directed': 1,
          'john': 1,
          'straightforward': 1,
          'director': 1,
          'lucked': 1,
          'manchurian': 1,
          'candidate': 1,
          'early': 1,
          'career': 1,
          'fell': 1,
          'alist': 1,
          'string': 1,
          'flops': 1,
          'age': 1,
          'slowly': 1,
          'climbing': 1,
          'back': 1,
          'success': 1,
          'choosing': 1,
          'scripts': 1,
          'last': 1,
          'major': 1,
          'ronin': 1,
          'quite': 1,
          'movies': 1,
          'followed': 1,
          'island': 1,
          'dr': 1,
          'morneau': 1,
          'remember': 1,
          'marlon': 1,
          'brando': 1,
          'mime': 1,
          'makeup': 1,
          'flattering': 1,
          'moomoo': 1,
          'sequences': 1,
          'minimum': 1,
          'quick': 1,
          'cutting': 1,
          'nowadays': 1,
          'commonly': 1,
          'comprised': 1,
          'millisecond': 1,
          'flash': 1,
          'cuts': 1,
          'strung': 1,
          'together': 1,
          'laid': 1,
          'brainzapped': 1,
          'mtv': 1,
          'pick': 1,
          'apart': 1,
          'nproblem': 1,
          'failed': 1,
          'escapes': 1,
          'serve': 1,
          'purpose': 1,
          'pad': 1,
          'running': 1,
          'remind': 1,
          'rather': 1,
          'filmed': 1,
          'radio': 1,
          'ncharacter': 1,
          'problems': 1,
          'abound': 1,
          'shift': 1,
          'sweet': 1,
          'boy': 1,
          'door': 1,
          'earnestness': 1,
          'hard': 1,
          'edged': 1,
          'wiseacre': 1,
          'latter': 1,
          'least': 1,
          'point': 1,
          'capable': 1,
          'pulling': 1,
          'former': 1,
          'ease': 1,
          'often': 1,
          'coasts': 1,
          'lackadaisical': 1,
          'around': 1,
          'growl': 1,
          'swear': 1,
          'nbut': 1,
          'starts': 1,
          'growling': 1,
          'swearing': 1,
          'alongside': 1,
          'class': 1,
          'clown': 1,
          'imitating': 1,
          'tarantino': 1,
          'gangster': 1,
          'ncharlize': 1,
          'extraordinary': 1,
          'talent': 1,
          'playing': 1,
          'whatever': 1,
          'part': 1,
          'requires': 1,
          'whether': 1,
          'vulnerability': 1,
          'moment': 1,
          'anger': 1,
          'nshe': 1,
          'evince': 1,
          'make': 1,
          'impression': 1,
          'beyond': 1,
          'obvious': 1,
          'physical': 1,
          'attributes': 1,
          'needlessly': 1,
          'pop': 1,
          'italicize': 1,
          'ngary': 1,
          'snake': 1,
          'eyes': 1,
          'snarling': 1,
          'vitriol': 1,
          'must': 1,
          'incredibly': 1,
          'bored': 1,
          'stomping': 1,
          'paces': 1,
          'going': 1,
          'control': 1,
          'interested': 1,
          'annoyance': 1,
          'goes': 1,
          'threat': 1,
          'nthese': 1,
          'talented': 1,
          'people': 1,
          'mistake': 1,
          'jumping': 1,
          'little': 1,
          'stock': 1,
          'bag': 1,
          'tricks': 1,
          'dully': 1,
          'springs': 1,
          'nneg': 1}),
 Counter({'dalmatians': 6,
          '102': 4,
          'dogs': 4,
          '101': 3,
          'thats': 3,
          'puppies': 3,
          'evans': 3,
          'nthe': 3,
          'since': 3,
          'time': 2,
          'close': 2,
          'lots': 2,
          'around': 2,
          'closes': 2,
          'cruella': 2,
          'named': 2,
          'even': 2,
          'animated': 2,
          'pelt': 2,
          'designer': 2,
          'flail': 2,
          'wail': 2,
          'little': 2,
          'less': 2,
          'pretty': 2,
          'pop': 2,
          'followup': 1,
          'disneys': 1,
          'liveaction': 1,
          'better': 1,
          'entertaining': 1,
          'first': 1,
          'njust': 1,
          'unlikely': 1,
          'nwith': 1,
          'disney': 1,
          'studios': 1,
          'proven': 1,
          'comes': 1,
          'going': 1,
          'definitely': 1,
          'merrier': 1,
          'n1996s': 1,
          'certainly': 1,
          'wasnt': 1,
          'greatest': 1,
          'moviegoing': 1,
          'experience': 1,
          'feature': 1,
          'glenn': 1,
          'outrageous': 1,
          'largerthanlife': 1,
          'performance': 1,
          'nin': 1,
          'addition': 1,
          'two': 1,
          'amiable': 1,
          'leads': 1,
          'form': 1,
          'jeff': 1,
          'daniels': 1,
          'joely': 1,
          'richardson': 1,
          'adorable': 1,
          'spotted': 1,
          'nthis': 1,
          'seem': 1,
          'fewer': 1,
          'screen': 1,
          'facial': 1,
          'physical': 1,
          'gyrations': 1,
          'starting': 1,
          'feel': 1,
          'old': 1,
          '53yearold': 1,
          'actress': 1,
          'startling': 1,
          'black': 1,
          'white': 1,
          'wig': 1,
          'nbut': 1,
          'half': 1,
          'problem': 1,
          'kevin': 1,
          'limas': 1,
          'laborious': 1,
          'film': 1,
          'nwhat': 1,
          'makes': 1,
          'collosal': 1,
          'bore': 1,
          'embarrassing': 1,
          'attempts': 1,
          'humor': 1,
          'almost': 1,
          'singlehandedly': 1,
          'foisted': 1,
          'wisecracking': 1,
          'macaw': 1,
          'thinks': 1,
          'hes': 1,
          'dog': 1,
          'voiced': 1,
          'eric': 1,
          'idle': 1,
          'rabid': 1,
          'plotlessness': 1,
          'goes': 1,
          'winds': 1,
          'goo': 1,
          'incredibly': 1,
          'wooden': 1,
          'actors': 1,
          'plays': 1,
          'romantic': 1,
          'heroes': 1,
          'piece': 1,
          'welshman': 1,
          'ioan': 1,
          'gruffudd': 1,
          'blanderthanbland': 1,
          'alice': 1,
          'parole': 1,
          'officer': 1,
          'chlo': 1,
          'ngruffudd': 1,
          'cute': 1,
          'harmless': 1,
          'perhaps': 1,
          'cant': 1,
          'aspire': 1,
          'upstage': 1,
          'course': 1,
          'case': 1,
          'split': 1,
          'ends': 1,
          'nbad': 1,
          'acting': 1,
          'however': 1,
          'seems': 1,
          'requirement': 1,
          'sequel': 1,
          'g': 1,
          'rard': 1,
          'depardieu': 1,
          'shows': 1,
          'french': 1,
          'furrier': 1,
          'haircut': 1,
          'like': 1,
          'robert': 1,
          'de': 1,
          'niros': 1,
          'men': 1,
          'honor': 1,
          'njean': 1,
          'pierre': 1,
          'le': 1,
          'flamboyant': 1,
          'fashion': 1,
          'penchant': 1,
          'fine': 1,
          'furs': 1,
          'depardieus': 1,
          'overthetop': 1,
          'antics': 1,
          'mimic': 1,
          'campy': 1,
          'nfrances': 1,
          'popular': 1,
          'export': 1,
          'besides': 1,
          'brie': 1,
          'long': 1,
          'turned': 1,
          'caricature': 1,
          'producers': 1,
          'milk': 1,
          'realization': 1,
          'worthle': 1,
          'likes': 1,
          'refer': 1,
          'furry': 1,
          'critters': 1,
          'poopies': 1,
          'par': 1,
          'example': 1,
          'ad': 1,
          'nauseum': 1,
          'finesses': 1,
          'script': 1,
          'attributed': 1,
          'four': 1,
          'screenwriters': 1,
          'far': 1,
          'removed': 1,
          'anything': 1,
          'dodie': 1,
          'smith': 1,
          'ever': 1,
          'dreamed': 1,
          'quickly': 1,
          'dispensed': 1,
          'takes': 1,
          'paroled': 1,
          'shaken': 1,
          'years': 1,
          'successful': 1,
          'aversion': 1,
          'therapy': 1,
          'slammer': 1,
          'tolling': 1,
          'big': 1,
          'ben': 1,
          'nthat': 1,
          'done': 1,
          'back': 1,
          'mansion': 1,
          'roll': 1,
          'heretofore': 1,
          'offlimits': 1,
          'sables': 1,
          'minks': 1,
          'plan': 1,
          'skin': 1,
          'dahlings': 1,
          'sake': 1,
          'hooded': 1,
          'gown': 1,
          'cutetry': 1,
          'making': 1,
          'puppy': 1,
          'look': 1,
          'otherwisebut': 1,
          'much': 1,
          'ntheres': 1,
          'always': 1,
          'feeling': 1,
          'theres': 1,
          'trainer': 1,
          'wings': 1,
          'coaxing': 1,
          'open': 1,
          'doors': 1,
          'pick': 1,
          'food': 1,
          'bowls': 1,
          'unison': 1,
          'tape': 1,
          'videocasette': 1,
          'recorder': 1,
          'nsavvy': 1,
          'holiday': 1,
          'goers': 1,
          'skip': 1,
          'original': 1,
          '1961': 1,
          'classic': 1,
          'vcrs': 1,
          'instead': 1,
          'nits': 1,
          'one': 1,
          'dalmatian': 1,
          'satisfying': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'like': 5,
          'video': 4,
          'nthe': 3,
          'supposed': 3,
          'home': 3,
          'menu': 3,
          'screens': 3,
          'race': 2,
          'bible': 2,
          'welles': 2,
          'hal': 2,
          'lindsey': 2,
          'recent': 2,
          'well': 2,
          'never': 2,
          'earth': 2,
          'nwere': 2,
          'still': 2,
          'moments': 2,
          'nalso': 2,
          'stock': 2,
          'footage': 2,
          'dvd': 2,
          'vci': 2,
          '1': 2,
          'onesided': 1,
          'doom': 1,
          'gloom': 1,
          'documentary': 1,
          'possible': 1,
          'annihilation': 1,
          'human': 1,
          'foretold': 1,
          'norson': 1,
          'narrates': 1,
          'appears': 1,
          'along': 1,
          'bestselling': 1,
          'author': 1,
          'discusses': 1,
          'various': 1,
          'prophecies': 1,
          'relates': 1,
          '1976': 1,
          'anyway': 1,
          'events': 1,
          'dated': 1,
          'badly': 1,
          'many': 1,
          'things': 1,
          'happen': 1,
          'future': 1,
          'nfor': 1,
          'example': 1,
          'planets': 1,
          'solar': 1,
          'system': 1,
          'line': 1,
          'year': 1,
          '1982': 1,
          'cause': 1,
          'chaos': 1,
          'arms': 1,
          'soviets': 1,
          'america': 1,
          'kickoff': 1,
          'apocalypse': 1,
          'nsome': 1,
          'ludicrous': 1,
          'come': 1,
          'alluded': 1,
          'people': 1,
          'jimmy': 1,
          'carter': 1,
          'henry': 1,
          'kissinger': 1,
          'may': 1,
          'actually': 1,
          'antichrist': 1,
          'theres': 1,
          'ten': 1,
          'minutes': 1,
          'end': 1,
          'meant': 1,
          'give': 1,
          'us': 1,
          'idea': 1,
          'battle': 1,
          'armageddon': 1,
          'might': 1,
          'nif': 1,
          'anything': 1,
          'depicted': 1,
          'going': 1,
          'incredibly': 1,
          'boring': 1,
          'late': 1,
          'great': 1,
          'planet': 1,
          'available': 1,
          'nit': 1,
          'contains': 1,
          'standard': 1,
          'form': 1,
          'aspect': 1,
          'ratio': 1,
          '33': 1,
          'although': 1,
          'letterboxed': 1,
          'included': 1,
          'brief': 1,
          'bios': 1,
          'orson': 1,
          'trailer': 1,
          'another': 1,
          'release': 1,
          'chariots': 1,
          'gods': 1,
          'naudio': 1,
          'mono': 1,
          'dolby': 1,
          'digital': 1,
          'fair': 1,
          'good': 1,
          'ni': 1,
          'believe': 1,
          'first': 1,
          'appearance': 1,
          'format': 1,
          'condition': 1,
          'fine': 1,
          'ncertainly': 1,
          'expected': 1,
          'remastered': 1,
          'print': 1,
          'ncuriously': 1,
          'look': 1,
          'nothing': 1,
          'pictured': 1,
          'back': 1,
          'case': 1,
          'nbut': 1,
          'theyre': 1,
          'nso': 1,
          'really': 1,
          'cares': 1,
          'npg': 1,
          'nneg': 1}),
 Counter({'two': 8,
          'nthe': 5,
          'films': 4,
          'characters': 4,
          'different': 4,
          'film': 4,
          'cesar': 4,
          'trip': 4,
          'sports': 3,
          'story': 3,
          'boxing': 3,
          'whole': 3,
          'vince': 3,
          'scene': 3,
          'fight': 3,
          'bone': 2,
          'sheltons': 2,
          'men': 2,
          'tell': 2,
          'nshelton': 2,
          'side': 2,
          'even': 2,
          'like': 2,
          'friends': 2,
          'reasons': 2,
          'friendship': 2,
          'never': 2,
          'every': 2,
          'moment': 2,
          'grace': 2,
          'way': 2,
          'hurt': 2,
          'time': 2,
          'road': 2,
          'play': 1,
          'newest': 1,
          'addition': 1,
          'ron': 1,
          'themed': 1,
          'repertoire': 1,
          'fails': 1,
          'numerous': 1,
          'ways': 1,
          'nlike': 1,
          'great': 1,
          'bull': 1,
          'durham': 1,
          'white': 1,
          'cant': 1,
          'jump': 1,
          'dud': 1,
          'unsuccessfully': 1,
          'attempts': 1,
          'use': 1,
          'athleticism': 1,
          'method': 1,
          'connecting': 1,
          'creating': 1,
          'interesting': 1,
          'subplots': 1,
          'nsheltons': 1,
          'considered': 1,
          'heavily': 1,
          'revolve': 1,
          'around': 1,
          'specific': 1,
          'game': 1,
          'good': 1,
          'past': 1,
          'using': 1,
          'analyze': 1,
          'structure': 1,
          'society': 1,
          'collection': 1,
          'given': 1,
          'examination': 1,
          'classes': 1,
          'races': 1,
          'living': 1,
          'various': 1,
          'regions': 1,
          'nplay': 1,
          'unsuccessful': 1,
          'theme': 1,
          'dull': 1,
          'guys': 1,
          'girl': 1,
          'travelling': 1,
          'across': 1,
          'country': 1,
          'worse': 1,
          'social': 1,
          'message': 1,
          'predecessors': 1,
          'relationship': 1,
          'failed': 1,
          'boxers': 1,
          'must': 1,
          'face': 1,
          'ring': 1,
          '50': 1,
          'thousand': 1,
          'dollars': 1,
          'confusing': 1,
          'number': 1,
          'since': 1,
          'primarily': 1,
          'buddy': 1,
          'picture': 1,
          'depends': 1,
          'strength': 1,
          'nunfortunately': 1,
          'weak': 1,
          'bond': 1,
          'listed': 1,
          'n1': 1,
          'see': 1,
          'antonio': 1,
          'banderas': 1,
          'woody': 1,
          'harrelson': 1,
          'meet': 1,
          'odd': 1,
          'developed': 1,
          'mandatory': 1,
          'n2': 1,
          'argue': 1,
          'possible': 1,
          'las': 1,
          'vegas': 1,
          'nthere': 1,
          'one': 1,
          'convincing': 1,
          'dedicated': 1,
          'seeing': 1,
          'laugh': 1,
          'together': 1,
          'actually': 1,
          'agree': 1,
          'something': 1,
          'n3': 1,
          'third': 1,
          'character': 1,
          'lolita': 1,
          'davidovich': 1,
          'stands': 1,
          'nshe': 1,
          'nearly': 1,
          'making': 1,
          'impossible': 1,
          'understand': 1,
          'difficulty': 1,
          'male': 1,
          'going': 1,
          'n4': 1,
          'many': 1,
          'interfering': 1,
          'irrelevant': 1,
          'stories': 1,
          'nvince': 1,
          'convinced': 1,
          'sees': 1,
          'jesus': 1,
          'regular': 1,
          'basis': 1,
          'yells': 1,
          'sky': 1,
          'spanish': 1,
          'angry': 1,
          'tries': 1,
          'sell': 1,
          'inventions': 1,
          'hotel': 1,
          'owner': 1,
          'robert': 1,
          'wagner': 1,
          'nthese': 1,
          'boring': 1,
          'tales': 1,
          'central': 1,
          'plot': 1,
          'n5': 1,
          'comes': 1,
          'dont': 1,
          'hesitate': 1,
          'pound': 1,
          'nwasnt': 1,
          'point': 1,
          'show': 1,
          'could': 1,
          'nby': 1,
          'part': 1,
          'movie': 1,
          'wants': 1,
          'hand': 1,
          'continues': 1,
          'nforty': 1,
          'five': 1,
          'painful': 1,
          'minutes': 1,
          'remain': 1,
          'starts': 1,
          'powerful': 1,
          'interestingly': 1,
          'movies': 1,
          'nhowever': 1,
          'goes': 1,
          'long': 1,
          'becomes': 1,
          'repetitive': 1,
          'predictable': 1,
          'awhile': 1,
          'kind': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'really': 7,
          'gadget': 6,
          'nthe': 6,
          'zany': 6,
          'ni': 6,
          'nbut': 4,
          'bad': 4,
          'time': 3,
          'favorite': 3,
          'martian': 3,
          'another': 3,
          'disney': 3,
          'cartoon': 3,
          'screen': 3,
          'sidekick': 3,
          'best': 3,
          'studio': 3,
          'want': 3,
          'n': 3,
          'movie': 3,
          'especially': 3,
          'evil': 3,
          'claw': 3,
          'movies': 2,
          'nmy': 2,
          'daughter': 2,
          'back': 2,
          'old': 2,
          'years': 2,
          'see': 2,
          'done': 2,
          'go': 2,
          'right': 2,
          'ninspector': 2,
          'people': 2,
          'directed': 2,
          'written': 2,
          'two': 2,
          'credits': 2,
          'lets': 2,
          'painful': 2,
          'make': 2,
          'fine': 2,
          'scene': 2,
          'nif': 2,
          'cut': 2,
          'latter': 2,
          'thoroughly': 2,
          'charming': 2,
          'trachtenberg': 2,
          'nmichelle': 2,
          'plays': 2,
          'penny': 2,
          'every': 2,
          'utterly': 2,
          'say': 2,
          'something': 2,
          'lines': 2,
          'scenes': 2,
          'nhe': 2,
          'town': 2,
          'mayor': 2,
          'like': 2,
          'wonder': 2,
          'fun': 2,
          'one': 2,
          'things': 2,
          'worth': 2,
          'made': 2,
          'trying': 2,
          'minute': 2,
          'detective': 2,
          'character': 2,
          'excellent': 2,
          'long': 2,
          'live': 2,
          'action': 2,
          'produce': 2,
          'skip': 1,
          'vile': 1,
          'weeks': 1,
          'comes': 1,
          'effectsfilled': 1,
          'liveaction': 1,
          'flick': 1,
          'based': 1,
          'tv': 1,
          'program': 1,
          'ntrue': 1,
          'probgram': 1,
          '15': 1,
          'liked': 1,
          'understandably': 1,
          'reluctant': 1,
          'big': 1,
          'wanted': 1,
          'could': 1,
          'nturns': 1,
          'mostly': 1,
          'oddly': 1,
          'enough': 1,
          'follows': 1,
          'almost': 1,
          'exactly': 1,
          'format': 1,
          'jivetalking': 1,
          'nat': 1,
          'first': 1,
          'thought': 1,
          'imdb': 1,
          'informs': 1,
          'ig': 1,
          'david': 1,
          'kellogg': 1,
          'dana': 1,
          'olsen': 1,
          'kerry': 1,
          'ehrin': 1,
          'mfm': 1,
          'donald': 1,
          'petrie': 1,
          'sherri': 1,
          'stoner': 1,
          'deanna': 1,
          'oliver': 1,
          'nthis': 1,
          'odd': 1,
          'similarity': 1,
          'may': 1,
          'explained': 1,
          'produced': 1,
          'formula': 1,
          'isnt': 1,
          'business': 1,
          'way': 1,
          'life': 1,
          'producers': 1,
          'obviously': 1,
          'micromanaged': 1,
          'projects': 1,
          'get': 1,
          'prominant': 1,
          'nin': 1,
          'parts': 1,
          'hear': 1,
          'saying': 1,
          'sexual': 1,
          'reference': 1,
          'reason': 1,
          'audience': 1,
          'squirming': 1,
          'seats': 1,
          'ok': 1,
          'thats': 1,
          'add': 1,
          'bug': 1,
          'guts': 1,
          'ncharacter': 1,
          'depth': 1,
          'wheres': 1,
          'zaniness': 1,
          'dont': 1,
          'cant': 1,
          'explanation': 1,
          'come': 1,
          'absence': 1,
          'michelle': 1,
          'gadgets': 1,
          'niece': 1,
          'shines': 1,
          'shes': 1,
          'unfortunately': 1,
          'gets': 1,
          'nine': 1,
          'minutes': 1,
          'guess': 1,
          'rest': 1,
          'cutting': 1,
          'room': 1,
          'floor': 1,
          'ndabney': 1,
          'colemans': 1,
          'comedic': 1,
          'talents': 1,
          'wasted': 1,
          'chief': 1,
          'quimby': 1,
          'kept': 1,
          'expecting': 1,
          'funny': 1,
          'somehow': 1,
          'save': 1,
          'instead': 1,
          'poor': 1,
          'unexceptional': 1,
          'upstaged': 1,
          'cheri': 1,
          'oteri': 1,
          'gidget': 1,
          'bitch': 1,
          'hell': 1,
          'noteris': 1,
          'overly': 1,
          'enthusiastic': 1,
          'continually': 1,
          'selfcongratulatory': 1,
          'speech': 1,
          'patterns': 1,
          'mannerisms': 1,
          'much': 1,
          'portland': 1,
          'oregons': 1,
          'manic': 1,
          'vera': 1,
          'katz': 1,
          'wasnt': 1,
          'poking': 1,
          'fair': 1,
          'maybe': 1,
          'career': 1,
          'politicians': 1,
          'must': 1,
          'matthew': 1,
          'broderick': 1,
          'stroll': 1,
          'inspector': 1,
          'godzilla': 1,
          'appears': 1,
          'nrupert': 1,
          'everett': 1,
          'entertaining': 1,
          'maniacle': 1,
          'njoely': 1,
          'fisher': 1,
          'scientist': 1,
          'even': 1,
          'better': 1,
          'carbon': 1,
          'copy': 1,
          'nher': 1,
          'performance': 1,
          'watching': 1,
          'nd': 1,
          'l': 1,
          'hughley': 1,
          'shuckinandjivin': 1,
          'vehicular': 1,
          'role': 1,
          'firmly': 1,
          'sets': 1,
          'emancipation': 1,
          '20': 1,
          'dialog': 1,
          'face': 1,
          'pretty': 1,
          'tagline': 1,
          'major': 1,
          'setpiece': 1,
          'battle': 1,
          'faux': 1,
          'pas': 1,
          'makes': 1,
          'sense': 1,
          'context': 1,
          'na': 1,
          'lot': 1,
          'hughleys': 1,
          'appear': 1,
          'along': 1,
          'little': 1,
          'gift': 1,
          'adlib': 1,
          'nabout': 1,
          'threequarters': 1,
          'somewhat': 1,
          'unnecessary': 1,
          'origin': 1,
          'story': 1,
          'ngadget': 1,
          'spends': 1,
          'third': 1,
          'locate': 1,
          'various': 1,
          'altercations': 1,
          'battles': 1,
          'npenny': 1,
          'half': 1,
          'work': 1,
          'week': 1,
          'nlet': 1,
          'rage': 1,
          'choice': 1,
          'nshes': 1,
          'experience': 1,
          'harriet': 1,
          'spy': 1,
          'part': 1,
          'pintsize': 1,
          'nwhy': 1,
          'underutilized': 1,
          'real': 1,
          'mystery': 1,
          'loses': 1,
          'star': 1,
          'casting': 1,
          'brilliance': 1,
          'coupled': 1,
          'scripting': 1,
          'editing': 1,
          'stupidity': 1,
          'missing': 1,
          'stretches': 1,
          'potty': 1,
          'humor': 1,
          'among': 1,
          'unbearable': 1,
          'short': 1,
          'perhaps': 1,
          'last': 1,
          'moment': 1,
          'nprobably': 1,
          'occur': 1,
          'end': 1,
          'support': 1,
          'group': 1,
          'seeing': 1,
          'amazing': 1,
          'number': 1,
          'cameo': 1,
          'appearances': 1,
          'seconds': 1,
          'onscreen': 1,
          'nall': 1,
          'premere': 1,
          'films': 1,
          'uses': 1,
          'revenues': 1,
          'generally': 1,
          'moneymaking': 1,
          'cartoons': 1,
          'losers': 1,
          'true': 1,
          'theyre': 1,
          'mary': 1,
          'poppins': 1,
          'need': 1,
          'find': 1,
          'team': 1,
          'give': 1,
          'chance': 1,
          'nneg': 1}),
 Counter({'film': 18,
          'nthe': 15,
          'fight': 12,
          'hong': 10,
          'must': 9,
          'kong': 8,
          'romeo': 8,
          'die': 7,
          'effect': 6,
          'films': 6,
          'scenes': 6,
          'best': 5,
          'one': 5,
          'performance': 5,
          'emotional': 5,
          'action': 4,
          'u': 4,
          'jet': 4,
          'li': 4,
          'none': 4,
          'sing': 4,
          'na': 4,
          'nits': 4,
          'han': 4,
          'way': 4,
          'talents': 3,
          'work': 3,
          'couple': 3,
          'chinese': 3,
          'kai': 3,
          'son': 3,
          'battle': 3,
          'oday': 3,
          'lindo': 3,
          'scene': 3,
          'course': 3,
          'even': 3,
          'character': 3,
          'nhere': 3,
          'though': 3,
          'productions': 2,
          'filmmaking': 2,
          'time': 2,
          'lot': 2,
          'kongs': 2,
          'jackie': 2,
          'rush': 2,
          'hour': 2,
          'yuen': 2,
          'hollywood': 2,
          'nnow': 2,
          'filmmakers': 2,
          'director': 2,
          'nunfortunately': 2,
          'bears': 2,
          'po': 2,
          'family': 2,
          'club': 2,
          'found': 2,
          'issac': 2,
          'murder': 2,
          'legitimate': 2,
          'china': 2,
          'brothers': 2,
          'fights': 2,
          'choreography': 2,
          'except': 2,
          'romance': 2,
          'adequate': 2,
          'part': 2,
          'debut': 2,
          'style': 2,
          'obvious': 2,
          'nbut': 2,
          'written': 2,
          'well': 2,
          'nan': 2,
          'script': 2,
          'set': 2,
          'look': 2,
          'pacing': 2,
          'john': 2,
          'comic': 2,
          'becomes': 2,
          'whatsoever': 2,
          'njet': 2,
          'jets': 2,
          'xray': 2,
          'rhythm': 2,
          'heartbeat': 2,
          'breath': 2,
          'editing': 2,
          'technically': 2,
          'amazing': 2,
          'tempo': 2,
          'content': 2,
          'full': 2,
          'cinema': 1,
          'going': 1,
          'bad': 1,
          'spell': 1,
          'last': 1,
          'laded': 1,
          'adventures': 1,
          'combine': 1,
          'worst': 1,
          'american': 1,
          'qualities': 1,
          'nin': 1,
          'nutshell': 1,
          'current': 1,
          'crop': 1,
          'maddeningly': 1,
          'convoluted': 1,
          'visually': 1,
          'sumptuous': 1,
          'nwith': 1,
          'british': 1,
          'colony': 1,
          'reverting': 1,
          'back': 1,
          'mainland': 1,
          'ownership': 1,
          'crossed': 1,
          'pacific': 1,
          'nsuch': 1,
          'chan': 1,
          'chow': 1,
          'yunfat': 1,
          'anna': 1,
          'king': 1,
          'corrupter': 1,
          'wooping': 1,
          'matrix': 1,
          'moved': 1,
          'budget': 1,
          'bloated': 1,
          'world': 1,
          'mixed': 1,
          'results': 1,
          'add': 1,
          'two': 1,
          'mix': 1,
          'star': 1,
          'choreographer': 1,
          'corey': 1,
          'kwai': 1,
          'trademarks': 1,
          'typical': 1,
          'rhythms': 1,
          'opens': 1,
          'nightclub': 1,
          'asian': 1,
          'necking': 1,
          'nenter': 1,
          'group': 1,
          'gangsters': 1,
          'led': 1,
          'russell': 1,
          'wong': 1,
          'nkai': 1,
          'confronts': 1,
          'jon': 1,
          'kit': 1,
          'lee': 1,
          'kais': 1,
          'boss': 1,
          'leader': 1,
          'local': 1,
          'breaks': 1,
          'bodyguards': 1,
          'handily': 1,
          'kicks': 1,
          'punches': 1,
          'opponents': 1,
          'owner': 1,
          'silk': 1,
          'rapper': 1,
          'dmx': 1,
          'henchmen': 1,
          'ends': 1,
          'following': 1,
          'morning': 1,
          'dead': 1,
          'nsuspicions': 1,
          'escalate': 1,
          'delroy': 1,
          'told': 1,
          'nhis': 1,
          'concern': 1,
          'war': 1,
          'may': 1,
          'explode': 1,
          'ruin': 1,
          'plans': 1,
          'move': 1,
          'business': 1,
          'corruption': 1,
          'venture': 1,
          'nissac': 1,
          'implores': 1,
          'chief': 1,
          'security': 1,
          'mac': 1,
          'issiah': 1,
          'washington': 1,
          'watch': 1,
          'daughter': 1,
          'shifts': 1,
          'prison': 1,
          'learns': 1,
          'nhe': 1,
          'guards': 1,
          'dragged': 1,
          'disciplined': 1,
          'nhung': 1,
          'upside': 1,
          'foot': 1,
          'recovers': 1,
          'custody': 1,
          'blistering': 1,
          'display': 1,
          'stunt': 1,
          'nescaping': 1,
          'sets': 1,
          'find': 1,
          'person': 1,
          'responsible': 1,
          'death': 1,
          'n': 1,
          'many': 1,
          'ways': 1,
          'fun': 1,
          'nit': 1,
          'absurd': 1,
          'assured': 1,
          'basic': 1,
          'plot': 1,
          'gangster': 1,
          'wanting': 1,
          'become': 1,
          'echoes': 1,
          'godfather': 1,
          'relationship': 1,
          'lis': 1,
          'aaliyahs': 1,
          'trish': 1,
          'reminds': 1,
          'us': 1,
          'abel': 1,
          'ferreras': 1,
          'girl': 1,
          'dies': 1,
          'never': 1,
          'exchange': 1,
          'loving': 1,
          'glance': 1,
          'towards': 1,
          'another': 1,
          'ntheir': 1,
          'much': 1,
          'puritanical': 1,
          'history': 1,
          'performances': 1,
          'fully': 1,
          'acceptable': 1,
          'nli': 1,
          'showiest': 1,
          'express': 1,
          'innocents': 1,
          'steadfast': 1,
          'determination': 1,
          'nallayah': 1,
          'feature': 1,
          'manages': 1,
          'carry': 1,
          'little': 1,
          'asked': 1,
          'certain': 1,
          'grace': 1,
          'camera': 1,
          'loves': 1,
          'photogenic': 1,
          'still': 1,
          'poor': 1,
          'would': 1,
          'affected': 1,
          'ndelro': 1,
          'carries': 1,
          'unsung': 1,
          'appreciated': 1,
          'actor': 1,
          'mr': 1,
          'turns': 1,
          'performers': 1,
          'asks': 1,
          'b': 1,
          'woodside': 1,
          'issacs': 1,
          'colin': 1,
          'undirected': 1,
          'changing': 1,
          'tone': 1,
          'demeanor': 1,
          'accordance': 1,
          'whatever': 1,
          'location': 1,
          'unfocused': 1,
          'reigned': 1,
          'better': 1,
          'nfirst': 1,
          'andrzej': 1,
          'bartkowiak': 1,
          'workmanlike': 1,
          'job': 1,
          'handling': 1,
          'nhaving': 1,
          'career': 1,
          'industrys': 1,
          'cinematographers': 1,
          'bartkiwiak': 1,
          'knows': 1,
          'shots': 1,
          'good': 1,
          'lethargic': 1,
          'coming': 1,
          'semblance': 1,
          'life': 1,
          'eric': 1,
          'bernt': 1,
          'jarrell': 1,
          'focused': 1,
          'care': 1,
          'characters': 1,
          'situations': 1,
          'big': 1,
          'gambit': 1,
          'buying': 1,
          'waterfront': 1,
          'property': 1,
          'facilitate': 1,
          'building': 1,
          'sports': 1,
          'center': 1,
          'nfl': 1,
          'team': 1,
          'needlessly': 1,
          'confusing': 1,
          'nand': 1,
          'common': 1,
          'practice': 1,
          'relief': 1,
          'painfully': 1,
          'anthony': 1,
          'anderson': 1,
          'allayahs': 1,
          'bodyguard': 1,
          'maurice': 1,
          'timing': 1,
          'things': 1,
          'master': 1,
          'intricate': 1,
          'physical': 1,
          'battles': 1,
          'needs': 1,
          'see': 1,
          'fist': 1,
          'legend': 1,
          'understand': 1,
          'man': 1,
          'without': 1,
          'peer': 1,
          'realm': 1,
          'martial': 1,
          'art': 1,
          'combat': 1,
          'given': 1,
          'opportunity': 1,
          'show': 1,
          'lethal': 1,
          'weapon': 1,
          '4': 1,
          'didnt': 1,
          'allow': 1,
          'aided': 1,
          'computer': 1,
          'effects': 1,
          'detract': 1,
          'ability': 1,
          'precision': 1,
          'nalso': 1,
          'noted': 1,
          'singularly': 1,
          'useless': 1,
          'ever': 1,
          'committed': 1,
          'appears': 1,
          'three': 1,
          'times': 1,
          'showing': 1,
          'bone': 1,
          'crushing': 1,
          'blows': 1,
          'opponent': 1,
          'nobviously': 1,
          'homage': 1,
          'famed': 1,
          'sonny': 1,
          'chibas': 1,
          'streetfighter': 1,
          'pointless': 1,
          'interfere': 1,
          'stopped': 1,
          'video': 1,
          'game': 1,
          'inserted': 1,
          'problem': 1,
          'nthose': 1,
          'familiar': 1,
          'know': 1,
          'fantasies': 1,
          'removed': 1,
          'reality': 1,
          'anime': 1,
          'cartoon': 1,
          'nthey': 1,
          'internal': 1,
          'speak': 1,
          'resonance': 1,
          'nthis': 1,
          'created': 1,
          'direction': 1,
          'staccato': 1,
          'nevery': 1,
          'adroit': 1,
          'boring': 1,
          'cuts': 1,
          'away': 1,
          'hand': 1,
          'simple': 1,
          'follows': 1,
          'pattern': 1,
          'monotonous': 1,
          'changes': 1,
          'heightening': 1,
          'impact': 1,
          'nrmd': 1,
          'limited': 1,
          'standard': 1,
          '44': 1,
          'allowing': 1,
          'fine': 1,
          'example': 1,
          'difference': 1,
          'examining': 1,
          'chans': 1,
          'nwatch': 1,
          'restaurant': 1,
          'notice': 1,
          'context': 1,
          'rather': 1,
          'flat': 1,
          'framing': 1,
          'cut': 1,
          'always': 1,
          'help': 1,
          'warehouse': 1,
          'rumble': 1,
          'bronx': 1,
          'nthere': 1,
          'draw': 1,
          'doesnt': 1,
          'let': 1,
          'audience': 1,
          'catch': 1,
          'stops': 1,
          'pauses': 1,
          'dramatic': 1,
          'perfectly': 1,
          'causing': 1,
          'viewer': 1,
          'astounded': 1,
          'flabbergasted': 1,
          'wayne': 1,
          'barroom': 1,
          'brawl': 1,
          'grand': 1,
          'personable': 1,
          'screen': 1,
          'presence': 1,
          'shame': 1,
          'used': 1,
          'day': 1,
          'stop': 1,
          'making': 1,
          'numbers': 1,
          'start': 1,
          'embrace': 1,
          'emotion': 1,
          'made': 1,
          'pictures': 1,
          'commodity': 1,
          'nuntil': 1,
          'left': 1,
          'emotionally': 1,
          'hollow': 1,
          'product': 1,
          'like': 1,
          'replacement': 1,
          'killer': 1,
          'currently': 1,
          'nneg': 1}),
 Counter({'football': 7,
          'nthe': 5,
          'like': 5,
          'reeves': 4,
          'hackman': 3,
          'keanu': 3,
          'cast': 3,
          'characters': 3,
          'team': 3,
          'cheerleaders': 3,
          'make': 3,
          'good': 3,
          'could': 2,
          'film': 2,
          'hoosiers': 2,
          'gene': 2,
          'coach': 2,
          'wacky': 2,
          'replacements': 2,
          'sequel': 2,
          'players': 2,
          'taking': 2,
          'looking': 2,
          'gusto': 2,
          'dumb': 2,
          'making': 2,
          'look': 2,
          'hero': 2,
          'love': 2,
          'go': 2,
          'movies': 2,
          'films': 2,
          'men': 2,
          'wish': 1,
          'pitch': 1,
          'meeting': 1,
          'ridiculous': 1,
          'notion': 1,
          'sports': 1,
          'ni': 1,
          'bet': 1,
          'hotshot': 1,
          'warner': 1,
          'brothers': 1,
          'agent': 1,
          'dark': 1,
          'armani': 1,
          'suit': 1,
          'manicured': 1,
          'fingernails': 1,
          'saying': 1,
          'would': 1,
          'light': 1,
          'comedic': 1,
          'version': 1,
          'given': 1,
          'sunday': 1,
          'throw': 1,
          'angle': 1,
          'casting': 1,
          'tough': 1,
          'determined': 1,
          'nthrow': 1,
          'hunk': 1,
          'guy': 1,
          'poof': 1,
          'nwell': 1,
          'hit': 1,
          'hands': 1,
          'hokey': 1,
          'mistake': 1,
          'mishmash': 1,
          'collage': 1,
          'onedimensional': 1,
          'rampant': 1,
          'stereotypes': 1,
          'cultures': 1,
          'races': 1,
          'cliched': 1,
          'emotional': 1,
          'statements': 1,
          'purpose': 1,
          'wishing': 1,
          'matrix': 1,
          'start': 1,
          'principal': 1,
          'photography': 1,
          'story': 1,
          'loosely': 1,
          'based': 1,
          'around': 1,
          'pro': 1,
          'strike': 1,
          '1987': 1,
          'ragtag': 1,
          'replacement': 1,
          'reins': 1,
          'professional': 1,
          'play': 1,
          'variety': 1,
          'teams': 1,
          'names': 1,
          'washington': 1,
          'sentinels': 1,
          'nkeanu': 1,
          'stars': 1,
          'shane': 1,
          'falco': 1,
          'hasbeen': 1,
          'college': 1,
          'player': 1,
          'redemption': 1,
          'ngene': 1,
          'dons': 1,
          'fedora': 1,
          'tom': 1,
          'landry': 1,
          'speaks': 1,
          'certain': 1,
          'nrounding': 1,
          'includes': 1,
          'swingers': 1,
          'jon': 1,
          'favreau': 1,
          '7up': 1,
          'pitchman': 1,
          'orlando': 1,
          'jones': 1,
          'gruff': 1,
          'owner': 1,
          'jack': 1,
          'warden': 1,
          'unknown': 1,
          'actors': 1,
          'amazing': 1,
          'jobs': 1,
          'portraying': 1,
          'perfectly': 1,
          'stereotyped': 1,
          'drunken': 1,
          'welshman': 1,
          'overweight': 1,
          'sumo': 1,
          'wrestler': 1,
          'black': 1,
          'convict': 1,
          'violent': 1,
          'cop': 1,
          'nthis': 1,
          'bunch': 1,
          'nobodies': 1,
          'try': 1,
          'something': 1,
          'season': 1,
          'playoffs': 1,
          'unbelievable': 1,
          'plays': 1,
          'yelling': 1,
          'asking': 1,
          'hell': 1,
          'dennis': 1,
          'hopper': 1,
          'body': 1,
          'double': 1,
          'field': 1,
          'hired': 1,
          'local': 1,
          'strip': 1,
          'club': 1,
          'girls': 1,
          'coyote': 1,
          'ugly': 1,
          'waitresses': 1,
          'dennys': 1,
          'usual': 1,
          'things': 1,
          'happen': 1,
          'clockwork': 1,
          'rises': 1,
          'ashes': 1,
          'failure': 1,
          'comes': 1,
          'together': 1,
          'unity': 1,
          'falls': 1,
          'conventional': 1,
          'interest': 1,
          'games': 1,
          'enough': 1,
          'schlock': 1,
          'value': 1,
          'ignorant': 1,
          'audiences': 1,
          'cheer': 1,
          'clap': 1,
          'want': 1,
          'home': 1,
          'watch': 1,
          'late': 1,
          'night': 1,
          'cinemax': 1,
          'nits': 1,
          'also': 1,
          'shame': 1,
          'decent': 1,
          'directors': 1,
          'belts': 1,
          'seed': 1,
          'become': 1,
          'television': 1,
          'hacks': 1,
          'nhoward': 1,
          'deutch': 1,
          'behind': 1,
          'camera': 1,
          'two': 1,
          'best': 1,
          '80s': 1,
          'pretty': 1,
          'pink': 1,
          'kind': 1,
          'wonderful': 1,
          'since': 1,
          'grumpier': 1,
          'old': 1,
          'caroline': 1,
          'city': 1,
          'episodes': 1,
          'nobviously': 1,
          'problem': 1,
          'without': 1,
          'script': 1,
          'director': 1,
          'fail': 1,
          'end': 1,
          'nsports': 1,
          'strong': 1,
          'vehicles': 1,
          'cinematic': 1,
          'glory': 1,
          'gritty': 1,
          'tales': 1,
          'involving': 1,
          'honor': 1,
          'valiant': 1,
          'efforts': 1,
          'taken': 1,
          'ultimate': 1,
          'goal': 1,
          'victory': 1,
          'face': 1,
          'insurmountable': 1,
          'odds': 1,
          'rise': 1,
          'fall': 1,
          'gallant': 1,
          'heroes': 1,
          'stories': 1,
          'dramatic': 1,
          'painted': 1,
          'blood': 1,
          'sweat': 1,
          'battlefield': 1,
          'life': 1,
          'offers': 1,
          'none': 1,
          'nneg': 1}),
 Counter({'bully': 8,
          'nthe': 5,
          'sex': 4,
          'one': 4,
          'bobby': 3,
          'lisa': 3,
          'playing': 2,
          'killing': 2,
          'handful': 2,
          'teenagers': 2,
          'high': 2,
          'film': 2,
          'could': 2,
          'kids': 2,
          'nin': 2,
          'clark': 2,
          'however': 2,
          'say': 2,
          'subject': 2,
          'matter': 2,
          'life': 2,
          'promiscuous': 2,
          'profane': 2,
          'question': 2,
          'doesnt': 2,
          'man': 2,
          'way': 2,
          'theres': 2,
          'feel': 2,
          'years': 2,
          'youre': 1,
          'watching': 1,
          'near': 1,
          'two': 1,
          'hours': 1,
          'bored': 1,
          'foulmouthed': 1,
          'florida': 1,
          'teens': 1,
          'drugs': 1,
          'listening': 1,
          'eminem': 1,
          'video': 1,
          'games': 1,
          'peers': 1,
          'nbased': 1,
          'jim': 1,
          'schutzes': 1,
          'novelization': 1,
          'truelife': 1,
          'event': 1,
          'charts': 1,
          'story': 1,
          'disenchanted': 1,
          '1993': 1,
          'murdered': 1,
          'school': 1,
          'cold': 1,
          'calculated': 1,
          'blood': 1,
          'provided': 1,
          'fascinating': 1,
          'insights': 1,
          'turned': 1,
          'aimless': 1,
          'premeditated': 1,
          'killers': 1,
          'hands': 1,
          'controversial': 1,
          'director': 1,
          'larry': 1,
          'less': 1,
          'filmmakers': 1,
          'pornographic': 1,
          'proclivities': 1,
          'terms': 1,
          'incident': 1,
          'provoked': 1,
          'stirs': 1,
          'nothing': 1,
          'new': 1,
          'schoolers': 1,
          'presented': 1,
          'uniformly': 1,
          'screwed': 1,
          'lotbored': 1,
          'much': 1,
          'ambition': 1,
          'kent': 1,
          'nick': 1,
          'stahl': 1,
          'certainly': 1,
          'unpleasant': 1,
          'piece': 1,
          'work': 1,
          'exactly': 1,
          'tower': 1,
          'colleagues': 1,
          'pathological': 1,
          'department': 1,
          'nhe': 1,
          'hounds': 1,
          'harries': 1,
          'humiliates': 1,
          'best': 1,
          'friend': 1,
          'marty': 1,
          'played': 1,
          'brad': 1,
          'renfro': 1,
          'martys': 1,
          'girlfriend': 1,
          'rachel': 1,
          'miner': 1,
          'care': 1,
          'comes': 1,
          'idea': 1,
          'nsimply': 1,
          'remove': 1,
          'equation': 1,
          'nmarty': 1,
          'stoner': 1,
          'friends': 1,
          'plus': 1,
          'recruited': 1,
          'hit': 1,
          'lure': 1,
          'swamp': 1,
          'night': 1,
          'stab': 1,
          'beat': 1,
          'head': 1,
          'baseball': 1,
          'bat': 1,
          'dump': 1,
          'canal': 1,
          'sand': 1,
          'crabs': 1,
          'gators': 1,
          'presumably': 1,
          'finish': 1,
          'ntheres': 1,
          'remorsethe': 1,
          'next': 1,
          'day': 1,
          'theyre': 1,
          'talking': 1,
          'openly': 1,
          'homework': 1,
          'assignment': 1,
          'nthey': 1,
          'wanted': 1,
          'nwhats': 1,
          'troubling': 1,
          'isnt': 1,
          'unsettling': 1,
          'matteroffact': 1,
          'young': 1,
          'people': 1,
          'go': 1,
          'eliminating': 1,
          'constantly': 1,
          'distracted': 1,
          'material': 1,
          'nnot': 1,
          'nudity': 1,
          'plentiful': 1,
          'graphic': 1,
          'also': 1,
          'uneasy': 1,
          'exploitative': 1,
          'ngratuitous': 1,
          'crotch': 1,
          'shots': 1,
          'abound': 1,
          'makes': 1,
          'zipper': 1,
          'cutaway': 1,
          'something': 1,
          'mary': 1,
          'look': 1,
          'like': 1,
          'height': 1,
          'subtlety': 1,
          'nclark': 1,
          'preoccupied': 1,
          'female': 1,
          'predominantly': 1,
          'leads': 1,
          'forget': 1,
          'times': 1,
          'movie': 1,
          'supposed': 1,
          'stripping': 1,
          'bare': 1,
          'literally': 1,
          'figuratively': 1,
          'actors': 1,
          'underage': 1,
          'becomes': 1,
          'harder': 1,
          'watch': 1,
          'time': 1,
          'begin': 1,
          'motives': 1,
          'behind': 1,
          'camera': 1,
          'conclusion': 1,
          'offers': 1,
          'literal': 1,
          'snapshots': 1,
          'information': 1,
          'sentences': 1,
          'imposed': 1,
          'protagonists': 1,
          'involvement': 1,
          'crime': 1,
          'nits': 1,
          'short': 1,
          'sequence': 1,
          'stillsheather': 1,
          '7': 1,
          'ali': 1,
          '40': 1,
          'imprisonment': 1,
          'examplebut': 1,
          'infinitely': 1,
          'telling': 1,
          '110': 1,
          'minutes': 1,
          'rampant': 1,
          'unpleasantness': 1,
          'precedes': 1,
          'n': 1,
          'aims': 1,
          'truth': 1,
          'exploits': 1,
          'shamelessly': 1,
          'bludgeons': 1,
          'death': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'nthe': 5,
          'george': 4,
          'bus': 4,
          'heads': 3,
          'man': 3,
          'never': 3,
          'madness': 3,
          'king': 3,
          'min': 3,
          'n': 3,
          'rated': 3,
          'finney': 3,
          'story': 3,
          'connery': 2,
          'stars': 2,
          'black': 2,
          'fishburne': 2,
          'work': 2,
          'nis': 2,
          'hoop': 2,
          'drawbridge': 2,
          'audience': 2,
          'hawthorne': 2,
          'oscar': 2,
          'comedy': 2,
          'importance': 2,
          'conductor': 2,
          'serious': 2,
          'year': 2,
          'plot': 2,
          'get': 2,
          'end': 2,
          'turn': 2,
          'nits': 2,
          'sean': 1,
          'harvard': 1,
          'law': 1,
          'professor': 1,
          'back': 1,
          'courtroom': 1,
          'way': 1,
          'everglades': 1,
          'defend': 1,
          'young': 1,
          'educated': 1,
          'blair': 1,
          'underwood': 1,
          'guy': 1,
          'death': 1,
          'row': 1,
          'murder': 1,
          'white': 1,
          'girl': 1,
          'says': 1,
          'confession': 1,
          'coerced': 1,
          'regions': 1,
          'tough': 1,
          'cop': 1,
          'lawrence': 1,
          'nwatching': 1,
          'bump': 1,
          'two': 1,
          'hours': 1,
          'amusing': 1,
          'enough': 1,
          'plots': 1,
          'joke': 1,
          'ntheres': 1,
          'logic': 1,
          'ntone': 1,
          'also': 1,
          'issuethere': 1,
          'none': 1,
          'ndirector': 1,
          'arne': 1,
          'glimcher': 1,
          'establishes': 1,
          'exactly': 1,
          'trying': 1,
          'say': 1,
          'statement': 1,
          'human': 1,
          'rights': 1,
          'knockoff': 1,
          'silence': 1,
          'lambs': 1,
          'nglimcher': 1,
          'tells': 1,
          'ninstead': 1,
          'forces': 1,
          'characters': 1,
          'jump': 1,
          'hoping': 1,
          'wont': 1,
          'notice': 1,
          'whats': 1,
          'missing': 1,
          'njust': 1,
          'awful': 1,
          '107': 1,
          'nstill': 1,
          'wondering': 1,
          'nigel': 1,
          'nthen': 1,
          'check': 1,
          'nominated': 1,
          'still': 1,
          'playing': 1,
          'raleigh': 1,
          'chapel': 1,
          'hill': 1,
          'nstage': 1,
          'director': 1,
          'nicholas': 1,
          'hytner': 1,
          'remarkable': 1,
          'screen': 1,
          'debut': 1,
          'adapted': 1,
          'alan': 1,
          'bennetts': 1,
          '1991': 1,
          'tragic': 1,
          'fine': 1,
          'effect': 1,
          'nsumptuouslooking': 1,
          'mildly': 1,
          'stuffy': 1,
          'charts': 1,
          'plagued': 1,
          'iii': 1,
          'almost': 1,
          '30': 1,
          'years': 1,
          'reign': 1,
          'na': 1,
          '98': 1,
          'r': 1,
          'nin': 1,
          'suri': 1,
          'krishnammas': 1,
          'albert': 1,
          'disappears': 1,
          'deeply': 1,
          'role': 1,
          'lovable': 1,
          'dublin': 1,
          'shame': 1,
          'gets': 1,
          'around': 1,
          'nhis': 1,
          'character': 1,
          'passion': 1,
          'wilde': 1,
          'nhe': 1,
          'reads': 1,
          'riders': 1,
          'help': 1,
          'tries': 1,
          'stage': 1,
          'one': 1,
          'authors': 1,
          'plays': 1,
          'nthis': 1,
          'salome': 1,
          'nfor': 1,
          'hour': 1,
          'theres': 1,
          'sweet': 1,
          'magic': 1,
          'behind': 1,
          'troupe': 1,
          'workingclass': 1,
          'stiffs': 1,
          'nconflict': 1,
          'arises': 1,
          'small': 1,
          'stuffan': 1,
          'administrator': 1,
          'company': 1,
          'outraged': 1,
          'catholic': 1,
          'pork': 1,
          'butcher': 1,
          'michael': 1,
          'gambon': 1,
          'nbut': 1,
          'wheel': 1,
          'speak': 1,
          'rolls': 1,
          'smoothly': 1,
          'pointsjust': 1,
          'like': 1,
          'gorgeous': 1,
          'leland': 1,
          'doubledecker': 1,
          'nwhere': 1,
          'things': 1,
          'toward': 1,
          'takes': 1,
          'would': 1,
          'dark': 1,
          'alley': 1,
          'marks': 1,
          'enjoyable': 1,
          'ride': 1,
          'twist': 1,
          'makes': 1,
          'senseand': 1,
          'helps': 1,
          'paint': 1,
          'complete': 1,
          'picture': 1,
          'finneys': 1,
          'characterbut': 1,
          'trip': 1,
          'betrays': 1,
          'light': 1,
          'airy': 1,
          'atmosphere': 1,
          'come': 1,
          'fatal': 1,
          'misstep': 1,
          'mind': 1,
          'doesnt': 1,
          'send': 1,
          'soaring': 1,
          'realms': 1,
          'incredulity': 1,
          'ndr': 1,
          'strangelove': 1,
          '93': 1,
          'nmein': 1,
          'fuhrer': 1,
          'fun': 1,
          'last': 1,
          'month': 1,
          'durham': 1,
          'carolina': 1,
          'midweek': 1,
          'screening': 1,
          'stanley': 1,
          'kubricks': 1,
          'pitchblack': 1,
          'dr': 1,
          'nstrangelove': 1,
          'learned': 1,
          'stop': 1,
          'worrying': 1,
          'love': 1,
          'bomb': 1,
          '1964': 1,
          'peter': 1,
          'sellers': 1,
          'three': 1,
          'roles': 1,
          'c': 1,
          'scott': 1,
          'sterling': 1,
          'hayden': 1,
          'slim': 1,
          'pickens': 1,
          'ntheir': 1,
          'antics': 1,
          'brought': 1,
          'house': 1,
          'surprise': 1,
          'packed': 1,
          'younger': 1,
          'nneg': 1}),
 Counter({'jack': 4,
          'ginty': 3,
          'good': 3,
          'nthe': 3,
          'played': 3,
          'fahey': 3,
          'erotic': 2,
          'woman': 2,
          'desire': 2,
          'robert': 2,
          'star': 2,
          'films': 2,
          'movie': 2,
          'jeff': 2,
          'bo': 2,
          'derek': 2,
          'nhowever': 2,
          'even': 2,
          'end': 2,
          'characters': 2,
          'like': 2,
          'irritating': 2,
          'hand': 2,
          'among': 1,
          'multitude': 1,
          'thrillers': 1,
          'released': 1,
          'early': 1,
          '1990s': 1,
          'interesting': 1,
          'directed': 1,
          'bgrade': 1,
          'action': 1,
          'previous': 1,
          'decade': 1,
          'nthose': 1,
          'tend': 1,
          'nostalgic': 1,
          '1980s': 1,
          'find': 1,
          'reason': 1,
          'type': 1,
          'movies': 1,
          'made': 1,
          'nas': 1,
          'director': 1,
          'little': 1,
          'improve': 1,
          'impression': 1,
          'protagonist': 1,
          'yacht': 1,
          'skipper': 1,
          'falls': 1,
          'madly': 1,
          'love': 1,
          'christina': 1,
          'ford': 1,
          'relationship': 1,
          'rich': 1,
          'powerful': 1,
          'jonathan': 1,
          'ashby': 1,
          'steven': 1,
          'bauer': 1,
          'none': 1,
          'stormy': 1,
          'night': 1,
          'tragedy': 1,
          'occurs': 1,
          'accused': 1,
          'rape': 1,
          'murder': 1,
          'friend': 1,
          'walter': 1,
          'j': 1,
          'hill': 1,
          'mitchum': 1,
          'happens': 1,
          'lawyer': 1,
          'might': 1,
          'prove': 1,
          'innocence': 1,
          'nbelonging': 1,
          'genre': 1,
          'courtroom': 1,
          'drama': 1,
          'thriller': 1,
          'distinguishes': 1,
          'similar': 1,
          'almost': 1,
          'behaving': 1,
          'total': 1,
          'idiots': 1,
          'nunfortunately': 1,
          'film': 1,
          'isnt': 1,
          'comedy': 1,
          'laugh': 1,
          'unintentional': 1,
          'totally': 1,
          'antipathetic': 1,
          'soon': 1,
          'stop': 1,
          'caring': 1,
          'would': 1,
          'happen': 1,
          'actors': 1,
          'play': 1,
          'dont': 1,
          'help': 1,
          'either': 1,
          'nthat': 1,
          'especially': 1,
          'case': 1,
          'whose': 1,
          'stupid': 1,
          'character': 1,
          'lawnmower': 1,
          'man': 1,
          'looks': 1,
          'genius': 1,
          'comparison': 1,
          'nhis': 1,
          'partner': 1,
          'shows': 1,
          'didnt': 1,
          'age': 1,
          'enough': 1,
          'cease': 1,
          'sex': 1,
          'goddess': 1,
          'small': 1,
          'compensation': 1,
          'apparent': 1,
          'lack': 1,
          'acting': 1,
          'talents': 1,
          'nginty': 1,
          'tries': 1,
          'bring': 1,
          'life': 1,
          'using': 1,
          'many': 1,
          'flashbacks': 1,
          'strange': 1,
          'angles': 1,
          'shooting': 1,
          'gets': 1,
          'already': 1,
          'bored': 1,
          'dissatisfied': 1,
          'viewer': 1,
          'nneg': 1}),
 Counter({'lake': 6,
          'placid': 5,
          'seem': 5,
          'anaconda': 4,
          'crocodile': 4,
          'movie': 4,
          'like': 4,
          'doesnt': 4,
          'predator': 3,
          'n': 3,
          'kelly': 3,
          'hector': 3,
          'croc': 3,
          'nthe': 3,
          'marks': 2,
          'another': 2,
          'series': 2,
          'jaws': 2,
          'funny': 2,
          'fonda': 2,
          'maine': 2,
          'tooth': 2,
          'body': 2,
          'white': 2,
          'know': 2,
          'character': 2,
          'best': 2,
          'killing': 2,
          'explanation': 2,
          'much': 2,
          'something': 2,
          'yet': 1,
          'entry': 1,
          'pics': 1,
          'screen': 1,
          'staple': 1,
          'late': 1,
          '1970s': 1,
          'post': 1,
          'revived': 1,
          'recently': 1,
          'godawful': 1,
          'claims': 1,
          'horrorcomedy': 1,
          'directed': 1,
          'guy': 1,
          'house': 1,
          'attempts': 1,
          'humor': 1,
          'actually': 1,
          'less': 1,
          'deadpan': 1,
          'seriousness': 1,
          'npaleontologist': 1,
          'scott': 1,
          'bridget': 1,
          'sent': 1,
          'examine': 1,
          'removed': 1,
          'bitten': 1,
          'half': 1,
          'ndiscovering': 1,
          'belongs': 1,
          'shouldnt': 1,
          'even': 1,
          'hemisphere': 1,
          'goes': 1,
          'crochunting': 1,
          'game': 1,
          'warden': 1,
          'jack': 1,
          'wells': 1,
          'bill': 1,
          'pullman': 1,
          'sheriff': 1,
          'hank': 1,
          'keough': 1,
          'brendan': 1,
          'gleeson': 1,
          'ntheyre': 1,
          'joined': 1,
          'unwelcome': 1,
          'guest': 1,
          'cyr': 1,
          'oliver': 1,
          'platt': 1,
          'scholar': 1,
          'worships': 1,
          'crocs': 1,
          'searches': 1,
          'world': 1,
          'nalong': 1,
          'way': 1,
          'merry': 1,
          'band': 1,
          'meets': 1,
          'mrs': 1,
          'delores': 1,
          'bickerman': 1,
          'betty': 1,
          'weird': 1,
          'old': 1,
          'lady': 1,
          'lives': 1,
          'nyou': 1,
          'expect': 1,
          'lots': 1,
          'shots': 1,
          'camera': 1,
          'eyes': 1,
          'cam': 1,
          'swimming': 1,
          'toward': 1,
          'someones': 1,
          'dangling': 1,
          'legs': 1,
          'music': 1,
          'plays': 1,
          'one': 1,
          'whos': 1,
          'obsessed': 1,
          'stupidly': 1,
          'endangers': 1,
          'rest': 1,
          'insists': 1,
          'cant': 1,
          'possibly': 1,
          'exist': 1,
          'nunlike': 1,
          'slippery': 1,
          'cousin': 1,
          'wants': 1,
          'present': 1,
          'formulaic': 1,
          'plot': 1,
          'tongueincheek': 1,
          'selfdefeating': 1,
          'result': 1,
          'neither': 1,
          'scary': 1,
          'tedious': 1,
          'nwhile': 1,
          'director': 1,
          'steve': 1,
          'miner': 1,
          'several': 1,
          'horror': 1,
          'films': 1,
          'resume': 1,
          'including': 1,
          'two': 1,
          'installments': 1,
          'friday': 1,
          '13th': 1,
          'halloween': 1,
          'h20': 1,
          'screenwriter': 1,
          'david': 1,
          'kelley': 1,
          'known': 1,
          'creator': 1,
          'tv': 1,
          'ally': 1,
          'mcbeal': 1,
          'chicago': 1,
          'hope': 1,
          'stomach': 1,
          'chomp': 1,
          'em': 1,
          'flick': 1,
          'count': 1,
          'surprisingly': 1,
          'low': 1,
          'include': 1,
          'major': 1,
          'characters': 1,
          'annoyingly': 1,
          'insist': 1,
          'capture': 1,
          'alive': 1,
          'rather': 1,
          'manages': 1,
          'waysill': 1,
          'let': 1,
          'discover': 1,
          'mostly': 1,
          'computergenerated': 1,
          'course': 1,
          'nlike': 1,
          'snake': 1,
          'thirtyfoot': 1,
          'monster': 1,
          'real': 1,
          'moves': 1,
          'quickly': 1,
          'ways': 1,
          'unnatural': 1,
          'also': 1,
          'offers': 1,
          'little': 1,
          'giant': 1,
          'nthere': 1,
          'lot': 1,
          'semimystical': 1,
          'mumbo': 1,
          'jumbo': 1,
          'really': 1,
          'dont': 1,
          'crocodiles': 1,
          'nthey': 1,
          'would': 1,
          'better': 1,
          'going': 1,
          'urban': 1,
          'myth': 1,
          'alligators': 1,
          'sewers': 1,
          'na': 1,
          'offer': 1,
          'radioactive': 1,
          'mutant': 1,
          'ncreature': 1,
          'outer': 1,
          'space': 1,
          'give': 1,
          'audience': 1,
          'hang': 1,
          'disbelief': 1,
          'npullman': 1,
          'plodding': 1,
          'autopilot': 1,
          'nmost': 1,
          'time': 1,
          'theyre': 1,
          'probably': 1,
          'thinking': 1,
          'agents': 1,
          'wondering': 1,
          'making': 1,
          'end': 1,
          'careers': 1,
          'nplatt': 1,
          'hand': 1,
          'giving': 1,
          'efforts': 1,
          'manage': 1,
          'squeeze': 1,
          'chuckles': 1,
          'sorry': 1,
          'script': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'nthe': 7,
          'one': 6,
          'even': 5,
          'like': 4,
          'bugs': 4,
          'pornography': 3,
          'bad': 3,
          'anything': 3,
          'ni': 3,
          'doesnt': 3,
          'thing': 3,
          'soldiers': 3,
          'dont': 3,
          'really': 3,
          'troopers': 2,
          'hateful': 2,
          'nit': 2,
          'good': 2,
          'audience': 2,
          'nits': 2,
          'worst': 2,
          'time': 2,
          'full': 2,
          'stand': 2,
          'er': 2,
          'recruitment': 2,
          'film': 2,
          'intelligence': 2,
          'scenes': 2,
          'gets': 2,
          'nthey': 2,
          'sense': 2,
          'therefore': 2,
          'hate': 2,
          'would': 2,
          'nif': 2,
          'way': 2,
          'ntheres': 2,
          'propaganda': 2,
          'look': 2,
          'capsule': 1,
          'tonight': 1,
          'leni': 1,
          'rienfenstal': 1,
          'nstarship': 1,
          'expensive': 1,
          'unenjoyable': 1,
          'piece': 1,
          'violent': 1,
          'cinema': 1,
          'storytelling': 1,
          'stupid': 1,
          'fun': 1,
          'cynically': 1,
          'calculatedly': 1,
          'boneheaded': 1,
          'least': 1,
          'demanding': 1,
          'members': 1,
          'alternately': 1,
          'bored': 1,
          'revulsed': 1,
          'movies': 1,
          'ive': 1,
          'seen': 1,
          'long': 1,
          'nwhy': 1,
          'calling': 1,
          'npornography': 1,
          'abstract': 1,
          'calculated': 1,
          'appeal': 1,
          'baser': 1,
          'instincts': 1,
          'remember': 1,
          'reading': 1,
          'review': 1,
          'metal': 1,
          'jacket': 1,
          'described': 1,
          'climact': 1,
          'moment': 1,
          'end': 1,
          'private': 1,
          'joker': 1,
          'shoot': 1,
          'downed': 1,
          'vc': 1,
          'sniper': 1,
          'nearpornographic': 1,
          'eternity': 1,
          'didnt': 1,
          'agree': 1,
          'assessment': 1,
          'could': 1,
          'see': 1,
          'implied': 1,
          'reviewer': 1,
          'felt': 1,
          'incited': 1,
          'pump': 1,
          'fists': 1,
          'shout': 1,
          'man': 1,
          'nthat': 1,
          'sentiment': 1,
          'echoed': 1,
          'ad': 1,
          'nauseam': 1,
          'throughout': 1,
          'starship': 1,
          'literally': 1,
          'giant': 1,
          'gone': 1,
          'berserk': 1,
          'tries': 1,
          'frantically': 1,
          'enlist': 1,
          'emotions': 1,
          'winds': 1,
          'dull': 1,
          'sickening': 1,
          'takes': 1,
          'place': 1,
          'future': 1,
          'earth': 1,
          'come': 1,
          'attack': 1,
          'alien': 1,
          'species': 1,
          'appear': 1,
          'nto': 1,
          'counterattack': 1,
          'humankind': 1,
          'single': 1,
          'stupidest': 1,
          'imaginable': 1,
          'instead': 1,
          'nuke': 1,
          'planet': 1,
          'orbit': 1,
          'theyre': 1,
          'clearly': 1,
          'capable': 1,
          'send': 1,
          'grunts': 1,
          'm16': 1,
          'rifles': 1,
          'nthis': 1,
          'isnt': 1,
          'heinlein': 1,
          'wwii': 1,
          'obvious': 1,
          'points': 1,
          'satire': 1,
          'ever': 1,
          'poked': 1,
          'prodded': 1,
          'combat': 1,
          'noisy': 1,
          'repetitive': 1,
          'ultimately': 1,
          'tiresome': 1,
          'n': 1,
          'scene': 1,
          'journalist': 1,
          'battlefield': 1,
          'filimg': 1,
          'slaughtered': 1,
          'ends': 1,
          'groaning': 1,
          'predictability': 1,
          'said': 1,
          'cameraman': 1,
          'skewered': 1,
          'commanders': 1,
          'consistently': 1,
          'idiotic': 1,
          'possess': 1,
          'germ': 1,
          'tactical': 1,
          'common': 1,
          'behave': 1,
          'care': 1,
          'nwe': 1,
          'hated': 1,
          'tom': 1,
          'berenger': 1,
          'character': 1,
          'platoon': 1,
          'mattered': 1,
          'curious': 1,
          'learn': 1,
          'fate': 1,
          'nhere': 1,
          'whats': 1,
          'nhating': 1,
          'cursing': 1,
          'hurricaine': 1,
          'theres': 1,
          'know': 1,
          'give': 1,
          'us': 1,
          'screenwriter': 1,
          'ed': 1,
          'neumeier': 1,
          'perhaps': 1,
          'better': 1,
          'appelation': 1,
          'screen': 1,
          'typist': 1,
          'director': 1,
          'increasingly': 1,
          'talentimpaired': 1,
          'paul': 1,
          'verhoeven': 1,
          'found': 1,
          'make': 1,
          'characters': 1,
          'story': 1,
          'serve': 1,
          'none': 1,
          'subplots': 1,
          'concerns': 1,
          'woman': 1,
          'pilot': 1,
          'whos': 1,
          'great': 1,
          'getting': 1,
          'tight': 1,
          'situations': 1,
          'nonce': 1,
          'twice': 1,
          'fine': 1,
          'nby': 1,
          'fifth': 1,
          'sixth': 1,
          'worn': 1,
          'welcome': 1,
          'never': 1,
          'people': 1,
          'thinking': 1,
          'tested': 1,
          'show': 1,
          'mettle': 1,
          'nalso': 1,
          'irritatingly': 1,
          'selective': 1,
          'effective': 1,
          'earthling': 1,
          'weaponry': 1,
          'bug': 1,
          'humans': 1,
          'screaming': 1,
          'grasp': 1,
          'five': 1,
          'guys': 1,
          'around': 1,
          'blast': 1,
          'away': 1,
          'auto': 1,
          'without': 1,
          'damned': 1,
          'nbut': 1,
          'human': 1,
          'cornered': 1,
          'lays': 1,
          'waste': 1,
          'whole': 1,
          'platoons': 1,
          'clip': 1,
          'nuhhuh': 1,
          'feature': 1,
          'repulsive': 1,
          'quasifascist': 1,
          'flavor': 1,
          'say': 1,
          'quasi': 1,
          'uses': 1,
          'many': 1,
          'trappings': 1,
          'fascism': 1,
          'ot': 1,
          'eroticize': 1,
          'action': 1,
          'gear': 1,
          'uniforms': 1,
          'etc': 1,
          'nerve': 1,
          'brains': 1,
          'genuinely': 1,
          'fascist': 1,
          'intelligent': 1,
          'subject': 1,
          'bumpers': 1,
          'apparently': 1,
          'intended': 1,
          'parody': 1,
          'wartime': 1,
          'clumsy': 1,
          'oafish': 1,
          'wind': 1,
          'making': 1,
          'relatively': 1,
          'innocuous': 1,
          'comparison': 1,
          'nlike': 1,
          'rest': 1,
          'suppose': 1,
          'worth': 1,
          'acting': 1,
          'bland': 1,
          'neither': 1,
          'arsenic': 1,
          'gravy': 1,
          'music': 1,
          'disposable': 1,
          'camerawork': 1,
          'turgid': 1,
          'heartbreaking': 1,
          'makes': 1,
          'independence': 1,
          'day': 1,
          'masterpiece': 1,
          'nneg': 1}),
 Counter({'dr': 7,
          'moreau': 6,
          'story': 5,
          'island': 5,
          'nthe': 5,
          'classic': 4,
          'film': 4,
          'really': 4,
          'n': 4,
          'production': 3,
          'much': 3,
          'better': 3,
          'montgomery': 3,
          'moreaus': 3,
          'beastpeople': 3,
          'long': 3,
          'characters': 3,
          'important': 3,
          'development': 3,
          'still': 3,
          'apes': 3,
          'h': 2,
          'g': 2,
          'wells': 2,
          'effects': 2,
          'man': 2,
          'yet': 2,
          'another': 2,
          'doubt': 2,
          '2': 2,
          'movies': 2,
          'one': 2,
          'title': 2,
          'ndouglas': 2,
          'incidently': 2,
          'lab': 2,
          'neven': 2,
          'people': 2,
          'led': 2,
          'savage': 2,
          'nmoreau': 2,
          'within': 2,
          'beast': 2,
          'make': 2,
          'attention': 2,
          'character': 2,
          'could': 2,
          'would': 2,
          'say': 2,
          'action': 2,
          'nothing': 2,
          'planet': 2,
          'good': 2,
          'bring': 2,
          'little': 2,
          'ruined': 1,
          'nmarking': 1,
          'centennial': 1,
          'anniversary': 1,
          '1896': 1,
          'new': 1,
          'line': 1,
          'cinema': 1,
          'armed': 1,
          'stellar': 1,
          'cast': 1,
          'expert': 1,
          'makeup': 1,
          'stan': 1,
          'winston': 1,
          'alien': 1,
          'predator': 1,
          'terminator': 1,
          'etc': 1,
          'churns': 1,
          'hollywood': 1,
          'based': 1,
          'novel': 1,
          'nof': 1,
          'course': 1,
          'superior': 1,
          'compared': 1,
          'earlier': 1,
          'made': 1,
          'back': 1,
          '1933': 1,
          '1977': 1,
          'lost': 1,
          'souls': 1,
          'sounds': 1,
          'like': 1,
          'begins': 1,
          'edward': 1,
          'douglas': 1,
          'thewlis': 1,
          'un': 1,
          'representative': 1,
          'sent': 1,
          'oversee': 1,
          'peace': 1,
          'treaty': 1,
          'somewhere': 1,
          'south': 1,
          'pacific': 1,
          'saved': 1,
          'brink': 1,
          'death': 1,
          'kilmer': 1,
          'plane': 1,
          'crashes': 1,
          'sea': 1,
          'soon': 1,
          'learns': 1,
          'working': 1,
          'owns': 1,
          'also': 1,
          'reputable': 1,
          'geneticist': 1,
          'awarded': 1,
          'nobel': 1,
          'prize': 1,
          'nhis': 1,
          'hosts': 1,
          'reluctance': 1,
          'allow': 1,
          'freely': 1,
          'move': 1,
          'around': 1,
          'becomes': 1,
          'clear': 1,
          'stumbled': 1,
          'monstrous': 1,
          'birth': 1,
          'progress': 1,
          'worse': 1,
          'workers': 1,
          'exactly': 1,
          'normal': 1,
          'stumbles': 1,
          'across': 1,
          'shocking': 1,
          'discovery': 1,
          'community': 1,
          'considers': 1,
          'maker': 1,
          'nusing': 1,
          'shocktherapy': 1,
          'law': 1,
          'able': 1,
          'keep': 1,
          'civilised': 1,
          'extent': 1,
          'animalmen': 1,
          'controlled': 1,
          'questions': 1,
          'ability': 1,
          'men': 1,
          'playing': 1,
          'god': 1,
          'ndr': 1,
          'obsessed': 1,
          'creating': 1,
          'race': 1,
          'beings': 1,
          'free': 1,
          'hate': 1,
          'violence': 1,
          'every': 1,
          'something': 1,
          'suppress': 1,
          'interesting': 1,
          'premise': 1,
          'grasp': 1,
          'failed': 1,
          'nthere': 1,
          'many': 1,
          'put': 1,
          'worst': 1,
          'thing': 1,
          'prioritized': 1,
          'audience': 1,
          'believe': 1,
          'particular': 1,
          'know': 1,
          'perishes': 1,
          'rather': 1,
          'nungloriously': 1,
          'times': 1,
          'nperhaps': 1,
          'redemption': 1,
          'especially': 1,
          'aissa': 1,
          'balk': 1,
          'human': 1,
          'creations': 1,
          'two': 1,
          'receive': 1,
          'area': 1,
          'script': 1,
          'fails': 1,
          'miserably': 1,
          'nmore': 1,
          'screen': 1,
          'time': 1,
          'used': 1,
          'interaction': 1,
          'ni': 1,
          'liked': 1,
          'delved': 1,
          'obsession': 1,
          'montgomerys': 1,
          'purpose': 1,
          'justification': 1,
          'rebel': 1,
          'nmaybe': 1,
          'nature': 1,
          'screenplay': 1,
          'incorporate': 1,
          'sequences': 1,
          'forced': 1,
          'filmmakers': 1,
          'cut': 1,
          'short': 1,
          'anything': 1,
          'else': 1,
          'summer': 1,
          'marketable': 1,
          'special': 1,
          'anyone': 1,
          'shout': 1,
          'nat': 1,
          'beastmen': 1,
          'looked': 1,
          'bit': 1,
          'realistic': 1,
          'nthis': 1,
          'potential': 1,
          'nunfortunately': 1,
          'adaptations': 1,
          'decide': 1,
          'focus': 1,
          'message': 1,
          'makes': 1,
          'entire': 1,
          'essence': 1,
          'nas': 1,
          'third': 1,
          'outing': 1,
          'naccomplishes': 1,
          'inferior': 1,
          'version': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'creaky': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'film': 4,
          'may': 3,
          'boring': 2,
          'english': 2,
          'patient': 2,
          'acting': 2,
          'cinematography': 2,
          'made': 2,
          'fiennes': 2,
          'almasy': 2,
          'nthe': 2,
          'dafoe': 2,
          'dead': 2,
          'good': 2,
          'much': 2,
          'lengthy': 1,
          'lousy': 1,
          'two': 1,
          'words': 1,
          'describe': 1,
          'drama': 1,
          'ngreat': 1,
          'music': 1,
          'nice': 1,
          'many': 1,
          'dull': 1,
          'subplots': 1,
          'characters': 1,
          'hard': 1,
          'follow': 1,
          'nralph': 1,
          'strange': 1,
          'days': 1,
          'schindlers': 1,
          'list': 1,
          'gives': 1,
          'gripping': 1,
          'performance': 1,
          'count': 1,
          'laszlo': 1,
          'victim': 1,
          'amnesia': 1,
          'horrible': 1,
          'burns': 1,
          'world': 1,
          'war': 1,
          'ii': 1,
          'italy': 1,
          'story': 1,
          'revolves': 1,
          'around': 1,
          'past': 1,
          'flashback': 1,
          'form': 1,
          'making': 1,
          'even': 1,
          'confusing': 1,
          'nanyway': 1,
          'taken': 1,
          'hana': 1,
          'juliette': 1,
          'binoche': 1,
          'horseman': 1,
          'roof': 1,
          'wartorn': 1,
          'nurse': 1,
          'nshe': 1,
          'never': 1,
          'really': 1,
          'anything': 1,
          'met': 1,
          'indian': 1,
          'towards': 1,
          'end': 1,
          'developing': 1,
          'yet': 1,
          'another': 1,
          'subplot': 1,
          'ncount': 1,
          'begins': 1,
          'remember': 1,
          'happened': 1,
          'explained': 1,
          'stranger': 1,
          'willem': 1,
          'basquiat': 1,
          'nhis': 1,
          'love': 1,
          'kirstin': 1,
          'scott': 1,
          'thomas': 1,
          'mission': 1,
          'impossible': 1,
          'severely': 1,
          'injured': 1,
          'plane': 1,
          'crash': 1,
          'eventually': 1,
          'died': 1,
          'cave': 1,
          'nhe': 1,
          'returned': 1,
          'find': 1,
          'heartbroken': 1,
          'nso': 1,
          'flew': 1,
          'body': 1,
          'somewhere': 1,
          'shot': 1,
          'ground': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'idea': 1,
          'sound': 1,
          'trailer': 1,
          'tempting': 1,
          'last': 1,
          'thing': 1,
          'nmaybe': 1,
          'hour': 1,
          'less': 1,
          'tolerable': 1,
          '2': 1,
          'hours': 1,
          '40': 1,
          'minutes': 1,
          'talking': 1,
          'handle': 1,
          'redeeming': 1,
          'qualities': 1,
          'fine': 1,
          'beautiful': 1,
          'desert': 1,
          'nother': 1,
          'full': 1,
          'worthless': 1,
          'scenes': 1,
          'boredom': 1,
          'wastes': 1,
          'entirely': 1,
          'n': 1,
          'nneg': 1}),
 Counter({'nhe': 4,
          'nthe': 4,
          'limey': 3,
          'plot': 3,
          'first': 3,
          'like': 3,
          'story': 3,
          'doesnt': 3,
          'much': 3,
          'valentine': 3,
          'nhes': 3,
          'way': 3,
          'movies': 3,
          'tell': 3,
          'always': 3,
          'dont': 3,
          'act': 3,
          'sight': 2,
          'director': 2,
          'us': 2,
          'thriller': 2,
          'may': 2,
          'pulp': 2,
          'fiction': 2,
          'fashion': 2,
          'wilson': 2,
          'terrence': 2,
          'stamp': 2,
          'death': 2,
          'know': 2,
          'fonda': 2,
          'valentines': 2,
          'place': 2,
          'ni': 2,
          'time': 2,
          'told': 2,
          'traditional': 2,
          'nthis': 2,
          'film': 2,
          'action': 2,
          'work': 2,
          'steven': 1,
          'sorderbergh': 1,
          'baffles': 1,
          'hell': 1,
          'cold': 1,
          'uninvolving': 1,
          'confusing': 1,
          'new': 1,
          'nthough': 1,
          'description': 1,
          'seem': 1,
          'came': 1,
          'pen': 1,
          'elmore': 1,
          'leonard': 1,
          'author': 1,
          'well': 1,
          'jackie': 1,
          'brown': 1,
          'get': 1,
          'shorty': 1,
          'watch': 1,
          'realize': 1,
          'nearly': 1,
          'good': 1,
          'enough': 1,
          'nin': 1,
          'aggressively': 1,
          'nonlinear': 1,
          'li': 1,
          'mey': 1,
          'noun': 1,
          'english': 1,
          'gentleman': 1,
          'tells': 1,
          'british': 1,
          'excon': 1,
          'released': 1,
          '9': 1,
          'year': 1,
          'stint': 1,
          'prison': 1,
          'armed': 1,
          'robbery': 1,
          'come': 1,
          'seek': 1,
          'vengeance': 1,
          'daughter': 1,
          'jenny': 1,
          'circumstances': 1,
          'demise': 1,
          'name': 1,
          'terry': 1,
          'nvalentine': 1,
          'jennys': 1,
          'former': 1,
          'boyfriend': 1,
          'wealthy': 1,
          'corrupt': 1,
          'record': 1,
          'executive': 1,
          'played': 1,
          'peter': 1,
          'major': 1,
          'role': 1,
          'since': 1,
          'terrific': 1,
          'ulees': 1,
          'gold': 1,
          '1997': 1,
          'nseeking': 1,
          'reclusive': 1,
          'residence': 1,
          'turns': 1,
          'easy': 1,
          'task': 1,
          'finally': 1,
          'finds': 1,
          'impressive': 1,
          'abode': 1,
          'high': 1,
          'mountains': 1,
          'sneaks': 1,
          'big': 1,
          'party': 1,
          'winds': 1,
          'breaking': 1,
          'cover': 1,
          'eventually': 1,
          'setting': 1,
          'head': 1,
          'security': 1,
          'decides': 1,
          'run': 1,
          'nwhat': 1,
          'mess': 1,
          'problem': 1,
          'films': 1,
          'refuse': 1,
          'constricted': 1,
          'linearity': 1,
          'twisted': 1,
          'every': 1,
          'masterpiece': 1,
          'take': 1,
          'exception': 1,
          'decide': 1,
          'play': 1,
          'around': 1,
          'reason': 1,
          'confuse': 1,
          'viewer': 1,
          'exactly': 1,
          'permeated': 1,
          'flashbacks': 1,
          'flashforwards': 1,
          'described': 1,
          'random': 1,
          'timetravel': 1,
          'without': 1,
          'evident': 1,
          'purpose': 1,
          'nthere': 1,
          'method': 1,
          'madness': 1,
          'nit': 1,
          'uses': 1,
          'fancy': 1,
          'would': 1,
          'better': 1,
          'conventionally': 1,
          'comprehendably': 1,
          'isnt': 1,
          'particularly': 1,
          'interesting': 1,
          'mildly': 1,
          'hackneyed': 1,
          'involving': 1,
          'sort': 1,
          'brooding': 1,
          'protagonist': 1,
          'speak': 1,
          'sequences': 1,
          'done': 1,
          'annoyingly': 1,
          'perfunctory': 1,
          'attitude': 1,
          'felt': 1,
          'wasnt': 1,
          'interested': 1,
          'proceedings': 1,
          'almost': 1,
          'made': 1,
          'paycheck': 1,
          'nditto': 1,
          'editing': 1,
          'seems': 1,
          'deliberately': 1,
          'sloppy': 1,
          'unpleasant': 1,
          'nsixties': 1,
          'icon': 1,
          'manages': 1,
          'least': 1,
          'menacing': 1,
          'aging': 1,
          'criminal': 1,
          'stature': 1,
          'surprisingly': 1,
          'imposing': 1,
          'physical': 1,
          'presence': 1,
          'works': 1,
          'advantage': 1,
          'npeter': 1,
          'unbelievably': 1,
          'underrated': 1,
          'actor': 1,
          'hes': 1,
          'shy': 1,
          'quiet': 1,
          'effective': 1,
          'adept': 1,
          'conveying': 1,
          'emotions': 1,
          'speech': 1,
          'rather': 1,
          'expression': 1,
          'feelings': 1,
          'show': 1,
          'face': 1,
          'basically': 1,
          'conventional': 1,
          'pretentiously': 1,
          'bizarre': 1,
          'nwhy': 1,
          'soderbergh': 1,
          'couldnt': 1,
          'parrot': 1,
          'certainly': 1,
          'result': 1,
          'wild': 1,
          'cornucopia': 1,
          'images': 1,
          'amount': 1,
          'precisely': 1,
          'nil': 1,
          'even': 1,
          'scenes': 1,
          'n1999': 1,
          'signified': 1,
          'one': 1,
          'two': 1,
          'three': 1,
          'storyline': 1,
          'obviously': 1,
          'yet': 1,
          'transcended': 1,
          'nshall': 1,
          'go': 1,
          'back': 1,
          'basics': 1,
          'nneg': 1}),
 Counter({'lucy': 6,
          'art': 4,
          'syd': 4,
          'scene': 4,
          'world': 3,
          'nin': 3,
          'movie': 3,
          'nthis': 3,
          'picture': 3,
          'since': 3,
          'nlucy': 3,
          'becomes': 3,
          'pseudointellectual': 2,
          'high': 2,
          'part': 2,
          'ally': 2,
          'sheedy': 2,
          'radha': 2,
          'mitchell': 2,
          'two': 2,
          'heroin': 2,
          'receptionist': 2,
          'line': 2,
          'promoted': 2,
          'editor': 2,
          'magazine': 2,
          'frame': 2,
          'lives': 2,
          'drugs': 2,
          'mother': 2,
          'work': 2,
          'one': 2,
          'sex': 2,
          'drug': 2,
          'film': 1,
          'magazines': 1,
          'wasted': 1,
          'drugaddled': 1,
          'protagonists': 1,
          'notable': 1,
          'deliver': 1,
          'nice': 1,
          'performances': 1,
          'leading': 1,
          'roles': 1,
          'lisa': 1,
          'cholodenkos': 1,
          'script': 1,
          'direction': 1,
          'makes': 1,
          'care': 1,
          'much': 1,
          'either': 1,
          'character': 1,
          'nliving': 1,
          'induced': 1,
          'highs': 1,
          'float': 1,
          'along': 1,
          'fall': 1,
          'love': 1,
          'uninviting': 1,
          'full': 1,
          'pretentious': 1,
          'minor': 1,
          'characters': 1,
          'reads': 1,
          'dostoevski': 1,
          'woman': 1,
          'restroom': 1,
          'certified': 1,
          'genius': 1,
          'recently': 1,
          'awarded': 1,
          'prestigious': 1,
          'mcarthur': 1,
          'grant': 1,
          'n24yearold': 1,
          'rather': 1,
          'bland': 1,
          'livein': 1,
          'boyfriend': 1,
          'assistant': 1,
          'artistic': 1,
          'photography': 1,
          'nalthough': 1,
          'impressed': 1,
          'mainly': 1,
          'gofer': 1,
          'boss': 1,
          'meets': 1,
          'famous': 1,
          'photographer': 1,
          'berliner': 1,
          'nfor': 1,
          'photos': 1,
          'demands': 1,
          'assigned': 1,
          'fancies': 1,
          'current': 1,
          'lover': 1,
          'washed': 1,
          'german': 1,
          'actress': 1,
          'named': 1,
          'greta': 1,
          'played': 1,
          'frequently': 1,
          'indecipherable': 1,
          'series': 1,
          'mumbles': 1,
          'patricia': 1,
          'clarkson': 1,
          'nthe': 1,
          'friends': 1,
          'wile': 1,
          'away': 1,
          'time': 1,
          'snorting': 1,
          'shooting': 1,
          'dope': 1,
          'usually': 1,
          'happen': 1,
          'single': 1,
          'episode': 1,
          'commonplace': 1,
          'sleeping': 1,
          'nsyd': 1,
          'apartment': 1,
          'joins': 1,
          'fun': 1,
          'member': 1,
          'zombie': 1,
          'club': 1,
          'seems': 1,
          'pretty': 1,
          'happy': 1,
          'life': 1,
          'apparently': 1,
          'funded': 1,
          'quit': 1,
          'working': 1,
          'professionally': 1,
          '10': 1,
          'years': 1,
          'ago': 1,
          'thought': 1,
          'pigeonholed': 1,
          'money': 1,
          'assume': 1,
          'thats': 1,
          'supports': 1,
          'habit': 1,
          'procures': 1,
          'living': 1,
          'expenses': 1,
          'na': 1,
          'typical': 1,
          'editors': 1,
          'arguing': 1,
          'whether': 1,
          'potential': 1,
          'photographers': 1,
          'transcendental': 1,
          'merely': 1,
          'classical': 1,
          'nthat': 1,
          'clue': 1,
          'dogma': 1,
          'spouting': 1,
          'obvious': 1,
          'particularly': 1,
          'funny': 1,
          'n': 1,
          'cultural': 1,
          'currency': 1,
          'important': 1,
          'artistspeak': 1,
          'frames': 1,
          'manager': 1,
          'uses': 1,
          'convince': 1,
          'show': 1,
          'pictures': 1,
          'nwhen': 1,
          'big': 1,
          'comes': 1,
          'puts': 1,
          'moves': 1,
          'idea': 1,
          'romantic': 1,
          'want': 1,
          'get': 1,
          'lucys': 1,
          'come': 1,
          'handinhand': 1,
          'nand': 1,
          'except': 1,
          'obligatory': 1,
          'someone': 1,
          'almost': 1,
          'overdosing': 1,
          'shows': 1,
          'usage': 1,
          'hip': 1,
          'natural': 1,
          'vacuous': 1,
          'throws': 1,
          'standard': 1,
          'downer': 1,
          'ending': 1,
          'attempt': 1,
          'manipulate': 1,
          'emotions': 1,
          'another': 1,
          'might': 1,
          'worked': 1,
          'reaction': 1,
          'likely': 1,
          'decidedly': 1,
          'muted': 1,
          'nhigh': 1,
          'runs': 1,
          '1': 1,
          '36': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'explicit': 1,
          'pervasive': 1,
          'use': 1,
          'language': 1,
          'appropriate': 1,
          'younger': 1,
          'college': 1,
          'age': 1,
          'nneg': 1}),
 Counter({'camp': 6,
          'least': 5,
          'party': 3,
          'film': 3,
          'could': 3,
          'done': 3,
          'seen': 2,
          'nothing': 2,
          'fun': 2,
          'would': 2,
          'comedy': 2,
          'shepard': 2,
          'one': 1,
          'mindnumbingly': 1,
          'brainless': 1,
          'comedies': 1,
          'ive': 1,
          'awhile': 1,
          'na': 1,
          'late': 1,
          'ripoff': 1,
          'meatballs': 1,
          'series': 1,
          'follows': 1,
          'group': 1,
          'young': 1,
          'counselors': 1,
          'chipmunk': 1,
          'nthats': 1,
          'really': 1,
          'said': 1,
          'plot': 1,
          'much': 1,
          'happens': 1,
          'except': 1,
          'main': 1,
          'character': 1,
          'wisecracking': 1,
          'jerry': 1,
          'andrew': 1,
          'ross': 1,
          'hots': 1,
          'cute': 1,
          'blonde': 1,
          'kerry': 1,
          'brennan': 1,
          'big': 1,
          'contest': 1,
          'climax': 1,
          'nhow': 1,
          'nsince': 1,
          'practically': 1,
          'screenplay': 1,
          'talent': 1,
          'involved': 1,
          'makers': 1,
          'make': 1,
          'raunchy': 1,
          'exploitative': 1,
          'nits': 1,
          'think': 1,
          'exploitation': 1,
          'necessarily': 1,
          'good': 1,
          'quality': 1,
          'talking': 1,
          'dull': 1,
          'turkey': 1,
          'like': 1,
          'fill': 1,
          'lot': 1,
          'mindless': 1,
          'sex': 1,
          'neven': 1,
          'psychopathic': 1,
          'slasher': 1,
          'trick': 1,
          'nat': 1,
          'wouldnt': 1,
          'chore': 1,
          'sit': 1,
          'nnever': 1,
          'many': 1,
          'jokes': 1,
          'fall': 1,
          'astoundingly': 1,
          'flat': 1,
          'nthe': 1,
          'easy': 1,
          'spot': 1,
          'wasnt': 1,
          'bit': 1,
          'funny': 1,
          'nit': 1,
          'groaninducing': 1,
          'nconstantly': 1,
          'throghout': 1,
          'asking': 1,
          'director': 1,
          'gary': 1,
          'graver': 1,
          'actually': 1,
          'thought': 1,
          'movie': 1,
          'worth': 1,
          'anything': 1,
          'nso': 1,
          'saves': 1,
          'dreaded': 1,
          'zero': 1,
          'star': 1,
          'rating': 1,
          'nwell': 1,
          'thats': 1,
          'simple': 1,
          'jewel': 1,
          'flighty': 1,
          'bimbo': 1,
          'admittedly': 1,
          'watch': 1,
          'nalthough': 1,
          'saved': 1,
          'lowest': 1,
          'depths': 1,
          'motion': 1,
          'picture': 1,
          'trash': 1,
          'centered': 1,
          'might': 1,
          'able': 1,
          'add': 1,
          'little': 1,
          'spice': 1,
          'otherwise': 1,
          'rancid': 1,
          'lowbudget': 1,
          'teen': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'drews': 4,
          'nin': 3,
          'character': 3,
          'except': 3,
          'story': 3,
          'school': 3,
          'popular': 3,
          'film': 3,
          'hand': 3,
          'im': 2,
          'names': 2,
          'barrymore': 2,
          'characters': 2,
          '_the': 2,
          'shes': 2,
          'works': 2,
          'day': 2,
          'ndrew': 2,
          'big': 2,
          'really': 2,
          'nshe': 2,
          'going': 2,
          'first': 2,
          'nwhen': 2,
          'wrong': 2,
          'know': 2,
          'kids': 2,
          'least': 2,
          'nerdy': 2,
          'beautiful': 2,
          'supposed': 2,
          'nwhat': 2,
          'geeky': 2,
          'see': 2,
          'bad': 2,
          'funny': 2,
          'ncouldnt': 2,
          'would': 2,
          'nher': 2,
          'stamped': 2,
          'night': 2,
          'without': 2,
          'transferred': 2,
          'image': 2,
          'currently': 1,
          'accepting': 1,
          'future': 1,
          'drew': 1,
          'wedding': 1,
          'singer_': 1,
          'julia': 1,
          'gulia': 1,
          '_never': 1,
          'kissed_': 1,
          'josie': 1,
          'grossie': 1,
          'nfuture': 1,
          'db': 1,
          'include': 1,
          'janet': 1,
          'granite': 1,
          'janey': 1,
          'grainy': 1,
          'nc17': 1,
          'project': 1,
          'jojo': 1,
          'naw': 1,
          'forget': 1,
          'nill': 1,
          'stick': 1,
          'job': 1,
          'nthis': 1,
          'teen': 1,
          'movie': 1,
          'right': 1,
          'main': 1,
          'arent': 1,
          'teens': 1,
          'copy': 1,
          'editor': 1,
          'chicago': 1,
          'sun': 1,
          'times': 1,
          'gets': 1,
          'break': 1,
          'reporter': 1,
          'clear': 1,
          'onset': 1,
          'lacks': 1,
          'toughness': 1,
          'pushy': 1,
          'extravertedness': 1,
          'marks': 1,
          'best': 1,
          'reporters': 1,
          'covering': 1,
          'making': 1,
          'return': 1,
          'high': 1,
          'student': 1,
          'explain': 1,
          'whats': 1,
          'irony': 1,
          'dweeb': 1,
          'time': 1,
          'around': 1,
          'terrified': 1,
          'back': 1,
          'says': 1,
          'things': 1,
          'wears': 1,
          'clothes': 1,
          'projects': 1,
          'answer': 1,
          'class': 1,
          'movies': 1,
          'reject': 1,
          'nat': 1,
          'befriends': 1,
          'aldys': 1,
          'joan': 1,
          'arcs': 1,
          'leelee': 1,
          'sobieskiwatch': 1,
          'turns': 1,
          'oldself': 1,
          'nafter': 1,
          'start': 1,
          'films': 1,
          'headline': 1,
          'driven': 1,
          'nadir': 1,
          'roles': 1,
          'play': 1,
          'sluttish': 1,
          'surprise': 1,
          'hair': 1,
          'glasses': 1,
          'braces': 1,
          'nits': 1,
          'doesnt': 1,
          'work': 1,
          'newself': 1,
          'ncome': 1,
          'nnobody': 1,
          'dresses': 1,
          'go': 1,
          'gap_': 1,
          'take': 1,
          'suggestions': 1,
          'nhad': 1,
          'dressed': 1,
          'like': 1,
          'princess': 1,
          'leia': 1,
          'better': 1,
          'comedy': 1,
          'progress': 1,
          'younger': 1,
          'brother': 1,
          'played': 1,
          'zest': 1,
          'david': 1,
          'arquette': 1,
          'reenlists': 1,
          'jumpstart': 1,
          'baseball': 1,
          'career': 1,
          'nnow': 1,
          'world': 1,
          'somebody': 1,
          'way': 1,
          'kid': 1,
          'dialogue': 1,
          'well': 1,
          'embarrassment': 1,
          'coworkers': 1,
          'molly': 1,
          'shannon': 1,
          'john': 1,
          'c': 1,
          'reilly': 1,
          'gary': 1,
          'marshall': 1,
          'terminal': 1,
          'hyperdrive': 1,
          'teenage': 1,
          'peers': 1,
          'sobieski': 1,
          'inept': 1,
          'stupid': 1,
          'theres': 1,
          'little': 1,
          'bite': 1,
          'filmmakers': 1,
          'watch': 1,
          '_heathers_': 1,
          'nlastly': 1,
          'proud': 1,
          'say': 1,
          'caught': 1,
          'significant': 1,
          'gaffe': 1,
          'nif': 1,
          'youd': 1,
          'talking': 1,
          'walks': 1,
          'bar': 1,
          'associates': 1,
          'rastafarians': 1,
          'delicious': 1,
          'um': 1,
          'cake': 1,
          'goes': 1,
          'wild': 1,
          'sleeps': 1,
          'late': 1,
          'wakes': 1,
          'rushes': 1,
          'showering': 1,
          'noticing': 1,
          'head': 1,
          'lying': 1,
          'part': 1,
          'stamps': 1,
          'forehead': 1,
          'spelling': 1,
          'loser': 1,
          'nfunny': 1,
          'eh': 1,
          'n': 1,
          'backwords': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'girls': 4,
          'jennifer': 4,
          'n': 4,
          'dumb': 4,
          'week': 3,
          'boys': 3,
          'nnegative': 3,
          'shes': 3,
          'prinze': 3,
          'nbut': 3,
          'ryan': 3,
          'nthe': 3,
          'negative': 2,
          'reviews': 2,
          'three': 2,
          'adjectives': 2,
          'last': 2,
          'couple': 2,
          'years': 2,
          'really': 2,
          'entertainment': 2,
          'nis': 2,
          'nthis': 2,
          'final': 2,
          'destination': 2,
          'road': 2,
          'trip': 2,
          'time': 2,
          'new': 2,
          'times': 2,
          'got': 2,
          'get': 2,
          'actor': 2,
          'jr': 2,
          'two': 2,
          'seen': 2,
          'ni': 2,
          'found': 2,
          'named': 2,
          'forlani': 2,
          'friends': 2,
          'biggs': 2,
          'boring': 2,
          'anything': 2,
          'comes': 1,
          'average': 1,
          'teenage': 1,
          'romantic': 1,
          'comedy': 1,
          'expect': 1,
          'critics': 1,
          'left': 1,
          'right': 1,
          'npredictable': 1,
          'unoriginal': 1,
          'forgettable': 1,
          'likely': 1,
          'haunt': 1,
          'yous': 1,
          'drive': 1,
          'crazys': 1,
          'released': 1,
          'dozens': 1,
          'nwhat': 1,
          'look': 1,
          'kind': 1,
          'value': 1,
          'im': 1,
          'sitting': 1,
          'theater': 1,
          'nam': 1,
          'enjoying': 1,
          'comfortable': 1,
          'break': 1,
          'finals': 1,
          'given': 1,
          'films': 1,
          'like': 1,
          'high': 1,
          'marks': 1,
          'party': 1,
          'wasting': 1,
          'money': 1,
          'something': 1,
          'wont': 1,
          'remember': 1,
          'next': 1,
          'nso': 1,
          'opened': 1,
          'york': 1,
          'surprise': 1,
          'review': 1,
          'ndaily': 1,
          'news': 1,
          'nreelviews': 1,
          'nepinions': 1,
          'com': 1,
          'nothing': 1,
          'namerican': 1,
          'pie': 1,
          'didnt': 1,
          'hot': 1,
          'loved': 1,
          'guilty': 1,
          'pleasures': 1,
          'nsame': 1,
          'goes': 1,
          'formulaic': 1,
          'enjoyable': 1,
          'pygmalion': 1,
          'adaptation': 1,
          'unjustly': 1,
          'pounded': 1,
          'nsince': 1,
          'reunites': 1,
          'director': 1,
          'robert': 1,
          'iscove': 1,
          'freddie': 1,
          'predicted': 1,
          'j': 1,
          'vu': 1,
          'al': 1,
          'still': 1,
          'curious': 1,
          'asked': 1,
          'around': 1,
          'school': 1,
          'one': 1,
          'people': 1,
          'reactions': 1,
          'far': 1,
          'positive': 1,
          'made': 1,
          'mind': 1,
          'ill': 1,
          'catch': 1,
          'video': 1,
          'cable': 1,
          'soon': 1,
          'following': 1,
          'series': 1,
          'unexpected': 1,
          'events': 1,
          'couldnt': 1,
          'shaft': 1,
          'rated': 1,
          'r': 1,
          'watching': 1,
          'nwhoops': 1,
          'nboys': 1,
          'nerdy': 1,
          'smart': 1,
          'boy': 1,
          'popular': 1,
          'flirt': 1,
          'girl': 1,
          'claire': 1,
          'nbriefly': 1,
          'meeting': 1,
          'preteens': 1,
          'attending': 1,
          'college': 1,
          'bump': 1,
          'many': 1,
          'eventually': 1,
          'become': 1,
          'best': 1,
          'movies': 1,
          'male': 1,
          'female': 1,
          'without': 1,
          'nagging': 1,
          'feeling': 1,
          'attraction': 1,
          'nwith': 1,
          'advice': 1,
          'roommates': 1,
          'amanda': 1,
          'detmer': 1,
          'jason': 1,
          'attempt': 1,
          'discover': 1,
          'true': 1,
          'meaning': 1,
          'relationship': 1,
          'film': 1,
          'definitely': 1,
          'lives': 1,
          'dreaded': 1,
          'mindless': 1,
          'nowhere': 1,
          'could': 1,
          'hardly': 1,
          'sit': 1,
          '93': 1,
          'minute': 1,
          'running': 1,
          'several': 1,
          'reasons': 1,
          'dialogue': 1,
          'probably': 1,
          'worst': 1,
          'ever': 1,
          'mainly': 1,
          'whole': 1,
          'depends': 1,
          'script': 1,
          'ridiculous': 1,
          'words': 1,
          'characters': 1,
          'use': 1,
          'hollywood': 1,
          'thinks': 1,
          'kids': 1,
          'relate': 1,
          'nit': 1,
          'almost': 1,
          'offensive': 1,
          'nan': 1,
          'example': 1,
          'insightful': 1,
          'conversation': 1,
          'youre': 1,
          'ndumb': 1,
          'followed': 1,
          'mandy': 1,
          'mooreesque': 1,
          'tune': 1,
          'background': 1,
          'well': 1,
          'bad': 1,
          'wing': 1,
          'commander': 1,
          'guess': 1,
          'supporting': 1,
          'cast': 1,
          'also': 1,
          'painfully': 1,
          'useless': 1,
          'ndetmer': 1,
          'stand': 1,
          'way': 1,
          'interesting': 1,
          'happen': 1,
          'pointless': 1,
          'subplots': 1,
          'nand': 1,
          'although': 1,
          'supposed': 1,
          'perspectives': 1,
          'human': 1,
          'sex': 1,
          'jrs': 1,
          'dominates': 1,
          'screen': 1,
          'forlanis': 1,
          'simply': 1,
          'acts': 1,
          'dilemma': 1,
          'work': 1,
          'nwe': 1,
          'never': 1,
          'learn': 1,
          'shame': 1,
          'bring': 1,
          'life': 1,
          'character': 1,
          'nteenager': 1,
          'youll': 1,
          'hate': 1,
          'guarantee': 1,
          'nmaybe': 1,
          'rent': 1,
          'good': 1,
          'think': 1,
          'nneg': 1}),
 Counter({'rain': 8,
          'movie': 6,
          'nthe': 6,
          'hard': 5,
          'one': 5,
          'disaster': 4,
          'water': 4,
          'flood': 3,
          'films': 3,
          'film': 3,
          'lot': 3,
          'characters': 3,
          'initial': 2,
          'pictures': 2,
          'would': 2,
          'year': 2,
          'name': 2,
          'number': 2,
          'nits': 2,
          'nhard': 2,
          'progressively': 2,
          'best': 2,
          'credits': 2,
          'camera': 2,
          'get': 2,
          'shootouts': 2,
          'ntheres': 2,
          'real': 2,
          'conclusion': 2,
          'worth': 2,
          'idiotic': 2,
          'way': 2,
          'far': 2,
          'action': 2,
          'us': 2,
          'tom': 2,
          'slater': 2,
          'charlie': 2,
          'freeman': 2,
          'hides': 2,
          'nas': 2,
          'minnie': 2,
          'driver': 2,
          'quaid': 2,
          'good': 2,
          'production': 1,
          'early': 1,
          'days': 1,
          'aborted': 1,
          'prerelease': 1,
          'publicity': 1,
          'bore': 1,
          'appropriate': 1,
          'moniker': 1,
          'nultimately': 1,
          'however': 1,
          'paramount': 1,
          'nervous': 1,
          'confused': 1,
          '1996s': 1,
          'underperforming': 1,
          'dantes': 1,
          'peak': 1,
          'volcano': 1,
          'changed': 1,
          'title': 1,
          'shifted': 1,
          'release': 1,
          'date': 1,
          'nearly': 1,
          'nbut': 1,
          'paraphrase': 1,
          'bard': 1,
          'swill': 1,
          'smell': 1,
          'rank': 1,
          'nno': 1,
          'changes': 1,
          'help': 1,
          'picture': 1,
          'case': 1,
          'gets': 1,
          'worse': 1,
          'every': 1,
          'passing': 1,
          'minute': 1,
          'shot': 1,
          'occurs': 1,
          'opening': 1,
          'pans': 1,
          'streets': 1,
          'byways': 1,
          'huntingburg': 1,
          'indiana': 1,
          'level': 1,
          'slowly': 1,
          'rises': 1,
          'community': 1,
          'protected': 1,
          'overworked': 1,
          'dam': 1,
          'evacuated': 1,
          'continues': 1,
          'pour': 1,
          'relentlessly': 1,
          'cloudchoked': 1,
          'skies': 1,
          'nfrom': 1,
          'moment': 1,
          'downhill': 1,
          'nwhatever': 1,
          'entertainment': 1,
          'value': 1,
          'possesses': 1,
          'long': 1,
          'since': 1,
          'drained': 1,
          'away': 1,
          'halfway': 1,
          'point': 1,
          'nit': 1,
          'takes': 1,
          'forever': 1,
          'end': 1,
          'longestseeming': 1,
          '95minute': 1,
          'motion': 1,
          'recently': 1,
          'endured': 1,
          'nbasically': 1,
          'extended': 1,
          'dull': 1,
          'chase': 1,
          'sequence': 1,
          'punctuated': 1,
          'occasional': 1,
          'broken': 1,
          'glass': 1,
          'gunfire': 1,
          'explosions': 1,
          'routine': 1,
          'uninteresting': 1,
          'arent': 1,
          'plot': 1,
          'occasionally': 1,
          'makes': 1,
          'sense': 1,
          'preposterous': 1,
          'almost': 1,
          'watching': 1,
          'sheer': 1,
          'masochistic': 1,
          'enjoyment': 1,
          'seeing': 1,
          'monumentally': 1,
          'makers': 1,
          'decide': 1,
          'resolve': 1,
          'myriad': 1,
          'subplots': 1,
          'floating': 1,
          'around': 1,
          'naction': 1,
          'supposed': 1,
          'become': 1,
          'invigorating': 1,
          'rush': 1,
          'towards': 1,
          'ngraham': 1,
          'yost': 1,
          'writer': 1,
          'speed': 1,
          'surely': 1,
          'understands': 1,
          'principle': 1,
          'nunfortunately': 1,
          'neither': 1,
          'cinematographerturneddirector': 1,
          'mikael': 1,
          'salomon': 1,
          'place': 1,
          'applies': 1,
          'grows': 1,
          'tedious': 1,
          'repetition': 1,
          'nwe': 1,
          'see': 1,
          'kinds': 1,
          'things': 1,
          'speedboat': 1,
          'chases': 1,
          'damage': 1,
          'etc': 1,
          'constantly': 1,
          'recycles': 1,
          'twenty': 1,
          'minutes': 1,
          'material': 1,
          'pad': 1,
          'running': 1,
          'time': 1,
          'acceptable': 1,
          'length': 1,
          'storyline': 1,
          'gives': 1,
          'paperthin': 1,
          'contrived': 1,
          'circumstances': 1,
          'christian': 1,
          'dimensional': 1,
          'hero': 1,
          'works': 1,
          'security': 1,
          'guard': 1,
          'driving': 1,
          'armored': 1,
          'car': 1,
          'full': 1,
          'cash': 1,
          'nhe': 1,
          'partner': 1,
          'edward': 1,
          'asner': 1,
          'tvs': 1,
          'lou': 1,
          'grant': 1,
          'stuck': 1,
          'street': 1,
          'thats': 1,
          'rapidly': 1,
          'turning': 1,
          'river': 1,
          'na': 1,
          'group': 1,
          'men': 1,
          'led': 1,
          'jimmy': 1,
          'morgan': 1,
          'arrive': 1,
          'scene': 1,
          'rescuers': 1,
          'robbers': 1,
          'nafter': 1,
          'killed': 1,
          'shootout': 1,
          'money': 1,
          'runs': 1,
          'swims': 1,
          'boats': 1,
          'huntingburgs': 1,
          'roads': 1,
          'encounters': 1,
          'locals': 1,
          'karen': 1,
          'wouldbe': 1,
          'love': 1,
          'interest': 1,
          'bickering': 1,
          'old': 1,
          'couple': 1,
          'richard': 1,
          'dysart': 1,
          'betty': 1,
          'white': 1,
          'hand': 1,
          'provide': 1,
          'comic': 1,
          'relief': 1,
          'easilycorrupted': 1,
          'sheriff': 1,
          'randy': 1,
          'whose': 1,
          'seeming': 1,
          'helpfulness': 1,
          'sinister': 1,
          'ulterior': 1,
          'motives': 1,
          'nthere': 1,
          'isnt': 1,
          'acting': 1,
          'nchristian': 1,
          'utters': 1,
          'lame': 1,
          'oneliners': 1,
          'mugging': 1,
          'ntom': 1,
          'easily': 1,
          'lifeless': 1,
          'actor': 1,
          'brought': 1,
          'screen': 1,
          'nrandy': 1,
          'sneers': 1,
          'totally': 1,
          'unconvincing': 1,
          'nmorgan': 1,
          'attempt': 1,
          'give': 1,
          'legitimate': 1,
          'performances': 1,
          'defeated': 1,
          'script': 1,
          'nfreeman': 1,
          'cinematic': 1,
          'thespians': 1,
          'working': 1,
          'today': 1,
          'looks': 1,
          'suitably': 1,
          'embarrassed': 1,
          'suppose': 1,
          'everyone': 1,
          'needs': 1,
          'paycheck': 1,
          'timetotime': 1,
          'nfollowing': 1,
          'wake': 1,
          'twister': 1,
          'yet': 1,
          'another': 1,
          'natural': 1,
          'doesnt': 1,
          'trust': 1,
          'natures': 1,
          'fury': 1,
          'chief': 1,
          'engine': 1,
          'conflict': 1,
          'result': 1,
          'saddled': 1,
          'guysbad': 1,
          'guys': 1,
          'story': 1,
          'effectively': 1,
          'ruins': 1,
          'potential': 1,
          'tale': 1,
          'could': 1,
          'ntitanic': 1,
          'proved': 1,
          'wealth': 1,
          'drama': 1,
          'everything': 1,
          'goes': 1,
          'successfully': 1,
          'demonstrates': 1,
          'opposite': 1,
          'equally': 1,
          'possible': 1,
          'nthus': 1,
          'hollywood': 1,
          'already': 1,
          'subjected': 1,
          'unique': 1,
          'brand': 1,
          'moronic': 1,
          'mayhem': 1,
          'fire': 1,
          'firestorm': 1,
          'nfortunately': 1,
          'two': 1,
          'elements': 1,
          'left': 1,
          'nneg': 1}),
 Counter({'powell': 6,
          'ni': 5,
          'instinct': 4,
          'nthis': 4,
          'movies': 4,
          'one': 4,
          'caulder': 4,
          'good': 4,
          'kind': 3,
          'movie': 3,
          'bully': 3,
          'theo': 3,
          'would': 3,
          'ever': 3,
          'character': 3,
          'shrink': 3,
          'moviegoers': 2,
          'stands': 2,
          'present': 2,
          'something': 2,
          'like': 2,
          'actually': 2,
          'intelligence': 2,
          'plot': 2,
          'anthony': 2,
          'hopkins': 2,
          'nhe': 2,
          'violence': 2,
          'evaluation': 2,
          'psychiatrist': 2,
          'cuba': 2,
          'gooding': 2,
          'jr': 2,
          'starts': 2,
          'way': 2,
          'helping': 2,
          'screen': 2,
          'patient': 2,
          'say': 2,
          'subject': 2,
          'another': 2,
          'instincts': 2,
          'credibility': 2,
          'least': 2,
          'turteltaub': 2,
          'well': 2,
          'nit': 2,
          'inspire': 2,
          'di': 2,
          'pego': 2,
          'think': 2,
          'could': 2,
          'inexperienced': 1,
          'undoubtedly': 1,
          'label': 1,
          'powerful': 1,
          'touching': 1,
          'name': 1,
          'gross': 1,
          'sort': 1,
          'film': 1,
          'somebody': 1,
          'looks': 1,
          'rebel': 1,
          'threateningly': 1,
          'hurt': 1,
          'everyone': 1,
          'else': 1,
          'heretofore': 1,
          'controlled': 1,
          'nhow': 1,
          'scene': 1,
          'still': 1,
          'many': 1,
          'today': 1,
          'appalls': 1,
          'arent': 1,
          'day': 1,
          'beyond': 1,
          'inspired': 1,
          'example': 1,
          'alone': 1,
          'filmmakers': 1,
          'insulting': 1,
          'audiences': 1,
          'ninstincts': 1,
          'brimming': 1,
          'potential': 1,
          'worldrenowned': 1,
          'anthropologist': 1,
          'ethan': 1,
          'disappeared': 1,
          'two': 1,
          'years': 1,
          'whilst': 1,
          'research': 1,
          'jungles': 1,
          'africa': 1,
          'found': 1,
          'coming': 1,
          'back': 1,
          'united': 1,
          'states': 1,
          'convicted': 1,
          'killer': 1,
          'murdered': 1,
          'african': 1,
          'policemen': 1,
          'allegedly': 1,
          'trying': 1,
          'capture': 1,
          'nafter': 1,
          'committing': 1,
          'brutal': 1,
          'acts': 1,
          'airport': 1,
          'authorities': 1,
          'stick': 1,
          'prisons': 1,
          'psychotics': 1,
          'ward': 1,
          'nassigned': 1,
          'bright': 1,
          'told': 1,
          'young': 1,
          'ncaulder': 1,
          'merely': 1,
          'purpose': 1,
          'furthering': 1,
          'career': 1,
          'nof': 1,
          'course': 1,
          'mainstream': 1,
          'filmmaker': 1,
          'really': 1,
          'caring': 1,
          'becomes': 1,
          'fixed': 1,
          'prove': 1,
          'psychotic': 1,
          'prison': 1,
          'nand': 1,
          'theres': 1,
          'inevitable': 1,
          'heartless': 1,
          'meanie': 1,
          'form': 1,
          'donald': 1,
          'sutherland': 1,
          'plays': 1,
          'caulders': 1,
          'mentor': 1,
          'cares': 1,
          'everything': 1,
          'discourage': 1,
          'nlets': 1,
          'get': 1,
          'thing': 1,
          'straight': 1,
          'dr': 1,
          'blatantly': 1,
          'incompetent': 1,
          'seen': 1,
          'nany': 1,
          'listen': 1,
          'matter': 1,
          'learn': 1,
          'great': 1,
          'deal': 1,
          'nnot': 1,
          'old': 1,
          'nno': 1,
          'asks': 1,
          'purposefully': 1,
          'pointed': 1,
          'questions': 1,
          'dares': 1,
          'venture': 1,
          'says': 1,
          'need': 1,
          'talk': 1,
          'right': 1,
          'flaw': 1,
          'sense': 1,
          'detracts': 1,
          'already': 1,
          'dubious': 1,
          'unfortunately': 1,
          'also': 1,
          'problems': 1,
          'ndirector': 1,
          'jon': 1,
          'made': 1,
          'delightful': 1,
          'john': 1,
          'travolta': 1,
          'vehicle': 1,
          'phenomenon': 1,
          'surprisingly': 1,
          'abovepar': 1,
          'cool': 1,
          'runnings': 1,
          'decided': 1,
          'make': 1,
          'shamelessly': 1,
          'sentimental': 1,
          'contrary': 1,
          'promotion': 1,
          'believe': 1,
          'much': 1,
          'common': 1,
          'patch': 1,
          'adams': 1,
          'silence': 1,
          'lambs': 1,
          'nits': 1,
          'sentimentality': 1,
          'almost': 1,
          'bring': 1,
          'tears': 1,
          'eyes': 1,
          'dreams': 1,
          'may': 1,
          'come': 1,
          'aptly': 1,
          'demonstrated': 1,
          'brings': 1,
          'vomit': 1,
          'esophagus': 1,
          'excuse': 1,
          'graphic': 1,
          'depiction': 1,
          'aims': 1,
          'rather': 1,
          'touch': 1,
          'hearts': 1,
          'nas': 1,
          'yoda': 1,
          'ultimate': 1,
          'sign': 1,
          'futility': 1,
          'screenwriter': 1,
          'experienced': 1,
          'gerald': 1,
          'resort': 1,
          'literally': 1,
          'telling': 1,
          'audience': 1,
          'story': 1,
          'nindeed': 1,
          'somewhere': 1,
          'beginning': 1,
          'characters': 1,
          'reads': 1,
          'aloud': 1,
          'films': 1,
          'instance': 1,
          'mentioned': 1,
          'first': 1,
          'paragraph': 1,
          'review': 1,
          'horrid': 1,
          'insult': 1,
          'forced': 1,
          'wonder': 1,
          'whether': 1,
          'figure': 1,
          'simply': 1,
          'regular': 1,
          'conversation': 1,
          'greatest': 1,
          'actors': 1,
          'chews': 1,
          'scenery': 1,
          'brilliant': 1,
          'noscar': 1,
          'winner': 1,
          'hand': 1,
          'dreadful': 1,
          'nhis': 1,
          'performance': 1,
          'part': 1,
          'makes': 1,
          'seem': 1,
          'incapable': 1,
          'liked': 1,
          'guy': 1,
          'jerry': 1,
          'maguire': 1,
          'gets': 1,
          'fails': 1,
          'project': 1,
          'shred': 1,
          'real': 1,
          'feeling': 1,
          'love': 1,
          'animals': 1,
          'prominent': 1,
          'save': 1,
          'gorillaslive': 1,
          'harmony': 1,
          'nature': 1,
          'theme': 1,
          'certainly': 1,
          'sympathize': 1,
          'nhowever': 1,
          'execution': 1,
          'completely': 1,
          'unacceptable': 1,
          'ntone': 1,
          'chick': 1,
          'flick': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov': 1,
          'nneg': 1}),
 Counter({'isnt': 4,
          'nbut': 3,
          'much': 3,
          'hassidic': 3,
          'community': 3,
          'time': 2,
          'almost': 2,
          'peter': 2,
          'weirs': 2,
          'belongs': 2,
          'nthe': 2,
          'emily': 2,
          'eden': 2,
          'melanie': 2,
          'griffith': 2,
          'tough': 2,
          'one': 2,
          'easy': 2,
          'nthat': 2,
          'even': 2,
          'ariel': 2,
          'thal': 2,
          'film': 2,
          'viewers': 2,
          'pass': 2,
          'sydney': 1,
          'lumet': 1,
          'director': 1,
          'whose': 1,
          'work': 1,
          'happens': 1,
          'varied': 1,
          'quality': 1,
          'nhe': 1,
          'praised': 1,
          'important': 1,
          'films': 1,
          'previous': 1,
          'decades': 1,
          'like': 1,
          'twelve': 1,
          'angry': 1,
          'men': 1,
          'serpico': 1,
          'verdict': 1,
          'pearls': 1,
          'followed': 1,
          'stinkers': 1,
          'hamper': 1,
          'lumets': 1,
          'reputation': 1,
          'na': 1,
          'stranger': 1,
          'among': 1,
          'us': 1,
          '1992': 1,
          'ripoff': 1,
          'witness': 1,
          'latter': 1,
          'category': 1,
          'heroine': 1,
          'movie': 1,
          'lady': 1,
          'cop': 1,
          'sometimes': 1,
          'shows': 1,
          'enthusiasm': 1,
          'battling': 1,
          'bad': 1,
          'guys': 1,
          'streets': 1,
          'new': 1,
          'york': 1,
          'nduring': 1,
          'actions': 1,
          'partner': 1,
          'nick': 1,
          'jamey': 1,
          'sheridan': 1,
          'got': 1,
          'hurt': 1,
          'result': 1,
          'becomes': 1,
          'depressed': 1,
          'nin': 1,
          'order': 1,
          'help': 1,
          'recover': 1,
          'bosses': 1,
          'give': 1,
          'rather': 1,
          'task': 1,
          'locating': 1,
          'missing': 1,
          'jeweller': 1,
          'belonged': 1,
          'jew': 1,
          'nemily': 1,
          'starts': 1,
          'investigation': 1,
          'soon': 1,
          'realises': 1,
          'case': 1,
          'involves': 1,
          'murder': 1,
          'nconcluding': 1,
          'perpetrator': 1,
          'decides': 1,
          'go': 1,
          'undercover': 1,
          'modern': 1,
          'manners': 1,
          'colliding': 1,
          'traditionalist': 1,
          'ways': 1,
          'nthings': 1,
          'get': 1,
          'complicated': 1,
          'develops': 1,
          'feelings': 1,
          'young': 1,
          'cabalistic': 1,
          'scholar': 1,
          'eric': 1,
          'nusing': 1,
          'formula': 1,
          'greatest': 1,
          'flaw': 1,
          'neven': 1,
          'lame': 1,
          'unispiring': 1,
          'crime': 1,
          'mystery': 1,
          'subplot': 1,
          'works': 1,
          'certain': 1,
          'extent': 1,
          'worst': 1,
          'insult': 1,
          'audience': 1,
          'terrible': 1,
          'miscasting': 1,
          'author': 1,
          'review': 1,
          'never': 1,
          'liked': 1,
          'actress': 1,
          'least': 1,
          'tolerable': 1,
          'roles': 1,
          'nrole': 1,
          'unfortunately': 1,
          'nfirst': 1,
          'cant': 1,
          'nypd': 1,
          'street': 1,
          'fighter': 1,
          'attempt': 1,
          'orthodox': 1,
          'jewish': 1,
          'woman': 1,
          'better': 1,
          'nscreenplay': 1,
          'robert': 1,
          'j': 1,
          'avrech': 1,
          'makes': 1,
          'things': 1,
          'worse': 1,
          'formulaic': 1,
          'red': 1,
          'herring': 1,
          'subplots': 1,
          'scene': 1,
          'involving': 1,
          'two': 1,
          'italian': 1,
          'gangsters': 1,
          'painful': 1,
          'watch': 1,
          'hand': 1,
          'actors': 1,
          'convincing': 1,
          'lee': 1,
          'richardson': 1,
          'old': 1,
          'rabbi': 1,
          'charming': 1,
          'mia': 1,
          'sara': 1,
          'intended': 1,
          'bride': 1,
          'photography': 1,
          'andrzej': 1,
          'bartkowiak': 1,
          'effectively': 1,
          'creates': 1,
          'atmosphere': 1,
          'warmth': 1,
          'scenes': 1,
          'take': 1,
          'place': 1,
          'nalso': 1,
          'might': 1,
          'educate': 1,
          'culture': 1,
          'thing': 1,
          'prevents': 1,
          'turning': 1,
          'total': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'1900': 14,
          'ship': 7,
          'piano': 7,
          'nthe': 6,
          'record': 6,
          'movie': 5,
          'max': 5,
          'land': 4,
          'n1900': 4,
          'music': 4,
          'roth': 3,
          'taylor': 3,
          'vince': 3,
          'name': 3,
          'nhe': 3,
          'comes': 3,
          'make': 3,
          'one': 3,
          'plays': 3,
          'life': 3,
          'tim': 2,
          'pruitt': 2,
          'clarence': 2,
          'williams': 2,
          'iii': 2,
          'legend': 2,
          '1900s': 2,
          'years': 2,
          'nhis': 2,
          'starts': 2,
          'around': 2,
          'sits': 2,
          'playing': 2,
          'nwhen': 2,
          'like': 2,
          'without': 2,
          'regulations': 2,
          'ho': 2,
          'never': 2,
          'dry': 2,
          'nafter': 2,
          'theyre': 2,
          'dont': 2,
          'isnt': 2,
          'supposed': 2,
          'get': 2,
          'doesnt': 2,
          'made': 2,
          'duel': 2,
          'world': 1,
          'big': 1,
          'nstarring': 1,
          'bill': 1,
          'nunn': 1,
          'nrated': 1,
          'r': 1,
          'absurd': 1,
          'rambling': 1,
          'nonsensical': 1,
          'piece': 1,
          'seafaring': 1,
          'garbage': 1,
          'goes': 1,
          'nowhere': 1,
          'fast': 1,
          'nit': 1,
          'stars': 1,
          'thespian': 1,
          'extraordinaire': 1,
          'looking': 1,
          'wistful': 1,
          'ever': 1,
          'guy': 1,
          'named': 1,
          'nyou': 1,
          'heard': 1,
          'right': 1,
          'actuality': 1,
          'born': 1,
          'ocean': 1,
          'liner': 1,
          '111900': 1,
          'uh': 1,
          'hence': 1,
          'abandoned': 1,
          'adopted': 1,
          'danny': 1,
          'crewman': 1,
          'spends': 1,
          'early': 1,
          'hiding': 1,
          'bowels': 1,
          'dannys': 1,
          'fear': 1,
          'might': 1,
          'taken': 1,
          'away': 1,
          'visa': 1,
          'matters': 1,
          'nwell': 1,
          '9': 1,
          'wondering': 1,
          'none': 1,
          'day': 1,
          'discovers': 1,
          'grand': 1,
          'nmiraculously': 1,
          'beautiful': 1,
          'na': 1,
          'group': 1,
          'onlookers': 1,
          'gathers': 1,
          'watch': 1,
          'stunning': 1,
          'prodigy': 1,
          'amazing': 1,
          'young': 1,
          'age': 1,
          'people': 1,
          'knows': 1,
          'tells': 1,
          'permission': 1,
          'totally': 1,
          'replies': 1,
          'f': 1,
          'ck': 1,
          'nho': 1,
          'grows': 1,
          'setting': 1,
          'foot': 1,
          'hes': 1,
          '30ish': 1,
          'play': 1,
          'nobodys': 1,
          'business': 1,
          'onboard': 1,
          'another': 1,
          'musician': 1,
          'trumpet': 1,
          'catches': 1,
          'barfing': 1,
          'everywhere': 1,
          'storm': 1,
          'next': 1,
          'takes': 1,
          'pianos': 1,
          'braces': 1,
          'flies': 1,
          'hall': 1,
          'taking': 1,
          'nhow': 1,
          'chair': 1,
          'sitting': 1,
          'separate': 1,
          'know': 1,
          'apparently': 1,
          'kind': 1,
          'thing': 1,
          'ask': 1,
          'become': 1,
          'friends': 1,
          'nmax': 1,
          'determined': 1,
          'discover': 1,
          'missing': 1,
          'intention': 1,
          'nwhats': 1,
          'even': 1,
          'want': 1,
          'go': 1,
          'anywhere': 1,
          'company': 1,
          'hears': 1,
          'talents': 1,
          'come': 1,
          'board': 1,
          'finding': 1,
          'gasp': 1,
          'n': 1,
          'going': 1,
          'millions': 1,
          'copies': 1,
          'breaks': 1,
          'conflict': 1,
          'unsuccessful': 1,
          'endeavor': 1,
          'gets': 1,
          'stumbles': 1,
          'upon': 1,
          'store': 1,
          'shouldnt': 1,
          'exist': 1,
          'stepped': 1,
          'b': 1,
          'broken': 1,
          'nladies': 1,
          'gentlemen': 1,
          'mystery': 1,
          'story': 1,
          'ludicrous': 1,
          'uninteresting': 1,
          'elements': 1,
          'nwere': 1,
          'roused': 1,
          'climactic': 1,
          'npiano': 1,
          'nthere': 1,
          'anything': 1,
          'potential': 1,
          'compel': 1,
          'whiny': 1,
          'brooding': 1,
          'extremely': 1,
          'unlikable': 1,
          'man': 1,
          'cant': 1,
          'recall': 1,
          'single': 1,
          'word': 1,
          'said': 1,
          'sort': 1,
          'depressing': 1,
          'pseudo': 1,
          'meditation': 1,
          'nditto': 1,
          'seem': 1,
          'outside': 1,
          'friendship': 1,
          'ntim': 1,
          'much': 1,
          'panache': 1,
          'fig': 1,
          'leaf': 1,
          'theres': 1,
          'spirit': 1,
          'gusto': 1,
          'character': 1,
          'insists': 1,
          'leads': 1,
          'happy': 1,
          'us': 1,
          'dead': 1,
          'npruitt': 1,
          'little': 1,
          'palatable': 1,
          'least': 1,
          'providing': 1,
          'moment': 1,
          'comic': 1,
          'relief': 1,
          'liven': 1,
          'things': 1,
          'bit': 1,
          'highlight': 1,
          'would': 1,
          'eminently': 1,
          'amusing': 1,
          'arrogant': 1,
          'leering': 1,
          'king': 1,
          'jazz': 1,
          'challenges': 1,
          'aforementioned': 1,
          'giuseppe': 1,
          'tornatore': 1,
          'whose': 1,
          '1988': 1,
          'cinema': 1,
          'paradiso': 1,
          'considered': 1,
          'masterpiece': 1,
          'many': 1,
          'nthis': 1,
          'effort': 1,
          'utterly': 1,
          'limp': 1,
          'lifeless': 1,
          'nat': 1,
          'ridiculous': 1,
          'boring': 1,
          'narrowsighted': 1,
          'pointless': 1,
          'quickly': 1,
          'forgotten': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'giant': 6,
          'could': 4,
          'movies': 3,
          'one': 3,
          'n': 3,
          'thought': 3,
          'nothing': 3,
          'max': 3,
          'like': 3,
          'good': 3,
          'even': 2,
          'get': 2,
          'picture': 2,
          'without': 2,
          'david': 2,
          'throwing': 2,
          'dramatic': 2,
          'billy': 2,
          'crystal': 2,
          'shown': 2,
          'hes': 2,
          'nhe': 2,
          'years': 2,
          'day': 2,
          'reading': 2,
          'would': 2,
          'serious': 2,
          'single': 2,
          'muresan': 2,
          'nsammy': 2,
          'car': 2,
          'nafter': 2,
          'scenes': 2,
          'nmy': 2,
          'two': 1,
          'price': 1,
          'neither': 1,
          'worth': 1,
          'cost': 1,
          'admission': 1,
          'free': 1,
          'nas': 1,
          'lamely': 1,
          'directed': 1,
          'michael': 1,
          'lehmann': 1,
          'tries': 1,
          'comedy': 1,
          'using': 1,
          'reusing': 1,
          'every': 1,
          'joke': 1,
          'book': 1,
          'goliath': 1,
          'punk': 1,
          'rocks': 1,
          'nlanguidly': 1,
          'paced': 1,
          'throughout': 1,
          'becomes': 1,
          'increasingly': 1,
          'lugubrious': 1,
          'screenplay': 1,
          'seltzer': 1,
          'omen': 1,
          'meanders': 1,
          'toward': 1,
          'sad': 1,
          'ending': 1,
          'nsince': 1,
          'rarely': 1,
          'funny': 1,
          'convincingly': 1,
          'filmmakers': 1,
          'remains': 1,
          'mystery': 1,
          'nother': 1,
          'nice': 1,
          'visuals': 1,
          'theres': 1,
          'recommend': 1,
          'nwith': 1,
          'great': 1,
          'film': 1,
          'comedies': 1,
          'belt': 1,
          'harry': 1,
          'met': 1,
          'sally': 1,
          'original': 1,
          'city': 1,
          'slickers': 1,
          'worlds': 1,
          'best': 1,
          'oscar': 1,
          'host': 1,
          'however': 1,
          'propensity': 1,
          'choosing': 1,
          'hopeless': 1,
          'material': 1,
          'last': 1,
          'fathers': 1,
          'none': 1,
          'wonders': 1,
          'reads': 1,
          'script': 1,
          'agreeing': 1,
          'go': 1,
          'ahead': 1,
          'project': 1,
          'nsurely': 1,
          'nperhaps': 1,
          'ad': 1,
          'lib': 1,
          'success': 1,
          'maybe': 1,
          'wants': 1,
          'actor': 1,
          'something': 1,
          'somber': 1,
          'tone': 1,
          'nthe': 1,
          'charitable': 1,
          'thing': 1,
          'said': 1,
          'ineffectual': 1,
          'people': 1,
          'probably': 1,
          'forget': 1,
          'saw': 1,
          'next': 1,
          'nthis': 1,
          'onejoke': 1,
          'idea': 1,
          'place': 1,
          'reallife': 1,
          'basketball': 1,
          'player': 1,
          'gheorghe': 1,
          'stands': 1,
          'seven': 1,
          'half': 1,
          'feet': 1,
          'tall': 1,
          'many': 1,
          'visually': 1,
          'striking': 1,
          'situations': 1,
          'possible': 1,
          'agent': 1,
          'currently': 1,
          'clients': 1,
          'rescued': 1,
          'accident': 1,
          'sweet': 1,
          'romanian': 1,
          'named': 1,
          'constant': 1,
          'oneliners': 1,
          'either': 1,
          'god': 1,
          'salvage': 1,
          'business': 1,
          'big': 1,
          'foot': 1,
          'took': 1,
          'decides': 1,
          'seeing': 1,
          'meal': 1,
          'ticket': 1,
          'nand': 1,
          'although': 1,
          'doesnt': 1,
          'willing': 1,
          'sign': 1,
          'disgusting': 1,
          'events': 1,
          'wrestling': 1,
          'match': 1,
          'halfdozen': 1,
          'dwarfs': 1,
          'knows': 1,
          'bounds': 1,
          'contains': 1,
          'putrid': 1,
          'lengthy': 1,
          'vomiting': 1,
          'ever': 1,
          'series': 1,
          'missed': 1,
          'opportunities': 1,
          'comedic': 1,
          'part': 1,
          'turns': 1,
          'cheap': 1,
          'maudlin': 1,
          'disease': 1,
          'nwe': 1,
          'learn': 1,
          'maxs': 1,
          'condition': 1,
          'terminal': 1,
          'soon': 1,
          'die': 1,
          'nto': 1,
          'fair': 1,
          'contain': 1,
          'see': 1,
          'trailers': 1,
          'nlets': 1,
          'hope': 1,
          'gets': 1,
          'pair': 1,
          'glasses': 1,
          'signs': 1,
          'another': 1,
          'runs': 1,
          'long': 1,
          '1': 1,
          '37': 1,
          'nit': 1,
          'rated': 1,
          'pg': 1,
          'violence': 1,
          'profanity': 1,
          'acceptable': 1,
          'kids': 1,
          'around': 1,
          'ten': 1,
          'son': 1,
          'jeffrey': 1,
          'friend': 1,
          'matthew': 1,
          '9': 1,
          'gave': 1,
          'star': 1,
          'say': 1,
          'nmatthew': 1,
          'pointed': 1,
          'amen': 1,
          'went': 1,
          'comment': 1,
          'way': 1,
          'changed': 1,
          'completely': 1,
          'middle': 1,
          'njeffrey': 1,
          'complained': 1,
          'particularly': 1,
          'gross': 1,
          'nneg': 1}),
 Counter({'girls': 9,
          'spice': 8,
          'one': 8,
          'film': 6,
          'nthe': 5,
          'movie': 4,
          'even': 3,
          'hard': 2,
          'ends': 2,
          'watch': 2,
          'nwhen': 2,
          'characters': 2,
          'melanie': 2,
          'far': 2,
          'seems': 2,
          'like': 2,
          'ideas': 2,
          'various': 2,
          'though': 2,
          'pregnant': 2,
          'celebrity': 2,
          'hes': 2,
          'amusing': 2,
          'songs': 2,
          'stay': 2,
          'talk': 1,
          'seemed': 1,
          'dated': 1,
          'hit': 1,
          'theaters': 1,
          'nspice': 1,
          'world': 1,
          'feature': 1,
          'debut': 1,
          'prefabricated': 1,
          'pop': 1,
          'band': 1,
          'nits': 1,
          'intended': 1,
          'sort': 1,
          'days': 1,
          'night': 1,
          'simply': 1,
          'watching': 1,
          'im': 1,
          'reminded': 1,
          'old': 1,
          'saturday': 1,
          'morning': 1,
          'cartoon': 1,
          'trick': 1,
          'smurfs': 1,
          'snorks': 1,
          'teenage': 1,
          'mutant': 1,
          'ninja': 1,
          'turtles': 1,
          'identically': 1,
          'animated': 1,
          'creatures': 1,
          'differentiated': 1,
          'merely': 1,
          'personality': 1,
          'quirk': 1,
          'different': 1,
          'name': 1,
          'interchangable': 1,
          'pringles': 1,
          'talented': 1,
          'ntheres': 1,
          'ginger': 1,
          'geri': 1,
          'halliwell': 1,
          'brainy': 1,
          'sporty': 1,
          'chisholm': 1,
          'athletic': 1,
          'baby': 1,
          'emma': 1,
          'bunton': 1,
          'childish': 1,
          'posh': 1,
          'victoria': 1,
          'adams': 1,
          'fashionconscious': 1,
          'scary': 1,
          'brown': 1,
          'tongue': 1,
          'pierced': 1,
          'back': 1,
          'youre': 1,
          'almost': 1,
          'certain': 1,
          'post': 1,
          'sticks': 1,
          'throat': 1,
          'doesnt': 1,
          'really': 1,
          'plot': 1,
          'nit': 1,
          'follows': 1,
          'travel': 1,
          'culminating': 1,
          'first': 1,
          'live': 1,
          'performance': 1,
          'albert': 1,
          'hall': 1,
          'action': 1,
          'however': 1,
          'hodgepodge': 1,
          'mismatched': 1,
          'misfires': 1,
          'include': 1,
          'alien': 1,
          'encounter': 1,
          'fiendish': 1,
          'tabloid': 1,
          'editor': 1,
          'scheming': 1,
          'wreck': 1,
          'shooting': 1,
          'documentary': 1,
          'producer': 1,
          'george': 1,
          'wendt': 1,
          'trying': 1,
          'pitch': 1,
          'nearly': 1,
          'incredibly': 1,
          'fetched': 1,
          'seem': 1,
          'plausible': 1,
          'mess': 1,
          'ended': 1,
          'meeting': 1,
          'friend': 1,
          'whose': 1,
          'sole': 1,
          'purpose': 1,
          'maintain': 1,
          'maxim': 1,
          'must': 1,
          'give': 1,
          'birth': 1,
          'boating': 1,
          'adventure': 1,
          'bus': 1,
          'race': 1,
          'clubhopping': 1,
          'wherein': 1,
          'apparently': 1,
          'notices': 1,
          'famous': 1,
          'among': 1,
          'crowd': 1,
          'start': 1,
          'sing': 1,
          'assorted': 1,
          'number': 1,
          'musical': 1,
          'performances': 1,
          'press': 1,
          'conferences': 1,
          'general': 1,
          'allaround': 1,
          'stuff': 1,
          'nwhew': 1,
          'nfor': 1,
          'reason': 1,
          'littered': 1,
          'star': 1,
          'cameos': 1,
          'nfrom': 1,
          'elton': 1,
          'john': 1,
          'elvis': 1,
          'costello': 1,
          'bob': 1,
          'hoskins': 1,
          'meat': 1,
          'loaf': 1,
          'nheck': 1,
          'roger': 1,
          'moore': 1,
          'shows': 1,
          'cant': 1,
          'decide': 1,
          'parodying': 1,
          'james': 1,
          'bond': 1,
          'lobbying': 1,
          'reincarnation': 1,
          'ernst': 1,
          'stavro': 1,
          'blofeld': 1,
          'nrichard': 1,
          'e': 1,
          'grant': 1,
          'largest': 1,
          'secondary': 1,
          'part': 1,
          'thankless': 1,
          'role': 1,
          'bands': 1,
          'manager': 1,
          'clifford': 1,
          'spotting': 1,
          'partially': 1,
          'decent': 1,
          'way': 1,
          'pass': 1,
          'time': 1,
          'confronted': 1,
          'rest': 1,
          'nneither': 1,
          'spontaneous': 1,
          'deadly': 1,
          'boring': 1,
          'ntheir': 1,
          'alright': 1,
          'play': 1,
          'lifeless': 1,
          'adaptations': 1,
          'music': 1,
          'videos': 1,
          'nmy': 1,
          'advice': 1,
          'fans': 1,
          'home': 1,
          'video': 1,
          'collection': 1,
          'least': 1,
          'spin': 1,
          'cd': 1,
          'couple': 1,
          'times': 1,
          'either': 1,
          'noption': 1,
          'enjoyable': 1,
          'nnonfans': 1,
          'know': 1,
          'well': 1,
          'away': 1,
          'nneg': 1}),
 Counter({'story': 3,
          'falls': 3,
          'nsummer': 3,
          'catch': 3,
          'ryan': 3,
          'cape': 3,
          'baseball': 3,
          'nhe': 3,
          'one': 2,
          'rich': 2,
          'love': 2,
          'moment': 2,
          'nthe': 2,
          'merely': 2,
          'prinze': 2,
          'cod': 2,
          'league': 2,
          'always': 2,
          'could': 2,
          'movie': 2,
          'feature': 1,
          'like': 1,
          'double': 1,
          'header': 1,
          'two': 1,
          'sets': 1,
          'clich': 1,
          'price': 1,
          'nnot': 1,
          'get': 1,
          'usual': 1,
          'tired': 1,
          'sports': 1,
          'chestnuts': 1,
          'banal': 1,
          'girlpoor': 1,
          'boy': 1,
          'tossed': 1,
          'good': 1,
          'measure': 1,
          'nan': 1,
          'original': 1,
          'loser': 1,
          'rare': 1,
          'chicago': 1,
          'cubs': 1,
          'world': 1,
          'series': 1,
          'appearance': 1,
          'screenplay': 1,
          'kevin': 1,
          'john': 1,
          'gatins': 1,
          'based': 1,
          'lobs': 1,
          'plotline': 1,
          'audience': 1,
          'nthis': 1,
          'needed': 1,
          'sent': 1,
          'seasoning': 1,
          'coaching': 1,
          'centers': 1,
          'around': 1,
          'dunne': 1,
          'freddie': 1,
          'jr': 1,
          'youth': 1,
          'chosen': 1,
          'participate': 1,
          'prestigious': 1,
          'supposedly': 1,
          'showcase': 1,
          'best': 1,
          'young': 1,
          'amateur': 1,
          'college': 1,
          'players': 1,
          'country': 1,
          'nryan': 1,
          'bluecollar': 1,
          'kind': 1,
          'guy': 1,
          'works': 1,
          'dad': 1,
          'taking': 1,
          'care': 1,
          'lawns': 1,
          'cods': 1,
          'famous': 1,
          'also': 1,
          'informed': 1,
          'early': 1,
          'worst': 1,
          'enemy': 1,
          'potential': 1,
          'talent': 1,
          'seems': 1,
          'selfdestruct': 1,
          'crucial': 1,
          'nso': 1,
          'tries': 1,
          'remained': 1,
          'focused': 1,
          'nthen': 1,
          'meets': 1,
          'tenley': 1,
          'parrish': 1,
          'jessica': 1,
          'biel': 1,
          'daughter': 1,
          'blue': 1,
          'bloods': 1,
          'whose': 1,
          'lawn': 1,
          'manicures': 1,
          'ntenley': 1,
          'name': 1,
          'hack': 1,
          'screenwriter': 1,
          'invent': 1,
          'unlike': 1,
          'snobbish': 1,
          'counterparts': 1,
          'nif': 1,
          'cant': 1,
          'figure': 1,
          'nonsense': 1,
          'leads': 1,
          'need': 1,
          'remedial': 1,
          'course': 1,
          'film': 1,
          'viewing': 1,
          'nas': 1,
          'pretty': 1,
          'look': 1,
          'performance': 1,
          'mainly': 1,
          'consists': 1,
          'facial': 1,
          'expressions': 1,
          'puppy': 1,
          'dog': 1,
          'heartbreak': 1,
          'frustration': 1,
          'selfloathing': 1,
          'determination': 1,
          'nbiel': 1,
          'cries': 1,
          'lot': 1,
          'bruce': 1,
          'davison': 1,
          'acts': 1,
          'smarmy': 1,
          'classconscious': 1,
          'father': 1,
          'beacon': 1,
          'matthew': 1,
          'lillards': 1,
          'funloving': 1,
          'billy': 1,
          'brubaker': 1,
          'teams': 1,
          'catcher': 1,
          'borrows': 1,
          'situations': 1,
          'stylings': 1,
          'movies': 1,
          'bull': 1,
          'durham': 1,
          'natural': 1,
          'nno': 1,
          'curve': 1,
          'balls': 1,
          'sliders': 1,
          'nevery': 1,
          'pitch': 1,
          'predictable': 1,
          'na': 1,
          'blind': 1,
          'umpire': 1,
          'call': 1,
          'strictly': 1,
          'rookie': 1,
          'moviemaking': 1,
          'nit': 1,
          'much': 1,
          'chance': 1,
          'making': 1,
          'hall': 1,
          'fame': 1,
          'dodgers': 1,
          'moving': 1,
          'back': 1,
          'brooklyn': 1,
          'nneg': 1}),
 Counter({'movie': 13,
          'rock': 12,
          'like': 10,
          'kiss': 9,
          'detroit': 8,
          'city': 7,
          'nits': 7,
          'see': 7,
          'film': 6,
          'n': 6,
          'ni': 6,
          'got': 6,
          'get': 6,
          'tickets': 6,
          'really': 6,
          'na': 5,
          'nthe': 5,
          'nthey': 5,
          'one': 4,
          'probably': 4,
          'roll': 4,
          'time': 4,
          'trying': 4,
          'minutes': 4,
          'soundtrack': 4,
          'far': 4,
          'nfunny': 4,
          'might': 3,
          'ive': 3,
          'something': 3,
          'fun': 3,
          'funny': 3,
          'plot': 3,
          'nothing': 3,
          'band': 3,
          'bands': 3,
          'much': 3,
          'go': 3,
          'waste': 3,
          'music': 3,
          'script': 3,
          'setup': 3,
          'nlook': 3,
          'nsee': 3,
          'fans': 2,
          'teenage': 2,
          'thing': 2,
          'didnt': 2,
          'expected': 2,
          'clever': 2,
          'come': 2,
          'films': 2,
          'boys': 2,
          'nthats': 2,
          'nthere': 2,
          'big': 2,
          'little': 2,
          'furlong': 2,
          'jam': 2,
          'garage': 2,
          'means': 2,
          'lose': 2,
          'becomes': 2,
          'already': 2,
          'sheer': 2,
          'stupidity': 2,
          'name': 2,
          'doesnt': 2,
          'want': 2,
          'quite': 2,
          'pointless': 2,
          'acdc': 2,
          'ramones': 2,
          'reach': 2,
          'gets': 2,
          'nin': 2,
          'fact': 2,
          'keeps': 2,
          'cover': 2,
          'sounds': 2,
          'work': 2,
          'five': 2,
          'camera': 2,
          'felt': 2,
          'witch': 2,
          'dupr': 2,
          'jokes': 2,
          'actually': 2,
          'dont': 2,
          'said': 2,
          'money': 2,
          'rent': 2,
          'responses': 1,
          'enjoy': 1,
          'mostly': 1,
          'upon': 1,
          'first': 1,
          'glance': 1,
          'rating': 1,
          'given': 1,
          'oh': 1,
          'caseys': 1,
          'gone': 1,
          'become': 1,
          'jaded': 1,
          'critic': 1,
          'us': 1,
          'njust': 1,
          'expect': 1,
          'dumb': 1,
          'nim': 1,
          'wondering': 1,
          'feel': 1,
          'grand': 1,
          'sort': 1,
          'wish': 1,
          'couldve': 1,
          'lot': 1,
          'nsurely': 1,
          'isnt': 1,
          'win': 1,
          'major': 1,
          'awards': 1,
          'oscarcaliber': 1,
          'nno': 1,
          'joke': 1,
          'prank': 1,
          'development': 1,
          'nanything': 1,
          'never': 1,
          'delivers': 1,
          'nyouve': 1,
          'marvel': 1,
          'filmmakers': 1,
          'managed': 1,
          'truly': 1,
          'walk': 1,
          'credits': 1,
          'rolled': 1,
          'realize': 1,
          'spent': 1,
          '90': 1,
          'watching': 1,
          'absolutely': 1,
          'happened': 1,
          'justify': 1,
          'existence': 1,
          'satisfying': 1,
          'realization': 1,
          'four': 1,
          'huge': 1,
          'cleveland': 1,
          'concert': 1,
          'michigan': 1,
          'description': 1,
          'review': 1,
          'characters': 1,
          'hawk': 1,
          'edward': 1,
          'lex': 1,
          'giuseppe': 1,
          'andrews': 1,
          'trip': 1,
          'james': 1,
          'debello': 1,
          'sam': 1,
          'huntington': 1,
          'ntheyre': 1,
          'pathetic': 1,
          'guess': 1,
          'root': 1,
          'crazy': 1,
          'schemes': 1,
          'backfire': 1,
          'ntheres': 1,
          'nfrankly': 1,
          'less': 1,
          'exciting': 1,
          'try': 1,
          'halfway': 1,
          'total': 1,
          'eight': 1,
          'graced': 1,
          'hands': 1,
          'lost': 1,
          'noh': 1,
          'real': 1,
          'jeremiah': 1,
          'annoying': 1,
          'ultrareligious': 1,
          'mother': 1,
          'ought': 1,
          'reported': 1,
          'child': 1,
          'welfare': 1,
          'agency': 1,
          'nshe': 1,
          'hadnt': 1,
          'figured': 1,
          'disheartening': 1,
          'fine': 1,
          'nweve': 1,
          'plenty': 1,
          'along': 1,
          'thin': 1,
          'lizzy': 1,
          'nthen': 1,
          'maximum': 1,
          'overdrive': 1,
          'awesome': 1,
          'fan': 1,
          'worst': 1,
          'movies': 1,
          'level': 1,
          'ineptitude': 1,
          'dangerously': 1,
          'close': 1,
          'complete': 1,
          'failure': 1,
          'mind': 1,
          'nbasically': 1,
          'earned': 1,
          'full': 1,
          'halfstar': 1,
          'involved': 1,
          'pat': 1,
          'back': 1,
          'except': 1,
          'marilyn': 1,
          'manson': 1,
          'whose': 1,
          'halfhearted': 1,
          'acdcs': 1,
          'highway': 1,
          'hell': 1,
          'neighbors': 1,
          'cat': 1,
          'coughed': 1,
          'also': 1,
          'sad': 1,
          'talents': 1,
          'cast': 1,
          'evident': 1,
          'theyre': 1,
          'hard': 1,
          'squeeze': 1,
          'life': 1,
          'dead': 1,
          'turkey': 1,
          'nedward': 1,
          'done': 1,
          'better': 1,
          'natasha': 1,
          'lyonne': 1,
          'lin': 1,
          'shaye': 1,
          'hey': 1,
          'theyve': 1,
          'make': 1,
          'living': 1,
          'hollywood': 1,
          'npeople': 1,
          'wanting': 1,
          'lots': 1,
          'disappointed': 1,
          'considering': 1,
          'appears': 1,
          'plays': 1,
          'song': 1,
          'ntoo': 1,
          'bad': 1,
          'provided': 1,
          'energy': 1,
          'mess': 1,
          'ndirector': 1,
          'adam': 1,
          'rifkin': 1,
          'knows': 1,
          'hasnt': 1,
          'material': 1,
          'takes': 1,
          'chapter': 1,
          'michael': 1,
          'bay': 1,
          'book': 1,
          'directing': 1,
          'spinning': 1,
          'nwe': 1,
          'endless': 1,
          'parade': 1,
          'quickcuts': 1,
          'splitscreens': 1,
          'zoomouts': 1,
          'zoomins': 1,
          'rotating': 1,
          'cameras': 1,
          'effort': 1,
          'eventually': 1,
          'disorienting': 1,
          'would': 1,
          'recommend': 1,
          'seasick': 1,
          'blair': 1,
          'project': 1,
          'stay': 1,
          'away': 1,
          'baby': 1,
          'havent': 1,
          'urge': 1,
          'hold': 1,
          'still': 1,
          'since': 1,
          'armageddon': 1,
          'nand': 1,
          'written': 1,
          'carl': 1,
          'j': 1,
          'madeup': 1,
          'ever': 1,
          'heard': 1,
          'nif': 1,
          'cant': 1,
          'say': 1,
          'blame': 1,
          'writer': 1,
          'distancing': 1,
          'possible': 1,
          'plotless': 1,
          'gags': 1,
          'rarely': 1,
          'laughed': 1,
          'priest': 1,
          'stoned': 1,
          'marijuanalaced': 1,
          'pizza': 1,
          'surreal': 1,
          'rest': 1,
          'seems': 1,
          'threw': 1,
          'bunch': 1,
          'vulgar': 1,
          'stuff': 1,
          'screen': 1,
          'called': 1,
          'comedy': 1,
          'succession': 1,
          'punchlines': 1,
          'provide': 1,
          'way': 1,
          'chuckles': 1,
          'precisely': 1,
          'whacked': 1,
          'someone': 1,
          'head': 1,
          'pointed': 1,
          'woman': 1,
          'shocked': 1,
          'hearing': 1,
          'loud': 1,
          'spilled': 1,
          'drink': 1,
          'guy': 1,
          'clocked': 1,
          'telephone': 1,
          'receiver': 1,
          'ntwice': 1,
          'kid': 1,
          'vomiting': 1,
          '20': 1,
          'drinking': 1,
          'inordinate': 1,
          'amount': 1,
          'alcohol': 1,
          'perform': 1,
          'exotic': 1,
          'dance': 1,
          'word': 1,
          'advice': 1,
          'mr': 1,
          'things': 1,
          'arent': 1,
          'must': 1,
          'preceded': 1,
          'audience': 1,
          'predicted': 1,
          'advance': 1,
          'enough': 1,
          'liked': 1,
          'bother': 1,
          'buying': 1,
          'hear': 1,
          'modern': 1,
          'inferior': 1,
          'versions': 1,
          'songs': 1,
          'nyou': 1,
          'concept': 1,
          'executed': 1,
          'well': 1,
          'ngo': 1,
          'roger': 1,
          'cormans': 1,
          '1979': 1,
          'classic': 1,
          'high': 1,
          'school': 1,
          'nit': 1,
          'features': 1,
          'another': 1,
          'lateseventies': 1,
          'interesting': 1,
          'story': 1,
          'girl': 1,
          'show': 1,
          'nyes': 1,
          'skip': 1,
          'bomb': 1,
          'deservedly': 1,
          'nneg': 1}),
 Counter({'nthe': 5,
          'every': 4,
          'bad': 3,
          'supporting': 3,
          'big': 3,
          'brothers': 3,
          'two': 2,
          'walter': 2,
          'news': 2,
          'bears': 2,
          'still': 2,
          'strong': 2,
          'soccer': 2,
          'knows': 2,
          'best': 2,
          'character': 2,
          'better': 2,
          'music': 2,
          'comedy': 2,
          'score': 2,
          'work': 2,
          'scene': 2,
          'nan': 2,
          'adventure': 2,
          'director': 2,
          'four': 2,
          'story': 2,
          'peter': 2,
          'diverse': 2,
          'cast': 2,
          'alan': 2,
          'enough': 2,
          'one': 2,
          'mosleys': 2,
          'plots': 2,
          'nthey': 2,
          'opposing': 2,
          'really': 1,
          'decades': 1,
          'since': 1,
          'matthau': 1,
          'coached': 1,
          'nnineteen': 1,
          'years': 1,
          'mighty': 1,
          'ducks': 1,
          'later': 1,
          'formula': 1,
          'going': 1,
          'npolice': 1,
          'academy': 1,
          'graduate': 1,
          'steve': 1,
          'guttenberg': 1,
          'stars': 1,
          'smalltown': 1,
          'deputy': 1,
          'sheriff': 1,
          'corralled': 1,
          'cocoaching': 1,
          'schools': 1,
          'hastily': 1,
          'formed': 1,
          'team': 1,
          'nhis': 1,
          'partnerincrime': 1,
          'new': 1,
          'british': 1,
          'exchange': 1,
          'teacher': 1,
          'olivia': 1,
          'dabo': 1,
          'lively': 1,
          'lass': 1,
          'obviously': 1,
          'seen': 1,
          'dangerous': 1,
          'minds': 1,
          'way': 1,
          'gain': 1,
          'respect': 1,
          'disinterested': 1,
          'outercity': 1,
          'audience': 1,
          'teach': 1,
          'something': 1,
          'neat': 1,
          'nlike': 1,
          'nmost': 1,
          'goodnatured': 1,
          'gags': 1,
          'fastmotion': 1,
          'variety': 1,
          'runaway': 1,
          'cows': 1,
          'outofcontrol': 1,
          'lawnmowers': 1,
          'nkids': 1,
          'laugh': 1,
          'occasional': 1,
          'belching': 1,
          'bit': 1,
          'parents': 1,
          'peacefully': 1,
          'doze': 1,
          'beside': 1,
          'nother': 1,
          'letting': 1,
          'named': 1,
          'newt': 1,
          'go': 1,
          'unscathed': 1,
          'whats': 1,
          'missing': 1,
          'green': 1,
          'integration': 1,
          'ninstead': 1,
          'peppy': 1,
          'pop': 1,
          'would': 1,
          'arguably': 1,
          'effect': 1,
          'action': 1,
          'set': 1,
          'bombastic': 1,
          'orchestral': 1,
          'belongs': 1,
          'somewhere': 1,
          'else': 1,
          'ncomedy': 1,
          'needs': 1,
          'njust': 1,
          'watch': 1,
          'old': 1,
          'bugs': 1,
          'bunny': 1,
          'short': 1,
          'marx': 1,
          'knew': 1,
          'nmel': 1,
          'brooks': 1,
          'nunfortunately': 1,
          'current': 1,
          'trend': 1,
          'overscore': 1,
          'nlush': 1,
          'strings': 1,
          'booming': 1,
          'brass': 1,
          'moment': 1,
          'nremember': 1,
          'simple': 1,
          'strains': 1,
          'bizets': 1,
          'habanera': 1,
          'original': 1,
          'nthese': 1,
          'days': 1,
          'usually': 1,
          'bellowing': 1,
          'fanfare': 1,
          'threatens': 1,
          'smother': 1,
          'path': 1,
          'nmuch': 1,
          'like': 1,
          'adding': 1,
          'frosting': 1,
          'already': 1,
          'frosted': 1,
          'cake': 1,
          'awfully': 1,
          'reteaming': 1,
          'mike': 1,
          'newell': 1,
          'star': 1,
          'hugh': 1,
          'grant': 1,
          'far': 1,
          'removed': 1,
          'get': 1,
          'lightsome': 1,
          'weddings': 1,
          'funeral': 1,
          'ntheir': 1,
          'second': 1,
          'collaboration': 1,
          'downbeat': 1,
          'theatrical': 1,
          'drama': 1,
          'young': 1,
          'intern': 1,
          'georgina': 1,
          'cates': 1,
          'struggling': 1,
          'survive': 1,
          'postw': 1,
          'w': 1,
          'ii': 1,
          'nliverpool': 1,
          'nhugh': 1,
          'plays': 1,
          'gay': 1,
          'extremely': 1,
          'unappealing': 1,
          'may': 1,
          'alienate': 1,
          'whatever': 1,
          'fans': 1,
          'left': 1,
          'nonsense': 1,
          'nine': 1,
          'months': 1,
          'nbleak': 1,
          'makeup': 1,
          'thick': 1,
          'accents': 1,
          'conspire': 1,
          'make': 1,
          'difficult': 1,
          'settle': 1,
          'awful': 1,
          'without': 1,
          'rewards': 1,
          'tho': 1,
          'pan': 1,
          'subtext': 1,
          'intriguing': 1,
          'nas': 1,
          'ensemble': 1,
          'includes': 1,
          'firth': 1,
          'rickman': 1,
          'prunella': 1,
          'scales': 1,
          'nbasil': 1,
          'ndevil': 1,
          'blue': 1,
          'dress': 1,
          'comparisons': 1,
          'chinatown': 1,
          'easy': 1,
          'except': 1,
          'fact': 1,
          'film': 1,
          'isnt': 1,
          'nearly': 1,
          'gripping': 1,
          'nwriterdirector': 1,
          'carl': 1,
          'franklin': 1,
          'false': 1,
          'move': 1,
          'force': 1,
          'behind': 1,
          'accomplishedbutstiff': 1,
          'adaptation': 1,
          'crime': 1,
          'novel': 1,
          'ndenzel': 1,
          'washington': 1,
          'sturdy': 1,
          'ever': 1,
          'hes': 1,
          'burdened': 1,
          'miscast': 1,
          'ntom': 1,
          'sizemore': 1,
          'scenestealer': 1,
          'cheadle': 1,
          'fine': 1,
          'problems': 1,
          'start': 1,
          'jennifer': 1,
          'beales': 1,
          'never': 1,
          'registers': 1,
          'femme': 1,
          'fatale': 1,
          'nshes': 1,
          'pretty': 1,
          'face': 1,
          'nothing': 1,
          'nalso': 1,
          'underweight': 1,
          'maury': 1,
          'chaykin': 1,
          'terry': 1,
          'kinney': 1,
          'play': 1,
          'mayoral': 1,
          'candidates': 1,
          '1948': 1,
          'los': 1,
          'angeles': 1,
          'neither': 1,
          'actor': 1,
          'commands': 1,
          'authority': 1,
          'stifle': 1,
          'giggles': 1,
          'njohn': 1,
          'huston': 1,
          'miss': 1,
          'nfine': 1,
          'period': 1,
          'detail': 1,
          'sense': 1,
          'humor': 1,
          'plus': 1,
          'help': 1,
          'overcome': 1,
          'pace': 1,
          'thats': 1,
          'polite': 1,
          'jazzy': 1,
          'swingin': 1,
          'nsteal': 1,
          'steal': 1,
          'little': 1,
          'ni': 1,
          'cant': 1,
          'say': 1,
          'much': 1,
          'ndirector': 1,
          'andrew': 1,
          'davis': 1,
          'follows': 1,
          'fugitive': 1,
          'wildly': 1,
          'unfunny': 1,
          'farce': 1,
          'twin': 1,
          'andy': 1,
          'garcia': 1,
          'moral': 1,
          'codes': 1,
          'ntheyre': 1,
          'fighting': 1,
          'adoptive': 1,
          'mothers': 1,
          'estate': 1,
          '40': 1,
          '000acre': 1,
          'ranch': 1,
          'worth': 1,
          'millions': 1,
          'dozens': 1,
          'migrant': 1,
          'farm': 1,
          'workers': 1,
          'nso': 1,
          'many': 1,
          'different': 1,
          'trying': 1,
          'come': 1,
          'togetherfeuding': 1,
          'reconciling': 1,
          'husbands': 1,
          'loanshark': 1,
          'hired': 1,
          'hitmenthat': 1,
          'admire': 1,
          'directors': 1,
          'ambition': 1,
          'ntoo': 1,
          'almost': 1,
          'single': 1,
          'person': 1,
          'plotline': 1,
          'sync': 1,
          'nthat': 1,
          'exception': 1,
          'arkin': 1,
          'nhes': 1,
          'thing': 1,
          'movie': 1,
          'thatdespite': 1,
          'credited': 1,
          'writers': 1,
          'manages': 1,
          'waste': 1,
          'talents': 1,
          'david': 1,
          'odgen': 1,
          'stiers': 1,
          'kevin': 1,
          'mccarthy': 1,
          'joe': 1,
          'pantolinao': 1,
          'nand': 1,
          'heck': 1,
          'title': 1,
          'mean': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'nthe': 5,
          'one': 3,
          'like': 3,
          'lion': 3,
          'good': 2,
          'ways': 2,
          'nature': 2,
          'nwhat': 2,
          'get': 2,
          'end': 2,
          'build': 2,
          'nhe': 2,
          'lions': 2,
          'hasnt': 2,
          'else': 2,
          'ni': 2,
          'funny': 1,
          'expectations': 1,
          'defeated': 1,
          'ghost': 1,
          'darkness': 1,
          'promised': 1,
          'least': 1,
          'seemed': 1,
          'promise': 1,
          'hemingwayesque': 1,
          'showdown': 1,
          'men': 1,
          'delivered': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000level': 1,
          'material': 1,
          'inadvertently': 1,
          'hilarious': 1,
          'story': 1,
          'made': 1,
          'scream': 1,
          'advice': 1,
          'characters': 1,
          'n': 1,
          'new': 1,
          'jobs': 1,
          'nwas': 1,
          'line': 1,
          'remember': 1,
          'correctly': 1,
          'nat': 1,
          '19th': 1,
          'century': 1,
          'col': 1,
          'patterson': 1,
          'val': 1,
          'kilmer': 1,
          'whose': 1,
          'irish': 1,
          'accent': 1,
          'comes': 1,
          'goes': 1,
          'african': 1,
          'zephyr': 1,
          'engineer': 1,
          'hired': 1,
          'british': 1,
          'railway': 1,
          'bridge': 1,
          'across': 1,
          'tsavo': 1,
          'river': 1,
          'uganda': 1,
          'immensely': 1,
          'stereotypical': 1,
          'problems': 1,
          'natives': 1,
          'restless': 1,
          'boss': 1,
          'jerk': 1,
          'two': 1,
          'maneating': 1,
          'stalking': 1,
          'work': 1,
          'camp': 1,
          'killing': 1,
          'people': 1,
          'npatterson': 1,
          'tries': 1,
          'handle': 1,
          'situation': 1,
          'incompetently': 1,
          'turns': 1,
          'charles': 1,
          'remington': 1,
          'michael': 1,
          'douglas': 1,
          'hunter': 1,
          'world': 1,
          'reknown': 1,
          'something': 1,
          'stacks': 1,
          'deck': 1,
          'heavily': 1,
          'favor': 1,
          'gotten': 1,
          'top': 1,
          'billing': 1,
          'costarred': 1,
          'siegfried': 1,
          'roy': 1,
          'nthey': 1,
          'nighinvulnerable': 1,
          'comic': 1,
          'book': 1,
          'put': 1,
          'course': 1,
          'excuse': 1,
          'needs': 1,
          'native': 1,
          'another': 1,
          'stepping': 1,
          'forth': 1,
          'solmenly': 1,
          'recite': 1,
          'lines': 1,
          'power': 1,
          'ngive': 1,
          'break': 1,
          'got': 1,
          'wherewithal': 1,
          'even': 1,
          'begin': 1,
          'exploit': 1,
          'ideas': 1,
          'trying': 1,
          'find': 1,
          'convenient': 1,
          'stall': 1,
          'us': 1,
          'neven': 1,
          'hunts': 1,
          'idiotic': 1,
          'nget': 1,
          'remingtons': 1,
          'big': 1,
          'plan': 1,
          'large': 1,
          'scaffoldlike': 1,
          'structure': 1,
          'middle': 1,
          'savannah': 1,
          'sit': 1,
          'wait': 1,
          'show': 1,
          'gets': 1,
          'knocked': 1,
          'bird': 1,
          'nby': 1,
          'blood': 1,
          'vessels': 1,
          'palm': 1,
          'broken': 1,
          'open': 1,
          'pounding': 1,
          'forehead': 1,
          'hand': 1,
          'acting': 1,
          'forgettable': 1,
          'ndouglas': 1,
          'job': 1,
          'portraying': 1,
          'relatively': 1,
          'cracked': 1,
          'fellow': 1,
          'nothing': 1,
          'done': 1,
          'nkilmer': 1,
          'looks': 1,
          'wishes': 1,
          'someone': 1,
          'somewhere': 1,
          'rest': 1,
          'vanish': 1,
          'cinematography': 1,
          'camera': 1,
          'way': 1,
          'sometimes': 1,
          'behaves': 1,
          'stupidly': 1,
          'attacks': 1,
          'incoherent': 1,
          'expect': 1,
          'dunno': 1,
          'nsome': 1,
          'real': 1,
          'excitement': 1,
          'suppose': 1,
          'na': 1,
          'sense': 1,
          'formidable': 1,
          'forces': 1,
          'sides': 1,
          'equation': 1,
          'nno': 1,
          'luck': 1,
          'dug': 1,
          'tattered': 1,
          'copy': 1,
          'hemingways': 1,
          'short': 1,
          'happy': 1,
          'life': 1,
          'francis': 1,
          'macomber': 1,
          'read': 1,
          'taste': 1,
          'mind': 1,
          'nneg': 1}),
 Counter({'cop': 10,
          'film': 9,
          'tough': 7,
          'one': 6,
          'good': 4,
          'nbut': 4,
          'partner': 3,
          'case': 3,
          'saw': 3,
          'get': 2,
          'much': 2,
          'renegade': 2,
          'loser': 2,
          'nthe': 2,
          'guys': 2,
          'really': 2,
          'nothing': 2,
          'middle': 2,
          'guy': 2,
          'mafia': 2,
          'top': 2,
          'throw': 2,
          'back': 2,
          'michael': 2,
          'slips': 2,
          'impression': 2,
          'brother': 2,
          'also': 2,
          'even': 2,
          'better': 2,
          'nit': 2,
          'sidney': 2,
          'isnt': 2,
          'unfortunately': 1,
          'doesnt': 1,
          'formulaic': 1,
          'ntheres': 1,
          'many': 1,
          'problems': 1,
          'explain': 1,
          'prove': 1,
          'name': 1,
          'trapped': 1,
          'bad': 1,
          'woman': 1,
          'story': 1,
          'purpose': 1,
          'providing': 1,
          'sex': 1,
          'hero': 1,
          'nbo': 1,
          'dietl': 1,
          'pronounced': 1,
          'deedle': 1,
          'baldwin': 1,
          'investigated': 1,
          'hardass': 1,
          'fbi': 1,
          'agents': 1,
          'due': 1,
          'association': 1,
          'ny': 1,
          'non': 1,
          'problem': 1,
          'drunk': 1,
          'gambling': 1,
          'addicted': 1,
          'penn': 1,
          'penchant': 1,
          'collecting': 1,
          'parking': 1,
          'tickets': 1,
          'guess': 1,
          'cops': 1,
          'arent': 1,
          'immune': 1,
          'nthen': 1,
          'mix': 1,
          'femme': 1,
          'fatale': 1,
          'gershon': 1,
          'nright': 1,
          'plenty': 1,
          'ammo': 1,
          'decent': 1,
          'drama': 1,
          'right': 1,
          'completely': 1,
          'unrelated': 1,
          'plot': 1,
          'point': 1,
          'ndietl': 1,
          'duke': 1,
          'try': 1,
          'solve': 1,
          'warned': 1,
          'stay': 1,
          'away': 1,
          'spends': 1,
          'half': 1,
          'hour': 1,
          'tracking': 1,
          'nun': 1,
          'beaten': 1,
          'raped': 1,
          'near': 1,
          'death': 1,
          'nonce': 1,
          'solved': 1,
          'shifts': 1,
          'focus': 1,
          'issue': 1,
          'nwhatever': 1,
          'neat': 1,
          'mesh': 1,
          'screenwriter': 1,
          'wanted': 1,
          'create': 1,
          'two': 1,
          'stories': 1,
          'failed': 1,
          'miserably': 1,
          'naside': 1,
          'asked': 1,
          'accept': 1,
          'mcglone': 1,
          'mafioso': 1,
          'insult': 1,
          'ask': 1,
          'performances': 1,
          'pretty': 1,
          'nbaldwin': 1,
          'though': 1,
          'occasionally': 1,
          'alec': 1,
          'fine': 1,
          'job': 1,
          'npenn': 1,
          'sean': 1,
          'nwhat': 1,
          'lacks': 1,
          'originality': 1,
          'nthis': 1,
          'offers': 1,
          'new': 1,
          'nnothing': 1,
          'cant': 1,
          'screams': 1,
          'lumet': 1,
          'place': 1,
          'perhaps': 1,
          'produced': 1,
          'marty': 1,
          'bregman': 1,
          'producers': 1,
          'lumets': 1,
          'dog': 1,
          'day': 1,
          'afternoon': 1,
          'serpico': 1,
          'masterful': 1,
          'would': 1,
          'able': 1,
          'make': 1,
          'ntoo': 1,
          'else': 1,
          'lacking': 1,
          'ni': 1,
          'boom': 1,
          'mic': 1,
          'pop': 1,
          'frame': 1,
          'twice': 1,
          'early': 1,
          'picture': 1,
          'something': 1,
          'almost': 1,
          'never': 1,
          'notice': 1,
          'mind': 1,
          'every': 1,
          'time': 1,
          'medium': 1,
          'long': 1,
          'shot': 1,
          'nat': 1,
          'times': 1,
          'hoping': 1,
          'see': 1,
          'none': 1,
          'laughable': 1,
          'terrible': 1,
          'unique': 1,
          'classic': 1,
          'example': 1,
          'didnt': 1,
          'need': 1,
          'made': 1,
          'thing': 1,
          'sure': 1,
          'could': 1,
          'use': 1,
          'title': 1,
          'nneg': 1}),
 Counter({'lions': 4,
          'story': 3,
          'bridge': 3,
          'operation': 2,
          'nthe': 2,
          'see': 2,
          'kill': 2,
          'men': 2,
          'even': 2,
          'much': 2,
          'supposedly': 1,
          'based': 1,
          'true': 1,
          'british': 1,
          'drive': 1,
          'build': 1,
          'rail': 1,
          'deep': 1,
          'africa': 1,
          'grinds': 1,
          'halt': 1,
          'pair': 1,
          'start': 1,
          'killing': 1,
          'workers': 1,
          '1898': 1,
          'njohn': 1,
          'patterson': 1,
          'val': 1,
          'kilmer': 1,
          'building': 1,
          'expert': 1,
          'set': 1,
          'oversee': 1,
          'tried': 1,
          'rid': 1,
          'fails': 1,
          'na': 1,
          'world': 1,
          'renound': 1,
          'hunter': 1,
          'remington': 1,
          'michael': 1,
          'douglas': 1,
          'called': 1,
          'battle': 1,
          'man': 1,
          'lion': 1,
          'begins': 1,
          'nthis': 1,
          'film': 1,
          'great': 1,
          'soundtrack': 1,
          'wonderful': 1,
          'scenery': 1,
          'acting': 1,
          'bad': 1,
          'except': 1,
          'characters': 1,
          'thin': 1,
          'nwe': 1,
          'one': 1,
          'side': 1,
          'character': 1,
          'nkilmer': 1,
          'builder': 1,
          'thats': 1,
          'nthese': 1,
          'dozens': 1,
          'doesnt': 1,
          'appear': 1,
          'upset': 1,
          'nand': 1,
          'plot': 1,
          'nits': 1,
          'jaws': 1,
          'nagain': 1,
          'presented': 1,
          'animal': 1,
          'behaves': 1,
          'nit': 1,
          'appears': 1,
          'likes': 1,
          'nwhy': 1,
          'nwho': 1,
          'knows': 1,
          'ni': 1,
          'guess': 1,
          'wouldnt': 1,
          'didnt': 1,
          'problem': 1,
          'isnt': 1,
          'though': 1,
          'nneg': 1}),
 Counter({'gets': 3,
          'course': 2,
          'makes': 2,
          'original': 2,
          'give': 2,
          'perfect': 2,
          'character': 2,
          'wants': 2,
          'love': 2,
          'kevin': 2,
          'bacon': 2,
          'job': 2,
          'married': 2,
          'poor': 2,
          'end': 2,
          'like': 2,
          'stuff': 2,
          'knew': 1,
          'going': 1,
          'nwhy': 1,
          'whenever': 1,
          'tvstar': 1,
          'movie': 1,
          'always': 1,
          'romantic': 1,
          'comedy': 1,
          'say': 1,
          'entertainment': 1,
          'tonight': 1,
          'something': 1,
          'attracted': 1,
          'characters': 1,
          'nthey': 1,
          'really': 1,
          'noriginal': 1,
          'let': 1,
          'runthrough': 1,
          'picture': 1,
          'kate': 1,
          'jennifer': 1,
          'aniston': 1,
          'tvs': 1,
          'friends': 1,
          'smart': 1,
          'beautiful': 1,
          'professional': 1,
          'woman': 1,
          'two': 1,
          'things': 1,
          'cant': 1,
          'new': 1,
          'jobtitle': 1,
          'coworker': 1,
          'nher': 1,
          'boss': 1,
          'mortgage': 1,
          'lease': 1,
          'german': 1,
          'sportscar': 1,
          'pnly': 1,
          'sleeps': 1,
          'involved': 1,
          'girls': 1,
          'nwhat': 1,
          'nshe': 1,
          'invents': 1,
          'fiance': 1,
          'nthen': 1,
          'everyone': 1,
          'meet': 1,
          'tells': 1,
          'schmoe': 1,
          'met': 1,
          'wedding': 1,
          'pay': 1,
          '1000': 1,
          'pretend': 1,
          'company': 1,
          'dinner': 1,
          'pick': 1,
          'fight': 1,
          'thus': 1,
          'breaking': 1,
          'engagement': 1,
          'still': 1,
          'able': 1,
          'keep': 1,
          'since': 1,
          'guy': 1,
          'ends': 1,
          'looking': 1,
          'jerk': 1,
          'defenceless': 1,
          'female': 1,
          'nhe': 1,
          'goes': 1,
          'along': 1,
          'ngee': 1,
          'wonder': 1,
          'get': 1,
          'together': 1,
          'nive': 1,
          'seen': 1,
          'wb': 1,
          'nand': 1,
          'better': 1,
          'npicture': 1,
          'also': 1,
          'mistake': 1,
          '_wayyyyy_': 1,
          'long': 1,
          '100': 1,
          'minutes': 1,
          'expecting': 1,
          'us': 1,
          'anistons': 1,
          'comes': 1,
          'cold': 1,
          'spoiled': 1,
          'bitch': 1,
          'nneg': 1}),
 Counter({'trumpet': 8,
          'swan': 7,
          'louie': 5,
          'animated': 3,
          'become': 3,
          'n': 3,
          'love': 2,
          'serina': 2,
          'nlouie': 2,
          'louies': 2,
          'father': 2,
          'version': 2,
          'e': 2,
          'b': 2,
          'release': 2,
          'along': 2,
          'enough': 2,
          'trumpeter': 1,
          'voice': 1,
          'nin': 1,
          'order': 1,
          'woo': 1,
          'lady': 1,
          'makes': 1,
          'friends': 1,
          'young': 1,
          'boy': 1,
          'sammy': 1,
          'persuades': 1,
          'teacher': 1,
          'mrs': 1,
          'hammerbottom': 1,
          'carol': 1,
          'burnett': 1,
          'allow': 1,
          'attend': 1,
          'class': 1,
          'learns': 1,
          'read': 1,
          'write': 1,
          'returns': 1,
          'flock': 1,
          'laughed': 1,
          'swans': 1,
          'understand': 1,
          'message': 1,
          'nto': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'feels': 1,
          'hes': 1,
          'lost': 1,
          'honor': 1,
          'stole': 1,
          'son': 1,
          'nwhites': 1,
          'nas': 1,
          'jane': 1,
          'austen': 1,
          'henry': 1,
          'james': 1,
          'popular': 1,
          'sources': 1,
          'adult': 1,
          'filmmakers': 1,
          'past': 1,
          'decade': 1,
          'nwhite': 1,
          'returned': 1,
          'childrens': 1,
          'films': 1,
          'nthe': 1,
          'charlottes': 1,
          'web': 1,
          'minor': 1,
          'classic': 1,
          'since': 1,
          '1973': 1,
          '1999': 1,
          'brought': 1,
          'us': 1,
          'live': 1,
          'action': 1,
          'stuart': 1,
          'little': 1,
          'directed': 1,
          'richard': 1,
          'rich': 1,
          '1999s': 1,
          'king': 1,
          'princess': 1,
          'series': 1,
          'unlikely': 1,
          'remembered': 1,
          'two': 1,
          'receiving': 1,
          'regional': 1,
          'theatrical': 1,
          'sure': 1,
          'quickly': 1,
          'appear': 1,
          'home': 1,
          'video': 1,
          'nboston': 1,
          'one': 1,
          'targetted': 1,
          'cities': 1,
          'hero': 1,
          'becomes': 1,
          'famous': 1,
          'playing': 1,
          'beantown': 1,
          'nhe': 1,
          'encounters': 1,
          'gypsylike': 1,
          'con': 1,
          'man': 1,
          'public': 1,
          'gardens': 1,
          'pitches': 1,
          'added': 1,
          'attraction': 1,
          'bostons': 1,
          'boats': 1,
          'stays': 1,
          'ritz': 1,
          'carlton': 1,
          'giving': 1,
          'concert': 1,
          'hatch': 1,
          'shell': 1,
          'banks': 1,
          'charles': 1,
          'river': 1,
          'nat': 1,
          'point': 1,
          'earned': 1,
          'money': 1,
          'dad': 1,
          'pay': 1,
          'musically': 1,
          'capable': 1,
          'win': 1,
          'serinas': 1,
          'features': 1,
          'flat': 1,
          'background': 1,
          'art': 1,
          'poor': 1,
          'sound': 1,
          'syncing': 1,
          'insipid': 1,
          'sugary': 1,
          'songs': 1,
          'nthis': 1,
          'effort': 1,
          'would': 1,
          'better': 1,
          'suited': 1,
          'saturday': 1,
          'morning': 1,
          'television': 1,
          'big': 1,
          'screen': 1,
          'may': 1,
          'ok': 1,
          'real': 1,
          'small': 1,
          'set': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'fuentes': 6,
          'one': 5,
          'american': 4,
          'nthe': 4,
          'things': 4,
          'bad': 4,
          'mountains': 4,
          'best': 3,
          'go': 3,
          'army': 3,
          'ndr': 3,
          'students': 3,
          'sayles': 2,
          'nhe': 2,
          'us': 2,
          'look': 2,
          'men': 2,
          'guns': 2,
          'going': 2,
          'nthen': 2,
          'country': 2,
          'believe': 2,
          'civilians': 2,
          'nbut': 2,
          'played': 2,
          'luppi': 2,
          'city': 2,
          'humanitarian': 2,
          'little': 2,
          'better': 2,
          'nfuentes': 2,
          'student': 2,
          'others': 2,
          'good': 2,
          'happens': 2,
          'mostly': 2,
          'respected': 1,
          'names': 1,
          'independent': 1,
          'filmmaking': 1,
          'john': 1,
          'built': 1,
          'strong': 1,
          'reputation': 1,
          'films': 1,
          'like': 1,
          'matewan': 1,
          'secret': 1,
          'roan': 1,
          'inish': 1,
          'last': 1,
          'lone': 1,
          'star': 1,
          'nafter': 1,
          'gave': 1,
          'complex': 1,
          'unconventional': 1,
          'ethnic': 1,
          'tensions': 1,
          'usmexico': 1,
          'border': 1,
          'expectation': 1,
          'ran': 1,
          'high': 1,
          'next': 1,
          'nunfortunately': 1,
          'anyone': 1,
          'hoping': 1,
          'nwe': 1,
          'essentially': 1,
          'told': 1,
          'first': 1,
          'reel': 1,
          'exactly': 1,
          'promised': 1,
          'painful': 1,
          'plot': 1,
          'summarized': 1,
          'central': 1,
          'south': 1,
          'really': 1,
          'everybody': 1,
          'clashes': 1,
          'guerrillas': 1,
          'went': 1,
          'nand': 1,
          'found': 1,
          'nof': 1,
          'course': 1,
          'perfectly': 1,
          'true': 1,
          'many': 1,
          'places': 1,
          'region': 1,
          'armed': 1,
          'conflicts': 1,
          'turned': 1,
          'life': 1,
          'living': 1,
          'hell': 1,
          'na': 1,
          'guerrilla': 1,
          'war': 1,
          'always': 1,
          'talks': 1,
          'viewer': 1,
          'federico': 1,
          'teaches': 1,
          'medicine': 1,
          'capital': 1,
          'great': 1,
          'gesture': 1,
          'trained': 1,
          'inspired': 1,
          'make': 1,
          'world': 1,
          'poor': 1,
          'indios': 1,
          'service': 1,
          'discovers': 1,
          'instead': 1,
          'returned': 1,
          'runs': 1,
          'squalid': 1,
          'private': 1,
          'pharmacy': 1,
          'nin': 1,
          'shame': 1,
          'disappointment': 1,
          'asks': 1,
          'happened': 1,
          'tells': 1,
          'still': 1,
          'suggests': 1,
          'may': 1,
          'place': 1,
          'goes': 1,
          'find': 1,
          'visit': 1,
          'doctors': 1,
          'ignoring': 1,
          'advice': 1,
          'family': 1,
          'patient': 1,
          'general': 1,
          'results': 1,
          'different': 1,
          'would': 1,
          'expect': 1,
          'starts': 1,
          'incredibly': 1,
          'naive': 1,
          'neven': 1,
          'tourists': 1,
          'present': 1,
          'comic': 1,
          'relief': 1,
          'seem': 1,
          'know': 1,
          'dr': 1,
          'gotten': 1,
          'pretty': 1,
          'scene': 1,
          'barbarity': 1,
          'another': 1,
          'discover': 1,
          'wrong': 1,
          'nsayles': 1,
          'certainly': 1,
          'could': 1,
          'used': 1,
          '126': 1,
          'minute': 1,
          'screen': 1,
          'time': 1,
          'tell': 1,
          'something': 1,
          'profound': 1,
          'nasty': 1,
          'happening': 1,
          'worst': 1,
          'unarmed': 1,
          'cast': 1,
          'unknowns': 1,
          'audiences': 1,
          'nfederico': 1,
          'mexican': 1,
          'actor': 1,
          'antique': 1,
          'dealer': 1,
          'torn': 1,
          'mysterious': 1,
          'forces': 1,
          'cronos': 1,
          'ndamian': 1,
          'delgado': 1,
          'makes': 1,
          'late': 1,
          'appearance': 1,
          'deserter': 1,
          'nmandy': 1,
          'patinkin': 1,
          'small': 1,
          'role': 1,
          'made': 1,
          'bigger': 1,
          'trailer': 1,
          'nneg': 1}),
 Counter({'like': 8,
          'nbut': 7,
          'bobby': 7,
          'one': 6,
          'day': 6,
          'movie': 6,
          'uturn': 5,
          'get': 5,
          'back': 5,
          'say': 4,
          'ni': 4,
          'ive': 4,
          'nand': 4,
          'make': 4,
          'town': 4,
          'jake': 4,
          'film': 4,
          'fun': 4,
          'us': 4,
          'mad': 4,
          'known': 3,
          'looking': 3,
          'see': 3,
          'nice': 3,
          'bit': 3,
          'thing': 3,
          'dont': 3,
          'times': 3,
          'oliver': 3,
          'stone': 3,
          'films': 3,
          'story': 3,
          'penn': 3,
          'nbobby': 3,
          'grace': 3,
          'nwe': 3,
          'bad': 3,
          'know': 3,
          'nokay': 2,
          'nill': 2,
          'everybody': 2,
          'vacation': 2,
          'well': 2,
          'monday': 2,
          'give': 2,
          'old': 2,
          'man': 2,
          'ill': 2,
          'na': 2,
          'got': 2,
          'trip': 2,
          'point': 2,
          'take': 2,
          'nif': 2,
          'youve': 2,
          'silly': 2,
          'look': 2,
          'nyou': 2,
          'little': 2,
          'book': 2,
          'nthats': 2,
          'ollie': 2,
          'cast': 2,
          'meet': 2,
          'world': 2,
          'straight': 2,
          'nsean': 2,
          'minus': 2,
          'two': 2,
          'hose': 2,
          'superior': 2,
          'arizona': 2,
          'mechanic': 2,
          'darrell': 2,
          'exactly': 2,
          'jennifer': 2,
          'lopez': 2,
          'issues': 2,
          'njust': 2,
          'asks': 2,
          'kill': 2,
          'nthe': 2,
          'rock': 2,
          'years': 2,
          'gets': 2,
          'nick': 2,
          'maybe': 2,
          'ideas': 2,
          'expect': 2,
          'great': 2,
          'try': 2,
          'figure': 2,
          'going': 2,
          'pictures': 2,
          'unforgivable': 2,
          'ndo': 2,
          'way': 2,
          'wrong': 2,
          'traffic': 1,
          'violation': 1,
          'dr': 1,
          'daniels': 1,
          'review': 1,
          'ndr': 1,
          'ds': 1,
          'rating': 1,
          'critical': 1,
          'condition': 1,
          'heres': 1,
          'deal': 1,
          'first': 1,
          'grant': 1,
          'needs': 1,
          'even': 1,
          'go': 1,
          'far': 1,
          'necessary': 1,
          'part': 1,
          'job': 1,
          'mean': 1,
          'hey': 1,
          'stretch': 1,
          'weekend': 1,
          'threeday': 1,
          'outing': 1,
          'friday': 1,
          'looks': 1,
          'slow': 1,
          'aint': 1,
          'pickmeup': 1,
          'martha': 1,
          'nell': 1,
          'call': 1,
          'favor': 1,
          'sweetheart': 1,
          'nbump': 1,
          'fergusons': 1,
          'boil': 1,
          'lancing': 1,
          'tuesday': 1,
          'morning': 1,
          'tell': 1,
          'miss': 1,
          'audrey': 1,
          'swing': 1,
          'house': 1,
          'evening': 1,
          'cant': 1,
          'trick': 1,
          'knee': 1,
          'line': 1,
          'simple': 1,
          'sentence': 1,
          'fourday': 1,
          'fishing': 1,
          'boys': 1,
          'often': 1,
          'cherokee': 1,
          'n': 1,
          'c': 1,
          'jackpot': 1,
          'bingo': 1,
          'assorted': 1,
          'mountain': 1,
          'funnery': 1,
          'something': 1,
          'different': 1,
          'worked': 1,
          'months': 1,
          'relax': 1,
          'nsleep': 1,
          'neat': 1,
          'pancakes': 1,
          'noon': 1,
          'nmicrowave': 1,
          'egg': 1,
          'shell': 1,
          'nwatch': 1,
          'pro': 1,
          'wrestling': 1,
          'sound': 1,
          'nlisten': 1,
          'barry': 1,
          'white': 1,
          'records': 1,
          'high': 1,
          'speed': 1,
          'nwhatever': 1,
          'circumstances': 1,
          'spend': 1,
          'living': 1,
          'final': 1,
          'product': 1,
          'ten': 1,
          'worse': 1,
          'would': 1,
          'time': 1,
          'nbecause': 1,
          'want': 1,
          'hear': 1,
          'sob': 1,
          'stories': 1,
          'apparently': 1,
          'thought': 1,
          'needed': 1,
          'break': 1,
          'making': 1,
          'important': 1,
          'ncool': 1,
          'nso': 1,
          'found': 1,
          'hinky': 1,
          'decided': 1,
          'cool': 1,
          'sage': 1,
          'good': 1,
          'hot': 1,
          'pointless': 1,
          'worthless': 1,
          'decade': 1,
          'nim': 1,
          'eager': 1,
          'buy': 1,
          'stoli': 1,
          'eye': 1,
          'wide': 1,
          'sports': 1,
          'thinking': 1,
          'stand': 1,
          'staring': 1,
          'til': 1,
          'answer': 1,
          'stars': 1,
          'drifter': 1,
          'whos': 1,
          'troubles': 1,
          'nhes': 1,
          'heading': 1,
          'cross': 1,
          'desert': 1,
          'fingers': 1,
          'mustang': 1,
          'ragtop': 1,
          'blows': 1,
          'radiator': 1,
          'stranding': 1,
          'held': 1,
          'ignorant': 1,
          'inbred': 1,
          'turtleneck': 1,
          'hick': 1,
          'named': 1,
          'nwhile': 1,
          'puts': 1,
          'new': 1,
          'ride': 1,
          'walks': 1,
          'whats': 1,
          'cooking': 1,
          'nis': 1,
          'needless': 1,
          'shiny': 1,
          'scrubbed': 1,
          'home': 1,
          'things': 1,
          'lovely': 1,
          'nprobably': 1,
          'meets': 1,
          'invites': 1,
          'place': 1,
          'drapehanging': 1,
          'domestic': 1,
          'starting': 1,
          'graces': 1,
          'husband': 1,
          'storms': 1,
          'checkout': 1,
          'elks': 1,
          'lodge': 1,
          'convention': 1,
          'beats': 1,
          'takes': 1,
          'road': 1,
          'later': 1,
          'nthem': 1,
          'murderous': 1,
          'arizonians': 1,
          'ngotta': 1,
          'love': 1,
          'em': 1,
          'sounds': 1,
          'familiar': 1,
          'congratulations': 1,
          'win': 1,
          'kewpie': 1,
          'doll': 1,
          'shoplift': 1,
          'red': 1,
          'west': 1,
          'cult': 1,
          'favorite': 1,
          'john': 1,
          'dahl': 1,
          'maker': 1,
          'phenomenal': 1,
          'last': 1,
          'seduction': 1,
          'contest': 1,
          'doesnt': 1,
          'end': 1,
          'guys': 1,
          'gals': 1,
          'steals': 1,
          'russ': 1,
          'meyer': 1,
          'movies': 1,
          'horny': 1,
          'sweaty': 1,
          'black': 1,
          'train': 1,
          'plus': 1,
          'busty': 1,
          'women': 1,
          'speak': 1,
          'nlook': 1,
          'schwarzenegger': 1,
          'youll': 1,
          'hero': 1,
          'mudhole': 1,
          'stomped': 1,
          'keister': 1,
          'dozen': 1,
          'ribs': 1,
          'stove': 1,
          'least': 1,
          'fifteen': 1,
          'tarantula': 1,
          'shot': 1,
          'ends': 1,
          'vultures': 1,
          'circling': 1,
          'overhead': 1,
          'getting': 1,
          'shaving': 1,
          'terminator': 1,
          'nstretch': 1,
          'fivefinger': 1,
          'discount': 1,
          'doc': 1,
          'hollywood': 1,
          'whole': 1,
          'occurs': 1,
          'car': 1,
          'trouble': 1,
          'forcing': 1,
          'main': 1,
          'character': 1,
          'stay': 1,
          'mercy': 1,
          'hes': 1,
          'working': 1,
          'ollies': 1,
          'totally': 1,
          'blame': 1,
          'blatantly': 1,
          'copping': 1,
          'alternative': 1,
          'history': 1,
          'united': 1,
          'states': 1,
          'able': 1,
          'craft': 1,
          'original': 1,
          'exposing': 1,
          'negative': 1,
          'wish': 1,
          'hadnt': 1,
          'brought': 1,
          'together': 1,
          'amounts': 1,
          'group': 1,
          'toestub': 1,
          'gives': 1,
          'performance': 1,
          'nolte': 1,
          'target': 1,
          'playing': 1,
          'overthetop': 1,
          'caricatures': 1,
          'stereotype': 1,
          'characters': 1,
          'best': 1,
          'watching': 1,
          'react': 1,
          'madness': 1,
          'around': 1,
          'blanketyblank': 1,
          'ntoo': 1,
          'watch': 1,
          'happening': 1,
          'sit': 1,
          'mess': 1,
          'nuturn': 1,
          'youre': 1,
          'fan': 1,
          'technique': 1,
          'nits': 1,
          'always': 1,
          'nrobert': 1,
          'richardson': 1,
          'usual': 1,
          'cinematographer': 1,
          'rob': 1,
          'shoot': 1,
          'flick': 1,
          'camera': 1,
          'angles': 1,
          'shifting': 1,
          'viewpoints': 1,
          'wicked': 1,
          'colors': 1,
          'think': 1,
          'id': 1,
          'rather': 1,
          'stare': 1,
          'xeroxed': 1,
          'envelope': 1,
          'hours': 1,
          'tiltowhirl': 1,
          'loser': 1,
          'nplot': 1,
          'twists': 1,
          'repetition': 1,
          'almost': 1,
          'dang': 1,
          'near': 1,
          'seen': 1,
          'past': 1,
          'five': 1,
          'noliver': 1,
          'body': 1,
          'work': 1,
          'nothing': 1,
          'sniff': 1,
          'nyouve': 1,
          'enough': 1,
          'limit': 1,
          'doors': 1,
          'platoon': 1,
          'jfk': 1,
          'wall': 1,
          'street': 1,
          'nixon': 1,
          'plenty': 1,
          'dig': 1,
          'nyour': 1,
          'scripts': 1,
          'certainly': 1,
          'respectable': 1,
          'budgets': 1,
          'screen': 1,
          'actors': 1,
          'dog': 1,
          'kicking': 1,
          'fine': 1,
          'potential': 1,
          'police': 1,
          'academy': 1,
          'sequel': 1,
          'imagine': 1,
          'big': 1,
          'comedy': 1,
          'remake': 1,
          'drop': 1,
          'limp': 1,
          'pocket': 1,
          'accept': 1,
          'question': 1,
          'stinks': 1,
          'weekold': 1,
          'snook': 1,
          'ntheres': 1,
          'right': 1,
          'nthis': 1,
          'without': 1,
          'jail': 1,
          'nneg': 1}),
 Counter({'earth': 5,
          'film': 4,
          'nthe': 4,
          'humans': 4,
          'every': 4,
          'battlefield': 3,
          'na': 3,
          'bad': 3,
          'even': 3,
          'psychlos': 3,
          'terel': 3,
          'jonnie': 3,
          'scene': 3,
          'movie': 3,
          'one': 2,
          'never': 2,
          'starring': 2,
          'travolta': 2,
          'actors': 2,
          'beast': 2,
          'script': 2,
          'director': 2,
          'difficult': 2,
          'like': 2,
          'group': 2,
          'dwell': 2,
          'caves': 2,
          'located': 2,
          'rockies': 2,
          'demons': 2,
          'played': 2,
          'base': 2,
          'goodboy': 2,
          'tyler': 2,
          'middle': 2,
          'end': 2,
          'njonnie': 2,
          'machine': 2,
          'use': 2,
          'nthen': 2,
          'planet': 2,
          'nand': 2,
          'right': 2,
          'fight': 2,
          'two': 1,
          'things': 1,
          'american': 1,
          'industry': 1,
          'avoid': 1,
          'costs': 1,
          'none': 1,
          'letting': 1,
          'ambitious': 1,
          'actor': 1,
          'convert': 1,
          'favorite': 1,
          'novels': 1,
          'feature': 1,
          'ntwo': 1,
          'greenlight': 1,
          'scifi': 1,
          'john': 1,
          'nto': 1,
          'wit': 1,
          'present': 1,
          'disaster': 1,
          'sciencefiction': 1,
          'opus': 1,
          'barbarino': 1,
          'guild': 1,
          'shown': 1,
          'maximumsecurity': 1,
          'prisons': 1,
          'prisoner': 1,
          'tossed': 1,
          'solitary': 1,
          'behavior': 1,
          'nscifi': 1,
          'always': 1,
          'tricky': 1,
          'tight': 1,
          'good': 1,
          'ensemble': 1,
          'cast': 1,
          'decent': 1,
          'ability': 1,
          'suspend': 1,
          'disbeliefs': 1,
          'nbattlefield': 1,
          'fails': 1,
          'achieving': 1,
          'attributes': 1,
          'nheres': 1,
          'plot': 1,
          'year': 1,
          '3000': 1,
          'nmankind': 1,
          'become': 1,
          'endangered': 1,
          'species': 1,
          'thanks': 1,
          'conquest': 1,
          'race': 1,
          'aliens': 1,
          'called': 1,
          'sounds': 1,
          'either': 1,
          'latest': 1,
          'clown': 1,
          'act': 1,
          'cirque': 1,
          'de': 1,
          'soleil': 1,
          'white': 1,
          'rap': 1,
          'small': 1,
          'band': 1,
          'radioactive': 1,
          'fear': 1,
          'cities': 1,
          'stripmining': 1,
          'resources': 1,
          'head': 1,
          'security': 1,
          'miningslave': 1,
          'denver': 1,
          'young': 1,
          'rogue': 1,
          'named': 1,
          'dramatic': 1,
          'flair': 1,
          'barry': 1,
          'pepper': 1,
          'ventures': 1,
          'safety': 1,
          'city': 1,
          'uncover': 1,
          'truth': 1,
          'nhe': 1,
          'promptly': 1,
          'captured': 1,
          'taken': 1,
          'alien': 1,
          'nafter': 1,
          'several': 1,
          'attempts': 1,
          'escape': 1,
          'johnnie': 1,
          'placed': 1,
          'underhanded': 1,
          'subplot': 1,
          'terels': 1,
          'involving': 1,
          'circumventing': 1,
          'gold': 1,
          'exposed': 1,
          'vein': 1,
          'assumed': 1,
          'leader': 1,
          'mining': 1,
          'slave': 1,
          'manages': 1,
          'attain': 1,
          'psychlo': 1,
          'human': 1,
          'intelligence': 1,
          'learning': 1,
          'forces': 1,
          'story': 1,
          'runs': 1,
          'along': 1,
          'teaches': 1,
          'rest': 1,
          'basics': 1,
          'trigonometry': 1,
          'bill': 1,
          'rights': 1,
          'gun': 1,
          'fly': 1,
          'harrier': 1,
          'jet': 1,
          'whole': 1,
          'mess': 1,
          'concludes': 1,
          'big': 1,
          'loud': 1,
          'obnoxious': 1,
          'gunandplane': 1,
          'battle': 1,
          'praying': 1,
          'credits': 1,
          'nroger': 1,
          'christian': 1,
          'lumbering': 1,
          'must': 1,
          'rented': 1,
          'dune': 1,
          'blade': 1,
          'runner': 1,
          'apes': 1,
          'independence': 1,
          'day': 1,
          'stargate': 1,
          'beastmaster': 1,
          'airwolf': 1,
          'episodes': 1,
          'v': 1,
          'miniseries': 1,
          'matrix': 1,
          'omega': 1,
          'man': 1,
          'decided': 1,
          'steal': 1,
          'could': 1,
          'nchristian': 1,
          'shoots': 1,
          'weird': 1,
          'dutch': 1,
          'angle': 1,
          'titled': 1,
          'left': 1,
          'frame': 1,
          'ends': 1,
          'wipe': 1,
          'really': 1,
          'reminded': 1,
          'cross': 1,
          'jamaican': 1,
          'basketball': 1,
          'players': 1,
          'teeth': 1,
          'bloated': 1,
          'hands': 1,
          'klingon': 1,
          'extras': 1,
          'working': 1,
          'star': 1,
          'trek': 1,
          'convention': 1,
          'circuit': 1,
          'ntravoltas': 1,
          'acting': 1,
          'hasnt': 1,
          'since': 1,
          'experts': 1,
          'maybe': 1,
          'perfect': 1,
          'evolves': 1,
          'william': 1,
          'wallace': 1,
          'lines': 1,
          'freedom': 1,
          'theres': 1,
          'convinces': 1,
          'plight': 1,
          'teaching': 1,
          'fellow': 1,
          'take': 1,
          'back': 1,
          'would': 1,
          'task': 1,
          'achieve': 1,
          'nwhy': 1,
          'nbecause': 1,
          'provides': 1,
          'necessary': 1,
          'tools': 1,
          'incite': 1,
          'revolt': 1,
          'particular': 1,
          'reason': 1,
          'beside': 1,
          'fact': 1,
          'stupid': 1,
          'nterel': 1,
          'may': 1,
          'know': 1,
          'nhumans': 1,
          'made': 1,
          'nneg': 1}),
 Counter({'time': 7,
          'film': 6,
          'roberts': 5,
          'julia': 4,
          'sweethearts': 4,
          'nthe': 4,
          'eddie': 4,
          'billy': 4,
          'crystal': 4,
          'movies': 4,
          'would': 3,
          'reality': 3,
          'plot': 3,
          'gwen': 3,
          'press': 3,
          'director': 3,
          'movie': 3,
          'nand': 3,
          'sister': 2,
          'zetajones': 2,
          'fall': 2,
          'namericas': 2,
          'presumably': 2,
          'poor': 2,
          'every': 2,
          'new': 2,
          'star': 2,
          'called': 2,
          'stupid': 2,
          'studio': 2,
          'check': 2,
          'kiki': 2,
          'along': 2,
          'might': 2,
          'hollywood': 2,
          'funny': 2,
          'want': 2,
          'jokes': 2,
          'comes': 2,
          'bunch': 2,
          'ni': 2,
          'roth': 2,
          'azaria': 2,
          'walken': 2,
          'hes': 2,
          'back': 2,
          '11': 2,
          'believe': 1,
          'real': 1,
          'life': 1,
          'mean': 1,
          'youd': 1,
          'ugly': 1,
          'underdog': 1,
          'creepy': 1,
          'catherine': 1,
          'nlet': 1,
          'tell': 1,
          'nreality': 1,
          'megastar': 1,
          'fricking': 1,
          'brother': 1,
          'eric': 1,
          'picks': 1,
          'whatever': 1,
          'crumbs': 1,
          'stardom': 1,
          'coattails': 1,
          'blaze': 1,
          'across': 1,
          'sky': 1,
          'golden': 1,
          'chariot': 1,
          'nthats': 1,
          'opposite': 1,
          'train': 1,
          'wreck': 1,
          'tries': 1,
          'sell': 1,
          'scruffy': 1,
          'alsoran': 1,
          'wears': 1,
          'hornrimmed': 1,
          'glasses': 1,
          'used': 1,
          'overweight': 1,
          'uhhuh': 1,
          'follows': 1,
          'two': 1,
          'married': 1,
          'megamovie': 1,
          'stars': 1,
          'john': 1,
          'cusack': 1,
          'whose': 1,
          'material': 1,
          'gets': 1,
          'worse': 1,
          'year': 1,
          'eve': 1,
          'vehicles': 1,
          'release': 1,
          'problem': 1,
          'gone': 1,
          'nasty': 1,
          'separation': 1,
          'public': 1,
          'forgiving': 1,
          'think': 1,
          'meg': 1,
          'dennis': 1,
          'ngosh': 1,
          'vanished': 1,
          'holding': 1,
          'print': 1,
          'hostage': 1,
          'nveteran': 1,
          'pr': 1,
          'agent': 1,
          'lee': 1,
          'upon': 1,
          'clean': 1,
          'mess': 1,
          'throwing': 1,
          'junket': 1,
          'nevada': 1,
          'desert': 1,
          'woo': 1,
          'story': 1,
          'possible': 1,
          'reconciliation': 1,
          'distracting': 1,
          'critics': 1,
          'forgetting': 1,
          'havent': 1,
          'seen': 1,
          'n': 1,
          'note': 1,
          'sony': 1,
          'executive': 1,
          'thinks': 1,
          'going': 1,
          'win': 1,
          'points': 1,
          'reviewing': 1,
          'needs': 1,
          'rehab': 1,
          'mention': 1,
          'gwens': 1,
          'ride': 1,
          'love': 1,
          'way': 1,
          'noh': 1,
          'youre': 1,
          'scamp': 1,
          'script': 1,
          'youve': 1,
          'cowritten': 1,
          'peter': 1,
          'tolan': 1,
          'planet': 1,
          'bedazzled': 1,
          'need': 1,
          'say': 1,
          'roast': 1,
          'celebrity': 1,
          'sure': 1,
          'one': 1,
          'nyes': 1,
          'tells': 1,
          'us': 1,
          'lying': 1,
          'faces': 1,
          'nif': 1,
          'surprised': 1,
          'subscription': 1,
          'people': 1,
          'magazine': 1,
          'nits': 1,
          'expire': 1,
          'naside': 1,
          'scant': 1,
          'zingers': 1,
          'yeah': 1,
          'se': 1,
          'winces': 1,
          'rules': 1,
          'arent': 1,
          'pace': 1,
          'choppy': 1,
          'whole': 1,
          'affair': 1,
          'vanity': 1,
          'project': 1,
          'headlining': 1,
          'deliver': 1,
          'lame': 1,
          'punch': 1,
          'lines': 1,
          'wrote': 1,
          'didnt': 1,
          'bad': 1,
          'really': 1,
          'screen': 1,
          'unequivocal': 1,
          'focus': 1,
          'nbad': 1,
          'move': 1,
          'suck': 1,
          'crotch': 1,
          'humor': 1,
          'outpaced': 1,
          'meanness': 1,
          'gags': 1,
          'unsubtle': 1,
          'sexual': 1,
          'innuendo': 1,
          'dripping': 1,
          'scene': 1,
          'earned': 1,
          'pg13': 1,
          'rating': 1,
          'mystery': 1,
          'njulia': 1,
          'overcame': 1,
          'lot': 1,
          'spiteful': 1,
          'writing': 1,
          'acting': 1,
          'make': 1,
          'best': 1,
          'friends': 1,
          'wedding': 1,
          'winning': 1,
          'even': 1,
          '90tooth': 1,
          'smile': 1,
          'save': 1,
          'nobviously': 1,
          'aware': 1,
          'ugliness': 1,
          'joe': 1,
          'turns': 1,
          'goofy': 1,
          'supporting': 1,
          'characters': 1,
          'like': 1,
          'hank': 1,
          'lisping': 1,
          'spaniard': 1,
          'christopher': 1,
          'insane': 1,
          'alan': 1,
          'arkin': 1,
          'age': 1,
          'guru': 1,
          'fright': 1,
          'wig': 1,
          'crack': 1,
          'wise': 1,
          'nnone': 1,
          'stereotypes': 1,
          'successful': 1,
          'except': 1,
          'preening': 1,
          'queen': 1,
          'supposed': 1,
          'macho': 1,
          'nas': 1,
          'case': 1,
          'dont': 1,
          'know': 1,
          'went': 1,
          'direcing': 1,
          'revenge': 1,
          'nerds': 1,
          'ii': 1,
          'launching': 1,
          'revolution': 1,
          'produced': 1,
          'work': 1,
          'nhes': 1,
          'behind': 1,
          'camera': 1,
          'first': 1,
          'years': 1,
          'nitll': 1,
          'probably': 1,
          'another': 1,
          'could': 1,
          'drone': 1,
          'americas': 1,
          'appeal': 1,
          'mouthbreathing': 1,
          'morons': 1,
          'talk': 1,
          'cell': 1,
          'phones': 1,
          'get': 1,
          'old': 1,
          'ninstead': 1,
          'ill': 1,
          'settle': 1,
          'discussing': 1,
          'worst': 1,
          'sin': 1,
          'painfully': 1,
          'contrived': 1,
          'wholly': 1,
          'unbelievable': 1,
          'sentiment': 1,
          'nevery': 1,
          'single': 1,
          'character': 1,
          'arguable': 1,
          'exception': 1,
          'simply': 1,
          'hateful': 1,
          'putting': 1,
          'romantic': 1,
          'comedy': 1,
          'waste': 1,
          'villains': 1,
          'nwhen': 1,
          'leave': 1,
          'theater': 1,
          'youll': 1,
          'ask': 1,
          'jerks': 1,
          'happy': 1,
          'nneg': 1}),
 Counter({'movie': 11,
          'snipes': 7,
          'good': 6,
          'action': 5,
          'art': 5,
          'war': 5,
          'plays': 4,
          'killer': 4,
          'nthe': 4,
          'badly': 4,
          'even': 4,
          'wesley': 3,
          'archer': 3,
          'nhis': 3,
          'chinese': 3,
          'dumb': 3,
          'donald': 2,
          'sutherland': 2,
          'time': 2,
          'nhe': 2,
          'downs': 2,
          'best': 2,
          'one': 2,
          'blade': 2,
          'rising': 2,
          'sun': 2,
          'forced': 2,
          'thriller': 2,
          'high': 2,
          'style': 2,
          'nwesley': 2,
          'type': 2,
          'u': 2,
          'n': 2,
          'ambassador': 2,
          'track': 2,
          'nanne': 2,
          'finale': 2,
          'stupid': 2,
          'stunts': 2,
          'dialogue': 2,
          'isnt': 2,
          'character': 2,
          'really': 2,
          'filmed': 2,
          'camera': 2,
          'ending': 2,
          'matrix': 2,
          'great': 2,
          'sense': 2,
          'neven': 2,
          'rated': 1,
          'r': 1,
          'strong': 1,
          'violence': 1,
          'language': 1,
          'drug': 1,
          'use': 1,
          'nudity': 1,
          'sexuality': 1,
          'nstarring': 1,
          'anne': 1,
          'michael': 1,
          'chaykin': 1,
          'marie': 1,
          'matiko': 1,
          'nrunning': 1,
          '117': 1,
          'minutes': 1,
          'ndirected': 1,
          'christian': 1,
          'duguay': 1,
          'nive': 1,
          'never': 1,
          'fully': 1,
          'understood': 1,
          'snipess': 1,
          'career': 1,
          'ups': 1,
          'mostly': 1,
          '1998': 1,
          'entitled': 1,
          'typical': 1,
          'movies': 1,
          'boiling': 1,
          'point': 1,
          'passenger': 1,
          '57': 1,
          'new': 1,
          'called': 1,
          '2': 1,
          'cause': 1,
          'basically': 1,
          'semiremake': 1,
          'plot': 1,
          'different': 1,
          'cast': 1,
          'ridiculously': 1,
          'unbelievable': 1,
          'low': 1,
          'substance': 1,
          'james': 1,
          'bondish': 1,
          'secret': 1,
          'agent': 1,
          'working': 1,
          'killed': 1,
          'trying': 1,
          'find': 1,
          'happened': 1,
          'boss': 1,
          'person': 1,
          'hired': 1,
          'nwell': 1,
          'mistakenly': 1,
          'framed': 1,
          'outlaw': 1,
          'kidnapping': 1,
          'woman': 1,
          'help': 1,
          'along': 1,
          'way': 1,
          'nall': 1,
          'leads': 1,
          'unbelievably': 1,
          'acting': 1,
          'ruin': 1,
          'favorite': 1,
          'actors': 1,
          'fact': 1,
          'every': 1,
          'role': 1,
          '1998s': 1,
          'ni': 1,
          'walked': 1,
          'expecting': 1,
          'octane': 1,
          'got': 1,
          'pile': 1,
          'mush': 1,
          'real': 1,
          'thing': 1,
          'plenty': 1,
          'noticed': 1,
          'shaky': 1,
          'tell': 1,
          'going': 1,
          'worthless': 1,
          'pitiful': 1,
          'tries': 1,
          'mock': 1,
          'laughably': 1,
          'funny': 1,
          'undeniably': 1,
          'nchristian': 1,
          'duguays': 1,
          'direction': 1,
          'also': 1,
          'angles': 1,
          'place': 1,
          'sadly': 1,
          'lighting': 1,
          'editing': 1,
          'done': 1,
          'whole': 1,
          'wasnt': 1,
          'choreographed': 1,
          'placing': 1,
          'characters': 1,
          'assination': 1,
          'plotting': 1,
          'predictable': 1,
          'laughable': 1,
          'takes': 1,
          'fun': 1,
          'entire': 1,
          'usually': 1,
          'roles': 1,
          'turns': 1,
          'horrible': 1,
          'job': 1,
          'nshe': 1,
          'sour': 1,
          'downbeat': 1,
          'dreadfully': 1,
          'dull': 1,
          'moves': 1,
          'costar': 1,
          'cant': 1,
          'save': 1,
          'bust': 1,
          'nso': 1,
          'overall': 1,
          'opinion': 1,
          'total': 1,
          'waste': 1,
          'nits': 1,
          'entertaining': 1,
          'exciting': 1,
          'packed': 1,
          'nit': 1,
          'pointless': 1,
          'makes': 1,
          'absolutely': 1,
          'nif': 1,
          'want': 1,
          'see': 1,
          'version': 1,
          'rent': 1,
          'sean': 1,
          'connery': 1,
          'vehicle': 1,
          'kind': 1,
          'film': 1,
          'either': 1,
          'least': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'nomi': 7,
          'movie': 6,
          'good': 5,
          'nthe': 5,
          'big': 5,
          'berkley': 4,
          'character': 4,
          'make': 4,
          'take': 4,
          'dance': 4,
          'see': 3,
          'bad': 3,
          'nthis': 3,
          'role': 3,
          'one': 3,
          'little': 3,
          'people': 3,
          'claim': 3,
          'nhe': 3,
          'sex': 3,
          'dancer': 3,
          'supposed': 3,
          'gets': 3,
          'stardust': 3,
          'nshe': 3,
          'maclachlan': 3,
          'also': 3,
          'must': 3,
          'theyre': 3,
          'reviewers': 2,
          'wrote': 2,
          'picture': 2,
          'rating': 2,
          'like': 2,
          'elizabeth': 2,
          'certainly': 2,
          'even': 2,
          'selfish': 2,
          'malone': 2,
          'deliberately': 2,
          'care': 2,
          'least': 2,
          'statement': 2,
          'showgirls': 2,
          'nif': 2,
          'screenwriter': 2,
          'well': 2,
          'may': 2,
          'ha': 2,
          'verhoeven': 2,
          'team': 2,
          'gratuitous': 2,
          'vegas': 2,
          'nafter': 2,
          'hotel': 2,
          'bigtime': 2,
          'lap': 2,
          'strip': 2,
          'club': 2,
          'sells': 2,
          'hot': 2,
          'time': 2,
          'audience': 2,
          'body': 2,
          'crystal': 2,
          'ncrystal': 2,
          'kyle': 2,
          'show': 2,
          'onto': 2,
          'nit': 2,
          'shes': 2,
          'better': 2,
          'person': 2,
          'two': 2,
          'hours': 2,
          'subplot': 2,
          'ol': 2,
          'especially': 2,
          'exacting': 2,
          'revenge': 2,
          'nits': 2,
          'hard': 2,
          'world': 2,
          'obligation': 1,
          'despicable': 1,
          'ni': 1,
          'originally': 1,
          'review': 1,
          'college': 1,
          'newspaper': 1,
          'back': 1,
          '95': 1,
          'wanted': 1,
          'rewrite': 1,
          'retro': 1,
          'reviews': 1,
          'classics': 1,
          'nwe': 1,
          'need': 1,
          'warned': 1,
          'truly': 1,
          'awful': 1,
          'films': 1,
          'inspired': 1,
          'description': 1,
          '110': 1,
          'ratings': 1,
          'chart': 1,
          'thing': 1,
          'saving': 1,
          '010': 1,
          'able': 1,
          'rent': 1,
          'slightly': 1,
          'less': 1,
          'embarassing': 1,
          'renting': 1,
          'porno': 1,
          'nso': 1,
          'indeed': 1,
          'plusses': 1,
          'nin': 1,
          'fairness': 1,
          'worth': 1,
          'seeing': 1,
          'buff': 1,
          'nand': 1,
          'ability': 1,
          'whine': 1,
          'irritate': 1,
          'us': 1,
          'nude': 1,
          'appropriate': 1,
          'temptress': 1,
          'smart': 1,
          'interesting': 1,
          'nfar': 1,
          'annoying': 1,
          'far': 1,
          'often': 1,
          'nlike': 1,
          '1998s': 1,
          'bulworth': 1,
          'didnt': 1,
          'iota': 1,
          'main': 1,
          'nat': 1,
          'warren': 1,
          'beatty': 1,
          'tried': 1,
          'dreary': 1,
          'overrated': 1,
          'film': 1,
          'though': 1,
          'n': 1,
          'stupid': 1,
          'nsome': 1,
          'story': 1,
          'based': 1,
          'legendary': 1,
          'eve': 1,
          'things': 1,
          'exploitation': 1,
          'expert': 1,
          'joe': 1,
          'eszterhas': 1,
          'half': 1,
          'joseph': 1,
          'l': 1,
          'mankiewicz': 1,
          'hed': 1,
          'nhed': 1,
          'ninstead': 1,
          'project': 1,
          'sunk': 1,
          'career': 1,
          'nscript': 1,
          'usually': 1,
          'reliable': 1,
          'paul': 1,
          'directed': 1,
          'created': 1,
          'sexfilm': 1,
          '1992': 1,
          'basic': 1,
          'instinct': 1,
          'struck': 1,
          'occasional': 1,
          'violence': 1,
          'xrated': 1,
          'scenes': 1,
          'numerous': 1,
          'quite': 1,
          'unnecessary': 1,
          'lesbian': 1,
          'overtones': 1,
          'predictable': 1,
          'storyline': 1,
          'revolves': 1,
          'around': 1,
          'streaking': 1,
          'las': 1,
          'streetsmart': 1,
          'young': 1,
          'lady': 1,
          'conned': 1,
          'suitcase': 1,
          'slackjawed': 1,
          'yokel': 1,
          'opening': 1,
          'sequence': 1,
          'befriends': 1,
          'tailor': 1,
          'glamorous': 1,
          'stage': 1,
          'production': 1,
          'nnomi': 1,
          'doesnt': 1,
          'advantage': 1,
          'contact': 1,
          'break': 1,
          'dirty': 1,
          'dancing': 1,
          'right': 1,
          'away': 1,
          'nfirst': 1,
          'becomes': 1,
          'scummy': 1,
          'wares': 1,
          'cheetah': 1,
          'short': 1,
          'turning': 1,
          'fictitious': 1,
          'customers': 1,
          'actual': 1,
          'theatre': 1,
          'nhey': 1,
          'never': 1,
          'said': 1,
          'wasnt': 1,
          'number': 1,
          'nmaybe': 1,
          'star': 1,
          'connors': 1,
          'gina': 1,
          'gershon': 1,
          'stops': 1,
          'isnt': 1,
          'brains': 1,
          'pleasant': 1,
          'disposition': 1,
          'requests': 1,
          'private': 1,
          'boyfriend': 1,
          'happens': 1,
          'pleasureseeking': 1,
          'worm': 1,
          'runs': 1,
          'interminable': 1,
          'amount': 1,
          'earns': 1,
          'crystals': 1,
          'understudy': 1,
          'slut': 1,
          'injures': 1,
          'hospitalizes': 1,
          'almost': 1,
          'laughable': 1,
          'guts': 1,
          'whore': 1,
          'nthats': 1,
          'phrase': 1,
          'hear': 1,
          'different': 1,
          'times': 1,
          'completely': 1,
          'ludicrous': 1,
          'nof': 1,
          'course': 1,
          'soul': 1,
          'end': 1,
          'believe': 1,
          'nwere': 1,
          'root': 1,
          'nno': 1,
          'way': 1,
          'nshes': 1,
          'tramp': 1,
          'backstabber': 1,
          'deserved': 1,
          'nothingleast': 1,
          'vindication': 1,
          'ahem': 1,
          'climax': 1,
          'explain': 1,
          'think': 1,
          'male': 1,
          'glenn': 1,
          'plummer': 1,
          'claims': 1,
          'talent': 1,
          'opportunity': 1,
          'let': 1,
          'naked': 1,
          'bit': 1,
          'sure': 1,
          'aint': 1,
          'development': 1,
          'nplummer': 1,
          'appeared': 1,
          'speed': 1,
          '94': 1,
          'smaller': 1,
          'yet': 1,
          'goes': 1,
          'absolutely': 1,
          'nowhere': 1,
          'except': 1,
          'maybe': 1,
          'deliver': 1,
          'unsubtle': 1,
          'hint': 1,
          'fornicators': 1,
          'practice': 1,
          'birth': 1,
          'control': 1,
          'nkyle': 1,
          'promised': 1,
          'payday': 1,
          'standards': 1,
          'dipped': 1,
          'since': 1,
          'appearing': 1,
          'blue': 1,
          'velvet': 1,
          'nthat': 1,
          'weird': 1,
          'critics': 1,
          'best': 1,
          'movies': 1,
          '80s': 1,
          'nnow': 1,
          'say': 1,
          'acted': 1,
          'worst': 1,
          '90s': 1,
          'nhis': 1,
          'sleazy': 1,
          'important': 1,
          'dont': 1,
          'learn': 1,
          'anything': 1,
          'uses': 1,
          'get': 1,
          'wants': 1,
          'means': 1,
          'fits': 1,
          'characters': 1,
          'nis': 1,
          'villain': 1,
          'nwho': 1,
          'cares': 1,
          'nultimately': 1,
          'tiresome': 1,
          'explicit': 1,
          'neveryone': 1,
          'know': 1,
          'softcore': 1,
          'acts': 1,
          'copulation': 1,
          'riotous': 1,
          'romp': 1,
          'pool': 1,
          'nwhat': 1,
          'issue': 1,
          'meanspirited': 1,
          'neveryones': 1,
          'either': 1,
          'wishing': 1,
          'exposed': 1,
          'evils': 1,
          'couldnt': 1,
          'made': 1,
          'point': 1,
          'highlighting': 1,
          'whispers': 1,
          'grunts': 1,
          'sounds': 1,
          'numbers': 1,
          'cant': 1,
          'appreciate': 1,
          'capable': 1,
          'onstage': 1,
          'nberkley': 1,
          'future': 1,
          'hollywood': 1,
          'great': 1,
          'porn': 1,
          'still': 1,
          'active': 1,
          'dishonourable': 1,
          'profession': 1,
          'nperhaps': 1,
          'could': 1,
          'join': 1,
          'ranks': 1,
          'leave': 1,
          'real': 1,
          'acting': 1,
          'pauly': 1,
          'shore': 1,
          'cindy': 1,
          'crawford': 1,
          'noops': 1,
          'actors': 1,
          'nwell': 1,
          'contemptable': 1,
          'slutty': 1,
          'nuseless': 1,
          'triviaironically': 1,
          'played': 1,
          'virtuous': 1,
          'holier': 1,
          'thou': 1,
          'jessie': 1,
          'teenybopper': 1,
          'tv': 1,
          'saved': 1,
          'bell': 1,
          'breaking': 1,
          'screen': 1,
          'nneg': 1}),
 Counter({'jackie': 13,
          'chan': 7,
          'jackies': 7,
          'action': 5,
          'films': 5,
          'mr': 4,
          'nice': 4,
          'guy': 4,
          'film': 4,
          'scenes': 4,
          'nthe': 4,
          'plot': 3,
          'nhowever': 3,
          'ever': 3,
          'cooking': 3,
          'diana': 3,
          'one': 3,
          'tape': 3,
          'english': 3,
          'know': 2,
          'na': 2,
          'nearly': 2,
          'make': 2,
          'rest': 2,
          'best': 2,
          'nthis': 2,
          'chef': 2,
          'somehow': 2,
          'supercop': 2,
          'nit': 2,
          'goons': 2,
          'another': 2,
          'doesnt': 2,
          'fight': 2,
          'like': 2,
          'apparently': 2,
          'bad': 2,
          'case': 2,
          'nbut': 2,
          'use': 2,
          'useful': 2,
          'neither': 2,
          'may': 2,
          'better': 2,
          'latest': 1,
          'expect': 1,
          'weak': 1,
          'terrible': 1,
          'dialogue': 1,
          'little': 1,
          'acting': 1,
          'ability': 1,
          'jawdropping': 1,
          'sequences': 1,
          'worthwhile': 1,
          'lacks': 1,
          'sparkle': 1,
          'efforts': 1,
          'weaknesses': 1,
          'glaring': 1,
          'njackie': 1,
          'plays': 1,
          'else': 1,
          'time': 1,
          'hes': 1,
          'famous': 1,
          'hosts': 1,
          'australian': 1,
          'show': 1,
          'nnot': 1,
          'makes': 1,
          'difference': 1,
          'nthere': 1,
          'two': 1,
          'nfor': 1,
          'mutates': 1,
          'never': 1,
          'explain': 1,
          'character': 1,
          'superb': 1,
          'martial': 1,
          'arts': 1,
          'skills': 1,
          'perhaps': 1,
          'class': 1,
          'steven': 1,
          'seagal': 1,
          'siege': 1,
          'tv': 1,
          'newswoman': 1,
          'gabrielle': 1,
          'fitzpatrick': 1,
          'covertly': 1,
          'tapes': 1,
          'drug': 1,
          'deal': 1,
          'involving': 1,
          'kingpin': 1,
          'giancarlo': 1,
          'richard': 1,
          'norton': 1,
          'local': 1,
          'gang': 1,
          'toughs': 1,
          'demons': 1,
          'nalthough': 1,
          'camcorder': 1,
          'result': 1,
          'full': 1,
          'closeups': 1,
          'multiple': 1,
          'angles': 1,
          'hmmm': 1,
          'nshades': 1,
          'broadcast': 1,
          'news': 1,
          'nanyway': 1,
          'discover': 1,
          'anything': 1,
          'recover': 1,
          'nhere': 1,
          'lies': 1,
          'crucial': 1,
          'flaw': 1,
          'story': 1,
          'anyone': 1,
          'realize': 1,
          'copy': 1,
          'noh': 1,
          'well': 1,
          'said': 1,
          'movies': 1,
          'sense': 1,
          'nas': 1,
          'luck': 1,
          'would': 1,
          'runs': 1,
          'across': 1,
          'wouldnt': 1,
          'accidentally': 1,
          'ends': 1,
          'leads': 1,
          'countless': 1,
          'chase': 1,
          'andor': 1,
          'look': 1,
          'could': 1,
          'lifted': 1,
          'rumble': 1,
          'bronx': 1,
          'movie': 1,
          'nin': 1,
          'move': 1,
          'designed': 1,
          'woo': 1,
          'american': 1,
          'englishspeaking': 1,
          'audiences': 1,
          'uses': 1,
          'primary': 1,
          'language': 1,
          'mean': 1,
          'end': 1,
          'atrocious': 1,
          'dubbing': 1,
          'afflicted': 1,
          'recent': 1,
          'americanized': 1,
          'releases': 1,
          'nstrangely': 1,
          'many': 1,
          'characters': 1,
          'speaking': 1,
          'overdubbed': 1,
          'poorly': 1,
          'nwhether': 1,
          'looping': 1,
          'effort': 1,
          'minimize': 1,
          'accents': 1,
          'simple': 1,
          'nostalgia': 1,
          'achieve': 1,
          'level': 1,
          'distraction': 1,
          'present': 1,
          'dubbed': 1,
          'negligible': 1,
          'merely': 1,
          'excuse': 1,
          'run': 1,
          'various': 1,
          'even': 1,
          'though': 1,
          'plots': 1,
          'always': 1,
          'second': 1,
          'seems': 1,
          'odd': 1,
          'filmmakers': 1,
          'stuck': 1,
          'us': 1,
          'tired': 1,
          'retread': 1,
          'nlook': 1,
          'playing': 1,
          'advantage': 1,
          'nwatching': 1,
          'stuff': 1,
          'kitchen': 1,
          'beating': 1,
          'guys': 1,
          'foodstuffs': 1,
          'sounds': 1,
          'perfect': 1,
          'setup': 1,
          'innumerable': 1,
          'comic': 1,
          'stunts': 1,
          'mixed': 1,
          'bag': 1,
          'ntheres': 1,
          'really': 1,
          'holds': 1,
          'barred': 1,
          'become': 1,
          'trademark': 1,
          'takes': 1,
          'place': 1,
          'arbitrary': 1,
          'location': 1,
          'construction': 1,
          'site': 1,
          'sole': 1,
          'reason': 1,
          'lots': 1,
          'nifty': 1,
          'things': 1,
          'lying': 1,
          'around': 1,
          'ala': 1,
          'worst': 1,
          'long': 1,
          'inspiration': 1,
          'gratuitous': 1,
          'slow': 1,
          'motion': 1,
          'distracting': 1,
          'nonce': 1,
          'twice': 1,
          'highlight': 1,
          'spectacular': 1,
          'stunt': 1,
          'sequence': 1,
          'slomo': 1,
          'running': 1,
          'nod': 1,
          'sixmillion': 1,
          'dollar': 1,
          'man': 1,
          'pathetic': 1,
          'attempt': 1,
          'disguise': 1,
          'fact': 1,
          'slowing': 1,
          'nif': 1,
          'youve': 1,
          'seen': 1,
          'need': 1,
          'fix': 1,
          'go': 1,
          'ahead': 1,
          'see': 1,
          'youre': 1,
          'mood': 1,
          'good': 1,
          'youd': 1,
          'hitting': 1,
          'video': 1,
          'store': 1,
          'work': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'fight': 5,
          'club': 5,
          'like': 5,
          'nthe': 4,
          'nthis': 3,
          'im': 3,
          'norton': 3,
          'think': 3,
          'things': 3,
          'get': 3,
          'two': 3,
          'shows': 3,
          'really': 3,
          'ni': 3,
          'fincher': 2,
          'script': 2,
          'hours': 2,
          'minutes': 2,
          'goes': 2,
          'story': 2,
          'life': 2,
          'disease': 2,
          'sessions': 2,
          'meets': 2,
          'bonham': 2,
          'carter': 2,
          'nnorton': 2,
          'help': 2,
          'thing': 2,
          'worse': 2,
          'brad': 2,
          'pitt': 2,
          'men': 2,
          'attention': 2,
          'nfincher': 2,
          'step': 2,
          'gets': 2,
          'good': 2,
          'nit': 2,
          'continues': 2,
          'might': 2,
          'trailer': 2,
          'first': 1,
          'rule': 1,
          'dont': 1,
          'talk': 1,
          'quote': 1,
          'deals': 1,
          'directly': 1,
          'opinion': 1,
          'quite': 1,
          'frankly': 1,
          'even': 1,
          'worth': 1,
          'mentioning': 1,
          'ndirector': 1,
          'david': 1,
          'seven': 1,
          'completely': 1,
          'gone': 1,
          'edge': 1,
          'nwith': 1,
          'crude': 1,
          'humor': 1,
          'intolerable': 1,
          '2': 1,
          '19': 1,
          'pure': 1,
          'torture': 1,
          'surprised': 1,
          'didnt': 1,
          'walk': 1,
          'show': 1,
          'hype': 1,
          'kills': 1,
          'nits': 1,
          'rare': 1,
          'hyped': 1,
          'turns': 1,
          'noteworthy': 1,
          'exception': 1,
          'nedward': 1,
          'insomniac': 1,
          'trying': 1,
          'enlighten': 1,
          'dull': 1,
          'going': 1,
          'variety': 1,
          'therapy': 1,
          'marla': 1,
          'helena': 1,
          'claims': 1,
          'wrecking': 1,
          'pleasurable': 1,
          'lifestyle': 1,
          'spots': 1,
          'session': 1,
          'also': 1,
          'attended': 1,
          'napparently': 1,
          'see': 1,
          'literally': 1,
          'living': 1,
          'pain': 1,
          'nwhy': 1,
          'person': 1,
          'would': 1,
          'beyond': 1,
          'soon': 1,
          'assigned': 1,
          'job': 1,
          'calls': 1,
          'traveling': 1,
          'plane': 1,
          'tyler': 1,
          'durden': 1,
          'develop': 1,
          'bond': 1,
          'go': 1,
          'bar': 1,
          'golly': 1,
          'drunk': 1,
          'pitiful': 1,
          'characters': 1,
          'nhow': 1,
          'come': 1,
          'stuff': 1,
          'nanyway': 1,
          'fighting': 1,
          'catches': 1,
          'pathetic': 1,
          'losers': 1,
          'formed': 1,
          'nout': 1,
          'mess': 1,
          'manages': 1,
          'lie': 1,
          'message': 1,
          'us': 1,
          'society': 1,
          'robots': 1,
          'nwe': 1,
          'work': 1,
          'jobs': 1,
          'want': 1,
          'nour': 1,
          'insanity': 1,
          'brain': 1,
          'makes': 1,
          'blame': 1,
          'others': 1,
          'ncall': 1,
          'crazy': 1,
          'common': 1,
          'knowledge': 1,
          'acting': 1,
          'moodier': 1,
          'poignant': 1,
          'probably': 1,
          'one': 1,
          'reasons': 1,
          'fails': 1,
          'miserably': 1,
          'neven': 1,
          'actors': 1,
          'solid': 1,
          'actress': 1,
          'manage': 1,
          'weaken': 1,
          'couldnt': 1,
          'hide': 1,
          'face': 1,
          'shame': 1,
          'beats': 1,
          'bloody': 1,
          'pulp': 1,
          'desperate': 1,
          'guess': 1,
          'right': 1,
          'role': 1,
          'felt': 1,
          'beating': 1,
          'nhis': 1,
          'bothersome': 1,
          'depressing': 1,
          'character': 1,
          'made': 1,
          'disgusted': 1,
          '20': 1,
          'million': 1,
          'fee': 1,
          'showed': 1,
          'money': 1,
          'nothing': 1,
          'nhelena': 1,
          'however': 1,
          'purpose': 1,
          'nshe': 1,
          'popped': 1,
          'screen': 1,
          'mumbled': 1,
          'lines': 1,
          'smoked': 1,
          'left': 1,
          'seems': 1,
          '6': 1,
          'drags': 1,
          'headache': 1,
          'bigger': 1,
          'nears': 1,
          'end': 1,
          'nunfortunately': 1,
          'hits': 1,
          'rock': 1,
          'bottom': 1,
          'nthough': 1,
          'conclusion': 1,
          'kept': 1,
          'interest': 1,
          'mere': 1,
          '5': 1,
          'backs': 1,
          'move': 1,
          'snails': 1,
          'pace': 1,
          'non': 1,
          'side': 1,
          'note': 1,
          'redeeming': 1,
          'elements': 1,
          'coincidentally': 1,
          'lasts': 1,
          'amount': 1,
          'time': 1,
          'hopefully': 1,
          'regret': 1,
          'making': 1,
          'least': 1,
          'learn': 1,
          'lesson': 1,
          'nconcentrating': 1,
          'atmosphere': 1,
          'particular': 1,
          'key': 1,
          'moment': 1,
          'wont': 1,
          'everything': 1,
          'else': 1,
          'need': 1,
          'support': 1,
          'nalso': 1,
          'afraid': 1,
          'immature': 1,
          'respond': 1,
          'films': 1,
          'violence': 1,
          'last': 1,
          'world': 1,
          'needs': 1,
          'people': 1,
          'praising': 1,
          'leader': 1,
          'pointless': 1,
          'cult': 1,
          'nwhen': 1,
          'ends': 1,
          'glad': 1,
          'home': 1,
          'take': 1,
          'advil': 1,
          'nyoull': 1,
          'either': 1,
          'enjoy': 1,
          'offer': 1,
          'agree': 1,
          'ed': 1,
          'says': 1,
          'f': 1,
          'ing': 1,
          'stupid': 1,
          'nneg': 1}),
 Counter({'without': 5,
          'home': 4,
          'fries': 4,
          'sally': 3,
          'angus': 3,
          'mother': 3,
          'movie': 3,
          'woman': 3,
          'hit': 2,
          'took': 2,
          'look': 2,
          'pregnant': 2,
          'joint': 2,
          'nthe': 2,
          'child': 2,
          'helicopter': 2,
          'wilson': 2,
          'dorian': 2,
          'like': 2,
          'better': 2,
          'absolutely': 2,
          'nothing': 2,
          'could': 2,
          'gun': 2,
          'note': 1,
          'screenwriters': 1,
          'self': 1,
          'big': 1,
          'time': 1,
          'studios': 1,
          'come': 1,
          'knocking': 1,
          'scripts': 1,
          'sitting': 1,
          'bottom': 1,
          'drawer': 1,
          'tell': 1,
          'em': 1,
          'road': 1,
          'ngilligan': 1,
          'wrote': 1,
          'arbitrarilytitled': 1,
          'ten': 1,
          'years': 1,
          'ago': 1,
          'shelved': 1,
          'found': 1,
          'success': 1,
          'one': 1,
          'second': 1,
          'gilligans': 1,
          'comedy': 1,
          'read': 1,
          'wearing': 1,
          'rosetinted': 1,
          'glasses': 1,
          'ndrew': 1,
          'stars': 1,
          'dim': 1,
          'sweet': 1,
          'waitress': 1,
          'small': 1,
          'town': 1,
          'burger': 1,
          'located': 1,
          'somewhere': 1,
          'southern': 1,
          'united': 1,
          'states': 1,
          'father': 1,
          'dead': 1,
          'victim': 1,
          'severe': 1,
          'heart': 1,
          'attack': 1,
          'brought': 1,
          'sadistic': 1,
          'torture': 1,
          'two': 1,
          'stepsons': 1,
          'flyboys': 1,
          'scared': 1,
          'lowflying': 1,
          'ndorian': 1,
          'busey': 1,
          'getting': 1,
          'even': 1,
          'philandering': 1,
          'ways': 1,
          'behalf': 1,
          'anguished': 1,
          'ohara': 1,
          'ntrouble': 1,
          'picked': 1,
          'interference': 1,
          'drivethru': 1,
          'headset': 1,
          'worries': 1,
          'may': 1,
          'heard': 1,
          'conversations': 1,
          'place': 1,
          'prior': 1,
          'accidental': 1,
          'killing': 1,
          'nso': 1,
          'goes': 1,
          'undercover': 1,
          'burgerflipper': 1,
          'say': 1,
          'cheese': 1,
          'falls': 1,
          'mothertobe': 1,
          'ntoo': 1,
          'bad': 1,
          'mom': 1,
          'homicidal': 1,
          'plans': 1,
          'ndoes': 1,
          'sound': 1,
          'want': 1,
          'see': 1,
          'nwithout': 1,
          'doubt': 1,
          'best': 1,
          'thing': 1,
          'barrymore': 1,
          'risk': 1,
          'sounding': 1,
          'sexist': 1,
          'shes': 1,
          'never': 1,
          'looked': 1,
          'curly': 1,
          'redhead': 1,
          'twinkling': 1,
          'eyes': 1,
          'nshe': 1,
          'winning': 1,
          'role': 1,
          'requires': 1,
          'except': 1,
          'applecheek': 1,
          'cute': 1,
          'gawk': 1,
          'reallife': 1,
          'boyfriend': 1,
          'nbut': 1,
          'plot': 1,
          'situations': 1,
          'offputting': 1,
          'save': 1,
          'nthis': 1,
          'desperately': 1,
          'wants': 1,
          'get': 1,
          'mentioned': 1,
          'breath': 1,
          'coen': 1,
          'brothers': 1,
          'brand': 1,
          'laboured': 1,
          'hipness': 1,
          'would': 1,
          'foreign': 1,
          'geniuses': 1,
          'ethan': 1,
          'joel': 1,
          'nits': 1,
          'raising': 1,
          'arizona': 1,
          'babies': 1,
          'charm': 1,
          'laughs': 1,
          'human': 1,
          'characters': 1,
          'intelligence': 1,
          'worst': 1,
          'creepy': 1,
          'nwhats': 1,
          'funny': 1,
          'threatening': 1,
          'machine': 1,
          'n': 1,
          'unless': 1,
          'question': 1,
          'spice': 1,
          'girl': 1,
          'ntake': 1,
          'helicopters': 1,
          'quasiincestuous': 1,
          'relationship': 1,
          'sons': 1,
          'illogical': 1,
          'within': 1,
          'movies': 1,
          'framework': 1,
          'still': 1,
          'lives': 1,
          'brother': 1,
          'scenes': 1,
          'murder': 1,
          'attempted': 1,
          'otherwise': 1,
          'left': 1,
          'story': 1,
          'single': 1,
          'works': 1,
          'fast': 1,
          'food': 1,
          'dreams': 1,
          'becoming': 1,
          'country': 1,
          'singer': 1,
          'nthat': 1,
          'turn': 1,
          'boring': 1,
          'ever': 1,
          'made': 1,
          'itd': 1,
          'nneg': 1}),
 Counter({'wild': 8,
          'things': 7,
          'film': 5,
          'one': 4,
          'noir': 3,
          'twists': 3,
          'kevin': 3,
          'character': 3,
          'murray': 3,
          'nthe': 3,
          'directors': 2,
          'nwith': 2,
          'ambiguous': 2,
          'erotic': 2,
          'quality': 2,
          'picture': 2,
          'movie': 2,
          'turns': 2,
          'becomes': 2,
          'game': 2,
          'bacon': 2,
          'matt': 2,
          'dillon': 2,
          'world': 2,
          'plot': 2,
          'theres': 2,
          'mcnaughton': 2,
          'henry': 2,
          'lombardo': 2,
          'community': 2,
          'nand': 2,
          'script': 2,
          'hes': 2,
          'ntheres': 2,
          'something': 2,
          'knows': 2,
          'dont': 2,
          'people': 2,
          'recent': 1,
          'onslaught': 1,
          'popped': 1,
          'multiplexes': 1,
          'everything': 1,
          'ranging': 1,
          'l': 1,
          'confidential': 1,
          'palmetto': 1,
          'big': 1,
          'lebowski': 1,
          'proved': 1,
          'artistic': 1,
          'commodity': 1,
          'veteran': 1,
          'talented': 1,
          'particular': 1,
          'genre': 1,
          'able': 1,
          'collate': 1,
          'sleazy': 1,
          'underworld': 1,
          'lowerclass': 1,
          'glamorous': 1,
          'opulent': 1,
          'upperclass': 1,
          'maintaining': 1,
          'noirish': 1,
          'ambience': 1,
          'staple': 1,
          'n': 1,
          'could': 1,
          'classified': 1,
          'black': 1,
          'comedy': 1,
          'sultry': 1,
          'plain': 1,
          'ol': 1,
          'thriller': 1,
          'category': 1,
          'doesnt': 1,
          'qualify': 1,
          'motion': 1,
          'noveracted': 1,
          'overwrought': 1,
          'overlong': 1,
          'confused': 1,
          'mess': 1,
          'wants': 1,
          'cake': 1,
          'eat': 1,
          'incalculable': 1,
          'soon': 1,
          'tedious': 1,
          'exercise': 1,
          'pointlessness': 1,
          'nin': 1,
          'spite': 1,
          'efforts': 1,
          'manage': 1,
          'sustain': 1,
          'straight': 1,
          'faces': 1,
          'throughout': 1,
          'ordeal': 1,
          'jells': 1,
          'eroticism': 1,
          'unpredictability': 1,
          'motivation': 1,
          'sense': 1,
          'etc': 1,
          'redeeming': 1,
          'technical': 1,
          'ndirected': 1,
          'john': 1,
          'portrait': 1,
          'serial': 1,
          'killer': 1,
          'follows': 1,
          'sam': 1,
          'hunkish': 1,
          'suburban': 1,
          'florida': 1,
          'high': 1,
          'school': 1,
          'teacher': 1,
          'whos': 1,
          'dream': 1,
          'every': 1,
          'spruced': 1,
          'female': 1,
          'nparticularly': 1,
          'nkelly': 1,
          'van': 1,
          'ryan': 1,
          'denise': 1,
          'richards': 1,
          'adores': 1,
          'extent': 1,
          'offers': 1,
          'wash': 1,
          'jeep': 1,
          'partner': 1,
          'nsoon': 1,
          'tiny': 1,
          'shorts': 1,
          'soaked': 1,
          'tells': 1,
          'girl': 1,
          'take': 1,
          'hike': 1,
          'enabling': 1,
          'come': 1,
          'house': 1,
          'nnext': 1,
          'thing': 1,
          'cries': 1,
          'rape': 1,
          'socalled': 1,
          'rollercoaster': 1,
          'ride': 1,
          'ensues': 1,
          'na': 1,
          'second': 1,
          'accuser': 1,
          'comes': 1,
          'front': 1,
          'suzie': 1,
          'toller': 1,
          'neve': 1,
          'campbell': 1,
          'boozedrinkin': 1,
          'tattooed': 1,
          'piece': 1,
          'trailer': 1,
          'trash': 1,
          'charges': 1,
          'sexually': 1,
          'molesting': 1,
          'virtually': 1,
          'guaranteeing': 1,
          'trial': 1,
          'preposterous': 1,
          'confessions': 1,
          'asinine': 1,
          'occurrences': 1,
          'laughable': 1,
          'courtroom': 1,
          'procedures': 1,
          'bound': 1,
          'happen': 1,
          'neven': 1,
          'bill': 1,
          'gets': 1,
          'act': 1,
          'lombardos': 1,
          'zany': 1,
          'lawyer': 1,
          'nhe': 1,
          'wears': 1,
          'fake': 1,
          'neck': 1,
          'brace': 1,
          'waves': 1,
          'finger': 1,
          'client': 1,
          'infuses': 1,
          'billy': 1,
          'nyou': 1,
          'tell': 1,
          'knew': 1,
          'nothing': 1,
          'lose': 1,
          'assigning': 1,
          'role': 1,
          'nas': 1,
          'ridiculous': 1,
          'sounds': 1,
          'sane': 1,
          'astonished': 1,
          'nreporters': 1,
          'flee': 1,
          'scene': 1,
          '8': 1,
          '5million': 1,
          'settlement': 1,
          'libel': 1,
          'suit': 1,
          'kellys': 1,
          'mother': 1,
          'theresa': 1,
          'russell': 1,
          'cop': 1,
          'also': 1,
          'executive': 1,
          'produced': 1,
          'sniffs': 1,
          'iffy': 1,
          'concoction': 1,
          'deceit': 1,
          'murder': 1,
          'lust': 1,
          'nwe': 1,
          'audience': 1,
          'sniff': 1,
          'lustful': 1,
          'nlike': 1,
          'many': 1,
          'thrillers': 1,
          'days': 1,
          'including': 1,
          'usual': 1,
          'suspects': 1,
          'eschews': 1,
          'nmcnaughton': 1,
          'handle': 1,
          'camera': 1,
          'keeps': 1,
          'campy': 1,
          'fillings': 1,
          'flowing': 1,
          'workmanlike': 1,
          'ease': 1,
          'territory': 1,
          'covering': 1,
          'harmless': 1,
          'appetizer': 1,
          'accompany': 1,
          'furious': 1,
          'unsettling': 1,
          'directorial': 1,
          'tour': 1,
          'deforce': 1,
          'ngeorge': 1,
          'clintons': 1,
          'score': 1,
          'delight': 1,
          'behold': 1,
          'nbut': 1,
          'humans': 1,
          'characters': 1,
          'mere': 1,
          'devices': 1,
          'nasty': 1,
          'nwhat': 1,
          'writer': 1,
          'stephen': 1,
          'peters': 1,
          'grasp': 1,
          'tediously': 1,
          'uninvolving': 1,
          'almost': 1,
          'unbearable': 1,
          'inhibit': 1,
          'twisted': 1,
          'interesting': 1,
          'feel': 1,
          'real': 1,
          'care': 1,
          'nnot': 1,
          'even': 1,
          'unintentionally': 1,
          'funny': 1,
          'moments': 1,
          'work': 1,
          'much': 1,
          'caricatures': 1,
          'nthen': 1,
          'content': 1,
          'nearly': 1,
          'earned': 1,
          'nc17': 1,
          'sexless': 1,
          'badly': 1,
          'edited': 1,
          'poorly': 1,
          'lit': 1,
          'menageatrois': 1,
          'flabbergastingly': 1,
          'inept': 1,
          'scenes': 1,
          'graced': 1,
          'country': 1,
          'bacons': 1,
          'member': 1,
          'makes': 1,
          'cameo': 1,
          'appearance': 1,
          'ten': 1,
          'minutes': 1,
          'go': 1,
          'nironically': 1,
          'wildest': 1,
          'elements': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'movie': 6,
          'like': 5,
          'space': 5,
          'one': 5,
          'nthey': 4,
          'n': 4,
          'nasa': 4,
          'affleck': 4,
          'asteroid': 3,
          'someone': 3,
          'sequence': 3,
          'almost': 3,
          'bunch': 3,
          'guy': 3,
          'called': 3,
          'little': 3,
          'rocks': 2,
          'us': 2,
          'kind': 2,
          'damage': 2,
          'armageddon': 2,
          'deep': 2,
          'impact': 2,
          'willis': 2,
          'harry': 2,
          'oil': 2,
          'driller': 2,
          'experience': 2,
          'deepcore': 2,
          'build': 2,
          'obligatory': 2,
          'daughter': 2,
          'something': 2,
          'care': 2,
          'ni': 2,
          'scenes': 2,
          'last': 2,
          'often': 2,
          'world': 2,
          'tyler': 2,
          'songs': 2,
          'bay': 2,
          'eventually': 2,
          'dead': 2,
          'could': 2,
          'nit': 2,
          'believe': 2,
          'story': 2,
          'nthe': 2,
          'perhaps': 2,
          'jaws': 2,
          'men': 2,
          'respect': 2,
          'another': 2,
          'characters': 2,
          'get': 2,
          'feeling': 2,
          'even': 2,
          'team': 2,
          'rocksactually': 1,
          'lots': 1,
          'fly': 1,
          'slow': 1,
          'fast': 1,
          'motion': 1,
          'several': 1,
          'points': 1,
          'seem': 1,
          'dangerous': 1,
          'twirl': 1,
          'air': 1,
          'instead': 1,
          'propelling': 1,
          'forward': 1,
          'landonce': 1,
          'need': 1,
          'break': 1,
          'sequencesthey': 1,
          'cause': 1,
          'enough': 1,
          'destroy': 1,
          'chrysler': 1,
          'building': 1,
          'nary': 1,
          'mention': 1,
          'apocalyptic': 1,
          'events': 1,
          'made': 1,
          'occur': 1,
          'also': 1,
          'might': 1,
          'interesting': 1,
          'element': 1,
          'steroid': 1,
          'users': 1,
          'answer': 1,
          'nbruce': 1,
          'stars': 1,
          'stamper': 1,
          'famed': 1,
          'oildriller': 1,
          'commissioned': 1,
          'white': 1,
          'house': 1,
          'stop': 1,
          'giant': 1,
          'travels': 1,
          'beyond': 1,
          'zero': 1,
          'barrier': 1,
          'destroys': 1,
          'planet': 1,
          'nwhy': 1,
          'require': 1,
          'mining': 1,
          'plant': 1,
          'nuclear': 1,
          'missile': 1,
          'said': 1,
          'unintentionally': 1,
          'nhilarious': 1,
          'asks': 1,
          'inspect': 1,
          'built': 1,
          'based': 1,
          'blueprints': 1,
          'poorly': 1,
          'constructedharry': 1,
          'criticizes': 1,
          'every': 1,
          'aspect': 1,
          'nwe': 1,
          'trust': 1,
          'shuttles': 1,
          'nharry': 1,
          'assembles': 1,
          'ragtag': 1,
          'cowboys': 1,
          'including': 1,
          'blond': 1,
          'fat': 1,
          'black': 1,
          'wiseass': 1,
          'man': 1,
          'sleeping': 1,
          'nonce': 1,
          'reach': 1,
          'going': 1,
          'wrongperhaps': 1,
          'fact': 1,
          'sent': 1,
          'nincompoops': 1,
          'outer': 1,
          'count': 1,
          'number': 1,
          'times': 1,
          'fail': 1,
          'mission': 1,
          'fingers': 1,
          'toes': 1,
          'nwhether': 1,
          'save': 1,
          'day': 1,
          'reveal': 1,
          'nnor': 1,
          'say': 1,
          'know': 1,
          'youre': 1,
          'trouble': 1,
          'dwarfs': 1,
          'terms': 1,
          'emotion': 1,
          'scope': 1,
          'nwillis': 1,
          'barely': 1,
          'chance': 1,
          'come': 1,
          'alive': 1,
          'ditto': 1,
          'ntheir': 1,
          'big': 1,
          'mostly': 1,
          'reserved': 1,
          'third': 1,
          'act': 1,
          'minuteand': 1,
          'futileattempt': 1,
          'inject': 1,
          'warmth': 1,
          'material': 1,
          'nsteve': 1,
          'buscemis': 1,
          'characterthe': 1,
          'wiseassis': 1,
          'exceptionally': 1,
          'problematic': 1,
          'rockhound': 1,
          'hes': 1,
          'sarcastic': 1,
          'foolish': 1,
          'tape': 1,
          'chair': 1,
          'spends': 1,
          'nso': 1,
          'bring': 1,
          'begin': 1,
          'nrather': 1,
          'write': 1,
          'give': 1,
          'nhis': 1,
          'almostwitty': 1,
          'oneliners': 1,
          'serious': 1,
          'scowls': 1,
          'mopes': 1,
          'demonstrates': 1,
          'psychotic': 1,
          'tendencies': 1,
          'point': 1,
          'chases': 1,
          'shotgun': 1,
          'screwing': 1,
          'firing': 1,
          'causing': 1,
          'significant': 1,
          'rig': 1,
          'nim': 1,
          'guessing': 1,
          'qualifies': 1,
          'guidelines': 1,
          'unfit': 1,
          'travel': 1,
          'least': 1,
          'sky': 1,
          'blue': 1,
          'nliv': 1,
          'pretty': 1,
          'humourless': 1,
          'always': 1,
          'suspiciously': 1,
          'four': 1,
          'fathers': 1,
          'bands': 1,
          'aerosmith': 1,
          'grace': 1,
          'soundtrack': 1,
          'ndirector': 1,
          'michael': 1,
          'lays': 1,
          'visual': 1,
          'sound': 1,
          'effects': 1,
          'thick': 1,
          'ketchup': 1,
          'drowning': 1,
          'onscreen': 1,
          'middle': 1,
          'hour': 1,
          'nonsensical': 1,
          'pyrotechnic': 1,
          'assault': 1,
          'average': 1,
          'primates': 1,
          'brain': 1,
          'nwhenever': 1,
          'dies': 1,
          'crew': 1,
          'member': 1,
          'inevitably': 1,
          'yells': 1,
          'lost': 1,
          'insert': 1,
          'persons': 1,
          'name': 1,
          'must': 1,
          'admit': 1,
          'distinguish': 1,
          'oilguycumastronaut': 1,
          'live': 1,
          'closeups': 1,
          'corpses': 1,
          'faces': 1,
          'beneath': 1,
          'cracked': 1,
          'helmets': 1,
          'provided': 1,
          'assistance': 1,
          'skin': 1,
          'covered': 1,
          'fake': 1,
          'blood': 1,
          'narmageddon': 1,
          'terrible': 1,
          'godzilla': 1,
          'looks': 1,
          'nicer': 1,
          'fewer': 1,
          'plotholes': 1,
          'within': 1,
          'equally': 1,
          'ludicrous': 1,
          'framework': 1,
          'vivid': 1,
          'soundmix': 1,
          'nbut': 1,
          'twoandahalf': 1,
          'hours': 1,
          'actually': 1,
          'happened': 1,
          'course': 1,
          'love': 1,
          'played': 1,
          'ads': 1,
          'hoping': 1,
          'catch': 1,
          'people': 1,
          'recover': 1,
          'titanicfever': 1,
          'nbollocks': 1,
          'lovers': 1,
          'miles': 1,
          'apart': 1,
          'throughouterase': 1,
          'thoughts': 1,
          'nude': 1,
          'sketching': 1,
          'carsex': 1,
          'replace': 1,
          'shots': 1,
          'liv': 1,
          'tearing': 1,
          'ben': 1,
          'dicks': 1,
          'around': 1,
          'mooncrawler': 1,
          'nremember': 1,
          'nin': 1,
          'three': 1,
          'independentminded': 1,
          'suddenly': 1,
          'found': 1,
          'fishing': 1,
          'boat': 1,
          'pursuit': 1,
          'deadly': 1,
          'shark': 1,
          'didnt': 1,
          'much': 1,
          'first': 1,
          'started': 1,
          'none': 1,
          'great': 1,
          'involved': 1,
          'wouldbeahabs': 1,
          'drinking': 1,
          'singing': 1,
          'telling': 1,
          'stories': 1,
          'nthis': 1,
          'sort': 1,
          'malebonding': 1,
          'foreign': 1,
          'producer': 1,
          'jerry': 1,
          'bruckheimer': 1,
          'throw': 1,
          'many': 1,
          'mix': 1,
          'expect': 1,
          'well': 1,
          'grounds': 1,
          'end': 1,
          'nnot': 1,
          'acquaintancesid': 1,
          'surprised': 1,
          'actors': 1,
          'bothered': 1,
          'introduce': 1,
          'action': 1,
          'na': 1,
          'male': 1,
          'friend': 1,
          'loved': 1,
          'suggested': 1,
          'relate': 1,
          'dont': 1,
          'bare': 1,
          'souls': 1,
          'dying': 1,
          'macho': 1,
          'concepts': 1,
          'heroism': 1,
          'chestbeating': 1,
          'bravery': 1,
          'nto': 1,
          'respond': 1,
          'boys': 1,
          'neither': 1,
          'heroic': 1,
          'brave': 1,
          'smart': 1,
          'couldnt': 1,
          'birdhouse': 1,
          'nand': 1,
          'disliking': 1,
          'synthetic': 1,
          'trailera': 1,
          'trailer': 1,
          'written': 1,
          'bodybuilders': 1,
          'greeting': 1,
          'card': 1,
          'authorsive': 1,
          'never': 1,
          'prouder': 1,
          'wimp': 1,
          'whole': 1,
          'life': 1,
          'nneg': 1}),
 Counter({'comet': 8,
          'impact': 6,
          'disaster': 6,
          'freeman': 6,
          'deep': 5,
          'two': 5,
          'nthe': 5,
          'tv': 5,
          'earth': 5,
          'know': 5,
          'people': 5,
          'every': 4,
          'president': 4,
          'plan': 4,
          'even': 4,
          'theres': 3,
          'wave': 3,
          'end': 3,
          'country': 3,
          'strike': 3,
          'astronauts': 3,
          'fail': 3,
          'goes': 3,
          'movie': 3,
          'going': 3,
          'nand': 3,
          'tidal': 2,
          'say': 2,
          'last': 2,
          'years': 2,
          'movies': 2,
          'getting': 2,
          'minutes': 2,
          'human': 2,
          'go': 2,
          'tell': 2,
          'remote': 2,
          'chance': 2,
          'nations': 2,
          'crack': 2,
          'scientists': 2,
          'brilliant': 2,
          'stop': 2,
          'problem': 2,
          'get': 2,
          'mission': 2,
          'still': 2,
          'headed': 2,
          'toward': 2,
          'time': 2,
          'seen': 2,
          'ads': 2,
          'main': 2,
          'whats': 2,
          'leoni': 2,
          'nshe': 2,
          'cromwell': 2,
          'mistress': 2,
          'keep': 2,
          'wraps': 2,
          'youre': 2,
          'ask': 2,
          'first': 2,
          'question': 2,
          'knows': 2,
          'course': 2,
          'sure': 2,
          'comforting': 2,
          'though': 2,
          'worlds': 2,
          'ending': 2,
          'matter': 2,
          'nthey': 2,
          'cave': 2,
          'uhaul': 2,
          '1': 1,
          '000foot': 1,
          'nid': 1,
          'pretty': 1,
          'accurately': 1,
          'represents': 1,
          'towering': 1,
          'flood': 1,
          'worth': 1,
          'irwin': 1,
          'allen': 1,
          'esque': 1,
          'release': 1,
          'early': 1,
          'revival': 1,
          'cheesy': 1,
          'laughable': 1,
          'least': 1,
          'knew': 1,
          'include': 1,
          'thrills': 1,
          'five': 1,
          'ten': 1,
          'ndeep': 1,
          'tries': 1,
          'disguise': 1,
          'drama': 1,
          'endless': 1,
          'filler': 1,
          'comprised': 1,
          'prevention': 1,
          'plans': 1,
          'keeps': 1,
          'taking': 1,
          'repeating': 1,
          'cycle': 1,
          'follows': 1,
          'morgan': 1,
          'nthen': 1,
          'see': 1,
          'action': 1,
          'sequence': 1,
          'utterly': 1,
          'lacking': 1,
          'suspense': 1,
          'barely': 1,
          'nit': 1,
          'throughout': 1,
          'nhow': 1,
          'nbecause': 1,
          'weve': 1,
          'feature': 1,
          'telling': 1,
          'nation': 1,
          'right': 1,
          'us': 1,
          'show': 1,
          'shots': 1,
          'striking': 1,
          'giant': 1,
          'spreading': 1,
          'nladies': 1,
          'gentlemen': 1,
          'nsuccessful': 1,
          'beginning': 1,
          'little': 1,
          'disasters': 1,
          'follow': 1,
          'saves': 1,
          'one': 1,
          'discloses': 1,
          '30second': 1,
          'spots': 1,
          'ntelevision': 1,
          'wrong': 1,
          'character': 1,
          'played': 1,
          'tea': 1,
          'lowlevel': 1,
          'broadcast': 1,
          'journalist': 1,
          'msnbc': 1,
          'thats': 1,
          'mere': 1,
          'tip': 1,
          'productplacement': 1,
          'iceberg': 1,
          'stumbles': 1,
          'upon': 1,
          'huge': 1,
          'government': 1,
          'conspiracy': 1,
          'thinks': 1,
          'instance': 1,
          'exsecretary': 1,
          'something': 1,
          'james': 1,
          'resigning': 1,
          'maybe': 1,
          'took': 1,
          'fall': 1,
          'area': 1,
          'nwhen': 1,
          'nosing': 1,
          'around': 1,
          'begs': 1,
          'n': 1,
          'reporter': 1,
          'used': 1,
          'figures': 1,
          'really': 1,
          'roughed': 1,
          'fbi': 1,
          'men': 1,
          'internet': 1,
          'search': 1,
          'good': 1,
          'journalists': 1,
          'learn': 1,
          'difference': 1,
          'extinction': 1,
          'level': 1,
          'nupon': 1,
          'topsecret': 1,
          'meeting': 1,
          'agrees': 1,
          'story': 1,
          'hold': 1,
          'press': 1,
          'conference': 1,
          'gets': 1,
          'everyone': 1,
          'baby': 1,
          'star': 1,
          'nleoni': 1,
          'ends': 1,
          'anchor': 1,
          'chair': 1,
          'broadcasting': 1,
          'step': 1,
          'comets': 1,
          'collision': 1,
          'im': 1,
          'months': 1,
          'shes': 1,
          'cable': 1,
          'news': 1,
          'personality': 1,
          'nso': 1,
          'narrating': 1,
          'sixastronaut': 1,
          'blow': 1,
          'nsuch': 1,
          'personalities': 1,
          'robert': 1,
          'duvall': 1,
          'jon': 1,
          'favreau': 1,
          'blair': 1,
          'underwood': 1,
          'cash': 1,
          'paychecks': 1,
          'motions': 1,
          'draggedout': 1,
          'process': 1,
          'nbut': 1,
          'anyone': 1,
          'whos': 1,
          'commercials': 1,
          'breaking': 1,
          'pieces': 1,
          'means': 1,
          'destruction': 1,
          'nyeah': 1,
          'thanks': 1,
          'nasa': 1,
          'nthats': 1,
          'come': 1,
          'goodbye': 1,
          'arent': 1,
          'picked': 1,
          'live': 1,
          'missouri': 1,
          'site': 1,
          'animals': 1,
          'ready': 1,
          'climb': 1,
          'nif': 1,
          'focus': 1,
          'living': 1,
          'inside': 1,
          'caves': 1,
          'world': 1,
          'destroyed': 1,
          'could': 1,
          'far': 1,
          'interesting': 1,
          'ninstead': 1,
          'watch': 1,
          'lovestruck': 1,
          'elijah': 1,
          'wood': 1,
          'defies': 1,
          'odds': 1,
          'chase': 1,
          'young': 1,
          'wife': 1,
          'pack': 1,
          'highways': 1,
          'town': 1,
          'reasoning': 1,
          'might': 1,
          'well': 1,
          'scenic': 1,
          'rural': 1,
          'location': 1,
          'amusingly': 1,
          'highway': 1,
          'spotted': 1,
          'trucks': 1,
          'nim': 1,
          'business': 1,
          'lives': 1,
          'nneg': 1}),
 Counter({'would': 5,
          'crow': 5,
          'film': 5,
          'movie': 4,
          'angels': 4,
          'hes': 4,
          'dead': 3,
          'nthe': 3,
          'back': 3,
          'eric': 3,
          'death': 3,
          'first': 3,
          'nin': 3,
          'much': 3,
          'good': 3,
          'sequel': 2,
          'followup': 2,
          'anyway': 2,
          'come': 2,
          'story': 2,
          'city': 2,
          'grave': 2,
          'also': 2,
          'audience': 2,
          'like': 2,
          'bad': 2,
          'success': 2,
          'ive': 2,
          'never': 2,
          'ashe': 2,
          'thrown': 2,
          'serves': 2,
          'nhes': 2,
          'sarah': 2,
          'even': 2,
          'seem': 2,
          'cutting': 2,
          'anything': 2,
          'script': 2,
          'quick': 2,
          'ideas': 2,
          'another': 1,
          'ads': 1,
          'proclaimed': 1,
          'ntrue': 1,
          'brandon': 1,
          'lee': 1,
          'reason': 1,
          'appear': 1,
          '1994s': 1,
          'idea': 1,
          'spinning': 1,
          'artist': 1,
          'james': 1,
          'obarrs': 1,
          'original': 1,
          'comic': 1,
          'book': 1,
          'series': 1,
          'franchise': 1,
          'revolves': 1,
          'around': 1,
          'notion': 1,
          'different': 1,
          'startled': 1,
          'soul': 1,
          'taking': 1,
          'righteous': 1,
          'vengeance': 1,
          'world': 1,
          'ngiven': 1,
          'basic': 1,
          'framework': 1,
          'could': 1,
          'move': 1,
          'number': 1,
          'directions': 1,
          'nof': 1,
          'course': 1,
          'doesnt': 1,
          'nstubbornly': 1,
          'backtracks': 1,
          'beginning': 1,
          'previous': 1,
          'lees': 1,
          'draven': 1,
          'found': 1,
          'drawn': 1,
          'charles': 1,
          'bronson': 1,
          'thugs': 1,
          'tortured': 1,
          'girlfriend': 1,
          'ni': 1,
          'remember': 1,
          'primarily': 1,
          'harrowing': 1,
          'exercise': 1,
          'brutality': 1,
          'flashback': 1,
          'see': 1,
          'excruciating': 1,
          'crimes': 1,
          'exacted': 1,
          'lover': 1,
          'watch': 1,
          'realtime': 1,
          'pays': 1,
          'perpetrator': 1,
          'kind': 1,
          'nits': 1,
          'loud': 1,
          'repetitive': 1,
          'true': 1,
          'sadists': 1,
          'delight': 1,
          'horrifying': 1,
          'fascinating': 1,
          'ncity': 1,
          'gives': 1,
          'us': 1,
          'less': 1,
          'skillfully': 1,
          'ntheres': 1,
          'guaranteed': 1,
          'although': 1,
          'reviews': 1,
          'poor': 1,
          'wordofmouth': 1,
          'likely': 1,
          'ensure': 1,
          'wont': 1,
          'fact': 1,
          'miramax': 1,
          'subsidiary': 1,
          'dimension': 1,
          'films': 1,
          'fearful': 1,
          'critical': 1,
          'reaction': 1,
          'picture': 1,
          'reviewers': 1,
          'shut': 1,
          'advance': 1,
          'screenings': 1,
          'n': 1,
          'understood': 1,
          'reasoning': 1,
          'behind': 1,
          'tactic': 1,
          'since': 1,
          'notices': 1,
          'key': 1,
          'movies': 1,
          'nso': 1,
          'confidence': 1,
          'worthiness': 1,
          'nthis': 1,
          'time': 1,
          'frenchaccented': 1,
          'actor': 1,
          'vincent': 1,
          'perez': 1,
          'retrieved': 1,
          'watery': 1,
          'young': 1,
          'son': 1,
          'shackled': 1,
          'together': 1,
          'shot': 1,
          'pier': 1,
          'link': 1,
          'worlds': 1,
          'living': 1,
          'nperez': 1,
          'might': 1,
          'screen': 1,
          'presence': 1,
          'given': 1,
          'something': 1,
          'simply': 1,
          'front': 1,
          'camera': 1,
          'pretty': 1,
          'face': 1,
          'nat': 1,
          'shivery': 1,
          'frightened': 1,
          'quickly': 1,
          'recovers': 1,
          'shock': 1,
          'becomes': 1,
          'badass': 1,
          'biker': 1,
          'beyond': 1,
          'befriended': 1,
          'mia': 1,
          'kirshner': 1,
          'presumably': 1,
          'older': 1,
          'version': 1,
          'child': 1,
          'narrated': 1,
          'nkirshner': 1,
          'beguiling': 1,
          'exotica': 1,
          'exquisitely': 1,
          'photographed': 1,
          'blank': 1,
          'ntattooed': 1,
          'wings': 1,
          'lovely': 1,
          'women': 1,
          'purpose': 1,
          'seductress': 1,
          'gang': 1,
          'punks': 1,
          'killed': 1,
          'ostensibly': 1,
          'commanded': 1,
          'judah': 1,
          'richard': 1,
          'brooks': 1,
          'far': 1,
          'interesting': 1,
          'choice': 1,
          'leader': 1,
          'iggy': 1,
          'pop': 1,
          'plays': 1,
          'gaunt': 1,
          'fellow': 1,
          'named': 1,
          'curve': 1,
          'niggy': 1,
          'bones': 1,
          'veins': 1,
          'drawl': 1,
          'one': 1,
          'seems': 1,
          'shared': 1,
          'aesthetic': 1,
          'ruin': 1,
          'defines': 1,
          'nlike': 1,
          'things': 1,
          'dispatched': 1,
          'soon': 1,
          'without': 1,
          'imagination': 1,
          'meantime': 1,
          'subjected': 1,
          'tedious': 1,
          'glimpses': 1,
          'judahs': 1,
          'compound': 1,
          'bondage': 1,
          'order': 1,
          'day': 1,
          'hot': 1,
          'wax': 1,
          'poured': 1,
          'naked': 1,
          'bodies': 1,
          'sm': 1,
          'fantasies': 1,
          'shy': 1,
          'edge': 1,
          'werent': 1,
          'distinctly': 1,
          'secondhand': 1,
          'neven': 1,
          'soundtrack': 1,
          'tired': 1,
          'nmore': 1,
          'seen': 1,
          'hollywood': 1,
          'lately': 1,
          'smacks': 1,
          'baldly': 1,
          'product': 1,
          'lousy': 1,
          'great': 1,
          'look': 1,
          'ncritics': 1,
          'fault': 1,
          'direction': 1,
          'mtv': 1,
          'veteran': 1,
          'tim': 1,
          'pope': 1,
          'work': 1,
          'isnt': 1,
          'per': 1,
          'se': 1,
          'got': 1,
          'eye': 1,
          'intriguing': 1,
          'visual': 1,
          'many': 1,
          'scenes': 1,
          'ridiculously': 1,
          'striking': 1,
          'imagery': 1,
          'nhis': 1,
          'major': 1,
          'stylistic': 1,
          'failing': 1,
          'cant': 1,
          'direct': 1,
          'action': 1,
          'scene': 1,
          'nonsensical': 1,
          'ensues': 1,
          'reminiscent': 1,
          'low': 1,
          'budget': 1,
          'kung': 1,
          'fu': 1,
          'nbut': 1,
          'director': 1,
          'must': 1,
          'shoulder': 1,
          'blame': 1,
          'little': 1,
          'screenplay': 1,
          'wasnt': 1,
          'performers': 1,
          'couldnt': 1,
          'apparent': 1,
          'lack': 1,
          'parts': 1,
          'everyone': 1,
          'involved': 1,
          'nwho': 1,
          'bought': 1,
          'david': 1,
          'goyers': 1,
          'anemic': 1,
          'producers': 1,
          'either': 1,
          'dim': 1,
          'realize': 1,
          'doomed': 1,
          'hollow': 1,
          'rehash': 1,
          'cynical': 1,
          'figure': 1,
          'know': 1,
          'difference': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'stiles': 6,
          'characters': 6,
          'prinze': 5,
          'couple': 5,
          'porn': 5,
          'film': 4,
          'seems': 3,
          'know': 3,
          'make': 3,
          'screen': 3,
          'stars': 3,
          'julia': 2,
          'artificial': 2,
          'freddie': 2,
          'jr': 2,
          'given': 2,
          'attempt': 2,
          'romantic': 2,
          'comedy': 2,
          'everything': 2,
          'every': 2,
          'college': 2,
          'scenes': 2,
          'song': 2,
          'prinzes': 2,
          'style': 2,
          'cant': 2,
          'exists': 2,
          'logic': 2,
          'stupid': 2,
          'even': 2,
          'mostly': 2,
          'ridiculous': 2,
          'costume': 2,
          'epic': 2,
          'star': 2,
          'shes': 2,
          'going': 2,
          'weak': 2,
          'whole': 2,
          'story': 2,
          'fast': 2,
          'motion': 2,
          'late': 1,
          'lead': 1,
          'female': 1,
          'character': 1,
          'states': 1,
          'greatest': 1,
          'fear': 1,
          'conversation': 1,
          'boyfriend': 1,
          'irony': 1,
          'statement': 1,
          'lost': 1,
          'audience': 1,
          'members': 1,
          'yet': 1,
          'walked': 1,
          'fallen': 1,
          'asleep': 1,
          'otherwise': 1,
          'pathetic': 1,
          'multimillion': 1,
          'dollar': 1,
          'testament': 1,
          'nfilled': 1,
          'motivation': 1,
          'plot': 1,
          'dialogue': 1,
          'ring': 1,
          'fake': 1,
          'shallow': 1,
          'step': 1,
          'unquestionable': 1,
          'disaster': 1,
          'nprinze': 1,
          'plays': 1,
          'student': 1,
          'intent': 1,
          'playing': 1,
          'field': 1,
          'falls': 1,
          'freshman': 1,
          'coed': 1,
          'nat': 1,
          'first': 1,
          'movie': 1,
          'string': 1,
          'along': 1,
          'sole': 1,
          'purpose': 1,
          'outdoing': 1,
          'previous': 1,
          'cute': 1,
          'happy': 1,
          'psychoanalyze': 1,
          'pick': 1,
          'dj': 1,
          'mother': 1,
          'lucie': 1,
          'arnez': 1,
          'explains': 1,
          'needs': 1,
          'smells': 1,
          'shampoo': 1,
          'scratches': 1,
          'chest': 1,
          'morning': 1,
          'let': 1,
          'wants': 1,
          'love': 1,
          'nthen': 1,
          'standard': 1,
          'things': 1,
          'fall': 1,
          'apart': 1,
          'nwhy': 1,
          'nwell': 1,
          'notherwise': 1,
          'live': 1,
          'presumably': 1,
          'happily': 1,
          'ever': 1,
          'ndown': 1,
          'outside': 1,
          'realm': 1,
          'normal': 1,
          'nscenes': 1,
          'connect': 1,
          'often': 1,
          'attempting': 1,
          'sort': 1,
          'surrealism': 1,
          'handled': 1,
          'poorly': 1,
          'comes': 1,
          'random': 1,
          'instead': 1,
          'na': 1,
          'picnic': 1,
          'scene': 1,
          'involving': 1,
          'six': 1,
          'key': 1,
          'bizarre': 1,
          'stretched': 1,
          'people': 1,
          'hanging': 1,
          'together': 1,
          'knowing': 1,
          'unusual': 1,
          'amount': 1,
          'time': 1,
          'dedicated': 1,
          'goat': 1,
          'supporting': 1,
          'remarkably': 1,
          'flat': 1,
          'insultingly': 1,
          'well': 1,
          'nstiles': 1,
          'best': 1,
          'friend': 1,
          'rosario': 1,
          'dawson': 1,
          'pot': 1,
          'head': 1,
          'roommate': 1,
          'shawn': 1,
          'hatosy': 1,
          'girl': 1,
          'crazy': 1,
          'fool': 1,
          'meet': 1,
          'women': 1,
          'zak': 1,
          'orth': 1,
          'selma': 1,
          'blair': 1,
          'nhe': 1,
          'one': 1,
          'famous': 1,
          'frequently': 1,
          'interviewed': 1,
          'television': 1,
          'lecture': 1,
          'circuit': 1,
          'high': 1,
          'budget': 1,
          'porns': 1,
          'shot': 1,
          'nyou': 1,
          'average': 1,
          'idea': 1,
          'gives': 1,
          'reason': 1,
          'appear': 1,
          'different': 1,
          'outfit': 1,
          'everytime': 1,
          'hes': 1,
          'angle': 1,
          'sex': 1,
          'jokes': 1,
          'nshe': 1,
          'slutty': 1,
          'existence': 1,
          'jealous': 1,
          'tempted': 1,
          'nattempts': 1,
          'drama': 1,
          'means': 1,
          'cry': 1,
          'include': 1,
          'pregnancy': 1,
          'scare': 1,
          'big': 1,
          'break': 1,
          'nthese': 1,
          'insipid': 1,
          'forgiving': 1,
          'viewer': 1,
          'would': 1,
          'manipulated': 1,
          'nwhat': 1,
          'happened': 1,
          'cast': 1,
          'full': 1,
          'likable': 1,
          'promising': 1,
          'young': 1,
          'actors': 1,
          'especially': 1,
          'places': 1,
          'nwriterdirector': 1,
          'kris': 1,
          'isacsson': 1,
          'simply': 1,
          'material': 1,
          'seasoned': 1,
          'pros': 1,
          'could': 1,
          'pull': 1,
          'nin': 1,
          'fact': 1,
          'feels': 1,
          'like': 1,
          'reworking': 1,
          'last': 1,
          'years': 1,
          'extremely': 1,
          'unpleasant': 1,
          'us': 1,
          'teen': 1,
          'audiences': 1,
          'direction': 1,
          'filmschoolgrad': 1,
          'obvious': 1,
          'nits': 1,
          'stylish': 1,
          'hugely': 1,
          'self': 1,
          'conscious': 1,
          'way': 1,
          'throws': 1,
          'split': 1,
          'pointless': 1,
          'parody': 1,
          'cops': 1,
          'walking': 1,
          'flashbacks': 1,
          'hilariously': 1,
          'cheesy': 1,
          'airport': 1,
          'meeting': 1,
          'extras': 1,
          'move': 1,
          'moves': 1,
          'extreme': 1,
          'slow': 1,
          'nplus': 1,
          'told': 1,
          'flashback': 1,
          'narrated': 1,
          'directly': 1,
          'addressing': 1,
          'camera': 1,
          'nthis': 1,
          'second': 1,
          'row': 1,
          'following': 1,
          'wing': 1,
          'commander': 1,
          'starring': 1,
          'premiered': 1,
          'aisles': 1,
          'local': 1,
          'blockbuster': 1,
          'likely': 1,
          'saved': 1,
          'fate': 1,
          'due': 1,
          'fluke': 1,
          'success': 1,
          'nif': 1,
          'doesnt': 1,
          'start': 1,
          'making': 1,
          'better': 1,
          'choices': 1,
          'future': 1,
          'films': 1,
          'wont': 1,
          'lucky': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'sex': 5,
          'really': 4,
          'worse': 3,
          'thing': 3,
          'since': 3,
          'body': 3,
          'evidence': 3,
          'first': 3,
          'nand': 3,
          'nthe': 3,
          'eszterhas': 2,
          'stars': 2,
          'woman': 2,
          'accused': 2,
          'older': 2,
          'unless': 2,
          'least': 2,
          'nwhats': 2,
          'well': 2,
          'character': 2,
          'n': 2,
          'also': 2,
          'nhow': 2,
          'know': 2,
          'get': 2,
          'ndont': 2,
          'involves': 2,
          'dull': 2,
          'scenes': 2,
          'courtroom': 2,
          'one': 2,
          'endings': 2,
          'better': 1,
          'appearance': 1,
          'basic': 1,
          'instinct': 1,
          'marketplace': 1,
          'gave': 1,
          'greenlight': 1,
          'whole': 1,
          'slew': 1,
          'overheated': 1,
          'oversexed': 1,
          'underwritten': 1,
          'thrillers': 1,
          'napparently': 1,
          'joe': 1,
          'writer': 1,
          'doesnt': 1,
          'change': 1,
          'wasnt': 1,
          'written': 1,
          'puzzling': 1,
          'eszterhasish': 1,
          'presence': 1,
          'nin': 1,
          'words': 1,
          'dirty': 1,
          'b': 1,
          'stupid': 1,
          'nmadonna': 1,
          'warning': 1,
          'sign': 1,
          'piles': 1,
          'money': 1,
          'apparent': 1,
          'job': 1,
          'lives': 1,
          'houseboat': 1,
          'likes': 1,
          'parade': 1,
          'around': 1,
          'seminaked': 1,
          'presumably': 1,
          'edification': 1,
          'shrimp': 1,
          'nshes': 1,
          'murdered': 1,
          'man': 1,
          'lover': 1,
          'nalready': 1,
          'two': 1,
          'classic': 1,
          'examples': 1,
          'hollywood': 1,
          'sexism': 1,
          'effect': 1,
          'sexual': 1,
          'shes': 1,
          'thirty': 1,
          'looks': 1,
          'usually': 1,
          'exist': 1,
          'sake': 1,
          'studs': 1,
          'filthy': 1,
          'rich': 1,
          'men': 1,
          'confirms': 1,
          'wallows': 1,
          'nmadonnas': 1,
          'forcing': 1,
          'old': 1,
          'goat': 1,
          'knew': 1,
          'darned': 1,
          'heart': 1,
          'condition': 1,
          'yes': 1,
          'obligatory': 1,
          'cracks': 1,
          'cops': 1,
          'died': 1,
          'happy': 1,
          'nthis': 1,
          'leave': 1,
          'scummy': 1,
          'stone': 1,
          'unturned': 1,
          'nanyway': 1,
          'willem': 1,
          'dafoe': 1,
          'good': 1,
          'completely': 1,
          'wasted': 1,
          'lawyer': 1,
          'doomed': 1,
          'run': 1,
          'afoul': 1,
          'madonnas': 1,
          'sexuality': 1,
          'nbecause': 1,
          'set': 1,
          'token': 1,
          'wife': 1,
          'kids': 1,
          'obvious': 1,
          'hes': 1,
          'gon': 1,
          'na': 1,
          'cheat': 1,
          'fess': 1,
          'everything': 1,
          'kicked': 1,
          'house': 1,
          'welcomed': 1,
          'back': 1,
          'anyway': 1,
          'skip': 1,
          'end': 1,
          'yet': 1,
          'getting': 1,
          'warmed': 1,
          'ndafoe': 1,
          'madonna': 1,
          'lot': 1,
          'nmost': 1,
          'erotic': 1,
          'openheart': 1,
          'surgery': 1,
          'goodies': 1,
          'hot': 1,
          'candlewax': 1,
          'always': 1,
          'kink': 1,
          'choice': 1,
          'among': 1,
          'screenwriters': 1,
          'dont': 1,
          'kinky': 1,
          'smashed': 1,
          'light': 1,
          'bulbs': 1,
          'ask': 1,
          'nanother': 1,
          'people': 1,
          'starting': 1,
          'realize': 1,
          'explicit': 1,
          'movies': 1,
          'critically': 1,
          'important': 1,
          'story': 1,
          'insanely': 1,
          'everywhere': 1,
          'stuff': 1,
          'recycled': 1,
          'ninthhand': 1,
          'bad': 1,
          'drama': 1,
          'thriller': 1,
          'business': 1,
          'ridiculous': 1,
          'nasal': 1,
          'spray': 1,
          'bottles': 1,
          'drugs': 1,
          'juergen': 1,
          'prochnow': 1,
          'surly': 1,
          'doctor': 1,
          'ending': 1,
          'another': 1,
          'homage': 1,
          'maybe': 1,
          'almost': 1,
          'see': 1,
          'exact': 1,
          'frame': 1,
          'five': 1,
          'six': 1,
          'various': 1,
          'mess': 1,
          'spliced': 1,
          'director': 1,
          'uli': 1,
          'edel': 1,
          'disappointing': 1,
          'directed': 1,
          'elegiac': 1,
          'powerful': 1,
          'last': 1,
          'exit': 1,
          'brooklyn': 1,
          'christiane': 1,
          'f': 1,
          'everyone': 1,
          'eat': 1,
          'guess': 1,
          'isnt': 1,
          'meal': 1,
          'ticket': 1,
          'leftovers': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'wallace': 4,
          'braveheart': 3,
          'nthe': 3,
          'nit': 3,
          'one': 3,
          'score': 3,
          'freedom': 3,
          'emotional': 3,
          'spartacus': 3,
          'also': 2,
          'horner': 2,
          'nwhat': 2,
          'drags': 2,
          'screenplay': 2,
          'high': 2,
          'production': 2,
          'values': 2,
          'make': 2,
          'nbut': 2,
          'script': 2,
          'paint': 2,
          'speaks': 2,
          'acts': 2,
          'vengeance': 2,
          'english': 2,
          'point': 2,
          'nthis': 2,
          'connection': 2,
          'great': 1,
          'anticipation': 1,
          'sat': 1,
          'view': 1,
          'last': 1,
          'week': 1,
          'premiered': 1,
          'american': 1,
          'cable': 1,
          'academy': 1,
          'award': 1,
          'winning': 1,
          'highly': 1,
          'acclaimed': 1,
          'featured': 1,
          'music': 1,
          'favorite': 1,
          'composers': 1,
          'james': 1,
          'disappointing': 1,
          'overlong': 1,
          'anything': 1,
          'best': 1,
          'picture': 1,
          '1995': 1,
          'abounds': 1,
          'john': 1,
          'tolls': 1,
          'awardwinning': 1,
          'cinematography': 1,
          'graced': 1,
          'edward': 1,
          'zwicks': 1,
          '1994': 1,
          'legends': 1,
          'fall': 1,
          'gorgeous': 1,
          'sort': 1,
          'logistics': 1,
          'wish': 1,
          'assistant': 1,
          'directors': 1,
          'household': 1,
          'names': 1,
          'save': 1,
          'misguided': 1,
          'wishes': 1,
          'central': 1,
          'character': 1,
          'hero': 1,
          'viewers': 1,
          'response': 1,
          'heroism': 1,
          'intellectual': 1,
          'william': 1,
          'producerdirector': 1,
          'mel': 1,
          'gibson': 1,
          'fighting': 1,
          'tyranny': 1,
          'root': 1,
          'wallaces': 1,
          'actions': 1,
          'different': 1,
          'story': 1,
          'nhe': 1,
          'nthough': 1,
          'intellectually': 1,
          'realizes': 1,
          'right': 1,
          'side': 1,
          'paints': 1,
          'unconvincing': 1,
          'portait': 1,
          'bad': 1,
          'king': 1,
          'nwallace': 1,
          'toward': 1,
          'nafter': 1,
          'kicking': 1,
          'scotland': 1,
          'decides': 1,
          'invade': 1,
          'england': 1,
          'evident': 1,
          'complex': 1,
          'example': 1,
          'applies': 1,
          'historically': 1,
          'cinematically': 1,
          'historical': 1,
          'moved': 1,
          'liberating': 1,
          'slaves': 1,
          'sacking': 1,
          'roman': 1,
          'cities': 1,
          'like': 1,
          'competent': 1,
          'performaces': 1,
          'dragged': 1,
          'awful': 1,
          'shame': 1,
          'excellent': 1,
          'part': 1,
          'terrible': 1,
          'nhorners': 1,
          'tries': 1,
          'performances': 1,
          'help': 1,
          'ngibson': 1,
          'portrays': 1,
          'way': 1,
          'audience': 1,
          'relate': 1,
          'identify': 1,
          'films': 1,
          'plot': 1,
          'turns': 1,
          'three': 1,
          'hours': 1,
          'total': 1,
          'waste': 1,
          'time': 1,
          'nneg': 1}),
 Counter({'reeves': 5,
          'spader': 3,
          'along': 3,
          'spaders': 3,
          'watcher': 2,
          'need': 2,
          'killer': 2,
          'keanu': 2,
          'chicago': 2,
          'convincing': 2,
          'sometimes': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'universal': 1,
          'njust': 1,
          'another': 1,
          'lurid': 1,
          'trashy': 1,
          'serial': 1,
          'saga': 1,
          'nthis': 1,
          'time': 1,
          'plays': 1,
          'elusive': 1,
          'homicidal': 1,
          'maniac': 1,
          'engages': 1,
          'gruesome': 1,
          'tickingclock': 1,
          'catandmouse': 1,
          'game': 1,
          'james': 1,
          'burntout': 1,
          'fbi': 1,
          'agent': 1,
          'suffered': 1,
          'traumatic': 1,
          'nervous': 1,
          'breakdown': 1,
          'many': 1,
          'years': 1,
          'job': 1,
          'lapd': 1,
          'nto': 1,
          'taunt': 1,
          'relocated': 1,
          'packs': 1,
          'trusty': 1,
          'piano': 1,
          'wire': 1,
          'moves': 1,
          'nbefore': 1,
          'long': 1,
          'starts': 1,
          'mailing': 1,
          'photographs': 1,
          'lonely': 1,
          'unsuspecting': 1,
          'young': 1,
          'women': 1,
          'intended': 1,
          'windy': 1,
          'city': 1,
          'victims': 1,
          'challenging': 1,
          'police': 1,
          'department': 1,
          'stop': 1,
          'within': 1,
          '24': 1,
          'hours': 1,
          'strikes': 1,
          'nin': 1,
          'midst': 1,
          'murderous': 1,
          'frenzy': 1,
          'theres': 1,
          'psychologist': 1,
          'played': 1,
          'marisa': 1,
          'tomei': 1,
          'even': 1,
          'less': 1,
          'medical': 1,
          'professional': 1,
          'jennifer': 1,
          'lopez': 1,
          'cell': 1,
          'nwriters': 1,
          'david': 1,
          'elliot': 1,
          'clay': 1,
          'ayers': 1,
          'darcy': 1,
          'meyers': 1,
          'firsttime': 1,
          'director': 1,
          'joe': 1,
          'charbanic': 1,
          'helmer': 1,
          'music': 1,
          'videos': 1,
          'band': 1,
          'dogstar': 1,
          'dwell': 1,
          'warped': 1,
          'thrill': 1,
          'methodology': 1,
          'chase': 1,
          'revealing': 1,
          'early': 1,
          'exactly': 1,
          'whodunit': 1,
          'since': 1,
          'says': 1,
          'cop': 1,
          'give': 1,
          'meaning': 1,
          'lives': 1,
          'nplus': 1,
          'explains': 1,
          'stacked': 1,
          'right': 1,
          'top': 1,
          'dont': 1,
          'notice': 1,
          'nafter': 1,
          'sound': 1,
          'effects': 1,
          'tricky': 1,
          'camerawork': 1,
          'muddled': 1,
          'discordant': 1,
          'soundtrack': 1,
          'njames': 1,
          'acting': 1,
          'technique': 1,
          'described': 1,
          'wooden': 1,
          'deadpan': 1,
          'maintains': 1,
          'perpetually': 1,
          'monotone': 1,
          'dude': 1,
          'persona': 1,
          'works': 1,
          'doesnt': 1,
          'nchris': 1,
          'ellis': 1,
          'selfimportant': 1,
          'colleague': 1,
          'cast': 1,
          'member': 1,
          'manages': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'appallingly': 1,
          'awful': 1,
          'amateurish': 1,
          '2': 1,
          'real': 1,
          'torture': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'romance': 4,
          'movies': 4,
          'end': 4,
          'prinze': 4,
          'jr': 4,
          'characters': 4,
          'could': 3,
          'teenage': 2,
          'young': 2,
          'cast': 2,
          'unlikely': 2,
          'scenario': 2,
          'happen': 2,
          'nand': 2,
          'hit': 2,
          'shes': 2,
          'things': 2,
          'hate': 2,
          'nonly': 2,
          'teen': 2,
          'comedy': 2,
          'giggly': 2,
          '12year': 2,
          'old': 2,
          'girls': 2,
          'nin': 2,
          'textbook': 2,
          'chef': 2,
          'julia': 2,
          'stiles': 2,
          'couple': 2,
          'screen': 2,
          'shows': 2,
          'neven': 2,
          'winkler': 2,
          'film': 2,
          'course': 2,
          'featured': 2,
          'would': 2,
          'something': 2,
          'work': 2,
          'ahh': 1,
          'yes': 1,
          'nan': 1,
          'attractive': 1,
          'pitted': 1,
          'guy': 1,
          'always': 1,
          'gets': 1,
          'girl': 1,
          'arrival': 1,
          'breakout': 1,
          'last': 1,
          'year': 1,
          'followed': 1,
          'long': 1,
          'catalogue': 1,
          'imitators': 1,
          'including': 1,
          '10': 1,
          'drive': 1,
          'crazy': 1,
          'genre': 1,
          'previously': 1,
          'life': 1,
          'support': 1,
          'hot': 1,
          'commodity': 1,
          'nalong': 1,
          'comes': 1,
          'folks': 1,
          'miramax': 1,
          'obviously': 1,
          'trying': 1,
          'capitalize': 1,
          'rabid': 1,
          'craze': 1,
          'latest': 1,
          'project': 1,
          'studdly': 1,
          'freddie': 1,
          'attached': 1,
          'doesnt': 1,
          'mentioned': 1,
          'nit': 1,
          'extraordinarily': 1,
          'ordinary': 1,
          'dull': 1,
          'unattractive': 1,
          'sticks': 1,
          'boring': 1,
          'game': 1,
          'plan': 1,
          'accustomed': 1,
          'nthis': 1,
          'kind': 1,
          'find': 1,
          'convincing': 1,
          'strictly': 1,
          'fashion': 1,
          'college': 1,
          'sophomore': 1,
          'aspiring': 1,
          'al': 1,
          'meets': 1,
          'freshman': 1,
          'artist': 1,
          'imogen': 1,
          'nthey': 1,
          'like': 1,
          'nfrom': 1,
          'standard': 1,
          'boymeetsgirl': 1,
          'boylosesgirl': 1,
          'boydrinksentirebottleofshampooandmayormaynotgetgirlback': 1,
          'story': 1,
          'plot': 1,
          'conveniently': 1,
          'assembled': 1,
          'suit': 1,
          'requirements': 1,
          'main': 1,
          'frequently': 1,
          'taking': 1,
          'part': 1,
          'activities': 1,
          'nwell': 1,
          'nfortunately': 1,
          'certain': 1,
          'appeal': 1,
          'nfreddie': 1,
          'adorable': 1,
          'together': 1,
          'radiate': 1,
          'sort': 1,
          'warmth': 1,
          'charisma': 1,
          'movie': 1,
          'centered': 1,
          'around': 1,
          'nzak': 1,
          'orth': 1,
          'newly': 1,
          'realized': 1,
          'porn': 1,
          'star': 1,
          'monk': 1,
          'unmistakable': 1,
          'flair': 1,
          'handling': 1,
          'films': 1,
          'intelligent': 1,
          'dialogue': 1,
          'nrounding': 1,
          'impressive': 1,
          'ensemble': 1,
          'talent': 1,
          'shawn': 1,
          'hatosy': 1,
          'faculty': 1,
          'selma': 1,
          'blair': 1,
          'cruel': 1,
          'intentions': 1,
          'ashton': 1,
          'kutcher': 1,
          'tvs': 1,
          '70s': 1,
          'fonz': 1,
          'henry': 1,
          'epitome': 1,
          'angst': 1,
          'nostalgia': 1,
          'welcome': 1,
          'role': 1,
          'als': 1,
          'dad': 1,
          'host': 1,
          'popular': 1,
          'cooking': 1,
          'program': 1,
          'ray': 1,
          'nmaybe': 1,
          'concept': 1,
          'looked': 1,
          'good': 1,
          'paper': 1,
          'draw': 1,
          'crowd': 1,
          'nas': 1,
          'feature': 1,
          'however': 1,
          'finished': 1,
          'product': 1,
          'bland': 1,
          'tasteless': 1,
          'fluff': 1,
          'occasional': 1,
          'whiff': 1,
          'cuteness': 1,
          'keep': 1,
          'gears': 1,
          'stopping': 1,
          'entirely': 1,
          'nperhaps': 1,
          'worst': 1,
          'funny': 1,
          'jokes': 1,
          'drawn': 1,
          'obvious': 1,
          'sources': 1,
          'resulting': 1,
          'humor': 1,
          'banal': 1,
          'uninspired': 1,
          'often': 1,
          'laughing': 1,
          'others': 1,
          'goofyembarrassing': 1,
          'antics': 1,
          'seemed': 1,
          'far': 1,
          'amused': 1,
          'audience': 1,
          'grown': 1,
          'restless': 1,
          'toward': 1,
          'waited': 1,
          'impatiently': 1,
          'formula': 1,
          'run': 1,
          'one': 1,
          'mildly': 1,
          'clever': 1,
          'segment': 1,
          'fantasy': 1,
          'sequence': 1,
          'called': 1,
          'cooks': 1,
          'cops': 1,
          'takeoff': 1,
          'father': 1,
          'son': 1,
          'storm': 1,
          'houses': 1,
          'cook': 1,
          'decent': 1,
          'meal': 1,
          'needy': 1,
          'families': 1,
          'assistance': 1,
          'fullyarmed': 1,
          'swat': 1,
          'team': 1,
          'nwhen': 1,
          'highlight': 1,
          'reel': 1,
          'know': 1,
          'remaining': 1,
          'leave': 1,
          'desired': 1,
          'order': 1,
          'make': 1,
          'youve': 1,
          'got': 1,
          'show': 1,
          'way': 1,
          'depth': 1,
          'identity': 1,
          'n10': 1,
          'actually': 1,
          'walking': 1,
          'flashcards': 1,
          'result': 1,
          'refreshing': 1,
          'nno': 1,
          'luck': 1,
          'nits': 1,
          'despite': 1,
          'absurd': 1,
          'circumstances': 1,
          'everything': 1,
          'bound': 1,
          'whole': 1,
          'clich': 1,
          'ordeal': 1,
          'nicest': 1,
          'thing': 1,
          'possibly': 1,
          'say': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'virus': 5,
          'one': 4,
          'even': 3,
          'making': 3,
          'last': 3,
          'ship': 3,
          'creature': 3,
          'nthe': 3,
          'type': 2,
          'times': 2,
          'anyone': 2,
          'would': 2,
          'year': 2,
          'another': 2,
          'like': 2,
          'deep': 2,
          'movies': 2,
          'include': 2,
          '1989s': 2,
          'alien': 2,
          'since': 2,
          'doesnt': 2,
          'water': 2,
          'crew': 2,
          'ocean': 2,
          'nafter': 2,
          'electrical': 2,
          'sutherland': 2,
          'jamie': 2,
          'lee': 2,
          'curtis': 2,
          'life': 2,
          'space': 2,
          'nalthough': 2,
          'fairly': 2,
          'money': 2,
          'good': 2,
          'hard': 2,
          'films': 2,
          'cliched': 1,
          'vacuous': 1,
          'recylcled': 1,
          'many': 1,
          'wonder': 1,
          'bother': 1,
          'putting': 1,
          'work': 1,
          'nstrangely': 1,
          'enough': 1,
          'midjanuary': 1,
          'weekend': 1,
          'released': 1,
          'rising': 1,
          'ugly': 1,
          'monster': 1,
          'cruise': 1,
          'liner': 1,
          'nprior': 1,
          'almost': 1,
          'exact': 1,
          'storyline': 1,
          'leviathan': 1,
          'star': 1,
          'six': 1,
          'four': 1,
          'pictures': 1,
          'n': 1,
          'comparison': 1,
          'servicable': 1,
          'thriller': 1,
          'wellmade': 1,
          'produced': 1,
          'moment': 1,
          'remote': 1,
          'originality': 1,
          'intelligence': 1,
          'sinks': 1,
          'weight': 1,
          'shot': 1,
          'nbased': 1,
          'series': 1,
          'comic': 1,
          'books': 1,
          'concerns': 1,
          'salvage': 1,
          'tugboat': 1,
          'becomes': 1,
          'extremely': 1,
          'damaged': 1,
          'violent': 1,
          'typhoon': 1,
          'discovering': 1,
          'boat': 1,
          'slowly': 1,
          'sinking': 1,
          'un': 1,
          'lucky': 1,
          'huge': 1,
          'vessel': 1,
          'appears': 1,
          'dead': 1,
          'turns': 1,
          'within': 1,
          'confines': 1,
          'radar': 1,
          'screen': 1,
          'nonce': 1,
          'team': 1,
          'reaches': 1,
          'russian': 1,
          'go': 1,
          'board': 1,
          'find': 1,
          'place': 1,
          'seemingly': 1,
          'deserted': 1,
          'turning': 1,
          'power': 1,
          'back': 1,
          'however': 1,
          'gradually': 1,
          'signs': 1,
          'something': 1,
          'else': 1,
          'equipment': 1,
          'oddly': 1,
          'working': 1,
          'none': 1,
          'survivor': 1,
          'finally': 1,
          'turn': 1,
          'nadia': 1,
          'joanna': 1,
          'pacula': 1,
          'informs': 1,
          'suicidal': 1,
          'stern': 1,
          'captain': 1,
          'donald': 1,
          'kit': 1,
          'foster': 1,
          'mysterious': 1,
          'form': 1,
          'hit': 1,
          'santi': 1,
          'mir': 1,
          'station': 1,
          'transported': 1,
          'taking': 1,
          'minds': 1,
          'machines': 1,
          'thinking': 1,
          'humans': 1,
          'viruses': 1,
          'completely': 1,
          'wiped': 1,
          'nif': 1,
          'sounds': 1,
          'previously': 1,
          'mentioned': 1,
          'youre': 1,
          'correct': 1,
          'technical': 1,
          'artistry': 1,
          'impressive': 1,
          'bring': 1,
          'mechanical': 1,
          'appear': 1,
          'brain': 1,
          'head': 1,
          'sticks': 1,
          'close': 1,
          'wornout': 1,
          'conventions': 1,
          'genre': 1,
          'amazing': 1,
          'spend': 1,
          'time': 1,
          'filming': 1,
          'could': 1,
          'original': 1,
          'actors': 1,
          'proven': 1,
          'acting': 1,
          'abilities': 1,
          'past': 1,
          'sorely': 1,
          'wasted': 1,
          'really': 1,
          'characters': 1,
          'play': 1,
          'nin': 1,
          'second': 1,
          'return': 1,
          'horror': 1,
          'proves': 1,
          'strong': 1,
          'resourceful': 1,
          'heroine': 1,
          '1998s': 1,
          'halloween': 1,
          'h20': 1,
          'also': 1,
          'disappointment': 1,
          'least': 1,
          'given': 1,
          'scenes': 1,
          'develop': 1,
          'character': 1,
          'unlike': 1,
          'ndonald': 1,
          'fallen': 1,
          'recently': 1,
          'starring': 1,
          'thoroughly': 1,
          'disposable': 1,
          '1994s': 1,
          'puppet': 1,
          'masters': 1,
          'although': 1,
          'watched': 1,
          'superb': 1,
          '1978': 1,
          'scifi': 1,
          'classic': 1,
          'invasion': 1,
          'body': 1,
          'snatchers': 1,
          'fabulous': 1,
          'three': 1,
          'topbillers': 1,
          'william': 1,
          'baldwin': 1,
          'say': 1,
          'picture': 1,
          'nothing': 1,
          'nbasically': 1,
          'group': 1,
          'people': 1,
          'walk': 1,
          'around': 1,
          'investigate': 1,
          'shipocean': 1,
          'linerhaunted': 1,
          'house': 1,
          'deadly': 1,
          'equally': 1,
          'grotesque': 1,
          'slimy': 1,
          'pops': 1,
          'kills': 1,
          'onebyone': 1,
          'nit': 1,
          'worst': 1,
          'far': 1,
          'best': 1,
          'exactly': 1,
          'studios': 1,
          'going': 1,
          'give': 1,
          'recycling': 1,
          'shameless': 1,
          'overdone': 1,
          'plot': 1,
          'gimmicks': 1,
          'nas': 1,
          'long': 1,
          'keep': 1,
          'suspect': 1,
          'answer': 1,
          'never': 1,
          'nneg': 1}),
 Counter({'godzilla': 15,
          'one': 9,
          'film': 6,
          'movie': 6,
          'make': 5,
          'creature': 4,
          'new': 4,
          'city': 4,
          'nthe': 4,
          'character': 4,
          'nwhy': 4,
          'years': 3,
          'called': 3,
          'gojira': 3,
          'three': 3,
          'raymond': 3,
          'burr': 3,
          'emmerich': 3,
          'york': 3,
          'big': 3,
          'reno': 3,
          'could': 3,
          'makes': 3,
          'script': 3,
          'dont': 3,
          'buildings': 3,
          'seem': 3,
          'simply': 3,
          'seems': 3,
          'characters': 3,
          'production': 2,
          'toho': 2,
          'nuclear': 2,
          'testing': 2,
          'later': 2,
          'states': 2,
          'adding': 2,
          'things': 2,
          'name': 2,
          'track': 2,
          'took': 2,
          'rest': 2,
          'world': 2,
          'american': 2,
          'yes': 2,
          'nnow': 2,
          'giant': 2,
          'lizard': 2,
          'first': 2,
          'nin': 2,
          'niko': 2,
          'tatopoulos': 2,
          'mutant': 2,
          'audrey': 2,
          'maria': 2,
          'pitillo': 2,
          'reporter': 2,
          'like': 2,
          'comes': 2,
          'running': 2,
          'bound': 2,
          'azaria': 2,
          'phillipe': 2,
          'jean': 2,
          'whose': 2,
          'attempt': 2,
          'nwith': 2,
          'special': 2,
          'effects': 2,
          'think': 2,
          'much': 2,
          'expect': 2,
          'bad': 2,
          'nits': 2,
          'even': 2,
          'many': 2,
          'well': 2,
          'flying': 2,
          'straight': 2,
          'entire': 2,
          'good': 2,
          'screenplay': 2,
          'way': 2,
          'see': 2,
          'quite': 2,
          'enough': 2,
          'role': 2,
          'nalthough': 2,
          'threat': 2,
          'ends': 2,
          'almost': 2,
          'take': 2,
          'seriously': 2,
          'wanted': 2,
          'action': 2,
          'want': 2,
          'doesnt': 2,
          '40': 1,
          'ago': 1,
          'japanese': 1,
          'company': 1,
          'introduced': 1,
          'land': 1,
          'rising': 1,
          'sun': 1,
          'reptilian': 1,
          'immense': 1,
          'proportions': 1,
          'created': 1,
          'mankinds': 1,
          'npartly': 1,
          'flight': 1,
          'fancy': 1,
          'partly': 1,
          'commentary': 1,
          'exploitation': 1,
          'atomic': 1,
          'power': 1,
          'weaponry': 1,
          'emerged': 1,
          'ocean': 1,
          'terrorize': 1,
          'tokyo': 1,
          'na': 1,
          'year': 1,
          'marketed': 1,
          'united': 1,
          'dubbed': 1,
          'english': 1,
          'nas': 1,
          'nthirty': 1,
          'remade': 1,
          'classic': 1,
          'market': 1,
          'including': 1,
          '1985': 1,
          '14': 1,
          'tohos': 1,
          'remake': 1,
          'director': 1,
          'roland': 1,
          'allowed': 1,
          'run': 1,
          'emmerichs': 1,
          'matthew': 1,
          'broderick': 1,
          'plays': 1,
          'dr': 1,
          'biologist': 1,
          'join': 1,
          'scientists': 1,
          'south': 1,
          'pacific': 1,
          'already': 1,
          'studying': 1,
          'existence': 1,
          'radiationinduced': 1,
          'super': 1,
          'leaves': 1,
          'footprints': 1,
          'size': 1,
          'livingrooms': 1,
          'nwhen': 1,
          'reptile': 1,
          'suddenly': 1,
          'appears': 1,
          'hudson': 1,
          'river': 1,
          'team': 1,
          'relocate': 1,
          'back': 1,
          'nmeanwhile': 1,
          'tatopouloss': 1,
          'college': 1,
          'girlfriend': 1,
          'timmonds': 1,
          'works': 1,
          'assistant': 1,
          'bigtime': 1,
          'news': 1,
          'nshed': 1,
          'ashore': 1,
          'figures': 1,
          'break': 1,
          'nof': 1,
          'course': 1,
          'guy': 1,
          'amok': 1,
          'cross': 1,
          'paths': 1,
          'joined': 1,
          'victor': 1,
          'animal': 1,
          'palotti': 1,
          'hank': 1,
          'audreys': 1,
          'trusty': 1,
          'cameraman': 1,
          'friend': 1,
          'roche': 1,
          'operative': 1,
          'french': 1,
          'government': 1,
          'started': 1,
          'whole': 1,
          'problem': 1,
          'place': 1,
          'ntogether': 1,
          'find': 1,
          'destroy': 1,
          'surprisingly': 1,
          'elusive': 1,
          'resources': 1,
          'cutting': 1,
          'edge': 1,
          'houses': 1,
          'clout': 1,
          'nations': 1,
          'premiere': 1,
          'companies': 1,
          'would': 1,
          'truly': 1,
          'deserving': 1,
          'nhe': 1,
          'didnt': 1,
          'nright': 1,
          'lost': 1,
          'biggest': 1,
          'disappointments': 1,
          'recent': 1,
          'cinematic': 1,
          'history': 1,
          'plot': 1,
          'pretty': 1,
          'dinosaurlike': 1,
          'water': 1,
          'starts': 1,
          'smashing': 1,
          'heroes': 1,
          'figure': 1,
          'thing': 1,
          'rampage': 1,
          'stopped': 1,
          'military': 1,
          'futile': 1,
          'attempts': 1,
          'bring': 1,
          'however': 1,
          'painfully': 1,
          'fraught': 1,
          'lines': 1,
          'corny': 1,
          'belong': 1,
          'bmovies': 1,
          'includes': 1,
          'actions': 1,
          'idiot': 1,
          'stupid': 1,
          'girl': 1,
          'ni': 1,
          'suppose': 1,
          'youve': 1,
          'got': 1,
          'loose': 1,
          'semblance': 1,
          'reality': 1,
          'goes': 1,
          'window': 1,
          'topples': 1,
          'merely': 1,
          'brushing': 1,
          'conveniently': 1,
          'able': 1,
          'leap': 1,
          'atop': 1,
          'others': 1,
          'helicopters': 1,
          'follow': 1,
          'dangerously': 1,
          'lose': 1,
          'sight': 1,
          'easily': 1,
          'keep': 1,
          'little': 1,
          'higher': 1,
          'line': 1,
          'sidewinder': 1,
          'missiles': 1,
          'small': 1,
          'explosive': 1,
          'warheads': 1,
          'blow': 1,
          'miss': 1,
          'mission': 1,
          'bomb': 1,
          'madison': 1,
          'square': 1,
          'garden': 1,
          'carried': 1,
          'f18': 1,
          'fighterbombers': 1,
          'flights': 1,
          'aircraft': 1,
          'always': 1,
          'comprised': 1,
          'multiples': 1,
          'two': 1,
          'nokay': 1,
          'maybe': 1,
          'last': 1,
          'bit': 1,
          'nitpicky': 1,
          'hey': 1,
          'roll': 1,
          'nbroderick': 1,
          'usually': 1,
          'actor': 1,
          'hes': 1,
          'weighed': 1,
          'unexciting': 1,
          'atrocious': 1,
          'fight': 1,
          'every': 1,
          'step': 1,
          'nhank': 1,
          'development': 1,
          'promise': 1,
          'showed': 1,
          'birdcage': 1,
          'nlike': 1,
          'brodericks': 1,
          'azarias': 1,
          'lacking': 1,
          'color': 1,
          'nwhat': 1,
          'really': 1,
          'annoyed': 1,
          'actually': 1,
          'takes': 1,
          'worse': 1,
          'acting': 1,
          'ncasting': 1,
          'must': 1,
          'asleep': 1,
          'bright': 1,
          'spot': 1,
          'oddly': 1,
          'fit': 1,
          'often': 1,
          'comedic': 1,
          'unlike': 1,
          'weve': 1,
          'past': 1,
          'contradictory': 1,
          'unfolding': 1,
          'disaster': 1,
          'brings': 1,
          'style': 1,
          'enjoyable': 1,
          'nunfortunately': 1,
          'said': 1,
          'incongruities': 1,
          'feel': 1,
          'tongueincheek': 1,
          'pay': 1,
          'comical': 1,
          'homage': 1,
          'dozen': 1,
          'films': 1,
          'come': 1,
          'nthis': 1,
          'results': 1,
          'significant': 1,
          'amount': 1,
          'parody': 1,
          'contrasts': 1,
          'sharply': 1,
          'monster': 1,
          'producing': 1,
          'mess': 1,
          'nmost': 1,
          'comic': 1,
          'relief': 1,
          'none': 1,
          'smart': 1,
          'audience': 1,
          'obviously': 1,
          'fun': 1,
          'picture': 1,
          'sink': 1,
          'millions': 1,
          'cgi': 1,
          'ferocity': 1,
          'undermined': 1,
          'humans': 1,
          'threatens': 1,
          'nif': 1,
          'cant': 1,
          'face': 1,
          'empty': 1,
          'care': 1,
          'happens': 1,
          'ngodzilla': 1,
          'pulls': 1,
          'punches': 1,
          'lighthearted': 1,
          'nfar': 1,
          'carnage': 1,
          'theaters': 1,
          'heres': 1,
          'behemoth': 1,
          'ntheres': 1,
          'lot': 1,
          'casualties': 1,
          'instead': 1,
          'afflicted': 1,
          'afterschool': 1,
          'g': 1,
          'njoe': 1,
          'cartoon': 1,
          'syndrome': 1,
          'everyone': 1,
          'get': 1,
          'harms': 1,
          'time': 1,
          'couple': 1,
          'scenes': 1,
          'briefly': 1,
          'breathes': 1,
          'fire': 1,
          'nnone': 1,
          'remark': 1,
          'upon': 1,
          'ability': 1,
          'used': 1,
          'particular': 1,
          'advantage': 1,
          'filmmakers': 1,
          'people': 1,
          'show': 1,
          'old': 1,
          'nconsider': 1,
          'another': 1,
          'punch': 1,
          'pulled': 1,
          'nthrough': 1,
          'creative': 1,
          'writing': 1,
          'sequel': 1,
          'final': 1,
          'scene': 1,
          'leave': 1,
          'door': 1,
          'open': 1,
          'opens': 1,
          'hallway': 1,
          'leading': 1,
          'directly': 1,
          'room': 1,
          'ii': 1,
          'waiting': 1,
          'patiently': 1,
          'nit': 1,
          'made': 1,
          'gag': 1,
          'nemmerich': 1,
          'done': 1,
          'away': 1,
          '90': 1,
          'humor': 1,
          'injokes': 1,
          'played': 1,
          'intelligently': 1,
          'written': 1,
          'nhowever': 1,
          'confusing': 1,
          'viewer': 1,
          'ton': 1,
          'addins': 1,
          'parodies': 1,
          'something': 1,
          'work': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 7,
          'douglas': 7,
          'david': 5,
          'murder': 4,
          'paltrow': 4,
          'stephen': 3,
          'moves': 3,
          'remake': 2,
          'appears': 2,
          'mortensen': 2,
          'interesting': 2,
          'nmortensen': 2,
          'keep': 2,
          'coming': 2,
          'fast': 2,
          'thriller': 2,
          'nalso': 2,
          'talent': 2,
          'better': 2,
          'nhowever': 2,
          'suchet': 2,
          'also': 2,
          'characters': 2,
          'last': 2,
          'perfect': 2,
          'psycho': 1,
          'weve': 1,
          'got': 1,
          'suffer': 1,
          'earlier': 1,
          'hitchcock': 1,
          'dial': 1,
          'nas': 1,
          'usual': 1,
          'hollywood': 1,
          'filled': 1,
          'glitz': 1,
          'big': 1,
          'name': 1,
          'stars': 1,
          'amounts': 1,
          'loud': 1,
          'sounding': 1,
          'nothing': 1,
          'opens': 1,
          'emily': 1,
          'viggo': 1,
          'fun': 1,
          'loft': 1,
          'apartment': 1,
          'problem': 1,
          'married': 1,
          'happy': 1,
          'discovers': 1,
          'affair': 1,
          'nif': 1,
          'though': 1,
          'id': 1,
          'definitely': 1,
          'go': 1,
          'nless': 1,
          'wrinkles': 1,
          'nanyhow': 1,
          'approaches': 1,
          'proposition': 1,
          'hell': 1,
          'pay': 1,
          'kill': 1,
          'lovely': 1,
          'wife': 1,
          'agrees': 1,
          'goes': 1,
          'awry': 1,
          'twists': 1,
          'progresses': 1,
          'nunfortunately': 1,
          'dosent': 1,
          'progress': 1,
          'nin': 1,
          'fact': 1,
          'like': 1,
          'tortoise': 1,
          'arthritis': 1,
          'read': 1,
          'slow': 1,
          'plot': 1,
          'nowhere': 1,
          'becomes': 1,
          'exciting': 1,
          'short': 1,
          'bursts': 1,
          'nnot': 1,
          'good': 1,
          'performances': 1,
          'apart': 1,
          'par': 1,
          'npaltrow': 1,
          'showing': 1,
          'immense': 1,
          'se7en': 1,
          '1995': 1,
          'sliding': 1,
          'doors': 1,
          '1997': 1,
          'strangely': 1,
          'stilted': 1,
          'even': 1,
          'unconvincing': 1,
          'movie': 1,
          'little': 1,
          'bit': 1,
          'across': 1,
          'younger': 1,
          'role': 1,
          'isnt': 1,
          'meaty': 1,
          'enough': 1,
          'show': 1,
          'nwhich': 1,
          'leaves': 1,
          'waltz': 1,
          'away': 1,
          'doubt': 1,
          'finds': 1,
          'hard': 1,
          'play': 1,
          'stogie': 1,
          'smoking': 1,
          'drinking': 1,
          'womanizer': 1,
          'creepy': 1,
          'underside': 1,
          'popping': 1,
          'playing': 1,
          'shifty': 1,
          'looking': 1,
          'detective': 1,
          'nagain': 1,
          'character': 1,
          'seeing': 1,
          'screen': 1,
          'director': 1,
          'bought': 1,
          'us': 1,
          'fugitive': 1,
          'piles': 1,
          'flash': 1,
          'techniques': 1,
          'zoomins': 1,
          'quick': 1,
          'cuts': 1,
          'etc': 1,
          'lighting': 1,
          'looks': 1,
          'cant': 1,
          'save': 1,
          'depths': 1,
          'mediocre': 1,
          'seemed': 1,
          'work': 1,
          'single': 1,
          'set': 1,
          'anyway': 1,
          'screenplay': 1,
          'k': 1,
          'theres': 1,
          'hackneyed': 1,
          'subplot': 1,
          'ruthless': 1,
          'player': 1,
          'wall': 1,
          'street': 1,
          'ending': 1,
          'surprisingly': 1,
          'stupid': 1,
          'cliched': 1,
          'make': 1,
          'incredibly': 1,
          'dumb': 1,
          'especially': 1,
          'lose': 1,
          'intelligence': 1,
          'reel': 1,
          'nwith': 1,
          'combination': 1,
          'tension': 1,
          'drama': 1,
          'decent': 1,
          'failure': 1,
          'round': 1,
          'incredible': 1,
          'disappointment': 1,
          'nthere': 1,
          'bright': 1,
          'moments': 1,
          'far': 1,
          'thing': 1,
          'boring': 1,
          'although': 1,
          'barely': 1,
          'manages': 1,
          'interest': 1,
          'thanks': 1,
          'michael': 1,
          'wouldnt': 1,
          'missing': 1,
          'anything': 1,
          'decided': 1,
          'watch': 1,
          'noverall': 1,
          'rating': 1,
          'nreview': 1,
          'wilcock': 1,
          '1998': 1,
          'n': 1,
          'know': 1,
          'kids': 1,
          'norville': 1,
          'barnes': 1,
          'nneg': 1}),
 Counter({'serial': 3,
          'relentless': 3,
          'dietz': 3,
          'killer': 3,
          'one': 3,
          'movies': 2,
          'deal': 2,
          'killers': 2,
          'detective': 2,
          'sam': 2,
          'leo': 2,
          'rossi': 2,
          '3': 2,
          'vicious': 2,
          'doesnt': 2,
          'old': 2,
          'dietzs': 2,
          'british': 2,
          'lot': 2,
          'similarities': 2,
          'also': 2,
          'nthe': 2,
          'film': 2,
          'career': 2,
          'coinciding': 1,
          'emerging': 1,
          'popularity': 1,
          'anything': 1,
          'related': 1,
          '1989': 1,
          'low': 1,
          'budget': 1,
          'thriller': 1,
          'lapd': 1,
          'played': 1,
          'character': 1,
          'actor': 1,
          'spawned': 1,
          'three': 1,
          'sequels': 1,
          'nrelentless': 1,
          'third': 1,
          'row': 1,
          'features': 1,
          'time': 1,
          'catch': 1,
          'first': 1,
          'case': 1,
          'want': 1,
          'similar': 1,
          'line': 1,
          'work': 1,
          'ndivorced': 1,
          'demoralised': 1,
          'transferred': 1,
          'reluctantly': 1,
          'returns': 1,
          'post': 1,
          'los': 1,
          'angeles': 1,
          'becomes': 1,
          'hunting': 1,
          'ground': 1,
          'another': 1,
          'evidence': 1,
          'indicate': 1,
          'connection': 1,
          'cases': 1,
          'nto': 1,
          'make': 1,
          'things': 1,
          'even': 1,
          'interesting': 1,
          'seems': 1,
          'deliberately': 1,
          'stages': 1,
          'murders': 1,
          'order': 1,
          'bring': 1,
          'investigation': 1,
          'nfans': 1,
          'tv': 1,
          'films': 1,
          'miniseries': 1,
          'like': 1,
          'prime': 1,
          'suspect': 1,
          'cracker': 1,
          'would': 1,
          'probably': 1,
          'see': 1,
          'series': 1,
          'nthey': 1,
          'feature': 1,
          'psychopathic': 1,
          'yet': 1,
          'give': 1,
          'usually': 1,
          'depressive': 1,
          'details': 1,
          'chief': 1,
          'investigators': 1,
          'private': 1,
          'lives': 1,
          'nthis': 1,
          'isnt': 1,
          'exception': 1,
          'television': 1,
          'content': 1,
          'execution': 1,
          'style': 1,
          'different': 1,
          'makes': 1,
          'mediocre': 1,
          'piece': 1,
          'entertainment': 1,
          'best': 1,
          'nuseless': 1,
          'gratuitous': 1,
          'erotica': 1,
          'help': 1,
          'either': 1,
          'obviously': 1,
          'making': 1,
          'longer': 1,
          'actors': 1,
          'good': 1,
          'though': 1,
          'fine': 1,
          'usual': 1,
          'william': 1,
          'forsythe': 1,
          'plays': 1,
          'compelling': 1,
          'villains': 1,
          'nsigny': 1,
          'coleman': 1,
          'love': 1,
          'interest': 1,
          'hand': 1,
          'quite': 1,
          'miscast': 1,
          'nbut': 1,
          'wont': 1,
          'worry': 1,
          'future': 1,
          'since': 1,
          'wasnt': 1,
          'supposed': 1,
          'anybodys': 1,
          'finest': 1,
          'moment': 1,
          'anyway': 1,
          'nneg': 1}),
 Counter({'back': 5,
          'looking': 4,
          'film': 4,
          'town': 4,
          'never': 4,
          'character': 4,
          'much': 4,
          'burns': 3,
          'previous': 3,
          'work': 3,
          'holly': 3,
          'life': 3,
          'nhe': 3,
          'makes': 3,
          'ntheres': 3,
          'edward': 2,
          'picture': 2,
          'boring': 2,
          'without': 2,
          'lauren': 2,
          'michael': 2,
          'jovi': 2,
          'escape': 2,
          'charlie': 2,
          'claudias': 2,
          'old': 2,
          'flame': 2,
          'claudia': 2,
          'nshould': 2,
          'seems': 2,
          'ninety': 2,
          'minutes': 2,
          'rather': 2,
          'whole': 2,
          'role': 2,
          'bad': 2,
          'tackles': 1,
          'third': 1,
          'like': 1,
          'two': 1,
          'workingclass': 1,
          'relationship': 1,
          'nhowever': 1,
          'unlike': 1,
          'dwells': 1,
          'personal': 1,
          'story': 1,
          'female': 1,
          'protagonist': 1,
          'nand': 1,
          'stumbles': 1,
          'making': 1,
          'slow': 1,
          'spark': 1,
          'enlivened': 1,
          'nclaudia': 1,
          'small': 1,
          'waitress': 1,
          'feeling': 1,
          'stifled': 1,
          'nshes': 1,
          'turning': 1,
          'point': 1,
          'feels': 1,
          'shes': 1,
          'going': 1,
          'nowhere': 1,
          'nher': 1,
          'boyfriend': 1,
          'jon': 1,
          'bon': 1,
          'broke': 1,
          'dead': 1,
          'end': 1,
          'job': 1,
          'nif': 1,
          'marry': 1,
          'shed': 1,
          'get': 1,
          'chance': 1,
          'nenter': 1,
          'skipped': 1,
          'several': 1,
          'years': 1,
          'explanations': 1,
          'even': 1,
          'nfor': 1,
          'come': 1,
          'see': 1,
          'suddenly': 1,
          'torn': 1,
          'stay': 1,
          'stable': 1,
          'hometown': 1,
          'ignore': 1,
          'instincts': 1,
          'fall': 1,
          'npart': 1,
          'answer': 1,
          'lies': 1,
          'mother': 1,
          'blythe': 1,
          'danner': 1,
          'fell': 1,
          'wrong': 1,
          'man': 1,
          'spent': 1,
          'pining': 1,
          'father': 1,
          'return': 1,
          'nnow': 1,
          'make': 1,
          'mistakes': 1,
          'nat': 1,
          'little': 1,
          'past': 1,
          'short': 1,
          'genre': 1,
          'nunfortunately': 1,
          'longer': 1,
          'nthe': 1,
          'storyline': 1,
          'simple': 1,
          'uninspired': 1,
          'theres': 1,
          'lack': 1,
          'energy': 1,
          'proceedings': 1,
          'entire': 1,
          'drama': 1,
          'tedious': 1,
          'nedward': 1,
          'misstep': 1,
          'casting': 1,
          'crucial': 1,
          'egomaniacal': 1,
          'one': 1,
          'restrain': 1,
          'ego': 1,
          'reigns': 1,
          'unchecked': 1,
          'walks': 1,
          'room': 1,
          'swoons': 1,
          'yeah': 1,
          'nright': 1,
          'nlauren': 1,
          'central': 1,
          'nbut': 1,
          'understand': 1,
          'pathetically': 1,
          'decisions': 1,
          'nwe': 1,
          'really': 1,
          'care': 1,
          'nbon': 1,
          'sympathetic': 1,
          'movie': 1,
          'nhis': 1,
          'acting': 1,
          'talents': 1,
          'greater': 1,
          'might': 1,
          'seem': 1,
          'given': 1,
          'mostly': 1,
          'bland': 1,
          'ineffective': 1,
          'recommend': 1,
          'nits': 1,
          'nsimply': 1,
          'zest': 1,
          'aspect': 1,
          'reason': 1,
          'spend': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'nthe': 11,
          'one': 7,
          'love': 7,
          'family': 7,
          'professor': 6,
          'murphy': 5,
          'movie': 5,
          'klumps': 5,
          'sherman': 5,
          'buddy': 4,
          'first': 4,
          'like': 4,
          'people': 4,
          'eddie': 3,
          'bad': 3,
          'man': 3,
          'film': 3,
          'nutty': 3,
          'become': 3,
          'every': 3,
          'nits': 3,
          'five': 3,
          'story': 3,
          'around': 3,
          'days': 2,
          'studio': 2,
          'make': 2,
          'films': 2,
          'life': 2,
          'comedic': 2,
          'shame': 2,
          'klump': 2,
          'university': 2,
          'nsherman': 2,
          'short': 2,
          'time': 2,
          'nwith': 2,
          'act': 2,
          'dna': 2,
          'beaker': 2,
          'nbut': 2,
          'breasts': 2,
          'jokes': 2,
          'enough': 2,
          'lost': 2,
          'minutes': 2,
          'nand': 2,
          'really': 2,
          'special': 2,
          'scene': 2,
          'scenes': 2,
          'weitz': 2,
          'last': 2,
          'american': 2,
          'ignorant': 2,
          'anything': 2,
          'character': 2,
          'type': 2,
          'worked': 2,
          'conversations': 2,
          'sequel': 2,
          'pathetic': 2,
          'effects': 2,
          'cant': 2,
          'dont': 1,
          'expect': 1,
          'much': 1,
          'nfor': 1,
          'past': 1,
          'four': 1,
          'years': 1,
          'gods': 1,
          'cinemaor': 1,
          'expansive': 1,
          'payrolls': 1,
          'conglomerateshave': 1,
          'allowed': 1,
          'another': 1,
          'nsuch': 1,
          'metro': 1,
          'doctor': 1,
          'dolittle': 1,
          'holy': 1,
          'bowfinger': 1,
          'reduced': 1,
          'great': 1,
          'persona': 1,
          'living': 1,
          'breathing': 1,
          'washedup': 1,
          'hack': 1,
          'performing': 1,
          'puppet': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'universal': 1,
          'pictures': 1,
          'biggest': 1,
          'fall': 1,
          'shoulders': 1,
          'newest': 1,
          'ii': 1,
          'revisits': 1,
          'overweight': 1,
          'science': 1,
          'looking': 1,
          'wrong': 1,
          'places': 1,
          'invented': 1,
          'new': 1,
          'youth': 1,
          'drink': 1,
          'enables': 1,
          'beast': 1,
          'younger': 1,
          'period': 1,
          'njanet': 1,
          'jackson': 1,
          'interest': 1,
          'chooses': 1,
          'lovable': 1,
          'soul': 1,
          'mate': 1,
          'rather': 1,
          'excel': 1,
          'career': 1,
          'ridiculous': 1,
          'reasons': 1,
          'mind': 1,
          'determined': 1,
          'rid': 1,
          'alter': 1,
          'ego': 1,
          'still': 1,
          'resides': 1,
          'vigor': 1,
          'inside': 1,
          'psyche': 1,
          'causes': 1,
          'imitation': 1,
          'vince': 1,
          'vaughn': 1,
          'swingers': 1,
          'convoluted': 1,
          'mumbojumbo': 1,
          'extraction': 1,
          'extracts': 1,
          'link': 1,
          'smartly': 1,
          'deposits': 1,
          'handydandy': 1,
          'lab': 1,
          'night': 1,
          'knocked': 1,
          'regenerated': 1,
          'nbecause': 1,
          'needs': 1,
          'unnecessary': 1,
          'villain': 1,
          'thwart': 1,
          'good': 1,
          'guy': 1,
          'nthen': 1,
          'played': 1,
          'step': 1,
          'relief': 1,
          'involving': 1,
          'old': 1,
          'sex': 1,
          'flabby': 1,
          'slew': 1,
          'fart': 1,
          'dick': 1,
          'fat': 1,
          'count': 1,
          'thirty': 1,
          'mention': 1,
          'part': 1,
          'larry': 1,
          'miller': 1,
          'gets': 1,
          'anally': 1,
          'raped': 1,
          'overgrown': 1,
          'hamster': 1,
          'finally': 1,
          'dissolves': 1,
          'hallmark': 1,
          'realizing': 1,
          'world': 1,
          'soft': 1,
          'lighting': 1,
          'verge': 1,
          'tears': 1,
          'npure': 1,
          'simple': 1,
          'failure': 1,
          'script': 1,
          'handled': 1,
          'screenwriters': 1,
          'shows': 1,
          'awkward': 1,
          'transitions': 1,
          'nany': 1,
          'sense': 1,
          'plot': 1,
          'rewrite': 1,
          'process': 1,
          'discerning': 1,
          'learn': 1,
          'chris': 1,
          'paul': 1,
          'team': 1,
          'behind': 1,
          'funniest': 1,
          'decade': 1,
          'pie': 1,
          'names': 1,
          'stamped': 1,
          'trash': 1,
          'nhey': 1,
          'guys': 1,
          'quick': 1,
          'note': 1,
          'keep': 1,
          'resumes': 1,
          'characterization': 1,
          'shermans': 1,
          'stereotypes': 1,
          'black': 1,
          'ever': 1,
          'seen': 1,
          'cinema': 1,
          'neveryone': 1,
          'member': 1,
          'large': 1,
          'person': 1,
          'wipes': 1,
          'bins': 1,
          'clean': 1,
          'local': 1,
          'buffet': 1,
          'restaurant': 1,
          'pigs': 1,
          'trough': 1,
          'grandma': 1,
          'oversexed': 1,
          'fiend': 1,
          'constantly': 1,
          'talks': 1,
          'ways': 1,
          'pleasure': 1,
          'sagging': 1,
          'father': 1,
          'gruff': 1,
          'fired': 1,
          'bluecollar': 1,
          'job': 1,
          'sexually': 1,
          'inadequate': 1,
          'communicate': 1,
          'feelings': 1,
          'mother': 1,
          'negativity': 1,
          'seems': 1,
          'hold': 1,
          'opinion': 1,
          'anyone': 1,
          'brother': 1,
          'silent': 1,
          'brooding': 1,
          'resembles': 1,
          'ice': 1,
          'cube': 1,
          'gangster': 1,
          'boyz': 1,
          'hood': 1,
          'terribly': 1,
          'insecure': 1,
          'never': 1,
          'conveys': 1,
          'audience': 1,
          'attached': 1,
          'main': 1,
          'problem': 1,
          'inability': 1,
          'create': 1,
          'convincing': 1,
          'conversational': 1,
          'situational': 1,
          'comedy': 1,
          'well': 1,
          'direct': 1,
          'got': 1,
          'feeling': 1,
          'crass': 1,
          'couldnt': 1,
          'reverse': 1,
          'drives': 1,
          'negatives': 1,
          'right': 1,
          'hilt': 1,
          'making': 1,
          'interaction': 1,
          'enjoyable': 1,
          '55': 1,
          'unbearable': 1,
          'nafter': 1,
          'barrage': 1,
          'frustrated': 1,
          'anger': 1,
          'tinged': 1,
          'indecency': 1,
          'overworked': 1,
          'premises': 1,
          'end': 1,
          'drawing': 1,
          'energy': 1,
          'away': 1,
          'empathy': 1,
          'might': 1,
          'feel': 1,
          'central': 1,
          'themes': 1,
          'also': 1,
          'damn': 1,
          'makeup': 1,
          'magic': 1,
          'rick': 1,
          'baker': 1,
          'original': 1,
          'academy': 1,
          'award': 1,
          'work': 1,
          'werewolf': 1,
          'london': 1,
          'amazing': 1,
          'digital': 1,
          'enabled': 1,
          'interact': 1,
          'beautiful': 1,
          'motions': 1,
          'built': 1,
          'lame': 1,
          'line': 1,
          'neven': 1,
          'best': 1,
          'seem': 1,
          'save': 1,
          'movies': 1,
          'nnow': 1,
          'think': 1,
          'worst': 1,
          'thing': 1,
          'money': 1,
          'npeople': 1,
          'lined': 1,
          'block': 1,
          'studios': 1,
          'concoct': 1,
          'release': 1,
          'summer': 1,
          '2002': 1,
          'neddie': 1,
          'signed': 1,
          'take': 1,
          'role': 1,
          'roles': 1,
          'hell': 1,
          'play': 1,
          'ni': 1,
          'wait': 1,
          'see': 1,
          'nneg': 1}),
 Counter({'film': 12,
          'nthe': 5,
          'characters': 4,
          'quickly': 4,
          'de': 3,
          'palma': 3,
          'good': 3,
          'story': 3,
          'cage': 3,
          'flashbacks': 3,
          'doesnt': 3,
          'big': 3,
          'end': 3,
          'bought': 2,
          'bring': 2,
          'nnic': 2,
          'santaro': 2,
          'kevin': 2,
          'dunne': 2,
          'sinise': 2,
          'place': 2,
          'tries': 2,
          'together': 2,
          'work': 2,
          'mystery': 2,
          'nhowever': 2,
          'dead': 2,
          'start': 2,
          'problem': 2,
          'gary': 2,
          'use': 2,
          'nthey': 2,
          'boring': 2,
          'completely': 2,
          'theres': 2,
          'character': 2,
          'becomes': 2,
          'throughout': 2,
          'way': 2,
          'nwhile': 2,
          'certainly': 2,
          'suspense': 2,
          'thriller': 2,
          'rather': 2,
          'snake': 2,
          'eyes': 2,
          'case': 2,
          'brian': 1,
          'director': 1,
          'us': 1,
          'carrie': 1,
          'dressed': 1,
          'kill': 1,
          'mission': 1,
          'impossible': 1,
          'back': 1,
          'technical': 1,
          'expertise': 1,
          'nsadly': 1,
          'forget': 1,
          'believable': 1,
          'plays': 1,
          'rick': 1,
          'fast': 1,
          'talking': 1,
          'cop': 1,
          'watching': 1,
          'boxing': 1,
          'match': 1,
          'friend': 1,
          'commander': 1,
          'nan': 1,
          'assassination': 1,
          'takes': 1,
          'peace': 1,
          'took': 1,
          'trying': 1,
          'roles': 1,
          'people': 1,
          'involved': 1,
          'conspiracy': 1,
          'uses': 1,
          'video': 1,
          'cameras': 1,
          'keep': 1,
          'long': 1,
          'secret': 1,
          'concerning': 1,
          'nalthough': 1,
          'fantastic': 1,
          'shots': 1,
          'including': 1,
          '15': 1,
          'minute': 1,
          'steadicam': 1,
          'shot': 1,
          'halfway': 1,
          'drops': 1,
          'strong': 1,
          'nhe': 1,
          'offshoot': 1,
          'flashy': 1,
          'camera': 1,
          'techniques': 1,
          'pretty': 1,
          'soon': 1,
          'effect': 1,
          'audience': 1,
          'got': 1,
          'bored': 1,
          'try': 1,
          'inject': 1,
          'life': 1,
          'poorly': 1,
          'realised': 1,
          'faceless': 1,
          'unlikeable': 1,
          'nyes': 1,
          'another': 1,
          'noone': 1,
          'root': 1,
          'nwere': 1,
          'supposed': 1,
          'cages': 1,
          'side': 1,
          'nicer': 1,
          'change': 1,
          'sadly': 1,
          'unbelievable': 1,
          'npoor': 1,
          'sinises': 1,
          'terrible': 1,
          'changes': 1,
          'middle': 1,
          'appalling': 1,
          'films': 1,
          'flashback': 1,
          'gets': 1,
          'clever': 1,
          'interesting': 1,
          'first': 1,
          'times': 1,
          'apparent': 1,
          'used': 1,
          'nowhere': 1,
          'go': 1,
          'dont': 1,
          'increase': 1,
          'tension': 1,
          'movie': 1,
          'nthere': 1,
          'small': 1,
          'thread': 1,
          'running': 1,
          'make': 1,
          'powerhouse': 1,
          'slightly': 1,
          'average': 1,
          'one': 1,
          'script': 1,
          'lousy': 1,
          'contrived': 1,
          'flat': 1,
          'two': 1,
          'dimensional': 1,
          'ncertainly': 1,
          'factors': 1,
          'passing': 1,
          'depressing': 1,
          'aspect': 1,
          'potential': 1,
          'ntheres': 1,
          'buried': 1,
          'bogged': 1,
          'razzle': 1,
          'dazzle': 1,
          'nit': 1,
          'also': 1,
          'gives': 1,
          'away': 1,
          'far': 1,
          'leaving': 1,
          'twist': 1,
          'performances': 1,
          'intriguing': 1,
          'especially': 1,
          'newcomer': 1,
          'carla': 1,
          'gugino': 1,
          'sexy': 1,
          'number': 1,
          'cruncher': 1,
          'wrapped': 1,
          'altering': 1,
          'fact': 1,
          'terminal': 1,
          'style': 1,
          'substance': 1,
          'unless': 1,
          'youre': 1,
          'fan': 1,
          'either': 1,
          'flash': 1,
          'directing': 1,
          'avoided': 1,
          'na': 1,
          'david': 1,
          'wilcock': 1,
          'review': 1,
          '1998': 1,
          'n': 1,
          'know': 1,
          'kids': 1,
          'norville': 1,
          'barnes': 1,
          'nneg': 1}),
 Counter({'julie': 5,
          'friends': 5,
          'movie': 5,
          'man': 3,
          'get': 3,
          'even': 3,
          'island': 3,
          'nbut': 3,
          'nthe': 3,
          'love': 2,
          'cant': 2,
          'good': 2,
          'shadows': 2,
          'rubber': 2,
          'slicker': 2,
          'hook': 2,
          'know': 2,
          'body': 2,
          'never': 2,
          'njulie': 2,
          'one': 2,
          'college': 2,
          'four': 2,
          'secluded': 2,
          'tyrell': 2,
          'nthis': 2,
          'around': 2,
          'funny': 2,
          'thing': 2,
          'heard': 2,
          'giggling': 2,
          'see': 2,
          'want': 2,
          'say': 2,
          'ni': 2,
          'anniversary': 1,
          'slayings': 1,
          'james': 1,
          'jennifer': 1,
          'hewitt': 1,
          'best': 1,
          'nstill': 1,
          'besieged': 1,
          'nightmarish': 1,
          'memories': 1,
          'responsible': 1,
          'seems': 1,
          'verge': 1,
          'nervous': 1,
          'breakdown': 1,
          'nshe': 1,
          'concentrate': 1,
          'schoolwork': 1,
          'nights': 1,
          'sleep': 1,
          'frightened': 1,
          'blinking': 1,
          'strobe': 1,
          'lights': 1,
          'local': 1,
          'dance': 1,
          'club': 1,
          'neverywhere': 1,
          'looks': 1,
          'sees': 1,
          'visions': 1,
          'hand': 1,
          'nin': 1,
          'first': 1,
          'last': 1,
          'summer': 1,
          'three': 1,
          'accidentally': 1,
          'kill': 1,
          'running': 1,
          'driving': 1,
          'dark': 1,
          'mountain': 1,
          'highway': 1,
          'nto': 1,
          'cover': 1,
          'misdeed': 1,
          'dump': 1,
          'ocean': 1,
          'nhowever': 1,
          'quite': 1,
          'died': 1,
          'returned': 1,
          'hunt': 1,
          'ray': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'survived': 1,
          'make': 1,
          'dismal': 1,
          'sequal': 1,
          'nneeding': 1,
          'desparate': 1,
          'rest': 1,
          'relaxation': 1,
          'elated': 1,
          'learn': 1,
          'roommate': 1,
          'karla': 1,
          'brandy': 1,
          'trip': 1,
          'tropical': 1,
          'naccompanying': 1,
          'two': 1,
          'girls': 1,
          'karlas': 1,
          'overbearing': 1,
          'boyfriend': 1,
          'mehki': 1,
          'phifer': 1,
          'potential': 1,
          'beau': 1,
          'contest': 1,
          'true': 1,
          'resort': 1,
          'filled': 1,
          'skeleton': 1,
          'staff': 1,
          'seemed': 1,
          'like': 1,
          'boat': 1,
          'rejects': 1,
          'nmeanwhile': 1,
          'hotel': 1,
          'practically': 1,
          'deserted': 1,
          'storm': 1,
          'season': 1,
          'begin': 1,
          'presumably': 1,
          'creates': 1,
          'venue': 1,
          'possible': 1,
          'means': 1,
          'neventually': 1,
          'hunted': 1,
          'power': 1,
          'outages': 1,
          'chased': 1,
          'intense': 1,
          'lightning': 1,
          'storms': 1,
          'nas': 1,
          'might': 1,
          'guessed': 1,
          'somewhere': 1,
          'lurk': 1,
          'mysteriously': 1,
          'strange': 1,
          'figure': 1,
          'wearing': 1,
          'wielding': 1,
          'tries': 1,
          'convince': 1,
          'killer': 1,
          'eerie': 1,
          'touch': 1,
          'singing': 1,
          'survive': 1,
          'karaoke': 1,
          'bar': 1,
          'words': 1,
          'scroll': 1,
          'still': 1,
          'chalk': 1,
          'paranoia': 1,
          'count': 1,
          'soon': 1,
          'starts': 1,
          'rise': 1,
          'going': 1,
          'worst': 1,
          'vacation': 1,
          'life': 1,
          'yes': 1,
          'used': 1,
          'word': 1,
          'chortling': 1,
          'maybe': 1,
          'screaming': 1,
          'boils': 1,
          'mindless': 1,
          'slashfest': 1,
          'conjures': 1,
          'amount': 1,
          'wry': 1,
          'wit': 1,
          'quirky': 1,
          'campiness': 1,
          'nthere': 1,
          'isnt': 1,
          'suspense': 1,
          'leads': 1,
          'deaths': 1,
          'nheres': 1,
          'appropriate': 1,
          'example': 1,
          'nknockknock': 1,
          'n': 1,
          'housekeeping': 1,
          'says': 1,
          'diminuitive': 1,
          'cleaning': 1,
          'lady': 1,
          'door': 1,
          'suddenly': 1,
          'opens': 1,
          'nslash': 1,
          'nnext': 1,
          'victim': 1,
          'nis': 1,
          'reason': 1,
          'go': 1,
          'nnot': 1,
          'unless': 1,
          'uninteresting': 1,
          'kids': 1,
          'run': 1,
          'circles': 1,
          '90': 1,
          'minutes': 1,
          'satisfied': 1,
          'thoroughly': 1,
          'irritated': 1,
          'incessantly': 1,
          'ranted': 1,
          'raved': 1,
          'sexual': 1,
          'libido': 1,
          'secretly': 1,
          'wished': 1,
          'filleted': 1,
          'ndid': 1,
          'hooked': 1,
          'nwell': 1,
          'lets': 1,
          'didnt': 1,
          'would': 1,
          'give': 1,
          'film': 1,
          'grade': 1,
          'nneg': 1}),
 Counter({'nthe': 18,
          'film': 13,
          'little': 10,
          'plot': 6,
          'ntheres': 6,
          'boring': 5,
          'episode': 4,
          'script': 4,
          'characters': 4,
          'much': 4,
          'given': 4,
          'lucas': 3,
          'star': 3,
          'wars': 3,
          '1': 3,
          'features': 3,
          'effects': 3,
          'time': 3,
          'movie': 3,
          'confederation': 3,
          'seems': 3,
          'many': 3,
          'darth': 3,
          'make': 3,
          'story': 3,
          'see': 3,
          'evident': 3,
          'even': 3,
          'everyone': 3,
          'lines': 3,
          'trilogy': 2,
          'nice': 2,
          'special': 2,
          'computer': 2,
          'trade': 2,
          'amidala': 2,
          'portman': 2,
          'jedi': 2,
          'knights': 2,
          'neeson': 2,
          'deal': 2,
          'blockade': 2,
          'maul': 2,
          'also': 2,
          'anakin': 2,
          'jake': 2,
          'lloyd': 2,
          'two': 2,
          'hour': 2,
          'exciting': 2,
          'goes': 2,
          'takes': 2,
          'help': 2,
          'speak': 2,
          'audience': 2,
          'root': 2,
          'probably': 2,
          'bad': 2,
          'throughout': 2,
          'cute': 2,
          'doubt': 2,
          'nits': 2,
          'hateful': 2,
          'boy': 2,
          'quickly': 2,
          'possible': 2,
          'provided': 2,
          'jar': 2,
          'end': 2,
          'pod': 2,
          'nothing': 2,
          'serves': 2,
          'purpose': 2,
          'must': 2,
          'actors': 2,
          'bored': 2,
          'chose': 2,
          'delivers': 2,
          'stormtroopers': 2,
          'except': 2,
          'us': 2,
          'affair': 2,
          'wise': 1,
          'start': 1,
          '4': 1,
          'empty': 1,
          'spectacle': 1,
          'nafter': 1,
          'familiar': 1,
          'long': 1,
          'ago': 1,
          'nopening': 1,
          'starts': 1,
          'opening': 1,
          'yellow': 1,
          'crawl': 1,
          'every': 1,
          'game': 1,
          'blocking': 1,
          'supplies': 1,
          'peaceful': 1,
          'planet': 1,
          'naboo': 1,
          'ruled': 1,
          'queen': 1,
          'quigon': 1,
          'obi': 1,
          'wan': 1,
          'mcgregor': 1,
          'sent': 1,
          'negotiate': 1,
          'stop': 1,
          'nhowever': 1,
          'simple': 1,
          'soon': 1,
          'dangers': 1,
          'including': 1,
          'facing': 1,
          'evil': 1,
          'ray': 1,
          'park': 1,
          'nthey': 1,
          'meet': 1,
          'future': 1,
          'vadar': 1,
          'skywalker': 1,
          'nstar': 1,
          'largely': 1,
          'failure': 1,
          'major': 1,
          'areas': 1,
          'filmmaking': 1,
          'direction': 1,
          'desperately': 1,
          'tries': 1,
          'thin': 1,
          'epic': 1,
          'death': 1,
          'drama': 1,
          'becomes': 1,
          'nonexistent': 1,
          'underlying': 1,
          'tension': 1,
          'urgent': 1,
          'need': 1,
          'outcome': 1,
          'leisurely': 1,
          'pace': 1,
          'telling': 1,
          'doesnt': 1,
          'snap': 1,
          'work': 1,
          'moves': 1,
          'plod': 1,
          'morals': 1,
          'especially': 1,
          'anakins': 1,
          'mother': 1,
          'group': 1,
          'spirit': 1,
          'profound': 1,
          'statements': 1,
          'bark': 1,
          'orders': 1,
          'going': 1,
          'happen': 1,
          'leads': 1,
          'hideously': 1,
          'static': 1,
          'nquigon': 1,
          'obiwan': 1,
          'hold': 1,
          'presence': 1,
          'give': 1,
          'warm': 1,
          'guy': 1,
          'screen': 1,
          'nmaul': 1,
          'one': 1,
          'underused': 1,
          'guys': 1,
          'history': 1,
          'provide': 1,
          'straight': 1,
          'line': 1,
          'plots': 1,
          'concluded': 1,
          'nanakin': 1,
          'annoying': 1,
          'unlikeable': 1,
          'ninstead': 1,
          'huggable': 1,
          'intended': 1,
          'surprising': 1,
          'unfortunately': 1,
          'blessed': 1,
          'ani': 1,
          'knows': 1,
          'joins': 1,
          'dark': 1,
          'side': 1,
          'kills': 1,
          'comedy': 1,
          'relief': 1,
          'supposedly': 1,
          'gangly': 1,
          'brinks': 1,
          'although': 1,
          'none': 1,
          'nalthough': 1,
          'floppy': 1,
          'great': 1,
          'stuffed': 1,
          'toys': 1,
          'actions': 1,
          'painfully': 1,
          'unfunny': 1,
          'good': 1,
          'laugh': 1,
          'tongue': 1,
          'burned': 1,
          'racer': 1,
          'knew': 1,
          'wouldnt': 1,
          'able': 1,
          'talk': 1,
          'nqueen': 1,
          'real': 1,
          'apart': 1,
          'fact': 1,
          'serve': 1,
          'people': 1,
          'go': 1,
          'googoo': 1,
          'nagain': 1,
          'role': 1,
          'become': 1,
          'important': 1,
          'later': 1,
          'episodes': 1,
          'dont': 1,
          'either': 1,
          'nliam': 1,
          'embarrassed': 1,
          'desperate': 1,
          'leave': 1,
          'nmcgregor': 1,
          'comes': 1,
          'across': 1,
          'posh': 1,
          'mothers': 1,
          'charm': 1,
          'casting': 1,
          'director': 1,
          'hes': 1,
          'scottish': 1,
          'like': 1,
          'alec': 1,
          'guinness': 1,
          'theres': 1,
          'explanation': 1,
          'nnatalie': 1,
          'plagued': 1,
          'hideous': 1,
          'costumes': 1,
          'poor': 1,
          'spunky': 1,
          'performance': 1,
          'nand': 1,
          'looks': 1,
          'eyes': 1,
          'voice': 1,
          'talent': 1,
          'hard': 1,
          'better': 1,
          'child': 1,
          'nhes': 1,
          'main': 1,
          'claim': 1,
          'okay': 1,
          'impressive': 1,
          'yet': 1,
          'complement': 1,
          'well': 1,
          'cgi': 1,
          'away': 1,
          'human': 1,
          'element': 1,
          'however': 1,
          'battle': 1,
          'droids': 1,
          'example': 1,
          'replacement': 1,
          'characterless': 1,
          'graphics': 1,
          'lacking': 1,
          'humour': 1,
          'humanness': 1,
          'came': 1,
          'nepisode': 1,
          'disappointing': 1,
          'got': 1,
          'high': 1,
          'production': 1,
          'values': 1,
          'else': 1,
          'music': 1,
          'meandering': 1,
          'near': 1,
          'gives': 1,
          'noone': 1,
          'care': 1,
          'dull': 1,
          'half': 1,
          'longer': 1,
          'air': 1,
          'manufacturing': 1,
          'among': 1,
          'whole': 1,
          'sorry': 1,
          'clich': 1,
          'catered': 1,
          'napart': 1,
          'remotely': 1,
          'race': 1,
          'sequence': 1,
          'dry': 1,
          'money': 1,
          'get': 1,
          'watch': 1,
          '2': 1,
          'happens': 1,
          'unfinished': 1,
          'ndisappointing': 1,
          'barely': 1,
          'word': 1,
          'nrating': 1,
          'nneg': 1}),
 Counter({'film': 17,
          'nthe': 14,
          'one': 7,
          'story': 5,
          'girls': 4,
          'big': 4,
          'also': 4,
          'get': 4,
          'two': 4,
          'completely': 4,
          'line': 4,
          'actress': 4,
          'nim': 3,
          'many': 3,
          'point': 3,
          'obviously': 3,
          'box': 2,
          'gets': 2,
          'see': 2,
          'watching': 2,
          'sorority': 2,
          'house': 2,
          'massacre': 2,
          '2': 2,
          'r': 2,
          'actresses': 2,
          'ketchum': 2,
          'like': 2,
          'actors': 2,
          'could': 2,
          'well': 2,
          'lost': 2,
          'effects': 2,
          'got': 2,
          'ridiculous': 2,
          'good': 2,
          'make': 2,
          'every': 2,
          'folks': 2,
          'script': 2,
          'thing': 2,
          'along': 2,
          'gun': 2,
          'nthis': 2,
          'nnow': 2,
          'viewers': 2,
          'department': 2,
          'nin': 2,
          'five': 1,
          'spend': 1,
          'day': 1,
          'closed': 1,
          'building': 1,
          'inventory': 1,
          'strange': 1,
          'delivered': 1,
          'starting': 1,
          'sound': 1,
          'familiar': 1,
          'mistake': 1,
          'accidentlly': 1,
          'open': 1,
          'surprise': 1,
          'huh': 1,
          'release': 1,
          'evil': 1,
          'spirit': 1,
          'killer': 1,
          'kills': 1,
          'betcha': 1,
          'didnt': 1,
          'coming': 1,
          'nhard': 1,
          'die': 1,
          'found': 1,
          'sequel': 1,
          'nightie': 1,
          'nightmare': 1,
          'n1521': 1,
          'ntwo': 1,
          'robyn': 1,
          'harris': 1,
          'melissa': 1,
          'moore': 1,
          'play': 1,
          'different': 1,
          'characters': 1,
          'norville': 1,
          'back': 1,
          'ready': 1,
          'orville': 1,
          'yes': 1,
          'character': 1,
          'number': 1,
          'nyes': 1,
          'built': 1,
          'tank': 1,
          'telling': 1,
          'nuclear': 1,
          'bomb': 1,
          'detonated': 1,
          'next': 1,
          'man': 1,
          'wouldnt': 1,
          'harm': 1,
          'mentioned': 1,
          'three': 1,
          'part': 1,
          'thought': 1,
          'act': 1,
          'seemed': 1,
          'ability': 1,
          'nthankfully': 1,
          'sanity': 1,
          'saw': 1,
          'warlock': 1,
          'undid': 1,
          'ill': 1,
          'elements': 1,
          'cheapo': 1,
          'low': 1,
          'budget': 1,
          'horror': 1,
          'flicks': 1,
          'nany': 1,
          'moments': 1,
          'fails': 1,
          'even': 1,
          'destroyed': 1,
          'pathetically': 1,
          'predictable': 1,
          'moment': 1,
          'already': 1,
          'figured': 1,
          'analyzed': 1,
          'discarded': 1,
          'happens': 1,
          'nthere': 1,
          'suspense': 1,
          'ever': 1,
          'afoot': 1,
          'nwhile': 1,
          'subject': 1,
          'provides': 1,
          'chance': 1,
          'disrobe': 1,
          'goes': 1,
          'extent': 1,
          'putting': 1,
          'shower': 1,
          'managers': 1,
          'office': 1,
          'sorry': 1,
          'unnecessary': 1,
          'hurts': 1,
          'still': 1,
          'possible': 1,
          'pathetic': 1,
          'lines': 1,
          'come': 1,
          'horrible': 1,
          'think': 1,
          'happened': 1,
          'made': 1,
          'went': 1,
          'nhere': 1,
          'example': 1,
          'wonderful': 1,
          'dialog': 1,
          'scene': 1,
          'entered': 1,
          'store': 1,
          'picked': 1,
          'really': 1,
          'dad': 1,
          'used': 1,
          'marine': 1,
          'bet': 1,
          'work': 1,
          'contender': 1,
          'bad': 1,
          'hall': 1,
          'infamy': 1,
          'fast': 1,
          'forward': 1,
          'minutes': 1,
          'plan': 1,
          'presented': 1,
          'none': 1,
          'comment': 1,
          'lot': 1,
          'strategy': 1,
          'involved': 1,
          'afraid': 1,
          'lets': 1,
          'talk': 1,
          'great': 1,
          'special': 1,
          'wasnt': 1,
          'concern': 1,
          'makers': 1,
          'killing': 1,
          'scenes': 1,
          'faked': 1,
          'go': 1,
          'threatening': 1,
          'intelligence': 1,
          'na': 1,
          'girl': 1,
          'hacked': 1,
          'knife': 1,
          'enough': 1,
          'blood': 1,
          'comes': 1,
          'friday': 1,
          '13th': 1,
          'movie': 1,
          'nare': 1,
          'trying': 1,
          'unrealistic': 1,
          'continuity': 1,
          'asleep': 1,
          'shot': 1,
          'cloths': 1,
          'camera': 1,
          'angle': 1,
          'changes': 1,
          'seems': 1,
          'clothing': 1,
          'nvery': 1,
          'impressive': 1,
          'trick': 1,
          'half': 1,
          'nplus': 1,
          'going': 1,
          'places': 1,
          'unintentionally': 1,
          'hilarious': 1,
          'incompetence': 1,
          'behind': 1,
          'makes': 1,
          'incredibly': 1,
          'funny': 1,
          'viewer': 1,
          'enjoyment': 1,
          'nhowever': 1,
          'doesnt': 1,
          'worth': 1,
          'rental': 1,
          'fee': 1,
          'penny': 1,
          'acting': 1,
          'say': 1,
          'thumbs': 1,
          'squared': 1,
          'head': 1,
          'ni': 1,
          'would': 1,
          'normally': 1,
          'detailed': 1,
          'paragraph': 1,
          'topic': 1,
          'nobody': 1,
          'impressed': 1,
          'least': 1,
          'noh': 1,
          'win': 1,
          'lose': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'one': 4,
          'joke': 3,
          'movie': 3,
          'trailer': 3,
          'scenes': 3,
          'storyboards': 3,
          'happy': 2,
          'production': 2,
          'title': 2,
          'stars': 2,
          'fish': 2,
          'tank': 2,
          'home': 2,
          'ndeuce': 2,
          'goes': 2,
          'see': 2,
          'nseen': 2,
          'dvd': 2,
          'diney': 2,
          'original': 2,
          'theatrical': 2,
          '1': 2,
          'comparisons': 2,
          'nthere': 2,
          'first': 1,
          'produced': 1,
          'adam': 1,
          'sandlers': 1,
          'madison': 1,
          'company': 1,
          'clever': 1,
          'eh': 1,
          'essentially': 1,
          'much': 1,
          'like': 1,
          'movies': 1,
          'sandler': 1,
          'nhowever': 1,
          'difference': 1,
          'isnt': 1,
          'funny': 1,
          'nrob': 1,
          'schneider': 1,
          'character': 1,
          'scruffy': 1,
          'cleaner': 1,
          'ends': 1,
          'becoming': 1,
          'manwhore': 1,
          'raise': 1,
          'enough': 1,
          'money': 1,
          'replace': 1,
          'wealthy': 1,
          'clients': 1,
          'custom': 1,
          'made': 1,
          'deuce': 1,
          'destroyed': 1,
          'staying': 1,
          'numerous': 1,
          'dates': 1,
          'woman': 1,
          'humorous': 1,
          'quirk': 1,
          'none': 1,
          'narcolepsy': 1,
          'tourettes': 1,
          'syndrome': 1,
          'man': 1,
          'netc': 1,
          'etc': 1,
          'nmy': 1,
          'problem': 1,
          'women': 1,
          'films': 1,
          'need': 1,
          'watch': 1,
          'nonly': 1,
          'quick': 1,
          'cameo': 1,
          'norm': 1,
          'macdonald': 1,
          'follow': 1,
          'closing': 1,
          'credits': 1,
          'generates': 1,
          'chuckles': 1,
          'bigalow': 1,
          'male': 1,
          'gigolo': 1,
          'available': 1,
          'touchstone': 1,
          'video': 1,
          'division': 1,
          'nthe': 1,
          'disc': 1,
          'includes': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'features': 1,
          'well': 1,
          'trailers': 1,
          'mystery': 1,
          'alaska': 1,
          'texas': 1,
          'outside': 1,
          'providence': 1,
          'extremely': 1,
          'brief': 1,
          'featurette': 1,
          'contains': 1,
          'footage': 1,
          'used': 1,
          'storyboardtoscene': 1,
          'nyep': 1,
          'read': 1,
          'right': 1,
          'storyboard': 1,
          'ntwo': 1,
          'storyboarded': 1,
          'nneither': 1,
          'particularly': 1,
          'exciting': 1,
          'fight': 1,
          'arent': 1,
          'seeing': 1,
          'segments': 1,
          'especially': 1,
          'parody': 1,
          'moments': 1,
          'matrix': 1,
          'ni': 1,
          'wonder': 1,
          'whats': 1,
          'funnier': 1,
          'fact': 1,
          'moment': 1,
          'required': 1,
          'thought': 1,
          'fans': 1,
          'would': 1,
          'want': 1,
          'ndeleted': 1,
          'nsure': 1,
          'naudio': 1,
          'commentary': 1,
          'nyou': 1,
          'betcha': 1,
          'nbut': 1,
          'ncome': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'plates': 7,
          'tectonic': 4,
          'nthe': 4,
          'movie': 3,
          'play': 3,
          'lapage': 3,
          'ntectonic': 3,
          'although': 3,
          'madeleine': 3,
          'jacques': 3,
          'motion': 2,
          'picture': 2,
          'minutes': 2,
          'film': 2,
          'never': 2,
          'robert': 2,
          'like': 2,
          'art': 2,
          'seen': 2,
          'uninteresting': 2,
          'pretentious': 2,
          'characters': 2,
          'anything': 2,
          'trying': 2,
          'something': 2,
          'different': 2,
          'montreal': 2,
          'love': 2,
          'venice': 2,
          'topless': 2,
          'goddess': 2,
          'point': 2,
          'else': 2,
          'incredibly': 1,
          'painful': 1,
          'experience': 1,
          'nearly': 1,
          'prompted': 1,
          'walk': 1,
          '20': 1,
          'opened': 1,
          'canada': 1,
          '1992': 1,
          'released': 1,
          'united': 1,
          'states': 1,
          'based': 1,
          '1988': 1,
          'stage': 1,
          'canadian': 1,
          'auteur': 1,
          'evident': 1,
          'could': 1,
          'fascinating': 1,
          'live': 1,
          'production': 1,
          'translation': 1,
          'screen': 1,
          'creative': 1,
          'disaster': 1,
          'nenduring': 1,
          'sitting': 1,
          'filmed': 1,
          'version': 1,
          'performance': 1,
          'lifeless': 1,
          'tedious': 1,
          'qualities': 1,
          'make': 1,
          'captivating': 1,
          'person': 1,
          'effaced': 1,
          'medium': 1,
          'storyline': 1,
          'narrative': 1,
          'developed': 1,
          'decidedly': 1,
          'nontraditional': 1,
          'fashion': 1,
          'shots': 1,
          'stagebound': 1,
          'intercut': 1,
          'typical': 1,
          'cinematic': 1,
          'sequences': 1,
          'nits': 1,
          'inherently': 1,
          'way': 1,
          'present': 1,
          'despite': 1,
          'valid': 1,
          'complaint': 1,
          'allbutscreaming': 1,
          'look': 1,
          'nart': 1,
          'nalthough': 1,
          'keeps': 1,
          'audience': 1,
          'distanced': 1,
          'nbecause': 1,
          'constantly': 1,
          'made': 1,
          'aware': 1,
          'watching': 1,
          'impossible': 1,
          'accept': 1,
          'individuals': 1,
          'mouthpieces': 1,
          'writers': 1,
          'ideas': 1,
          'ntheyre': 1,
          'real': 1,
          'sympathetic': 1,
          'believable': 1,
          'nim': 1,
          'willing': 1,
          'give': 1,
          'director': 1,
          'peter': 1,
          'mettler': 1,
          'credit': 1,
          'particular': 1,
          'experiment': 1,
          'success': 1,
          'opens': 1,
          'introducing': 1,
          'us': 1,
          'marie': 1,
          'gignac': 1,
          'student': 1,
          'studying': 1,
          'fallen': 1,
          'professor': 1,
          'none': 1,
          'day': 1,
          'disappears': 1,
          'fearing': 1,
          'left': 1,
          'undeserving': 1,
          'travels': 1,
          'kill': 1,
          'nwhile': 1,
          'preparing': 1,
          'commit': 1,
          'suicide': 1,
          'encounters': 1,
          'drug': 1,
          'addict': 1,
          'constance': 1,
          'celine': 1,
          'bonnier': 1,
          'causes': 1,
          'rethink': 1,
          'decision': 1,
          'nmeanwhile': 1,
          'moved': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'starts': 1,
          'crossdressing': 1,
          'calls': 1,
          'jennifer': 1,
          'becomes': 1,
          'successful': 1,
          'counterculture': 1,
          'talkshow': 1,
          'host': 1,
          'nwith': 1,
          'settings': 1,
          'shift': 1,
          'paris': 1,
          'manhattan': 1,
          'scotland': 1,
          'supporting': 1,
          'include': 1,
          'deafmute': 1,
          'cultural': 1,
          'references': 1,
          'chopin': 1,
          'george': 1,
          'sand': 1,
          'jim': 1,
          'morrison': 1,
          'unique': 1,
          'nothing': 1,
          'nhowever': 1,
          'interesting': 1,
          'sounds': 1,
          'excited': 1,
          'see': 1,
          'synopsis': 1,
          'promising': 1,
          'really': 1,
          'delivers': 1,
          'tone': 1,
          'soporific': 1,
          'supposedlyintellectual': 1,
          'prattle': 1,
          'inane': 1,
          'plot': 1,
          'meanders': 1,
          'pointless': 1,
          'irritating': 1,
          'manner': 1,
          'doesnt': 1,
          'take': 1,
          'long': 1,
          'viewer': 1,
          'determine': 1,
          'story': 1,
          'largely': 1,
          'unimportant': 1,
          'symbolism': 1,
          'obvious': 1,
          'show': 1,
          'human': 1,
          'interaction': 1,
          'volatile': 1,
          'unpredictable': 1,
          'shifting': 1,
          'earth': 1,
          'takes': 1,
          'onehundred': 1,
          'get': 1,
          'across': 1,
          'transparent': 1,
          'nthere': 1,
          'worthwhile': 1,
          'moments': 1,
          'silly': 1,
          'sword': 1,
          'fight': 1,
          'entertaining': 1,
          'discussion': 1,
          'french': 1,
          'english': 1,
          'differences': 1,
          'two': 1,
          'languages': 1,
          'fine': 1,
          'points': 1,
          'certainly': 1,
          'lost': 1,
          'arent': 1,
          'bilingual': 1,
          'people': 1,
          'likely': 1,
          'enjoy': 1,
          'feel': 1,
          'strong': 1,
          'need': 1,
          'praise': 1,
          'rootless': 1,
          'boring': 1,
          'b': 1,
          'theyve': 1,
          'c': 1,
          'nfor': 1,
          'everyone': 1,
          'waste': 1,
          'time': 1,
          'poor': 1,
          'introduction': 1,
          'work': 1,
          'nneg': 1}),
 Counter({'film': 16,
          'director': 7,
          'nthe': 7,
          'good': 6,
          'east': 6,
          'welles': 4,
          'short': 4,
          'several': 4,
          'thompson': 4,
          'raoul': 4,
          'walsh': 4,
          'silent': 4,
          'last': 4,
          'nthis': 4,
          'one': 4,
          'ending': 4,
          'west': 4,
          'germany': 4,
          'folk': 3,
          'story': 3,
          'cast': 3,
          'nafter': 3,
          'sadie': 3,
          'script': 3,
          'wants': 3,
          'seems': 3,
          'certainly': 3,
          '1986': 3,
          'like': 3,
          'bring': 3,
          'meier': 3,
          'son': 3,
          'films': 2,
          'seen': 2,
          'seattle': 2,
          'festival': 2,
          'nits': 2,
          'raft': 2,
          'u': 2,
          'orson': 2,
          'na': 2,
          'stories': 2,
          'attempts': 2,
          'actions': 2,
          'trying': 2,
          'set': 2,
          'photography': 2,
          'really': 2,
          'interesting': 2,
          'screenwriter': 2,
          'somerset': 2,
          'maughams': 2,
          'miss': 2,
          'gloria': 2,
          'swanson': 2,
          'lionel': 2,
          'barrymore': 2,
          'version': 2,
          'stills': 2,
          'minutes': 2,
          'years': 2,
          'also': 2,
          'screenplay': 2,
          'get': 2,
          'absolute': 2,
          'real': 2,
          'life': 2,
          'nunfortunately': 2,
          'poorly': 2,
          'tied': 2,
          'difficult': 2,
          'know': 2,
          'due': 2,
          'australia': 2,
          'nstill': 2,
          'right': 2,
          'worth': 2,
          '2': 2,
          '50': 2,
          'find': 2,
          'pied': 2,
          'piper': 2,
          'czechoslovakia': 2,
          'animated': 2,
          'old': 2,
          'better': 2,
          'doesnt': 2,
          'capitalism': 2,
          'matter': 2,
          'kind': 2,
          'done': 2,
          'puppets': 2,
          'comedy': 2,
          'something': 2,
          'night': 2,
          'ndont': 2,
          'unless': 2,
          'nmeier': 2,
          'takes': 2,
          'german': 2,
          'father': 2,
          'money': 2,
          'girlfriend': 2,
          'thinks': 2,
          'hes': 2,
          'credit': 2,
          'funny': 2,
          'long': 2,
          'rules': 2,
          'people': 2,
          'watching': 2,
          'awards': 2,
          'horses': 2,
          'various': 1,
          'truethree': 1,
          'men': 1,
          '19421986': 1,
          'recently': 1,
          'uncovered': 1,
          'onefourth': 1,
          'planned': 1,
          'docudrama': 1,
          'amazing': 1,
          'around': 1,
          'world': 1,
          'named': 1,
          'true': 1,
          'dealt': 1,
          'document': 1,
          'brazilian': 1,
          'fisherman': 1,
          '1942': 1,
          'become': 1,
          'heroes': 1,
          'fantastic': 1,
          'voyage': 1,
          'rio': 1,
          'nwhile': 1,
          'clips': 1,
          'tends': 1,
          'spend': 1,
          'time': 1,
          'recount': 1,
          'despite': 1,
          'studio': 1,
          'problems': 1,
          'staggering': 1,
          'workload': 1,
          'extremely': 1,
          'ill': 1,
          'fortune': 1,
          'nimpressive': 1,
          'historians': 1,
          'nsadie': 1,
          '1928': 1,
          'john': 1,
          'colton': 1,
          'play': 1,
          'rain': 1,
          'based': 1,
          'w': 1,
          'discussion': 1,
          'newlyrestored': 1,
          'frank': 1,
          'capras': 1,
          'lost': 1,
          'horizon': 1,
          'scenes': 1,
          'restored': 1,
          'using': 1,
          'interested': 1,
          'see': 1,
          '5': 1,
          'destroyed': 1,
          'many': 1,
          'ago': 1,
          'maugham': 1,
          'skillful': 1,
          'ever': 1,
          'seenlittle': 1,
          'awkwardness': 1,
          'clever': 1,
          'actors': 1,
          'directed': 1,
          'wrote': 1,
          'especially': 1,
          'hypocritical': 1,
          'reformer': 1,
          'supposedly': 1,
          'save': 1,
          'sadies': 1,
          'soul': 1,
          'sheets': 1,
          'epitome': 1,
          'sanctimonious': 1,
          'scoundrel': 1,
          'nswanson': 1,
          'adds': 1,
          'character': 1,
          'adding': 1,
          'worldly': 1,
          'affectionate': 1,
          'air': 1,
          'bawdy': 1,
          'rather': 1,
          'whether': 1,
          'lack': 1,
          'liveaction': 1,
          'original': 1,
          'happy': 1,
          'particularly': 1,
          'believe': 1,
          'ended': 1,
          'hero': 1,
          'moving': 1,
          'expected': 1,
          'fill': 1,
          'conclusion': 1,
          'weve': 1,
          'waiting': 1,
          'hour': 1,
          'half': 1,
          'entertaining': 1,
          'end': 1,
          'barrymores': 1,
          'incredibly': 1,
          'hammy': 1,
          'performance': 1,
          'nonetheless': 1,
          'works': 1,
          'perhaps': 1,
          'screen': 1,
          'must': 1,
          'anyone': 1,
          'fed': 1,
          'falwells': 1,
          'bakkers': 1,
          'robertses': 1,
          'religious': 1,
          'worlds': 1,
          'c': 1,
          'movie': 1,
          'jim': 1,
          'barta': 1,
          'kamil': 1,
          'piza': 1,
          'definitely': 1,
          'kids': 1,
          'nit': 1,
          'tells': 1,
          'tale': 1,
          'twist': 1,
          'highly': 1,
          'appropriate': 1,
          'lot': 1,
          'political': 1,
          'comment': 1,
          'along': 1,
          'nperhaps': 1,
          'economic': 1,
          'content': 1,
          'wordit': 1,
          'show': 1,
          'light': 1,
          'nnor': 1,
          'human': 1,
          'nature': 1,
          'anything': 1,
          'else': 1,
          'nas': 1,
          'may': 1,
          'guessed': 1,
          'tgif': 1,
          'glad': 1,
          'nnot': 1,
          'wasnt': 1,
          'technical': 1,
          'reasons': 1,
          'stopanimation': 1,
          'well': 1,
          'nall': 1,
          'carefully': 1,
          'carved': 1,
          'walnutsexcept': 1,
          'stuffed': 1,
          'rats': 1,
          'nboy': 1,
          'sounds': 1,
          'vehicle': 1,
          'nadd': 1,
          'onto': 1,
          'design': 1,
          'makes': 1,
          'cabinet': 1,
          'doctor': 1,
          'caligari': 1,
          'absolutely': 1,
          'cheerful': 1,
          'comparison': 1,
          'give': 1,
          'wee': 1,
          'ones': 1,
          'mentally': 1,
          'unstable': 1,
          'larger': 1,
          'keep': 1,
          'nsome': 1,
          'gore': 1,
          'children': 1,
          'adults': 1,
          'theyre': 1,
          'fascinated': 1,
          'puppetry': 1,
          'andor': 1,
          'hate': 1,
          'badly': 1,
          'enjoy': 1,
          'seeing': 1,
          'wooden': 1,
          'raped': 1,
          'nblech': 1,
          'n': 1,
          'fun': 1,
          'whatsoever': 1,
          'directorscreenwriter': 1,
          'peter': 1,
          'timm': 1,
          'rainier': 1,
          'grenkowitz': 1,
          'nadja': 1,
          'engelbrecht': 1,
          'alexander': 1,
          'hauff': 1,
          'thomas': 1,
          'besvater': 1,
          'subtitled': 1,
          'us': 1,
          'back': 1,
          'forth': 1,
          'germanwest': 1,
          'border': 1,
          'wallpaperer': 1,
          'whose': 1,
          'dies': 1,
          'leaves': 1,
          'deal': 1,
          'nhis': 1,
          'uncle': 1,
          'sneaks': 1,
          'country': 1,
          'unknown': 1,
          'germans': 1,
          'however': 1,
          'less': 1,
          'thrilled': 1,
          'friends': 1,
          'job': 1,
          'likes': 1,
          'exist': 1,
          'roundtheworld': 1,
          'trip': 1,
          'boss': 1,
          'leave': 1,
          'bulgaria': 1,
          'starts': 1,
          'visiting': 1,
          'day': 1,
          'visas': 1,
          'fake': 1,
          'id': 1,
          'uses': 1,
          'connections': 1,
          'buy': 1,
          'presents': 1,
          'work': 1,
          'crews': 1,
          'workwhile': 1,
          'everyone': 1,
          'still': 1,
          'living': 1,
          'nof': 1,
          'course': 1,
          'goes': 1,
          'wrongand': 1,
          'humor': 1,
          'spread': 1,
          'thin': 1,
          'much': 1,
          'plot': 1,
          'obvious': 1,
          'acting': 1,
          'concept': 1,
          'five': 1,
          'pretty': 1,
          'nc': 1,
          'hand': 1,
          'man': 1,
          'di': 1,
          'drew': 1,
          'helen': 1,
          'hodgman': 1,
          'rupert': 1,
          'everett': 1,
          'hugo': 1,
          'weaving': 1,
          'arthur': 1,
          'dignam': 1,
          'jennifer': 1,
          'claire': 1,
          'catherine': 1,
          'mcclements': 1,
          'lifetime': 1,
          'moviegoing': 1,
          'four': 1,
          'attending': 1,
          'international': 1,
          'ive': 1,
          'learned': 1,
          'given': 1,
          'deference': 1,
          'n1': 1,
          'wary': 1,
          'french': 1,
          'comedies': 1,
          'nthese': 1,
          'jerry': 1,
          'lewis': 1,
          'n2': 1,
          'ken': 1,
          'russell': 1,
          'never': 1,
          'going': 1,
          'grow': 1,
          'wait': 1,
          'n3': 1,
          'siff': 1,
          'associate': 1,
          'gary': 1,
          'tucker': 1,
          'refers': 1,
          'lead': 1,
          'poutylips': 1,
          'probably': 1,
          'n4': 1,
          'australian': 1,
          'best': 1,
          'cinematography': 1,
          'watch': 1,
          'naustralia': 1,
          'cinematographers': 1,
          'whazoo': 1,
          'since': 1,
          'weir': 1,
          'miller': 1,
          'left': 1,
          'foreign': 1,
          'shores': 1,
          'finding': 1,
          'impossiblewitness': 1,
          'malcolm': 1,
          'year': 1,
          'task': 1,
          'nwell': 1,
          'ignored': 1,
          '3': 1,
          '4': 1,
          'sat': 1,
          'golden': 1,
          'turkey': 1,
          'classic': 1,
          'romance': 1,
          '30s': 1,
          'tragedy': 1,
          'among': 1,
          'gentry': 1,
          'falling': 1,
          'love': 1,
          'station': 1,
          'nlots': 1,
          'lots': 1,
          'opens': 1,
          'stallion': 1,
          'mounting': 1,
          'mare': 1,
          'direction': 1,
          'ladyship': 1,
          'guess': 1,
          'foreshadowing': 1,
          'missus': 1,
          'house': 1,
          'produce': 1,
          'heir': 1,
          'said': 1,
          'reckless': 1,
          'idiot': 1,
          'faints': 1,
          'worst': 1,
          'times': 1,
          'kills': 1,
          'loses': 1,
          'arm': 1,
          'racing': 1,
          'accident': 1,
          'nhighlights': 1,
          'include': 1,
          'amputation': 1,
          'sequence': 1,
          'doctors': 1,
          'daughter': 1,
          'hots': 1,
          'tasting': 1,
          'urine': 1,
          'diagnosis': 1,
          'tender': 1,
          'kissing': 1,
          'window': 1,
          'rainingyoud': 1,
          'think': 1,
          'woman': 1,
          'studying': 1,
          'medicine': 1,
          'would': 1,
          'kept': 1,
          'wishing': 1,
          'bweverything': 1,
          'sepiacolored': 1,
          'anyway': 1,
          'nactually': 1,
          'wished': 1,
          'swimming': 1,
          'cambodia': 1,
          'instead': 1,
          'thats': 1,
          'ngrade': 1,
          'z': 1,
          'avoid': 1,
          'plague': 1,
          'youre': 1,
          'looking': 1,
          'inadvertent': 1,
          'yuks': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'pod': 4,
          'alien': 3,
          'story': 3,
          'ripley': 3,
          'end': 3,
          'nthe': 3,
          'ending': 3,
          'tension': 2,
          '3': 2,
          'seems': 2,
          'remarkably': 2,
          'nin': 2,
          'anything': 2,
          'little': 2,
          'nat': 2,
          'way': 2,
          'ship': 2,
          'escape': 2,
          'prison': 2,
          'actors': 2,
          'another': 2,
          'looks': 2,
          'like': 2,
          'except': 2,
          'role': 2,
          'charles': 2,
          'good': 2,
          'found': 2,
          'capsule': 1,
          'weakest': 1,
          'least': 1,
          'engaging': 1,
          'movies': 1,
          'dragged': 1,
          'uninvolving': 1,
          'real': 1,
          'nalien': 1,
          'superscript': 1,
          'sad': 1,
          'wan': 1,
          'entry': 1,
          'shaping': 1,
          'one': 1,
          'best': 1,
          'sf': 1,
          'sagas': 1,
          'ever': 1,
          'put': 1,
          'screen': 1,
          'nit': 1,
          'continues': 1,
          'spacetruckerturnedimpromptusurvivalist': 1,
          'uninterested': 1,
          'fact': 1,
          'lucky': 1,
          'interested': 1,
          'elegaic': 1,
          'limp': 1,
          'na': 1,
          'would': 1,
          'nice': 1,
          'atmosphere': 1,
          'telegraphs': 1,
          'tragedy': 1,
          'beginning': 1,
          'last': 1,
          'film': 1,
          'aliens': 1,
          'two': 1,
          'survivors': 1,
          'home': 1,
          'nunfortunately': 1,
          'deposited': 1,
          'wound': 1,
          'triggering': 1,
          'ejection': 1,
          'crashes': 1,
          'firorina': 1,
          '161': 1,
          'planet': 1,
          'designed': 1,
          'house': 1,
          'incurably': 1,
          'criminally': 1,
          'violent': 1,
          'nripley': 1,
          'lives': 1,
          'crash': 1,
          'others': 1,
          'grim': 1,
          'place': 1,
          'even': 1,
          'prisons': 1,
          'go': 1,
          'built': 1,
          'around': 1,
          'remnants': 1,
          'abandoned': 1,
          'steelworks': 1,
          'provides': 1,
          'technogothic': 1,
          'backdrops': 1,
          'backlit': 1,
          'nlice': 1,
          'endemic': 1,
          'ripleys': 1,
          'head': 1,
          'shaved': 1,
          'surreal': 1,
          'touch': 1,
          'first': 1,
          'hold': 1,
          'unwelcome': 1,
          'guest': 1,
          'company': 1,
          'rescue': 1,
          'arrive': 1,
          'doesnt': 1,
          'stay': 1,
          'none': 1,
          'eggs': 1,
          'board': 1,
          'wrecked': 1,
          'hatches': 1,
          'soon': 1,
          'newlygestated': 1,
          'running': 1,
          'amuck': 1,
          'nworse': 1,
          'impregnated': 1,
          'nwhats': 1,
          'weird': 1,
          'generates': 1,
          'near': 1,
          'pressure': 1,
          'troweled': 1,
          'every': 1,
          'cheap': 1,
          'cinematic': 1,
          'form': 1,
          'cheating': 1,
          'imaginable': 1,
          'loud': 1,
          'music': 1,
          'shaky': 1,
          'camerawork': 1,
          'etc': 1,
          'sigourney': 1,
          'weaver': 1,
          'become': 1,
          'comfortable': 1,
          'well': 1,
          'time': 1,
          'underwritten': 1,
          'left': 1,
          'slack': 1,
          'supporting': 1,
          'also': 1,
          'given': 1,
          'lot': 1,
          'doctor': 1,
          'dance': 1,
          'rather': 1,
          'religious': 1,
          'inmate': 1,
          'dutton': 1,
          'hiave': 1,
          'presence': 1,
          'theyre': 1,
          'asked': 1,
          'light': 1,
          'impending': 1,
          'sequel': 1,
          'apparently': 1,
          'plays': 1,
          'fast': 1,
          'loose': 1,
          'talk': 1,
          'say': 1,
          'drab': 1,
          'nits': 1,
          'strange': 1,
          'desperate': 1,
          'improvisational': 1,
          'thinking': 1,
          'wind': 1,
          'couldnt': 1,
          'driven': 1,
          'rest': 1,
          'nneg': 1}),
 Counter({'bone': 12,
          'monkey': 11,
          'stu': 7,
          'really': 6,
          'get': 4,
          'movie': 4,
          'nthe': 4,
          'seems': 4,
          'go': 3,
          'however': 3,
          'bad': 3,
          'effects': 3,
          'everyone': 3,
          'well': 3,
          'nwhen': 3,
          'know': 3,
          'film': 3,
          'nightmare': 2,
          'said': 2,
          'im': 2,
          'guessing': 2,
          'see': 2,
          'since': 2,
          'million': 2,
          'miley': 2,
          'behind': 2,
          'new': 2,
          'wants': 2,
          'powder': 2,
          'julie': 2,
          'fonda': 2,
          'goes': 2,
          'coma': 2,
          'town': 2,
          'life': 2,
          'nightmares': 2,
          'rose': 2,
          'mcgowan': 2,
          'pass': 2,
          'becomes': 2,
          'takes': 2,
          'body': 2,
          'like': 2,
          'even': 2,
          'story': 2,
          'lack': 2,
          'character': 2,
          'development': 2,
          'nfor': 2,
          'dont': 2,
          'given': 2,
          'role': 2,
          'bring': 2,
          'performance': 2,
          'funny': 2,
          'special': 2,
          'might': 2,
          'curious': 2,
          'good': 2,
          'director': 1,
          'christmas': 1,
          'previews': 1,
          'people': 1,
          'obviously': 1,
          'hasnt': 1,
          'worked': 1,
          '75': 1,
          'dollar': 1,
          'yet': 1,
          'break': 1,
          '5': 1,
          'nto': 1,
          'together': 1,
          'technically': 1,
          'wellmade': 1,
          'na': 1,
          'tragic': 1,
          'waste': 1,
          'talent': 1,
          'incredible': 1,
          'visual': 1,
          'nstu': 1,
          'genius': 1,
          'phenomena': 1,
          'crude': 1,
          'comic': 1,
          'strip': 1,
          'merchandise': 1,
          'great': 1,
          'links': 1,
          'including': 1,
          'dollars': 1,
          'let': 1,
          'fart': 1,
          'girlfriend': 1,
          'bridget': 1,
          'freak': 1,
          'car': 1,
          'accident': 1,
          'youll': 1,
          'travels': 1,
          'dark': 1,
          'characters': 1,
          'dreams': 1,
          'come': 1,
          'npeople': 1,
          'stuck': 1,
          'roaming': 1,
          'around': 1,
          'spots': 1,
          'cant': 1,
          'stand': 1,
          'tries': 1,
          'keep': 1,
          'control': 1,
          'nmaking': 1,
          'friend': 1,
          'kitty': 1,
          'learns': 1,
          'gets': 1,
          'exit': 1,
          'death': 1,
          'back': 1,
          'live': 1,
          'steal': 1,
          'trader': 1,
          'stus': 1,
          'nnow': 1,
          'must': 1,
          'buy': 1,
          'dolls': 1,
          'nsomething': 1,
          'nrather': 1,
          'complex': 1,
          'fact': 1,
          'needs': 1,
          'potential': 1,
          'script': 1,
          'nwhat': 1,
          'considerably': 1,
          'noticeable': 1,
          'gaping': 1,
          'plot': 1,
          'holes': 1,
          'instance': 1,
          'care': 1,
          'nkitty': 1,
          'played': 1,
          'ha': 1,
          'chance': 1,
          'cast': 1,
          'decent': 1,
          'brendan': 1,
          'fraser': 1,
          'enjoying': 1,
          'awfully': 1,
          'annoying': 1,
          'nbridget': 1,
          'dreary': 1,
          'screeching': 1,
          'halt': 1,
          'miscast': 1,
          'ndave': 1,
          'foley': 1,
          'isnt': 1,
          'enough': 1,
          'graces': 1,
          'megan': 1,
          'mullally': 1,
          'standout': 1,
          'voice': 1,
          'nick': 1,
          'turturro': 1,
          'entertaining': 1,
          'keeps': 1,
          'total': 1,
          'bust': 1,
          'viewers': 1,
          'highly': 1,
          'effective': 1,
          'nice': 1,
          'look': 1,
          'eyes': 1,
          'nsome': 1,
          'believable': 1,
          'unbelievable': 1,
          'nmonkey': 1,
          'stuart': 1,
          'little': 1,
          'realize': 1,
          'animated': 1,
          'non': 1,
          'occasion': 1,
          'sneaks': 1,
          'direction': 1,
          'henry': 1,
          'selick': 1,
          'times': 1,
          'doesnt': 1,
          'kind': 1,
          'make': 1,
          'ending': 1,
          'climax': 1,
          'falls': 1,
          'cliff': 1,
          'nits': 1,
          'could': 1,
          'real': 1,
          'heavily': 1,
          'done': 1,
          'hack': 1,
          'job': 1,
          'sinks': 1,
          'end': 1,
          'credits': 1,
          'worth': 1,
          'rental': 1,
          'avoid': 1,
          'one': 1,
          'nneg': 1}),
 Counter({'made': 3,
          'movie': 3,
          'action': 3,
          'nthe': 2,
          'nbesides': 2,
          'flicks': 2,
          'unusually': 2,
          'character': 2,
          'sergeant': 2,
          'numerous': 1,
          'comparisons': 1,
          'past': 1,
          'scifi': 1,
          'suspense': 1,
          'thrillers': 1,
          'nsoldier': 1,
          'multi': 1,
          'crossbreed': 1,
          'likes': 1,
          'terminator': 1,
          'aliens': 1,
          'offspring': 1,
          'problem': 1,
          'mixed': 1,
          'genes': 1,
          'final': 1,
          'product': 1,
          'real': 1,
          'mongrel': 1,
          'well': 1,
          'put': 1,
          'production': 1,
          'got': 1,
          'ground': 1,
          'mediocre': 1,
          'compared': 1,
          'standard': 1,
          'day': 1,
          'age': 1,
          'fight': 1,
          'scenes': 1,
          'jason': 1,
          'scott': 1,
          'lee': 1,
          'kurt': 1,
          'russell': 1,
          'seem': 1,
          'laboured': 1,
          'slow': 1,
          'sluggish': 1,
          'could': 1,
          'done': 1,
          'better': 1,
          'choreography': 1,
          'nrussell': 1,
          'usually': 1,
          'good': 1,
          'actor': 1,
          'bgrade': 1,
          'hampered': 1,
          'todd': 1,
          'seems': 1,
          'like': 1,
          'toad': 1,
          'almost': 1,
          'dialogue': 1,
          'appears': 1,
          'stunted': 1,
          'zombielike': 1,
          'line': 1,
          'screen': 1,
          'persona': 1,
          'scores': 1,
          'little': 1,
          'points': 1,
          'empathy': 1,
          'audience': 1,
          'nthis': 1,
          'change': 1,
          'opinion': 1,
          'director': 1,
          'paul': 1,
          'anderson': 1,
          'whose': 1,
          'last': 1,
          'epic': 1,
          'event': 1,
          'horizon': 1,
          'left': 1,
          'bitter': 1,
          'taste': 1,
          'mouth': 1,
          'nalthough': 1,
          'come': 1,
          'anywhere': 1,
          'close': 1,
          'strangeness': 1,
          'former': 1,
          'still': 1,
          'long': 1,
          'way': 1,
          'anything': 1,
          'considered': 1,
          'desirable': 1,
          'nneg': 1}),
 Counter({'pimps': 13,
          'pimp': 10,
          'film': 6,
          'nthe': 5,
          'get': 4,
          'make': 4,
          'money': 4,
          'need': 4,
          'nit': 3,
          'way': 3,
          'word': 3,
          'used': 3,
          'also': 3,
          'girls': 3,
          'style': 3,
          'could': 3,
          'hughes': 2,
          'brothers': 2,
          'mostly': 2,
          'hos': 2,
          'flamboyant': 2,
          'makes': 2,
          'say': 2,
          'might': 2,
          'seem': 2,
          'nthey': 2,
          'business': 2,
          'work': 2,
          'became': 2,
          'nthese': 2,
          'never': 2,
          'story': 2,
          'nwe': 2,
          'cnote': 2,
          'rosebudd': 2,
          'ho': 2,
          'n': 2,
          'number': 2,
          'white': 2,
          'nwhile': 2,
          'black': 2,
          'community': 2,
          'hollywood': 2,
          'see': 2,
          'taking': 2,
          'documentary': 1,
          'twin': 1,
          'allen': 1,
          'albert': 1,
          'dead': 1,
          'presidents': 1,
          'menace': 1,
          'ii': 1,
          'society': 1,
          'street': 1,
          'africanamerican': 1,
          'nan': 1,
          'offscreen': 1,
          'interviewer': 1,
          'questions': 1,
          'lives': 1,
          'profession': 1,
          'talking': 1,
          'egotistical': 1,
          'would': 1,
          'expect': 1,
          'ni': 1,
          'learned': 1,
          'bitch': 1,
          'favorite': 1,
          'seemed': 1,
          'crop': 1,
          'every': 1,
          'sentence': 1,
          'surprises': 1,
          'nothing': 1,
          'fresh': 1,
          'one': 1,
          'sense': 1,
          'humor': 1,
          'lifestyle': 1,
          'rap': 1,
          'amusing': 1,
          'want': 1,
          'thought': 1,
          'businessmen': 1,
          'easiest': 1,
          'big': 1,
          'nits': 1,
          'power': 1,
          'trip': 1,
          'accomplished': 1,
          'manipulating': 1,
          'humiliating': 1,
          'keeping': 1,
          'place': 1,
          'nthis': 1,
          'sleazy': 1,
          'pic': 1,
          'soon': 1,
          'grating': 1,
          'wore': 1,
          'welcome': 1,
          'unreceptive': 1,
          'ears': 1,
          'verbose': 1,
          'smart': 1,
          'answer': 1,
          'everything': 1,
          'knew': 1,
          'shut': 1,
          'face': 1,
          'role': 1,
          'models': 1,
          'featherhatted': 1,
          'furcoated': 1,
          'diamond': 1,
          'ringwearing': 1,
          'gold': 1,
          'chain': 1,
          'wearing': 1,
          'flashy': 1,
          'cadillaccruising': 1,
          'late': 1,
          '70s': 1,
          'blaxploitation': 1,
          'movieslike': 1,
          'mack': 1,
          'willie': 1,
          'dynamite': 1,
          'nalso': 1,
          'reference': 1,
          'iceberg': 1,
          'slims': 1,
          'bestseller': 1,
          'life': 1,
          'meet': 1,
          'fillmore': 1,
          'slim': 1,
          'charm': 1,
          'kred': 1,
          'gorgeous': 1,
          'dre': 1,
          'bishop': 1,
          'magic': 1,
          'juan': 1,
          'readily': 1,
          'discuss': 1,
          'arrangements': 1,
          'including': 1,
          'percentages': 1,
          'lifestyles': 1,
          'knockin': 1,
          'stealing': 1,
          'another': 1,
          'thrill': 1,
          'women': 1,
          'giving': 1,
          'dudes': 1,
          'needed': 1,
          'prompting': 1,
          'talk': 1,
          'love': 1,
          'brag': 1,
          'priests': 1,
          'nuns': 1,
          'yaps': 1,
          'san': 1,
          'francisco': 1,
          'doctors': 1,
          'nurses': 1,
          'nso': 1,
          'nas': 1,
          'tries': 1,
          'persuasively': 1,
          'case': 1,
          'show': 1,
          'ropes': 1,
          'security': 1,
          'blankets': 1,
          'protectors': 1,
          'counselors': 1,
          'race': 1,
          'issue': 1,
          'brought': 1,
          'right': 1,
          'films': 1,
          'onset': 1,
          'interviewees': 1,
          'regular': 1,
          'citizens': 1,
          'note': 1,
          'impression': 1,
          'hes': 1,
          'lowest': 1,
          'form': 1,
          'human': 1,
          'told': 1,
          'looked': 1,
          'upon': 1,
          'successful': 1,
          'entrepenaur': 1,
          'riding': 1,
          'around': 1,
          'fancy': 1,
          'cars': 1,
          'flashing': 1,
          'wads': 1,
          'dressed': 1,
          'snakegaiter': 1,
          'shoes': 1,
          'cost': 1,
          'grand': 1,
          'boasts': 1,
          'status': 1,
          'stable': 1,
          'treat': 1,
          'like': 1,
          'dirt': 1,
          'implies': 1,
          'payback': 1,
          'days': 1,
          'slavery': 1,
          'master': 1,
          'slave': 1,
          'relations': 1,
          'projected': 1,
          'image': 1,
          'run': 1,
          'hardsell': 1,
          'riff': 1,
          'virtues': 1,
          'nthere': 1,
          'different': 1,
          'styles': 1,
          'pimping': 1,
          'mentions': 1,
          'macks': 1,
          'players': 1,
          'real': 1,
          'perpetrator': 1,
          'clarity': 1,
          'attempted': 1,
          'failed': 1,
          'womens': 1,
          'side': 1,
          'abuse': 1,
          'primarily': 1,
          'core': 1,
          'think': 1,
          'perverted': 1,
          'filmmakers': 1,
          'ride': 1,
          'looking': 1,
          'pose': 1,
          'front': 1,
          'camera': 1,
          'thing': 1,
          'hungry': 1,
          '15minutes': 1,
          'fame': 1,
          'laughs': 1,
          'got': 1,
          'bleak': 1,
          'look': 1,
          'american': 1,
          'subculture': 1,
          'hearing': 1,
          'retired': 1,
          'ndanny': 1,
          'brown': 1,
          'blues': 1,
          'singer': 1,
          'keep': 1,
          'wardrobe': 1,
          'called': 1,
          'married': 1,
          'turned': 1,
          'square': 1,
          'working': 1,
          'support': 1,
          'wife': 1,
          'daughter': 1,
          'telemarketer': 1,
          'nneg': 1}),
 Counter({'green': 6,
          'tom': 5,
          'make': 5,
          'greens': 4,
          'dad': 3,
          'freddy': 3,
          'got': 3,
          'fingered': 3,
          'films': 3,
          'gord': 2,
          'torn': 2,
          'doesnt': 2,
          'go': 2,
          'first': 2,
          'attempt': 2,
          'mom': 2,
          'essentially': 2,
          'gets': 2,
          'sex': 2,
          'nwhile': 2,
          'enough': 2,
          'skateboarding': 2,
          'scene': 2,
          'time': 2,
          'would': 2,
          'end': 2,
          'brody': 1,
          'aspiring': 1,
          'animator': 1,
          'approaching': 1,
          'thirty': 1,
          'still': 1,
          'lives': 1,
          'parents': 1,
          'jim': 1,
          'rip': 1,
          'julies': 1,
          'julie': 1,
          'hagerty': 1,
          'airplane': 1,
          'basement': 1,
          'nas': 1,
          'declares': 1,
          'war': 1,
          'secures': 1,
          'job': 1,
          'cheese': 1,
          'sandwich': 1,
          'factory': 1,
          'far': 1,
          'la': 1,
          'sets': 1,
          'dreams': 1,
          'come': 1,
          'true': 1,
          'ngord': 1,
          'much': 1,
          'lands': 1,
          'back': 1,
          'home': 1,
          'fawning': 1,
          'outraged': 1,
          'ntom': 1,
          'cowrites': 1,
          'show': 1,
          'scribe': 1,
          'derek': 1,
          'harvie': 1,
          'directs': 1,
          'stars': 1,
          'primal': 1,
          'scream': 1,
          'nso': 1,
          'screams': 1,
          'empty': 1,
          'theater': 1,
          'sound': 1,
          'nits': 1,
          'clear': 1,
          'least': 1,
          'partially': 1,
          'autobiographical': 1,
          'sure': 1,
          'one': 1,
          'hell': 1,
          'complex': 1,
          'easier': 1,
          'sonny': 1,
          'boy': 1,
          'advises': 1,
          'basketball': 1,
          'players': 1,
          'greeks': 1,
          'may': 1,
          'interest': 1,
          'hard': 1,
          'core': 1,
          'fans': 1,
          'theres': 1,
          'little': 1,
          'mania': 1,
          'display': 1,
          'recommend': 1,
          'movie': 1,
          'anyone': 1,
          'else': 1,
          'nthe': 1,
          'film': 1,
          'starts': 1,
          'promisingly': 1,
          'well': 1,
          'executed': 1,
          'shopping': 1,
          'mall': 1,
          'set': 1,
          'pistols': 1,
          'problem': 1,
          'put': 1,
          'together': 1,
          'rate': 1,
          'soundtrack': 1,
          'yes': 1,
          'laughed': 1,
          'times': 1,
          'ngreens': 1,
          'flummoxing': 1,
          'security': 1,
          'guard': 1,
          'psychotic': 1,
          'ramblings': 1,
          'draw': 1,
          'music': 1,
          'eat': 1,
          'daddy': 1,
          'like': 1,
          'sausages': 1,
          'repeatedly': 1,
          'shown': 1,
          'trailer': 1,
          'inspired': 1,
          'comedy': 1,
          'nbut': 1,
          'whats': 1,
          'funny': 1,
          'paraplegic': 1,
          'girlfriend': 1,
          'turned': 1,
          'legs': 1,
          'caned': 1,
          'injury': 1,
          'results': 1,
          'exposed': 1,
          'kneecap': 1,
          'na': 1,
          'baby': 1,
          'delivery': 1,
          'bit': 1,
          'shows': 1,
          'groaninducing': 1,
          'promise': 1,
          'blood': 1,
          'splattered': 1,
          'coagulate': 1,
          'laughs': 1,
          'nyounger': 1,
          'three': 1,
          'years': 1,
          'brother': 1,
          'freddys': 1,
          'internment': 1,
          'institute': 1,
          'sexually': 1,
          'abused': 1,
          'children': 1,
          'nothing': 1,
          'confirm': 1,
          'ones': 1,
          'worst': 1,
          'fears': 1,
          'regarding': 1,
          'title': 1,
          'infamous': 1,
          'handling': 1,
          'real': 1,
          'horse': 1,
          'nearly': 1,
          'shocking': 1,
          'seem': 1,
          'sense': 1,
          'nby': 1,
          'repeats': 1,
          'gag': 1,
          'elephant': 1,
          'overall': 1,
          'effect': 1,
          'numbness': 1,
          'admirable': 1,
          'result': 1,
          'depicting': 1,
          'harm': 1,
          'demeaning': 1,
          'childs': 1,
          'self': 1,
          'esteem': 1,
          'whole': 1,
          'lot': 1,
          'running': 1,
          'around': 1,
          'noisy': 1,
          'nrip': 1,
          'thinking': 1,
          'nneg': 1}),
 Counter({'nothing': 6,
          'ho': 6,
          'much': 5,
          'comedy': 5,
          'ado': 4,
          'nthe': 4,
          'shakespeare': 3,
          'shakespeares': 3,
          'nget': 3,
          'nho': 3,
          'among': 2,
          'english': 2,
          'taste': 2,
          'film': 2,
          'modern': 2,
          'time': 2,
          'get': 2,
          'clever': 2,
          'im': 2,
          'two': 2,
          'cinema': 2,
          'movie': 2,
          'going': 2,
          'nbut': 2,
          'boy': 2,
          'one': 2,
          'ni': 2,
          'ntheres': 2,
          'awfully': 2,
          'wrong': 2,
          'problem': 2,
          'something': 2,
          'nah': 1,
          'sweet': 1,
          'irony': 1,
          'nits': 1,
          'accepted': 1,
          'wisdom': 1,
          'circles': 1,
          'literature': 1,
          'nuts': 1,
          'mainly': 1,
          'whenever': 1,
          'critic': 1,
          'knocks': 1,
          'ignorance': 1,
          'nhe': 1,
          'doesnt': 1,
          'understand': 1,
          'hear': 1,
          'say': 1,
          'bards': 1,
          'work': 1,
          'apparently': 1,
          'beyond': 1,
          'criticism': 1,
          'nwhat': 1,
          'load': 1,
          'old': 1,
          'cobblers': 1,
          'nif': 1,
          'arbiters': 1,
          'public': 1,
          'think': 1,
          'kenneth': 1,
          'branaughs': 1,
          'sense': 1,
          'word': 1,
          'life': 1,
          'monty': 1,
          'python': 1,
          'woody': 1,
          'allen': 1,
          'john': 1,
          'waters': 1,
          'nwhatever': 1,
          'njust': 1,
          'real': 1,
          'witty': 1,
          'risky': 1,
          'nand': 1,
          'banish': 1,
          'nonsense': 1,
          'belongs': 1,
          'ndrama': 1,
          'tragedy': 1,
          'strength': 1,
          'nto': 1,
          'sensibilities': 1,
          'stick': 1,
          'mud': 1,
          'resonates': 1,
          'spark': 1,
          'whatsoever': 1,
          'nno': 1,
          'kidding': 1,
          'ranks': 1,
          'embarrassing': 1,
          'hours': 1,
          'ever': 1,
          'spent': 1,
          '20': 1,
          'years': 1,
          'thing': 1,
          'stopped': 1,
          'walking': 1,
          'loyalty': 1,
          'lady': 1,
          'friend': 1,
          'day': 1,
          'hadnt': 1,
          'seen': 1,
          'ages': 1,
          'owe': 1,
          'wont': 1,
          'spend': 1,
          'plot': 1,
          'nbasically': 1,
          'follow': 1,
          'trials': 1,
          'tribulations': 1,
          'wouldbe': 1,
          'couples': 1,
          'young': 1,
          'older': 1,
          'dark': 1,
          'treachery': 1,
          'amongst': 1,
          'everyone': 1,
          'jolly': 1,
          'youd': 1,
          'hardly': 1,
          'know': 1,
          'nmind': 1,
          'theres': 1,
          'basic': 1,
          'story': 1,
          'ngood': 1,
          'romantic': 1,
          'comedies': 1,
          'based': 1,
          'similar': 1,
          'premises': 1,
          'abound': 1,
          'nnothing': 1,
          'cast': 1,
          'either': 1,
          'nbranaugh': 1,
          'emma': 1,
          'thompson': 1,
          'denzel': 1,
          'washington': 1,
          'talented': 1,
          'performers': 1,
          'script': 1,
          'accurately': 1,
          'original': 1,
          'text': 1,
          'nlight': 1,
          'shouldnt': 1,
          'complex': 1,
          'nyet': 1,
          'wrapped': 1,
          'elizabethan': 1,
          'dialogue': 1,
          'becomes': 1,
          'difficult': 1,
          'comprehend': 1,
          'nfor': 1,
          'alone': 1,
          'audiences': 1,
          'unschooled': 1,
          'search': 1,
          'good': 1,
          'undemanding': 1,
          'laugh': 1,
          'laughs': 1,
          'escape': 1,
          'belly': 1,
          'brought': 1,
          'gloriously': 1,
          'inept': 1,
          'performance': 1,
          'keanu': 1,
          'reeves': 1,
          'actor': 1,
          'miscast': 1,
          'jealous': 1,
          'halfbrother': 1,
          'dissected': 1,
          'understood': 1,
          'boils': 1,
          'stuff': 1,
          'goddamn': 1,
          'lame': 1,
          'nthis': 1,
          'clean': 1,
          'nice': 1,
          'corny': 1,
          'devoid': 1,
          'danger': 1,
          'leaves': 1,
          'viewer': 1,
          'totally': 1,
          'cold': 1,
          'likes': 1,
          'girl': 1,
          'men': 1,
          'klutzes': 1,
          'shes': 1,
          'clumsy': 1,
          'noh': 1,
          'please': 1,
          'wit': 1,
          'somewhere': 1,
          'told': 1,
          'call': 1,
          'pretentious': 1,
          'nsomething': 1,
          'lightweight': 1,
          'striving': 1,
          'sophisticated': 1,
          'wordplay': 1,
          'nin': 1,
          'end': 1,
          'cringeworthy': 1,
          'nwatching': 1,
          'patrons': 1,
          'around': 1,
          'collapse': 1,
          'laughter': 1,
          'made': 1,
          'weird': 1,
          'experience': 1,
          'ncomedy': 1,
          'nbah': 1,
          'humbug': 1,
          'nneg': 1}),
 Counter({'nthe': 12,
          'film': 8,
          'drug': 8,
          'grace': 7,
          'one': 5,
          'smoking': 4,
          'war': 4,
          'business': 4,
          'finds': 4,
          'matthew': 4,
          'go': 4,
          'becomes': 4,
          'locals': 3,
          'theme': 3,
          'completely': 3,
          'becoming': 3,
          'message': 3,
          'drugs': 3,
          'public': 3,
          'something': 3,
          'husband': 3,
          'widow': 3,
          'house': 3,
          'london': 3,
          'dealer': 3,
          'formula': 2,
          'feel': 2,
          'good': 2,
          'like': 2,
          'thin': 2,
          'story': 2,
          'nit': 2,
          'quaint': 2,
          'pot': 2,
          'legalized': 2,
          'first': 2,
          'long': 2,
          'overdue': 2,
          'total': 2,
          'far': 2,
          'hope': 2,
          'americas': 2,
          'offers': 2,
          'get': 2,
          'vietnam': 2,
          'action': 2,
          'weed': 2,
          'never': 2,
          'nthere': 2,
          'police': 2,
          'village': 2,
          'middleaged': 2,
          'woman': 2,
          'brenda': 2,
          'blethyn': 2,
          'soon': 2,
          'enormous': 2,
          'old': 2,
          'taking': 2,
          'bankrupt': 2,
          'husbands': 2,
          'affair': 2,
          'honey': 2,
          'makes': 2,
          'help': 2,
          'best': 2,
          'decides': 2,
          'plants': 2,
          'way': 2,
          'live': 2,
          'enough': 2,
          'nicky': 2,
          'instead': 2,
          'jail': 2,
          'notting': 2,
          'hill': 2,
          'figure': 2,
          'silly': 2,
          'another': 1,
          'quirky': 1,
          'comedy': 1,
          'british': 1,
          'isles': 1,
          'much': 1,
          'waking': 1,
          'ned': 1,
          'devine': 1,
          'host': 1,
          'popular': 1,
          'low': 1,
          'budget': 1,
          'movies': 1,
          'turned': 1,
          'nifty': 1,
          'profit': 1,
          'line': 1,
          'filled': 1,
          'likable': 1,
          'establishment': 1,
          'types': 1,
          'living': 1,
          'town': 1,
          'tolerant': 1,
          'vicars': 1,
          'policemen': 1,
          'plenty': 1,
          'eccentrics': 1,
          'stick': 1,
          'together': 1,
          'thick': 1,
          'strength': 1,
          'lies': 1,
          'rational': 1,
          'since': 1,
          'even': 1,
          'less': 1,
          'dangerous': 1,
          'drinking': 1,
          'alcohol': 1,
          'tolerable': 1,
          'hour': 1,
          'falls': 1,
          'apart': 1,
          'absurd': 1,
          'consider': 1,
          'anything': 1,
          'sitcom': 1,
          'fluff': 1,
          'gone': 1,
          'bananas': 1,
          'nbut': 1,
          'decriminalization': 1,
          'certain': 1,
          'target': 1,
          'allows': 1,
          'least': 1,
          'viewed': 1,
          'containing': 1,
          'pertinent': 1,
          'nits': 1,
          'especially': 1,
          'appropriate': 1,
          'nowadays': 1,
          'considering': 1,
          'escalated': 1,
          'colombia': 1,
          'failure': 1,
          'law': 1,
          'enforcement': 1,
          'methods': 1,
          'future': 1,
          'ended': 1,
          'causing': 1,
          'jails': 1,
          'overcrowded': 1,
          'nonviolent': 1,
          'prisoners': 1,
          'zero': 1,
          'curtailing': 1,
          'usage': 1,
          'supply': 1,
          'nbillions': 1,
          'dollars': 1,
          'allocated': 1,
          'congress': 1,
          'officially': 1,
          'involved': 1,
          'colombian': 1,
          'civil': 1,
          'backing': 1,
          'corrupt': 1,
          'government': 1,
          'remember': 1,
          'idea': 1,
          'military': 1,
          'might': 1,
          'could': 1,
          'stop': 1,
          'cocaine': 1,
          'marijuana': 1,
          'harvests': 1,
          'country': 1,
          'neverything': 1,
          'proposed': 1,
          'smacks': 1,
          'scenario': 1,
          'closer': 1,
          'home': 1,
          'probably': 1,
          'awaits': 1,
          'effort': 1,
          'futile': 1,
          'result': 1,
          'films': 1,
          'mild': 1,
          'showing': 1,
          'squares': 1,
          'getting': 1,
          'finding': 1,
          'acceptable': 1,
          'accepted': 1,
          '40': 1,
          'years': 1,
          'ago': 1,
          'acceptance': 1,
          'better': 1,
          'received': 1,
          'late': 1,
          'common': 1,
          'sense': 1,
          'distinguishing': 1,
          'educate': 1,
          'rather': 1,
          'making': 1,
          'matter': 1,
          'altogether': 1,
          'opens': 1,
          'cornish': 1,
          'seaside': 1,
          'funeral': 1,
          'fell': 1,
          'airplane': 1,
          'evidently': 1,
          'committing': 1,
          'suicide': 1,
          'bigger': 1,
          'bastard': 1,
          'imagined': 1,
          'nhe': 1,
          'left': 1,
          'stack': 1,
          'bills': 1,
          'put': 1,
          'without': 1,
          'knowledge': 1,
          'comfortable': 1,
          '300': 1,
          'year': 1,
          'collateral': 1,
          'failed': 1,
          'venture': 1,
          'second': 1,
          'mortgage': 1,
          'marketable': 1,
          'skills': 1,
          'pay': 1,
          'back': 1,
          'debts': 1,
          'prevent': 1,
          'losing': 1,
          'homeless': 1,
          'nshe': 1,
          'also': 1,
          'knows': 1,
          'sophisticated': 1,
          'quick': 1,
          'nwhat': 1,
          'doubly': 1,
          'unsatisfying': 1,
          'conferring': 1,
          'tiger': 1,
          'bed': 1,
          'refrained': 1,
          'sex': 1,
          'neven': 1,
          'though': 1,
          'try': 1,
          'creditors': 1,
          'swoop': 1,
          'vultures': 1,
          'nher': 1,
          'gardener': 1,
          'handyman': 1,
          'ferguson': 1,
          'stay': 1,
          'despite': 1,
          'last': 1,
          'check': 1,
          'bouncing': 1,
          'nsince': 1,
          'expert': 1,
          'amateur': 1,
          'horticulturist': 1,
          'convinces': 1,
          'revive': 1,
          'hemp': 1,
          'grows': 1,
          'private': 1,
          'use': 1,
          'two': 1,
          'see': 1,
          'possibly': 1,
          'big': 1,
          'opportunity': 1,
          'works': 1,
          'miracles': 1,
          'turn': 1,
          'highquality': 1,
          'stuff': 1,
          'nfor': 1,
          'save': 1,
          'debt': 1,
          'scotsman': 1,
          'chance': 1,
          'continue': 1,
          'beautiful': 1,
          'earn': 1,
          'money': 1,
          'marry': 1,
          'fisherman': 1,
          'girlfriend': 1,
          'valerie': 1,
          'let': 1,
          'illegal': 1,
          'activities': 1,
          'undisturbed': 1,
          'sergeant': 1,
          'campbell': 1,
          'pretends': 1,
          'notice': 1,
          'bright': 1,
          'lights': 1,
          'graces': 1,
          'greenhouse': 1,
          'friendly': 1,
          'vicar': 1,
          'phillips': 1,
          'counsels': 1,
          'wisdom': 1,
          'cant': 1,
          'control': 1,
          'doctor': 1,
          'clunes': 1,
          'enjoys': 1,
          'recreation': 1,
          'incredulous': 1,
          'score': 1,
          'bigtime': 1,
          'pregnant': 1,
          'doesnt': 1,
          'want': 1,
          'end': 1,
          'interesting': 1,
          'note': 1,
          'thinks': 1,
          'grass': 1,
          'bad': 1,
          'scene': 1,
          'portobello': 1,
          'road': 1,
          'section': 1,
          'trying': 1,
          'find': 1,
          'dressed': 1,
          'place': 1,
          'white': 1,
          'dress': 1,
          'hat': 1,
          'would': 1,
          'wear': 1,
          'tea': 1,
          'party': 1,
          'cornwall': 1,
          'streets': 1,
          'looking': 1,
          'make': 1,
          'deal': 1,
          'hokey': 1,
          'descended': 1,
          'huge': 1,
          'black': 1,
          'hole': 1,
          'whereby': 1,
          'recovered': 1,
          'dignity': 1,
          'moves': 1,
          'mode': 1,
          'whereas': 1,
          'beats': 1,
          'odds': 1,
          'failing': 1,
          'survive': 1,
          'meets': 1,
          'international': 1,
          'frenchman': 1,
          'tcheky': 1,
          'karyo': 1,
          'seen': 1,
          'threatening': 1,
          'cut': 1,
          'fingers': 1,
          'later': 1,
          'partner': 1,
          'millionaire': 1,
          'writes': 1,
          'selling': 1,
          'fiction': 1,
          'book': 1,
          'experiences': 1,
          'thereby': 1,
          'celebrity': 1,
          'nthings': 1,
          'work': 1,
          'ridiculous': 1,
          'breakdown': 1,
          'character': 1,
          'development': 1,
          'matronly': 1,
          'suddenly': 1,
          'merely': 1,
          'cartoon': 1,
          'flesh': 1,
          'blood': 1,
          'lot': 1,
          'giggles': 1,
          'come': 1,
          'forth': 1,
          'acting': 1,
          'performance': 1,
          'breathe': 1,
          'air': 1,
          'comes': 1,
          'belated': 1,
          'finale': 1,
          'drones': 1,
          'transparently': 1,
          'gratuitous': 1,
          'upbeat': 1,
          'tone': 1,
          'audience': 1,
          'sweet': 1,
          'lady': 1,
          'succeeded': 1,
          'nthis': 1,
          'unhip': 1,
          'leaves': 1,
          'impression': 1,
          'growing': 1,
          'tolerated': 1,
          'naughty': 1,
          'widows': 1,
          'screwed': 1,
          'terrible': 1,
          'former': 1,
          'must': 1,
          'order': 1,
          'remain': 1,
          'destitute': 1,
          'nummm': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'kill': 4,
          'trying': 4,
          'danza': 3,
          'whos': 3,
          'sister': 3,
          'thing': 3,
          'really': 3,
          'love': 2,
          'time': 2,
          'tony': 2,
          'relationship': 2,
          'well': 2,
          'danzas': 2,
          'confusing': 2,
          'ni': 2,
          'crime': 2,
          'little': 2,
          'works': 2,
          'nbut': 2,
          'film': 2,
          'nthe': 2,
          'story': 2,
          'guy': 2,
          'half': 2,
          'starts': 1,
          'aimlessly': 1,
          'gets': 1,
          'progressively': 1,
          'less': 1,
          'coherent': 1,
          'passes': 1,
          'nat': 1,
          'outset': 1,
          'appears': 1,
          'illegal': 1,
          'distributor': 1,
          'guns': 1,
          'establish': 1,
          'unsuspecting': 1,
          'woman': 1,
          'ndanza': 1,
          'sets': 1,
          'double': 1,
          'date': 1,
          'collegue': 1,
          'neverything': 1,
          'seems': 1,
          'going': 1,
          'accidentally': 1,
          'dies': 1,
          'falling': 1,
          'set': 1,
          'stairs': 1,
          'nmuch': 1,
          'confusion': 1,
          'mahem': 1,
          'ensues': 1,
          'death': 1,
          'covered': 1,
          'associates': 1,
          'begin': 1,
          'emerge': 1,
          'one': 1,
          'another': 1,
          'nsound': 1,
          'nit': 1,
          'think': 1,
          'filmmakers': 1,
          'take': 1,
          'standard': 1,
          'throw': 1,
          'humour': 1,
          'levity': 1,
          'nin': 1,
          'respects': 1,
          'majority': 1,
          'convoluted': 1,
          'mess': 1,
          'ncharacters': 1,
          'keep': 1,
          'popping': 1,
          'explanation': 1,
          'demanding': 1,
          'money': 1,
          'deals': 1,
          'occur': 1,
          'offscreen': 1,
          'aspect': 1,
          'actually': 1,
          'budding': 1,
          'dead': 1,
          'womans': 1,
          'devoted': 1,
          'part': 1,
          'never': 1,
          'become': 1,
          'familiar': 1,
          'characters': 1,
          'dont': 1,
          'care': 1,
          'happens': 1,
          'nwell': 1,
          'didnt': 1,
          'least': 1,
          'none': 1,
          'give': 1,
          'complete': 1,
          'departure': 1,
          'nheres': 1,
          'many': 1,
          'sitcom': 1,
          'roles': 1,
          'ingrained': 1,
          'consciousness': 1,
          'nice': 1,
          'always': 1,
          'right': 1,
          'nhere': 1,
          'plays': 1,
          'man': 1,
          'looking': 1,
          'means': 1,
          'needs': 1,
          'order': 1,
          'save': 1,
          'skin': 1,
          'impressed': 1,
          'performance': 1,
          'within': 1,
          'minutes': 1,
          'start': 1,
          'forgotten': 1,
          'goodguy': 1,
          'persona': 1,
          'nmichael': 1,
          'madsen': 1,
          'also': 1,
          'good': 1,
          'associate': 1,
          'spends': 1,
          'buddying': 1,
          'nlike': 1,
          'said': 1,
          'exactly': 1,
          'linear': 1,
          'storyline': 1,
          'n': 1,
          'praised': 1,
          'something': 1,
          'different': 1,
          'worn': 1,
          'genre': 1,
          'bad': 1,
          'doesnt': 1,
          'add': 1,
          'much': 1,
          'stars': 1,
          'deserved': 1,
          'better': 1,
          'audience': 1,
          'nneg': 1}),
 Counter({'like': 4,
          'song': 4,
          'billy': 4,
          'beatles': 3,
          'thats': 3,
          'n': 3,
          'know': 3,
          'bad': 3,
          'sgt': 3,
          'npeppers': 3,
          'lonely': 3,
          'hearts': 3,
          'band': 3,
          'world': 3,
          'one': 3,
          'nbut': 3,
          'strawberry': 3,
          'fields': 3,
          '70s': 3,
          'leaving': 3,
          'take': 2,
          'songs': 2,
          'nwell': 2,
          'true': 2,
          'look': 2,
          'years': 2,
          'released': 2,
          'find': 2,
          'story': 2,
          'made': 2,
          'name': 2,
          'movie': 2,
          'rock': 2,
          'doesnt': 2,
          'home': 2,
          'ni': 2,
          'characters': 2,
          'gets': 2,
          'nthe': 2,
          'really': 2,
          'martin': 2,
          'cooper': 2,
          'mr': 2,
          'singing': 2,
          'creepy': 2,
          'robots': 2,
          'horrible': 2,
          'thing': 2,
          'poor': 2,
          'nits': 2,
          'found': 2,
          'nin': 2,
          'whether': 1,
          'nobody': 1,
          'wants': 1,
          'see': 1,
          'bee': 1,
          'gees': 1,
          'fab': 1,
          'fours': 1,
          'best': 1,
          'known': 1,
          'maybe': 1,
          'nmaybe': 1,
          'youre': 1,
          'curious': 1,
          'way': 1,
          'hanky': 1,
          'blow': 1,
          'nose': 1,
          'nyou': 1,
          'nif': 1,
          'case': 1,
          'rejoice': 1,
          'twenty': 1,
          'ago': 1,
          'today': 1,
          'club': 1,
          'unleashed': 1,
          'thanks': 1,
          'modern': 1,
          'technological': 1,
          'advances': 1,
          'retched': 1,
          'piece': 1,
          'filmmaking': 1,
          'vhs': 1,
          'nderived': 1,
          'lyrics': 1,
          'various': 1,
          'tells': 1,
          'fictitious': 1,
          'popular': 1,
          'album': 1,
          '1967': 1,
          'nof': 1,
          'course': 1,
          'eleven': 1,
          'later': 1,
          'gibbs': 1,
          'three': 1,
          'become': 1,
          'peter': 1,
          'frampton': 1,
          'shears': 1,
          'aside': 1,
          'correlate': 1,
          'nand': 1,
          'oh': 1,
          'joy': 1,
          'lovely': 1,
          'audience': 1,
          'theyd': 1,
          'dont': 1,
          'think': 1,
          'least': 1,
          'actually': 1,
          'people': 1,
          'whereas': 1,
          'sandy': 1,
          'farina': 1,
          'place': 1,
          'called': 1,
          'debate': 1,
          'quite': 1,
          'futile': 1,
          'comes': 1,
          'film': 1,
          'offer': 1,
          'feast': 1,
          'horrid': 1,
          'cover': 1,
          'tunes': 1,
          'embarrassing': 1,
          'cameo': 1,
          'appearances': 1,
          'george': 1,
          'burns': 1,
          'nsteve': 1,
          'nalice': 1,
          'uuuuuuggggggglllllllyyyyy': 1,
          'fashion': 1,
          'faces': 1,
          'ncheck': 1,
          'please': 1,
          'plot': 1,
          'bit': 1,
          'unclear': 1,
          'npeople': 1,
          'hair': 1,
          'run': 1,
          'around': 1,
          'leisure': 1,
          'suits': 1,
          'engaging': 1,
          'music': 1,
          'video': 1,
          'sequences': 1,
          'sick': 1,
          'twisted': 1,
          'makebelieve': 1,
          'overly': 1,
          'demented': 1,
          'rogers': 1,
          'nmean': 1,
          'mustard': 1,
          'frankie': 1,
          'howerd': 1,
          'somehow': 1,
          'hold': 1,
          'co': 1,
          'instruments': 1,
          'calling': 1,
          'dr': 1,
          'maxwell': 1,
          'edison': 1,
          'steve': 1,
          'silver': 1,
          'hammer': 1,
          'outofkey': 1,
          'voice': 1,
          'sun': 1,
          'king': 1,
          'marvin': 1,
          'sunk': 1,
          'alice': 1,
          'couple': 1,
          'aid': 1,
          'nsupposedly': 1,
          'guess': 1,
          'heartland': 1,
          'talent': 1,
          'pretty': 1,
          'nonexistent': 1,
          'nmeanwhile': 1,
          'classic': 1,
          'sex': 1,
          'drugs': 1,
          'roll': 1,
          'without': 1,
          'love': 1,
          'nshe': 1,
          'sets': 1,
          'dad': 1,
          'mom': 1,
          'mrs': 1,
          'nfields': 1,
          'nhey': 1,
          'wan': 1,
          'na': 1,
          'cookie': 1,
          'nall': 1,
          'alone': 1,
          'sing': 1,
          'rendition': 1,
          'shes': 1,
          'accompanied': 1,
          'getting': 1,
          'lucy': 1,
          'dianne': 1,
          'steinberg': 1,
          'nya': 1,
          'diamond': 1,
          'possessing': 1,
          'girl': 1,
          'hangs': 1,
          'sky': 1,
          'theres': 1,
          'crazy': 1,
          'chick': 1,
          'soprano': 1,
          'roof': 1,
          'building': 1,
          'next': 1,
          'bus': 1,
          'stop': 1,
          'assume': 1,
          'movies': 1,
          'make': 1,
          'ya': 1,
          'sit': 1,
          'back': 1,
          'ask': 1,
          'unanswerable': 1,
          'question': 1,
          'hell': 1,
          'thinking': 1,
          'nnobody': 1,
          'ever': 1,
          'novelty': 1,
          'examine': 1,
          'ncarol': 1,
          'channing': 1,
          'robert': 1,
          'palmer': 1,
          'keith': 1,
          'carradine': 1,
          'theyre': 1,
          'nwho': 1,
          'knows': 1,
          'irrelevant': 1,
          'ntheres': 1,
          'much': 1,
          'meaning': 1,
          'bellybutton': 1,
          'lint': 1,
          'although': 1,
          'latter': 1,
          'may': 1,
          'interesting': 1,
          'nwith': 1,
          'recent': 1,
          'onslaught': 1,
          'nostalgia': 1,
          'ice': 1,
          'storm': 1,
          'boogie': 1,
          'nights': 1,
          'reissues': 1,
          'star': 1,
          'wars': 1,
          'trilogy': 1,
          'etc': 1,
          'lets': 1,
          'pray': 1,
          'get': 1,
          'special': 1,
          '20th': 1,
          'anniversary': 1,
          'secondchance': 1,
          'theaters': 1,
          'words': 1,
          'paul': 1,
          'mccartney': 1,
          'live': 1,
          'let': 1,
          'die': 1,
          'fact': 1,
          'bury': 1,
          'still': 1,
          'nneg': 1}),
 Counter({'film': 19,
          'one': 12,
          'comet': 12,
          'nthe': 9,
          'much': 7,
          'impact': 7,
          'leder': 7,
          'actually': 6,
          'effects': 6,
          'nbut': 5,
          'na': 5,
          'disaster': 5,
          'nthis': 5,
          'time': 5,
          'audience': 5,
          'could': 5,
          'special': 5,
          'plot': 5,
          'ndeep': 4,
          'also': 4,
          'back': 4,
          'nwell': 4,
          'go': 4,
          'bad': 4,
          'people': 4,
          'course': 4,
          'fun': 4,
          'actors': 4,
          'characters': 4,
          'year': 4,
          'information': 4,
          'nand': 4,
          'emotional': 4,
          'show': 4,
          'hit': 4,
          'action': 4,
          'movie': 3,
          'first': 3,
          'films': 3,
          'two': 3,
          'watch': 3,
          'drama': 3,
          'good': 3,
          'wood': 3,
          'gets': 3,
          'rittenhouse': 3,
          'take': 3,
          'yada': 3,
          'surface': 3,
          'nits': 3,
          'know': 3,
          'pace': 3,
          'given': 3,
          'isnt': 3,
          'think': 3,
          'earth': 3,
          'note': 3,
          'faces': 3,
          'character': 3,
          'doesnt': 2,
          'really': 2,
          'begins': 2,
          'summer': 2,
          'dantes': 2,
          'peak': 2,
          'came': 2,
          'months': 2,
          'released': 2,
          'smart': 2,
          'best': 2,
          'ever': 2,
          'wasted': 2,
          'head': 2,
          'may': 2,
          'away': 2,
          'armageddon': 2,
          'nof': 2,
          'watching': 2,
          'anyone': 2,
          'right': 2,
          'like': 2,
          'many': 2,
          'nto': 2,
          'entire': 2,
          'implausibilities': 2,
          'still': 2,
          'rather': 2,
          'human': 2,
          'poorly': 2,
          'thing': 2,
          'gives': 2,
          'star': 2,
          'final': 2,
          'fifteen': 2,
          'minutes': 2,
          'making': 2,
          'sky': 2,
          'sobieski': 2,
          'car': 2,
          'nothing': 2,
          'heard': 2,
          'jenny': 2,
          'leoni': 2,
          'nshe': 2,
          'government': 2,
          'involving': 2,
          'james': 2,
          'girl': 2,
          'ellie': 2,
          'nafter': 2,
          'decides': 2,
          'use': 2,
          'nluckily': 2,
          'spell': 2,
          'nthey': 2,
          'president': 2,
          'freeman': 2,
          'hours': 2,
          'wants': 2,
          'ones': 2,
          'wont': 2,
          'years': 2,
          'humans': 2,
          'come': 2,
          'rest': 2,
          'worth': 2,
          'schell': 2,
          'moment': 2,
          'heartfelt': 2,
          'shame': 2,
          'else': 2,
          'work': 2,
          'mimi': 2,
          'successful': 2,
          'direction': 2,
          'nher': 2,
          'worse': 2,
          'big': 2,
          'screen': 2,
          'blame': 2,
          'us': 2,
          'boring': 2,
          'nwhat': 2,
          'anyway': 2,
          'going': 2,
          'might': 2,
          'cant': 2,
          'miss': 2,
          'done': 2,
          'huge': 2,
          'even': 2,
          'land': 2,
          'enough': 2,
          'forgiveable': 2,
          'water': 2,
          'along': 2,
          'comes': 2,
          'none': 2,
          'leders': 2,
          'nleder': 2,
          'moments': 2,
          'another': 2,
          'harlin': 2,
          'shows': 2,
          'coming': 2,
          'space': 2,
          'response': 2,
          'tvs': 2,
          'role': 2,
          'presence': 2,
          'successfully': 2,
          'talented': 2,
          'better': 2,
          'worst': 2,
          'warning': 1,
          'spoilers': 1,
          'included': 1,
          'review': 1,
          'make': 1,
          'difference': 1,
          'official': 1,
          'season': 1,
          'brings': 1,
          'memories': 1,
          '1997': 1,
          'nremember': 1,
          'february': 1,
          'later': 1,
          'volcano': 1,
          'exhilirating': 1,
          'seen': 1,
          'latter': 1,
          'incohesive': 1,
          'mess': 1,
          'defied': 1,
          'logic': 1,
          'talent': 1,
          'deja': 1,
          'vu': 1,
          'competition': 1,
          'unfortunately': 1,
          'flick': 1,
          'shy': 1,
          'upcoming': 1,
          'cometdisaster': 1,
          'beginning': 1,
          'july': 1,
          'general': 1,
          'reaction': 1,
          'oppposed': 1,
          'mine': 1,
          'minority': 1,
          'stood': 1,
          'side': 1,
          'deep': 1,
          'began': 1,
          'wonder': 1,
          'mind': 1,
          'napparently': 1,
          'utterly': 1,
          'baffles': 1,
          'completely': 1,
          'honest': 1,
          'havent': 1,
          'little': 1,
          'life': 1,
          'nvolcano': 1,
          'wazoo': 1,
          'contains': 1,
          'cheap': 1,
          'incredibly': 1,
          'horrible': 1,
          'constructed': 1,
          'half': 1,
          'bottom': 1,
          'ranking': 1,
          'slightly': 1,
          'entertaining': 1,
          'unnamed': 1,
          'varies': 1,
          'advanced': 1,
          'technology': 1,
          'sets': 1,
          'future': 1,
          'fire': 1,
          'showing': 1,
          'local': 1,
          'theater': 1,
          'pushing': 1,
          '1993': 1,
          'line': 1,
          'students': 1,
          'outside': 1,
          'night': 1,
          'peering': 1,
          'telescopes': 1,
          'dark': 1,
          'namong': 1,
          'leo': 1,
          'biederman': 1,
          'elijah': 1,
          'sarah': 1,
          'hotchner': 1,
          'leelee': 1,
          'nleo': 1,
          'unknowingly': 1,
          'discovers': 1,
          'teacher': 1,
          'sends': 1,
          'photo': 1,
          'unknown': 1,
          'object': 1,
          'astronomer': 1,
          'able': 1,
          'determine': 1,
          'correct': 1,
          'path': 1,
          'distant': 1,
          'seconds': 1,
          'nhe': 1,
          'races': 1,
          'mail': 1,
          'killed': 1,
          'reckless': 1,
          'accident': 1,
          'passes': 1,
          'nwe': 1,
          'introduced': 1,
          'lerner': 1,
          'reporter': 1,
          'msnbc': 1,
          'handed': 1,
          'job': 1,
          'investigate': 1,
          'possible': 1,
          'coverup': 1,
          'senator': 1,
          'alan': 1,
          'cromwell': 1,
          'talks': 1,
          'woman': 1,
          'mentions': 1,
          'affair': 1,
          'named': 1,
          'talking': 1,
          'unsatisfied': 1,
          'internet': 1,
          'help': 1,
          'knows': 1,
          'exactly': 1,
          'certain': 1,
          'looking': 1,
          'ele': 1,
          'nthat': 1,
          'pretty': 1,
          'darn': 1,
          'guessing': 1,
          'spelled': 1,
          'nbefore': 1,
          'push': 1,
          'road': 1,
          'meet': 1,
          'united': 1,
          'states': 1,
          'beck': 1,
          'morgan': 1,
          'nbeck': 1,
          'recommends': 1,
          'keep': 1,
          'secret': 1,
          '48': 1,
          'confirm': 1,
          'hold': 1,
          'press': 1,
          'conference': 1,
          'nnaturally': 1,
          'compensated': 1,
          'offer': 1,
          'front': 1,
          'row': 1,
          'seat': 1,
          'chance': 1,
          'question': 1,
          'reveal': 1,
          'public': 1,
          'plans': 1,
          'send': 1,
          'massive': 1,
          'spacecraft': 1,
          'destroy': 1,
          'arrive': 1,
          'announce': 1,
          'plan': 1,
          'called': 1,
          'ark': 1,
          'hope': 1,
          'survival': 1,
          'computer': 1,
          'select': 1,
          '800': 1,
          '000': 1,
          'random': 1,
          'nthese': 1,
          'large': 1,
          'cave': 1,
          'underground': 1,
          'kill': 1,
          'race': 1,
          'dust': 1,
          'settle': 1,
          'would': 1,
          'longerapproximately': 1,
          'ninety': 1,
          'understand': 1,
          'start': 1,
          'standard': 1,
          'procedures': 1,
          'subplot': 1,
          'mentioning': 1,
          'njenny': 1,
          'father': 1,
          'jason': 1,
          'maximilian': 1,
          'touching': 1,
          'relationship': 1,
          'forms': 1,
          'impending': 1,
          'doom': 1,
          'nnow': 1,
          'title': 1,
          'alone': 1,
          'suggests': 1,
          'previews': 1,
          'nby': 1,
          'absoltuely': 1,
          'tension': 1,
          'drawn': 1,
          'attempt': 1,
          'stop': 1,
          'ndirector': 1,
          'tries': 1,
          'episodes': 1,
          'television': 1,
          'er': 1,
          'major': 1,
          'debut': 1,
          'peacemaker': 1,
          'pathetic': 1,
          'heartless': 1,
          'outdid': 1,
          'creating': 1,
          'nsuggestion': 1,
          'ms': 1,
          'please': 1,
          'stay': 1,
          'least': 1,
          'genre': 1,
          'nmuch': 1,
          'placed': 1,
          'directly': 1,
          'disastrously': 1,
          'nthroughout': 1,
          'subtitles': 1,
          'tell': 1,
          'passed': 1,
          'goes': 1,
          'weeks': 1,
          'nit': 1,
          'literally': 1,
          'feels': 1,
          'lapsed': 1,
          'taking': 1,
          'place': 1,
          'realtimeits': 1,
          'nscreenwriters': 1,
          'michael': 1,
          'tolkin': 1,
          'bruce': 1,
          'joel': 1,
          'rubin': 1,
          'crafted': 1,
          'simplistic': 1,
          'story': 1,
          'starts': 1,
          'promising': 1,
          'soon': 1,
          'turns': 1,
          'deadly': 1,
          'nchock': 1,
          'full': 1,
          'cheesy': 1,
          'liners': 1,
          'sex': 1,
          'school': 1,
          'stupid': 1,
          '70s': 1,
          'nonly': 1,
          'subplots': 1,
          'remotely': 1,
          'interesting': 1,
          'forgettable': 1,
          'main': 1,
          'outrageous': 1,
          'figure': 1,
          'supposed': 1,
          'scifi': 1,
          'put': 1,
          'simply': 1,
          'situation': 1,
          'nthats': 1,
          '80': 1,
          '20': 1,
          'nscenes': 1,
          'well': 1,
          'orbiting': 1,
          'ship': 1,
          'majestic': 1,
          'mistake': 1,
          'laughable': 1,
          'frightening': 1,
          'concept': 1,
          'trying': 1,
          'preposterous': 1,
          'thats': 1,
          'walk': 1,
          'ngive': 1,
          'break': 1,
          'ya': 1,
          'hyped': 1,
          'collision': 1,
          'far': 1,
          'spectacular': 1,
          'makes': 1,
          'independence': 1,
          'day': 1,
          'look': 1,
          'brilliant': 1,
          'rushing': 1,
          'towards': 1,
          'effective': 1,
          'hits': 1,
          'continent': 1,
          'turn': 1,
          'ridiculous': 1,
          'ncgi': 1,
          'used': 1,
          'looks': 1,
          'laughs': 1,
          'shrieks': 1,
          'nin': 1,
          'fact': 1,
          'recommend': 1,
          'want': 1,
          'see': 1,
          'get': 1,
          'days': 1,
          'njust': 1,
          'visual': 1,
          'improved': 1,
          'struck': 1,
          'wrong': 1,
          'concerning': 1,
          'influences': 1,
          'loves': 1,
          'terror': 1,
          'reminded': 1,
          'director': 1,
          'renny': 1,
          'die': 1,
          'hard': 1,
          '2': 1,
          'cliffhanger': 1,
          'succeeds': 1,
          'victims': 1,
          'realistic': 1,
          'situations': 1,
          'likes': 1,
          'flaunt': 1,
          'peoples': 1,
          'fears': 1,
          'via': 1,
          'instead': 1,
          'sympathetic': 1,
          'seems': 1,
          'sadist': 1,
          'astronaut': 1,
          'flying': 1,
          'warrant': 1,
          'farther': 1,
          'persons': 1,
          'face': 1,
          'drifting': 1,
          'cheapest': 1,
          'ways': 1,
          'ellicit': 1,
          'fooled': 1,
          'non': 1,
          'picks': 1,
          'last': 1,
          'impacts': 1,
          'pick': 1,
          'shown': 1,
          'nthen': 1,
          'cry': 1,
          'loved': 1,
          'obvious': 1,
          'mostly': 1,
          'trick': 1,
          'rope': 1,
          'viewers': 1,
          'feeling': 1,
          'didnt': 1,
          'nt': 1,
          'boys': 1,
          'naked': 1,
          'truth': 1,
          'meatiest': 1,
          'made': 1,
          'stronger': 1,
          'leonis': 1,
          'grow': 1,
          'care': 1,
          'nrobert': 1,
          'duvall': 1,
          'energetic': 1,
          'turned': 1,
          'shreds': 1,
          'nelijah': 1,
          'hasnt': 1,
          'roles': 1,
          'stick': 1,
          'nyou': 1,
          'stuff': 1,
          'nvanessa': 1,
          'redgrave': 1,
          'barely': 1,
          'acknowledgeable': 1,
          'performance': 1,
          'enhanced': 1,
          'strong': 1,
          'nmaximilian': 1,
          'distracting': 1,
          'provide': 1,
          'nice': 1,
          'humor': 1,
          'nmorgan': 1,
          'infinitely': 1,
          'shallow': 1,
          'performances': 1,
          'date': 1,
          'quite': 1,
          'remarkable': 1,
          'nleelee': 1,
          'suffered': 1,
          'written': 1,
          'ron': 1,
          'eldard': 1,
          'denise': 1,
          'crosby': 1,
          'neldard': 1,
          'limited': 1,
          'ncrosby': 1,
          'personally': 1,
          'tasha': 1,
          'yar': 1,
          'trek': 1,
          'next': 1,
          'generation': 1,
          'nseeing': 1,
          'highlights': 1,
          'noverall': 1,
          'cast': 1,
          'virtually': 1,
          'rated': 1,
          'pg13': 1,
          'related': 1,
          'elements': 1,
          'brief': 1,
          'language': 1,
          'omen': 1,
          'things': 1,
          'xfiles': 1,
          'hopefully': 1,
          'ncosting': 1,
          'nearly': 1,
          '75': 1,
          'million': 1,
          'illustrious': 1,
          'ilm': 1,
          'shocker': 1,
          'score': 1,
          'composed': 1,
          'oscarwinner': 1,
          'horner': 1,
          'titanic': 1,
          'expected': 1,
          'witness': 1,
          'experience': 1,
          'nwhen': 1,
          'almost': 1,
          'wish': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'burning': 5,
          'one': 4,
          'even': 4,
          'beginning': 3,
          'forest': 3,
          'get': 3,
          'fire': 3,
          'girl': 3,
          'played': 3,
          'long': 3,
          'nthe': 3,
          'first': 2,
          'film': 2,
          'new': 2,
          'nfirestorm': 2,
          'cinematographer': 2,
          'nas': 2,
          'story': 2,
          'nwhen': 2,
          'right': 2,
          'trapped': 2,
          'people': 2,
          'near': 2,
          'cars': 2,
          'monica': 2,
          'away': 2,
          'nnot': 2,
          'nin': 2,
          'building': 2,
          'two': 2,
          'howie': 2,
          'little': 2,
          'flames': 2,
          'group': 2,
          'firefighting': 2,
          'shaye': 2,
          'look': 2,
          'saw': 2,
          'riding': 2,
          'motorcycle': 2,
          'press': 1,
          'screening': 1,
          '1998': 1,
          'already': 1,
          'ive': 1,
          'gotten': 1,
          'prime': 1,
          'candidate': 1,
          'worst': 1,
          'ten': 1,
          'year': 1,
          'list': 1,
          'nwhat': 1,
          'auspicious': 1,
          'nwelcome': 1,
          'dog': 1,
          'days': 1,
          'winter': 1,
          'openings': 1,
          'merit': 1,
          'oscar': 1,
          'contenders': 1,
          'studios': 1,
          'opened': 1,
          'late': 1,
          'december': 1,
          'york': 1,
          'l': 1,
          'appear': 1,
          'elsewhere': 1,
          'directorial': 1,
          'debut': 1,
          'dances': 1,
          'wolvess': 1,
          'academy': 1,
          'award': 1,
          'winning': 1,
          'dean': 1,
          'semler': 1,
          'years': 1,
          'crop': 1,
          'movies': 1,
          'opens': 1,
          'pretentiously': 1,
          'informs': 1,
          'us': 1,
          'tens': 1,
          'thousands': 1,
          'firefighters': 1,
          '400': 1,
          'smokejumpers': 1,
          'nwe': 1,
          'cut': 1,
          'plane': 1,
          'load': 1,
          'smoke': 1,
          'jumping': 1,
          'cowboys': 1,
          'cowgirl': 1,
          'gungho': 1,
          'guys': 1,
          'taking': 1,
          'romance': 1,
          'quiz': 1,
          'cosmopolitan': 1,
          'nhaving': 1,
          'time': 1,
          'lives': 1,
          'jump': 1,
          'middle': 1,
          'director': 1,
          'cant': 1,
          'small': 1,
          'parts': 1,
          'sense': 1,
          'trouble': 1,
          'nwith': 1,
          'noisy': 1,
          'roaring': 1,
          'huddled': 1,
          'gasolinefilled': 1,
          'smokejumper': 1,
          'christianne': 1,
          'hirt': 1,
          'tells': 1,
          'soontoexplode': 1,
          'vehicles': 1,
          'bothering': 1,
          'shout': 1,
          'close': 1,
          'announces': 1,
          'warning': 1,
          'without': 1,
          'raising': 1,
          'voice': 1,
          'much': 1,
          'approaching': 1,
          'nmiraculously': 1,
          'manage': 1,
          'hear': 1,
          'move': 1,
          'specializes': 1,
          'cheap': 1,
          'shots': 1,
          'camera': 1,
          'locates': 1,
          'proverbial': 1,
          'young': 1,
          'nearby': 1,
          'throughout': 1,
          'overly': 1,
          'dramatic': 1,
          'stephen': 1,
          'f': 1,
          'windon': 1,
          'postman': 1,
          'uses': 1,
          'extremely': 1,
          'fast': 1,
          'zooms': 1,
          'endangered': 1,
          'girls': 1,
          'face': 1,
          'nour': 1,
          'shows': 1,
          'heroes': 1,
          'crews': 1,
          'chief': 1,
          'wynt': 1,
          'perkins': 1,
          'laconically': 1,
          'scott': 1,
          'glenn': 1,
          'secondincommand': 1,
          'jesse': 1,
          'graves': 1,
          'weak': 1,
          'attempt': 1,
          'next': 1,
          'steven': 1,
          'seagal': 1,
          'enter': 1,
          'house': 1,
          'looking': 1,
          'panic': 1,
          'difficulty': 1,
          'locating': 1,
          'engulfed': 1,
          'manipulative': 1,
          'script': 1,
          'hidden': 1,
          'dollhouse': 1,
          'nthis': 1,
          'mawkish': 1,
          'show': 1,
          'cuts': 1,
          'back': 1,
          'lifeordeath': 1,
          'decision': 1,
          'make': 1,
          'chopper': 1,
          'fireretardant': 1,
          'chemicals': 1,
          'enough': 1,
          'save': 1,
          'nwill': 1,
          'large': 1,
          'helpless': 1,
          'monicas': 1,
          'buddies': 1,
          'nshe': 1,
          'seconds': 1,
          'decide': 1,
          'saved': 1,
          'nyes': 1,
          'goes': 1,
          'majority': 1,
          'miracle': 1,
          'miracles': 1,
          'three': 1,
          'come': 1,
          'alive': 1,
          'anyway': 1,
          'content': 1,
          'traditional': 1,
          'chris': 1,
          'soths': 1,
          'screenplay': 1,
          'attempts': 1,
          'jazz': 1,
          'william': 1,
          'forsythe': 1,
          'palookaville': 1,
          'play': 1,
          'vicious': 1,
          'killer': 1,
          'named': 1,
          'randy': 1,
          'earl': 1,
          'sets': 1,
          'join': 1,
          'crew': 1,
          'put': 1,
          'escape': 1,
          'n': 1,
          'hoods': 1,
          'woods': 1,
          'groundpounders': 1,
          'yell': 1,
          'convicts': 1,
          'bused': 1,
          'help': 1,
          'fight': 1,
          'nalong': 1,
          'way': 1,
          'picks': 1,
          'ornithologist': 1,
          'hostage': 1,
          'suzy': 1,
          'amis': 1,
          'turns': 1,
          'trained': 1,
          'warrior': 1,
          'ways': 1,
          'father': 1,
          'marine': 1,
          'drill': 1,
          'instructor': 1,
          'nmost': 1,
          'highly': 1,
          'predictable': 1,
          'chase': 1,
          'poor': 1,
          'given': 1,
          'ridiculous': 1,
          'stunt': 1,
          'another': 1,
          'silly': 1,
          'performing': 1,
          'nhe': 1,
          'flings': 1,
          'chain': 1,
          'backwards': 1,
          'head': 1,
          'speeding': 1,
          'hit': 1,
          'windshield': 1,
          'pursuing': 1,
          'truck': 1,
          'narguably': 1,
          'low': 1,
          'point': 1,
          'escapes': 1,
          'locked': 1,
          'conveniently': 1,
          'parked': 1,
          'inside': 1,
          'nusing': 1,
          'ramp': 1,
          'shoots': 1,
          'straight': 1,
          'top': 1,
          'buildings': 1,
          'attic': 1,
          'hits': 1,
          'ground': 1,
          'rides': 1,
          'cloud': 1,
          'dust': 1,
          'isnt': 1,
          'using': 1,
          'stock': 1,
          'footage': 1,
          'actual': 1,
          'fires': 1,
          'simulated': 1,
          'ones': 1,
          'hokey': 1,
          'neditor': 1,
          'jack': 1,
          'hofstra': 1,
          'cheapens': 1,
          'action': 1,
          'use': 1,
          'scene': 1,
          'transitions': 1,
          'ending': 1,
          'sick': 1,
          'twists': 1,
          'manages': 1,
          'worse': 1,
          'rest': 1,
          'nperhaps': 1,
          'best': 1,
          'said': 1,
          'picture': 1,
          'faint': 1,
          'praise': 1,
          'heard': 1,
          'afterwards': 1,
          'lobby': 1,
          'bad': 1,
          'television': 1,
          'sitcoms': 1,
          'runs': 1,
          'mercifully': 1,
          '1': 1,
          '29': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'language': 1,
          'would': 1,
          'acceptable': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'computer': 12,
          'computers': 8,
          'film': 7,
          'hacking': 6,
          'movie': 5,
          'hackers': 5,
          'dade': 4,
          'little': 4,
          'real': 3,
          'films': 3,
          'usually': 3,
          'nthe': 3,
          'murphy': 3,
          'young': 3,
          'first': 2,
          'look': 2,
          'impossible': 2,
          'ridiculous': 2,
          'nif': 2,
          'would': 2,
          'nto': 2,
          'internet': 2,
          'cant': 2,
          'world': 2,
          'section': 2,
          'movies': 2,
          'nthis': 2,
          'extremely': 2,
          'plot': 2,
          'around': 2,
          'hacker': 2,
          'eighteen': 2,
          'old': 2,
          'away': 2,
          'acid': 2,
          'burn': 2,
          'fbi': 2,
          'think': 2,
          'much': 2,
          'geeks': 2,
          'advanced': 2,
          'makes': 2,
          'time': 2,
          'many': 2,
          'users': 2,
          'ever': 1,
          'since': 1,
          'wargames': 1,
          'hollywood': 1,
          'attempted': 1,
          'produce': 1,
          'nthese': 1,
          'show': 1,
          'audience': 1,
          'really': 1,
          'exaggeration': 1,
          'greater': 1,
          'expect': 1,
          'nhackers': 1,
          'guilty': 1,
          'crimes': 1,
          'anyone': 1,
          'familiar': 1,
          'andor': 1,
          'incredibly': 1,
          'stupid': 1,
          'take': 1,
          'anymore': 1,
          'nthose': 1,
          'frequent': 1,
          'one': 1,
          'greatest': 1,
          'sites': 1,
          'wide': 1,
          'web': 1,
          'database': 1,
          'probably': 1,
          'aware': 1,
          'entitled': 1,
          'goofs': 1,
          'mistakes': 1,
          'nwell': 1,
          'imdb': 1,
          'sums': 1,
          'well': 1,
          'goof': 1,
          'listed': 1,
          'generally': 1,
          'illinformed': 1,
          'extreme': 1,
          'regarding': 1,
          'capabilities': 1,
          'technology': 1,
          'nand': 1,
          'truthfully': 1,
          'onehundred': 1,
          'percent': 1,
          'correct': 1,
          'obviously': 1,
          'centers': 1,
          'nmore': 1,
          'specifically': 1,
          'follows': 1,
          'exploits': 1,
          'played': 1,
          'jonny': 1,
          'lee': 1,
          'miller': 1,
          'nmiller': 1,
          'thankful': 1,
          'trainspotting': 1,
          'knows': 1,
          'career': 1,
          'opens': 1,
          'arrested': 1,
          'systems': 1,
          'nhe': 1,
          'forbidden': 1,
          'use': 1,
          'turned': 1,
          'years': 1,
          'picks': 1,
          'point': 1,
          'year': 1,
          'ndade': 1,
          'later': 1,
          'meets': 1,
          'fellow': 1,
          'angelina': 1,
          'jolie': 1,
          'cereal': 1,
          'killer': 1,
          'matthew': 1,
          'lillard': 1,
          'lord': 1,
          'nikon': 1,
          'laurence': 1,
          'mason': 1,
          'phantom': 1,
          'phreak': 1,
          'renoly': 1,
          'santiago': 1,
          'basically': 1,
          'trying': 1,
          'next': 1,
          'hack': 1,
          'gibson': 1,
          'get': 1,
          'caught': 1,
          'noh': 1,
          'subplot': 1,
          'also': 1,
          'tries': 1,
          'woo': 1,
          'female': 1,
          'nreally': 1,
          'say': 1,
          'aside': 1,
          'ive': 1,
          'said': 1,
          'nits': 1,
          'bunch': 1,
          'obsessive': 1,
          'compulsive': 1,
          'reality': 1,
          'running': 1,
          'staying': 1,
          'nthanks': 1,
          'public': 1,
          'unfamiliar': 1,
          'distorted': 1,
          'viewpoint': 1,
          'bit': 1,
          'frivolous': 1,
          'suggestions': 1,
          'list': 1,
          'sum': 1,
          'terrible': 1,
          'youre': 1,
          'looking': 1,
          'closer': 1,
          'goes': 1,
          'suggest': 1,
          'sneakers': 1,
          'nalthough': 1,
          'times': 1,
          'may': 1,
          'seem': 1,
          'far': 1,
          'fetched': 1,
          'believable': 1,
          'regular': 1,
          'nhopefully': 1,
          'didnt': 1,
          'influence': 1,
          'portrayed': 1,
          '105': 1,
          'minute': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'giant': 5,
          'get': 5,
          'sam': 5,
          'great': 5,
          'nit': 4,
          'romania': 4,
          'family': 4,
          'one': 3,
          'thing': 3,
          'sentimentality': 3,
          'people': 3,
          'nmy': 3,
          'max': 3,
          'son': 3,
          'hes': 3,
          'funny': 3,
          'seagal': 3,
          'could': 3,
          'cant': 2,
          'stand': 2,
          'makers': 2,
          'films': 2,
          'emotions': 2,
          'good': 2,
          'us': 2,
          'audience': 2,
          'choked': 2,
          'moved': 2,
          'cute': 2,
          'create': 2,
          'might': 2,
          'turns': 2,
          'intended': 2,
          'kind': 2,
          'work': 2,
          'actor': 2,
          'nmax': 2,
          'nsam': 2,
          'moments': 2,
          'best': 2,
          'fun': 2,
          'gets': 2,
          'would': 2,
          'however': 2,
          'completely': 2,
          'nand': 2,
          'theres': 1,
          'oozes': 1,
          'nheres': 1,
          'note': 1,
          'effective': 1,
          'characters': 1,
          'speak': 1,
          'nswelling': 1,
          'saddening': 1,
          'music': 1,
          'way': 1,
          'tell': 1,
          'unhappy': 1,
          'situation': 1,
          'hopeless': 1,
          'nalas': 1,
          'uses': 1,
          'manipulative': 1,
          'frequently': 1,
          'high': 1,
          'intensity': 1,
          'forgot': 1,
          'watched': 1,
          'ways': 1,
          'getting': 1,
          'members': 1,
          'nwhat': 1,
          'reminded': 1,
          'wasnt': 1,
          'even': 1,
          'slightest': 1,
          'bit': 1,
          'matter': 1,
          'forced': 1,
          'contrived': 1,
          'conspicuously': 1,
          'uncute': 1,
          'detest': 1,
          'word': 1,
          'ive': 1,
          'chosen': 1,
          'use': 1,
          'clearly': 1,
          'wanted': 1,
          'takes': 1,
          'premise': 1,
          'interesting': 1,
          'liked': 1,
          'preview': 1,
          'bogs': 1,
          'endless': 1,
          'plot': 1,
          'cliches': 1,
          'easy': 1,
          'emotional': 1,
          'rise': 1,
          'nmaybe': 1,
          'didnt': 1,
          'nbilly': 1,
          'crystal': 1,
          'plays': 1,
          'cayman': 1,
          'agent': 1,
          'beginning': 1,
          'nhes': 1,
          'kid': 1,
          'made': 1,
          'famous': 1,
          'nthe': 1,
          'screenplay': 1,
          'fired': 1,
          'car': 1,
          'accident': 1,
          'saved': 1,
          'enormous': 1,
          'individual': 1,
          'stands': 1,
          'almost': 1,
          'eight': 1,
          'feet': 1,
          'tall': 1,
          'nhis': 1,
          'name': 1,
          'gheorghe': 1,
          'muresan': 1,
          'thinks': 1,
          'hed': 1,
          'movie': 1,
          'star': 1,
          'size': 1,
          'nsubplots': 1,
          'follows': 1,
          'wife': 1,
          'kathleen': 1,
          'quinlan': 1,
          'never': 1,
          'around': 1,
          'move': 1,
          'chicago': 1,
          'love': 1,
          'woman': 1,
          'named': 1,
          'lilianna': 1,
          'away': 1,
          'twenty': 1,
          'years': 1,
          'begins': 1,
          'convinces': 1,
          'go': 1,
          'back': 1,
          'america': 1,
          'make': 1,
          'lots': 1,
          'money': 1,
          'various': 1,
          'subplots': 1,
          'resolved': 1,
          'broke': 1,
          'dying': 1,
          'npass': 1,
          'kleenex': 1,
          'comedy': 1,
          'moderately': 1,
          'features': 1,
          'steven': 1,
          'making': 1,
          'nin': 1,
          'scene': 1,
          'phone': 1,
          'talk': 1,
          'course': 1,
          'doesnt': 1,
          'believe': 1,
          'actually': 1,
          'speaking': 1,
          'goes': 1,
          'bad': 1,
          'quote': 1,
          'line': 1,
          'like': 1,
          'probably': 1,
          'lose': 1,
          'effect': 1,
          'ncrystal': 1,
          'always': 1,
          'entertaining': 1,
          'lines': 1,
          'subtle': 1,
          'throwaways': 1,
          'many': 1,
          'miss': 1,
          'entirely': 1,
          'often': 1,
          'countered': 1,
          'slew': 1,
          'jokes': 1,
          'arent': 1,
          'cause': 1,
          'involuntary': 1,
          'rolling': 1,
          'eyes': 1,
          'nmuresan': 1,
          'watch': 1,
          'act': 1,
          'well': 1,
          'nquinlan': 1,
          'hand': 1,
          'actress': 1,
          'needs': 1,
          'role': 1,
          'shows': 1,
          'talents': 1,
          'nshe': 1,
          'underused': 1,
          'last': 1,
          'year': 1,
          'event': 1,
          'horizon': 1,
          'breakdown': 1,
          'least': 1,
          'show': 1,
          'stuff': 1,
          'nhere': 1,
          'fake': 1,
          'romanian': 1,
          'accent': 1,
          'nall': 1,
          'disappointing': 1,
          'ingredients': 1,
          'much': 1,
          'running': 1,
          'time': 1,
          'simply': 1,
          'mediocre': 1,
          'nas': 1,
          'lumbers': 1,
          'inevitable': 1,
          'conclusion': 1,
          'director': 1,
          'michael': 1,
          'lehmann': 1,
          'job': 1,
          'directing': 1,
          'underrated': 1,
          'hudson': 1,
          'hawk': 1,
          'scriptwriter': 1,
          'david': 1,
          'seltzer': 1,
          'pile': 1,
          'every': 1,
          'cliche': 1,
          'imaginable': 1,
          'specifically': 1,
          'pull': 1,
          'heartstrings': 1,
          'nsams': 1,
          'multiple': 1,
          'engagements': 1,
          'hackneyed': 1,
          'main': 1,
          'character': 1,
          'healthy': 1,
          'relationship': 1,
          'nlater': 1,
          'entire': 1,
          'story': 1,
          'supposed': 1,
          'big': 1,
          'metaphor': 1,
          'signifying': 1,
          'sams': 1,
          'reunion': 1,
          'think': 1,
          'towards': 1,
          'end': 1,
          'valiant': 1,
          'morality': 1,
          'problems': 1,
          'apologize': 1,
          'vague': 1,
          'nits': 1,
          'icky': 1,
          'drips': 1,
          'gooey': 1,
          'wannabe': 1,
          'human': 1,
          'straightforward': 1,
          'nmore': 1,
          'importantly': 1,
          'moving': 1,
          'level': 1,
          'far': 1,
          'deeper': 1,
          'ninstead': 1,
          'complicated': 1,
          'overlong': 1,
          'underengaging': 1,
          'elicits': 1,
          'laughs': 1,
          'strives': 1,
          'superficial': 1,
          'tears': 1,
          'since': 1,
          'left': 1,
          'feeling': 1,
          'unmoved': 1,
          'position': 1,
          'evil': 1,
          'ultimately': 1,
          'destroy': 1,
          'world': 1,
          'nneg': 1}),
 Counter({'simple': 4,
          'money': 4,
          'greed': 4,
          'end': 3,
          'movie': 3,
          'plan': 2,
          'nthis': 2,
          'become': 2,
          'blood': 2,
          'love': 2,
          'one': 2,
          'tedious': 2,
          'brothers': 2,
          'performance': 2,
          'brother': 2,
          'finding': 1,
          'plane': 1,
          'load': 1,
          'getting': 1,
          'away': 1,
          'cash': 1,
          'parable': 1,
          'bane': 1,
          'life': 1,
          'nyes': 1,
          'elements': 1,
          'fargo': 1,
          'snow': 1,
          'cold': 1,
          'although': 1,
          'vivid': 1,
          'gore': 1,
          'department': 1,
          'nit': 1,
          'shows': 1,
          'set': 1,
          'chain': 1,
          'events': 1,
          'leading': 1,
          'death': 1,
          'destruction': 1,
          'lives': 1,
          'nand': 1,
          'day': 1,
          'things': 1,
          'matter': 1,
          'truth': 1,
          'honesty': 1,
          'nalthough': 1,
          'sense': 1,
          'may': 1,
          'seem': 1,
          'making': 1,
          'ugliness': 1,
          'box': 1,
          'office': 1,
          'material': 1,
          'morale': 1,
          'ending': 1,
          'expects': 1,
          'way': 1,
          'becomes': 1,
          'apparent': 1,
          'first': 1,
          'murder': 1,
          'cover': 1,
          'crime': 1,
          'rest': 1,
          'spirals': 1,
          'downward': 1,
          'nthe': 1,
          'characters': 1,
          'drama': 1,
          'mixture': 1,
          'intellectual': 1,
          'folk': 1,
          'friends': 1,
          'fall': 1,
          'prey': 1,
          'avarice': 1,
          'nthey': 1,
          'perhaps': 1,
          'thrown': 1,
          'someone': 1,
          'sensible': 1,
          'level': 1,
          'headed': 1,
          'affected': 1,
          'give': 1,
          'party': 1,
          'balance': 1,
          'ncommendable': 1,
          'exceptional': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'whose': 1,
          'portrayal': 1,
          'simpleton': 1,
          'masterful': 1,
          'nbill': 1,
          'paxton': 1,
          'also': 1,
          'gives': 1,
          'powerful': 1,
          'greedier': 1,
          'younger': 1,
          'whilst': 1,
          'bridget': 1,
          'fonda': 1,
          'convincing': 1,
          'greediest': 1,
          'wife': 1,
          'indirectly': 1,
          'causes': 1,
          'problems': 1,
          'nfill': 1,
          'room': 1,
          'full': 1,
          'greedy': 1,
          'people': 1,
          'several': 1,
          'million': 1,
          'dollars': 1,
          'recipe': 1,
          'bath': 1,
          'nits': 1,
          'shoot': 1,
          'everyone': 1,
          'unless': 1,
          'youre': 1,
          'menendez': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'movie': 5,
          'one': 4,
          'say': 4,
          'lovely': 4,
          'hayek': 4,
          'much': 4,
          'smith': 3,
          'independence': 3,
          'day': 3,
          '710': 3,
          'consider': 3,
          'also': 3,
          'little': 3,
          'salma': 3,
          'bad': 3,
          'seen': 2,
          'lame': 2,
          'take': 2,
          'men': 2,
          'black': 2,
          'man': 2,
          '610': 2,
          'times': 2,
          'top': 2,
          'united': 2,
          'states': 2,
          'nwhen': 2,
          'thats': 2,
          'sign': 2,
          'ni': 2,
          'enjoy': 2,
          'would': 2,
          'first': 2,
          'hour': 2,
          'special': 2,
          'effects': 2,
          'plot': 2,
          'pretty': 2,
          'big': 2,
          'summer': 2,
          'blockbuster': 2,
          'blows': 2,
          'french': 2,
          'ncould': 2,
          'dont': 2,
          'last': 2,
          'even': 2,
          'see': 2,
          'could': 2,
          'movies': 2,
          'scene': 2,
          'kline': 2,
          'known': 2,
          'two': 2,
          'films': 2,
          'career': 2,
          'actress': 2,
          'none': 2,
          'kasdan': 2,
          'star': 2,
          'nshe': 2,
          'made': 2,
          'role': 2,
          'starring': 2,
          'rodriguezs': 2,
          'opposite': 2,
          'based': 1,
          '1960s': 1,
          'tv': 1,
          'series': 1,
          'never': 1,
          'heard': 1,
          'happy': 1,
          'wont': 1,
          'bore': 1,
          'unnecessary': 1,
          'comparisons': 1,
          'allows': 1,
          'third': 1,
          'stab': 1,
          'weekend': 1,
          'boxoffice': 1,
          'scoring': 1,
          'huge': 1,
          'successes': 1,
          'directed': 1,
          'controlled': 1,
          'ncan': 1,
          'nthird': 1,
          'charm': 1,
          'nplot': 1,
          'james': 1,
          'west': 1,
          'artemus': 1,
          'gordon': 1,
          'chosen': 1,
          'president': 1,
          'find': 1,
          'responsible': 1,
          'kidnapping': 1,
          'nations': 1,
          'scientists': 1,
          'threatening': 1,
          'within': 1,
          'week': 1,
          'ncritique': 1,
          'laugh': 1,
          'entire': 1,
          'picture': 1,
          'partcomedy': 1,
          'good': 1,
          'tense': 1,
          'particularly': 1,
          'unenergetic': 1,
          'action': 1,
          'sequences': 1,
          'provided': 1,
          'minutes': 1,
          'time': 1,
          'think': 1,
          'back': 1,
          'scenes': 1,
          'part': 1,
          'geared': 1,
          'actionadventure': 1,
          'another': 1,
          'negative': 1,
          'nand': 1,
          'boring': 1,
          'slow': 1,
          'storyline': 1,
          'tired': 1,
          'reminiscent': 1,
          'swiss': 1,
          'cheese': 1,
          'uninvolving': 1,
          'interesting': 1,
          'worth': 1,
          'inside': 1,
          'filled': 1,
          'oneliners': 1,
          'weak': 1,
          'characterizations': 1,
          'anticlimactic': 1,
          'end': 1,
          'gist': 1,
          'impression': 1,
          'nit': 1,
          'eet': 1,
          'script': 1,
          'crappy': 1,
          'took': 1,
          'four': 1,
          'people': 1,
          'write': 1,
          'nmaybe': 1,
          'show': 1,
          'half': 1,
          'anything': 1,
          'trailers': 1,
          'hadnt': 1,
          'already': 1,
          'given': 1,
          'away': 1,
          'nperhaps': 1,
          'come': 1,
          'expect': 1,
          'hollywood': 1,
          'bigbudget': 1,
          'help': 1,
          'evaluate': 1,
          'scale': 1,
          'onto': 1,
          'nnaaaaaaah': 1,
          'na': 1,
          'non': 1,
          'positive': 1,
          'note': 1,
          'honestly': 1,
          'performance': 1,
          'adorable': 1,
          'seemed': 1,
          'underused': 1,
          'humble': 1,
          'opinion': 1,
          'lit': 1,
          'every': 1,
          'bubbly': 1,
          'hardly': 1,
          'nbranagh': 1,
          'fun': 1,
          'scenerymunching': 1,
          'overthetop': 1,
          'guy': 1,
          'entertainmentbuck': 1,
          'stopped': 1,
          'nsmith': 1,
          'static': 1,
          'best': 1,
          'full': 1,
          'holes': 1,
          'score': 1,
          'insignificant': 1,
          'derivative': 1,
          'dozen': 1,
          'others': 1,
          'strongly': 1,
          'advise': 1,
          'anyone': 1,
          'nthen': 1,
          'tied': 1,
          'cage': 1,
          'huh': 1,
          'oh': 1,
          'nyeah': 1,
          'rest': 1,
          'sucked': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'starred': 1,
          'ten': 1,
          'alltime': 1,
          'grossing': 1,
          'worldwide': 1,
          '1997s': 1,
          'recorded': 1,
          'grammywinning': 1,
          'title': 1,
          'song': 1,
          '1996s': 1,
          'nhe': 1,
          'turned': 1,
          'scholarship': 1,
          'mit': 1,
          'pursue': 1,
          'singing': 1,
          'nkevin': 1,
          'graduate': 1,
          'juilliard': 1,
          'school': 1,
          'drama': 1,
          'married': 1,
          'cuteasabutton': 1,
          'phoebe': 1,
          'cates': 1,
          'since': 1,
          '1989': 1,
          'nthey': 1,
          'kids': 1,
          'together': 1,
          'greta': 1,
          'simone': 1,
          'owen': 1,
          'buildings': 1,
          'gets': 1,
          'blown': 1,
          'written': 1,
          'nlawrence': 1,
          'director': 1,
          'worked': 1,
          'kevin': 1,
          'five': 1,
          'including': 1,
          'chill': 1,
          'silverado': 1,
          'love': 1,
          'death': 1,
          'grand': 1,
          'canyon': 1,
          'kiss': 1,
          'nsalma': 1,
          'gave': 1,
          'successful': 1,
          'major': 1,
          'television': 1,
          'latin': 1,
          'america': 1,
          'moved': 1,
          'start': 1,
          'though': 1,
          'spoke': 1,
          'english': 1,
          'feature': 1,
          'debut': 1,
          'small': 1,
          'allison': 1,
          'anders': 1,
          'mi': 1,
          'vida': 1,
          'loca': 1,
          'rickie': 1,
          'martin': 1,
          'video': 1,
          'played': 1,
          'robert': 1,
          'desperado': 1,
          'antonio': 1,
          'banderas': 1,
          'nsince': 1,
          'appearance': 1,
          'stands': 1,
          '52': 1,
          'born': 1,
          'southeast': 1,
          'mexico': 1,
          'daughter': 1,
          'lebanese': 1,
          'father': 1,
          'mexican': 1,
          'mother': 1,
          'actresses': 1,
          'cast': 1,
          'branaghs': 1,
          'lethal': 1,
          'beauties': 1,
          'includes': 1,
          'bail': 1,
          'ling': 1,
          'stage': 1,
          'screen': 1,
          'native': 1,
          'china': 1,
          'dick': 1,
          'gere': 1,
          'red': 1,
          'corner': 1,
          'nanother': 1,
          'dutchborn': 1,
          'frederique': 1,
          'van': 1,
          'der': 1,
          'wal': 1,
          'worlds': 1,
          'recognized': 1,
          'supermodels': 1,
          'graced': 1,
          'cover': 1,
          'cosmopolitan': 1,
          'numerous': 1,
          'well': 1,
          'harpers': 1,
          'bazaar': 1,
          'vogue': 1,
          'mademoiselle': 1,
          'nneg': 1}),
 Counter({'kahl': 4,
          'television': 3,
          'movies': 3,
          'pay': 3,
          'still': 3,
          'film': 3,
          'series': 2,
          'dealing': 2,
          'law': 2,
          'enforcement': 2,
          'officers': 2,
          'twilight': 2,
          'murders': 2,
          'one': 2,
          'gordon': 2,
          'rod': 2,
          'steiger': 2,
          'would': 2,
          'taxes': 2,
          'u': 2,
          'nafter': 2,
          'arrest': 2,
          'turns': 2,
          'northwest': 2,
          'routine': 2,
          'michael': 2,
          'gross': 2,
          'nhowever': 2,
          'many': 2,
          'american': 2,
          'time': 2,
          'like': 2,
          'drama': 2,
          'shouldnt': 2,
          'non': 2,
          'hand': 2,
          'line': 1,
          'duty': 1,
          'critically': 1,
          'praised': 1,
          'reallife': 1,
          'incidents': 1,
          'claimed': 1,
          'lives': 1,
          'usa': 1,
          'nthe': 1,
          'another': 1,
          'case': 1,
          'played': 1,
          'old': 1,
          'farmer': 1,
          'north': 1,
          'dakota': 1,
          'rather': 1,
          'spend': 1,
          'year': 1,
          'prison': 1,
          'despised': 1,
          'government': 1,
          'released': 1,
          'refuses': 1,
          'warrant': 1,
          'issued': 1,
          'nwhen': 1,
          'marshals': 1,
          'come': 1,
          'isnt': 1,
          'alone': 1,
          'nmany': 1,
          'poor': 1,
          'farmers': 1,
          'rural': 1,
          'share': 1,
          'extremist': 1,
          'antigovernment': 1,
          'beliefs': 1,
          'operation': 1,
          'shootout': 1,
          'leave': 1,
          'federal': 1,
          'nthat': 1,
          'brings': 1,
          'fbi': 1,
          'scene': 1,
          'agent': 1,
          'mayberly': 1,
          'supervising': 1,
          'manhunt': 1,
          'efforts': 1,
          'seem': 1,
          'fruitless': 1,
          'since': 1,
          'supporters': 1,
          'even': 1,
          'local': 1,
          'betrayed': 1,
          '1988': 1,
          'thriller': 1,
          'costa': 1,
          'gavras': 1,
          'hollywood': 1,
          'mostly': 1,
          'ignored': 1,
          'disturbing': 1,
          'trends': 1,
          'rising': 1,
          'rightwing': 1,
          'extremism': 1,
          'remained': 1,
          'oklahoma': 1,
          'city': 1,
          'bombing': 1,
          'media': 1,
          'hype': 1,
          'brought': 1,
          'rightwingers': 1,
          'back': 1,
          'spotlight': 1,
          'nuntil': 1,
          'bothered': 1,
          'attention': 1,
          'phenomenon': 1,
          'nunfortunately': 1,
          'formulaic': 1,
          'uses': 1,
          'sensationalist': 1,
          'real': 1,
          'life': 1,
          'content': 1,
          'order': 1,
          'cover': 1,
          'lack': 1,
          'originality': 1,
          'script': 1,
          'nsometimes': 1,
          'tv': 1,
          'creates': 1,
          'steadily': 1,
          'directed': 1,
          'dick': 1,
          'lowry': 1,
          'good': 1,
          'job': 1,
          'potraying': 1,
          'pursuer': 1,
          'quite': 1,
          'wooden': 1,
          'interaction': 1,
          'actors': 1,
          'terrible': 1,
          'deal': 1,
          'potentially': 1,
          'thoughtprovoking': 1,
          'social': 1,
          'political': 1,
          'issues': 1,
          'hour': 1,
          'half': 1,
          'spent': 1,
          'front': 1,
          'screen': 1,
          'total': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'film': 16,
          'supergirl': 12,
          'nthe': 10,
          'superman': 10,
          'one': 8,
          'movie': 7,
          'shes': 6,
          'even': 6,
          'omegahedron': 6,
          'release': 6,
          'dvd': 6,
          'ni': 5,
          'two': 5,
          'time': 5,
          'city': 5,
          'get': 5,
          'never': 5,
          'peter': 5,
          'also': 5,
          'szwarc': 5,
          'slater': 4,
          'still': 4,
          'nsupergirl': 4,
          'right': 4,
          'people': 4,
          'world': 4,
          'much': 4,
          'school': 4,
          'im': 4,
          'however': 4,
          'track': 4,
          'helen': 3,
          'know': 3,
          'opening': 3,
          'nas': 3,
          'see': 3,
          'argo': 3,
          'like': 3,
          'krypton': 3,
          'inner': 3,
          'space': 3,
          'nok': 3,
          'nso': 3,
          'nhow': 3,
          'particularly': 3,
          'things': 3,
          'power': 3,
          'none': 3,
          'immediately': 3,
          'earth': 3,
          'dunaway': 3,
          'evil': 3,
          'lake': 3,
          'nonsense': 3,
          'though': 3,
          'nat': 3,
          'give': 3,
          'well': 3,
          'films': 3,
          'first': 3,
          'actually': 3,
          'character': 3,
          'released': 3,
          'original': 3,
          'disc': 3,
          'audio': 3,
          'commentary': 3,
          'bosco': 3,
          'nbosco': 3,
          'wont': 3,
          'directors': 3,
          'back': 3,
          'review': 2,
          'contains': 2,
          'n': 2,
          'nwe': 2,
          'dialogue': 2,
          'love': 2,
          'iii': 2,
          'think': 2,
          'doesnt': 2,
          'terms': 2,
          'alone': 2,
          'scenes': 2,
          'went': 2,
          'running': 2,
          'daily': 2,
          'nwhat': 2,
          'information': 2,
          'source': 2,
          'called': 2,
          'zaltar': 2,
          'supermans': 2,
          'kara': 2,
          'nkara': 2,
          'thing': 2,
          'nin': 2,
          'three': 2,
          'dip': 2,
          'selena': 2,
          'cook': 2,
          'nselena': 2,
          'sky': 2,
          'course': 2,
          'arrived': 2,
          'complete': 2,
          'bottom': 2,
          'arrives': 2,
          'nim': 2,
          'given': 2,
          'scene': 2,
          'moment': 2,
          'comes': 2,
          'put': 2,
          'point': 2,
          'nthere': 2,
          'sequence': 2,
          'featuring': 2,
          'done': 2,
          'nalso': 2,
          'interest': 2,
          'moments': 2,
          'flying': 2,
          'effects': 2,
          'meet': 2,
          'notably': 2,
          'latter': 2,
          'logo': 2,
          'otoole': 2,
          'annoying': 2,
          'vaccaro': 2,
          'better': 2,
          'written': 2,
          'amount': 2,
          'wonder': 2,
          'make': 2,
          'many': 2,
          'bay': 2,
          'features': 2,
          'international': 2,
          'version': 2,
          'runs': 2,
          'minutes': 2,
          'print': 2,
          'theaters': 2,
          'full': 2,
          'thx': 2,
          'director': 2,
          'special': 2,
          'project': 2,
          'consultant': 2,
          'spots': 2,
          'score': 2,
          'new': 2,
          'screen': 2,
          'everyone': 2,
          'everything': 2,
          'learn': 2,
          'times': 2,
          'response': 2,
          'surprised': 2,
          'reeve': 2,
          'sake': 2,
          'brevity': 2,
          'ndisc': 2,
          'seen': 2,
          'cut': 2,
          'sat': 2,
          'made': 2,
          'end': 2,
          'flies': 2,
          'following': 1,
          'spoilers': 1,
          'way': 1,
          'rapist': 1,
          'matt': 1,
          'frewer': 1,
          'responds': 1,
          'supergirls': 1,
          'query': 1,
          'attacked': 1,
          'example': 1,
          'mindnumbingly': 1,
          'bad': 1,
          'nill': 1,
          'admit': 1,
          'hated': 1,
          'amongst': 1,
          'faithful': 1,
          'dismiss': 1,
          'nothing': 1,
          'vehicle': 1,
          'richard': 1,
          'pryor': 1,
          'worthy': 1,
          'addition': 1,
          'man': 1,
          'steel': 1,
          'franchise': 1,
          'spinoff': 1,
          'sorts': 1,
          'series': 1,
          'producers': 1,
          'alexander': 1,
          'ilya': 1,
          'salkind': 1,
          'rival': 1,
          'quality': 1,
          'let': 1,
          'ii': 1,
          'lost': 1,
          'steadily': 1,
          'downhill': 1,
          'rest': 1,
          'hour': 1,
          'plus': 1,
          'begins': 1,
          'residents': 1,
          'commune': 1,
          'place': 1,
          'consisting': 1,
          'refugees': 1,
          'resides': 1,
          'go': 1,
          'lives': 1,
          'exiles': 1,
          'blew': 1,
          'nwere': 1,
          'living': 1,
          'exploded': 1,
          'nthis': 1,
          'whole': 1,
          'notion': 1,
          'explained': 1,
          'outside': 1,
          'took': 1,
          'name': 1,
          'clark': 1,
          'kent': 1,
          'works': 1,
          'planet': 1,
          'nthese': 1,
          'kinds': 1,
          'frustrate': 1,
          'hell': 1,
          'nargo': 1,
          'kept': 1,
          'day': 1,
          'founder': 1,
          'toole': 1,
          'gives': 1,
          'cousin': 1,
          'use': 1,
          'inspiration': 1,
          'art': 1,
          'uses': 1,
          'create': 1,
          'buglike': 1,
          'crashes': 1,
          'layer': 1,
          'whatever': 1,
          'protects': 1,
          'chaos': 1,
          'sails': 1,
          'dooming': 1,
          'argonians': 1,
          'death': 1,
          'days': 1,
          'something': 1,
          'climbs': 1,
          'pod': 1,
          'designed': 1,
          'interdimensional': 1,
          'travel': 1,
          'chases': 1,
          'save': 1,
          'travels': 1,
          'directly': 1,
          'lands': 1,
          'bowl': 1,
          'belonging': 1,
          'minorleague': 1,
          'witch': 1,
          'named': 1,
          'faye': 1,
          'ruined': 1,
          'announced': 1,
          'desires': 1,
          'rule': 1,
          'sometimes': 1,
          'warlock': 1,
          'boyfriend': 1,
          'nigel': 1,
          'somehow': 1,
          'knows': 1,
          'ball': 1,
          'help': 1,
          'plans': 1,
          'sets': 1,
          'achieve': 1,
          'domination': 1,
          'unaware': 1,
          'appropriate': 1,
          'costume': 1,
          'emerges': 1,
          'nhuh': 1,
          'nwhy': 1,
          'fall': 1,
          'shoots': 1,
          'nattention': 1,
          'explain': 1,
          'sorry': 1,
          'suspend': 1,
          'disbelief': 1,
          'cant': 1,
          'buy': 1,
          'wants': 1,
          'nknowing': 1,
          'needs': 1,
          'secret': 1,
          'identity': 1,
          'basically': 1,
          'wills': 1,
          'girl': 1,
          'outfit': 1,
          'different': 1,
          'hairstyle': 1,
          'picks': 1,
          'alias': 1,
          'linda': 1,
          'lee': 1,
          'enrolls': 1,
          'nshes': 1,
          'dorm': 1,
          'assignment': 1,
          'happens': 1,
          'roommate': 1,
          'nlois': 1,
          'lanes': 1,
          'sister': 1,
          'lucy': 1,
          'coincidence': 1,
          'folks': 1,
          'getting': 1,
          'really': 1,
          'contrived': 1,
          'follows': 1,
          'generic': 1,
          'allgirls': 1,
          'hijinks': 1,
          'ncomplete': 1,
          'bully': 1,
          'girls': 1,
          'mean': 1,
          'reason': 1,
          'shower': 1,
          'nbest': 1,
          'decides': 1,
          'bra': 1,
          'uniform': 1,
          'starts': 1,
          'stuffing': 1,
          'socks': 1,
          'rapidly': 1,
          'wondering': 1,
          'bothering': 1,
          'credit': 1,
          'lengthy': 1,
          'elaborate': 1,
          'bulldozer': 1,
          'destroying': 1,
          'small': 1,
          'town': 1,
          'search': 1,
          'prey': 1,
          'commendable': 1,
          'genders': 1,
          'reversed': 1,
          'whereas': 1,
          'women': 1,
          'men': 1,
          'merely': 1,
          'objects': 1,
          'tools': 1,
          'nhart': 1,
          'bochner': 1,
          'die': 1,
          'hard': 1,
          'fun': 1,
          'karas': 1,
          'lovesick': 1,
          'landscaper': 1,
          'spell': 1,
          'cast': 1,
          'although': 1,
          'unfortunately': 1,
          'part': 1,
          'ridiculous': 1,
          'rescued': 1,
          'tapped': 1,
          'menacing': 1,
          'bumper': 1,
          'cars': 1,
          'nthen': 1,
          'numerous': 1,
          'little': 1,
          'bothered': 1,
          'convincing': 1,
          'nits': 1,
          'obvious': 1,
          'hooked': 1,
          'wires': 1,
          'ninstead': 1,
          'look': 1,
          'filmmakers': 1,
          'wanted': 1,
          'graceful': 1,
          'poses': 1,
          'lot': 1,
          'ballettype': 1,
          'maneuvers': 1,
          'humans': 1,
          'na': 1,
          'pair': 1,
          'truck': 1,
          'driversrapists': 1,
          'attack': 1,
          'wacky': 1,
          'demise': 1,
          'rampant': 1,
          'product': 1,
          'placement': 1,
          'popeyes': 1,
          'tylenol': 1,
          'aw': 1,
          'root': 1,
          'beer': 1,
          'putting': 1,
          'tshirt': 1,
          'rapists': 1,
          'nfinally': 1,
          'word': 1,
          'monsters': 1,
          'nfaye': 1,
          'ham': 1,
          'unmercifully': 1,
          'overacts': 1,
          'hes': 1,
          'entertaining': 1,
          'says': 1,
          'line': 1,
          'seize': 1,
          'ndunaways': 1,
          'henchmen': 1,
          'played': 1,
          'brenda': 1,
          'fare': 1,
          'coming': 1,
          'best': 1,
          'equivalent': 1,
          'ned': 1,
          'beattys': 1,
          'otis': 1,
          'movies': 1,
          'nhelen': 1,
          'effectively': 1,
          'portrays': 1,
          'innocent': 1,
          'naive': 1,
          'able': 1,
          'gaze': 1,
          'flowers': 1,
          'bunnies': 1,
          'genuine': 1,
          'believable': 1,
          'nbelievability': 1,
          'aside': 1,
          'nnow': 1,
          'despite': 1,
          'negativity': 1,
          'liked': 1,
          'respected': 1,
          'circles': 1,
          'leave': 1,
          'good': 1,
          'anchor': 1,
          'entertainment': 1,
          'interested': 1,
          'excited': 1,
          'nthey': 1,
          'separate': 1,
          'editions': 1,
          'delight': 1,
          'including': 1,
          'nyet': 1,
          'unclear': 1,
          'since': 1,
          'awful': 1,
          'widely': 1,
          'available': 1,
          '10': 1,
          'longer': 1,
          'ran': 1,
          'u': 1,
          'presented': 1,
          'theatrical': 1,
          'aspect': 1,
          'ratio': 1,
          '2': 1,
          '35': 1,
          '1': 1,
          'enhanced': 1,
          '16x9': 1,
          'televisions': 1,
          'remastered': 1,
          'glory': 1,
          'nextras': 1,
          'include': 1,
          'length': 1,
          'jeannot': 1,
          'scott': 1,
          'michael': 1,
          'excellent': 1,
          '50minute': 1,
          'documentary': 1,
          '1984': 1,
          'supergirlthe': 1,
          'making': 1,
          'feature': 1,
          'dig': 1,
          'workout': 1,
          'montage': 1,
          '5': 1,
          'trailers': 1,
          '3': 1,
          'tv': 1,
          'talent': 1,
          'bios': 1,
          'indepth': 1,
          'storyboards': 1,
          'accompanied': 1,
          'assorted': 1,
          'galleries': 1,
          'transfer': 1,
          'incredible': 1,
          'nyoud': 1,
          'watching': 1,
          'nimages': 1,
          'sharp': 1,
          'colors': 1,
          'jump': 1,
          'picture': 1,
          'free': 1,
          'scratches': 1,
          'artifacts': 1,
          'nonly': 1,
          'sequences': 1,
          'show': 1,
          'wear': 1,
          'isnt': 1,
          'unless': 1,
          'youre': 1,
          'obsessive': 1,
          'george': 1,
          'lucas': 1,
          'approved': 1,
          'loud': 1,
          'clear': 1,
          'places': 1,
          'youll': 1,
          'hearing': 1,
          'absurd': 1,
          'mediocre': 1,
          'jerry': 1,
          'goldsmith': 1,
          'completely': 1,
          'unrelated': 1,
          'john': 1,
          'williams': 1,
          'classic': 1,
          'theme': 1,
          'sounds': 1,
          'suited': 1,
          'cannon': 1,
          'golanglobus': 1,
          'production': 1,
          'step': 1,
          'direction': 1,
          'evolution': 1,
          'commentaries': 1,
          'seems': 1,
          'expert': 1,
          'ensure': 1,
          'theres': 1,
          'dead': 1,
          'air': 1,
          'probes': 1,
          'virtually': 1,
          'onscreen': 1,
          'great': 1,
          'deal': 1,
          'result': 1,
          'participation': 1,
          'nalthough': 1,
          'tell': 1,
          'looking': 1,
          'specific': 1,
          'fascinating': 1,
          'tidbits': 1,
          'almost': 1,
          'appearance': 1,
          'christopher': 1,
          'ngreat': 1,
          'detail': 1,
          'proposed': 1,
          'role': 1,
          'script': 1,
          'wisely': 1,
          'dropped': 1,
          'stands': 1,
          'early': 1,
          'hear': 1,
          'radio': 1,
          'broadcast': 1,
          'mention': 1,
          'billions': 1,
          'light': 1,
          'years': 1,
          'away': 1,
          'sort': 1,
          'peace': 1,
          'mission': 1,
          'nfor': 1,
          'nszwarc': 1,
          'reveals': 1,
          'conscious': 1,
          'decision': 1,
          'salkinds': 1,
          'else': 1,
          'agreed': 1,
          'needed': 1,
          'stand': 1,
          'replacing': 1,
          'science': 1,
          'fiction': 1,
          'cutsy': 1,
          'whimsical': 1,
          'fantasy': 1,
          'points': 1,
          'american': 1,
          'come': 1,
          'along': 1,
          'claiming': 1,
          'would': 1,
          'hit': 1,
          'box': 1,
          'office': 1,
          'nagain': 1,
          'nanchor': 1,
          'limited': 1,
          'edition': 1,
          '50': 1,
          '000': 1,
          'copies': 1,
          'pressed': 1,
          'twodisc': 1,
          'set': 1,
          'mentioned': 1,
          'regular': 1,
          '138': 1,
          'long': 1,
          'additions': 1,
          'mainly': 1,
          'consist': 1,
          'extensions': 1,
          'dont': 1,
          'add': 1,
          'note': 1,
          'except': 1,
          'lengthen': 1,
          'otooles': 1,
          'appearances': 1,
          'rough': 1,
          'sound': 1,
          'mono': 1,
          'fans': 1,
          'care': 1,
          'question': 1,
          'nshouldnt': 1,
          'nid': 1,
          'watch': 1,
          'nine': 1,
          'smart': 1,
          'enough': 1,
          'inform': 1,
          'parents': 1,
          'take': 1,
          'popped': 1,
          'player': 1,
          'easy': 1,
          'chair': 1,
          'idea': 1,
          'expect': 1,
          'knew': 1,
          'wasnt': 1,
          'beloved': 1,
          'willing': 1,
          'shot': 1,
          'impressive': 1,
          'work': 1,
          'began': 1,
          'spin': 1,
          'rather': 1,
          'impressed': 1,
          'sit': 1,
          'assumptions': 1,
          'could': 1,
          'wrong': 1,
          'ncome': 1,
          'find': 1,
          'chase': 1,
          'digital': 1,
          'stereo': 1,
          'slunk': 1,
          'seat': 1,
          'nightmare': 1,
          'started': 1,
          'nugh': 1,
          'twice': 1,
          'discs': 1,
          'definitely': 1,
          'terrific': 1,
          'package': 1,
          'lousy': 1,
          'npg': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'even': 5,
          'two': 5,
          'practical': 4,
          'magic': 4,
          'nthe': 3,
          'sally': 3,
          'gillian': 3,
          'batman': 3,
          'actors': 2,
          'get': 2,
          'one': 2,
          'bullock': 2,
          'comes': 2,
          'line': 2,
          'years': 2,
          'children': 2,
          'aunts': 2,
          'channing': 2,
          'wiest': 2,
          'meets': 2,
          'dark': 2,
          'abusive': 2,
          'visjnic': 2,
          'falls': 2,
          'love': 2,
          'devastated': 2,
          'come': 2,
          'since': 2,
          'body': 2,
          'story': 2,
          'involving': 2,
          'scene': 2,
          'nit': 2,
          'bit': 2,
          'way': 2,
          'getting': 2,
          'character': 2,
          'every': 2,
          'attempt': 2,
          'made': 2,
          'people': 2,
          'know': 2,
          'ni': 2,
          'last': 2,
          'hes': 2,
          'misguided': 1,
          'many': 1,
          'ways': 1,
          'makes': 1,
          'wonder': 1,
          'talented': 1,
          'highprofile': 1,
          'would': 1,
          'involved': 1,
          'embarrassing': 1,
          'claptrap': 1,
          'like': 1,
          'stars': 1,
          'sandra': 1,
          'nicole': 1,
          'kidman': 1,
          'owens': 1,
          'sisters': 1,
          'whose': 1,
          'family': 1,
          'long': 1,
          'witches': 1,
          'spanning': 1,
          'back': 1,
          '200': 1,
          'nat': 1,
          'start': 1,
          'parents': 1,
          'die': 1,
          'still': 1,
          'go': 1,
          'live': 1,
          'zany': 1,
          'stockard': 1,
          'dianne': 1,
          'nswitch': 1,
          'present': 1,
          'day': 1,
          'stronger': 1,
          'rebellious': 1,
          'sibling': 1,
          'leaves': 1,
          'home': 1,
          'guy': 1,
          'goran': 1,
          'stays': 1,
          'hometown': 1,
          'sweet': 1,
          'caring': 1,
          'man': 1,
          'husband': 1,
          'hit': 1,
          'truck': 1,
          'killed': 1,
          'think': 1,
          'shes': 1,
          'gets': 1,
          'minutes': 1,
          'nwhen': 1,
          'calls': 1,
          'another': 1,
          'spat': 1,
          'accidentally': 1,
          'murder': 1,
          'desperation': 1,
          'bury': 1,
          'backyard': 1,
          'house': 1,
          'nadd': 1,
          'wildly': 1,
          'convoluted': 1,
          'subplots': 1,
          'dead': 1,
          'rising': 1,
          'exorcism': 1,
          'mention': 1,
          'spattering': 1,
          'lighthearted': 1,
          'whimsy': 1,
          'pretty': 1,
          'good': 1,
          'idea': 1,
          'messy': 1,
          'nafter': 1,
          'seeing': 1,
          'reflected': 1,
          'element': 1,
          'liked': 1,
          'enjoyed': 1,
          'comedy': 1,
          'sure': 1,
          'humor': 1,
          'astoundingly': 1,
          'flat': 1,
          'occasional': 1,
          'dramatic': 1,
          'moments': 1,
          'least': 1,
          'touching': 1,
          'charming': 1,
          'entertaining': 1,
          'nand': 1,
          'top': 1,
          'weve': 1,
          'got': 1,
          'birdbrained': 1,
          'evil': 1,
          'spirit': 1,
          'taking': 1,
          'gillians': 1,
          'nwhatever': 1,
          'characters': 1,
          'handled': 1,
          'terribly': 1,
          'actually': 1,
          'fortune': 1,
          'could': 1,
          'call': 1,
          'nthere': 1,
          'reason': 1,
          'decided': 1,
          'always': 1,
          'standing': 1,
          'sidebyside': 1,
          'nno': 1,
          'flesh': 1,
          'actual': 1,
          'goes': 1,
          'aidan': 1,
          'quinn': 1,
          'handsome': 1,
          'police': 1,
          'investigator': 1,
          'misfortune': 1,
          'romantic': 1,
          'lead': 1,
          'opposite': 1,
          'though': 1,
          'around': 1,
          '70minute': 1,
          'mark': 1,
          'develop': 1,
          'relationship': 1,
          'nin': 1,
          'fact': 1,
          'dialogue': 1,
          'service': 1,
          'moving': 1,
          'plot': 1,
          'along': 1,
          'rather': 1,
          'saying': 1,
          'lines': 1,
          'headed': 1,
          'trouble': 1,
          'opening': 1,
          'credits': 1,
          'found': 1,
          'screenplay': 1,
          'written': 1,
          'deeply': 1,
          'hated': 1,
          'akiva': 1,
          'goldsman': 1,
          'managed': 1,
          'destroy': 1,
          'series': 1,
          'forever': 1,
          'robin': 1,
          'n': 1,
          'directed': 1,
          'griffin': 1,
          'dunne': 1,
          'primarily': 1,
          'actor': 1,
          'year': 1,
          'contrived': 1,
          'clumsy': 1,
          'romance': 1,
          'addicted': 1,
          'meg': 1,
          'ryan': 1,
          'matthew': 1,
          'broderick': 1,
          'disliked': 1,
          'movie': 1,
          'quite': 1,
          'worse': 1,
          'give': 1,
          'taste': 1,
          'talentless': 1,
          'filmmaker': 1,
          'nid': 1,
          'tell': 1,
          'quit': 1,
          'ahead': 1,
          'ultimately': 1,
          'already': 1,
          'buried': 1,
          'nneg': 1}),
 Counter({'n': 7,
          'sleepy': 5,
          'hollow': 5,
          'ichabod': 5,
          'series': 4,
          'nthe': 4,
          'ni': 3,
          'horror': 2,
          'films': 2,
          'burtons': 2,
          'leading': 2,
          'kevin': 2,
          'character': 2,
          'story': 2,
          'movie': 2,
          'depp': 2,
          'new': 2,
          'scientific': 2,
          'town': 2,
          'headless': 2,
          'horseman': 2,
          'nalthough': 2,
          'also': 2,
          'victims': 2,
          'nalong': 2,
          'help': 2,
          'one': 2,
          'without': 2,
          'goofy': 2,
          'doesnt': 2,
          'producer': 2,
          'work': 2,
          'like': 2,
          'hes': 2,
          'thats': 2,
          'comes': 2,
          'christopher': 2,
          'pictures': 2,
          'bird': 2,
          'card': 2,
          'nearly': 1,
          'every': 1,
          'film': 1,
          'tim': 1,
          'burton': 1,
          'directed': 1,
          'homage': 1,
          'genre': 1,
          'frankenweenie': 1,
          'beetlejuice': 1,
          'batman': 1,
          'edward': 1,
          'scissorhands': 1,
          'ed': 1,
          'wood': 1,
          'mars': 1,
          'attacks': 1,
          'yet': 1,
          'none': 1,
          'first': 1,
          'attempt': 1,
          'actually': 1,
          'scare': 1,
          'people': 1,
          'greeted': 1,
          'prospect': 1,
          'high': 1,
          'anticipation': 1,
          'whole': 1,
          'career': 1,
          'seemed': 1,
          'left': 1,
          'disappointed': 1,
          'nandrew': 1,
          'walkers': 1,
          'screenplay': 1,
          'takes': 1,
          'names': 1,
          'classic': 1,
          'short': 1,
          'legend': 1,
          'nin': 1,
          'crane': 1,
          'johnny': 1,
          'york': 1,
          'city': 1,
          'police': 1,
          'constable': 1,
          'trying': 1,
          'introduce': 1,
          'methods': 1,
          'investigation': 1,
          'superiors': 1,
          'nichabod': 1,
          'dispatched': 1,
          'small': 1,
          'investigate': 1,
          'murders': 1,
          'nseveral': 1,
          'towns': 1,
          'citizens': 1,
          'decapitated': 1,
          'rejects': 1,
          'ghost': 1,
          'elders': 1,
          'tell': 1,
          'finds': 1,
          'facts': 1,
          'case': 1,
          'confound': 1,
          'reasoning': 1,
          'nhe': 1,
          'discovers': 1,
          'killings': 1,
          'random': 1,
          'tied': 1,
          'together': 1,
          'secret': 1,
          'way': 1,
          'gets': 1,
          'bewitching': 1,
          'literally': 1,
          'young': 1,
          'woman': 1,
          'christina': 1,
          'ricci': 1,
          'son': 1,
          'murder': 1,
          'marc': 1,
          'pickering': 1,
          'nmy': 1,
          'reaction': 1,
          'hohum': 1,
          'plot': 1,
          'accumulation': 1,
          'cliches': 1,
          'even': 1,
          'slightest': 1,
          'touch': 1,
          'originality': 1,
          'make': 1,
          'interesting': 1,
          'nthat': 1,
          'forgivable': 1,
          'hollywood': 1,
          'constantly': 1,
          'tries': 1,
          'sell': 1,
          'us': 1,
          'used': 1,
          'products': 1,
          'packages': 1,
          'nhowever': 1,
          'attempts': 1,
          'inducing': 1,
          'fright': 1,
          'come': 1,
          'nit': 1,
          'might': 1,
          'background': 1,
          'previous': 1,
          'movies': 1,
          'goal': 1,
          'lines': 1,
          'creature': 1,
          'designer': 1,
          'yagher': 1,
          'done': 1,
          'best': 1,
          'tongueincheek': 1,
          'tales': 1,
          'crypt': 1,
          'tv': 1,
          'na': 1,
          'witchs': 1,
          'eyes': 1,
          'tongue': 1,
          'shoot': 1,
          'roger': 1,
          'rabbits': 1,
          'tree': 1,
          'spurts': 1,
          'blood': 1,
          'monty': 1,
          'python': 1,
          'sketch': 1,
          'nwell': 1,
          'guy': 1,
          'head': 1,
          'non': 1,
          'horse': 1,
          'boo': 1,
          'performances': 1,
          'awful': 1,
          'impressed': 1,
          'seem': 1,
          'know': 1,
          'dialogue': 1,
          'hampered': 1,
          'stilted': 1,
          'diction': 1,
          'supposed': 1,
          'pass': 1,
          '18th': 1,
          'century': 1,
          'accent': 1,
          'nricci': 1,
          'seems': 1,
          'put': 1,
          'effort': 1,
          'seeming': 1,
          'enigmatic': 1,
          'guarantees': 1,
          'wont': 1,
          'sympathize': 1,
          'actor': 1,
          'revealed': 1,
          'end': 1,
          'villain': 1,
          'ridiculously': 1,
          'cartoonish': 1,
          'pleasure': 1,
          'generated': 1,
          'cast': 1,
          'surprise': 1,
          'cameos': 1,
          'lee': 1,
          'martin': 1,
          'landau': 1,
          'walken': 1,
          'wonder': 1,
          'originally': 1,
          'conceived': 1,
          'part': 1,
          'francis': 1,
          'ford': 1,
          'coppolas': 1,
          'projected': 1,
          'gothic': 1,
          'adaptations': 1,
          'produced': 1,
          'bram': 1,
          'stokers': 1,
          'dracula': 1,
          'mary': 1,
          'shelleys': 1,
          'frankenstein': 1,
          'ncoppola': 1,
          'executive': 1,
          'script': 1,
          'reflects': 1,
          'interest': 1,
          'early': 1,
          'forms': 1,
          'moving': 1,
          'particularly': 1,
          'toy': 1,
          'carries': 1,
          'blends': 1,
          'two': 1,
          'create': 1,
          'optical': 1,
          'illusion': 1,
          'theres': 1,
          'side': 1,
          'cage': 1,
          'nwhen': 1,
          'flipped': 1,
          'rapidly': 1,
          'appears': 1,
          'caged': 1,
          'nbottom': 1,
          'line': 1,
          'isnt': 1,
          'thing': 1,
          'nneg': 1}),
 Counter({'gift': 3,
          'south': 3,
          'nits': 3,
          'town': 2,
          'something': 2,
          'psychic': 2,
          'supernatural': 2,
          'nasty': 2,
          'may': 2,
          'nwhats': 2,
          'good': 2,
          'one': 2,
          'film': 2,
          'screenplay': 2,
          'trite': 2,
          'makes': 2,
          'n': 2,
          'cliche': 2,
          'like': 2,
          'nfor': 2,
          'annie': 1,
          'wilson': 1,
          'cate': 1,
          'blanchett': 1,
          'widow': 1,
          'struggles': 1,
          'raise': 1,
          'children': 1,
          'small': 1,
          'georgia': 1,
          'asked': 1,
          'help': 1,
          'local': 1,
          'authorities': 1,
          'solving': 1,
          'case': 1,
          'missing': 1,
          'woman': 1,
          'nannie': 1,
          'involuntary': 1,
          'bouts': 1,
          'see': 1,
          'past': 1,
          'future': 1,
          'physically': 1,
          'feel': 1,
          'actions': 1,
          'happenning': 1,
          'envisions': 1,
          'nher': 1,
          'leads': 1,
          'arrest': 1,
          'wife': 1,
          'beater': 1,
          'killed': 1,
          'pretty': 1,
          'rich': 1,
          'girl': 1,
          'found': 1,
          'swamp': 1,
          'property': 1,
          'nin': 1,
          'ultra': 1,
          'conservative': 1,
          'backwoods': 1,
          'testimony': 1,
          'based': 1,
          'visions': 1,
          'hold': 1,
          'court': 1,
          'ndo': 1,
          'even': 1,
          'right': 1,
          'man': 1,
          'naside': 1,
          'keanu': 1,
          'reeves': 1,
          'giving': 1,
          'best': 1,
          'performances': 1,
          'career': 1,
          'loathable': 1,
          'redneck': 1,
          'donnie': 1,
          'barksdale': 1,
          'little': 1,
          'else': 1,
          'going': 1,
          'nlame': 1,
          'unoriginal': 1,
          'npredictable': 1,
          'ending': 1,
          'nsuspense': 1,
          'scenes': 1,
          'plain': 1,
          'boring': 1,
          'nridicously': 1,
          'characterization': 1,
          'entire': 1,
          'ingnorant': 1,
          'hateful': 1,
          'goobers': 1,
          'nrelentless': 1,
          'emotional': 1,
          'sensationaliztion': 1,
          'noverall': 1,
          'critique': 1,
          'movies': 1,
          'wonder': 1,
          'youve': 1,
          'seen': 1,
          'story': 1,
          'collection': 1,
          'every': 1,
          'stereotype': 1,
          'ever': 1,
          'made': 1,
          'coming': 1,
          'yankee': 1,
          'dislikes': 1,
          'thats': 1,
          'really': 1,
          'saying': 1,
          'established': 1,
          'talented': 1,
          'director': 1,
          'sam': 1,
          'raimi': 1,
          'unable': 1,
          'provide': 1,
          'kind': 1,
          'originality': 1,
          'predictable': 1,
          'first': 1,
          'scene': 1,
          'written': 1,
          'ripoff': 1,
          'photocopied': 1,
          'bootlegged': 1,
          'play': 1,
          'nyou': 1,
          'know': 1,
          'murder': 1,
          'suspect': 1,
          'didnt': 1,
          'actually': 1,
          'surprise': 1,
          'either': 1,
          'real': 1,
          'villain': 1,
          'turns': 1,
          'motive': 1,
          'nsigh': 1,
          'thriller': 1,
          'neither': 1,
          'scary': 1,
          'intense': 1,
          'basically': 1,
          'glorified': 1,
          'bmovie': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'first': 6,
          'species': 5,
          'character': 5,
          'ii': 4,
          'patrick': 4,
          'eve': 4,
          'fails': 3,
          'one': 3,
          'like': 3,
          'theres': 3,
          'hes': 3,
          'alien': 3,
          'nand': 3,
          'henstridge': 3,
          'time': 3,
          'around': 3,
          'sense': 3,
          'much': 3,
          'incredulous': 2,
          'original': 2,
          'audiences': 2,
          'dennis': 2,
          'series': 2,
          'instead': 2,
          'silly': 2,
          'nthe': 2,
          'ross': 2,
          'lazard': 2,
          'focus': 2,
          'along': 2,
          'lot': 2,
          'activities': 2,
          'astronaut': 2,
          'recently': 2,
          'mission': 2,
          'mars': 2,
          'whos': 2,
          'mate': 2,
          'offspring': 2,
          'halfalien': 2,
          'patricks': 2,
          'would': 2,
          'laura': 2,
          'helgenberger': 2,
          'reprising': 2,
          'role': 2,
          'even': 2,
          'really': 2,
          'nmr': 2,
          'screenplay': 2,
          'often': 2,
          'leaves': 2,
          'upon': 2,
          'nthis': 2,
          'shes': 2,
          'sequence': 2,
          'make': 2,
          'sort': 2,
          'plot': 2,
          'contain': 2,
          'disbelief': 2,
          'guards': 2,
          'look': 2,
          'ms': 2,
          'note': 1,
          'may': 1,
          'consider': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'ni': 1,
          'heard': 1,
          'mgm': 1,
          'planning': 1,
          'sequel': 1,
          '1995': 1,
          'sciencefiction': 1,
          'flick': 1,
          'nsquandering': 1,
          'intriguing': 1,
          'premise': 1,
          'turned': 1,
          'dreadful': 1,
          'mess': 1,
          'widely': 1,
          'disliked': 1,
          'critics': 1,
          'alike': 1,
          'nonetheless': 1,
          'still': 1,
          'somehow': 1,
          'succeeded': 1,
          'becoming': 1,
          'financial': 1,
          'success': 1,
          'raking': 1,
          '60': 1,
          'million': 1,
          'domestic': 1,
          'competitive': 1,
          'summer': 1,
          'season': 1,
          'despite': 1,
          'distinct': 1,
          'lack': 1,
          'star': 1,
          'power': 1,
          'cast': 1,
          'ben': 1,
          'kingsleys': 1,
          'splendid': 1,
          'actor': 1,
          'marquee': 1,
          'name': 1,
          'aint': 1,
          'nmiraculously': 1,
          'dodging': 1,
          'bullet': 1,
          'doubted': 1,
          'theyd': 1,
          'dare': 1,
          'tempt': 1,
          'fate': 1,
          'go': 1,
          'another': 1,
          'round': 1,
          'nso': 1,
          'comes': 1,
          'new': 1,
          'creative': 1,
          'team': 1,
          'director': 1,
          'peter': 1,
          'medak': 1,
          'screenwriter': 1,
          'chris': 1,
          'brancato': 1,
          'step': 1,
          'roger': 1,
          'donaldson': 1,
          'feldman': 1,
          'respectively': 1,
          'improve': 1,
          'iota': 1,
          'predecessor': 1,
          'capitalize': 1,
          'potentially': 1,
          'promising': 1,
          'kernel': 1,
          'runs': 1,
          'gamut': 1,
          'ridiculously': 1,
          'unmitigatedly': 1,
          'stupid': 1,
          'follows': 1,
          'exploits': 1,
          'young': 1,
          'man': 1,
          'justin': 1,
          'whose': 1,
          'sole': 1,
          'cruising': 1,
          'streets': 1,
          'order': 1,
          'pick': 1,
          'women': 1,
          'loitering': 1,
          'strip': 1,
          'clubs': 1,
          'generally': 1,
          'trying': 1,
          'bed': 1,
          'many': 1,
          'different': 1,
          'ladies': 1,
          'possibly': 1,
          'nin': 1,
          'words': 1,
          'guys': 1,
          'could': 1,
          'describe': 1,
          'everyday': 1,
          'routines': 1,
          'huge': 1,
          'percentage': 1,
          'men': 1,
          'age': 1,
          'catch': 1,
          'returned': 1,
          'seemingly': 1,
          'successful': 1,
          'infected': 1,
          'dna': 1,
          'npatricks': 1,
          'overriding': 1,
          'compulsion': 1,
          'sire': 1,
          'countless': 1,
          'numbers': 1,
          'gooey': 1,
          'little': 1,
          'becomes': 1,
          'aware': 1,
          'natasha': 1,
          'halfhuman': 1,
          'clone': 1,
          'monster': 1,
          'studied': 1,
          'government': 1,
          'lab': 1,
          'primary': 1,
          'turns': 1,
          'two': 1,
          'resulting': 1,
          'pure': 1,
          'strain': 1,
          'unstoppable': 1,
          'warns': 1,
          'dr': 1,
          'baker': 1,
          'marg': 1,
          'gamely': 1,
          'admirable': 1,
          'conviction': 1,
          'nspecies': 1,
          'opens': 1,
          'space': 1,
          'scenes': 1,
          'remarkably': 1,
          'unconvincing': 1,
          'hokeylooking': 1,
          'splicing': 1,
          'back': 1,
          'dated': 1,
          'grainy': 1,
          'footage': 1,
          'actual': 1,
          'spacecraft': 1,
          'skimped': 1,
          'production': 1,
          'values': 1,
          'nhowever': 1,
          'looks': 1,
          'positively': 1,
          'inspired': 1,
          'compared': 1,
          'appearance': 1,
          'evil': 1,
          'goo': 1,
          'ultimately': 1,
          'infests': 1,
          'watching': 1,
          'slinks': 1,
          'command': 1,
          'module': 1,
          'spaceship': 1,
          'question': 1,
          'whether': 1,
          'cheesy': 1,
          'bmovie': 1,
          'quickly': 1,
          'answered': 1,
          'brancatos': 1,
          'filled': 1,
          'outrageous': 1,
          'lines': 1,
          'audience': 1,
          'stitches': 1,
          'nlike': 1,
          'perhaps': 1,
          'homage': 1,
          'real': 1,
          'penchant': 1,
          'dialogue': 1,
          'underlines': 1,
          'obvious': 1,
          'nlast': 1,
          'featured': 1,
          'hootworthy': 1,
          'line': 1,
          'uttered': 1,
          'forest': 1,
          'whitakers': 1,
          'psychic': 1,
          'empath': 1,
          'entering': 1,
          'bloodsoaked': 1,
          'room': 1,
          'something': 1,
          'bad': 1,
          'happened': 1,
          'gets': 1,
          'stand': 1,
          'fresh': 1,
          'shredded': 1,
          'corpse': 1,
          'entails': 1,
          'ripped': 1,
          'mutter': 1,
          'awful': 1,
          'empathic': 1,
          'psychotically': 1,
          'horny': 1,
          'accosts': 1,
          'supermarket': 1,
          'shopper': 1,
          'drags': 1,
          'kicking': 1,
          'screaming': 1,
          'behind': 1,
          'building': 1,
          'woefullypaced': 1,
          'suspense': 1,
          'telepathically': 1,
          'linked': 1,
          'alienhumanhybrid': 1,
          'counterpart': 1,
          'whatever': 1,
          'helpfully': 1,
          'tells': 1,
          'alienhunting': 1,
          'protagonists': 1,
          'going': 1,
          'rape': 1,
          'nwhile': 1,
          'unintentionally': 1,
          'hilarious': 1,
          'least': 1,
          'occasionally': 1,
          'demonstrates': 1,
          'humour': 1,
          'ntheres': 1,
          'amusing': 1,
          'tongueincheek': 1,
          'bit': 1,
          'product': 1,
          'placement': 1,
          'doesnt': 1,
          'appreciated': 1,
          'sentiment': 1,
          'well': 1,
          'supermarketrelated': 1,
          'hijinx': 1,
          'aisle': 1,
          '1': 1,
          'ninforms': 1,
          'nif': 1,
          'maintained': 1,
          'lighthearted': 1,
          'tone': 1,
          'charming': 1,
          'enjoyable': 1,
          'watch': 1,
          'detriment': 1,
          'takes': 1,
          'far': 1,
          'seriously': 1,
          'barrels': 1,
          'bloody': 1,
          'effectsladened': 1,
          'anticlimactic': 1,
          'conclusion': 1,
          'nmuch': 1,
          'whole': 1,
          'gaping': 1,
          'holes': 1,
          'terribly': 1,
          'difficult': 1,
          'suspension': 1,
          'implausibilities': 1,
          'endless': 1,
          'toxic': 1,
          'bomb': 1,
          'eves': 1,
          'brain': 1,
          'nwhy': 1,
          'armed': 1,
          'guns': 1,
          'already': 1,
          'know': 1,
          'firearms': 1,
          'ineffectual': 1,
          'nmy': 1,
          'favourite': 1,
          'slowmotion': 1,
          'sporting': 1,
          'superhuman': 1,
          'strength': 1,
          'shown': 1,
          'tossing': 1,
          'aside': 1,
          'attempting': 1,
          'body': 1,
          'blocks': 1,
          'movie': 1,
          'holding': 1,
          'head': 1,
          'amazed': 1,
          'foisted': 1,
          'public': 1,
          'nreturning': 1,
          'headlines': 1,
          'michael': 1,
          'madsen': 1,
          'reprises': 1,
          'tough': 1,
          'guy': 1,
          'press': 1,
          'lennox': 1,
          'goofy': 1,
          'realistically': 1,
          'script': 1,
          'basis': 1,
          'nmykelti': 1,
          'williamson': 1,
          'portraying': 1,
          'gamble': 1,
          'churns': 1,
          'alltoofamiliar': 1,
          'spin': 1,
          'generic': 1,
          'brashmouthed': 1,
          'fine': 1,
          'actors': 1,
          'george': 1,
          'dzundza': 1,
          'playing': 1,
          'colonel': 1,
          'burgess': 1,
          'looking': 1,
          'ridiculous': 1,
          'process': 1,
          'james': 1,
          'cromwell': 1,
          'neglectful': 1,
          'father': 1,
          'senator': 1,
          'utterly': 1,
          'wasted': 1,
          'gives': 1,
          'appropriately': 1,
          'shiftyeyed': 1,
          'returning': 1,
          'vixen': 1,
          'actually': 1,
          'given': 1,
          'opportunity': 1,
          'act': 1,
          'scene': 1,
          'acquits': 1,
          'nicely': 1,
          'mostly': 1,
          'relegated': 1,
          'familiar': 1,
          'parading': 1,
          'skimpy': 1,
          'clothing': 1,
          'none': 1,
          'nms': 1,
          'commented': 1,
          'female': 1,
          'expressed': 1,
          'appreciation': 1,
          'entry': 1,
          'claiming': 1,
          'empowered': 1,
          'na': 1,
          'lethal': 1,
          'heat': 1,
          'dispatches': 1,
          'sexual': 1,
          'partners': 1,
          'grotesque': 1,
          'fashion': 1,
          'thats': 1,
          'call': 1,
          'empowerment': 1,
          'nneg': 1}),
 Counter({'fugitive': 12,
          'movie': 7,
          'u': 6,
          'marshals': 6,
          'snipes': 6,
          'film': 6,
          'time': 5,
          'average': 4,
          'gerard': 4,
          'plane': 4,
          'character': 4,
          'nthe': 4,
          'make': 3,
          'role': 3,
          'harrison': 3,
          'action': 3,
          'director': 3,
          'even': 3,
          'little': 3,
          'crash': 3,
          'good': 3,
          'sequel': 2,
          'thriller': 2,
          'using': 2,
          'ntommy': 2,
          'lee': 2,
          'jones': 2,
          'ford': 2,
          'hes': 2,
          'police': 2,
          'fbi': 2,
          'course': 2,
          'nbut': 2,
          'nwhile': 2,
          'know': 2,
          'films': 2,
          'develop': 2,
          'straight': 2,
          'almost': 2,
          'hardly': 2,
          'nudge': 2,
          'apart': 2,
          'nnobody': 2,
          'performers': 2,
          'plot': 2,
          'theres': 2,
          'loud': 2,
          'end': 2,
          '1993': 1,
          'association': 1,
          'extra': 1,
          'bucks': 1,
          'returns': 1,
          'chief': 1,
          'deputy': 1,
          'samuel': 1,
          'grizzly': 1,
          'cop': 1,
          'nthis': 1,
          'mark': 1,
          'sheridan': 1,
          'think': 1,
          'killed': 1,
          'two': 1,
          'agents': 1,
          'set': 1,
          'escort': 1,
          'riding': 1,
          'crashes': 1,
          'makes': 1,
          'run': 1,
          'hot': 1,
          'tail': 1,
          'nwhat': 1,
          'follows': 1,
          '2': 1,
          'hours': 1,
          'brought': 1,
          'us': 1,
          'executive': 1,
          'decision': 1,
          '1995': 1,
          'another': 1,
          'curiously': 1,
          'involving': 1,
          'nwhen': 1,
          'comparing': 1,
          'prequel': 1,
          'far': 1,
          'superior': 1,
          'pretty': 1,
          'lousy': 1,
          'original': 1,
          'reasonably': 1,
          'intelligent': 1,
          'root': 1,
          'audience': 1,
          'feels': 1,
          'strangely': 1,
          'distanced': 1,
          'mainly': 1,
          'way': 1,
          'overlong': 1,
          'running': 1,
          'gave': 1,
          'fords': 1,
          'pulling': 1,
          'trump': 1,
          'card': 1,
          'place': 1,
          'immediately': 1,
          'nto': 1,
          'honest': 1,
          'couldnt': 1,
          'care': 1,
          'less': 1,
          'got': 1,
          'captured': 1,
          'nsnipes': 1,
          'performance': 1,
          'gets': 1,
          'surprisingly': 1,
          'screen': 1,
          'considering': 1,
          'reasons': 1,
          'ill': 1,
          'explain': 1,
          'later': 1,
          'fine': 1,
          'ever': 1,
          'although': 1,
          'challenge': 1,
          'sense': 1,
          'deja': 1,
          'vu': 1,
          'overwhelming': 1,
          'ni': 1,
          'seemingly': 1,
          'attempt': 1,
          'last': 1,
          'ntheres': 1,
          'references': 1,
          'first': 1,
          'nothing': 1,
          'mentions': 1,
          'ndowney': 1,
          'jnr': 1,
          'ok': 1,
          'agent': 1,
          'john': 1,
          'royce': 1,
          'whos': 1,
          'roped': 1,
          'chase': 1,
          'sexy': 1,
          'french': 1,
          'actress': 1,
          'irene': 1,
          'jacob': 1,
          'wanders': 1,
          'wife': 1,
          'looks': 1,
          'autopilot': 1,
          'supporting': 1,
          'cast': 1,
          'k': 1,
          'comes': 1,
          'performances': 1,
          'falls': 1,
          'flat': 1,
          'face': 1,
          'nit': 1,
          'doesnt': 1,
          'fare': 1,
          'better': 1,
          'plotwise': 1,
          'either': 1,
          'starts': 1,
          'trying': 1,
          'capture': 1,
          'veers': 1,
          'terrorists': 1,
          'territory': 1,
          'nas': 1,
          'said': 1,
          'normal': 1,
          'terrorist': 1,
          'seen': 1,
          'million': 1,
          'times': 1,
          'reputation': 1,
          'sound': 1,
          'professional': 1,
          'nif': 1,
          'wasnt': 1,
          'would': 1,
          'probably': 1,
          'go': 1,
          'video': 1,
          'made': 1,
          'nand': 1,
          'changing': 1,
          'forgotten': 1,
          'features': 1,
          'nstuart': 1,
          'baird': 1,
          'right': 1,
          'particular': 1,
          'scene': 1,
          'stands': 1,
          'nits': 1,
          'usual': 1,
          'style': 1,
          'neven': 1,
          'sorely': 1,
          'lacking': 1,
          'tension': 1,
          'special': 1,
          'effects': 1,
          'nice': 1,
          'especially': 1,
          'soundtrack': 1,
          'veteran': 1,
          'composer': 1,
          'jerry': 1,
          'goldsmith': 1,
          'suffers': 1,
          'overwhelmingly': 1,
          'lack': 1,
          'excitement': 1,
          'nsure': 1,
          'dumb': 1,
          'aint': 1,
          'fun': 1,
          'nbored': 1,
          'lackluster': 1,
          'script': 1,
          'noverall': 1,
          'rating': 1,
          'review': 1,
          'david': 1,
          'wilcock': 1,
          'web': 1,
          'space': 1,
          'provided': 1,
          'geocities': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'jimmie': 7,
          'hes': 5,
          'nthe': 5,
          'women': 5,
          'odonnell': 4,
          'point': 4,
          'one': 3,
          'chances': 3,
          'character': 3,
          '100': 3,
          'business': 3,
          'wasnt': 3,
          'nit': 3,
          'chris': 2,
          'seven': 2,
          'im': 2,
          'fan': 2,
          'could': 2,
          'pool': 2,
          'table': 2,
          'nhe': 2,
          'also': 2,
          'anne': 2,
          'renee': 2,
          'zellweger': 2,
          'marry': 2,
          'well': 2,
          'like': 2,
          'time': 2,
          'ever': 2,
          'says': 2,
          'prior': 2,
          'girlfriends': 2,
          'proposition': 2,
          'bad': 2,
          'even': 2,
          'video': 2,
          'thought': 2,
          'brewsters': 2,
          'millions': 2,
          'nas': 2,
          'jimmies': 2,
          'good': 2,
          'nat': 2,
          'nwhen': 2,
          'goofy': 2,
          'friend': 2,
          '000': 2,
          'bride': 2,
          'enough': 2,
          'angry': 2,
          'around': 2,
          'city': 2,
          'contains': 2,
          'original': 2,
          'theatrical': 2,
          '1': 2,
          'contributors': 1,
          'destruction': 1,
          'batman': 1,
          'franchise': 1,
          'stars': 1,
          'remake': 1,
          'buster': 1,
          'keatons': 1,
          '1925': 1,
          'silent': 1,
          'nnow': 1,
          'ive': 1,
          'never': 1,
          'seen': 1,
          'chaplin': 1,
          'keaton': 1,
          'seriously': 1,
          'doubt': 1,
          'classic': 1,
          'version': 1,
          'insipid': 1,
          'nodonnell': 1,
          'plays': 1,
          'shannon': 1,
          'manager': 1,
          'manufacturing': 1,
          'company': 1,
          'fears': 1,
          'commitment': 1,
          'despite': 1,
          'dating': 1,
          'three': 1,
          'years': 1,
          'unwilling': 1,
          'nhis': 1,
          'reasons': 1,
          'nwell': 1,
          'guy': 1,
          'see': 1,
          'guys': 1,
          'stallions': 1,
          'apparently': 1,
          'dont': 1,
          'roped': 1,
          'something': 1,
          'hey': 1,
          'thats': 1,
          'movies': 1,
          'explanation': 1,
          'nid': 1,
          'second': 1,
          'neventually': 1,
          'comes': 1,
          'propose': 1,
          'absurd': 1,
          'proposal': 1,
          'uttered': 1,
          'man': 1,
          'essentially': 1,
          'win': 1,
          'hands': 1,
          'ring': 1,
          'audience': 1,
          'hate': 1,
          'ni': 1,
          'nthen': 1,
          'meat': 1,
          'plot': 1,
          'presents': 1,
          'njimmies': 1,
          'grandfather': 1,
          'peter': 1,
          'ustinov': 1,
          'completely': 1,
          'wasted': 1,
          'dies': 1,
          'leaves': 1,
          'entire': 1,
          'estate': 1,
          'million': 1,
          'dollars': 1,
          'ownership': 1,
          'nhowever': 1,
          'order': 1,
          'get': 1,
          'money': 1,
          'save': 1,
          'jobs': 1,
          'factory': 1,
          'workers': 1,
          'must': 1,
          'married': 1,
          'next': 1,
          'birthday': 1,
          '24': 1,
          'hours': 1,
          'away': 1,
          'nhaving': 1,
          'blown': 1,
          'proceeds': 1,
          'track': 1,
          'suggest': 1,
          'movie': 1,
          'half': 1,
          'surprisingly': 1,
          'boring': 1,
          'managed': 1,
          'read': 1,
          'thoughts': 1,
          'nustinovs': 1,
          'left': 1,
          'reading': 1,
          'ridiculous': 1,
          'clause': 1,
          'soon': 1,
          'hal': 1,
          'holbrooks': 1,
          'actually': 1,
          'quite': 1,
          'surreal': 1,
          'nsomething': 1,
          'happens': 1,
          'though': 1,
          'films': 1,
          'final': 1,
          'act': 1,
          'caused': 1,
          'sharply': 1,
          'drop': 1,
          'rating': 1,
          'going': 1,
          'receive': 1,
          'nup': 1,
          'turned': 1,
          'felt': 1,
          'least': 1,
          'painting': 1,
          'cold': 1,
          'hearted': 1,
          'gold': 1,
          'diggers': 1,
          'options': 1,
          'played': 1,
          'artie': 1,
          'lange': 1,
          'making': 1,
          'career': 1,
          'playing': 1,
          'places': 1,
          'ad': 1,
          'newspaper': 1,
          'somehow': 1,
          'becomes': 1,
          'front': 1,
          'page': 1,
          'story': 1,
          'wedding': 1,
          'gowns': 1,
          'head': 1,
          'persuade': 1,
          'pick': 1,
          'nthese': 1,
          'arrive': 1,
          'location': 1,
          'immediately': 1,
          'start': 1,
          'bullying': 1,
          'looking': 1,
          'woman': 1,
          'unjustified': 1,
          'attacks': 1,
          'tells': 1,
          'mob': 1,
          'theres': 1,
          'mistake': 1,
          'wont': 1,
          'marrying': 1,
          'result': 1,
          'proceed': 1,
          'chase': 1,
          'hopes': 1,
          'catching': 1,
          'tearing': 1,
          'limbs': 1,
          'nthis': 1,
          'goes': 1,
          'rest': 1,
          'nits': 1,
          'running': 1,
          'obnoxious': 1,
          'greedy': 1,
          'stupid': 1,
          'nmy': 1,
          'groans': 1,
          'disgust': 1,
          'heard': 1,
          'miles': 1,
          'finally': 1,
          'ended': 1,
          'thankfully': 1,
          'day': 1,
          'still': 1,
          'groaning': 1,
          'bachelor': 1,
          'available': 1,
          'dvd': 1,
          'new': 1,
          'line': 1,
          'home': 1,
          'full': 1,
          'frame': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'cast': 1,
          'crew': 1,
          'info': 1,
          'special': 1,
          'dvdrom': 1,
          'features': 1,
          'trailer': 1,
          'disc': 1,
          'scenes': 1,
          'napparently': 1,
          'footage': 1,
          'gang': 1,
          'brides': 1,
          'chasing': 1,
          'leaping': 1,
          'tops': 1,
          'buses': 1,
          'nso': 1,
          'cut': 1,
          '30': 1,
          'minutes': 1,
          'shenanigans': 1,
          'nugh': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'goldblum': 3,
          'g': 2,
          'comes': 2,
          'across': 2,
          'morgan': 2,
          'seems': 2,
          'nat': 2,
          'get': 2,
          'poor': 2,
          'happy': 1,
          'bastards': 1,
          'quick': 1,
          'review': 1,
          'nholy': 1,
          'man': 1,
          'nmore': 1,
          'like': 1,
          'holy': 1,
          'crap': 1,
          'nthe': 1,
          'film': 1,
          'stars': 1,
          'eddie': 1,
          'murphy': 1,
          'mysticalish': 1,
          'figure': 1,
          'named': 1,
          'strange': 1,
          'journey': 1,
          'sort': 1,
          'two': 1,
          'network': 1,
          'execs': 1,
          'jeff': 1,
          'kelly': 1,
          'preston': 1,
          'flat': 1,
          'tire': 1,
          'hands': 1,
          'nsomehow': 1,
          'ends': 1,
          'car': 1,
          'channel': 1,
          'lineup': 1,
          'infomercial': 1,
          'programs': 1,
          'featuring': 1,
          'likes': 1,
          'betty': 1,
          'white': 1,
          'fairchild': 1,
          'slew': 1,
          'celebrities': 1,
          'nameless': 1,
          'figures': 1,
          'nits': 1,
          'hit': 1,
          'stride': 1,
          'speaking': 1,
          'life': 1,
          'instead': 1,
          'somehow': 1,
          'boosting': 1,
          'sales': 1,
          'point': 1,
          'course': 1,
          'morality': 1,
          'play': 1,
          'particularly': 1,
          'suddenly': 1,
          'feels': 1,
          'market': 1,
          'magical': 1,
          'megabucks': 1,
          'good': 1,
          'boss': 1,
          'robert': 1,
          'loggia': 1,
          'nit': 1,
          'doesnt': 1,
          'take': 1,
          'long': 1,
          'unfold': 1,
          'sappy': 1,
          'mush': 1,
          'realizations': 1,
          'taking': 1,
          'place': 1,
          'left': 1,
          'right': 1,
          'plot': 1,
          'points': 1,
          'nonly': 1,
          'real': 1,
          'zippy': 1,
          'sequence': 1,
          'involving': 1,
          'frying': 1,
          'fairchilds': 1,
          'face': 1,
          'interest': 1,
          'nmurphy': 1,
          'lends': 1,
          'nothing': 1,
          'character': 1,
          'looks': 1,
          'hed': 1,
          'rather': 1,
          'someplace': 1,
          'else': 1,
          'nsome': 1,
          'may': 1,
          'argue': 1,
          'message': 1,
          'came': 1,
          'could': 1,
          'probably': 1,
          'entertainment': 1,
          'watching': 1,
          'informercial': 1,
          'guy': 1,
          'question': 1,
          'mark': 1,
          'coat': 1,
          'least': 1,
          'something': 1,
          'us': 1,
          'laught': 1,
          'nneg': 1}),
 Counter({'carter': 8,
          'stallone': 7,
          'action': 6,
          'film': 5,
          'rourke': 5,
          'get': 4,
          'nget': 4,
          'like': 4,
          'nthe': 3,
          'trying': 3,
          'nstallone': 3,
          'strange': 3,
          'amazing': 3,
          'bad': 3,
          'brother': 3,
          'tough': 3,
          'caine': 3,
          'still': 3,
          'nwhat': 2,
          'good': 2,
          'nwhen': 2,
          'taking': 2,
          'turn': 2,
          'towards': 2,
          'roles': 2,
          'seems': 2,
          'made': 2,
          'movie': 2,
          'gave': 2,
          'role': 2,
          'frank': 2,
          'played': 2,
          'actor': 2,
          'involved': 2,
          'seattle': 2,
          'way': 2,
          'nhe': 2,
          'talks': 2,
          'brothers': 2,
          'lends': 2,
          'ncarter': 2,
          'porn': 2,
          'king': 2,
          'mickey': 2,
          'guy': 2,
          'proper': 2,
          'lacks': 2,
          'purpose': 2,
          'character': 2,
          'forget': 1,
          'ninstead': 1,
          'cup': 1,
          'coffee': 1,
          'hell': 1,
          'happened': 1,
          'american': 1,
          'movies': 1,
          'ndid': 1,
          'unknowingly': 1,
          'miss': 1,
          'meeting': 1,
          'somewhere': 1,
          'badass': 1,
          'kicking': 1,
          'butt': 1,
          'names': 1,
          'guntoting': 1,
          'crazed': 1,
          'vengeful': 1,
          'characters': 1,
          '1980s': 1,
          'films': 1,
          'commando': 1,
          'cobra': 1,
          'predator': 1,
          'raw': 1,
          'deal': 1,
          'first': 1,
          'blood': 1,
          'suddenly': 1,
          'innocent': 1,
          'compassionate': 1,
          'sensitive': 1,
          'tearyeyed': 1,
          'knuckleheads': 1,
          'place': 1,
          'days': 1,
          'honest': 1,
          'east': 1,
          'dont': 1,
          'mean': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'latest': 1,
          'masterpiece': 1,
          'uberthespian': 1,
          'sylvester': 1,
          'prime': 1,
          'example': 1,
          'large': 1,
          'charge': 1,
          '80s': 1,
          'stars': 1,
          'fit': 1,
          'back': 1,
          'long': 1,
          'since': 1,
          'outgrown': 1,
          'one': 1,
          'uncle': 1,
          'tries': 1,
          'cool': 1,
          'members': 1,
          'jacket': 1,
          'izod': 1,
          'polo': 1,
          'shirt': 1,
          'collar': 1,
          'popped': 1,
          'na': 1,
          'years': 1,
          'ago': 1,
          'opportunity': 1,
          'gracefully': 1,
          'exit': 1,
          'typecast': 1,
          'monkey': 1,
          'nthat': 1,
          'sheriff': 1,
          'freddy': 1,
          'heflin': 1,
          'copland': 1,
          'redemption': 1,
          'within': 1,
          'broken': 1,
          'soul': 1,
          'actually': 1,
          'performance': 1,
          'seemed': 1,
          'shaken': 1,
          'past': 1,
          'ntoo': 1,
          'returns': 1,
          'shiny': 1,
          'paint': 1,
          'rusted': 1,
          'edges': 1,
          'simple': 1,
          'story': 1,
          'plays': 1,
          'vegas': 1,
          'bruiser': 1,
          'loan': 1,
          'shark': 1,
          'gusto': 1,
          'uncredited': 1,
          'voice': 1,
          'tom': 1,
          'sizemore': 1,
          'franks': 1,
          'gets': 1,
          'killed': 1,
          'drunk': 1,
          'driving': 1,
          'accident': 1,
          'feeling': 1,
          'guilty': 1,
          'mushy': 1,
          'inside': 1,
          'thinks': 1,
          'foul': 1,
          'play': 1,
          'travels': 1,
          'set': 1,
          'right': 1,
          'wrongs': 1,
          'patented': 1,
          'carters': 1,
          'wife': 1,
          'helping': 1,
          'daughter': 1,
          'doreen': 1,
          'rachel': 1,
          'leigh': 1,
          'cook': 1,
          'walks': 1,
          'around': 1,
          'pouring': 1,
          'rain': 1,
          'dressed': 1,
          'lost': 1,
          'member': 1,
          'rat': 1,
          'pack': 1,
          'really': 1,
          'goatee': 1,
          'finds': 1,
          'stuff': 1,
          'slimy': 1,
          'ultracool': 1,
          'mcqueenesque': 1,
          'multimillionaire': 1,
          'computer': 1,
          'geek': 1,
          'alan': 1,
          'cumming': 1,
          'foreign': 1,
          'michael': 1,
          'speaks': 1,
          'riddles': 1,
          'stalks': 1,
          'figure': 1,
          'extract': 1,
          'revenge': 1,
          'responsible': 1,
          'parties': 1,
          'minute': 1,
          'nthis': 1,
          'sounds': 1,
          'another': 1,
          'saw': 1,
          'last': 1,
          'year': 1,
          'limey': 1,
          'nbetter': 1,
          'tell': 1,
          'terence': 1,
          'stamp': 1,
          'ripping': 1,
          'nactually': 1,
          'remake': 1,
          '1971': 1,
          'british': 1,
          'production': 1,
          'name': 1,
          'starring': 1,
          'title': 1,
          'cameo': 1,
          'cleverness': 1,
          'astonishing': 1,
          'nwhile': 1,
          'carries': 1,
          'weight': 1,
          'original': 1,
          'well': 1,
          'nthroughout': 1,
          'looks': 1,
          'old': 1,
          'act': 1,
          'nobody': 1,
          'seriously': 1,
          'nhis': 1,
          'oneliners': 1,
          'fall': 1,
          'flat': 1,
          'tired': 1,
          'uncertain': 1,
          'actions': 1,
          'mental': 1,
          'physical': 1,
          'required': 1,
          'nthere': 1,
          'even': 1,
          'homoeroticism': 1,
          'bizarre': 1,
          'tone': 1,
          'numerous': 1,
          'conversations': 1,
          'fists': 1,
          'words': 1,
          'biggest': 1,
          'surprise': 1,
          'best': 1,
          'job': 1,
          'done': 1,
          'versatile': 1,
          'nan': 1,
          'method': 1,
          'eighties': 1,
          'fell': 1,
          'drugs': 1,
          'spousal': 1,
          'abuse': 1,
          'boxing': 1,
          'career': 1,
          'intolerable': 1,
          'attitude': 1,
          'getting': 1,
          'brings': 1,
          'dangerous': 1,
          'sense': 1,
          'may': 1,
          'win': 1,
          'oscars': 1,
          'ranks': 1,
          'highly': 1,
          'book': 1,
          'great': 1,
          'directing': 1,
          'strong': 1,
          'acting': 1,
          'energetic': 1,
          'car': 1,
          'chases': 1,
          'would': 1,
          'make': 1,
          'william': 1,
          'friedkin': 1,
          'proud': 1,
          'thing': 1,
          'hollywood': 1,
          'productions': 1,
          'script': 1,
          'casting': 1,
          'nnever': 1,
          'mind': 1,
          'never': 1,
          'nneg': 1}),
 Counter({'chris': 5,
          'rock': 5,
          'show': 4,
          'wellingtons': 4,
          'vehicle': 3,
          'heaven': 3,
          'earth': 3,
          'body': 3,
          'wellington': 3,
          'lances': 3,
          'remake': 2,
          'beatty': 2,
          'wait': 2,
          'turn': 2,
          'comes': 2,
          'lance': 2,
          'young': 2,
          'comic': 2,
          'apollo': 2,
          'hes': 2,
          'levy': 2,
          'best': 2,
          'man': 2,
          'white': 2,
          'old': 2,
          'well': 2,
          'taylor': 2,
          'weitz': 2,
          '1978': 1,
          'warren': 1,
          'mr': 1,
          'jordan': 1,
          'tells': 1,
          'tale': 1,
          'barton': 1,
          'lethal': 1,
          'weapon': 1,
          'iv': 1,
          'black': 1,
          'standup': 1,
          'trying': 1,
          'win': 1,
          'audience': 1,
          'harlems': 1,
          'theater': 1,
          'nwhen': 1,
          'taken': 1,
          'prematurely': 1,
          'bumbling': 1,
          'angel': 1,
          'keyes': 1,
          'eugene': 1,
          'recourse': 1,
          'return': 1,
          'another': 1,
          'nhe': 1,
          'chooses': 1,
          'charles': 1,
          'tenth': 1,
          'richest': 1,
          'united': 1,
          'states': 1,
          'nof': 1,
          'course': 1,
          'rich': 1,
          '53': 1,
          'years': 1,
          'makes': 1,
          'bid': 1,
          'closing': 1,
          'night': 1,
          'desire': 1,
          'woo': 1,
          'suntee': 1,
          'regina': 1,
          'jerry': 1,
          'maguire': 1,
          'tad': 1,
          'tricky': 1,
          'nthe': 1,
          'original': 1,
          'elaine': 1,
          'maywarren': 1,
          'script': 1,
          'reworked': 1,
          'crouther': 1,
          'ali': 1,
          'leroi': 1,
          'louis': 1,
          'c': 1,
          'k': 1,
          'nto': 1,
          'beattys': 1,
          'football': 1,
          'player': 1,
          'rocks': 1,
          'add': 1,
          'racial': 1,
          'humor': 1,
          'nas': 1,
          'directed': 1,
          'paul': 1,
          'codirectors': 1,
          'american': 1,
          'pie': 1,
          'costars': 1,
          'chuck': 1,
          'buck': 1,
          'whole': 1,
          'affair': 1,
          'amateur': 1,
          'hour': 1,
          'ninitial': 1,
          'scenes': 1,
          'play': 1,
          'like': 1,
          'filmed': 1,
          'line': 1,
          'reading': 1,
          'rehearsals': 1,
          'nproduction': 1,
          'values': 1,
          'shoddy': 1,
          'nmost': 1,
          'serious': 1,
          'use': 1,
          'counterpart': 1,
          'would': 1,
          'appropriate': 1,
          'nthis': 1,
          'problem': 1,
          'clearly': 1,
          'attributable': 1,
          'fact': 1,
          'guy': 1,
          'never': 1,
          'lip': 1,
          'action': 1,
          'synched': 1,
          'screen': 1,
          'nrock': 1,
          'get': 1,
          'chance': 1,
          'fun': 1,
          'schtick': 1,
          'turnaround': 1,
          'plans': 1,
          'poor': 1,
          'neighborhood': 1,
          'hospital': 1,
          'bullet': 1,
          'head': 1,
          'nyou': 1,
          'got': 1,
          'bed': 1,
          'uneven': 1,
          'interacting': 1,
          'rest': 1,
          'cast': 1,
          'nregina': 1,
          'fares': 1,
          'amidst': 1,
          'mediocrity': 1,
          'activist': 1,
          'confusedly': 1,
          'ends': 1,
          'falling': 1,
          'believed': 1,
          'nemesis': 1,
          'nalso': 1,
          'good': 1,
          'frankie': 1,
          'faison': 1,
          'hannibal': 1,
          'whitney': 1,
          'compassionate': 1,
          'manager': 1,
          'human': 1,
          'whos': 1,
          'made': 1,
          'privy': 1,
          'switch': 1,
          'nchaz': 1,
          'palminteri': 1,
          'pretty': 1,
          'much': 1,
          'wasted': 1,
          'heavens': 1,
          'ambassadors': 1,
          'nanother': 1,
          'alumnus': 1,
          'jennifer': 1,
          'coolidge': 1,
          'poorly': 1,
          'used': 1,
          'cheating': 1,
          'wife': 1,
          'shown': 1,
          'several': 1,
          'days': 1,
          'apart': 1,
          'wearing': 1,
          'outfit': 1,
          'greg': 1,
          'germann': 1,
          'tvs': 1,
          'ally': 1,
          'mcbeal': 1,
          'sweet': 1,
          'november': 1,
          'continues': 1,
          'display': 1,
          'sitcom': 1,
          'roots': 1,
          'lover': 1,
          'husbands': 1,
          'lawyer': 1,
          'nmark': 1,
          'addy': 1,
          'full': 1,
          'monty': 1,
          'sorely': 1,
          'underutilized': 1,
          'cisco': 1,
          'fake': 1,
          'english': 1,
          'butler': 1,
          'nstealing': 1,
          'every': 1,
          'scene': 1,
          'shes': 1,
          'wanda': 1,
          'sykes': 1,
          'disgruntled': 1,
          'maid': 1,
          'n': 1,
          'fans': 1,
          'nall': 1,
          'others': 1,
          'go': 1,
          'rent': 1,
          'truly': 1,
          'brought': 1,
          'nneg': 1}),
 Counter({'hollow': 4,
          'man': 4,
          'right': 3,
          'invisible': 3,
          'bacon': 3,
          'film': 3,
          'much': 3,
          'time': 3,
          'would': 2,
          'one': 2,
          'could': 2,
          'see': 2,
          'super': 2,
          'smart': 2,
          'biomolecular': 2,
          'research': 2,
          'scientist': 2,
          'military': 2,
          'kevin': 2,
          'bacons': 2,
          'character': 2,
          'verhoeven': 2,
          'director': 2,
          'actors': 2,
          'elisabeth': 2,
          'shue': 2,
          'gets': 2,
          'half': 2,
          'nits': 2,
          'nwell': 1,
          'youre': 1,
          'working': 1,
          'youd': 1,
          'grope': 1,
          'coworker': 1,
          'roughup': 1,
          'neighbor': 1,
          'across': 1,
          'street': 1,
          'nthats': 1,
          'nof': 1,
          'noncriminal': 1,
          'possibilities': 1,
          'brought': 1,
          'rendering': 1,
          'oneself': 1,
          'opts': 1,
          'commit': 1,
          'sex': 1,
          'crimes': 1,
          'ner': 1,
          'plays': 1,
          'nsomething': 1,
          'sounds': 1,
          'horribly': 1,
          'wrong': 1,
          'already': 1,
          'nbut': 1,
          'paul': 1,
          'sleazepin': 1,
          'opencrotch': 1,
          'classics': 1,
          'basic': 1,
          'instinct': 1,
          'infamous': 1,
          'showgirls': 1,
          'never': 1,
          'lets': 1,
          'little': 1,
          'credibility': 1,
          'get': 1,
          'way': 1,
          'voyeuristic': 1,
          'tendencies': 1,
          'come': 1,
          'n': 1,
          'features': 1,
          'string': 1,
          'hapless': 1,
          'clist': 1,
          'among': 1,
          'josh': 1,
          'brolin': 1,
          'kim': 1,
          'dickens': 1,
          'gradez': 1,
          'plot': 1,
          'lot': 1,
          'special': 1,
          'effects': 1,
          'frankly': 1,
          'dont': 1,
          'look': 1,
          'better': 1,
          'used': 1,
          '1933': 1,
          'version': 1,
          'noh': 1,
          'glistens': 1,
          'wet': 1,
          'looks': 1,
          'like': 1,
          'rather': 1,
          'fatty': 1,
          'side': 1,
          'cheap': 1,
          'flank': 1,
          'steak': 1,
          'hes': 1,
          'attempting': 1,
          'reentry': 1,
          'otherwise': 1,
          'lots': 1,
          'thermal': 1,
          'shots': 1,
          'inanimate': 1,
          'objects': 1,
          'included': 1,
          'bobbing': 1,
          'around': 1,
          'without': 1,
          'visible': 1,
          'signs': 1,
          'support': 1,
          'nsince': 1,
          'invisibility': 1,
          'achieved': 1,
          'isnt': 1,
          'effect': 1,
          'spend': 1,
          'conversing': 1,
          'nobody': 1,
          'talking': 1,
          'otherit': 1,
          'amounts': 1,
          'muchness': 1,
          'elects': 1,
          'wardrobe': 1,
          'female': 1,
          'protagonists': 1,
          'looselybuttoned': 1,
          'sweaters': 1,
          'minute': 1,
          'head': 1,
          'straight': 1,
          'fascinating': 1,
          'conceptwhat': 1,
          'nsimply': 1,
          'ploy': 1,
          'show': 1,
          'skin': 1,
          'nas': 1,
          'horror': 1,
          'unsophisticated': 1,
          'disturbing': 1,
          'intent': 1,
          'achievements': 1,
          'worth': 1,
          'hardearned': 1,
          'dollars': 1,
          'minor': 1,
          'verhoevenand': 1,
          'even': 1,
          'thats': 1,
          'saying': 1,
          'muchand': 1,
          'boy': 1,
          'nneg': 1}),
 Counter({'gal': 7,
          'plot': 7,
          'nthe': 6,
          'beast': 5,
          'film': 5,
          'crime': 5,
          'old': 5,
          'sexy': 4,
          'would': 4,
          'respectability': 4,
          'kingsley': 3,
          'london': 3,
          'comes': 3,
          'nin': 3,
          'done': 3,
          'pool': 3,
          'familiar': 3,
          '4': 3,
          'guessed': 2,
          'gangster': 2,
          'played': 2,
          'seen': 2,
          'time': 2,
          'know': 2,
          'even': 2,
          'roles': 2,
          'make': 2,
          'villa': 2,
          'nbut': 2,
          'first': 2,
          'punch': 2,
          'gang': 2,
          'bank': 2,
          'wants': 2,
          'sends': 2,
          'rabid': 2,
          'ben': 2,
          'makes': 2,
          'yes': 2,
          'including': 2,
          'see': 2,
          'could': 2,
          'vault': 2,
          'water': 2,
          'story': 2,
          'overly': 2,
          'ni': 2,
          'type': 2,
          'one': 2,
          'nit': 2,
          'western': 2,
          'british': 2,
          'new': 2,
          'least': 2,
          'style': 2,
          'side': 2,
          '0': 2,
          'scale': 2,
          'roger': 1,
          'ebert': 1,
          'asks': 1,
          'review': 1,
          'savage': 1,
          'maddog': 1,
          'frothing': 1,
          'recent': 1,
          'movies': 1,
          'nben': 1,
          'nmy': 1,
          'response': 1,
          'anyone': 1,
          'alan': 1,
          'arkin': 1,
          'wait': 1,
          'dark': 1,
          'henry': 1,
          'fonda': 1,
          'upon': 1,
          'west': 1,
          'anthony': 1,
          'hopkins': 1,
          'silence': 1,
          'lambs': 1,
          'nthey': 1,
          'way': 1,
          'create': 1,
          'really': 1,
          'creepy': 1,
          'sociopath': 1,
          'cast': 1,
          'someone': 1,
          'generally': 1,
          'plays': 1,
          'mild': 1,
          'sympathetic': 1,
          'ineffectual': 1,
          'character': 1,
          'characteristics': 1,
          'actor': 1,
          'seem': 1,
          'gentle': 1,
          'work': 1,
          'favor': 1,
          'role': 1,
          'calls': 1,
          'fierce': 1,
          'vicious': 1,
          'nthat': 1,
          'principle': 1,
          'works': 1,
          'ngary': 1,
          'dove': 1,
          'ray': 1,
          'winstone': 1,
          'retired': 1,
          'career': 1,
          'living': 1,
          'luxurious': 1,
          'spain': 1,
          'nlife': 1,
          'become': 1,
          'routine': 1,
          'sunning': 1,
          'relaxing': 1,
          'paradise': 1,
          'shattered': 1,
          'onetwopunch': 1,
          'boulder': 1,
          'rolling': 1,
          'hill': 1,
          'next': 1,
          'second': 1,
          'gals': 1,
          'past': 1,
          'nback': 1,
          'boss': 1,
          'teddy': 1,
          'bass': 1,
          'ian': 1,
          'mcshane': 1,
          'tvs': 1,
          'lovejoy': 1,
          'planning': 1,
          'break': 1,
          'safety': 1,
          'deposit': 1,
          'room': 1,
          'nhe': 1,
          'henchman': 1,
          'logan': 1,
          'fetch': 1,
          'ndon': 1,
          'accept': 1,
          'decision': 1,
          'certainly': 1,
          'nhowever': 1,
          'says': 1,
          'whatever': 1,
          'takes': 1,
          'turn': 1,
          'threatening': 1,
          'guys': 1,
          'exporn': 1,
          'star': 1,
          'wife': 1,
          'deedee': 1,
          'amanda': 1,
          'redman': 1,
          'meantime': 1,
          'knows': 1,
          'get': 1,
          'everybodys': 1,
          'skin': 1,
          'nkingsley': 1,
          'compact': 1,
          'package': 1,
          'fury': 1,
          'nastiness': 1,
          'nthere': 1,
          'serious': 1,
          'problems': 1,
          'louis': 1,
          'melliss': 1,
          'david': 1,
          'scintos': 1,
          'script': 1,
          'caught': 1,
          'filming': 1,
          'nwhen': 1,
          'actual': 1,
          'idea': 1,
          'important': 1,
          'success': 1,
          'nbeyond': 1,
          'ability': 1,
          'use': 1,
          'skindiving': 1,
          'gear': 1,
          'special': 1,
          'talents': 1,
          'required': 1,
          'nany': 1,
          'local': 1,
          'hood': 1,
          'needed': 1,
          'nadditionally': 1,
          'involves': 1,
          'digging': 1,
          'swimming': 1,
          'flooding': 1,
          'nno': 1,
          'let': 1,
          'avoided': 1,
          'complication': 1,
          'altogether': 1,
          'far': 1,
          'much': 1,
          'accounted': 1,
          'spite': 1,
          'provocative': 1,
          'title': 1,
          'cliched': 1,
          'elements': 1,
          'westerns': 1,
          'like': 1,
          'law': 1,
          'jake': 1,
          'wade': 1,
          'usually': 1,
          'reformed': 1,
          'outlaw': 1,
          'robert': 1,
          'taylor': 1,
          'hung': 1,
          'guns': 1,
          'trying': 1,
          'life': 1,
          'peaceful': 1,
          'however': 1,
          'job': 1,
          'buddy': 1,
          'richard': 1,
          'widmark': 1,
          'go': 1,
          'git': 1,
          'im': 1,
          'great': 1,
          'twists': 1,
          'gray': 1,
          'beards': 1,
          'nperhaps': 1,
          'little': 1,
          'made': 1,
          'stylish': 1,
          'dressed': 1,
          'look': 1,
          'nif': 1,
          'creative': 1,
          'nthis': 1,
          'director': 1,
          'jonathan': 1,
          'glazers': 1,
          'reputedly': 1,
          'notable': 1,
          'tv': 1,
          'ads': 1,
          'guinness': 1,
          'stout': 1,
          'nhis': 1,
          'unexpected': 1,
          'touches': 1,
          'odd': 1,
          'dream': 1,
          'sequences': 1,
          'ncinematographer': 1,
          'ivan': 1,
          'bird': 1,
          'uses': 1,
          'lot': 1,
          'half': 1,
          'lit': 1,
          'scenes': 1,
          'nwe': 1,
          'persons': 1,
          'faces': 1,
          'fades': 1,
          'darkness': 1,
          'sort': 1,
          'metaphor': 1,
          'halfworld': 1,
          'characters': 1,
          'inhabit': 1,
          'nhalf': 1,
          'everything': 1,
          'happening': 1,
          'also': 1,
          'kept': 1,
          'hidden': 1,
          'nus': 1,
          'yanks': 1,
          'hard': 1,
          'dialog': 1,
          'nat': 1,
          'theater': 1,
          'difficult': 1,
          'words': 1,
          'quiet': 1,
          'speaking': 1,
          'heavy': 1,
          'accents': 1,
          'cockney': 1,
          'language': 1,
          'nsexy': 1,
          'minor': 1,
          'lent': 1,
          'us': 1,
          'still': 1,
          'somewhat': 1,
          'novel': 1,
          'genre': 1,
          'may': 1,
          'films': 1,
          'nfurther': 1,
          'kingsleys': 1,
          'highpowered': 1,
          'performance': 1,
          'give': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'talks': 5,
          'money': 4,
          'franklin': 4,
          'film': 3,
          'movie': 3,
          'way': 3,
          'n': 2,
          'much': 2,
          'swore': 2,
          'nearly': 2,
          'constantly': 2,
          'one': 2,
          'nmoney': 2,
          'less': 2,
          'expected': 2,
          'whos': 2,
          'franklins': 2,
          'james': 2,
          'help': 2,
          'along': 2,
          'friends': 2,
          'apparantly': 1,
          'nand': 1,
          'uses': 1,
          'quite': 1,
          'bit': 1,
          'obscenities': 1,
          'nive': 1,
          'always': 1,
          'considered': 1,
          'pretty': 1,
          'open': 1,
          'gratuity': 1,
          'possess': 1,
          'whether': 1,
          'language': 1,
          'violence': 1,
          'sex': 1,
          'ni': 1,
          'find': 1,
          'fact': 1,
          'gives': 1,
          'little': 1,
          'leverage': 1,
          'complain': 1,
          'goes': 1,
          'overboard': 1,
          'definitely': 1,
          'nits': 1,
          'mean': 1,
          'seemed': 1,
          'overly': 1,
          'prominent': 1,
          'staged': 1,
          'nperhaps': 1,
          'character': 1,
          'foul': 1,
          'mouthed': 1,
          'everybody': 1,
          'swears': 1,
          'every': 1,
          'word': 1,
          'black': 1,
          'ticket': 1,
          'scalper': 1,
          'named': 1,
          'hatchett': 1,
          'played': 1,
          'annoyingly': 1,
          'chris': 1,
          'tucker': 1,
          'nfranklin': 1,
          'typical': 1,
          'conman': 1,
          'ends': 1,
          'person': 1,
          'get': 1,
          'nwhen': 1,
          'plot': 1,
          'finally': 1,
          'gets': 1,
          'underway': 1,
          'theres': 1,
          'three': 1,
          'people': 1,
          'groups': 1,
          'want': 1,
          'dead': 1,
          'alive': 1,
          'nthe': 1,
          'frenchman': 1,
          'somewhat': 1,
          'responsible': 1,
          'escape': 1,
          'prisonerpacked': 1,
          'bus': 1,
          'hoodlum': 1,
          'owes': 1,
          'seven': 1,
          'grand': 1,
          'cops': 1,
          'wrongly': 1,
          'suspect': 1,
          'murder': 1,
          'nfranklins': 1,
          'hope': 1,
          'russell': 1,
          'charlie': 1,
          'sheen': 1,
          'investigative': 1,
          'reporter': 1,
          'local': 1,
          'news': 1,
          'prove': 1,
          'worthy': 1,
          'journalist': 1,
          'njames': 1,
          'offers': 1,
          'clear': 1,
          'name': 1,
          'allow': 1,
          'exclusive': 1,
          'report': 1,
          'channel': 1,
          '12': 1,
          'conquer': 1,
          'sweeps': 1,
          'week': 1,
          'nboth': 1,
          'elements': 1,
          'completely': 1,
          'lost': 1,
          'however': 1,
          'never': 1,
          'reappear': 1,
          'nas': 1,
          'odd': 1,
          'couple': 1,
          'wind': 1,
          'end': 1,
          'another': 1,
          'wasted': 1,
          'element': 1,
          'seeing': 1,
          'show': 1,
          'signs': 1,
          'becoming': 1,
          'point': 1,
          'nthere': 1,
          'nothing': 1,
          'original': 1,
          'intriguing': 1,
          'many': 1,
          'developments': 1,
          'either': 1,
          'nonrelevant': 1,
          'plain': 1,
          'forgotten': 1,
          'paintbynumbers': 1,
          'lacks': 1,
          'real': 1,
          'involvment': 1,
          'audience': 1,
          'nfrivilous': 1,
          'dialogue': 1,
          'predictable': 1,
          'flat': 1,
          'storyline': 1,
          'twodimensional': 1,
          'characters': 1,
          'make': 1,
          'reason': 1,
          'save': 1,
          'nneg': 1}),
 Counter({'disney': 7,
          'nthe': 7,
          'john': 5,
          'smith': 5,
          'time': 4,
          'film': 4,
          'many': 4,
          'pocahontas': 3,
          'story': 3,
          'ratcliffe': 3,
          'english': 3,
          'much': 3,
          'one': 3,
          'even': 3,
          'talking': 3,
          'viewing': 2,
          'kids': 2,
          'mentioned': 2,
          'movies': 2,
          'disappointed': 2,
          'characters': 2,
          'governor': 2,
          'world': 2,
          'savages': 2,
          'films': 2,
          'instance': 2,
          'man': 2,
          'best': 2,
          'animals': 2,
          'used': 2,
          'tree': 2,
          'work': 2,
          'delight': 2,
          'humor': 2,
          'rather': 2,
          'would': 2,
          'character': 2,
          'voice': 2,
          'singing': 2,
          'simplistic': 2,
          'ni': 2,
          'neven': 2,
          'audience': 2,
          'nwhile': 2,
          'history': 2,
          'change': 2,
          'doesnt': 2,
          'questions': 2,
          'making': 2,
          'nas': 2,
          'ways': 2,
          'starting': 1,
          'little': 1,
          'mermaid': 1,
          'recently': 1,
          'lion': 1,
          'king': 1,
          'walt': 1,
          'company': 1,
          'proved': 1,
          'could': 1,
          'consistently': 1,
          'make': 1,
          'modern': 1,
          'day': 1,
          'animated': 1,
          'classics': 1,
          'particularly': 1,
          'touch': 1,
          'general': 1,
          'publicparticularly': 1,
          'wanted': 1,
          'see': 1,
          'ntherefore': 1,
          'surprise': 1,
          'big': 1,
          'fan': 1,
          'ndespite': 1,
          'innovation': 1,
          'risk': 1,
          'taking': 1,
          'surprisingly': 1,
          'straightforward': 1,
          'dramatized': 1,
          'broad': 1,
          'strokes': 1,
          'na': 1,
          'group': 1,
          'englishmen': 1,
          'lead': 1,
          'evil': 1,
          'come': 1,
          'new': 1,
          'search': 1,
          'gold': 1,
          'regard': 1,
          'live': 1,
          'natives': 1,
          'look': 1,
          'upon': 1,
          'fear': 1,
          'distrust': 1,
          'nonly': 1,
          'love': 1,
          'beautifully': 1,
          'structured': 1,
          'dashing': 1,
          'captain': 1,
          'prevent': 1,
          'terrible': 1,
          'clash': 1,
          'ending': 1,
          'turns': 1,
          'entirely': 1,
          'happy': 1,
          'finer': 1,
          'moments': 1,
          'mixtures': 1,
          'stereotypes': 1,
          'lack': 1,
          'real': 1,
          'depth': 1,
          'ngovernor': 1,
          'snobbish': 1,
          'singleminded': 1,
          'bore': 1,
          'whose': 1,
          'mere': 1,
          'appearance': 1,
          'supposed': 1,
          'bring': 1,
          'hisses': 1,
          'ncaptain': 1,
          'blond': 1,
          'hunk': 1,
          'slightly': 1,
          'misguided': 1,
          'good': 1,
          'heart': 1,
          'npocahontas': 1,
          'typical': 1,
          'heroine': 1,
          'practically': 1,
          'forced': 1,
          'marry': 1,
          'everyone': 1,
          'likes': 1,
          'finds': 1,
          'dreams': 1,
          'nshe': 1,
          'comes': 1,
          'complete': 1,
          'insignificant': 1,
          'friend': 1,
          'nagain': 1,
          'tradition': 1,
          'arent': 1,
          'lusty': 1,
          'wizened': 1,
          'nthis': 1,
          'odd': 1,
          'compromise': 1,
          'elements': 1,
          'really': 1,
          'brief': 1,
          'interactions': 1,
          'take': 1,
          'place': 1,
          'brings': 1,
          'fun': 1,
          'bland': 1,
          'presentation': 1,
          'nmaybe': 1,
          'better': 1,
          'saw': 1,
          'unfold': 1,
          'eyes': 1,
          'seems': 1,
          'thing': 1,
          'hold': 1,
          'interest': 1,
          'perhaps': 1,
          'developed': 1,
          'bunch': 1,
          'music': 1,
          'welcome': 1,
          'later': 1,
          'mostly': 1,
          'let': 1,
          'exception': 1,
          'catchy': 1,
          'motivational': 1,
          'colors': 1,
          'wind': 1,
          'nmel': 1,
          'gibson': 1,
          'solid': 1,
          'opposite': 1,
          'holds': 1,
          'true': 1,
          'led': 1,
          'songs': 1,
          'grating': 1,
          'bored': 1,
          'turned': 1,
          'shorter': 1,
          'expected': 1,
          'running': 1,
          'children': 1,
          'seemed': 1,
          'restless': 1,
          'theres': 1,
          'stopping': 1,
          'kid': 1,
          'seeing': 1,
          'something': 1,
          'wantor': 1,
          'wants': 1,
          'tomost': 1,
          'believe': 1,
          'nperhaps': 1,
          'biggest': 1,
          'problem': 1,
          'strayed': 1,
          'familiar': 1,
          'fable': 1,
          'fairy': 1,
          'tale': 1,
          'themes': 1,
          'nits': 1,
          'right': 1,
          'embellish': 1,
          'fantasy': 1,
          'suit': 1,
          'entertainment': 1,
          'value': 1,
          'historical': 1,
          'facts': 1,
          'nearly': 1,
          'well': 1,
          'creating': 1,
          'nagging': 1,
          'viewers': 1,
          'minds': 1,
          'plot': 1,
          'holes': 1,
          'never': 1,
          'filled': 1,
          'artwork': 1,
          'another': 1,
          'strong': 1,
          'point': 1,
          'varies': 1,
          'greatly': 1,
          'quality': 1,
          'problems': 1,
          'obvious': 1,
          'stayed': 1,
          'nfor': 1,
          'truly': 1,
          'traveler': 1,
          'experience': 1,
          'quickly': 1,
          'previous': 1,
          'kill': 1,
          'indians': 1,
          'attitude': 1,
          'nif': 1,
          'nice': 1,
          'guy': 1,
          'changed': 1,
          'long': 1,
          'amazing': 1,
          'speaking': 1,
          'ability': 1,
          'supposedly': 1,
          'first': 1,
          'seen': 1,
          'white': 1,
          'men': 1,
          'understand': 1,
          'native': 1,
          'americans': 1,
          'speak': 1,
          'benefit': 1,
          'simply': 1,
          'saying': 1,
          'met': 1,
          'missionary': 1,
          'years': 1,
          'earlier': 1,
          'cleared': 1,
          'lot': 1,
          'modified': 1,
          'anyway': 1,
          'wonder': 1,
          'give': 1,
          'wrong': 1,
          'impression': 1,
          'nin': 1,
          'short': 1,
          'adults': 1,
          'contains': 1,
          'romance': 1,
          'enough': 1,
          'action': 1,
          'younger': 1,
          'set': 1,
          'tried': 1,
          'valiantly': 1,
          'break': 1,
          'firmest': 1,
          'traditions': 1,
          'end': 1,
          'failing': 1,
          'levels': 1,
          'nneg': 1}),
 Counter({'tom': 4,
          'film': 4,
          'hanks': 4,
          'comedy': 3,
          'scott': 3,
          'roommates': 2,
          'find': 2,
          'subject': 2,
          'matter': 2,
          'movie': 2,
          'everett': 2,
          'scotts': 2,
          'element': 2,
          'black': 2,
          'youre': 2,
          'gon': 2,
          'na': 2,
          'bad': 2,
          'known': 2,
          'first': 2,
          'feature': 2,
          'director': 2,
          'hiring': 2,
          'decided': 2,
          'played': 2,
          'plot': 1,
          'upon': 1,
          'realization': 1,
          'failing': 1,
          'classes': 1,
          'two': 1,
          'try': 1,
          'third': 1,
          'roomie': 1,
          'kill': 1,
          'since': 1,
          'schools': 1,
          'charter': 1,
          'automatically': 1,
          'grants': 1,
          'top': 1,
          'grades': 1,
          'student': 1,
          'succeeds': 1,
          'suicide': 1,
          'ncritique': 1,
          'despite': 1,
          'films': 1,
          'interesting': 1,
          'premise': 1,
          'dark': 1,
          'sucks': 1,
          'unfunny': 1,
          'boring': 1,
          'presents': 1,
          'us': 1,
          'one': 1,
          'worst': 1,
          'acting': 1,
          'performances': 1,
          'nadd': 1,
          'completely': 1,
          'unsuccessful': 1,
          'romance': 1,
          'many': 1,
          'lame': 1,
          'corny': 1,
          'jokes': 1,
          'long': 1,
          'wait': 1,
          'setup': 1,
          'ending': 1,
          'takes': 1,
          'blackness': 1,
          'create': 1,
          'dont': 1,
          'chicken': 1,
          'endsee': 1,
          'things': 1,
          '810': 1,
          'perfect': 1,
          'example': 1,
          'youve': 1,
          'got': 1,
          'trite': 1,
          'mtv': 1,
          'creation': 1,
          'worthy': 1,
          'ni': 1,
          'barely': 1,
          'laughed': 1,
          'gags': 1,
          'found': 1,
          'bong': 1,
          'contrived': 1,
          'repetitive': 1,
          'horrified': 1,
          'gratuitous': 1,
          'nudity': 1,
          'tossed': 1,
          'anywhere': 1,
          'make': 1,
          'college': 1,
          'least': 1,
          'slap': 1,
          'free': 1,
          'ta': 1,
          'shots': 1,
          'kids': 1,
          'nthis': 1,
          'ones': 1,
          'even': 1,
          'worth': 1,
          'rental': 1,
          'fellas': 1,
          'nskip': 1,
          'altogether': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'auditions': 1,
          'thing': 1,
          'role': 1,
          'opposed': 1,
          'fact': 1,
          'couldve': 1,
          'passed': 1,
          '15': 1,
          'years': 1,
          'ago': 1,
          'nit': 1,
          'wasnt': 1,
          'wife': 1,
          'rita': 1,
          'wilson': 1,
          'saw': 1,
          'audition': 1,
          'tape': 1,
          'cute': 1,
          'risk': 1,
          'nthe': 1,
          'actor': 1,
          'cooper': 1,
          'markpaul': 1,
          'gosselaar': 1,
          'best': 1,
          'character': 1,
          'zack': 1,
          'morris': 1,
          'tvs': 1,
          'saved': 1,
          'bell': 1,
          'nhis': 1,
          'parents': 1,
          'dutch': 1,
          'named': 1,
          'hans': 1,
          'paula': 1,
          'nand': 1,
          'wouldve': 1,
          'guessed': 1,
          'alan': 1,
          'cohns': 1,
          'shot': 1,
          'directing': 1,
          'nneg': 1}),
 Counter({'one': 14,
          'film': 10,
          'good': 9,
          'nbut': 9,
          'nthe': 9,
          'films': 8,
          'made': 7,
          'quentin': 7,
          'funny': 6,
          'director': 5,
          'couple': 5,
          'never': 5,
          'ted': 5,
          'starring': 5,
          'also': 4,
          'first': 4,
          'two': 4,
          'nhe': 4,
          'rodriguez': 4,
          'crap': 4,
          'new': 4,
          'back': 4,
          'actually': 4,
          'writerdirector': 4,
          'plot': 4,
          'get': 4,
          'man': 4,
          'stupid': 4,
          'ni': 3,
          'bad': 3,
          'tarantino': 3,
          'tv': 3,
          'nand': 3,
          'n': 3,
          'cool': 3,
          'ensemble': 3,
          'goes': 3,
          'something': 3,
          'bring': 3,
          'etc': 3,
          'thing': 3,
          'wrong': 3,
          'david': 3,
          'proval': 3,
          'jennifer': 3,
          'beals': 3,
          'much': 3,
          'seemed': 3,
          'nit': 3,
          'anticlimactic': 3,
          'kids': 3,
          'long': 3,
          'hollywood': 3,
          'doesnt': 3,
          'seem': 3,
          'makes': 3,
          'respect': 2,
          'perfect': 2,
          'scorsese': 2,
          'classic': 2,
          'make': 2,
          'whos': 2,
          'great': 2,
          'nnow': 2,
          'second': 2,
          'time': 2,
          'wasnt': 2,
          'year': 2,
          'way': 2,
          'nive': 2,
          'seen': 2,
          'alexandre': 2,
          'rockwell': 2,
          'allison': 2,
          'anders': 2,
          'directors': 2,
          'give': 2,
          'really': 2,
          'york': 2,
          'stories': 2,
          'totally': 2,
          'bellhop': 2,
          'roth': 2,
          'god': 2,
          'though': 2,
          'working': 2,
          'years': 2,
          'old': 2,
          'hotel': 2,
          'pulp': 2,
          'fiction': 2,
          'hands': 2,
          'job': 2,
          'night': 2,
          'ione': 2,
          'skye': 2,
          'nthis': 2,
          'starts': 2,
          'dialogue': 2,
          'painful': 2,
          'watch': 2,
          'room': 2,
          'supposed': 2,
          'said': 2,
          'arent': 2,
          'even': 2,
          'stars': 2,
          'laurence': 2,
          'bender': 2,
          'little': 2,
          'sex': 2,
          'nted': 2,
          'gets': 2,
          'playing': 2,
          'end': 2,
          'robert': 2,
          'antonio': 2,
          'tomita': 2,
          'lana': 2,
          'danny': 2,
          'salma': 2,
          'see': 2,
          'nantonio': 2,
          'go': 2,
          'drunk': 2,
          'best': 2,
          'light': 2,
          'lighter': 2,
          'nthey': 2,
          'lot': 2,
          'cause': 2,
          'nif': 2,
          'nits': 2,
          'theyre': 2,
          'respecting': 1,
          'must': 1,
          'fact': 1,
          'nwoody': 1,
          'allen': 1,
          'lessthan': 1,
          'hes': 1,
          'favorite': 1,
          'neven': 1,
          'martin': 1,
          'hasnt': 1,
          'track': 1,
          'record': 1,
          'nkevin': 1,
          'smith': 1,
          'smashing': 1,
          'debut': 1,
          'clerks': 1,
          'stooped': 1,
          'low': 1,
          'sellout': 1,
          'dreadful': 1,
          'mallrats': 1,
          'mean': 1,
          'far': 1,
          'several': 1,
          'none': 1,
          'richard': 1,
          'linklater': 1,
          'slacker': 1,
          'dazed': 1,
          'confused': 1,
          'sunrise': 1,
          'suburbia': 1,
          'nwhich': 1,
          'adore': 1,
          'nhis': 1,
          'greatest': 1,
          '1995': 1,
          'many': 1,
          'appearances': 1,
          'mispronounced': 1,
          'jackie': 1,
          'chans': 1,
          'name': 1,
          'mtv': 1,
          'movie': 1,
          'awards': 1,
          'awarded': 1,
          'oscar': 1,
          'guess': 1,
          'would': 1,
          'grand': 1,
          'exception': 1,
          'nrobert': 1,
          'brilliant': 1,
          'cant': 1,
          'comment': 1,
          'four': 1,
          'pitiful': 1,
          'efforts': 1,
          'npitiful': 1,
          'fairness': 1,
          'pieces': 1,
          'work': 1,
          'heard': 1,
          'francis': 1,
          'ford': 1,
          'coppola': 1,
          'saw': 1,
          'woodys': 1,
          'hilarious': 1,
          'par': 1,
          'rate': 1,
          'individually': 1,
          'report': 1,
          'overal': 1,
          'average': 1,
          'score': 1,
          'nexposition': 1,
          'simple': 1,
          'overdone': 1,
          'tim': 1,
          'moments': 1,
          'eve': 1,
          'shift': 1,
          'fancy': 1,
          'nhes': 1,
          'rooms': 1,
          'yet': 1,
          'seemingly': 1,
          'immortal': 1,
          'marc': 1,
          'lawrence': 1,
          'hated': 1,
          'cap': 1,
          'happily': 1,
          'nas': 1,
          'becomes': 1,
          'increasingly': 1,
          'annoyed': 1,
          'hostile': 1,
          'nyea': 1,
          'short': 1,
          'presented': 1,
          'order': 1,
          'btw': 1,
          'missing': 1,
          'ingredient': 1,
          'sammi': 1,
          'davis': 1,
          'amanda': 1,
          'decadenet': 1,
          'valeria': 1,
          'golino': 1,
          'madonna': 1,
          'lili': 1,
          'taylor': 1,
          'alicia': 1,
          'witt': 1,
          'horribly': 1,
          'intrigue': 1,
          'situation': 1,
          'terrible': 1,
          'physically': 1,
          'coven': 1,
          'witches': 1,
          'needing': 1,
          'sperm': 1,
          'godess': 1,
          'gasp': 1,
          'nstuck': 1,
          'inside': 1,
          'object': 1,
          'witch': 1,
          'calls': 1,
          'asks': 1,
          'perform': 1,
          'fellatio': 1,
          'nyeah': 1,
          'thats': 1,
          'nstupid': 1,
          'inane': 1,
          'characters': 1,
          'interesting': 1,
          'cast': 1,
          'turn': 1,
          'wastes': 1,
          'pitifully': 1,
          'nnot': 1,
          'nmy': 1,
          'rating': 1,
          '5': 1,
          'nanother': 1,
          'another': 1,
          'going': 1,
          'stumbles': 1,
          'middle': 1,
          'attempt': 1,
          'coming': 1,
          'games': 1,
          'tries': 1,
          'escape': 1,
          'cheer': 1,
          'soon': 1,
          'least': 1,
          'bit': 1,
          'comedy': 1,
          'overacted': 1,
          'producer': 1,
          'puke': 1,
          'window': 1,
          'na': 1,
          'masterpiece': 1,
          'compared': 1,
          'still': 1,
          'misbehavers': 1,
          'banderes': 1,
          'tamlyn': 1,
          'mckissack': 1,
          'verduzco': 1,
          'hayek': 1,
          'nwould': 1,
          'without': 1,
          'hayeks': 1,
          'navel': 1,
          'nnope': 1,
          'nluckily': 1,
          'shes': 1,
          'dancing': 1,
          'nsurprisingly': 1,
          'enough': 1,
          'read': 1,
          'screenplay': 1,
          'seeing': 1,
          'potential': 1,
          'fastpaced': 1,
          'well': 1,
          'watched': 1,
          'gain': 1,
          'momentum': 1,
          'towards': 1,
          'everything': 1,
          'happened': 1,
          'overacts': 1,
          'nicely': 1,
          'moves': 1,
          'slowly': 1,
          'ending': 1,
          'noh': 1,
          'gangster': 1,
          'assumed': 1,
          'leaves': 1,
          'troubling': 1,
          'home': 1,
          'wife': 1,
          'party': 1,
          'hires': 1,
          'bucks': 1,
          'things': 1,
          'nwas': 1,
          'okay': 1,
          'bruce': 1,
          'willis': 1,
          'paul': 1,
          'calderon': 1,
          'nironically': 1,
          'could': 1,
          'considered': 1,
          'reason': 1,
          'represents': 1,
          'done': 1,
          'plays': 1,
          'chester': 1,
          'spoiled': 1,
          'brat': 1,
          'actor': 1,
          'huge': 1,
          'boxoffice': 1,
          'hit': 1,
          'living': 1,
          'game': 1,
          'hitchcock': 1,
          'episode': 1,
          'steve': 1,
          'mcqueen': 1,
          'peter': 1,
          'lorre': 1,
          'gamble': 1,
          'ten': 1,
          'times': 1,
          'row': 1,
          'ntheyre': 1,
          'need': 1,
          'sober': 1,
          'nervous': 1,
          'hold': 1,
          'cleaver': 1,
          'pay': 1,
          'cash': 1,
          'exactly': 1,
          'campy': 1,
          'ntim': 1,
          'probably': 1,
          'payed': 1,
          'money': 1,
          'part': 1,
          'bunch': 1,
          'people': 1,
          'high': 1,
          'theyve': 1,
          'hits': 1,
          'major': 1,
          'minor': 1,
          'took': 1,
          'realize': 1,
          'like': 1,
          'realizes': 1,
          'id': 1,
          '3': 1,
          'sucked': 1,
          'steadicam': 1,
          'shot': 1,
          'flashes': 1,
          'nthat': 1,
          'sense': 1,
          'uneven': 1,
          'nhopefully': 1,
          'repeats': 1,
          'nconclusion': 1,
          'whats': 1,
          'moral': 1,
          'youve': 1,
          'celebrated': 1,
          'dont': 1,
          'piece': 1,
          'rewatched': 1,
          'stopped': 1,
          'tracks': 1,
          'nnone': 1,
          'point': 1,
          'embarrassing': 1,
          'writerdirectors': 1,
          'actors': 1,
          'forgive': 1,
          'everyone': 1,
          'involved': 1,
          'especially': 1,
          'look': 1,
          'forward': 1,
          'quentins': 1,
          'next': 1,
          'directing': 1,
          'jumped': 1,
          'top': 1,
          'immeadiately': 1,
          'dusk': 1,
          'till': 1,
          'dawn': 1,
          'found': 1,
          'exhilerating': 1,
          'love': 1,
          'suppose': 1,
          'realistic': 1,
          'cinema': 1,
          'gods': 1,
          'human': 1,
          'beings': 1,
          'mistakes': 1,
          'big': 1,
          'mistake': 1,
          'lets': 1,
          'hope': 1,
          'return': 1,
          'continuously': 1,
          'nneg': 1}),
 Counter({'species': 7,
          'one': 5,
          'ii': 4,
          'nits': 3,
          'alien': 3,
          'first': 3,
          'film': 3,
          'isnt': 2,
          'reason': 2,
          'effects': 2,
          'nthe': 2,
          'back': 2,
          'mars': 2,
          'slime': 2,
          'movie': 2,
          'eve': 2,
          'henstridge': 2,
          'tv': 2,
          'go': 2,
          'sequel': 2,
          'press': 2,
          'like': 2,
          'peter': 2,
          'better': 2,
          'dont': 1,
          'need': 1,
          'seen': 1,
          'original': 1,
          'appreciate': 1,
          'utterly': 1,
          'lousy': 1,
          'nwith': 1,
          'exceptions': 1,
          'sequels': 1,
          'tend': 1,
          'worse': 1,
          'films': 1,
          'spawned': 1,
          'fact': 1,
          'followup': 1,
          'miserable': 1,
          'predictable': 1,
          'storyline': 1,
          'cardboard': 1,
          'characters': 1,
          'banal': 1,
          'dialogue': 1,
          'failed': 1,
          'attempts': 1,
          'humor': 1,
          'revolting': 1,
          'special': 1,
          'gratuitous': 1,
          'nudity': 1,
          'female': 1,
          'course': 1,
          'bad': 1,
          'acting': 1,
          'bland': 1,
          'direction': 1,
          'plot': 1,
          'simply': 1,
          'geared': 1,
          'getting': 1,
          'planet': 1,
          'earth': 1,
          'reak': 1,
          'havoc': 1,
          'involves': 1,
          'three': 1,
          'astronauts': 1,
          'landing': 1,
          'inadvertently': 1,
          'bringing': 1,
          'soil': 1,
          'sample': 1,
          'aboard': 1,
          'shuttle': 1,
          'well': 1,
          'sort': 1,
          'jumps': 1,
          'screen': 1,
          'turns': 1,
          'black': 1,
          'nthat': 1,
          'end': 1,
          'right': 1,
          'nback': 1,
          'terra': 1,
          'firma': 1,
          'least': 1,
          'crew': 1,
          'carrier': 1,
          'dna': 1,
          'youll': 1,
          'remember': 1,
          'saw': 1,
          'driven': 1,
          'strong': 1,
          'urge': 1,
          'procreate': 1,
          'non': 1,
          'parallel': 1,
          'track': 1,
          'government': 1,
          'scientists': 1,
          'cloned': 1,
          'version': 1,
          'sil': 1,
          'called': 1,
          'played': 1,
          'natasha': 1,
          'keeping': 1,
          'around': 1,
          'testing': 1,
          'nthis': 1,
          'apparently': 1,
          'includes': 1,
          'observing': 1,
          'eves': 1,
          'reaction': 1,
          'dukes': 1,
          'hazzard': 1,
          'show': 1,
          'appears': 1,
          'enjoy': 1,
          'neves': 1,
          'biorhythms': 1,
          'scale': 1,
          'time': 1,
          'kinfolk': 1,
          'mates': 1,
          'forced': 1,
          'witness': 1,
          'grossout': 1,
          'detail': 1,
          'otherwise': 1,
          'doesnt': 1,
          'appear': 1,
          'whole': 1,
          'lot': 1,
          'unless': 1,
          'written': 1,
          'contract': 1,
          'lets': 1,
          'hope': 1,
          'cited': 1,
          'neve': 1,
          'finally': 1,
          'breaks': 1,
          'free': 1,
          'confinesand': 1,
          'brafor': 1,
          'finale': 1,
          'messy': 1,
          'cant': 1,
          'really': 1,
          'see': 1,
          'whats': 1,
          'going': 1,
          'npeter': 1,
          'boyle': 1,
          'totally': 1,
          'wasted': 1,
          'institutionalized': 1,
          'scientist': 1,
          'screams': 1,
          'told': 1,
          'em': 1,
          'nat': 1,
          'top': 1,
          'lungs': 1,
          'referring': 1,
          'mission': 1,
          'likely': 1,
          'aimed': 1,
          'makers': 1,
          'piffle': 1,
          'nmichael': 1,
          'madsen': 1,
          'reprises': 1,
          'role': 1,
          'lennox': 1,
          'enter': 1,
          'high': 1,
          'security': 1,
          'areas': 1,
          'flash': 1,
          'badge': 1,
          'claim': 1,
          'maybe': 1,
          'marg': 1,
          'helgenberger': 1,
          'dr': 1,
          'laura': 1,
          'baker': 1,
          'subjecting': 1,
          'reruns': 1,
          'ntheyre': 1,
          'unbelievably': 1,
          'wooden': 1,
          'nwhats': 1,
          'talented': 1,
          'filmmaker': 1,
          'medak': 1,
          'ruling': 1,
          'class': 1,
          'krays': 1,
          'let': 1,
          'directing': 1,
          'tripe': 1,
          'wonder': 1,
          'unfortunate': 1,
          'trend': 1,
          'oncetalented': 1,
          'directors': 1,
          'throwing': 1,
          'towel': 1,
          'lending': 1,
          'names': 1,
          'unchallenging': 1,
          'horror': 1,
          'flicks': 1,
          'nlast': 1,
          'year': 1,
          'hyams': 1,
          'gave': 1,
          'us': 1,
          'relic': 1,
          'thanks': 1,
          'necessary': 1,
          'nand': 1,
          'helmed': 1,
          'roger': 1,
          'donaldson': 1,
          'although': 1,
          'certainly': 1,
          'genius': 1,
          'behind': 1,
          'camera': 1,
          'demonstrated': 1,
          'much': 1,
          'judgment': 1,
          'previous': 1,
          'choice': 1,
          'projects': 1,
          'nis': 1,
          'offers': 1,
          'n': 1,
          'worthless': 1,
          'nworse': 1,
          'also': 1,
          'exploitative': 1,
          'offensive': 1,
          'insulting': 1,
          'intelligence': 1,
          'every': 1,
          'turn': 1,
          'anything': 1,
          'positive': 1,
          'say': 1,
          'nthere': 1,
          'nafter': 1,
          '92': 1,
          'minutes': 1,
          'ends': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'nthe': 8,
          'years': 4,
          'one': 4,
          'could': 4,
          'movies': 3,
          'done': 3,
          'like': 3,
          'lone': 3,
          'widow': 3,
          'water': 3,
          'n': 3,
          'called': 3,
          'budget': 3,
          'isnt': 3,
          'script': 3,
          'way': 3,
          'enough': 3,
          'ignores': 3,
          'cost': 3,
          'ten': 2,
          'back': 2,
          'warrior': 2,
          'yarns': 2,
          'plot': 2,
          'gunman': 2,
          'town': 2,
          'well': 2,
          'small': 2,
          'young': 2,
          'daughter': 2,
          'get': 2,
          'played': 2,
          'stunning': 2,
          'jean': 2,
          'given': 2,
          'even': 2,
          'child': 2,
          'enola': 2,
          'tina': 2,
          'bad': 2,
          'thing': 2,
          'material': 2,
          'nin': 2,
          'ice': 2,
          'caps': 2,
          'melted': 2,
          'people': 2,
          'boats': 2,
          'centuries': 2,
          'smokers': 2,
          'engines': 2,
          'sea': 2,
          'dryland': 2,
          'deacon': 2,
          'find': 2,
          'surface': 2,
          'still': 2,
          'work': 2,
          'million': 2,
          'dollars': 2,
          'nothing': 2,
          'sf': 2,
          'tv': 2,
          'series': 2,
          'fx': 2,
          'see': 2,
          'something': 1,
          'fishy': 1,
          'state': 1,
          'universal': 1,
          'nabout': 1,
          'unexpected': 1,
          'success': 1,
          'mad': 1,
          'max': 1,
          'road': 1,
          'postapocalypse': 1,
          'nittygritty': 1,
          'survival': 1,
          'became': 1,
          'popular': 1,
          'nweve': 1,
          'always': 1,
          'nature': 1,
          'beach': 1,
          'end': 1,
          'world': 1,
          'damnation': 1,
          'alley': 1,
          'ultimate': 1,
          'nto': 1,
          'date': 1,
          'smoothly': 1,
          'straightforward': 1,
          'haircuts': 1,
          'classic': 1,
          'western': 1,
          'comes': 1,
          'protects': 1,
          'son': 1,
          'evil': 1,
          'organization': 1,
          'usually': 1,
          'possession': 1,
          'critical': 1,
          'resource': 1,
          'feed': 1,
          'range': 1,
          'mining': 1,
          'claim': 1,
          'nmost': 1,
          'grew': 1,
          'venerable': 1,
          'solid': 1,
          'hero': 1,
          'virginian': 1,
          'shane': 1,
          'personal': 1,
          'favorite': 1,
          'patrick': 1,
          'swayze': 1,
          'steel': 1,
          'dawn': 1,
          'fairly': 1,
          'made': 1,
          'nnow': 1,
          'waterworld': 1,
          'brings': 1,
          'traditional': 1,
          'rescue': 1,
          'shes': 1,
          'kid': 1,
          'idea': 1,
          'lady': 1,
          'helen': 1,
          'tripplehorn': 1,
          'chance': 1,
          'interesting': 1,
          'mediocre': 1,
          'unimaginative': 1,
          'majorino': 1,
          'living': 1,
          'proof': 1,
          'actor': 1,
          'need': 1,
          'outshines': 1,
          'simple': 1,
          'scene': 1,
          'earth': 1,
          'hundreds': 1,
          'polar': 1,
          'somehow': 1,
          'produced': 1,
          'inundate': 1,
          'entire': 1,
          'planet': 1,
          'remaining': 1,
          'live': 1,
          'floating': 1,
          'colonies': 1,
          'survive': 1,
          'trade': 1,
          'theft': 1,
          'piracy': 1,
          'nsomehow': 1,
          'oil': 1,
          'tanker': 1,
          'survived': 1,
          'inhabitants': 1,
          'able': 1,
          'keep': 1,
          'gasoline': 1,
          'running': 1,
          'despite': 1,
          'dearth': 1,
          'replacement': 1,
          'parts': 1,
          'raw': 1,
          'materials': 1,
          'guys': 1,
          'outboard': 1,
          'fastmoving': 1,
          'airplanes': 1,
          'jet': 1,
          'skis': 1,
          'nenola': 1,
          'found': 1,
          'girl': 1,
          'mysterious': 1,
          'map': 1,
          'read': 1,
          'tattooed': 1,
          'nwe': 1,
          'suspect': 1,
          'early': 1,
          'mythical': 1,
          'place': 1,
          'trees': 1,
          'crops': 1,
          'animals': 1,
          'grow': 1,
          'hinges': 1,
          'psycho': 1,
          'ruler': 1,
          'trying': 1,
          'nplayed': 1,
          'typical': 1,
          'selflampooning': 1,
          'rugchewing': 1,
          'histrionics': 1,
          'dennis': 1,
          'hopper': 1,
          'thats': 1,
          'close': 1,
          'amusing': 1,
          'nhis': 1,
          'performance': 1,
          'almost': 1,
          'laughable': 1,
          'funny': 1,
          'star': 1,
          'coproducer': 1,
          'kevin': 1,
          'costner': 1,
          'nhes': 1,
          'playing': 1,
          'unnamed': 1,
          'denizen': 1,
          'man': 1,
          'mariner': 1,
          'turns': 1,
          'gilled': 1,
          'waterbreathing': 1,
          'mutant': 1,
          'webbed': 1,
          'feet': 1,
          'nvery': 1,
          'little': 1,
          'ineffectuality': 1,
          'gills': 1,
          'supplying': 1,
          'oxygen': 1,
          'support': 1,
          'human': 1,
          'metabolism': 1,
          'fact': 1,
          'completely': 1,
          'much': 1,
          'earths': 1,
          'would': 1,
          'blatant': 1,
          'impossibility': 1,
          'cultures': 1,
          'technology': 1,
          'shown': 1,
          'canned': 1,
          'meat': 1,
          'last': 1,
          'ammunition': 1,
          'fire': 1,
          'decades': 1,
          'old': 1,
          'nim': 1,
          'quite': 1,
          'fond': 1,
          'majorinos': 1,
          'previous': 1,
          'impressed': 1,
          'tripplehorns': 1,
          'past': 1,
          'accomplishments': 1,
          'speechless': 1,
          'costners': 1,
          'dances': 1,
          'wolves': 1,
          'nbut': 1,
          'destroy': 1,
          'careers': 1,
          'anyone': 1,
          'associated': 1,
          'nthis': 1,
          'hundred': 1,
          'eightytwo': 1,
          'theres': 1,
          'havent': 1,
          'seen': 1,
          'better': 1,
          'percent': 1,
          'turkey': 1,
          'nat': 1,
          '125': 1,
          'minutes': 1,
          'point': 1,
          'four': 1,
          'per': 1,
          'minute': 1,
          'make': 1,
          'us': 1,
          'thirty': 1,
          'paid': 1,
          'six': 1,
          'primetime': 1,
          'expensive': 1,
          'good': 1,
          'digital': 1,
          'sum': 1,
          'beneath': 1,
          'contempt': 1,
          'nit': 1,
          'new': 1,
          'offer': 1,
          'easily': 1,
          'bettered': 1,
          'write': 1,
          'comic': 1,
          'books': 1,
          'dc': 1,
          'spent': 1,
          'money': 1,
          'national': 1,
          'nation': 1,
          'nif': 1,
          'go': 1,
          'fourdollar': 1,
          'matinee': 1,
          'notherwise': 1,
          'youll': 1,
          'sneering': 1,
          'every': 1,
          'time': 1,
          'pass': 1,
          'reflective': 1,
          'weeks': 1,
          'nneg': 1}),
 Counter({'switchback': 6,
          'nbut': 4,
          'movie': 3,
          'lacrosse': 3,
          'even': 3,
          'thats': 3,
          'needs': 2,
          'killer': 2,
          'like': 2,
          'lee': 2,
          'fast': 2,
          'know': 2,
          'material': 2,
          'enough': 2,
          'make': 2,
          'interesting': 2,
          'n': 2,
          'learn': 2,
          'dennis': 2,
          'quaid': 2,
          'doesnt': 2,
          'nin': 2,
          'bob': 2,
          'danny': 2,
          'glover': 2,
          'way': 2,
          'life': 2,
          'lane': 2,
          'leto': 2,
          'end': 2,
          'turn': 2,
          'knows': 2,
          'much': 2,
          'well': 2,
          'true': 2,
          'look': 2,
          'season': 1,
          'another': 1,
          'serial': 1,
          'kathie': 1,
          'gifford': 1,
          'public': 1,
          'devastation': 1,
          'lo': 1,
          'behold': 1,
          'comes': 1,
          'heels': 1,
          'stalker': 1,
          'fare': 1,
          'kiss': 1,
          'girls': 1,
          'last': 1,
          'summer': 1,
          'undoubtedly': 1,
          'weak': 1,
          'genre': 1,
          'entry': 1,
          'covers': 1,
          'old': 1,
          'tired': 1,
          'filmmakers': 1,
          'rarely': 1,
          'sustain': 1,
          'energy': 1,
          'proceedings': 1,
          'opens': 1,
          'murder': 1,
          'babysitter': 1,
          'abduction': 1,
          'young': 1,
          'child': 1,
          'shes': 1,
          'watching': 1,
          'nwe': 1,
          'late': 1,
          'game': 1,
          'kid': 1,
          'belongs': 1,
          'fbi': 1,
          'agent': 1,
          'frank': 1,
          'kidnapperkiller': 1,
          'nameless': 1,
          'fiend': 1,
          'tracking': 1,
          'across': 1,
          'country': 1,
          'quite': 1,
          'nhe': 1,
          'promptly': 1,
          'removed': 1,
          'case': 1,
          'conflict': 1,
          'interest': 1,
          'keep': 1,
          'offering': 1,
          'pursuit': 1,
          'nlacrosses': 1,
          'recent': 1,
          'trek': 1,
          'takes': 1,
          'bloodsoaked': 1,
          'hotel': 1,
          'room': 1,
          'amarillo': 1,
          'texas': 1,
          'local': 1,
          'sheriff': 1,
          'r': 1,
          'ermey': 1,
          'torn': 1,
          'reelection': 1,
          'campaign': 1,
          'helping': 1,
          'new': 1,
          'ally': 1,
          'catch': 1,
          'man': 1,
          'related': 1,
          'aside': 1,
          'former': 1,
          'railway': 1,
          'worker': 1,
          'goodall': 1,
          'cruising': 1,
          'snowbound': 1,
          'west': 1,
          'pinupplastered': 1,
          'seatbelts': 1,
          'el': 1,
          'dorado': 1,
          'nalong': 1,
          'picks': 1,
          'subsequently': 1,
          'saves': 1,
          'hitchhiking': 1,
          'loner': 1,
          'dixon': 1,
          'jared': 1,
          'nthis': 1,
          'tangent': 1,
          'isnt': 1,
          'random': 1,
          'one': 1,
          'either': 1,
          'holding': 1,
          'piece': 1,
          'puzzle': 1,
          'villain': 1,
          'fact': 1,
          'pretending': 1,
          'coldhearted': 1,
          'murderer': 1,
          'sense': 1,
          'half': 1,
          'basic': 1,
          'problem': 1,
          'nfor': 1,
          'first': 1,
          'hour': 1,
          'presents': 1,
          'evidence': 1,
          'three': 1,
          'men': 1,
          'could': 1,
          'perpetrator': 1,
          'given': 1,
          'little': 1,
          'insight': 1,
          'likely': 1,
          'fear': 1,
          'therefore': 1,
          'able': 1,
          'proper': 1,
          'deduction': 1,
          'decides': 1,
          'explicitly': 1,
          'reveal': 1,
          'killers': 1,
          'identity': 1,
          'midpoint': 1,
          'following': 1,
          'contradictory': 1,
          'character': 1,
          'motivations': 1,
          'muddle': 1,
          'pacing': 1,
          'generation': 1,
          'suspense': 1,
          'nsome': 1,
          'acting': 1,
          'burdensome': 1,
          'area': 1,
          'probably': 1,
          'performers': 1,
          'instructed': 1,
          'build': 1,
          'personas': 1,
          'exact': 1,
          'opposite': 1,
          'selves': 1,
          'nwhat': 1,
          'grinning': 1,
          'yeehawing': 1,
          'messy': 1,
          'plot': 1,
          'nand': 1,
          'monotone': 1,
          'stop': 1,
          'nermey': 1,
          'solid': 1,
          'supporting': 1,
          'role': 1,
          'two': 1,
          'leads': 1,
          'thrown': 1,
          'together': 1,
          'charismatic': 1,
          'claire': 1,
          'danes': 1,
          'object': 1,
          'affection': 1,
          'socalled': 1,
          'scenestealer': 1,
          'tried': 1,
          'nfrom': 1,
          'standpoint': 1,
          'pretty': 1,
          'empty': 1,
          'firsttime': 1,
          'director': 1,
          'jeb': 1,
          'stuart': 1,
          'wrote': 1,
          'fugitive': 1,
          'die': 1,
          'hard': 1,
          'wants': 1,
          'provides': 1,
          'great': 1,
          'visuals': 1,
          'nthe': 1,
          'setonatrain': 1,
          'climax': 1,
          'looks': 1,
          'good': 1,
          'though': 1,
          'action': 1,
          'illogical': 1,
          'beautiful': 1,
          'crisp': 1,
          'cinematography': 1,
          'captures': 1,
          'rockies': 1,
          'icy': 1,
          'splendor': 1,
          'nstill': 1,
          'lump': 1,
          'coal': 1,
          'diamond': 1,
          'movies': 1,
          'leaving': 1,
          'cold': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'julia': 4,
          'character': 4,
          'nand': 4,
          'well': 4,
          'film': 4,
          'like': 4,
          'beyond': 3,
          'roberts': 3,
          'one': 3,
          'funny': 3,
          'romantic': 3,
          'way': 3,
          'plot': 2,
          'hollywood': 2,
          'pretend': 2,
          'ni': 2,
          'seen': 2,
          'nhow': 2,
          'premise': 2,
          'doesnt': 2,
          'chemistry': 2,
          'dog': 2,
          'around': 2,
          'comedy': 2,
          'actor': 2,
          'uninteresting': 2,
          'leads': 2,
          'enough': 2,
          'green': 2,
          'basically': 2,
          'nit': 2,
          'got': 2,
          'characters': 2,
          'everyone': 2,
          'story': 2,
          'waiting': 2,
          'laugh': 2,
          'azaria': 2,
          'might': 2,
          'nbut': 2,
          'time': 2,
          'na': 2,
          'fat': 2,
          'suit': 2,
          'scene': 2,
          'wedding': 2,
          '710': 2,
          '510': 2,
          '410': 2,
          'separated': 1,
          'glamorous': 1,
          'couple': 1,
          'must': 1,
          'reunite': 1,
          'press': 1,
          'junket': 1,
          'last': 1,
          'ever': 1,
          'shot': 1,
          'together': 1,
          'nkewl': 1,
          'wish': 1,
          'could': 1,
          'never': 1,
          'ncritique': 1,
          'trite': 1,
          'unfunny': 1,
          'boring': 1,
          'waste': 1,
          'everyones': 1,
          'talent': 1,
          'zest': 1,
          'bite': 1,
          'turn': 1,
          'feature': 1,
          'real': 1,
          'laughs': 1,
          'surprises': 1,
          'spice': 1,
          'used': 1,
          'solely': 1,
          'puppy': 1,
          'puttering': 1,
          'background': 1,
          'endure': 1,
          'complete': 1,
          'bitchiness': 1,
          'zetajones': 1,
          'bit': 1,
          'two': 1,
          'ideal': 1,
          'ingredients': 1,
          'also': 1,
          'chose': 1,
          'john': 1,
          'cusack': 1,
          'great': 1,
          'quirky': 1,
          'right': 1,
          'play': 1,
          'bland': 1,
          'unfetching': 1,
          'zero': 1,
          'either': 1,
          'anybody': 1,
          'decided': 1,
          'project': 1,
          'greenlight': 1,
          'featuring': 1,
          'talents': 1,
          'mentioned': 1,
          'along': 1,
          'billy': 1,
          'crystal': 1,
          'christopher': 1,
          'walker': 1,
          'seth': 1,
          'stanley': 1,
          'tucci': 1,
          'nwhat': 1,
          'say': 1,
          'njust': 1,
          'dont': 1,
          'words': 1,
          'nso': 1,
          'worst': 1,
          'ive': 1,
          'year': 1,
          'nno': 1,
          'definitely': 1,
          'sucks': 1,
          'nits': 1,
          'record': 1,
          'allow': 1,
          'state': 1,
          'problems': 1,
          'starts': 1,
          'slow': 1,
          'energy': 1,
          'engage': 1,
          'barely': 1,
          'gets': 1,
          'somewhat': 1,
          'interesting': 1,
          'else': 1,
          'lame': 1,
          'utilizes': 1,
          'many': 1,
          'flashbacks': 1,
          'move': 1,
          'forward': 1,
          'utterly': 1,
          'predictable': 1,
          'standard': 1,
          'routine': 1,
          'seethrough': 1,
          'sits': 1,
          'screen': 1,
          'big': 1,
          'ugly': 1,
          'find': 1,
          'something': 1,
          'amusing': 1,
          'hank': 1,
          'shows': 1,
          'aaaaaah': 1,
          'films': 1,
          'savior': 1,
          'mind': 1,
          'offended': 1,
          'exaggeration': 1,
          'stereotype': 1,
          'thats': 1,
          'another': 1,
          'altogether': 1,
          'experienced': 1,
          'voice': 1,
          'upstages': 1,
          'main': 1,
          'stars': 1,
          'summer': 1,
          'blockbuster': 1,
          'overthetop': 1,
          'antonio': 1,
          'banderas': 1,
          'accent': 1,
          'damn': 1,
          'dude': 1,
          'nfilms': 1,
          'trouble': 1,
          'nrent': 1,
          'video': 1,
          'see': 1,
          'went': 1,
          'wrong': 1,
          'nthe': 1,
          'references': 1,
          'ricky': 1,
          'ricardo': 1,
          'senor': 1,
          'wences': 1,
          'huh': 1,
          'idioplot': 1,
          'points': 1,
          'goes': 1,
          'roof': 1,
          'stretch': 1,
          'arms': 1,
          'relax': 1,
          'believes': 1,
          'hes': 1,
          'going': 1,
          'kill': 1,
          'hardyharhar': 1,
          'cheap': 1,
          'getting': 1,
          'audience': 1,
          'leave': 1,
          'theater': 1,
          'laughing': 1,
          'bringing': 1,
          'back': 1,
          'ballsniffing': 1,
          'place': 1,
          'location': 1,
          'end': 1,
          'ncould': 1,
          'go': 1,
          'wont': 1,
          'still': 1,
          'respect': 1,
          'actors': 1,
          'actually': 1,
          'tuccis': 1,
          'antics': 1,
          'ironic': 1,
          'eh': 1,
          'nabout': 1,
          'dammit': 1,
          'liked': 1,
          'behind': 1,
          'saw': 1,
          'finished': 1,
          'product': 1,
          'course': 1,
          'dud': 1,
          'nbtw': 1,
          'talk': 1,
          'supposed': 1,
          'lost': 1,
          '60': 1,
          'pounds': 1,
          'finally': 1,
          'came': 1,
          'get': 1,
          'little': 1,
          'excited': 1,
          'look': 1,
          'looked': 1,
          'nugh': 1,
          'think': 1,
          'im': 1,
          'gon': 1,
          'start': 1,
          'drinking': 1,
          'lameass': 1,
          'ncmon': 1,
          'crud': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'nbeautiful': 1,
          '110': 1,
          'best': 1,
          'friends': 1,
          'notting': 1,
          'hill': 1,
          'pretty': 1,
          'woman': 1,
          'runaway': 1,
          'bride': 1,
          'someone': 1,
          'planner': 1,
          '310': 1,
          'harry': 1,
          'met': 1,
          'sally': 1,
          '1010': 1,
          'youve': 1,
          'mail': 1,
          'nneg': 1}),
 Counter({'stone': 5,
          'ngloria': 4,
          'n': 4,
          'almost': 3,
          'play': 3,
          'got': 3,
          'bad': 3,
          'kevin': 3,
          'talented': 2,
          'nas': 2,
          'basic': 2,
          'instinct': 2,
          'roles': 2,
          'rest': 2,
          'trying': 2,
          'one': 2,
          'neither': 2,
          'less': 2,
          'never': 2,
          'stones': 2,
          'nit': 2,
          'film': 2,
          'gloria': 2,
          'named': 2,
          'nicky': 2,
          'yellow': 2,
          'floppy': 2,
          'disk': 2,
          'dont': 2,
          'like': 2,
          'life': 2,
          'say': 2,
          'nthe': 2,
          'movie': 2,
          'kid': 2,
          'assumed': 2,
          'right': 2,
          'lot': 2,
          'actresses': 1,
          'blessed': 1,
          'demonstrated': 1,
          'wide': 1,
          'acting': 1,
          'range': 1,
          'others': 1,
          'gifted': 1,
          'limited': 1,
          'types': 1,
          'parts': 1,
          'suitable': 1,
          'amply': 1,
          'evident': 1,
          'sharon': 1,
          'sensual': 1,
          'great': 1,
          'abandon': 1,
          'nrejecting': 1,
          'natural': 1,
          'abilities': 1,
          'spent': 1,
          'entire': 1,
          'career': 1,
          'little': 1,
          'success': 1,
          'type': 1,
          'latest': 1,
          'disaster': 1,
          'nbabe': 1,
          'ruth': 1,
          'didnt': 1,
          'quit': 1,
          'baseball': 1,
          'season': 1,
          'football': 1,
          'quixotic': 1,
          'quest': 1,
          'prove': 1,
          'athletic': 1,
          'dexterity': 1,
          'reject': 1,
          'best': 1,
          'njaneane': 1,
          'garofalo': 1,
          'example': 1,
          'wonderful': 1,
          'actress': 1,
          'could': 1,
          'pulled': 1,
          'part': 1,
          'couldnt': 1,
          'garofalos': 1,
          'comedic': 1,
          'directed': 1,
          'respected': 1,
          'director': 1,
          'sidney': 1,
          'lumet': 1,
          'adapted': 1,
          'steve': 1,
          'antin': 1,
          '1980': 1,
          'screenplay': 1,
          'john': 1,
          'cassavetes': 1,
          'screened': 1,
          'advance': 1,
          'critics': 1,
          'always': 1,
          'sign': 1,
          'studio': 1,
          'isnt': 1,
          'behind': 1,
          'picture': 1,
          'nafter': 1,
          'seeing': 1,
          'nearly': 1,
          'empty': 1,
          'audience': 1,
          'opened': 1,
          'clear': 1,
          'held': 1,
          'press': 1,
          'endured': 1,
          'enjoyed': 1,
          'story': 1,
          'opens': 1,
          'angry': 1,
          'released': 1,
          'prison': 1,
          '3': 1,
          'years': 1,
          'confinement': 1,
          'nshes': 1,
          'attitude': 1,
          'big': 1,
          'mouth': 1,
          'nshe': 1,
          'also': 1,
          'case': 1,
          'wavering': 1,
          'overblown': 1,
          'new': 1,
          'york': 1,
          'accents': 1,
          'disease': 1,
          'suffered': 1,
          'much': 1,
          'cast': 1,
          'nan': 1,
          'annoying': 1,
          'child': 1,
          'actor': 1,
          'jeanluke': 1,
          'figueroa': 1,
          'plays': 1,
          'soontobe': 1,
          'orphan': 1,
          'njust': 1,
          'whole': 1,
          'family': 1,
          'gunned': 1,
          'hoods': 1,
          'working': 1,
          'glorias': 1,
          'exboyfriend': 1,
          'jeremy': 1,
          'northam': 1,
          'nickys': 1,
          'dad': 1,
          'gives': 1,
          'banana': 1,
          'secrets': 1,
          'kevins': 1,
          'operation': 1,
          'offers': 1,
          'piece': 1,
          'fatherly': 1,
          'advice': 1,
          'man': 1,
          'father': 1,
          'lectures': 1,
          'sternly': 1,
          'trust': 1,
          'nobody': 1,
          'nnot': 1,
          'broads': 1,
          'nnobody': 1,
          'nmost': 1,
          'films': 1,
          'leaden': 1,
          'dialog': 1,
          'delivered': 1,
          'emotive': 1,
          'power': 1,
          'automated': 1,
          'time': 1,
          'temperature': 1,
          'announcements': 1,
          'nadd': 1,
          'movies': 1,
          'nonexistent': 1,
          'background': 1,
          'noise': 1,
          'excruciatingly': 1,
          'slow': 1,
          'pacing': 1,
          'hear': 1,
          'sounds': 1,
          'lines': 1,
          'falling': 1,
          'ground': 1,
          'nlumet': 1,
          'places': 1,
          'actors': 1,
          'frames': 1,
          'fruit': 1,
          'still': 1,
          'painting': 1,
          'nthey': 1,
          'stand': 1,
          'awkwardly': 1,
          'mouthing': 1,
          'stiff': 1,
          'sentences': 1,
          'pass': 1,
          'discourse': 1,
          'youre': 1,
          'baby': 1,
          'coos': 1,
          'demandingly': 1,
          'im': 1,
          'gon': 1,
          'na': 1,
          'pouts': 1,
          'back': 1,
          'plethora': 1,
          'logical': 1,
          'flaws': 1,
          'implausibilites': 1,
          'rarely': 1,
          'seems': 1,
          'least': 1,
          'bit': 1,
          'worried': 1,
          'scared': 1,
          'matter': 1,
          'many': 1,
          'people': 1,
          'guns': 1,
          'kill': 1,
          'nand': 1,
          'key': 1,
          'scene': 1,
          'holds': 1,
          'without': 1,
          'checking': 1,
          'copied': 1,
          'keeps': 1,
          'saying': 1,
          'hates': 1,
          'kids': 1,
          'takes': 1,
          'wing': 1,
          'protects': 1,
          'guys': 1,
          'nthink': 1,
          'maternal': 1,
          'instincts': 1,
          'show': 1,
          'finally': 1,
          'predictably': 1,
          'ends': 1,
          'nif': 1,
          'know': 1,
          'answer': 1,
          'may': 1,
          'viewer': 1,
          'nyou': 1,
          'keep': 1,
          'straight': 1,
          'face': 1,
          'nwhen': 1,
          'explaining': 1,
          '7yearold': 1,
          'says': 1,
          'utter': 1,
          'seriousness': 1,
          'love': 1,
          'making': 1,
          'make': 1,
          'boozing': 1,
          'runs': 1,
          '1': 1,
          '48': 1,
          'rated': 1,
          'r': 1,
          'profanity': 1,
          'violence': 1,
          'brief': 1,
          'male': 1,
          'nudity': 1,
          'would': 1,
          'acceptable': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'mars': 6,
          'ghosts': 2,
          'carpenter': 2,
          'thats': 2,
          'released': 2,
          'living': 2,
          'shining': 2,
          'canyon': 2,
          'ice': 2,
          'cube': 2,
          'nbut': 2,
          'miners': 2,
          'red': 2,
          'planet': 2,
          '1': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'sony': 1,
          'pictures': 1,
          'entertainment': 1,
          'nhorror': 1,
          'auteur': 1,
          'john': 1,
          'halloween': 1,
          'vampires': 1,
          'strikes': 1,
          'scifi': 1,
          'ecofable': 1,
          'bad': 1,
          'boggles': 1,
          'mind': 1,
          'imagine': 1,
          'project': 1,
          'ever': 1,
          'got': 1,
          'greenlit': 1,
          'nthe': 1,
          'script': 1,
          'larry': 1,
          'sulkis': 1,
          'appears': 1,
          'lifted': 1,
          'directly': 1,
          'last': 1,
          'years': 1,
          'pitch': 1,
          'black': 1,
          'involving': 1,
          'violent': 1,
          'prisoner': 1,
          'must': 1,
          'bondage': 1,
          'help': 1,
          'small': 1,
          'band': 1,
          'humans': 1,
          'protect': 1,
          'bloodthirsty': 1,
          'marauding': 1,
          'aliens': 1,
          'nin': 1,
          'year': 1,
          '2176': 1,
          '640': 1,
          '000': 1,
          'earthlings': 1,
          'matriarchal': 1,
          'society': 1,
          'led': 1,
          'commander': 1,
          'played': 1,
          'pam': 1,
          'grier': 1,
          'ngrier': 1,
          'pillpoppin': 1,
          'natasha': 1,
          'henstridge': 1,
          'rookie': 1,
          'police': 1,
          'officers': 1,
          'clea': 1,
          'duvall': 1,
          'jason': 1,
          'statham': 1,
          'travel': 1,
          'remote': 1,
          'mining': 1,
          'town': 1,
          'fetch': 1,
          'desolation': 1,
          'williams': 1,
          'bring': 1,
          'back': 1,
          'chryse': 1,
          'city': 1,
          'stand': 1,
          'trial': 1,
          'murder': 1,
          'theyre': 1,
          'besieged': 1,
          'demented': 1,
          'zombielike': 1,
          'bodysnatching': 1,
          'readily': 1,
          'free': 1,
          'scowling': 1,
          'since': 1,
          'need': 1,
          'protection': 1,
          'nit': 1,
          'seems': 1,
          'cloud': 1,
          'cave': 1,
          'soon': 1,
          'went': 1,
          'bonkers': 1,
          'longdormant': 1,
          'remnants': 1,
          'ancient': 1,
          'martian': 1,
          'civilization': 1,
          'took': 1,
          'minds': 1,
          'bodies': 1,
          'lopping': 1,
          'heads': 1,
          'vengeance': 1,
          'anything': 1,
          'tries': 1,
          'lay': 1,
          'claim': 1,
          'according': 1,
          'scientist': 1,
          'joanna': 1,
          'cassidy': 1,
          'ncarpenter': 1,
          'uses': 1,
          'many': 1,
          'flashbacks': 1,
          'tell': 1,
          'night': 1,
          'dead': 1,
          'like': 1,
          'story': 1,
          'idiotic': 1,
          'plot': 1,
          'gets': 1,
          'incomprehensibly': 1,
          'confusing': 1,
          'easily': 1,
          'predict': 1,
          'supporting': 1,
          'characters': 1,
          'killed': 1,
          'along': 1,
          'order': 1,
          'elimination': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '10': 1,
          'thuds': 1,
          'laborious': 1,
          'bottomofthebarrel': 1,
          'nperhaps': 1,
          'indeed': 1,
          'curse': 1,
          'films': 1,
          'recall': 1,
          'two': 1,
          'duds': 1,
          'mission': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'jerry': 5,
          'springer': 5,
          'show': 3,
          'would': 3,
          'real': 3,
          'ni': 3,
          'complete': 3,
          'us': 3,
          'plot': 2,
          'based': 2,
          'tv': 2,
          'movie': 2,
          'people': 2,
          'day': 2,
          'despite': 2,
          'laughs': 2,
          'drama': 2,
          'onedimensional': 2,
          'boring': 2,
          'featuring': 2,
          'much': 2,
          'burn': 2,
          'wildly': 1,
          'popular': 1,
          'follows': 1,
          'lives': 1,
          'two': 1,
          'groups': 1,
          'make': 1,
          'bizarre': 1,
          'appearances': 1,
          'infamous': 1,
          'program': 1,
          'none': 1,
          'posse': 1,
          'comes': 1,
          'trailer': 1,
          'parks': 1,
          'featured': 1,
          'slept': 1,
          'stepfather': 1,
          'segment': 1,
          'flygirl': 1,
          'whose': 1,
          'girlfriends': 1,
          'keep': 1,
          'sleeping': 1,
          'undevoted': 1,
          'dog': 1,
          'boyfriend': 1,
          'ncritique': 1,
          'truth': 1,
          'didnt': 1,
          'job': 1,
          'probably': 1,
          'watch': 1,
          'every': 1,
          'find': 1,
          'quite': 1,
          'entertaining': 1,
          'lack': 1,
          'redeeming': 1,
          'value': 1,
          'nhaving': 1,
          'said': 1,
          'outrageous': 1,
          'funny': 1,
          'always': 1,
          'filled': 1,
          'goofy': 1,
          'surprises': 1,
          'opposed': 1,
          'features': 1,
          'comedy': 1,
          'uninteresting': 1,
          'completely': 1,
          'unbelievable': 1,
          'stereotypes': 1,
          'contrived': 1,
          'bores': 1,
          'stupid': 1,
          'way': 1,
          'never': 1,
          'thought': 1,
          'utter': 1,
          'word': 1,
          'sentence': 1,
          'absolute': 1,
          'yawnfest': 1,
          'offering': 1,
          'various': 1,
          'scenes': 1,
          'simulated': 1,
          'blowjobs': 1,
          'lesbians': 1,
          'ta': 1,
          'violence': 1,
          'wouldve': 1,
          'guessed': 1,
          'wish': 1,
          'either': 1,
          'made': 1,
          'funnier': 1,
          'b': 1,
          'turned': 1,
          'given': 1,
          'perspective': 1,
          'like': 1,
          'actually': 1,
          'put': 1,
          'public': 1,
          'forums': 1,
          'embarrassment': 1,
          'nunfortunately': 1,
          'doesnt': 1,
          'seem': 1,
          'though': 1,
          'screenwriter': 1,
          'jon': 1,
          'bernstein': 1,
          'spent': 1,
          'drunken': 1,
          'weekend': 1,
          'watching': 1,
          'reruns': 1,
          'script': 1,
          'leaving': 1,
          'characters': 1,
          'fun': 1,
          'whatsoever': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'stars': 1,
          'used': 1,
          'mayor': 1,
          'cincinnati': 1,
          'ohio': 1,
          'nfor': 1,
          '1999': 1,
          'razzie': 1,
          'award': 1,
          'worst': 1,
          'new': 1,
          'star': 1,
          'tied': 1,
          'joe': 1,
          'esterhas': 1,
          'alan': 1,
          'smithee': 1,
          'hollywood': 1,
          'nneg': 1}),
 Counter({'never': 6,
          'hell': 4,
          'earth': 4,
          'ive': 4,
          'war': 3,
          'really': 3,
          'cruel': 3,
          'intentions': 3,
          'truly': 2,
          'meant': 2,
          'perfect': 2,
          'world': 2,
          'would': 2,
          'nthe': 2,
          'cast': 2,
          'jail': 2,
          'crimes': 2,
          'probably': 2,
          'pouring': 2,
          'salt': 2,
          'dont': 2,
          'opening': 2,
          'scene': 2,
          'understood': 1,
          'clich': 1,
          'recently': 1,
          'nive': 1,
          'experienced': 1,
          'anything': 1,
          'life': 1,
          'terrifying': 1,
          'horrible': 1,
          'monstrously': 1,
          'deplorable': 1,
          'justified': 1,
          'termed': 1,
          'nafter': 1,
          'victim': 1,
          'violent': 1,
          'crime': 1,
          'broken': 1,
          'hearted': 1,
          'audited': 1,
          'frame': 1,
          'reference': 1,
          'people': 1,
          'said': 1,
          'something': 1,
          'nthen': 1,
          'saw': 1,
          'nin': 1,
          'charge': 1,
          'movie': 1,
          'studios': 1,
          'first': 1,
          'thing': 1,
          'id': 1,
          'take': 1,
          'every': 1,
          'hollywood': 1,
          'producer': 1,
          'thinks': 1,
          'setting': 1,
          'story': 1,
          'contemporary': 1,
          'america': 1,
          '20something': 1,
          'playing': 1,
          'teenagers': 1,
          'featuring': 1,
          'soundtrack': 1,
          'ripped': 1,
          'directly': 1,
          'mtv': 1,
          'throw': 1,
          'nbut': 1,
          'wouldnt': 1,
          'average': 1,
          'even': 1,
          'maximum': 1,
          'security': 1,
          'installation': 1,
          'nid': 1,
          'producers': 1,
          'everyone': 1,
          'else': 1,
          'involved': 1,
          'production': 1,
          'films': 1,
          'put': 1,
          'front': 1,
          'tribunal': 1,
          'forced': 1,
          'beg': 1,
          'mercy': 1,
          'humanity': 1,
          'nnow': 1,
          'youre': 1,
          'thinking': 1,
          'bad': 1,
          'answer': 1,
          'nits': 1,
          'actually': 1,
          'much': 1,
          'worse': 1,
          'nwatching': 1,
          'motion': 1,
          'picture': 1,
          'atrocity': 1,
          'try': 1,
          'act': 1,
          'way': 1,
          'roger': 1,
          'kumbles': 1,
          'awfully': 1,
          'written': 1,
          'script': 1,
          'lot': 1,
          'like': 1,
          'stabbing': 1,
          'arm': 1,
          'chainsaw': 1,
          'open': 1,
          'wound': 1,
          'nand': 1,
          'acid': 1,
          'ni': 1,
          'know': 1,
          'kumble': 1,
          'trying': 1,
          'evoke': 1,
          'comedy': 1,
          'tragedy': 1,
          'marci': 1,
          'greenbaum': 1,
          'tara': 1,
          'reid': 1,
          'whines': 1,
          'nude': 1,
          'photos': 1,
          'posted': 1,
          'internet': 1,
          'emotion': 1,
          'felt': 1,
          'sheer': 1,
          'boredom': 1,
          'nfrom': 1,
          'boring': 1,
          'actor': 1,
          'ryan': 1,
          'phillippe': 1,
          'tries': 1,
          'seduce': 1,
          'tv': 1,
          'actress': 1,
          'swoosie': 1,
          'kurtz': 1,
          'conclusion': 1,
          'remember': 1,
          'practically': 1,
          'fallen': 1,
          'asleep': 1,
          'right': 1,
          'tax': 1,
          'audits': 1,
          'nneg': 1}),
 Counter({'jackal': 15,
          'film': 11,
          'nthe': 9,
          'like': 8,
          'one': 7,
          'character': 6,
          'poitier': 6,
          'couple': 6,
          'trying': 5,
          'suspense': 4,
          'played': 4,
          'sidney': 4,
          'hes': 4,
          'fun': 4,
          'nand': 4,
          'nis': 4,
          'man': 4,
          'even': 4,
          'scene': 4,
          'completely': 4,
          'way': 4,
          'big': 3,
          'actors': 3,
          'willis': 3,
          'saint': 3,
          'almost': 3,
          'n': 3,
          'bad': 3,
          'suave': 3,
          'hitman': 3,
          'russian': 3,
          'bit': 3,
          'working': 3,
          'declan': 3,
          'never': 3,
          'plot': 3,
          'much': 3,
          'little': 3,
          'may': 3,
          'time': 3,
          'could': 3,
          'good': 3,
          'kinda': 3,
          'around': 2,
          'people': 2,
          'sequence': 2,
          'audience': 2,
          'members': 2,
          'hope': 2,
          'killed': 2,
          'didnt': 2,
          'care': 2,
          'characters': 2,
          'really': 2,
          'know': 2,
          'nevery': 2,
          'released': 2,
          'cheap': 2,
          'international': 2,
          'featuring': 2,
          'bruce': 2,
          'forget': 2,
          'cold': 2,
          'several': 2,
          '97': 2,
          'featured': 2,
          'amoral': 2,
          'villain': 2,
          'loosely': 2,
          'apparently': 2,
          'called': 2,
          'assasinate': 2,
          'nwell': 2,
          'person': 2,
          'get': 2,
          'look': 2,
          'agent': 2,
          'gere': 2,
          'tight': 2,
          'worst': 2,
          'whos': 2,
          'two': 2,
          'agents': 2,
          'help': 2,
          'nthere': 2,
          'problems': 2,
          'pretty': 2,
          'moments': 2,
          'every': 2,
          'nasty': 2,
          'money': 2,
          'notably': 2,
          'given': 2,
          'worse': 2,
          'times': 2,
          'likable': 2,
          'pasted': 2,
          'together': 2,
          'someone': 2,
          'quickly': 2,
          'makes': 2,
          'things': 2,
          'filmmakers': 2,
          'toss': 2,
          'touched': 2,
          'anything': 2,
          'kind': 2,
          'gun': 2,
          'go': 2,
          'us': 2,
          'made': 2,
          'make': 2,
          'hour': 1,
          'wandered': 1,
          'shot': 1,
          'theatre': 1,
          'saw': 1,
          'shouted': 1,
          'gets': 1,
          'nat': 1,
          'point': 1,
          'hit': 1,
          'nwhen': 1,
          'sole': 1,
          'reason': 1,
          'somethings': 1,
          'rotten': 1,
          'state': 1,
          'denmark': 1,
          'year': 1,
          'films': 1,
          'nyou': 1,
          'action': 1,
          'packed': 1,
          'espionnage': 1,
          'semipromising': 1,
          'premise': 1,
          'bigname': 1,
          'usually': 1,
          'hopes': 1,
          'war': 1,
          'ended': 1,
          'years': 1,
          'ago': 1,
          'nthis': 1,
          'third': 1,
          'following': 1,
          'lackluster': 1,
          'costume': 1,
          'changing': 1,
          'bond': 1,
          'wannabe': 1,
          'surprisingly': 1,
          'peacemaker': 1,
          'clooney': 1,
          'kidman': 1,
          'stop': 1,
          'untraceable': 1,
          'tries': 1,
          'mix': 1,
          'elements': 1,
          'thought': 1,
          'based': 1,
          '1973': 1,
          'fred': 1,
          'zimmerman': 1,
          'classic': 1,
          'ive': 1,
          'yet': 1,
          'see': 1,
          'day': 1,
          'edward': 1,
          'fox': 1,
          'charles': 1,
          'degaule': 1,
          'welcome': 1,
          '90s': 1,
          'sorta': 1,
          'also': 1,
          'kill': 1,
          'head': 1,
          'fbi': 1,
          'nafter': 1,
          'hired': 1,
          'mob': 1,
          'lord': 1,
          'vengeance': 1,
          'murder': 1,
          'brother': 1,
          'opening': 1,
          'scenes': 1,
          'romps': 1,
          'northen': 1,
          'hemisphere': 1,
          'helsinki': 1,
          'virginia': 1,
          'setting': 1,
          'elaborate': 1,
          'scheme': 1,
          'wherein': 1,
          'hell': 1,
          'able': 1,
          'still': 1,
          'away': 1,
          'live': 1,
          'seclusion': 1,
          'changes': 1,
          'elude': 1,
          'case': 1,
          'cater': 1,
          'preston': 1,
          'yes': 1,
          'valentina': 1,
          'koslova': 1,
          'diane': 1,
          'venora': 1,
          'lady': 1,
          'capulet': 1,
          'romeo': 1,
          'juliet': 1,
          'gives': 1,
          'early': 1,
          'meets': 1,
          'exira': 1,
          'mulqueen': 1,
          'richard': 1,
          'putting': 1,
          'competition': 1,
          'brad': 1,
          'pitt': 1,
          'fake': 1,
          'irish': 1,
          'accent': 1,
          'massachusetts': 1,
          'jail': 1,
          'seen': 1,
          'eluding': 1,
          'law': 1,
          'forever': 1,
          'nsoon': 1,
          'untrusting': 1,
          'catch': 1,
          'numerous': 1,
          'biggest': 1,
          'impossible': 1,
          'put': 1,
          'finger': 1,
          'supposed': 1,
          'thriller': 1,
          'save': 1,
          'achieves': 1,
          'sense': 1,
          'intrigue': 1,
          'nsure': 1,
          'assasination': 1,
          'attempt': 1,
          'cool': 1,
          'looking': 1,
          'slightly': 1,
          'tense': 1,
          'short': 1,
          'dull': 1,
          'register': 1,
          'picks': 1,
          'enough': 1,
          'become': 1,
          'thrilling': 1,
          'experience': 1,
          'entertaining': 1,
          'nit': 1,
          'doesnt': 1,
          'designed': 1,
          'complex': 1,
          'falls': 1,
          'many': 1,
          'holes': 1,
          'unbelievable': 1,
          'circumstances': 1,
          'script': 1,
          'complete': 1,
          'mess': 1,
          'mostly': 1,
          'cant': 1,
          'decide': 1,
          'wants': 1,
          'focus': 1,
          'find': 1,
          'redemption': 1,
          'catching': 1,
          'killer': 1,
          'everything': 1,
          'combination': 1,
          'aims': 1,
          'latter': 1,
          'focuses': 1,
          'either': 1,
          'connection': 1,
          'feels': 1,
          'edited': 1,
          'turns': 1,
          'notices': 1,
          'wonder': 1,
          'recognized': 1,
          'fast': 1,
          'part': 1,
          'past': 1,
          'try': 1,
          'give': 1,
          'relationship': 1,
          'old': 1,
          'girlfriend': 1,
          'isabella': 1,
          'mathilda': 1,
          'screen': 1,
          'exists': 1,
          'pops': 1,
          'supporting': 1,
          'nsidney': 1,
          'unplayable': 1,
          'role': 1,
          'stern': 1,
          'sometimes': 1,
          'giving': 1,
          'nwhat': 1,
          'nhes': 1,
          'best': 1,
          'living': 1,
          'ndoes': 1,
          'need': 1,
          'waste': 1,
          'drivel': 1,
          'ndiane': 1,
          'venoras': 1,
          'cigarette': 1,
          'perpetually': 1,
          'mouth': 1,
          'plastered': 1,
          'expressionless': 1,
          'facade': 1,
          'nits': 1,
          'anyones': 1,
          'nothing': 1,
          'joke': 1,
          'feeling': 1,
          'postproduction': 1,
          'dropped': 1,
          'floor': 1,
          'situation': 1,
          'explanation': 1,
          'wanted': 1,
          'thrill': 1,
          'ntake': 1,
          'followed': 1,
          'parking': 1,
          'garage': 1,
          'sprays': 1,
          'car': 1,
          'another': 1,
          'color': 1,
          'adds': 1,
          'solvent': 1,
          'kills': 1,
          'ndoesnt': 1,
          'killing': 1,
          'attract': 1,
          'attention': 1,
          'distract': 1,
          'think': 1,
          'dying': 1,
          'hair': 1,
          'bottle': 1,
          'blond': 1,
          'fit': 1,
          'public': 1,
          'place': 1,
          'ngeez': 1,
          'ncouple': 1,
          'ni': 1,
          'williss': 1,
          'icy': 1,
          'expressions': 1,
          'real': 1,
          'looks': 1,
          'worth': 1,
          'chuckle': 1,
          'nrichard': 1,
          'making': 1,
          'possibly': 1,
          'sequences': 1,
          'kicky': 1,
          'proposterous': 1,
          'inane': 1,
          'tests': 1,
          'new': 1,
          'annoying': 1,
          'builder': 1,
          'jack': 1,
          'black': 1,
          'seduces': 1,
          'gay': 1,
          'washington': 1,
          'share': 1,
          'jokes': 1,
          'particular': 1,
          'kiss': 1,
          'nbut': 1,
          'none': 1,
          'elevate': 1,
          'higher': 1,
          'theyre': 1,
          'distractions': 1,
          'along': 1,
          'amuse': 1,
          'mildly': 1,
          'back': 1,
          'world': 1,
          'dullness': 1,
          'stupidity': 1,
          'ndirector': 1,
          'michael': 1,
          'catonjones': 1,
          'directed': 1,
          'far': 1,
          'superior': 1,
          'rob': 1,
          'roy': 1,
          'months': 1,
          'unentertaining': 1,
          'unintriguing': 1,
          'nevertheless': 1,
          'hey': 1,
          'trailers': 1,
          'retroclancy': 1,
          'right': 1,
          'clear': 1,
          'present': 1,
          'danger': 1,
          'enormous': 1,
          'smart': 1,
          'example': 1,
          'wrong': 1,
          'nneg': 1}),
 Counter({'showgirls': 4,
          'film': 3,
          'entertainment': 2,
          'make': 2,
          'nthe': 2,
          'first': 1,
          'bigbudget': 1,
          'bigstudio': 1,
          'receive': 1,
          'nc17': 1,
          'rating': 1,
          'nand': 1,
          'release': 1,
          'last': 1,
          'year': 1,
          'came': 1,
          'time': 1,
          'senator': 1,
          'bob': 1,
          'dole': 1,
          'politicans': 1,
          'chastised': 1,
          'industry': 1,
          'promoting': 1,
          'sex': 1,
          'violence': 1,
          'nbut': 1,
          'indication': 1,
          'hollywoods': 1,
          'future': 1,
          'folks': 1,
          'washington': 1,
          'focus': 1,
          'attack': 1,
          'dangerous': 1,
          'threat': 1,
          'american': 1,
          'valuesbad': 1,
          'moviemaking': 1,
          'n': 1,
          'relentlessly': 1,
          'exploitive': 1,
          'look': 1,
          'las': 1,
          'vegas': 1,
          'strip': 1,
          'scene': 1,
          'turns': 1,
          'trashy': 1,
          'subject': 1,
          'matter': 1,
          'ndirector': 1,
          'paul': 1,
          'verhoeven': 1,
          'writer': 1,
          'joe': 1,
          'eszterhas': 1,
          'collaborated': 1,
          'another': 1,
          'shockvalue': 1,
          'project': 1,
          '1992s': 1,
          'basic': 1,
          'instinct': 1,
          'follow': 1,
          'plight': 1,
          'young': 1,
          'woman': 1,
          'teen': 1,
          'tv': 1,
          'star': 1,
          'elizabeth': 1,
          'berkley': 1,
          'determined': 1,
          'name': 1,
          'topless': 1,
          'dancer': 1,
          'nits': 1,
          'hackneyed': 1,
          'premise': 1,
          'begin': 1,
          'surprisingly': 1,
          'stock': 1,
          'characters': 1,
          'trucked': 1,
          'ntheres': 1,
          'demanding': 1,
          'producer': 1,
          'loyal': 1,
          'friend': 1,
          'bitchy': 1,
          'competitor': 1,
          'nlest': 1,
          'forget': 1,
          'scummy': 1,
          'club': 1,
          'owner': 1,
          'nof': 1,
          'course': 1,
          'attempt': 1,
          'character': 1,
          'development': 1,
          'coherent': 1,
          'storyline': 1,
          'window': 1,
          'dressing': 1,
          'films': 1,
          'main': 1,
          'attractionan': 1,
          'endless': 1,
          'parade': 1,
          'fullfrontal': 1,
          'nudity': 1,
          'nunfortunately': 1,
          'doesnt': 1,
          'satisfy': 1,
          'department': 1,
          'nverhoevens': 1,
          'slambang': 1,
          'inyourface': 1,
          'style': 1,
          'direction': 1,
          'proves': 1,
          'neither': 1,
          'arousing': 1,
          'erotic': 1,
          'nto': 1,
          'matters': 1,
          'worse': 1,
          'youll': 1,
          'forced': 1,
          'sit': 1,
          'movies': 1,
          'clothed': 1,
          'scenes': 1,
          'dont': 1,
          'cover': 1,
          'laughable': 1,
          'acting': 1,
          'absurd': 1,
          'dialogue': 1,
          'ever': 1,
          'spoken': 1,
          'history': 1,
          'nverhoeven': 1,
          'ezsterhas': 1,
          'deserve': 1,
          'credit': 1,
          'trying': 1,
          'break': 1,
          'ground': 1,
          'adult': 1,
          'want': 1,
          'stay': 1,
          'home': 1,
          'watch': 1,
          'playboy': 1,
          'channel': 1,
          'nyoull': 1,
          'wiser': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'damme': 7,
          'van': 5,
          'jeanclaude': 4,
          'killed': 4,
          'gets': 3,
          'twin': 3,
          'brother': 3,
          'species': 3,
          'first': 2,
          'minutes': 2,
          'isnt': 2,
          'get': 2,
          'see': 2,
          'dont': 2,
          'sarcasm': 2,
          'certainly': 2,
          'find': 2,
          'deceased': 2,
          'nvan': 2,
          '1': 2,
          'united': 2,
          'states': 2,
          'france': 2,
          'played': 2,
          'natasha': 2,
          'henstridge': 2,
          'acting': 2,
          'high': 2,
          'much': 2,
          'nthis': 2,
          'new': 2,
          'nothing': 2,
          'every': 2,
          'heres': 1,
          'concept': 1,
          'within': 1,
          'ten': 1,
          'nnow': 1,
          'enough': 1,
          'finally': 1,
          'know': 1,
          'nall': 1,
          'aside': 1,
          'different': 1,
          'way': 1,
          'start': 1,
          'course': 1,
          'later': 1,
          'newly': 1,
          'lucky': 1,
          'us': 1,
          'works': 1,
          'russian': 1,
          'mafia': 1,
          'operatives': 1,
          '2': 1,
          'police': 1,
          'officer': 1,
          'finds': 1,
          'never': 1,
          'knew': 1,
          'nthe': 1,
          'remaining': 1,
          'french': 1,
          'cop': 1,
          'goes': 1,
          'avenge': 1,
          'death': 1,
          'nonce': 1,
          'hooks': 1,
          'brothers': 1,
          'girlfriend': 1,
          'two': 1,
          'set': 1,
          'discover': 1,
          'murderers': 1,
          'njeanclaudes': 1,
          'abilities': 1,
          'seem': 1,
          'usual': 1,
          'lackluster': 1,
          'standards': 1,
          'nin': 1,
          'words': 1,
          'case': 1,
          'missed': 1,
          'worse': 1,
          'normal': 1,
          'non': 1,
          'upside': 1,
          'film': 1,
          'best': 1,
          'naked': 1,
          'nsadly': 1,
          'probably': 1,
          'point': 1,
          'nshe': 1,
          'actually': 1,
          'decent': 1,
          'actress': 1,
          'didnt': 1,
          'improve': 1,
          'thought': 1,
          'would': 1,
          'typical': 1,
          'variety': 1,
          'end': 1,
          'martial': 1,
          'arts': 1,
          'moves': 1,
          'opponents': 1,
          'nnothing': 1,
          'havent': 1,
          'seen': 1,
          'nsimply': 1,
          'put': 1,
          'absolutely': 1,
          'nit': 1,
          'retread': 1,
          'plot': 1,
          'time': 1,
          'twins': 1,
          'nhe': 1,
          'still': 1,
          'cant': 1,
          'act': 1,
          'nwe': 1,
          'saw': 1,
          'natashas': 1,
          'breasts': 1,
          'although': 1,
          'one': 1,
          'repeat': 1,
          'performance': 1,
          'im': 1,
          'complaining': 1,
          'pretty': 1,
          'like': 1,
          'ever': 1,
          'involved': 1,
          'sub': 1,
          'par': 1,
          'nneg': 1}),
 Counter({'nthe': 10,
          'movie': 9,
          'rudy': 7,
          'nick': 6,
          'games': 5,
          'hero': 5,
          'reindeer': 4,
          'even': 4,
          'way': 4,
          'first': 4,
          'ashley': 4,
          'script': 3,
          'affleck': 3,
          'nwhen': 3,
          'actors': 3,
          'like': 3,
          'fun': 3,
          'audience': 3,
          'prison': 3,
          'pretend': 3,
          'kill': 3,
          'getting': 3,
          'bad': 3,
          'makes': 2,
          'cast': 2,
          'people': 2,
          'still': 2,
          'scenes': 2,
          'horrible': 2,
          'charlize': 2,
          'theron': 2,
          'act': 2,
          'stars': 2,
          'would': 2,
          'entertaining': 2,
          'ben': 2,
          'number': 2,
          'want': 2,
          'anything': 2,
          'woman': 2,
          'cellmate': 2,
          'person': 2,
          'decides': 2,
          'date': 2,
          'christmas': 2,
          'brother': 2,
          'gabriel': 2,
          'must': 2,
          'gets': 2,
          'complex': 2,
          'dead': 2,
          'guys': 2,
          'see': 2,
          'fail': 2,
          'pointless': 2,
          'nwhy': 2,
          'beats': 2,
          'disappointing': 1,
          'predictable': 1,
          'lifeless': 1,
          'action': 1,
          'flick': 1,
          'crew': 1,
          'signed': 1,
          'onto': 1,
          'project': 1,
          'nmost': 1,
          'involved': 1,
          'came': 1,
          'terrible': 1,
          'slumps': 1,
          'excellent': 1,
          'comeback': 1,
          'performances': 1,
          'recent': 1,
          'films': 1,
          'njohn': 1,
          'frankenheimer': 1,
          'made': 1,
          'unforgettable': 1,
          'cold': 1,
          'war': 1,
          'drama': 1,
          'manchurian': 1,
          'candidate': 1,
          'back': 1,
          'early': 1,
          '60s': 1,
          'recently': 1,
          'showed': 1,
          'critics': 1,
          'fans': 1,
          'alike': 1,
          'magic': 1,
          'left': 1,
          'directorial': 1,
          'skills': 1,
          'created': 1,
          'brilliant': 1,
          'car': 1,
          'chase': 1,
          'ronin': 1,
          'nscreenwriter': 1,
          'ehren': 1,
          'kruger': 1,
          'gave': 1,
          'remarkable': 1,
          'impression': 1,
          'wrote': 1,
          'underrated': 1,
          'arlington': 1,
          'rd': 1,
          'nben': 1,
          'displayed': 1,
          'comedic': 1,
          'talents': 1,
          'dogma': 1,
          'boiler': 1,
          'room': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'directly': 1,
          'forces': 1,
          'nature': 1,
          '200': 1,
          'cigarettes': 1,
          'neven': 1,
          'convinced': 1,
          'couldnt': 1,
          'decent': 1,
          'job': 1,
          'cider': 1,
          'house': 1,
          'rules': 1,
          'bright': 1,
          'come': 1,
          'together': 1,
          'one': 1,
          'assume': 1,
          'great': 1,
          'potential': 1,
          'nafter': 1,
          'coming': 1,
          'theater': 1,
          'showing': 1,
          'disbelief': 1,
          'reaction': 1,
          'frustration': 1,
          'could': 1,
          'premiered': 1,
          'cinemax': 1,
          'two': 1,
          'morning': 1,
          'starring': 1,
          'allrookie': 1,
          'equally': 1,
          'lacking': 1,
          'acting': 1,
          'pitiful': 1,
          'dull': 1,
          'may': 1,
          'rethink': 1,
          'opinions': 1,
          'talented': 1,
          'actually': 1,
          'nit': 1,
          'seemed': 1,
          'everyone': 1,
          'restricted': 1,
          'given': 1,
          'fair': 1,
          'amount': 1,
          'improvisational': 1,
          'rights': 1,
          'nwe': 1,
          'seen': 1,
          'set': 1,
          'apparent': 1,
          'good': 1,
          'hunting': 1,
          'exchanges': 1,
          'jokes': 1,
          'friends': 1,
          'bar': 1,
          'nreindeer': 1,
          'complete': 1,
          'opposite': 1,
          'dont': 1,
          'seem': 1,
          'characters': 1,
          'danny': 1,
          'trejo': 1,
          'practically': 1,
          'doesnt': 1,
          'look': 1,
          'enjoying': 1,
          'causing': 1,
          'quickly': 1,
          'lose': 1,
          'interest': 1,
          'nevidence': 1,
          'public': 1,
          'disapproval': 1,
          'noted': 1,
          'behind': 1,
          'yelled': 1,
          'boy': 1,
          'nand': 1,
          'scattered': 1,
          'giggles': 1,
          'dramatic': 1,
          'moments': 1,
          'story': 1,
          'follows': 1,
          'man': 1,
          'leaving': 1,
          'days': 1,
          'along': 1,
          'best': 1,
          'friend': 1,
          'james': 1,
          'frain': 1,
          'nnick': 1,
          'exchanging': 1,
          'love': 1,
          'letters': 1,
          'beautiful': 1,
          'wait': 1,
          'leave': 1,
          'meet': 1,
          'killed': 1,
          'riot': 1,
          'take': 1,
          'holidays': 1,
          'nunfortunately': 1,
          'ashleys': 1,
          'gary': 1,
          'sinise': 1,
          'interferes': 1,
          'relationship': 1,
          'nthinking': 1,
          'kidnaps': 1,
          'threatens': 1,
          'unless': 1,
          'helps': 1,
          'rob': 1,
          'casino': 1,
          'use': 1,
          'work': 1,
          'security': 1,
          'guard': 1,
          'nnow': 1,
          'protect': 1,
          'nconfused': 1,
          'goes': 1,
          'climax': 1,
          'nbut': 1,
          'serious': 1,
          'mistake': 1,
          'half': 1,
          'hour': 1,
          'commits': 1,
          'greedy': 1,
          'selfish': 1,
          'order': 1,
          'nsome': 1,
          'point': 1,
          'morally': 1,
          'correct': 1,
          'thing': 1,
          'relate': 1,
          'admire': 1,
          'lies': 1,
          'cheats': 1,
          'trouble': 1,
          'instead': 1,
          'gathering': 1,
          'support': 1,
          'ultimately': 1,
          'succeed': 1,
          'felt': 1,
          'deserved': 1,
          'wanted': 1,
          'times': 1,
          'irritating': 1,
          'part': 1,
          'film': 1,
          'besides': 1,
          'fact': 1,
          'released': 1,
          'february': 1,
          'chances': 1,
          'get': 1,
          'delay': 1,
          'idiotic': 1,
          'reason': 1,
          'routine': 1,
          'guy': 1,
          'explain': 1,
          'genius': 1,
          'plan': 1,
          'attempting': 1,
          'elaborate': 1,
          'machine': 1,
          'tired': 1,
          'nowadays': 1,
          'especially': 1,
          'eagerly': 1,
          'saving': 1,
          'grace': 1,
          'keeping': 1,
          'receiving': 1,
          'zero': 1,
          'amusing': 1,
          'cameo': 1,
          'isaac': 1,
          'hayes': 1,
          'prisoner': 1,
          'upset': 1,
          'food': 1,
          'role': 1,
          'nneg': 1}),
 Counter({'effects': 9,
          'asteroid': 6,
          'film': 6,
          'special': 5,
          'nthe': 5,
          'good': 5,
          'duvall': 4,
          'really': 4,
          'leoni': 3,
          'wood': 3,
          'plays': 3,
          'space': 3,
          'characters': 3,
          'never': 3,
          'average': 3,
          'seems': 3,
          'underwritten': 3,
          'role': 3,
          'dreamworks': 2,
          'time': 2,
          '2': 2,
          'hours': 2,
          'robert': 2,
          'tea': 2,
          'leder': 2,
          'armageddon': 2,
          'actually': 2,
          'nelijah': 2,
          'leo': 2,
          'discovers': 2,
          'earth': 2,
          'rather': 2,
          'crap': 2,
          'jenny': 2,
          'lerner': 2,
          'crew': 2,
          'freeman': 2,
          'president': 2,
          'many': 2,
          'character': 2,
          'one': 2,
          'surprisingly': 2,
          'director': 2,
          '1996': 2,
          'cast': 2,
          'autopilot': 2,
          'although': 2,
          'bit': 2,
          'money': 2,
          'wasted': 2,
          'much': 2,
          'deep': 2,
          'impact': 2,
          'look': 2,
          'like': 2,
          'could': 2,
          'movie': 2,
          'skg': 1,
          'running': 1,
          'starring': 1,
          'elijah': 1,
          'directed': 1,
          'mimi': 1,
          'first': 1,
          'two': 1,
          'movies': 1,
          'coming': 1,
          'year': 1,
          'second': 1,
          'macho': 1,
          'dull': 1,
          'affair': 1,
          'biederman': 1,
          'astronomy': 1,
          'class': 1,
          'large': 1,
          'heading': 1,
          'ntea': 1,
          'news': 1,
          'reporter': 1,
          'soon': 1,
          'long': 1,
          'winded': 1,
          'boring': 1,
          'way': 1,
          'leader': 1,
          'spurgeon': 1,
          'tanner': 1,
          'planning': 1,
          'blow': 1,
          'path': 1,
          'nalso': 1,
          'featuring': 1,
          'morgan': 1,
          'maximilian': 1,
          'schell': 1,
          'vanessa': 1,
          'redgrave': 1,
          'jennys': 1,
          'father': 1,
          'mother': 1,
          'nwhile': 1,
          'people': 1,
          'walk': 1,
          'expecting': 1,
          'big': 1,
          'fest': 1,
          'blowing': 1,
          'everything': 1,
          'trailers': 1,
          'seem': 1,
          'promise': 1,
          'study': 1,
          'poor': 1,
          'main': 1,
          'problem': 1,
          'enough': 1,
          'explore': 1,
          'nonly': 1,
          'given': 1,
          'depth': 1,
          '2d': 1,
          'get': 1,
          'know': 1,
          'nand': 1,
          'couldnt': 1,
          'care': 1,
          'didnt': 1,
          'give': 1,
          'killed': 1,
          'script': 1,
          'bruce': 1,
          'joel': 1,
          'rubin': 1,
          'michael': 1,
          'tolkin': 1,
          'horribly': 1,
          'simple': 1,
          'makes': 1,
          'interesting': 1,
          'statements': 1,
          'nmimi': 1,
          'former': 1,
          'er': 1,
          'peacemaker': 1,
          'directs': 1,
          'hohum': 1,
          'style': 1,
          'gets': 1,
          'emotion': 1,
          'scene': 1,
          'shame': 1,
          'seemingly': 1,
          'gives': 1,
          'performance': 1,
          'even': 1,
          'acts': 1,
          'dorky': 1,
          'nshe': 1,
          'uncommonly': 1,
          'stupid': 1,
          'journalist': 1,
          'nrobert': 1,
          'best': 1,
          'child': 1,
          'actors': 1,
          'working': 1,
          'today': 1,
          'choice': 1,
          'roles': 1,
          'lately': 1,
          'havent': 1,
          'exactly': 1,
          'brilliant': 1,
          'e': 1,
          'nflipper': 1,
          'nhis': 1,
          'also': 1,
          'vastly': 1,
          'nmorgan': 1,
          'utterly': 1,
          'ridiculously': 1,
          'nlike': 1,
          'supporting': 1,
          'k': 1,
          'none': 1,
          'making': 1,
          'impression': 1,
          'nok': 1,
          'may': 1,
          'messed': 1,
          'wise': 1,
          'surely': 1,
          'nwell': 1,
          'yes': 1,
          'nalthough': 1,
          'impressive': 1,
          'massive': 1,
          'tidal': 1,
          'wave': 1,
          'destroying': 1,
          'new': 1,
          'york': 1,
          'well': 1,
          'nsadly': 1,
          'waves': 1,
          'looks': 1,
          'drawn': 1,
          'computer': 1,
          'doesnt': 1,
          'nsurprising': 1,
          'done': 1,
          'industrial': 1,
          'light': 1,
          'magic': 1,
          'lost': 1,
          'world': 1,
          'twister': 1,
          'nin': 1,
          'end': 1,
          'opportunity': 1,
          'nwhat': 1,
          'moving': 1,
          'turns': 1,
          'dud': 1,
          'used': 1,
          'greater': 1,
          'effect': 1,
          'nonce': 1,
          'churned': 1,
          'another': 1,
          'nlets': 1,
          'hope': 1,
          'better': 1,
          'noverall': 1,
          'rating': 1,
          'review': 1,
          'david': 1,
          'wilcock': 1,
          'web': 1,
          'provided': 1,
          'geocities': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'film': 5,
          'time': 5,
          'space': 4,
          'scenes': 4,
          'family': 4,
          'act': 4,
          'story': 4,
          'lost': 3,
          'nits': 3,
          'amount': 3,
          'without': 3,
          'robinson': 3,
          'completely': 3,
          'good': 2,
          'becoming': 2,
          'instead': 2,
          'one': 2,
          'things': 2,
          'n': 2,
          'rapidly': 2,
          'scene': 2,
          'written': 2,
          'way': 2,
          'special': 2,
          'since': 2,
          'happens': 2,
          'nin': 2,
          'like': 2,
          'find': 2,
          'planet': 2,
          'fact': 2,
          'presented': 2,
          'first': 2,
          'building': 2,
          'elements': 2,
          'plot': 2,
          'conflict': 2,
          'might': 2,
          'dialogue': 2,
          'never': 2,
          'cartoony': 2,
          'major': 2,
          'robinsons': 2,
          'ensues': 2,
          'series': 2,
          'alien': 2,
          'changes': 2,
          'scenario': 2,
          'seen': 1,
          'may': 1,
          '2': 1,
          '1998': 1,
          '3': 1,
          '40': 1,
          'p': 1,
          'crossgates': 1,
          'cinema': 1,
          '18': 1,
          'theater': 1,
          '13': 1,
          'chris': 1,
          'wessell': 1,
          'sean': 1,
          'oshea': 1,
          '5': 1,
          'ntheater': 1,
          'rating': 1,
          '12': 1,
          'sound': 1,
          'picture': 1,
          'seats': 1,
          'bigbudget': 1,
          'megahype': 1,
          'event': 1,
          'movie': 1,
          'trendy': 1,
          'weekly': 1,
          'routine': 1,
          'seasonal': 1,
          'ngluttony': 1,
          'hollywoods': 1,
          'favorite': 1,
          'sin': 1,
          'moviegoers': 1,
          'pay': 1,
          'price': 1,
          'dealt': 1,
          'everworsening': 1,
          'basis': 1,
          'latest': 1,
          'offering': 1,
          'poor': 1,
          'would': 1,
          'twice': 1,
          'mediocre': 1,
          'made': 1,
          'every': 1,
          'element': 1,
          'science': 1,
          'fiction': 1,
          'evoke': 1,
          'slightest': 1,
          'wonderment': 1,
          'genre': 1,
          'meant': 1,
          'naudiences': 1,
          'attention': 1,
          'spans': 1,
          'decreasing': 1,
          'trend': 1,
          'films': 1,
          'opens': 1,
          'fastpaced': 1,
          'battle': 1,
          'serves': 1,
          'interesting': 1,
          'probably': 1,
          'star': 1,
          'wars': 1,
          'producers': 1,
          'showing': 1,
          'budget': 1,
          'effects': 1,
          'nbattle': 1,
          'worthless': 1,
          'tension': 1,
          'idea': 1,
          'setting': 1,
          'impossible': 1,
          'care': 1,
          'anything': 1,
          'essence': 1,
          'entire': 1,
          'segment': 1,
          'works': 1,
          'teaser': 1,
          'arcade': 1,
          'game': 1,
          'piece': 1,
          'filmmaking': 1,
          'nwe': 1,
          'meet': 1,
          'five': 1,
          'get': 1,
          'along': 1,
          'chosen': 1,
          'earths': 1,
          'behalf': 1,
          'effort': 1,
          'another': 1,
          'worthy': 1,
          'colonization': 1,
          'due': 1,
          'exhausting': 1,
          'natural': 1,
          'resources': 1,
          'neach': 1,
          'member': 1,
          'trait': 1,
          'personality': 1,
          'yet': 1,
          'none': 1,
          'seem': 1,
          'actual': 1,
          'people': 1,
          'nprofessor': 1,
          'john': 1,
          'hurt': 1,
          'intelligent': 1,
          'quiet': 1,
          'leader': 1,
          'devoted': 1,
          'much': 1,
          'work': 1,
          'marriage': 1,
          'suffering': 1,
          'realizing': 1,
          'obvious': 1,
          'role': 1,
          'aspect': 1,
          'play': 1,
          'nof': 1,
          'course': 1,
          'established': 1,
          'extremely': 1,
          'melodramatic': 1,
          'children': 1,
          'parents': 1,
          'arguing': 1,
          'bickering': 1,
          'among': 1,
          'necessary': 1,
          'problems': 1,
          'resolved': 1,
          'right': 1,
          'moments': 1,
          'thing': 1,
          'worse': 1,
          'screenplay': 1,
          'serious': 1,
          'manner': 1,
          'trace': 1,
          'satire': 1,
          'pathetic': 1,
          'laughable': 1,
          'juxtaposition': 1,
          'serve': 1,
          'purpose': 1,
          'plug': 1,
          'required': 1,
          'characterization': 1,
          'god': 1,
          'forbid': 1,
          'nwere': 1,
          'provided': 1,
          'minimum': 1,
          'possible': 1,
          'keep': 1,
          'silent': 1,
          'well': 1,
          'virtually': 1,
          'nonexistent': 1,
          'nyes': 1,
          'characters': 1,
          'speak': 1,
          'talk': 1,
          'nthey': 1,
          'say': 1,
          'relate': 1,
          'really': 1,
          'interact': 1,
          'unless': 1,
          'flirting': 1,
          'arrogant': 1,
          'west': 1,
          'leblanc': 1,
          'uptight': 1,
          'unemotional': 1,
          'judy': 1,
          'graham': 1,
          'amazing': 1,
          'hour': 1,
          'trite': 1,
          'generic': 1,
          'devices': 1,
          'little': 1,
          'neventually': 1,
          'pacing': 1,
          'increases': 1,
          'genuine': 1,
          'interest': 1,
          'finally': 1,
          'gains': 1,
          'prospective': 1,
          'living': 1,
          'title': 1,
          'narrowly': 1,
          'managing': 1,
          'defeat': 1,
          'dr': 1,
          'smith': 1,
          'oldman': 1,
          'villain': 1,
          'plans': 1,
          'sabotage': 1,
          'nwhat': 1,
          'upon': 1,
          'unrelated': 1,
          'conflicts': 1,
          'takes': 1,
          'place': 1,
          'abandoned': 1,
          'spaceship': 1,
          'could': 1,
          'best': 1,
          'described': 1,
          'lite': 1,
          'crash': 1,
          'land': 1,
          'must': 1,
          'quickly': 1,
          'escape': 1,
          'survive': 1,
          'nbut': 1,
          'theres': 1,
          'real': 1,
          'notion': 1,
          'suspense': 1,
          'script': 1,
          'constantly': 1,
          'wanders': 1,
          'aimlessly': 1,
          'nplotlines': 1,
          'developed': 1,
          'becomes': 1,
          'totally': 1,
          'irrelevant': 1,
          'atmosphere': 1,
          'attempts': 1,
          'surreal': 1,
          'incorporating': 1,
          'travel': 1,
          'various': 1,
          'paradoxes': 1,
          'ridiculous': 1,
          'utterly': 1,
          'boring': 1,
          'nby': 1,
          'last': 1,
          'rolls': 1,
          'around': 1,
          'sense': 1,
          'payoff': 1,
          'ending': 1,
          'go': 1,
          'high': 1,
          'note': 1,
          'kind': 1,
          'climax': 1,
          'seems': 1,
          'come': 1,
          'sudden': 1,
          'halt': 1,
          'least': 1,
          'ends': 1,
          'production': 1,
          'worst': 1,
          'frightening': 1,
          'poorly': 1,
          'directed': 1,
          'acted': 1,
          'considered': 1,
          'mainstream': 1,
          'entertainment': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'movie': 8,
          'film': 8,
          'music': 4,
          'horror': 3,
          'first': 3,
          'slasher': 3,
          'killer': 3,
          'one': 3,
          'scene': 3,
          'always': 3,
          'used': 3,
          'nthis': 3,
          'illogical': 3,
          'lot': 2,
          'couldve': 2,
          'case': 2,
          '_urban': 2,
          'legend_': 2,
          'new': 2,
          'time': 2,
          'director': 2,
          'blanks': 2,
          'person': 2,
          'inside': 2,
          'l': 2,
          'ni': 2,
          'guess': 2,
          'days': 2,
          'certainly': 2,
          'good': 2,
          'takes': 2,
          'also': 2,
          'wielding': 2,
          'maniac': 2,
          'dont': 2,
          'degenerates': 2,
          'scares': 2,
          'loud': 2,
          'bursts': 2,
          'appears': 2,
          'like': 2,
          'still': 2,
          'moments': 2,
          'youll': 2,
          'screaming': 2,
          'thing': 1,
          'worse': 1,
          'watching': 1,
          'bad': 1,
          'realizing': 1,
          'potential': 1,
          'effective': 1,
          'nsuch': 1,
          'jamie': 1,
          'idea': 1,
          'behind': 1,
          'mad': 1,
          'muders': 1,
          'people': 1,
          'according': 1,
          'various': 1,
          'urban': 1,
          'legends': 1,
          'nexamples': 1,
          'include': 1,
          'backseat': 1,
          'car': 1,
          'getting': 1,
          'calls': 1,
          'house': 1,
          'wears': 1,
          'bean': 1,
          'parkas': 1,
          'hood': 1,
          'drawn': 1,
          'completely': 1,
          'cant': 1,
          'see': 1,
          'face': 1,
          'halloween': 1,
          'masks': 1,
          'style': 1,
          'psychos': 1,
          'nanyhow': 1,
          'premise': 1,
          'nifty': 1,
          'opening': 1,
          'spooky': 1,
          'atmospheric': 1,
          'nits': 1,
          'setup': 1,
          'promises': 1,
          'chills': 1,
          'come': 1,
          'nunfortunately': 1,
          'never': 1,
          'place': 1,
          'peaceful': 1,
          'england': 1,
          'college': 1,
          'campus': 1,
          'nlike': 1,
          'flicks': 1,
          'centers': 1,
          'around': 1,
          'young': 1,
          'female': 1,
          'main': 1,
          'character': 1,
          'whose': 1,
          'friends': 1,
          'slowly': 1,
          'killed': 1,
          'knife': 1,
          'axe': 1,
          'nive': 1,
          'wondered': 1,
          'killers': 1,
          'save': 1,
          'trouble': 1,
          'go': 1,
          'ultimately': 1,
          'aim': 1,
          'kill': 1,
          'nafter': 1,
          'fine': 1,
          'monotonous': 1,
          'series': 1,
          'annoying': 1,
          'youthoughtitwasthekillerbutwasjust': 1,
          'someoneelse': 1,
          'nthese': 1,
          'accompanied': 1,
          'sudden': 1,
          'sharp': 1,
          'chords': 1,
          'passes': 1,
          'terror': 1,
          'actual': 1,
          'attack': 1,
          'every': 1,
          'third': 1,
          'blast': 1,
          'attacks': 1,
          'victim': 1,
          'eviscerated': 1,
          'tedious': 1,
          'cycle': 1,
          'anew': 1,
          'nfalse': 1,
          'moderation': 1,
          'nsomeone': 1,
          'needs': 1,
          'tell': 1,
          'things': 1,
          'arent': 1,
          'scary': 1,
          'commits': 1,
          'biggest': 1,
          'sin': 1,
          'commitits': 1,
          'frightening': 1,
          'nremember': 1,
          'cliches': 1,
          'mercilessly': 1,
          'mocked': 1,
          '_scream_': 1,
          '_scream': 1,
          '2_': 1,
          'adheres': 1,
          'ntons': 1,
          'really': 1,
          'inclination': 1,
          'list': 1,
          'nand': 1,
          'mean': 1,
          'summer': 1,
          'popcorn': 1,
          'sense': 1,
          'nthat': 1,
          'type': 1,
          'fun': 1,
          'insults': 1,
          'intelligence': 1,
          'times': 1,
          'care': 1,
          'remember': 1,
          'last': 1,
          '20': 1,
          'minutes': 1,
          'especially': 1,
          'lunacy': 1,
          'laughing': 1,
          'nactually': 1,
          'wont': 1,
          'nat': 1,
          'best': 1,
          'acting': 1,
          'barely': 1,
          'called': 1,
          'adequate': 1,
          'script': 1,
          'definitely': 1,
          'rewrite': 1,
          'two': 1,
          'manages': 1,
          'strong': 1,
          'points': 1,
          'killings': 1,
          'inventive': 1,
          'plentiful': 1,
          'enough': 1,
          'satistfy': 1,
          'gore': 1,
          'fans': 1,
          'nthere': 1,
          'intentionally': 1,
          'funny': 1,
          'n': 1,
          'exceeded': 1,
          'unintentional': 1,
          'ones': 1,
          'well': 1,
          'made': 1,
          'technical': 1,
          'standpoint': 1,
          'nbesides': 1,
          'part': 1,
          'another': 1,
          'prolonged': 1,
          'cat': 1,
          'mouse': 1,
          'chase': 1,
          'radio': 1,
          'station': 1,
          'nif': 1,
          'sequences': 1,
          'relied': 1,
          'tautness': 1,
          'suspense': 1,
          'rather': 1,
          'mightve': 1,
          'worth': 1,
          'money': 1,
          'nneg': 1}),
 Counter({'film': 15,
          'ni': 15,
          'nthe': 9,
          'actors': 8,
          'love': 7,
          'even': 6,
          'like': 6,
          'avengers': 5,
          'nand': 5,
          'never': 5,
          'dont': 5,
          'seems': 5,
          'one': 5,
          'scenes': 5,
          'didnt': 4,
          'would': 4,
          'sets': 4,
          'also': 4,
          'makes': 4,
          'action': 4,
          'fiennes': 3,
          'thurman': 3,
          'saw': 3,
          'ive': 3,
          'final': 3,
          'bit': 3,
          'peel': 3,
          'see': 3,
          'clearly': 3,
          'guy': 3,
          'really': 3,
          'lot': 3,
          'weather': 3,
          'people': 3,
          'nthey': 3,
          'played': 3,
          'de': 3,
          'heroes': 3,
          'n': 3,
          'go': 3,
          'way': 3,
          'subplot': 3,
          'sense': 3,
          'arent': 3,
          'many': 3,
          'story': 3,
          'good': 3,
          'best': 3,
          'blame': 3,
          'presence': 2,
          'ralph': 2,
          'connery': 2,
          'big': 2,
          'jim': 2,
          'broadbent': 2,
          'fiona': 2,
          'shaw': 2,
          'preview': 2,
          'months': 2,
          'ever': 2,
          'however': 2,
          'release': 2,
          'times': 2,
          'learned': 2,
          'man': 2,
          'us': 2,
          'expectations': 2,
          'pieces': 2,
          'today': 2,
          'nthis': 2,
          'nbut': 2,
          'ultimately': 2,
          'completely': 2,
          'none': 2,
          'feels': 2,
          'superhero': 2,
          'nit': 2,
          'cut': 2,
          'television': 2,
          'show': 2,
          'know': 2,
          'steed': 2,
          'roles': 2,
          'understand': 2,
          'kind': 2,
          'james': 2,
          'dr': 2,
          'happens': 2,
          'together': 2,
          'nhis': 2,
          'wynter': 2,
          'nhe': 2,
          'crazy': 2,
          'keep': 2,
          'getting': 2,
          'films': 2,
          'feel': 2,
          'make': 2,
          'nfor': 2,
          'bugs': 2,
          'purpose': 2,
          'theyre': 2,
          'bad': 2,
          'particularly': 2,
          'electric': 2,
          'cast': 2,
          'lost': 2,
          'cant': 2,
          'look': 2,
          'interest': 2,
          'nis': 2,
          'movie': 2,
          'director': 2,
          'music': 2,
          'nice': 2,
          'opinion': 1,
          'easily': 1,
          'swayed': 1,
          'uma': 1,
          'sean': 1,
          'nhell': 1,
          'im': 1,
          'fan': 1,
          'fantastic': 1,
          'nearly': 1,
          'eight': 1,
          'ago': 1,
          'eagerly': 1,
          'awaiting': 1,
          'since': 1,
          'na': 1,
          'summer': 1,
          'noticed': 1,
          'date': 1,
          'changed': 1,
          'ended': 1,
          'midaugust': 1,
          'dumping': 1,
          'ground': 1,
          'nthen': 1,
          'week': 1,
          'official': 1,
          'screened': 1,
          'critics': 1,
          'plugging': 1,
          'late': 1,
          'night': 1,
          'programs': 1,
          'directed': 1,
          'brought': 1,
          'remake': 1,
          'diabolique': 1,
          'nmy': 1,
          'fell': 1,
          'things': 1,
          'meet': 1,
          'lousy': 1,
          'incoherent': 1,
          'mess': 1,
          'slam': 1,
          'harder': 1,
          'werent': 1,
          'nifty': 1,
          'mere': 1,
          'fine': 1,
          'lovable': 1,
          'empty': 1,
          'performances': 1,
          'uninspired': 1,
          'nthats': 1,
          'main': 1,
          'problem': 1,
          'hiphop': 1,
          'flash': 1,
          'tidal': 1,
          'waves': 1,
          'least': 1,
          'energetic': 1,
          'inspired': 1,
          'nits': 1,
          'chore': 1,
          'bland': 1,
          'exercise': 1,
          'making': 1,
          'clocking': 1,
          '90': 1,
          'minutes': 1,
          'forgetting': 1,
          'close': 1,
          'subplots': 1,
          'plain': 1,
          'depressing': 1,
          'version': 1,
          'popular': 1,
          '60s': 1,
          'nfrequent': 1,
          'readers': 1,
          'mine': 1,
          'surprised': 1,
          'learn': 1,
          'watched': 1,
          'episode': 1,
          'wasnt': 1,
          'alive': 1,
          'watch': 1,
          'nim': 1,
          'sorry': 1,
          'perspective': 1,
          'judging': 1,
          'reviews': 1,
          'already': 1,
          'read': 1,
          'knowing': 1,
          'tv': 1,
          'matters': 1,
          'worse': 1,
          'john': 1,
          'emma': 1,
          'therefore': 1,
          'upset': 1,
          'managed': 1,
          'thrash': 1,
          'doubt': 1,
          'familiarity': 1,
          'series': 1,
          'allow': 1,
          'chain': 1,
          'events': 1,
          'take': 1,
          'place': 1,
          'nbased': 1,
          'told': 1,
          'gather': 1,
          'british': 1,
          'super': 1,
          'somewhat': 1,
          'bond': 1,
          'smart': 1,
          'doctor': 1,
          'beating': 1,
          'limited': 1,
          'tight': 1,
          'leather': 1,
          'suits': 1,
          'work': 1,
          'mothers': 1,
          'orders': 1,
          'mother': 1,
          'jolly': 1,
          'coconspirator': 1,
          'father': 1,
          'equallytalented': 1,
          'controlling': 1,
          'name': 1,
          'scottish': 1,
          'nour': 1,
          'better': 1,
          'stop': 1,
          'else': 1,
          'colder': 1,
          'hell': 1,
          'warm': 1,
          'funny': 1,
          'lines': 1,
          'nalong': 1,
          'hinged': 1,
          'sloppily': 1,
          'nowhere': 1,
          'perfunctory': 1,
          'example': 1,
          'eventually': 1,
          'attacked': 1,
          'swarm': 1,
          'giant': 1,
          'mechanical': 1,
          'insects': 1,
          'machineguns': 1,
          'attached': 1,
          'torsos': 1,
          'nnow': 1,
          'killer': 1,
          'weathercontrolling': 1,
          'theme': 1,
          'annihilate': 1,
          'established': 1,
          'ntheyre': 1,
          'directly': 1,
          'connected': 1,
          'controlled': 1,
          'henchman': 1,
          'eddie': 1,
          'izzard': 1,
          'special': 1,
          'effects': 1,
          'loud': 1,
          'obnoxious': 1,
          'intrusive': 1,
          'nlike': 1,
          'present': 1,
          'attention': 1,
          'waning': 1,
          'guarantee': 1,
          'wane': 1,
          'stopped': 1,
          'thinking': 1,
          'realized': 1,
          'think': 1,
          'chopped': 1,
          'reassembled': 1,
          'involved': 1,
          'couldnt': 1,
          'tell': 1,
          'nthere': 1,
          'several': 1,
          'nin': 1,
          'addition': 1,
          'sequences': 1,
          'irritating': 1,
          'grainy': 1,
          'quality': 1,
          'lowbudget': 1,
          'last': 1,
          'scene': 1,
          'feature': 1,
          'thanks': 1,
          'wonderful': 1,
          'either': 1,
          'wasted': 1,
          'noh': 1,
          'weep': 1,
          'disappointment': 1,
          'nwere': 1,
          'talking': 1,
          'working': 1,
          'nive': 1,
          'loved': 1,
          'wants': 1,
          'hes': 1,
          'spectacular': 1,
          'beauty': 1,
          'talent': 1,
          'manage': 1,
          'home': 1,
          'strange': 1,
          'involving': 1,
          'evil': 1,
          'twin': 1,
          'explained': 1,
          'easy': 1,
          'deal': 1,
          'terrible': 1,
          'screenwriting': 1,
          'nconnery': 1,
          'totally': 1,
          'lacking': 1,
          'focus': 1,
          'matter': 1,
          'nwho': 1,
          'screenwriter': 1,
          'macpherson': 1,
          'nperhaps': 1,
          'although': 1,
          'shell': 1,
          'could': 1,
          'handled': 1,
          'right': 1,
          'gods': 1,
          'sake': 1,
          'inevitable': 1,
          'path': 1,
          'destruction': 1,
          'travelling': 1,
          'jeremiah': 1,
          'chechik': 1,
          'shouldnt': 1,
          'given': 1,
          'task': 1,
          'begin': 1,
          'benny': 1,
          'joon': 1,
          'quirky': 1,
          'supposed': 1,
          'mostly': 1,
          'failed': 1,
          'attempts': 1,
          'wit': 1,
          'humor': 1,
          'nadd': 1,
          'lack': 1,
          'experience': 1,
          'bigbudget': 1,
          'worst': 1,
          'choice': 1,
          'side': 1,
          'ivory': 1,
          'nif': 1,
          'saving': 1,
          'grace': 1,
          'set': 1,
          'design': 1,
          'stuart': 1,
          'craig': 1,
          'colorful': 1,
          'often': 1,
          'pleasing': 1,
          'setpiece': 1,
          'wynters': 1,
          'island': 1,
          'admired': 1,
          'overhead': 1,
          'view': 1,
          'stairs': 1,
          'showing': 1,
          'running': 1,
          'around': 1,
          'circles': 1,
          'anywhere': 1,
          'enjoyed': 1,
          'michael': 1,
          'kamens': 1,
          'score': 1,
          'opening': 1,
          'credits': 1,
          'stuff': 1,
          'routine': 1,
          'theres': 1,
          'needs': 1,
          'ninspiration': 1,
          'instance': 1,
          'nmaybe': 1,
          'little': 1,
          'cohesion': 1,
          'nmost': 1,
          'though': 1,
          'liked': 1,
          'relish': 1,
          'ndamn': 1,
          'giving': 1,
          'chance': 1,
          'nneg': 1}),
 Counter({'eyes': 10,
          'movie': 10,
          'nthe': 9,
          'trailer': 8,
          'snake': 6,
          'good': 6,
          'nif': 5,
          'nsnake': 4,
          'mystery': 4,
          'palma': 4,
          'plot': 4,
          'much': 4,
          'youd': 3,
          'would': 3,
          'reason': 3,
          'movies': 3,
          'de': 3,
          'sinise': 3,
          'cage': 3,
          'without': 3,
          'story': 3,
          'one': 3,
          'better': 3,
          'put': 2,
          'n': 2,
          'side': 2,
          'game': 2,
          'nthis': 2,
          'free': 2,
          'seen': 2,
          'supposed': 2,
          'questions': 2,
          'way': 2,
          'readmit': 2,
          'pass': 2,
          'brian': 2,
          'cages': 2,
          'give': 2,
          'worthy': 2,
          'seeing': 2,
          'work': 2,
          'sheer': 2,
          'steadicam': 2,
          'atlantic': 2,
          'city': 2,
          'deserves': 2,
          'best': 2,
          'category': 2,
          'nbut': 2,
          'us': 2,
          'must': 2,
          'secretary': 2,
          'boxing': 2,
          'match': 2,
          'killed': 2,
          'characters': 2,
          'interesting': 2,
          'horrid': 2,
          'scene': 2,
          'job': 2,
          'technical': 2,
          'even': 2,
          'evil': 2,
          'worst': 2,
          'time': 2,
          'dog': 1,
          'sleep': 1,
          'couch': 1,
          'sidewalk': 1,
          'sit': 1,
          'week': 1,
          'child': 1,
          'reading': 1,
          'military': 1,
          'school': 1,
          'catalogs': 1,
          'ship': 1,
          'wouldnt': 1,
          'titanic': 1,
          'imply': 1,
          'glamor': 1,
          'tragedy': 1,
          'exxon': 1,
          'valdez': 1,
          'personal': 1,
          'note': 1,
          'saw': 1,
          'road': 1,
          'houston': 1,
          'business': 1,
          'trip': 1,
          'nfor': 1,
          'whatever': 1,
          'hotels': 1,
          'cable': 1,
          'system': 1,
          'wasnt': 1,
          'showing': 1,
          'astrosbraves': 1,
          'featured': 1,
          'randy': 1,
          'johnsongreg': 1,
          'maddux': 1,
          'matchup': 1,
          'forced': 1,
          'pay': 1,
          'full': 1,
          'price': 1,
          'instead': 1,
          'watching': 1,
          'perfectly': 1,
          'baseball': 1,
          'invective': 1,
          'deserved': 1,
          'perspective': 1,
          'leave': 1,
          'asking': 1,
          'theater': 1,
          'wheres': 1,
          'manager': 1,
          'get': 1,
          'fall': 1,
          'asleep': 1,
          'drive': 1,
          'home': 1,
          'wreck': 1,
          'rentacar': 1,
          'sue': 1,
          'nis': 1,
          'late': 1,
          'academy': 1,
          'revoke': 1,
          'nicolas': 1,
          'oscar': 1,
          'nwill': 1,
          'someone': 1,
          'please': 1,
          'im': 1,
          'begging': 1,
          'gary': 1,
          'role': 1,
          'talents': 1,
          'nand': 1,
          'exactly': 1,
          'end': 1,
          'wearing': 1,
          'exact': 1,
          'shirt': 1,
          'tie': 1,
          'first': 1,
          'glaringly': 1,
          'wrong': 1,
          'thing': 1,
          'youve': 1,
          'consider': 1,
          'fortunate': 1,
          'genius': 1,
          'nit': 1,
          'manages': 1,
          'convey': 1,
          'everything': 1,
          'noteworthy': 1,
          'exuberance': 1,
          'performance': 1,
          'thoroughly': 1,
          'corrupt': 1,
          'policeman': 1,
          'essential': 1,
          'elements': 1,
          'marginal': 1,
          'expert': 1,
          'craftsman': 1,
          'pieced': 1,
          'together': 1,
          'fairly': 1,
          'snippets': 1,
          'wretched': 1,
          'praise': 1,
          'percentage': 1,
          'gross': 1,
          'oscars': 1,
          'farfetched': 1,
          'set': 1,
          'overwhelmingly': 1,
          'disappointing': 1,
          'sets': 1,
          'promising': 1,
          'detective': 1,
          'ricky': 1,
          'santoro': 1,
          'solve': 1,
          'shot': 1,
          'defense': 1,
          'payperview': 1,
          'nunfortunately': 1,
          'multiple': 1,
          'problems': 1,
          'afoot': 1,
          'gives': 1,
          'away': 1,
          'shooter': 1,
          'instantly': 1,
          'revolves': 1,
          'around': 1,
          'involved': 1,
          'conspiracy': 1,
          'films': 1,
          'secret': 1,
          'hohum': 1,
          'anyone': 1,
          'watched': 1,
          'aware': 1,
          'law': 1,
          'economy': 1,
          'figure': 1,
          'top': 1,
          'conspirator': 1,
          'nwithout': 1,
          'dialogue': 1,
          'care': 1,
          'failure': 1,
          'almost': 1,
          'every': 1,
          'possible': 1,
          'level': 1,
          'nas': 1,
          'hated': 1,
          'tiny': 1,
          'bit': 1,
          'credit': 1,
          'nde': 1,
          'maddeningly': 1,
          'inconsistent': 1,
          'nhe': 1,
          'day': 1,
          'create': 1,
          'amazingly': 1,
          'welldone': 1,
          'untouchables': 1,
          'carlitos': 1,
          'non': 1,
          'offdays': 1,
          'well': 1,
          'bonfire': 1,
          'vanities': 1,
          'raising': 1,
          'cain': 1,
          'falls': 1,
          'couple': 1,
          'moments': 1,
          'worth': 1,
          'strictly': 1,
          'filmschool': 1,
          'degreeofdifficulty': 1,
          'value': 1,
          'opening': 1,
          'introducing': 1,
          'character': 1,
          'virtuoso': 1,
          'director': 1,
          'actor': 1,
          'nthere': 1,
          'splitscreen': 1,
          'chase': 1,
          'looks': 1,
          'pretty': 1,
          'followed': 1,
          'gods': 1,
          'eye': 1,
          'view': 1,
          'bank': 1,
          'hotel': 1,
          'rooms': 1,
          'thats': 1,
          'imaginitively': 1,
          'done': 1,
          'whats': 1,
          'called': 1,
          'giving': 1,
          'devil': 1,
          'due': 1,
          'skill': 1,
          'doesnt': 1,
          'come': 1,
          'close': 1,
          'making': 1,
          'nplacing': 1,
          'holes': 1,
          'moment': 1,
          'features': 1,
          'easily': 1,
          'cinema': 1,
          'history': 1,
          'george': 1,
          'foreman': 1,
          'shape': 1,
          'boxers': 1,
          'hurricane': 1,
          'exists': 1,
          'punctuate': 1,
          'significant': 1,
          'plotlines': 1,
          'portentuous': 1,
          'thunderclaps': 1,
          'perhaps': 1,
          'overly': 1,
          'drawn': 1,
          'ending': 1,
          'years': 1,
          'criminal': 1,
          'act': 1,
          'waste': 1,
          'talent': 1,
          'ncage': 1,
          'yes': 1,
          'deserve': 1,
          'audience': 1,
          'refund': 1,
          'popcorn': 1,
          'coupon': 1,
          'ever': 1,
          'restore': 1,
          'weve': 1,
          'spent': 1,
          'wash': 1,
          'awful': 1,
          'images': 1,
          'mind': 1,
          'nhowever': 1,
          'left': 1,
          'consolation': 1,
          'warned': 1,
          'title': 1,
          'nothing': 1,
          'roll': 1,
          'craps': 1,
          'nneg': 1}),
 Counter({'one': 17,
          'nand': 10,
          'batman': 10,
          'ni': 10,
          'good': 9,
          'like': 9,
          'nbut': 8,
          'film': 7,
          'much': 7,
          'nthis': 7,
          'joel': 7,
          'nthe': 7,
          'nhes': 7,
          'time': 7,
          'last': 6,
          'get': 6,
          'series': 6,
          'films': 6,
          'nthats': 5,
          'big': 5,
          'nits': 5,
          'elle': 5,
          'gets': 5,
          'also': 5,
          'uma': 5,
          'two': 5,
          'batgirl': 4,
          'freeze': 4,
          'dying': 4,
          'hes': 4,
          'nothing': 4,
          'almost': 4,
          'part': 4,
          'shes': 4,
          'love': 4,
          'around': 4,
          'see': 4,
          'butler': 3,
          'alfred': 3,
          'michael': 3,
          'think': 3,
          'need': 3,
          'subplot': 3,
          'never': 3,
          'better': 3,
          'schumacher': 3,
          'first': 3,
          'mr': 3,
          'wife': 3,
          'villain': 3,
          'george': 3,
          'nmeanwhile': 3,
          'another': 3,
          'poison': 3,
          'nshe': 3,
          'woman': 3,
          'really': 3,
          'bruce': 3,
          'know': 3,
          'seems': 3,
          'although': 3,
          'saw': 3,
          'next': 3,
          'makes': 3,
          'parts': 3,
          'scene': 3,
          'great': 2,
          'ncut': 2,
          'villains': 2,
          'characters': 2,
          'npoor': 2,
          'scenes': 2,
          'way': 2,
          'fourth': 2,
          'second': 2,
          'director': 2,
          'worst': 2,
          'since': 2,
          'anticlimactic': 2,
          'gon': 2,
          'na': 2,
          'suck': 2,
          'fun': 2,
          'forever': 2,
          'action': 2,
          'bit': 2,
          'whos': 2,
          'disease': 2,
          'new': 2,
          'weird': 2,
          'body': 2,
          'robin': 2,
          'chris': 2,
          'growing': 2,
          'apart': 2,
          'ivy': 2,
          'scientist': 2,
          'john': 2,
          'kills': 2,
          'chemicals': 2,
          'killed': 2,
          'ever': 2,
          'dont': 2,
          'ask': 2,
          'cant': 2,
          'ya': 2,
          'scent': 2,
          'people': 2,
          'away': 2,
          'soon': 2,
          'well': 2,
          'even': 2,
          'year': 2,
          'want': 2,
          'world': 2,
          'plants': 2,
          'must': 2,
          'together': 2,
          'family': 2,
          'nthere': 2,
          'whole': 2,
          'right': 2,
          'nice': 2,
          'couple': 2,
          'lines': 2,
          'thats': 2,
          'nfor': 2,
          'clooney': 2,
          'guy': 2,
          'horrible': 2,
          'keaton': 2,
          'quintessential': 2,
          'im': 2,
          'theyll': 2,
          'interesting': 2,
          'somewhat': 2,
          'sympathetic': 2,
          'nwe': 2,
          'feel': 2,
          'kill': 2,
          'isnt': 2,
          'hokey': 2,
          'kinda': 2,
          'points': 2,
          'nwhen': 2,
          'point': 2,
          'best': 2,
          'cool': 2,
          'act': 2,
          'stupid': 2,
          'loved': 2,
          'poor': 2,
          'couch': 2,
          'nin': 2,
          'lot': 2,
          'show': 2,
          'laughed': 2,
          'serve': 2,
          'word': 2,
          'person': 2,
          'costuming': 2,
          'line': 1,
          'near': 1,
          'honor': 1,
          'ubergod': 1,
          'gough': 1,
          'saying': 1,
          'bigger': 1,
          'bat': 1,
          'cave': 1,
          'something': 1,
          'note': 1,
          'exactly': 1,
          'damn': 1,
          'handle': 1,
          'dosage': 1,
          'left': 1,
          'behind': 1,
          'mere': 1,
          '3': 1,
          'introduced': 1,
          'finished': 1,
          'shape': 1,
          'form': 1,
          'deserves': 1,
          'gigantic': 1,
          'declining': 1,
          'stunning': 1,
          'debut': 1,
          'followed': 1,
          'almostasstunning': 1,
          'sequel': 1,
          'third': 1,
          'ones': 1,
          'knew': 1,
          'make': 1,
          'though': 1,
          'n': 1,
          'bore': 1,
          'overproduced': 1,
          'sequences': 1,
          'shallow': 1,
          'mean': 1,
          'nim': 1,
          'put': 1,
          'plot': 1,
          'paragraph': 1,
          'ahnold': 1,
          'become': 1,
          'days': 1,
          'huge': 1,
          'exscientist': 1,
          'fell': 1,
          'liquid': 1,
          'hello': 1,
          'njoker': 1,
          'temperature': 1,
          'fat': 1,
          'zero': 1,
          'blue': 1,
          'nbatman': 1,
          'fight': 1,
          'find': 1,
          'theyre': 1,
          'shows': 1,
          'dorky': 1,
          'chick': 1,
          'working': 1,
          'flowers': 1,
          'south': 1,
          'america': 1,
          'twistet': 1,
          'glover': 1,
          'finds': 1,
          'used': 1,
          'research': 1,
          'develop': 1,
          'uberman': 1,
          'bane': 1,
          'basically': 1,
          'man': 1,
          'pumped': 1,
          'probably': 1,
          'personality': 1,
          'emerges': 1,
          'cause': 1,
          'tell': 1,
          'sexy': 1,
          'real': 1,
          'kiss': 1,
          'aphrodiasiatic': 1,
          'blows': 1,
          'starts': 1,
          'tear': 1,
          'dynamic': 1,
          'duo': 1,
          'alfreds': 1,
          'freezes': 1,
          'earlier': 1,
          'state': 1,
          'niece': 1,
          'barbara': 1,
          'alicia': 1,
          'comes': 1,
          'oxford': 1,
          'without': 1,
          'english': 1,
          'accent': 1,
          'trade': 1,
          'takes': 1,
          '2': 1,
          'hours': 1,
          'becomes': 1,
          'unfinished': 1,
          'batmans': 1,
          'alterego': 1,
          'forgot': 1,
          'dating': 1,
          'lovely': 1,
          'julie': 1,
          'madison': 1,
          'lovlier': 1,
          'macpherson': 1,
          'wants': 1,
          'commitment': 1,
          'says': 1,
          'nend': 1,
          'nmr': 1,
          'ultimately': 1,
          'teams': 1,
          'take': 1,
          'population': 1,
          'trio': 1,
          'team': 1,
          'beat': 1,
          'go': 1,
          'nnot': 1,
          'story': 1,
          'context': 1,
          'clues': 1,
          'ntoo': 1,
          'nright': 1,
          'patched': 1,
          'little': 1,
          'ideas': 1,
          'would': 1,
          'made': 1,
          'sequels': 1,
          'nhowever': 1,
          'tim': 1,
          'burton': 1,
          'nicely': 1,
          'balanced': 1,
          'villainbatman': 1,
          'storyline': 1,
          'wonderfully': 1,
          'nhe': 1,
          'corny': 1,
          'speeches': 1,
          'clever': 1,
          'nmaybe': 1,
          'stunts': 1,
          'comment': 1,
          'hardly': 1,
          'dialogue': 1,
          'say': 1,
          'val': 1,
          'kilmer': 1,
          'robotic': 1,
          'fake': 1,
          'episode': 1,
          'ngeorge': 1,
          'sure': 1,
          'decide': 1,
          'renovate': 1,
          'critically': 1,
          'murdered': 1,
          'sorry': 1,
          'effort': 1,
          'script': 1,
          'shine': 1,
          'still': 1,
          'job': 1,
          'according': 1,
          'nlast': 1,
          'brawn': 1,
          'face': 1,
          'played': 1,
          'tommy': 1,
          'lee': 1,
          'jones': 1,
          'brainscomedy': 1,
          'supplied': 1,
          'riddler': 1,
          'realized': 1,
          'jim': 1,
          'carrey': 1,
          'hatable': 1,
          'bad': 1,
          'mentalphysical': 1,
          'collapse': 1,
          'everyone': 1,
          'narnold': 1,
          'watches': 1,
          'old': 1,
          'movies': 1,
          'actually': 1,
          'looks': 1,
          'somber': 1,
          'nwow': 1,
          'seductive': 1,
          'character': 1,
          'getting': 1,
          'hamminess': 1,
          'seductiveness': 1,
          'parodying': 1,
          'pulp': 1,
          'fiction': 1,
          'nshes': 1,
          'incredibly': 1,
          'hot': 1,
          'movie': 1,
          'pretty': 1,
          'star': 1,
          'nas': 1,
          'lower': 1,
          'batpeople': 1,
          'work': 1,
          'quieter': 1,
          'plain': 1,
          'fried': 1,
          'green': 1,
          'tomotoes': 1,
          'nalicia': 1,
          'girl': 1,
          'particularly': 1,
          'hypotheitically': 1,
          'clueless': 1,
          'sound': 1,
          'mushymouth': 1,
          'fairness': 1,
          'virtually': 1,
          'njoel': 1,
          'occasionally': 1,
          'stuff': 1,
          'catfight': 1,
          'hypothetically': 1,
          'us': 1,
          'sirens': 1,
          'nit': 1,
          'footage': 1,
          'edit': 1,
          'hour': 1,
          'final': 1,
          'product': 1,
          'friend': 1,
          'noticed': 1,
          'nnow': 1,
          'listen': 1,
          'every': 1,
          'flick': 1,
          'theres': 1,
          'original': 1,
          'vicki': 1,
          'returns': 1,
          'makeout': 1,
          'selena': 1,
          'chat': 1,
          'nicole': 1,
          'nexttonothing': 1,
          'till': 1,
          'end': 1,
          'suddenly': 1,
          'nfortunately': 1,
          'always': 1,
          'reliable': 1,
          'case': 1,
          'didnt': 1,
          'life': 1,
          'god': 1,
          'father': 1,
          'figure': 1,
          'got': 1,
          'robe': 1,
          'tux': 1,
          'freaking': 1,
          'idea': 1,
          'might': 1,
          'unhappy': 1,
          'answered': 1,
          'cluttered': 1,
          'defense': 1,
          'unfortunately': 1,
          'touches': 1,
          'asylum': 1,
          'patients': 1,
          'belongings': 1,
          'room': 1,
          'riddlers': 1,
          'costume': 1,
          'biker': 1,
          'involving': 1,
          'handled': 1,
          'past': 1,
          'initiation': 1,
          'period': 1,
          'coolio': 1,
          'bunch': 1,
          'badasses': 1,
          'dressed': 1,
          'droogs': 1,
          'clockwork': 1,
          'orange': 1,
          'falls': 1,
          'fiveminute': 1,
          'mark': 1,
          'enormously': 1,
          'long': 1,
          'sequence': 1,
          '20': 1,
          'minutes': 1,
          'ndid': 1,
          'longline': 1,
          'demonstrate': 1,
          'intelligent': 1,
          'nowadays': 1,
          'npeople': 1,
          'fed': 1,
          'mouth': 1,
          'lost': 1,
          'indy': 1,
          'grossed': 1,
          'strong': 1,
          'boxoffice': 1,
          'initative': 1,
          'die': 1,
          'week': 1,
          'grapevine': 1,
          'bigbudget': 1,
          'aciton': 1,
          'pics': 1,
          'woos': 1,
          'faceoff': 1,
          'barry': 1,
          'sonnenfelds': 1,
          'men': 1,
          'black': 1,
          'catch': 1,
          'wave': 1,
          'early': 1,
          'artiste': 1,
          'flatliners': 1,
          'eccentric': 1,
          'quotes': 1,
          'admits': 1,
          'mediocre': 1,
          'woody': 1,
          'allens': 1,
          'sleeper': 1,
          'look': 1,
          'nazi': 1,
          'number': 1,
          'rocked': 1,
          'going': 1,
          'watch': 1,
          'repeatedly': 1,
          'three': 1,
          'nhopefully': 1,
          'springboard': 1,
          'maybe': 1,
          'smart': 1,
          'bring': 1,
          'back': 1,
          'catwoman': 1,
          'hope': 1,
          'nneg': 1}),
 Counter({'virus': 9,
          'even': 9,
          'film': 9,
          'bruno': 7,
          'movie': 7,
          'one': 7,
          'cameron': 5,
          'could': 5,
          'say': 5,
          'fact': 5,
          'least': 5,
          'like': 5,
          'alien': 5,
          'aliens': 4,
          'back': 4,
          'years': 4,
          'make': 4,
          'upon': 4,
          'nand': 4,
          'dont': 4,
          'see': 4,
          'universal': 4,
          'action': 4,
          'curtis': 3,
          'ni': 3,
          'john': 3,
          'early': 3,
          'nin': 3,
          'another': 3,
          'group': 3,
          'worked': 3,
          'may': 3,
          'part': 3,
          'n': 3,
          'cruiser': 3,
          'nthey': 3,
          'interesting': 3,
          'lead': 3,
          'without': 3,
          'go': 3,
          'mostly': 3,
          'shot': 3,
          'well': 3,
          'making': 3,
          'jamie': 2,
          'lee': 2,
          'donald': 2,
          'sutherland': 2,
          'im': 2,
          'comes': 2,
          'us': 2,
          'hard': 2,
          'mr': 2,
          'camerons': 2,
          'long': 2,
          'line': 2,
          'find': 2,
          'get': 2,
          'first': 2,
          'albeit': 2,
          'thing': 2,
          'happen': 2,
          'believe': 2,
          'capacity': 2,
          'feature': 2,
          'wonder': 2,
          'man': 2,
          'director': 2,
          'aimed': 2,
          'zgrade': 2,
          'schlockfest': 2,
          'respectable': 2,
          'nthe': 2,
          'seems': 2,
          'also': 2,
          'peter': 2,
          'stumble': 2,
          'lifeform': 2,
          'russian': 2,
          'board': 2,
          'machines': 2,
          'ha': 2,
          'second': 2,
          'bit': 2,
          'cast': 2,
          'characters': 2,
          'captain': 2,
          'couple': 2,
          'soldiers': 2,
          'whole': 2,
          'instead': 2,
          'cliche': 2,
          'give': 2,
          'damn': 2,
          'almost': 2,
          'horrific': 2,
          'really': 2,
          'favorite': 2,
          'studios': 2,
          'much': 2,
          'read': 2,
          'still': 2,
          'believable': 2,
          'special': 2,
          'effects': 2,
          'godzilla': 2,
          'light': 2,
          'sit': 2,
          'basically': 2,
          'follow': 2,
          'scene': 2,
          'end': 2,
          'ship': 2,
          'dramatic': 2,
          'movies': 2,
          'millions': 2,
          'contempt': 2,
          'writers': 1,
          'dennis': 1,
          'feldman': 1,
          'jonathan': 1,
          'hensleigh': 1,
          'based': 1,
          'comic': 1,
          'book': 1,
          'chuck': 1,
          'pfarrer': 1,
          'nstarring': 1,
          'william': 1,
          'baldwin': 1,
          'joanna': 1,
          'pacula': 1,
          'sherman': 1,
          'augustus': 1,
          'marshall': 1,
          'bell': 1,
          'cliff': 1,
          'julio': 1,
          'oscar': 1,
          'mechoso': 1,
          'suppose': 1,
          'extremely': 1,
          'surprised': 1,
          'deciple': 1,
          'james': 1,
          'strain': 1,
          'real': 1,
          'obvious': 1,
          'given': 1,
          'particuarly': 1,
          'looking': 1,
          'standpoint': 1,
          'works': 1,
          'yet': 1,
          'actionhorrorparanoia': 1,
          'thrillers': 1,
          'vein': 1,
          'people': 1,
          'dropped': 1,
          'mysterious': 1,
          'situation': 1,
          'mortallythreatening': 1,
          'entity': 1,
          'textbook': 1,
          'example': 1,
          'hailing': 1,
          'way': 1,
          'talkies': 1,
          'maybe': 1,
          'pictures': 1,
          'redeveloped': 1,
          '1986': 1,
          'blockbuster': 1,
          'earned': 1,
          'esteem': 1,
          'bigger': 1,
          'budgets': 1,
          'come': 1,
          'future': 1,
          'nno': 1,
          'quasilandmark': 1,
          'studied': 1,
          'wing': 1,
          'beginning': 1,
          'exactly': 1,
          'learn': 1,
          'mediocre': 1,
          'anything': 1,
          'knows': 1,
          'detraction': 1,
          'fairly': 1,
          'budget': 1,
          'borrow': 1,
          'plot': 1,
          'last': 1,
          'similarlyfated': 1,
          'deep': 1,
          'rising': 1,
          'clunkish': 1,
          'bmovie': 1,
          '80s': 1,
          'called': 1,
          'leviathan': 1,
          'underwater': 1,
          'thriller': 1,
          'starring': 1,
          'weller': 1,
          'richard': 1,
          'crenna': 1,
          'hector': 1,
          'elizando': 1,
          'daniel': 1,
          'stern': 1,
          'miners': 1,
          'carpenters': 1,
          'twisted': 1,
          'remake': 1,
          'similar': 1,
          'uh': 1,
          'selling': 1,
          'point': 1,
          'sailors': 1,
          'boat': 1,
          'dead': 1,
          'water': 1,
          'break': 1,
          'pairs': 1,
          'investigate': 1,
          'form': 1,
          'energy': 1,
          'taken': 1,
          'meshed': 1,
          'parts': 1,
          'corpses': 1,
          'deemed': 1,
          'humankind': 1,
          'enemy': 1,
          'misquote': 1,
          'dictionary': 1,
          'nnot': 1,
          'scary': 1,
          'involving': 1,
          'start': 1,
          'chintzy': 1,
          'bondian': 1,
          'opening': 1,
          'destruction': 1,
          'via': 1,
          'satellite': 1,
          'transmission': 1,
          'mir': 1,
          'destroying': 1,
          'suspense': 1,
          'fails': 1,
          'bring': 1,
          'chracters': 1,
          'nof': 1,
          'motley': 1,
          'crew': 1,
          'choses': 1,
          'potentially': 1,
          'eccentric': 1,
          'woman': 1,
          'skipper': 1,
          'masculine': 1,
          'potentialromanticinterest': 1,
          'drunken': 1,
          'black': 1,
          'technician': 1,
          'tatooed': 1,
          'aborigine': 1,
          'manic': 1,
          'survivor': 1,
          'candidates': 1,
          'food': 1,
          'none': 1,
          'dimensional': 1,
          'thin': 1,
          'plain': 1,
          'piece': 1,
          'writing': 1,
          'paper': 1,
          'traditional': 1,
          'argument': 1,
          'films': 1,
          'want': 1,
          'eaten': 1,
          'played': 1,
          'karma': 1,
          'arrogant': 1,
          'plusside': 1,
          'opposite': 1,
          'goes': 1,
          'acting': 1,
          'everyone': 1,
          'ranges': 1,
          'subpar': 1,
          'former': 1,
          'showing': 1,
          'strong': 1,
          'female': 1,
          'latter': 1,
          'pains': 1,
          'hes': 1,
          'particular': 1,
          'mine': 1,
          'plays': 1,
          'poorly': 1,
          'credibility': 1,
          'performanceofwhichheshouldbeashamed': 1,
          'nlike': 1,
          'anthony': 1,
          'hopkins': 1,
          'legends': 1,
          'fall': 1,
          'scrooooooo': 1,
          'em': 1,
          'thus': 1,
          'embroidered': 1,
          'membrance': 1,
          'otoole': 1,
          'caligula': 1,
          'ngreat': 1,
          'actor': 1,
          'performance': 1,
          'nit': 1,
          'happens': 1,
          'every': 1,
          'helps': 1,
          'sutherlands': 1,
          'career': 1,
          'except': 1,
          'elite': 1,
          'bothered': 1,
          'nthough': 1,
          'sat': 1,
          'shelves': 1,
          'two': 1,
          'waiting': 1,
          'released': 1,
          'money': 1,
          'possibly': 1,
          'january': 1,
          'everyones': 1,
          'trying': 1,
          'catch': 1,
          'potential': 1,
          'oscarnominees': 1,
          'show': 1,
          'shelled': 1,
          'pretty': 1,
          'penny': 1,
          'laden': 1,
          'complex': 1,
          'machinery': 1,
          'boasts': 1,
          'production': 1,
          'design': 1,
          'course': 1,
          'anyone': 1,
          'else': 1,
          'takes': 1,
          'place': 1,
          'large': 1,
          'abandoned': 1,
          'night': 1,
          'dawn': 1,
          'use': 1,
          'lights': 1,
          'productivity': 1,
          'creatures': 1,
          'pursuit': 1,
          'human': 1,
          'prey': 1,
          'hollywood': 1,
          'dark': 1,
          'enough': 1,
          'rent': 1,
          'tell': 1,
          'theres': 1,
          'either': 1,
          'entirety': 1,
          'wide': 1,
          'b': 1,
          'take': 1,
          'word': 1,
          'nbut': 1,
          'doesnt': 1,
          'matter': 1,
          'since': 1,
          'loud': 1,
          'cluttered': 1,
          'mess': 1,
          'scenes': 1,
          'muddled': 1,
          'difficult': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'um': 1,
          'trio': 1,
          'somehow': 1,
          'outside': 1,
          'five': 1,
          'minute': 1,
          'bouillabaisse': 1,
          'tidal': 1,
          'waves': 1,
          'rain': 1,
          'oceanextremeties': 1,
          'cook': 1,
          'revealed': 1,
          'apparently': 1,
          'drowned': 1,
          'must': 1,
          'thanks': 1,
          'telling': 1,
          'afterwards': 1,
          'sure': 1,
          'couldnt': 1,
          'figure': 1,
          'saw': 1,
          'nimagine': 1,
          'attack': 1,
          'pov': 1,
          'authorities': 1,
          'battle': 1,
          'car': 1,
          'done': 1,
          'intensity': 1,
          'thats': 1,
          'horriblydirected': 1,
          'capping': 1,
          'proposterous': 1,
          'gadget': 1,
          'saves': 1,
          'day': 1,
          'original': 1,
          'members': 1,
          'god': 1,
          'nwith': 1,
          'urgency': 1,
          'tension': 1,
          'good': 1,
          'moment': 1,
          'mesmerizing': 1,
          'visuals': 1,
          'got': 1,
          'made': 1,
          'nwe': 1,
          'already': 1,
          'know': 1,
          'big': 1,
          'mentality': 1,
          'shallow': 1,
          'best': 1,
          'sight': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'faith': 1,
          'manage': 1,
          'drain': 1,
          'little': 1,
          'pool': 1,
          'wish': 1,
          'gone': 1,
          'cinema': 1,
          'verite': 1,
          'captured': 1,
          'meetings': 1,
          'heads': 1,
          'gave': 1,
          'green': 1,
          'script': 1,
          'knew': 1,
          'entrusting': 1,
          'dollars': 1,
          'might': 1,
          'hack': 1,
          'went': 1,
          'ahead': 1,
          'project': 1,
          'company': 1,
          'shit': 1,
          'face': 1,
          'neven': 1,
          'though': 1,
          'hold': 1,
          'horrible': 1,
          'id': 1,
          'bad': 1,
          'shouts': 1,
          'egad': 1,
          'anyway': 1,
          'nare': 1,
          'justifiable': 1,
          'encouraged': 1,
          'nneg': 1}),
 Counter({'deuce': 12,
          'fish': 4,
          'antoine': 4,
          'one': 3,
          'whose': 3,
          'ntheres': 3,
          'doesnt': 3,
          'n': 3,
          'sandler': 3,
          'funny': 3,
          'bigalow': 2,
          'rob': 2,
          'schneider': 2,
          'know': 2,
          'tank': 2,
          'decides': 2,
          'j': 2,
          'eddie': 2,
          'griffin': 2,
          'chi': 2,
          'discover': 2,
          'nthe': 2,
          'nbe': 2,
          'afraid': 2,
          'actually': 2,
          'toilet': 2,
          'cleans': 1,
          'tanks': 1,
          'nyeah': 1,
          'didnt': 1,
          'real': 1,
          'job': 1,
          'either': 1,
          'none': 1,
          'customers': 1,
          'leconte': 1,
          'oded': 1,
          'fehr': 1,
          'successful': 1,
          'gigolo': 1,
          'nwhen': 1,
          'go': 1,
          'sweden': 1,
          'three': 1,
          'weeks': 1,
          'lets': 1,
          'use': 1,
          'house': 1,
          'look': 1,
          'ailing': 1,
          '800': 1,
          'nfooling': 1,
          'around': 1,
          'sets': 1,
          'fire': 1,
          'kitchen': 1,
          'smashes': 1,
          '6000': 1,
          'nafter': 1,
          'taking': 1,
          'try': 1,
          'antoines': 1,
          'clients': 1,
          'earning': 1,
          '10': 1,
          'prostitute': 1,
          'raise': 1,
          'money': 1,
          'replace': 1,
          'fierytempered': 1,
          'returns': 1,
          'nenter': 1,
          'pimp': 1,
          'manwhores': 1,
          'arranges': 1,
          'service': 1,
          'assortment': 1,
          'women': 1,
          'imperfections': 1,
          'keep': 1,
          'dating': 1,
          'enormous': 1,
          'woman': 1,
          'played': 1,
          'transvestite': 1,
          'porn': 1,
          'star': 1,
          'la': 1,
          'rue': 1,
          'hides': 1,
          'food': 1,
          'clothes': 1,
          'claire': 1,
          'gail': 1,
          'ogrady': 1,
          'narcolepsy': 1,
          'causes': 1,
          'fall': 1,
          'asleep': 1,
          'every': 1,
          'minutes': 1,
          'ntina': 1,
          'torsten': 1,
          'voges': 1,
          'tall': 1,
          'face': 1,
          'fit': 1,
          'screen': 1,
          'ruth': 1,
          'amy': 1,
          'poehler': 1,
          'tourettes': 1,
          'syndrome': 1,
          'shouts': 1,
          'obscenities': 1,
          'without': 1,
          'warning': 1,
          'nfinally': 1,
          'theres': 1,
          'kate': 1,
          'arija': 1,
          'bareikis': 1,
          'sorority': 1,
          'sisters': 1,
          'secretly': 1,
          'paid': 1,
          'fare': 1,
          'nshe': 1,
          'seems': 1,
          'perfect': 1,
          'quickly': 1,
          'falls': 1,
          'love': 1,
          'later': 1,
          'imperfection': 1,
          'isnt': 1,
          'important': 1,
          'ndeuces': 1,
          'life': 1,
          'complicated': 1,
          'bothersome': 1,
          'cop': 1,
          'william': 1,
          'forsythe': 1,
          'looking': 1,
          'information': 1,
          'kates': 1,
          'discovery': 1,
          'manwhoring': 1,
          'nhowever': 1,
          'neither': 1,
          'threat': 1,
          'generates': 1,
          'much': 1,
          'suspense': 1,
          'formula': 1,
          'familiar': 1,
          'end': 1,
          'start': 1,
          'first': 1,
          'project': 1,
          'adam': 1,
          'sandlers': 1,
          'company': 1,
          'happy': 1,
          'madison': 1,
          'formation': 1,
          'assures': 1,
          'well': 1,
          'seeing': 1,
          'style': 1,
          'comedy': 1,
          'massproduced': 1,
          'increasing': 1,
          'rate': 1,
          'years': 1,
          'come': 1,
          'good': 1,
          'news': 1,
          'appear': 1,
          'funnier': 1,
          'nschneider': 1,
          'sweetness': 1,
          'makes': 1,
          'clueless': 1,
          'goodhearted': 1,
          'believable': 1,
          'ngriffins': 1,
          'delivery': 1,
          'deadon': 1,
          'especially': 1,
          'coining': 1,
          'technical': 1,
          'terms': 1,
          'profession': 1,
          'dont': 1,
          'make': 1,
          'hebitch': 1,
          'manslap': 1,
          'expected': 1,
          'amount': 1,
          'humor': 1,
          'thing': 1,
          'deuces': 1,
          'dad': 1,
          'mens': 1,
          'room': 1,
          'attendant': 1,
          'ndoes': 1,
          'anyone': 1,
          'age': 1,
          'eight': 1,
          'find': 1,
          'bowel': 1,
          'movements': 1,
          'nfor': 1,
          'us': 1,
          'think': 1,
          'childhood': 1,
          'fascination': 1,
          'bodily': 1,
          'functions': 1,
          'disappears': 1,
          'hit': 1,
          'farside': 1,
          'puberty': 1,
          'sex': 1,
          'ni': 1,
          'glad': 1,
          'trend': 1,
          'finally': 1,
          'flushed': 1,
          'nbottom': 1,
          'line': 1,
          'offer': 1,
          'anything': 1,
          'new': 1,
          'intermittently': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'could': 4,
          'movie': 3,
          'jones': 3,
          'husband': 3,
          'basically': 3,
          'get': 3,
          'law': 3,
          'good': 3,
          'well': 3,
          'nthe': 3,
          'plot': 3,
          'action': 3,
          'writing': 2,
          'seemed': 2,
          'exciting': 2,
          'tommy': 2,
          'lee': 2,
          'character': 2,
          'fugitive': 2,
          'judd': 2,
          'nwhile': 2,
          'jail': 2,
          'really': 2,
          'alive': 2,
          'works': 2,
          'nnow': 2,
          'although': 2,
          'way': 2,
          'believe': 2,
          'acting': 2,
          'may': 2,
          'better': 2,
          'said': 2,
          'fine': 2,
          'much': 2,
          'work': 2,
          'ni': 2,
          'definitive': 1,
          'hollywood': 1,
          'extremely': 1,
          'predictable': 1,
          'following': 1,
          'basic': 1,
          'formula': 1,
          'horrible': 1,
          'ending': 1,
          'overzealous': 1,
          'meaning': 1,
          'bad': 1,
          'trying': 1,
          'hard': 1,
          'make': 1,
          'therefore': 1,
          'making': 1,
          'look': 1,
          'many': 1,
          'things': 1,
          'merely': 1,
          'tossed': 1,
          'fill': 1,
          'space': 1,
          'lovable': 1,
          'wiseass': 1,
          'weve': 1,
          'seen': 1,
          'quite': 1,
          'frankly': 1,
          'wasnt': 1,
          'used': 1,
          'enough': 1,
          'im': 1,
          'afraid': 1,
          'would': 1,
          'completely': 1,
          'unbearable': 1,
          'nin': 1,
          'ashley': 1,
          'plays': 1,
          'women': 1,
          'wrongfully': 1,
          'convicted': 1,
          'killing': 1,
          'sailing': 1,
          'weekend': 1,
          'finds': 1,
          'framed': 1,
          'murder': 1,
          'nover': 1,
          'money': 1,
          'original': 1,
          'exercises': 1,
          'best': 1,
          'near': 1,
          'perfect': 1,
          'condition': 1,
          'learned': 1,
          'titled': 1,
          'double': 1,
          'jeopardy': 1,
          'stating': 1,
          'serves': 1,
          'full': 1,
          'sentence': 1,
          'kill': 1,
          'touch': 1,
          'talk': 1,
          'actual': 1,
          'po': 1,
          'parole': 1,
          'officer': 1,
          'bunch': 1,
          'cops': 1,
          'chasing': 1,
          'conflicted': 1,
          'whether': 1,
          'claims': 1,
          'nskipping': 1,
          'fact': 1,
          'looker': 1,
          'actress': 1,
          'offense': 1,
          'simon': 1,
          'birch': 1,
          'even': 1,
          'great': 1,
          'kiss': 1,
          'girls': 1,
          'times': 1,
          'past': 1,
          'potential': 1,
          'nbut': 1,
          'shes': 1,
          'terribly': 1,
          'unconvincing': 1,
          'performance': 1,
          'seems': 1,
          'stale': 1,
          'unsatisfying': 1,
          'doesnt': 1,
          'add': 1,
          'takes': 1,
          'away': 1,
          'nas': 1,
          'id': 1,
          'nhe': 1,
          'supporting': 1,
          'nwhich': 1,
          'handled': 1,
          'especially': 1,
          'considering': 1,
          'material': 1,
          'feel': 1,
          'alot': 1,
          'going': 1,
          'noriginality': 1,
          'issue': 1,
          'thing': 1,
          'keeping': 1,
          'pretty': 1,
          'intriguing': 1,
          'applied': 1,
          'scenes': 1,
          'made': 1,
          'however': 1,
          'sometimes': 1,
          'place': 1,
          'left': 1,
          'unsatisfied': 1,
          'long': 1,
          'run': 1,
          'nso': 1,
          'genuinely': 1,
          'overthought': 1,
          'certainly': 1,
          'done': 1,
          'generally': 1,
          'speaking': 1,
          'moves': 1,
          'fast': 1,
          'us': 1,
          'involved': 1,
          'either': 1,
          'characters': 1,
          'almost': 1,
          'saved': 1,
          'screentime': 1,
          'perhaps': 1,
          'earned': 1,
          'higher': 1,
          'rating': 1,
          'book': 1,
          'anyway': 1,
          'nkeep': 1,
          'mind': 1,
          'youre': 1,
          'mood': 1,
          'rent': 1,
          'nd': 1,
          'nneg': 1}),
 Counter({'deadbang': 11,
          'nthe': 8,
          'johnson': 6,
          'beck': 5,
          'character': 4,
          'movie': 4,
          'scene': 4,
          'action': 3,
          'dead': 3,
          'film': 3,
          'since': 3,
          'detective': 3,
          'nbut': 3,
          'becks': 3,
          'movies': 3,
          'thriller': 2,
          'title': 2,
          'definitely': 2,
          'bang': 2,
          'one': 2,
          'nin': 2,
          'plays': 2,
          'nyou': 2,
          'na': 2,
          'cop': 2,
          'role': 2,
          'must': 2,
          'jerry': 2,
          'real': 2,
          'vice': 2,
          'emotional': 2,
          'violent': 2,
          'methods': 2,
          'life': 2,
          'investigation': 2,
          'white': 2,
          'never': 2,
          'ni': 2,
          'frankenheimer': 2,
          'black': 2,
          'however': 2,
          'script': 2,
          'ndeadbang': 2,
          'tries': 2,
          'nothing': 2,
          'less': 2,
          'guess': 2,
          'characters': 2,
          'love': 2,
          'wisecracks': 2,
          'two': 2,
          'amusing': 2,
          'starring': 1,
          'lives': 1,
          'dumb': 1,
          'least': 1,
          'half': 1,
          'nalthough': 1,
          'anything': 1,
          'fact': 1,
          'called': 1,
          'bore': 1,
          'guessed': 1,
          'really': 1,
          'challenging': 1,
          'gritty': 1,
          'los': 1,
          'angeles': 1,
          'homicide': 1,
          'stretch': 1,
          'slick': 1,
          'portrayed': 1,
          'miami': 1,
          'la': 1,
          'mel': 1,
          'gibson': 1,
          'lethal': 1,
          'weapon': 1,
          'wreck': 1,
          'complete': 1,
          'outbursts': 1,
          'unscrupulous': 1,
          'police': 1,
          'bleak': 1,
          'outlook': 1,
          'nbecks': 1,
          'wife': 1,
          'divorced': 1,
          'cutting': 1,
          'children': 1,
          'nshe': 1,
          'even': 1,
          'allow': 1,
          'wish': 1,
          'merry': 1,
          'christmas': 1,
          'telephone': 1,
          'family': 1,
          'problems': 1,
          'take': 1,
          'back': 1,
          'seat': 1,
          'thrills': 1,
          'nbeck': 1,
          'investigating': 1,
          'brutal': 1,
          'murders': 1,
          'shopkeeper': 1,
          'nhis': 1,
          'starts': 1,
          'l': 1,
          'finally': 1,
          'culminates': 1,
          'climaxes': 1,
          'oklahoma': 1,
          'showdown': 1,
          'killers': 1,
          'supremacist': 1,
          'camp': 1,
          'nvirtually': 1,
          'every': 1,
          'aspect': 1,
          'inept': 1,
          'ineffective': 1,
          'plot': 1,
          'incoherent': 1,
          'full': 1,
          'holes': 1,
          'depicts': 1,
          'clumsily': 1,
          'see': 1,
          'connections': 1,
          'clues': 1,
          'conclusions': 1,
          'sequences': 1,
          'strictly': 1,
          'thirdrate': 1,
          'absolutely': 1,
          'momentum': 1,
          'suspense': 1,
          'certainly': 1,
          'expected': 1,
          'longtime': 1,
          'director': 1,
          'john': 1,
          'directed': 1,
          'classic': 1,
          'political': 1,
          'manchurian': 1,
          'candidateas': 1,
          'well': 1,
          'sunday': 1,
          'seven': 1,
          'days': 1,
          'may': 1,
          'french': 1,
          'connection': 1,
          'ii': 1,
          'fairness': 1,
          'note': 1,
          'deadbangs': 1,
          'shortcomings': 1,
          'seem': 1,
          'stem': 1,
          'shabby': 1,
          'rather': 1,
          'direction': 1,
          'mask': 1,
          'social': 1,
          'relevance': 1,
          'incorporating': 1,
          'themes': 1,
          'racism': 1,
          'supremacy': 1,
          'efforts': 1,
          'token': 1,
          'gestures': 1,
          'insulting': 1,
          'naccording': 1,
          'production': 1,
          'notes': 1,
          'based': 1,
          'reallife': 1,
          'experiences': 1,
          'stillactive': 1,
          'would': 1,
          'watching': 1,
          'totally': 1,
          'lacks': 1,
          'credibility': 1,
          'utterly': 1,
          'unconvincing': 1,
          'unbelievable': 1,
          'nmost': 1,
          'either': 1,
          'atrociously': 1,
          'acted': 1,
          'underdeveloped': 1,
          'superfluous': 1,
          'nwilliam': 1,
          'forsythe': 1,
          'example': 1,
          'painfully': 1,
          'bad': 1,
          'arthur': 1,
          'kressler': 1,
          'wholesome': 1,
          'bythebook': 1,
          'fbi': 1,
          'agent': 1,
          'whos': 1,
          'offended': 1,
          'foul': 1,
          'language': 1,
          'unorthodox': 1,
          'nforsythes': 1,
          'lame': 1,
          'performance': 1,
          'corny': 1,
          'dialogue': 1,
          'makes': 1,
          'unbearable': 1,
          'marks': 1,
          'motion': 1,
          'picture': 1,
          'debut': 1,
          'tim': 1,
          'reid': 1,
          'wkrp': 1,
          'cincinnati': 1,
          'franks': 1,
          'place': 1,
          'talents': 1,
          'completely': 1,
          'wasted': 1,
          'cliched': 1,
          'contrived': 1,
          'chief': 1,
          'officer': 1,
          'squadron': 1,
          'cops': 1,
          'help': 1,
          'nail': 1,
          'villains': 1,
          'sole': 1,
          'function': 1,
          'penelope': 1,
          'ann': 1,
          'millers': 1,
          'give': 1,
          'excuse': 1,
          'include': 1,
          'gratuitous': 1,
          'could': 1,
          'care': 1,
          'films': 1,
          'refers': 1,
          'virtue': 1,
          'believe': 1,
          'overcome': 1,
          'limitations': 1,
          'pitiful': 1,
          'njohnson': 1,
          'succeeds': 1,
          'giving': 1,
          'sarcastic': 1,
          'sense': 1,
          'humor': 1,
          'hint': 1,
          'depth': 1,
          'pessimistic': 1,
          'occasionally': 1,
          'bring': 1,
          'nand': 1,
          'admit': 1,
          'moments': 1,
          'funniest': 1,
          'throwingup': 1,
          'criminal': 1,
          'interrogates': 1,
          'barf': 1,
          'highlight': 1,
          'know': 1,
          'trouble': 1,
          'involves': 1,
          'psychological': 1,
          'examination': 1,
          'cant': 1,
          'keep': 1,
          'straight': 1,
          'face': 1,
          'psychiatrist': 1,
          'resembles': 1,
          'woody': 1,
          'allen': 1,
          'funny': 1,
          'scenes': 1,
          'couple': 1,
          'good': 1,
          'make': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'hard': 5,
          'slater': 5,
          'freeman': 4,
          'films': 4,
          'enough': 4,
          'would': 4,
          'rain': 4,
          'john': 4,
          'dam': 3,
          'somewhat': 3,
          'morgan': 3,
          'town': 3,
          'nbut': 3,
          'three': 3,
          'million': 3,
          'dollars': 3,
          'van': 3,
          'may': 3,
          'well': 3,
          'could': 3,
          'screen': 3,
          'broken': 3,
          'arrow': 3,
          'travolta': 3,
          'mind': 2,
          'bunch': 2,
          'lies': 2,
          'huntingburg': 2,
          'store': 2,
          'even': 2,
          'rains': 2,
          'plot': 2,
          'dont': 2,
          'cast': 2,
          'money': 2,
          'sheriff': 2,
          'flood': 2,
          'started': 2,
          'presumably': 2,
          'water': 2,
          'ni': 2,
          'never': 2,
          'know': 2,
          'tom': 2,
          'christian': 2,
          'doesnt': 2,
          'nthe': 2,
          'local': 2,
          'character': 2,
          'definite': 2,
          'slightly': 2,
          'enjoyable': 2,
          'time': 2,
          'much': 2,
          'one': 2,
          'achieved': 2,
          'since': 2,
          'action': 2,
          'really': 2,
          'said': 1,
          'order': 1,
          'truly': 1,
          'enjoy': 1,
          'todays': 1,
          'movies': 1,
          'novels': 1,
          'must': 1,
          'suspend': 1,
          'disbelief': 1,
          'nhowever': 1,
          'distinct': 1,
          'separation': 1,
          'opening': 1,
          'ridiculous': 1,
          'situations': 1,
          'believing': 1,
          'flat': 1,
          'nit': 1,
          'came': 1,
          'surprise': 1,
          'learn': 1,
          'indiana': 1,
          'set': 1,
          'mcdonalds': 1,
          'sears': 1,
          'statue': 1,
          'man': 1,
          'horse': 1,
          'close': 1,
          'neven': 1,
          'ignore': 1,
          'white': 1,
          'though': 1,
          'crucial': 1,
          'still': 1,
          'things': 1,
          'gel': 1,
          'nfirstly': 1,
          'possibly': 1,
          'greatest': 1,
          'actor': 1,
          'alive': 1,
          'driving': 1,
          'miss': 1,
          'daisy': 1,
          'shawshank': 1,
          'redemption': 1,
          'se7en': 1,
          'shifty': 1,
          'goon': 1,
          'intent': 1,
          'stealing': 1,
          'healthy': 1,
          'retirement': 1,
          'nhe': 1,
          '_should_': 1,
          'played': 1,
          'experienced': 1,
          'intriguing': 1,
          'policeman': 1,
          'nas': 1,
          'massive': 1,
          'accident': 1,
          'overwhelms': 1,
          'residents': 1,
          'flee': 1,
          'level': 1,
          'steadily': 1,
          'increases': 1,
          'say': 1,
          'simply': 1,
          'happened': 1,
          'seems': 1,
          'tad': 1,
          'strange': 1,
          'entire': 1,
          'exception': 1,
          'folk': 1,
          'get': 1,
          'introduced': 1,
          'along': 1,
          'way': 1,
          'vanish': 1,
          'actually': 1,
          'nether': 1,
          'less': 1,
          'armored': 1,
          'guard': 1,
          'couriers': 1,
          'uncle': 1,
          'carrying': 1,
          'back': 1,
          'nwith': 1,
          'heavy': 1,
          'rainstorm': 1,
          'causing': 1,
          'depressing': 1,
          'conditions': 1,
          'slippery': 1,
          'roads': 1,
          'take': 1,
          'long': 1,
          'end': 1,
          'stuck': 1,
          'amongst': 1,
          'mud': 1,
          'side': 1,
          'road': 1,
          'njim': 1,
          'small': 1,
          'gang': 1,
          'thieves': 1,
          'locate': 1,
          'attempt': 1,
          'steal': 1,
          'course': 1,
          'willing': 1,
          'save': 1,
          'day': 1,
          'takes': 1,
          'hides': 1,
          'elsewhere': 1,
          'randy': 1,
          'quaid': 1,
          'remember': 1,
          'drunken': 1,
          'pilot': 1,
          'id4': 1,
          'couple': 1,
          'police': 1,
          'men': 1,
          'investigate': 1,
          'situation': 1,
          'morals': 1,
          'soon': 1,
          'overpowered': 1,
          'greediness': 1,
          'contemplates': 1,
          'heshe': 1,
          'share': 1,
          'ndirector': 1,
          'mikael': 1,
          'salomon': 1,
          'made': 1,
          'sure': 1,
          'ends': 1,
          'turning': 1,
          'everything': 1,
          'topsyturvy': 1,
          'whilst': 1,
          'first': 1,
          'appear': 1,
          'goodies': 1,
          'versus': 1,
          'baddies': 1,
          'numerous': 1,
          'twists': 1,
          'make': 1,
          'experience': 1,
          'interesting': 1,
          'changes': 1,
          'occur': 1,
          'far': 1,
          'late': 1,
          'affect': 1,
          'nhard': 1,
          'continuos': 1,
          'corniness': 1,
          'lack': 1,
          'originality': 1,
          'washes': 1,
          'whatever': 1,
          'hope': 1,
          'script': 1,
          'although': 1,
          'appealing': 1,
          'stars': 1,
          'act': 1,
          'par': 1,
          'nnot': 1,
          'stage': 1,
          'capturing': 1,
          'fabulous': 1,
          'battle': 1,
          'left': 1,
          'reminisce': 1,
          'dared': 1,
          'something': 1,
          'different': 1,
          'expected': 1,
          'nsuch': 1,
          'titles': 1,
          'faceoff': 1,
          'nicholas': 1,
          'cage': 1,
          'come': 1,
          'mastered': 1,
          'silver': 1,
          'confrontations': 1,
          'nstrangely': 1,
          'directed': 1,
          'woo': 1,
          'star': 1,
          'nwe': 1,
          'forgive': 1,
          'giving': 1,
          'disappointing': 1,
          'performance': 1,
          'newish': 1,
          'genre': 1,
          'amount': 1,
          'crummy': 1,
          'liners': 1,
          'reduced': 1,
          'personality': 1,
          'added': 1,
          'nif': 1,
          'asked': 1,
          'whether': 1,
          'perform': 1,
          'substantially': 1,
          'boost': 1,
          'movie': 1,
          'prior': 1,
          'release': 1,
          'answer': 1,
          'excuse': 1,
          '_can_': 1,
          'better': 1,
          'believe': 1,
          'rent': 1,
          'copy': 1,
          'video': 1,
          'nalthough': 1,
          'works': 1,
          'start': 1,
          'somehow': 1,
          'felt': 1,
          'feelings': 1,
          'missed': 1,
          'opportunity': 1,
          'credits': 1,
          'filled': 1,
          'addition': 1,
          'enticing': 1,
          'subplot': 1,
          'given': 1,
          'breathe': 1,
          'rather': 1,
          'try': 1,
          'cram': 1,
          '96': 1,
          'minutes': 1,
          'disaster': 1,
          'story': 1,
          'cant': 1,
          'handle': 1,
          'anything': 1,
          'else': 1,
          'ndespite': 1,
          'fact': 1,
          'fails': 1,
          'almost': 1,
          'every': 1,
          'account': 1,
          'standards': 1,
          'low': 1,
          'find': 1,
          'mildly': 1,
          'nno': 1,
          'creative': 1,
          'flair': 1,
          'inventive': 1,
          'scenes': 1,
          'means': 1,
          'stand': 1,
          'many': 1,
          'competitors': 1,
          'matter': 1,
          'last': 1,
          'thing': 1,
          'want': 1,
          'shelling': 1,
          '8': 1,
          '50': 1,
          'compare': 1,
          'nneg': 1}),
 Counter({'nell': 6,
          'house': 4,
          'one': 4,
          'new': 3,
          'haunting': 3,
          'much': 3,
          'hill': 3,
          'neeson': 3,
          'life': 3,
          'de': 3,
          'bont': 3,
          'houses': 2,
          'jacksons': 2,
          'nthe': 2,
          'dont': 2,
          'shout': 2,
          'taylor': 2,
          'zetajones': 2,
          'luke': 2,
          'three': 2,
          'marrow': 2,
          'real': 2,
          'even': 2,
          'scenes': 2,
          'mansion': 2,
          'character': 2,
          'nas': 2,
          'n': 2,
          'foster': 2,
          'kane': 2,
          'meets': 2,
          'munsters': 2,
          'would': 2,
          'hes': 2,
          'nhis': 2,
          'ni': 2,
          'enjoyable': 2,
          'mean': 2,
          'suggest': 2,
          'born': 1,
          'bad': 1,
          'goes': 1,
          'hauntings': 1,
          'tag': 1,
          'line': 1,
          'must': 1,
          'add': 1,
          'movies': 1,
          'nnothing': 1,
          'short': 1,
          'hiring': 1,
          'cast': 1,
          'literate': 1,
          'screenwriter': 1,
          'director': 1,
          'could': 1,
          'saved': 1,
          'tragically': 1,
          'misguided': 1,
          'adaptation': 1,
          'meritorious': 1,
          'novel': 1,
          'late': 1,
          'entry': 1,
          'summer': 1,
          'dreck': 1,
          'slick': 1,
          'creepy': 1,
          'seemingly': 1,
          'endless': 1,
          'stream': 1,
          'digital': 1,
          'trickery': 1,
          'spooky': 1,
          'ooky': 1,
          'sound': 1,
          'effects': 1,
          'frighten': 1,
          'numb': 1,
          'audience': 1,
          'submissionthe': 1,
          'film': 1,
          'like': 1,
          'rube': 1,
          'goldberg': 1,
          'contraption': 1,
          'rigged': 1,
          'boo': 1,
          'nfragile': 1,
          'bisexual': 1,
          'theo': 1,
          'smiley': 1,
          'wilson': 1,
          'insomniacs': 1,
          'gather': 1,
          'reputedly': 1,
          'possessed': 1,
          'extended': 1,
          'study': 1,
          'sleep': 1,
          'disorders': 1,
          'hosted': 1,
          'professor': 1,
          'nmarrows': 1,
          'secretly': 1,
          'gathering': 1,
          'data': 1,
          'respective': 1,
          'paranoid': 1,
          'responses': 1,
          'recount': 1,
          'bleak': 1,
          'history': 1,
          'nhes': 1,
          'prepared': 1,
          'apparitions': 1,
          'terrorize': 1,
          'crew': 1,
          'especially': 1,
          'ancestral': 1,
          'connection': 1,
          'manors': 1,
          'previous': 1,
          'inhabitants': 1,
          'ntaylor': 1,
          'thoroughly': 1,
          'insufferable': 1,
          'first': 1,
          'bigbudget': 1,
          'lead': 1,
          'nfor': 1,
          'starters': 1,
          'consistently': 1,
          'dour': 1,
          'expression': 1,
          'sucks': 1,
          'early': 1,
          'introduced': 1,
          'funhouse': 1,
          'trappings': 1,
          'nher': 1,
          'supposed': 1,
          'depressed': 1,
          'tended': 1,
          'unloving': 1,
          'mother': 1,
          'many': 1,
          'years': 1,
          'plays': 1,
          'supernaturally': 1,
          'lame': 1,
          'alternately': 1,
          'grouchy': 1,
          'mopey': 1,
          'wiggy': 1,
          'pathetic': 1,
          'kept': 1,
          'wondering': 1,
          'characters': 1,
          'didnt': 1,
          'ditch': 1,
          'bitch': 1,
          'obscenely': 1,
          'photogenic': 1,
          'breezes': 1,
          'wink': 1,
          'smile': 1,
          'takes': 1,
          'scenery': 1,
          'nunfortunately': 1,
          'shes': 1,
          'saddled': 1,
          'unlikely': 1,
          'dialogue': 1,
          'screenplay': 1,
          'offer': 1,
          'ntheos': 1,
          'assessment': 1,
          'love': 1,
          'nsort': 1,
          'charles': 1,
          'nwho': 1,
          'earth': 1,
          'say': 1,
          'place': 1,
          'citizen': 1,
          'furthermore': 1,
          'gladly': 1,
          'spend': 1,
          'single': 1,
          'night': 1,
          'befitting': 1,
          'description': 1,
          'nboth': 1,
          'actresses': 1,
          'fare': 1,
          'better': 1,
          'looks': 1,
          'embarrassed': 1,
          'part': 1,
          'ensemble': 1,
          'good': 1,
          'reason': 1,
          'bland': 1,
          'puts': 1,
          'dr': 1,
          'pulls': 1,
          'old': 1,
          'academic': 1,
          'bait': 1,
          'switch': 1,
          'subjects': 1,
          'breaks': 1,
          'confesses': 1,
          'second': 1,
          'accused': 1,
          'nlater': 1,
          'risks': 1,
          'climbing': 1,
          'crumbling': 1,
          'stairwell': 1,
          'save': 1,
          'amusing': 1,
          'hear': 1,
          'repeatedly': 1,
          'given': 1,
          'starring': 1,
          'role': 1,
          '1994': 1,
          'jodie': 1,
          'vehicle': 1,
          'name': 1,
          'nwhy': 1,
          'nice': 1,
          'helpful': 1,
          'redemptive': 1,
          'researcher': 1,
          'absent': 1,
          'ethics': 1,
          'start': 1,
          'well': 1,
          'designed': 1,
          'eugenio': 1,
          'zanetti': 1,
          'sets': 1,
          'obsessively': 1,
          'detailed': 1,
          'cgi': 1,
          'kicks': 1,
          'seem': 1,
          'alive': 1,
          'never': 1,
          'quite': 1,
          'still': 1,
          'beef': 1,
          'aspect': 1,
          'production': 1,
          'used': 1,
          'exterior': 1,
          'shots': 1,
          'nottinghamshires': 1,
          'harlaxton': 1,
          'manor': 1,
          'vast': 1,
          'trouble': 1,
          'believing': 1,
          'company': 1,
          'matter': 1,
          'running': 1,
          'away': 1,
          'ghosts': 1,
          'goblins': 1,
          'always': 1,
          'finish': 1,
          'locations': 1,
          'established': 1,
          'act': 1,
          'action': 1,
          'confined': 1,
          'wing': 1,
          'neighty': 1,
          'million': 1,
          'dollars': 1,
          'spent': 1,
          'despite': 1,
          'powerhouse': 1,
          'box': 1,
          'office': 1,
          'debut': 1,
          'doubt': 1,
          'recoup': 1,
          'costs': 1,
          'including': 1,
          'marketing': 1,
          'domestically': 1,
          'nthank': 1,
          'jan': 1,
          'proving': 1,
          'third': 1,
          'time': 1,
          'speed': 1,
          'fluke': 1,
          'actually': 1,
          'served': 1,
          'another': 1,
          'ride': 1,
          'sans': 1,
          'thrill': 1,
          'images': 1,
          'welllit': 1,
          'though': 1,
          'unmistakable': 1,
          'theredone': 1,
          'quality': 1,
          'fact': 1,
          'whole': 1,
          'sequences': 1,
          'mention': 1,
          'cloaked': 1,
          'airy': 1,
          'ghoul': 1,
          'owns': 1,
          'climax': 1,
          'feel': 1,
          'lifted': 1,
          'smarter': 1,
          'infinitely': 1,
          'spectacle': 1,
          'summers': 1,
          'back': 1,
          'peter': 1,
          'frighteners': 1,
          'plagiarist': 1,
          'hack': 1,
          'found': 1,
          'ways': 1,
          'give': 1,
          'us': 1,
          'chills': 1,
          'nneg': 1}),
 Counter({'fight': 7,
          'play': 5,
          'bone': 5,
          'nthe': 5,
          'one': 4,
          'two': 4,
          'vince': 4,
          'film': 4,
          'movie': 3,
          'men': 3,
          'us': 3,
          'harrelson': 3,
          'caesar': 3,
          'banderas': 3,
          'vegas': 3,
          'title': 3,
          'life': 3,
          'time': 3,
          'actually': 3,
          'run': 3,
          'good': 2,
          'interesting': 2,
          'ron': 2,
          'shelton': 2,
          'cant': 2,
          'rocky': 2,
          'nrocky': 2,
          'christian': 2,
          'achieved': 2,
          'nboth': 2,
          'promoters': 2,
          'need': 2,
          'order': 2,
          'make': 2,
          'way': 2,
          'mr': 2,
          'past': 2,
          'know': 2,
          'nmr': 2,
          'screen': 2,
          'another': 2,
          'weak': 2,
          'characters': 2,
          'nbut': 2,
          'well': 2,
          'nas': 2,
          'phrase': 2,
          'principle': 2,
          'ye': 2,
          'lives': 2,
          'punchdrunk': 1,
          'mess': 1,
          'ncontaining': 1,
          'cast': 1,
          'awful': 1,
          'acting': 1,
          'premise': 1,
          'terrible': 1,
          'execution': 1,
          'white': 1,
          'jump': 1,
          'gives': 1,
          'story': 1,
          '1': 1,
          'boudreau': 1,
          'woody': 1,
          'edtv': 1,
          'bald': 1,
          'tattooed': 1,
          'newly': 1,
          'converted': 1,
          'whose': 1,
          'idea': 1,
          'christianity': 1,
          'using': 1,
          'name': 1,
          'christ': 1,
          'curse': 1,
          'word': 1,
          'nsomething': 1,
          'yet': 1,
          'successfully': 1,
          '2': 1,
          'dominguez': 1,
          'antonio': 1,
          '13th': 1,
          'warrior': 1,
          'best': 1,
          'friend': 1,
          'currently': 1,
          'dating': 1,
          'vinces': 1,
          'exgirlfriend': 1,
          'grace': 1,
          'nearing': 1,
          'end': 1,
          'almost': 1,
          'careers': 1,
          'fluke': 1,
          'provides': 1,
          'redemptive': 1,
          'opportunity': 1,
          'nwhen': 1,
          'fighters': 1,
          'undercard': 1,
          'based': 1,
          'mike': 1,
          'tyson': 1,
          'become': 1,
          'incapacitated': 1,
          'find': 1,
          'quick': 1,
          'replacement': 1,
          'nour': 1,
          'boys': 1,
          'tapped': 1,
          'winner': 1,
          'promised': 1,
          'shot': 1,
          'future': 1,
          'divided': 1,
          'sections': 1,
          'nat': 1,
          'first': 1,
          'buddy': 1,
          'road': 1,
          'picture': 1,
          'heroes': 1,
          'graces': 1,
          'sassy': 1,
          'grassy': 1,
          'green': 1,
          'muscle': 1,
          'car': 1,
          'travel': 1,
          'desert': 1,
          'scheduled': 1,
          'day': 1,
          'nalong': 1,
          'learn': 1,
          'pasts': 1,
          'opportunities': 1,
          'come': 1,
          'gone': 1,
          'nonce': 1,
          'settles': 1,
          'effectively': 1,
          'staged': 1,
          'sequences': 1,
          'provided': 1,
          'stunning': 1,
          'characterizations': 1,
          'wed': 1,
          'work': 1,
          'uncomfortably': 1,
          'awkward': 1,
          'apparently': 1,
          'never': 1,
          'gotten': 1,
          'firm': 1,
          'handle': 1,
          'conversion': 1,
          'angle': 1,
          'simply': 1,
          'falls': 1,
          'flat': 1,
          'unbelievable': 1,
          'uncharacteristically': 1,
          'noncharismatic': 1,
          'nweak': 1,
          'ineffectual': 1,
          'little': 1,
          'performance': 1,
          'actors': 1,
          'involved': 1,
          'merely': 1,
          'stereotypes': 1,
          'sort': 1,
          'ntom': 1,
          'sizemore': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'robert': 1,
          'wagner': 1,
          'austin': 1,
          'powers': 1,
          'ii': 1,
          'spy': 1,
          'shagged': 1,
          'richard': 1,
          'masur': 1,
          'fire': 1,
          'crooked': 1,
          'lucy': 1,
          'liu': 1,
          'payback': 1,
          'sexstarved': 1,
          'hitchhiker': 1,
          'looking': 1,
          'lolita': 1,
          'davidovich': 1,
          'gods': 1,
          'monsters': 1,
          'shared': 1,
          'girlfriend': 1,
          'mind': 1,
          'boxer': 1,
          'prefers': 1,
          'nbecause': 1,
          'lack': 1,
          'chemistry': 1,
          'flounders': 1,
          'appeal': 1,
          'dead': 1,
          'fish': 1,
          'boxing': 1,
          'match': 1,
          'begins': 1,
          'even': 1,
          'outcome': 1,
          'predictably': 1,
          'obvious': 1,
          'suspense': 1,
          'factor': 1,
          'negated': 1,
          'relegated': 1,
          'watching': 1,
          'pummel': 1,
          'nwriterdirector': 1,
          'clearly': 1,
          'spent': 1,
          'much': 1,
          'orchestrating': 1,
          'sequence': 1,
          'photographed': 1,
          'wellchoreographed': 1,
          'welledited': 1,
          'wellperformed': 1,
          'nif': 1,
          'detailed': 1,
          'attention': 1,
          'diverted': 1,
          'remaining': 1,
          'parts': 1,
          'scenes': 1,
          'require': 1,
          'talk': 1,
          'laughable': 1,
          'aspect': 1,
          'reference': 1,
          'seeing': 1,
          'something': 1,
          'quitting': 1,
          'youve': 1,
          'desired': 1,
          'goal': 1,
          'nthat': 1,
          'biblical': 1,
          'n': 1,
          'race': 1,
          'receiveth': 1,
          'prize': 1,
          'nso': 1,
          'may': 1,
          'obtain': 1,
          'n1': 1,
          'corinthians': 1,
          '9': 1,
          '24': 1,
          'kjv': 1,
          'nachieving': 1,
          'anything': 1,
          'worthy': 1,
          'requires': 1,
          'playing': 1,
          'nwe': 1,
          'develop': 1,
          'fully': 1,
          'persuaded': 1,
          'mindsets': 1,
          'commitment': 1,
          'levels': 1,
          'endure': 1,
          'persevere': 1,
          'obstacles': 1,
          'distractions': 1,
          'lay': 1,
          'stated': 1,
          'objectives': 1,
          'nthis': 1,
          'true': 1,
          'practical': 1,
          'matters': 1,
          'physical': 1,
          'developing': 1,
          'maturity': 1,
          'spiritual': 1,
          'hardly': 1,
          'worth': 1,
          'words': 1,
          'live': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'zetajones': 6,
          'bad': 4,
          'movie': 4,
          'macdougal': 4,
          'nthe': 4,
          'entrapment': 4,
          'time': 3,
          'wrong': 3,
          'baker': 3,
          'various': 3,
          'picture': 3,
          'mask': 3,
          'hollywood': 2,
          'director': 2,
          'good': 2,
          'really': 2,
          'production': 2,
          'budget': 2,
          'jon': 2,
          'amiel': 2,
          'eighty': 2,
          'million': 2,
          'dollar': 2,
          'nnow': 2,
          'whats': 2,
          'connery': 2,
          'seen': 2,
          'much': 2,
          'plot': 2,
          'going': 2,
          'thing': 2,
          'think': 2,
          'youd': 2,
          'action': 2,
          'scenes': 2,
          'screen': 2,
          'know': 2,
          'exactly': 2,
          'none': 2,
          'scene': 2,
          'room': 2,
          'great': 2,
          'also': 2,
          'real': 1,
          'tangible': 1,
          'proof': 1,
          'swear': 1,
          'lot': 1,
          'producers': 1,
          'adamantly': 1,
          'believe': 1,
          'take': 1,
          'script': 1,
          'written': 1,
          'writer': 1,
          'give': 1,
          'project': 1,
          'equally': 1,
          'actually': 1,
          'possible': 1,
          'make': 1,
          'nusing': 1,
          'logic': 1,
          'needs': 1,
          'done': 1,
          'change': 1,
          'cast': 1,
          'bunch': 1,
          'superfamous': 1,
          'actors': 1,
          'provide': 1,
          'almost': 1,
          'unlimited': 1,
          'nthis': 1,
          'way': 1,
          'fathom': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'hired': 1,
          'order': 1,
          'direct': 1,
          'waste': 1,
          'counting': 1,
          'took': 1,
          'get': 1,
          'theatre': 1,
          'continue': 1,
          'ferociously': 1,
          'attack': 1,
          'want': 1,
          'point': 1,
          'one': 1,
          'reasons': 1,
          'fails': 1,
          'miserably': 1,
          'potential': 1,
          'exciting': 1,
          'thriller': 1,
          'ncatherine': 1,
          'plays': 1,
          'virginia': 1,
          'insurance': 1,
          'investigator': 1,
          'tracking': 1,
          'infamous': 1,
          'art': 1,
          'thief': 1,
          'named': 1,
          'robert': 1,
          'sean': 1,
          'nif': 1,
          'youve': 1,
          'ever': 1,
          'blockbuster': 1,
          'dont': 1,
          'spend': 1,
          'frivolous': 1,
          'details': 1,
          'two': 1,
          'team': 1,
          'jobs': 1,
          'stealing': 1,
          'things': 1,
          'purposes': 1,
          'problem': 1,
          'come': 1,
          'weve': 1,
          'billion': 1,
          'times': 1,
          'doesnt': 1,
          'break': 1,
          'new': 1,
          'ground': 1,
          'bigbudgethollywoodaction': 1,
          'genre': 1,
          'result': 1,
          'entire': 1,
          'feels': 1,
          'contrived': 1,
          'nim': 1,
          'completely': 1,
          'honest': 1,
          'pretty': 1,
          'keeping': 1,
          'awake': 1,
          'throughout': 1,
          'runtime': 1,
          'looking': 1,
          'catherine': 1,
          'may': 1,
          'compliment': 1,
          'ms': 1,
          'certainly': 1,
          'isnt': 1,
          'either': 1,
          'writers': 1,
          'nearly': 1,
          'clever': 1,
          'njust': 1,
          'profound': 1,
          'thought': 1,
          'inject': 1,
          'lecture': 1,
          'semantic': 1,
          'difference': 1,
          'blackmail': 1,
          'nwith': 1,
          'would': 1,
          'least': 1,
          'feature': 1,
          'edgeofyour': 1,
          'seat': 1,
          'breathtaking': 1,
          'special': 1,
          'fx': 1,
          'nwell': 1,
          'present': 1,
          'takes': 1,
          'place': 1,
          'huge': 1,
          'skyscraper': 1,
          'relatively': 1,
          'unspectacular': 1,
          'nunfortunately': 1,
          'involved': 1,
          'die': 1,
          'hard': 1,
          'narrowly': 1,
          'beat': 1,
          '11': 1,
          'years': 1,
          'reality': 1,
          '15': 1,
          'minutes': 1,
          'watching': 1,
          'happen': 1,
          'despite': 1,
          'rather': 1,
          'pathetic': 1,
          'attempts': 1,
          'screenplay': 1,
          'throw': 1,
          'twists': 1,
          'nmany': 1,
          'seem': 1,
          'exist': 1,
          'merely': 1,
          'reason': 1,
          'outfit': 1,
          'extremely': 1,
          'tightfitting': 1,
          'clothing': 1,
          'particular': 1,
          'features': 1,
          'crawling': 1,
          'around': 1,
          'trying': 1,
          'avoid': 1,
          'laserbeams': 1,
          'tries': 1,
          'steal': 1,
          'ancient': 1,
          'chinese': 1,
          'nnothing': 1,
          'entered': 1,
          'floor': 1,
          'knew': 1,
          'didnt': 1,
          'tunnel': 1,
          'directly': 1,
          'instead': 1,
          'side': 1,
          'nill': 1,
          'tell': 1,
          'excuse': 1,
          'photograph': 1,
          'posterior': 1,
          'slides': 1,
          'underneath': 1,
          'beams': 1,
          'allows': 1,
          'second': 1,
          'exact': 1,
          'rehearsal': 1,
          'nving': 1,
          'rhames': 1,
          'makes': 1,
          'appearance': 1,
          'though': 1,
          'presence': 1,
          'although': 1,
          'interesting': 1,
          'character': 1,
          'even': 1,
          'rescue': 1,
          'depths': 1,
          'boring': 1,
          'abyss': 1,
          'concept': 1,
          'invented': 1,
          'describe': 1,
          'last': 1,
          'complaint': 1,
          'littered': 1,
          'instances': 1,
          'slip': 1,
          'shadow': 1,
          'behind': 1,
          'building': 1,
          'becomes': 1,
          'obstructed': 1,
          'moving': 1,
          'vehicle': 1,
          'next': 1,
          'shot': 1,
          'hell': 1,
          'spontaneously': 1,
          'disappear': 1,
          'ninjalike': 1,
          'fashion': 1,
          'ni': 1,
          'patting': 1,
          'back': 1,
          'thinking': 1,
          'itll': 1,
          'leave': 1,
          'audience': 1,
          'wondering': 1,
          'days': 1,
          'nwe': 1,
          'called': 1,
          'editing': 1,
          'nneg': 1}),
 Counter({'analyze': 5,
          'think': 5,
          'movie': 5,
          'nit': 4,
          'deniro': 4,
          'ni': 4,
          'character': 4,
          'funny': 4,
          'ago': 3,
          'nbut': 3,
          'parody': 3,
          'mob': 3,
          'know': 3,
          'one': 3,
          'saw': 2,
          'must': 2,
          'thought': 2,
          'looked': 2,
          'nand': 2,
          'bad': 2,
          'thing': 2,
          'deadon': 2,
          'nwell': 2,
          'good': 2,
          'expression': 2,
          'says': 2,
          'always': 2,
          'badly': 2,
          'plays': 2,
          'boss': 2,
          'comedy': 2,
          'nif': 2,
          'would': 2,
          'though': 2,
          'laughs': 2,
          'nthis': 2,
          'doesnt': 2,
          'never': 2,
          'scene': 2,
          'nits': 2,
          'really': 2,
          'go': 2,
          'nthe': 2,
          'formula': 2,
          'times': 2,
          'laughing': 2,
          'originally': 1,
          'trailer': 1,
          'months': 1,
          'admit': 1,
          'kind': 1,
          'lame': 1,
          'commercials': 1,
          'started': 1,
          'popping': 1,
          'week': 1,
          'two': 1,
          'outright': 1,
          'finally': 1,
          'opened': 1,
          'days': 1,
          'odd': 1,
          'happened': 1,
          'got': 1,
          'great': 1,
          'reviews': 1,
          'ncritics': 1,
          'proclaiming': 1,
          'hilarious': 1,
          'movies': 1,
          'praise': 1,
          'like': 1,
          'figured': 1,
          'headed': 1,
          'theater': 1,
          'nyou': 1,
          'trust': 1,
          'gut': 1,
          'instincts': 1,
          'turns': 1,
          'valid': 1,
          'ever': 1,
          'gave': 1,
          'credit': 1,
          'n': 1,
          'slow': 1,
          'unfunny': 1,
          'acted': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'top': 1,
          'ten': 1,
          'greatest': 1,
          'actors': 1,
          'century': 1,
          'league': 1,
          'problem': 1,
          'didnt': 1,
          'quite': 1,
          'approach': 1,
          'material': 1,
          'nhe': 1,
          'paull': 1,
          'vitti': 1,
          'somewhere': 1,
          'realm': 1,
          'drama': 1,
          'played': 1,
          'straight': 1,
          'along': 1,
          'lines': 1,
          'leslie': 1,
          'nielson': 1,
          'naked': 1,
          'gun': 1,
          'series': 1,
          'probably': 1,
          'lot': 1,
          'successful': 1,
          'nas': 1,
          'completely': 1,
          'serious': 1,
          'moments': 1,
          'others': 1,
          'work': 1,
          'creates': 1,
          'uneven': 1,
          'breaks': 1,
          'mold': 1,
          'paced': 1,
          'takes': 1,
          'crawls': 1,
          'another': 1,
          'without': 1,
          'forward': 1,
          'momentum': 1,
          'blame': 1,
          'placed': 1,
          'script': 1,
          'obvious': 1,
          'writer': 1,
          'idea': 1,
          'faces': 1,
          'breakdown': 1,
          'needs': 1,
          'services': 1,
          'psychiatrist': 1,
          'established': 1,
          'anywhere': 1,
          'film': 1,
          'seems': 1,
          'billy': 1,
          'crystal': 1,
          'forces': 1,
          'much': 1,
          'wackiness': 1,
          'ensues': 1,
          'sorts': 1,
          'repeated': 1,
          'several': 1,
          'throughout': 1,
          'nive': 1,
          'said': 1,
          'ill': 1,
          'say': 1,
          'matters': 1,
          'whether': 1,
          'pacing': 1,
          'acting': 1,
          'wouldnt': 1,
          'bothered': 1,
          'busy': 1,
          'notice': 1,
          'chuckled': 1,
          'godfather': 1,
          'nsadly': 1,
          'dont': 1,
          'anyone': 1,
          'audience': 1,
          'realized': 1,
          'sense': 1,
          'humour': 1,
          'come': 1,
          'realize': 1,
          'vastly': 1,
          'different': 1,
          'general': 1,
          'population': 1,
          'loathed': 1,
          'theres': 1,
          'something': 1,
          'mary': 1,
          'yet': 1,
          'loved': 1,
          'baseketball': 1,
          'nnow': 1,
          'want': 1,
          'see': 1,
          'office': 1,
          'space': 1,
          'full': 1,
          'genuine': 1,
          'wont': 1,
          'leave': 1,
          'glancing': 1,
          'watch': 1,
          'every': 1,
          '10': 1,
          'minutes': 1,
          'nneg': 1}),
 Counter({'van': 8,
          'damme': 7,
          'film': 5,
          'jeanclaude': 3,
          'knock': 3,
          'schneider': 3,
          'first': 3,
          'within': 3,
          'hong': 3,
          'mindless': 2,
          'fun': 2,
          'latest': 2,
          'nno': 2,
          'expected': 2,
          'nand': 2,
          'whats': 2,
          'nthe': 2,
          'minutes': 2,
          'doesnt': 2,
          'action': 2,
          'around': 2,
          'hark': 2,
          'whose': 2,
          'nif': 2,
          'youre': 2,
          'plot': 2,
          'kong': 2,
          'mael': 2,
          'movies': 1,
          'tend': 1,
          'nothing': 1,
          'else': 1,
          'lot': 1,
          'nhis': 1,
          'skips': 1,
          'part': 1,
          'leaving': 1,
          'wildly': 1,
          'incoherent': 1,
          'exercise': 1,
          'well': 1,
          'simply': 1,
          'nyou': 1,
          'cant': 1,
          'really': 1,
          'blame': 1,
          'one': 1,
          'suspect': 1,
          'ever': 1,
          'muscles': 1,
          'brussels': 1,
          'contribute': 1,
          'heartfelt': 1,
          'performance': 1,
          'brimming': 1,
          'introspection': 1,
          'delicate': 1,
          'shades': 1,
          'gray': 1,
          'even': 1,
          'sidekick': 1,
          'costar': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'alumnus': 1,
          'rob': 1,
          'makin': 1,
          'copies': 1,
          'although': 1,
          'neither': 1,
          'appear': 1,
          'want': 1,
          'role': 1,
          'straight': 1,
          'man': 1,
          'problem': 1,
          'direction': 1,
          'five': 1,
          'incomprehensible': 1,
          'goes': 1,
          'downhill': 1,
          'nfive': 1,
          'hundred': 1,
          'characters': 1,
          'seems': 1,
          'introduced': 1,
          'fifteen': 1,
          'nvan': 1,
          'land': 1,
          'kick': 1,
          'thirtytoo': 1,
          'late': 1,
          'fansand': 1,
          'time': 1,
          'hour': 1,
          'mark': 1,
          'rolled': 1,
          'jaw': 1,
          'cup': 1,
          'holder': 1,
          'youll': 1,
          'wondering': 1,
          'elected': 1,
          'spend': 1,
          'seven': 1,
          'dollars': 1,
          'mess': 1,
          'ndirector': 1,
          'tsui': 1,
          'previous': 1,
          'dammedennis': 1,
          'rodman': 1,
          'teamed': 1,
          'double': 1,
          'team': 1,
          'films': 1,
          'frenetic': 1,
          'pace': 1,
          'hard': 1,
          'know': 1,
          'going': 1,
          'whos': 1,
          'side': 1,
          'point': 1,
          'nfaster': 1,
          'yell': 1,
          'fruit': 1,
          'stand': 1,
          'nwere': 1,
          'watching': 1,
          'crazed': 1,
          'rickshaw': 1,
          'race': 1,
          'bounced': 1,
          'along': 1,
          'energetic': 1,
          'nwhen': 1,
          'starts': 1,
          'whacking': 1,
          'behind': 1,
          'fourfoot': 1,
          'eel': 1,
          'enthusing': 1,
          'move': 1,
          'beautiful': 1,
          'big': 1,
          'ass': 1,
          'movie': 1,
          'takes': 1,
          'unprecedented': 1,
          'turn': 1,
          'bizarre': 1,
          'nevery': 1,
          'deliver': 1,
          'truly': 1,
          'ingenious': 1,
          'directorial': 1,
          'flourishesinventive': 1,
          'camera': 1,
          'shots': 1,
          'angles': 1,
          'wild': 1,
          'rides': 1,
          'gun': 1,
          'silencers': 1,
          'tops': 1,
          'buildings': 1,
          'sprawling': 1,
          'street': 1,
          'revealing': 1,
          'cutins': 1,
          'framebut': 1,
          'happen': 1,
          'quickly': 1,
          'furious': 1,
          'frame': 1,
          'reference': 1,
          'theyre': 1,
          'wasted': 1,
          'could': 1,
          'slowed': 1,
          'things': 1,
          'minute': 1,
          'interested': 1,
          'better': 1,
          'reading': 1,
          'capsule': 1,
          'review': 1,
          'trying': 1,
          'extract': 1,
          'meaning': 1,
          'onscreen': 1,
          'shenanigans': 1,
          'plays': 1,
          'shady': 1,
          'bluejeans': 1,
          'manufacturer': 1,
          'uncovers': 1,
          'russian': 1,
          'mafia': 1,
          'terrorize': 1,
          'world': 1,
          'nanobombs': 1,
          'hidden': 1,
          'cabbage': 1,
          'patch': 1,
          'knockoffs': 1,
          'nmaybe': 1,
          'nwith': 1,
          'paul': 1,
          'sorvino': 1,
          'na': 1,
          'accurate': 1,
          'summary': 1,
          'would': 1,
          'bums': 1,
          'failing': 1,
          'avoid': 1,
          'large': 1,
          'blatant': 1,
          'cocacola': 1,
          'product': 1,
          'placements': 1,
          'fact': 1,
          'staged': 1,
          'kongs': 1,
          'last': 1,
          'days': 1,
          'british': 1,
          'rule': 1,
          'gets': 1,
          'lip': 1,
          'service': 1,
          'figure': 1,
          'nperhaps': 1,
          'intriguing': 1,
          'credit': 1,
          'ron': 1,
          'russell': 1,
          'composed': 1,
          'frenzied': 1,
          'music': 1,
          'score': 1,
          'nsome': 1,
          'might': 1,
          'remember': 1,
          'brothers': 1,
          '80s': 1,
          'synth': 1,
          'pop': 1,
          'duo': 1,
          'sparks': 1,
          'contributions': 1,
          'confused': 1,
          'accompanying': 1,
          'kimono': 1,
          'house': 1,
          'indeed': 1,
          'nlike': 1,
          'cheap': 1,
          'jeans': 1,
          'pumma': 1,
          'sneakers': 1,
          'manufactured': 1,
          'dammes': 1,
          'real': 1,
          'phony': 1,
          'nneg': 1}),
 Counter({'twilight': 5,
          'harry': 5,
          'script': 4,
          'actors': 3,
          'catherine': 3,
          'jack': 3,
          'hero': 3,
          'nthe': 3,
          'benton': 3,
          'n': 3,
          'every': 3,
          'harrys': 3,
          'also': 3,
          'excop': 2,
          'newman': 2,
          'sarandon': 2,
          'njack': 2,
          'blackmailers': 2,
          'dying': 2,
          'bodies': 2,
          'catherines': 2,
          'cast': 2,
          'like': 2,
          'would': 2,
          'seem': 2,
          'tired': 2,
          'stars': 2,
          'wants': 2,
          'noir': 2,
          'little': 2,
          'russo': 2,
          'try': 2,
          'love': 2,
          'force': 2,
          'exalcoholic': 1,
          'exhusband': 1,
          'exprivateeye': 1,
          'ross': 1,
          'paul': 1,
          'works': 1,
          'pair': 1,
          'aging': 1,
          'hollywood': 1,
          'susan': 1,
          'ames': 1,
          'gene': 1,
          'hackman': 1,
          'blackmailed': 1,
          'asks': 1,
          'deliver': 1,
          'payoff': 1,
          'ninstead': 1,
          'finds': 1,
          'nemmet': 1,
          'walsh': 1,
          'nas': 1,
          'begin': 1,
          'pile': 1,
          'realizes': 1,
          'solve': 1,
          'disappearance': 1,
          'first': 1,
          'husband': 1,
          'twenty': 1,
          'years': 1,
          'earlier': 1,
          'find': 1,
          'whos': 1,
          'willing': 1,
          'kill': 1,
          'keep': 1,
          'secret': 1,
          'buried': 1,
          'nnewman': 1,
          'nhackman': 1,
          'nwith': 1,
          'alist': 1,
          'oscar': 1,
          'laureates': 1,
          'promising': 1,
          'nhowever': 1,
          'predictable': 1,
          'nit': 1,
          'serve': 1,
          'well': 1,
          'tvmovieoftheweek': 1,
          'possibly': 1,
          '1970s': 1,
          'detective': 1,
          'reprising': 1,
          'role': 1,
          'appeal': 1,
          'project': 1,
          'director': 1,
          'robert': 1,
          'nostalgia': 1,
          'much': 1,
          '1940s': 1,
          'film': 1,
          'alan': 1,
          'ladd': 1,
          'dick': 1,
          'powell': 1,
          'nall': 1,
          'standard': 1,
          'tropes': 1,
          'hardboiled': 1,
          'p': 1,
          'namong': 1,
          'rich': 1,
          'beautiful': 1,
          'whose': 1,
          'glamour': 1,
          'hides': 1,
          'sinister': 1,
          'secrets': 1,
          'femme': 1,
          'fatale': 1,
          'tempts': 1,
          'confounds': 1,
          'shadowy': 1,
          'figures': 1,
          'shooting': 1,
          'doorways': 1,
          'dead': 1,
          'confronting': 1,
          'turn': 1,
          'cops': 1,
          'dogging': 1,
          'path': 1,
          'interfering': 1,
          'investigation': 1,
          'offers': 1,
          'originality': 1,
          'coauthors': 1,
          'richard': 1,
          'unaware': 1,
          'original': 1,
          '1948': 1,
          'clich': 1,
          '1998': 1,
          'nelmer': 1,
          'bernsteins': 1,
          'score': 1,
          'hauntingly': 1,
          'melodic': 1,
          'could': 1,
          'drawn': 1,
          'notefornote': 1,
          'vintage': 1,
          'lead': 1,
          'hardnone': 1,
          'three': 1,
          'made': 1,
          'less': 1,
          'full': 1,
          'effort': 1,
          'even': 1,
          'burdened': 1,
          'bad': 1,
          'nthey': 1,
          'invest': 1,
          'line': 1,
          'gesture': 1,
          'meaning': 1,
          'create': 1,
          'convincing': 1,
          'sense': 1,
          'relationships': 1,
          'main': 1,
          'characters': 1,
          'nharry': 1,
          'fond': 1,
          'cancer': 1,
          'jealous': 1,
          'ncatherine': 1,
          'teases': 1,
          'enjoys': 1,
          'attention': 1,
          'real': 1,
          'feelings': 1,
          'hidden': 1,
          'beneath': 1,
          'carefullymaintained': 1,
          'veneer': 1,
          'characterdriven': 1,
          'nobodys': 1,
          'fool': 1,
          'directed': 1,
          'starring': 1,
          'based': 1,
          'novel': 1,
          'gives': 1,
          'work': 1,
          'squanders': 1,
          'fine': 1,
          'supporting': 1,
          'stockard': 1,
          'channing': 1,
          'friend': 1,
          'police': 1,
          'reese': 1,
          'witherspoon': 1,
          'bratty': 1,
          'kid': 1,
          'giancarlo': 1,
          'esposito': 1,
          'humorous': 1,
          'sidekick': 1,
          'john': 1,
          'spencer': 1,
          'nemesis': 1,
          'liev': 1,
          'schreiber': 1,
          'margo': 1,
          'martindale': 1,
          'james': 1,
          'garner': 1,
          'cop': 1,
          'bailed': 1,
          'movie': 1,
          'trouble': 1,
          'nneg': 1}),
 Counter({'seagal': 6,
          'toxic': 3,
          'like': 3,
          'nseagal': 3,
          'epa': 3,
          'nbut': 3,
          'take': 3,
          'film': 2,
          'first': 2,
          'nand': 2,
          'waste': 2,
          'nthis': 2,
          'mining': 2,
          'kentucky': 2,
          'nits': 2,
          'kristopherson': 2,
          'agent': 2,
          'turns': 2,
          'ni': 2,
          'idea': 2,
          'agents': 2,
          'bring': 2,
          'middle': 2,
          'fix': 2,
          'porches': 2,
          'nthe': 2,
          'watching': 2,
          'message': 2,
          'gets': 2,
          'earth': 2,
          'probably': 1,
          'good': 1,
          'reason': 1,
          'warner': 1,
          'bros': 1,
          'studio': 1,
          'chose': 1,
          'allow': 1,
          'critics': 1,
          'view': 1,
          'steven': 1,
          'opened': 1,
          'seeing': 1,
          'piece': 1,
          'know': 1,
          'movie': 1,
          'far': 1,
          'worst': 1,
          'offering': 1,
          'hit': 1,
          'screen': 1,
          'since': 1,
          'possibly': 1,
          'ernest': 1,
          'movies': 1,
          'years': 1,
          'ago': 1,
          'nfire': 1,
          'centers': 1,
          'story': 1,
          'little': 1,
          'town': 1,
          'gods': 1,
          'country': 1,
          'somewhere': 1,
          'eastern': 1,
          'beauty': 1,
          'natural': 1,
          'goodness': 1,
          'slowly': 1,
          'destroyed': 1,
          'uncaring': 1,
          'magnate': 1,
          'kris': 1,
          'constantly': 1,
          'looks': 1,
          'wants': 1,
          'kill': 1,
          'getting': 1,
          'role': 1,
          'nit': 1,
          'hes': 1,
          'filling': 1,
          'mines': 1,
          'throughout': 1,
          'tidy': 1,
          'profit': 1,
          'plays': 1,
          'jack': 1,
          'taggert': 1,
          'aikidoversed': 1,
          'fighting': 1,
          'machine': 1,
          'nno': 1,
          'cia': 1,
          'fbi': 1,
          'nsa': 1,
          'environmental': 1,
          'protection': 1,
          'agency': 1,
          'trained': 1,
          'killers': 1,
          'ntaggert': 1,
          'sent': 1,
          'find': 1,
          'perpetrators': 1,
          'justice': 1,
          'nwritten': 1,
          'someone': 1,
          'named': 1,
          'jeb': 1,
          'could': 1,
          'already': 1,
          'envision': 1,
          'stereotypes': 1,
          'incestuous': 1,
          'relationships': 1,
          'banjopicking': 1,
          'preachers': 1,
          'dumbasnails': 1,
          'rednecks': 1,
          'script': 1,
          'puts': 1,
          'right': 1,
          'smack': 1,
          'dab': 1,
          'scenarios': 1,
          'tries': 1,
          'discreetly': 1,
          'fit': 1,
          'nseagals': 1,
          'disguise': 1,
          'longlength': 1,
          '1000': 1,
          'leather': 1,
          'jacket': 1,
          'get': 1,
          'closer': 1,
          'kinfolk': 1,
          'peoples': 1,
          'free': 1,
          'nthats': 1,
          'another': 1,
          'great': 1,
          'asset': 1,
          'teaching': 1,
          'nslow': 1,
          'plodding': 1,
          'project': 1,
          'total': 1,
          'mess': 1,
          'sometimes': 1,
          'allure': 1,
          'outmaneuver': 1,
          'enemies': 1,
          'outnumber': 1,
          'outgun': 1,
          'seige': 1,
          'nhere': 1,
          'bravado': 1,
          'basically': 1,
          'bullyness': 1,
          'ntownsfolk': 1,
          'foolish': 1,
          'enough': 1,
          'challenge': 1,
          'quickly': 1,
          'subdued': 1,
          'nfight': 1,
          'scenes': 1,
          'quick': 1,
          'senseless': 1,
          'offers': 1,
          'enjoyment': 1,
          'value': 1,
          'whatsoever': 1,
          'soap': 1,
          'box': 1,
          'wears': 1,
          'thin': 1,
          'within': 1,
          '15': 1,
          'minutes': 1,
          'annoying': 1,
          'moment': 1,
          'comes': 1,
          'barges': 1,
          'sunday': 1,
          'church': 1,
          'ceremony': 1,
          'behind': 1,
          'pulpit': 1,
          'beseeches': 1,
          'townsfolk': 1,
          'control': 1,
          'lives': 1,
          'help': 1,
          'clean': 1,
          'environment': 1,
          'epitome': 1,
          'moralistically': 1,
          'mushy': 1,
          'happens': 1,
          'person': 1,
          'responsible': 1,
          'dumping': 1,
          'meets': 1,
          'nkristopherson': 1,
          'asks': 1,
          'much': 1,
          'go': 1,
          'away': 1,
          'gallantly': 1,
          'replies': 1,
          'ill': 1,
          'leave': 1,
          'poison': 1,
          'streams': 1,
          'expecting': 1,
          'patriotic': 1,
          'music': 1,
          'start': 1,
          'blasting': 1,
          'show': 1,
          'fireworks': 1,
          'background': 1,
          'truly': 1,
          'nothing': 1,
          'pompous': 1,
          'showcase': 1,
          'seagals': 1,
          'righteousness': 1,
          'narcissistic': 1,
          'arrogance': 1,
          'vanguard': 1,
          'trying': 1,
          'new': 1,
          'genre': 1,
          'filmplace': 1,
          'envirothriller': 1,
          'deadly': 1,
          'ground': 1,
          'nhowever': 1,
          'never': 1,
          'come': 1,
          'across': 1,
          'poorly': 1,
          'developed': 1,
          'vehicles': 1,
          'nstill': 1,
          'believe': 1,
          'preserving': 1,
          'mother': 1,
          'save': 1,
          '5': 1,
          'please': 1,
          'donate': 1,
          'instead': 1,
          'worthy': 1,
          'environmentally': 1,
          'conscious': 1,
          'charity': 1,
          'nneg': 1}),
 Counter({'real': 4,
          'enough': 4,
          'humor': 4,
          'superficial': 3,
          'meaning': 3,
          'blonde': 3,
          'little': 3,
          'nthe': 3,
          'comedy': 2,
          'nhowever': 2,
          'find': 2,
          'modine': 2,
          'struggling': 2,
          'actor': 2,
          'catherine': 2,
          'keener': 2,
          'best': 2,
          'bob': 2,
          'films': 2,
          'pathetic': 2,
          'makes': 2,
          'sense': 2,
          'completely': 2,
          'plotlines': 2,
          'stuck': 2,
          'stronger': 2,
          'tom': 1,
          'dicillo': 1,
          'directs': 1,
          'people': 1,
          'careers': 1,
          'searching': 1,
          'deeper': 1,
          'wont': 1,
          'much': 1,
          'either': 1,
          'njoe': 1,
          'matthew': 1,
          'claims': 1,
          'one': 1,
          'even': 1,
          'though': 1,
          'credits': 1,
          'belt': 1,
          'nhis': 1,
          'girlfriend': 1,
          'mary': 1,
          'pretensions': 1,
          'career': 1,
          'shes': 1,
          'makeup': 1,
          'artist': 1,
          'working': 1,
          'eccentric': 1,
          'fashion': 1,
          'photographer': 1,
          'blair': 1,
          'marlo': 1,
          'thomas': 1,
          'supermodel': 1,
          'month': 1,
          'sahara': 1,
          'bridgette': 1,
          'wilson': 1,
          'nsahara': 1,
          'acquired': 1,
          'new': 1,
          'age': 1,
          'spirituality': 1,
          'repeated': 1,
          'viewing': 1,
          'mermaid': 1,
          'onagain': 1,
          'offagain': 1,
          'relationship': 1,
          'joes': 1,
          'friend': 1,
          'maxwell': 1,
          'caulfield': 1,
          'gotten': 1,
          'biggest': 1,
          'break': 1,
          'yet': 1,
          'starring': 1,
          'role': 1,
          'soap': 1,
          'opera': 1,
          'opposite': 1,
          'beautiful': 1,
          'kelly': 1,
          'daryl': 1,
          'hannah': 1,
          'may': 1,
          'illusive': 1,
          'woman': 1,
          'hes': 1,
          'always': 1,
          'pursued': 1,
          'nthere': 1,
          'moments': 1,
          'good': 1,
          'stuff': 1,
          'throwaway': 1,
          'details': 1,
          'background': 1,
          'saharas': 1,
          'perfume': 1,
          'ads': 1,
          'depression': 1,
          'state': 1,
          'mind': 1,
          'nbut': 1,
          'superficiality': 1,
          'models': 1,
          'actors': 1,
          'shoot': 1,
          'fish': 1,
          'barrel': 1,
          'nand': 1,
          'unfortunately': 1,
          'forays': 1,
          'outside': 1,
          'realm': 1,
          'ntake': 1,
          'example': 1,
          'framing': 1,
          'device': 1,
          'old': 1,
          'lady': 1,
          'dog': 1,
          'story': 1,
          'serves': 1,
          'absolutely': 1,
          'purpose': 1,
          'tangential': 1,
          'main': 1,
          'movie': 1,
          'nmatthew': 1,
          'sympathetic': 1,
          'characters': 1,
          'film': 1,
          'theyre': 1,
          'boring': 1,
          'nmodine': 1,
          'whines': 1,
          'complains': 1,
          'would': 1,
          'matched': 1,
          'someone': 1,
          'elizabeth': 1,
          'berkley': 1,
          'appears': 1,
          'another': 1,
          'nkeeners': 1,
          'character': 1,
          'edge': 1,
          'insult': 1,
          'selfdefense': 1,
          'class': 1,
          'taught': 1,
          'denis': 1,
          'leary': 1,
          'less': 1,
          'movies': 1,
          'running': 1,
          'time': 1,
          'two': 1,
          'hours': 1,
          'seems': 1,
          'like': 1,
          'well': 1,
          'ntheres': 1,
          'speed': 1,
          'things': 1,
          'along': 1,
          'propel': 1,
          'drama': 1,
          'nneg': 1}),
 Counter({'batman': 14,
          'robin': 9,
          'nthe': 6,
          'film': 5,
          'movie': 4,
          'n': 4,
          'scenes': 4,
          'schumacher': 4,
          'characters': 4,
          'one': 3,
          'joker': 3,
          'run': 3,
          'merely': 3,
          'clooney': 3,
          'bruce': 3,
          'event': 2,
          'thats': 2,
          'producers': 2,
          'apparently': 2,
          'spectacle': 2,
          'sets': 2,
          'costumes': 2,
          'fight': 2,
          'hint': 2,
          'nits': 2,
          'like': 2,
          'way': 2,
          'burtons': 2,
          'darkness': 2,
          'far': 2,
          'nbatman': 2,
          'jack': 2,
          'nicholson': 2,
          'joel': 2,
          'na': 2,
          'people': 2,
          'time': 2,
          'action': 2,
          'momentum': 2,
          'doesnt': 2,
          'lose': 2,
          'gives': 2,
          'character': 2,
          'sense': 2,
          'even': 2,
          'michael': 2,
          'gough': 2,
          'waynes': 2,
          'nas': 2,
          'hell': 2,
          'alicia': 2,
          'silverstone': 2,
          'hard': 2,
          'batgirl': 2,
          'ni': 2,
          'rubber': 2,
          'really': 2,
          'schwarzenegger': 2,
          'thurman': 2,
          'better': 2,
          'poison': 2,
          'ivy': 2,
          'series': 2,
          'ads': 1,
          'scream': 1,
          'summer': 1,
          'problem': 1,
          'intent': 1,
          'creating': 1,
          'forgot': 1,
          'put': 1,
          'actual': 1,
          'inside': 1,
          '126': 1,
          'minutes': 1,
          'lavish': 1,
          'flashy': 1,
          'big': 1,
          'confusing': 1,
          'barely': 1,
          'substance': 1,
          'cheesy': 1,
          'kings': 1,
          'island': 1,
          'stage': 1,
          'shows': 1,
          'bright': 1,
          'busy': 1,
          'visually': 1,
          'diverting': 1,
          'much': 1,
          'fun': 1,
          'nit': 1,
          'wasnt': 1,
          'always': 1,
          'ntim': 1,
          'epic': 1,
          'story': 1,
          'obsession': 1,
          'duality': 1,
          'revenge': 1,
          'perfect': 1,
          'striking': 1,
          'mood': 1,
          'piece': 1,
          'otherworldly': 1,
          'feel': 1,
          'creepy': 1,
          'brooding': 1,
          'creature': 1,
          'night': 1,
          'brilliantly': 1,
          'overplayed': 1,
          'charismatic': 1,
          'repellent': 1,
          'opposite': 1,
          'sides': 1,
          'coin': 1,
          'battling': 1,
          'inner': 1,
          'demons': 1,
          'another': 1,
          'gotham': 1,
          'citys': 1,
          'breathtaking': 1,
          'gothic': 1,
          'skyline': 1,
          'nthose': 1,
          'days': 1,
          'dark': 1,
          'knight': 1,
          'gone': 1,
          'replaced': 1,
          'psychedelic': 1,
          'ice': 1,
          'capades': 1,
          'amuck': 1,
          'common': 1,
          'campy': 1,
          '60s': 1,
          'tv': 1,
          'show': 1,
          'tim': 1,
          'tale': 1,
          'blame': 1,
          'lies': 1,
          'director': 1,
          'former': 1,
          'windowdresser': 1,
          'adept': 1,
          'decorating': 1,
          'dressing': 1,
          'exotic': 1,
          'nunfortunately': 1,
          'comes': 1,
          'walk': 1,
          'talk': 1,
          'hasnt': 1,
          'faintest': 1,
          'notion': 1,
          'overstuffed': 1,
          'intricately': 1,
          'choreographed': 1,
          'poorly': 1,
          'edited': 1,
          'often': 1,
          'difficult': 1,
          'tell': 1,
          'whos': 1,
          'whacking': 1,
          'nwhile': 1,
          'flail': 1,
          'oneliners': 1,
          'bad': 1,
          'puns': 1,
          'tossed': 1,
          'confetti': 1,
          'carefully': 1,
          'placed': 1,
          'jokes': 1,
          'set': 1,
          'sailing': 1,
          'many': 1,
          'wisecracks': 1,
          'undermine': 1,
          'stalls': 1,
          'completely': 1,
          'several': 1,
          'occasions': 1,
          'rare': 1,
          'see': 1,
          'flick': 1,
          'sluggish': 1,
          'nironically': 1,
          'parts': 1,
          'work': 1,
          'ones': 1,
          'showing': 1,
          'street': 1,
          'clothing': 1,
          'succeed': 1,
          'george': 1,
          'wayne': 1,
          'neasily': 1,
          'best': 1,
          'yet': 1,
          'clooneys': 1,
          'expressive': 1,
          'eyes': 1,
          'weary': 1,
          'smile': 1,
          'depth': 1,
          'script': 1,
          'films': 1,
          'effective': 1,
          'scene': 1,
          'tender': 1,
          'quiet': 1,
          'exchange': 1,
          'alfred': 1,
          'butler': 1,
          'surrogate': 1,
          'father': 1,
          'heroes': 1,
          'chris': 1,
          'odonnells': 1,
          'enthusiastic': 1,
          'perky': 1,
          'horny': 1,
          'pudgy': 1,
          'accept': 1,
          'athlete': 1,
          'debut': 1,
          'nin': 1,
          'filled': 1,
          'brim': 1,
          'major': 1,
          'decision': 1,
          'add': 1,
          'entirely': 1,
          'unnecessary': 1,
          'elle': 1,
          'macpherson': 1,
          'girlfriend': 1,
          'puzzling': 1,
          'suspect': 1,
          'inserted': 1,
          'women': 1,
          'attempt': 1,
          'convince': 1,
          'audiences': 1,
          'two': 1,
          'guys': 1,
          'around': 1,
          'suits': 1,
          'builtin': 1,
          'nipples': 1,
          'shapely': 1,
          'buttocks': 1,
          'huge': 1,
          'codpieces': 1,
          'actually': 1,
          'straight': 1,
          'nof': 1,
          'course': 1,
          'real': 1,
          'stars': 1,
          'villains': 1,
          'suffers': 1,
          'mr': 1,
          'freeze': 1,
          'arnold': 1,
          'worst': 1,
          'performance': 1,
          'years': 1,
          'spitting': 1,
          'stream': 1,
          'lame': 1,
          'catch': 1,
          'phrases': 1,
          'wooden': 1,
          'fashion': 1,
          'nlaboring': 1,
          'ton': 1,
          'appliances': 1,
          'looks': 1,
          'hes': 1,
          'trouble': 1,
          'moving': 1,
          'suit': 1,
          'let': 1,
          'alone': 1,
          'trying': 1,
          'act': 1,
          'numa': 1,
          'fares': 1,
          'somewhat': 1,
          'nshe': 1,
          'overacts': 1,
          'terribly': 1,
          'early': 1,
          'establishing': 1,
          'rule': 1,
          'person': 1,
          'becomes': 1,
          'villain': 1,
          'must': 1,
          'cartoonish': 1,
          'bumbling': 1,
          'nerd': 1,
          'nonce': 1,
          'transforms': 1,
          'ecopsychotic': 1,
          'nice': 1,
          'mae': 1,
          'west': 1,
          'impersonation': 1,
          'classic': 1,
          'vamp': 1,
          'seduce': 1,
          'men': 1,
          'breath': 1,
          'kill': 1,
          'kiss': 1,
          'nthurman': 1,
          'fails': 1,
          'maintain': 1,
          'maniacal': 1,
          'style': 1,
          'though': 1,
          'ends': 1,
          'sputtering': 1,
          'latter': 1,
          'biggest': 1,
          'lesson': 1,
          'learned': 1,
          'njoel': 1,
          'fills': 1,
          'screen': 1,
          'eye': 1,
          'candy': 1,
          'technicolor': 1,
          'overkill': 1,
          'emphasizes': 1,
          'trifle': 1,
          'nsome': 1,
          'critics': 1,
          'suggest': 1,
          'steam': 1,
          'dont': 1,
          'think': 1,
          'nmy': 1,
          'prescription': 1,
          'nfire': 1,
          'offer': 1,
          'ticket': 1,
          'fetishists': 1,
          'convention': 1,
          'understand': 1,
          'theres': 1,
          'feelings': 1,
          'ngive': 1,
          'walking': 1,
          'papers': 1,
          'keeping': 1,
          'odonnell': 1,
          'ncall': 1,
          'michelle': 1,
          'pfieffer': 1,
          'beg': 1,
          'reprise': 1,
          'roles': 1,
          'catwoman': 1,
          'nthen': 1,
          'ditch': 1,
          'campiness': 1,
          'love': 1,
          'pete': 1,
          'mentality': 1,
          'make': 1,
          'instead': 1,
          'next': 1,
          'nneg': 1}),
 Counter({'gordy': 8,
          'movie': 5,
          'one': 4,
          'stupid': 4,
          'story': 3,
          'named': 3,
          'course': 3,
          'jinnie': 3,
          'hank': 3,
          'bad': 2,
          'dumb': 2,
          'actually': 2,
          'even': 2,
          'children': 2,
          'may': 2,
          'family': 2,
          'nof': 2,
          'little': 2,
          'sue': 2,
          'young': 2,
          'film': 2,
          'huge': 2,
          'show': 2,
          'nhe': 2,
          'leaves': 2,
          'see': 2,
          'ceo': 2,
          'villain': 2,
          '90minutelong': 1,
          'sesame': 1,
          'street': 1,
          'skit': 1,
          'nthis': 1,
          'depressing': 1,
          'think': 1,
          'hollywood': 1,
          'executives': 1,
          'gave': 1,
          'green': 1,
          'light': 1,
          'surprising': 1,
          'fact': 1,
          'disney': 1,
          'nim': 1,
          'sure': 1,
          'target': 1,
          'audience': 1,
          'kids': 1,
          'age': 1,
          'five': 1,
          'able': 1,
          'tolerate': 1,
          'nit': 1,
          'farm': 1,
          'piglet': 1,
          'voiced': 1,
          'garms': 1,
          'whose': 1,
          'taken': 1,
          'away': 1,
          'north': 1,
          'know': 1,
          'means': 1,
          'death': 1,
          'hear': 1,
          'animals': 1,
          'talk': 1,
          'went': 1,
          'trouble': 1,
          'attempting': 1,
          'sync': 1,
          'voices': 1,
          'mouths': 1,
          'comes': 1,
          'terrible': 1,
          'nactually': 1,
          'almost': 1,
          'funny': 1,
          'way': 1,
          'nthe': 1,
          'remotely': 1,
          'interesting': 1,
          'likable': 1,
          'character': 1,
          'soon': 1,
          'appears': 1,
          'girl': 1,
          'macallister': 1,
          'sees': 1,
          'back': 1,
          'truck': 1,
          'essentially': 1,
          'steals': 1,
          'njinnie': 1,
          'country': 1,
          'singer': 1,
          'goes': 1,
          'tangent': 1,
          'concert': 1,
          'people': 1,
          'dancing': 1,
          'nwhat': 1,
          'point': 1,
          'nmaybe': 1,
          'producers': 1,
          'relatives': 1,
          'wanted': 1,
          'camera': 1,
          'promote': 1,
          'something': 1,
          'nwe': 1,
          'cut': 1,
          'social': 1,
          'gathering': 1,
          'drop': 1,
          'another': 1,
          'kid': 1,
          'royce': 1,
          'roescher': 1,
          'sad': 1,
          'divorced': 1,
          'mother': 1,
          'dating': 1,
          'party': 1,
          'meets': 1,
          'accidentally': 1,
          'falls': 1,
          'pool': 1,
          'probably': 1,
          'sitting': 1,
          'diving': 1,
          'board': 1,
          '200': 1,
          'suit': 1,
          'nah': 1,
          'didnt': 1,
          'coming': 1,
          'nstarts': 1,
          'drown': 1,
          'miraculously': 1,
          'saved': 1,
          'pushes': 1,
          'inflatable': 1,
          'float': 1,
          'saves': 1,
          'nif': 1,
          'insanely': 1,
          'already': 1,
          'quickly': 1,
          'changes': 1,
          'gives': 1,
          'ends': 1,
          'becoming': 1,
          'food': 1,
          'processing': 1,
          'corporation': 1,
          'hanks': 1,
          'grandfather': 1,
          'original': 1,
          'dies': 1,
          'fortune': 1,
          'nand': 1,
          'must': 1,
          'donadio': 1,
          'sipes': 1,
          'isnt': 1,
          'evil': 1,
          'never': 1,
          'raises': 1,
          'voice': 1,
          'becomes': 1,
          'angry': 1,
          'typical': 1,
          'idiot': 1,
          'goons': 1,
          'kidnap': 1,
          'beyond': 1,
          'cartoony': 1,
          'constantly': 1,
          'two': 1,
          'steps': 1,
          'ahead': 1,
          'nits': 1,
          'hard': 1,
          'tell': 1,
          'whether': 1,
          'overall': 1,
          'corniness': 1,
          'cheesiness': 1,
          'intentional': 1,
          'filmmakers': 1,
          'untalented': 1,
          'nat': 1,
          'times': 1,
          'tolerable': 1,
          'watch': 1,
          'thus': 1,
          'earning': 1,
          'star': 1,
          'dreaded': 1,
          'z': 1,
          'nbut': 1,
          'unbelievably': 1,
          'boring': 1,
          'cliche': 1,
          'unfunny': 1,
          'corny': 1,
          'plain': 1,
          'scare': 1,
          'certainly': 1,
          'disturbed': 1,
          'n': 1,
          '42196': 1,
          '12997': 1,
          '61397': 1,
          'also': 1,
          'babe': 1,
          'nneg': 1}),
 Counter({'senseless': 5,
          'darryl': 5,
          'moments': 4,
          'senses': 4,
          'wayans': 3,
          'simply': 3,
          'wayanss': 3,
          'comedy': 3,
          'marlon': 2,
          'physical': 2,
          'gift': 2,
          'five': 2,
          'point': 2,
          'film': 2,
          'use': 2,
          'goes': 2,
          'nbut': 2,
          'movie': 2,
          'nonce': 2,
          'comic': 2,
          'way': 2,
          'anything': 2,
          'serious': 2,
          'man': 2,
          'television': 2,
          'r': 1,
          'talented': 1,
          'comedian': 1,
          'brings': 1,
          'life': 1,
          'nalas': 1,
          'enough': 1,
          'lift': 1,
          'fantasycomedy': 1,
          'onejoke': 1,
          'premise': 1,
          'ngranted': 1,
          'one': 1,
          'joke': 1,
          'initially': 1,
          'amusing': 1,
          'nwhen': 1,
          'witherspoon': 1,
          'economics': 1,
          'major': 1,
          'stratford': 1,
          'university': 1,
          'hits': 1,
          'dire': 1,
          'financial': 1,
          'straits': 1,
          'becomes': 1,
          'guinea': 1,
          'pig': 1,
          'experimental': 1,
          'drug': 1,
          'heightens': 1,
          'nafter': 1,
          'initial': 1,
          'side': 1,
          'effects': 1,
          'problems': 1,
          'controlling': 1,
          'superhuman': 1,
          'learns': 1,
          'enjoy': 1,
          'benefits': 1,
          'abilities': 1,
          'uses': 1,
          'land': 1,
          'position': 1,
          'highly': 1,
          'esteemed': 1,
          'corporate': 1,
          'firm': 1,
          'nat': 1,
          'sounds': 1,
          'like': 1,
          'senseful': 1,
          'turns': 1,
          'plot': 1,
          'finds': 1,
          'able': 1,
          'four': 1,
          'essentially': 1,
          'leaving': 1,
          'himyessenseless': 1,
          'nthis': 1,
          'sets': 1,
          'showcase': 1,
          'especially': 1,
          'loses': 1,
          'sense': 1,
          'feeling': 1,
          'body': 1,
          'completely': 1,
          'hilariously': 1,
          'limp': 1,
          'gags': 1,
          'gag': 1,
          'behind': 1,
          'entire': 1,
          'quickly': 1,
          'grows': 1,
          'stale': 1,
          'shown': 1,
          'without': 1,
          'instead': 1,
          'exploring': 1,
          'new': 1,
          'territory': 1,
          'director': 1,
          'penelope': 1,
          'spheeris': 1,
          'screenwriters': 1,
          'greg': 1,
          'erb': 1,
          'craig': 1,
          'mazin': 1,
          'take': 1,
          'easy': 1,
          'recycle': 1,
          'form': 1,
          'senselessness': 1,
          'nwayans': 1,
          'approaches': 1,
          'goround': 1,
          'gusto': 1,
          'hes': 1,
          'treading': 1,
          'water': 1,
          'rest': 1,
          'films': 1,
          'unfunny': 1,
          'duration': 1,
          'nsenseless': 1,
          'would': 1,
          'problematic': 1,
          'didnt': 1,
          'strive': 1,
          'trifle': 1,
          'nhowever': 1,
          'raucous': 1,
          'often': 1,
          'raunchy': 1,
          'wrapped': 1,
          'blanket': 1,
          'bogus': 1,
          'sincerity': 1,
          'ndarryl': 1,
          'experiment': 1,
          'order': 1,
          'help': 1,
          'cashstrapped': 1,
          'family': 1,
          'angle': 1,
          'seems': 1,
          'come': 1,
          'entirely': 1,
          'different': 1,
          'nunlike': 1,
          'last': 1,
          'starring': 1,
          'vehicle': 1,
          'surprisingly': 1,
          'effective': 1,
          '6th': 1,
          'emotional': 1,
          'content': 1,
          'forced': 1,
          'unconvincing': 1,
          'nany': 1,
          'attempt': 1,
          'substantial': 1,
          'broad': 1,
          'fizzlesdarryls': 1,
          'romance': 1,
          'janice': 1,
          'tamara': 1,
          'taylor': 1,
          'young': 1,
          'woman': 1,
          'yearns': 1,
          'true': 1,
          'generate': 1,
          'sparks': 1,
          'kind': 1,
          'wb': 1,
          'sitcom': 1,
          'bros': 1,
          'comes': 1,
          'end': 1,
          'genuinely': 1,
          'funny': 1,
          'promising': 1,
          'bigscreen': 1,
          'future': 1,
          'ahead': 1,
          'continues': 1,
          'associate': 1,
          'projects': 1,
          'flat': 1,
          'career': 1,
          'could': 1,
          'go': 1,
          'oncepromising': 1,
          'older': 1,
          'brother': 1,
          'damon': 1,
          'set': 1,
          'make': 1,
          'comebackon': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'kate': 4,
          'nshe': 4,
          'publisher': 4,
          'vanni': 4,
          'film': 3,
          'nits': 3,
          'set': 3,
          'man': 3,
          'story': 3,
          'could': 3,
          'romantic': 2,
          'one': 2,
          'nit': 2,
          'usual': 2,
          'writer': 2,
          'husband': 2,
          'alec': 2,
          'selfabsorbed': 2,
          'hes': 2,
          'model': 2,
          'wife': 2,
          'wants': 2,
          'meets': 2,
          'first': 2,
          'someone': 2,
          'like': 2,
          'london': 2,
          'rebuffs': 2,
          'publishing': 2,
          'novel': 2,
          'married': 2,
          'sell': 2,
          'hubby': 2,
          'slight': 1,
          'comedy': 1,
          'feminist': 1,
          'bent': 1,
          'edge': 1,
          'turns': 1,
          'conventional': 1,
          'filled': 1,
          'clich': 1,
          'stock': 1,
          'characters': 1,
          'genre': 1,
          'nthough': 1,
          'wellwritten': 1,
          'wellacted': 1,
          'fluff': 1,
          'piece': 1,
          'still': 1,
          'much': 1,
          'say': 1,
          'surprising': 1,
          'made': 1,
          'gentle': 1,
          'arthouse': 1,
          'dont': 1,
          'want': 1,
          'something': 1,
          'disturbing': 1,
          'think': 1,
          'critically': 1,
          'successful': 1,
          'pryce': 1,
          'threatened': 1,
          'department': 1,
          'store': 1,
          'floorwalking': 1,
          'bouquet': 1,
          'crass': 1,
          'corso': 1,
          'walken': 1,
          'another': 1,
          'predictable': 1,
          'relationship': 1,
          'occurs': 1,
          'fireworks': 1,
          'occur': 1,
          'outgrows': 1,
          'husbands': 1,
          'impressions': 1,
          'impressed': 1,
          'genius': 1,
          'worships': 1,
          'feet': 1,
          'identity': 1,
          'independence': 1,
          'looked': 1,
          'sitcom': 1,
          'stuff': 1,
          'plagued': 1,
          'cheap': 1,
          'design': 1,
          'features': 1,
          'reserved': 1,
          'tv': 1,
          'movie': 1,
          'sagged': 1,
          'middle': 1,
          'weight': 1,
          'tedium': 1,
          'eventually': 1,
          'landed': 1,
          'rear': 1,
          'end': 1,
          'unspectacular': 1,
          'climax': 1,
          'opens': 1,
          'sexual': 1,
          'advances': 1,
          'wealthy': 1,
          'american': 1,
          'shopper': 1,
          'later': 1,
          'hubbys': 1,
          'new': 1,
          'upstart': 1,
          'seeks': 1,
          'intellectual': 1,
          'author': 1,
          'stable': 1,
          'order': 1,
          'give': 1,
          'credibility': 1,
          'quality': 1,
          'quickly': 1,
          'wins': 1,
          'favor': 1,
          'vanity': 1,
          'nalec': 1,
          'obnoxious': 1,
          'grouse': 1,
          'seems': 1,
          'would': 1,
          'impossible': 1,
          'live': 1,
          'tries': 1,
          'everything': 1,
          'stop': 1,
          'book': 1,
          'publishedwhich': 1,
          'pushes': 1,
          'grasping': 1,
          'arms': 1,
          'proud': 1,
          'mammas': 1,
          'boy': 1,
          'never': 1,
          'selfmade': 1,
          'earned': 1,
          'millions': 1,
          'nhe': 1,
          'recently': 1,
          'acquired': 1,
          'failing': 1,
          'old': 1,
          'house': 1,
          'plans': 1,
          'revitalize': 1,
          'proudly': 1,
          'tells': 1,
          'father': 1,
          'pizzas': 1,
          'harlem': 1,
          'culture': 1,
          'europe': 1,
          'thing': 1,
          'couldnt': 1,
          'sold': 1,
          'stiff': 1,
          'tired': 1,
          'plot': 1,
          'line': 1,
          'mystery': 1,
          'lovely': 1,
          'either': 1,
          'unless': 1,
          'insensitive': 1,
          'dummy': 1,
          'soon': 1,
          'divorces': 1,
          'beleaguered': 1,
          'marries': 1,
          'soontobecomebeleaguered': 1,
          'nwhen': 1,
          'writes': 1,
          'second': 1,
          'way': 1,
          'ends': 1,
          'results': 1,
          'happened': 1,
          'number': 1,
          'ambition': 1,
          'lust': 1,
          'winds': 1,
          'whimper': 1,
          'na': 1,
          'business': 1,
          'affair': 1,
          'loosely': 1,
          'based': 1,
          'reallife': 1,
          'literary': 1,
          'travails': 1,
          'authors': 1,
          'barbara': 1,
          'skelton': 1,
          'cyril': 1,
          'connolly': 1,
          'celebrated': 1,
          '1950s': 1,
          'love': 1,
          'triangle': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'ship': 4,
          'kind': 3,
          'movie': 3,
          'action': 3,
          'ocean': 3,
          'boat': 3,
          'youre': 2,
          'see': 2,
          'movies': 2,
          'theatre': 2,
          'popcorn': 2,
          'one': 2,
          'recent': 2,
          'nits': 2,
          'nbut': 2,
          'us': 2,
          'show': 2,
          'scary': 2,
          'cargo': 2,
          'nhe': 2,
          'mercenaries': 2,
          'cruise': 2,
          'way': 2,
          'machine': 2,
          'continue': 2,
          'monster': 2,
          'nyet': 2,
          'nthe': 2,
          'person': 1,
          'goes': 1,
          'long': 1,
          'overpriced': 1,
          'butter': 1,
          'optional': 1,
          'nindeed': 1,
          'got': 1,
          'either': 1,
          'unimaginative': 1,
          'ripoffs': 1,
          'incredibly': 1,
          'unfunny': 1,
          'spoof': 1,
          'difficult': 1,
          'fathom': 1,
          'insipidness': 1,
          'unless': 1,
          'actually': 1,
          'watch': 1,
          'least': 1,
          'warned': 1,
          'quickly': 1,
          'may': 1,
          'regret': 1,
          'ticket': 1,
          'purchase': 1,
          'giving': 1,
          'opportunity': 1,
          'sneak': 1,
          'adjacent': 1,
          'nwhat': 1,
          'four': 1,
          'ingredients': 1,
          'really': 1,
          'bad': 1,
          'nfirst': 1,
          'gives': 1,
          'introductory': 1,
          'premise': 1,
          'nhuge': 1,
          'caverns': 1,
          'exist': 1,
          'deep': 1,
          'beneath': 1,
          'floor': 1,
          'area': 1,
          'many': 1,
          'ships': 1,
          'disappeared': 1,
          'noooh': 1,
          'nsecondly': 1,
          'cheesy': 1,
          'soundtrack': 1,
          'tries': 1,
          'connote': 1,
          'tone': 1,
          'mystery': 1,
          'succeeds': 1,
          'drowning': 1,
          'ears': 1,
          'abrasive': 1,
          'musical': 1,
          'score': 1,
          'nthird': 1,
          'main': 1,
          'character': 1,
          'mercenary': 1,
          'delivers': 1,
          'goods': 1,
          'without': 1,
          'asking': 1,
          'contents': 1,
          'treat': 1,
          'williams': 1,
          'operates': 1,
          'sophisticated': 1,
          'militarystyle': 1,
          'pt': 1,
          'every': 1,
          'word': 1,
          'comes': 1,
          'mouth': 1,
          'awash': 1,
          'comical': 1,
          'flippancy': 1,
          'nfinally': 1,
          'hold': 1,
          'hired': 1,
          'nthey': 1,
          'also': 1,
          'toughlooking': 1,
          'haircuts': 1,
          'talk': 1,
          'accents': 1,
          'try': 1,
          'macho': 1,
          'nduring': 1,
          'trip': 1,
          'across': 1,
          'stormy': 1,
          'sea': 1,
          'suffers': 1,
          'incident': 1,
          'requires': 1,
          'repairs': 1,
          'nspotting': 1,
          'distance': 1,
          'make': 1,
          'liner': 1,
          'devise': 1,
          'plan': 1,
          'raid': 1,
          'shop': 1,
          'take': 1,
          'parts': 1,
          'need': 1,
          'merry': 1,
          'nlittle': 1,
          'know': 1,
          'become': 1,
          'infested': 1,
          'board': 1,
          'armed': 1,
          'hilt': 1,
          'grenades': 1,
          'guns': 1,
          'kill': 1,
          'dozens': 1,
          'matter': 1,
          'seconds': 1,
          'nthis': 1,
          'nothing': 1,
          'bythebook': 1,
          'ntheir': 1,
          'realization': 1,
          'situation': 1,
          'theyre': 1,
          'doesnt': 1,
          'happen': 1,
          'bowels': 1,
          'nthose': 1,
          'dumb': 1,
          'enough': 1,
          'stray': 1,
          'ultimately': 1,
          'get': 1,
          'killed': 1,
          'corridors': 1,
          'narrow': 1,
          'misty': 1,
          'provide': 1,
          'atmosphere': 1,
          'scarefests': 1,
          'must': 1,
          'despite': 1,
          'predictable': 1,
          'nature': 1,
          'boo': 1,
          'moments': 1,
          'outright': 1,
          'silly': 1,
          'nand': 1,
          'unusually': 1,
          'gory': 1,
          'nmonsters': 1,
          'basically': 1,
          'suck': 1,
          'flesh': 1,
          'spit': 1,
          'skeletal': 1,
          'remains': 1,
          'nthere': 1,
          'particularly': 1,
          'neat': 1,
          'scene': 1,
          'cut': 1,
          'apart': 1,
          'reveals': 1,
          'victim': 1,
          'still': 1,
          'alive': 1,
          'screams': 1,
          'horribly': 1,
          'monsters': 1,
          'digestive': 1,
          'juices': 1,
          'slowly': 1,
          'eat': 1,
          'away': 1,
          'nadditionally': 1,
          'borrows': 1,
          'heavily': 1,
          'speed2': 1,
          'alien': 1,
          'bunch': 1,
          'films': 1,
          'even': 1,
          'run': 1,
          'lone': 1,
          'surviving': 1,
          'passenger': 1,
          'femke': 1,
          'jannsen': 1,
          'looks': 1,
          'amazingly': 1,
          'like': 1,
          'sandra': 1,
          'bullock': 1,
          'nto': 1,
          'honest': 1,
          'left': 1,
          'laugh': 1,
          'witless': 1,
          'moronic': 1,
          'fun': 1,
          'best': 1,
          'nso': 1,
          'hankering': 1,
          'large': 1,
          'bucket': 1,
          'served': 1,
          'side': 1,
          'silliness': 1,
          'might': 1,
          'hit': 1,
          'spot': 1,
          'nneg': 1}),
 Counter({'evolution': 4,
          'certainly': 3,
          'kane': 2,
          'duchovny': 2,
          'block': 2,
          'jones': 2,
          'scene': 2,
          'alien': 2,
          'lifeform': 2,
          'moore': 2,
          'aliens': 2,
          'may': 2,
          'comedy': 2,
          'ghostbusters': 2,
          'nit': 2,
          'nand': 2,
          'n': 2,
          'script': 2,
          'could': 2,
          'synopsis': 1,
          'meteorite': 1,
          'crashlands': 1,
          'arizona': 1,
          'desert': 1,
          'community': 1,
          'college': 1,
          'professors': 1,
          'ira': 1,
          'harry': 1,
          'first': 1,
          'nthey': 1,
          'discover': 1,
          'arisen': 1,
          'rock': 1,
          'evolving': 1,
          'amazing': 1,
          'rate': 1,
          'nsoon': 1,
          'army': 1,
          'advised': 1,
          'dr': 1,
          'allison': 1,
          'reed': 1,
          'moves': 1,
          'forces': 1,
          'nbut': 1,
          'begin': 1,
          'menace': 1,
          'society': 1,
          'take': 1,
          'scientists': 1,
          'combined': 1,
          'efforts': 1,
          'stop': 1,
          'terminate': 1,
          'another': 1,
          'humanity': 1,
          'nreview': 1,
          'ingredients': 1,
          'decent': 1,
          'nits': 1,
          'directed': 1,
          'reitman': 1,
          'clearly': 1,
          'trying': 1,
          'parlay': 1,
          'success': 1,
          'twentyfirstcentury': 1,
          'counterpart': 1,
          'stars': 1,
          'although': 1,
          'one': 1,
          'might': 1,
          'question': 1,
          'judgment': 1,
          'lampooning': 1,
          'xfiles': 1,
          'character': 1,
          'soon': 1,
          'leaving': 1,
          'tv': 1,
          'series': 1,
          'provide': 1,
          'plenty': 1,
          'ammunition': 1,
          'theres': 1,
          'much': 1,
          'prior': 1,
          'experience': 1,
          'proven': 1,
          'ability': 1,
          'actress': 1,
          'na': 1,
          'shame': 1,
          'deteriorates': 1,
          'hopelessly': 1,
          'unfunny': 1,
          'morass': 1,
          'movie': 1,
          'concerned': 1,
          'special': 1,
          'effects': 1,
          'quite': 1,
          'good': 1,
          'anything': 1,
          'resembling': 1,
          'consistently': 1,
          'funny': 1,
          'moments': 1,
          'body': 1,
          'invaded': 1,
          'particularly': 1,
          'entertaining': 1,
          'embarrassingly': 1,
          'long': 1,
          'stretches': 1,
          'utterly': 1,
          'devoid': 1,
          'humour': 1,
          'nmoore': 1,
          'totally': 1,
          'wasted': 1,
          'clumsy': 1,
          'shtick': 1,
          'getting': 1,
          'old': 1,
          'fast': 1,
          'nduchovny': 1,
          'stunningly': 1,
          'little': 1,
          'way': 1,
          'material': 1,
          'work': 1,
          'story': 1,
          'formulaic': 1,
          'written': 1,
          'monkeys': 1,
          'npart': 1,
          'made': 1,
          'wonderful': 1,
          'combination': 1,
          'great': 1,
          'characters': 1,
          'audience': 1,
          'root': 1,
          'mindnumbingly': 1,
          'tedious': 1,
          'difficult': 1,
          'start': 1,
          'cheering': 1,
          'nneg': 1}),
 Counter({'plot': 7,
          'film': 3,
          'nbraxton': 3,
          'turns': 3,
          'nthe': 3,
          'complex': 3,
          'deceiver': 2,
          'surprises': 2,
          'nbut': 2,
          'worthy': 2,
          'kennesaw': 2,
          'wayland': 2,
          'nhowever': 2,
          'one': 2,
          'lost': 2,
          'dialogue': 2,
          'characters': 2,
          'brothers': 2,
          'twist': 1,
          'search': 1,
          'movie': 1,
          'nthis': 1,
          'overly': 1,
          'constructed': 1,
          'succeeds': 1,
          'many': 1,
          'true': 1,
          'title': 1,
          'deceptive': 1,
          'little': 1,
          'deceit': 1,
          'chris': 1,
          'penn': 1,
          'michael': 1,
          'rooker': 1,
          'two': 1,
          'cops': 1,
          'investigating': 1,
          'brutal': 1,
          'murder': 1,
          'prostitute': 1,
          'renee': 1,
          'zellweger': 1,
          'ntheir': 1,
          'lone': 1,
          'suspect': 1,
          'tim': 1,
          'roth': 1,
          'wealthy': 1,
          'young': 1,
          'man': 1,
          'whose': 1,
          'phone': 1,
          'number': 1,
          'found': 1,
          'hookers': 1,
          'pocket': 1,
          'routine': 1,
          'lie': 1,
          'detector': 1,
          'test': 1,
          'investigators': 1,
          'crafty': 1,
          'somehow': 1,
          'tables': 1,
          'forced': 1,
          'confront': 1,
          'troubled': 1,
          'lives': 1,
          'gambling': 1,
          'addict': 1,
          'deep': 1,
          'mook': 1,
          'ellen': 1,
          'burstyn': 1,
          'local': 1,
          'bookie': 1,
          'nkennesaw': 1,
          'bitter': 1,
          'marriage': 1,
          'socialite': 1,
          'rosanna': 1,
          'arquette': 1,
          'believing': 1,
          'wife': 1,
          'unfaithful': 1,
          'twisty': 1,
          'lots': 1,
          'lengthy': 1,
          'flashbacks': 1,
          'plenty': 1,
          'times': 1,
          'needlessly': 1,
          'least': 1,
          'instance': 1,
          'storytelling': 1,
          'muddled': 1,
          'answers': 1,
          'important': 1,
          'points': 1,
          'actually': 1,
          'get': 1,
          'ntake': 1,
          'look': 1,
          'l': 1,
          'confidential': 1,
          'films': 1,
          'likely': 1,
          'inspiration': 1,
          'usual': 1,
          'suspects': 1,
          'properly': 1,
          'handled': 1,
          'overcrafted': 1,
          'nfor': 1,
          'example': 1,
          'tells': 1,
          'substories': 1,
          'tale': 1,
          'woeful': 1,
          'absinthe': 1,
          'bender': 1,
          'alternative': 1,
          'telling': 1,
          'van': 1,
          'gogh': 1,
          'ear': 1,
          'flat': 1,
          'plastic': 1,
          'come': 1,
          'prefabricated': 1,
          'unbelievable': 1,
          'ntheres': 1,
          'never': 1,
          'sense': 1,
          'real': 1,
          'engaging': 1,
          'conversation': 1,
          'nthey': 1,
          'appear': 1,
          'nothing': 1,
          'words': 1,
          'screenplay': 1,
          'rather': 1,
          'pathetic': 1,
          'despicable': 1,
          'nnot': 1,
          'ounce': 1,
          'sympathetic': 1,
          'result': 1,
          'labyrinthine': 1,
          'naught': 1,
          'nwhat': 1,
          'matter': 1,
          'guilty': 1,
          'nwriterdirectors': 1,
          'josh': 1,
          'jonas': 1,
          'pate': 1,
          'seem': 1,
          'desire': 1,
          'emulate': 1,
          'coen': 1,
          'masterwork': 1,
          'blood': 1,
          'simple': 1,
          'wachowski': 1,
          'less': 1,
          'bound': 1,
          'got': 1,
          'twists': 1,
          'cold': 1,
          'need': 1,
          'work': 1,
          'characterization': 1,
          'nneg': 1}),
 Counter({'tarzan': 14,
          'lost': 7,
          'city': 7,
          'nthe': 7,
          'one': 6,
          'jungle': 6,
          'film': 4,
          'adventure': 3,
          'nand': 3,
          'story': 3,
          'way': 3,
          'nwith': 3,
          'ape': 3,
          'van': 3,
          'dien': 3,
          'lady': 3,
          'jane': 3,
          'march': 3,
          'steven': 3,
          'years': 3,
          'movie': 2,
          'makes': 2,
          'action': 2,
          'george': 2,
          'ntarzan': 2,
          'attempt': 2,
          'bring': 2,
          'idea': 2,
          'version': 2,
          'production': 2,
          'course': 2,
          'line': 2,
          'like': 2,
          'elements': 2,
          'two': 2,
          'actors': 2,
          'ninstead': 2,
          'k': 2,
          'man': 2,
          'casper': 2,
          'nmeanwhile': 2,
          'ravens': 2,
          'waddington': 2,
          'acting': 2,
          'every': 2,
          'may': 2,
          'performance': 2,
          'made': 2,
          'necessary': 2,
          'bad': 2,
          'movies': 2,
          'including': 2,
          '12': 2,
          'would': 2,
          'kind': 1,
          'appreciate': 1,
          'disneys': 1,
          'live': 1,
          'latest': 1,
          'edgar': 1,
          'rice': 1,
          'burroughs': 1,
          'legendary': 1,
          'hero': 1,
          'big': 1,
          'screen': 1,
          'inept': 1,
          'illtimed': 1,
          'far': 1,
          'nbadly': 1,
          'conceived': 1,
          'poorly': 1,
          'executed': 1,
          'appears': 1,
          'headed': 1,
          'quick': 1,
          'trip': 1,
          'video': 1,
          'store': 1,
          'shelves': 1,
          'ni': 1,
          'producers': 1,
          'chose': 1,
          'back': 1,
          'legions': 1,
          'new': 1,
          'fans': 1,
          'clamoring': 1,
          'next': 1,
          'nfurthermore': 1,
          'even': 1,
          'curious': 1,
          'rated': 1,
          'pg': 1,
          'definition': 1,
          'rules': 1,
          'sex': 1,
          'explicit': 1,
          'violence': 1,
          'im': 1,
          'advocating': 1,
          'excesses': 1,
          'embraced': 1,
          '1981': 1,
          'bo': 1,
          'derek': 1,
          'deserves': 1,
          'slightly': 1,
          'adult': 1,
          'approach': 1,
          'used': 1,
          'embarrassing': 1,
          'nof': 1,
          'tweaking': 1,
          'content': 1,
          'change': 1,
          'rating': 1,
          'could': 1,
          'saved': 1,
          'since': 1,
          'films': 1,
          'troubles': 1,
          'originated': 1,
          'script': 1,
          'propagated': 1,
          'nimagine': 1,
          'stripped': 1,
          'intentional': 1,
          'humor': 1,
          'fair': 1,
          'uninspired': 1,
          'tepid': 1,
          'sequences': 1,
          'barely': 1,
          'registers': 1,
          'pulse': 1,
          'nanyone': 1,
          'search': 1,
          'relatively': 1,
          'entertaining': 1,
          'family': 1,
          'check': 1,
          '1994': 1,
          'book': 1,
          'uses': 1,
          'basic': 1,
          'much': 1,
          'better': 1,
          'effect': 1,
          'worthwhile': 1,
          'element': 1,
          'pretty': 1,
          'scenery': 1,
          'unfortunately': 1,
          'includes': 1,
          'lead': 1,
          'doesnt': 1,
          'retell': 1,
          'origin': 1,
          'thinking': 1,
          'done': 1,
          'often': 1,
          'enough': 1,
          'introduces': 1,
          'us': 1,
          'lord': 1,
          'graystoke': 1,
          'john': 1,
          'clayton': 1,
          'several': 1,
          'days': 1,
          'marriage': 1,
          'porter': 1,
          'nhe': 1,
          'living': 1,
          'happily': 1,
          'england': 1,
          'enjoying': 1,
          'benefits': 1,
          'landowning': 1,
          'noble': 1,
          'central': 1,
          'africa': 1,
          'dastardly': 1,
          'nigel': 1,
          'selfproclaimed': 1,
          'scholar': 1,
          'explorer': 1,
          'believes': 1,
          'found': 1,
          'opar': 1,
          'calls': 1,
          'cradle': 1,
          'civilization': 1,
          'non': 1,
          'band': 1,
          'mercenaries': 1,
          'sorts': 1,
          'nasty': 1,
          'things': 1,
          'burning': 1,
          'native': 1,
          'villages': 1,
          'earn': 1,
          'wrath': 1,
          'locals': 1,
          'none': 1,
          'shaman': 1,
          'determined': 1,
          'stop': 1,
          'unearthing': 1,
          'opal': 1,
          'sends': 1,
          'mystical': 1,
          'message': 1,
          'help': 1,
          'following': 1,
          'close': 1,
          'behind': 1,
          'returns': 1,
          'born': 1,
          'nits': 1,
          'patently': 1,
          'obvious': 1,
          'prettyboy': 1,
          'heroes': 1,
          'starship': 1,
          'troopers': 1,
          'hired': 1,
          'basis': 1,
          'ability': 1,
          'plastic': 1,
          'facial': 1,
          'expressions': 1,
          'monotone': 1,
          'voice': 1,
          'complete': 1,
          'inability': 1,
          'make': 1,
          'convincing': 1,
          'animal': 1,
          'noises': 1,
          'range': 1,
          'rivals': 1,
          'seagal': 1,
          'nhis': 1,
          'pecs': 1,
          'however': 1,
          'impressive': 1,
          'director': 1,
          'carl': 1,
          'schenkel': 1,
          'sure': 1,
          'given': 1,
          'opportunity': 1,
          'show': 1,
          'njane': 1,
          'hand': 1,
          'keep': 1,
          'shirt': 1,
          'first': 1,
          'nsome': 1,
          'six': 1,
          'ago': 1,
          'give': 1,
          'solid': 1,
          'jean': 1,
          'jacques': 1,
          'annauds': 1,
          'steamy': 1,
          'lover': 1,
          'nsince': 1,
          'careerkilling': 1,
          'decision': 1,
          'appearing': 1,
          'opposite': 1,
          'bruce': 1,
          'willis': 1,
          'color': 1,
          'night': 1,
          'exploited': 1,
          'defiency': 1,
          'continues': 1,
          'trend': 1,
          'nmarch': 1,
          'attractive': 1,
          'least': 1,
          'judging': 1,
          'cant': 1,
          'act': 1,
          'serious': 1,
          'trouble': 1,
          'summoning': 1,
          'menace': 1,
          'really': 1,
          'detestable': 1,
          'guy': 1,
          'turns': 1,
          'little': 1,
          'nuisance': 1,
          'pure': 1,
          'formula': 1,
          'largely': 1,
          'true': 1,
          'throughout': 1,
          'almost': 1,
          'problem': 1,
          'seems': 1,
          'childish': 1,
          'lifeless': 1,
          'romantic': 1,
          'contrived': 1,
          'fact': 1,
          'janes': 1,
          'presence': 1,
          'captured': 1,
          'subsequently': 1,
          'rescued': 1,
          'buff': 1,
          'fiance': 1,
          'special': 1,
          'effects': 1,
          'truly': 1,
          'bottomofthebarrel': 1,
          'laughably': 1,
          'men': 1,
          'costumes': 1,
          'apparently': 1,
          'animatronics': 1,
          'expensive': 1,
          'obligatory': 1,
          'cute': 1,
          'animals': 1,
          'nover': 1,
          'legend': 1,
          'popular': 1,
          'sources': 1,
          'series': 1,
          'material': 1,
          'famous': 1,
          'johnny': 1,
          'weismuller': 1,
          'less': 1,
          'dozen': 1,
          'essayed': 1,
          'part': 1,
          'gordon': 1,
          'scott': 1,
          'widely': 1,
          'believed': 1,
          'best': 1,
          'actor': 1,
          'tackle': 1,
          'role': 1,
          'nweismuller': 1,
          'features': 1,
          'probably': 1,
          'fall': 1,
          '11': 1,
          'short': 1,
          'number': 1,
          'seen': 1,
          'argue': 1,
          'moviegoing': 1,
          'public': 1,
          'well': 1,
          'served': 1,
          'missed': 1,
          'nneg': 1}),
 Counter({'mccabe': 10,
          'desperate': 6,
          'measures': 6,
          'connor': 6,
          'michael': 3,
          'keaton': 3,
          'garcia': 3,
          'son': 3,
          'generic': 2,
          'film': 2,
          'solid': 2,
          'andy': 2,
          'nthe': 2,
          'movie': 2,
          'big': 2,
          'yet': 2,
          'though': 2,
          'frank': 2,
          'cross': 2,
          'bone': 2,
          'marrow': 2,
          'peter': 2,
          'nconnor': 2,
          'best': 2,
          'hes': 2,
          'hospital': 2,
          'make': 2,
          'needs': 2,
          'keep': 2,
          'alive': 2,
          'lost': 2,
          'little': 2,
          'spotlight': 2,
          'get': 2,
          'movies': 2,
          'scenes': 2,
          'becomes': 2,
          'nthere': 2,
          'good': 2,
          'much': 2,
          'title': 1,
          'thats': 1,
          'beyond': 1,
          'nits': 1,
          'also': 1,
          'depressing': 1,
          'waste': 1,
          'talent': 1,
          'team': 1,
          'unthankfully': 1,
          'thrown': 1,
          'thankless': 1,
          'lead': 1,
          'roles': 1,
          'mention': 1,
          'oncecool': 1,
          'director': 1,
          'barbet': 1,
          'schroeder': 1,
          'sadly': 1,
          'continuing': 1,
          'string': 1,
          'notcool': 1,
          'flicks': 1,
          'thriller': 1,
          'reversal': 1,
          'fortune': 1,
          'disappointment': 1,
          'somewhat': 1,
          'easy': 1,
          'see': 1,
          'motivated': 1,
          'names': 1,
          'attach': 1,
          'premise': 1,
          'promising': 1,
          'intriguing': 1,
          'ntoo': 1,
          'bad': 1,
          'executions': 1,
          'wrong': 1,
          'setup': 1,
          'boasts': 1,
          'rather': 1,
          'enticing': 1,
          'elements': 1,
          'deserve': 1,
          'put': 1,
          'far': 1,
          'better': 1,
          'use': 1,
          'nsan': 1,
          'francisco': 1,
          'cop': 1,
          'single': 1,
          'parent': 1,
          'troubling': 1,
          'dilemma': 1,
          'matt': 1,
          'joseph': 1,
          'stricken': 1,
          'cancer': 1,
          'transplant': 1,
          'push': 1,
          'remission': 1,
          'neven': 1,
          'worse': 1,
          'compatible': 1,
          'donor': 1,
          'violent': 1,
          'sociopath': 1,
          'currently': 1,
          'serving': 1,
          'life': 1,
          'sentence': 1,
          'multiple': 1,
          'murders': 1,
          'various': 1,
          'crimes': 1,
          'society': 1,
          'tries': 1,
          'convince': 1,
          'go': 1,
          'along': 1,
          'surgery': 1,
          'first': 1,
          'reluctant': 1,
          'reconsiders': 1,
          'realizes': 1,
          'plan': 1,
          'escape': 1,
          'nwhen': 1,
          'run': 1,
          'offers': 1,
          'close': 1,
          'pursuit': 1,
          'different': 1,
          'reasons': 1,
          'superiors': 1,
          'including': 1,
          'crusty': 1,
          'brian': 1,
          'cox': 1,
          'want': 1,
          'take': 1,
          'hope': 1,
          'boy': 1,
          'none': 1,
          'misstep': 1,
          'makes': 1,
          'underdevelopment': 1,
          'matts': 1,
          'illness': 1,
          'nwhats': 1,
          'needed': 1,
          'details': 1,
          'exactly': 1,
          'match': 1,
          'works': 1,
          'would': 1,
          'seem': 1,
          'possible': 1,
          'contenders': 1,
          'somewhere': 1,
          'country': 1,
          'thus': 1,
          'many': 1,
          'ways': 1,
          'endangers': 1,
          'lives': 1,
          'around': 1,
          'attempting': 1,
          'hard': 1,
          'swallow': 1,
          'ntake': 1,
          'example': 1,
          'scene': 1,
          'trying': 1,
          'getaway': 1,
          'climbing': 1,
          'elevated': 1,
          'passage': 1,
          'tunnel': 1,
          'connecting': 1,
          'two': 1,
          'sections': 1,
          'police': 1,
          'guns': 1,
          'aimed': 1,
          'right': 1,
          'nhe': 1,
          'shoots': 1,
          'continue': 1,
          'flight': 1,
          'knows': 1,
          'well': 1,
          'dangerous': 1,
          'deeds': 1,
          'guy': 1,
          'capable': 1,
          'never': 1,
          'seems': 1,
          'think': 1,
          'eventually': 1,
          'try': 1,
          'harm': 1,
          'nwhatever': 1,
          'nto': 1,
          'fair': 1,
          'lack': 1,
          'story': 1,
          'background': 1,
          'least': 1,
          'problems': 1,
          'nfirst': 1,
          'foremost': 1,
          'cheaply': 1,
          'trades': 1,
          'potential': 1,
          'opening': 1,
          'routine': 1,
          'action': 1,
          'ballistics': 1,
          'final': 1,
          'hour': 1,
          'nonce': 1,
          'escapes': 1,
          'fugitive': 1,
          'reverse': 1,
          'thrills': 1,
          'countless': 1,
          'guys': 1,
          'catch': 1,
          'grab': 1,
          'hostage': 1,
          'away': 1,
          'nalso': 1,
          'intent': 1,
          'giving': 1,
          'hootinducing': 1,
          'lipsmacking': 1,
          'villain': 1,
          'ads': 1,
          'compared': 1,
          'hannibal': 1,
          'lechter': 1,
          'natch': 1,
          'completely': 1,
          'casts': 1,
          'garcias': 1,
          'dullsville': 1,
          'wayside': 1,
          'appears': 1,
          'like': 1,
          'antagonist': 1,
          'protagonist': 1,
          'headscratcher': 1,
          'sendoff': 1,
          'confirms': 1,
          'found': 1,
          'amongst': 1,
          'mess': 1,
          'particularly': 1,
          'acting': 1,
          'department': 1,
          'ncast': 1,
          'type': 1,
          'keatons': 1,
          'understated': 1,
          'menace': 1,
          'highly': 1,
          'effective': 1,
          'nalthough': 1,
          'given': 1,
          'believable': 1,
          'work': 1,
          'plays': 1,
          'taut': 1,
          'emotional': 1,
          'chord': 1,
          'njoseph': 1,
          'garicias': 1,
          'ailing': 1,
          'surprisingly': 1,
          'unsentimental': 1,
          'marcia': 1,
          'gay': 1,
          'harden': 1,
          'lends': 1,
          'support': 1,
          'doctor': 1,
          'major': 1,
          'player': 1,
          'unfolding': 1,
          'chaos': 1,
          'nthis': 1,
          'cast': 1,
          'camouflage': 1,
          'sorry': 1,
          'plot': 1,
          'chugs': 1,
          'towards': 1,
          'inevitably': 1,
          'happy': 1,
          'ending': 1,
          'nit': 1,
          'goes': 1,
          'without': 1,
          'saying': 1,
          'operation': 1,
          'nneg': 1}),
 Counter({'flying': 6,
          'nthe': 6,
          'one': 5,
          'flubber': 4,
          'little': 4,
          'williams': 3,
          'hes': 3,
          'film': 3,
          'disney': 3,
          'films': 3,
          'home': 3,
          'college': 3,
          'nhis': 3,
          'around': 3,
          'move': 2,
          'make': 2,
          'get': 2,
          'nin': 2,
          'remake': 2,
          'professor': 2,
          'new': 2,
          'brainard': 2,
          'forgetful': 2,
          'sara': 2,
          'jean': 2,
          'none': 2,
          'memory': 2,
          'chance': 2,
          'discovery': 2,
          'nits': 2,
          'bad': 2,
          'nflubber': 2,
          'save': 2,
          'croft': 2,
          'ntheres': 2,
          'car': 2,
          'lab': 2,
          'least': 2,
          'audience': 2,
          'like': 2,
          'ni': 2,
          'nthere': 2,
          'big': 2,
          'nthis': 2,
          'story': 2,
          'lover': 2,
          'nafter': 2,
          'ball': 2,
          'alone': 2,
          'robin': 1,
          'comedic': 1,
          'genus': 1,
          'nthat': 1,
          'allows': 1,
          'space': 1,
          'n': 1,
          'straps': 1,
          'straitjacket': 1,
          'covers': 1,
          'duct': 1,
          'tape': 1,
          'stuffs': 1,
          'coat': 1,
          'closet': 1,
          'piles': 1,
          'furniture': 1,
          'door': 1,
          'sure': 1,
          'doesnt': 1,
          '1961': 1,
          'absent': 1,
          'minded': 1,
          'offers': 1,
          'us': 1,
          'proof': 1,
          'definitely': 1,
          'less': 1,
          'nrecycling': 1,
          'old': 1,
          'darned': 1,
          'cat': 1,
          '101': 1,
          'dalmatians': 1,
          'dressed': 1,
          'newest': 1,
          'money': 1,
          'machine': 1,
          'mouse': 1,
          'roared': 1,
          'nprofessor': 1,
          'phillip': 1,
          'terminally': 1,
          'scientist': 1,
          'teaching': 1,
          'small': 1,
          'fiancee': 1,
          'reynolds': 1,
          'marcia': 1,
          'gay': 1,
          'harden': 1,
          'president': 1,
          'happy': 1,
          'left': 1,
          'waiting': 1,
          'altar': 1,
          'due': 1,
          'lack': 1,
          'shortterm': 1,
          'longterm': 1,
          'nshes': 1,
          'giving': 1,
          'nhe': 1,
          'blows': 1,
          'invents': 1,
          'rubber': 1,
          'excited': 1,
          'awaiting': 1,
          'white': 1,
          'dress': 1,
          'tardiness': 1,
          'helped': 1,
          'along': 1,
          'jealous': 1,
          'robotic': 1,
          'assistant': 1,
          'wants': 1,
          'news': 1,
          'green': 1,
          'jello': 1,
          'magnify': 1,
          'reflect': 1,
          'energy': 1,
          'applied': 1,
          'nbrainard': 1,
          'realizes': 1,
          'commercial': 1,
          'potential': 1,
          'within': 1,
          'goo': 1,
          'school': 1,
          'bankruptcy': 1,
          'taken': 1,
          'towns': 1,
          'evil': 1,
          'industrialist': 1,
          'charles': 1,
          'hoenicker': 1,
          'raymond': 1,
          'barry': 1,
          'nwhile': 1,
          'busy': 1,
          'breakthrough': 1,
          'slighted': 1,
          'sweetheart': 1,
          'wooed': 1,
          'sleazy': 1,
          'rival': 1,
          'wilson': 1,
          'christopher': 1,
          'mcdonald': 1,
          'flubberenhanced': 1,
          'basketball': 1,
          'game': 1,
          'assortment': 1,
          'broken': 1,
          'equipment': 1,
          'bit': 1,
          'interesting': 1,
          'funny': 1,
          'nat': 1,
          'point': 1,
          'son': 1,
          'looked': 1,
          'asked': 1,
          'people': 1,
          'laughing': 1,
          'nalthough': 1,
          'turns': 1,
          'inspired': 1,
          'roles': 1,
          'easily': 1,
          'lively': 1,
          'actors': 1,
          'neveryone': 1,
          'else': 1,
          'comes': 1,
          'across': 1,
          'halfasleep': 1,
          'successful': 1,
          'respect': 1,
          'nit': 1,
          'feels': 1,
          'movie': 1,
          'sixties': 1,
          'remember': 1,
          'original': 1,
          'charming': 1,
          'guess': 1,
          'almost': 1,
          'four': 1,
          'decades': 1,
          'ago': 1,
          'artificially': 1,
          'enhanced': 1,
          'years': 1,
          'updates': 1,
          'nfred': 1,
          'macmurrays': 1,
          'model': 1,
          'replaced': 1,
          'tbird': 1,
          'faithful': 1,
          'dog': 1,
          'charlie': 1,
          'weebo': 1,
          'hovering': 1,
          'robot': 1,
          'biggest': 1,
          'change': 1,
          'sophisticated': 1,
          'computer': 1,
          'animation': 1,
          'show': 1,
          'special': 1,
          'effects': 1,
          'without': 1,
          'entertaining': 1,
          'anthropomorphized': 1,
          'supposedly': 1,
          'personality': 1,
          'gloop': 1,
          'arms': 1,
          'legs': 1,
          'splits': 1,
          'tiny': 1,
          'gloopettes': 1,
          'dance': 1,
          'number': 1,
          'nothing': 1,
          'possible': 1,
          'reason': 1,
          'create': 1,
          'merchandising': 1,
          'opportunities': 1,
          'kids': 1,
          'badger': 1,
          'parents': 1,
          'taking': 1,
          'mcdonalds': 1,
          'toys': 1,
          'nnot': 1,
          'contributing': 1,
          'plot': 1,
          'problem': 1,
          'aspects': 1,
          'dont': 1,
          'sense': 1,
          'going': 1,
          'sell': 1,
          'ford': 1,
          'nanyone': 1,
          'half': 1,
          'brain': 1,
          'would': 1,
          'able': 1,
          'see': 1,
          'intelligent': 1,
          'automaton': 1,
          'worth': 1,
          'billions': 1,
          'unbelievable': 1,
          'well': 1,
          'probably': 1,
          'starts': 1,
          'dating': 1,
          'aborted': 1,
          'wedding': 1,
          'appealing': 1,
          'component': 1,
          'man': 1,
          'discovers': 1,
          'smearing': 1,
          'golf': 1,
          'gunk': 1,
          'causes': 1,
          'bounce': 1,
          'uncontrollably': 1,
          'wreaking': 1,
          'havoc': 1,
          'cringed': 1,
          'picked': 1,
          'bowling': 1,
          'guy': 1,
          'beyond': 1,
          'venturing': 1,
          'certifiable': 1,
          'ncowriter': 1,
          'john': 1,
          'hughes': 1,
          'used': 1,
          'direct': 1,
          'lightweight': 1,
          'thoughtful': 1,
          'teen': 1,
          'care': 1,
          'behind': 1,
          'pretty': 1,
          'pink': 1,
          'breakfast': 1,
          'club': 1,
          'went': 1,
          'window': 1,
          'franchise': 1,
          'heated': 1,
          'box': 1,
          'offices': 1,
          'nlooking': 1,
          'much': 1,
          '3': 1,
          '12': 1,
          'even': 1,
          'features': 1,
          'couple': 1,
          'vapid': 1,
          'goons': 1,
          'banged': 1,
          'cute': 1,
          'boy': 1,
          'screams': 1,
          'lot': 1,
          'ways': 1,
          'difficult': 1,
          'judge': 1,
          'suspicion': 1,
          'im': 1,
          'target': 1,
          'measure': 1,
          'age': 1,
          'two': 1,
          'digits': 1,
          'nneg': 1}),
 Counter({'nthere': 7,
          'town': 5,
          'one': 5,
          'way': 4,
          'mona': 3,
          'attempt': 3,
          'gag': 3,
          'yugo': 3,
          'characters': 3,
          'jeff': 3,
          'watch': 2,
          'child': 2,
          'nits': 2,
          'drowning': 2,
          'comedy': 2,
          'serve': 2,
          'running': 2,
          'drives': 2,
          'neven': 2,
          'police': 2,
          'nit': 2,
          'monas': 2,
          'nthe': 2,
          'film': 2,
          'neach': 2,
          'scream': 2,
          'someone': 2,
          'ntheres': 2,
          'could': 2,
          'nmonas': 2,
          'daughter': 2,
          'people': 2,
          'angry': 2,
          'ever': 1,
          'young': 1,
          'try': 1,
          'tell': 1,
          'joke': 1,
          'beyond': 1,
          'sophistication': 1,
          'full': 1,
          'stops': 1,
          'starts': 1,
          'usually': 1,
          'punch': 1,
          'line': 1,
          'ruined': 1,
          'ni': 1,
          'felt': 1,
          'watching': 1,
          'nskip': 1,
          'stone': 1,
          'across': 1,
          'water': 1,
          'approximate': 1,
          'depth': 1,
          'ensemble': 1,
          'slightly': 1,
          'successful': 1,
          'attempts': 1,
          'humor': 1,
          'window': 1,
          'dressing': 1,
          'verplanck': 1,
          'n': 1,
          'test': 1,
          'new': 1,
          'neveryone': 1,
          'differentiating': 1,
          'cars': 1,
          'personalized': 1,
          'license': 1,
          'plates': 1,
          'chief': 1,
          'certain': 1,
          'sublimeness': 1,
          'image': 1,
          'lights': 1,
          'siren': 1,
          'decked': 1,
          'skittering': 1,
          'streets': 1,
          'also': 1,
          'missing': 1,
          'hand': 1,
          'occurred': 1,
          'pokes': 1,
          'gentle': 1,
          'fun': 1,
          'notion': 1,
          'urban': 1,
          'legends': 1,
          'turns': 1,
          'truth': 1,
          'horrifying': 1,
          'legend': 1,
          'sight': 1,
          'gags': 1,
          'pop': 1,
          'well': 1,
          'tombstone': 1,
          'reads': 1,
          'demoted': 1,
          'instead': 1,
          'devoted': 1,
          'nstill': 1,
          'core': 1,
          'story': 1,
          'maintains': 1,
          'flatness': 1,
          'still': 1,
          'pond': 1,
          'lynchpin': 1,
          'falls': 1,
          'redundant': 1,
          'sporadic': 1,
          'scenes': 1,
          'involving': 1,
          'midler': 1,
          'scene': 1,
          'hit': 1,
          'uniqueness': 1,
          'modulation': 1,
          'explanation': 1,
          'meanness': 1,
          'nanyone': 1,
          'street': 1,
          'played': 1,
          'role': 1,
          'walking': 1,
          'cardboard': 1,
          'cutouts': 1,
          'defined': 1,
          'trait': 1,
          'made': 1,
          'deeper': 1,
          'characterization': 1,
          'burly': 1,
          'female': 1,
          'car': 1,
          'mechanic': 1,
          'course': 1,
          'forced': 1,
          'lesbianism': 1,
          'son': 1,
          'marcus': 1,
          'thomas': 1,
          'simpleton': 1,
          'hence': 1,
          'predict': 1,
          'dialogue': 1,
          'even': 1,
          'plods': 1,
          'mouth': 1,
          'nchief': 1,
          'rash': 1,
          'devito': 1,
          'likes': 1,
          'broadway': 1,
          'musicals': 1,
          'loves': 1,
          'nothing': 1,
          'nelle': 1,
          'chiefs': 1,
          'campbell': 1,
          'bland': 1,
          'personified': 1,
          'dutiful': 1,
          'girl': 1,
          'higher': 1,
          'aspiration': 1,
          'married': 1,
          'husband': 1,
          'phil': 1,
          'fichtner': 1,
          'jeckle': 1,
          'hydes': 1,
          'shirking': 1,
          'coward': 1,
          'reptilian': 1,
          'letch': 1,
          'nbob': 1,
          'affleck': 1,
          'elles': 1,
          'betrothed': 1,
          'business': 1,
          'partner': 1,
          'mumbling': 1,
          'obvious': 1,
          'dullard': 1,
          'contrast': 1,
          'nby': 1,
          'least': 1,
          'character': 1,
          'wit': 1,
          'wits': 1,
          'counterpoint': 1,
          'others': 1,
          'perhaps': 1,
          'steinfelds': 1,
          'satirizing': 1,
          'small': 1,
          'infested': 1,
          'ambitionless': 1,
          'might': 1,
          'come': 1,
          'better': 1,
          'nostensibly': 1,
          'murder': 1,
          'mystery': 1,
          'gives': 1,
          'almost': 1,
          'clues': 1,
          'immediately': 1,
          'lets': 1,
          'sit': 1,
          'back': 1,
          'feel': 1,
          'superior': 1,
          'cast': 1,
          'paper': 1,
          'fumble': 1,
          'finding': 1,
          'killer': 1,
          'anyone': 1,
          'due': 1,
          'loving': 1,
          'manner': 1,
          'everyone': 1,
          'aspect': 1,
          'fails': 1,
          'throwing': 1,
          'convenient': 1,
          'ridiculous': 1,
          'unsatisfying': 1,
          'wrap': 1,
          'things': 1,
          'since': 1,
          'walked': 1,
          'away': 1,
          'movie': 1,
          'theater': 1,
          'mood': 1,
          'nwhat': 1,
          'makes': 1,
          'remarkable': 1,
          'rarely': 1,
          'remember': 1,
          'making': 1,
          'wasting': 1,
          'time': 1,
          'ineptitude': 1,
          'nneg': 1}),
 Counter({'carrey': 8,
          'ventura': 3,
          'nthe': 3,
          'even': 3,
          'jim': 2,
          'nviewers': 2,
          'living': 2,
          'color': 2,
          'know': 2,
          'ace': 2,
          'pet': 2,
          'detective': 2,
          'writers': 2,
          'story': 2,
          'miami': 2,
          'around': 2,
          'nhe': 2,
          'funny': 2,
          'stuff': 2,
          'audience': 2,
          'film': 2,
          'takes': 2,
          'going': 1,
          'televisions': 1,
          'oneman': 1,
          'cartoon': 1,
          'characters': 1,
          'fire': 1,
          'marshall': 1,
          'bill': 1,
          'also': 1,
          'skitshow': 1,
          'little': 1,
          'goes': 1,
          'long': 1,
          'way': 1,
          'nunfortunately': 1,
          'fact': 1,
          'forgotten': 1,
          'makers': 1,
          'comedy': 1,
          'nthree': 1,
          'including': 1,
          'worked': 1,
          'slapstick': 1,
          'sends': 1,
          'selfstyled': 1,
          'trail': 1,
          'stolen': 1,
          'dolphin': 1,
          'missing': 1,
          'mammal': 1,
          'belongs': 1,
          'dolphins': 1,
          'need': 1,
          'mascot': 1,
          'upcoming': 1,
          'superbowl': 1,
          'nfor': 1,
          'plot': 1,
          'porpoises': 1,
          'works': 1,
          'well': 1,
          'three': 1,
          'stooges': 1,
          'short': 1,
          'ncarrey': 1,
          'gets': 1,
          'official': 1,
          'schtick': 1,
          'snoops': 1,
          'greater': 1,
          'leers': 1,
          'sneers': 1,
          'craning': 1,
          'neck': 1,
          'effect': 1,
          'captain': 1,
          'kirk': 1,
          'impersonation': 1,
          'nagain': 1,
          'nall': 1,
          'pretty': 1,
          'harmless': 1,
          'point': 1,
          'realize': 1,
          'absolutely': 1,
          'intention': 1,
          'focusing': 1,
          'anyone': 1,
          'n': 1,
          'suggested': 1,
          'alternate': 1,
          'titlejim': 1,
          'anything': 1,
          'laugh': 1,
          'nexport': 1,
          'france': 1,
          'may': 1,
          'hit': 1,
          'nas': 1,
          'stands': 1,
          'isnt': 1,
          'good': 1,
          'kids': 1,
          'profanity': 1,
          'count': 1,
          'alone': 1,
          'high': 1,
          'nwhich': 1,
          'ironic': 1,
          'since': 1,
          'children': 1,
          'probably': 1,
          'carreys': 1,
          'best': 1,
          'doesnt': 1,
          'goofball': 1,
          'charm': 1,
          'chris': 1,
          'elliotts': 1,
          'recent': 1,
          'nobrainer': 1,
          'cabin': 1,
          'boy': 1,
          'nsure': 1,
          'moments': 1,
          'nbut': 1,
          'say': 1,
          'whose': 1,
          'highpoints': 1,
          'include': 1,
          'watching': 1,
          'slink': 1,
          'theme': 1,
          'mission': 1,
          'impossible': 1,
          'nace': 1,
          'one': 1,
          'glaring': 1,
          'incongruity': 1,
          'namid': 1,
          'buttjokes': 1,
          'doubletakes': 1,
          'script': 1,
          'great': 1,
          'pains': 1,
          'setup': 1,
          'elaborate': 1,
          'rather': 1,
          'crying': 1,
          'game': 1,
          'gag': 1,
          'nand': 1,
          'intended': 1,
          'ahem': 1,
          'cojones': 1,
          'nneg': 1}),
 Counter({'space': 8,
          'family': 6,
          'lost': 5,
          'like': 5,
          'film': 4,
          'pretty': 3,
          'stars': 3,
          'nthe': 3,
          'nlost': 3,
          'robinson': 3,
          'mission': 3,
          'planet': 3,
          'entire': 3,
          'oldman': 3,
          'could': 3,
          'wrong': 3,
          'ever': 3,
          'incredibly': 3,
          'example': 3,
          'special': 3,
          'effects': 3,
          'impressive': 2,
          'actors': 2,
          'make': 2,
          'thru': 2,
          'find': 2,
          'way': 2,
          'home': 2,
          'terms': 2,
          'acting': 2,
          'star': 2,
          'n': 2,
          'nwell': 2,
          'much': 2,
          'know': 2,
          'scifi': 2,
          'series': 2,
          'nits': 2,
          'year': 2,
          'hurt': 2,
          'scientist': 2,
          'hired': 2,
          'leblanc': 2,
          'rogers': 2,
          'daughter': 2,
          'jupiter': 2,
          '2': 2,
          'makes': 2,
          'audience': 2,
          'evil': 2,
          'smith': 2,
          'robot': 2,
          'go': 2,
          'plot': 2,
          'get': 2,
          'hard': 2,
          'corny': 2,
          'lame': 2,
          'nif': 2,
          'voice': 2,
          'would': 2,
          'yet': 2,
          'dull': 2,
          'ass': 2,
          'escape': 2,
          'pod': 2,
          'without': 2,
          'think': 2,
          'time': 2,
          'character': 2,
          'couldnt': 2,
          'worse': 2,
          'nothing': 2,
          'considered': 2,
          'ending': 2,
          'movie': 2,
          'none': 1,
          'happen': 1,
          'im': 1,
          'referring': 1,
          'computer': 1,
          'generated': 1,
          'ones': 1,
          'movies': 1,
          'outer': 1,
          'less': 1,
          'hurtle': 1,
          'try': 1,
          'nyes': 1,
          'power': 1,
          'falling': 1,
          'nkinda': 1,
          'shortlived': 1,
          'dead': 1,
          'really': 1,
          'didnt': 1,
          'based': 1,
          '60s': 1,
          'television': 1,
          'name': 1,
          '2058': 1,
          'earths': 1,
          'precious': 1,
          'resources': 1,
          'quickly': 1,
          'usurped': 1,
          'needs': 1,
          'massive': 1,
          'population': 1,
          'njohn': 1,
          'william': 1,
          'leading': 1,
          'program': 1,
          'colonize': 1,
          'foreign': 1,
          'nearths': 1,
          'existance': 1,
          'contingent': 1,
          'upon': 1,
          'successful': 1,
          'nobody': 1,
          'whether': 1,
          'johns': 1,
          'battle': 1,
          'pilot': 1,
          'west': 1,
          'matt': 1,
          'seems': 1,
          'enthusiastic': 1,
          'leaving': 1,
          'several': 1,
          'years': 1,
          'njohns': 1,
          'consists': 1,
          'wife': 1,
          'maureen': 1,
          'mimi': 1,
          'atypical': 1,
          'teenage': 1,
          'penny': 1,
          'lacey': 1,
          'chabert': 1,
          'ingenious': 1,
          'son': 1,
          'jack': 1,
          'johnson': 1,
          'beautiful': 1,
          'judy': 1,
          'heather': 1,
          'graham': 1,
          'ndespite': 1,
          'everyones': 1,
          'reluctance': 1,
          'spacecraft': 1,
          'abandons': 1,
          'earth': 1,
          'vast': 1,
          'eternity': 1,
          'nunknown': 1,
          'anyone': 1,
          'doctor': 1,
          'stowaway': 1,
          'determined': 1,
          'sabotage': 1,
          'ndr': 1,
          'gary': 1,
          'group': 1,
          'rebel': 1,
          'conspirators': 1,
          'turn': 1,
          'expedition': 1,
          'sour': 1,
          'dr': 1,
          'reprogrammed': 1,
          'talking': 1,
          'destroy': 1,
          'nwhen': 1,
          'everything': 1,
          'sides': 1,
          'spaceship': 1,
          'warped': 1,
          'unknown': 1,
          'destination': 1,
          'premise': 1,
          'complete': 1,
          'nas': 1,
          'likely': 1,
          'boredom': 1,
          'point': 1,
          'wondering': 1,
          'ground': 1,
          'tell': 1,
          'deserves': 1,
          'blame': 1,
          'bland': 1,
          'characters': 1,
          'horrifically': 1,
          'script': 1,
          'nchabert': 1,
          'basically': 1,
          'one': 1,
          'overdo': 1,
          'sounding': 1,
          'whiny': 1,
          'munchkin': 1,
          'helium': 1,
          'convinced': 1,
          'commercials': 1,
          'altered': 1,
          'sort': 1,
          'twist': 1,
          'body': 1,
          'taken': 1,
          'aliens': 1,
          'youre': 1,
          'nthats': 1,
          'normal': 1,
          'nin': 1,
          'another': 1,
          'friend': 1,
          'faltering': 1,
          'big': 1,
          'screen': 1,
          'obviously': 1,
          'trying': 1,
          'charming': 1,
          'sense': 1,
          'want': 1,
          'shove': 1,
          'corridor': 1,
          'ngraham': 1,
          'babe': 1,
          'thank': 1,
          'goodness': 1,
          'something': 1,
          'nhurt': 1,
          'black': 1,
          'hole': 1,
          'excitement': 1,
          'sucks': 1,
          'energy': 1,
          'might': 1,
          'left': 1,
          'available': 1,
          'tablet': 1,
          'form': 1,
          'prescription': 1,
          'strength': 1,
          'sleeping': 1,
          'pill': 1,
          'njohnson': 1,
          'isnt': 1,
          'hes': 1,
          'young': 1,
          'winds': 1,
          'saving': 1,
          'everybodys': 1,
          'nwant': 1,
          'cool': 1,
          'kid': 1,
          'nhow': 1,
          'convinces': 1,
          'heart': 1,
          'reconsider': 1,
          'killing': 1,
          'nhey': 1,
          'dont': 1,
          'laugh': 1,
          'thing': 1,
          'actually': 1,
          'listened': 1,
          'mr': 1,
          'rogerswouldbeproud': 1,
          'sentiment': 1,
          'nbut': 1,
          'alas': 1,
          'thought': 1,
          'epitome': 1,
          'generic': 1,
          'mother': 1,
          'known': 1,
          'nwhy': 1,
          'hire': 1,
          'actress': 1,
          'nthey': 1,
          'couldve': 1,
          'white': 1,
          'cardboard': 1,
          'cutout': 1,
          'word': 1,
          'mom': 1,
          'printed': 1,
          'nnow': 1,
          'wouldve': 1,
          'pizzazz': 1,
          'luckily': 1,
          'doesnt': 1,
          'suffer': 1,
          'every': 1,
          'single': 1,
          'category': 1,
          'crisp': 1,
          'clear': 1,
          'least': 1,
          'mildly': 1,
          'captivating': 1,
          'unlike': 1,
          'presences': 1,
          'onscreen': 1,
          'save': 1,
          'plays': 1,
          'great': 1,
          'deal': 1,
          'fun': 1,
          'finesse': 1,
          'nunfortunately': 1,
          'locked': 1,
          'away': 1,
          'giving': 1,
          'us': 1,
          'ample': 1,
          'mocking': 1,
          'opportunities': 1,
          'enjoy': 1,
          'nwhile': 1,
          'pleasing': 1,
          'eye': 1,
          'modern': 1,
          'films': 1,
          'ncontact': 1,
          'far': 1,
          'exceeds': 1,
          'imagery': 1,
          'imagination': 1,
          'many': 1,
          'shortcomings': 1,
          'work': 1,
          'cinematic': 1,
          'art': 1,
          'numerous': 1,
          'contradictions': 1,
          'travel': 1,
          'aspect': 1,
          'horribly': 1,
          'flawed': 1,
          'wooden': 1,
          'dialogue': 1,
          'disappointing': 1,
          'youd': 1,
          'happier': 1,
          'seen': 1,
          'blown': 1,
          'smithereens': 1,
          'nthen': 1,
          'obvious': 1,
          'sequel': 1,
          'already': 1,
          'nwhat': 1,
          'awful': 1,
          'note': 1,
          'end': 1,
          'knowing': 1,
          'two': 1,
          'attempt': 1,
          'oriented': 1,
          'commendable': 1,
          'illusion': 1,
          'nostalgia': 1,
          'classic': 1,
          'tv': 1,
          'revisited': 1,
          'enough': 1,
          'satisfy': 1,
          'age': 1,
          'groups': 1,
          'danger': 1,
          'potential': 1,
          'goers': 1,
          'ndanger': 1,
          'nthis': 1,
          'crash': 1,
          'lands': 1,
          'breaking': 1,
          'atmosphere': 1,
          'mediocrity': 1,
          'nneg': 1}),
 Counter({'old': 8,
          'couple': 6,
          'men': 6,
          'n': 6,
          'odd': 5,
          'grumpy': 5,
          'oscar': 4,
          'felix': 4,
          'lemmon': 4,
          'matthau': 3,
          'movies': 3,
          'e': 3,
          'ii': 3,
          'nthe': 3,
          'women': 3,
          'years': 2,
          'together': 2,
          '1993s': 2,
          'sea': 2,
          'grumpiest': 2,
          'series': 2,
          'characters': 2,
          'car': 2,
          'original': 2,
          'two': 2,
          'movie': 2,
          'nit': 2,
          'since': 2,
          'buddy': 2,
          'first': 2,
          'nlets': 2,
          'hope': 2,
          'thirty': 1,
          'later': 1,
          'nthat': 1,
          'might': 1,
          'exciting': 1,
          'notion': 1,
          'wasnt': 1,
          'fact': 1,
          'jack': 1,
          'walter': 1,
          'reunited': 1,
          'several': 1,
          'recent': 1,
          '1995s': 1,
          'grumpier': 1,
          '1997s': 1,
          'nso': 1,
          'really': 1,
          'seems': 1,
          'another': 1,
          'entry': 1,
          'tired': 1,
          'plot': 1,
          'even': 1,
          'similar': 1,
          'matthaus': 1,
          'mismatched': 1,
          'brought': 1,
          'romance': 1,
          'children': 1,
          'noscars': 1,
          'son': 1,
          'jonathan': 1,
          'silverman': 1,
          'felixs': 1,
          'daughter': 1,
          'lisa': 1,
          'waltz': 1,
          'getting': 1,
          'married': 1,
          'former': 1,
          'roommates': 1,
          'ungar': 1,
          'madison': 1,
          'meet': 1,
          'airport': 1,
          'decide': 1,
          'share': 1,
          'nthen': 1,
          'hilarity': 1,
          'ensues': 1,
          'nwell': 1,
          'chuckles': 1,
          'ensue': 1,
          'anyway': 1,
          'nneil': 1,
          'simon': 1,
          'awardwinning': 1,
          'playwright': 1,
          'created': 1,
          'provides': 1,
          'screenplay': 1,
          'shock': 1,
          'script': 1,
          'piece': 1,
          'talentless': 1,
          'hackwork': 1,
          'beginning': 1,
          'end': 1,
          'nunlike': 1,
          'playmovie': 1,
          'doesnt': 1,
          'find': 1,
          'humor': 1,
          'personality': 1,
          'conflict': 1,
          'ninstead': 1,
          'depends': 1,
          'upon': 1,
          'humorous': 1,
          'situations': 1,
          'lose': 1,
          'cliff': 1,
          'caught': 1,
          'smuggling': 1,
          'mexicans': 1,
          'border': 1,
          'take': 1,
          'run': 1,
          'violent': 1,
          'husbands': 1,
          'played': 1,
          'christine': 1,
          'baranski': 1,
          'cybill': 1,
          'jean': 1,
          'smart': 1,
          'designing': 1,
          'hitch': 1,
          'ride': 1,
          'man': 1,
          'dies': 1,
          'desert': 1,
          '1968': 1,
          'remains': 1,
          'classic': 1,
          'comedy': 1,
          'introduced': 1,
          'motif': 1,
          'roommateasspouse': 1,
          'provided': 1,
          'gags': 1,
          'sitcoms': 1,
          'ever': 1,
          'second': 1,
          'outing': 1,
          'lemmonmatthau': 1,
          'team': 1,
          'debuted': 1,
          '1966s': 1,
          'fortune': 1,
          'cookie': 1,
          'made': 1,
          'worthwhile': 1,
          'comedies': 1,
          'front': 1,
          'page': 1,
          '1974': 1,
          '1981': 1,
          'going': 1,
          'separate': 1,
          'ways': 1,
          'reunion': 1,
          'six': 1,
          'ago': 1,
          'delightful': 1,
          'sequel': 1,
          'seemed': 1,
          'appropriate': 1,
          'tied': 1,
          'loose': 1,
          'ends': 1,
          'nbut': 1,
          'beating': 1,
          'horse': 1,
          'add': 1,
          'lemmons': 1,
          'fellow': 1,
          'americans': 1,
          'presidents': 1,
          'list': 1,
          'hollywood': 1,
          'offers': 1,
          'actors': 1,
          'something': 1,
          'fresh': 1,
          'also': 1,
          'see': 1,
          'neil': 1,
          'simons': 1,
          'name': 1,
          'justice': 1,
          'lost': 1,
          'yonkers': 1,
          'nneg': 1}),
 Counter({'comedy': 4,
          'dan': 3,
          'love': 3,
          'husband': 3,
          'wife': 3,
          'nthe': 3,
          'movie': 3,
          'write': 3,
          'good': 2,
          'midler': 2,
          'farina': 2,
          'married': 2,
          'mollys': 2,
          'wedding': 2,
          'passionately': 2,
          'runs': 2,
          'search': 2,
          'parents': 2,
          'keith': 2,
          'somehow': 2,
          'falls': 2,
          'dans': 2,
          'thought': 2,
          'n': 2,
          'romantic': 2,
          'bitch': 2,
          'shes': 2,
          'prick': 2,
          'except': 1,
          'bright': 1,
          'moments': 1,
          'verbal': 1,
          'old': 1,
          'feeling': 1,
          'embarrassing': 1,
          'sit': 1,
          'nbette': 1,
          'dennis': 1,
          'play': 1,
          'lilly': 1,
          'actress': 1,
          'author': 1,
          'violently': 1,
          'divorced': 1,
          'back': 1,
          'together': 1,
          'one': 1,
          'last': 1,
          'time': 1,
          'daughter': 1,
          'paula': 1,
          'marshall': 1,
          'nlilly': 1,
          'hate': 1,
          'sex': 1,
          'fall': 1,
          'neach': 1,
          'ditches': 1,
          'current': 1,
          'spouse': 1,
          '14': 1,
          'years': 1,
          'nmolly': 1,
          '24': 1,
          'hours': 1,
          'irresponsible': 1,
          'jamie': 1,
          'denton': 1,
          'tries': 1,
          'console': 1,
          'abandoned': 1,
          'spouses': 1,
          'nin': 1,
          'lillys': 1,
          'paparazzo': 1,
          'joey': 1,
          'danny': 1,
          'nucci': 1,
          'nmeanwhile': 1,
          'newlywed': 1,
          'ends': 1,
          'consoling': 1,
          'rowena': 1,
          'gail': 1,
          'ogrady': 1,
          'bed': 1,
          'audience': 1,
          'saw': 1,
          'apparently': 1,
          'adultery': 1,
          'hilarious': 1,
          'nim': 1,
          'quayle': 1,
          'bit': 1,
          'creepy': 1,
          'message': 1,
          'seemed': 1,
          'ignore': 1,
          'responsibilities': 1,
          'unrepentantly': 1,
          'fun': 1,
          'fucking': 1,
          'wish': 1,
          'family': 1,
          'values': 1,
          'aside': 1,
          'theres': 1,
          'something': 1,
          'cruel': 1,
          'nperhaps': 1,
          'would': 1,
          'played': 1,
          'well': 1,
          'black': 1,
          'nwe': 1,
          'supposed': 1,
          'rooting': 1,
          'creeps': 1,
          'nreiner': 1,
          'screenwriter': 1,
          'leslie': 1,
          'dixon': 1,
          'tried': 1,
          'make': 1,
          'easier': 1,
          'us': 1,
          'making': 1,
          'victims': 1,
          'unlikeable': 1,
          'nlillys': 1,
          'newage': 1,
          'flake': 1,
          'rambles': 1,
          'emotional': 1,
          'valet': 1,
          'parking': 1,
          'irrelevant': 1,
          'ndans': 1,
          'vain': 1,
          'manipulative': 1,
          'jealous': 1,
          'nmollys': 1,
          'careerconscious': 1,
          'selfcentered': 1,
          'republican': 1,
          'politician': 1,
          'thinks': 1,
          'fat': 1,
          'measure': 1,
          'also': 1,
          'fucked': 1,
          'neveryone': 1,
          'else': 1,
          'nbut': 1,
          'still': 1,
          'doesnt': 1,
          'justify': 1,
          'actions': 1,
          'movies': 1,
          'main': 1,
          'characters': 1,
          'hes': 1,
          'defense': 1,
          'somewhat': 1,
          'redeemed': 1,
          'funny': 1,
          'dialog': 1,
          'often': 1,
          'heated': 1,
          'arguments': 1,
          'aboveaverage': 1,
          'performances': 1,
          'breaking': 1,
          'characteractor': 1,
          'mold': 1,
          'nother': 1,
          'standard': 1,
          'substandard': 1,
          'gimmick': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'nerror': 4,
          'mars': 3,
          'na': 3,
          'mission': 2,
          'film': 2,
          'michael': 2,
          'redman': 2,
          'ntheres': 2,
          'world': 2,
          'artist': 2,
          'something': 2,
          'nhe': 2,
          'well': 2,
          'good': 2,
          'technician': 2,
          'make': 2,
          'films': 2,
          'de': 2,
          'work': 2,
          'turns': 2,
          'enjoyed': 2,
          '2001': 2,
          'close': 2,
          'encounters': 2,
          'nwhen': 2,
          'first': 2,
          'crew': 2,
          'nthey': 2,
          'dont': 2,
          'either': 2,
          'solve': 2,
          'looks': 2,
          'much': 2,
          'anything': 2,
          'space': 2,
          'seems': 2,
          'theres': 2,
          'nfrom': 2,
          'maybe': 1,
          'scrubbed': 1,
          'nmission': 1,
          'review': 1,
          'copyright': 1,
          '2000': 1,
          'difference': 1,
          'artists': 1,
          'technicians': 1,
          'vision': 1,
          'create': 1,
          'new': 1,
          'may': 1,
          'might': 1,
          'sloppy': 1,
          'youve': 1,
          'never': 1,
          'seen': 1,
          'look': 1,
          'without': 1,
          'direction': 1,
          'inner': 1,
          'someone': 1,
          'else': 1,
          'going': 1,
          'xerox': 1,
          'nobviously': 1,
          'successful': 1,
          'need': 1,
          'skills': 1,
          'nbrian': 1,
          'palma': 1,
          'masterful': 1,
          'nhes': 1,
          'spent': 1,
          'career': 1,
          'copying': 1,
          'others': 1,
          'notably': 1,
          'hitchcock': 1,
          'usually': 1,
          'knows': 1,
          'exactly': 1,
          'scene': 1,
          'learned': 1,
          'rote': 1,
          'naside': 1,
          'rare': 1,
          'flashes': 1,
          'originality': 1,
          'often': 1,
          'souldead': 1,
          'nin': 1,
          'palmas': 1,
          'latest': 1,
          'attention': 1,
          'stanley': 1,
          'kubrick': 1,
          'nto': 1,
          'tell': 1,
          'truth': 1,
          'portions': 1,
          'movie': 1,
          'liked': 1,
          'lot': 1,
          'better': 1,
          '30': 1,
          'years': 1,
          'ago': 1,
          'called': 1,
          'ni': 1,
          'even': 1,
          'titled': 1,
          'nnasa': 1,
          'set': 1,
          'sights': 1,
          'meets': 1,
          'disaster': 1,
          'rescue': 1,
          'sent': 1,
          'red': 1,
          'planet': 1,
          'eventually': 1,
          'meet': 1,
          'lone': 1,
          'surviving': 1,
          'astronautgonerasta': 1,
          'mysteries': 1,
          'universe': 1,
          'nand': 1,
          'boring': 1,
          'nthere': 1,
          'many': 1,
          'scenes': 1,
          'difficult': 1,
          'begin': 1,
          'feet': 1,
          'away': 1,
          'raging': 1,
          'massive': 1,
          'upsidedown': 1,
          'martian': 1,
          'tornado': 1,
          'remarkably': 1,
          'like': 1,
          'sandworm': 1,
          'dune': 1,
          'destroying': 1,
          'everything': 1,
          'path': 1,
          'hang': 1,
          'watching': 1,
          'interesting': 1,
          'character': 1,
          'thats': 1,
          'saying': 1,
          'killed': 1,
          'alien': 1,
          'laughable': 1,
          'rest': 1,
          'characters': 1,
          'dullest': 1,
          'people': 1,
          'imaginable': 1,
          'nice': 1,
          'eyecandy': 1,
          'face': 1,
          'giant': 1,
          'metal': 1,
          'thai': 1,
          'buddha': 1,
          'head': 1,
          'cool': 1,
          'threedimensional': 1,
          'holographic': 1,
          'planetarium': 1,
          'fun': 1,
          'watch': 1,
          'disney': 1,
          'nmaneuvering': 1,
          'suits': 1,
          'outside': 1,
          'ship': 1,
          'realistic': 1,
          'nbut': 1,
          'feels': 1,
          'weve': 1,
          'rotating': 1,
          'station': 1,
          'blinding': 1,
          'white': 1,
          'room': 1,
          'sound': 1,
          'puzzle': 1,
          'play': 1,
          'aliens': 1,
          'list': 1,
          'goes': 1,
          'actors': 1,
          'mostly': 1,
          'mobile': 1,
          'wooden': 1,
          'statues': 1,
          'neven': 1,
          'gary': 1,
          'sinise': 1,
          'tim': 1,
          'robbins': 1,
          'cant': 1,
          'muster': 1,
          'enough': 1,
          'emotion': 1,
          'convince': 1,
          'us': 1,
          'breathing': 1,
          'nno': 1,
          'one': 1,
          'care': 1,
          'happens': 1,
          'nyou': 1,
          'wont': 1,
          'absolutely': 1,
          'worst': 1,
          'sin': 1,
          'blatant': 1,
          'product': 1,
          'placement': 1,
          'dr': 1,
          'pepper': 1,
          '20': 1,
          'foot': 1,
          'tall': 1,
          'logo': 1,
          'saves': 1,
          'day': 1,
          'save': 1,
          'commercials': 1,
          'insipid': 1,
          'bits': 1,
          'nneg': 1}),
 Counter({'film': 20,
          'drive': 5,
          'nthe': 5,
          'lynch': 5,
          'mulholland': 4,
          'nin': 4,
          'think': 4,
          'pilot': 4,
          'woman': 4,
          'nshe': 4,
          'strange': 4,
          'story': 3,
          'end': 3,
          'tv': 3,
          'david': 3,
          'else': 3,
          'wants': 3,
          'little': 3,
          'know': 3,
          'crime': 3,
          'nthere': 3,
          'called': 3,
          '4': 3,
          'audience': 3,
          'clues': 3,
          'well': 2,
          'festival': 2,
          'nas': 2,
          'see': 2,
          'fact': 2,
          'hollywood': 2,
          'ntoward': 2,
          'director': 2,
          'something': 2,
          'opens': 2,
          'car': 2,
          'bungalow': 2,
          'nmeanwhile': 2,
          'actress': 2,
          'surprised': 2,
          'sure': 2,
          'nhe': 2,
          'cast': 2,
          'one': 2,
          'intended': 2,
          'nlynch': 2,
          'make': 2,
          'ni': 2,
          '0': 2,
          'scale': 2,
          'low': 2,
          'read': 2,
          'large': 2,
          'simple': 2,
          'explanation': 2,
          'add': 2,
          'ubar': 2,
          'nlook': 2,
          'cannes': 1,
          'rating': 1,
          'toronto': 1,
          'international': 1,
          'nit': 1,
          'may': 1,
          'clear': 1,
          'viewer': 1,
          'negative': 1,
          'running': 1,
          'time': 1,
          'interesting': 1,
          'mystery': 1,
          'told': 1,
          'backdrop': 1,
          'industry': 1,
          'everything': 1,
          'built': 1,
          'falls': 1,
          'apart': 1,
          'series': 1,
          'writer': 1,
          'sell': 1,
          'decided': 1,
          'wanted': 1,
          'nsomething': 1,
          'played': 1,
          'laura': 1,
          'harring': 1,
          'killed': 1,
          'crash': 1,
          'saves': 1,
          'life': 1,
          'crawls': 1,
          'away': 1,
          'accident': 1,
          'concussion': 1,
          'finds': 1,
          'unlocked': 1,
          'door': 1,
          'sleep': 1,
          'young': 1,
          'vivacious': 1,
          'betty': 1,
          'naomi': 1,
          'watts': 1,
          'arrives': 1,
          'canada': 1,
          'build': 1,
          'career': 1,
          'nbetty': 1,
          'find': 1,
          'sleeping': 1,
          'borrowed': 1,
          'even': 1,
          'awakes': 1,
          'nthey': 1,
          'fix': 1,
          'name': 1,
          'rita': 1,
          'right': 1,
          'local': 1,
          'adam': 1,
          'kesher': 1,
          'justin': 1,
          'theroux': 1,
          'problems': 1,
          'trying': 1,
          'new': 1,
          'getting': 1,
          'pressure': 1,
          'producers': 1,
          'figures': 1,
          'someone': 1,
          'cammie': 1,
          'rhodes': 1,
          'melissa': 1,
          'george': 1,
          'nthese': 1,
          'two': 1,
          'threads': 1,
          'joined': 1,
          'third': 1,
          'comic': 1,
          'murder': 1,
          'goes': 1,
          'terribly': 1,
          'wrong': 1,
          'also': 1,
          'character': 1,
          'cowboy': 1,
          'monty': 1,
          'montgomery': 1,
          'adding': 1,
          'confusion': 1,
          'probably': 1,
          'television': 1,
          'great': 1,
          'vibrancy': 1,
          'showing': 1,
          'dancing': 1,
          '60s': 1,
          'style': 1,
          'credits': 1,
          'na': 1,
          'lot': 1,
          'starts': 1,
          'fun': 1,
          'could': 1,
          'enjoyable': 1,
          'stylish': 1,
          'chooses': 1,
          'material': 1,
          'added': 1,
          'reason': 1,
          'earthworms': 1,
          'decidedly': 1,
          'touches': 1,
          'long': 1,
          'subject': 1,
          'matter': 1,
          'gets': 1,
          'heavier': 1,
          'violence': 1,
          'sex': 1,
          'scenes': 1,
          'clearly': 1,
          'nunfortunately': 1,
          'important': 1,
          'comments': 1,
          'would': 1,
          'spoilers': 1,
          'mention': 1,
          'main': 1,
          'body': 1,
          'review': 1,
          'give': 1,
          '10': 1,
          'nmulholland': 1,
          'spoiler': 1,
          'warning': 1,
          'rated': 1,
          'fairly': 1,
          'nyou': 1,
          'seeing': 1,
          'deciding': 1,
          'ndavid': 1,
          'part': 1,
          'dark': 1,
          'satirist': 1,
          'nmost': 1,
          'work': 1,
          'done': 1,
          'familiar': 1,
          'genres': 1,
          'way': 1,
          'shows': 1,
          'underside': 1,
          'laugh': 1,
          'expense': 1,
          'genre': 1,
          'nwhat': 1,
          'want': 1,
          'nplaying': 1,
          'expectations': 1,
          'going': 1,
          'first': 1,
          '80': 1,
          'tells': 1,
          'multithread': 1,
          'sprinkled': 1,
          'throughout': 1,
          'nthen': 1,
          'suddenly': 1,
          'turns': 1,
          'ear': 1,
          'number': 1,
          'appear': 1,
          'expectation': 1,
          'nbut': 1,
          'given': 1,
          'selfcontradictory': 1,
          'argue': 1,
          'seen': 1,
          'afterward': 1,
          'come': 1,
          'theories': 1,
          'pointers': 1,
          'noticeably': 1,
          'contradictory': 1,
          'hear': 1,
          'better': 1,
          'merely': 1,
          'playing': 1,
          'joke': 1,
          'visual': 1,
          'curiosity': 1,
          'popular': 1,
          'sixties': 1,
          'nmad': 1,
          'magazine': 1,
          'poiuyt': 1,
          'nother': 1,
          'sources': 1,
          'tri': 1,
          'pronged': 1,
          'small': 1,
          'portions': 1,
          'makes': 1,
          'sense': 1,
          'whole': 1,
          'figure': 1,
          'nthis': 1,
          'estimation': 1,
          'cinematic': 1,
          'equivalent': 1,
          'tripronged': 1,
          'nneg': 1}),
 Counter({'chucky': 9,
          'plastic': 4,
          'bride': 4,
          'tiffany': 4,
          'dolls': 3,
          'jennifer': 3,
          'married': 3,
          'nthe': 3,
          'possessed': 2,
          'tilly': 2,
          'doll': 2,
          'spirit': 2,
          'murderer': 2,
          'couple': 2,
          'mid': 2,
          'life': 2,
          'crisis': 2,
          'gotten': 2,
          'make': 2,
          'scary': 2,
          'keep': 2,
          'attention': 2,
          'half': 2,
          'ingredients': 1,
          'love': 1,
          'sex': 1,
          'nstarring': 1,
          'voice': 1,
          'brad': 1,
          'dourif': 1,
          'katherine': 1,
          'heigl': 1,
          'nick': 1,
          'stabile': 1,
          'john': 1,
          'ritter': 1,
          'nsynopsis': 1,
          'fourth': 1,
          'film': 1,
          'series': 1,
          'debuted': 1,
          'late': 1,
          '1980s': 1,
          'nbasically': 1,
          'walk': 1,
          'talk': 1,
          'slain': 1,
          'nin': 1,
          'chuckys': 1,
          'longtime': 1,
          'girlfriend': 1,
          'dies': 1,
          'inhabits': 1,
          'female': 1,
          'voodoo': 1,
          'ndolls': 1,
          'get': 1,
          'embark': 1,
          'quest': 1,
          'reach': 1,
          'cemetery': 1,
          'new': 1,
          'jersey': 1,
          'mystical': 1,
          'gem': 1,
          'might': 1,
          'enable': 1,
          'humans': 1,
          'stow': 1,
          'away': 1,
          'back': 1,
          'vehicle': 1,
          'driven': 1,
          'newly': 1,
          'eloped': 1,
          'side': 1,
          'plot': 1,
          'suspects': 1,
          'nopinion': 1,
          'attempt': 1,
          'horror': 1,
          'humor': 1,
          'doesnt': 1,
          'succeed': 1,
          'nsomehow': 1,
          'moaning': 1,
          'nand': 1,
          'harping': 1,
          'suspenseless': 1,
          'relies': 1,
          'mostly': 1,
          'tillys': 1,
          'cleavage': 1,
          'first': 1,
          'occasional': 1,
          'puns': 1,
          'second': 1,
          'best': 1,
          'said': 1,
          'sarcastic': 1,
          'nneg': 1}),
 Counter({'movie': 15,
          'bad': 8,
          'movies': 6,
          'robinson': 6,
          'lost': 5,
          'nthe': 5,
          'star': 4,
          'space': 4,
          'made': 4,
          'good': 4,
          'family': 4,
          'monkey': 3,
          'sound': 3,
          'ni': 3,
          'even': 3,
          'actor': 3,
          'nand': 3,
          'one': 3,
          'time': 3,
          'enough': 3,
          'nthen': 3,
          'film': 3,
          'shows': 3,
          'half': 2,
          'saccharine': 2,
          'n': 2,
          'computergenerated': 2,
          'end': 2,
          'actually': 2,
          '2': 2,
          'nwhen': 2,
          'johnson': 2,
          'pet': 2,
          'robot': 2,
          'supposed': 2,
          'nthere': 2,
          'away': 2,
          'much': 2,
          'mean': 2,
          'nalso': 2,
          'rooting': 2,
          'robinsons': 2,
          'like': 2,
          'little': 2,
          'futuristic': 2,
          'gary': 2,
          'oldman': 2,
          'though': 2,
          'tone': 2,
          'strong': 2,
          'bit': 2,
          'nthat': 2,
          'dialogue': 2,
          'hip': 2,
          'better': 2,
          'line': 2,
          'place': 2,
          'interest': 2,
          'silly': 2,
          'interesting': 2,
          'john': 2,
          'nstill': 2,
          'njust': 2,
          'quality': 2,
          'nin': 2,
          'rebels': 2,
          'guys': 2,
          'specific': 2,
          'us': 2,
          'year': 2,
          'nwhy': 2,
          'future': 2,
          'bring': 2,
          'chair': 2,
          'nthis': 2,
          'cool': 2,
          'watching': 1,
          'vowed': 1,
          'subtract': 1,
          'review': 1,
          'filmmakers': 1,
          'included': 1,
          'syrup': 1,
          'cute': 1,
          'cuddly': 1,
          'nif': 1,
          'died': 1,
          'got': 1,
          'extra': 1,
          'nalas': 1,
          'showed': 1,
          'unharmed': 1,
          'wet': 1,
          'sickly': 1,
          'gagging': 1,
          'rolling': 1,
          'eyeballs': 1,
          'nwhat': 1,
          'means': 1,
          'deserved': 1,
          'stars': 1,
          'nthats': 1,
          'pretty': 1,
          'generous': 1,
          'considering': 1,
          'camp': 1,
          'lacked': 1,
          'hint': 1,
          'tongue': 1,
          'cheek': 1,
          'jack': 1,
          'teaches': 1,
          'friendship': 1,
          'buy': 1,
          'nso': 1,
          'seemingly': 1,
          'high': 1,
          'rating': 1,
          'reasons': 1,
          'unable': 1,
          'throw': 1,
          'experience': 1,
          'garbage': 1,
          'nfirst': 1,
          'saw': 1,
          'opening': 1,
          'night': 1,
          'first': 1,
          'day': 1,
          'operation': 1,
          'brand': 1,
          'new': 1,
          'theater': 1,
          'screen': 1,
          'kicked': 1,
          'ass': 1,
          'nnobody': 1,
          'country': 1,
          'enjoyed': 1,
          'audience': 1,
          'dont': 1,
          'necessarily': 1,
          'way': 1,
          'zero': 1,
          'scenes': 1,
          'found': 1,
          'getting': 1,
          'caught': 1,
          'tension': 1,
          'liked': 1,
          'settings': 1,
          'usually': 1,
          'prefer': 1,
          'see': 1,
          'models': 1,
          'sets': 1,
          'cg': 1,
          'detailed': 1,
          'ive': 1,
          'seen': 1,
          'lot': 1,
          'looks': 1,
          'someone': 1,
          'spent': 1,
          'overtime': 1,
          'render': 1,
          'cities': 1,
          'never': 1,
          'typecast': 1,
          'villain': 1,
          'nwilliam': 1,
          'hurt': 1,
          'isnt': 1,
          'either': 1,
          'nneither': 1,
          'great': 1,
          'role': 1,
          'performances': 1,
          'watchable': 1,
          'perhaps': 1,
          'shouldnt': 1,
          'admit': 1,
          'something': 1,
          'outlook': 1,
          'brought': 1,
          'back': 1,
          'childhood': 1,
          'swearing': 1,
          'blood': 1,
          'moral': 1,
          'message': 1,
          'romance': 1,
          'whose': 1,
          'culmination': 1,
          'hours': 1,
          'real': 1,
          'kiss': 1,
          'sex': 1,
          'nit': 1,
          'felt': 1,
          'disney': 1,
          'looked': 1,
          'forward': 1,
          'six': 1,
          'nthose': 1,
          'probably': 1,
          'manna': 1,
          'heaven': 1,
          'type': 1,
          'moviemaking': 1,
          'art': 1,
          'nnow': 1,
          'news': 1,
          'nworst': 1,
          'unforgivable': 1,
          'incredibly': 1,
          'nits': 1,
          'squeakyclean': 1,
          'fun': 1,
          'trying': 1,
          'hard': 1,
          'pulp': 1,
          'fiction': 1,
          'hold': 1,
          'joystick': 1,
          'called': 1,
          'upon': 1,
          'deliver': 1,
          'warp': 1,
          'conduit': 1,
          'thingamajigs': 1,
          'inevitably': 1,
          'stumble': 1,
          'badly': 1,
          'embarrass': 1,
          'lowliest': 1,
          'trek': 1,
          'ensign': 1,
          'nsecond': 1,
          'worst': 1,
          'closely': 1,
          'related': 1,
          'screenplay': 1,
          'storys': 1,
          'exposition': 1,
          'takes': 1,
          'press': 1,
          'conference': 1,
          'allows': 1,
          'writers': 1,
          'explain': 1,
          'whats': 1,
          'happening': 1,
          'least': 1,
          'amount': 1,
          'creativity': 1,
          'effort': 1,
          'nonce': 1,
          'story': 1,
          'gets': 1,
          'going': 1,
          'concede': 1,
          'momentary': 1,
          'burst': 1,
          'whole': 1,
          'situations': 1,
          'arise': 1,
          'contrived': 1,
          'easily': 1,
          'reprograms': 1,
          'wills': 1,
          'kill': 1,
          'friend': 1,
          'summed': 1,
          'perfectly': 1,
          'flipped': 1,
          'switch': 1,
          'evil': 1,
          'theres': 1,
          'colorado': 1,
          'daily': 1,
          'said': 1,
          'would': 1,
          'central': 1,
          'character': 1,
          'father': 1,
          'could': 1,
          'adventure': 1,
          'ntheyre': 1,
          'mostly': 1,
          'right': 1,
          'except': 1,
          'wasnt': 1,
          'carry': 1,
          'patriarch': 1,
          'hero': 1,
          'lack': 1,
          'imagination': 1,
          'tame': 1,
          'kids': 1,
          'doesnt': 1,
          'bow': 1,
          'promise': 1,
          'keepers': 1,
          'notion': 1,
          'whos': 1,
          'center': 1,
          'nmany': 1,
          'films': 1,
          'nontraditional': 1,
          'structure': 1,
          'fly': 1,
          'home': 1,
          'comes': 1,
          'mind': 1,
          'effect': 1,
          'politics': 1,
          'seem': 1,
          'conservative': 1,
          'regressive': 1,
          'wars': 1,
          'nwe': 1,
          'fighting': 1,
          'system': 1,
          'terrorist': 1,
          'force': 1,
          'must': 1,
          'killed': 1,
          'crushed': 1,
          'silenced': 1,
          'children': 1,
          'may': 1,
          'live': 1,
          'free': 1,
          'ominous': 1,
          'excuse': 1,
          'violence': 1,
          'almost': 1,
          'makes': 1,
          'sympathize': 1,
          'terrorists': 1,
          'nfinally': 1,
          'details': 1,
          'deserve': 1,
          'criticism': 1,
          'tells': 1,
          'setting': 1,
          '2056': 1,
          'bother': 1,
          'saying': 1,
          'tell': 1,
          'tv': 1,
          'series': 1,
          'take': 1,
          '1997': 1,
          'nsetting': 1,
          'date': 1,
          'dates': 1,
          'guarantees': 1,
          'wont': 1,
          'timeless': 1,
          'really': 1,
          'running': 1,
          'anyway': 1,
          'scene': 1,
          'checking': 1,
          'controls': 1,
          'rises': 1,
          'fifteen': 1,
          'feet': 1,
          'pole': 1,
          'waste': 1,
          'money': 1,
          'reminded': 1,
          'bugs': 1,
          'bunnys': 1,
          'barber': 1,
          'spaceship': 1,
          'designers': 1,
          'havent': 1,
          'learned': 1,
          'thing': 1,
          'ergonomics': 1,
          'none': 1,
          'vaguely': 1,
          'redeeming': 1,
          'credits': 1,
          'succeed': 1,
          'rest': 1,
          'failed': 1,
          'look': 1,
          'techno': 1,
          'beat': 1,
          'sampled': 1,
          'cheesiest': 1,
          'context': 1,
          'overlaid': 1,
          'jumpy': 1,
          'credit': 1,
          'sequence': 1,
          'distorted': 1,
          'clips': 1,
          'nbut': 1,
          'thats': 1,
          'best': 1,
          'part': 1,
          'cant': 1,
          'conscience': 1,
          'recommend': 1,
          'get': 1,
          'stuck': 1,
          'seeing': 1,
          'might': 1,
          'able': 1,
          'appreciate': 1,
          'keep': 1,
          'distance': 1,
          'think': 1,
          'liking': 1,
          'child': 1,
          'along': 1,
          'bingo': 1,
          'cards': 1,
          'nneg': 1}),
 Counter({'bad': 6,
          'movie': 5,
          'ni': 4,
          'shroff': 4,
          'going': 3,
          'jackie': 3,
          'ram': 2,
          'shrasta': 2,
          'video': 2,
          'print': 2,
          'couldnt': 2,
          'watching': 2,
          'didnt': 2,
          'three': 2,
          'really': 2,
          'looked': 2,
          'nthe': 2,
          'even': 2,
          'like': 2,
          'see': 1,
          'big': 1,
          'screen': 1,
          'last': 1,
          'night': 1,
          'stopped': 1,
          'store': 1,
          'rent': 1,
          'movies': 1,
          'nluckily': 1,
          'guy': 1,
          'middle': 1,
          'recording': 1,
          'knew': 1,
          'halffaces': 1,
          'poor': 1,
          'sound': 1,
          'quality': 1,
          'help': 1,
          'got': 1,
          'nwell': 1,
          'indeed': 1,
          'glad': 1,
          'dish': 1,
          '7': 1,
          'waste': 1,
          'hours': 1,
          'time': 1,
          'sitting': 1,
          'theatre': 1,
          'nthis': 1,
          'sucks': 1,
          'nit': 1,
          'many': 1,
          'inconsistencies': 1,
          'driving': 1,
          'crazy': 1,
          'nfor': 1,
          'example': 1,
          'grow': 1,
          'two': 1,
          'feet': 1,
          'hair': 1,
          'four': 1,
          'days': 1,
          'njackie': 1,
          'stupid': 1,
          'steven': 1,
          'seagal': 1,
          'ponytail': 1,
          'songs': 1,
          'acting': 1,
          'especially': 1,
          'deepti': 1,
          'bhatnagars': 1,
          'direction': 1,
          'worst': 1,
          'comedy': 1,
          'scenes': 1,
          'jagdish': 1,
          'johnny': 1,
          'lever': 1,
          'made': 1,
          'want': 1,
          'throw': 1,
          'finish': 1,
          'take': 1,
          'anymore': 1,
          'nnote': 1,
          'anyone': 1,
          'liked': 1,
          'aatish': 1,
          'director': 1,
          'guess': 1,
          'youd': 1,
          'nits': 1,
          'practically': 1,
          'except': 1,
          'sanjay': 1,
          'dutt': 1,
          'replaced': 1,
          'naditya': 1,
          'panscholi': 1,
          'sidekick': 1,
          'n': 1,
          'give': 1,
          'zero': 1,
          'personally': 1,
          'loosened': 1,
          'little': 1,
          'nhe': 1,
          'fresh': 1,
          'wore': 1,
          'good': 1,
          'clothes': 1,
          'always': 1,
          'performance': 1,
          'though': 1,
          'wasnt': 1,
          'best': 1,
          'saving': 1,
          'grace': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'ni': 5,
          'bugs': 4,
          'weapons': 4,
          'troopers': 3,
          'bad': 3,
          'line': 3,
          'plot': 3,
          'onto': 3,
          'film': 3,
          'nas': 3,
          'one': 3,
          'planet': 3,
          'really': 2,
          'blood': 2,
          'shown': 2,
          'screen': 2,
          'strong': 2,
          'physics': 2,
          'review': 2,
          'federation': 2,
          'nazi': 2,
          'go': 2,
          'fight': 2,
          'sound': 2,
          'familiar': 2,
          'recruits': 2,
          'way': 2,
          'burst': 2,
          'brandishing': 2,
          '1997': 2,
          'group': 2,
          'nthis': 2,
          'course': 2,
          'see': 2,
          'nin': 2,
          'scene': 2,
          'could': 2,
          'step': 2,
          'starship': 1,
          'mean': 1,
          'nnot': 1,
          'cross': 1,
          'taste': 1,
          'comes': 1,
          'gore': 1,
          'body': 1,
          'parts': 1,
          'blissfully': 1,
          'jumps': 1,
          'apparently': 1,
          'unaware': 1,
          'trailers': 1,
          'appeal': 1,
          'audience': 1,
          'five': 1,
          'fifteen': 1,
          'year': 1,
          'olds': 1,
          'saw': 1,
          'many': 1,
          'theatre': 1,
          'nlooking': 1,
          'past': 1,
          'appalling': 1,
          'sight': 1,
          'overdone': 1,
          'violence': 1,
          'left': 1,
          'thin': 1,
          'best': 1,
          'lead': 1,
          'characters': 1,
          'blatant': 1,
          'disregard': 1,
          'obvious': 1,
          'naziesque': 1,
          'theme': 1,
          'nthat': 1,
          'said': 1,
          'starts': 1,
          'propaganda': 1,
          'message': 1,
          'whos': 1,
          'logo': 1,
          'bears': 1,
          'resemblance': 1,
          'german': 1,
          'eagle': 1,
          'urging': 1,
          'populace': 1,
          'attempting': 1,
          'destroy': 1,
          'earth': 1,
          'nthe': 1,
          'shows': 1,
          'large': 1,
          'rallies': 1,
          'young': 1,
          'children': 1,
          'attendance': 1,
          'pledging': 1,
          'allegiance': 1,
          'progresses': 1,
          'terror': 1,
          'tactic': 1,
          'training': 1,
          'drill': 1,
          'sargeant': 1,
          'graphically': 1,
          'compound': 1,
          'fractures': 1,
          'arm': 1,
          'throws': 1,
          'knife': 1,
          'anothers': 1,
          'hand': 1,
          'neventually': 1,
          'embark': 1,
          'journey': 1,
          'location': 1,
          'two': 1,
          'thirds': 1,
          'across': 1,
          'milky': 1,
          'galaxy': 1,
          'home': 1,
          'faster': 1,
          'light': 1,
          'travelling': 1,
          'heroes': 1,
          'arrive': 1,
          'drop': 1,
          'craft': 1,
          'n': 1,
          'nyou': 1,
          'say': 1,
          'laser': 1,
          'beam': 1,
          'nsonic': 1,
          'nphasers': 1,
          'nphoton': 1,
          'cannons': 1,
          'nnope': 1,
          'hop': 1,
          'good': 1,
          'old': 1,
          'machine': 1,
          'guns': 1,
          'pump': 1,
          'action': 1,
          'rifles': 1,
          'tactical': 1,
          'nuclear': 1,
          'guess': 1,
          'lot': 1,
          'money': 1,
          'rd': 1,
          'went': 1,
          'travel': 1,
          'weaponry': 1,
          'assault': 1,
          'begins': 1,
          'seen': 1,
          'walking': 1,
          'straight': 1,
          'box': 1,
          'canyon': 1,
          'ntwo': 1,
          'members': 1,
          'notice': 1,
          'rocks': 1,
          'slipping': 1,
          'falling': 1,
          'even': 1,
          'sees': 1,
          'streak': 1,
          'fly': 1,
          'disregards': 1,
          'nothing': 1,
          'leads': 1,
          'massive': 1,
          'carnage': 1,
          'shed': 1,
          'graphic': 1,
          'depictions': 1,
          'limbs': 1,
          'heads': 1,
          'ripped': 1,
          'severed': 1,
          'bodies': 1,
          'nagain': 1,
          'military': 1,
          'tactics': 1,
          'future': 1,
          'must': 1,
          'evolved': 1,
          'pace': 1,
          'end': 1,
          'neil': 1,
          'patrick': 1,
          'doogie': 1,
          'howser': 1,
          'harris': 1,
          'accurately': 1,
          'described': 1,
          'ss': 1,
          'trenchcoat': 1,
          'hat': 1,
          'gloves': 1,
          'nhe': 1,
          'vulcan': 1,
          'mind': 1,
          'meld': 1,
          'giant': 1,
          'slug': 1,
          'proclaims': 1,
          'scared': 1,
          'sets': 1,
          'frenzy': 1,
          'closer': 1,
          'completing': 1,
          'goal': 1,
          'total': 1,
          'genocide': 1,
          'species': 1,
          'tried': 1,
          'hard': 1,
          'spoil': 1,
          'given': 1,
          'nonexistence': 1,
          'may': 1,
          'anyway': 1,
          'pages': 1,
          'ripping': 1,
          'apart': 1,
          'dont': 1,
          'want': 1,
          'bore': 1,
          'badly': 1,
          'short': 1,
          'felt': 1,
          'subjected': 1,
          'mix': 1,
          'pronazi': 1,
          'war': 1,
          'substituted': 1,
          'allies': 1,
          'drivers': 1,
          'education': 1,
          'accident': 1,
          'complete': 1,
          'blank': 1,
          'wouldnt': 1,
          'recommend': 1,
          'anyone': 1,
          'anywhere': 1,
          'circumstance': 1,
          'ncopyright': 1,
          'c': 1,
          'tim': 1,
          'jandt': 1,
          'nneg': 1}),
 Counter({'lambert': 6,
          'movie': 6,
          'one': 5,
          'movies': 4,
          'could': 4,
          'good': 4,
          'scene': 4,
          'nthe': 3,
          'hunted': 3,
          'bad': 3,
          'getting': 3,
          'ninja': 3,
          'real': 3,
          'characters': 3,
          'ten': 2,
          'nchristopher': 2,
          'evil': 2,
          'modernday': 2,
          'japan': 2,
          'almost': 2,
          'ni': 2,
          'insulting': 2,
          'business': 2,
          'manages': 2,
          'witness': 2,
          'course': 2,
          'nin': 2,
          'goof': 2,
          'field': 2,
          'know': 2,
          'nthis': 2,
          'samurai': 2,
          'two': 2,
          'even': 2,
          'guy': 2,
          'get': 2,
          'whole': 2,
          'thing': 2,
          'key': 2,
          'somewhere': 2,
          'interesting': 2,
          'capsule': 1,
          'worst': 1,
          'ever': 1,
          'made': 1,
          'vs': 1,
          'ninjas': 1,
          'nand': 1,
          'nobody': 1,
          'wins': 1,
          'completely': 1,
          'inept': 1,
          'totally': 1,
          'braindamaged': 1,
          'feel': 1,
          'affection': 1,
          'see': 1,
          'showing': 1,
          'friends': 1,
          'jolly': 1,
          'guffaw': 1,
          'werent': 1,
          'also': 1,
          'insanely': 1,
          'xenophobic': 1,
          'plays': 1,
          'computerparts': 1,
          'salesman': 1,
          'whos': 1,
          'nhe': 1,
          'meets': 1,
          'slinky': 1,
          'young': 1,
          'woman': 1,
          'joan': 1,
          'chen': 1,
          'torrid': 1,
          'night': 1,
          'lovemaking': 1,
          'death': 1,
          'hands': 1,
          'clan': 1,
          'leader': 1,
          'john': 1,
          'lone': 1,
          'napparently': 1,
          'unfinished': 1,
          'concluded': 1,
          'slaughtered': 1,
          'nsince': 1,
          'hes': 1,
          'next': 1,
          'die': 1,
          'nlets': 1,
          'stop': 1,
          'think': 1,
          'second': 1,
          'nif': 1,
          'life': 1,
          'chased': 1,
          'fanatical': 1,
          'devotees': 1,
          'secret': 1,
          'society': 1,
          'hed': 1,
          'lifespan': 1,
          'measure': 1,
          'atomic': 1,
          'clock': 1,
          'manage': 1,
          'kill': 1,
          'everyone': 1,
          'except': 1,
          'imagine': 1,
          'japanese': 1,
          'gods': 1,
          'smiled': 1,
          'provided': 1,
          'radiates': 1,
          'feet': 1,
          'body': 1,
          'nyou': 1,
          'invisible': 1,
          'zone': 1,
          'anyone': 1,
          'intent': 1,
          'harm': 1,
          'becomes': 1,
          'klutz': 1,
          'matter': 1,
          'dexterity': 1,
          'beginning': 1,
          'problems': 1,
          'nlambert': 1,
          'eventually': 1,
          'finds': 1,
          'pseudosafety': 1,
          'longhaired': 1,
          'yoshio': 1,
          'harada': 1,
          'partner': 1,
          'yoko': 1,
          'shimada': 1,
          'may': 1,
          'remember': 1,
          'lady': 1,
          'toda': 1,
          'buntaro': 1,
          'shogun': 1,
          'nthey': 1,
          'best': 1,
          'things': 1,
          'every': 1,
          'authority': 1,
          'presence': 1,
          'actually': 1,
          'look': 1,
          'like': 1,
          'belong': 1,
          'dressed': 1,
          'full': 1,
          'armor': 1,
          'wielding': 1,
          'bows': 1,
          'script': 1,
          'doesnt': 1,
          'hell': 1,
          'nlone': 1,
          'zerodimensional': 1,
          'badguy': 1,
          'cliche': 1,
          'wallow': 1,
          'around': 1,
          'always': 1,
          'exotic': 1,
          'women': 1,
          'dripping': 1,
          'elevated': 1,
          'level': 1,
          'stereotype': 1,
          'nwhats': 1,
          'funny': 1,
          'peripheral': 1,
          'sterotypes': 1,
          'theres': 1,
          'nice': 1,
          'little': 1,
          'tokyo': 1,
          'cabdriver': 1,
          'girl': 1,
          'pachinko': 1,
          'parlor': 1,
          'many': 1,
          'main': 1,
          'unsalveageably': 1,
          'hateful': 1,
          'nalso': 1,
          'phenomenal': 1,
          'instrumental': 1,
          'troupe': 1,
          'kodo': 1,
          'assembled': 1,
          'superior': 1,
          'soundtrack': 1,
          'cd': 1,
          'survive': 1,
          'despite': 1,
          'drek': 1,
          'designed': 1,
          'accompany': 1,
          'nthere': 1,
          'extended': 1,
          'battle': 1,
          'middle': 1,
          'reason': 1,
          'enough': 1,
          'watch': 1,
          'gory': 1,
          'excellently': 1,
          'staged': 1,
          'fight': 1,
          'bullet': 1,
          'train': 1,
          'shows': 1,
          'imagination': 1,
          'moment': 1,
          'smothers': 1,
          'trying': 1,
          'clumsily': 1,
          'recouple': 1,
          'relentlessly': 1,
          'stupid': 1,
          'plot': 1,
          'nby': 1,
          'time': 1,
          'final': 1,
          'showdown': 1,
          'wield': 1,
          'sword': 1,
          'judging': 1,
          'hamhanded': 1,
          'editing': 1,
          'forged': 1,
          'seven': 1,
          'hours': 1,
          'longer': 1,
          'care': 1,
          'nwere': 1,
          'given': 1,
          'definitive': 1,
          'information': 1,
          'whether': 1,
          'lives': 1,
          'dies': 1,
          'nsomeone': 1,
          'said': 1,
          'art': 1,
          'books': 1,
          'whatever': 1,
          'start': 1,
          'end': 1,
          'show': 1,
          'respect': 1,
          'audience': 1,
          'along': 1,
          'way': 1,
          'bungles': 1,
          'three': 1,
          'badly': 1,
          'nneg': 1}),
 Counter({'nand': 9,
          'film': 4,
          'capital': 4,
          'nit': 4,
          'action': 4,
          'must': 4,
          'n': 4,
          'narmageddon': 3,
          'oneliners': 3,
          'steve': 3,
          'buscemi': 3,
          'kids': 2,
          'take': 2,
          '_armageddon_': 2,
          'right': 2,
          'c': 2,
          'bruce': 2,
          'willis': 2,
          'new': 2,
          'chuckle': 2,
          'one': 2,
          'sniff': 2,
          'funny': 2,
          'also': 2,
          'r': 2,
          'sequence': 2,
          'drill': 2,
          'people': 2,
          'p': 2,
          'hand': 2,
          'final': 2,
          'cheer': 2,
          'mean': 2,
          'could': 2,
          'sets': 2,
          'malloy': 2,
          'shocking': 2,
          'cost': 2,
          'hello': 1,
          'ntoday': 1,
          'movie': 1,
          'studios': 1,
          'want': 1,
          'critical': 1,
          'review': 1,
          'somehow': 1,
          'persuade': 1,
          'summers': 1,
          'biggest': 1,
          'blockbuster': 1,
          'everybody': 1,
          'remember': 1,
          '_everybody_': 1,
          'makes': 1,
          'money': 1,
          'summer': 1,
          '_must_': 1,
          'good': 1,
          'comedy': 1,
          'stars': 1,
          'hundred': 1,
          'tiny': 1,
          'rock': 1,
          'land': 1,
          'directly': 1,
          'middle': 1,
          'heated': 1,
          'argument': 1,
          'york': 1,
          'city': 1,
          'yorkers': 1,
          '_survives_': 1,
          'charcoal': 1,
          'face': 1,
          'nsnorkle': 1,
          'hiccup': 1,
          '_genius_': 1,
          'wants': 1,
          'work': 1,
          'oil': 1,
          'rig': 1,
          'nkneeslap': 1,
          'nisnt': 1,
          'romance': 1,
          'tender': 1,
          'moment': 1,
          'forbidden': 1,
          'lovers': 1,
          'ben': 1,
          'affleck': 1,
          'liv': 1,
          'tyler': 1,
          'animal': 1,
          'crackers': 1,
          'patton': 1,
          'long': 1,
          'lost': 1,
          'husband': 1,
          'trying': 1,
          'reunite': 1,
          'separated': 1,
          'wife': 1,
          'child': 1,
          'thinks': 1,
          'hes': 1,
          'salesman': 1,
          'ngurgle': 1,
          'awwwww': 1,
          'spewing': 1,
          'minors': 1,
          'strippers': 1,
          'numm': 1,
          'moving': 1,
          'along': 1,
          'lots': 1,
          'nnot': 1,
          'would': 1,
          '_original_': 1,
          'sequences': 1,
          'designed': 1,
          'thrill': 1,
          'nlike': 1,
          'darn': 1,
          'lets': 1,
          'inept': 1,
          'destroy': 1,
          'mir': 1,
          'space': 1,
          'station': 1,
          'ncant': 1,
          'hear': 1,
          'heart': 1,
          'beating': 1,
          'goes': 1,
          'crazy': 1,
          'starts': 1,
          'shooting': 1,
          'nwhat': 1,
          'drama': 1,
          'nlastly': 1,
          'armageddon': 1,
          'save': 1,
          'planet': 1,
          'nthis': 1,
          'cant': 1,
          'old': 1,
          'thrillerwe': 1,
          'asteroid': 1,
          'size': 1,
          'texas': 1,
          'head': 1,
          'straight': 1,
          'earth': 1,
          'beautiful': 1,
          'scenic': 1,
          'worldwide': 1,
          'shots': 1,
          'like': 1,
          'paris': 1,
          'blown': 1,
          'peoples': 1,
          'colors': 1,
          'nations': 1,
          'religions': 1,
          'join': 1,
          'hopeful': 1,
          'hug': 1,
          'nthe': 1,
          'muslims': 1,
          'prostrate': 1,
          'worship': 1,
          'stand': 1,
          'upin': 1,
          'domino': 1,
          'fashionto': 1,
          'victory': 1,
          'filled': 1,
          'emotional': 1,
          'goo': 1,
          'wanted': 1,
          'rip': 1,
          'screen': 1,
          'shreds': 1,
          'ni': 1,
          'ecstatic': 1,
          'joy': 1,
          'ncomedy': 1,
          'nromance': 1,
          'naction': 1,
          'nplanet': 1,
          'nokay': 1,
          'spell': 1,
          'nseriously': 1,
          'folks': 1,
          'nany': 1,
          'indiefilms': 1,
          'valuable': 1,
          'talents': 1,
          'throw': 1,
          'away': 1,
          'vehicle': 1,
          'hundredmillion': 1,
          'dollar': 1,
          'budget': 1,
          'cheapo': 1,
          'lousy': 1,
          'special': 1,
          'effects': 1,
          'bottom': 1,
          'line': 1,
          'living': 1,
          'proof': 1,
          'hell': 1,
          'exists': 1,
          'made': 1,
          'multipicture': 1,
          'deal': 1,
          'universal': 1,
          'nin': 1,
          'midst': 1,
          'terseness': 1,
          'fake': 1,
          'overall': 1,
          'waste': 1,
          'time': 1,
          'recognized': 1,
          'matt': 1,
          'playing': 1,
          'underwritten': 1,
          'nasa': 1,
          'technician': 1,
          'give': 1,
          'reading': 1,
          'nremember': 1,
          'nhe': 1,
          'principal': 1,
          'player': 1,
          'last': 1,
          'years': 1,
          '_in': 1,
          'company': 1,
          'men_': 1,
          'powerful': 1,
          'terrifying': 1,
          'ever': 1,
          'aspire': 1,
          'n_armageddon_': 1,
          '100': 1,
          'million': 1,
          'make': 1,
          'n_itcom_': 1,
          'paltry': 1,
          '30': 1,
          '000': 1,
          'nneed': 1,
          'say': 1,
          'nneg': 1}),
 Counter({'costner': 3,
          'movie': 2,
          'hour': 2,
          'new': 2,
          'deserves': 1,
          'recognition': 1,
          'achieving': 1,
          'nearimpossible': 1,
          'task': 1,
          'making': 1,
          'grander': 1,
          'monument': 1,
          'selflove': 1,
          'steven': 1,
          'seagals': 1,
          'deadly': 1,
          'ground': 1,
          'ncapsule': 1,
          'review': 1,
          'question': 1,
          'floating': 1,
          'baby': 1,
          'ruth': 1,
          'waterworld': 1,
          'hollywood': 1,
          'execs': 1,
          'gave': 1,
          'kevin': 1,
          'money': 1,
          'make': 1,
          'another': 1,
          'postapocalyptic': 1,
          'thinking': 1,
          'nin': 1,
          '3': 1,
          'advertisement': 1,
          'hair': 1,
          'weave': 1,
          'plays': 1,
          'nameless': 1,
          'drifter': 1,
          'dons': 1,
          'long': 1,
          'dead': 1,
          'postal': 1,
          'employees': 1,
          'uniform': 1,
          'gradually': 1,
          'turns': 1,
          'nukedout': 1,
          'usa': 1,
          'idealized': 1,
          'hippydippy': 1,
          'society': 1,
          'n': 1,
          'judging': 1,
          'costuming': 1,
          'end': 1,
          'main': 1,
          'accomplishment': 1,
          'brave': 1,
          'world': 1,
          'reinventing': 1,
          'polyester': 1,
          'nwhen': 1,
          'hes': 1,
          'pointing': 1,
          'camera': 1,
          'directly': 1,
          'director': 1,
          'nice': 1,
          'visual': 1,
          'sense': 1,
          'undeniably': 1,
          'fascinating': 1,
          'see': 1,
          'unabashedly': 1,
          'jingoistic': 1,
          'film': 1,
          'trustnoone': 1,
          '90s': 1,
          'time': 1,
          'second': 1,
          'rolled': 1,
          'around': 1,
          'reduced': 1,
          'sitting': 1,
          'hands': 1,
          'keep': 1,
          'clawing': 1,
          'eyes': 1,
          'nmark': 1,
          'one': 1,
          'return': 1,
          'sender': 1,
          'nneg': 1}),
 Counter({'stahl': 12,
          'stiller': 8,
          'midnight': 5,
          'hurley': 4,
          'movie': 4,
          'veloz': 3,
          'film': 3,
          'drug': 3,
          'habit': 3,
          'bello': 2,
          'david': 2,
          'based': 2,
          'jerry': 2,
          'npermanent': 2,
          'character': 2,
          'n': 2,
          'week': 2,
          'one': 2,
          'less': 2,
          'chompers': 2,
          'alf': 2,
          'like': 2,
          'hes': 2,
          'heroin': 2,
          'mostly': 2,
          'life': 2,
          'story': 2,
          'trying': 2,
          'figure': 2,
          'find': 2,
          'hollywood': 2,
          'seems': 2,
          'book': 2,
          'nwatch': 2,
          'could': 2,
          'permanent': 2,
          'basically': 2,
          'person': 2,
          'nso': 2,
          'starring': 1,
          'ben': 1,
          'elizabeth': 1,
          'maria': 1,
          'janeane': 1,
          'garofalo': 1,
          'screenplay': 1,
          'novel': 1,
          'directed': 1,
          'pretty': 1,
          'bad': 1,
          'though': 1,
          'took': 1,
          'days': 1,
          'conclude': 1,
          'nthe': 1,
          'masturbatory': 1,
          'bleak': 1,
          'main': 1,
          'intent': 1,
          'confounding': 1,
          'us': 1,
          'stupidity': 1,
          '6000': 1,
          'nultimately': 1,
          'adapted': 1,
          'comes': 1,
          'playground': 1,
          'braggarts': 1,
          'chainsmokes': 1,
          'age': 1,
          'twelve': 1,
          'mystified': 1,
          'selfdestructive': 1,
          'nature': 1,
          'bored': 1,
          'stupor': 1,
          'nben': 1,
          'plays': 1,
          'young': 1,
          'author': 1,
          'arrives': 1,
          'l': 1,
          'ambition': 1,
          'nasty': 1,
          'nhe': 1,
          'eventually': 1,
          'gets': 1,
          'gig': 1,
          '5000week': 1,
          'writing': 1,
          'sitcom': 1,
          'called': 1,
          'mr': 1,
          'thinly': 1,
          'veiled': 1,
          'standin': 1,
          'looks': 1,
          'except': 1,
          'blue': 1,
          'marries': 1,
          'producer': 1,
          'get': 1,
          'green': 1,
          'card': 1,
          'hooks': 1,
          'spanish': 1,
          'mother': 1,
          'liz': 1,
          'torres': 1,
          'shoots': 1,
          'afternoons': 1,
          'ninsert': 1,
          'proverbial': 1,
          'downward': 1,
          'spiral': 1,
          'structured': 1,
          'flashback': 1,
          'recovering': 1,
          'addict': 1,
          'meeting': 1,
          'fastfood': 1,
          'restaurant': 1,
          'works': 1,
          'drivethru': 1,
          'part': 1,
          'rehab': 1,
          'taking': 1,
          'back': 1,
          'hotel': 1,
          'bouts': 1,
          'serious': 1,
          'screwing': 1,
          'listening': 1,
          'nive': 1,
          'spent': 1,
          'last': 1,
          'never': 1,
          'seemed': 1,
          'frighteningly': 1,
          'gorgeous': 1,
          'attractiveworse': 1,
          'ive': 1,
          'attractive': 1,
          'nas': 1,
          'displays': 1,
          'none': 1,
          'charm': 1,
          'wit': 1,
          'would': 1,
          'expect': 1,
          'posttheres': 1,
          'something': 1,
          'mary': 1,
          'either': 1,
          'actor': 1,
          'comedy': 1,
          'writer': 1,
          'nwhat': 1,
          'separates': 1,
          'hundreds': 1,
          'punkjunkies': 1,
          'wrote': 1,
          'idiocy': 1,
          'shoot': 1,
          'next': 1,
          'baby': 1,
          'spoil': 1,
          'numerous': 1,
          'pitch': 1,
          'meetings': 1,
          'smackfueled': 1,
          'babble': 1,
          'nstiller': 1,
          'gives': 1,
          'technically': 1,
          'flawless': 1,
          'performance': 1,
          'double': 1,
          'documentary': 1,
          'junkie': 1,
          'nbut': 1,
          'soulless': 1,
          'nwhen': 1,
          'poses': 1,
          'question': 1,
          'saved': 1,
          'nand': 1,
          'answers': 1,
          'form': 1,
          'bellos': 1,
          'shrink': 1,
          'black': 1,
          'panties': 1,
          'care': 1,
          'nin': 1,
          'version': 1,
          'autobiography': 1,
          'name': 1,
          'doesnt': 1,
          'need': 1,
          'saving': 1,
          'needs': 1,
          'someone': 1,
          'sit': 1,
          'listen': 1,
          'go': 1,
          'nif': 1,
          'learn': 1,
          'anything': 1,
          'characters': 1,
          'incredibly': 1,
          'tolerant': 1,
          'hollywoodtypes': 1,
          'known': 1,
          'man': 1,
          'also': 1,
          'schmooze': 1,
          'parties': 1,
          'drugs': 1,
          'nis': 1,
          'california': 1,
          'ni': 1,
          'learned': 1,
          'little': 1,
          'entertainment': 1,
          'business': 1,
          'whole': 1,
          'lot': 1,
          'egotistical': 1,
          'lunkhead': 1,
          'nof': 1,
          'course': 1,
          'know': 1,
          'triumphed': 1,
          'lived': 1,
          'talk': 1,
          'problems': 1,
          'got': 1,
          'deal': 1,
          'apparently': 1,
          'collaborating': 1,
          'future': 1,
          'projects': 1,
          'much': 1,
          'moral': 1,
          'ntemporary': 1,
          'nbill': 1,
          'chambers': 1,
          'september': 1,
          '1998': 1,
          'nneg': 1}),
 Counter({'nit': 6,
          'nthe': 6,
          'eerie': 5,
          'four': 5,
          'thunderous': 4,
          'sound': 4,
          'effect': 4,
          'sounding': 4,
          'musical': 4,
          'pulse': 4,
          'characters': 4,
          'movie': 4,
          'could': 4,
          'camera': 3,
          'zooms': 3,
          'incredibly': 3,
          'close': 3,
          'focuses': 3,
          'killer': 3,
          'teens': 3,
          'nall': 2,
          'sudden': 2,
          'open': 2,
          'one': 2,
          'whats': 2,
          'seemed': 2,
          'youre': 2,
          'goes': 2,
          'killed': 2,
          'friends': 2,
          'summer': 2,
          'someone': 2,
          'year': 2,
          'change': 2,
          'begins': 2,
          'know': 2,
          'figure': 2,
          'rubber': 2,
          'nits': 2,
          'much': 2,
          'extreme': 2,
          'suspense': 2,
          'us': 2,
          'aspect': 2,
          'film': 2,
          'see': 2,
          'hello': 2,
          'costume': 2,
          'closed': 1,
          'eyes': 1,
          'person': 1,
          'presumed': 1,
          'dead': 1,
          'eyelids': 1,
          'desperately': 1,
          'running': 1,
          'life': 1,
          'nthen': 1,
          'bumps': 1,
          'door': 1,
          'seemingly': 1,
          'strange': 1,
          'sounds': 1,
          'emanate': 1,
          'doors': 1,
          'swing': 1,
          'reveal': 1,
          'inside': 1,
          'ncloseup': 1,
          'thrillshots': 1,
          'elicit': 1,
          'laughter': 1,
          'audience': 1,
          'rather': 1,
          'genuine': 1,
          'fear': 1,
          'pretty': 1,
          'good': 1,
          'sign': 1,
          'watching': 1,
          'thriller': 1,
          'director': 1,
          'originally': 1,
          'envisioned': 1,
          'nrather': 1,
          'adopt': 1,
          'opinion': 1,
          'goofy': 1,
          'unaware': 1,
          'trouble': 1,
          'theyre': 1,
          'stop': 1,
          'caring': 1,
          'lives': 1,
          'dies': 1,
          'story': 1,
          'ninstead': 1,
          'become': 1,
          'interested': 1,
          'get': 1,
          'young': 1,
          'teenagers': 1,
          'potential': 1,
          'sacrificial': 1,
          'lambs': 1,
          'helen': 1,
          'barry': 1,
          'julie': 1,
          'ray': 1,
          'two': 1,
          'couples': 1,
          'dear': 1,
          'another': 1,
          'nduring': 1,
          'high': 1,
          'school': 1,
          'graduation': 1,
          'take': 1,
          'fateful': 1,
          'drive': 1,
          'dark': 1,
          'mountain': 1,
          'highway': 1,
          'nsuddenly': 1,
          'without': 1,
          'warning': 1,
          'car': 1,
          'hits': 1,
          'presume': 1,
          'result': 1,
          'collision': 1,
          'nfearing': 1,
          'jail': 1,
          'time': 1,
          'possible': 1,
          'manslaughter': 1,
          'charges': 1,
          'confess': 1,
          'instead': 1,
          'decide': 1,
          'dump': 1,
          'body': 1,
          'ocean': 1,
          'make': 1,
          'pact': 1,
          'never': 1,
          'discuss': 1,
          'episode': 1,
          'na': 1,
          'things': 1,
          'among': 1,
          'begin': 1,
          'nrelationships': 1,
          'fizzle': 1,
          'future': 1,
          'dreams': 1,
          'crumble': 1,
          'attitudes': 1,
          'nbut': 1,
          'forget': 1,
          'nand': 1,
          'apparently': 1,
          'neither': 1,
          'else': 1,
          'nsomeone': 1,
          'send': 1,
          'letters': 1,
          'frightening': 1,
          'message': 1,
          'last': 1,
          'letterwriter': 1,
          'slicker': 1,
          'wielding': 1,
          'large': 1,
          'metal': 1,
          'hook': 1,
          'soon': 1,
          'makes': 1,
          'presence': 1,
          'known': 1,
          'hunt': 1,
          'try': 1,
          'late': 1,
          'nwhile': 1,
          'nice': 1,
          'visually': 1,
          'effects': 1,
          'impact': 1,
          'generated': 1,
          'closeups': 1,
          'level': 1,
          'choppy': 1,
          'best': 1,
          'nthere': 1,
          'decided': 1,
          'give': 1,
          'nothing': 1,
          'cheap': 1,
          'thrills': 1,
          'clever': 1,
          'whodunit': 1,
          'discovering': 1,
          'ultimately': 1,
          'made': 1,
          'shrug': 1,
          'shoulders': 1,
          'explored': 1,
          'changed': 1,
          'friendships': 1,
          'adulthood': 1,
          'include': 1,
          'add': 1,
          '15': 1,
          'minutes': 1,
          'given': 1,
          'smarter': 1,
          'knew': 1,
          'anytime': 1,
          'alone': 1,
          'shadowy': 1,
          'figures': 1,
          'moving': 1,
          'dont': 1,
          'walk': 1,
          'towards': 1,
          'yelling': 1,
          'nonce': 1,
          'yell': 1,
          'expect': 1,
          'closeup': 1,
          'difficult': 1,
          'happen': 1,
          'redeeming': 1,
          'neat': 1,
          'idea': 1,
          'halloween': 1,
          'im': 1,
          'sure': 1,
          'local': 1,
          'store': 1,
          'sells': 1,
          'slickers': 1,
          'hooks': 1,
          'horror': 1,
          'experienced': 1,
          'realizing': 1,
          'actually': 1,
          'went': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'film': 4,
          'nits': 4,
          'degeneres': 4,
          'ellen': 3,
          'ni': 3,
          'wrote': 3,
          'yet': 3,
          'plot': 3,
          'car': 3,
          'goodbye': 2,
          'lover': 2,
          'sat': 2,
          'shelf': 2,
          'nand': 2,
          'thats': 2,
          'way': 2,
          'nthe': 2,
          'joff': 2,
          'much': 2,
          'supposed': 2,
          'ndegeneres': 2,
          'bad': 2,
          'wearing': 2,
          'killing': 2,
          'least': 2,
          'little': 2,
          'going': 2,
          'twists': 2,
          'nsandra': 2,
          'likes': 2,
          'cheating': 2,
          'lovers': 2,
          'see': 2,
          'films': 2,
          'wig': 2,
          'sound': 2,
          'music': 2,
          'wild': 2,
          'heart': 2,
          'hard': 2,
          'almost': 1,
          'year': 1,
          'since': 1,
          'lukewarm': 1,
          'reception': 1,
          'cannes': 1,
          'festival': 1,
          'last': 1,
          'may': 1,
          'look': 1,
          'tell': 1,
          'mess': 1,
          'shows': 1,
          'torrid': 1,
          'doubleindemnity': 1,
          'crime': 1,
          'stories': 1,
          'case': 1,
          'required': 1,
          'services': 1,
          'three': 1,
          'screenwriters': 1,
          'suspect': 1,
          'sexy': 1,
          'thriller': 1,
          'murder': 1,
          'mystery': 1,
          'comedy': 1,
          'director': 1,
          'roland': 1,
          'tried': 1,
          'piece': 1,
          'together': 1,
          'editing': 1,
          'room': 1,
          'scratching': 1,
          'head': 1,
          'bewilderment': 1,
          'didnt': 1,
          'laugh': 1,
          'think': 1,
          'horrible': 1,
          'character': 1,
          'even': 1,
          'worse': 1,
          'toughtalking': 1,
          'vulgar': 1,
          'cop': 1,
          'wardrobe': 1,
          'hair': 1,
          'neither': 1,
          'wigas': 1,
          'actors': 1,
          'appear': 1,
          'beor': 1,
          'doesnt': 1,
          'enough': 1,
          'clout': 1,
          'secure': 1,
          'hairstylist': 1,
          'nevery': 1,
          'single': 1,
          'word': 1,
          'mouth': 1,
          'racy': 1,
          'hip': 1,
          'incessant': 1,
          'wisecracking': 1,
          'poorlywritten': 1,
          'merely': 1,
          'stupid': 1,
          'nher': 1,
          'reaction': 1,
          'brutal': 1,
          'jogger': 1,
          'died': 1,
          'healthy': 1,
          'wittier': 1,
          'asides': 1,
          'sgt': 1,
          'nrita': 1,
          'pompano': 1,
          'called': 1,
          'investigate': 1,
          'allegedly': 1,
          'accidental': 1,
          'death': 1,
          'wait': 1,
          'nto': 1,
          'give': 1,
          'away': 1,
          'would': 1,
          'ruin': 1,
          'outside': 1,
          'numbing': 1,
          'multiple': 1,
          'triplecrosses': 1,
          'best': 1,
          'described': 1,
          'nsultry': 1,
          'sexpotreal': 1,
          'estate': 1,
          'agent': 1,
          'sandra': 1,
          'dunmore': 1,
          'patricia': 1,
          'arquette': 1,
          'married': 1,
          'jake': 1,
          'creative': 1,
          'unfocused': 1,
          'alcoholic': 1,
          'advertising': 1,
          'rep': 1,
          'played': 1,
          'dermot': 1,
          'mulroney': 1,
          'act': 1,
          'deepseated': 1,
          'sexual': 1,
          'fantasies': 1,
          'jakes': 1,
          'brother': 1,
          'ben': 1,
          'suaveasever': 1,
          'johnson': 1,
          'help': 1,
          'nben': 1,
          'also': 1,
          'coming': 1,
          'petite': 1,
          'mousy': 1,
          'coworker': 1,
          'peggy': 1,
          'blaine': 1,
          'marylouise': 1,
          'parker': 1,
          'someone': 1,
          'somewhere': 1,
          'planning': 1,
          'cash': 1,
          'huge': 1,
          'life': 1,
          'insurance': 1,
          'policy': 1,
          'ripe': 1,
          'back': 1,
          'nalthough': 1,
          'genuine': 1,
          'surprises': 1,
          'get': 1,
          'contrived': 1,
          'quickly': 1,
          'nprobably': 1,
          'around': 1,
          'time': 1,
          'gumcracking': 1,
          'gumshoe': 1,
          'appears': 1,
          'nat': 1,
          'former': 1,
          'star': 1,
          'something': 1,
          'different': 1,
          'narquette': 1,
          'turns': 1,
          'another': 1,
          'stilettoheeled': 1,
          'platinum': 1,
          'blonde': 1,
          'bombshell': 1,
          'roles': 1,
          'lost': 1,
          'highway': 1,
          'true': 1,
          'romance': 1,
          'quoting': 1,
          'embarrassing': 1,
          'lines': 1,
          'like': 1,
          'im': 1,
          'underwear': 1,
          'hope': 1,
          'got': 1,
          'paid': 1,
          'lot': 1,
          'money': 1,
          'nheres': 1,
          'example': 1,
          'flatout': 1,
          'stupidity': 1,
          'purchases': 1,
          'used': 1,
          'disguises': 1,
          'red': 1,
          'prior': 1,
          'stalking': 1,
          'two': 1,
          'duplicitous': 1,
          'nshe': 1,
          'drives': 1,
          'motorbiking': 1,
          'couple': 1,
          'cliff': 1,
          'blaring': 1,
          'favorite': 1,
          'stereo': 1,
          'intent': 1,
          'identifying': 1,
          'hapless': 1,
          'victims': 1,
          'nso': 1,
          'point': 1,
          'n': 1,
          'stuff': 1,
          'might': 1,
          'reference': 1,
          'wizard': 1,
          'oz': 1,
          'allusions': 1,
          'david': 1,
          'lynchs': 1,
          'must': 1,
          'forgotten': 1,
          'despicable': 1,
          'movie': 1,
          'believe': 1,
          'directed': 1,
          'person': 1,
          'made': 1,
          'fields': 1,
          'mission': 1,
          'however': 1,
          'long': 1,
          'nit': 1,
          'stayed': 1,
          'nneg': 1}),
 Counter({'movie': 3,
          'two': 3,
          'like': 2,
          'last': 2,
          'years': 2,
          'campus': 2,
          'audience': 2,
          'sex': 2,
          'football': 2,
          'nothing': 2,
          'theres': 2,
          'even': 2,
          'voight': 2,
          'west': 2,
          'canaan': 2,
          'coyotes': 2,
          'coach': 2,
          'kilmer': 2,
          'goes': 2,
          'james': 2,
          'van': 2,
          'der': 2,
          'beek': 2,
          'footballcrazy': 2,
          'high': 2,
          'school': 2,
          'never': 2,
          'nthis': 2,
          'manages': 2,
          'much': 2,
          'genx': 1,
          'mtv': 1,
          'dead': 1,
          'man': 1,
          'marketed': 1,
          'primarily': 1,
          'male': 1,
          'indicated': 1,
          'main': 1,
          'selling': 1,
          'points': 1,
          'nthose': 1,
          'items': 1,
          'wrapped': 1,
          'guiltypleasure': 1,
          'package': 1,
          'sure': 1,
          'snare': 1,
          'sizeable': 1,
          'box': 1,
          'office': 1,
          'chunk': 1,
          'initially': 1,
          'sales': 1,
          'decline': 1,
          'reasons': 1,
          'nfirst': 1,
          'sequences': 1,
          'new': 1,
          'sports': 1,
          'genre': 1,
          'isnt': 1,
          'mainstream': 1,
          'retread': 1,
          'death': 1,
          'nsecond': 1,
          'bad': 1,
          'ndespite': 1,
          'appearance': 1,
          'whipped': 1,
          'cream': 1,
          'bikini': 1,
          'allnight': 1,
          'stripclub': 1,
          'party': 1,
          'remotely': 1,
          'tantalizing': 1,
          'nthe': 1,
          'acting': 1,
          'mostly': 1,
          'mediocre': 1,
          'including': 1,
          'fantastic': 1,
          'jon': 1,
          'ncultivating': 1,
          'usual': 1,
          'sliminess': 1,
          'gives': 1,
          'unexpectedly': 1,
          'standout': 1,
          'performance': 1,
          'head': 1,
          'bud': 1,
          'nkilmer': 1,
          'driving': 1,
          'force': 1,
          'behind': 1,
          'twentytwo': 1,
          'conference': 1,
          'championships': 1,
          'state': 1,
          'titles': 1,
          'thirty': 1,
          'year': 1,
          'plans': 1,
          'make': 1,
          'twentythree': 1,
          'nunfortunately': 1,
          'star': 1,
          'quarterback': 1,
          'lance': 1,
          'harbor': 1,
          'paul': 1,
          'walker': 1,
          'count': 1,
          'hes': 1,
          'got': 1,
          'rely': 1,
          'unreliable': 1,
          'abilities': 1,
          'backup': 1,
          'john': 1,
          'moxon': 1,
          'nmoxon': 1,
          'leads': 1,
          'team': 1,
          'four': 1,
          'games': 1,
          'must': 1,
          'cope': 1,
          'newfound': 1,
          'stardom': 1,
          'effect': 1,
          'relationship': 1,
          'girlfriend': 1,
          'julie': 1,
          'amy': 1,
          'smart': 1,
          'temptations': 1,
          'abound': 1,
          'nmost': 1,
          'regions': 1,
          'country': 1,
          'nearly': 1,
          'texas': 1,
          'atmosphere': 1,
          'likely': 1,
          'lost': 1,
          'nsimilarly': 1,
          'set': 1,
          'design': 1,
          'wrong': 1,
          'setting': 1,
          'teams': 1,
          'decked': 1,
          'sparkling': 1,
          'uniforms': 1,
          'radio': 1,
          'headsets': 1,
          'seem': 1,
          'work': 1,
          'however': 1,
          'instead': 1,
          'require': 1,
          'coaches': 1,
          'signal': 1,
          'plays': 1,
          'manually': 1,
          'giant': 1,
          'bronze': 1,
          'statue': 1,
          'nthese': 1,
          'elements': 1,
          'well': 1,
          'heavy': 1,
          'drinking': 1,
          'carousing': 1,
          'might': 1,
          'appropriate': 1,
          'college': 1,
          'mtvs': 1,
          'core': 1,
          'demographic': 1,
          'focus': 1,
          'emphasized': 1,
          'casting': 1,
          'tvs': 1,
          'dawsons': 1,
          'creek': 1,
          'understandable': 1,
          'choice': 1,
          'reluctant': 1,
          'hero': 1,
          'although': 1,
          'anything': 1,
          'role': 1,
          'nother': 1,
          'stars': 1,
          'similarly': 1,
          'young': 1,
          'unmemorable': 1,
          'ntheres': 1,
          'right': 1,
          'varsity': 1,
          'blues': 1,
          'either': 1,
          'neverything': 1,
          'herein': 1,
          'already': 1,
          'done': 1,
          'hasnt': 1,
          'botch': 1,
          'one': 1,
          'way': 1,
          'another': 1,
          'certainly': 1,
          'missable': 1,
          'nneg': 1}),
 Counter({'con': 9,
          'bruckheimer': 8,
          'air': 7,
          'cage': 6,
          'rock': 5,
          'poe': 4,
          'prison': 4,
          'one': 4,
          'many': 4,
          'nthe': 3,
          'something': 3,
          'production': 3,
          'cages': 3,
          'performance': 3,
          'nin': 3,
          'like': 3,
          'desk': 3,
          'big': 3,
          'much': 3,
          'nicolas': 2,
          'role': 2,
          'cameron': 2,
          'life': 2,
          'home': 2,
          'simple': 2,
          'nif': 2,
          'scene': 2,
          'ncage': 2,
          'going': 2,
          'raising': 2,
          'getting': 2,
          'count': 2,
          'time': 2,
          'action': 2,
          'nthat': 2,
          'nwhile': 2,
          'goal': 2,
          'get': 2,
          'film': 2,
          'measure': 2,
          'fact': 2,
          'people': 2,
          'exactly': 2,
          'west': 2,
          'kind': 2,
          'doesnt': 2,
          'bomb': 2,
          'really': 2,
          '_really_': 2,
          'buscemi': 2,
          'john': 2,
          'malkovich': 2,
          'nit': 2,
          'goes': 2,
          'word': 2,
          'comes': 1,
          'ingenious': 1,
          'survival': 1,
          'mechanism': 1,
          'winkandaconcussivenudge': 1,
          'bombastorama': 1,
          'opening': 1,
          'credits': 1,
          'sequence': 1,
          'introduces': 1,
          'us': 1,
          'gulf': 1,
          'war': 1,
          'veteran': 1,
          'convicted': 1,
          'manslaughter': 1,
          'serving': 1,
          'eight': 1,
          'years': 1,
          'illfated': 1,
          'barroom': 1,
          'brawl': 1,
          'scenes': 1,
          'accompanied': 1,
          'voiceovers': 1,
          'languid': 1,
          'southern': 1,
          'drawl': 1,
          'describes': 1,
          'wife': 1,
          'back': 1,
          'offers': 1,
          'homilies': 1,
          'daughter': 1,
          'never': 1,
          'met': 1,
          'gives': 1,
          'tickle': 1,
          'familiarity': 1,
          'probably': 1,
          'appears': 1,
          'realize': 1,
          'utterly': 1,
          'dimwitted': 1,
          'ridiculous': 1,
          'hes': 1,
          'keep': 1,
          'entertained': 1,
          'nand': 1,
          'thus': 1,
          'slips': 1,
          'familiar': 1,
          'surreal': 1,
          'commentary': 1,
          'proceedings': 1,
          'plays': 1,
          'buffedup': 1,
          'version': 1,
          'arizonas': 1,
          'h': 1,
          'mcdonnough': 1,
          'known': 1,
          'nhe': 1,
          'got': 1,
          'paycheck': 1,
          'jerry': 1,
          'last': 1,
          'year': 1,
          'theres': 1,
          'thing': 1,
          'even': 1,
          'without': 1,
          'late': 1,
          'partner': 1,
          'simpson': 1,
          'seeing': 1,
          'everything': 1,
          'saw': 1,
          '_last_': 1,
          'critical': 1,
          'difference': 1,
          'appeared': 1,
          'jumping': 1,
          'fray': 1,
          'first': 1,
          'sense': 1,
          'discovery': 1,
          'replaced': 1,
          'wry': 1,
          'selfawareness': 1,
          'plot': 1,
          'finds': 1,
          'parolee': 1,
          'board': 1,
          'hijacked': 1,
          'transport': 1,
          'plane': 1,
          'whose': 1,
          'different': 1,
          'dignity': 1,
          'intact': 1,
          'naudiences': 1,
          'know': 1,
          'theyre': 1,
          'marketing': 1,
          'counting': 1,
          'nno': 1,
          'loathed': 1,
          'sweargruntblast': 1,
          'repetitiveness': 1,
          'converted': 1,
          'loved': 1,
          'reasons': 1,
          'dissuaded': 1,
          'ndirector': 1,
          'simon': 1,
          'yet': 1,
          'another': 1,
          'tv': 1,
          'commercial': 1,
          'auteur': 1,
          'plucked': 1,
          'advertising': 1,
          'equivalent': 1,
          'schwabs': 1,
          'soda': 1,
          'fountain': 1,
          'delivers': 1,
          'adrenalinetestosterone': 1,
          'cocktail': 1,
          'could': 1,
          'launch': 1,
          'endocrinology': 1,
          'lecture': 1,
          'perversely': 1,
          'appropriate': 1,
          'sympathetic': 1,
          'spends': 1,
          'flight': 1,
          'nearing': 1,
          'diabetic': 1,
          'coma': 1,
          'insulin': 1,
          'work': 1,
          'gland': 1,
          'nwhat': 1,
          'deliver': 1,
          'moment': 1,
          'suspense': 1,
          'na': 1,
          'use': 1,
          'hitchcocks': 1,
          'notion': 1,
          'showing': 1,
          'creates': 1,
          'interesting': 1,
          'blowing': 1,
          'serve': 1,
          'purpose': 1,
          'nicely': 1,
          'either': 1,
          'interested': 1,
          'genuine': 1,
          'tension': 1,
          'might': 1,
          'done': 1,
          'airs': 1,
          'creepiest': 1,
          'setup': 1,
          'nat': 1,
          'desert': 1,
          'stop': 1,
          'planeload': 1,
          'convicts': 1,
          'serial': 1,
          'killer': 1,
          'garland': 1,
          'greene': 1,
          'steve': 1,
          'wanders': 1,
          'trailer': 1,
          'park': 1,
          'meets': 1,
          'little': 1,
          'girl': 1,
          'tea': 1,
          'party': 1,
          'drained': 1,
          'swimming': 1,
          'pool': 1,
          'ntheir': 1,
          'teteatete': 1,
          'eerie': 1,
          'menacing': 1,
          'providing': 1,
          'welcome': 1,
          'shift': 1,
          'tone': 1,
          'giving': 1,
          'chance': 1,
          'stand': 1,
          'cast': 1,
          'villains': 1,
          'danny': 1,
          'trejo': 1,
          'ving': 1,
          'rhames': 1,
          'characteristically': 1,
          'reptilian': 1,
          'among': 1,
          'usually': 1,
          'opts': 1,
          'tiniest': 1,
          'restraint': 1,
          'would': 1,
          'improvement': 1,
          'characters': 1,
          'editing': 1,
          'dopey': 1,
          'punch': 1,
          'lines': 1,
          'cheap': 1,
          'ugly': 1,
          'appeals': 1,
          'machismo': 1,
          'characterize': 1,
          'efforts': 1,
          'exhausting': 1,
          'excess': 1,
          'responding': 1,
          'detached': 1,
          'outrageous': 1,
          'cusack': 1,
          'u': 1,
          'marshal': 1,
          'earnest': 1,
          'looks': 1,
          'wants': 1,
          'go': 1,
          'sleep': 1,
          'nhis': 1,
          'recycled': 1,
          'arizona': 1,
          'means': 1,
          'escape': 1,
          'chase': 1,
          'stuffed': 1,
          'bunny': 1,
          'continuation': 1,
          'pursuit': 1,
          'box': 1,
          'huggies': 1,
          'bode': 1,
          'well': 1,
          'appearance': 1,
          'faceoff': 1,
          'later': 1,
          'month': 1,
          'perhaps': 1,
          'already': 1,
          'realizes': 1,
          'films': 1,
          'ntheres': 1,
          'called': 1,
          'recidivist': 1,
          'repeat': 1,
          'noffender': 1,
          'nneg': 1}),
 Counter({'big': 6,
          'actor': 6,
          'special': 5,
          'one': 5,
          'film': 5,
          'house': 4,
          'effects': 4,
          'little': 4,
          'get': 4,
          'also': 4,
          'na': 3,
          'zetajones': 3,
          'haunting': 3,
          'us': 3,
          'good': 3,
          'scare': 3,
          'going': 3,
          'wilson': 3,
          'role': 3,
          'director': 2,
          'jan': 2,
          'de': 2,
          'bont': 2,
          'catherine': 2,
          'entrapment': 2,
          'nand': 2,
          'doctor': 2,
          'spooky': 2,
          'fear': 2,
          'movie': 2,
          'didnt': 2,
          'basically': 2,
          'nwell': 2,
          'well': 2,
          'lily': 2,
          'taylor': 2,
          'character': 2,
          'owen': 2,
          'like': 2,
          'shining': 2,
          'gone': 2,
          'known': 2,
          'goofy': 2,
          'year': 2,
          'nshe': 2,
          'stay': 2,
          'played': 2,
          'michael': 2,
          'nhe': 2,
          'nactor': 2,
          'speed': 1,
          'twister': 1,
          'fame': 1,
          'star': 1,
          'hot': 1,
          'heels': 1,
          '6': 1,
          '510': 1,
          'zorro': 1,
          'remake': 1,
          'nso': 1,
          'amount': 1,
          'nunfortunately': 1,
          'bore': 1,
          'nplot': 1,
          'hotshot': 1,
          'brings': 1,
          'three': 1,
          'insomniacs': 1,
          'old': 1,
          'mansion': 1,
          'controlled': 1,
          'testing': 1,
          'nunbeknownst': 1,
          'patients': 1,
          'actually': 1,
          'conducting': 1,
          'cover': 1,
          'project': 1,
          'psychology': 1,
          'ncritique': 1,
          'bit': 1,
          'nsure': 1,
          'creeped': 1,
          'spooked': 1,
          'whole': 1,
          'took': 1,
          'waaaaay': 1,
          'long': 1,
          'provided': 1,
          'meat': 1,
          'plot': 1,
          'went': 1,
          'way': 1,
          'past': 1,
          'bedtime': 1,
          'relied': 1,
          'grunts': 1,
          'muttering': 1,
          'childrens': 1,
          'voices': 1,
          'overthetop': 1,
          'much': 1,
          'might': 1,
          'called': 1,
          'since': 1,
          'shes': 1,
          'real': 1,
          'depth': 1,
          'background': 1,
          'reason': 1,
          'first': 1,
          'place': 1,
          'ndont': 1,
          'wrong': 1,
          'zeta': 1,
          'sweet': 1,
          'window': 1,
          'dressing': 1,
          'despite': 1,
          'continued': 1,
          'perception': 1,
          'faint': 1,
          'mustachesee': 1,
          'standard': 1,
          'comic': 1,
          'relief': 1,
          'come': 1,
          'people': 1,
          'youre': 1,
          'sit': 1,
          'two': 1,
          'hours': 1,
          'theater': 1,
          'folks': 1,
          'bout': 1,
          'giving': 1,
          'oneliners': 1,
          'dimension': 1,
          'nneeson': 1,
          'wasted': 1,
          'smart': 1,
          'british': 1,
          'guy': 1,
          'nits': 1,
          'sad': 1,
          'cause': 1,
          'certainly': 1,
          'idea': 1,
          'seemed': 1,
          'see': 1,
          '910': 1,
          'close': 1,
          'perfect': 1,
          'example': 1,
          'creepy': 1,
          'awry': 1,
          'story': 1,
          'thin': 1,
          'conclusion': 1,
          'laughable': 1,
          'poof': 1,
          'sure': 1,
          'nice': 1,
          'look': 1,
          'moment': 1,
          'even': 1,
          'splitsecond': 1,
          'believe': 1,
          'anything': 1,
          'hollywood': 1,
          'gadgetry': 1,
          'nsee': 1,
          'scary': 1,
          'movies': 1,
          'take': 1,
          'forever': 1,
          'provide': 1,
          'payback': 1,
          'otherwise': 1,
          'skip': 1,
          'check': 1,
          'original': 1,
          'ultimate': 1,
          'homes': 1,
          'netherworld': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'coscripted': 1,
          'indie': 1,
          'favorites': 1,
          'rushmore': 1,
          '810': 1,
          'bottle': 1,
          'rocket': 1,
          'wes': 1,
          'anderson': 1,
          'nhis': 1,
          'brother': 1,
          'luke': 1,
          'dated': 1,
          'drew': 1,
          'barrymore': 1,
          'nbrother': 1,
          'andrew': 1,
          'nsinger': 1,
          'lisa': 1,
          'loeb': 1,
          'listed': 1,
          'credits': 1,
          'portrayed': 1,
          'olivia': 1,
          'morice': 1,
          'personally': 1,
          'notice': 1,
          'number': 1,
          'single': 1,
          'missed': 1,
          'glasses': 1,
          'nthe': 1,
          'creaks': 1,
          'moans': 1,
          'heard': 1,
          'throughout': 1,
          'prerecorded': 1,
          'filming': 1,
          'order': 1,
          'natural': 1,
          'expression': 1,
          'actors': 1,
          'ncatherine': 1,
          'currently': 1,
          'dating': 1,
          'flabby': 1,
          'ass': 1,
          'sex': 1,
          'life': 1,
          'douglas': 1,
          'stands': 1,
          '58': 1,
          'nin': 1,
          '1998': 1,
          'rapaport': 1,
          'pleaded': 1,
          'guilty': 1,
          'aggravated': 1,
          'harassment': 1,
          'ordered': 1,
          'away': 1,
          'undergo': 1,
          'counseling': 1,
          'bruce': 1,
          'dern': 1,
          'plays': 1,
          'throwaway': 1,
          'gatekeeper': 1,
          'nominated': 1,
          'oscar': 1,
          'best': 1,
          'supporting': 1,
          'coming': 1,
          'home': 1,
          'ndirector': 1,
          'born': 1,
          'holland': 1,
          'began': 1,
          'lengthy': 1,
          'career': 1,
          'cinematographer': 1,
          'films': 1,
          'die': 1,
          'hard': 1,
          'hunt': 1,
          'red': 1,
          'october': 1,
          'basic': 1,
          'instinct': 1,
          'directed': 1,
          'another': 1,
          'dutchman': 1,
          'paul': 1,
          'verhoeven': 1,
          'todd': 1,
          'field': 1,
          'small': 1,
          'pivotal': 1,
          'stanley': 1,
          'kubricks': 1,
          'last': 1,
          'eyes': 1,
          'wide': 1,
          'shut': 1,
          'nick': 1,
          'nightingale': 1,
          'pianist': 1,
          'nthis': 1,
          'originally': 1,
          'titled': 1,
          'hill': 1,
          'nneg': 1}),
 Counter({'dalmatians': 5,
          'film': 4,
          'close': 4,
          'dalmatian': 4,
          '102': 3,
          'glenn': 3,
          'original': 3,
          '101': 3,
          'nthe': 3,
          'dog': 3,
          'point': 3,
          'bad': 2,
          'puppy': 2,
          'one': 2,
          'time': 2,
          'made': 2,
          'back': 2,
          'ncruella': 2,
          'lover': 2,
          'becomes': 2,
          'plot': 2,
          'needs': 2,
          'nhow': 2,
          'depardieu': 2,
          'nand': 2,
          'french': 2,
          'accent': 2,
          'always': 1,
          'sign': 1,
          'core': 1,
          'audience': 1,
          'children': 1,
          'either': 1,
          'walking': 1,
          'early': 1,
          'halfasleep': 1,
          'credits': 1,
          'roll': 1,
          'end': 1,
          'nthat': 1,
          'sums': 1,
          'dreadful': 1,
          'ugliness': 1,
          'cold': 1,
          'pea': 1,
          'soup': 1,
          'cute': 1,
          'animals': 1,
          'stupid': 1,
          'home': 1,
          'alone': 1,
          'antics': 1,
          'boring': 1,
          'love': 1,
          'subplot': 1,
          'dumb': 1,
          'humans': 1,
          'reprising': 1,
          'best': 1,
          'joan': 1,
          'crawford': 1,
          'impression': 1,
          'nindeed': 1,
          'walt': 1,
          'disney': 1,
          'rolling': 1,
          'grave': 1,
          'cursing': 1,
          'john': 1,
          'hughes': 1,
          'name': 1,
          'making': 1,
          'liveaction': 1,
          'worst': 1,
          'kiddie': 1,
          'flicks': 1,
          'sequel': 1,
          'main': 1,
          'culprit': 1,
          'behind': 1,
          'hideousness': 1,
          'predecessor': 1,
          '100': 1,
          'million': 1,
          'dollars': 1,
          'box': 1,
          'office': 1,
          'spawned': 1,
          'torrid': 1,
          'collection': 1,
          'collectible': 1,
          'items': 1,
          'ended': 1,
          'months': 1,
          'later': 1,
          'discount': 1,
          'bins': 1,
          'walmarts': 1,
          'across': 1,
          'country': 1,
          'generally': 1,
          'every': 1,
          'kid': 1,
          'planet': 1,
          'want': 1,
          'damn': 1,
          'pup': 1,
          'christmas': 1,
          'nwell': 1,
          'four': 1,
          'years': 1,
          'since': 1,
          'fever': 1,
          'coming': 1,
          'digitally': 1,
          'enhanced': 1,
          'nheres': 1,
          'story': 1,
          'de': 1,
          'vil': 1,
          'released': 1,
          'prison': 1,
          'due': 1,
          'cure': 1,
          'homicide': 1,
          'urges': 1,
          'dr': 1,
          'pavlov': 1,
          'n': 1,
          'oh': 1,
          'witty': 1,
          'nshe': 1,
          'rejoins': 1,
          'world': 1,
          'assigned': 1,
          'probation': 1,
          'officer': 1,
          'oddly': 1,
          'turns': 1,
          'victim': 1,
          'ella': 1,
          'twists': 1,
          'like': 1,
          'leash': 1,
          'caught': 1,
          'moving': 1,
          'truck': 1,
          'evil': 1,
          'vixen': 1,
          'na': 1,
          'kidnapping': 1,
          'unfurls': 1,
          'cruella': 1,
          'decides': 1,
          'still': 1,
          'coat': 1,
          'instead': 1,
          'commonly': 1,
          'used': 1,
          'formula': 1,
          'nat': 1,
          'envying': 1,
          'kids': 1,
          'filing': 1,
          'theater': 1,
          'low': 1,
          'gerard': 1,
          'films': 1,
          'villain': 1,
          'sunk': 1,
          'business': 1,
          'nits': 1,
          'almost': 1,
          'laughable': 1,
          'sadistic': 1,
          'way': 1,
          'watch': 1,
          'walk': 1,
          'around': 1,
          'costumes': 1,
          'seem': 1,
          'pulled': 1,
          'wardrobe': 1,
          'flash': 1,
          'gordon': 1,
          'guy': 1,
          'never': 1,
          'mind': 1,
          'toilet': 1,
          'brush': 1,
          'haircut': 1,
          'minutely': 1,
          'positive': 1,
          'selling': 1,
          'even': 1,
          'think': 1,
          'talking': 1,
          'bird': 1,
          'british': 1,
          'courtesy': 1,
          'eric': 1,
          'idle': 1,
          'thinks': 1,
          'hes': 1,
          'rottweiler': 1,
          'nnow': 1,
          'thats': 1,
          'funny': 1,
          'nneg': 1}),
 Counter({'marvin': 5,
          'like': 4,
          'animal': 3,
          'time': 3,
          'bad': 3,
          'nits': 2,
          'trying': 2,
          'seen': 2,
          'hes': 2,
          'little': 2,
          'nthis': 2,
          'cant': 2,
          'nhowever': 2,
          'speed': 2,
          'nhe': 2,
          'nwith': 2,
          'could': 2,
          'film': 2,
          'see': 2,
          'marginally': 1,
          'inspired': 1,
          'comedy': 1,
          'manages': 1,
          'lumber': 1,
          'along': 1,
          'generating': 1,
          'enough': 1,
          'momentum': 1,
          'keep': 1,
          'stalling': 1,
          'clunky': 1,
          'slow': 1,
          'watching': 1,
          '18wheeler': 1,
          'accelerate': 1,
          'hill': 1,
          'nthere': 1,
          'certainly': 1,
          'better': 1,
          'things': 1,
          'nactually': 1,
          'youve': 1,
          'trailer': 1,
          'already': 1,
          'know': 1,
          'plot': 1,
          'funniest': 1,
          'moments': 1,
          'nthe': 1,
          'story': 1,
          'centers': 1,
          'bland': 1,
          'rob': 1,
          'schneider': 1,
          'evidence': 1,
          'clerk': 1,
          'local': 1,
          'police': 1,
          'department': 1,
          'yearns': 1,
          'real': 1,
          'officer': 1,
          'nbut': 1,
          'afflicted': 1,
          'loseritis': 1,
          'ndogs': 1,
          'attack': 1,
          'neighbors': 1,
          'torment': 1,
          'children': 1,
          'bully': 1,
          'coworkers': 1,
          'ignore': 1,
          'ntruthfully': 1,
          'haircut': 1,
          'seemingly': 1,
          'modeled': 1,
          'weird': 1,
          'al': 1,
          'yankovic': 1,
          'richard': 1,
          'giant': 1,
          'poodles': 1,
          'unenthusiastic': 1,
          'demeanor': 1,
          'wed': 1,
          'probably': 1,
          'throw': 1,
          'tomatoes': 1,
          'fun': 1,
          'actually': 1,
          'character': 1,
          'develop': 1,
          'sympathy': 1,
          'nwe': 1,
          'never': 1,
          'may': 1,
          'well': 1,
          'drives': 1,
          'cliff': 1,
          'plummets': 1,
          'canyon': 1,
          'floor': 1,
          'found': 1,
          'eccentric': 1,
          'doctor': 1,
          'michael': 1,
          'caton': 1,
          'uses': 1,
          'radical': 1,
          'experimental': 1,
          'procedure': 1,
          'save': 1,
          'implanting': 1,
          'doofus': 1,
          'various': 1,
          'parts': 1,
          'organs': 1,
          'nas': 1,
          'result': 1,
          'develops': 1,
          'heightened': 1,
          'senses': 1,
          'increased': 1,
          'agility': 1,
          'smell': 1,
          'drugs': 1,
          'hidden': 1,
          'anywhere': 1,
          'body': 1,
          'swim': 1,
          'dolphin': 1,
          'run': 1,
          'fast': 1,
          'cheetah': 1,
          'nimagine': 1,
          'comedic': 1,
          'possibilities': 1,
          'arise': 1,
          'operation': 1,
          'enhanced': 1,
          'abilities': 1,
          'reap': 1,
          'vengeance': 1,
          'shunned': 1,
          'spirit': 1,
          'takes': 1,
          'raunchy': 1,
          'turn': 1,
          'instead': 1,
          'spends': 1,
          'subdue': 1,
          'satiate': 1,
          'voracious': 1,
          'appetite': 1,
          'animalistic': 1,
          'sexual': 1,
          'urges': 1,
          'ngoats': 1,
          'beware': 1,
          'also': 1,
          'chases': 1,
          'cats': 1,
          'urinates': 1,
          'mark': 1,
          'territory': 1,
          'growls': 1,
          'enemies': 1,
          'nwhat': 1,
          'shouldve': 1,
          'done': 1,
          'stick': 1,
          'head': 1,
          'sand': 1,
          'ostrich': 1,
          'nequally': 1,
          'tenuous': 1,
          'running': 1,
          'joke': 1,
          'involves': 1,
          'one': 1,
          'friends': 1,
          'guy': 1,
          'torry': 1,
          'constantly': 1,
          'complains': 1,
          'everyone': 1,
          'treating': 1,
          'nicely': 1,
          'black': 1,
          'n': 1,
          'reverse': 1,
          'racism': 1,
          'declares': 1,
          'blows': 1,
          'smoke': 1,
          'faces': 1,
          'strangers': 1,
          'none': 1,
          'says': 1,
          'anything': 1,
          'element': 1,
          'doesnt': 1,
          'work': 1,
          'first': 1,
          'mentioned': 1,
          'becomes': 1,
          'increasingly': 1,
          'trite': 1,
          'every': 1,
          'recurrence': 1,
          'nyou': 1,
          'dont': 1,
          'wise': 1,
          'owl': 1,
          'realize': 1,
          'tame': 1,
          'nif': 1,
          'theres': 1,
          'reason': 1,
          'colleen': 1,
          'haskell': 1,
          'makes': 1,
          'big': 1,
          'screen': 1,
          'debut': 1,
          'nremember': 1,
          'nshe': 1,
          'voted': 1,
          'week': 1,
          '11': 1,
          '13week': 1,
          'program': 1,
          'survivor': 1,
          'nhere': 1,
          'plays': 1,
          'marvins': 1,
          'sunny': 1,
          'love': 1,
          'interest': 1,
          'nwhile': 1,
          'role': 1,
          'required': 1,
          'actual': 1,
          'acting': 1,
          'seemed': 1,
          'comfortable': 1,
          'even': 1,
          'licks': 1,
          'side': 1,
          'face': 1,
          'lapping': 1,
          'dog': 1,
          'yuck': 1,
          'adorable': 1,
          'disposition': 1,
          'radiant': 1,
          'smile': 1,
          'playful': 1,
          'innocence': 1,
          'meg': 1,
          'ryan': 1,
          'making': 1,
          'shes': 1,
          'mediocre': 1,
          'offering': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'character': 6,
          'boss': 4,
          'certainly': 4,
          'one': 4,
          'good': 3,
          'jack': 3,
          'mob': 3,
          'shot': 3,
          'nthere': 3,
          'isnt': 3,
          'nthe': 3,
          'romeo': 2,
          'bleeding': 2,
          'wants': 2,
          'reservoir': 2,
          'dogs': 2,
          'bad': 2,
          'director': 2,
          'whose': 2,
          'previous': 2,
          'credits': 2,
          'films': 2,
          'oldman': 2,
          'lena': 2,
          'olin': 2,
          'combination': 2,
          'something': 2,
          'screenplay': 2,
          'seem': 2,
          'well': 2,
          'ngary': 2,
          'cheating': 2,
          'wife': 2,
          'obvious': 2,
          'although': 2,
          'doesnt': 2,
          'provide': 2,
          'insight': 2,
          'njack': 2,
          'hole': 2,
          'money': 2,
          'get': 2,
          'performance': 2,
          'also': 2,
          'demarkov': 2,
          'take': 2,
          'falcone': 2,
          'played': 2,
          'sexy': 2,
          'woman': 2,
          'problems': 2,
          'nthis': 2,
          'still': 2,
          'important': 2,
          'nwhat': 2,
          'romeos': 2,
          'little': 2,
          'makes': 2,
          'around': 2,
          'lewis': 2,
          'friends': 2,
          'funeral': 2,
          'nfine': 2,
          'goons': 2,
          'gravesite': 2,
          'shift': 2,
          'carry': 1,
          'unusual': 1,
          'flavor': 1,
          'lieutenant': 1,
          'nwith': 1,
          'peter': 1,
          'medak': 1,
          'include': 1,
          'let': 1,
          'krays': 1,
          'topnotch': 1,
          'actors': 1,
          'gary': 1,
          'seemed': 1,
          'likely': 1,
          'successful': 1,
          'nthose': 1,
          'mentioned': 1,
          'however': 1,
          'brought': 1,
          'screen': 1,
          'solid': 1,
          'wellwritten': 1,
          'ncall': 1,
          'cynical': 1,
          'jobs': 1,
          'writer': 1,
          'producer': 1,
          'dont': 1,
          'mix': 1,
          'plays': 1,
          'grimaldi': 1,
          'cop': 1,
          'turned': 1,
          'selling': 1,
          'information': 1,
          'nhis': 1,
          'enough': 1,
          'obtain': 1,
          'nickname': 1,
          'name': 1,
          'analogy': 1,
          'shakespearean': 1,
          'become': 1,
          'addicted': 1,
          'feeding': 1,
          'ground': 1,
          'stores': 1,
          'payoff': 1,
          'nwhen': 1,
          'realizes': 1,
          'colleagues': 1,
          'feebly': 1,
          'attempts': 1,
          'oldmans': 1,
          'disappointingly': 1,
          'weak': 1,
          'seems': 1,
          'nearly': 1,
          'bored': 1,
          'nin': 1,
          'process': 1,
          'gets': 1,
          'tangledup': 1,
          'mona': 1,
          'russian': 1,
          'mobsterette': 1,
          'territory': 1,
          'top': 1,
          'adequately': 1,
          'roy': 1,
          'scheider': 1,
          'ndemarkov': 1,
          'tough': 1,
          'tremendously': 1,
          'seemingly': 1,
          'maneuvering': 1,
          'within': 1,
          'world': 1,
          'linda': 1,
          'hamilton': 1,
          'arnold': 1,
          'schwarznegger': 1,
          'terminator': 1,
          '2': 1,
          'cant': 1,
          'remember': 1,
          'seeing': 1,
          'quite': 1,
          'like': 1,
          'nafter': 1,
          'handcuffed': 1,
          'thrown': 1,
          'back': 1,
          'seat': 1,
          'car': 1,
          'manages': 1,
          'cause': 1,
          'accident': 1,
          'kick': 1,
          'windshield': 1,
          'legs': 1,
          'grab': 1,
          'suitcase': 1,
          'full': 1,
          'plus': 1,
          'documentation': 1,
          'climb': 1,
          'rubble': 1,
          'land': 1,
          'leg': 1,
          'succeed': 1,
          'running': 1,
          'safety': 1,
          'nlena': 1,
          'olins': 1,
          'glimmer': 1,
          'dismal': 1,
          'nanabella': 1,
          'sciorra': 1,
          'wasted': 1,
          'role': 1,
          'nshes': 1,
          'depressed': 1,
          'references': 1,
          'mopes': 1,
          'house': 1,
          'njuliette': 1,
          'girlfriend': 1,
          'treated': 1,
          'cliche': 1,
          'attitudes': 1,
          'ms': 1,
          'portrayal': 1,
          'didnt': 1,
          'improve': 1,
          'nboth': 1,
          'women': 1,
          'anything': 1,
          'attractive': 1,
          'npoorly': 1,
          'developed': 1,
          'characters': 1,
          'aside': 1,
          'suffers': 1,
          'several': 1,
          'logistical': 1,
          'nit': 1,
          'discouraging': 1,
          'watch': 1,
          'want': 1,
          'shout': 1,
          'main': 1,
          'nfor': 1,
          'example': 1,
          'attend': 1,
          'hang': 1,
          'background': 1,
          'scopeout': 1,
          'scene': 1,
          'spots': 1,
          'big': 1,
          'proceed': 1,
          'nhe': 1,
          'brushes': 1,
          'telling': 1,
          'feeling': 1,
          'strolls': 1,
          'nwhy': 1,
          'ready': 1,
          'threatened': 1,
          'simply': 1,
          'takes': 1,
          'opportunity': 1,
          'issue': 1,
          'threats': 1,
          'ordering': 1,
          'jacks': 1,
          'toes': 1,
          'ni': 1,
          'guess': 1,
          'werent': 1,
          'worried': 1,
          'federal': 1,
          'agents': 1,
          'lingering': 1,
          'heres': 1,
          'another': 1,
          'setup': 1,
          'death': 1,
          'cutting': 1,
          'arm': 1,
          'circular': 1,
          'saw': 1,
          'nshe': 1,
          'proceeded': 1,
          'set': 1,
          'place': 1,
          'fire': 1,
          'nwouldnt': 1,
          'flames': 1,
          'burn': 1,
          'fingerprints': 1,
          'narent': 1,
          'dental': 1,
          'records': 1,
          'nas': 1,
          'bright': 1,
          'resourceful': 1,
          'supposed': 1,
          'couldnt': 1,
          'come': 1,
          'better': 1,
          'plot': 1,
          'n': 1,
          'took': 1,
          'time': 1,
          'goodfitting': 1,
          'functional': 1,
          'prosthesis': 1,
          'nlack': 1,
          'attention': 1,
          'detail': 1,
          'adds': 1,
          'even': 1,
          'add': 1,
          'large': 1,
          'details': 1,
          'consistency': 1,
          'storyline': 1,
          'nnot': 1,
          'much': 1,
          'sense': 1,
          'direction': 1,
          'lacks': 1,
          'cohesion': 1,
          'surprising': 1,
          'impeccable': 1,
          'moods': 1,
          'styles': 1,
          'decide': 1,
          'serious': 1,
          'satire': 1,
          'nso': 1,
          'diva': 1,
          'ntheres': 1,
          'plenty': 1,
          'tear': 1,
          'apart': 1,
          'nmy': 1,
          'advice': 1,
          'someone': 1,
          'hasnt': 1,
          'seen': 1,
          'wait': 1,
          'comes': 1,
          'video': 1,
          'quotable': 1,
          'lines': 1,
          'would': 1,
          'campy': 1,
          'evening': 1,
          'taken': 1,
          'seriously': 1,
          'nits': 1,
          'boring': 1,
          'intelligent': 1,
          'nneg': 1}),
 Counter({'film': 8,
          '54': 7,
          'myers': 6,
          'characters': 5,
          'boogie': 5,
          'nights': 5,
          'christopher': 5,
          'dull': 4,
          'perfunctory': 4,
          'uninspired': 4,
          'boring': 4,
          'ni': 4,
          'theyre': 4,
          'dont': 4,
          'nits': 4,
          'performance': 4,
          'shane': 4,
          'n54': 3,
          'nthere': 3,
          'depth': 3,
          'mark': 3,
          'production': 3,
          'last': 3,
          'one': 3,
          'young': 3,
          'phillippe': 3,
          'friends': 3,
          'scene': 3,
          'really': 3,
          'role': 3,
          'doesnt': 3,
          'na': 2,
          'nothing': 2,
          'intelligence': 2,
          'insight': 2,
          'scenes': 2,
          'interest': 2,
          'nand': 2,
          'array': 2,
          'played': 2,
          'wrong': 2,
          'nthe': 2,
          'picture': 2,
          'know': 2,
          'job': 2,
          'business': 2,
          'club': 2,
          'work': 2,
          'even': 2,
          'disco': 2,
          'kind': 2,
          'interesting': 2,
          'character': 2,
          'rubell': 2,
          'studio': 2,
          'good': 2,
          'gets': 2,
          'greg': 2,
          'julie': 2,
          'black': 2,
          'drugs': 2,
          'never': 2,
          'fact': 2,
          'isnt': 2,
          'dumb': 2,
          'without': 2,
          'nthis': 2,
          'talented': 2,
          'actress': 2,
          'almost': 2,
          'seems': 2,
          'help': 2,
          'rest': 2,
          'nin': 2,
          'greater': 1,
          'writer': 1,
          'might': 1,
          'created': 1,
          'lyrical': 1,
          'sentence': 1,
          'adjectives': 1,
          'flowing': 1,
          'lovely': 1,
          'arangements': 1,
          'soaring': 1,
          'metaphors': 1,
          'however': 1,
          'would': 1,
          'rather': 1,
          'cut': 1,
          'chase': 1,
          'glimpse': 1,
          'shimmer': 1,
          'electricity': 1,
          'moment': 1,
          'story': 1,
          'subplots': 1,
          'underdeveloped': 1,
          'features': 1,
          'bland': 1,
          'actors': 1,
          'think': 1,
          'years': 1,
          'nthey': 1,
          'assembled': 1,
          'nbased': 1,
          'got': 1,
          'supposed': 1,
          'amazing': 1,
          'world': 1,
          'dance': 1,
          'name': 1,
          'originated': 1,
          '70s': 1,
          'closed': 1,
          '80s': 1,
          'went': 1,
          'released': 1,
          'managed': 1,
          'plagiarize': 1,
          'paul': 1,
          'thomas': 1,
          'andersons': 1,
          'brilliant': 1,
          'every': 1,
          'possible': 1,
          'way': 1,
          'framework': 1,
          'plot': 1,
          'style': 1,
          'cinematography': 1,
          'nwhat': 1,
          'lacks': 1,
          'everything': 1,
          'made': 1,
          'great': 1,
          'energy': 1,
          'fascinating': 1,
          'challenging': 1,
          'themes': 1,
          'cant': 1,
          'measure': 1,
          'days': 1,
          'flawed': 1,
          'still': 1,
          'smart': 1,
          'entertaining': 1,
          'remarkably': 1,
          'bad': 1,
          'timing': 1,
          'id': 1,
          'say': 1,
          'release': 1,
          'tedious': 1,
          'couple': 1,
          'noteworthy': 1,
          'pictures': 1,
          'exaggerated': 1,
          'though': 1,
          'terrific': 1,
          'nthat': 1,
          'steve': 1,
          'perceptiveness': 1,
          'mike': 1,
          'limp': 1,
          'deserves': 1,
          'nsteve': 1,
          'owner': 1,
          'focused': 1,
          'could': 1,
          'forced': 1,
          'wreck': 1,
          'nalas': 1,
          'instead': 1,
          'guided': 1,
          'endure': 1,
          'trials': 1,
          'man': 1,
          'named': 1,
          'ryan': 1,
          'goingnowhere': 1,
          'new': 1,
          'jersey': 1,
          'teen': 1,
          'thanks': 1,
          'rubells': 1,
          'homosexual': 1,
          'impulses': 1,
          'meets': 1,
          'uninteresting': 1,
          'coworker': 1,
          'brecklin': 1,
          'meyer': 1,
          'wife': 1,
          'anita': 1,
          'salma': 1,
          'hayek': 1,
          'course': 1,
          'love': 1,
          'neve': 1,
          'campbell': 1,
          'nshane': 1,
          'innocent': 1,
          'fool': 1,
          'beginning': 1,
          'reasonably': 1,
          'sturdy': 1,
          'home': 1,
          'life': 1,
          'n': 1,
          'father': 1,
          'border': 1,
          'heather': 1,
          'matarazzo': 1,
          'plays': 1,
          'sister': 1,
          'pushes': 1,
          'screen': 1,
          'nbut': 1,
          'decides': 1,
          'envelop': 1,
          'succumb': 1,
          'peer': 1,
          'pressure': 1,
          'nwhy': 1,
          'push': 1,
          'explained': 1,
          'questioned': 1,
          'superficial': 1,
          'ways': 1,
          'mad': 1,
          'hes': 1,
          'elevated': 1,
          'bartender': 1,
          'status': 1,
          'single': 1,
          'conflict': 1,
          'takes': 1,
          'center': 1,
          'stage': 1,
          'except': 1,
          'unexplored': 1,
          'reservation': 1,
          'works': 1,
          'nmost': 1,
          'dialogue': 1,
          'inane': 1,
          'ntheres': 1,
          'late': 1,
          'confronts': 1,
          'next': 1,
          'arminarm': 1,
          'bit': 1,
          'development': 1,
          'nthen': 1,
          'kissing': 1,
          'bowling': 1,
          'alley': 1,
          'five': 1,
          'minutes': 1,
          'material': 1,
          'thrown': 1,
          'minute': 1,
          'well': 1,
          'past': 1,
          'onehour': 1,
          'long': 1,
          'begin': 1,
          'ncampbell': 1,
          'needs': 1,
          'gives': 1,
          'little': 1,
          'presence': 1,
          'whatsoever': 1,
          'pales': 1,
          'comparison': 1,
          'whalbergs': 1,
          'starmaking': 1,
          'nhe': 1,
          'misguided': 1,
          'voice': 1,
          'changes': 1,
          'tone': 1,
          'guess': 1,
          'picked': 1,
          'color': 1,
          'hair': 1,
          'shape': 1,
          'body': 1,
          'pretty': 1,
          'lanky': 1,
          'nhes': 1,
          'lead': 1,
          'forgotten': 1,
          'develop': 1,
          'nby': 1,
          'end': 1,
          'shanes': 1,
          'notable': 1,
          'trait': 1,
          'stupid': 1,
          'fake': 1,
          'accent': 1,
          'performances': 1,
          'wasted': 1,
          'nhayek': 1,
          'energetic': 1,
          'nmeyer': 1,
          'endearing': 1,
          'allowed': 1,
          'deeper': 1,
          'cardboard': 1,
          'nonly': 1,
          'sheer': 1,
          'force': 1,
          'talent': 1,
          'manages': 1,
          'rise': 1,
          'christophers': 1,
          'wadingpool': 1,
          'script': 1,
          'nrubell': 1,
          'written': 1,
          'depthless': 1,
          'enough': 1,
          'inject': 1,
          'subtleties': 1,
          'round': 1,
          'sole': 1,
          'reason': 1,
          'see': 1,
          'make': 1,
          'wish': 1,
          'revolved': 1,
          'around': 1,
          'nive': 1,
          'read': 1,
          'recreated': 1,
          'detail': 1,
          'nfrankly': 1,
          'care': 1,
          'easy': 1,
          'recreate': 1,
          'something': 1,
          'technical': 1,
          'like': 1,
          'fairly': 1,
          'skilled': 1,
          'designer': 1,
          'carpenters': 1,
          'manage': 1,
          'task': 1,
          'nbesides': 1,
          'keeps': 1,
          'lights': 1,
          'low': 1,
          'sets': 1,
          'invisible': 1,
          'anyway': 1,
          'naside': 1,
          'complete': 1,
          'failure': 1,
          'nsome': 1,
          'may': 1,
          'find': 1,
          'comparisons': 1,
          'unfair': 1,
          'obvious': 1,
          'event': 1,
          'pallid': 1,
          'contrast': 1,
          'nit': 1,
          'mindless': 1,
          'entertainment': 1,
          'shallow': 1,
          'escapist': 1,
          'viewers': 1,
          'likely': 1,
          'dismiss': 1,
          'nso': 1,
          'forget': 1,
          'key': 1,
          'words': 1,
          'neverything': 1,
          'else': 1,
          'said': 1,
          'padding': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'film': 6,
          'babies': 6,
          'baby': 4,
          'geniuses': 4,
          'would': 4,
          'ni': 4,
          'like': 3,
          'may': 3,
          'monkeys': 3,
          'plot': 3,
          'going': 3,
          'avoid': 3,
          'effects': 2,
          'nyou': 2,
          'life': 2,
          'existence': 2,
          'nwhen': 2,
          'think': 2,
          'behind': 2,
          'director': 2,
          'clarks': 2,
          'monkey': 2,
          'heep': 2,
          'secrets': 2,
          'using': 2,
          'sylvester': 2,
          'home': 2,
          'nthere': 2,
          'talking': 2,
          'able': 2,
          'cute': 2,
          'suppose': 2,
          'experience': 1,
          'certain': 1,
          'average': 1,
          'moviegoer': 1,
          'scarred': 1,
          'seeing': 1,
          'petrified': 1,
          'piece': 1,
          'garbage': 1,
          'disarmingly': 1,
          'horrible': 1,
          'cause': 1,
          'ponder': 1,
          'hollywood': 1,
          'screenwriters': 1,
          'picture': 1,
          'room': 1,
          'full': 1,
          'pounding': 1,
          'typewriters': 1,
          'scratching': 1,
          'nall': 1,
          'combine': 1,
          'efforts': 1,
          'hop': 1,
          'cab': 1,
          'take': 1,
          'finished': 1,
          'product': 1,
          'downtown': 1,
          'bob': 1,
          'office': 1,
          'designated': 1,
          'explains': 1,
          'jumping': 1,
          'desk': 1,
          'flailing': 1,
          'arms': 1,
          'shrieking': 1,
          'appears': 1,
          'deep': 1,
          'thought': 1,
          'slams': 1,
          'fist': 1,
          'desktop': 1,
          'exclaims': 1,
          'love': 1,
          'writing': 1,
          'project': 1,
          'embarrassing': 1,
          'nfor': 1,
          'amusement': 1,
          'explain': 1,
          'ndr': 1,
          'kinder': 1,
          'kathleen': 1,
          'turner': 1,
          'dr': 1,
          'christopher': 1,
          'lloyd': 1,
          'two': 1,
          'coldhearted': 1,
          'executives': 1,
          'institute': 1,
          'peculiar': 1,
          'studies': 1,
          'nas': 1,
          'story': 1,
          'goes': 1,
          'ancient': 1,
          'myth': 1,
          'explaining': 1,
          'ages': 1,
          '2': 1,
          'know': 1,
          'world': 1,
          'previous': 1,
          'experiences': 1,
          'move': 1,
          'past': 1,
          'phase': 1,
          'become': 1,
          'drooling': 1,
          'toddler': 1,
          'nkinder': 1,
          'want': 1,
          'unlock': 1,
          'test': 1,
          'namely': 1,
          'little': 1,
          'sly': 1,
          'short': 1,
          'break': 1,
          'given': 1,
          'situation': 1,
          'efficiently': 1,
          'right': 1,
          'mission': 1,
          'impossible': 1,
          'team': 1,
          'much': 1,
          'crap': 1,
          'derived': 1,
          'premise': 1,
          'despite': 1,
          'fact': 1,
          'virtually': 1,
          'identical': 1,
          'look': 1,
          'whos': 1,
          'n': 1,
          'far': 1,
          'superior': 1,
          'league': 1,
          'determine': 1,
          'quality': 1,
          'examining': 1,
          'opening': 1,
          'scene': 1,
          'nsylvester': 1,
          'broken': 1,
          'managed': 1,
          'elude': 1,
          'several': 1,
          'security': 1,
          'guards': 1,
          'amazing': 1,
          'intellect': 1,
          'kungfu': 1,
          'tactics': 1,
          'nquestion': 1,
          'obvious': 1,
          'supersmart': 1,
          'fight': 1,
          'jackie': 1,
          'chan': 1,
          'adults': 1,
          'furiously': 1,
          'beaten': 1,
          'youngsters': 1,
          'diapers': 1,
          'nits': 1,
          'shock': 1,
          'writers': 1,
          'stoop': 1,
          'low': 1,
          'draw': 1,
          'cheap': 1,
          'laughs': 1,
          'john': 1,
          'hughes': 1,
          'familiar': 1,
          'alone': 1,
          'formula': 1,
          'also': 1,
          'found': 1,
          'disturbing': 1,
          'attitude': 1,
          'endless': 1,
          '90s': 1,
          'knowledge': 1,
          'quoting': 1,
          'numerous': 1,
          'movies': 1,
          'insulting': 1,
          'adult': 1,
          'captors': 1,
          'similar': 1,
          'animals': 1,
          'babe': 1,
          'pathetic': 1,
          'editing': 1,
          'disaster': 1,
          'jokes': 1,
          'never': 1,
          'funny': 1,
          'reason': 1,
          'viewers': 1,
          'vomiting': 1,
          'argument': 1,
          'admit': 1,
          'smiling': 1,
          'times': 1,
          'nother': 1,
          'instances': 1,
          'though': 1,
          'howling': 1,
          'laughter': 1,
          'due': 1,
          'inane': 1,
          'stupidity': 1,
          'script': 1,
          'supporting': 1,
          'characters': 1,
          'personality': 1,
          'whatsoever': 1,
          'entire': 1,
          'based': 1,
          'punch': 1,
          'lines': 1,
          'npeter': 1,
          'macnicol': 1,
          'kim': 1,
          'cattrall': 1,
          'unwilling': 1,
          'couple': 1,
          'adopted': 1,
          'sylvesters': 1,
          'twin': 1,
          'miscast': 1,
          'nthen': 1,
          'dont': 1,
          'performer': 1,
          'could': 1,
          'handle': 1,
          'uneven': 1,
          'material': 1,
          'without': 1,
          'looking': 1,
          'incredibly': 1,
          'stupid': 1,
          'nmeanwhile': 1,
          'dom': 1,
          'deluise': 1,
          'plays': 1,
          'fellow': 1,
          'gets': 1,
          'hit': 1,
          'crotch': 1,
          'wrench': 1,
          'hahaha': 1,
          'costs': 1,
          'ninstead': 1,
          'watching': 1,
          'recommended': 1,
          'filling': 1,
          'bathtub': 1,
          'cement': 1,
          'snorkeling': 1,
          'perhaps': 1,
          'consider': 1,
          'diving': 1,
          'sharkinfested': 1,
          'waters': 1,
          'nanything': 1,
          'painful': 1,
          'movie': 1,
          'final': 1,
          'line': 1,
          'spoken': 1,
          'bratty': 1,
          'im': 1,
          'sequel': 1,
          'less': 1,
          '20': 1,
          'mill': 1,
          'theyre': 1,
          'nuts': 1,
          'nsequel': 1,
          'nplease': 1,
          'mercy': 1,
          'nneg': 1}),
 Counter({'palma': 5,
          'de': 4,
          'nit': 4,
          'film': 4,
          'great': 3,
          'nthe': 3,
          'hard': 3,
          'achievement': 3,
          'space': 3,
          'youre': 3,
          'problem': 2,
          'making': 2,
          'brian': 2,
          'live': 2,
          'science': 2,
          'fiction': 2,
          'nand': 2,
          'result': 2,
          'apollo': 2,
          '13': 2,
          'slowly': 2,
          'mars': 2,
          'expedition': 2,
          'another': 2,
          'one': 2,
          'find': 2,
          'plot': 2,
          'films': 2,
          'seem': 2,
          'thought': 2,
          'like': 2,
          'several': 2,
          'would': 2,
          'ni': 2,
          'since': 2,
          'youll': 2,
          'supposed': 2,
          'cry': 2,
          'see': 2,
          'never': 2,
          'nif': 2,
          'houston': 1,
          'serious': 1,
          'nafter': 1,
          'mission': 1,
          'impossible': 1,
          'lot': 1,
          'nby': 1,
          'epic': 1,
          'inviting': 1,
          'cast': 1,
          'talented': 1,
          'crew': 1,
          'hopes': 1,
          'reach': 1,
          'modern': 1,
          'audience': 1,
          'possibilities': 1,
          'certainly': 1,
          'disaster': 1,
          'nstarting': 1,
          'near': 1,
          'future': 1,
          'prologue': 1,
          'copied': 1,
          'builds': 1,
          'story': 1,
          'human': 1,
          'race': 1,
          'already': 1,
          'set': 1,
          'foot': 1,
          'na': 1,
          'research': 1,
          'vanished': 1,
          'without': 1,
          'trace': 1,
          'red': 1,
          'planet': 1,
          'sent': 1,
          'happened': 1,
          'nthis': 1,
          'basically': 1,
          'whole': 1,
          'nso': 1,
          'imagine': 1,
          'stretched': 1,
          '2': 1,
          'hours': 1,
          'nbut': 1,
          'manages': 1,
          'good': 1,
          'nas': 1,
          'follow': 1,
          'watch': 1,
          'float': 1,
          'hardest': 1,
          'thing': 1,
          'stay': 1,
          'awake': 1,
          'major': 1,
          'tries': 1,
          'clever': 1,
          'ndavid': 1,
          'mamets': 1,
          'dialogue': 1,
          'trying': 1,
          'natural': 1,
          'distant': 1,
          'simply': 1,
          'fake': 1,
          'nde': 1,
          'mamet': 1,
          'wanted': 1,
          'combine': 1,
          'action': 1,
          'provoking': 1,
          'unsuccessful': 1,
          'mutation': 1,
          'kubricks': 1,
          '2001': 1,
          'odyssey': 1,
          'godzilla': 1,
          'nto': 1,
          'make': 1,
          'time': 1,
          'pass': 1,
          'creators': 1,
          'inserted': 1,
          'refreshing': 1,
          'scientific': 1,
          'details': 1,
          'convince': 1,
          'halfcrazed': 1,
          'frog': 1,
          'consists': 1,
          'multiple': 1,
          'copies': 1,
          'direct': 1,
          'rippoffs': 1,
          'stories': 1,
          'nwhen': 1,
          'finally': 1,
          'presents': 1,
          'almost': 1,
          'original': 1,
          'idea': 1,
          'falls': 1,
          'flat': 1,
          'uncovered': 1,
          'stupidity': 1,
          'cant': 1,
          'even': 1,
          'call': 1,
          'predictable': 1,
          'healthy': 1,
          'imagination': 1,
          'come': 1,
          'something': 1,
          'nsometimes': 1,
          'gets': 1,
          'cheesy': 1,
          'start': 1,
          'laughing': 1,
          'laugh': 1,
          'nyoull': 1,
          'enormous': 1,
          'sandstorms': 1,
          'hear': 1,
          'mysterious': 1,
          'sounds': 1,
          'last': 1,
          'least': 1,
          'constantly': 1,
          'surprising': 1,
          'tour': 1,
          'alien': 1,
          'nits': 1,
          'really': 1,
          'comparisons': 1,
          'experience': 1,
          'know': 1,
          'ive': 1,
          'said': 1,
          'lost': 1,
          'actually': 1,
          'better': 1,
          'nthats': 1,
          'ndirector': 1,
          'stroke': 1,
          'gold': 1,
          'untouchables': 1,
          'became': 1,
          'instant': 1,
          'american': 1,
          'classic': 1,
          'remembered': 1,
          'failures': 1,
          'forgotten': 1,
          'nhell': 1,
          'fight': 1,
          'day': 1,
          'send': 1,
          'actors': 1,
          'condolences': 1,
          'truly': 1,
          'try': 1,
          'transform': 1,
          'undeveloped': 1,
          'dull': 1,
          'characters': 1,
          'cinematography': 1,
          'production': 1,
          'design': 1,
          'art': 1,
          'direction': 1,
          'decent': 1,
          '254': 1,
          'people': 1,
          'rate': 1,
          '210': 1,
          'nunfortunately': 1,
          'work': 1,
          'vain': 1,
          'problems': 1,
          'insomnia': 1,
          'recommend': 1,
          'asleep': 1,
          'within': 1,
          'first': 1,
          'half': 1,
          'hour': 1,
          'consult': 1,
          'doctor': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'satan': 6,
          'arnold': 5,
          'end': 5,
          'days': 4,
          'world': 4,
          'nthe': 4,
          'even': 4,
          'evil': 4,
          'people': 3,
          'save': 3,
          'nit': 3,
          'guard': 3,
          'new': 3,
          'priest': 3,
          'woman': 3,
          'fired': 3,
          'becomes': 2,
          'god': 2,
          'final': 2,
          'faith': 2,
          'windows': 2,
          'arrogance': 2,
          'nits': 2,
          'n': 2,
          'director': 2,
          'security': 2,
          'finds': 2,
          'stop': 2,
          'body': 2,
          'wall': 2,
          '1979': 2,
          'pope': 2,
          'looking': 2,
          'seeing': 2,
          'born': 2,
          'find': 2,
          'nbut': 2,
          'kill': 2,
          'nyc': 2,
          'chosen': 2,
          'christine': 2,
          'year': 2,
          '2000': 2,
          'partner': 2,
          'nhe': 2,
          'piss': 2,
          'like': 2,
          'sometimes': 2,
          'nothing': 2,
          'purpose': 2,
          'value': 2,
          '1999': 2,
          '666': 2,
          'gun': 1,
          'wielding': 1,
          'schwarzenegger': 1,
          'change': 1,
          'heart': 1,
          'films': 1,
          'believer': 1,
          'instead': 1,
          'skeptic': 1,
          'going': 1,
          'amazing': 1,
          'transformation': 1,
          'christian': 1,
          'epiphany': 1,
          'scene': 1,
          'someone': 1,
          'beat': 1,
          'devil': 1,
          'alone': 1,
          'two': 1,
          'hours': 1,
          'throwing': 1,
          'shooting': 1,
          'average': 1,
          'serial': 1,
          'killer': 1,
          'nnobody': 1,
          'bomb': 1,
          'stupidity': 1,
          'filmmaking': 1,
          'believing': 1,
          'positive': 1,
          'religioustype': 1,
          'pile': 1,
          'dreck': 1,
          'nillconceived': 1,
          'exploitive': 1,
          'project': 1,
          'pyrotechnical': 1,
          'aims': 1,
          'apocalyptic': 1,
          'thriller': 1,
          'features': 1,
          'idiotic': 1,
          'script': 1,
          'hack': 1,
          'onedimensional': 1,
          'star': 1,
          'past': 1,
          'prime': 1,
          'nmakes': 1,
          'dumber': 1,
          'dumb': 1,
          'plus': 1,
          'funny': 1,
          'campy': 1,
          'least': 1,
          'bit': 1,
          'entertaining': 1,
          'dreary': 1,
          'unwatchable': 1,
          'nbigbudget': 1,
          'slasher': 1,
          'narnold': 1,
          'plays': 1,
          'alcoholic': 1,
          'mission': 1,
          'life': 1,
          'occupying': 1,
          'gabriel': 1,
          'byrnes': 1,
          'possessing': 1,
          'st': 1,
          'bank': 1,
          'account': 1,
          'destroying': 1,
          'opens': 1,
          'vatican': 1,
          'city': 1,
          'roma': 1,
          'alerted': 1,
          'young': 1,
          'visionary': 1,
          'tomaso': 1,
          'night': 1,
          'sky': 1,
          'comet': 1,
          'whiz': 1,
          'proclaims': 1,
          'scrolls': 1,
          'thats': 1,
          'sign': 1,
          'eye': 1,
          'reveals': 1,
          'child': 1,
          'prepared': 1,
          'give': 1,
          'birth': 1,
          'satans': 1,
          'baby': 1,
          'antichrist': 1,
          'hour': 1,
          'century': 1,
          'begins': 1,
          'fuck': 1,
          'open': 1,
          'gates': 1,
          'hell': 1,
          'earth': 1,
          'ntomaso': 1,
          'twenty': 1,
          'years': 1,
          'doom': 1,
          'popes': 1,
          'circle': 1,
          'want': 1,
          'found': 1,
          'though': 1,
          'insists': 1,
          'letting': 1,
          'live': 1,
          'lectures': 1,
          'worlds': 1,
          'darkest': 1,
          'doesnt': 1,
          'brings': 1,
          'nwe': 1,
          'saw': 1,
          'girl': 1,
          'seems': 1,
          'logical': 1,
          'place': 1,
          'look': 1,
          'according': 1,
          'astrology': 1,
          'charts': 1,
          'visionaries': 1,
          'york': 1,
          'robin': 1,
          'celebration': 1,
          'wisecracking': 1,
          'kevin': 1,
          'pollack': 1,
          'hired': 1,
          'street': 1,
          'turd': 1,
          'upon': 1,
          'renograde': 1,
          'thomas': 1,
          'aquinas': 1,
          'saves': 1,
          'ridiculous': 1,
          'chase': 1,
          'captures': 1,
          'tongue': 1,
          'less': 1,
          'shot': 1,
          'nevertheless': 1,
          'speak': 1,
          'tells': 1,
          'coming': 1,
          'prophesized': 1,
          'revelations': 1,
          'gets': 1,
          'hospital': 1,
          'room': 1,
          'nails': 1,
          'ceiling': 1,
          'scribbling': 1,
          'latin': 1,
          'warnings': 1,
          'quickly': 1,
          'everything': 1,
          'protect': 1,
          'forces': 1,
          'around': 1,
          'includes': 1,
          'ludicrous': 1,
          'helicopter': 1,
          'rescues': 1,
          'jumping': 1,
          'taking': 1,
          'dropping': 1,
          'match': 1,
          'arnolds': 1,
          'explodes': 1,
          'gasoline': 1,
          'resulting': 1,
          'experiencing': 1,
          'pain': 1,
          'forgot': 1,
          'way': 1,
          'wants': 1,
          'nthere': 1,
          'spared': 1,
          'fire': 1,
          'bombs': 1,
          'including': 1,
          'subway': 1,
          'churches': 1,
          'luxury': 1,
          'buildings': 1,
          'trouble': 1,
          'highbudget': 1,
          'action': 1,
          'sequences': 1,
          'lacked': 1,
          'entertainment': 1,
          'story': 1,
          'terrible': 1,
          'inaccurate': 1,
          'iota': 1,
          'credibility': 1,
          'nmercifully': 1,
          'movie': 1,
          'drags': 1,
          'confrontation': 1,
          'times': 1,
          'square': 1,
          'trying': 1,
          'unsuccessfully': 1,
          'build': 1,
          'tension': 1,
          'countdown': 1,
          'toward': 1,
          'nwhy': 1,
          'considered': 1,
          'devils': 1,
          'number': 1,
          'well': 1,
          'nsatans': 1,
          'numeral': 1,
          'actually': 1,
          '999': 1,
          'upside': 1,
          'naccordingly': 1,
          'put': 1,
          '1': 1,
          'front': 1,
          'bingo': 1,
          'get': 1,
          'nwith': 1,
          'logic': 1,
          'might': 1,
          'think': 1,
          'pulled': 1,
          'wool': 1,
          'viewers': 1,
          'eyes': 1,
          'got': 1,
          'away': 1,
          'febrile': 1,
          'explanation': 1,
          'occult': 1,
          'nthis': 1,
          'become': 1,
          'classic': 1,
          'used': 1,
          'schools': 1,
          'make': 1,
          'horror': 1,
          'ni': 1,
          'highly': 1,
          'recommend': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'movie': 5,
          'billie': 4,
          'mariah': 3,
          'glitter': 3,
          'nin': 3,
          'carey': 3,
          'nthe': 3,
          'dice': 3,
          'billies': 3,
          'nbut': 3,
          'careys': 2,
          'im': 2,
          'says': 2,
          'dont': 2,
          'mean': 2,
          'done': 2,
          'nto': 2,
          'say': 2,
          'give': 2,
          'star': 2,
          'days': 2,
          'spice': 2,
          'period': 2,
          'make': 2,
          'starts': 2,
          'gets': 2,
          'like': 2,
          'making': 2,
          'dramatic': 2,
          'would': 2,
          'scene': 2,
          'director': 2,
          'audience': 2,
          'one': 2,
          'love': 2,
          'much': 2,
          'suffer': 2,
          'enduring': 1,
          'debut': 1,
          'reminded': 1,
          'bit': 1,
          'chris': 1,
          'rocks': 1,
          'bigger': 1,
          'blacker': 1,
          'response': 1,
          'women': 1,
          'saying': 1,
          'raise': 1,
          'child': 1,
          'without': 1,
          'man': 1,
          'rock': 1,
          'drive': 1,
          'car': 1,
          'feet': 1,
          'certainly': 1,
          'nsure': 1,
          'plenty': 1,
          'pop': 1,
          'vehicles': 1,
          'beatles': 1,
          'hard': 1,
          'night': 1,
          'girls': 1,
          'world': 1,
          'none': 1,
          'vapidly': 1,
          'pointless': 1,
          'laughable': 1,
          'neverything': 1,
          'complete': 1,
          'tripe': 1,
          'ludicrous': 1,
          'nstart': 1,
          'story': 1,
          'gruesomely': 1,
          'predictable': 1,
          'least': 1,
          'offensive': 1,
          'part': 1,
          'inexplicably': 1,
          'set': 1,
          '80s': 1,
          'piece': 1,
          'really': 1,
          'shows': 1,
          'sign': 1,
          'except': 1,
          'chicks': 1,
          'leg': 1,
          'warmers': 1,
          'nworse': 1,
          'yet': 1,
          'everyones': 1,
          'speaking': 1,
          'late': 1,
          '90s': 1,
          'hiphop': 1,
          'slang': 1,
          '1983': 1,
          'nmeant': 1,
          'partially': 1,
          'autobiographical': 1,
          'plays': 1,
          'frank': 1,
          'young': 1,
          'singer': 1,
          'new': 1,
          'york': 1,
          'struggles': 1,
          'overcome': 1,
          'rough': 1,
          'childhood': 1,
          'abandonment': 1,
          'alcoholic': 1,
          'mother': 1,
          'ninfluential': 1,
          'club': 1,
          'dj': 1,
          'julian': 1,
          'k': 1,
          'lucky': 1,
          '7': 1,
          'max': 1,
          'beesley': 1,
          'playing': 1,
          'bad': 1,
          'mix': 1,
          'puff': 1,
          'daddy': 1,
          'robert': 1,
          'de': 1,
          'niro': 1,
          'hears': 1,
          'sing': 1,
          'track': 1,
          'decides': 1,
          'predictably': 1,
          'rapid': 1,
          'succession': 1,
          'fall': 1,
          'hitting': 1,
          'big': 1,
          'jealous': 1,
          'acting': 1,
          'ass': 1,
          'suddenly': 1,
          'roller': 1,
          'coaster': 1,
          'superstardom': 1,
          'meantime': 1,
          'emotional': 1,
          'hunt': 1,
          'missing': 1,
          'mom': 1,
          'ni': 1,
          'wont': 1,
          'away': 1,
          'ending': 1,
          'honestly': 1,
          'think': 1,
          'unicorns': 1,
          'rainbows': 1,
          'nyoull': 1,
          'figure': 1,
          'screams': 1,
          'made': 1,
          'camp': 1,
          'couldve': 1,
          'fun': 1,
          'filmmakers': 1,
          'thought': 1,
          'bulk': 1,
          'weepy': 1,
          'better': 1,
          'nwhat': 1,
          'mistake': 1,
          'brief': 1,
          'attempts': 1,
          'comic': 1,
          'relief': 1,
          'effeminate': 1,
          'russiansounding': 1,
          'wacky': 1,
          'filming': 1,
          'first': 1,
          'music': 1,
          'video': 1,
          'go': 1,
          'lead': 1,
          'balloons': 1,
          'ninstead': 1,
          'screening': 1,
          'tended': 1,
          'laugh': 1,
          'loudest': 1,
          'mariahs': 1,
          'scenes': 1,
          'nwhich': 1,
          'brings': 1,
          'us': 1,
          'performances': 1,
          'theres': 1,
          'nothing': 1,
          'good': 1,
          'said': 1,
          'nmariah': 1,
          'primarily': 1,
          'seen': 1,
          'wideeyed': 1,
          'deerintheheadlights': 1,
          'look': 1,
          'frozen': 1,
          'face': 1,
          'nshe': 1,
          'actually': 1,
          'looks': 1,
          'scared': 1,
          'wonder': 1,
          'writing': 1,
          'isnt': 1,
          'even': 1,
          'worse': 1,
          'nso': 1,
          'dialogue': 1,
          'hackneyed': 1,
          'watered': 1,
          'virginal': 1,
          'target': 1,
          'probably': 1,
          'impossible': 1,
          'actor': 1,
          'pull': 1,
          'aplomb': 1,
          'neven': 1,
          'characters': 1,
          'couldnt': 1,
          'written': 1,
          'absurdly': 1,
          'ntheyre': 1,
          'members': 1,
          'barbie': 1,
          'playset': 1,
          'important': 1,
          'swoons': 1,
          'id': 1,
          'put': 1,
          'bigtime': 1,
          'record': 1,
          'executive': 1,
          'takes': 1,
          'demo': 1,
          'tape': 1,
          'oh': 1,
          'ill': 1,
          'sure': 1,
          'whole': 1,
          'team': 1,
          'listens': 1,
          'morning': 1,
          'neveryone': 1,
          'device': 1,
          'painful': 1,
          'keep': 1,
          'watching': 1,
          'see': 1,
          'another': 1,
          'appear': 1,
          'waste': 1,
          'ntheres': 1,
          'wrong': 1,
          'nand': 1,
          'pains': 1,
          'ego': 1,
          'sanity': 1,
          'fragile': 1,
          'condition': 1,
          'evidenced': 1,
          'multiple': 1,
          'hospital': 1,
          'stays': 1,
          'negative': 1,
          'reviews': 1,
          'shes': 1,
          'likely': 1,
          'get': 1,
          'nneg': 1}),
 Counter({'nthe': 13,
          'film': 8,
          'patch': 6,
          'adams': 5,
          'films': 4,
          'people': 4,
          'nit': 4,
          'scene': 4,
          'npatch': 3,
          'feel': 3,
          'make': 3,
          'nthere': 3,
          'number': 3,
          'real': 3,
          'good': 3,
          'patients': 3,
          'nhe': 3,
          'wants': 3,
          'patchs': 3,
          'dean': 3,
          'one': 3,
          'makes': 3,
          'poster': 2,
          'boy': 2,
          'codependency': 2,
          'michael': 2,
          'redman': 2,
          'nin': 2,
          'need': 2,
          'us': 2,
          'quality': 2,
          'like': 2,
          'profit': 2,
          'movies': 2,
          'put': 2,
          'nfor': 2,
          'reason': 2,
          'audience': 2,
          'ones': 2,
          'time': 2,
          'bad': 2,
          'actor': 2,
          'story': 2,
          'could': 2,
          'williams': 2,
          'mental': 2,
          'institute': 2,
          'help': 2,
          'around': 2,
          'doesnt': 2,
          'later': 2,
          'medical': 2,
          'student': 2,
          'hes': 2,
          'students': 2,
          'history': 2,
          'also': 2,
          'nthen': 2,
          'must': 2,
          'movie': 2,
          'free': 2,
          'clinic': 2,
          'another': 2,
          'nmost': 2,
          'man': 2,
          'cancer': 2,
          'woman': 2,
          'laugh': 2,
          'old': 2,
          'use': 2,
          'n': 2,
          'first': 2,
          'tries': 2,
          'directed': 2,
          'care': 2,
          'needs': 1,
          'patching': 1,
          'review': 1,
          'copyright': 1,
          '1999': 1,
          'nmediocrity': 1,
          'pox': 1,
          'civilization': 1,
          'heavily': 1,
          'consumer': 1,
          'oriented': 1,
          'society': 1,
          'enormous': 1,
          'demand': 1,
          'churn': 1,
          'stuff': 1,
          'nwhat': 1,
          'would': 1,
          'happen': 1,
          'economy': 1,
          'didnt': 1,
          'things': 1,
          'nto': 1,
          'buy': 1,
          'businesses': 1,
          'produce': 1,
          'ton': 1,
          'product': 1,
          'sheer': 1,
          'volume': 1,
          'items': 1,
          'necessitates': 1,
          'dubious': 1,
          'industry': 1,
          'order': 1,
          'studios': 1,
          'survive': 1,
          'money': 1,
          'prevailing': 1,
          'attitude': 1,
          'equal': 1,
          'nsome': 1,
          'obviously': 1,
          'exist': 1,
          'wares': 1,
          'screen': 1,
          'less': 1,
          'talented': 1,
          'used': 1,
          'arent': 1,
          'enough': 1,
          'great': 1,
          'directors': 1,
          'actors': 1,
          'create': 1,
          'necessary': 1,
          'never': 1,
          'crossed': 1,
          'anyones': 1,
          'mind': 1,
          'equation': 1,
          'noften': 1,
          'mediocre': 1,
          'pain': 1,
          'horrendous': 1,
          'nat': 1,
          'making': 1,
          'fun': 1,
          'nim': 1,
          'suggesting': 1,
          'tossed': 1,
          'rake': 1,
          'bucks': 1,
          'nmy': 1,
          'guess': 1,
          'someone': 1,
          'asleep': 1,
          'wheel': 1,
          'features': 1,
          'accomplished': 1,
          'potentially': 1,
          'engrossing': 1,
          'dull': 1,
          'nhunter': 1,
          'robin': 1,
          'desire': 1,
          'become': 1,
          'doctor': 1,
          'unusual': 1,
          'genesis': 1,
          'nchecking': 1,
          'suicide': 1,
          'attempt': 1,
          'discovers': 1,
          'clowning': 1,
          'explains': 1,
          'likes': 1,
          'devoting': 1,
          'others': 1,
          'focus': 1,
          'problems': 1,
          'decides': 1,
          'physician': 1,
          'leaves': 1,
          'place': 1,
          'couple': 1,
          'years': 1,
          'enrolls': 1,
          'college': 1,
          'virginia': 1,
          'nas': 1,
          'med': 1,
          'antics': 1,
          'schools': 1,
          'hospital': 1,
          'catch': 1,
          'attention': 1,
          'soon': 1,
          'archenemy': 1,
          'straightlaced': 1,
          'walcott': 1,
          'bob': 1,
          'gunton': 1,
          'opposed': 1,
          'goofiness': 1,
          'kicked': 1,
          'school': 1,
          'although': 1,
          'top': 1,
          'writes': 1,
          'academic': 1,
          'file': 1,
          'shows': 1,
          'excessive': 1,
          'happiness': 1,
          'ni': 1,
          'walked': 1,
          'knowing': 1,
          'little': 1,
          'wondered': 1,
          'odd': 1,
          'mechanical': 1,
          'pacing': 1,
          'seemed': 1,
          'set': 1,
          'early': 1,
          'seventies': 1,
          'struck': 1,
          'based': 1,
          'true': 1,
          'adaptation': 1,
          'book': 1,
          'hunter': 1,
          'founded': 1,
          'gesundheit': 1,
          'nrobin': 1,
          'amazing': 1,
          'nwhile': 1,
          'adept': 1,
          'dramatic': 1,
          'roles': 1,
          'forte': 1,
          'overthetop': 1,
          'spirits': 1,
          'nthats': 1,
          'failure': 1,
          'remarkable': 1,
          'exactly': 1,
          'character': 1,
          'best': 1,
          'yet': 1,
          'even': 1,
          'patient': 1,
          'battling': 1,
          'fierce': 1,
          'imaginary': 1,
          'squirrels': 1,
          'falls': 1,
          'flat': 1,
          'nsomething': 1,
          'holds': 1,
          'back': 1,
          'rest': 1,
          'cast': 1,
          'twodimensional': 1,
          'champions': 1,
          'seeing': 1,
          'human': 1,
          'beings': 1,
          'curious': 1,
          'cardboard': 1,
          'characters': 1,
          'npeter': 1,
          'coyote': 1,
          'dying': 1,
          'refreshing': 1,
          'seems': 1,
          'person': 1,
          'nunfortunately': 1,
          'two': 1,
          'minutes': 1,
          'blatantly': 1,
          'lead': 1,
          'ring': 1,
          'nose': 1,
          'nwere': 1,
          'left': 1,
          'emotional': 1,
          'decisions': 1,
          'hit': 1,
          'head': 1,
          'nshavedheaded': 1,
          'children': 1,
          'elderly': 1,
          'beautiful': 1,
          'cant': 1,
          'love': 1,
          'abusive': 1,
          'nwhen': 1,
          'group': 1,
          'fix': 1,
          'house': 1,
          'andy': 1,
          'hardy': 1,
          'hey': 1,
          'lets': 1,
          'play': 1,
          'nwe': 1,
          'barn': 1,
          'mom': 1,
          'curtains': 1,
          'nmode': 1,
          'roll': 1,
          'painting': 1,
          'might': 1,
          'well': 1,
          'giant': 1,
          'signs': 1,
          'flashing': 1,
          'title': 1,
          'patchwork': 1,
          'every': 1,
          'manipulative': 1,
          'think': 1,
          'fulloflife': 1,
          'fights': 1,
          'stodgy': 1,
          'establishment': 1,
          'types': 1,
          'ntheres': 1,
          'touching': 1,
          'death': 1,
          'theres': 1,
          'trust': 1,
          'get': 1,
          'kick': 1,
          'nworst': 1,
          'final': 1,
          'courtroom': 1,
          'bit': 1,
          'nscarylooking': 1,
          'men': 1,
          'sit': 1,
          'judgment': 1,
          'room': 1,
          'packed': 1,
          'supporters': 1,
          'nwilliams': 1,
          'supposedly': 1,
          'impassioned': 1,
          'speech': 1,
          'humanity': 1,
          'much': 1,
          'emotion': 1,
          'earlier': 1,
          'statement': 1,
          'humans': 1,
          'animal': 1,
          'kills': 1,
          'members': 1,
          'species': 1,
          'contains': 1,
          'truth': 1,
          'blame': 1,
          'placed': 1,
          'director': 1,
          'tom': 1,
          'shadyac': 1,
          'screenwriter': 1,
          'steve': 1,
          'oedekerk': 1,
          'nshadyac': 1,
          'ace': 1,
          'ventura': 1,
          'noedekerk': 1,
          'second': 1,
          'nneed': 1,
          'say': 1,
          'admired': 1,
          'devotion': 1,
          'treating': 1,
          'rather': 1,
          'diseases': 1,
          'worthy': 1,
          'messages': 1,
          'state': 1,
          'modern': 1,
          'business': 1,
          'hmos': 1,
          'managed': 1,
          'doctors': 1,
          'gods': 1,
          'theme': 1,
          'resonate': 1,
          'poorly': 1,
          'produced': 1,
          'nneg': 1}),
 Counter({'einstein': 7,
          'movie': 6,
          'young': 5,
          'nin': 3,
          'yahoo': 3,
          'film': 3,
          'nyahoo': 3,
          'box': 2,
          'office': 2,
          'hoping': 2,
          'nyoung': 2,
          'nthe': 2,
          'takes': 2,
          'tasmania': 2,
          'albert': 2,
          'first': 2,
          'nbut': 2,
          'quickly': 2,
          'comedy': 2,
          'music': 2,
          'embarrassingly': 1,
          'lame': 1,
          'didnt': 1,
          'stop': 1,
          'becoming': 1,
          'phenomenon': 1,
          'australia': 1,
          'became': 1,
          'third': 1,
          'largest': 1,
          'hit': 1,
          'time': 1,
          'u': 1,
          'warner': 1,
          'brothers': 1,
          'follow': 1,
          'footsteps': 1,
          'paul': 1,
          'hogan': 1,
          'inxs': 1,
          'shrimp': 1,
          'barby': 1,
          'become': 1,
          'latest': 1,
          'rage': 1,
          'npersonally': 1,
          'im': 1,
          'americans': 1,
          'everywhere': 1,
          'rise': 1,
          'occasion': 1,
          'make': 1,
          'bomb': 1,
          'sprang': 1,
          'twisted': 1,
          'mind': 1,
          'serious': 1,
          'wrote': 1,
          'produced': 1,
          'edited': 1,
          'directed': 1,
          'also': 1,
          'starred': 1,
          'stunts': 1,
          'nhis': 1,
          'creation': 1,
          'stupid': 1,
          'contrived': 1,
          'youd': 1,
          'expect': 1,
          'someone': 1,
          'named': 1,
          'substantial': 1,
          'historical': 1,
          'liberties': 1,
          'recreating': 1,
          'einsteins': 1,
          'youth': 1,
          'nwhereas': 1,
          'scientist': 1,
          'actually': 1,
          'hailed': 1,
          'germany': 1,
          'finds': 1,
          'still': 1,
          'living': 1,
          'parents': 1,
          'remote': 1,
          'australian': 1,
          'island': 1,
          'addition': 1,
          'deriving': 1,
          'formula': 1,
          'energy': 1,
          'theory': 1,
          'relativity': 1,
          'invents': 1,
          'surfing': 1,
          'bubbles': 1,
          'beer': 1,
          'electric': 1,
          'guitar': 1,
          'plays': 1,
          'naive': 1,
          'unrefined': 1,
          'country': 1,
          'hicka': 1,
          'clown': 1,
          'insatiable': 1,
          'curiosity': 1,
          'nalthough': 1,
          'yahoos': 1,
          'performance': 1,
          'endearing': 1,
          'onedimensional': 1,
          'characterization': 1,
          'loses': 1,
          'novelty': 1,
          'faster': 1,
          'say': 1,
          'emc2': 1,
          'created': 1,
          'charming': 1,
          'family': 1,
          'scenes': 1,
          'often': 1,
          'clever': 1,
          'twenty': 1,
          'minutes': 1,
          'plummets': 1,
          'degenerates': 1,
          'poor': 1,
          'excuse': 1,
          'hampered': 1,
          'lethargic': 1,
          'pace': 1,
          'inane': 1,
          'plot': 1,
          'must': 1,
          'mtv': 1,
          'addict': 1,
          'features': 1,
          'omnipresent': 1,
          'soundtrack': 1,
          'unfortunately': 1,
          'altogether': 1,
          'gratuitous': 1,
          'becomes': 1,
          'overbearing': 1,
          'nalmost': 1,
          'every': 1,
          'scene': 1,
          'includes': 1,
          'blaring': 1,
          'rock': 1,
          'song': 1,
          'leaves': 1,
          'wondering': 1,
          'whether': 1,
          'watching': 1,
          'video': 1,
          'instrumental': 1,
          'score': 1,
          'hand': 1,
          'generally': 1,
          'playful': 1,
          'uses': 1,
          'classics': 1,
          '1812': 1,
          'overture': 1,
          'theme': 1,
          'good': 1,
          'bad': 1,
          'ugly': 1,
          'great': 1,
          'comic': 1,
          'effect': 1,
          'nhalfway': 1,
          'knew': 1,
          'sure': 1,
          'stinker': 1,
          'wasnt': 1,
          'end': 1,
          'finally': 1,
          'put': 1,
          'finger': 1,
          'roots': 1,
          'whimsical': 1,
          'fantasies': 1,
          'sherlock': 1,
          'holmes': 1,
          'cheesy': 1,
          'primetime': 1,
          'sitcoms': 1,
          'fact': 1,
          'might': 1,
          'home': 1,
          'network': 1,
          'television': 1,
          'sophomoric': 1,
          'humor': 1,
          'wouldnt': 1,
          'raise': 1,
          'eyebrows': 1,
          'nneg': 1}),
 Counter({'carry': 5,
          'sid': 5,
          'james': 5,
          'turpin': 5,
          'performance': 4,
          'last': 3,
          'robberies': 3,
          'kenneth': 3,
          'sir': 3,
          'roger': 3,
          'movie': 3,
          'film': 2,
          'cast': 2,
          'hattie': 2,
          'jacques': 2,
          'gang': 2,
          'windsor': 2,
          'tom': 2,
          'butterworth': 2,
          'turpins': 2,
          'fancey': 2,
          'williams': 2,
          'jock': 2,
          'strapp': 2,
          'douglas': 2,
          'daley': 2,
          'bernard': 2,
          'reverend': 2,
          'flasher': 2,
          'dick': 2,
          'earlier': 2,
          'part': 2,
          'catch': 2,
          'harriett': 2,
          'nthe': 2,
          'notable': 2,
          'jokes': 2,
          'script': 2,
          'almost': 1,
          'intact': 1,
          'regular': 1,
          'swansong': 1,
          'ndick': 1,
          'includes': 1,
          'harriettharry': 1,
          'barbara': 1,
          'doc': 1,
          'scholl': 1,
          'peter': 1,
          'terrorise': 1,
          'countryside': 1,
          'staging': 1,
          'highway': 1,
          'stand': 1,
          'deliver': 1,
          'nowing': 1,
          'increased': 1,
          'occurrence': 1,
          'captain': 1,
          'desmond': 1,
          'bow': 1,
          'street': 1,
          'runners': 1,
          'sidekick': 1,
          'sergeant': 1,
          'jack': 1,
          'visit': 1,
          'area': 1,
          'influence': 1,
          'bring': 1,
          'justice': 1,
          'nthey': 1,
          'express': 1,
          'orders': 1,
          'bresslaw': 1,
          'ntheir': 1,
          'intellect': 1,
          'count': 1,
          'much': 1,
          'increasingly': 1,
          'become': 1,
          'suspicious': 1,
          'aka': 1,
          'confided': 1,
          'still': 1,
          'believe': 1,
          'rector': 1,
          'nhowever': 1,
          'put': 1,
          'jail': 1,
          'takes': 1,
          'complete': 1,
          'charge': 1,
          'seems': 1,
          'hope': 1,
          'nthen': 1,
          'assigned': 1,
          'dimwits': 1,
          'aswell': 1,
          'old': 1,
          'dithering': 1,
          'constable': 1,
          'connor': 1,
          'keep': 1,
          'eye': 1,
          'prisoner': 1,
          'nthere': 1,
          'doubt': 1,
          'nhe': 1,
          'excels': 1,
          'double': 1,
          'roles': 1,
          'dont': 1,
          'lose': 1,
          'head': 1,
          'hilarious': 1,
          'nbarbara': 1,
          'also': 1,
          'funny': 1,
          'sex': 1,
          'mad': 1,
          'housemaid': 1,
          'member': 1,
          'small': 1,
          'effective': 1,
          'role': 1,
          'rectors': 1,
          'housekeeper': 1,
          'martha': 1,
          'hoggett': 1,
          'played': 1,
          'perfection': 1,
          'njack': 1,
          'plays': 1,
          'milder': 1,
          'version': 1,
          'excruciatingly': 1,
          'annoying': 1,
          'onscreen': 1,
          'persona': 1,
          'given': 1,
          'rather': 1,
          'mundane': 1,
          'npeter': 1,
          'allowed': 1,
          'shine': 1,
          'boring': 1,
          'bresslaws': 1,
          'character': 1,
          'appears': 1,
          'briefly': 1,
          'support': 1,
          'comes': 1,
          'joan': 1,
          'sims': 1,
          'madame': 1,
          'desiree': 1,
          'travelling': 1,
          'around': 1,
          'country': 1,
          'escorting': 1,
          'starlets': 1,
          'birds': 1,
          'paradise': 1,
          'sporting': 1,
          'fake': 1,
          'french': 1,
          'accent': 1,
          'nwhen': 1,
          'girls': 1,
          'robbed': 1,
          'determined': 1,
          'helps': 1,
          'find': 1,
          'culprit': 1,
          'na': 1,
          'numbers': 1,
          'great': 1,
          'bluer': 1,
          'poorer': 1,
          'written': 1,
          'talbot': 1,
          'rothwell': 1,
          'music': 1,
          'marked': 1,
          'improvement': 1,
          'nalthough': 1,
          'nearly': 1,
          'regulars': 1,
          'appear': 1,
          'seem': 1,
          'going': 1,
          'motions': 1,
          'nnone': 1,
          'high': 1,
          'spirits': 1,
          'films': 1,
          'apparent': 1,
          'njust': 1,
          'selection': 1,
          'crude': 1,
          'repititive': 1,
          'doubleentendres': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'films': 4,
          'much': 4,
          'nthe': 4,
          'one': 3,
          'first': 3,
          'mtv': 3,
          'role': 3,
          'der': 3,
          'beek': 3,
          'town': 3,
          'smart': 3,
          'kilmer': 3,
          'feature': 2,
          'james': 2,
          'van': 2,
          'star': 2,
          'dawsons': 2,
          'creek': 2,
          'man': 2,
          '1998': 2,
          'varsity': 2,
          'blues': 2,
          'texas': 2,
          'small': 2,
          'high': 2,
          'football': 2,
          'quarterback': 2,
          'mox': 2,
          'lance': 2,
          'walker': 2,
          'nalso': 2,
          'team': 2,
          'guy': 2,
          'gets': 2,
          'chance': 2,
          'would': 2,
          'ntheres': 2,
          'still': 2,
          'interesting': 2,
          'including': 2,
          'bit': 2,
          '1999': 1,
          'pictures': 1,
          'release': 1,
          'marks': 1,
          'leading': 1,
          'wbs': 1,
          'runaway': 1,
          'hit': 1,
          'nfollowing': 1,
          'foot': 1,
          'steps': 1,
          'mtvs': 1,
          'two': 1,
          'live': 1,
          'action': 1,
          'joes': 1,
          'apartment': 1,
          '1996': 1,
          'dead': 1,
          'campus': 1,
          'bad': 1,
          'unlikely': 1,
          'cause': 1,
          'sensation': 1,
          'marketplace': 1,
          'nset': 1,
          'west': 1,
          'cannan': 1,
          'examines': 1,
          'obsession': 1,
          'school': 1,
          'eyes': 1,
          'second': 1,
          'string': 1,
          'john': 1,
          'moxon': 1,
          'nwe': 1,
          'know': 1,
          'hes': 1,
          'reads': 1,
          'kurt': 1,
          'vonnegut': 1,
          'instead': 1,
          'playbook': 1,
          'ncoach': 1,
          'bud': 1,
          'jon': 1,
          'voight': 1,
          'around': 1,
          'long': 1,
          'actually': 1,
          'bronze': 1,
          'statue': 1,
          'commemorating': 1,
          'harbor': 1,
          'paul': 1,
          'handsome': 1,
          'blonde': 1,
          'hero': 1,
          'billboard': 1,
          'front': 1,
          'yard': 1,
          'dates': 1,
          'sexy': 1,
          'head': 1,
          'cheerleader': 1,
          'darcy': 1,
          'ali': 1,
          'larter': 1,
          'enormous': 1,
          'ron': 1,
          'lester': 1,
          'health': 1,
          'problems': 1,
          'token': 1,
          'africanamerican': 1,
          'member': 1,
          'eliel': 1,
          'swinton': 1,
          'whose': 1,
          'real': 1,
          'dialogue': 1,
          'scene': 1,
          'deals': 1,
          'directly': 1,
          'color': 1,
          'skin': 1,
          'nwhen': 1,
          'seriously': 1,
          'injured': 1,
          'shine': 1,
          'runs': 1,
          'undermining': 1,
          'unusual': 1,
          'playing': 1,
          'strategies': 1,
          'nhis': 1,
          'relationship': 1,
          'dutiful': 1,
          'girlfriend': 1,
          'jules': 1,
          'amy': 1,
          'threatened': 1,
          'theres': 1,
          'big': 1,
          'game': 1,
          'end': 1,
          'nguess': 1,
          'wins': 1,
          'nnothing': 1,
          'inspired': 1,
          'whole': 1,
          'simply': 1,
          'moves': 1,
          'sort': 1,
          'conventional': 1,
          'motions': 1,
          'coach': 1,
          'love': 1,
          'satire': 1,
          'obsessions': 1,
          'humor': 1,
          'decidedly': 1,
          'lowbrow': 1,
          'nvan': 1,
          'decent': 1,
          'job': 1,
          'carrying': 1,
          'although': 1,
          'silly': 1,
          'accent': 1,
          'trips': 1,
          'sometimes': 1,
          'isnt': 1,
          'stretch': 1,
          'dawson': 1,
          'leary': 1,
          'character': 1,
          'nhes': 1,
          'pseudointellectual': 1,
          'whiny': 1,
          'nice': 1,
          'except': 1,
          'also': 1,
          'happens': 1,
          'jock': 1,
          'nvoight': 1,
          'terror': 1,
          'chews': 1,
          'every': 1,
          'single': 1,
          'piece': 1,
          'scenery': 1,
          'spits': 1,
          'adults': 1,
          'notably': 1,
          'awful': 1,
          'younger': 1,
          'performers': 1,
          'dont': 1,
          'fare': 1,
          'better': 1,
          'non': 1,
          'positive': 1,
          'side': 1,
          'charismatic': 1,
          'actor': 1,
          'due': 1,
          'breakout': 1,
          'following': 1,
          'supporting': 1,
          'turn': 1,
          'pleasantville': 1,
          'nscott': 1,
          'son': 1,
          'caan': 1,
          'lively': 1,
          'moments': 1,
          'tweeder': 1,
          'teams': 1,
          'wild': 1,
          'nlarter': 1,
          'gorgeous': 1,
          'seductress': 1,
          'looking': 1,
          'way': 1,
          'ticket': 1,
          'show': 1,
          'costumes': 1,
          'eyeopening': 1,
          'whipped': 1,
          'cream': 1,
          'bikini': 1,
          'nits': 1,
          'note': 1,
          'definitely': 1,
          'earns': 1,
          'rrating': 1,
          'lot': 1,
          'harsh': 1,
          'language': 1,
          'alcohol': 1,
          'abuse': 1,
          'unusually': 1,
          'amount': 1,
          'nudity': 1,
          'gratuitous': 1,
          'trip': 1,
          'strip': 1,
          'bar': 1,
          'reveals': 1,
          'surprising': 1,
          'surprise': 1,
          'nall': 1,
          'likely': 1,
          'come': 1,
          'shock': 1,
          'young': 1,
          'female': 1,
          'fan': 1,
          'base': 1,
          'presumably': 1,
          'target': 1,
          'audience': 1,
          'picture': 1,
          'ndirector': 1,
          'brian': 1,
          'robbins': 1,
          'previously': 1,
          'helmed': 1,
          'kids': 1,
          'good': 1,
          'burger': 1,
          'nickelodeon': 1,
          'sister': 1,
          'company': 1,
          'changes': 1,
          'directions': 1,
          'fails': 1,
          'make': 1,
          'impression': 1,
          'look': 1,
          'movie': 1,
          'bland': 1,
          'characters': 1,
          'populate': 1,
          'scenes': 1,
          'generally': 1,
          'unexciting': 1,
          'entire': 1,
          'looks': 1,
          'washed': 1,
          'ok': 1,
          'soundtrack': 1,
          'featuring': 1,
          'music': 1,
          'collective': 1,
          'soul': 1,
          'foo': 1,
          'fighters': 1,
          'green': 1,
          'day': 1,
          'aaliyah': 1,
          'impressive': 1,
          'expect': 1,
          'nneg': 1}),
 Counter({'crystal': 3,
          'movie': 3,
          'americas': 2,
          'sweethearts': 2,
          'concocted': 2,
          'romantic': 2,
          'exec': 2,
          'roberts': 2,
          'characters': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'columbiasony': 1,
          'nwhat': 1,
          'waste': 1,
          'talented': 1,
          'cast': 1,
          'nbilly': 1,
          'cowriter': 1,
          'peter': 1,
          'tolan': 1,
          'sly': 1,
          'provocative': 1,
          'premise': 1,
          'opening': 1,
          'credits': 1,
          'roll': 1,
          'obvious': 1,
          'theyre': 1,
          'attempting': 1,
          'oldfashioned': 1,
          'comedy': 1,
          'nthe': 1,
          'story': 1,
          'involves': 1,
          'veteran': 1,
          'publicist': 1,
          'billy': 1,
          'summoned': 1,
          'orchestrate': 1,
          'press': 1,
          'junket': 1,
          'las': 1,
          'vegas': 1,
          'arrogant': 1,
          'director': 1,
          'christopher': 1,
          'walken': 1,
          'holds': 1,
          'megabuck': 1,
          'hostage': 1,
          'editing': 1,
          'room': 1,
          'refusing': 1,
          'show': 1,
          'anyone': 1,
          'nhe': 1,
          'figures': 1,
          'giving': 1,
          'journalists': 1,
          'juicy': 1,
          'hints': 1,
          'possible': 1,
          'reconciliation': 1,
          'films': 1,
          'oncemarriedbutnowestranged': 1,
          'stars': 1,
          'gwen': 1,
          'eddie': 1,
          'catherine': 1,
          'zetajones': 1,
          'john': 1,
          'cusack': 1,
          'theyll': 1,
          'distracted': 1,
          'wont': 1,
          'remember': 1,
          'didnt': 1,
          'see': 1,
          'wasnt': 1,
          'expected': 1,
          'n': 1,
          'thought': 1,
          'long': 1,
          'sony': 1,
          'phony': 1,
          'criticdavid': 1,
          'manning': 1,
          'quote': 1,
          'scandal': 1,
          'nfor': 1,
          'help': 1,
          'turns': 1,
          'gwens': 1,
          'personal': 1,
          'assistantsister': 1,
          'julia': 1,
          'nbut': 1,
          'laughs': 1,
          'farbetween': 1,
          'ncrystals': 1,
          'glib': 1,
          'cynical': 1,
          'flack': 1,
          'isnt': 1,
          'wickedly': 1,
          'funny': 1,
          'enough': 1,
          'amusing': 1,
          'oneliners': 1,
          'nafter': 1,
          'six': 1,
          'months': 1,
          'care': 1,
          'depak': 1,
          'chopralike': 1,
          'guru': 1,
          'alan': 1,
          'arkin': 1,
          'cusacks': 1,
          'emotionally': 1,
          'fragile': 1,
          'lacking': 1,
          'necessary': 1,
          'charisma': 1,
          'nzetajoness': 1,
          'vain': 1,
          'narcissistic': 1,
          'diva': 1,
          'undeveloped': 1,
          'onedimensional': 1,
          'nonly': 1,
          'hank': 1,
          'azaria': 1,
          'zetajoness': 1,
          'muchmacho': 1,
          'spanish': 1,
          'lover': 1,
          'stanley': 1,
          'tucci': 1,
          'studio': 1,
          'manage': 1,
          'whip': 1,
          'farcical': 1,
          'froth': 1,
          'nbasically': 1,
          'dont': 1,
          'like': 1,
          'egodriven': 1,
          'stereotypical': 1,
          'let': 1,
          'alone': 1,
          'root': 1,
          'unwind': 1,
          'entanglements': 1,
          'joe': 1,
          'roths': 1,
          'direction': 1,
          'predictable': 1,
          'formulaic': 1,
          'telegraphic': 1,
          'non': 1,
          'granger': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'contrived': 1,
          'shallow': 1,
          '4': 1,
          'screwball': 1,
          'satire': 1,
          'strictly': 1,
          'superficial': 1,
          'nneg': 1}),
 Counter({'jeepers': 3,
          'creepers': 3,
          'film': 3,
          'mgmua': 2,
          'long': 2,
          'bodies': 2,
          'nwhen': 2,
          'n': 2,
          'know': 2,
          'scary': 2,
          'old': 2,
          'boy': 2,
          'nand': 2,
          'story': 2,
          'fact': 2,
          'salva': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'entertainment': 1,
          'nthis': 1,
          'nasty': 1,
          'little': 1,
          'horror': 1,
          'begins': 1,
          'bickering': 1,
          'brother': 1,
          'justin': 1,
          'sister': 1,
          'gina': 1,
          'philips': 1,
          'driving': 1,
          'desolate': 1,
          'countryside': 1,
          'way': 1,
          'home': 1,
          'college': 1,
          'spy': 1,
          'man': 1,
          'dropping': 1,
          'wrappedup': 1,
          'drainage': 1,
          'pipe': 1,
          'decides': 1,
          'investigate': 1,
          'theres': 1,
          'nothing': 1,
          'trouble': 1,
          'part': 1,
          'movies': 1,
          'somebody': 1,
          'something': 1,
          'really': 1,
          'stupid': 1,
          'everybody': 1,
          'hates': 1,
          'well': 1,
          'nphilips': 1,
          'warns': 1,
          'nwhat': 1,
          'finds': 1,
          'basement': 1,
          'abandoned': 1,
          'church': 1,
          'dying': 1,
          'horrifying': 1,
          'jaggedstitched': 1,
          'incision': 1,
          'neck': 1,
          'navel': 1,
          'plus': 1,
          'hundreds': 1,
          'mutilated': 1,
          'stitched': 1,
          'together': 1,
          'walls': 1,
          'ceiling': 1,
          'like': 1,
          'disgusting': 1,
          'tapestry': 1,
          'nlong': 1,
          'flees': 1,
          'monstrous': 1,
          'winged': 1,
          'creeper': 1,
          'jonathan': 1,
          'breck': 1,
          'neileen': 1,
          'brennan': 1,
          'appears': 1,
          'briefly': 1,
          'cat': 1,
          'lady': 1,
          'patricia': 1,
          'belcher': 1,
          'jezelle': 1,
          'psychic': 1,
          'explains': 1,
          'evil': 1,
          'creatures': 1,
          'bizarre': 1,
          'feeding': 1,
          'habits': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'fiendishly': 1,
          'visceral': 1,
          '2': 1,
          'extraordinarily': 1,
          'gruesome': 1,
          'conclusion': 1,
          'giving': 1,
          'new': 1,
          'meaning': 1,
          'song': 1,
          'paul': 1,
          'harvey': 1,
          'would': 1,
          'say': 1,
          'rest': 1,
          'nwhats': 1,
          'cruelty': 1,
          'satanic': 1,
          'writerdirector': 1,
          'victor': 1,
          'convicted': 1,
          'child': 1,
          'molester': 1,
          'videotaped': 1,
          'oral': 1,
          'sex': 1,
          '12': 1,
          'yearold': 1,
          'actor': 1,
          'california': 1,
          'nsentenced': 1,
          'three': 1,
          'years': 1,
          'prison': 1,
          'served': 1,
          '15': 1,
          'months': 1,
          'completed': 1,
          'parole': 1,
          '1992': 1,
          'made': 1,
          'powder': 1,
          '1995': 1,
          'albino': 1,
          'supernatural': 1,
          'abilities': 1,
          'disney': 1,
          'studio': 1,
          'executives': 1,
          'claimed': 1,
          'prior': 1,
          'conviction': 1,
          'pedophile': 1,
          'conspicuously': 1,
          'absent': 1,
          'press': 1,
          'kit': 1,
          'bio': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'story': 5,
          'nthe': 5,
          'ray': 5,
          'make': 4,
          'buddies': 3,
          'anything': 3,
          'independent': 2,
          'feel': 2,
          'films': 2,
          'nit': 2,
          'director': 2,
          'growing': 2,
          'new': 2,
          'jersey': 2,
          'could': 2,
          'see': 2,
          'old': 2,
          'get': 2,
          'relationship': 2,
          'enough': 2,
          'star': 2,
          'adrien': 2,
          'brody': 2,
          'nray': 2,
          'son': 2,
          'running': 2,
          'business': 2,
          'nhis': 2,
          'lives': 2,
          'shoe': 2,
          'nothing': 2,
          'loanshark': 2,
          'nthere': 2,
          'mike': 2,
          'artistic': 2,
          'written': 1,
          'directed': 1,
          'eric': 1,
          'bross': 1,
          'look': 1,
          'troubled': 1,
          'bluecollar': 1,
          'youth': 1,
          'inundated': 1,
          'market': 1,
          'recent': 1,
          'times': 1,
          'hard': 1,
          'tell': 1,
          'might': 1,
          'well': 1,
          'made': 1,
          'hollywood': 1,
          'home': 1,
          'videocam': 1,
          'debut': 1,
          'tells': 1,
          'personal': 1,
          'italians': 1,
          'heavy': 1,
          'accents': 1,
          'remaining': 1,
          'tight': 1,
          'grow': 1,
          'young': 1,
          'adults': 1,
          'tale': 1,
          'rewarding': 1,
          '1950s': 1,
          'mindset': 1,
          'characters': 1,
          'depicted': 1,
          'grounded': 1,
          '1990s': 1,
          'different': 1,
          'news': 1,
          'love': 1,
          'simple': 1,
          'girl': 1,
          'waiting': 1,
          'married': 1,
          'luckless': 1,
          'boyfriend': 1,
          'turning': 1,
          'nasty': 1,
          'doesnt': 1,
          'mean': 1,
          'much': 1,
          'since': 1,
          'remained': 1,
          'undeveloped': 1,
          'introduction': 1,
          'wiseguy': 1,
          'angle': 1,
          'loyality': 1,
          'among': 1,
          'bit': 1,
          'moving': 1,
          'emotional': 1,
          'experiences': 1,
          'intelligent': 1,
          'dramatics': 1,
          'elevate': 1,
          'limited': 1,
          'line': 1,
          'despite': 1,
          'tourdeforce': 1,
          'performance': 1,
          'lowlevel': 1,
          'mobster': 1,
          'arrested': 1,
          'illegal': 1,
          'casino': 1,
          'operation': 1,
          'bloomfield': 1,
          'suburban': 1,
          'basement': 1,
          'sr': 1,
          'vincent': 1,
          'trying': 1,
          'go': 1,
          'small': 1,
          'scale': 1,
          'homerepair': 1,
          'works': 1,
          'unhappily': 1,
          'salesman': 1,
          'dreaming': 1,
          'getting': 1,
          'rich': 1,
          'quickly': 1,
          'open': 1,
          'marry': 1,
          'longtime': 1,
          'waitress': 1,
          'girlfriend': 1,
          'joanne': 1,
          'sybil': 1,
          'title': 1,
          'refers': 1,
          'size': 1,
          'paul': 1,
          'newman10b': 1,
          'really': 1,
          'explaining': 1,
          'nshould': 1,
          'aware': 1,
          'lot': 1,
          'things': 1,
          'dont': 1,
          'sense': 1,
          'constant': 1,
          'brainless': 1,
          'chatter': 1,
          'uneventful': 1,
          'pains': 1,
          'despair': 1,
          'difficult': 1,
          'empathy': 1,
          'ndesperate': 1,
          'dream': 1,
          'come': 1,
          'goes': 1,
          'humorously': 1,
          'menacingly': 1,
          'played': 1,
          'james': 1,
          'e': 1,
          'moriarty': 1,
          'borrows': 1,
          '10': 1,
          'grand': 1,
          'bet': 1,
          'sure': 1,
          'thing': 1,
          'freehold': 1,
          'raceway': 1,
          'horse': 1,
          'loses': 1,
          'big': 1,
          'problems': 1,
          'comes': 1,
          'muscle': 1,
          'dough': 1,
          'seen': 1,
          'far': 1,
          'like': 1,
          'nhe': 1,
          'undependable': 1,
          'meanspirited': 1,
          'stupid': 1,
          'nso': 1,
          'best': 1,
          'friend': 1,
          'gallagher': 1,
          'narrator': 1,
          'gets': 1,
          'chance': 1,
          'sleep': 1,
          'girlfriendwho': 1,
          'cares': 1,
          'must': 1,
          'kidding': 1,
          'thinks': 1,
          'nas': 1,
          'rays': 1,
          'gambling': 1,
          'debt': 1,
          'dilemma': 1,
          'pay': 1,
          'predictable': 1,
          'would': 1,
          'expect': 1,
          'happen': 1,
          'college': 1,
          'student': 1,
          'dependable': 1,
          'butchie': 1,
          'gillan': 1,
          'man': 1,
          'lovehate': 1,
          'rally': 1,
          'aid': 1,
          'nand': 1,
          'ends': 1,
          'obligatory': 1,
          'note': 1,
          'ambiguity': 1,
          'seems': 1,
          'way': 1,
          'wannabe': 1,
          'florida': 1,
          'lonesome': 1,
          'self': 1,
          'try': 1,
          'put': 1,
          'life': 1,
          'together': 1,
          'energy': 1,
          'spark': 1,
          'relevant': 1,
          'superficial': 1,
          'keep': 1,
          'interesting': 1,
          'though': 1,
          'showed': 1,
          'signs': 1,
          'future': 1,
          'nbecause': 1,
          'intensity': 1,
          'looks': 1,
          'reminds': 1,
          'sean': 1,
          'penn': 1,
          'nneg': 1}),
 Counter({'characters': 5,
          'written': 3,
          'dialogue': 3,
          'freeman': 3,
          'girls': 3,
          'one': 3,
          'women': 3,
          'hollywood': 2,
          'us': 2,
          'predictable': 2,
          'nthe': 2,
          'case': 2,
          'victims': 2,
          'twist': 2,
          'successful': 2,
          'nwe': 2,
          'ashly': 2,
          'judd': 2,
          'lambs': 2,
          'film': 2,
          'also': 2,
          'story': 2,
          'smart': 2,
          'movie': 2,
          'comparisons': 2,
          'nand': 2,
          'novel': 2,
          'thats': 2,
          'interesting': 2,
          'script': 2,
          'things': 2,
          'nbut': 2,
          'come': 1,
          'surprise': 1,
          'nstop': 1,
          'giving': 1,
          'poorly': 1,
          'thrillers': 1,
          'banal': 1,
          'sketchy': 1,
          'plots': 1,
          'sunset': 1,
          'always': 1,
          'watchable': 1,
          'morgan': 1,
          'plays': 1,
          'detective': 1,
          'becomes': 1,
          'personally': 1,
          'involved': 1,
          'involving': 1,
          'missing': 1,
          'npersonal': 1,
          'niece': 1,
          'nits': 1,
          'slobbering': 1,
          'psychopath': 1,
          'course': 1,
          'time': 1,
          'theres': 1,
          'nfreeman': 1,
          'notes': 1,
          'young': 1,
          'whove': 1,
          'disappeared': 1,
          'strong': 1,
          'willed': 1,
          'assertive': 1,
          'careers': 1,
          'average': 1,
          'girl': 1,
          'soon': 1,
          'learn': 1,
          'guy': 1,
          'calls': 1,
          'casanova': 1,
          'whose': 1,
          'aim': 1,
          'dominate': 1,
          'modern': 1,
          'gals': 1,
          'imprisoning': 1,
          'dungeon': 1,
          'keeping': 1,
          'personal': 1,
          'harem': 1,
          'nanyway': 1,
          'manages': 1,
          'escape': 1,
          'teams': 1,
          'well': 1,
          'nyou': 1,
          'know': 1,
          'rest': 1,
          'na': 1,
          'brief': 1,
          'glance': 1,
          'plot': 1,
          'silence': 1,
          'constantly': 1,
          'compared': 1,
          'hype': 1,
          'merchants': 1,
          'may': 1,
          'suggest': 1,
          'fairly': 1,
          'nperhaps': 1,
          'superbly': 1,
          'drawn': 1,
          'nso': 1,
          'lets': 1,
          'insult': 1,
          'great': 1,
          'taking': 1,
          'okay': 1,
          'seven': 1,
          'oh': 1,
          'nplease': 1,
          'nkiss': 1,
          'based': 1,
          'james': 1,
          'patterson': 1,
          'screen': 1,
          'david': 1,
          'klass': 1,
          'nmaybe': 1,
          'stinker': 1,
          'start': 1,
          'whatever': 1,
          'writing': 1,
          'clearly': 1,
          'fault': 1,
          'none': 1,
          'little': 1,
          'say': 1,
          'engaging': 1,
          'ntwo': 1,
          'sense': 1,
          'humour': 1,
          'nthree': 1,
          'notion': 1,
          'psychos': 1,
          'execution': 1,
          'isnt': 1,
          'even': 1,
          'half': 1,
          'good': 1,
          'idea': 1,
          'nthus': 1,
          'comes': 1,
          'across': 1,
          'focus': 1,
          'instead': 1,
          'heart': 1,
          'cant': 1,
          'feel': 1,
          'rage': 1,
          'nsome': 1,
          'atrociously': 1,
          'casual': 1,
          'exchanges': 1,
          'several': 1,
          'male': 1,
          'supposed': 1,
          'remind': 1,
          'shes': 1,
          'nobullshit': 1,
          '90s': 1,
          'type': 1,
          'conversations': 1,
          'barely': 1,
          'register': 1,
          'kiss': 1,
          'second': 1,
          'dog': 1,
          'year': 1,
          'first': 1,
          'chain': 1,
          'reaction': 1,
          'nfor': 1,
          'actor': 1,
          'calibre': 1,
          'worrying': 1,
          'nyoung': 1,
          'director': 1,
          'gary': 1,
          'fleder': 1,
          'scored': 1,
          'hit': 1,
          'years': 1,
          'back': 1,
          'quirky': 1,
          'pulp': 1,
          'fictionesque': 1,
          'denver': 1,
          'dead': 1,
          'material': 1,
          'resolutely': 1,
          'mediocre': 1,
          'nnot': 1,
          'much': 1,
          'hardly': 1,
          'blame': 1,
          'ntheres': 1,
          'wellstaged': 1,
          'chase': 1,
          'scenes': 1,
          'forest': 1,
          'camera': 1,
          'whirls': 1,
          'dives': 1,
          'jumps': 1,
          'effect': 1,
          'startling': 1,
          'beyond': 1,
          'rescue': 1,
          'nwhat': 1,
          'hurts': 1,
          'continues': 1,
          'get': 1,
          'away': 1,
          'serving': 1,
          'tripe': 1,
          'safe': 1,
          'knowledge': 1,
          'jaded': 1,
          'audiences': 1,
          'lap': 1,
          'ncomplacency': 1,
          'rules': 1,
          'long': 1,
          'since': 1,
          'saw': 1,
          'mainstream': 1,
          'american': 1,
          'thriller': 1,
          'delivered': 1,
          'juicy': 1,
          'real': 1,
          'surprises': 1,
          'consistently': 1,
          'sharp': 1,
          'consolation': 1,
          'viewer': 1,
          'ticket': 1,
          'freebie': 1,
          'positive': 1,
          'proof': 1,
          'best': 1,
          'life': 1,
          'arent': 1,
          'free': 1,
          'n': 1,
          'nneg': 1}),
 Counter({'film': 23,
          'apes': 19,
          'planet': 11,
          'nthe': 9,
          '1968': 8,
          'language': 7,
          'nin': 7,
          'much': 6,
          'little': 6,
          'like': 6,
          'ape': 6,
          'makeup': 6,
          'version': 5,
          '4': 5,
          'nit': 5,
          'book': 5,
          'humans': 5,
          'human': 5,
          'best': 5,
          'novel': 4,
          'nthat': 4,
          'makes': 4,
          'serling': 4,
          'never': 4,
          'script': 4,
          'would': 4,
          'english': 4,
          'even': 4,
          'shows': 4,
          'score': 4,
          'one': 4,
          'good': 4,
          'nhe': 4,
          'leo': 4,
          'place': 4,
          '0': 3,
          'roles': 3,
          'make': 3,
          'become': 3,
          'could': 3,
          'series': 3,
          'speak': 3,
          'surprise': 3,
          'well': 3,
          'violence': 3,
          'battle': 3,
          'nas': 3,
          'actor': 3,
          'storm': 3,
          'occur': 3,
          'look': 3,
          'nthis': 3,
          'society': 3,
          'lines': 3,
          'work': 3,
          'boulle': 2,
          'screen': 2,
          'chases': 2,
          'fighting': 2,
          'intelligence': 2,
          'gullivers': 2,
          'travels': 2,
          'n': 2,
          'lot': 2,
          'reversed': 2,
          'seems': 2,
          'also': 2,
          'looking': 2,
          'nwhen': 2,
          'added': 2,
          'ending': 2,
          'final': 2,
          'original': 2,
          'history': 2,
          'ni': 2,
          'serious': 2,
          'question': 2,
          'done': 2,
          'required': 2,
          'may': 2,
          'nbut': 2,
          'intelligent': 2,
          'ever': 2,
          'least': 2,
          'jerry': 2,
          'goldsmiths': 2,
          'films': 2,
          'called': 2,
          'filmmakers': 2,
          'political': 2,
          'first': 2,
          'point': 2,
          'tim': 2,
          'burton': 2,
          'faithful': 2,
          'less': 2,
          'really': 2,
          'works': 2,
          'talk': 2,
          'didnt': 2,
          'either': 2,
          'real': 2,
          'case': 2,
          'relationships': 2,
          'played': 2,
          'carter': 2,
          'attractive': 2,
          'close': 2,
          'nshe': 2,
          'nwe': 2,
          'see': 2,
          'ones': 2,
          'almost': 2,
          'nthey': 2,
          'visuals': 2,
          'visual': 2,
          'nicely': 2,
          'baker': 2,
          'chambers': 2,
          'enough': 2,
          'leaps': 2,
          'scenes': 2,
          'stardom': 2,
          'thing': 2,
          'scale': 2,
          'capsule': 1,
          'anticipated': 1,
          'readaptation': 1,
          'pierre': 1,
          'comes': 1,
          'dark': 1,
          'dreary': 1,
          'lots': 1,
          'nvisually': 1,
          'approach': 1,
          'take': 1,
          'adventure': 1,
          'style': 1,
          'treat': 1,
          'action': 1,
          'without': 1,
          'center': 1,
          'npierre': 1,
          'author': 1,
          'bridge': 1,
          'river': 1,
          'kwai': 1,
          'wrote': 1,
          'k': 1,
          'monkey': 1,
          'social': 1,
          'satire': 1,
          'reads': 1,
          'fifth': 1,
          'nhumans': 1,
          'discover': 1,
          'unlike': 1,
          'horses': 1,
          'jonathan': 1,
          'swifts': 1,
          'island': 1,
          'houyhnhnms': 1,
          'moves': 1,
          'somewhat': 1,
          'slowly': 1,
          'create': 1,
          'suspense': 1,
          'revealing': 1,
          'things': 1,
          'fans': 1,
          'know': 1,
          'true': 1,
          'nature': 1,
          'statement': 1,
          'cruelty': 1,
          'animals': 1,
          'perhaps': 1,
          'rod': 1,
          'adapted': 1,
          'released': 1,
          'number': 1,
          'touches': 1,
          'familiar': 1,
          'episodes': 1,
          'twilight': 1,
          'zone': 1,
          'changed': 1,
          'serlingish': 1,
          'irony': 1,
          'nwithout': 1,
          'surmise': 1,
          'ran': 1,
          'problems': 1,
          'handle': 1,
          'tricky': 1,
          'eventually': 1,
          'learned': 1,
          'entire': 1,
          'subtitled': 1,
          'nonapespeaking': 1,
          'nserling': 1,
          'avoided': 1,
          'course': 1,
          'justification': 1,
          'end': 1,
          'njustifying': 1,
          'spoke': 1,
          'inspiration': 1,
          'tackles': 1,
          'allimportant': 1,
          'supposedly': 1,
          'curiosity': 1,
          'opportunity': 1,
          'hear': 1,
          'nfew': 1,
          'viewers': 1,
          'questioned': 1,
          'plot': 1,
          'hole': 1,
          'however': 1,
          'respected': 1,
          'cinema': 1,
          'npartial': 1,
          'credit': 1,
          'go': 1,
          'goldsmith': 1,
          'whose': 1,
          'extremely': 1,
          'inventive': 1,
          'success': 1,
          'sequels': 1,
          'turned': 1,
          'wellintentioned': 1,
          'though': 1,
          'subtle': 1,
          'messages': 1,
          'happening': 1,
          'united': 1,
          'states': 1,
          '1960s': 1,
          '1970s': 1,
          'nwhile': 1,
          'shooting': 1,
          'guns': 1,
          'seemed': 1,
          'half': 1,
          'hearted': 1,
          'second': 1,
          'beneath': 1,
          'deal': 1,
          'concluded': 1,
          '1973': 1,
          'nnow': 1,
          'director': 1,
          'tries': 1,
          'hand': 1,
          'adapting': 1,
          'nfor': 1,
          'thought': 1,
          'burtons': 1,
          'new': 1,
          'nfirst': 1,
          'reverse': 1,
          'articulate': 1,
          'races': 1,
          'battling': 1,
          'dominance': 1,
          'currently': 1,
          'hands': 1,
          'uh': 1,
          'paws': 1,
          'story': 1,
          'mission': 1,
          'impossible': 1,
          'many': 1,
          'cinematic': 1,
          'homages': 1,
          'third': 1,
          'quarter': 1,
          'last': 1,
          'century': 1,
          'title': 1,
          'promises': 1,
          'intention': 1,
          'honoring': 1,
          '2029': 1,
          'davidson': 1,
          'mark': 1,
          'wahlberg': 1,
          'worlds': 1,
          'expressive': 1,
          'space': 1,
          'station': 1,
          'increasing': 1,
          'usefulness': 1,
          'nthen': 1,
          'convenient': 1,
          'time': 1,
          'sweeps': 1,
          'wizardofozfashion': 1,
          'drops': 1,
          'alien': 1,
          'yes': 1,
          'survives': 1,
          'perfect': 1,
          'quickly': 1,
          'finds': 1,
          'greatly': 1,
          'rule': 1,
          'drool': 1,
          'everybody': 1,
          'talks': 1,
          'nand': 1,
          'earth': 1,
          'napparently': 1,
          'mystery': 1,
          'needs': 1,
          'explained': 1,
          'fact': 1,
          'apparently': 1,
          'heart': 1,
          'horror': 1,
          'nboth': 1,
          'assumed': 1,
          'going': 1,
          'talking': 1,
          'race': 1,
          'dominating': 1,
          'another': 1,
          'humananimal': 1,
          'masterslave': 1,
          'noutside': 1,
          'sudan': 1,
          'countries': 1,
          'relevant': 1,
          'topic': 1,
          'nleo': 1,
          'captured': 1,
          'used': 1,
          'slave': 1,
          'discovered': 1,
          'ari': 1,
          'helena': 1,
          'bonham': 1,
          'nari': 1,
          'ties': 1,
          'high': 1,
          'power': 1,
          'bent': 1,
          'making': 1,
          'world': 1,
          'better': 1,
          'nperhaps': 1,
          'previous': 1,
          'draft': 1,
          'hilari': 1,
          'stifles': 1,
          'usual': 1,
          'pout': 1,
          'want': 1,
          'consider': 1,
          'standard': 1,
          'forward': 1,
          'long': 1,
          'escapes': 1,
          'couple': 1,
          'sympathetic': 1,
          'abandonment': 1,
          'source': 1,
          'material': 1,
          'chase': 1,
          'severely': 1,
          'limits': 1,
          'interplay': 1,
          'examination': 1,
          'eachs': 1,
          'important': 1,
          'screentime': 1,
          'broken': 1,
          'separated': 1,
          'nburton': 1,
          'chooses': 1,
          'visceral': 1,
          'thrills': 1,
          'cerebral': 1,
          'every': 1,
          'turn': 1,
          'miscalculation': 1,
          'characters': 1,
          'lacking': 1,
          'empathy': 1,
          'value': 1,
          'difficult': 1,
          'emotional': 1,
          'investment': 1,
          'basically': 1,
          'chess': 1,
          'pieces': 1,
          'viewer': 1,
          'reason': 1,
          'root': 1,
          'win': 1,
          'subtlety': 1,
          'met': 1,
          'cared': 1,
          'happened': 1,
          'taylor': 1,
          'main': 1,
          'character': 1,
          'nmost': 1,
          'offer': 1,
          'spotty': 1,
          'generally': 1,
          'except': 1,
          'takes': 1,
          'night': 1,
          'fog': 1,
          'tends': 1,
          'limit': 1,
          'looks': 1,
          'general': 1,
          'improved': 1,
          'team': 1,
          'led': 1,
          'rick': 1,
          'instead': 1,
          'john': 1,
          'jawdropper': 1,
          'realistic': 1,
          'believable': 1,
          'flexible': 1,
          'show': 1,
          'emotion': 1,
          'nchambers': 1,
          'anyone': 1,
          'chance': 1,
          'ntoday': 1,
          'audiences': 1,
          'higher': 1,
          'expectations': 1,
          'bakers': 1,
          'visualization': 1,
          'improvement': 1,
          'nthese': 1,
          'nwhat': 1,
          'wire': 1,
          'assisted': 1,
          'inspired': 1,
          'physics': 1,
          'defying': 1,
          'crouching': 1,
          'tiger': 1,
          'hidden': 1,
          'dragon': 1,
          'napes': 1,
          'spring': 1,
          'incredible': 1,
          'distances': 1,
          'nsome': 1,
          'running': 1,
          'posture': 1,
          'start': 1,
          'flying': 1,
          'air': 1,
          'effect': 1,
          'lost': 1,
          'none': 1,
          'problem': 1,
          'frequently': 1,
          'budget': 1,
          'spectacular': 1,
          'camera': 1,
          'us': 1,
          'small': 1,
          'group': 1,
          'people': 1,
          'closeup': 1,
          'nsince': 1,
          'days': 1,
          'lon': 1,
          'chaney': 1,
          'boris': 1,
          'karloff': 1,
          'actors': 1,
          'crossed': 1,
          'role': 1,
          'heavy': 1,
          'shot': 1,
          'paul': 1,
          'giamatti': 1,
          'silly': 1,
          'jokes': 1,
          'delivers': 1,
          'always': 1,
          'watchable': 1,
          'yet': 1,
          'made': 1,
          'apetrader': 1,
          'limbo': 1,
          'overemotes': 1,
          'overcome': 1,
          'interesting': 1,
          'probably': 1,
          'conjures': 1,
          'memories': 1,
          'peter': 1,
          'ustinovs': 1,
          'performance': 1,
          'spartacus': 1,
          'injoke': 1,
          'several': 1,
          'borrowed': 1,
          'old': 1,
          'charleton': 1,
          'heston': 1,
          'becomes': 1,
          'allusion': 1,
          'ndanny': 1,
          'elfmans': 1,
          'nice': 1,
          'primitive': 1,
          'feel': 1,
          'tour': 1,
          'de': 1,
          'force': 1,
          'classic': 1,
          'whole': 1,
          'remembered': 1,
          '2001': 1,
          'forgotten': 1,
          'rate': 1,
          'remake': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'part': 4,
          'day': 4,
          '3': 3,
          '2': 3,
          'music': 2,
          'opening': 2,
          'citizens': 2,
          'patrol': 2,
          'time': 2,
          'teens': 2,
          'crystal': 2,
          'lake': 2,
          'later': 2,
          'wish': 1,
          'could': 1,
          'accurately': 1,
          'describe': 1,
          'theme': 1,
          'nthe': 1,
          'best': 1,
          'way': 1,
          'put': 1,
          'funky': 1,
          'ni': 1,
          'know': 1,
          'odd': 1,
          'question': 1,
          'remember': 1,
          'police': 1,
          'academy': 1,
          '4': 1,
          'steve': 1,
          'guttenberg': 1,
          'michael': 1,
          'winslow': 1,
          'perform': 1,
          'title': 1,
          'song': 1,
          'credits': 1,
          'nits': 1,
          'like': 1,
          'nanyway': 1,
          'takes': 1,
          'place': 1,
          'events': 1,
          'technically': 1,
          'still': 1,
          '1985': 1,
          'nthis': 1,
          'group': 1,
          'horny': 1,
          'also': 1,
          'bring': 1,
          'along': 1,
          'two': 1,
          'aging': 1,
          'hippie': 1,
          'potheads': 1,
          'reason': 1,
          'head': 1,
          'cabin': 1,
          'weekend': 1,
          'sex': 1,
          'weed': 1,
          'nit': 1,
          'turns': 1,
          'attacked': 1,
          'jason': 1,
          'earlier': 1,
          'life': 1,
          'must': 1,
          'parts': 1,
          '1': 1,
          'returned': 1,
          'new': 1,
          'batch': 1,
          'murders': 1,
          'beyond': 1,
          'nshes': 1,
          'lone': 1,
          'survivor': 1,
          'npart': 1,
          'originally': 1,
          'shown': 1,
          'theaters': 1,
          '3d': 1,
          'tell': 1,
          'video': 1,
          'looks': 1,
          'though': 1,
          'may': 1,
          'fairly': 1,
          'decent': 1,
          'effects': 1,
          'njason': 1,
          'long': 1,
          'wild': 1,
          'hair': 1,
          'unmasked': 1,
          'hes': 1,
          'completely': 1,
          'bald': 1,
          'nalso': 1,
          'cant': 1,
          'friday': 1,
          '13th': 1,
          'noh': 1,
          'well': 1,
          'nsteve': 1,
          'miner': 1,
          'director': 1,
          'helmed': 1,
          'film': 1,
          'series': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'helen': 5,
          'like': 5,
          'bad': 4,
          'lange': 3,
          'one': 3,
          'hand': 3,
          'watch': 3,
          'film': 3,
          'picture': 3,
          'nthe': 3,
          'thrillers': 3,
          'couple': 3,
          'martha': 3,
          'incredibly': 3,
          'good': 3,
          'movie': 3,
          'non': 2,
          'much': 2,
          'probably': 2,
          'every': 2,
          'work': 2,
          'nhush': 2,
          'example': 2,
          'psychological': 2,
          'jackson': 2,
          'schaech': 2,
          'gwyneth': 2,
          'paltrow': 2,
          'first': 2,
          'started': 2,
          'way': 2,
          'get': 2,
          'nas': 2,
          'predictable': 2,
          'ending': 2,
          'nice': 2,
          'lines': 2,
          'course': 2,
          'character': 2,
          'someone': 2,
          'evil': 2,
          'shes': 2,
          'nthats': 2,
          'hush': 2,
          'plot': 2,
          'twists': 2,
          'anyone': 2,
          'matter': 2,
          'really': 2,
          'jessica': 1,
          'inconsistent': 1,
          'actresses': 1,
          'working': 1,
          'today': 1,
          'nfrom': 1,
          'timetotime': 1,
          'blows': 1,
          'away': 1,
          'audiences': 1,
          'powerful': 1,
          'intense': 1,
          'performances': 1,
          'woman': 1,
          'made': 1,
          'jawdroppingly': 1,
          'awful': 1,
          'feature': 1,
          'debut': 1,
          'dino': 1,
          'delaurentiis': 1,
          'king': 1,
          'kong': 1,
          'nand': 1,
          'would': 1,
          'prefer': 1,
          'moviegoers': 1,
          'develop': 1,
          'amnesia': 1,
          'regarding': 1,
          'particular': 1,
          'entry': 1,
          'resume': 1,
          'reminiscent': 1,
          'quality': 1,
          'nlange': 1,
          'might': 1,
          'fun': 1,
          'rest': 1,
          'wasnt': 1,
          'prime': 1,
          'motion': 1,
          'tedium': 1,
          'opens': 1,
          'many': 1,
          'socalled': 1,
          'posing': 1,
          'light': 1,
          'drama': 1,
          'nwe': 1,
          'introduced': 1,
          'johnathon': 1,
          'last': 1,
          'encounter': 1,
          'tom': 1,
          'hanks': 1,
          'thing': 1,
          'perfect': 1,
          'young': 1,
          'love': 1,
          'njackson': 1,
          'taking': 1,
          'home': 1,
          'holidays': 1,
          'meet': 1,
          'mother': 1,
          'moment': 1,
          'saw': 1,
          'looking': 1,
          'fangs': 1,
          'nsoon': 1,
          'wicked': 1,
          'witch': 1,
          'east': 1,
          'plotting': 1,
          'son': 1,
          'pregnant': 1,
          'involves': 1,
          'poking': 1,
          'hole': 1,
          'diaphragm': 1,
          'nonce': 1,
          'goal': 1,
          'accomplished': 1,
          'manipulates': 1,
          'events': 1,
          'expecting': 1,
          'moves': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'horse': 1,
          'farm': 1,
          'lives': 1,
          'long': 1,
          'gets': 1,
          'perfectly': 1,
          'amicable': 1,
          'person': 1,
          'defies': 1,
          'declaration': 1,
          'war': 1,
          'three': 1,
          'simple': 1,
          'problems': 1,
          'dumb': 1,
          'boring': 1,
          'least': 1,
          'stupefying': 1,
          'nthis': 1,
          'absolutely': 1,
          'nothing': 1,
          'recommend': 1,
          'exception': 1,
          'shots': 1,
          'snowcovered': 1,
          'fields': 1,
          'quick': 1,
          'glimpse': 1,
          'paltrows': 1,
          'bare': 1,
          'buttocks': 1,
          'nfrankly': 1,
          'embarrassing': 1,
          'respected': 1,
          'actress': 1,
          'langes': 1,
          'stature': 1,
          'give': 1,
          'performance': 1,
          'blanche': 1,
          'dubois': 1,
          'role': 1,
          'played': 1,
          '1995': 1,
          'tv': 1,
          'version': 1,
          'streetcar': 1,
          'named': 1,
          'desire': 1,
          'nmeanwhile': 1,
          'best': 1,
          'dialogue': 1,
          'without': 1,
          'gaping': 1,
          'stupidity': 1,
          'attempts': 1,
          'passable': 1,
          'imitation': 1,
          'inanimate': 1,
          'object': 1,
          'battle': 1,
          'clearly': 1,
          'drawn': 1,
          'nhere': 1,
          'mom': 1,
          'wife': 1,
          'caught': 1,
          'middle': 1,
          'nof': 1,
          'since': 1,
          'schaechs': 1,
          'poorlydeveloped': 1,
          'badly': 1,
          'acted': 1,
          'impossible': 1,
          'say': 1,
          'feels': 1,
          'situation': 1,
          'nmaybe': 1,
          'ask': 1,
          'hes': 1,
          'familiar': 1,
          'oedipus': 1,
          'nmartha': 1,
          'nhow': 1,
          'know': 1,
          'nshe': 1,
          'smokes': 1,
          'cigarettes': 1,
          'drinks': 1,
          'hard': 1,
          'liquor': 1,
          'two': 1,
          'sure': 1,
          'signs': 1,
          'devil': 1,
          'girl': 1,
          'evidence': 1,
          'old': 1,
          'ladies': 1,
          'treasures': 1,
          'locket': 1,
          'dead': 1,
          'parents': 1,
          'development': 1,
          'nbeyond': 1,
          'point': 1,
          'series': 1,
          'increasingly': 1,
          'hardtoswallow': 1,
          'coincidences': 1,
          'contrivances': 1,
          'moronic': 1,
          'nhowever': 1,
          '85': 1,
          'minutes': 1,
          'warmup': 1,
          'anticlimactic': 1,
          'profoundly': 1,
          'dissatisfying': 1,
          'ni': 1,
          'cant': 1,
          'imagine': 1,
          'thought': 1,
          'whole': 1,
          'liking': 1,
          'conclusion': 1,
          'neither': 1,
          'serious': 1,
          'lastminute': 1,
          'editing': 1,
          'left': 1,
          'pages': 1,
          'script': 1,
          'nbefore': 1,
          'climax': 1,
          'disliked': 1,
          'time': 1,
          'end': 1,
          'credits': 1,
          'hated': 1,
          'nviewers': 1,
          'invest': 1,
          'something': 1,
          'ncheating': 1,
          'offensive': 1,
          'unpardonable': 1,
          'nmost': 1,
          'entries': 1,
          'wornout': 1,
          'wormeaten': 1,
          'genre': 1,
          'arent': 1,
          'especially': 1,
          'nfilms': 1,
          'consenting': 1,
          'adults': 1,
          'rocks': 1,
          'cradle': 1,
          'single': 1,
          'white': 1,
          'female': 1,
          'rely': 1,
          'stock': 1,
          'plots': 1,
          'propel': 1,
          'narrative': 1,
          'along': 1,
          'nin': 1,
          'general': 1,
          'however': 1,
          'theyre': 1,
          'directed': 1,
          'degree': 1,
          'competence': 1,
          'assures': 1,
          'level': 1,
          'sustained': 1,
          'tension': 1,
          'case': 1,
          'fail': 1,
          'generate': 1,
          'even': 1,
          'momentary': 1,
          'heart': 1,
          'palpitation': 1,
          'characters': 1,
          'bland': 1,
          'uninvolving': 1,
          'audience': 1,
          'care': 1,
          'nindeed': 1,
          'title': 1,
          'refers': 1,
          'producers': 1,
          'hope': 1,
          'viewers': 1,
          'lieu': 1,
          'telling': 1,
          'friends': 1,
          'think': 1,
          'sorry': 1,
          'piece': 1,
          'celluloid': 1,
          'nneg': 1}),
 Counter({'julian': 5,
          'sonny': 3,
          'year': 3,
          'get': 3,
          'adam': 2,
          'sandler': 2,
          'vanessa': 2,
          'kevin': 2,
          'boy': 2,
          'named': 2,
          'sonnys': 2,
          'supervision': 2,
          'kid': 2,
          'movie': 2,
          'little': 2,
          'big': 2,
          'daddy': 2,
          'theres': 2,
          'preteen': 2,
          'raunchy': 2,
          'characters': 2,
          'olds': 2,
          'market': 2,
          'american': 2,
          'synopsis': 1,
          'koufax': 1,
          'rich': 1,
          'childish': 1,
          'angry': 1,
          'man': 1,
          'dumped': 1,
          'girlfriend': 1,
          'kristy': 1,
          'swanson': 1,
          'nin': 1,
          'bid': 1,
          'impress': 1,
          'impersonates': 1,
          'friend': 1,
          'jon': 1,
          'stewart': 1,
          'adopts': 1,
          '5': 1,
          'old': 1,
          'cole': 1,
          'dylan': 1,
          'sprouse': 1,
          'overseas': 1,
          'trip': 1,
          'nunder': 1,
          'soon': 1,
          'learns': 1,
          'lie': 1,
          'women': 1,
          'tell': 1,
          'people': 1,
          'wipes': 1,
          'ass': 1,
          'throw': 1,
          'tantrums': 1,
          'scream': 1,
          'god': 1,
          'damned': 1,
          'treats': 1,
          'nself': 1,
          'centered': 1,
          'breaks': 1,
          'school': 1,
          'classmates': 1,
          'arm': 1,
          'without': 1,
          'apologizing': 1,
          'even': 1,
          'realizing': 1,
          'done': 1,
          'anything': 1,
          'wrong': 1,
          'nmeanwhile': 1,
          'bribes': 1,
          'sugary': 1,
          'talk': 1,
          'food': 1,
          'toys': 1,
          'flashy': 1,
          'promises': 1,
          'order': 1,
          'perform': 1,
          'nnot': 1,
          'surprisingly': 1,
          'government': 1,
          'takes': 1,
          'away': 1,
          'incompetent': 1,
          'leads': 1,
          'custody': 1,
          'battle': 1,
          'nopinion': 1,
          'embittered': 1,
          'creep': 1,
          'teaching': 1,
          'jerk': 1,
          'cheap': 1,
          'laughs': 1,
          '90': 1,
          'minutes': 1,
          'innocent': 1,
          'kindergartner': 1,
          'never': 1,
          'finds': 1,
          'means': 1,
          'mimics': 1,
          'bad': 1,
          'behavior': 1,
          'nthats': 1,
          'essence': 1,
          'nbut': 1,
          'bigger': 1,
          'issue': 1,
          'involved': 1,
          'marketing': 1,
          'nmovies': 1,
          'rated': 1,
          'pg': 1,
          'pg13': 1,
          'heavily': 1,
          'marketed': 1,
          'towards': 1,
          'children': 1,
          'age': 1,
          'non': 1,
          'tv': 1,
          'film': 1,
          'clips': 1,
          'advertise': 1,
          'movies': 1,
          'familyfriendly': 1,
          'hit': 1,
          'comedies': 1,
          'nthen': 1,
          'go': 1,
          'see': 1,
          'turn': 1,
          'either': 1,
          'sex': 1,
          'acts': 1,
          'like': 1,
          'austin': 1,
          'powers': 1,
          'fat': 1,
          'bastard': 1,
          'adult': 1,
          'jollies': 1,
          'buddying': 1,
          'naive': 1,
          'five': 1,
          'encouraging': 1,
          'experiment': 1,
          'drugs': 1,
          'mistreatment': 1,
          'nfolks': 1,
          'hollywood': 1,
          'trying': 1,
          'develop': 1,
          'stuff': 1,
          'think': 1,
          'parents': 1,
          'would': 1,
          'agree': 1,
          'early': 1,
          'childhood': 1,
          'time': 1,
          'mental': 1,
          'innocence': 1,
          'protected': 1,
          'uncaring': 1,
          'media': 1,
          'exploitation': 1,
          'nto': 1,
          'many': 1,
          'mothers': 1,
          'probably': 1,
          'nothing': 1,
          'pathetic': 1,
          'unsettling': 1,
          'sight': 1,
          'theater': 1,
          'full': 1,
          'unsupervised': 1,
          'eight': 1,
          'laughing': 1,
          'raucously': 1,
          'character': 1,
          'father': 1,
          'jokes': 1,
          'womans': 1,
          'ice': 1,
          'cold': 1,
          'tits': 1,
          'nneg': 1}),
 Counter({'n': 17,
          'glen': 6,
          'glenda': 6,
          'movie': 5,
          'seems': 4,
          'wood': 4,
          'much': 4,
          'pretty': 3,
          'ni': 3,
          'nthe': 3,
          'like': 3,
          'documentary': 3,
          'half': 3,
          'lugosi': 3,
          'film': 3,
          'point': 3,
          'would': 2,
          'woods': 2,
          'transvestitism': 2,
          'didnt': 2,
          'actually': 2,
          'two': 2,
          'quite': 2,
          'mostly': 2,
          'transvestites': 2,
          'glenglenda': 2,
          'us': 2,
          'probably': 2,
          'man': 2,
          'woman': 2,
          'time': 2,
          'camera': 2,
          'say': 2,
          'door': 2,
          'characters': 2,
          'also': 2,
          'stock': 2,
          'footage': 2,
          'place': 2,
          'people': 2,
          'occasional': 2,
          'lightning': 2,
          'nhad': 2,
          'wanders': 2,
          'far': 2,
          'string': 2,
          'appears': 2,
          'big': 2,
          'green': 2,
          'dragon': 2,
          'nand': 2,
          'scene': 2,
          'soon': 2,
          'certainly': 1,
          'one': 1,
          'rent': 1,
          'ed': 1,
          'nexpecting': 1,
          'see': 1,
          'good': 1,
          'screwy': 1,
          'discourse': 1,
          'betrays': 1,
          'level': 1,
          'incompetence': 1,
          'know': 1,
          'possible': 1,
          'nin': 1,
          'fact': 1,
          'infamous': 1,
          'plan': 1,
          '9': 1,
          'outer': 1,
          'space': 1,
          'tame': 1,
          'comparison': 1,
          'nwatching': 1,
          'found': 1,
          'occasionally': 1,
          'wondering': 1,
          'originally': 1,
          'made': 1,
          'three': 1,
          'separate': 1,
          'movies': 1,
          'accidentally': 1,
          'edited': 1,
          'together': 1,
          'result': 1,
          'entertaining': 1,
          'unintentionally': 1,
          'hilarious': 1,
          'starts': 1,
          'bad': 1,
          'endless': 1,
          'repetitive': 1,
          'narration': 1,
          'difficult': 1,
          'transvestite': 1,
          'look': 1,
          'girlfriends': 1,
          'clothes': 1,
          'without': 1,
          'able': 1,
          'wear': 1,
          'necessarily': 1,
          'homosexuals': 1,
          'main': 1,
          'character': 1,
          'reminds': 1,
          'dozen': 1,
          'times': 1,
          'work': 1,
          'terribleoccasionally': 1,
          'lingers': 1,
          'closed': 1,
          'talk': 1,
          'offscreen': 1,
          'inexplicably': 1,
          'zooms': 1,
          'someones': 1,
          'ear': 1,
          'nose': 1,
          'nwood': 1,
          'makes': 1,
          'copious': 1,
          'use': 1,
          'irrelevant': 1,
          'leads': 1,
          'voicedover': 1,
          'nonsequiturs': 1,
          'yes': 1,
          'world': 1,
          'busy': 1,
          'frightening': 1,
          'many': 1,
          'driving': 1,
          'automobiles': 1,
          'nfinally': 1,
          'commentary': 1,
          'bela': 1,
          'sort': 1,
          'omniscient': 1,
          'inhabit': 1,
          'frankensteinstyle': 1,
          'laboratory': 1,
          'delivering': 1,
          'pointless': 1,
          'lines': 1,
          'nall': 1,
          'thoughts': 1,
          'ntheir': 1,
          'ideas': 1,
          'nwhile': 1,
          'crackles': 1,
          'quasiominously': 1,
          'overhead': 1,
          'continued': 1,
          'vein': 1,
          'nprobably': 1,
          'remembered': 1,
          'nothing': 1,
          'poorly': 1,
          'done': 1,
          'inappropriate': 1,
          'horrormovie': 1,
          'touch': 1,
          'nunfortunately': 1,
          'left': 1,
          'field': 1,
          'wonder': 1,
          'eating': 1,
          'funny': 1,
          'mushrooms': 1,
          'wrote': 1,
          'script': 1,
          'pull': 1,
          'npull': 1,
          'nannounces': 1,
          'alarmed': 1,
          'buffalo': 1,
          'nthere': 1,
          'another': 1,
          'crash': 1,
          'returns': 1,
          'warning': 1,
          'beware': 1,
          'nbeware': 1,
          'lurks': 1,
          'outside': 1,
          'nit': 1,
          'eats': 1,
          'little': 1,
          'boys': 1,
          'puppy': 1,
          'dogs': 1,
          'tails': 1,
          'fat': 1,
          'snails': 1,
          'na': 1,
          'bizarre': 1,
          'nightmare': 1,
          'sequence': 1,
          'meant': 1,
          'symbolic': 1,
          'instead': 1,
          'incredibly': 1,
          'stupid': 1,
          'ensues': 1,
          'finds': 1,
          'fiance': 1,
          'trapped': 1,
          'fallen': 1,
          'treein': 1,
          'living': 1,
          'room': 1,
          'nsomeone': 1,
          'apparently': 1,
          'intended': 1,
          'sinister': 1,
          'looks': 1,
          'klingon': 1,
          'original': 1,
          'star': 1,
          'trek': 1,
          'series': 1,
          'orchestrating': 1,
          'though': 1,
          'clear': 1,
          'put': 1,
          'kindly': 1,
          'nnear': 1,
          'end': 1,
          'sceneand': 1,
          'must': 1,
          'confess': 1,
          'lost': 1,
          'completelyis': 1,
          'violent': 1,
          'sexual': 1,
          'encounter': 1,
          'couch': 1,
          'features': 1,
          'even': 1,
          'appear': 1,
          'rest': 1,
          'scored': 1,
          'goofily': 1,
          'upbeat': 1,
          'folk': 1,
          'music': 1,
          'nafter': 1,
          'ends': 1,
          'moment': 1,
          'nreturns': 1,
          'style': 1,
          'lingering': 1,
          'sense': 1,
          'slightest': 1,
          'idea': 1,
          'gone': 1,
          'dumb': 1,
          'happy': 1,
          'ending': 1,
          'abandon': 1,
          'trying': 1,
          'matter': 1,
          'happened': 1,
          'nas': 1,
          'aforementioned': 1,
          'sex': 1,
          'cemented': 1,
          'mind': 1,
          'incoherent': 1,
          'ever': 1,
          'seen': 1,
          'honestly': 1,
          'think': 1,
          'picked': 1,
          'camcorder': 1,
          'deliberately': 1,
          'tried': 1,
          'make': 1,
          'worst': 1,
          'possibly': 1,
          'could': 1,
          'still': 1,
          'might': 1,
          'match': 1,
          'nfor': 1,
          'sheer': 1,
          'cinematic': 1,
          'disaster': 1,
          'giving': 1,
          'f': 1,
          'im': 1,
          'sure': 1,
          'justice': 1,
          'nneg': 1}),
 Counter({'second': 2,
          'murder': 2,
          'quaid': 2,
          'nthe': 2,
          'whole': 2,
          'thing': 2,
          'theres': 2,
          'serialkiller': 1,
          'thriller': 1,
          'month': 1,
          'awful': 1,
          'noh': 1,
          'starts': 1,
          'deceptively': 1,
          'okay': 1,
          'handful': 1,
          'intriguing': 1,
          'characters': 1,
          'solid': 1,
          'location': 1,
          'work': 1,
          'nafter': 1,
          'babysitter': 1,
          'gets': 1,
          'gutted': 1,
          'suit': 1,
          'ably': 1,
          'spooky': 1,
          'someonesinthehouse': 1,
          'prologue': 1,
          'parallel': 1,
          'stories': 1,
          'unfold': 1,
          'first': 1,
          'involving': 1,
          'texas': 1,
          'sheriff': 1,
          'r': 1,
          'lee': 1,
          'emery': 1,
          'gruesome': 1,
          'double': 1,
          'arrival': 1,
          'morose': 1,
          'fbi': 1,
          'agent': 1,
          'dennis': 1,
          'eve': 1,
          'voting': 1,
          'local': 1,
          'lawmans': 1,
          'reelection': 1,
          'pairs': 1,
          'hitch': 1,
          'hiker': 1,
          'jared': 1,
          'leto': 1,
          'friendly': 1,
          'former': 1,
          'railroad': 1,
          'worker': 1,
          'danny': 1,
          'glover': 1,
          'ntheyre': 1,
          'headed': 1,
          'west': 1,
          'toward': 1,
          'rockies': 1,
          'away': 1,
          'scene': 1,
          'nwhich': 1,
          'one': 1,
          'killer': 1,
          'nwell': 1,
          'doesnt': 1,
          'really': 1,
          'matter': 1,
          'cause': 1,
          'writerfirsttime': 1,
          'director': 1,
          'jeb': 1,
          'stuart': 1,
          'die': 1,
          'hard': 1,
          'finally': 1,
          'spills': 1,
          'beans': 1,
          'wont': 1,
          'take': 1,
          'choice': 1,
          'seriously': 1,
          'anyway': 1,
          'goes': 1,
          'south': 1,
          'hour': 1,
          'tale': 1,
          'taking': 1,
          'hairpin': 1,
          'turns': 1,
          'certainly': 1,
          'couldnt': 1,
          'follow': 1,
          'nand': 1,
          'playing': 1,
          'intense': 1,
          'monotony': 1,
          'side': 1,
          'steven': 1,
          'sea': 1,
          'gal': 1,
          'ni': 1,
          'guess': 1,
          'im': 1,
          'glad': 1,
          'didnt': 1,
          'walk': 1,
          'nice': 1,
          'train': 1,
          'stuff': 1,
          'end': 1,
          'fun': 1,
          'nod': 1,
          'dr': 1,
          'nstrangelove': 1,
          'nneg': 1}),
 Counter({'moses': 8,
          'story': 7,
          'one': 4,
          'nit': 4,
          'features': 4,
          'like': 3,
          'film': 3,
          'even': 3,
          'nthe': 3,
          'original': 3,
          'god': 3,
          'thing': 3,
          'though': 3,
          'rameses': 3,
          'contains': 3,
          'say': 2,
          'care': 2,
          'prince': 2,
          'egypt': 2,
          'shallow': 2,
          'nbut': 2,
          'version': 2,
          'divinity': 2,
          'impression': 2,
          'differences': 2,
          'nmost': 2,
          'ni': 2,
          'movie': 2,
          'interests': 2,
          'character': 2,
          'annoying': 2,
          'bullock': 2,
          'first': 1,
          'review': 1,
          'post': 1,
          'newsgroup': 1,
          'kind': 1,
          'feel': 1,
          'something': 1,
          'negative': 1,
          'nno': 1,
          'else': 1,
          'seems': 1,
          'takes': 1,
          'certain': 1,
          'liberties': 1,
          'taken': 1,
          'historical': 1,
          'nhowever': 1,
          'thinks': 1,
          'fiction': 1,
          'remains': 1,
          'ill': 1,
          'begin': 1,
          'beginning': 1,
          'biggest': 1,
          'difference': 1,
          'biblical': 1,
          'semblance': 1,
          'bible': 1,
          'whereas': 1,
          'animated': 1,
          'gives': 1,
          'reluctant': 1,
          'hero': 1,
          'nmaybe': 1,
          'knew': 1,
          'side': 1,
          'id': 1,
          'little': 1,
          'bit': 1,
          'confidence': 1,
          'nthere': 1,
          'well': 1,
          'lack': 1,
          'important': 1,
          'female': 1,
          'characters': 1,
          'passing': 1,
          'pharoahs': 1,
          'death': 1,
          'nothing': 1,
          'storys': 1,
          'focus': 1,
          'shifted': 1,
          'nrather': 1,
          'fatherson': 1,
          'manethnicity': 1,
          'mangod': 1,
          'almost': 1,
          'solely': 1,
          'brotherbrother': 1,
          'relationship': 1,
          'originally': 1,
          'excited': 1,
          'element': 1,
          'saw': 1,
          'came': 1,
          'maudlin': 1,
          'nrameses': 1,
          'squabble': 1,
          'children': 1,
          'peace': 1,
          'saves': 1,
          'butt': 1,
          'started': 1,
          'n': 1,
          'yawn': 1,
          'didnt': 1,
          'anymore': 1,
          'time': 1,
          'ran': 1,
          'murdering': 1,
          'overseer': 1,
          'course': 1,
          'never': 1,
          'happened': 1,
          'exiled': 1,
          'enough': 1,
          'nlets': 1,
          'talk': 1,
          'making': 1,
          'human': 1,
          'lacks': 1,
          'whatsoever': 1,
          'isnt': 1,
          'convincing': 1,
          'anyone': 1,
          'knows': 1,
          'cookiecutter': 1,
          'iwannapleasedada': 1,
          'least': 1,
          'given': 1,
          'dignity': 1,
          'voicework': 1,
          'ralph': 1,
          'fiennes': 1,
          'schindlers': 1,
          'list': 1,
          'among': 1,
          'things': 1,
          'also': 1,
          'extremely': 1,
          'way': 1,
          'newimproved': 1,
          'miriam': 1,
          'voiced': 1,
          'everantsy': 1,
          'sandra': 1,
          'irritating': 1,
          'tendency': 1,
          'burst': 1,
          'song': 1,
          'apparent': 1,
          'reason': 1,
          'replaced': 1,
          'singing': 1,
          'voice': 1,
          'nspeaking': 1,
          'music': 1,
          'writing': 1,
          'extraordinary': 1,
          'animation': 1,
          'good': 1,
          'attempt': 1,
          'commercialize': 1,
          'homogenize': 1,
          'massmarket': 1,
          'manifestation': 1,
          'christian': 1,
          'got': 1,
          'blasphemy': 1,
          'writers': 1,
          'producers': 1,
          'took': 1,
          'butcher': 1,
          'knife': 1,
          'chopchopped': 1,
          'nneg': 1}),
 Counter({'luis': 6,
          'julia': 6,
          'original': 4,
          'sin': 4,
          'film': 4,
          'nthe': 4,
          'banderas': 4,
          'movie': 4,
          'nluis': 4,
          'bad': 3,
          'jolie': 3,
          'makes': 3,
          'something': 3,
          'like': 3,
          'story': 3,
          'ever': 3,
          'road': 2,
          'slated': 2,
          'summer': 2,
          'really': 2,
          'antonio': 2,
          'people': 2,
          'films': 2,
          'time': 2,
          'plenty': 2,
          'things': 2,
          'different': 2,
          'far': 2,
          'im': 2,
          'find': 2,
          'comes': 2,
          'also': 2,
          'jolies': 2,
          'appears': 2,
          'love': 2,
          'golddiggers': 2,
          'man': 2,
          'frumpy': 2,
          'turns': 2,
          'attractive': 2,
          'woman': 2,
          'womans': 2,
          'great': 2,
          'accounts': 2,
          'nhis': 2,
          'sister': 2,
          'acting': 2,
          'detective': 2,
          'thomas': 2,
          'jane': 2,
          'real': 2,
          'anyone': 2,
          'questions': 2,
          'difference': 2,
          'show': 2,
          'screen': 1,
          'rocky': 1,
          'ninitially': 1,
          'release': 1,
          'last': 1,
          'november': 1,
          'bumped': 1,
          'twice': 1,
          'finally': 1,
          'landing': 1,
          'dog': 1,
          'days': 1,
          '2001': 1,
          'nadvance': 1,
          'screenings': 1,
          'denied': 1,
          'critics': 1,
          'generally': 1,
          'sign': 1,
          'studio': 1,
          'realizes': 1,
          'dud': 1,
          'hands': 1,
          'nso': 1,
          'nyes': 1,
          'melodrama': 1,
          'offer': 1,
          'rewards': 1,
          'location': 1,
          'settings': 1,
          'gorgeous': 1,
          'healthy': 1,
          'sprinkling': 1,
          'ta': 1,
          'angelina': 1,
          'providing': 1,
          'nmore': 1,
          'importantly': 1,
          'entertainingly': 1,
          'nveteran': 1,
          'readers': 1,
          'know': 1,
          'rule': 1,
          'dont': 1,
          'encourage': 1,
          'patronize': 1,
          'lousy': 1,
          'nmost': 1,
          'quality': 1,
          'offerings': 1,
          'marketplace': 1,
          'deserving': 1,
          'money': 1,
          'besides': 1,
          'lets': 1,
          'go': 1,
          'laugh': 1,
          'failings': 1,
          'others': 1,
          'mindset': 1,
          'reflects': 1,
          'elitism': 1,
          'uncomfortable': 1,
          'nbut': 1,
          'nquality': 1,
          'put': 1,
          'mildly': 1,
          'concerned': 1,
          'fair': 1,
          'kicks': 1,
          'may': 1,
          'n': 1,
          'never': 1,
          'join': 1,
          'treasures': 1,
          'valley': 1,
          'dolls': 1,
          'house': 1,
          'showgirls': 1,
          'hall': 1,
          'fame': 1,
          'itll': 1,
          'worse': 1,
          'along': 1,
          'adapted': 1,
          'director': 1,
          'michael': 1,
          'cristofer': 1,
          'cornell': 1,
          'woolrich': 1,
          'novel': 1,
          'waltz': 1,
          'darkness': 1,
          'source': 1,
          '1969': 1,
          'francois': 1,
          'truffaut': 1,
          'mississippi': 1,
          'mermaid': 1,
          'opens': 1,
          'turnofthecentury': 1,
          'prison': 1,
          'character': 1,
          'dawn': 1,
          'execution': 1,
          'tells': 1,
          'lurid': 1,
          'tale': 1,
          'priest': 1,
          'desperately': 1,
          'horny': 1,
          'freshman': 1,
          'writing': 1,
          'class': 1,
          'tone': 1,
          'quickly': 1,
          'established': 1,
          'says': 1,
          'nwary': 1,
          'local': 1,
          'cuban': 1,
          'coffee': 1,
          'dealer': 1,
          'vargas': 1,
          'arrangements': 1,
          'secure': 1,
          'mail': 1,
          'order': 1,
          'bride': 1,
          'america': 1,
          'listing': 1,
          'mere': 1,
          'clerk': 1,
          'dissuade': 1,
          'foreign': 1,
          'na': 1,
          'practical': 1,
          'chooses': 1,
          'looking': 1,
          'lady': 1,
          'hoping': 1,
          'loyal': 1,
          'mate': 1,
          'able': 1,
          'provide': 1,
          'children': 1,
          'nimagine': 1,
          'surprise': 1,
          'fianc': 1,
          'e': 1,
          'russell': 1,
          'infinitely': 1,
          'photo': 1,
          'njulia': 1,
          'explains': 1,
          'sent': 1,
          'image': 1,
          'didnt': 1,
          'want': 1,
          'selected': 1,
          'solely': 1,
          'pretty': 1,
          'face': 1,
          'confesses': 1,
          'deception': 1,
          'leading': 1,
          'julie': 1,
          'state': 1,
          'significance': 1,
          'common': 1,
          'trusted': 1,
          'nafter': 1,
          'wedding': 1,
          'retire': 1,
          'glorious': 1,
          'night': 1,
          'carefully': 1,
          'choreographed': 1,
          'lovemaking': 1,
          'bodies': 1,
          'positioned': 1,
          'display': 1,
          'breasts': 1,
          'bottom': 1,
          'erotically': 1,
          'possible': 1,
          'njolie': 1,
          'watching': 1,
          'naked': 1,
          'fun': 1,
          'although': 1,
          'filmmakers': 1,
          'insistence': 1,
          'using': 1,
          'one': 1,
          'legs': 1,
          'cover': 1,
          'crotch': 1,
          'look': 1,
          'hes': 1,
          'trying': 1,
          'climb': 1,
          'stupidest': 1,
          'lived': 1,
          'immediately': 1,
          'instructs': 1,
          'bank': 1,
          'make': 1,
          'personal': 1,
          'business': 1,
          'available': 1,
          'despite': 1,
          'fact': 1,
          'seems': 1,
          'nothing': 1,
          'corresponded': 1,
          'blissful': 1,
          'ignorance': 1,
          'continues': 1,
          'warning': 1,
          'signs': 1,
          'mount': 1,
          'must': 1,
          'force': 1,
          'write': 1,
          'emily': 1,
          'frantic': 1,
          'lack': 1,
          'communication': 1,
          'nshortly': 1,
          'complains': 1,
          'chirping': 1,
          'pet': 1,
          'bird': 1,
          'found': 1,
          'floor': 1,
          'cage': 1,
          'broken': 1,
          'neck': 1,
          'nfinally': 1,
          'cleans': 1,
          'disappears': 1,
          'begins': 1,
          'suspect': 1,
          'might': 1,
          'wrong': 1,
          'nincidentally': 1,
          'youre': 1,
          'afraid': 1,
          'giving': 1,
          'much': 1,
          'away': 1,
          'rest': 1,
          'assured': 1,
          'happens': 1,
          'first': 1,
          '30': 1,
          'minutes': 1,
          'leaving': 1,
          'numerous': 1,
          'dopey': 1,
          'plot': 1,
          'twists': 1,
          'deal': 1,
          'operatic': 1,
          'footage': 1,
          'tits': 1,
          'ass': 1,
          'nalong': 1,
          'way': 1,
          'private': 1,
          'walter': 1,
          'downs': 1,
          'played': 1,
          'terrific': 1,
          'mickey': 1,
          'mantle': 1,
          'hbo': 1,
          '61': 1,
          'hired': 1,
          'happened': 1,
          'eager': 1,
          'track': 1,
          'con': 1,
          'artist': 1,
          'decided': 1,
          'cant': 1,
          'kill': 1,
          'noh': 1,
          'pathos': 1,
          'cast': 1,
          'recognize': 1,
          'trashiness': 1,
          'adjusting': 1,
          'performances': 1,
          'accordingly': 1,
          'nbanderas': 1,
          'suitably': 1,
          'impassioned': 1,
          'alternates': 1,
          'vamping': 1,
          'pouting': 1,
          'lips': 1,
          'pout': 1,
          'nas': 1,
          'starts': 1,
          'suspicious': 1,
          'cagey': 1,
          'accelerates': 1,
          'snidely': 1,
          'whiplash': 1,
          'level': 1,
          'nastiness': 1,
          'startling': 1,
          'moment': 1,
          'prove': 1,
          'power': 1,
          'humiliate': 1,
          'forces': 1,
          'wall': 1,
          'verbally': 1,
          'taunts': 1,
          'rubbing': 1,
          'cheeks': 1,
          'finishes': 1,
          'establishing': 1,
          'dominance': 1,
          'fullon': 1,
          'kiss': 1,
          'nif': 1,
          'sex': 1,
          'rape': 1,
          'chilling': 1,
          'scene': 1,
          'nand': 1,
          'drama': 1,
          'laughable': 1,
          'potboiler': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'film': 6,
          'would': 5,
          'work': 4,
          'one': 3,
          'duchovny': 3,
          'doctor': 3,
          'blossom': 3,
          'big': 3,
          'time': 3,
          'xfiles': 2,
          'none': 2,
          'sands': 2,
          'becomes': 2,
          'bad': 2,
          'bar': 2,
          'heroin': 2,
          'chance': 2,
          'life': 2,
          'hutton': 2,
          'needs': 2,
          'films': 2,
          'seem': 2,
          'threaten': 2,
          'fbi': 2,
          'else': 2,
          'take': 2,
          'solid': 2,
          'screen': 2,
          'neven': 2,
          'get': 2,
          'partially': 2,
          'nowhere': 2,
          'think': 1,
          'david': 1,
          'star': 1,
          'cult': 1,
          'favorite': 1,
          'careful': 1,
          'choosing': 1,
          'leading': 1,
          'man': 1,
          'cinema': 1,
          'roles': 1,
          'nat': 1,
          'least': 1,
          'hope': 1,
          'seriously': 1,
          'incorrect': 1,
          'neugene': 1,
          'surgeon': 1,
          'dedicated': 1,
          'craft': 1,
          'addicted': 1,
          'amphetamines': 1,
          'stay': 1,
          'awake': 1,
          'nit': 1,
          'turns': 1,
          'plan': 1,
          'loses': 1,
          'patient': 1,
          'license': 1,
          'influence': 1,
          'nten': 1,
          'months': 1,
          'later': 1,
          'seedy': 1,
          'score': 1,
          'synthetic': 1,
          'gets': 1,
          'ply': 1,
          'trade': 1,
          'assassins': 1,
          'gun': 1,
          'customer': 1,
          'nusing': 1,
          'plastic': 1,
          'water': 1,
          'bottle': 1,
          'tubing': 1,
          'operates': 1,
          'saves': 1,
          'nsmalltime': 1,
          'hoodlum': 1,
          'raymond': 1,
          'timothy': 1,
          'impressed': 1,
          'cutlery': 1,
          'skills': 1,
          'associate': 1,
          'nhe': 1,
          'kidnaps': 1,
          'offers': 1,
          'downandout': 1,
          'eugene': 1,
          'position': 1,
          'organization': 1,
          'nblossom': 1,
          'patch': 1,
          'gunshot': 1,
          'victims': 1,
          'problematic': 1,
          'hospital': 1,
          'nsands': 1,
          'temptation': 1,
          'give': 1,
          'practice': 1,
          'medicine': 1,
          'albeit': 1,
          'illegally': 1,
          'chunks': 1,
          'cash': 1,
          'fuel': 1,
          'habit': 1,
          'close': 1,
          'proximity': 1,
          'gangsters': 1,
          'womanfriend': 1,
          'claire': 1,
          'angelina': 1,
          'jolie': 1,
          'babe': 1,
          'factor': 1,
          'wouldbe': 1,
          'operator': 1,
          'desperately': 1,
          'need': 1,
          'help': 1,
          'non': 1,
          'run': 1,
          'russian': 1,
          'mobsters': 1,
          'guys': 1,
          'rage': 1,
          'years': 1,
          'trying': 1,
          'cut': 1,
          'pirate': 1,
          'software': 1,
          'deal': 1,
          'chinese': 1,
          'mafia': 1,
          'surrounded': 1,
          'blood': 1,
          'nafter': 1,
          'medical': 1,
          'misadventures': 1,
          'physician': 1,
          'grows': 1,
          'disenchanted': 1,
          'employment': 1,
          'nan': 1,
          'encounter': 1,
          'couple': 1,
          'psycho': 1,
          'surfer': 1,
          'dudes': 1,
          'blow': 1,
          'away': 1,
          'unless': 1,
          'fixes': 1,
          'dead': 1,
          'buddy': 1,
          'cements': 1,
          'feeling': 1,
          'wrong': 1,
          'line': 1,
          'nwhen': 1,
          'visits': 1,
          'forces': 1,
          'become': 1,
          'informant': 1,
          'question': 1,
          'somewhere': 1,
          'noddly': 1,
          'enough': 1,
          'like': 1,
          'could': 1,
          'exciting': 1,
          'scenes': 1,
          'disproves': 1,
          'assumption': 1,
          'nthen': 1,
          'bunch': 1,
          'uninteresting': 1,
          'things': 1,
          'happen': 1,
          'nwriting': 1,
          'two': 1,
          'days': 1,
          'seeing': 1,
          'struggle': 1,
          'remember': 1,
          'events': 1,
          'nyou': 1,
          'lack': 1,
          'recommendation': 1,
          'nfor': 1,
          'coolness': 1,
          'exhibits': 1,
          'surprise': 1,
          'presence': 1,
          'lacking': 1,
          'charisma': 1,
          'particularly': 1,
          'bland': 1,
          'dull': 1,
          'cold': 1,
          'turkey': 1,
          'bit': 1,
          'rife': 1,
          'dramatic': 1,
          'possibilities': 1,
          'come': 1,
          'across': 1,
          'banal': 1,
          'na': 1,
          'little': 1,
          'chocolate': 1,
          'minor': 1,
          'sweats': 1,
          'withdrawal': 1,
          'nlike': 1,
          'virtually': 1,
          'everything': 1,
          'missed': 1,
          'opportunity': 1,
          'fox': 1,
          'mulder': 1,
          'detachment': 1,
          'doesnt': 1,
          'noscarwinner': 1,
          'huttons': 1,
          'manic': 1,
          'mobster': 1,
          'much': 1,
          'difficult': 1,
          'handle': 1,
          'nplayed': 1,
          'comedy': 1,
          'crazed': 1,
          'killer': 1,
          'almost': 1,
          'real': 1,
          'sinks': 1,
          'goofiness': 1,
          'nmost': 1,
          'looks': 1,
          'hes': 1,
          'searching': 1,
          'character': 1,
          'coming': 1,
          'empty': 1,
          'njolie': 1,
          'also': 1,
          'makes': 1,
          'false': 1,
          'moves': 1,
          'towards': 1,
          'creating': 1,
          'threedimensional': 1,
          'human': 1,
          'giving': 1,
          'turning': 1,
          'scenery': 1,
          'interesting': 1,
          'aspect': 1,
          'performance': 1,
          'watching': 1,
          'pouty': 1,
          'lips': 1,
          'rest': 1,
          'arent': 1,
          'better': 1,
          'nmichael': 1,
          'massees': 1,
          'eccentric': 1,
          'agent': 1,
          'never': 1,
          'revs': 1,
          'blossoms': 1,
          'henchmen': 1,
          'steals': 1,
          'moments': 1,
          'show': 1,
          'quirky': 1,
          'gunman': 1,
          'reminiscent': 1,
          'val': 1,
          'kilmers': 1,
          'doc': 1,
          'holliday': 1,
          'tombstone': 1,
          'nhis': 1,
          'twogunned': 1,
          'blasting': 1,
          'bizarre': 1,
          'dance': 1,
          'high': 1,
          'point': 1,
          'nbut': 1,
          '15': 1,
          'seconds': 1,
          'isnt': 1,
          'worth': 1,
          'sitting': 1,
          '90': 1,
          'minutes': 1,
          'nfirst': 1,
          'director': 1,
          'andy': 1,
          'wilson': 1,
          'known': 1,
          'british': 1,
          'television': 1,
          'series': 1,
          'cracker': 1,
          'appears': 1,
          'attempting': 1,
          'jump': 1,
          'pulp': 1,
          'fiction': 1,
          'bandwagon': 1,
          'best': 1,
          'movies': 1,
          'combine': 1,
          'sense': 1,
          'style': 1,
          'flash': 1,
          'significant': 1,
          'substance': 1,
          'secondrate': 1,
          'ones': 1,
          'concentrate': 1,
          'aspects': 1,
          'n': 1,
          'playing': 1,
          'god': 1,
          'neither': 1,
          'well': 1,
          'basic': 1,
          'idea': 1,
          'nand': 1,
          'goes': 1,
          'worse': 1,
          'plods': 1,
          'back': 1,
          'forth': 1,
          'long': 1,
          'winding': 1,
          'road': 1,
          'ends': 1,
          'nfox': 1,
          'fails': 1,
          'yet': 1,
          'search': 1,
          'intelligent': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'li': 4,
          'dragon': 4,
          'nthe': 4,
          'jet': 3,
          'lis': 3,
          'even': 3,
          'ever': 3,
          'would': 2,
          'karyo': 2,
          'plot': 2,
          'action': 2,
          'nwhen': 2,
          'scenes': 2,
          'justify': 2,
          'problem': 2,
          'nkiss': 2,
          'dont': 2,
          'call': 2,
          'isnt': 2,
          'chinese': 2,
          'killing': 2,
          'terminator': 2,
          'instead': 2,
          'day': 2,
          'whatsoever': 2,
          'acupuncture': 2,
          'needle': 2,
          'kiss': 2,
          'ntheres': 2,
          'love': 2,
          'whose': 2,
          'movie': 2,
          'story': 2,
          'ni': 2,
          'mainstream': 2,
          'appreciate': 1,
          'didnt': 1,
          'nstarring': 1,
          'bridget': 1,
          'fonda': 1,
          'tch': 1,
          'ky': 1,
          'burt': 1,
          'kwouk': 1,
          'ndirected': 1,
          'chris': 1,
          'nahon': 1,
          'nrated': 1,
          'r': 1,
          'nits': 1,
          'secret': 1,
          'martial': 1,
          'arts': 1,
          'film': 1,
          'often': 1,
          'use': 1,
          'simply': 1,
          'get': 1,
          'sequence': 1,
          'another': 1,
          'fight': 1,
          'enough': 1,
          'paying': 1,
          'admission': 1,
          'jackie': 1,
          'chan': 1,
          'projects': 1,
          'lot': 1,
          'hong': 1,
          'kong': 1,
          'actioners': 1,
          'arent': 1,
          'well': 1,
          'bad': 1,
          'shape': 1,
          'second': 1,
          'consecutive': 1,
          'american': 1,
          'misfire': 1,
          'plays': 1,
          'like': 1,
          'big': 1,
          'miscalculation': 1,
          'fails': 1,
          'rudimentary': 1,
          'entertainment': 1,
          'nnow': 1,
          'start': 1,
          'getting': 1,
          'emails': 1,
          'angrily': 1,
          'touting': 1,
          'genius': 1,
          'let': 1,
          'explain': 1,
          'nli': 1,
          'spectacular': 1,
          'think': 1,
          'anyone': 1,
          'dare': 1,
          'martialartsstar': 1,
          'skills': 1,
          'question': 1,
          'movies': 1,
          'tone': 1,
          'much': 1,
          'touted': 1,
          'fightscenes': 1,
          'filmed': 1,
          'unflinching': 1,
          'unrelenting': 1,
          'brutality': 1,
          'unpleasant': 1,
          'watch': 1,
          'ntheyre': 1,
          'joyless': 1,
          'perfuctory': 1,
          'rogue': 1,
          'detective': 1,
          'machine': 1,
          'hero': 1,
          'black': 1,
          'belt': 1,
          'metal': 1,
          'skeleton': 1,
          'nbut': 1,
          'judgement': 1,
          'sympathetic': 1,
          'side': 1,
          'relevant': 1,
          'youre': 1,
          'curious': 1,
          'nonsense': 1,
          'law': 1,
          'enforcement': 1,
          'officer': 1,
          'sent': 1,
          'paris': 1,
          'investigate': 1,
          'possible': 1,
          'drug': 1,
          'ring': 1,
          'encounter': 1,
          'corrupt': 1,
          'chief': 1,
          'police': 1,
          'tcheky': 1,
          'kills': 1,
          'people': 1,
          'sinister': 1,
          'things': 1,
          'motivation': 1,
          'noh': 1,
          'yeah': 1,
          'character': 1,
          'also': 1,
          'expert': 1,
          'able': 1,
          'ease': 1,
          'pain': 1,
          'andor': 1,
          'kill': 1,
          'touch': 1,
          'n': 1,
          'name': 1,
          'maneuver': 1,
          'stick': 1,
          'precise': 1,
          'location': 1,
          'back': 1,
          'victims': 1,
          'neck': 1,
          'somehow': 1,
          'redirecting': 1,
          'bodys': 1,
          'bloodflow': 1,
          'brain': 1,
          'poor': 1,
          'sap': 1,
          'less': 1,
          'immediately': 1,
          'vague': 1,
          'attempt': 1,
          'humanize': 1,
          'fall': 1,
          'downtrodden': 1,
          'prostitute': 1,
          'daughter': 1,
          'held': 1,
          'hostage': 1,
          'reason': 1,
          'villain': 1,
          'nthis': 1,
          'worst': 1,
          'stories': 1,
          'seen': 1,
          'screen': 1,
          'worse': 1,
          'pearl': 1,
          'harbor': 1,
          'conviction': 1,
          'barely': 1,
          'pays': 1,
          'lip': 1,
          'service': 1,
          'someone': 1,
          'apparently': 1,
          'thought': 1,
          'kind': 1,
          'boymeetsgirl': 1,
          'subplot': 1,
          'written': 1,
          'luc': 1,
          'besson': 1,
          'screenplay': 1,
          'messenger': 1,
          'joan': 1,
          'arc': 1,
          'films': 1,
          'flaws': 1,
          'least': 1,
          'thoughtful': 1,
          'know': 1,
          'guy': 1,
          'got': 1,
          'involved': 1,
          'train': 1,
          'wreck': 1,
          'perhaps': 1,
          'wanted': 1,
          'something': 1,
          'neverending': 1,
          'weirdness': 1,
          'fifth': 1,
          'element': 1,
          'aforementioned': 1,
          'stylized': 1,
          'biopic': 1,
          'suppose': 1,
          'could': 1,
          'ill': 1,
          'choose': 1,
          'bizarre': 1,
          'time': 1,
          'nif': 1,
          'going': 1,
          'brutal': 1,
          'dazzling': 1,
          'need': 1,
          'watching': 1,
          'filmmakers': 1,
          'behind': 1,
          'rethought': 1,
          'strategy': 1,
          'nno': 1,
          'walk': 1,
          'misbegotten': 1,
          'project': 1,
          'smiling': 1,
          'hear': 1,
          'rush': 1,
          'hour': 1,
          '2': 1,
          'coming': 1,
          'weeks': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'verhoeven': 6,
          'starship': 5,
          'troopers': 5,
          'one': 5,
          'military': 4,
          'look': 4,
          'film': 4,
          'mind': 3,
          'giant': 3,
          'war': 3,
          'insects': 3,
          'nin': 3,
          'bad': 3,
          'bug': 3,
          'satire': 3,
          'fashion': 3,
          'teens': 3,
          'na': 3,
          'bugs': 3,
          'attack': 3,
          'scenes': 3,
          'certain': 2,
          'flying': 2,
          'nand': 2,
          'paul': 2,
          'doogie': 2,
          'meld': 2,
          'n': 2,
          'novel': 2,
          'scifi': 2,
          'gift': 2,
          'creating': 2,
          'entertaining': 2,
          'social': 2,
          'starts': 2,
          'meet': 2,
          'school': 2,
          'kids': 2,
          'like': 2,
          'nits': 2,
          'around': 2,
          'none': 2,
          'nhe': 2,
          'long': 2,
          'scene': 2,
          'showgirls': 2,
          'action': 2,
          'even': 2,
          'part': 2,
          'enough': 2,
          'two': 2,
          'fails': 2,
          'rich': 1,
          'legacy': 1,
          'cinema': 1,
          'left': 1,
          'us': 1,
          'indelible': 1,
          'images': 1,
          'tinkling': 1,
          'christmas': 1,
          'tree': 1,
          'bell': 1,
          'wonderful': 1,
          'life': 1,
          'nbogies': 1,
          'speech': 1,
          'airport': 1,
          'casablanca': 1,
          'nlittle': 1,
          'elliotts': 1,
          'bicycle': 1,
          'silhouetted': 1,
          'moon': 1,
          'e': 1,
          'director': 1,
          'adds': 1,
          'image': 1,
          'live': 1,
          'memories': 1,
          'forever': 1,
          'houser': 1,
          'vulcan': 1,
          'slug': 1,
          'loosely': 1,
          'based': 1,
          'robert': 1,
          'heinlein': 1,
          'story': 1,
          'interstellar': 1,
          'humans': 1,
          'hands': 1,
          'mammoth': 1,
          'battle': 1,
          'flick': 1,
          'astonishingly': 1,
          'films': 1,
          'ever': 1,
          'made': 1,
          'monument': 1,
          'inept': 1,
          'filmmaking': 1,
          'colossal': 1,
          'scale': 1,
          'nto': 1,
          'put': 1,
          'simply': 1,
          'bomb': 1,
          'robocop': 1,
          'total': 1,
          'recall': 1,
          'displayed': 1,
          'mix': 1,
          'violence': 1,
          'special': 1,
          'effects': 1,
          'similar': 1,
          'tongueincheek': 1,
          'futuristic': 1,
          'recruitment': 1,
          'ad': 1,
          'shows': 1,
          'promise': 1,
          'nthings': 1,
          'go': 1,
          'downhill': 1,
          'fast': 1,
          'though': 1,
          'heroes': 1,
          'group': 1,
          'buenos': 1,
          'aires': 1,
          'preparing': 1,
          'graduate': 1,
          'high': 1,
          'ninexplicably': 1,
          'johnny': 1,
          'rico': 1,
          'carmen': 1,
          'ibenez': 1,
          'dizzy': 1,
          'flores': 1,
          'xander': 1,
          'barcalow': 1,
          'played': 1,
          'squarejawed': 1,
          'anglo': 1,
          'stepped': 1,
          'mountain': 1,
          'dew': 1,
          'commercial': 1,
          'veritable': 1,
          'alpha': 1,
          'centuri': 1,
          '90210': 1,
          'watch': 1,
          'lovesmitten': 1,
          'squabble': 1,
          'name': 1,
          'love': 1,
          'nmichael': 1,
          'ironside': 1,
          'plays': 1,
          'teacher': 1,
          'waves': 1,
          'cheesy': 1,
          'fake': 1,
          'severed': 1,
          'arm': 1,
          'lecturing': 1,
          'civic': 1,
          'responsibilities': 1,
          'neventually': 1,
          'join': 1,
          'dreams': 1,
          'glory': 1,
          'addled': 1,
          'little': 1,
          'minds': 1,
          'classmates': 1,
          'carl': 1,
          'jenkins': 1,
          'housers': 1,
          'neil': 1,
          'patrick': 1,
          'harris': 1,
          'snags': 1,
          'job': 1,
          'intelligence': 1,
          'strong': 1,
          'psychic': 1,
          'abilities': 1,
          'displays': 1,
          'psychically': 1,
          'ordering': 1,
          'pet': 1,
          'ferret': 1,
          'crawl': 1,
          'mothers': 1,
          'leg': 1,
          'dull': 1,
          'boot': 1,
          'camp': 1,
          'sequence': 1,
          'follows': 1,
          'enlivened': 1,
          'extended': 1,
          'coed': 1,
          'shower': 1,
          'recruits': 1,
          'swap': 1,
          'snappy': 1,
          'banter': 1,
          'directors': 1,
          'camera': 1,
          'roams': 1,
          'buff': 1,
          'bodies': 1,
          'nfinally': 1,
          'full': 1,
          'hour': 1,
          'finally': 1,
          'enemy': 1,
          'hail': 1,
          'klendathu': 1,
          'colonize': 1,
          'planets': 1,
          'hurling': 1,
          'spores': 1,
          'space': 1,
          'nthey': 1,
          'starships': 1,
          'spinning': 1,
          'firing': 1,
          'deadly': 1,
          'plasma': 1,
          'blasts': 1,
          'rears': 1,
          'nyes': 1,
          'incredible': 1,
          'seems': 1,
          'actually': 1,
          'kill': 1,
          'cosmic': 1,
          'farts': 1,
          'phenomenally': 1,
          'large': 1,
          'amount': 1,
          'money': 1,
          'spent': 1,
          'computer': 1,
          'animated': 1,
          'results': 1,
          'mixed': 1,
          'best': 1,
          'nsweeping': 1,
          'distant': 1,
          'shots': 1,
          'depicting': 1,
          'hordes': 1,
          'racing': 1,
          'impressive': 1,
          'scary': 1,
          'closeups': 1,
          'different': 1,
          'matter': 1,
          'odd': 1,
          'artificial': 1,
          'origami': 1,
          'creations': 1,
          'mottled': 1,
          'plastic': 1,
          'coating': 1,
          'intensely': 1,
          'violent': 1,
          'would': 1,
          'expect': 1,
          'overall': 1,
          'phony': 1,
          'generate': 1,
          'real': 1,
          'tension': 1,
          'nwhile': 1,
          'frantic': 1,
          'strategy': 1,
          'wildly': 1,
          'illogical': 1,
          'hollywood': 1,
          'standards': 1,
          'grows': 1,
          'tiresome': 1,
          'quickly': 1,
          'nverhoeven': 1,
          'tries': 1,
          'spice': 1,
          'things': 1,
          'throwing': 1,
          'satiric': 1,
          'news': 1,
          'coverage': 1,
          'fauxjingoistic': 1,
          'children': 1,
          'effort': 1,
          'squishing': 1,
          'roaches': 1,
          'sidewalk': 1,
          'arent': 1,
          'make': 1,
          'stretches': 1,
          'sheer': 1,
          'dreck': 1,
          'guess': 1,
          'trying': 1,
          'nhis': 1,
          'customary': 1,
          'parts': 1,
          'ultraviolence': 1,
          'formula': 1,
          'way': 1,
          'whack': 1,
          'flounders': 1,
          'almost': 1,
          'good': 1,
          'nan': 1,
          'intergalactic': 1,
          'kegger': 1,
          'party': 1,
          'jake': 1,
          'busey': 1,
          'playing': 1,
          'dixie': 1,
          'green': 1,
          'plexiglas': 1,
          'fiddle': 1,
          'bizarre': 1,
          'appeal': 1,
          'sex': 1,
          'achieves': 1,
          'smarmy': 1,
          'charm': 1,
          'enhanced': 1,
          'minutes': 1,
          'later': 1,
          'female': 1,
          'receives': 1,
          'fatal': 1,
          'jab': 1,
          'tells': 1,
          'hero': 1,
          'doesnt': 1,
          'dying': 1,
          'okay': 1,
          'gasps': 1,
          'got': 1,
          'course': 1,
          'theres': 1,
          'doogies': 1,
          'possible': 1,
          'attempting': 1,
          'create': 1,
          'homage': 1,
          'era': 1,
          'original': 1,
          'nheinleins': 1,
          'pre': 1,
          'stranger': 1,
          'strange': 1,
          'land': 1,
          'books': 1,
          'aimed': 1,
          'adolescent': 1,
          'males': 1,
          'antiseptic': 1,
          'retrofuture': 1,
          'late': 1,
          '50searly': 1,
          '60s': 1,
          'cityscape': 1,
          'shown': 1,
          'jetsonslike': 1,
          'gleaming': 1,
          'metropolis': 1,
          'cars': 1,
          'whizzing': 1,
          'past': 1,
          'obvious': 1,
          'matte': 1,
          'painting': 1,
          'hairstyles': 1,
          'retro': 1,
          'straight': 1,
          'frankie': 1,
          'avalon': 1,
          'annette': 1,
          'funicello': 1,
          'nultimately': 1,
          'verhoevens': 1,
          'motives': 1,
          'irrelevant': 1,
          'produce': 1,
          'gargantuan': 1,
          'nit': 1,
          'movie': 1,
          'navoid': 1,
          'costs': 1,
          'nneg': 1}),
 Counter({'robbins': 9,
          'chemistry': 6,
          'lawernce': 5,
          'film': 5,
          'lose': 5,
          'comedy': 4,
          'theres': 4,
          'good': 4,
          'martin': 3,
          'movie': 3,
          'nthere': 3,
          'like': 3,
          'funny': 3,
          'much': 3,
          'nin': 3,
          'nothing': 3,
          'nthe': 3,
          'road': 2,
          'nhe': 2,
          'car': 2,
          'along': 2,
          'arizona': 2,
          'two': 2,
          'robbers': 2,
          'gags': 2,
          'beverly': 2,
          'hills': 2,
          'midnight': 2,
          'run': 2,
          'eddie': 2,
          'murphy': 2,
          'even': 2,
          'chase': 2,
          'seemed': 2,
          'eighties': 2,
          'steve': 2,
          'also': 2,
          'isnt': 2,
          'hardly': 2,
          'performance': 2,
          'characters': 2,
          'better': 2,
          'nnothing': 2,
          'threatening': 2,
          'lawerences': 2,
          'ruined': 2,
          'tim': 1,
          'team': 1,
          'nrobbins': 1,
          'plays': 1,
          'exec': 1,
          'discovers': 1,
          'wife': 1,
          'sex': 1,
          'boss': 1,
          'goes': 1,
          'depression': 1,
          'drives': 1,
          'around': 1,
          'neighbourhood': 1,
          'arrives': 1,
          'inside': 1,
          'usual': 1,
          'ghetto': 1,
          'side': 1,
          'every': 1,
          'american': 1,
          'city': 1,
          'attempts': 1,
          'steal': 1,
          'avail': 1,
          'dragged': 1,
          'trip': 1,
          'hold': 1,
          'store': 1,
          'mistaken': 1,
          'cousin': 1,
          'vinny': 1,
          'chased': 1,
          'police': 1,
          'nof': 1,
          'course': 1,
          'way': 1,
          'usually': 1,
          'nalthough': 1,
          'midly': 1,
          'quite': 1,
          'watchable': 1,
          'something': 1,
          'horribly': 1,
          'familiar': 1,
          'nthis': 1,
          'really': 1,
          'called': 1,
          'wisecracking': 1,
          'heavy': 1,
          'profanity': 1,
          'cop': 1,
          'pratically': 1,
          'idea': 1,
          'nits': 1,
          'full': 1,
          'cliches': 1,
          'neven': 1,
          'credit': 1,
          'sequence': 1,
          'chevy': 1,
          'planes': 1,
          'trains': 1,
          'automobiles': 1,
          'real': 1,
          'john': 1,
          'candy': 1,
          'ntowards': 1,
          'end': 1,
          'seems': 1,
          'work': 1,
          'bulk': 1,
          'director': 1,
          'directs': 1,
          'workman': 1,
          'fashion': 1,
          'gets': 1,
          'jokes': 1,
          'across': 1,
          'nand': 1,
          'although': 1,
          'leads': 1,
          'give': 1,
          'performances': 1,
          'nlawerence': 1,
          'gives': 1,
          'alright': 1,
          'aswell': 1,
          'nhowever': 1,
          'nowhere': 1,
          'near': 1,
          'played': 1,
          'jacobs': 1,
          'ladder': 1,
          'player': 1,
          'fact': 1,
          'want': 1,
          'see': 1,
          'suggest': 1,
          'rent': 1,
          'hudsucker': 1,
          'proxy': 1,
          'funnier': 1,
          'moments': 1,
          'however': 1,
          'humour': 1,
          'particulary': 1,
          'sophisticated': 1,
          'enojyed': 1,
          'dumb': 1,
          'dumber': 1,
          'might': 1,
          'enjoy': 1,
          'scene': 1,
          'asks': 1,
          'shopkeeper': 1,
          'approach': 1,
          'consisted': 1,
          'lawerence': 1,
          'shoot': 1,
          'shopkeepers': 1,
          'ass': 1,
          'swearing': 1,
          'lot': 1,
          'himselfs': 1,
          'speaking': 1,
          'deep': 1,
          'scary': 1,
          'voice': 1,
          'predictable': 1,
          'lack': 1,
          'infurating': 1,
          'ending': 1,
          'farfetched': 1,
          'perfect': 1,
          'first': 1,
          'bad': 1,
          'hopefully': 1,
          'last': 1,
          'suggests': 1,
          'odereick': 1,
          'twice': 1,
          'making': 1,
          'another': 1,
          'nearly': 1,
          'carreys': 1,
          'career': 1,
          'ace': 1,
          'ventura': 1,
          'nature': 1,
          'calls': 1,
          'lets': 1,
          'hope': 1,
          'hasnt': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'fight': 6,
          'bad': 5,
          'robin': 4,
          'scenes': 4,
          'made': 4,
          'nthe': 4,
          'characters': 4,
          'nthis': 3,
          'minutes': 3,
          'style': 3,
          'could': 3,
          'ni': 3,
          'way': 3,
          'around': 3,
          'sequel': 2,
          'batman': 2,
          'one': 2,
          'everything': 2,
          'except': 2,
          'shou': 2,
          'weep': 2,
          'original': 2,
          'fun': 2,
          'paul': 2,
          'anderson': 2,
          'leonetti': 2,
          'mortal': 2,
          'kombat': 2,
          'good': 2,
          'special': 2,
          'effects': 2,
          'treatment': 2,
          'na': 2,
          'back': 2,
          'even': 2,
          'nbut': 2,
          'move': 2,
          'jumping': 2,
          'im': 2,
          'kick': 2,
          'seen': 2,
          'least': 2,
          'first': 2,
          'plain': 2,
          'games': 2,
          'nit': 2,
          'stupid': 2,
          'video': 2,
          'capsule': 1,
          'crow': 1,
          '2': 1,
          'still': 1,
          'horribly': 1,
          'putrid': 1,
          'cheesy': 1,
          'illconceived': 1,
          'belongs': 1,
          'saturday': 1,
          'morning': 1,
          'cartoons': 1,
          'nextended': 1,
          'review': 1,
          'know': 1,
          'halfway': 1,
          'realized': 1,
          'hacked': 1,
          'youd': 1,
          'damn': 1,
          'fine': 1,
          '35': 1,
          'flashy': 1,
          'hong': 1,
          'kong': 1,
          'martial': 1,
          'arts': 1,
          'nbeautifully': 1,
          'choreographed': 1,
          'also': 1,
          'plays': 1,
          'liu': 1,
          'kang': 1,
          'mindblowing': 1,
          'graceful': 1,
          'acrobatic': 1,
          'enough': 1,
          'make': 1,
          'olympic': 1,
          'gymnasts': 1,
          'unfortunately': 1,
          'without': 1,
          'frenetic': 1,
          'directorial': 1,
          'ninstead': 1,
          'got': 1,
          'john': 1,
          'r': 1,
          'cinematographer': 1,
          'nnot': 1,
          'choice': 1,
          'nwhile': 1,
          'brutal': 1,
          'eyepopping': 1,
          'rest': 1,
          'looks': 1,
          'like': 1,
          'standard': 1,
          'tv': 1,
          'fare': 1,
          'acting': 1,
          'subpar': 1,
          'endure': 1,
          'directors': 1,
          'b': 1,
          'c': 1,
          'story': 1,
          'mr': 1,
          'go': 1,
          'lighting': 1,
          'opinion': 1,
          'say': 1,
          'dozens': 1,
          'things': 1,
          'overuses': 1,
          'slowmotion': 1,
          'eye': 1,
          'action': 1,
          'cant': 1,
          'get': 1,
          'mediocre': 1,
          'performances': 1,
          'actors': 1,
          'far': 1,
          'worst': 1,
          'treated': 1,
          'napparantly': 1,
          'everybody': 1,
          'fly': 1,
          'nhell': 1,
          'occaisional': 1,
          'gravity': 1,
          'defying': 1,
          'flip': 1,
          'whatnot': 1,
          'happens': 1,
          'every': 1,
          'done': 1,
          'poorly': 1,
          'nbetter': 1,
          'acrobatics': 1,
          'xena': 1,
          'warrior': 1,
          'princess': 1,
          'nin': 1,
          'short': 1,
          'gotten': 1,
          'let': 1,
          'direct': 1,
          'nb': 1,
          'unlike': 1,
          'whose': 1,
          'sfx': 1,
          'vibrant': 1,
          'somewhat': 1,
          'realistic': 1,
          'mk': 1,
          'bland': 1,
          'fake': 1,
          'looking': 1,
          'overall': 1,
          'counted': 1,
          'half': 1,
          'dozen': 1,
          'times': 1,
          'bluescreening': 1,
          'painfully': 1,
          'obvious': 1,
          'nhad': 1,
          '80s': 1,
          'would': 1,
          'groundbreaking': 1,
          'todays': 1,
          'industry': 1,
          'doesnt': 1,
          'look': 1,
          'finished': 1,
          'nc': 1,
          '_really_': 1,
          'parts': 1,
          'admit': 1,
          'avid': 1,
          'fan': 1,
          'series': 1,
          'amusing': 1,
          'diversions': 1,
          'easy': 1,
          'work': 1,
          'stress': 1,
          'anger': 1,
          'mindlessly': 1,
          'thrillride': 1,
          'really': 1,
          'cool': 1,
          'isnt': 1,
          'writers': 1,
          'apparantly': 1,
          'deemed': 1,
          'necessary': 1,
          'lower': 1,
          'target': 1,
          'audience': 1,
          'teens': 1,
          'preschoolers': 1,
          'nsome': 1,
          'plot': 1,
          'elements': 1,
          'nhow': 1,
          'ntake': 1,
          'instance': 1,
          'heroes': 1,
          'nthey': 1,
          'use': 1,
          'giants': 1,
          'spheres': 1,
          'roll': 1,
          'underground': 1,
          'supposedly': 1,
          'thousands': 1,
          'miles': 1,
          'per': 1,
          'hour': 1,
          'oh': 1,
          'nboy': 1,
          'neven': 1,
          'worse': 1,
          'secondary': 1,
          'nblink': 1,
          'youll': 1,
          'miss': 1,
          'em': 1,
          'nmost': 1,
          'depth': 1,
          'nif': 1,
          'thought': 1,
          'aint': 1,
          'nothin': 1,
          'yet': 1,
          '75': 1,
          'introduced': 1,
          'somebody': 1,
          'bit': 1,
          'either': 1,
          'die': 1,
          'forgotten': 1,
          'ntheres': 1,
          'explanation': 1,
          'nand': 1,
          'final': 1,
          'blasphemy': 1,
          'fans': 1,
          'waiting': 1,
          'rabidly': 1,
          'hyped': 1,
          'intricate': 1,
          'lasted': 1,
          '3': 1,
          'sort': 1,
          'ended': 1,
          'almost': 1,
          'nto': 1,
          'sum': 1,
          'rent': 1,
          'fastforward': 1,
          'nneg': 1}),
 Counter({'wife': 5,
          'astronauts': 4,
          'theron': 2,
          'far': 2,
          'rosemarys': 2,
          'species': 2,
          'advocate': 2,
          'depp': 2,
          'get': 2,
          'similar': 2,
          'n': 2,
          'movie': 2,
          'story': 2,
          'hear': 2,
          'charlize': 1,
          'plays': 1,
          'young': 1,
          'woman': 1,
          'nervous': 1,
          'demeanor': 1,
          'pixiehairdo': 1,
          'demon': 1,
          'spawn': 1,
          'unwittingly': 1,
          'growing': 1,
          'belly': 1,
          'nif': 1,
          'name': 1,
          'wasnt': 1,
          'jillian': 1,
          'makers': 1,
          'embarrassing': 1,
          'bit': 1,
          'scifi': 1,
          'shlock': 1,
          'could': 1,
          'come': 1,
          'appropriate': 1,
          'title': 1,
          'nwhat': 1,
          'shame': 1,
          'see': 1,
          'gifted': 1,
          'actress': 1,
          'oscarworthy': 1,
          'devils': 1,
          'struggle': 1,
          'lamest': 1,
          'ripoff': 1,
          'screendom': 1,
          'classic': 1,
          'recent': 1,
          'memory': 1,
          'nok': 1,
          'maybe': 1,
          'deviates': 1,
          'baby': 1,
          'turf': 1,
          'setup': 1,
          'finds': 1,
          'heroine': 1,
          'terrorized': 1,
          'satans': 1,
          'minions': 1,
          'possessed': 1,
          'husband': 1,
          'johnny': 1,
          'shuttle': 1,
          'pilot': 1,
          'whose': 1,
          'mission': 1,
          'mishap': 1,
          'leaves': 1,
          'um': 1,
          'changed': 1,
          'man': 1,
          'npredictably': 1,
          'missus': 1,
          'sequence': 1,
          'best': 1,
          'described': 1,
          'unpleasant': 1,
          'evil': 1,
          'seed': 1,
          'impregnating': 1,
          'twins': 1,
          'realizing': 1,
          'great': 1,
          'bowfinger': 1,
          'line': 1,
          'alien': 1,
          'love': 1,
          'ntherons': 1,
          'character': 1,
          'faced': 1,
          'dilemma': 1,
          'horror': 1,
          'resonating': 1,
          'strongly': 1,
          'astronaut': 1,
          'provides': 1,
          'artificial': 1,
          'anxiety': 1,
          'nlast': 1,
          'years': 1,
          'equally': 1,
          'noodleheaded': 1,
          'ii': 1,
          'spun': 1,
          'premise': 1,
          'breeding': 1,
          'habits': 1,
          'extraterrestrial': 1,
          'earth': 1,
          'least': 1,
          'less': 1,
          'knew': 1,
          'garbage': 1,
          'grave': 1,
          'humorfree': 1,
          'passing': 1,
          'increasingly': 1,
          'silly': 1,
          'fullfledged': 1,
          'serious': 1,
          'right': 1,
          'ambiguous': 1,
          'finale': 1,
          'isnt': 1,
          'even': 1,
          'going': 1,
          'satisfy': 1,
          'whove': 1,
          'stayed': 1,
          'thus': 1,
          'nheres': 1,
          'hint': 1,
          'involves': 1,
          'lots': 1,
          'water': 1,
          'electrical': 1,
          'equipment': 1,
          'special': 1,
          'effect': 1,
          'abyss': 1,
          'tots': 1,
          'doubled': 1,
          'adam': 1,
          'sandlers': 1,
          'costar': 1,
          'big': 1,
          'daddy': 1,
          'ndraw': 1,
          'conclusions': 1,
          'ndirectorwriter': 1,
          'rand': 1,
          'ravich': 1,
          'coats': 1,
          'proceedings': 1,
          'dynamic': 1,
          'sights': 1,
          'masterminded': 1,
          'legendary': 1,
          'e': 1,
          'ncinematographer': 1,
          'allen': 1,
          'daviau': 1,
          'often': 1,
          'favors': 1,
          'films': 1,
          'visual': 1,
          'presentation': 1,
          'hes': 1,
          'trying': 1,
          'tell': 1,
          'nthis': 1,
          'bodes': 1,
          'horribly': 1,
          'dramatic': 1,
          'development': 1,
          'like': 1,
          'surfacing': 1,
          'suspicious': 1,
          'nasa': 1,
          'official': 1,
          'speed': 1,
          'joe': 1,
          'morton': 1,
          'instigate': 1,
          'jills': 1,
          'slow': 1,
          'stupid': 1,
          'comprehension': 1,
          'truth': 1,
          'nhis': 1,
          'hypererratic': 1,
          'behavior': 1,
          'probably': 1,
          'supposed': 1,
          'give': 1,
          'paranoid': 1,
          'edge': 1,
          'ninstead': 1,
          'adds': 1,
          'phoniness': 1,
          'ntheron': 1,
          'certainly': 1,
          'beyond': 1,
          'junk': 1,
          'chances': 1,
          'prove': 1,
          'fall': 1,
          'part': 1,
          'imposing': 1,
          'ensemble': 1,
          'case': 1,
          'john': 1,
          'irving': 1,
          'adaptation': 1,
          'cider': 1,
          'house': 1,
          'rules': 1,
          'lead': 1,
          'tim': 1,
          'burtons': 1,
          'eagerlyawaited': 1,
          'sleepy': 1,
          'hollow': 1,
          'nundeserving': 1,
          'talent': 1,
          'manages': 1,
          'derivative': 1,
          'dull': 1,
          'uninvolving': 1,
          'despite': 1,
          'seemingly': 1,
          'ripe': 1,
          'potential': 1,
          'unintentional': 1,
          'laughs': 1,
          'nin': 1,
          'space': 1,
          'one': 1,
          'scream': 1,
          'nbut': 1,
          'theatre': 1,
          'everyone': 1,
          'snore': 1,
          'nneg': 1}),
 Counter({'chow': 3,
          'good': 2,
          'super': 2,
          'action': 2,
          'scene': 2,
          'john': 2,
          'woo': 2,
          'chows': 2,
          'would': 2,
          'job': 2,
          'requires': 2,
          'kill': 2,
          'nthis': 2,
          'replacement': 2,
          'killers': 2,
          'various': 2,
          'quite': 2,
          'shoot': 2,
          'making': 2,
          'nthe': 2,
          'lame': 2,
          'well': 2,
          'theres': 2,
          'like': 2,
          'first': 2,
          'n': 2,
          'hill': 2,
          'ten': 1,
          'years': 1,
          'cool': 1,
          'yun': 1,
          'fat': 1,
          'enjoyed': 1,
          'god': 1,
          'hood': 1,
          'status': 1,
          'hong': 1,
          'kong': 1,
          'nnow': 1,
          'followed': 1,
          'footsteps': 1,
          'director': 1,
          'launched': 1,
          'stardom': 1,
          'acclaimed': 1,
          'better': 1,
          'tomorrow': 1,
          'moving': 1,
          'hollywood': 1,
          'ni': 1,
          'reservations': 1,
          'move': 1,
          'seem': 1,
          'right': 1,
          'nchow': 1,
          'plays': 1,
          'hitman': 1,
          'jobs': 1,
          'order': 1,
          'repay': 1,
          'debt': 1,
          'nhis': 1,
          'final': 1,
          'policemans': 1,
          'seven': 1,
          'year': 1,
          'old': 1,
          'boy': 1,
          'refuses': 1,
          'runs': 1,
          'nhowever': 1,
          'forced': 1,
          'violent': 1,
          'confrontation': 1,
          'family': 1,
          'threatned': 1,
          'brought': 1,
          'ncue': 1,
          'around': 1,
          '80': 1,
          'minutes': 1,
          'frankly': 1,
          'tedious': 1,
          'outs': 1,
          'take': 1,
          'place': 1,
          'locations': 1,
          'nsome': 1,
          'thought': 1,
          'gone': 1,
          'bit': 1,
          'different': 1,
          'unfortunately': 1,
          'end': 1,
          'plain': 1,
          'boring': 1,
          'car': 1,
          'wash': 1,
          'found': 1,
          'laughing': 1,
          'stupid': 1,
          'looked': 1,
          'ntut': 1,
          'tut': 1,
          'emphasis': 1,
          'constant': 1,
          'seemed': 1,
          'accompanying': 1,
          'music': 1,
          'could': 1,
          'sworn': 1,
          'one': 1,
          'piece': 1,
          'ripped': 1,
          'bruckheimer': 1,
          'movie': 1,
          'content': 1,
          'nmia': 1,
          'sorvino': 1,
          'passport': 1,
          'forger': 1,
          'dragged': 1,
          'affay': 1,
          'also': 1,
          'provides': 1,
          'love': 1,
          'interest': 1,
          'rather': 1,
          'handy': 1,
          'gun': 1,
          'ndirector': 1,
          'antoine': 1,
          'arqua': 1,
          'clearly': 1,
          'observed': 1,
          'excellent': 1,
          'acting': 1,
          'capabilties': 1,
          'simply': 1,
          'mutter': 1,
          'lines': 1,
          'broken': 1,
          'english': 1,
          'look': 1,
          'flash': 1,
          'stands': 1,
          'shoots': 1,
          'nchows': 1,
          'trademark': 1,
          'twin': 1,
          'pistol': 1,
          'shooting': 1,
          'saved': 1,
          'finale': 1,
          'fairness': 1,
          'even': 1,
          'toothpick': 1,
          'site': 1,
          'nand': 1,
          'cop': 1,
          'thats': 1,
          'damned': 1,
          'unforgiveable': 1,
          'nto': 1,
          'round': 1,
          'pretty': 1,
          'darned': 1,
          'outing': 1,
          'nit': 1,
          'appear': 1,
          'left': 1,
          'asia': 1,
          '90': 1,
          'minute': 1,
          'pop': 1,
          'video': 1,
          'wanted': 1,
          'considering': 1,
          'exec': 1,
          'producer': 1,
          'say': 1,
          'nwatch': 1,
          'killer': 1,
          'weep': 1,
          'difference': 1,
          'nreview': 1,
          'chris': 1,
          'room': 1,
          'top': 1,
          'telling': 1,
          'still': 1,
          'must': 1,
          'learn': 1,
          'smile': 1,
          'want': 1,
          'folks': 1,
          'nneg': 1}),
 Counter({'libby': 6,
          'husband': 4,
          'nick': 4,
          'matty': 4,
          'n': 4,
          'double': 3,
          'jeopardy': 3,
          'nwhen': 3,
          'script': 3,
          'ashley': 2,
          'judd': 2,
          'little': 2,
          'life': 2,
          'son': 2,
          'house': 2,
          'ocean': 2,
          'bruce': 2,
          'makes': 2,
          'sent': 2,
          'friend': 2,
          'nlibby': 2,
          'theory': 2,
          'gets': 2,
          'parole': 2,
          'travis': 2,
          'jones': 2,
          'former': 2,
          'law': 2,
          'professor': 2,
          'driving': 2,
          'ntravis': 2,
          'fugitive': 2,
          'never': 2,
          'get': 2,
          'line': 2,
          'judds': 2,
          'us': 2,
          'work': 2,
          'parsons': 1,
          'perfect': 1,
          'rich': 1,
          'cute': 1,
          'greenwood': 1,
          'takes': 1,
          'sailing': 1,
          'awakes': 1,
          'find': 1,
          'gone': 1,
          'hands': 1,
          'covered': 1,
          'blood': 1,
          'njust': 1,
          'deck': 1,
          'picks': 1,
          'bloody': 1,
          'knife': 1,
          'lying': 1,
          'coast': 1,
          'guard': 1,
          'arrives': 1,
          'response': 1,
          'distress': 1,
          'call': 1,
          'vanished': 1,
          'nshes': 1,
          'convicted': 1,
          'murder': 1,
          'course': 1,
          'leaves': 1,
          'benjamin': 1,
          'weir': 1,
          'best': 1,
          'annabeth': 1,
          'gish': 1,
          'ntime': 1,
          'passes': 1,
          'disappears': 1,
          'nduring': 1,
          'last': 1,
          'phone': 1,
          'conversation': 1,
          'hears': 1,
          'yell': 1,
          'daddy': 1,
          'nand': 1,
          'realizes': 1,
          'still': 1,
          'alive': 1,
          'serves': 1,
          'six': 1,
          'years': 1,
          'growing': 1,
          'harder': 1,
          'driven': 1,
          'desire': 1,
          'kill': 1,
          'based': 1,
          'amendment': 1,
          'impunity': 1,
          'shes': 1,
          'halfway': 1,
          'run': 1,
          'lehman': 1,
          'tommy': 1,
          'lee': 1,
          'ruined': 1,
          'drunk': 1,
          'accident': 1,
          'nafter': 1,
          'breaking': 1,
          'entering': 1,
          'destruction': 1,
          'property': 1,
          'jumps': 1,
          'lams': 1,
          'across': 1,
          'country': 1,
          'looking': 1,
          'pursues': 1,
          'naturally': 1,
          'watereddown': 1,
          'version': 1,
          'sleepwalking': 1,
          'wellworn': 1,
          'pursuer': 1,
          'persona': 1,
          'nalthough': 1,
          'leaps': 1,
          'bus': 1,
          'collides': 1,
          'train': 1,
          'manages': 1,
          'nailbiters': 1,
          'chased': 1,
          'beach': 1,
          'jeep': 1,
          'chained': 1,
          'car': 1,
          'plunges': 1,
          'sealed': 1,
          'coffin': 1,
          'add': 1,
          'much': 1,
          'needed': 1,
          'thrills': 1,
          'anemic': 1,
          'slowmoving': 1,
          'ncharacter': 1,
          'development': 1,
          'thin': 1,
          'intriguing': 1,
          'backstory': 1,
          'mentioned': 1,
          'couple': 1,
          'times': 1,
          'effect': 1,
          'story': 1,
          'think': 1,
          'made': 1,
          'could': 1,
          'verify': 1,
          'doublejeopardy': 1,
          'drop': 1,
          'nits': 1,
          'long': 1,
          'way': 1,
          'go': 1,
          'one': 1,
          'ntheres': 1,
          'considerable': 1,
          'sexual': 1,
          'tension': 1,
          'hey': 1,
          'theres': 1,
          'something': 1,
          'didnt': 1,
          'goes': 1,
          'anywhere': 1,
          'tvmovie': 1,
          'everywoman': 1,
          'intense': 1,
          'performance': 1,
          'draws': 1,
          'forget': 1,
          'character': 1,
          'distinguishing': 1,
          'characteristics': 1,
          'nthis': 1,
          'prominent': 1,
          'role': 1,
          'date': 1,
          'proves': 1,
          'light': 1,
          'screen': 1,
          'nlets': 1,
          'hope': 1,
          'hollywood': 1,
          'gives': 1,
          'next': 1,
          'time': 1,
          'around': 1,
          'nthe': 1,
          'quality': 1,
          'director': 1,
          'beresfords': 1,
          'movies': 1,
          'seems': 1,
          'depend': 1,
          'luck': 1,
          'good': 1,
          'strong': 1,
          'cast': 1,
          'turns': 1,
          'oscarcaliber': 1,
          'like': 1,
          'breaker': 1,
          'morant': 1,
          'miss': 1,
          'daisy': 1,
          'tender': 1,
          'mercies': 1,
          'doesnt': 1,
          'nwe': 1,
          'nscreenwriters': 1,
          'david': 1,
          'weisberg': 1,
          'douglas': 1,
          'cook': 1,
          'previously': 1,
          'collaborated': 1,
          'rock': 1,
          'probably': 1,
          'benefited': 1,
          'numerous': 1,
          'uncredited': 1,
          'rewrites': 1,
          'nbottom': 1,
          'tries': 1,
          'hard': 1,
          'cant': 1,
          'save': 1,
          'predictable': 1,
          'bore': 1,
          'nneg': 1}),
 Counter({'get': 4,
          'mystery': 3,
          'men': 3,
          'n': 2,
          'yes': 2,
          'amazing': 2,
          'frankenstein': 2,
          'hot': 2,
          'c': 2,
          'thats': 2,
          'stiller': 2,
          'paul': 2,
          'reubens': 2,
          'nthe': 2,
          'far': 1,
          'concerned': 1,
          'burning': 1,
          'question': 1,
          'less': 1,
          'really': 1,
          'bad': 1,
          'looks': 1,
          'trailer': 1,
          'answer': 1,
          'unequivocal': 1,
          'name': 1,
          'sweet': 1,
          'jesus': 1,
          'firsttime': 1,
          'director': 1,
          'kinka': 1,
          'usher': 1,
          'firstrate': 1,
          'cast': 1,
          'act': 1,
          'muck': 1,
          'features': 1,
          'greg': 1,
          'kinnear': 1,
          'heavilysponsored': 1,
          'captain': 1,
          'geoffrey': 1,
          'rush': 1,
          'arch': 1,
          'nemesis': 1,
          'singular': 1,
          'casanova': 1,
          'na': 1,
          'veritable': 1,
          'police': 1,
          'lineup': 1,
          'hollywood': 1,
          'talent': 1,
          'plays': 1,
          'superhero': 1,
          'wannabes': 1,
          'title': 1,
          'join': 1,
          'forces': 1,
          'tight': 1,
          'spot': 1,
          'puts': 1,
          'screws': 1,
          'champion': 1,
          'city': 1,
          'ntheres': 1,
          'william': 1,
          'h': 1,
          'macy': 1,
          'mildmannered': 1,
          'shoveler': 1,
          'hank': 1,
          'azaria': 1,
          'cutleryflinging': 1,
          'blue': 1,
          'raja': 1,
          'knives': 1,
          'phony': 1,
          'english': 1,
          'accent': 1,
          'sharp': 1,
          'ben': 1,
          'mr': 1,
          'furious': 1,
          'whose': 1,
          'power': 1,
          'seems': 1,
          'ability': 1,
          'collar': 1,
          'janeane': 1,
          'garofalo': 1,
          'crazed': 1,
          'bowler': 1,
          'fathers': 1,
          'skull': 1,
          'interestingly': 1,
          'preserved': 1,
          'wes': 1,
          'studi': 1,
          'rhetoricspouting': 1,
          'cowled': 1,
          'avenger': 1,
          'kel': 1,
          'mitchell': 1,
          'token': 1,
          'adding': 1,
          'insult': 1,
          'injury': 1,
          'invisible': 1,
          'nblack': 1,
          'guy': 1,
          'nbringing': 1,
          'rear': 1,
          'speak': 1,
          'pee': 1,
          'wee': 1,
          'herman': 1,
          'nwell': 1,
          'lets': 1,
          'call': 1,
          'gas': 1,
          'man': 1,
          'production': 1,
          'design': 1,
          'overblown': 1,
          'special': 1,
          'effects': 1,
          'overdone': 1,
          'script': 1,
          'based': 1,
          'bob': 1,
          'burdens': 1,
          'dark': 1,
          'horse': 1,
          'comic': 1,
          'book': 1,
          'series': 1,
          'overbaked': 1,
          'appealing': 1,
          'actors': 1,
          'uniformly': 1,
          'good': 1,
          'even': 1,
          'stellar': 1,
          'cant': 1,
          'begin': 1,
          'save': 1,
          'one': 1,
          'big': 1,
          'mess': 1,
          'nyoure': 1,
          'better': 1,
          'renting': 1,
          'video': 1,
          'pressing': 1,
          'fastforward': 1,
          'funny': 1,
          'bits': 1,
          'ni': 1,
          'believe': 1,
          'counted': 1,
          'three': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'heartbreakers': 5,
          'sex': 4,
          'dean': 4,
          'weaver': 4,
          'max': 4,
          'page': 4,
          'minutes': 3,
          'secretary': 3,
          'new': 3,
          'ni': 3,
          'like': 3,
          'hope': 3,
          'made': 3,
          'love': 3,
          'liotta': 3,
          'hewitt': 3,
          'hackman': 3,
          'smoking': 3,
          'wanda': 3,
          'nray': 2,
          'office': 2,
          'nwhile': 2,
          'threes': 2,
          'company': 2,
          'next': 2,
          'lingering': 2,
          'shots': 2,
          'young': 2,
          'stuck': 2,
          'bob': 2,
          'breasts': 2,
          'laughed': 2,
          'n': 2,
          'jennifer': 2,
          'women': 2,
          'nin': 2,
          'jason': 2,
          'lee': 2,
          'bancroft': 2,
          'nif': 2,
          'two': 2,
          'catches': 2,
          'beach': 2,
          'jack': 2,
          'nas': 2,
          'enough': 2,
          'mind': 2,
          'fish': 2,
          'called': 2,
          'done': 2,
          'nothing': 2,
          'merely': 2,
          'bit': 2,
          'low': 2,
          'swirling': 1,
          'sick': 1,
          'feeling': 1,
          'hit': 1,
          'liottas': 1,
          'character': 1,
          'making': 1,
          'wife': 1,
          'knocked': 1,
          'door': 1,
          'scrambling': 1,
          'collect': 1,
          'frantically': 1,
          'shouted': 1,
          'wait': 1,
          'er': 1,
          'mean': 1,
          'sec': 1,
          'struck': 1,
          'wave': 1,
          'revulsion': 1,
          'thinking': 1,
          'geez': 1,
          'didnt': 1,
          'lines': 1,
          'die': 1,
          'canceled': 1,
          'nover': 1,
          'barely': 1,
          'double': 1,
          'entendres': 1,
          'cleavage': 1,
          'grew': 1,
          'numerous': 1,
          'realized': 1,
          'mindset': 1,
          'behind': 1,
          'predated': 1,
          'nsuddenly': 1,
          'outofbody': 1,
          'experience': 1,
          'internal': 1,
          'wayback': 1,
          'machine': 1,
          'swept': 1,
          'mid1960s': 1,
          'nall': 1,
          'across': 1,
          'america': 1,
          'counterculture': 1,
          'growing': 1,
          'wildfire': 1,
          'scant': 1,
          'evidence': 1,
          'tv': 1,
          'people': 1,
          'challenging': 1,
          'traditional': 1,
          'values': 1,
          'streets': 1,
          'frustrated': 1,
          'teenagers': 1,
          'home': 1,
          'sulking': 1,
          'parents': 1,
          'enjoyed': 1,
          'latest': 1,
          'special': 1,
          'nwomen': 1,
          'skimpy': 1,
          'bathing': 1,
          'suits': 1,
          'would': 1,
          'prance': 1,
          'onscreen': 1,
          'growling': 1,
          'noises': 1,
          'leered': 1,
          'non': 1,
          'another': 1,
          'channel': 1,
          'martin': 1,
          'wisecracks': 1,
          'booze': 1,
          'broads': 1,
          'peter': 1,
          'lawford': 1,
          'decked': 1,
          'beads': 1,
          'nehru': 1,
          'jacket': 1,
          'purred': 1,
          'suggestive': 1,
          'oneliners': 1,
          'ogled': 1,
          'gogo': 1,
          'dancers': 1,
          'adults': 1,
          'reeks': 1,
          'stagnant': 1,
          'mentality': 1,
          'hewitts': 1,
          'vahvahvoom': 1,
          'leaden': 1,
          'screenplay': 1,
          'paints': 1,
          'haughty': 1,
          'schemers': 1,
          'men': 1,
          'drooling': 1,
          'buffoons': 1,
          'sexobsessed': 1,
          'realize': 1,
          'manipulated': 1,
          'addition': 1,
          'cast': 1,
          'includes': 1,
          'sigourney': 1,
          'gene': 1,
          'nora': 1,
          'dunn': 1,
          'anne': 1,
          'cant': 1,
          'imagine': 1,
          'drew': 1,
          'performers': 1,
          'caliber': 1,
          'project': 1,
          'nperhaps': 1,
          'thought': 1,
          'parody': 1,
          'sniggering': 1,
          'comedies': 1,
          '60s': 1,
          'sadly': 1,
          'mistaken': 1,
          'story': 1,
          'revolves': 1,
          'around': 1,
          'motherdaughter': 1,
          'conteam': 1,
          'nit': 1,
          'opens': 1,
          'marriage': 1,
          'jersey': 1,
          'chop': 1,
          'shop': 1,
          'operator': 1,
          'nhaving': 1,
          'withheld': 1,
          'honeymoon': 1,
          'pretends': 1,
          'pass': 1,
          'wedding': 1,
          'night': 1,
          'morning': 1,
          'feigns': 1,
          'illness': 1,
          'sending': 1,
          'horny': 1,
          'ends': 1,
          'arms': 1,
          'njust': 1,
          'get': 1,
          'overtly': 1,
          'physical': 1,
          'bursts': 1,
          'room': 1,
          'horrified': 1,
          'bride': 1,
          'dissolves': 1,
          'union': 1,
          'garnering': 1,
          'healthy': 1,
          'cash': 1,
          'settlement': 1,
          'along': 1,
          'way': 1,
          'nof': 1,
          'course': 1,
          'really': 1,
          'daughter': 1,
          'whole': 1,
          'thing': 1,
          'setup': 1,
          'move': 1,
          'irs': 1,
          'agent': 1,
          'demands': 1,
          'huge': 1,
          'amount': 1,
          'money': 1,
          'cover': 1,
          'unpaid': 1,
          'taxes': 1,
          'desperate': 1,
          'need': 1,
          'funds': 1,
          'head': 1,
          'palm': 1,
          'replay': 1,
          'scam': 1,
          'ntheir': 1,
          'mark': 1,
          'time': 1,
          'william': 1,
          'b': 1,
          'tensy': 1,
          'hideous': 1,
          'makeup': 1,
          'decrepit': 1,
          'tobacco': 1,
          'tycoon': 1,
          'obsessed': 1,
          'joys': 1,
          'nmax': 1,
          'starts': 1,
          'put': 1,
          'game': 1,
          'action': 1,
          'repelled': 1,
          'old': 1,
          'man': 1,
          'angry': 1,
          'mom': 1,
          'slips': 1,
          'enact': 1,
          'score': 1,
          'targeting': 1,
          'laid': 1,
          'back': 1,
          'bar': 1,
          'owner': 1,
          'worth': 1,
          'fortune': 1,
          'ncomplications': 1,
          'arise': 1,
          'realizes': 1,
          'goodnatured': 1,
          'stirring': 1,
          'actual': 1,
          'emotions': 1,
          'steely': 1,
          'little': 1,
          'heart': 1,
          'wasnt': 1,
          'reappears': 1,
          'scene': 1,
          'revenge': 1,
          'attempt': 1,
          'weld': 1,
          'romance': 1,
          'onto': 1,
          'caper': 1,
          'comedy': 1,
          'served': 1,
          'remind': 1,
          'infinitely': 1,
          'superior': 1,
          'wont': 1,
          'bother': 1,
          'compare': 1,
          'nsuffice': 1,
          'say': 1,
          'everything': 1,
          'right': 1,
          'wrong': 1,
          'soulless': 1,
          'inept': 1,
          '123': 1,
          'least': 1,
          'halfhour': 1,
          'long': 1,
          'nsigourney': 1,
          'throw': 1,
          'parts': 1,
          'nowhere': 1,
          'go': 1,
          'metallic': 1,
          'characters': 1,
          'ngene': 1,
          'utterly': 1,
          'wasted': 1,
          'onenote': 1,
          'onejoke': 1,
          'part': 1,
          'coughing': 1,
          'waxing': 1,
          'rhapsodic': 1,
          'npoor': 1,
          'ingenue': 1,
          'role': 1,
          'normally': 1,
          'charismatic': 1,
          'actor': 1,
          'comes': 1,
          'bland': 1,
          'manages': 1,
          'squeeze': 1,
          'tiny': 1,
          'humanity': 1,
          'humor': 1,
          'walking': 1,
          'clich': 1,
          'point': 1,
          'film': 1,
          'employing': 1,
          'russian': 1,
          'accent': 1,
          'bad': 1,
          'make': 1,
          'boris': 1,
          'natasha': 1,
          'wince': 1,
          'halfassed': 1,
          'slapstick': 1,
          'broken': 1,
          'penis': 1,
          'statue': 1,
          'nbear': 1,
          'though': 1,
          'worst': 1,
          'segment': 1,
          'movie': 1,
          'points': 1,
          'remember': 1,
          'specials': 1,
          'fondness': 1,
          'might': 1,
          'cup': 1,
          'tea': 1,
          'im': 1,
          'going': 1,
          'watch': 1,
          'try': 1,
          'forget': 1,
          'ever': 1,
          'saw': 1,
          'nneg': 1}),
 Counter({'comedy': 4,
          'like': 3,
          'romantic': 3,
          'biggs': 2,
          'suvari': 2,
          'looking': 2,
          'paul': 2,
          'characters': 2,
          'nif': 2,
          'funny': 2,
          'youve': 2,
          'seen': 2,
          'american': 1,
          'pie': 1,
          'alums': 1,
          'jason': 1,
          'mena': 1,
          'star': 1,
          'summers': 1,
          'attempt': 1,
          'capitalize': 1,
          'youth': 1,
          'market': 1,
          'young': 1,
          'people': 1,
          'relate': 1,
          'combines': 1,
          'generic': 1,
          'hollywood': 1,
          'cute': 1,
          'coupleness': 1,
          'zany': 1,
          'nits': 1,
          'student': 1,
          'gets': 1,
          'scholarship': 1,
          'college': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'sticks': 1,
          'sore': 1,
          'thumb': 1,
          'falls': 1,
          'dora': 1,
          'ditzy': 1,
          'heroinchic': 1,
          'goth': 1,
          'chick': 1,
          'ambition': 1,
          'selfrespect': 1,
          'whatsoever': 1,
          'allows': 1,
          'pushed': 1,
          'around': 1,
          'hickboy': 1,
          'nso': 1,
          'weve': 1,
          'got': 1,
          'fishoutwater': 1,
          'formula': 1,
          'mixed': 1,
          'meetcute': 1,
          'ideally': 1,
          'make': 1,
          'good': 1,
          'movie': 1,
          'nunfortunately': 1,
          'atrocious': 1,
          'screenplay': 1,
          'boring': 1,
          'direction': 1,
          'clueless': 1,
          'auteur': 1,
          'amy': 1,
          'heckerling': 1,
          'successfully': 1,
          'manages': 1,
          'screw': 1,
          'everything': 1,
          'film': 1,
          'nthese': 1,
          'totally': 1,
          'unrealistic': 1,
          'unbelievable': 1,
          'everyone': 1,
          'age': 1,
          '30': 1,
          'stoned': 1,
          'raver': 1,
          'ntheres': 1,
          'background': 1,
          'details': 1,
          'anyone': 1,
          'anything': 1,
          'bunch': 1,
          'cartoon': 1,
          'running': 1,
          'nnot': 1,
          'mention': 1,
          'story': 1,
          'virtually': 1,
          'nonexistant': 1,
          'contains': 1,
          'many': 1,
          'plotholes': 1,
          'swiss': 1,
          'cheese': 1,
          'neven': 1,
          'basic': 1,
          'editing': 1,
          'bad': 1,
          'youre': 1,
          'stay': 1,
          'far': 1,
          'away': 1,
          'one': 1,
          'neither': 1,
          'ni': 1,
          'saw': 1,
          'packed': 1,
          'cinema': 1,
          'opening': 1,
          'night': 1,
          'audience': 1,
          'barely': 1,
          'laughed': 1,
          'commericials': 1,
          'parts': 1,
          'first': 1,
          'five': 1,
          'minutes': 1,
          'nneg': 1}),
 Counter({'wild': 11,
          'west': 10,
          'smith': 5,
          'one': 5,
          'summer': 4,
          'film': 4,
          'nbut': 4,
          'effects': 4,
          'nthe': 4,
          'ni': 3,
          'go': 3,
          'nwild': 3,
          'plot': 3,
          'movie': 3,
          'casting': 3,
          'actor': 3,
          'role': 3,
          'little': 3,
          'hit': 2,
          'enormous': 2,
          'huge': 2,
          'robert': 2,
          'conrad': 2,
          'director': 2,
          'make': 2,
          'kevin': 2,
          'kline': 2,
          'special': 2,
          'could': 2,
          'possibly': 2,
          'never': 2,
          'chance': 2,
          'lot': 2,
          'entire': 2,
          'technical': 2,
          'release': 2,
          'usually': 2,
          'box': 2,
          'office': 2,
          'government': 2,
          'gordon': 2,
          'even': 2,
          'highly': 2,
          'last': 1,
          'featurelength': 1,
          'version': 1,
          'avengers': 1,
          'theaters': 1,
          'tune': 1,
          'unanimous': 1,
          'critical': 1,
          'panning': 1,
          'nbased': 1,
          'famous': 1,
          '60s': 1,
          'television': 1,
          'show': 1,
          'boxoffice': 1,
          'flop': 1,
          'disappointment': 1,
          'warner': 1,
          'bros': 1,
          'year': 1,
          'later': 1,
          'studio': 1,
          'old': 1,
          'tricks': 1,
          'unnecessary': 1,
          'revival': 1,
          'program': 1,
          'sounded': 1,
          'promising': 1,
          'tagteam': 1,
          'star': 1,
          'barry': 1,
          'sonnenfeld': 1,
          'contributed': 1,
          'men': 1,
          'black': 1,
          'financial': 1,
          'success': 1,
          'reins': 1,
          'nand': 1,
          'costar': 1,
          'attached': 1,
          'project': 1,
          'well': 1,
          'substantial': 1,
          'budget': 1,
          'spice': 1,
          'mean': 1,
          'wrong': 1,
          'answer': 1,
          'everything': 1,
          'cinematic': 1,
          'abomination': 1,
          'entirely': 1,
          'pointless': 1,
          'begin': 1,
          'given': 1,
          'proper': 1,
          'get': 1,
          'gate': 1,
          'nthere': 1,
          'fancy': 1,
          'handful': 1,
          'distinguished': 1,
          'actors': 1,
          'try': 1,
          'desperately': 1,
          'tunnel': 1,
          'inane': 1,
          'lasting': 1,
          'impression': 1,
          'script': 1,
          'deliriously': 1,
          'uneven': 1,
          'course': 1,
          'human': 1,
          'achievement': 1,
          'salvage': 1,
          'nat': 1,
          'square': 1,
          'bizarre': 1,
          'case': 1,
          'nwill': 1,
          'plays': 1,
          'james': 1,
          'renegade': 1,
          'cowboy': 1,
          'originally': 1,
          'played': 1,
          'white': 1,
          'tv': 1,
          'series': 1,
          'nmy': 1,
          'guess': 1,
          'regarding': 1,
          'africanamerican': 1,
          'simple': 1,
          'cozy': 1,
          'summertime': 1,
          'big': 1,
          'bucks': 1,
          'involved': 1,
          'nsmith': 1,
          'talented': 1,
          'performer': 1,
          'brings': 1,
          'swift': 1,
          'assurance': 1,
          'comic': 1,
          'relief': 1,
          'material': 1,
          'ideal': 1,
          'nhes': 1,
          'much': 1,
          'joker': 1,
          'heard': 1,
          'initial': 1,
          'included': 1,
          'george': 1,
          'clooney': 1,
          'lead': 1,
          'frankly': 1,
          'sounds': 1,
          'plausible': 1,
          'nwhat': 1,
          'makes': 1,
          'matters': 1,
          'worse': 1,
          'goes': 1,
          'selfassurance': 1,
          'eyes': 1,
          'practically': 1,
          'sense': 1,
          'contentment': 1,
          'fact': 1,
          'knows': 1,
          'involves': 1,
          'crossdressing': 1,
          'agent': 1,
          'artemus': 1,
          'assigned': 1,
          'president': 1,
          'recover': 1,
          'group': 1,
          'kidnapped': 1,
          'scientists': 1,
          'trail': 1,
          'leads': 1,
          'diabolical': 1,
          'dr': 1,
          'arliss': 1,
          'loveless': 1,
          'kenneth': 1,
          'branagh': 1,
          'man': 1,
          'lower': 1,
          'body': 1,
          'speaks': 1,
          'dry': 1,
          'witty': 1,
          'southern': 1,
          'accent': 1,
          'nloveless': 1,
          'taken': 1,
          'countrys': 1,
          'top': 1,
          'minds': 1,
          'hostage': 1,
          'assist': 1,
          'deranged': 1,
          'plan': 1,
          'total': 1,
          'control': 1,
          'using': 1,
          'lethal': 1,
          'superweapons': 1,
          'destroy': 1,
          'towns': 1,
          'none': 1,
          'weapon': 1,
          '80foot': 1,
          'mechanical': 1,
          'tarantula': 1,
          'bearing': 1,
          'eight': 1,
          'spindly': 1,
          'legs': 1,
          'thrashing': 1,
          'metal': 1,
          'spewing': 1,
          'fireballs': 1,
          'left': 1,
          'right': 1,
          'visual': 1,
          'bring': 1,
          'metallic': 1,
          'bug': 1,
          'life': 1,
          'spectacular': 1,
          'seamlessly': 1,
          'blending': 1,
          'computergenerated': 1,
          'imagery': 1,
          'western': 1,
          'surroundings': 1,
          'nunfortunately': 1,
          'seem': 1,
          'detached': 1,
          'story': 1,
          'support': 1,
          'films': 1,
          'deficiencies': 1,
          'undoubtedly': 1,
          'main': 1,
          'problem': 1,
          'running': 1,
          'gag': 1,
          'truly': 1,
          'works': 1,
          'nmost': 1,
          'jokes': 1,
          'care': 1,
          'die': 1,
          'arrival': 1,
          'nif': 1,
          'thing': 1,
          'saving': 1,
          'grace': 1,
          'performances': 1,
          'mostly': 1,
          'offkilter': 1,
          'poorly': 1,
          'delivered': 1,
          'nkline': 1,
          'admirable': 1,
          'invent': 1,
          'silly': 1,
          'devices': 1,
          'spot': 1,
          'nsalma': 1,
          'hayek': 1,
          'wasted': 1,
          'romantic': 1,
          'interest': 1,
          'viewed': 1,
          'window': 1,
          'dressing': 1,
          'look': 1,
          'pretty': 1,
          'create': 1,
          'conflict': 1,
          'nbranagh': 1,
          'esteemed': 1,
          'shakespearean': 1,
          'adds': 1,
          'marginal': 1,
          'enjoyment': 1,
          'utterly': 1,
          'weird': 1,
          'overthetop': 1,
          'nrarely': 1,
          'lost': 1,
          'suppose': 1,
          'theres': 1,
          'always': 1,
          'turkey': 1,
          'season': 1,
          'anticipated': 1,
          'bigbudget': 1,
          'manages': 1,
          'completely': 1,
          'disappoint': 1,
          'probably': 1,
          'biggest': 1,
          'disappointments': 1,
          '1999': 1,
          'unlikely': 1,
          'defeat': 1,
          'nperhaps': 1,
          'audiences': 1,
          'less': 1,
          'assured': 1,
          'see': 1,
          'smiths': 1,
          'name': 1,
          'stamped': 1,
          'nafter': 1,
          'hits': 1,
          'independence': 1,
          'day': 1,
          'mib': 1,
          'impressive': 1,
          'addition': 1,
          'resume': 1,
          'nneg': 1}),
 Counter({'gabriel': 8,
          'swordfish': 3,
          'nswordfish': 3,
          'nand': 3,
          'government': 3,
          'movie': 3,
          'nthe': 3,
          'enough': 3,
          'stanley': 3,
          'computer': 3,
          'daughter': 3,
          'one': 3,
          'nhis': 3,
          'travoltas': 2,
          'nit': 2,
          'billions': 2,
          'terrorists': 2,
          'movies': 2,
          'see': 2,
          'nthis': 2,
          'hacker': 2,
          'many': 2,
          'time': 2,
          'little': 2,
          'films': 2,
          'involving': 2,
          'gabriels': 2,
          'head': 2,
          'real': 2,
          'make': 2,
          'character': 2,
          'hero': 2,
          'outset': 1,
          'john': 1,
          'shear': 1,
          'pontificating': 1,
          'status': 1,
          'american': 1,
          'cinema': 1,
          'today': 1,
          'nbasically': 1,
          'says': 1,
          'boils': 1,
          'lack': 1,
          'imagination': 1,
          'among': 1,
          'majority': 1,
          'writers': 1,
          'nhow': 1,
          'ironic': 1,
          'travolta': 1,
          'seems': 1,
          'describing': 1,
          'latest': 1,
          'venture': 1,
          'loud': 1,
          'violent': 1,
          'amoral': 1,
          'audacity': 1,
          'justify': 1,
          'murder': 1,
          'mayhem': 1,
          'name': 1,
          'sustaining': 1,
          'way': 1,
          'life': 1,
          'plan': 1,
          'nby': 1,
          'robbing': 1,
          'using': 1,
          'funds': 1,
          'outterrorize': 1,
          'cynical': 1,
          'relies': 1,
          'audiences': 1,
          'perception': 1,
          'leaders': 1,
          'ineffectual': 1,
          'duplicitous': 1,
          'nonhuman': 1,
          'faceless': 1,
          'entities': 1,
          'worthy': 1,
          'compassion': 1,
          'consideration': 1,
          'plot': 1,
          'preposterous': 1,
          'illogical': 1,
          'leaps': 1,
          'film': 1,
          'ever': 1,
          'slowed': 1,
          'youd': 1,
          'actually': 1,
          'ridiculous': 1,
          'liveaction': 1,
          'road': 1,
          'runner': 1,
          'cartoon': 1,
          'moving': 1,
          'quickly': 1,
          'catch': 1,
          'breath': 1,
          'ask': 1,
          'reasonable': 1,
          'questions': 1,
          'storyline': 1,
          'revolves': 1,
          'around': 1,
          'super': 1,
          'jobson': 1,
          'hugh': 1,
          'jackman': 1,
          'recruited': 1,
          'crack': 1,
          'governments': 1,
          'codes': 1,
          'gather': 1,
          'antiterrorist': 1,
          'campaign': 1,
          'ntalk': 1,
          'whackedout': 1,
          'patriotism': 1,
          'nmy': 1,
          'objections': 1,
          'body': 1,
          'count': 1,
          'high': 1,
          'expected': 1,
          'sort': 1,
          'nits': 1,
          'becoming': 1,
          'bore': 1,
          'watching': 1,
          'anonymous': 1,
          'soldiers': 1,
          'police': 1,
          'officers': 1,
          'agents': 1,
          'blown': 1,
          'bits': 1,
          'nanother': 1,
          'example': 1,
          'family': 1,
          'dynamics': 1,
          '10yearold': 1,
          'exwife': 1,
          'nstanley': 1,
          'though': 1,
          'served': 1,
          'prison': 1,
          'hacking': 1,
          'shown': 1,
          'loving': 1,
          'caring': 1,
          'father': 1,
          'forbidden': 1,
          'ex': 1,
          'girl': 1,
          'naudience': 1,
          'animosity': 1,
          'immediately': 1,
          'created': 1,
          'former': 1,
          'spouse': 1,
          'showing': 1,
          'drinker': 1,
          'smoker': 1,
          'also': 1,
          'sometimes': 1,
          'stars': 1,
          'new': 1,
          'husbands': 1,
          'adult': 1,
          'nthus': 1,
          'found': 1,
          'murdered': 1,
          'late': 1,
          'neither': 1,
          'allowed': 1,
          'grieve': 1,
          'nin': 1,
          'fact': 1,
          'subconsciously': 1,
          'audience': 1,
          'probably': 1,
          'glad': 1,
          'killed': 1,
          'nthen': 1,
          'sequence': 1,
          'henchman': 1,
          'holding': 1,
          'gun': 1,
          'stanleys': 1,
          'coerce': 1,
          'download': 1,
          'key': 1,
          'program': 1,
          'nchildren': 1,
          'pawns': 1,
          'become': 1,
          'unwelcome': 1,
          'clich': 1,
          'recent': 1,
          'nthere': 1,
          'violence': 1,
          'world': 1,
          'children': 1,
          'without': 1,
          'onscreen': 1,
          'victims': 1,
          'well': 1,
          'nyea': 1,
          'believe': 1,
          'doesnt': 1,
          'mean': 1,
          'tolerate': 1,
          'ntravolta': 1,
          'cool': 1,
          'deadly': 1,
          'charming': 1,
          'flamboyant': 1,
          'nearcrazy': 1,
          'reminiscent': 1,
          'villainous': 1,
          'characterizations': 1,
          'broken': 1,
          'arrow': 1,
          'faceoff': 1,
          'njackman': 1,
          'looks': 1,
          'dour': 1,
          'proceedings': 1,
          'moment': 1,
          'depth': 1,
          'comes': 1,
          'finally': 1,
          'able': 1,
          'create': 1,
          'worm': 1,
          'get': 1,
          'inside': 1,
          'database': 1,
          'sense': 1,
          'joy': 1,
          'accomplishment': 1,
          'whiz': 1,
          'appreciate': 1,
          'nhalle': 1,
          'berry': 1,
          'decorative': 1,
          'lovely': 1,
          'assistant': 1,
          'cheadle': 1,
          'given': 1,
          'fbi': 1,
          'agent': 1,
          'hunting': 1,
          'plays': 1,
          'like': 1,
          'comic': 1,
          'book': 1,
          'largerthanlife': 1,
          'nviewers': 1,
          'align': 1,
          'despite': 1,
          'uncertainty': 1,
          'villain': 1,
          'maybe': 1,
          'underlying': 1,
          'flaw': 1,
          'speak': 1,
          'upmost': 1,
          'survive': 1,
          'thrown': 1,
          'back': 1,
          'water': 1,
          'nneg': 1}),
 Counter({'cell': 9,
          'mind': 7,
          'carls': 7,
          'nthe': 6,
          'catharine': 5,
          'horse': 4,
          'lopez': 3,
          'killer': 3,
          'carl': 3,
          'glass': 3,
          'video': 3,
          'peter': 3,
          'seems': 3,
          'could': 3,
          'popular': 2,
          'virtual': 2,
          'reality': 2,
          'genre': 2,
          'movie': 2,
          'boy': 2,
          'surreal': 2,
          'another': 2,
          'keep': 2,
          'drowning': 2,
          'fast': 2,
          'videos': 2,
          'find': 2,
          'go': 2,
          'time': 2,
          'universe': 2,
          'computergenerated': 2,
          'well': 2,
          'really': 2,
          'promise': 2,
          'room': 2,
          'developed': 2,
          'one': 2,
          'catharines': 2,
          'probably': 1,
          'inevitable': 1,
          'matrix': 1,
          'existenz': 1,
          'would': 1,
          'collide': 1,
          'even': 1,
          'serialkiller': 1,
          'kiss': 1,
          'girls': 1,
          'se7en': 1,
          'result': 1,
          'interesting': 1,
          'nas': 1,
          'opens': 1,
          'therapist': 1,
          'deane': 1,
          'jennifer': 1,
          'treats': 1,
          'catatonic': 1,
          'colton': 1,
          'james': 1,
          'entering': 1,
          'sort': 1,
          'technique': 1,
          'thats': 1,
          'never': 1,
          'fully': 1,
          'explained': 1,
          'nafter': 1,
          'months': 1,
          'therapy': 1,
          'sessions': 1,
          'desert': 1,
          'success': 1,
          'report': 1,
          'nmeanwhile': 1,
          'stargher': 1,
          'vincent': 1,
          'donofrio': 1,
          'claimed': 1,
          'victim': 1,
          'nhis': 1,
          'particular': 1,
          'hobby': 1,
          'kidnap': 1,
          'young': 1,
          'women': 1,
          'overnight': 1,
          'drown': 1,
          'nhe': 1,
          'takes': 1,
          'corpse': 1,
          'soaks': 1,
          'bleach': 1,
          'suspends': 1,
          'body': 1,
          'jerks': 1,
          'watching': 1,
          'tape': 1,
          'nalthough': 1,
          'awhile': 1,
          'hes': 1,
          'recently': 1,
          'become': 1,
          'sloppy': 1,
          'fbi': 1,
          'agent': 1,
          'novak': 1,
          'vince': 1,
          'vaughn': 1,
          'closing': 1,
          'nnot': 1,
          'enough': 1,
          'though': 1,
          'sticking': 1,
          'woman': 1,
          'tara': 1,
          'subkoff': 1,
          'catch': 1,
          'suffers': 1,
          'schizophrenic': 1,
          'attack': 1,
          'leaves': 1,
          'coma': 1,
          'nfrom': 1,
          'house': 1,
          'see': 1,
          'automated': 1,
          'fill': 1,
          'water': 1,
          'forty': 1,
          'hours': 1,
          'abduction': 1,
          'nto': 1,
          'save': 1,
          'kidnapped': 1,
          'girl': 1,
          'end': 1,
          'day': 1,
          'comatose': 1,
          'talking': 1,
          'nso': 1,
          'hope': 1,
          'inside': 1,
          'focus': 1,
          'ornate': 1,
          'interior': 1,
          'director': 1,
          'tarsem': 1,
          'singh': 1,
          'creates': 1,
          'exercise': 1,
          'spectacle': 1,
          'exploration': 1,
          'psychotic': 1,
          'personality': 1,
          'nfor': 1,
          'part': 1,
          'style': 1,
          'without': 1,
          'substance': 1,
          'nin': 1,
          'decadent': 1,
          'emperor': 1,
          'flowing': 1,
          'robes': 1,
          'ming': 1,
          'merciless': 1,
          'frightened': 1,
          'jake': 1,
          'thomas': 1,
          'abused': 1,
          'father': 1,
          'nall': 1,
          'psycho': 1,
          'turns': 1,
          'strangely': 1,
          'dull': 1,
          'place': 1,
          'kept': 1,
          'wishing': 1,
          'fastforward': 1,
          'next': 1,
          'development': 1,
          'nsingh': 1,
          'best': 1,
          'known': 1,
          'directing': 1,
          'music': 1,
          'particularly': 1,
          'rems': 1,
          'losing': 1,
          'religion': 1,
          'much': 1,
          'like': 1,
          'long': 1,
          'slow': 1,
          'mtv': 1,
          'sound': 1,
          'deleted': 1,
          'nsinger': 1,
          'think': 1,
          'shes': 1,
          'devotes': 1,
          'posing': 1,
          'elaborate': 1,
          'costumes': 1,
          'acting': 1,
          'premise': 1,
          'great': 1,
          'world': 1,
          'within': 1,
          'bizarre': 1,
          'governed': 1,
          'insanity': 1,
          'symbolism': 1,
          'rather': 1,
          'logic': 1,
          'first': 1,
          'enters': 1,
          'head': 1,
          'shows': 1,
          'nshe': 1,
          'finds': 1,
          'standing': 1,
          'center': 1,
          'suddenly': 1,
          'sheets': 1,
          'sharpedged': 1,
          'fall': 1,
          'dividing': 1,
          'segments': 1,
          'panes': 1,
          'separate': 1,
          'pulling': 1,
          'apart': 1,
          'pieces': 1,
          'stillliving': 1,
          'nthis': 1,
          'scene': 1,
          'twisted': 1,
          'disturbing': 1,
          'thoughtprovoking': 1,
          'psychological': 1,
          'importance': 1,
          'fate': 1,
          'left': 1,
          'viewer': 1,
          'ponder': 1,
          'nanother': 1,
          'element': 1,
          'effect': 1,
          'merging': 1,
          'psychopath': 1,
          'ntheir': 1,
          'minds': 1,
          'begin': 1,
          'bleed': 1,
          'together': 1,
          'point': 1,
          'provided': 1,
          'opportunity': 1,
          'discover': 1,
          'dark': 1,
          'corners': 1,
          'psyche': 1,
          'nlike': 1,
          'sidney': 1,
          'lumets': 1,
          'offence': 1,
          'michael': 1,
          'manns': 1,
          'manhunter': 1,
          'explored': 1,
          'madness': 1,
          'brings': 1,
          'repressed': 1,
          'darkness': 1,
          'investigator': 1,
          'nhowever': 1,
          'character': 1,
          'hardly': 1,
          'depth': 1,
          'offer': 1,
          'role': 1,
          'nbottom': 1,
          'line': 1,
          'dont': 1,
          'get': 1,
          'trapped': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'nit': 5,
          'movie': 4,
          'nentrapment': 4,
          'millennium': 3,
          'connery': 3,
          'film': 3,
          'feel': 3,
          'first': 2,
          'appear': 2,
          'convoluted': 2,
          'boring': 2,
          'sean': 2,
          'action': 2,
          'catherine': 2,
          'rhames': 2,
          'star': 2,
          'set': 2,
          'seems': 2,
          'days': 2,
          'nthis': 2,
          'device': 2,
          'characters': 2,
          'thin': 2,
          'bad': 2,
          'see': 2,
          'synopsis': 1,
          'aging': 1,
          'master': 1,
          'art': 1,
          'thief': 1,
          'supplier': 1,
          'young': 1,
          'buxom': 1,
          'security': 1,
          'consultant': 1,
          'mess': 1,
          'involving': 1,
          'risky': 1,
          'heist': 1,
          'ncomments': 1,
          'nplain': 1,
          'simple': 1,
          'stars': 1,
          'still': 1,
          'carry': 1,
          'despite': 1,
          'age': 1,
          'zetajones': 1,
          'likeable': 1,
          'enough': 1,
          'presence': 1,
          'ving': 1,
          'ultracool': 1,
          'pulp': 1,
          'fiction': 1,
          'mission': 1,
          'impossible': 1,
          'takes': 1,
          'full': 1,
          'advantage': 1,
          'y2k': 1,
          'computer': 1,
          'bug': 1,
          'fears': 1,
          'current': 1,
          'hot': 1,
          'topic': 1,
          'news': 1,
          'storyline': 1,
          'end': 1,
          '1999': 1,
          'genuinely': 1,
          'wellstaged': 1,
          'sequences': 1,
          'nso': 1,
          'went': 1,
          'wrong': 1,
          'nplenty': 1,
          'unfortunately': 1,
          'major': 1,
          'problem': 1,
          'entrapment': 1,
          'script': 1,
          'beenthere': 1,
          'donethat': 1,
          'nnothing': 1,
          'particularly': 1,
          'inventive': 1,
          'original': 1,
          'whole': 1,
          'lacks': 1,
          'suspense': 1,
          'drags': 1,
          'runs': 1,
          'nearly': 1,
          'two': 1,
          'hours': 1,
          'screenwriters': 1,
          'example': 1,
          'periodically': 1,
          'use': 1,
          'countdown': 1,
          'means': 1,
          'transition': 1,
          'scenes': 1,
          'e': 1,
          'n': 1,
          '4': 1,
          'used': 1,
          'much': 1,
          'effectively': 1,
          'overlooked': 1,
          'scifi': 1,
          'strange': 1,
          'beginning': 1,
          'neat': 1,
          'wears': 1,
          'umpteenth': 1,
          'surprise': 1,
          'revelation': 1,
          'made': 1,
          'words': 1,
          'relies': 1,
          'heavily': 1,
          'audience': 1,
          'knowing': 1,
          'true': 1,
          'motive': 1,
          'resulting': 1,
          'story': 1,
          'leaves': 1,
          'many': 1,
          'scratching': 1,
          'heads': 1,
          'confusion': 1,
          'power': 1,
          'quite': 1,
          'strong': 1,
          'viewer': 1,
          'cant': 1,
          'help': 1,
          'actors': 1,
          'wasted': 1,
          'production': 1,
          'nsean': 1,
          'given': 1,
          'mindnumbing': 1,
          'lines': 1,
          'never': 1,
          'trust': 1,
          'naked': 1,
          'woman': 1,
          'nving': 1,
          'character': 1,
          'like': 1,
          'afterthought': 1,
          'hes': 1,
          'developed': 1,
          'camera': 1,
          'zooms': 1,
          'frequently': 1,
          'leeringly': 1,
          'zetajoness': 1,
          'tight': 1,
          'wardrobe': 1,
          'juvenile': 1,
          'nat': 1,
          'least': 1,
          'species': 1,
          'movies': 1,
          'hold': 1,
          'bones': 1,
          'fact': 1,
          'theyre': 1,
          'exploiting': 1,
          'female': 1,
          'body': 1,
          'disguise': 1,
          'plot': 1,
          'development': 1,
          'supposedly': 1,
          'falls': 1,
          'love': 1,
          'girl': 1,
          'watching': 1,
          'tights': 1,
          'arc': 1,
          'pivot': 1,
          'around': 1,
          'laser': 1,
          'beams': 1,
          'tagline': 1,
          'reads': 1,
          'trap': 1,
          'sure': 1,
          'spent': 1,
          'money': 1,
          'really': 1,
          'isnt': 1,
          'watchable': 1,
          'ni': 1,
          'would': 1,
          'suggest': 1,
          'however': 1,
          'one': 1,
          'waits': 1,
          'cable': 1,
          'television': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'final': 5,
          'fantasy': 5,
          'like': 5,
          'spirits': 4,
          'aliens': 4,
          'sid': 4,
          'human': 3,
          'movie': 3,
          'appear': 3,
          'aki': 3,
          'dr': 3,
          'nthey': 3,
          'spirit': 3,
          'naki': 3,
          'wave': 3,
          'alien': 3,
          'force': 3,
          'within': 2,
          'eye': 2,
          'detailed': 2,
          'back': 2,
          'woman': 2,
          'even': 2,
          'facial': 2,
          'features': 2,
          'seen': 2,
          'result': 2,
          'doll': 2,
          'anything': 2,
          'expressive': 2,
          'group': 2,
          'show': 2,
          'based': 2,
          'general': 2,
          'move': 2,
          'nwhy': 2,
          'voice': 2,
          'buscemi': 2,
          'computer': 2,
          'animated': 2,
          'n': 2,
          'ive': 2,
          'straight': 2,
          'anime': 2,
          'bored': 2,
          'nif': 2,
          'either': 2,
          'focus': 2,
          'cast': 2,
          'action': 2,
          'scenes': 2,
          'plot': 2,
          'humans': 2,
          'organic': 2,
          'life': 2,
          'waves': 2,
          'contagion': 2,
          'time': 2,
          'nso': 2,
          'apocalyptic': 2,
          'settings': 2,
          'films': 2,
          'version': 2,
          'first': 1,
          'image': 1,
          'computeranimated': 1,
          'closeup': 1,
          'nits': 1,
          'beautiful': 1,
          'piece': 1,
          'work': 1,
          'remarkably': 1,
          'quite': 1,
          'convincing': 1,
          'nwhen': 1,
          'picture': 1,
          'pulls': 1,
          'reveal': 1,
          'owner': 1,
          'however': 1,
          'things': 1,
          'change': 1,
          'young': 1,
          'mesmerizing': 1,
          'hair': 1,
          'although': 1,
          'hangs': 1,
          'artfully': 1,
          'standards': 1,
          'believed': 1,
          'computeranimation': 1,
          'date': 1,
          'reminiscent': 1,
          'wellcrafted': 1,
          'nshe': 1,
          'pretty': 1,
          'bland': 1,
          'nearly': 1,
          'enough': 1,
          'come': 1,
          'person': 1,
          'nall': 1,
          'characters': 1,
          'nof': 1,
          'core': 1,
          'younger': 1,
          'white': 1,
          'men': 1,
          'women': 1,
          'athletic': 1,
          'attractive': 1,
          'indistinct': 1,
          'applicants': 1,
          'tv': 1,
          'reality': 1,
          'black': 1,
          'man': 1,
          'taller': 1,
          'burlier': 1,
          'aging': 1,
          'scholar': 1,
          'bald': 1,
          'wrinkles': 1,
          'beard': 1,
          'nnone': 1,
          'individuals': 1,
          'look': 1,
          'products': 1,
          'descriptions': 1,
          'given': 1,
          'police': 1,
          'sketch': 1,
          'artist': 1,
          'nit': 1,
          'gets': 1,
          'worse': 1,
          'talk': 1,
          'sarcastic': 1,
          'steve': 1,
          'great': 1,
          'twisted': 1,
          'face': 1,
          'snaggleteeth': 1,
          'coming': 1,
          'mouth': 1,
          'dreary': 1,
          'ken': 1,
          'every': 1,
          'fluid': 1,
          'physical': 1,
          'gesture': 1,
          'also': 1,
          'see': 1,
          'herkyjerky': 1,
          'puppetstyle': 1,
          'motions': 1,
          'nmore': 1,
          'point': 1,
          'decided': 1,
          'fulllength': 1,
          'featuring': 1,
          'hyperreal': 1,
          'term': 1,
          'mine': 1,
          'humanoids': 1,
          'good': 1,
          'idea': 1,
          'phenomenally': 1,
          'popular': 1,
          'video': 1,
          'game': 1,
          'never': 1,
          'played': 1,
          'story': 1,
          'japanese': 1,
          'often': 1,
          'leaves': 1,
          'depressed': 1,
          'youre': 1,
          'fan': 1,
          'please': 1,
          'spare': 1,
          'letters': 1,
          'solely': 1,
          'finished': 1,
          'film': 1,
          'source': 1,
          'materials': 1,
          'nwith': 1,
          'expressionchallenged': 1,
          'mixes': 1,
          'turgid': 1,
          'heaps': 1,
          'mystical': 1,
          'shit': 1,
          'ugly': 1,
          'confusing': 1,
          'boring': 1,
          'nnote': 1,
          'following': 1,
          'reveals': 1,
          'basic': 1,
          'want': 1,
          'fighting': 1,
          'chance': 1,
          'making': 1,
          'sense': 1,
          'suggest': 1,
          'read': 1,
          'nearth': 1,
          'war': 1,
          'feed': 1,
          'souls': 1,
          'nmost': 1,
          'planet': 1,
          'devastated': 1,
          'living': 1,
          'protected': 1,
          'cities': 1,
          'nwhile': 1,
          'bulk': 1,
          'survivors': 1,
          'military': 1,
          'strategies': 1,
          'ross': 1,
          'voiced': 1,
          'mingna': 1,
          'mentor': 1,
          'donald': 1,
          'sutherland': 1,
          'believe': 1,
          'approach': 1,
          'operate': 1,
          'notion': 1,
          'quoting': 1,
          'press': 1,
          'kit': 1,
          'forms': 1,
          'signature': 1,
          'identified': 1,
          'contained': 1,
          'collect': 1,
          'series': 1,
          'specimens': 1,
          'whose': 1,
          'signatures': 1,
          'combined': 1,
          'form': 1,
          'equal': 1,
          'opposite': 1,
          'intensity': 1,
          'effect': 1,
          'cancel': 1,
          'disarm': 1,
          'foreign': 1,
          'collected': 1,
          'six': 1,
          'eight': 1,
          'key': 1,
          'needed': 1,
          'complete': 1,
          'desperate': 1,
          'hunt': 1,
          'find': 1,
          'remaining': 1,
          'two': 1,
          'runs': 1,
          'nare': 1,
          'still': 1,
          'ntheres': 1,
          'little': 1,
          'infected': 1,
          'ndr': 1,
          'developed': 1,
          'method': 1,
          'confining': 1,
          'keeping': 1,
          'killing': 1,
          'defense': 1,
          'wall': 1,
          'wont': 1,
          'hold': 1,
          'much': 1,
          'longer': 1,
          'nalready': 1,
          'communicating': 1,
          'dreams': 1,
          'naiding': 1,
          'deep': 1,
          'eyes': 1,
          'hardasnails': 1,
          'types': 1,
          'would': 1,
          'felt': 1,
          'home': 1,
          'troops': 1,
          'ncapt': 1,
          'gray': 1,
          'edwards': 1,
          'alec': 1,
          'baldwin': 1,
          'heads': 1,
          'task': 1,
          'consists': 1,
          'wise': 1,
          'guy': 1,
          'tough': 1,
          'peri': 1,
          'gilpin': 1,
          'gentle': 1,
          'giant': 1,
          'ving': 1,
          'rhames': 1,
          'nthrowing': 1,
          'monkey': 1,
          'wrench': 1,
          'plans': 1,
          'requisite': 1,
          'dumb': 1,
          'ass': 1,
          'case': 1,
          'hein': 1,
          'james': 1,
          'woods': 1,
          'wants': 1,
          'use': 1,
          'zeus': 1,
          'cannon': 1,
          'bomb': 1,
          'stone': 1,
          'age': 1,
          'destroys': 1,
          'earth': 1,
          'well': 1,
          'nlike': 1,
          'combines': 1,
          'lots': 1,
          'shooting': 1,
          'fuzzy': 1,
          'spirituality': 1,
          'wrapped': 1,
          'savetheearth': 1,
          'bow': 1,
          'nbut': 1,
          'im': 1,
          'ni': 1,
          'understand': 1,
          'many': 1,
          'liveaction': 1,
          'employ': 1,
          'theyre': 1,
          'cheap': 1,
          'wallow': 1,
          'industrial': 1,
          'trash': 1,
          'heap': 1,
          'shootemups': 1,
          'dont': 1,
          'satisfy': 1,
          'oddly': 1,
          'muted': 1,
          'talented': 1,
          'cant': 1,
          'bring': 1,
          'fact': 1,
          'efforts': 1,
          'merely': 1,
          'emphasize': 1,
          'missing': 1,
          'especially': 1,
          'disappointing': 1,
          'lack': 1,
          'expression': 1,
          'flat': 1,
          'delivery': 1,
          'looks': 1,
          'sound': 1,
          'brunet': 1,
          'weena': 1,
          'eloi': 1,
          'girl': 1,
          '1960s': 1,
          'machine': 1,
          'ndrab': 1,
          'color': 1,
          'choices': 1,
          'created': 1,
          'jello': 1,
          'molds': 1,
          'sap': 1,
          'pizzazz': 1,
          'big': 1,
          'set': 1,
          'pieces': 1,
          'nstudents': 1,
          'animation': 1,
          'may': 1,
          'fascinated': 1,
          'technology': 1,
          'behind': 1,
          'found': 1,
          'subpar': 1,
          'across': 1,
          'board': 1,
          'futurama': 1,
          'effective': 1,
          'battle': 1,
          'visuals': 1,
          'kids': 1,
          'south': 1,
          'park': 1,
          'far': 1,
          'mannequins': 1,
          'old': 1,
          'episode': 1,
          'contemporary': 1,
          'outer': 1,
          'limits': 1,
          'better': 1,
          'doom': 1,
          'gloom': 1,
          'scifi': 1,
          'needs': 1,
          'nnot': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 6,
          'worst': 6,
          'joe': 5,
          'eszterhas': 5,
          'cut': 3,
          'nhe': 3,
          'movie': 3,
          'bad': 3,
          'original': 3,
          'soundtrack': 3,
          'plot': 2,
          'director': 2,
          'alan': 2,
          'smithee': 2,
          'studio': 2,
          'ni': 2,
          'really': 2,
          'cant': 2,
          'boring': 2,
          'hollywood': 2,
          'movies': 2,
          'one': 2,
          'star': 2,
          'way': 2,
          'nthis': 2,
          'cinergi': 2,
          'pictures': 2,
          'money': 2,
          'tracks': 2,
          'token': 1,
          'steals': 1,
          'copy': 1,
          'trio': 1,
          'complete': 1,
          'final': 1,
          'without': 1,
          'threatens': 1,
          'burn': 1,
          'reel': 1,
          'allow': 1,
          'keep': 1,
          'vision': 1,
          'ncritique': 1,
          'wow': 1,
          'remember': 1,
          'last': 1,
          'time': 1,
          'sucked': 1,
          'many': 1,
          'levels': 1,
          'comedy': 1,
          'pathetic': 1,
          'obvious': 1,
          'dated': 1,
          'oj': 1,
          'simpson': 1,
          'jokes': 1,
          'galore': 1,
          'uninteresting': 1,
          'structure': 1,
          'annoying': 1,
          'repetitive': 1,
          'pretentious': 1,
          'acting': 1,
          'pretty': 1,
          'especially': 1,
          'jackie': 1,
          'chan': 1,
          'act': 1,
          'save': 1,
          'life': 1,
          'cameos': 1,
          'lame': 1,
          'seem': 1,
          'forced': 1,
          'ending': 1,
          'blows': 1,
          'chunks': 1,
          'nall': 1,
          'believes': 1,
          'clever': 1,
          'humorous': 1,
          'edgy': 1,
          'look': 1,
          'behind': 1,
          'closed': 1,
          'doors': 1,
          'comes': 1,
          'across': 1,
          'stupid': 1,
          'completely': 1,
          'unentertaining': 1,
          'piece': 1,
          'shite': 1,
          'love': 1,
          'see': 1,
          'shenanigans': 1,
          'bites': 1,
          'big': 1,
          'nsee': 1,
          'like': 1,
          'watch': 1,
          'otherwise': 1,
          'skip': 1,
          'hating': 1,
          'every': 1,
          'makes': 1,
          'appearance': 1,
          'nluckily': 1,
          'us': 1,
          'mess': 1,
          'lasts': 1,
          '80': 1,
          'minutes': 1,
          'miramax': 1,
          'honcho': 1,
          'harvey': 1,
          'weinstein': 1,
          'plays': 1,
          'leadfaced': 1,
          'detective': 1,
          'nby': 1,
          'reason': 1,
          'producer': 1,
          'couldnt': 1,
          'another': 1,
          'version': 1,
          'filmed': 1,
          'stock': 1,
          'left': 1,
          'nwho': 1,
          'knows': 1,
          'cares': 1,
          'satire': 1,
          'sucks': 1,
          'bag': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'stars': 1,
          'ironically': 1,
          'arthur': 1,
          'hiller': 1,
          'also': 1,
          'requested': 1,
          'name': 1,
          'taken': 1,
          'credits': 1,
          'replaced': 1,
          'dgas': 1,
          'moniker': 1,
          'films': 1,
          'production': 1,
          'company': 1,
          'preferred': 1,
          'made': 1,
          'producerwriter': 1,
          'script': 1,
          'included': 1,
          'arnold': 1,
          'schwarzenegger': 1,
          'bruce': 1,
          'willis': 1,
          'neszterhas': 1,
          'announced': 1,
          'media': 1,
          'postproduction': 1,
          'didnt': 1,
          'pay': 1,
          'said': 1,
          'would': 1,
          'finance': 1,
          'asked': 1,
          'submit': 1,
          'received': 1,
          '9': 1,
          '200': 1,
          'cds': 1,
          'cassettes': 1,
          'mostly': 1,
          'unknown': 1,
          'unsigned': 1,
          'artists': 1,
          'listened': 1,
          'sent': 1,
          'least': 1,
          'couple': 1,
          'record': 1,
          'compiled': 1,
          'practically': 1,
          'swept': 1,
          'razzie': 1,
          'awards': 1,
          '1999': 1,
          'given': 1,
          'categories': 1,
          'year': 1,
          'less': 1,
          'picture': 1,
          'award': 1,
          'screenplay': 1,
          'supporting': 1,
          'actor': 1,
          'new': 1,
          'tied': 1,
          'jerry': 1,
          'springer': 1,
          'song': 1,
          'wan': 1,
          'na': 1,
          'mike': 1,
          'ovitz': 1,
          'nas': 1,
          'written': 1,
          'nneg': 1}),
 Counter({'time': 8,
          'movie': 6,
          'film': 6,
          'one': 5,
          'plot': 4,
          'like': 4,
          'nwell': 4,
          'ni': 4,
          'care': 4,
          'love': 3,
          'movies': 3,
          'watching': 3,
          'tv': 3,
          'psycho': 3,
          '810': 3,
          '710': 3,
          'guy': 2,
          'believe': 2,
          'fall': 2,
          'year': 2,
          'boring': 2,
          'hell': 2,
          'thinking': 2,
          'thing': 2,
          'sitting': 2,
          'really': 2,
          'audience': 2,
          'ever': 2,
          'make': 2,
          'part': 2,
          'joke': 2,
          'isnt': 2,
          'start': 2,
          'betrayal': 2,
          'nso': 2,
          'two': 2,
          'surprise': 2,
          'mean': 2,
          'jolies': 2,
          'eyes': 2,
          'supposed': 2,
          'nno': 2,
          'dont': 2,
          'actually': 2,
          'three': 2,
          'points': 2,
          'pretty': 2,
          'rich': 1,
          'doesnt': 1,
          'orders': 1,
          'mailorder': 1,
          'bride': 1,
          'nthat': 1,
          'evening': 1,
          'couple': 1,
          'married': 1,
          'madly': 1,
          'soon': 1,
          'thereafter': 1,
          'nbut': 1,
          'whats': 1,
          'none': 1,
          'might': 1,
          'person': 1,
          'pretending': 1,
          'nwow': 1,
          'nsin': 1,
          'indeed': 1,
          'ncritique': 1,
          'easily': 1,
          'worst': 1,
          'ive': 1,
          'seen': 1,
          'ntoo': 1,
          'long': 1,
          'predictable': 1,
          'ridiculous': 1,
          'anyone': 1,
          'interested': 1,
          'good': 1,
          'nwhat': 1,
          'made': 1,
          'n': 1,
          'wonder': 1,
          'racks': 1,
          'felt': 1,
          'bad': 1,
          'week': 1,
          'nudity': 1,
          'stuffed': 1,
          'wake': 1,
          'nhave': 1,
          'switched': 1,
          'channels': 1,
          'fallen': 1,
          'upon': 1,
          'ridiculously': 1,
          'melodramatic': 1,
          'couldnt': 1,
          'help': 1,
          'switch': 1,
          'back': 1,
          'sure': 1,
          'wasnt': 1,
          'sick': 1,
          'exactly': 1,
          'asked': 1,
          'pay': 1,
          'money': 1,
          'see': 1,
          'say': 1,
          'shite': 1,
          'nokay': 1,
          'nfirst': 1,
          'trailer': 1,
          'gives': 1,
          'away': 1,
          'main': 1,
          'twist': 1,
          'first': 1,
          'half': 1,
          'hour': 1,
          'youre': 1,
          'basically': 1,
          'lovers': 1,
          'go': 1,
          'motions': 1,
          'occurs': 1,
          'nwhoopee': 1,
          'big': 1,
          'nsecond': 1,
          'angelina': 1,
          'jolie': 1,
          'horribly': 1,
          'miscast': 1,
          'nwhy': 1,
          'second': 1,
          'nasty': 1,
          'backstabbing': 1,
          'woman': 1,
          'people': 1,
          'complained': 1,
          'jack': 1,
          'nicholson': 1,
          'shining': 1,
          'well': 1,
          'goes': 1,
          'nevery': 1,
          'look': 1,
          'screams': 1,
          'nthen': 1,
          'course': 1,
          'case': 1,
          'patsy': 1,
          'husband': 1,
          'man': 1,
          'cant': 1,
          'seem': 1,
          'figure': 1,
          'anything': 1,
          'nboring': 1,
          'nyoure': 1,
          'screw': 1,
          'somehow': 1,
          'feel': 1,
          'sorry': 1,
          'dude': 1,
          'thanks': 1,
          'nand': 1,
          'shes': 1,
          'beeyatch': 1,
          'confused': 1,
          'actual': 1,
          'motivations': 1,
          'ill': 1,
          'tell': 1,
          'nthe': 1,
          'worrying': 1,
          'whole': 1,
          'way': 1,
          'picture': 1,
          'whether': 1,
          'id': 1,
          'asleep': 1,
          'end': 1,
          'credits': 1,
          'rolled': 1,
          'suspense': 1,
          'chemistry': 1,
          'leads': 1,
          'real': 1,
          'passion': 1,
          'sense': 1,
          'plenty': 1,
          'holes': 1,
          'everyone': 1,
          'extra': 1,
          'moronic': 1,
          'ending': 1,
          'even': 1,
          'giving': 1,
          'rating': 1,
          'simple': 1,
          'liked': 1,
          'locations': 1,
          'groovy': 1,
          'score': 1,
          'primary': 1,
          'reason': 1,
          'slipping': 1,
          'notches': 1,
          'onto': 1,
          'bedpost': 1,
          'gratuitous': 1,
          'shots': 1,
          'boobies': 1,
          'thats': 1,
          'right': 1,
          'another': 1,
          'antonios': 1,
          'ass': 1,
          'hairless': 1,
          'record': 1,
          'neverything': 1,
          'else': 1,
          'pointless': 1,
          'plain': 1,
          'stupid': 1,
          'ntry': 1,
          'imagining': 1,
          'softporn': 1,
          'nwithout': 1,
          'nthats': 1,
          'much': 1,
          'youve': 1,
          'got': 1,
          'na': 1,
          'low': 1,
          'point': 1,
          'careers': 1,
          'stars': 1,
          'noops': 1,
          'almost': 1,
          'forgot': 1,
          'mention': 1,
          'crappy': 1,
          'dialogue': 1,
          'god': 1,
          'noh': 1,
          'mighty': 1,
          'nit': 1,
          'stop': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'namerican': 1,
          '910': 1,
          'cruel': 1,
          'intentions': 1,
          'wide': 1,
          'shut': 1,
          '610': 1,
          'fatal': 1,
          'attraction': 1,
          'playing': 1,
          'heart': 1,
          'suspicion': 1,
          'lies': 1,
          'beneath': 1,
          'women': 1,
          'want': 1,
          '410': 1,
          'whipped': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'film': 8,
          'one': 5,
          'lisa': 4,
          'kudrow': 4,
          'played': 4,
          'travolta': 4,
          'character': 4,
          'nand': 4,
          'time': 3,
          'real': 3,
          'nbut': 3,
          'john': 3,
          'ni': 3,
          'else': 3,
          'people': 3,
          'characters': 3,
          'nhe': 3,
          'get': 3,
          'trying': 3,
          'say': 3,
          'year': 2,
          'least': 2,
          'featuring': 2,
          'bunch': 2,
          'care': 2,
          'little': 2,
          'everybody': 2,
          'pretty': 2,
          'much': 2,
          'worst': 2,
          'another': 2,
          'weatherman': 2,
          'part': 2,
          'didnt': 2,
          'entire': 2,
          'thought': 2,
          'dressed': 2,
          'outfits': 2,
          'left': 2,
          'also': 2,
          'plain': 2,
          'us': 2,
          'casting': 2,
          'choice': 2,
          'role': 2,
          'wrong': 2,
          'good': 2,
          'play': 2,
          'quite': 2,
          'audience': 2,
          'lines': 2,
          'never': 2,
          'loved': 2,
          'pullman': 2,
          'lazy': 2,
          'cop': 2,
          'tries': 2,
          'great': 1,
          'twelve': 1,
          'months': 1,
          'either': 1,
          'principals': 1,
          'nearlier': 1,
          'nora': 1,
          'ephron': 1,
          'wrote': 1,
          'produced': 1,
          'years': 1,
          'likeable': 1,
          'comedies': 1,
          'called': 1,
          'hanging': 1,
          'annoying': 1,
          'women': 1,
          'ironically': 1,
          'well': 1,
          'barely': 1,
          'anyone': 1,
          'nick': 1,
          'nsweet': 1,
          'stuff': 1,
          'unsuccessful': 1,
          'project': 1,
          'nothing': 1,
          'compared': 1,
          'went': 1,
          'earlier': 1,
          'summer': 1,
          'entitled': 1,
          'battlefield': 1,
          'earth': 1,
          'seemed': 1,
          'person': 1,
          'planet': 1,
          'somehow': 1,
          'appreciated': 1,
          'even': 1,
          'cheese': 1,
          'factor': 1,
          'mean': 1,
          'classified': 1,
          'disasters': 1,
          'nyipes': 1,
          'nbeauty': 1,
          'nso': 1,
          'happens': 1,
          'put': 1,
          'two': 1,
          'room': 1,
          'come': 1,
          'costarring': 1,
          'everversatile': 1,
          'nuhhhm': 1,
          'guessed': 1,
          'nmuch': 1,
          'nplot': 1,
          'order': 1,
          'escape': 1,
          'major': 1,
          'financial': 1,
          'difficulties': 1,
          'local': 1,
          'hooks': 1,
          'ballpicking': 1,
          'lotto': 1,
          'girlfriend': 1,
          'rigs': 1,
          'state': 1,
          'lottery': 1,
          'find': 1,
          'scheme': 1,
          'demand': 1,
          'winnings': 1,
          'problems': 1,
          'arise': 1,
          'ncritique': 1,
          'simply': 1,
          'stated': 1,
          'laugh': 1,
          'picture': 1,
          'nfor': 1,
          'comedy': 1,
          'offered': 1,
          'smiles': 1,
          'nincompoops': 1,
          'miscast': 1,
          'hamming': 1,
          'described': 1,
          'sluttier': 1,
          'version': 1,
          'phoebe': 1,
          'tvs': 1,
          'friends': 1,
          'nthis': 1,
          'disastrous': 1,
          'would': 1,
          'close': 1,
          'nthankfully': 1,
          'clips': 1,
          'goofy': 1,
          'dancing': 1,
          'films': 1,
          'trailer': 1,
          'final': 1,
          'cut': 1,
          'unlike': 1,
          'far': 1,
          'beautiful': 1,
          'managed': 1,
          'feature': 1,
          'many': 1,
          'unsympathetic': 1,
          'idiotic': 1,
          'irritating': 1,
          'cast': 1,
          'nforemost': 1,
          'travoltas': 1,
          'declined': 1,
          'give': 1,
          'reason': 1,
          'fit': 1,
          'saw': 1,
          'shorty': 1,
          'day': 1,
          'perfect': 1,
          'na': 1,
          'cool': 1,
          'calculating': 1,
          'roughneck': 1,
          'certain': 1,
          'hip': 1,
          'suave': 1,
          'je': 1,
          'ne': 1,
          'sais': 1,
          'quoi': 1,
          'nin': 1,
          'looks': 1,
          'like': 1,
          'hes': 1,
          'funny': 1,
          'bad': 1,
          'nwere': 1,
          'supposed': 1,
          'able': 1,
          'notice': 1,
          'case': 1,
          'consider': 1,
          'nadd': 1,
          'boring': 1,
          'yet': 1,
          'patented': 1,
          'dumb': 1,
          'blonde': 1,
          'routines': 1,
          'sexier': 1,
          'nmichael': 1,
          'rapaport': 1,
          'stretching': 1,
          'small': 1,
          'acting': 1,
          'muscle': 1,
          'guy': 1,
          'isnt': 1,
          'speed': 1,
          'level': 1,
          'everyone': 1,
          'truckload': 1,
          'empty': 1,
          'comedic': 1,
          'bullet': 1,
          'shells': 1,
          'youve': 1,
          'got': 1,
          'extremely': 1,
          'quiet': 1,
          'anticipating': 1,
          'punch': 1,
          'materialize': 1,
          'nthe': 1,
          'thing': 1,
          'could': 1,
          'story': 1,
          'actually': 1,
          'halfinteresting': 1,
          'really': 1,
          'bored': 1,
          'liked': 1,
          'michael': 1,
          'moores': 1,
          'perverted': 1,
          'cousin': 1,
          'bill': 1,
          'ngive': 1,
          'dude': 1,
          'man': 1,
          'everything': 1,
          'work': 1,
          'fakes': 1,
          'injuries': 1,
          'duty': 1,
          'avoid': 1,
          'arrest': 1,
          'situations': 1,
          'wont': 1,
          'fill': 1,
          'forms': 1,
          'ntheres': 1,
          'base': 1,
          'humor': 1,
          'nsadly': 1,
          'filmmakers': 1,
          'decided': 1,
          'bring': 1,
          'half': 1,
          'hour': 1,
          'theres': 1,
          'folks': 1,
          'non': 1,
          'whole': 1,
          'lame': 1,
          'included': 1,
          'slew': 1,
          'unlikable': 1,
          'fiddling': 1,
          'around': 1,
          'pool': 1,
          'unfunny': 1,
          'interest': 1,
          'target': 1,
          'somebody': 1,
          'write': 1,
          'im': 1,
          'nneg': 1}),
 Counter({'memphis': 11,
          'cars': 7,
          'kip': 6,
          'movie': 5,
          'brother': 5,
          'old': 5,
          'car': 4,
          'film': 4,
          'nwill': 4,
          'seconds': 3,
          'time': 3,
          'ntheres': 3,
          'back': 3,
          'life': 3,
          'one': 3,
          'talent': 3,
          'american': 2,
          'love': 2,
          'bruckheimer': 2,
          'plays': 2,
          'upon': 2,
          'shot': 2,
          'many': 2,
          'leave': 2,
          'ngone': 2,
          '60': 2,
          'raines': 2,
          'save': 2,
          'crime': 2,
          'amount': 2,
          'nif': 2,
          'nin': 2,
          'give': 2,
          'thrill': 2,
          'law': 2,
          'away': 2,
          'jolie': 2,
          'get': 2,
          'together': 2,
          'family': 2,
          'long': 2,
          'first': 2,
          'scene': 2,
          'stolen': 2,
          'made': 2,
          'like': 2,
          'movies': 2,
          'empty': 2,
          'nthe': 2,
          'something': 2,
          'counterbalanced': 2,
          'plot': 2,
          'nits': 2,
          'stereotypical': 1,
          'male': 1,
          'undeniable': 1,
          'fetishistic': 1,
          'sports': 1,
          'nproducer': 1,
          'jerry': 1,
          'attraction': 1,
          'loaded': 1,
          'testosterone': 1,
          'laced': 1,
          'titillatingly': 1,
          'frenetic': 1,
          'powerful': 1,
          'muscle': 1,
          'sleek': 1,
          'foreign': 1,
          'road': 1,
          'huggers': 1,
          'iconic': 1,
          'speed': 1,
          'machines': 1,
          'males': 1,
          'theater': 1,
          'orgasmic': 1,
          'haze': 1,
          'orgy': 1,
          'maleness': 1,
          'gone': 1,
          'horribly': 1,
          'awry': 1,
          'ncage': 1,
          'legendary': 1,
          'retired': 1,
          'thief': 1,
          'dont': 1,
          'cute': 1,
          'names': 1,
          'must': 1,
          'call': 1,
          'worn': 1,
          'skills': 1,
          'thickheaded': 1,
          'ribisi': 1,
          'killed': 1,
          'nseems': 1,
          'murderous': 1,
          'boss': 1,
          'eccleston': 1,
          'fetish': 1,
          'wood': 1,
          'insert': 1,
          'joke': 1,
          'hired': 1,
          'steal': 1,
          'ridiculous': 1,
          'expensive': 1,
          'exotic': 1,
          'autos': 1,
          'nfifty': 1,
          'exact': 1,
          'npoor': 1,
          'screws': 1,
          'pooch': 1,
          'bungles': 1,
          'job': 1,
          'badly': 1,
          'arent': 1,
          'delivered': 1,
          'three': 1,
          'days': 1,
          'bossman': 1,
          'casket': 1,
          'carved': 1,
          'nliterally': 1,
          'someone': 1,
          'could': 1,
          'nhmmmm': 1,
          'wonder': 1,
          'nwhat': 1,
          'order': 1,
          'emotional': 1,
          'heft': 1,
          'several': 1,
          'subplots': 1,
          'designed': 1,
          'tug': 1,
          'heartstrings': 1,
          'us': 1,
          'yawn': 1,
          'excuse': 1,
          'dramatic': 1,
          'tension': 1,
          'nshadowing': 1,
          'enforcement': 1,
          'foe': 1,
          'lindo': 1,
          'whos': 1,
          'looking': 1,
          'send': 1,
          'catch': 1,
          'flame': 1,
          'sway': 1,
          'heart': 1,
          'broken': 1,
          'years': 1,
          'ago': 1,
          'nshortsighted': 1,
          'seeker': 1,
          'idolizes': 1,
          'yet': 1,
          'resents': 1,
          'moving': 1,
          'reconnect': 1,
          'nraines': 1,
          'mentor': 1,
          'duvall': 1,
          'since': 1,
          'left': 1,
          'finally': 1,
          'caught': 1,
          'pulls': 1,
          'ncan': 1,
          'answer': 1,
          'questions': 1,
          'correctly': 1,
          '2': 1,
          'without': 1,
          'seeing': 1,
          'nill': 1,
          'bet': 1,
          'nfollowing': 1,
          'opening': 1,
          'credits': 1,
          'fill': 1,
          'accomplishments': 1,
          'montage': 1,
          'photos': 1,
          'taken': 1,
          'full': 1,
          'throttle': 1,
          'splendor': 1,
          'nhes': 1,
          'shown': 1,
          'living': 1,
          'good': 1,
          'teaching': 1,
          'young': 1,
          'children': 1,
          'drive': 1,
          'gocarts': 1,
          'later': 1,
          'misfit': 1,
          'knowingly': 1,
          'tells': 1,
          'situation': 1,
          'control': 1,
          'making': 1,
          'breakfast': 1,
          'metaphor': 1,
          'shakespearean': 1,
          'proportions': 1,
          'njust': 1,
          'pan': 1,
          'grease': 1,
          'flares': 1,
          'clueless': 1,
          'quell': 1,
          'big': 1,
          'calmly': 1,
          'efficiently': 1,
          'throws': 1,
          'salt': 1,
          'nlooks': 1,
          'everything': 1,
          'might': 1,
          'turn': 1,
          'alright': 1,
          'nyou': 1,
          'know': 1,
          'music': 1,
          'swells': 1,
          'crest': 1,
          'violins': 1,
          'nthats': 1,
          'strong': 1,
          'characterization': 1,
          'gets': 1,
          'shame': 1,
          'nbruckheimer': 1,
          'real': 1,
          'loading': 1,
          'obscene': 1,
          'given': 1,
          'task': 1,
          'hand': 1,
          'nmonumentally': 1,
          'underused': 1,
          'portrays': 1,
          'headed': 1,
          'sexpot': 1,
          'whose': 1,
          'idea': 1,
          'sex': 1,
          'revolves': 1,
          'around': 1,
          'maybe': 1,
          'nduvall': 1,
          'trots': 1,
          'ornery': 1,
          'sweet': 1,
          'codger': 1,
          'outfit': 1,
          'nim': 1,
          'sure': 1,
          'hes': 1,
          'still': 1,
          'laughing': 1,
          'taking': 1,
          'paycheck': 1,
          'nlindo': 1,
          'projects': 1,
          'warm': 1,
          'hearted': 1,
          'tightly': 1,
          'focused': 1,
          'detective': 1,
          'almost': 1,
          'transcends': 1,
          'material': 1,
          'biggest': 1,
          'waste': 1,
          'resources': 1,
          'vinnie': 1,
          'jones': 1,
          'mute': 1,
          'accomplice': 1,
          'nwithout': 1,
          'saying': 1,
          'word': 1,
          'easily': 1,
          'charismatic': 1,
          'person': 1,
          'nlike': 1,
          'blast': 1,
          'nitrous': 1,
          'oxide': 1,
          'attacks': 1,
          'straightforward': 1,
          'zeal': 1,
          'ntoo': 1,
          'bad': 1,
          'minutes': 1,
          'onscreen': 1,
          'nsomehow': 1,
          'manages': 1,
          'attract': 1,
          'top': 1,
          'hollywood': 1,
          'acting': 1,
          'high': 1,
          'concept': 1,
          'poorly': 1,
          'written': 1,
          'gussies': 1,
          'lots': 1,
          'gold': 1,
          'hues': 1,
          'pleasingly': 1,
          'stylized': 1,
          'action': 1,
          'sell': 1,
          'proverbial': 1,
          'hotcakes': 1,
          'nevery': 1,
          'clever': 1,
          'happens': 1,
          'overtly': 1,
          'wrong': 1,
          'jerks': 1,
          'realizing': 1,
          'youre': 1,
          'watching': 1,
          'innovative': 1,
          'usage': 1,
          'black': 1,
          'lighting': 1,
          'goes': 1,
          'novelty': 1,
          'part': 1,
          'extremely': 1,
          'feeble': 1,
          'attempt': 1,
          'humor': 1,
          'asian': 1,
          'repeatedly': 1,
          'failing': 1,
          'drivers': 1,
          'test': 1,
          'nimagine': 1,
          'yuks': 1,
          'segment': 1,
          'thieves': 1,
          'shows': 1,
          'another': 1,
          'cool': 1,
          'fake': 1,
          'fingerprint': 1,
          'trick': 1,
          'countered': 1,
          'lame': 1,
          'semisubplot': 1,
          'bunch': 1,
          'heroin': 1,
          'trunk': 1,
          'ramifications': 1,
          'never': 1,
          'explored': 1,
          'nthen': 1,
          'theres': 1,
          'ridiculousness': 1,
          'cops': 1,
          'actually': 1,
          'shoot': 1,
          'fleeing': 1,
          'nnot': 1,
          'stupid': 1,
          'nthis': 1,
          'pretty': 1,
          'tepid': 1,
          'chases': 1,
          'strung': 1,
          'enough': 1,
          'character': 1,
          'interaction': 1,
          'move': 1,
          'along': 1,
          'aptly': 1,
          'describes': 1,
          'itll': 1,
          'take': 1,
          'marginally': 1,
          'entertaining': 1,
          'memory': 1,
          'nneg': 1}),
 Counter({'robicheaux': 5,
          'alec': 4,
          'baldwin': 4,
          'want': 4,
          'butterfly': 4,
          'nthe': 4,
          'wife': 4,
          'n': 4,
          'rating': 3,
          'movies': 3,
          'see': 3,
          'teri': 3,
          'hatcher': 3,
          'nand': 3,
          'scene': 3,
          'plane': 3,
          'little': 3,
          'also': 3,
          'guy': 3,
          'think': 2,
          'movie': 2,
          'pg': 2,
          'us': 2,
          'prisoners': 2,
          'roberts': 2,
          'gangsters': 2,
          'plots': 2,
          'really': 2,
          'naked': 2,
          'youre': 2,
          'going': 2,
          'still': 2,
          'show': 2,
          'nno': 2,
          'dave': 2,
          'whos': 2,
          'trying': 2,
          'boat': 2,
          'dont': 2,
          'misery': 2,
          'get': 2,
          'hero': 2,
          'good': 2,
          'probably': 2,
          'getting': 2,
          'believable': 2,
          'womanabusing': 2,
          'bad': 2,
          'knows': 2,
          'box': 2,
          'lois': 2,
          'day': 2,
          'first': 1,
          'foremost': 1,
          'comes': 1,
          'grief': 1,
          'hands': 1,
          'given': 1,
          'nfor': 1,
          'havent': 1,
          'read': 1,
          'james': 1,
          'lee': 1,
          'burke': 1,
          'novel': 1,
          'heavens': 1,
          'based': 1,
          'rabidly': 1,
          'go': 1,
          'buy': 1,
          'tickets': 1,
          'featuring': 1,
          'combined': 1,
          'talents': 1,
          'eric': 1,
          'feel': 1,
          'vaguely': 1,
          'depressed': 1,
          'notion': 1,
          'swamps': 1,
          'louisiana': 1,
          'accents': 1,
          'subplots': 1,
          'well': 1,
          'one': 1,
          'worry': 1,
          'price': 1,
          'admission': 1,
          'nhopeful': 1,
          'nwell': 1,
          'let': 1,
          'share': 1,
          'moment': 1,
          'sheer': 1,
          'panic': 1,
          'cold': 1,
          'enervation': 1,
          'big': 1,
          'letdown': 1,
          'semirobed': 1,
          'purrs': 1,
          'nbutterfly': 1,
          'ni': 1,
          'asked': 1,
          'hit': 1,
          'snipped': 1,
          'ndamn': 1,
          'godless': 1,
          'nwe': 1,
          'goddamn': 1,
          'nso': 1,
          'nforget': 1,
          'nokay': 1,
          'nnow': 1,
          'nheavens': 1,
          'exalchoholic': 1,
          'excop': 1,
          'discover': 1,
          'life': 1,
          'anew': 1,
          'running': 1,
          'bait': 1,
          'shop': 1,
          'hire': 1,
          'business': 1,
          'loving': 1,
          'downtoearth': 1,
          'annie': 1,
          'kelly': 1,
          'lynch': 1,
          'neverything': 1,
          'dull': 1,
          'hunky': 1,
          'dory': 1,
          'carrying': 1,
          'illegal': 1,
          'immigrants': 1,
          'crashes': 1,
          'almost': 1,
          'ontop': 1,
          'couple': 1,
          'theyre': 1,
          'nosedives': 1,
          'water': 1,
          'sinks': 1,
          'wreckage': 1,
          'rescues': 1,
          'pixiefaced': 1,
          'salvadoran': 1,
          'girl': 1,
          'immediately': 1,
          'decide': 1,
          'adopt': 1,
          'nwhat': 1,
          'realise': 1,
          'planes': 1,
          'pilot': 1,
          'drug': 1,
          'dealer': 1,
          'sabotaged': 1,
          'latters': 1,
          'erstwhile': 1,
          'colleagues': 1,
          'nwhen': 1,
          'discovers': 1,
          'predictably': 1,
          'advice': 1,
          'wellmeaning': 1,
          'dea': 1,
          'agent': 1,
          'two': 1,
          'rough': 1,
          'begins': 1,
          'poking': 1,
          'nose': 1,
          'belong': 1,
          'know': 1,
          'man': 1,
          'deserves': 1,
          'hes': 1,
          'question': 1,
          'whether': 1,
          'dragged': 1,
          'along': 1,
          'ride': 1,
          'tedious': 1,
          'meandering': 1,
          'yet': 1,
          'utterly': 1,
          'suspenseless': 1,
          'plot': 1,
          'unlovable': 1,
          'guide': 1,
          'nas': 1,
          'fat': 1,
          'seriously': 1,
          'svelte': 1,
          'thinking': 1,
          'mans': 1,
          'hunt': 1,
          'red': 1,
          'october': 1,
          'outofshape': 1,
          'doesnt': 1,
          'look': 1,
          'rooftop': 1,
          'chasing': 1,
          'nhes': 1,
          'unconvincing': 1,
          'dramatic': 1,
          'moments': 1,
          'acting': 1,
          'far': 1,
          'tell': 1,
          'steven': 1,
          'segallike': 1,
          'economy': 1,
          'expression': 1,
          'nthreequarters': 1,
          'way': 1,
          'waiting': 1,
          'next': 1,
          'bar': 1,
          'contemplates': 1,
          'succumbing': 1,
          'temptation': 1,
          'whiskey': 1,
          'bottle': 1,
          'drunk': 1,
          'beating': 1,
          'someone': 1,
          'beaten': 1,
          'youll': 1,
          'beat': 1,
          'non': 1,
          'hand': 1,
          'mary': 1,
          'stuart': 1,
          'masterson': 1,
          'kind': 1,
          'wonderful': 1,
          'fried': 1,
          'green': 1,
          'tomatoes': 1,
          'benny': 1,
          'joon': 1,
          'cast': 1,
          'downandout': 1,
          'stripper': 1,
          'fingers': 1,
          'broken': 1,
          'quite': 1,
          'breath': 1,
          'fresh': 1,
          'air': 1,
          'right': 1,
          'mix': 1,
          'cynicism': 1,
          'warmth': 1,
          'insecurity': 1,
          'humour': 1,
          'endearing': 1,
          'character': 1,
          'neric': 1,
          'bubba': 1,
          'rocque': 1,
          'always': 1,
          'final': 1,
          'analysis': 1,
          'coincidentally': 1,
          'directed': 1,
          'phil': 1,
          'joanou': 1,
          'lest': 1,
          'forget': 1,
          'hatchers': 1,
          'role': 1,
          'rather': 1,
          'wellpublicised': 1,
          'paid': 1,
          'vacation': 1,
          'playing': 1,
          'lane': 1,
          'tvs': 1,
          'adventures': 1,
          'clark': 1,
          'nshe': 1,
          'totally': 1,
          'ridiculous': 1,
          'rocques': 1,
          'manipulative': 1,
          'seductive': 1,
          'cajun': 1,
          'coming': 1,
          'across': 1,
          'devious': 1,
          'mildly': 1,
          'disgruntled': 1,
          'au': 1,
          'pair': 1,
          'back': 1,
          'employer': 1,
          'hasnt': 1,
          'giving': 1,
          'enough': 1,
          'days': 1,
          'nits': 1,
          'safe': 1,
          'say': 1,
          'job': 1,
          'beckons': 1,
          'end': 1,
          'none': 1,
          'worth': 1,
          '2': 1,
          'hrs': 1,
          '12': 1,
          'minutes': 1,
          'personal': 1,
          'flying': 1,
          'inkpots': 1,
          'system': 1,
          'wait': 1,
          'video': 1,
          'creaky': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'im': 3,
          'talent': 3,
          'like': 3,
          'adam': 2,
          'first': 2,
          'laugh': 2,
          'nand': 2,
          'comedy': 2,
          'williams': 2,
          'ni': 2,
          'film': 2,
          'waterboy': 2,
          'willing': 2,
          'movie': 2,
          'nthe': 2,
          'half': 2,
          'hour': 2,
          'also': 2,
          'even': 2,
          'actually': 2,
          'nearly': 2,
          'team': 2,
          'winning': 2,
          'getting': 2,
          'keep': 2,
          'show': 2,
          'amazing': 1,
          'comedian': 1,
          'funniest': 1,
          'standup': 1,
          'around': 1,
          'completely': 1,
          'fall': 1,
          'flat': 1,
          'movies': 1,
          'ntake': 1,
          'sandler': 1,
          'non': 1,
          'basis': 1,
          'two': 1,
          'cds': 1,
          'theyre': 1,
          'gon': 1,
          'na': 1,
          'hell': 1,
          'happened': 1,
          'nhes': 1,
          'best': 1,
          'thing': 1,
          'hit': 1,
          'since': 1,
          'robin': 1,
          'nbut': 1,
          'put': 1,
          'front': 1,
          'camera': 1,
          'isnt': 1,
          'kind': 1,
          'enjoyed': 1,
          'happy': 1,
          'gilmore': 1,
          'thought': 1,
          'warranted': 1,
          'marginal': 1,
          'recommendation': 1,
          'latest': 1,
          'funny': 1,
          'root': 1,
          'canal': 1,
          'nseriously': 1,
          'wager': 1,
          'laughs': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'nin': 1,
          'fact': 1,
          'found': 1,
          'depressing': 1,
          'comedic': 1,
          'generated': 1,
          'one': 1,
          'smile': 1,
          'scenes': 1,
          'emotional': 1,
          'abuse': 1,
          'towards': 1,
          'adams': 1,
          'character': 1,
          'bobby': 1,
          'boucher': 1,
          'cruel': 1,
          'football': 1,
          'players': 1,
          'disturbed': 1,
          'mother': 1,
          'kathy': 1,
          'bates': 1,
          'world': 1,
          'coming': 1,
          'ngranted': 1,
          'gets': 1,
          'rolling': 1,
          'mild': 1,
          'chuckles': 1,
          'throughout': 1,
          'admit': 1,
          'laughing': 1,
          'twice': 1,
          'enough': 1,
          'sustain': 1,
          'running': 1,
          'time': 1,
          'nyoure': 1,
          'familiar': 1,
          'plot': 1,
          'youve': 1,
          'seen': 1,
          'least': 1,
          'million': 1,
          'times': 1,
          'everyone': 1,
          'picks': 1,
          'hero': 1,
          'shows': 1,
          'hidden': 1,
          'leads': 1,
          'underdog': 1,
          'victory': 1,
          'champions': 1,
          'process': 1,
          'respect': 1,
          'teammates': 1,
          'woman': 1,
          'loves': 1,
          'believe': 1,
          'giving': 1,
          'anything': 1,
          'away': 1,
          'saying': 1,
          'sandlers': 1,
          'wins': 1,
          'nif': 1,
          'would': 1,
          'feel': 1,
          'degree': 1,
          'suspense': 1,
          'watching': 1,
          'god': 1,
          'things': 1,
          'bomb': 1,
          'big': 1,
          'banana': 1,
          'performances': 1,
          'henry': 1,
          'winkler': 1,
          'insecure': 1,
          'coach': 1,
          'severely': 1,
          'underrated': 1,
          'fairuza': 1,
          'balk': 1,
          'bobbys': 1,
          'love': 1,
          'interest': 1,
          'mean': 1,
          'lending': 1,
          'talents': 1,
          'loftier': 1,
          'purpose': 1,
          'extremely': 1,
          'well': 1,
          'given': 1,
          'nkudos': 1,
          'nmy': 1,
          'advice': 1,
          'try': 1,
          'follow': 1,
          'footsteps': 1,
          'veteran': 1,
          'comedians': 1,
          'steve': 1,
          'martin': 1,
          'made': 1,
          'smooth': 1,
          'successful': 1,
          'transition': 1,
          'stage': 1,
          'screen': 1,
          'nrely': 1,
          'actual': 1,
          'rather': 1,
          'strange': 1,
          'voices': 1,
          'rude': 1,
          'noises': 1,
          'make': 1,
          'people': 1,
          'maybe': 1,
          'dramatic': 1,
          'might': 1,
          'jim': 1,
          'carrey': 1,
          'recent': 1,
          'truman': 1,
          'nwith': 1,
          'obvious': 1,
          'considerable': 1,
          'possesses': 1,
          'cant': 1,
          'going': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'ni': 7,
          'nbut': 6,
          'time': 5,
          'day': 5,
          'nand': 5,
          'nthe': 5,
          'aliens': 5,
          'films': 4,
          'independence': 4,
          'one': 4,
          'like': 4,
          'scene': 4,
          'jeff': 4,
          'even': 3,
          'rewatched': 3,
          'felt': 3,
          'good': 3,
          'event': 3,
          'kid': 3,
          'come': 3,
          'couple': 3,
          'next': 3,
          'see': 3,
          'goldblum': 3,
          'bill': 3,
          'pullman': 3,
          'end': 3,
          'balls': 3,
          'nit': 3,
          'theyre': 3,
          'computer': 3,
          'get': 3,
          'ones': 3,
          'example': 2,
          'still': 2,
          'came': 2,
          'would': 2,
          'star': 2,
          'wars': 2,
          'seen': 2,
          'first': 2,
          'saw': 2,
          'n': 2,
          'kids': 2,
          'becomes': 2,
          'annoying': 2,
          'little': 2,
          'big': 2,
          'nthere': 2,
          'many': 2,
          'plot': 2,
          'arent': 2,
          'youll': 2,
          'judd': 2,
          'hirsch': 2,
          'spiner': 2,
          'dog': 2,
          'nnow': 2,
          'alien': 2,
          'ship': 2,
          'smith': 2,
          'straight': 2,
          'mean': 2,
          'striptease': 2,
          'octopus': 2,
          'men': 2,
          'freaking': 2,
          'interesting': 2,
          'stupid': 2,
          'nthey': 2,
          'also': 2,
          'comes': 2,
          'attack': 2,
          'decides': 2,
          'white': 2,
          'house': 2,
          'dont': 2,
          'care': 2,
          'hes': 2,
          'think': 2,
          'pilot': 2,
          'survive': 2,
          'job': 2,
          'great': 2,
          'indy': 2,
          'according': 1,
          'popular': 1,
          'opinion': 1,
          'greatness': 1,
          'determined': 1,
          'ntake': 1,
          'casablanca': 1,
          'ngreat': 1,
          'today': 1,
          'nits': 1,
          'powerful': 1,
          'romantic': 1,
          'tragic': 1,
          'nanother': 1,
          'healthy': 1,
          'box': 1,
          'office': 1,
          'gross': 1,
          'despite': 1,
          'fact': 1,
          '3': 1,
          'billion': 1,
          'times': 1,
          'video': 1,
          'number': 1,
          'hit': 1,
          '1996': 1,
          'kinda': 1,
          'wasnt': 1,
          'cool': 1,
          'liked': 1,
          'original': 1,
          'view': 1,
          'basically': 1,
          'escape': 1,
          'cheated': 1,
          'nthus': 1,
          'curse': 1,
          'nowhere': 1,
          'makes': 1,
          'everybody': 1,
          'happy': 1,
          'except': 1,
          'critics': 1,
          'situation': 1,
          'wait': 1,
          'nwell': 1,
          'analogy': 1,
          'look': 1,
          'cooler': 1,
          'screen': 1,
          'insulted': 1,
          'whole': 1,
          'gaping': 1,
          'craters': 1,
          'sure': 1,
          'comedy': 1,
          'hokey': 1,
          'drama': 1,
          'none': 1,
          'hilariously': 1,
          'nebbish': 1,
          'bunch': 1,
          'military': 1,
          'uptight': 1,
          'guys': 1,
          'walking': 1,
          'around': 1,
          'saying': 1,
          'corny': 1,
          'lines': 1,
          'worst': 1,
          'brent': 1,
          'sayinig': 1,
          'something': 1,
          'innocently': 1,
          'funny': 1,
          'barked': 1,
          'junkyard': 1,
          'gives': 1,
          'unitentionally': 1,
          'funniest': 1,
          'speech': 1,
          'since': 1,
          'glen': 1,
          'glenda': 1,
          'problem': 1,
          'process': 1,
          'trying': 1,
          'make': 1,
          'everyone': 1,
          'shows': 1,
          'plays': 1,
          'safe': 1,
          'everywhere': 1,
          'throws': 1,
          'ton': 1,
          'action': 1,
          'borrowed': 1,
          'superior': 1,
          'chase': 1,
          'isnt': 1,
          'devils': 1,
          'den': 1,
          'anticlimactic': 1,
          'demi': 1,
          'moores': 1,
          'breasts': 1,
          'ntheyre': 1,
          'boring': 1,
          '2001': 1,
          'didnt': 1,
          'nbasically': 1,
          'bmovie': 1,
          '50s': 1,
          'earth': 1,
          'wonder': 1,
          'hostile': 1,
          'peaceful': 1,
          'nokay': 1,
          'topic': 1,
          'handled': 1,
          'greatly': 1,
          'somehow': 1,
          'geek': 1,
          'figure': 1,
          'using': 1,
          'satellites': 1,
          'countdown': 1,
          'destruction': 1,
          'nyep': 1,
          'nthese': 1,
          'heavily': 1,
          'armed': 1,
          'use': 1,
          'kind': 1,
          'later': 1,
          'president': 1,
          'whos': 1,
          'wimp': 1,
          'nice': 1,
          'belligerent': 1,
          'hell': 1,
          'stay': 1,
          'covered': 1,
          'bob': 1,
          'dole': 1,
          'inject': 1,
          'sodium': 1,
          'pentathol': 1,
          'nlater': 1,
          'wants': 1,
          'fly': 1,
          'impeachment': 1,
          'guy': 1,
          'nhes': 1,
          'senile': 1,
          'reagan': 1,
          'pot': 1,
          'nthen': 1,
          'theres': 1,
          'cocky': 1,
          'person': 1,
          'counterattack': 1,
          'second': 1,
          'moses': 1,
          'leading': 1,
          'children': 1,
          'elusive': 1,
          'area': 1,
          '51': 1,
          'sign': 1,
          'brave': 1,
          'nhis': 1,
          'girlfriends': 1,
          'stripper': 1,
          'sharing': 1,
          'subplot': 1,
          'son': 1,
          'ncome': 1,
          'fighter': 1,
          'boyfriendsoontobe': 1,
          'fiance': 1,
          'quit': 1,
          'respectable': 1,
          'long': 1,
          'john': 1,
          'silvers': 1,
          'nshes': 1,
          'proud': 1,
          'lucky': 1,
          'igniting': 1,
          'l': 1,
          'well': 1,
          'narrowly': 1,
          'survives': 1,
          'bright': 1,
          'spots': 1,
          'tossed': 1,
          'enough': 1,
          'old': 1,
          'homages': 1,
          'keep': 1,
          'laughing': 1,
          'best': 1,
          'nicely': 1,
          'named': 1,
          'david': 1,
          'turns': 1,
          'picture': 1,
          'hal': 1,
          'says': 1,
          'morning': 1,
          'dave': 1,
          'played': 1,
          'r': 1,
          'e': 1,
          'world': 1,
          'know': 1,
          'feel': 1,
          'fine': 1,
          'beginning': 1,
          'steals': 1,
          'actually': 1,
          'acting': 1,
          'stereotype': 1,
          'loved': 1,
          'man': 1,
          'anyway': 1,
          'real': 1,
          'subtle': 1,
          'comic': 1,
          'moments': 1,
          'nwill': 1,
          'gets': 1,
          'way': 1,
          'oneliners': 1,
          'play': 1,
          'execept': 1,
          'towards': 1,
          'two': 1,
          'nas': 1,
          'said': 1,
          'aiming': 1,
          'crowd': 1,
          'pleaser': 1,
          'thats': 1,
          'months': 1,
          'move': 1,
          'intaking': 1,
          'measure': 1,
          'least': 1,
          'last': 1,
          'lifetime': 1,
          'nthis': 1,
          'short': 1,
          'batteries': 1,
          'nneg': 1}),
 Counter({'sphere': 5,
          'crichton': 4,
          'first': 4,
          'hoffman': 4,
          'way': 4,
          'spheres': 3,
          'ni': 3,
          'movie': 3,
          'anything': 3,
          'wag': 3,
          'dog': 3,
          'time': 3,
          'ocean': 3,
          'make': 3,
          'kind': 2,
          'may': 2,
          'end': 2,
          'one': 2,
          'setup': 2,
          'mindless': 2,
          'ending': 2,
          'theres': 2,
          'novel': 2,
          'better': 2,
          'picture': 2,
          'nsphere': 2,
          'director': 2,
          'alist': 2,
          'cast': 2,
          'another': 2,
          'theaters': 2,
          'look': 2,
          'nthe': 2,
          'last': 2,
          'film': 2,
          'years': 2,
          'starts': 2,
          'little': 2,
          'like': 2,
          'contact': 2,
          'event': 2,
          'used': 2,
          'good': 2,
          'effect': 2,
          'action': 2,
          'early': 2,
          'take': 2,
          'nthis': 2,
          'device': 2,
          'worst': 2,
          'left': 2,
          'theater': 2,
          'promise': 2,
          'norman': 2,
          'government': 2,
          'space': 2,
          'ship': 2,
          'stone': 2,
          'harry': 2,
          'samuel': 2,
          'l': 2,
          'jackson': 2,
          'liev': 2,
          'schreiber': 2,
          'technology': 2,
          'peter': 2,
          'coyote': 2,
          'plot': 2,
          'nthen': 2,
          'thats': 2,
          'titanic': 2,
          'levinson': 2,
          'characters': 2,
          'nit': 2,
          'isnt': 2,
          'less': 2,
          'trying': 1,
          'satisfy': 1,
          'every': 1,
          'viewer': 1,
          'possible': 1,
          'pleasing': 1,
          'naction': 1,
          'lovers': 1,
          'bored': 1,
          'see': 1,
          'interminably': 1,
          'boring': 1,
          'naudience': 1,
          'members': 1,
          'crave': 1,
          'intellectual': 1,
          'fare': 1,
          'disgusted': 1,
          'films': 1,
          'sudden': 1,
          'collapse': 1,
          'storytelling': 1,
          'insulting': 1,
          'copout': 1,
          'nsomewhere': 1,
          'maybe': 1,
          'small': 1,
          'cadre': 1,
          'filmgoers': 1,
          'appreciate': 1,
          'dubious': 1,
          'charms': 1,
          'im': 1,
          'among': 1,
          'sincerely': 1,
          'hope': 1,
          'longer': 1,
          'read': 1,
          'either': 1,
          'michael': 1,
          'john': 1,
          'grisham': 1,
          'finished': 1,
          'motion': 1,
          'product': 1,
          'go': 1,
          'hard': 1,
          'understand': 1,
          'rights': 1,
          'optioned': 1,
          'class': 1,
          'mess': 1,
          'topline': 1,
          'create': 1,
          'nwith': 1,
          'expectations': 1,
          'high': 1,
          'could': 1,
          'considering': 1,
          'barry': 1,
          'levinsondustin': 1,
          'collaboration': 1,
          'excellent': 1,
          'still': 1,
          'playing': 1,
          'nsomething': 1,
          'bad': 1,
          'cant': 1,
          'help': 1,
          'even': 1,
          'worse': 1,
          'bigname': 1,
          'bigbudget': 1,
          'displayed': 1,
          'level': 1,
          'ineptitude': 1,
          'batman': 1,
          'robin': 1,
          'everyone': 1,
          'knows': 1,
          'received': 1,
          'amalgamation': 1,
          'james': 1,
          'camerons': 1,
          'abyss': 1,
          'somewhere': 1,
          'along': 1,
          'collapses': 1,
          'cellar': 1,
          'recent': 1,
          'science': 1,
          'fiction': 1,
          'effort': 1,
          'horizon': 1,
          'nscience': 1,
          'philosophy': 1,
          'hour': 1,
          'give': 1,
          'confusing': 1,
          'sequences': 1,
          'nattempts': 1,
          'characterization': 1,
          'fall': 1,
          'apart': 1,
          'nintelligent': 1,
          'writing': 1,
          'evident': 1,
          'replaced': 1,
          'hackneyed': 1,
          'drivel': 1,
          'nspecial': 1,
          'effects': 1,
          'plotline': 1,
          'devolves': 1,
          'incoherent': 1,
          'silliness': 1,
          'nbut': 1,
          'preparation': 1,
          'inexcusably': 1,
          'awful': 1,
          'timehonored': 1,
          'deus': 1,
          'ex': 1,
          'machina': 1,
          'feeling': 1,
          'cheated': 1,
          'screenwriters': 1,
          'chosen': 1,
          'nthere': 1,
          'nwere': 1,
          'introduced': 1,
          'goodman': 1,
          'dustin': 1,
          'psychologist': 1,
          'wrote': 1,
          '35': 1,
          '000': 1,
          'report': 1,
          'crashed': 1,
          'discovered': 1,
          'nwhen': 1,
          'found': 1,
          'middle': 1,
          'nowhere': 1,
          '1000': 1,
          'feet': 1,
          'surface': 1,
          'pacific': 1,
          'called': 1,
          'part': 1,
          'welcoming': 1,
          'committee': 1,
          'non': 1,
          'team': 1,
          'beth': 1,
          'halperin': 1,
          'sharon': 1,
          'biochemist': 1,
          'student': 1,
          'lover': 1,
          'adams': 1,
          'mathematician': 1,
          'earned': 1,
          'doctorate': 1,
          'age': 1,
          '18': 1,
          'ted': 1,
          'fielding': 1,
          'astrophysicist': 1,
          'awed': 1,
          'opportunity': 1,
          'explore': 1,
          'alien': 1,
          'harold': 1,
          'barnes': 1,
          'operative': 1,
          'charge': 1,
          'mission': 1,
          'ntogether': 1,
          'five': 1,
          'descend': 1,
          'bowels': 1,
          'rendezvous': 1,
          'temporary': 1,
          'sea': 1,
          'base': 1,
          'floor': 1,
          'attempt': 1,
          'nfor': 1,
          'fooled': 1,
          'thinking': 1,
          'going': 1,
          'astute': 1,
          'approach': 1,
          'manmeetsalien': 1,
          'situation': 1,
          'overall': 1,
          'scenario': 1,
          'without': 1,
          'several': 1,
          'twists': 1,
          'revelation': 1,
          'enormous': 1,
          'craft': 1,
          'actually': 1,
          'american': 1,
          'apparently': 1,
          'future': 1,
          'offer': 1,
          'intriguing': 1,
          'possibilities': 1,
          'right': 1,
          'around': 1,
          'onehour': 1,
          'mark': 1,
          'sneak': 1,
          'next': 1,
          'door': 1,
          'check': 1,
          'whatevers': 1,
          'virtually': 1,
          'nonstop': 1,
          'begins': 1,
          'script': 1,
          'becomes': 1,
          'superfluous': 1,
          'might': 1,
          'acceptable': 1,
          'generated': 1,
          'legitimate': 1,
          'tension': 1,
          'instead': 1,
          'relies': 1,
          'loud': 1,
          'overbearing': 1,
          'music': 1,
          'strange': 1,
          'camera': 1,
          'angles': 1,
          'quick': 1,
          'cuts': 1,
          'things': 1,
          'exciting': 1,
          'nadditionally': 1,
          'none': 1,
          'wellformed': 1,
          'common': 1,
          'failing': 1,
          'penned': 1,
          'whos': 1,
          'interested': 1,
          'people': 1,
          'viewers': 1,
          'dont': 1,
          'develop': 1,
          'much': 1,
          'rooting': 1,
          'interest': 1,
          'makes': 1,
          'sitting': 1,
          'frustrating': 1,
          'pointless': 1,
          'experience': 1,
          'nwhat': 1,
          'nnot': 1,
          'surprisingly': 1,
          'energetic': 1,
          'performance': 1,
          'given': 1,
          'person': 1,
          'hes': 1,
          'walking': 1,
          'spouting': 1,
          'occasionallywitty': 1,
          'dialogue': 1,
          'ndustin': 1,
          'lively': 1,
          'particularly': 1,
          'ironic': 1,
          'work': 1,
          'decade': 1,
          'arrived': 1,
          'heels': 1,
          'best': 1,
          'actor': 1,
          'nomination': 1,
          'nsharon': 1,
          'flat': 1,
          'ntheir': 1,
          'exhibit': 1,
          'evidence': 1,
          'emotion': 1,
          'automatons': 1,
          'would': 1,
          'effective': 1,
          'queen': 1,
          'latifa': 1,
          'despite': 1,
          'getting': 1,
          'fifth': 1,
          'billing': 1,
          'credits': 1,
          'ahead': 1,
          'boasts': 1,
          'least': 1,
          'quadruple': 1,
          'screen': 1,
          'handful': 1,
          'lines': 1,
          'almost': 1,
          'nothing': 1,
          'inflate': 1,
          'body': 1,
          'count': 1,
          'think': 1,
          'recognizing': 1,
          'uninspired': 1,
          'likely': 1,
          'chose': 1,
          'sort': 1,
          'penance': 1,
          'lowbudget': 1,
          'filmed': 1,
          'lengthy': 1,
          'preproduction': 1,
          'phase': 1,
          'nif': 1,
          'case': 1,
          'forgiveness': 1,
          'granted': 1,
          'nim': 1,
          'inclined': 1,
          'favorably': 1,
          'upon': 1,
          'although': 1,
          'enjoyable': 1,
          'titles': 1,
          'resume': 1,
          'jurassic': 1,
          'park': 1,
          'levinsondirected': 1,
          'disclosure': 1,
          'come': 1,
          'mind': 1,
          'neven': 1,
          'butchered': 1,
          'adaptation': 1,
          'process': 1,
          'crichtons': 1,
          'credit': 1,
          'producer': 1,
          'disallows': 1,
          'absolution': 1,
          'nhe': 1,
          'willing': 1,
          'participant': 1,
          'creative': 1,
          'travesty': 1,
          'nno': 1,
          'wonder': 1,
          'released': 1,
          'february': 1,
          'midst': 1,
          'cinematic': 1,
          'wasteland': 1,
          'deserves': 1,
          'get': 1,
          'sunk': 1,
          'unstoppable': 1,
          'plow': 1,
          'ninthconsecutive': 1,
          'weekend': 1,
          'atop': 1,
          'box': 1,
          'office': 1,
          'heap': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'love': 6,
          'shakespeare': 5,
          'quality': 4,
          'little': 4,
          'nthe': 4,
          'may': 4,
          'queen': 4,
          'nhowever': 4,
          'well': 4,
          'even': 4,
          '2': 3,
          'good': 3,
          'production': 3,
          'plot': 3,
          'henslowe': 3,
          'elizabeth': 3,
          'young': 3,
          'could': 3,
          'actors': 3,
          'name': 3,
          'nit': 2,
          'work': 2,
          'thin': 2,
          'rush': 2,
          'theatres': 2,
          'theatre': 2,
          'judi': 2,
          'dench': 2,
          'enough': 2,
          'much': 2,
          'long': 2,
          'set': 2,
          'events': 2,
          'life': 2,
          'show': 2,
          'nso': 2,
          'mr': 2,
          'william': 2,
          'fiennes': 2,
          'writers': 2,
          'block': 2,
          'fact': 2,
          'nhe': 2,
          'romeo': 2,
          'seem': 2,
          'put': 2,
          'paltrow': 2,
          'nothing': 2,
          'first': 2,
          'credited': 2,
          'scenes': 2,
          'rather': 2,
          'breathtaking': 2,
          'acting': 2,
          'entertaining': 2,
          'poor': 2,
          'often': 2,
          'save': 2,
          'real': 2,
          'nand': 2,
          'isnt': 2,
          'quite': 1,
          'possibly': 1,
          'enjoyable': 1,
          'period': 1,
          'piece': 1,
          'ever': 1,
          'made': 1,
          'silver': 1,
          'screen': 1,
          'humorous': 1,
          'romantic': 1,
          'unique': 1,
          'blend': 1,
          'successfully': 1,
          'entertain': 1,
          'audience': 1,
          'nearly': 1,
          'half': 1,
          'hours': 1,
          'occupies': 1,
          'nthat': 1,
          'however': 1,
          'say': 1,
          'anything': 1,
          'sort': 1,
          'nshakespeare': 1,
          'incredibly': 1,
          'cheap': 1,
          'illusion': 1,
          'truly': 1,
          'pans': 1,
          'original': 1,
          'finest': 1,
          'sign': 1,
          'looking': 1,
          'back': 1,
          'seems': 1,
          'predictable': 1,
          'carried': 1,
          'portrayal': 1,
          'people': 1,
          'revere': 1,
          'history': 1,
          'books': 1,
          'nphilip': 1,
          'geoffrey': 1,
          'owns': 1,
          '1': 1,
          'london': 1,
          'peak': 1,
          'royal': 1,
          'era': 1,
          'recently': 1,
          'damed': 1,
          'appropriately': 1,
          'ii': 1,
          'fan': 1,
          'directly': 1,
          'quote': 1,
          'cash': 1,
          'flow': 1,
          'problems': 1,
          'nthrough': 1,
          'becomes': 1,
          'apparent': 1,
          'entire': 1,
          'dependent': 1,
          'next': 1,
          'pay': 1,
          'debts': 1,
          'employs': 1,
          'playwright': 1,
          'joseph': 1,
          'pen': 1,
          'comedic': 1,
          'writer': 1,
          'severe': 1,
          'case': 1,
          'blames': 1,
          'struggling': 1,
          'title': 1,
          'mind': 1,
          'ethel': 1,
          'pirates': 1,
          'daughter': 1,
          'joke': 1,
          'loses': 1,
          'steam': 1,
          'cant': 1,
          'words': 1,
          'paper': 1,
          'nthen': 1,
          'hollywood': 1,
          'twisted': 1,
          'meets': 1,
          'viola': 1,
          'de': 1,
          'lesseps': 1,
          'gwyneth': 1,
          'falls': 1,
          'madly': 1,
          'thus': 1,
          'curing': 1,
          'nthere': 1,
          'many': 1,
          'issues': 1,
          'encounters': 1,
          'pan': 1,
          'ado': 1,
          'realization': 1,
          'reached': 1,
          'watching': 1,
          'one': 1,
          'messages': 1,
          'given': 1,
          'always': 1,
          'author': 1,
          'nironically': 1,
          'couldnt': 1,
          'truer': 1,
          'great': 1,
          'sweep': 1,
          'audiences': 1,
          'away': 1,
          'fit': 1,
          'recitals': 1,
          'shakespearean': 1,
          'lines': 1,
          'playing': 1,
          'none': 1,
          'moments': 1,
          'involve': 1,
          'character': 1,
          'owner': 1,
          'children': 1,
          'named': 1,
          'juliet': 1,
          'chose': 1,
          'end': 1,
          'lives': 1,
          'offended': 1,
          'marc': 1,
          'norman': 1,
          'tom': 1,
          'stoppard': 1,
          'writing': 1,
          'seen': 1,
          'beyond': 1,
          'characters': 1,
          'credits': 1,
          'yet': 1,
          'point': 1,
          'would': 1,
          'survived': 1,
          'elizabeths': 1,
          'njoseph': 1,
          'worst': 1,
          'fall': 1,
          'though': 1,
          'tragically': 1,
          'unbelievable': 1,
          'comically': 1,
          'bad': 1,
          'ngwyneth': 1,
          'satisfactory': 1,
          'lead': 1,
          'position': 1,
          'supporting': 1,
          'cast': 1,
          'almost': 1,
          'day': 1,
          'ngeoffrey': 1,
          'short': 1,
          'incredible': 1,
          'nthey': 1,
          'shown': 1,
          'proven': 1,
          'survive': 1,
          'weak': 1,
          'links': 1,
          'nyou': 1,
          'also': 1,
          'find': 1,
          'performance': 1,
          'ben': 1,
          'affleck': 1,
          'role': 1,
          'since': 1,
          'hunting': 1,
          'armageddon': 1,
          'doesnt': 1,
          'qualify': 1,
          'rupert': 1,
          'everett': 1,
          'cute': 1,
          'small': 1,
          'part': 1,
          'nbut': 1,
          'sad': 1,
          'excuse': 1,
          'remains': 1,
          'plagued': 1,
          'performances': 1,
          'nwhen': 1,
          'said': 1,
          'done': 1,
          'worth': 1,
          'trip': 1,
          'want': 1,
          'entertained': 1,
          'kindly': 1,
          'pointed': 1,
          'entertainment': 1,
          'fun': 1,
          'necessarily': 1,
          'certainly': 1,
          'nperhaps': 1,
          'best': 1,
          'compared': 1,
          'john': 1,
          'grisham': 1,
          'novel': 1,
          'dear': 1,
          'friend': 1,
          'mine': 1,
          'compare': 1,
          'things': 1,
          'nsimply': 1,
          'farfetched': 1,
          'poorly': 1,
          'crafted': 1,
          'nneg': 1}),
 Counter({'ni': 5,
          'every': 4,
          'girlfriend': 4,
          'eds': 3,
          'role': 3,
          'slut': 3,
          'truman': 3,
          'show': 3,
          'movie': 3,
          'like': 3,
          'film': 2,
          'average': 2,
          'joe': 2,
          'life': 2,
          'ed': 2,
          'trying': 2,
          'especially': 2,
          'usual': 2,
          'hollywood': 2,
          'charm': 2,
          'gets': 2,
          'nthe': 2,
          'cast': 2,
          'good': 2,
          'brother': 2,
          'wit': 2,
          'real': 2,
          'man': 2,
          'almost': 2,
          'times': 1,
          'youd': 1,
          'think': 1,
          'edtv': 1,
          'would': 1,
          'entertaining': 1,
          'mean': 1,
          'resist': 1,
          'story': 1,
          'becomming': 1,
          'celebrity': 1,
          'filmed': 1,
          'minute': 1,
          'day': 1,
          'nbut': 1,
          'perkuny': 1,
          'matthew': 1,
          'mcconaughay': 1,
          'sappy': 1,
          'lifeless': 1,
          'creation': 1,
          'wanders': 1,
          'around': 1,
          'solve': 1,
          'everyones': 1,
          'problems': 1,
          'settle': 1,
          'nmcconaughay': 1,
          'awful': 1,
          'pull': 1,
          '3': 1,
          'week': 1,
          'beard': 1,
          'torn': 1,
          'jeans': 1,
          'nfrankly': 1,
          'devestating': 1,
          'flop': 1,
          'newton': 1,
          'boys': 1,
          'nhe': 1,
          'overacts': 1,
          'way': 1,
          'overexaggerant': 1,
          'body': 1,
          'language': 1,
          'obsession': 1,
          'kissing': 1,
          'women': 1,
          'second': 1,
          'chance': 1,
          'cliched': 1,
          'scene': 1,
          'loses': 1,
          'someone': 1,
          'drops': 1,
          'knee': 1,
          'cries': 1,
          'rest': 1,
          'martin': 1,
          'landau': 1,
          'stepfather': 1,
          'plays': 1,
          'cute': 1,
          'closetodeath': 1,
          'old': 1,
          'guy': 1,
          'makes': 1,
          'witty': 1,
          'comments': 1,
          'njenna': 1,
          'elfman': 1,
          'little': 1,
          'overemotional': 1,
          'main': 1,
          'problem': 1,
          'keeps': 1,
          'getting': 1,
          'sucked': 1,
          'bad': 1,
          'films': 1,
          'e': 1,
          'ncant': 1,
          'hardly': 1,
          'wait': 1,
          'krippendorfs': 1,
          'tribe': 1,
          'nwoody': 1,
          'harrelson': 1,
          'ray': 1,
          'eggheaded': 1,
          'comic': 1,
          'well': 1,
          'wrote': 1,
          'book': 1,
          'entitled': 1,
          'pissed': 1,
          'nelizabeth': 1,
          'hurley': 1,
          'perfectly': 1,
          'easy': 1,
          'dennis': 1,
          'hopper': 1,
          'quick': 1,
          'cameo': 1,
          'biological': 1,
          'father': 1,
          'nice': 1,
          'choice': 1,
          'ironically': 1,
          'coming': 1,
          'turned': 1,
          'christof': 1,
          'nellen': 1,
          'degeneres': 1,
          'stood': 1,
          'executive': 1,
          'awhile': 1,
          'decides': 1,
          'must': 1,
          'go': 1,
          'much': 1,
          'opposite': 1,
          'head': 1,
          'exec': 1,
          'rob': 1,
          'reiners': 1,
          'opinion': 1,
          'hate': 1,
          'compare': 1,
          'fact': 1,
          'ashamed': 1,
          'see': 1,
          'nit': 1,
          'felt': 1,
          'dropped': 1,
          'college': 1,
          'kindergarten': 1,
          'seeing': 1,
          'nedtv': 1,
          'genius': 1,
          'typical': 1,
          'nextracting': 1,
          'tv': 1,
          'part': 1,
          'simple': 1,
          'plotline': 1,
          'steals': 1,
          'brothers': 1,
          'leaves': 1,
          'town': 1,
          'new': 1,
          'feel': 1,
          'move': 1,
          'breaks': 1,
          'comes': 1,
          'back': 1,
          'voila': 1,
          'romance': 1,
          'got': 1,
          'restless': 1,
          'walked': 1,
          'reason': 1,
          'doesnt': 1,
          'drop': 1,
          'c': 1,
          'grade': 1,
          'fine': 1,
          'supporting': 1,
          'performances': 1,
          'nad2am': 1,
          'lost': 1,
          'nose': 1,
          'breathing': 1,
          'njack': 1,
          'nicholson': 1,
          'chinatown': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'one': 7,
          'big': 4,
          'death': 4,
          'row': 4,
          'evil': 4,
          'fact': 4,
          'powers': 3,
          'guy': 3,
          'happen': 3,
          'cookiecutter': 3,
          'also': 3,
          'supposed': 3,
          'story': 3,
          'ni': 3,
          'movie': 3,
          'didnt': 3,
          'see': 3,
          'point': 3,
          'based': 2,
          'stephen': 2,
          'frank': 2,
          'darabont': 2,
          'bore': 2,
          'actors': 2,
          'nthe': 2,
          'special': 2,
          'truly': 2,
          'inmates': 2,
          'except': 2,
          'crazy': 2,
          'personified': 2,
          'guards': 2,
          'reason': 2,
          'three': 2,
          'anyone': 2,
          'tom': 2,
          'hanks': 2,
          'nin': 2,
          'get': 2,
          'man': 2,
          'five': 1,
          'years': 1,
          'directorial': 1,
          'debut': 1,
          'kings': 1,
          'writings': 1,
          'called': 1,
          'shawshank': 1,
          'redemption': 1,
          '910': 1,
          'writerdirector': 1,
          'returns': 1,
          'screen': 1,
          'another': 1,
          'prison': 1,
          'famous': 1,
          'scribblings': 1,
          'king': 1,
          'nunlike': 1,
          'latter': 1,
          'long': 1,
          'laborious': 1,
          'nplot': 1,
          'sevenfoot': 1,
          'inmate': 1,
          'discovered': 1,
          'secret': 1,
          'healing': 1,
          'ncritique': 1,
          'slow': 1,
          'drawnout': 1,
          'boring': 1,
          'uninteresting': 1,
          'unexciting': 1,
          'predictable': 1,
          'topped': 1,
          'couple': 1,
          'onedimensional': 1,
          'characters': 1,
          'nits': 1,
          'positive': 1,
          'attribute': 1,
          'lies': 1,
          'credible': 1,
          'jobs': 1,
          'message': 1,
          'hope': 1,
          'belief': 1,
          'miracles': 1,
          'real': 1,
          'miracle': 1,
          'night': 1,
          'fall': 1,
          'asleep': 1,
          'straightforward': 1,
          'unimpressive': 1,
          'never': 1,
          'understand': 1,
          'care': 1,
          'nof': 1,
          'course': 1,
          'much': 1,
          'like': 1,
          'cell': 1,
          'blocks': 1,
          'filled': 1,
          'decent': 1,
          'misunderstood': 1,
          'nand': 1,
          'lets': 1,
          'forget': 1,
          'angels': 1,
          'heaven': 1,
          'guard': 1,
          'six': 1,
          'appears': 1,
          'nam': 1,
          'identify': 1,
          'even': 1,
          'importantly': 1,
          'give': 1,
          'rats': 1,
          'ass': 1,
          'nwell': 1,
          'sure': 1,
          'missed': 1,
          'boat': 1,
          'thing': 1,
          'ended': 1,
          'caring': 1,
          'entire': 1,
          'picture': 1,
          'obscene': 1,
          'amount': 1,
          'fat': 1,
          'able': 1,
          'burrow': 1,
          'loose': 1,
          'chin': 1,
          'nfurthermore': 1,
          'absolutely': 1,
          'world': 1,
          'director': 1,
          'needed': 1,
          'take': 1,
          'hours': 1,
          'ten': 1,
          'minutes': 1,
          'anyones': 1,
          'life': 1,
          'present': 1,
          'empty': 1,
          'within': 1,
          'anything': 1,
          'heal': 1,
          'left': 1,
          'wondering': 1,
          'still': 1,
          'executed': 1,
          'nwow': 1,
          'nhow': 1,
          'interesting': 1,
          'plots': 1,
          'utter': 1,
          'predictability': 1,
          'fault': 1,
          'guess': 1,
          'healed': 1,
          'gentle': 1,
          'monster': 1,
          'told': 1,
          'certain': 1,
          'lady': 1,
          'tumor': 1,
          'early': 1,
          'nwhip': 1,
          'thinking': 1,
          'caps': 1,
          'kids': 1,
          'nhmmm': 1,
          'wonder': 1,
          'two': 1,
          'guys': 1,
          'nothing': 1,
          'system': 1,
          'hate': 1,
          'negativity': 1,
          'nhmmmm': 1,
          'think': 1,
          'hard': 1,
          'boys': 1,
          'girls': 1,
          'nwhat': 1,
          'crock': 1,
          'guessing': 1,
          'threehour': 1,
          'exercise': 1,
          'spirituality': 1,
          'unfortunately': 1,
          'neither': 1,
          'spiritual': 1,
          'least': 1,
          'bit': 1,
          'engaging': 1,
          'certainly': 1,
          'doublechin': 1,
          'nall': 1,
          'bad': 1,
          'starring': 1,
          'great': 1,
          'solid': 1,
          'work': 1,
          'especially': 1,
          'michael': 1,
          'clarke': 1,
          'duncan': 1,
          'hour': 1,
          'john': 1,
          'coffey': 1,
          'ngive': 1,
          'award': 1,
          'something': 1,
          'nneg': 1}),
 Counter({'babysitter': 9,
          'nthe': 9,
          'film': 7,
          'movie': 6,
          'fails': 5,
          'thug': 4,
          'boyfriend': 4,
          'ni': 4,
          'characters': 4,
          'goal': 4,
          'parents': 3,
          'character': 3,
          'played': 3,
          'sequences': 3,
          'minutes': 3,
          'nif': 3,
          'one': 3,
          'dream': 3,
          'girlfriend': 2,
          'father': 2,
          'fantasies': 2,
          'manages': 2,
          'completely': 2,
          'playing': 2,
          'seems': 2,
          'see': 2,
          'time': 2,
          'j': 2,
          'fantasizes': 2,
          'need': 2,
          'however': 2,
          'though': 2,
          'try': 2,
          'synopsis': 1,
          'small': 1,
          'town': 1,
          'convinces': 1,
          'dimwitted': 1,
          'highschool': 1,
          'student': 1,
          'spy': 1,
          'babysitting': 1,
          'three': 1,
          'unruly': 1,
          'kids': 1,
          'alcoholic': 1,
          'friday': 1,
          'night': 1,
          'nwhile': 1,
          'going': 1,
          'kid': 1,
          'reaching': 1,
          'onset': 1,
          'puberty': 1,
          'ncomments': 1,
          'say': 1,
          'bad': 1,
          'would': 1,
          'quite': 1,
          'understatement': 1,
          'nim': 1,
          'sure': 1,
          'writer': 1,
          'director': 1,
          'ferland': 1,
          'hoping': 1,
          'accomplish': 1,
          'nsuspense': 1,
          'nfamily': 1,
          'drama': 1,
          'nhumor': 1,
          'nerotica': 1,
          'nelements': 1,
          'genres': 1,
          'exist': 1,
          'yet': 1,
          'successfully': 1,
          'achieve': 1,
          'ninstead': 1,
          'dull': 1,
          'lifeless': 1,
          'bore': 1,
          'ultimately': 1,
          'irritate': 1,
          'viewers': 1,
          'suppose': 1,
          'could': 1,
          'watchable': 1,
          'werent': 1,
          'fact': 1,
          'universally': 1,
          'unappealing': 1,
          'nalicia': 1,
          'silverstone': 1,
          'wasted': 1,
          'jennifer': 1,
          'nher': 1,
          'absolutely': 1,
          'depth': 1,
          'sole': 1,
          'purpose': 1,
          'object': 1,
          'neveryone': 1,
          'else': 1,
          'competition': 1,
          'stoop': 1,
          'lowest': 1,
          'level': 1,
          'ends': 1,
          'alcoholics': 1,
          'become': 1,
          'increasingly': 1,
          'obnoxious': 1,
          'proceeds': 1,
          'nwalsh': 1,
          'mother': 1,
          'husbands': 1,
          'best': 1,
          'friend': 1,
          'nnone': 1,
          'fantasy': 1,
          'trust': 1,
          'things': 1,
          'seen': 1,
          'anyway': 1,
          'complete': 1,
          'cheesy': 1,
          'makeout': 1,
          'saxophone': 1,
          'music': 1,
          'meantime': 1,
          'proves': 1,
          'hes': 1,
          'evil': 1,
          'annoying': 1,
          'habit': 1,
          'smashing': 1,
          'halfempty': 1,
          'beer': 1,
          'bottles': 1,
          'sudden': 1,
          'apparent': 1,
          'reason': 1,
          'absurd': 1,
          'babysitters': 1,
          'catatonically': 1,
          'braindead': 1,
          'manipulative': 1,
          'iagolike': 1,
          'manner': 1,
          'doesnt': 1,
          'really': 1,
          'hard': 1,
          'talk': 1,
          'bingedrinking': 1,
          'smoking': 1,
          'grass': 1,
          'running': 1,
          'away': 1,
          'cops': 1,
          'peeping': 1,
          'tom': 1,
          'matter': 1,
          'nincredible': 1,
          'n': 1,
          'course': 1,
          'boyfriends': 1,
          'original': 1,
          'plan': 1,
          'evening': 1,
          'laugh': 1,
          'sit': 1,
          'empty': 1,
          'diner': 1,
          'read': 1,
          'catcher': 1,
          'rye': 1,
          'salinger': 1,
          'suspenseful': 1,
          'nthere': 1,
          'surprisingly': 1,
          'tense': 1,
          'moments': 1,
          'nearly': 1,
          'come': 1,
          'final': 1,
          'minute': 1,
          'nby': 1,
          'audience': 1,
          'tired': 1,
          'inane': 1,
          'truthfully': 1,
          'cares': 1,
          'happens': 1,
          'nno': 1,
          'suspense': 1,
          'occurs': 1,
          'either': 1,
          'every': 1,
          'single': 1,
          'obviously': 1,
          'sequence': 1,
          'inception': 1,
          'humorous': 1,
          'also': 1,
          'found': 1,
          'nothing': 1,
          'even': 1,
          'remotely': 1,
          'funny': 1,
          'boozing': 1,
          'seemed': 1,
          'times': 1,
          'laughs': 1,
          'dramatic': 1,
          'onedimensional': 1,
          'uninteresting': 1,
          'nfinally': 1,
          'titillating': 1,
          'type': 1,
          'destined': 1,
          'ad': 1,
          'infinitum': 1,
          'hbo': 1,
          '2': 1,
          'morning': 1,
          'well': 1,
          'arent': 1,
          'erotic': 1,
          'brief': 1,
          'outside': 1,
          'short': 1,
          'scene': 1,
          'contain': 1,
          'nudity': 1,
          'cant': 1,
          'trash': 1,
          'first': 1,
          '10': 1,
          'vaguely': 1,
          'resemble': 1,
          'interesting': 1,
          'conclusion': 1,
          'sports': 1,
          'halfway': 1,
          'decent': 1,
          'fistfight': 1,
          '79': 1,
          'drag': 1,
          'nsilverstones': 1,
          'end': 1,
          'turns': 1,
          'asks': 1,
          'thinking': 1,
          'asked': 1,
          'question': 1,
          'spent': 1,
          '99': 1,
          'cents': 1,
          'renting': 1,
          'turkey': 1,
          'nneg': 1}),
 Counter({'woo': 8,
          'pinkett': 5,
          'nthe': 4,
          'tim': 4,
          'smith': 3,
          'one': 3,
          'love': 3,
          'get': 3,
          'nin': 3,
          'motion': 2,
          'constant': 2,
          'ndespite': 2,
          'available': 2,
          'supporting': 2,
          'low': 2,
          'arent': 2,
          'good': 2,
          'black': 2,
          'thats': 2,
          'nas': 2,
          'smiths': 2,
          'first': 2,
          'opportunity': 2,
          'stupid': 2,
          'romantic': 2,
          'latest': 2,
          'effort': 2,
          'worse': 2,
          'relationship': 2,
          'huge': 2,
          'characters': 2,
          'right': 2,
          'end': 2,
          'virgo': 2,
          'enjoy': 2,
          'theres': 2,
          'working': 1,
          'picture': 1,
          'industry': 1,
          'must': 1,
          'source': 1,
          'frustration': 1,
          'frontline': 1,
          'african': 1,
          'american': 1,
          'actress': 1,
          'like': 1,
          'jada': 1,
          'freshest': 1,
          'talents': 1,
          'often': 1,
          'relegated': 1,
          'playing': 1,
          'thankless': 1,
          'parts': 1,
          'dirty': 1,
          'shame': 1,
          'nutty': 1,
          'professor': 1,
          'problem': 1,
          'course': 1,
          'many': 1,
          'roles': 1,
          'women': 1,
          'ntake': 1,
          'away': 1,
          'likes': 1,
          'waiting': 1,
          'exhale': 1,
          'set': 1,
          'soul': 1,
          'food': 1,
          'eves': 1,
          'bayou': 1,
          'left': 1,
          'chance': 1,
          'someones': 1,
          'girlfriend': 1,
          'local': 1,
          'whore': 1,
          'murder': 1,
          'victim': 1,
          'result': 1,
          'atop': 1,
          'marquee': 1,
          'stuck': 1,
          'formulaic': 1,
          'comedy': 1,
          'unpromising': 1,
          'title': 1,
          'nactually': 1,
          'directorial': 1,
          'daisy': 1,
          'v': 1,
          'nmayer': 1,
          'party': 1,
          'girl': 1,
          'could': 1,
          'film': 1,
          'offers': 1,
          'funny': 1,
          'albeit': 1,
          'juvenile': 1,
          'moments': 1,
          'onscreen': 1,
          'tommy': 1,
          'davidsons': 1,
          'appealing': 1,
          'rare': 1,
          'occasions': 1,
          'two': 1,
          'forced': 1,
          'play': 1,
          'dumb': 1,
          'sake': 1,
          'endless': 1,
          'barrage': 1,
          'cheap': 1,
          'gags': 1,
          'nunfortunately': 1,
          'portions': 1,
          'movie': 1,
          'insulting': 1,
          'intelligence': 1,
          'anyone': 1,
          'tripledigit': 1,
          'q': 1,
          'situations': 1,
          'painfully': 1,
          'contrived': 1,
          'main': 1,
          'lifted': 1,
          'sitcoms': 1,
          'players': 1,
          'incredibly': 1,
          'wondered': 1,
          'whether': 1,
          'participated': 1,
          'kind': 1,
          'free': 1,
          'lobotomy': 1,
          'lab': 1,
          'experiment': 1,
          'nwoo': 1,
          'spontaneous': 1,
          'energetic': 1,
          'young': 1,
          'woman': 1,
          'looking': 1,
          'wrong': 1,
          'places': 1,
          'nher': 1,
          'testosteroneoverdosed': 1,
          'drugdealer': 1,
          'came': 1,
          'abrupt': 1,
          'refused': 1,
          'wear': 1,
          'beeper': 1,
          'nnow': 1,
          'transvestitemedium': 1,
          'friend': 1,
          'celestrial': 1,
          'girlina': 1,
          'predicts': 1,
          'shes': 1,
          'meet': 1,
          'mr': 1,
          'hell': 1,
          'nlater': 1,
          'day': 1,
          'given': 1,
          'go': 1,
          'blind': 1,
          'date': 1,
          'shy': 1,
          'man': 1,
          'penchant': 1,
          'neatness': 1,
          'order': 1,
          'happens': 1,
          'nits': 1,
          'sight': 1,
          'however': 1,
          'nthings': 1,
          'rocky': 1,
          'start': 1,
          'makes': 1,
          'awkward': 1,
          'pass': 1,
          'even': 1,
          'pair': 1,
          'arrives': 1,
          'swanky': 1,
          'restaurant': 1,
          'quiet': 1,
          'dinner': 1,
          'onehundred': 1,
          'year': 1,
          'history': 1,
          'pictures': 1,
          'ton': 1,
          'bad': 1,
          'white': 1,
          'movies': 1,
          'mismatched': 1,
          'lovers': 1,
          'suppose': 1,
          'fair': 1,
          'caliber': 1,
          'comedies': 1,
          'know': 1,
          'beginning': 1,
          'going': 1,
          'together': 1,
          'question': 1,
          'courtship': 1,
          'rituals': 1,
          'entertaining': 1,
          'entry': 1,
          'genre': 1,
          'audience': 1,
          'becomes': 1,
          'caught': 1,
          'story': 1,
          'matter': 1,
          'familiar': 1,
          'reliance': 1,
          'upon': 1,
          'unfunny': 1,
          'moronic': 1,
          'humor': 1,
          'sinks': 1,
          'project': 1,
          'nfor': 1,
          'spotting': 1,
          'continuity': 1,
          'gaffes': 1,
          'involving': 1,
          'corvette': 1,
          'broken': 1,
          'window': 1,
          'miraculously': 1,
          'repairs': 1,
          'added': 1,
          'mystery': 1,
          'car': 1,
          'looses': 1,
          'top': 1,
          'nsadly': 1,
          'films': 1,
          'enjoyable': 1,
          'sequences': 1,
          'entertainment': 1,
          'value': 1,
          'entirely': 1,
          'unintentional': 1,
          'exuding': 1,
          'charm': 1,
          'every': 1,
          'pore': 1,
          'little': 1,
          'davidson': 1,
          'save': 1,
          'david': 1,
          'c': 1,
          'johnsons': 1,
          'script': 1,
          'nsince': 1,
          'misses': 1,
          'mark': 1,
          'much': 1,
          'better': 1,
          'name': 1,
          'might': 1,
          'whoops': 1,
          'nneg': 1}),
 Counter({'jakob': 9,
          'liar': 5,
          'scene': 4,
          'much': 4,
          'williams': 4,
          'nthe': 3,
          'ghetto': 3,
          'njakob': 3,
          'character': 3,
          'radio': 3,
          'scenes': 3,
          'little': 3,
          'early': 2,
          'heym': 2,
          'one': 2,
          'side': 2,
          'german': 2,
          'troops': 2,
          'jews': 2,
          'effective': 2,
          'setup': 2,
          'outset': 2,
          'man': 2,
          'russian': 2,
          'nwhen': 2,
          'brings': 2,
          'news': 2,
          'become': 2,
          'hope': 2,
          'burdened': 2,
          'stories': 2,
          'story': 2,
          'ordinary': 2,
          'person': 2,
          'less': 2,
          'may': 2,
          'see': 2,
          'craft': 2,
          'lina': 2,
          'girl': 2,
          'problematic': 2,
          'theyre': 2,
          'distracting': 2,
          'cutesy': 2,
          'film': 2,
          'others': 2,
          'away': 2,
          'central': 2,
          'subject': 2,
          'hints': 1,
          'better': 1,
          'could': 1,
          'set': 1,
          'jewish': 1,
          'poland': 1,
          'circa': 1,
          '1944': 1,
          'onetime': 1,
          'cafe': 1,
          'proprietor': 1,
          'named': 1,
          'walking': 1,
          'resolutely': 1,
          'streets': 1,
          'fists': 1,
          'stuffed': 1,
          'coat': 1,
          'pockets': 1,
          'nto': 1,
          'residents': 1,
          'scavenge': 1,
          'food': 1,
          'street': 1,
          'beat': 1,
          'group': 1,
          'however': 1,
          'never': 1,
          'stops': 1,
          'moving': 1,
          'nits': 1,
          'efficient': 1,
          'clearly': 1,
          'nobodys': 1,
          'idea': 1,
          'hero': 1,
          'nhe': 1,
          'responded': 1,
          'horror': 1,
          'surroundings': 1,
          'withdrawing': 1,
          'excising': 1,
          'moral': 1,
          'peripheral': 1,
          'vision': 1,
          'critical': 1,
          'fate': 1,
          'turn': 1,
          'reluctant': 1,
          'savior': 1,
          'nafter': 1,
          'visit': 1,
          'commandants': 1,
          'office': 1,
          'moment': 1,
          'alone': 1,
          'turnedon': 1,
          'learns': 1,
          'quite': 1,
          'near': 1,
          'first': 1,
          'war': 1,
          'years': 1,
          'fellow': 1,
          'convinced': 1,
          'must': 1,
          'punishable': 1,
          'offense': 1,
          'good': 1,
          'everyday': 1,
          'specter': 1,
          'suicide': 1,
          'vanishes': 1,
          'na': 1,
          'private': 1,
          'limited': 1,
          'creativity': 1,
          'finds': 1,
          'creating': 1,
          'military': 1,
          'progress': 1,
          'keep': 1,
          'neighbors': 1,
          'alive': 1,
          'nthis': 1,
          'promising': 1,
          'extraordinary': 1,
          'casting': 1,
          'question': 1,
          'played': 1,
          'robin': 1,
          'ni': 1,
          'depressing': 1,
          'opinion': 1,
          'growing': 1,
          'assured': 1,
          'actor': 1,
          'serious': 1,
          'roles': 1,
          'every': 1,
          'passing': 1,
          'year': 1,
          'ncompare': 1,
          'dramatic': 1,
          'world': 1,
          'according': 1,
          'garp': 1,
          'moscow': 1,
          'hudson': 1,
          'dreams': 1,
          'come': 1,
          'patch': 1,
          'adams': 1,
          'mannered': 1,
          'least': 1,
          'sensible': 1,
          'choosing': 1,
          'material': 1,
          'depends': 1,
          'notion': 1,
          'struggle': 1,
          'fictions': 1,
          'always': 1,
          'looks': 1,
          'like': 1,
          'hes': 1,
          'struggling': 1,
          '_not_': 1,
          'improvises': 1,
          'address': 1,
          'winston': 1,
          'churchill': 1,
          'ailing': 1,
          '10yearold': 1,
          'orphan': 1,
          'hannah': 1,
          'taylor': 1,
          'gordon': 1,
          'seems': 1,
          'relieved': 1,
          'finally': 1,
          'get': 1,
          'wacky': 1,
          'noh': 1,
          'yes': 1,
          'theres': 1,
          'nsome': 1,
          'viewers': 1,
          'undoubtedly': 1,
          'consider': 1,
          'heros': 1,
          'fanciful': 1,
          'young': 1,
          'charge': 1,
          'reminiscent': 1,
          'life': 1,
          'beautiful': 1,
          'arent': 1,
          'familiar': 1,
          'ntheyre': 1,
          'jarring': 1,
          'introducing': 1,
          'relationship': 1,
          'shouldnt': 1,
          'relationships': 1,
          'njakobs': 1,
          'arc': 1,
          'willingness': 1,
          'act': 1,
          'benefit': 1,
          'plenty': 1,
          'without': 1,
          'poor': 1,
          'nevery': 1,
          'feels': 1,
          'contrived': 1,
          'pulling': 1,
          'coming': 1,
          'previously': 1,
          'hopeless': 1,
          'people': 1,
          'nit': 1,
          'pleasant': 1,
          'surprise': 1,
          'find': 1,
          'grittier': 1,
          'production': 1,
          'might': 1,
          'expect': 1,
          'hollywoodized': 1,
          'holocaust': 1,
          'combining': 1,
          'weighty': 1,
          'matter': 1,
          'dark': 1,
          'humor': 1,
          'ways': 1,
          'ndirector': 1,
          'peter': 1,
          'kassovitz': 1,
          'working': 1,
          'jurek': 1,
          'beckers': 1,
          'novel': 1,
          'crafts': 1,
          'nice': 1,
          'townspeople': 1,
          'draws': 1,
          'solid': 1,
          'performances': 1,
          'armin': 1,
          'muellerstahl': 1,
          'oncerevered': 1,
          'doctor': 1,
          'bob': 1,
          'balaban': 1,
          'barber': 1,
          'drifting': 1,
          'depression': 1,
          'nthere': 1,
          'many': 1,
          'things': 1,
          'going': 1,
          'prove': 1,
          'whether': 1,
          'sketchy': 1,
          'romanctic': 1,
          'angle': 1,
          'involving': 1,
          'liev': 1,
          'schreiber': 1,
          'earnest': 1,
          'former': 1,
          'prizefighter': 1,
          'incongrous': 1,
          'presence': 1,
          'sweet': 1,
          'utterly': 1,
          'irrelevant': 1,
          'deals': 1,
          'delicate': 1,
          'fumbling': 1,
          'compelling': 1,
          'waste': 1,
          'nand': 1,
          'wonderful': 1,
          'wasted': 1,
          'fumbled': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 7,
          'women': 6,
          'bad': 4,
          'characters': 4,
          'nwe': 4,
          'beyer': 3,
          'talk': 3,
          'interviews': 3,
          'miami': 3,
          'real': 3,
          'plot': 3,
          'dialogue': 3,
          'one': 3,
          'nat': 3,
          'point': 3,
          'mother': 3,
          'scene': 3,
          'never': 3,
          'worse': 3,
          'scenes': 3,
          'picture': 3,
          'makes': 2,
          'talking': 2,
          'sex': 2,
          'redeeming': 2,
          'qualities': 2,
          'friends': 2,
          'idea': 2,
          'main': 2,
          'moments': 2,
          'nthere': 2,
          'acting': 2,
          'corny': 2,
          'emotional': 2,
          'overextension': 2,
          'developments': 2,
          'character': 2,
          'supposed': 2,
          'dont': 2,
          'men': 2,
          'imagine': 2,
          'pretty': 2,
          'mosaic': 2,
          'stereotypes': 2,
          'first': 1,
          'troy': 1,
          'wrote': 1,
          'critically': 1,
          'panned': 1,
          'b': 1,
          'p': 1,
          'nnow': 1,
          'directorial': 1,
          'debut': 1,
          'writing': 1,
          'directing': 1,
          'starring': 1,
          'subpar': 1,
          'nthough': 1,
          'without': 1,
          'basic': 1,
          'story': 1,
          'follows': 1,
          'three': 1,
          'single': 1,
          'jazz': 1,
          'lena': 1,
          'randi': 1,
          'ingerman': 1,
          'michelle': 1,
          'paget': 1,
          'brewster': 1,
          'search': 1,
          'love': 1,
          'njazz': 1,
          'local': 1,
          'show': 1,
          'would': 1,
          'feature': 1,
          'dating': 1,
          'nshe': 1,
          'make': 1,
          'demo': 1,
          'tape': 1,
          'sprinkled': 1,
          'throughout': 1,
          'part': 1,
          'commentary': 1,
          'situations': 1,
          'fact': 1,
          'provides': 1,
          'refreshing': 1,
          'break': 1,
          'melodramatic': 1,
          'several': 1,
          'nin': 1,
          'lowbudget': 1,
          'independent': 1,
          'firsttime': 1,
          'director': 1,
          'faults': 1,
          'sometimes': 1,
          'forgiven': 1,
          'screenplay': 1,
          'fresh': 1,
          'solid': 1,
          'nthat': 1,
          'case': 1,
          'script': 1,
          'suffers': 1,
          'random': 1,
          'four': 1,
          'five': 1,
          'turns': 1,
          'raising': 1,
          'question': 1,
          'come': 1,
          'lifelong': 1,
          'reconciliation': 1,
          'moved': 1,
          'since': 1,
          'completely': 1,
          'unledup': 1,
          'really': 1,
          'care': 1,
          'get': 1,
          'along': 1,
          'nweve': 1,
          'seen': 1,
          'see': 1,
          'nwho': 1,
          'cares': 1,
          'nwhats': 1,
          'sudden': 1,
          'engage': 1,
          'sympathy': 1,
          'another': 1,
          'announces': 1,
          'cant': 1,
          'children': 1,
          'napparently': 1,
          'devastating': 1,
          'wouldnt': 1,
          'know': 1,
          'talked': 1,
          'kids': 1,
          'nevertheless': 1,
          'expected': 1,
          'devastated': 1,
          'feels': 1,
          'like': 1,
          'afterthought': 1,
          'emotion': 1,
          'manipulative': 1,
          'shallow': 1,
          'nthese': 1,
          'grow': 1,
          'culminating': 1,
          'absurd': 1,
          'climax': 1,
          'ntwo': 1,
          'played': 1,
          'overwhelming': 1,
          'melodrama': 1,
          'found': 1,
          'laughing': 1,
          'none': 1,
          'lovers': 1,
          'spat': 1,
          'two': 1,
          'minor': 1,
          'expressing': 1,
          'copious': 1,
          'grief': 1,
          'cleaning': 1,
          'house': 1,
          'wails': 1,
          'despair': 1,
          'clouds': 1,
          'ajax': 1,
          'nthinking': 1,
          'hard': 1,
          'admit': 1,
          'nbut': 1,
          'nfirst': 1,
          'original': 1,
          'often': 1,
          'wonder': 1,
          'alone': 1,
          'groups': 1,
          'gives': 1,
          'good': 1,
          'nits': 1,
          'something': 1,
          'think': 1,
          'subject': 1,
          'nsecond': 1,
          'sincere': 1,
          'ntaken': 1,
          'together': 1,
          'form': 1,
          'beachwalkers': 1,
          'bistro': 1,
          'diners': 1,
          'made': 1,
          'sound': 1,
          'bites': 1,
          'tile': 1,
          'womans': 1,
          'experience': 1,
          'nneither': 1,
          'truly': 1,
          'representative': 1,
          'sets': 1,
          'generalizations': 1,
          'telling': 1,
          'way': 1,
          'level': 1,
          'emerge': 1,
          'called': 1,
          'true': 1,
          'ni': 1,
          'people': 1,
          'liking': 1,
          'likes': 1,
          'dislikes': 1,
          'skills': 1,
          'thrills': 1,
          'whole': 1,
          'nand': 1,
          'even': 1,
          'harder': 1,
          'forgive': 1,
          'nill': 1,
          'give': 1,
          'strike': 1,
          'shes': 1,
          'nrated': 1,
          'r': 1,
          'almost': 1,
          'got': 1,
          'nc17': 1,
          'explicit': 1,
          'sexual': 1,
          'nudity': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'mulholland': 3,
          'drive': 3,
          'lynch': 3,
          'brunette': 3,
          'blonde': 3,
          'blue': 2,
          'harring': 2,
          'apartment': 2,
          'naomi': 2,
          'watts': 2,
          'two': 2,
          'women': 2,
          'various': 2,
          'key': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'universal': 1,
          'focus': 1,
          'nwhatever': 1,
          'david': 1,
          'selling': 1,
          'im': 1,
          'buying': 1,
          'nfrom': 1,
          'writerdirector': 1,
          'velvet': 1,
          'twin': 1,
          'peaks': 1,
          'comes': 1,
          'another': 1,
          'dark': 1,
          'mysterious': 1,
          'thriller': 1,
          'opens': 1,
          'automobile': 1,
          'accident': 1,
          'serpentine': 1,
          'street': 1,
          'twists': 1,
          'high': 1,
          'hollywood': 1,
          'hills': 1,
          'ndazed': 1,
          'beautiful': 1,
          'laura': 1,
          'elena': 1,
          'emerges': 1,
          'stumbles': 1,
          'hill': 1,
          'slipping': 1,
          'unobserved': 1,
          '30sstyle': 1,
          'tenant': 1,
          'leaves': 1,
          'trip': 1,
          'next': 1,
          'morning': 1,
          'dewy': 1,
          'deep': 1,
          'river': 1,
          'ontario': 1,
          'arrives': 1,
          'la': 1,
          'dreams': 1,
          'stardom': 1,
          'suitcase': 1,
          'nher': 1,
          'aunt': 1,
          'owns': 1,
          'meet': 1,
          'amnesia': 1,
          'tries': 1,
          'help': 1,
          'discover': 1,
          'identity': 1,
          'along': 1,
          'latent': 1,
          'lesbian': 1,
          'lust': 1,
          'nmeanwhile': 1,
          'hotshot': 1,
          'director': 1,
          'justin': 1,
          'theroux': 1,
          'whose': 1,
          'wife': 1,
          'bed': 1,
          'poolman': 1,
          'forced': 1,
          'cast': 1,
          'certain': 1,
          'actress': 1,
          'new': 1,
          'film': 1,
          'theres': 1,
          'assassin': 1,
          'mark': 1,
          'pellegrino': 1,
          'roaming': 1,
          'city': 1,
          'tortuous': 1,
          'paths': 1,
          'characters': 1,
          'others': 1,
          'named': 1,
          'cookie': 1,
          'coco': 1,
          'cowboy': 1,
          'intersect': 1,
          'points': 1,
          'plot': 1,
          'remains': 1,
          'elusive': 1,
          'midway': 1,
          'story': 1,
          'play': 1,
          'different': 1,
          'alternate': 1,
          'reality': 1,
          'leaving': 1,
          'huge': 1,
          'wad': 1,
          'cash': 1,
          'metallic': 1,
          'paralyzed': 1,
          'mogul': 1,
          'lot': 1,
          'questions': 1,
          'go': 1,
          'unanswered': 1,
          'nelena': 1,
          'particularly': 1,
          'gifted': 1,
          'actresses': 1,
          'effectively': 1,
          'making': 1,
          'subtle': 1,
          'switch': 1,
          'said': 1,
          'former': 1,
          'g': 1,
          'ndancer': 1,
          'ann': 1,
          'miller': 1,
          'whos': 1,
          'stiff': 1,
          'selfconscious': 1,
          'speaking': 1,
          'like': 1,
          'players': 1,
          'staccato': 1,
          'tones': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'frenzied': 1,
          'frustrating': 1,
          '4': 1,
          'originally': 1,
          'designed': 1,
          'episodic': 1,
          'tv': 1,
          'pilot': 1,
          'surreal': 1,
          'triumph': 1,
          'suspenseful': 1,
          'style': 1,
          'substance': 1,
          'packaged': 1,
          'puzzle': 1,
          'several': 1,
          'pieces': 1,
          'left': 1,
          'nneg': 1}),
 Counter({'faculty': 4,
          'williamson': 4,
          'scream': 3,
          'characters': 3,
          'thirtysix': 2,
          'situations': 2,
          'nthis': 2,
          'nthe': 2,
          'rodriguez': 2,
          'typical': 2,
          'outing': 2,
          'invasion': 2,
          'body': 2,
          'horror': 2,
          'one': 2,
          'use': 2,
          'stock': 2,
          'designs': 2,
          'alien': 2,
          'take': 2,
          'lack': 2,
          'movies': 2,
          'saved': 2,
          'last': 2,
          'summer': 2,
          'scifi': 2,
          'comes': 2,
          'roles': 2,
          'far': 2,
          'georges': 1,
          'polti': 1,
          'wrote': 1,
          'paper': 1,
          'called': 1,
          'dramatic': 1,
          'asserted': 1,
          'fact': 1,
          'drama': 1,
          'could': 1,
          'defined': 1,
          'different': 1,
          'may': 1,
          'modern': 1,
          'restatement': 1,
          'biblical': 1,
          'prophecy': 1,
          'ecclesiastes': 1,
          'theres': 1,
          'nothing': 1,
          'new': 1,
          'sun': 1,
          'latest': 1,
          'movie': 1,
          'dusk': 1,
          'till': 1,
          'dawn': 1,
          'director': 1,
          'robert': 1,
          'certainly': 1,
          'proves': 1,
          'hollywood': 1,
          'fashion': 1,
          'ntheres': 1,
          'measureable': 1,
          'fraction': 1,
          'original': 1,
          'material': 1,
          'unworthy': 1,
          'ndrawing': 1,
          'elements': 1,
          'puppet': 1,
          'masters': 1,
          'snatchers': 1,
          'screenwriter': 1,
          'kevin': 1,
          '2': 1,
          'credit': 1,
          'gives': 1,
          'us': 1,
          'tale': 1,
          'set': 1,
          'middle': 1,
          'america': 1,
          'ohio': 1,
          'eventful': 1,
          'fall': 1,
          'nmaking': 1,
          'cast': 1,
          'unusually': 1,
          'done': 1,
          'independence': 1,
          'daystyle': 1,
          'rather': 1,
          'back': 1,
          'door': 1,
          'nparasitic': 1,
          'aliens': 1,
          'rundown': 1,
          'high': 1,
          'school': 1,
          'soon': 1,
          'infested': 1,
          'student': 1,
          'leaving': 1,
          'ensemble': 1,
          'principal': 1,
          'win': 1,
          'day': 1,
          'gusto': 1,
          'major': 1,
          'stumbling': 1,
          'block': 1,
          'neven': 1,
          'though': 1,
          'genre': 1,
          'seen': 1,
          'quality': 1,
          'theyve': 1,
          'energetic': 1,
          'approach': 1,
          'casts': 1,
          'shadow': 1,
          'doubt': 1,
          'williamsons': 1,
          'ability': 1,
          'enjoyed': 1,
          'success': 1,
          'wes': 1,
          'cravendirected': 1,
          'couldnt': 1,
          'pull': 1,
          'anything': 1,
          'solid': 1,
          'know': 1,
          'nalthough': 1,
          'bent': 1,
          'slasher': 1,
          'picture': 1,
          'still': 1,
          'results': 1,
          'throw': 1,
          'steel': 1,
          'cage': 1,
          'match': 1,
          'see': 1,
          'alive': 1,
          'non': 1,
          'level': 1,
          'main': 1,
          'played': 1,
          'virtual': 1,
          'unknowns': 1,
          'nonly': 1,
          'recognizeable': 1,
          'elijah': 1,
          'wood': 1,
          'deep': 1,
          'impact': 1,
          'front': 1,
          'screen': 1,
          'veterans': 1,
          'minor': 1,
          'teachers': 1,
          'nperhaps': 1,
          'mind': 1,
          'champion': 1,
          'upandcomers': 1,
          'fame': 1,
          'counterparts': 1,
          'achieved': 1,
          'theyd': 1,
          'need': 1,
          'star': 1,
          'wb': 1,
          'television': 1,
          'show': 1,
          'horrors': 1,
          'puberty': 1,
          'la': 1,
          'dawsons': 1,
          'creek': 1,
          'nneedless': 1,
          'say': 1,
          'acting': 1,
          'top': 1,
          'notch': 1,
          'necessity': 1,
          'ask': 1,
          'nthere': 1,
          'moment': 1,
          'two': 1,
          'genuine': 1,
          'unfortunately': 1,
          'story': 1,
          'enough': 1,
          'direction': 1,
          'make': 1,
          'nin': 1,
          'sum': 1,
          'long': 1,
          'shot': 1,
          'pay': 1,
          'nneg': 1}),
 Counter({'film': 4,
          'willard': 4,
          'one': 3,
          'movies': 3,
          'everything': 3,
          'make': 3,
          'bad': 3,
          'talking': 3,
          'get': 3,
          'twist': 2,
          'ending': 2,
          'nwhen': 2,
          'ends': 2,
          'confusion': 2,
          'description': 2,
          'fun': 2,
          'know': 2,
          'going': 2,
          'minutes': 2,
          'movie': 2,
          'im': 2,
          'nscrewed': 2,
          'guilty': 2,
          'pleasure': 2,
          'friends': 2,
          'much': 2,
          'christmas': 2,
          'crock': 2,
          'rusty': 2,
          'chapelle': 2,
          'dog': 2,
          'returns': 2,
          'money': 2,
          'could': 2,
          'nthe': 2,
          'screwed': 2,
          'script': 2,
          'characters': 2,
          'cops': 2,
          'devito': 2,
          'popular': 1,
          'trend': 1,
          'last': 1,
          'couple': 1,
          'years': 1,
          'nwatching': 1,
          'seems': 1,
          'sense': 1,
          'suddenly': 1,
          'blown': 1,
          'away': 1,
          'unexpected': 1,
          'surprise': 1,
          'moment': 1,
          'recollection': 1,
          'possibly': 1,
          'second': 1,
          'viewing': 1,
          'clarification': 1,
          'nthis': 1,
          'ideal': 1,
          'perfects': 1,
          'sets': 1,
          'ngood': 1,
          'surprises': 1,
          'watch': 1,
          'nthen': 1,
          'twists': 1,
          'nyou': 1,
          'either': 1,
          'happen': 1,
          'ten': 1,
          'reindeer': 1,
          'games': 1,
          'guess': 1,
          'outrageously': 1,
          'stupid': 1,
          'perfectly': 1,
          'suits': 1,
          'latter': 1,
          'nwhat': 1,
          'starts': 1,
          'dumb': 1,
          'mock': 1,
          'group': 1,
          'complex': 1,
          'finale': 1,
          'way': 1,
          'nby': 1,
          'writers': 1,
          'man': 1,
          'moon': 1,
          'people': 1,
          'vs': 1,
          'nlarry': 1,
          'flynt': 1,
          'scott': 1,
          'alexander': 1,
          'larry': 1,
          'karaszewski': 1,
          'leave': 1,
          'milos': 1,
          'forman': 1,
          'behind': 1,
          'take': 1,
          'stab': 1,
          'directing': 1,
          'nwhoops': 1,
          'inane': 1,
          'carol': 1,
          'gone': 1,
          'berserk': 1,
          'genuine': 1,
          'laughs': 1,
          'many': 1,
          'acting': 1,
          'embarrassments': 1,
          'nnorm': 1,
          'macdonald': 1,
          'stars': 1,
          'filmore': 1,
          'hard': 1,
          'working': 1,
          'chauffeur': 1,
          'wants': 1,
          'little': 1,
          'respect': 1,
          'rich': 1,
          'old': 1,
          'insidious': 1,
          'boss': 1,
          'miss': 1,
          'elaine': 1,
          'stritch': 1,
          'overhears': 1,
          'plans': 1,
          'fire': 1,
          'day': 1,
          'convinced': 1,
          'best': 1,
          'friend': 1,
          'dave': 1,
          'kidnap': 1,
          'crocks': 1,
          'beloved': 1,
          'hold': 1,
          'ransom': 1,
          'million': 1,
          'dollars': 1,
          'ntoo': 1,
          'excited': 1,
          'pay': 1,
          'attention': 1,
          'hapless': 1,
          'losers': 1,
          'plan': 1,
          'goes': 1,
          'awry': 1,
          'escapes': 1,
          'home': 1,
          'nnow': 1,
          'thinks': 1,
          'kidnapped': 1,
          'two': 1,
          'realizing': 1,
          'even': 1,
          'decide': 1,
          'stage': 1,
          'fake': 1,
          'kidnapping': 1,
          'nof': 1,
          'course': 1,
          'go': 1,
          'wrong': 1,
          'first': 1,
          'fortyfive': 1,
          'harmless': 1,
          'entertainment': 1,
          'enjoyably': 1,
          'nbut': 1,
          'convoluted': 1,
          'eventually': 1,
          'builds': 1,
          'disaster': 1,
          'impossible': 1,
          'bear': 1,
          'idiotic': 1,
          'reckless': 1,
          'becomes': 1,
          'nat': 1,
          'point': 1,
          'wanted': 1,
          'seat': 1,
          'yell': 1,
          'idiot': 1,
          'nim': 1,
          'extremely': 1,
          'annoying': 1,
          'also': 1,
          'na': 1,
          'monkey': 1,
          'solved': 1,
          'case': 1,
          'within': 1,
          'hour': 1,
          'guys': 1,
          'headed': 1,
          'murder': 1,
          'ones': 1,
          'daniel': 1,
          'benzali': 1,
          'clueless': 1,
          'forgive': 1,
          'nthey': 1,
          'give': 1,
          'real': 1,
          'names': 1,
          'nalso': 1,
          'poor': 1,
          'danny': 1,
          'apparently': 1,
          'turn': 1,
          'role': 1,
          'days': 1,
          'nlooking': 1,
          'almost': 1,
          'identical': 1,
          'penguin': 1,
          'batman': 1,
          'every': 1,
          'time': 1,
          'appeared': 1,
          'screen': 1,
          'shake': 1,
          'head': 1,
          'disbelief': 1,
          'nhe': 1,
          'didnt': 1,
          'belong': 1,
          'nmacdonald': 1,
          'veterans': 1,
          'kinds': 1,
          'made': 1,
          'worse': 1,
          'already': 1,
          'gross': 1,
          'humor': 1,
          'certainly': 1,
          'forte': 1,
          'nif': 1,
          'youre': 1,
          'fan': 1,
          'norm': 1,
          'macdonalds': 1,
          'chaotic': 1,
          'comedy': 1,
          'dirty': 1,
          'work': 1,
          'might': 1,
          'actually': 1,
          'love': 1,
          'nearsequel': 1,
          'notherwise': 1,
          'dont': 1,
          'hardearned': 1,
          'nneg': 1}),
 Counter({'spice': 10,
          'girls': 8,
          'film': 6,
          'world': 4,
          'one': 4,
          'girl': 4,
          'power': 4,
          'like': 4,
          'really': 4,
          'theres': 3,
          'things': 3,
          'good': 2,
          'nif': 2,
          'fun': 2,
          'keep': 2,
          'nand': 2,
          'ni': 2,
          'nthe': 2,
          'idea': 2,
          'credit': 2,
          'make': 2,
          'two': 2,
          'sat': 2,
          'long': 1,
          'promotional': 1,
          'british': 1,
          'band': 1,
          'nsure': 1,
          'hint': 1,
          'humor': 1,
          'every': 1,
          'nactually': 1,
          'couple': 1,
          'pretty': 1,
          'jabs': 1,
          'nbut': 1,
          'overall': 1,
          'cares': 1,
          'nnot': 1,
          'dont': 1,
          'know': 1,
          'sing': 1,
          'songs': 1,
          'love': 1,
          'friendship': 1,
          'responsibility': 1,
          'yet': 1,
          'dress': 1,
          'streetwalkers': 1,
          'lower': 1,
          'middle': 1,
          'class': 1,
          'neighborhood': 1,
          'nin': 1,
          'ride': 1,
          'around': 1,
          'big': 1,
          'tour': 1,
          'bus': 1,
          'whining': 1,
          'photo': 1,
          'shoots': 1,
          'give': 1,
          'interviews': 1,
          'namazingly': 1,
          'talk': 1,
          'keeping': 1,
          'commitments': 1,
          'upholding': 1,
          'responsibilities': 1,
          'applies': 1,
          'want': 1,
          'required': 1,
          'earning': 1,
          'money': 1,
          'babbling': 1,
          'talking': 1,
          'cleavage': 1,
          'mean': 1,
          'takes': 1,
          'thread': 1,
          'away': 1,
          'bursting': 1,
          'skimpy': 1,
          'outfits': 1,
          'pg': 1,
          'minor': 1,
          'dialogue': 1,
          'changes': 1,
          'scene': 1,
          'extentions': 1,
          'youd': 1,
          'raunchy': 1,
          'adult': 1,
          'nby': 1,
          'way': 1,
          'something': 1,
          'opening': 1,
          'credits': 1,
          'says': 1,
          'based': 1,
          'nwow': 1,
          'got': 1,
          'certainly': 1,
          'wish': 1,
          'new': 1,
          'trend': 1,
          'hollywood': 1,
          'ngiving': 1,
          'simply': 1,
          'thought': 1,
          'say': 1,
          'lets': 1,
          'movie': 1,
          'supporting': 1,
          'cast': 1,
          'fares': 1,
          'well': 1,
          'nroger': 1,
          'moore': 1,
          'real': 1,
          'james': 1,
          'bond': 1,
          'mockingly': 1,
          'plays': 1,
          'clichespewing': 1,
          'chief': 1,
          'darn': 1,
          'hes': 1,
          'watch': 1,
          'nmark': 1,
          'mckenney': 1,
          'also': 1,
          'screenwriter': 1,
          'trying': 1,
          'pitch': 1,
          'ideas': 1,
          'bands': 1,
          'manager': 1,
          'richard': 1,
          'e': 1,
          'grant': 1,
          'none': 1,
          'question': 1,
          'though': 1,
          'george': 1,
          'wendt': 1,
          'nyoud': 1,
          'think': 1,
          'would': 1,
          'envoke': 1,
          'reactions': 1,
          'people': 1,
          'youll': 1,
          'even': 1,
          'afterwards': 1,
          'cant': 1,
          'stand': 1,
          'sick': 1,
          'noddly': 1,
          'audience': 1,
          'saw': 1,
          'roughly': 1,
          '50': 1,
          'twelve': 1,
          'yearold': 1,
          'silence': 1,
          'entire': 1,
          'nwell': 1,
          'directly': 1,
          'behind': 1,
          'nthey': 1,
          'kept': 1,
          'muttering': 1,
          'stupid': 1,
          'nmaybe': 1,
          'hope': 1,
          'humanity': 1,
          'npg': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'story': 10,
          'nthe': 10,
          'tobacco': 9,
          'really': 7,
          'much': 7,
          'get': 6,
          'wigand': 6,
          'nit': 5,
          'minutes': 5,
          'family': 5,
          'detail': 4,
          'article': 4,
          'insider': 4,
          'knew': 4,
          'companies': 4,
          'former': 4,
          '60': 4,
          'team': 4,
          'wallace': 4,
          'magazine': 3,
          'nthey': 3,
          'different': 3,
          'short': 3,
          'one': 3,
          'cbs': 3,
          'nthis': 3,
          'make': 3,
          'interview': 3,
          'terrorists': 3,
          'plummer': 3,
          'nhe': 3,
          '4': 3,
          'read': 2,
          'incident': 2,
          'like': 2,
          'tell': 2,
          'real': 2,
          'involved': 2,
          'pressure': 2,
          'sounded': 2,
          'told': 2,
          'wanted': 2,
          'know': 2,
          'good': 2,
          'willing': 2,
          'medium': 2,
          'nthat': 2,
          'people': 2,
          'ni': 2,
          'script': 2,
          'two': 2,
          'adaptation': 2,
          'big': 2,
          'public': 2,
          'political': 2,
          'power': 2,
          'vicepresident': 2,
          'news': 2,
          'michael': 2,
          'mann': 2,
          'nand': 2,
          'long': 2,
          'needed': 2,
          'iran': 2,
          'nwe': 2,
          'style': 2,
          'mike': 2,
          'played': 2,
          'christopher': 2,
          'bergman': 2,
          'pacino': 2,
          'getting': 2,
          'industry': 2,
          'support': 2,
          'nmeanwhile': 2,
          'data': 2,
          'interpret': 2,
          'severance': 2,
          'agreement': 2,
          'secrecy': 2,
          'another': 2,
          'nwigand': 2,
          '0': 2,
          'scale': 2,
          'new': 1,
          'yorker': 1,
          'enjoy': 1,
          'indepth': 1,
          'articles': 1,
          'take': 1,
          'investigation': 1,
          'mysterious': 1,
          'plane': 1,
          'crash': 1,
          'happened': 1,
          'becomes': 1,
          'education': 1,
          'agencies': 1,
          'theories': 1,
          'suggested': 1,
          'kind': 1,
          'investigators': 1,
          'aspect': 1,
          'think': 1,
          'nfrequently': 1,
          'feeling': 1,
          'exciting': 1,
          'noften': 1,
          'middle': 1,
          'say': 1,
          'ok': 1,
          'invested': 1,
          'time': 1,
          'spend': 1,
          'subject': 1,
          'nfilm': 1,
          'visual': 1,
          'slows': 1,
          'telling': 1,
          'stories': 1,
          'realize': 1,
          'frequently': 1,
          'surprised': 1,
          'find': 1,
          'pages': 1,
          'empty': 1,
          'space': 1,
          'media': 1,
          'vanity': 1,
          'fair': 1,
          'man': 1,
          'marie': 1,
          'brenner': 1,
          'slowed': 1,
          'pace': 1,
          'verges': 1,
          'tedious': 1,
          'least': 1,
          'times': 1,
          'nfor': 1,
          'years': 1,
          'seven': 1,
          'dealt': 1,
          'addictive': 1,
          'drug': 1,
          'caused': 1,
          'host': 1,
          'unhealthy': 1,
          'sideeffects': 1,
          'nbut': 1,
          'pretended': 1,
          'unproven': 1,
          'believe': 1,
          'business': 1,
          'incredibly': 1,
          'profitable': 1,
          'proceeds': 1,
          'translated': 1,
          'squelch': 1,
          'discredit': 1,
          'movements': 1,
          'tide': 1,
          'turned': 1,
          'convinced': 1,
          'health': 1,
          'effects': 1,
          'smoking': 1,
          'resulting': 1,
          'stop': 1,
          'created': 1,
          'small': 1,
          'civil': 1,
          'war': 1,
          'nwho': 1,
          'major': 1,
          'motives': 1,
          'almost': 1,
          'killed': 1,
          'aired': 1,
          'anyway': 1,
          'covered': 1,
          'surprising': 1,
          'could': 1,
          'enthralling': 1,
          'sort': 1,
          'thing': 1,
          'stylist': 1,
          'would': 1,
          'likely': 1,
          'well': 1,
          'end': 1,
          'failed': 1,
          'nto': 1,
          'director': 1,
          'opens': 1,
          'assignment': 1,
          'terrorist': 1,
          'taste': 1,
          'personal': 1,
          'upper': 1,
          'hand': 1,
          'go': 1,
          'newsman': 1,
          'blindfolded': 1,
          'hands': 1,
          'actual': 1,
          'nthere': 1,
          'producer': 1,
          'lowell': 1,
          'al': 1,
          'ordering': 1,
          'around': 1,
          'away': 1,
          'seems': 1,
          'nothing': 1,
          'main': 1,
          'line': 1,
          'later': 1,
          'harder': 1,
          'manipulate': 1,
          'committed': 1,
          'wry': 1,
          'irony': 1,
          'clout': 1,
          'world': 1,
          'nterrorists': 1,
          'grab': 1,
          'headlines': 1,
          'position': 1,
          'nincongruously': 1,
          'intercut': 1,
          'sequence': 1,
          'see': 1,
          'jeffrey': 1,
          'russell': 1,
          'crowe': 1,
          'dejectedly': 1,
          'returning': 1,
          'work': 1,
          'home': 1,
          'discover': 1,
          'fired': 1,
          'career': 1,
          'brought': 1,
          'complete': 1,
          'halt': 1,
          'unexpectedly': 1,
          'profitably': 1,
          'rewarded': 1,
          'charge': 1,
          'research': 1,
          'development': 1,
          'brown': 1,
          'williams': 1,
          'unemployed': 1,
          'money': 1,
          'nrather': 1,
          'wife': 1,
          'liane': 1,
          'diane': 1,
          'venora': 1,
          'demands': 1,
          'supposed': 1,
          'income': 1,
          'trying': 1,
          'fires': 1,
          'started': 1,
          'cigarettes': 1,
          'obtained': 1,
          'understand': 1,
          'offer': 1,
          '12': 1,
          '000': 1,
          'nwigands': 1,
          'swears': 1,
          'anything': 1,
          'knows': 1,
          'dealings': 1,
          'reluctantly': 1,
          'stretches': 1,
          'terms': 1,
          'documents': 1,
          'company': 1,
          'nin': 1,
          'spite': 1,
          'wigands': 1,
          'employers': 1,
          'seem': 1,
          'immediately': 1,
          'talking': 1,
          'warned': 1,
          'boss': 1,
          'thomas': 1,
          'sandefur': 1,
          'gambon': 1,
          'brief': 1,
          'deliciously': 1,
          'sinister': 1,
          'role': 1,
          'game': 1,
          'begins': 1,
          'irate': 1,
          'negative': 1,
          'treatment': 1,
          'still': 1,
          'considered': 1,
          'continued': 1,
          'loyalty': 1,
          'employer': 1,
          'someone': 1,
          'playing': 1,
          'rough': 1,
          'examines': 1,
          'pressures': 1,
          'placed': 1,
          'caught': 1,
          'powerful': 1,
          'giants': 1,
          'always': 1,
          'safer': 1,
          'natural': 1,
          'sympathies': 1,
          'assaulted': 1,
          'psychologically': 1,
          'financially': 1,
          'giant': 1,
          'never': 1,
          'lost': 1,
          'legal': 1,
          'fight': 1,
          'nal': 1,
          'given': 1,
          'top': 1,
          'billing': 1,
          'core': 1,
          'slowly': 1,
          'bit': 1,
          'meticulous': 1,
          '157': 1,
          'extremely': 1,
          'demanding': 1,
          'audience': 1,
          'musical': 1,
          'score': 1,
          'pieter': 1,
          'bourke': 1,
          'lisa': 1,
          'gerrard': 1,
          'graeme': 1,
          'revell': 1,
          'worst': 1,
          'recent': 1,
          'memory': 1,
          'puts': 1,
          'ominous': 1,
          'chords': 1,
          'scenes': 1,
          'using': 1,
          'voice': 1,
          'ways': 1,
          'become': 1,
          'distraction': 1,
          'gets': 1,
          'way': 1,
          'storytelling': 1,
          'nalso': 1,
          'disturbing': 1,
          'casting': 1,
          'nplummer': 1,
          'types': 1,
          'wellknown': 1,
          'even': 1,
          'actor': 1,
          'play': 1,
          'convincingly': 1,
          'might': 1,
          'engaging': 1,
          'experience': 1,
          'directors': 1,
          'control': 1,
          'nmichael': 1,
          'wrong': 1,
          'person': 1,
          'helm': 1,
          'lacks': 1,
          'intensity': 1,
          'rate': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'eye': 9,
          'movie': 6,
          'judd': 5,
          'time': 5,
          'one': 5,
          'nand': 4,
          'little': 4,
          'nthe': 4,
          'audience': 3,
          'think': 3,
          'still': 3,
          'lot': 3,
          'last': 3,
          'woman': 3,
          'thats': 3,
          'could': 3,
          'character': 3,
          'film': 3,
          'deep': 3,
          'would': 3,
          'nthere': 3,
          'minutes': 3,
          'known': 2,
          'newan': 2,
          'mcgregor': 2,
          'hightech': 2,
          'riflely': 2,
          'gadget': 2,
          'nwe': 2,
          'going': 2,
          'target': 2,
          'instead': 2,
          'takes': 2,
          'twenty': 2,
          'pointless': 2,
          'reason': 2,
          'ewan': 2,
          'mcgregors': 2,
          'desert': 2,
          'ni': 2,
          'idea': 2,
          'apparently': 2,
          'expensive': 2,
          'nwhen': 2,
          'ashley': 2,
          'starts': 2,
          'something': 2,
          'around': 2,
          'sort': 2,
          'explanation': 2,
          'fails': 2,
          'end': 2,
          'surreal': 2,
          'even': 2,
          'changes': 2,
          'wigs': 2,
          'two': 2,
          'make': 2,
          'nexplanation': 2,
          'ms': 2,
          'everything': 2,
          'hell': 2,
          'point': 2,
          'bell': 2,
          'guy': 2,
          'niguana': 2,
          'focus': 2,
          'found': 2,
          'cut': 2,
          'talking': 2,
          'screen': 2,
          'damn': 1,
          'codename': 1,
          'pointing': 1,
          'fat': 1,
          'bald': 1,
          'businessoriented': 1,
          'american': 1,
          'engaging': 1,
          'illicit': 1,
          'sexual': 1,
          'activities': 1,
          'window': 1,
          'across': 1,
          'street': 1,
          'get': 1,
          'requisite': 1,
          'electrogreen': 1,
          'throughthesight': 1,
          'view': 1,
          'seeing': 1,
          'high': 1,
          'tech': 1,
          'course': 1,
          'assassinate': 1,
          'pulls': 1,
          'trigger': 1,
          'rifle': 1,
          'hazy': 1,
          'lowquality': 1,
          'photographs': 1,
          'proceeds': 1,
          'fax': 1,
          'email': 1,
          'everyone': 1,
          'targets': 1,
          'office': 1,
          'nall': 1,
          'right': 1,
          'thirty': 1,
          'seconds': 1,
          'slightly': 1,
          'befuddled': 1,
          'seemingly': 1,
          'riflecamera': 1,
          'open': 1,
          'minded': 1,
          'nmaybe': 1,
          'theres': 1,
          'really': 1,
          'good': 1,
          'nive': 1,
          'got': 1,
          'believe': 1,
          'see': 1,
          'admire': 1,
          'previous': 1,
          'work': 1,
          'hes': 1,
          'obi': 1,
          'wan': 1,
          'ke': 1,
          'frigginnobi': 1,
          'gods': 1,
          'sake': 1,
          'director': 1,
          'stephan': 1,
          'elliots': 1,
          'priscilla': 1,
          'queen': 1,
          'quirky': 1,
          'delight': 1,
          'ntheres': 1,
          'genuine': 1,
          'talent': 1,
          'involved': 1,
          'minute': 1,
          'mark': 1,
          'spark': 1,
          'hope': 1,
          'heart': 1,
          'neye': 1,
          'assigned': 1,
          'investigate': 1,
          'leader': 1,
          'organizations': 1,
          'son': 1,
          'organization': 1,
          'british': 1,
          'intelligence': 1,
          'nnational': 1,
          'spy': 1,
          'ring': 1,
          'nprivate': 1,
          'investigation': 1,
          'stealing': 1,
          'trust': 1,
          'fund': 1,
          'nhe': 1,
          'received': 1,
          'assignment': 1,
          'k': 1,
          'nlang': 1,
          'elaborate': 1,
          'teleconferencing': 1,
          'briefcase': 1,
          'tracks': 1,
          'looking': 1,
          'secluded': 1,
          'house': 1,
          'witnesses': 1,
          'mysterious': 1,
          'beautiful': 1,
          'take': 1,
          'knife': 1,
          'proceed': 1,
          'stab': 1,
          'poor': 1,
          'bastard': 1,
          'nok': 1,
          'odd': 1,
          'interesting': 1,
          'nthen': 1,
          'cry': 1,
          'tears': 1,
          'exclaims': 1,
          'merry': 1,
          'christmas': 1,
          'dad': 1,
          'nfor': 1,
          'first': 1,
          'nso': 1,
          'begins': 1,
          'tale': 1,
          'obsession': 1,
          'rest': 1,
          'involves': 1,
          'following': 1,
          'every': 1,
          'corner': 1,
          'united': 1,
          'states': 1,
          'totally': 1,
          'completely': 1,
          'obsessed': 1,
          'afar': 1,
          'nthroughout': 1,
          'entire': 1,
          'professional': 1,
          'life': 1,
          'voyeur': 1,
          'falls': 1,
          'someone': 1,
          'way': 1,
          'handle': 1,
          'watch': 1,
          'drool': 1,
          'telescopes': 1,
          'cameras': 1,
          'nfine': 1,
          'lovely': 1,
          'premise': 1,
          'suppose': 1,
          'nbut': 1,
          'gosh': 1,
          'darn': 1,
          'youre': 1,
          'go': 1,
          'better': 1,
          'precisely': 1,
          'nthis': 1,
          'kind': 1,
          'pisses': 1,
          'nits': 1,
          'abortion': 1,
          'collection': 1,
          'halfformed': 1,
          'wasted': 1,
          'ideas': 1,
          'amounts': 1,
          'absolutely': 1,
          'nothing': 1,
          'nit': 1,
          'pretends': 1,
          'psychological': 1,
          'study': 1,
          'wrapped': 1,
          'thriller': 1,
          'nhere': 1,
          'filmmakers': 1,
          'confused': 1,
          'vaguely': 1,
          'unclear': 1,
          'crammed': 1,
          'full': 1,
          'insultingly': 1,
          'obvious': 1,
          'metaphors': 1,
          'never': 1,
          'instant': 1,
          'foggiest': 1,
          'fall': 1,
          'love': 1,
          'kills': 1,
          'people': 1,
          'offers': 1,
          'explanations': 1,
          'neither': 1,
          'lick': 1,
          'sense': 1,
          'number': 1,
          'obnoxious': 1,
          'presence': 1,
          'eyes': 1,
          'imaginary': 1,
          'daughter': 1,
          'taken': 1,
          'away': 1,
          'wife': 1,
          'ago': 1,
          'tells': 1,
          'shouldnt': 1,
          'leave': 1,
          'beaten': 1,
          'heads': 1,
          'imagery': 1,
          'dialog': 1,
          'title': 1,
          'beauty': 1,
          'beholder': 1,
          'nwhoo': 1,
          'hoo': 1,
          'helps': 1,
          'thanks': 1,
          'bunch': 1,
          'case': 1,
          'closed': 1,
          'nthats': 1,
          'gets': 1,
          'folks': 1,
          'attempt': 1,
          'final': 1,
          'tying': 1,
          'together': 1,
          'ends': 1,
          'profound': 1,
          'clever': 1,
          'sixthgrade': 1,
          'mad': 1,
          'lib': 1,
          'secondary': 1,
          'characters': 1,
          'move': 1,
          'picture': 1,
          'serve': 1,
          'purpose': 1,
          'except': 1,
          'wonder': 1,
          'nmy': 1,
          'personal': 1,
          'favorites': 1,
          'include': 1,
          'prisonmatron': 1,
          'modeled': 1,
          'austin': 1,
          'powers': 1,
          'frau': 1,
          'farbissina': 1,
          'taught': 1,
          'knows': 1,
          'wearing': 1,
          'jason': 1,
          'priestleys': 1,
          'awfully': 1,
          'played': 1,
          'dirty': 1,
          'vagrant': 1,
          '1': 1,
          'tries': 1,
          'emulate': 1,
          'dennis': 1,
          'hopper': 1,
          'la': 1,
          'blue': 1,
          'velvet': 1,
          'miserably': 1,
          'copwhoseesashleyfleeinganaccidentsceneand': 1,
          'thenwantstopayforsex': 1,
          'butisshot': 1,
          'neach': 1,
          'sad': 1,
          'parade': 1,
          'script': 1,
          'pays': 1,
          'attention': 1,
          'laws': 1,
          'space': 1,
          'nany': 1,
          'frequent': 1,
          'location': 1,
          'occurs': 1,
          'camera': 1,
          'zooms': 1,
          'souvenir': 1,
          'snow': 1,
          'globe': 1,
          'weeks': 1,
          'years': 1,
          'passed': 1,
          'nbewilderingly': 1,
          'inane': 1,
          'stylistic': 1,
          'decisions': 1,
          'plague': 1,
          'whole': 1,
          'affair': 1,
          'passes': 1,
          'glass': 1,
          'cognac': 1,
          'another': 1,
          'slowmotion': 1,
          'closeup': 1,
          'awash': 1,
          'bass': 1,
          'residence': 1,
          'tower': 1,
          'repeatedly': 1,
          'awakened': 1,
          'deafened': 1,
          'giant': 1,
          'njason': 1,
          'priestly': 1,
          'philosophizing': 1,
          'sharks': 1,
          'laughs': 1,
          'maniacally': 1,
          'ncut': 1,
          'random': 1,
          'patch': 1,
          'comes': 1,
          'nwow': 1,
          'man': 1,
          'afterward': 1,
          'based': 1,
          'novel': 1,
          'came': 1,
          'surprise': 1,
          'plenty': 1,
          'elements': 1,
          'extended': 1,
          'fleshed': 1,
          'made': 1,
          'decent': 1,
          'story': 1,
          'wouldnt': 1,
          'surprised': 1,
          'hour': 1,
          'half': 1,
          'footage': 1,
          'lying': 1,
          'landfill': 1,
          'somewhere': 1,
          'waiting': 1,
          'wings': 1,
          'dvd': 1,
          'special': 1,
          'directors': 1,
          'nnot': 1,
          'anything': 1,
          'ever': 1,
          'possess': 1,
          'purchase': 1,
          'thing': 1,
          'find': 1,
          'missing': 1,
          'ten': 1,
          'featured': 1,
          'conversation': 1,
          'supposed': 1,
          'revealing': 1,
          'exposition': 1,
          'nsome': 1,
          'back': 1,
          'theater': 1,
          'cell': 1,
          'phone': 1,
          'didnt': 1,
          'particularly': 1,
          'care': 1,
          'much': 1,
          'happening': 1,
          'steaming': 1,
          'pile': 1,
          'unholy': 1,
          'crap': 1,
          'chuckled': 1,
          'whispered': 1,
          'sentiments': 1,
          'similar': 1,
          'thinking': 1,
          'nsomeone': 1,
          'near': 1,
          'cellphoneguy': 1,
          'eventually': 1,
          'yell': 1,
          'shut': 1,
          'funnier': 1,
          'thought': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'mimic': 6,
          'ni': 6,
          'director': 5,
          'make': 5,
          'made': 5,
          'movies': 5,
          'hollywood': 4,
          'america': 4,
          'del': 4,
          'toro': 4,
          'nthe': 4,
          'n': 3,
          'trend': 3,
          'foreign': 3,
          'characters': 3,
          'lights': 3,
          'dont': 3,
          'njust': 3,
          'think': 3,
          'good': 3,
          'bad': 2,
          'shows': 2,
          'lot': 2,
          'plot': 2,
          'stupid': 2,
          'meets': 2,
          'ntheres': 2,
          'nothing': 2,
          'youre': 2,
          'followed': 2,
          'turn': 2,
          'times': 2,
          'see': 2,
          'sorvino': 2,
          'like': 2,
          'scares': 2,
          'audience': 2,
          'isnt': 2,
          'films': 2,
          'time': 2,
          'came': 2,
          'directed': 2,
          'know': 2,
          'american': 2,
          'big': 2,
          'things': 2,
          'always': 2,
          'youll': 2,
          'definitly': 1,
          'scared': 1,
          'continued': 1,
          'frightening': 1,
          'taking': 1,
          'creative': 1,
          'ingenuity': 1,
          'style': 1,
          'completely': 1,
          'flushing': 1,
          'comes': 1,
          'ndirector': 1,
          'guillermo': 1,
          'recently': 1,
          'imported': 1,
          'mexico': 1,
          'award': 1,
          'winning': 1,
          'inventive': 1,
          'horror': 1,
          'film': 1,
          'cronos': 1,
          'nthat': 1,
          'worked': 1,
          'took': 1,
          'unconventional': 1,
          'story': 1,
          'unique': 1,
          'well': 1,
          'written': 1,
          'dialogue': 1,
          'create': 1,
          'truly': 1,
          'scary': 1,
          'nin': 1,
          'doesnt': 1,
          'bother': 1,
          'give': 1,
          'us': 1,
          'anything': 1,
          'original': 1,
          'combination': 1,
          'aliens': 1,
          'species': 1,
          'jurassic': 1,
          'park': 1,
          'recycled': 1,
          'hundred': 1,
          'new': 1,
          'nits': 1,
          'bunch': 1,
          'old': 1,
          'tricks': 1,
          'rarely': 1,
          'work': 1,
          'nat': 1,
          'end': 1,
          'stuck': 1,
          'wanting': 1,
          'money': 1,
          'back': 1,
          'nmaybe': 1,
          'worst': 1,
          'thing': 1,
          'another': 1,
          'annoying': 1,
          'recent': 1,
          'forgot': 1,
          'understand': 1,
          'suspense': 1,
          'lately': 1,
          'follow': 1,
          'seven': 1,
          'set': 1,
          'dark': 1,
          'dank': 1,
          'areas': 1,
          'nwatching': 1,
          'tempted': 1,
          'several': 1,
          'yell': 1,
          'screen': 1,
          'switch': 1,
          'right': 1,
          'nuse': 1,
          'common': 1,
          'sense': 1,
          'nyoull': 1,
          'able': 1,
          'monster': 1,
          'corner': 1,
          'scene': 1,
          'mira': 1,
          'standing': 1,
          'subway': 1,
          'station': 1,
          'flickering': 1,
          'nit': 1,
          'looked': 1,
          'light': 1,
          'operator': 1,
          'seizure': 1,
          'didnt': 1,
          'even': 1,
          'notice': 1,
          'stood': 1,
          'looking': 1,
          'deep': 1,
          'thoughts': 1,
          'hmmm': 1,
          'bean': 1,
          'soup': 1,
          'would': 1,
          'dinner': 1,
          'tonight': 1,
          'incidental': 1,
          'shock': 1,
          'tactics': 1,
          'boo': 1,
          'kidding': 1,
          'follows': 1,
          'real': 1,
          'scare': 1,
          'theater': 1,
          'never': 1,
          'jumped': 1,
          'suspenseful': 1,
          'moments': 1,
          'bored': 1,
          'shouldnt': 1,
          'blame': 1,
          'nhe': 1,
          'first': 1,
          'successful': 1,
          'come': 1,
          'nhong': 1,
          'kong': 1,
          'john': 1,
          'woo': 1,
          'two': 1,
          'best': 1,
          'action': 1,
          'killer': 1,
          'hard': 1,
          'boiled': 1,
          'broken': 1,
          'arrow': 1,
          'nfrench': 1,
          'directors': 1,
          'luc': 1,
          'besson': 1,
          'la': 1,
          'femme': 1,
          'nikita': 1,
          'george': 1,
          'sluizer': 1,
          'vanishing': 1,
          'woos': 1,
          'lead': 1,
          'dumbed': 1,
          'versions': 1,
          'nrobert': 1,
          'rodriguez': 1,
          'terrific': 1,
          'low': 1,
          'budget': 1,
          'el': 1,
          'mariachi': 1,
          'horrible': 1,
          'highbudget': 1,
          'desperado': 1,
          'talent': 1,
          'country': 1,
          'cant': 1,
          'nwoo': 1,
          'finally': 1,
          'broke': 1,
          'faceoff': 1,
          'still': 1,
          'par': 1,
          'earlier': 1,
          'get': 1,
          'feeling': 1,
          'producer': 1,
          'sits': 1,
          'office': 1,
          'chews': 1,
          'smelly': 1,
          'cigar': 1,
          'says': 1,
          'welcome': 1,
          'bet': 1,
          'must': 1,
          'tired': 1,
          'boat': 1,
          'long': 1,
          'ndo': 1,
          'speak': 1,
          'english': 1,
          'nnow': 1,
          'youve': 1,
          'past': 1,
          'little': 1,
          'different': 1,
          'remember': 1,
          'wants': 1,
          'fine': 1,
          'nthey': 1,
          'want': 1,
          'least': 1,
          'one': 1,
          'breasted': 1,
          'woman': 1,
          'theyve': 1,
          'seen': 1,
          'thousand': 1,
          'change': 1,
          'americans': 1,
          'need': 1,
          'cheesy': 1,
          'feelgood': 1,
          'ending': 1,
          'wrap': 1,
          'nif': 1,
          'kind': 1,
          'shining': 1,
          'shoes': 1,
          'nneg': 1}),
 Counter({'darren': 7,
          'wayne': 7,
          'j': 7,
          'judith': 7,
          'nthe': 6,
          'silverman': 5,
          'zahn': 4,
          'black': 4,
          'get': 4,
          'biggs': 3,
          'together': 3,
          'friend': 3,
          'saving': 3,
          'films': 3,
          'rest': 3,
          'film': 3,
          'steve': 2,
          'jack': 2,
          'best': 2,
          'three': 2,
          'musketeers': 2,
          'manipulative': 2,
          'amanda': 2,
          'peet': 2,
          'long': 2,
          'story': 2,
          'darrens': 2,
          'doesnt': 2,
          'realize': 2,
          'boxing': 2,
          'one': 2,
          'sandy': 2,
          'detmer': 2,
          'boys': 2,
          'idol': 2,
          'neil': 2,
          'diamond': 2,
          'comedic': 2,
          'able': 2,
          'laughs': 2,
          'humor': 2,
          'two': 2,
          'gives': 2,
          'though': 2,
          'gets': 2,
          'namanda': 2,
          'character': 2,
          'nothing': 2,
          'bad': 2,
          'comedy': 2,
          'good': 2,
          'jason': 1,
          'friends': 1,
          'since': 1,
          'fifth': 1,
          'grade': 1,
          'nlike': 1,
          'theyve': 1,
          'thick': 1,
          'thin': 1,
          'nbut': 1,
          'meets': 1,
          'attractive': 1,
          'coldblooded': 1,
          'psychiatrist': 1,
          'time': 1,
          'friendship': 1,
          'placed': 1,
          'danger': 1,
          'nits': 1,
          'rescue': 1,
          'n': 1,
          'heart': 1,
          'right': 1,
          'place': 1,
          'newcomers': 1,
          'hank': 1,
          'nelken': 1,
          'greg': 1,
          'depaul': 1,
          'lightweight': 1,
          'sustain': 1,
          'tale': 1,
          'battle': 1,
          'soul': 1,
          'nbased': 1,
          'experience': 1,
          'making': 1,
          'major': 1,
          'marital': 1,
          'mistake': 1,
          'centered': 1,
          'life': 1,
          'amigos': 1,
          'nwhen': 1,
          'introduces': 1,
          'opened': 1,
          'pandoras': 1,
          'box': 1,
          'disaster': 1,
          'relationship': 1,
          'boyfriend': 1,
          'dominant': 1,
          'figure': 1,
          'died': 1,
          'kick': 1,
          'match': 1,
          'nsince': 1,
          'sought': 1,
          'new': 1,
          'mate': 1,
          'someone': 1,
          'boss': 1,
          'around': 1,
          'mold': 1,
          'vision': 1,
          'nenter': 1,
          'nonce': 1,
          'magnitude': 1,
          'error': 1,
          'judgement': 1,
          'try': 1,
          'everything': 1,
          'including': 1,
          'threats': 1,
          'bribery': 1,
          'free': 1,
          'nnothing': 1,
          'works': 1,
          'duo': 1,
          'come': 1,
          'plan': 1,
          'kidnap': 1,
          'back': 1,
          'girl': 1,
          'called': 1,
          'pretty': 1,
          'perkus': 1,
          'problem': 1,
          'take': 1,
          'vows': 1,
          'become': 1,
          'nun': 1,
          'nthings': 1,
          'spiral': 1,
          'control': 1,
          'repeatedly': 1,
          'attempts': 1,
          'escape': 1,
          'play': 1,
          'cupid': 1,
          'even': 1,
          'bring': 1,
          'picture': 1,
          'help': 1,
          'resolve': 1,
          'things': 1,
          'nthinking': 1,
          'real': 1,
          'mishmash': 1,
          'contrivance': 1,
          'coincidence': 1,
          'held': 1,
          'solely': 1,
          'efforts': 1,
          'pair': 1,
          'elicit': 1,
          'goofy': 1,
          'antics': 1,
          'childlike': 1,
          'behavior': 1,
          'nthey': 1,
          'relegated': 1,
          'providing': 1,
          'slapstick': 1,
          'guy': 1,
          'equal': 1,
          'task': 1,
          'nsteve': 1,
          'steadily': 1,
          'honing': 1,
          'acting': 1,
          'skills': 1,
          'complexity': 1,
          'brains': 1,
          'gang': 1,
          'njack': 1,
          'bigguy': 1,
          'moves': 1,
          'chris': 1,
          'farley': 1,
          'giving': 1,
          'amusing': 1,
          'physical': 1,
          'presence': 1,
          'neat': 1,
          'thing': 1,
          'actors': 1,
          'fresh': 1,
          'stale': 1,
          'material': 1,
          'cast': 1,
          'fare': 1,
          'well': 1,
          'njason': 1,
          'straight': 1,
          'man': 1,
          'little': 1,
          'watched': 1,
          'previous': 1,
          'american': 1,
          'pie': 1,
          'loser': 1,
          'im': 1,
          'sure': 1,
          'attraction': 1,
          'actually': 1,
          'caustic': 1,
          'nthere': 1,
          'humanity': 1,
          'singlemindedly': 1,
          'strives': 1,
          'recreate': 1,
          'minds': 1,
          'image': 1,
          'nshes': 1,
          'monster': 1,
          'must': 1,
          'defeat': 1,
          'save': 1,
          'nunfortunately': 1,
          'dimension': 1,
          'brings': 1,
          'nr': 1,
          'lee': 1,
          'ermey': 1,
          'psychotic': 1,
          'coach': 1,
          'made': 1,
          'decision': 1,
          'taking': 1,
          'role': 1,
          'ntunemeister': 1,
          'goodnatured': 1,
          'cameo': 1,
          'perf': 1,
          'savior': 1,
          'nproduction': 1,
          'values': 1,
          'par': 1,
          'lackluster': 1,
          'noninvolving': 1,
          'ndirector': 1,
          'dennis': 1,
          'dugan': 1,
          'track': 1,
          'record': 1,
          'broad': 1,
          'like': 1,
          'big': 1,
          'daddy': 1,
          'beverly': 1,
          'hills': 1,
          'ninja': 1,
          'falls': 1,
          'flat': 1,
          '2001': 1,
          'movie': 1,
          'year': 1,
          'yet': 1,
          'provide': 1,
          'us': 1,
          'sink': 1,
          'teeth': 1,
          'nat': 1,
          'least': 1,
          'couple': 1,
          'funny': 1,
          'perfs': 1,
          'ntoo': 1,
          'lacks': 1,
          'level': 1,
          'nkick': 1,
          'deaths': 1,
          'conflicted': 1,
          'nuns': 1,
          'makings': 1,
          'ni': 1,
          'give': 1,
          'c': 1,
          'nneg': 1}),
 Counter({'robin': 3,
          'long': 3,
          'troubled': 2,
          'youth': 2,
          'life': 2,
          'film': 2,
          'quinn': 2,
          'william': 2,
          'series': 2,
          'john': 2,
          'hughes': 2,
          'however': 2,
          'intimate': 1,
          'characterdriven': 1,
          'drama': 1,
          'crossroads': 1,
          'read': 1,
          'press': 1,
          'notes': 1,
          '_reach_the_rock_': 1,
          'nim': 1,
          'really': 1,
          'sure': 1,
          'statement': 1,
          'describing': 1,
          'words': 1,
          'bear': 1,
          'little': 1,
          'resemblance': 1,
          'slow': 1,
          'completely': 1,
          'uninvolving': 1,
          'bore': 1,
          'sawat': 1,
          'least': 1,
          'certainly': 1,
          'describe': 1,
          'goes': 1,
          'nalessandro': 1,
          'nivola': 1,
          'plays': 1,
          'fleming': 1,
          'directionless': 1,
          '21yearold': 1,
          'penchant': 1,
          'breaking': 1,
          'storefront': 1,
          'windows': 1,
          'small': 1,
          'town': 1,
          'npolice': 1,
          'sergeant': 1,
          'phil': 1,
          'sadler': 1,
          'takes': 1,
          'ensues': 1,
          'first': 1,
          '70': 1,
          'minutes': 1,
          'tedious': 1,
          'sneakouts': 1,
          'sneakins': 1,
          'slips': 1,
          'jail': 1,
          'cell': 1,
          'breaks': 1,
          'window': 1,
          'returns': 1,
          'without': 1,
          'ever': 1,
          'noticing': 1,
          'nalso': 1,
          'added': 1,
          'pointless': 1,
          'proceedings': 1,
          'wouldbe': 1,
          'humorous': 1,
          'shenanigans': 1,
          'involving': 1,
          'quinns': 1,
          'dimwitted': 1,
          'deputy': 1,
          'ernie': 1,
          'attempting': 1,
          'engage': 1,
          'clandestine': 1,
          'patrol': 1,
          'car': 1,
          'sex': 1,
          'girlfriend': 1,
          'donna': 1,
          'karen': 1,
          'sillas': 1,
          'nwith': 1,
          'half': 1,
          'hour': 1,
          'even': 1,
          'remaining': 1,
          'director': 1,
          'ryan': 1,
          'writer': 1,
          'yes': 1,
          '80s': 1,
          'films': 1,
          '_home_alone_': 1,
          'finally': 1,
          'approach': 1,
          'something': 1,
          'close': 1,
          'point': 1,
          'nturns': 1,
          'still': 1,
          'pines': 1,
          'high': 1,
          'school': 1,
          'sweetheart': 1,
          'lise': 1,
          'brooke': 1,
          'langton': 1,
          'gone': 1,
          'hughess': 1,
          'main': 1,
          'concern': 1,
          'last': 1,
          'reveals': 1,
          'tired': 1,
          'live': 1,
          'present': 1,
          'future': 1,
          'message': 1,
          'nmost': 1,
          'moviegoers': 1,
          'likely': 1,
          'asleep': 1,
          'time': 1,
          'nwide': 1,
          'awake': 1,
          'cast': 1,
          'individually': 1,
          'tackle': 1,
          'showcase': 1,
          'dramatic': 1,
          'scenes': 1,
          'energy': 1,
          'skillthus': 1,
          'revealing': 1,
          '_real_': 1,
          'purpose': 1,
          'behind': 1,
          'listless': 1,
          'enterprise': 1,
          'serve': 1,
          'acting': 1,
          'exercises': 1,
          'nsuch': 1,
          'glorified': 1,
          'workshop': 1,
          'may': 1,
          'rewards': 1,
          'actors': 1,
          'leaves': 1,
          'audiences': 1,
          'booby': 1,
          'prize': 1,
          'n': 1,
          'opens': 1,
          'october': 1,
          '16': 1,
          'nneg': 1}),
 Counter({'vampires': 5,
          'movie': 3,
          'rude': 2,
          'women': 2,
          'make': 2,
          'much': 2,
          'nas': 2,
          'suggestion': 2,
          'vampire': 2,
          'chauvinistic': 1,
          'portrayed': 1,
          'pawns': 1,
          'abuse': 1,
          'present': 1,
          'pleasure': 1,
          'men': 1,
          'feed': 1,
          'readied': 1,
          'bashed': 1,
          'beaten': 1,
          'till': 1,
          'ones': 1,
          'sensibilities': 1,
          'shocked': 1,
          'low': 1,
          'iq': 1,
          'mentality': 1,
          'regressive': 1,
          'nto': 1,
          'matters': 1,
          'worse': 1,
          'buffoons': 1,
          'go': 1,
          'hunting': 1,
          'rednecks': 1,
          'deserve': 1,
          'heads': 1,
          'bitten': 1,
          'bodies': 1,
          'carved': 1,
          'half': 1,
          'nthe': 1,
          'dilemma': 1,
          'hating': 1,
          'heroes': 1,
          'villains': 1,
          'makes': 1,
          'one': 1,
          'wish': 1,
          'hand': 1,
          'god': 1,
          'would': 1,
          'suddenly': 1,
          'appear': 1,
          'blast': 1,
          'parties': 1,
          'oblivion': 1,
          'njames': 1,
          'wood': 1,
          'portrays': 1,
          'jack': 1,
          'crow': 1,
          'man': 1,
          'obsessed': 1,
          'killing': 1,
          'whose': 1,
          'soul': 1,
          'reason': 1,
          'living': 1,
          'based': 1,
          'revenge': 1,
          'killed': 1,
          'parents': 1,
          'good': 1,
          'excuse': 1,
          'obnoxious': 1,
          'adam': 1,
          'baldwin': 1,
          'nothing': 1,
          'stooge': 1,
          'ordered': 1,
          'beat': 1,
          'director': 1,
          'shouts': 1,
          'action': 1,
          'script': 1,
          'reworked': 1,
          'avoid': 1,
          'offence': 1,
          'female': 1,
          'sex': 1,
          'claims': 1,
          'catholic': 1,
          'church': 1,
          'created': 1,
          'dracula': 1,
          'well': 1,
          'second': 1,
          'sacrilegious': 1,
          'outside': 1,
          'fact': 1,
          'priests': 1,
          'monks': 1,
          'bear': 1,
          'brunt': 1,
          'fury': 1,
          'enough': 1,
          'blood': 1,
          'spilt': 1,
          'inquisition': 1,
          'look': 1,
          'tame': 1,
          'nan': 1,
          'awful': 1,
          'counts': 1,
          'bring': 1,
          'back': 1,
          'buffy': 1,
          'bury': 1,
          'group': 1,
          'incompetent': 1,
          'slayers': 1,
          'nneg': 1}),
 Counter({'sarah': 9,
          'tony': 7,
          'never': 7,
          'talk': 6,
          'strangers': 6,
          'sex': 5,
          'de': 4,
          'one': 4,
          'cat': 3,
          'audience': 3,
          'film': 3,
          'movie': 3,
          'banderas': 3,
          'mornay': 3,
          'pet': 3,
          'psychologist': 2,
          'neighbor': 2,
          'someone': 2,
          'flowers': 2,
          'obituary': 2,
          'time': 2,
          'conclusion': 2,
          'obvious': 2,
          'minutes': 2,
          'dennis': 2,
          'miller': 2,
          'would': 2,
          'upon': 2,
          'receives': 2,
          'na': 2,
          'several': 2,
          'like': 2,
          'also': 2,
          'carnival': 2,
          'way': 2,
          'quickly': 2,
          'theyre': 2,
          'day': 2,
          'filmmakers': 2,
          'poor': 2,
          'nsuspense': 2,
          'cliche': 2,
          'stalked': 2,
          'even': 2,
          'hes': 2,
          'synopsis': 1,
          'blond': 1,
          'criminal': 1,
          'chooses': 1,
          'copulate': 1,
          'greasy': 1,
          'mysterious': 1,
          'puerto': 1,
          'rican': 1,
          'rather': 1,
          'bearded': 1,
          'cliff': 1,
          'wisecracking': 1,
          'upstairs': 1,
          'nin': 1,
          'meantime': 1,
          'sends': 1,
          'rotting': 1,
          'puts': 1,
          'name': 1,
          'newspapers': 1,
          'column': 1,
          'kills': 1,
          'ncomments': 1,
          'colossal': 1,
          'waste': 1,
          'moves': 1,
          'slower': 1,
          'molasses': 1,
          'winter': 1,
          'arrive': 1,
          '20': 1,
          'none': 1,
          'wouldnt': 1,
          'think': 1,
          'two': 1,
          'genuine': 1,
          'stars': 1,
          'antonio': 1,
          'evita': 1,
          'rebecca': 1,
          'hand': 1,
          'rocks': 1,
          'cradle': 1,
          'acerbic': 1,
          'comic': 1,
          'genius': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'involved': 1,
          'celluloid': 1,
          'backfire': 1,
          'turkey': 1,
          'nnot': 1,
          'however': 1,
          'executive': 1,
          'produced': 1,
          'nwhat': 1,
          'thinking': 1,
          'nnever': 1,
          'centers': 1,
          'examining': 1,
          'illtempered': 1,
          'max': 1,
          'murderer': 1,
          'soon': 1,
          'stand': 1,
          'trial': 1,
          'nshe': 1,
          'sudden': 1,
          'visit': 1,
          'father': 1,
          'elicits': 1,
          'flashbacks': 1,
          'tragedy': 1,
          'early': 1,
          'childhood': 1,
          'ntwo': 1,
          'men': 1,
          'woo': 1,
          'security': 1,
          'consultant': 1,
          'wins': 1,
          'passionate': 1,
          'replete': 1,
          'cheesy': 1,
          'saxophone': 1,
          'music': 1,
          'lot': 1,
          'psychobabble': 1,
          'thrown': 1,
          'around': 1,
          'multiple': 1,
          'personality': 1,
          'disorder': 1,
          'asks': 1,
          'derive': 1,
          'mpd': 1,
          'instead': 1,
          'offers': 1,
          'male': 1,
          'characters': 1,
          'red': 1,
          'herrings': 1,
          'n86': 1,
          'running': 1,
          'cinematic': 1,
          'mess': 1,
          'thus': 1,
          'seem': 1,
          '86': 1,
          'hours': 1,
          'good': 1,
          'chunk': 1,
          'spent': 1,
          'nwhy': 1,
          'careerminded': 1,
          'professional': 1,
          'feel': 1,
          'attracted': 1,
          'walking': 1,
          'steroid': 1,
          'black': 1,
          'hat': 1,
          'called': 1,
          'nthats': 1,
          'films': 1,
          'mysteries': 1,
          'answered': 1,
          'nregardless': 1,
          'motive': 1,
          'strip': 1,
          'times': 1,
          'passes': 1,
          'eroticism': 1,
          'nthey': 1,
          'manage': 1,
          'go': 1,
          'copulating': 1,
          'occasionally': 1,
          'stupidest': 1,
          'scenes': 1,
          'takes': 1,
          'thats': 1,
          'right': 1,
          'outside': 1,
          'dingy': 1,
          'apartment': 1,
          'hurry': 1,
          'back': 1,
          'nalso': 1,
          'apparently': 1,
          'weather': 1,
          'changes': 1,
          'locale': 1,
          'outdoor': 1,
          'next': 1,
          'playing': 1,
          'snow': 1,
          'nthe': 1,
          'attempt': 1,
          'produce': 1,
          'suspenseful': 1,
          'plot': 1,
          'interspersed': 1,
          'sarahs': 1,
          'character': 1,
          'development': 1,
          'nsomeone': 1,
          'get': 1,
          'though': 1,
          'figured': 1,
          'starts': 1,
          'nrotting': 1,
          'writeup': 1,
          'beaten': 1,
          'bad': 1,
          'things': 1,
          'happen': 1,
          'number': 1,
          'occurs': 1,
          'whenever': 1,
          'thrillers': 1,
          'means': 1,
          'die': 1,
          'noftentimes': 1,
          'murdered': 1,
          'suspense': 1,
          'reason': 1,
          'dont': 1,
          'cats': 1,
          'nsarah': 1,
          'package': 1,
          'lo': 1,
          'behold': 1,
          'discovers': 1,
          'mutilated': 1,
          'within': 1,
          'derivative': 1,
          'nas': 1,
          'stated': 1,
          'excuse': 1,
          'whose': 1,
          'sole': 1,
          'purpose': 1,
          'seems': 1,
          'exploiting': 1,
          'mornays': 1,
          'bodies': 1,
          'often': 1,
          'possible': 1,
          'ncomedian': 1,
          'completely': 1,
          'wasted': 1,
          'given': 1,
          'lines': 1,
          'suitable': 1,
          'persona': 1,
          'doesnt': 1,
          'appear': 1,
          'much': 1,
          'nmaybe': 1,
          'lucky': 1,
          'nearly': 1,
          'tells': 1,
          'meeting': 1,
          'supermarket': 1,
          'advised': 1,
          'nallow': 1,
          'advise': 1,
          'watch': 1,
          'stinker': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'tv': 8,
          'love': 6,
          'cooking': 6,
          'show': 5,
          'nthe': 4,
          'cook': 4,
          'toninho': 4,
          'gets': 4,
          'monica': 4,
          'story': 3,
          'even': 3,
          'motion': 3,
          'sickness': 3,
          'hes': 3,
          'san': 3,
          'francisco': 3,
          'spell': 3,
          'network': 3,
          'like': 3,
          'made': 2,
          'lope': 2,
          'cruz': 2,
          'brazilian': 2,
          'chef': 2,
          'cant': 2,
          'get': 2,
          'looks': 2,
          'almod': 2,
          'see': 2,
          'nthis': 2,
          'sex': 2,
          'isabella': 2,
          'parents': 2,
          'nto': 2,
          'cure': 2,
          'spiritualist': 2,
          'nshe': 2,
          'control': 2,
          'doesnt': 2,
          'nin': 2,
          'things': 2,
          'fishing': 2,
          'macho': 2,
          'restaurant': 2,
          'away': 2,
          'though': 2,
          'tell': 2,
          'cast': 2,
          'loving': 2,
          'producer': 2,
          'cliff': 2,
          'good': 2,
          'go': 2,
          'bad': 2,
          'wife': 2,
          'nhe': 2,
          'ones': 2,
          'sees': 2,
          'honchos': 2,
          'change': 2,
          'ethnic': 2,
          'dresses': 2,
          'type': 2,
          'scenes': 2,
          'nit': 2,
          'sensuous': 1,
          'romantic': 1,
          'comedy': 1,
          'appealing': 1,
          'average': 1,
          'lightweight': 1,
          'sitcom': 1,
          'nthere': 1,
          'special': 1,
          'ingredient': 1,
          'menu': 1,
          'dished': 1,
          'kind': 1,
          'stuff': 1,
          'ive': 1,
          'seen': 1,
          'nauseous': 1,
          'silly': 1,
          'idea': 1,
          'thinks': 1,
          'funny': 1,
          'plans': 1,
          'exploit': 1,
          'beauty': 1,
          'sweetness': 1,
          'delicious': 1,
          'star': 1,
          'pen': 1,
          'plays': 1,
          'magical': 1,
          'touch': 1,
          'bringing': 1,
          'spices': 1,
          'preparations': 1,
          'aromas': 1,
          'sensually': 1,
          'waft': 1,
          'pot': 1,
          'alone': 1,
          'transparently': 1,
          'predictable': 1,
          'npen': 1,
          'wonderful': 1,
          'pedro': 1,
          'vars': 1,
          'mother': 1,
          'visible': 1,
          'stale': 1,
          'smile': 1,
          'tease': 1,
          'audience': 1,
          'us': 1,
          'constant': 1,
          'barrage': 1,
          'cleavage': 1,
          'shots': 1,
          'bends': 1,
          'somehow': 1,
          'ridiculous': 1,
          'got': 1,
          'egg': 1,
          'face': 1,
          'best': 1,
          'say': 1,
          'shes': 1,
          'blame': 1,
          'picture': 1,
          'exploitation': 1,
          'without': 1,
          'delivering': 1,
          'nudity': 1,
          'opinion': 1,
          'worst': 1,
          'raunchy': 1,
          'delivers': 1,
          'says': 1,
          'ability': 1,
          'born': 1,
          'bahia': 1,
          'brazil': 1,
          'learns': 1,
          'early': 1,
          'age': 1,
          'tried': 1,
          'every': 1,
          'remedy': 1,
          'went': 1,
          'prayed': 1,
          'goddess': 1,
          'sea': 1,
          'able': 1,
          'long': 1,
          'drive': 1,
          'car': 1,
          'ride': 1,
          'elevators': 1,
          'follow': 1,
          'dancing': 1,
          'woman': 1,
          'top': 1,
          'making': 1,
          'words': 1,
          'small': 1,
          'town': 1,
          'falls': 1,
          'handsome': 1,
          'latin': 1,
          'waiter': 1,
          'oliveira': 1,
          'murilo': 1,
          'ben': 1,
          'cio': 1,
          'marries': 1,
          'nthey': 1,
          'open': 1,
          'successful': 1,
          'slaves': 1,
          'kitchen': 1,
          'credit': 1,
          'loafer': 1,
          'none': 1,
          'night': 1,
          'catches': 1,
          'bed': 1,
          'another': 1,
          'girl': 1,
          'decides': 1,
          'leave': 1,
          'nwe': 1,
          'dont': 1,
          'flight': 1,
          'handled': 1,
          'problem': 1,
          'unless': 1,
          'flew': 1,
          'plane': 1,
          'visits': 1,
          'friends': 1,
          'apartment': 1,
          'harold': 1,
          'perrineau': 1,
          'jr': 1,
          'crossdresser': 1,
          'blending': 1,
          'right': 1,
          'scene': 1,
          'irresistible': 1,
          'calls': 1,
          'friend': 1,
          'irreversible': 1,
          'freeing': 1,
          'ever': 1,
          'nher': 1,
          'luck': 1,
          'changes': 1,
          'local': 1,
          'mark': 1,
          'feurerstein': 1,
          'whiff': 1,
          'storms': 1,
          'class': 1,
          'presents': 1,
          'live': 1,
          'nyou': 1,
          'really': 1,
          'write': 1,
          'script': 1,
          'despondent': 1,
          'begins': 1,
          'realize': 1,
          'thing': 1,
          'continue': 1,
          'curse': 1,
          'caused': 1,
          'village': 1,
          'replace': 1,
          'close': 1,
          'nso': 1,
          'comes': 1,
          'figuring': 1,
          'charm': 1,
          'brings': 1,
          'along': 1,
          'guitar': 1,
          'playing': 1,
          'musicians': 1,
          'used': 1,
          'courting': 1,
          'serenaded': 1,
          'window': 1,
          'sidekick': 1,
          'yuppie': 1,
          'chasing': 1,
          'longer': 1,
          'charmed': 1,
          'nwhen': 1,
          'sneaks': 1,
          'set': 1,
          'tries': 1,
          'woo': 1,
          'musical': 1,
          'group': 1,
          'singing': 1,
          'corny': 1,
          'songs': 1,
          'ratings': 1,
          'hired': 1,
          'regular': 1,
          'big': 1,
          'come': 1,
          'onboard': 1,
          'taking': 1,
          'national': 1,
          'nbut': 1,
          'want': 1,
          'flavor': 1,
          'rid': 1,
          'freak': 1,
          'tabasco': 1,
          'instead': 1,
          'peppers': 1,
          'uses': 1,
          'lowcut': 1,
          'vanna': 1,
          'white': 1,
          'sexy': 1,
          'ncliff': 1,
          'wouldbe': 1,
          'boyfriend': 1,
          'acts': 1,
          'creepy': 1,
          'sides': 1,
          'bigshots': 1,
          'loved': 1,
          'everything': 1,
          'nthese': 1,
          'stereotype': 1,
          'revolting': 1,
          'insult': 1,
          'intelligence': 1,
          'nim': 1,
          'sure': 1,
          'im': 1,
          'spoiling': 1,
          'ending': 1,
          'anyone': 1,
          'reforms': 1,
          'ways': 1,
          'together': 1,
          'meal': 1,
          'breaks': 1,
          'nif': 1,
          'wasnt': 1,
          'terrible': 1,
          'enough': 1,
          'act': 1,
          'attraction': 1,
          'become': 1,
          'lovers': 1,
          'awkwardly': 1,
          'done': 1,
          'sense': 1,
          'truth': 1,
          'humor': 1,
          'might': 1,
          'well': 1,
          'guys': 1,
          'featured': 1,
          'look': 1,
          'feel': 1,
          'var': 1,
          'aspired': 1,
          'interferred': 1,
          'nits': 1,
          'futile': 1,
          'commercial': 1,
          'annoying': 1,
          'charming': 1,
          'dull': 1,
          'chic': 1,
          'searches': 1,
          'box': 1,
          'office': 1,
          'heaven': 1,
          'nneg': 1}),
 Counter({'wrestling': 14,
          'movie': 8,
          'wcw': 7,
          'ni': 6,
          'king': 6,
          'bischoff': 6,
          'sinclair': 5,
          'world': 4,
          'nthe': 4,
          'gordie': 4,
          'like': 4,
          'know': 4,
          'make': 4,
          'fan': 3,
          'sean': 3,
          'nitro': 3,
          'get': 3,
          'jimmy': 3,
          'wrestler': 3,
          'titus': 3,
          'meant': 3,
          'eric': 3,
          'find': 3,
          'title': 3,
          'back': 3,
          'dont': 3,
          'isnt': 3,
          'thinks': 3,
          'fans': 3,
          'seriously': 3,
          'vince': 3,
          'could': 3,
          'theyre': 3,
          'better': 3,
          'saying': 2,
          'professional': 2,
          'fond': 2,
          'plot': 2,
          'believe': 2,
          'everything': 2,
          'see': 2,
          'monday': 2,
          'show': 2,
          'nwhen': 2,
          'finally': 2,
          'played': 2,
          'would': 2,
          'role': 2,
          'president': 2,
          'knows': 2,
          'kings': 2,
          'real': 2,
          'english': 2,
          'main': 2,
          'n1': 2,
          'characters': 2,
          'nhe': 2,
          'idiots': 2,
          'wrestlers': 2,
          'actually': 2,
          'dumb': 2,
          'enough': 2,
          'taken': 2,
          'age': 2,
          'big': 2,
          'n2': 2,
          'federation': 2,
          'bret': 2,
          'hart': 2,
          'movies': 2,
          'mcmahon': 2,
          'bad': 2,
          'n3': 2,
          'want': 2,
          'n4': 2,
          'instead': 2,
          'end': 2,
          'n5': 2,
          'promotion': 2,
          'good': 2,
          'let': 1,
          'start': 1,
          'review': 1,
          'huge': 1,
          'fifteen': 1,
          'years': 1,
          'ted': 1,
          'turners': 1,
          'championship': 1,
          'however': 1,
          'even': 1,
          'less': 1,
          'seeing': 1,
          'ridiculous': 1,
          'excuse': 1,
          'tonight': 1,
          'concerns': 1,
          'two': 1,
          'losers': 1,
          'named': 1,
          'boggs': 1,
          'david': 1,
          'arquette': 1,
          'aptly': 1,
          'cast': 1,
          'neandrathal': 1,
          'dawkins': 1,
          'scott': 1,
          'caan': 1,
          'obsessed': 1,
          'something': 1,
          'flashy': 1,
          'hero': 1,
          'champion': 1,
          'oliver': 1,
          'platt': 1,
          'personally': 1,
          'gotten': 1,
          'play': 1,
          'ends': 1,
          'getting': 1,
          'screwed': 1,
          'evil': 1,
          'promoter': 1,
          'wasted': 1,
          'palitaliano': 1,
          'originally': 1,
          'reallife': 1,
          'fired': 1,
          'rehired': 1,
          'six': 1,
          'months': 1,
          'later': 1,
          'anyone': 1,
          'reads': 1,
          'agree': 1,
          'name': 1,
          'written': 1,
          'embark': 1,
          'quest': 1,
          'help': 1,
          'discover': 1,
          'horror': 1,
          'life': 1,
          'nothing': 1,
          'tv': 1,
          'nking': 1,
          'drunken': 1,
          'atlanta': 1,
          'native': 1,
          'rather': 1,
          'nafter': 1,
          'convincing': 1,
          'care': 1,
          'persona': 1,
          'sneak': 1,
          'onto': 1,
          'agrees': 1,
          'book': 1,
          'event': 1,
          'steel': 1,
          'cage': 1,
          'match': 1,
          'job': 1,
          'las': 1,
          'vegas': 1,
          'wcws': 1,
          'payperview': 1,
          'ngee': 1,
          'whiz': 1,
          'many': 1,
          'things': 1,
          'wrong': 1,
          'begin': 1,
          'nyes': 1,
          'thought': 1,
          'project': 1,
          'us': 1,
          'take': 1,
          'got': 1,
          'news': 1,
          'nobody': 1,
          'four': 1,
          '2000': 1,
          '1985': 1,
          'hell': 1,
          'probably': 1,
          'cover': 1,
          'arguments': 1,
          'thats': 1,
          'ego': 1,
          'documentary': 1,
          'made': 1,
          '1998': 1,
          'shadows': 1,
          'documented': 1,
          'owner': 1,
          'mcmahons': 1,
          'screwing': 1,
          'hitman': 1,
          'nthis': 1,
          'storyline': 1,
          'basically': 1,
          'comic': 1,
          'ripoff': 1,
          'poor': 1,
          'mans': 1,
          'wayne': 1,
          'garth': 1,
          'thrown': 1,
          'neric': 1,
          'trying': 1,
          'look': 1,
          'character': 1,
          'gimmick': 1,
          'audience': 1,
          'cheered': 1,
          'nno': 1,
          'enjoys': 1,
          'day': 1,
          'asses': 1,
          'today': 1,
          'comedy': 1,
          'emotional': 1,
          'rockystyle': 1,
          'drama': 1,
          'sport': 1,
          'still': 1,
          'behind': 1,
          'guy': 1,
          'struggles': 1,
          'makes': 1,
          'nin': 1,
          'starts': 1,
          'illfated': 1,
          'romance': 1,
          'girl': 1,
          'sasha': 1,
          'lovely': 1,
          'rose': 1,
          'mcgowan': 1,
          'nwhat': 1,
          'sees': 1,
          'freak': 1,
          'marilyn': 1,
          'manson': 1,
          'ill': 1,
          'never': 1,
          'understand': 1,
          'hospitalized': 1,
          'trainer': 1,
          'nwouldnt': 1,
          'easier': 1,
          'fall': 1,
          'love': 1,
          'typical': 1,
          'spygirlforthebadguy': 1,
          'cliche': 1,
          'hate': 1,
          'n6': 1,
          'nlast': 1,
          'certainly': 1,
          'least': 1,
          'one': 1,
          'single': 1,
          'moment': 1,
          'predict': 1,
          'happen': 1,
          'laugh': 1,
          'either': 1,
          'company': 1,
          'reasons': 1,
          'younger': 1,
          'talent': 1,
          'performers': 1,
          'nthey': 1,
          'give': 1,
          'treat': 1,
          'winning': 1,
          'ratings': 1,
          'everybody': 1,
          'cares': 1,
          'simply': 1,
          'put': 1,
          'hundred': 1,
          'times': 1,
          'right': 1,
          'way': 1,
          'thing': 1,
          'outtakes': 1,
          'nand': 1,
          'spoiled': 1,
          'saved': 1,
          'wasting': 1,
          'seven': 1,
          'dollars': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'psychlo': 6,
          'nits': 6,
          'film': 5,
          'battlefield': 4,
          'earth': 4,
          'might': 4,
          'long': 3,
          'years': 3,
          'make': 3,
          'travolta': 3,
          'screen': 3,
          'something': 3,
          'one': 3,
          'boring': 2,
          'stupid': 2,
          'na': 2,
          'michael': 2,
          'redman': 2,
          '2000': 2,
          'nin': 2,
          'nno': 2,
          'lines': 2,
          'time': 2,
          'nyou': 2,
          'dont': 2,
          'hope': 2,
          'minutes': 2,
          'l': 2,
          'ron': 2,
          'science': 2,
          'fiction': 2,
          'work': 2,
          'john': 2,
          'alien': 2,
          'race': 2,
          'full': 2,
          'difficult': 2,
          'see': 2,
          'nbut': 2,
          'never': 2,
          'days': 2,
          'ships': 2,
          'ever': 2,
          'like': 2,
          'air': 2,
          'nand': 2,
          'problems': 2,
          'big': 2,
          'plain': 1,
          'nbattlefield': 1,
          'review': 1,
          'copyright': 1,
          'midteen': 1,
          'horrendous': 1,
          'reoccurring': 1,
          'nightmare': 1,
          'nbehind': 1,
          'wheel': 1,
          'car': 1,
          'driving': 1,
          'straight': 1,
          'road': 1,
          'middle': 1,
          'desert': 1,
          'scenery': 1,
          'except': 1,
          'horizon': 1,
          'line': 1,
          'converging': 1,
          'parallel': 1,
          'highway': 1,
          'matter': 1,
          'view': 1,
          'didnt': 1,
          'change': 1,
          'travelling': 1,
          'getting': 1,
          'anywhere': 1,
          'neach': 1,
          'awoke': 1,
          'sweat': 1,
          'terrified': 1,
          'carl': 1,
          'jung': 1,
          'understand': 1,
          'dream': 1,
          'npowerless': 1,
          'changes': 1,
          'trapped': 1,
          'situation': 1,
          'rescue': 1,
          'stuff': 1,
          'nightmares': 1,
          'whether': 1,
          'asleep': 1,
          'awake': 1,
          'nthis': 1,
          'exactly': 1,
          'feel': 1,
          '15': 1,
          'begins': 1,
          'nfor': 1,
          'flash': 1,
          'style': 1,
          'hubbards': 1,
          'epic': 1,
          'earliest': 1,
          'best': 1,
          'entry': 1,
          'dullest': 1,
          'summer': 1,
          'ndull': 1,
          'year': 1,
          '3000': 1,
          'aliens': 1,
          'ruled': 1,
          'planet': 1,
          '1': 1,
          '000': 1,
          'nhumans': 1,
          'either': 1,
          'slave': 1,
          'labor': 1,
          'mining': 1,
          'operations': 1,
          'live': 1,
          'barbarians': 1,
          'ntheres': 1,
          'future': 1,
          'bleak': 1,
          'nthen': 1,
          'mistake': 1,
          'capture': 1,
          'feisty': 1,
          'jonnie': 1,
          'goodboy': 1,
          'tyler': 1,
          'barry': 1,
          'pepper': 1,
          'organizes': 1,
          'revolution': 1,
          'chief': 1,
          'security': 1,
          'terl': 1,
          'archetypal': 1,
          'postapocalyptic': 1,
          'plot': 1,
          'promise': 1,
          'nconsidering': 1,
          'talent': 1,
          'involved': 1,
          'millions': 1,
          'thrown': 1,
          'could': 1,
          'failed': 1,
          'miserably': 1,
          'story': 1,
          'holes': 1,
          'falls': 1,
          'apart': 1,
          'within': 1,
          'opening': 1,
          'credits': 1,
          'nare': 1,
          'really': 1,
          'supposed': 1,
          'believe': 1,
          'millennium': 1,
          'looking': 1,
          'gold': 1,
          'discovered': 1,
          'fort': 1,
          'knox': 1,
          'fighter': 1,
          'planes': 1,
          'still': 1,
          'pristine': 1,
          'condition': 1,
          'gassed': 1,
          'cavemen': 1,
          'become': 1,
          'expert': 1,
          'pilots': 1,
          'seven': 1,
          'easily': 1,
          'advanced': 1,
          'spy': 1,
          'cameras': 1,
          'somehow': 1,
          'notice': 1,
          'slaves': 1,
          'missing': 1,
          'ntravolta': 1,
          'prances': 1,
          'across': 1,
          'hamming': 1,
          'hes': 1,
          'worth': 1,
          'almost': 1,
          'entertaining': 1,
          'nalmost': 1,
          'rest': 1,
          'actors': 1,
          'wooden': 1,
          'mannequins': 1,
          'trying': 1,
          'laugh': 1,
          'delivering': 1,
          'person': 1,
          'mananimal': 1,
          'would': 1,
          'utter': 1,
          'nsome': 1,
          '_looks_': 1,
          'good': 1,
          'also': 1,
          'looks': 1,
          'familiar': 1,
          'large': 1,
          'hulking': 1,
          'apelike': 1,
          'creatures': 1,
          'taken': 1,
          'world': 1,
          'cities': 1,
          'lie': 1,
          'ruin': 1,
          'nsound': 1,
          'charlton': 1,
          'heston': 1,
          'look': 1,
          'overweight': 1,
          'klingons': 1,
          'gear': 1,
          'dune': 1,
          'final': 1,
          'battle': 1,
          'force': 1,
          'fighters': 1,
          'hightech': 1,
          'city': 1,
          'george': 1,
          'lucas': 1,
          'associated': 1,
          'loud': 1,
          'oppressive': 1,
          'slow': 1,
          'far': 1,
          'ntoo': 1,
          'goes': 1,
          'list': 1,
          'endless': 1,
          'find': 1,
          'anything': 1,
          'noh': 1,
          'yeah': 1,
          'color': 1,
          'scheme': 1,
          'nice': 1,
          'real': 1,
          'question': 1,
          'movie': 1,
          'got': 1,
          'made': 1,
          'ncould': 1,
          'fact': 1,
          'hubbard': 1,
          'founder': 1,
          'scientology': 1,
          'member': 1,
          'church': 1,
          'nthat': 1,
          'explain': 1,
          'bought': 1,
          'rights': 1,
          'novel': 1,
          'ago': 1,
          'doesnt': 1,
          'give': 1,
          'us': 1,
          'clue': 1,
          'firsttime': 1,
          'screenwriter': 1,
          'corey': 1,
          'mandells': 1,
          'atrocious': 1,
          'script': 1,
          'used': 1,
          'highprofile': 1,
          'project': 1,
          'entrusted': 1,
          'roger': 1,
          'christian': 1,
          'directed': 1,
          'major': 1,
          'looked': 1,
          'thing': 1,
          'released': 1,
          'realized': 1,
          'bright': 1,
          'spot': 1,
          'longer': 1,
          'kevin': 1,
          'costners': 1,
          'postman': 1,
          'begrudgingly': 1,
          'admit': 1,
          'guilty': 1,
          'pleasure': 1,
          'budget': 1,
          'failure': 1,
          'n': 1,
          'honor': 1,
          'sewed': 1,
          'noften': 1,
          'reviewers': 1,
          'recommend': 1,
          'skip': 1,
          'mediocre': 1,
          'films': 1,
          'wait': 1,
          'video': 1,
          'nthats': 1,
          'case': 1,
          'act': 1,
          'decision': 1,
          'small': 1,
          'ndont': 1,
          'hesitate': 1,
          'nstrike': 1,
          'iron': 1,
          'cold': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'allen': 5,
          'doesnt': 4,
          'couple': 4,
          'amish': 4,
          'n': 4,
          'tim': 3,
          'funny': 3,
          'ding': 3,
          'richer': 3,
          'poorer': 3,
          'alley': 3,
          'film': 3,
          'much': 3,
          'ive': 2,
          'nok': 2,
          'get': 2,
          'pull': 2,
          'angry': 2,
          'faces': 2,
          'two': 2,
          'hours': 2,
          'nwhats': 2,
          'still': 2,
          'half': 2,
          'nlooks': 2,
          'sound': 2,
          'nif': 2,
          'absolutely': 2,
          'married': 2,
          'community': 2,
          'accountant': 2,
          'knight': 2,
          'best': 2,
          'nwhat': 2,
          'horribly': 2,
          'seems': 2,
          'brad': 2,
          'lachman': 2,
          'sextons': 2,
          'nthe': 2,
          'run': 2,
          'laughs': 2,
          'way': 2,
          'chemistry': 2,
          'convincing': 2,
          'one': 2,
          'bad': 2,
          'spicers': 2,
          'films': 2,
          'worst': 2,
          'list': 2,
          'number': 2,
          'ten': 2,
          'making': 2,
          'hey': 1,
          'got': 1,
          'great': 1,
          'idea': 1,
          'well': 1,
          'nsounds': 1,
          'boring': 1,
          'looks': 1,
          'im': 1,
          'pain': 1,
          'nthat': 1,
          'nhow': 1,
          'ewwwww': 1,
          'nstill': 1,
          'answered': 1,
          'nyoure': 1,
          'correct': 1,
          'nfor': 1,
          'moronic': 1,
          'farce': 1,
          'rich': 1,
          'played': 1,
          'kirstie': 1,
          'seek': 1,
          'refuge': 1,
          'bumbling': 1,
          'wayne': 1,
          'know': 1,
          'newman': 1,
          'tvs': 1,
          'seinfeld': 1,
          'gets': 1,
          'trouble': 1,
          'tax': 1,
          'evasion': 1,
          'ensues': 1,
          'badly': 1,
          'scripted': 1,
          'directed': 1,
          '114': 1,
          'minutes': 1,
          'cinema': 1,
          'hell': 1,
          'makes': 1,
          'wrong': 1,
          'nobody': 1,
          'needs': 1,
          'nnamely': 1,
          'talent': 1,
          'nbacking': 1,
          'caroline': 1,
          'sexton': 1,
          'popular': 1,
          'snobby': 1,
          'duo': 1,
          'seem': 1,
          'totally': 1,
          'love': 1,
          'everyone': 1,
          'else': 1,
          'reality': 1,
          'brink': 1,
          'divorce': 1,
          'njust': 1,
          'marriage': 1,
          'hanging': 1,
          'final': 1,
          'thread': 1,
          'discovers': 1,
          'bob': 1,
          'engaging': 1,
          'illegitimate': 1,
          'deals': 1,
          'names': 1,
          'irs': 1,
          'catches': 1,
          'since': 1,
          'everything': 1,
          'points': 1,
          'back': 1,
          'nothing': 1,
          'nexcept': 1,
          'away': 1,
          'join': 1,
          'nfirst': 1,
          'time': 1,
          'screenwriters': 1,
          'jana': 1,
          'howington': 1,
          'steve': 1,
          'lukanic': 1,
          'give': 1,
          'us': 1,
          'chuckleoutloud': 1,
          'moments': 1,
          'even': 1,
          'decent': 1,
          'cringe': 1,
          'made': 1,
          'youll': 1,
          'likely': 1,
          'miss': 1,
          'regurgitating': 1,
          'popcorn': 1,
          'nalley': 1,
          'unwatchable': 1,
          'believable': 1,
          'homework': 1,
          'tenth': 1,
          'grade': 1,
          'inform': 1,
          'total': 1,
          'b': 1,
          'nallen': 1,
          'tycoons': 1,
          'nthis': 1,
          'entire': 1,
          'illconceived': 1,
          'notion': 1,
          'curtailed': 1,
          'beginning': 1,
          'also': 1,
          'flimsy': 1,
          'unconvincing': 1,
          'nits': 1,
          'trite': 1,
          'stereotypical': 1,
          'script': 1,
          'imagine': 1,
          'actors': 1,
          'cast': 1,
          'noticing': 1,
          'theyre': 1,
          'predominantly': 1,
          'tv': 1,
          'figures': 1,
          'probably': 1,
          'ones': 1,
          'could': 1,
          'nbryan': 1,
          'directing': 1,
          'help': 1,
          'bit': 1,
          'either': 1,
          'nin': 1,
          'fact': 1,
          'listing': 1,
          'filmography': 1,
          'includes': 1,
          'first': 1,
          'power': 1,
          'rangers': 1,
          'big': 1,
          'screen': 1,
          'adaption': 1,
          'mchales': 1,
          'navy': 1,
          'insult': 1,
          'r': 1,
          'sum': 1,
          'nnow': 1,
          'pretty': 1,
          'ground': 1,
          'let': 1,
          'thing': 1,
          'nit': 1,
          'bumped': 1,
          'seven': 1,
          'notch': 1,
          '1997': 1,
          'nthats': 1,
          'right': 1,
          'thanks': 1,
          'ranking': 1,
          '3': 1,
          'years': 1,
          'six': 1,
          'seemingly': 1,
          'smile': 1,
          'like': 1,
          'previously': 1,
          'inhabiting': 1,
          'spot': 1,
          'suffer': 1,
          'ridicule': 1,
          'bottom': 1,
          'look': 1,
          'respect': 1,
          'end': 1,
          'someone': 1,
          'happy': 1,
          'nneg': 1}),
 Counter({'grammer': 6,
          'ship': 6,
          'navy': 5,
          'movie': 5,
          'even': 4,
          'comedy': 4,
          'periscope': 4,
          'like': 4,
          'guy': 4,
          'schneider': 4,
          'everyone': 4,
          'nthe': 4,
          'one': 4,
          'drunk': 3,
          'ni': 3,
          'stars': 2,
          'frasier': 2,
          'inept': 2,
          'captain': 2,
          'given': 2,
          'part': 2,
          'coburn': 2,
          'time': 2,
          'doesnt': 2,
          'holly': 2,
          'book': 2,
          'comes': 2,
          'nfirst': 2,
          'cant': 2,
          'hour': 2,
          'ships': 2,
          'theyre': 2,
          'louie': 2,
          'throw': 2,
          'radar': 2,
          'whole': 2,
          'probably': 2,
          'jokes': 2,
          'nmy': 2,
          'second': 2,
          'really': 2,
          'character': 2,
          'said': 2,
          'penis': 2,
          'got': 2,
          'best': 1,
          'comic': 1,
          'actor': 1,
          'mercy': 1,
          'material': 1,
          'subpar': 1,
          'submarine': 1,
          'proves': 1,
          'ndown': 1,
          'kelsey': 1,
          'command': 1,
          'corrupt': 1,
          'officers': 1,
          'james': 1,
          'plan': 1,
          'get': 1,
          'nlike': 1,
          'lame': 1,
          'emsemble': 1,
          'officer': 1,
          'assigns': 1,
          'group': 1,
          'misfits': 1,
          'wants': 1,
          'kicked': 1,
          'fat': 1,
          'eats': 1,
          'beautiful': 1,
          'woman': 1,
          'belong': 1,
          'lauren': 1,
          'secondincommand': 1,
          'everything': 1,
          'rob': 1,
          'crazy': 1,
          'old': 1,
          'freaks': 1,
          'harry': 1,
          'dean': 1,
          'stanton': 1,
          'nthen': 1,
          'transparent': 1,
          'plotline': 1,
          'fix': 1,
          'delapidated': 1,
          'korean': 1,
          'war': 1,
          'courtesy': 1,
          'sad': 1,
          'sight': 1,
          'gag': 1,
          'montage': 1,
          'includes': 1,
          'mop': 1,
          'knocking': 1,
          'overboard': 1,
          'nafter': 1,
          'fixed': 1,
          'come': 1,
          'early': 1,
          'drills': 1,
          'seems': 1,
          'completely': 1,
          'electrician': 1,
          'connect': 1,
          'wires': 1,
          'instead': 1,
          'lets': 1,
          'current': 1,
          'run': 1,
          'every': 1,
          'gets': 1,
          'phone': 1,
          'nfinally': 1,
          'covers': 1,
          'final': 1,
          'lead': 1,
          'men': 1,
          'overcome': 1,
          'wargames': 1,
          'exercise': 1,
          'nand': 1,
          'clever': 1,
          'rebel': 1,
          'scenes': 1,
          'stretch': 1,
          'levels': 1,
          'believability': 1,
          'singing': 1,
          'bunch': 1,
          'sailors': 1,
          'thirty': 1,
          'minutes': 1,
          'later': 1,
          'making': 1,
          'whale': 1,
          'mating': 1,
          'noises': 1,
          'evil': 1,
          'overacting': 1,
          'underwater': 1,
          'cursing': 1,
          'people': 1,
          'watching': 1,
          'nits': 1,
          'predictable': 1,
          'without': 1,
          'original': 1,
          'humor': 1,
          'redeem': 1,
          'right': 1,
          'mchales': 1,
          'cutrate': 1,
          'sitcoms': 1,
          'past': 1,
          'ntheres': 1,
          'scene': 1,
          'looks': 1,
          'pantry': 1,
          'disgust': 1,
          'holds': 1,
          'food': 1,
          'announces': 1,
          'expired': 1,
          '1966': 1,
          'yelled': 1,
          'back': 1,
          'screen': 1,
          'watched': 1,
          'family': 1,
          'hated': 1,
          'mom': 1,
          'bored': 1,
          'brought': 1,
          'coupon': 1,
          'midway': 1,
          'around': 1,
          'start': 1,
          'started': 1,
          'writing': 1,
          'blame': 1,
          'placed': 1,
          'though': 1,
          'nkelsey': 1,
          'good': 1,
          'anything': 1,
          'work': 1,
          'nhis': 1,
          'gotten': 1,
          'night': 1,
          'welcome': 1,
          'aboard': 1,
          'tatooed': 1,
          'ngrammer': 1,
          'something': 1,
          'worse': 1,
          'agreed': 1,
          'appear': 1,
          'knew': 1,
          'nothing': 1,
          'nsame': 1,
          'holley': 1,
          'save': 1,
          'likeable': 1,
          'shes': 1,
          'gorgeous': 1,
          'nas': 1,
          'whose': 1,
          'downright': 1,
          'annoying': 1,
          'nowhere': 1,
          'go': 1,
          'surf': 1,
          'ninjas': 1,
          'although': 1,
          'hes': 1,
          'still': 1,
          'depths': 1,
          'ocean': 1,
          'jumping': 1,
          'snl': 1,
          'theory': 1,
          'movies': 1,
          'green': 1,
          'light': 1,
          'script': 1,
          'written': 1,
          'formula': 1,
          'okay': 1,
          'police': 1,
          'academy': 1,
          'helm': 1,
          'chick': 1,
          'dumb': 1,
          'dumber': 1,
          'signed': 1,
          'turned': 1,
          'disaster': 1,
          'njudging': 1,
          'video': 1,
          'box': 1,
          'critics': 1,
          'agree': 1,
          'quote': 1,
          'copy': 1,
          'writers': 1,
          'could': 1,
          'dig': 1,
          'came': 1,
          'prevue': 1,
          'channels': 1,
          'jim': 1,
          'ferguson': 1,
          'guess': 1,
          'jeff': 1,
          'craig': 1,
          '60': 1,
          'preview': 1,
          'tank': 1,
          'girl': 1,
          'kicks': 1,
          'butt': 1,
          'nwithout': 1,
          'ever': 1,
          'seeing': 1,
          'didnt': 1,
          'nneg': 1}),
 Counter({'summer': 11,
          'know': 9,
          'still': 6,
          'last': 6,
          'since': 3,
          'movie': 3,
          '_last_': 3,
          'nthe': 3,
          'would': 3,
          'one': 3,
          'film': 3,
          'julie': 3,
          'movies': 2,
          'best': 2,
          'sense': 2,
          'ago': 2,
          'long': 2,
          'room': 2,
          'little': 2,
          'thats': 2,
          'karla': 2,
          'first': 2,
          'youll': 2,
          'story': 2,
          'trying': 2,
          'nin': 2,
          'nhe': 2,
          'fisherman': 2,
          'mystery': 2,
          'prequel': 2,
          'murders': 2,
          'scream': 2,
          'dont': 1,
          'come': 1,
          'much': 1,
          'ridiculously': 1,
          'titled': 1,
          'question': 1,
          'described': 1,
          'ridiculous': 1,
          'title': 1,
          'sort': 1,
          'works': 1,
          'warning': 1,
          'nmore': 1,
          'sillysounding': 1,
          'mouthful': 1,
          'blurt': 1,
          'ticket': 1,
          'vendor': 1,
          'horror': 1,
          'sequels': 1,
          'moniker': 1,
          'also': 1,
          'contains': 1,
          'grievous': 1,
          'oversight': 1,
          'anyone': 1,
          'saw': 1,
          'original': 1,
          'able': 1,
          'spot': 1,
          'actually': 1,
          '_before_': 1,
          'knew': 1,
          '_this_': 1,
          'well': 1,
          'really': 1,
          'illogical': 1,
          'say': 1,
          '_still_': 1,
          'filmmakers': 1,
          'least': 1,
          'made': 1,
          'shorter': 1,
          'longer': 1,
          'two': 1,
          'summers': 1,
          'appropriate': 1,
          'stupid': 1,
          'people': 1,
          'getting': 1,
          'hacked': 1,
          'bits': 1,
          'nthat': 1,
          'suggestion': 1,
          'preferable': 1,
          'characters': 1,
          'things': 1,
          'polar': 1,
          'opposite': 1,
          'smart': 1,
          'nfor': 1,
          'example': 1,
          'roommate': 1,
          'plagued': 1,
          'terrible': 1,
          'nightmares': 1,
          'result': 1,
          'stalked': 1,
          'nearly': 1,
          'murdered': 1,
          'sneak': 1,
          'late': 1,
          'night': 1,
          'hide': 1,
          'closet': 1,
          'even': 1,
          'locate': 1,
          'borrow': 1,
          'cute': 1,
          'dress': 1,
          'nprobably': 1,
          'precisely': 1,
          'college': 1,
          'student': 1,
          'pop': 1,
          'diva': 1,
          'brandy': 1,
          'friend': 1,
          'jennifer': 1,
          'love': 1,
          'hewitt': 1,
          'resulting': 1,
          'line': 1,
          'phony': 1,
          'frights': 1,
          'njulie': 1,
          'recall': 1,
          'sole': 1,
          'survivors': 1,
          'end': 1,
          '1997s': 1,
          'surprise': 1,
          'hit': 1,
          'slasher': 1,
          'grudge': 1,
          'bear': 1,
          '_long_': 1,
          'began': 1,
          'pick': 1,
          'buddies': 1,
          'various': 1,
          'others': 1,
          'coastal': 1,
          'carolina': 1,
          'village': 1,
          'installment': 1,
          'plot': 1,
          'picks': 1,
          'wins': 1,
          'trip': 1,
          'bahamas': 1,
          'yet': 1,
          'racked': 1,
          'guilt': 1,
          'decides': 1,
          'maybe': 1,
          'tropical': 1,
          'getaway': 1,
          'help': 1,
          'ease': 1,
          'mind': 1,
          'nyeah': 1,
          'right': 1,
          'ntheir': 1,
          'island': 1,
          'paradise': 1,
          'course': 1,
          'form': 1,
          'stillalive': 1,
          'killer': 1,
          'muse': 1,
          'watson': 1,
          'sports': 1,
          'gortons': 1,
          'getup': 1,
          'heavy': 1,
          'hat': 1,
          'rain': 1,
          'slicker': 1,
          'mask': 1,
          'identity': 1,
          'hes': 1,
          'stay': 1,
          'anonymous': 1,
          'never': 1,
          'solves': 1,
          'nthough': 1,
          'suppose': 1,
          'hookhand': 1,
          'look': 1,
          'funny': 1,
          'protruding': 1,
          'sleeve': 1,
          'leisure': 1,
          'suit': 1,
          'glaring': 1,
          'flaw': 1,
          'everybody': 1,
          'knows': 1,
          'bad': 1,
          'guy': 1,
          'thus': 1,
          'evaporating': 1,
          'level': 1,
          'paranoid': 1,
          'tension': 1,
          'nicely': 1,
          'sustained': 1,
          'attempted': 1,
          'vivid': 1,
          'scary': 1,
          'trey': 1,
          'callaways': 1,
          'derivative': 1,
          'screenplay': 1,
          'makes': 1,
          'dumb': 1,
          'pretty': 1,
          'potential': 1,
          'victims': 1,
          'nwhen': 1,
          'lays': 1,
          'blissfully': 1,
          'unaware': 1,
          'tanning': 1,
          'bed': 1,
          'giving': 1,
          'perfect': 1,
          'chance': 1,
          'wreak': 1,
          'vengeance': 1,
          'twistties': 1,
          'lid': 1,
          'shut': 1,
          'cranks': 1,
          'uv': 1,
          'rays': 1,
          'youd': 1,
          'think': 1,
          'hed': 1,
          'want': 1,
          'gutted': 1,
          'instead': 1,
          'skin': 1,
          'cancer': 1,
          'victim': 1,
          'later': 1,
          'neven': 1,
          'lovers': 1,
          'might': 1,
          'balk': 1,
          'beyond': 1,
          'sporadically': 1,
          'amusing': 1,
          'absurdity': 1,
          'neato': 1,
          'shots': 1,
          'blood': 1,
          'flowing': 1,
          'toned': 1,
          'teenage': 1,
          'flesh': 1,
          'innovative': 1,
          'gallows': 1,
          'humor': 1,
          'scribe': 1,
          'wunderkind': 1,
          'kevin': 1,
          'williamson': 1,
          'injected': 1,
          'unfolding': 1,
          'sorely': 1,
          'missed': 1,
          'replaced': 1,
          'grating': 1,
          'antics': 1,
          'white': 1,
          'rastafarian': 1,
          'cabana': 1,
          'boy': 1,
          'smokes': 1,
          'weed': 1,
          'tosses': 1,
          'slang': 1,
          'like': 1,
          'yo': 1,
          'cheer': 1,
          'shriek': 1,
          'ends': 1,
          'pair': 1,
          'hedgetrimmers': 1,
          'firmly': 1,
          'implanted': 1,
          'chest': 1,
          'nif': 1,
          'however': 1,
          'effective': 1,
          'kind': 1,
          'subversive': 1,
          'flicks': 1,
          'poked': 1,
          'fun': 1,
          'deadly': 1,
          'deserves': 1,
          'fullblown': 1,
          'roasting': 1,
          'science': 1,
          'theatre': 1,
          '3000': 1,
          'nneg': 1}),
 Counter({'movie': 15,
          'watchers': 13,
          'reborn': 11,
          'film': 9,
          'many': 5,
          'nthe': 5,
          'creature': 5,
          'einstein': 4,
          'dog': 4,
          'koontzs': 4,
          'even': 4,
          'star': 4,
          'nthis': 4,
          'may': 4,
          'mark': 4,
          'hamill': 4,
          'bad': 4,
          'book': 4,
          'ni': 4,
          'blond': 3,
          'kill': 3,
          'dean': 3,
          'called': 3,
          'much': 3,
          'like': 3,
          'n': 3,
          'good': 3,
          'time': 3,
          'really': 3,
          'perhaps': 3,
          'koontz': 3,
          'films': 3,
          'nit': 3,
          'around': 3,
          'befriends': 2,
          'golden': 2,
          'retriever': 2,
          'young': 2,
          'scientist': 2,
          'nunfortunately': 2,
          'shares': 2,
          'psychic': 2,
          'machine': 2,
          'turkey': 2,
          'novel': 2,
          'horror': 2,
          'movies': 2,
          'series': 2,
          'numbers': 2,
          'titles': 2,
          'trek': 2,
          'want': 2,
          'ago': 2,
          'isnt': 2,
          'rented': 2,
          'actor': 2,
          'hes': 2,
          'trailers': 2,
          'teens': 2,
          'action': 2,
          'baio': 2,
          'nwatchers': 2,
          'luke': 2,
          'skywalker': 2,
          'plot': 2,
          'nkoontz': 2,
          'hack': 2,
          'writer': 2,
          'favorite': 2,
          'books': 2,
          'however': 2,
          'devices': 2,
          'behind': 2,
          'though': 2,
          'dont': 2,
          'mean': 2,
          'one': 2,
          'difficult': 2,
          'know': 2,
          'okay': 2,
          'arms': 2,
          'also': 2,
          'scenes': 2,
          'gore': 2,
          'unconvincing': 2,
          'would': 2,
          'recommend': 2,
          'synopsis': 1,
          'humorless': 1,
          'police': 1,
          'officers': 1,
          'life': 1,
          'changes': 1,
          'supersmart': 1,
          'superadorable': 1,
          'named': 1,
          'cute': 1,
          'link': 1,
          'bigfootsized': 1,
          'apecreature': 1,
          'trained': 1,
          'unstoppable': 1,
          'killing': 1,
          'rogainenightmare': 1,
          'loose': 1,
          'girl': 1,
          'nmeanwhile': 1,
          'group': 1,
          'white': 1,
          'chainsmoking': 1,
          'guntoting': 1,
          'nsa': 1,
          'agents': 1,
          'sunglasses': 1,
          'business': 1,
          'suits': 1,
          'tries': 1,
          'characters': 1,
          'ncomments': 1,
          'cheaply': 1,
          'made': 1,
          'directtovideo': 1,
          'fourth': 1,
          'sequel': 1,
          'first': 1,
          'version': 1,
          'bestselling': 1,
          'ntechnically': 1,
          'v': 1,
          'seems': 1,
          'cycle': 1,
          'sequelcrazy': 1,
          'decided': 1,
          'drop': 1,
          'dropped': 1,
          'vi': 1,
          'makers': 1,
          'probably': 1,
          'fool': 1,
          'unsuspecting': 1,
          'video': 1,
          'rental': 1,
          'customers': 1,
          'thinking': 1,
          'might': 1,
          'instead': 1,
          'crappy': 1,
          'fifth': 1,
          'installment': 1,
          'died': 1,
          'long': 1,
          'nhave': 1,
          'ever': 1,
          'recieved': 1,
          'sinking': 1,
          'feeling': 1,
          'watched': 1,
          'previews': 1,
          'preceding': 1,
          'feature': 1,
          'presentation': 1,
          'nwell': 1,
          'hope': 1,
          'viewer': 1,
          'fan': 1,
          'novelist': 1,
          'dashed': 1,
          'seen': 1,
          'tagged': 1,
          'beginning': 1,
          'ntheyre': 1,
          'awful': 1,
          'nthese': 1,
          'commercials': 1,
          'cover': 1,
          'strange': 1,
          'stripper': 1,
          'shadow': 1,
          'dancer': 1,
          'weird': 1,
          'crap': 1,
          'dead': 1,
          'indian': 1,
          'wolves': 1,
          'detonator': 1,
          'starring': 1,
          'scott': 1,
          'nscott': 1,
          'nwhat': 1,
          'idiot': 1,
          'dreamed': 1,
          'nafter': 1,
          'surviving': 1,
          'abysmal': 1,
          'person': 1,
          'finally': 1,
          'gets': 1,
          'watch': 1,
          'maybe': 1,
          'wont': 1,
          'say': 1,
          'bottomofthebarrel': 1,
          'fluff': 1,
          'advertised': 1,
          'greatly': 1,
          'misleading': 1,
          'based': 1,
          'cool': 1,
          'wrote': 1,
          'decade': 1,
          'stars': 1,
          'terrific': 1,
          'wars': 1,
          'trilogy': 1,
          'nlou': 1,
          'rawls': 1,
          'mix': 1,
          'force': 1,
          'certainly': 1,
          'longer': 1,
          'looks': 1,
          'sick': 1,
          'basic': 1,
          'elements': 1,
          'latter': 1,
          'producing': 1,
          'way': 1,
          'thrillers': 1,
          'still': 1,
          'writing': 1,
          'style': 1,
          'succinct': 1,
          'suspenseful': 1,
          'npeople': 1,
          'read': 1,
          'often': 1,
          'complain': 1,
          'repetitive': 1,
          'nits': 1,
          'definately': 1,
          '1': 1,
          '2': 1,
          'superintelligent': 1,
          '3': 1,
          'psychotic': 1,
          'killer': 1,
          'likes': 1,
          'ripping': 1,
          'peoples': 1,
          'eyeballs': 1,
          'three': 1,
          'explain': 1,
          'arguably': 1,
          'popular': 1,
          'idea': 1,
          'highly': 1,
          'implausible': 1,
          'interesting': 1,
          'nbasically': 1,
          'biological': 1,
          'war': 1,
          'created': 1,
          'smart': 1,
          'released': 1,
          'battle': 1,
          'track': 1,
          'target': 1,
          'relay': 1,
          'targets': 1,
          'position': 1,
          'psychically': 1,
          'large': 1,
          'designed': 1,
          'handtohand': 1,
          'combat': 1,
          'nsilly': 1,
          'kind': 1,
          'neat': 1,
          'nim': 1,
          'sorry': 1,
          'ramble': 1,
          'matters': 1,
          'directly': 1,
          'linked': 1,
          'suppose': 1,
          'talk': 1,
          'cheesy': 1,
          'nno': 1,
          'act': 1,
          'including': 1,
          'seeing': 1,
          'aged': 1,
          'stumble': 1,
          'trying': 1,
          'hero': 1,
          'cheese': 1,
          'factor': 1,
          'increased': 1,
          'involved': 1,
          'implied': 1,
          'sex': 1,
          'scene': 1,
          'biologist': 1,
          'geneticist': 1,
          'zoologist': 1,
          'whateverthef': 1,
          'kshessupposedtobe': 1,
          'nmercifully': 1,
          'filmmakers': 1,
          'opted': 1,
          'nudity': 1,
          'nto': 1,
          'honest': 1,
          'halfconvincing': 1,
          'plays': 1,
          'nyou': 1,
          'outacts': 1,
          'human': 1,
          'counterparts': 1,
          'find': 1,
          'relate': 1,
          'laughable': 1,
          'sequences': 1,
          'nand': 1,
          'nyes': 1,
          'poor': 1,
          'guy': 1,
          'furry': 1,
          'suit': 1,
          'mask': 1,
          'poorly': 1,
          'imitates': 1,
          'werewolves': 1,
          'howling': 1,
          'shot': 1,
          '500': 1,
          '000': 1,
          'times': 1,
          'ability': 1,
          'people': 1,
          'swinging': 1,
          'pushing': 1,
          'noh': 1,
          'rip': 1,
          'body': 1,
          'parts': 1,
          'allowing': 1,
          'fake': 1,
          'hands': 1,
          'thrown': 1,
          'ncheesy': 1,
          'nthats': 1,
          'another': 1,
          'main': 1,
          'element': 1,
          'bloody': 1,
          'thoroughly': 1,
          'increase': 1,
          'campiness': 1,
          'rather': 1,
          'suspense': 1,
          'nultimately': 1,
          'gave': 1,
          'half': 1,
          'scifi': 1,
          'buffs': 1,
          'get': 1,
          'kicks': 1,
          'silliness': 1,
          'tax': 1,
          'patience': 1,
          '83': 1,
          'minute': 1,
          'feels': 1,
          'four': 1,
          'hours': 1,
          'nalso': 1,
          'hate': 1,
          'admit': 1,
          'survived': 1,
          'far': 1,
          'worse': 1,
          'nanyone': 1,
          'sat': 1,
          'christopher': 1,
          'lambert': 1,
          'natasha': 1,
          'henstridge': 1,
          'debacle': 1,
          'known': 1,
          'adrenalin': 1,
          'fear': 1,
          'rush': 1,
          'nfinally': 1,
          'couldnt': 1,
          'help': 1,
          'think': 1,
          'work': 1,
          'well': 1,
          'bot': 1,
          'fodder': 1,
          'creative': 1,
          'folks': 1,
          'alltime': 1,
          'shows': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000': 1,
          'thought': 1,
          'alone': 1,
          'helped': 1,
          'survive': 1,
          'smile': 1,
          'face': 1,
          'nrated': 1,
          'r': 1,
          'contains': 1,
          'dozens': 1,
          'bloodspattered': 1,
          'bodies': 1,
          'violence': 1,
          'obviously': 1,
          'wouldnt': 1,
          'little': 1,
          'kids': 1,
          'im': 1,
          'sure': 1,
          'make': 1,
          'ninstead': 1,
          'watching': 1,
          'reading': 1,
          'ntrust': 1,
          'itll': 1,
          'better': 1,
          'spent': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'odd': 5,
          'simons': 5,
          'enough': 5,
          'old': 4,
          'couple': 4,
          'ii': 4,
          'men': 4,
          'n': 4,
          'like': 4,
          'felix': 4,
          'neil': 4,
          'nthe': 4,
          'oscar': 4,
          'none': 4,
          'another': 3,
          'film': 3,
          'nwhile': 3,
          'reunion': 3,
          'car': 3,
          'three': 3,
          'name': 3,
          'word': 3,
          'guys': 2,
          'bathroom': 2,
          'nthey': 2,
          'ive': 2,
          'ever': 2,
          'great': 2,
          'movie': 2,
          'kids': 2,
          'big': 2,
          'day': 2,
          'nif': 2,
          'lazy': 2,
          'tv': 2,
          'situation': 2,
          'comedy': 2,
          'contrived': 2,
          'wedding': 2,
          'san': 2,
          'matthau': 2,
          'films': 2,
          'together': 2,
          'two': 2,
          'script': 2,
          'gets': 2,
          'business': 2,
          'keep': 2,
          'ni': 2,
          'swearing': 2,
          'theater': 2,
          'full': 2,
          'every': 2,
          'would': 2,
          'heard': 1,
          'crowded': 1,
          'following': 1,
          'sneak': 1,
          'preview': 1,
          'happy': 1,
          'group': 1,
          'encountered': 1,
          'exclaimed': 1,
          'gent': 1,
          'urinal': 1,
          'everything': 1,
          'true': 1,
          'yeah': 1,
          'laughed': 1,
          'man': 1,
          'standing': 1,
          'next': 1,
          'drive': 1,
          'slow': 1,
          'guy': 1,
          'nmy': 1,
          'give': 1,
          'holy': 1,
          'hell': 1,
          'peeing': 1,
          'part': 1,
          'chuckled': 1,
          'fellow': 1,
          'fastened': 1,
          'trousers': 1,
          'around': 1,
          'nipples': 1,
          'prepared': 1,
          'rejoin': 1,
          'wife': 1,
          'youre': 1,
          '60': 1,
          'habit': 1,
          'driving': 1,
          'least': 1,
          '20': 1,
          'miles': 1,
          'per': 1,
          'hour': 1,
          'posted': 1,
          'speed': 1,
          'limit': 1,
          'may': 1,
          'nothers': 1,
          'likely': 1,
          'less': 1,
          'charitable': 1,
          'amiable': 1,
          'shockingly': 1,
          'screenplay': 1,
          'feels': 1,
          'slappedtogether': 1,
          'show': 1,
          'suffering': 1,
          'wheezing': 1,
          'setups': 1,
          'jokes': 1,
          'straight': 1,
          'borschtbelt': 1,
          'nsimon': 1,
          'toast': 1,
          'broadway': 1,
          'apparently': 1,
          'shifted': 1,
          'sights': 1,
          'white': 1,
          'way': 1,
          'neighborhood': 1,
          'multiplex': 1,
          'branson': 1,
          'missouri': 1,
          'story': 1,
          'involving': 1,
          'marriage': 1,
          'provides': 1,
          'excuse': 1,
          'madison': 1,
          'unger': 1,
          'havent': 1,
          'seen': 1,
          '17': 1,
          'years': 1,
          'former': 1,
          'roommates': 1,
          'fly': 1,
          'california': 1,
          'respective': 1,
          'homes': 1,
          'quite': 1,
          'literally': 1,
          'run': 1,
          'airport': 1,
          'take': 1,
          'rental': 1,
          'ceremony': 1,
          'molina': 1,
          'get': 1,
          'lost': 1,
          'series': 1,
          'wacky': 1,
          'adventures': 1,
          'road': 1,
          'njack': 1,
          'lemmon': 1,
          'walter': 1,
          'reprise': 1,
          'roles': 1,
          'neat': 1,
          'freak': 1,
          'slob': 1,
          'undeniable': 1,
          'chemistry': 1,
          'pair': 1,
          'impact': 1,
          'lessened': 1,
          'fact': 1,
          'theyve': 1,
          'headlined': 1,
          'since': 1,
          '1993': 1,
          'grumpy': 1,
          'grumpier': 1,
          'sea': 1,
          'nstill': 1,
          'veteran': 1,
          'actors': 1,
          'fun': 1,
          'watch': 1,
          'nmatthau': 1,
          'whose': 1,
          'magnificently': 1,
          'rumpled': 1,
          'face': 1,
          'looks': 1,
          'pile': 1,
          'laundry': 1,
          'eyes': 1,
          'field': 1,
          'crown': 1,
          'prince': 1,
          'curmudgeons': 1,
          'nlemmon': 1,
          'looking': 1,
          'pastier': 1,
          'usual': 1,
          'fine': 1,
          'annoying': 1,
          'still': 1,
          'punctuates': 1,
          'chronic': 1,
          'whining': 1,
          'occasional': 1,
          'allergic': 1,
          'honks': 1,
          'phnah': 1,
          'nphnah': 1,
          'ndespite': 1,
          'bickering': 1,
          'characters': 1,
          'real': 1,
          'affection': 1,
          'providing': 1,
          'welcome': 1,
          'respite': 1,
          'nonstop': 1,
          'barrage': 1,
          'insults': 1,
          'marked': 1,
          'previous': 1,
          'nunfortunately': 1,
          'lemmons': 1,
          'charm': 1,
          'isnt': 1,
          'compensate': 1,
          'hack': 1,
          'wouldnt': 1,
          'pass': 1,
          'muster': 1,
          'even': 1,
          'upn': 1,
          'sitcom': 1,
          'follows': 1,
          'lathered': 1,
          'stale': 1,
          'liners': 1,
          'supply': 1,
          'dozen': 1,
          'wouldbe': 1,
          'comics': 1,
          'openmike': 1,
          'night': 1,
          'local': 1,
          'club': 1,
          'someone': 1,
          'drags': 1,
          'find': 1,
          'bored': 1,
          'try': 1,
          'entertaining': 1,
          'counting': 1,
          'product': 1,
          'placements': 1,
          'nburger': 1,
          'king': 1,
          'el': 1,
          'pollo': 1,
          'loco': 1,
          'taco': 1,
          'joint': 1,
          'budget': 1,
          'renta': 1,
          'really': 1,
          'hits': 1,
          'jackpot': 1,
          'nbetween': 1,
          'references': 1,
          'shots': 1,
          'signs': 1,
          'stickers': 1,
          'bearing': 1,
          'company': 1,
          'couldnt': 1,
          'count': 1,
          'plugs': 1,
          'however': 1,
          'track': 1,
          'came': 1,
          'four': 1,
          'goddamns': 1,
          'shitheads': 1,
          'fucks': 1,
          'inclusion': 1,
          'particular': 1,
          'profanities': 1,
          'seemed': 1,
          'aimed': 1,
          'older': 1,
          'audience': 1,
          'seniors': 1,
          'appeared': 1,
          'problem': 1,
          'howling': 1,
          'crazy': 1,
          'time': 1,
          'boys': 1,
          'let': 1,
          'rip': 1,
          'naughty': 1,
          'nits': 1,
          'sad': 1,
          'writer': 1,
          'stature': 1,
          'grown': 1,
          'desperate': 1,
          'resort': 1,
          'cheap': 1,
          'laughs': 1,
          'surprising': 1,
          'look': 1,
          'else': 1,
          'passed': 1,
          'humor': 1,
          'tepid': 1,
          'exercise': 1,
          'running': 1,
          'gag': 1,
          'involves': 1,
          'felixs': 1,
          'inability': 1,
          'remember': 1,
          'town': 1,
          'held': 1,
          'nat': 1,
          'point': 1,
          'actually': 1,
          'spend': 1,
          '30': 1,
          'seconds': 1,
          'freeassociating': 1,
          'riffing': 1,
          'variants': 1,
          'sequence': 1,
          'creatively': 1,
          'bankrupt': 1,
          'simply': 1,
          'embarrassing': 1,
          'oldest': 1,
          'maxims': 1,
          'filmgoing': 1,
          'beware': 1,
          'movies': 1,
          'use': 1,
          'authors': 1,
          'title': 1,
          'exception': 1,
          'rule': 1,
          'production': 1,
          'minor': 1,
          'pleasures': 1,
          'warrant': 1,
          'viewing': 1,
          'sunday': 1,
          'afternoon': 1,
          'playing': 1,
          'nof': 1,
          'course': 1,
          'theres': 1,
          'strongly': 1,
          'disagree': 1,
          'written': 1,
          'probably': 1,
          'whip': 1,
          'youngwhippersnapper': 1,
          'ass': 1,
          'boot': 1,
          'things': 1,
          'sure': 1,
          'though': 1,
          'ntheyll': 1,
          'never': 1,
          'catch': 1,
          'chase': 1,
          'nneg': 1}),
 Counter({'army': 4,
          'stripes': 3,
          'would': 3,
          'murray': 3,
          'even': 3,
          'larroquette': 3,
          'comedy': 2,
          'never': 2,
          'movie': 2,
          'dont': 2,
          'ever': 2,
          'ramis': 2,
          'like': 2,
          'ghostbusters': 2,
          'funny': 2,
          'john': 2,
          'candy': 2,
          'nhe': 2,
          'child': 2,
          'sex': 2,
          'seems': 2,
          'uses': 2,
          'genre': 1,
          'turned': 1,
          'truly': 1,
          'good': 1,
          'count': 1,
          'neil': 1,
          'simons': 1,
          'biloxi': 1,
          'blues': 1,
          'nyear': 1,
          'year': 1,
          'predictably': 1,
          'cliched': 1,
          'military': 1,
          'movies': 1,
          'come': 1,
          'recently': 1,
          'sgt': 1,
          'nbilko': 1,
          'none': 1,
          'manage': 1,
          'anything': 1,
          'rehash': 1,
          'last': 1,
          'ni': 1,
          'thought': 1,
          'different': 1,
          'nwith': 1,
          'ivan': 1,
          'reitman': 1,
          'director': 1,
          'bill': 1,
          'star': 1,
          'harold': 1,
          'costar': 1,
          'coscreenwriter': 1,
          'seemed': 1,
          'ninstead': 1,
          'bunch': 1,
          'unfunny': 1,
          'crap': 1,
          'nmurray': 1,
          'sophisticated': 1,
          'meatballs': 1,
          'plays': 1,
          'loser': 1,
          'cab': 1,
          'driver': 1,
          'sees': 1,
          'chance': 1,
          'success': 1,
          'convinces': 1,
          'friend': 1,
          'enlist': 1,
          'nso': 1,
          'get': 1,
          'obligatory': 1,
          'drill': 1,
          'sergeant': 1,
          'hell': 1,
          'headshaving': 1,
          'marchingsinging': 1,
          'sequences': 1,
          'mindnumbingly': 1,
          'stale': 1,
          'nthe': 1,
          'characters': 1,
          'less': 1,
          'original': 1,
          'ranging': 1,
          'underachieving': 1,
          'slob': 1,
          'incompetent': 1,
          'captain': 1,
          'nall': 1,
          'big': 1,
          'name': 1,
          'stars': 1,
          'fall': 1,
          'victim': 1,
          'lame': 1,
          'rehashed': 1,
          'material': 1,
          'really': 1,
          'likeable': 1,
          'particular': 1,
          'gets': 1,
          'decent': 1,
          'lines': 1,
          'although': 1,
          'barelyfunny': 1,
          'one': 1,
          'liners': 1,
          'pale': 1,
          'comparison': 1,
          'hilarious': 1,
          'peter': 1,
          'venkman': 1,
          'character': 1,
          'played': 1,
          'three': 1,
          'years': 1,
          'later': 1,
          'better': 1,
          'caddyshack': 1,
          'crying': 1,
          'loud': 1,
          'nas': 1,
          'lot': 1,
          'late': 1,
          '70s': 1,
          'early': 1,
          '80s': 1,
          'comedies': 1,
          'completely': 1,
          'juvenile': 1,
          'obsessed': 1,
          'able': 1,
          'watch': 1,
          'nim': 1,
          'sure': 1,
          'paper': 1,
          'pay': 1,
          '400': 1,
          'mud': 1,
          'wrestle': 1,
          'five': 1,
          'beautiful': 1,
          'women': 1,
          'watching': 1,
          'coming': 1,
          'mouth': 1,
          'admonition': 1,
          'dear': 1,
          'god': 1,
          'nevery': 1,
          'seconds': 1,
          'nstripes': 1,
          'isnt': 1,
          'playful': 1,
          'kind': 1,
          'either': 1,
          'nmost': 1,
          'time': 1,
          'downright': 1,
          'misogynistic': 1,
          'telescope': 1,
          'peer': 1,
          'womens': 1,
          'showers': 1,
          'lifts': 1,
          'female': 1,
          'p': 1,
          'nonto': 1,
          'stove': 1,
          'iknowwhatyoulike': 1,
          'look': 1,
          'face': 1,
          'says': 1,
          'hes': 1,
          'going': 1,
          'give': 1,
          'aunt': 1,
          'jemima': 1,
          'treatment': 1,
          'means': 1,
          'shoving': 1,
          'spatula': 1,
          'butt': 1,
          'repeatedly': 1,
          'nyou': 1,
          'want': 1,
          'stick': 1,
          'around': 1,
          'scene': 1,
          'progresses': 1,
          'ice': 1,
          'cream': 1,
          'scoop': 1,
          'genital': 1,
          'region': 1,
          'n': 1,
          'im': 1,
          'enjoying': 1,
          'woman': 1,
          'protests': 1,
          'nmy': 1,
          'sentiments': 1,
          'exactly': 1,
          'nneg': 1}),
 Counter({'simon': 10,
          'movie': 9,
          'nthe': 6,
          'jeffries': 6,
          'mercury': 5,
          'rising': 5,
          'plot': 4,
          'government': 4,
          'autistic': 4,
          'willis': 4,
          'hitman': 4,
          'really': 3,
          'action': 3,
          'could': 3,
          'nthis': 3,
          'fact': 3,
          'simons': 3,
          'character': 3,
          'hughes': 3,
          'young': 3,
          'way': 3,
          'one': 2,
          'central': 2,
          'device': 2,
          'right': 2,
          'aspect': 2,
          'film': 2,
          'supposed': 2,
          'different': 2,
          'exactly': 2,
          'better': 2,
          'evil': 2,
          'named': 2,
          'wants': 2,
          'back': 2,
          'nsimon': 2,
          'heart': 2,
          'child': 2,
          'fbi': 2,
          'agent': 2,
          'played': 2,
          'protect': 2,
          'ni': 2,
          'much': 2,
          'goes': 2,
          'walks': 2,
          'hes': 2,
          'time': 2,
          'role': 2,
          'never': 2,
          'isnt': 2,
          'like': 2,
          'rain': 2,
          'man': 2,
          'characters': 2,
          'interesting': 2,
          'go': 2,
          'shy': 2,
          'doesnt': 2,
          'even': 2,
          'might': 2,
          'scene': 2,
          'shot': 2,
          'nof': 2,
          'parents': 2,
          'police': 2,
          'knows': 2,
          'personal': 2,
          'place': 2,
          'lets': 2,
          'apartment': 2,
          'good': 2,
          'directed': 2,
          'streetcar': 2,
          'building': 2,
          'humor': 2,
          'numerous': 1,
          'flaws': 1,
          'stands': 1,
          'unnecessary': 1,
          'nthats': 1,
          'major': 1,
          'make': 1,
          'routine': 1,
          'conspiracy': 1,
          'flicks': 1,
          'dropped': 1,
          'beginning': 1,
          'would': 1,
          'turn': 1,
          'nineyearold': 1,
          'boy': 1,
          'nhis': 1,
          'name': 1,
          'bureaucrat': 1,
          'nicholas': 1,
          'kudrow': 1,
          'alec': 1,
          'baldwin': 1,
          'dead': 1,
          'unknowingly': 1,
          'cracked': 1,
          'supersecret': 1,
          'code': 1,
          'slipped': 1,
          'puzzle': 1,
          'magazine': 1,
          'programmers': 1,
          'see': 1,
          'someone': 1,
          'beat': 1,
          'intended': 1,
          'soul': 1,
          'feel': 1,
          'poor': 1,
          'handicapped': 1,
          'thrown': 1,
          'violent': 1,
          'unfair': 1,
          'world': 1,
          'renegade': 1,
          'bruce': 1,
          'nothing': 1,
          'emotional': 1,
          'intensity': 1,
          'necessities': 1,
          'suppose': 1,
          'original': 1,
          'novel': 1,
          'upon': 1,
          'based': 1,
          'relationship': 1,
          'lost': 1,
          'nmiko': 1,
          'actor': 1,
          'plays': 1,
          'prescribed': 1,
          'motions': 1,
          'slowly': 1,
          'drawls': 1,
          'words': 1,
          'kicks': 1,
          'screams': 1,
          'touched': 1,
          'hard': 1,
          'looking': 1,
          'people': 1,
          'nits': 1,
          'difficult': 1,
          'adult': 1,
          'less': 1,
          'play': 1,
          'unfortunately': 1,
          'convinces': 1,
          'us': 1,
          'playing': 1,
          'nunlike': 1,
          'dustin': 1,
          'hoffmans': 1,
          'performance': 1,
          'leonardo': 1,
          'dicaprios': 1,
          'whats': 1,
          'eating': 1,
          'gilbert': 1,
          'grape': 1,
          'always': 1,
          'painfully': 1,
          'aware': 1,
          'acting': 1,
          'nhowever': 1,
          'unlike': 1,
          'used': 1,
          'autism': 1,
          'unique': 1,
          'ways': 1,
          'build': 1,
          'credible': 1,
          'touching': 1,
          'story': 1,
          'generic': 1,
          'predictable': 1,
          'simply': 1,
          'smart': 1,
          'kid': 1,
          'nhell': 1,
          'nin': 1,
          'active': 1,
          'rather': 1,
          'carted': 1,
          'around': 1,
          'arm': 1,
          'nwillis': 1,
          'art': 1,
          'disillusioned': 1,
          'removed': 1,
          'undercover': 1,
          'work': 1,
          'menial': 1,
          'tasks': 1,
          'listening': 1,
          'wiretaps': 1,
          'rookies': 1,
          'happy': 1,
          'anything': 1,
          'nhe': 1,
          'becomes': 1,
          'involved': 1,
          'called': 1,
          'check': 1,
          'murder': 1,
          'house': 1,
          'father': 1,
          'apparently': 1,
          'mother': 1,
          'committed': 1,
          'suicide': 1,
          'course': 1,
          'know': 1,
          'happened': 1,
          'happen': 1,
          'saw': 1,
          'squarejawed': 1,
          'meanlooking': 1,
          'crewcut': 1,
          'knock': 1,
          'able': 1,
          'get': 1,
          'away': 1,
          'finds': 1,
          'hiding': 1,
          'secret': 1,
          'compartment': 1,
          'closet': 1,
          'rest': 1,
          'chicago': 1,
          'department': 1,
          'overlooked': 1,
          'njeffries': 1,
          'accused': 1,
          'several': 1,
          'times': 1,
          'paranoid': 1,
          'although': 1,
          'actions': 1,
          'suggest': 1,
          'something': 1,
          'makes': 1,
          'mission': 1,
          'everything': 1,
          'everyone': 1,
          'order': 1,
          'quite': 1,
          'task': 1,
          'knocked': 1,
          'crawling': 1,
          'everywhere': 1,
          'attempting': 1,
          'kill': 1,
          'hospital': 1,
          'highway': 1,
          'every': 1,
          'nlate': 1,
          'forced': 1,
          'enlist': 1,
          'aid': 1,
          'pretty': 1,
          'woman': 1,
          'stacey': 1,
          'kim': 1,
          'dickens': 1,
          'meets': 1,
          'coffee': 1,
          'shop': 1,
          'hardtobelieve': 1,
          'aspects': 1,
          'worst': 1,
          'believe': 1,
          'decency': 1,
          'human': 1,
          'staceys': 1,
          'far': 1,
          'accommodating': 1,
          'nnot': 1,
          'agree': 1,
          'watch': 1,
          'runs': 1,
          'solve': 1,
          'mystery': 1,
          'two': 1,
          'oclock': 1,
          'morning': 1,
          'leave': 1,
          'means': 1,
          'forgo': 1,
          'business': 1,
          'trip': 1,
          'desperately': 1,
          'needed': 1,
          'pay': 1,
          'rent': 1,
          'grinding': 1,
          'squeals': 1,
          'rusty': 1,
          'machine': 1,
          'almost': 1,
          'overbearing': 1,
          'point': 1,
          'redeemed': 1,
          'sequences': 1,
          'rise': 1,
          'challenge': 1,
          'harold': 1,
          'becker': 1,
          'made': 1,
          'suspense': 1,
          'films': 1,
          'including': 1,
          'sea': 1,
          'love': 1,
          '1989': 1,
          'malice': 1,
          '1993': 1,
          'talent': 1,
          'nowhere': 1,
          'found': 1,
          'latest': 1,
          'excursion': 1,
          'nthere': 1,
          'fight': 1,
          'another': 1,
          'peter': 1,
          'stormare': 1,
          'ineptly': 1,
          'edited': 1,
          'idea': 1,
          '1': 1,
          '2': 1,
          'hitting': 1,
          '3': 1,
          'came': 1,
          'knew': 1,
          'grand': 1,
          'finale': 1,
          'takes': 1,
          'roof': 1,
          'tall': 1,
          'features': 1,
          'harrowing': 1,
          'yawn': 1,
          'along': 1,
          'edge': 1,
          'suspenseful': 1,
          'ntaken': 1,
          'whole': 1,
          'tepid': 1,
          'confused': 1,
          'lacks': 1,
          'style': 1,
          'wit': 1,
          'traces': 1,
          'sense': 1,
          'nusually': 1,
          'brings': 1,
          'brand': 1,
          'understated': 1,
          'roles': 1,
          'straight': 1,
          'serious': 1,
          'flick': 1,
          'heartfelt': 1,
          'drama': 1,
          'ends': 1,
          'failing': 1,
          'fronts': 1,
          'nmaybe': 1,
          'book': 1,
          'handled': 1,
          'perfect': 1,
          'case': 1,
          'study': 1,
          'formula': 1,
          'filmmaking': 1,
          'guaranteed': 1,
          'bore': 1,
          'nneg': 1}),
 Counter({'star': 9,
          'trek': 9,
          'one': 6,
          'insurrection': 6,
          'series': 5,
          'film': 5,
          'always': 4,
          'baku': 4,
          'films': 3,
          'seen': 3,
          'go': 3,
          'completely': 3,
          'first': 3,
          'contact': 3,
          'picard': 3,
          'love': 3,
          'n': 3,
          'action': 3,
          'however': 2,
          'element': 2,
          'story': 2,
          'planet': 2,
          'known': 2,
          'second': 2,
          'alien': 2,
          'data': 2,
          'donna': 2,
          'murphy': 2,
          'least': 2,
          'old': 2,
          'ticking': 2,
          'timer': 2,
          'made': 2,
          'interest': 2,
          'time': 2,
          'screenplay': 2,
          'although': 2,
          'since': 2,
          'could': 2,
          'never': 1,
          'fan': 1,
          'tell': 1,
          'truth': 1,
          'five': 1,
          '1': 1,
          '2': 1,
          '3': 1,
          '8': 1,
          '9': 1,
          'disliked': 1,
          'ni': 1,
          'open': 1,
          'mind': 1,
          'ninth': 1,
          'exception': 1,
          'ndropping': 1,
          'almost': 1,
          'hardcore': 1,
          'scifi': 1,
          'previous': 1,
          'tells': 1,
          'holds': 1,
          '600': 1,
          'people': 1,
          'well': 1,
          'fountain': 1,
          'youth': 1,
          'nat': 1,
          'start': 1,
          'picture': 1,
          'villagers': 1,
          'attack': 1,
          'species': 1,
          'sona': 1,
          'want': 1,
          'push': 1,
          'race': 1,
          'die': 1,
          'nalso': 1,
          'attacking': 1,
          'brent': 1,
          'spiner': 1,
          'robot': 1,
          'enterprise': 1,
          'nafter': 1,
          'returning': 1,
          'jeanluc': 1,
          'patrick': 1,
          'stewart': 1,
          'gang': 1,
          'space': 1,
          'ship': 1,
          'understand': 1,
          'somehow': 1,
          'taken': 1,
          'another': 1,
          'force': 1,
          'nso': 1,
          'several': 1,
          'members': 1,
          'travel': 1,
          'meets': 1,
          'starts': 1,
          'fall': 1,
          'inhabitants': 1,
          'sultry': 1,
          'kind': 1,
          'woman': 1,
          'sixhundredyearsold': 1,
          'looks': 1,
          'thirties': 1,
          'unoriginal': 1,
          'cheaplooking': 1,
          'installment': 1,
          'big': 1,
          'step': 1,
          '1996s': 1,
          'appeared': 1,
          'try': 1,
          'make': 1,
          'something': 1,
          'bit': 1,
          'different': 1,
          'nin': 1,
          'plays': 1,
          'like': 1,
          'lowrent': 1,
          'episode': 1,
          'television': 1,
          'show': 1,
          'due': 1,
          'smallscale': 1,
          'generic': 1,
          'storyline': 1,
          'emphasis': 1,
          'oneliners': 1,
          'rather': 1,
          'excitement': 1,
          'nthe': 1,
          'filled': 1,
          'nearly': 1,
          'nonstop': 1,
          'comedy': 1,
          'worse': 1,
          'yet': 1,
          'fell': 1,
          'flatter': 1,
          'cartoon': 1,
          'character': 1,
          'drops': 1,
          'cliff': 1,
          'nmeanwhile': 1,
          'sequences': 1,
          'interesting': 1,
          'inventive': 1,
          'relying': 1,
          'reliable': 1,
          'counts': 1,
          'slowly': 1,
          'nthis': 1,
          'plot': 1,
          'device': 1,
          'every': 1,
          'nowadays': 1,
          'getting': 1,
          'fast': 1,
          'nare': 1,
          'filmmakers': 1,
          'bankrupt': 1,
          'ingenuity': 1,
          'ideas': 1,
          'must': 1,
          'away': 1,
          'climax': 1,
          'nanother': 1,
          'general': 1,
          'seems': 1,
          'miraculously': 1,
          'disappears': 1,
          'next': 1,
          'two': 1,
          'three': 1,
          'years': 1,
          'later': 1,
          'nalthough': 1,
          'falls': 1,
          'victim': 1,
          'thankless': 1,
          'role': 1,
          'actually': 1,
          'characters': 1,
          'get': 1,
          'know': 1,
          '103minute': 1,
          'running': 1,
          'alfre': 1,
          'woodard': 1,
          'far': 1,
          'superior': 1,
          'nshe': 1,
          'returned': 1,
          'dont': 1,
          'blame': 1,
          'wanting': 1,
          'waste': 1,
          'movies': 1,
          'disappointing': 1,
          'often': 1,
          'lifeless': 1,
          'michael': 1,
          'piller': 1,
          'perhaps': 1,
          'weakest': 1,
          'widely': 1,
          'considered': 1,
          'worst': 1,
          'v': 1,
          'final': 1,
          'frontier': 1,
          'type': 1,
          'safe': 1,
          'sequel': 1,
          'bewilder': 1,
          'nonfans': 1,
          'lowtech': 1,
          'compared': 1,
          'todays': 1,
          'blockbuster': 1,
          'honestly': 1,
          'good': 1,
          'either': 1,
          'disappoint': 1,
          'loyal': 1,
          'trekkies': 1,
          'easily': 1,
          'better': 1,
          'makers': 1,
          'realized': 1,
          'needed': 1,
          'drafts': 1,
          'non': 1,
          'thought': 1,
          'probably': 1,
          'thrown': 1,
          'script': 1,
          'nthat': 1,
          'way': 1,
          'come': 1,
          'sign': 1,
          'intelligence': 1,
          'freshness': 1,
          'nneg': 1}),
 Counter({'spawn': 15,
          'movie': 8,
          'nand': 8,
          'nthe': 7,
          'film': 7,
          'films': 5,
          'al': 5,
          'superhero': 4,
          'one': 4,
          'life': 4,
          'man': 4,
          'character': 4,
          'like': 4,
          'kids': 3,
          'must': 3,
          'special': 3,
          'effects': 3,
          'bad': 3,
          'element': 3,
          'poor': 3,
          'nas': 3,
          'normal': 3,
          'present': 3,
          'evil': 3,
          'better': 3,
          'batman': 3,
          'nit': 3,
          'human': 3,
          'children': 3,
          'think': 2,
          'go': 2,
          'trend': 2,
          'individual': 2,
          'hes': 2,
          'hell': 2,
          'mcfarlane': 2,
          'time': 2,
          'themes': 2,
          'story': 2,
          'take': 2,
          'find': 2,
          'every': 2,
          'simmons': 2,
          'michael': 2,
          'jai': 2,
          'white': 2,
          'wife': 2,
          'partner': 2,
          'terry': 2,
          'boss': 2,
          'jason': 2,
          'wynn': 2,
          'martin': 2,
          'sheen': 2,
          'part': 2,
          'everyone': 2,
          'two': 2,
          'world': 2,
          'makes': 2,
          'see': 2,
          'takes': 2,
          'nthis': 2,
          'even': 2,
          'us': 2,
          'made': 2,
          'touch': 2,
          'art': 2,
          'summer': 1,
          'season': 1,
          'approached': 1,
          'long': 1,
          'awaited': 1,
          'cessation': 1,
          'yet': 1,
          'another': 1,
          'shoddy': 1,
          'subordinate': 1,
          'disposable': 1,
          'celluloid': 1,
          'brought': 1,
          'inexorable': 1,
          'hasten': 1,
          'major': 1,
          'studios': 1,
          'please': 1,
          'everything': 1,
          'disburse': 1,
          'seven': 1,
          'bucks': 1,
          'worst': 1,
          'year': 1,
          'moment': 1,
          'bear': 1,
          'mind': 1,
          'youve': 1,
          'seen': 1,
          'animated': 1,
          'series': 1,
          'hbo': 1,
          'youll': 1,
          'recall': 1,
          'embodies': 1,
          'lost': 1,
          'disfigured': 1,
          'transpired': 1,
          'ultimate': 1,
          'punishment': 1,
          'sent': 1,
          'ntodd': 1,
          'creator': 1,
          'comic': 1,
          'book': 1,
          'tough': 1,
          'sitting': 1,
          'creativity': 1,
          'resurrection': 1,
          'loss': 1,
          'identity': 1,
          'jettisoned': 1,
          'favor': 1,
          'reliable': 1,
          'style': 1,
          'substance': 1,
          'ambience': 1,
          'anything': 1,
          'else': 1,
          'nnot': 1,
          'rely': 1,
          'entirely': 1,
          'bewildered': 1,
          'group': 1,
          'guys': 1,
          'process': 1,
          'realized': 1,
          'sordid': 1,
          'incapable': 1,
          'manner': 1,
          'becomes': 1,
          'indigestible': 1,
          'nevery': 1,
          'lifeless': 1,
          'vacuous': 1,
          'seemingly': 1,
          'written': 1,
          'depressed': 1,
          'college': 1,
          'student': 1,
          'begins': 1,
          'age': 1,
          'living': 1,
          'idyllic': 1,
          'nal': 1,
          'government': 1,
          'agentassassin': 1,
          'shares': 1,
          'love': 1,
          'wanda': 1,
          'theresa': 1,
          'russell': 1,
          'daughter': 1,
          'tongueincheek': 1,
          'wiseass': 1,
          'b': 1,
          'sweeney': 1,
          'content': 1,
          'job': 1,
          'provides': 1,
          'next': 1,
          'things': 1,
          'awry': 1,
          'expected': 1,
          'turns': 1,
          'tables': 1,
          'investigating': 1,
          'latest': 1,
          'mission': 1,
          'sort': 1,
          'biological': 1,
          'weapons': 1,
          'plant': 1,
          'befriended': 1,
          'dies': 1,
          'gory': 1,
          'truly': 1,
          'sickening': 1,
          'scene': 1,
          'ninevitably': 1,
          'leads': 1,
          'conclusion': 1,
          'passed': 1,
          'away': 1,
          'nhence': 1,
          'jasons': 1,
          'mischievous': 1,
          'mastermind': 1,
          'plan': 1,
          'conquer': 1,
          'commencing': 1,
          'initial': 1,
          'stages': 1,
          'pact': 1,
          'satan': 1,
          'agreeing': 1,
          'command': 1,
          'devils': 1,
          'army': 1,
          'gets': 1,
          'family': 1,
          'nso': 1,
          'pal': 1,
          'uplifted': 1,
          'transformation': 1,
          'guy': 1,
          'place': 1,
          'ol': 1,
          'forms': 1,
          'relationship': 1,
          'ntime': 1,
          'passes': 1,
          'grotesque': 1,
          'inner': 1,
          'city': 1,
          'ghetto': 1,
          'cog': 1,
          'nicol': 1,
          'williamson': 1,
          'teaches': 1,
          'utilize': 1,
          'neat': 1,
          'artifacts': 1,
          'motorbike': 1,
          'armor': 1,
          'etc': 1,
          'merely': 1,
          'mans': 1,
          'obi': 1,
          'wan': 1,
          'kenobi': 1,
          'without': 1,
          'mythological': 1,
          'hoopla': 1,
          'nnow': 1,
          'stage': 1,
          'set': 1,
          'new': 1,
          'enemy': 1,
          'vs': 1,
          'cake': 1,
          'doubtlessly': 1,
          'njohn': 1,
          'leguizamos': 1,
          'deliciously': 1,
          'heinous': 1,
          'performance': 1,
          'injurious': 1,
          'clown': 1,
          'working': 1,
          'relief': 1,
          'point': 1,
          'nall': 1,
          'anguish': 1,
          'pain': 1,
          'halfbaked': 1,
          'putrid': 1,
          'action': 1,
          'scenes': 1,
          'invisible': 1,
          'leguizamo': 1,
          'steals': 1,
          'show': 1,
          'derives': 1,
          'joy': 1,
          'basically': 1,
          'compilation': 1,
          'soso': 1,
          'liners': 1,
          'theres': 1,
          'nwhichever': 1,
          'way': 1,
          'look': 1,
          'carving': 1,
          'boards': 1,
          'near': 1,
          'pitying': 1,
          'downright': 1,
          'appalling': 1,
          'last': 1,
          'years': 1,
          'nhis': 1,
          'selections': 1,
          'calls': 1,
          'immediate': 1,
          'firing': 1,
          'agent': 1,
          'megalomaniac': 1,
          'caricature': 1,
          'plays': 1,
          'dream': 1,
          'bmovie': 1,
          'scrambled': 1,
          'left': 1,
          'shelf': 1,
          'rot': 1,
          'starred': 1,
          'apocalypse': 1,
          'wall': 1,
          'street': 1,
          'nid': 1,
          'never': 1,
          'thought': 1,
          'id': 1,
          'saying': 1,
          'juncture': 1,
          'charlie': 1,
          'sheens': 1,
          'career': 1,
          'shape': 1,
          'nspawn': 1,
          'realism': 1,
          'attempt': 1,
          'draw': 1,
          'parallel': 1,
          'problems': 1,
          'hero': 1,
          'real': 1,
          'identifiable': 1,
          'nfor': 1,
          'vapid': 1,
          'consumes': 1,
          'ogling': 1,
          'jumping': 1,
          'roofs': 1,
          'performing': 1,
          'kinds': 1,
          'acrobatic': 1,
          'exercises': 1,
          'robin': 1,
          'accomplished': 1,
          'constantly': 1,
          'reminded': 1,
          'watching': 1,
          'ncontinually': 1,
          'kept': 1,
          'depending': 1,
          'sadly': 1,
          'pictures': 1,
          'nperhaps': 1,
          'illustrates': 1,
          'deterioration': 1,
          'cinema': 1,
          'computer': 1,
          'wizardry': 1,
          'filmmakers': 1,
          'seem': 1,
          'forgotten': 1,
          'possible': 1,
          'quality': 1,
          'abysmal': 1,
          'insulting': 1,
          'perceptible': 1,
          'director': 1,
          'mark': 1,
          'dippe': 1,
          'attempted': 1,
          'psychological': 1,
          'chord': 1,
          'tim': 1,
          'burtons': 1,
          'desperation': 1,
          'whose': 1,
          'evaporated': 1,
          'spontaneous': 1,
          'act': 1,
          'nbut': 1,
          'bruce': 1,
          'wayne': 1,
          'elements': 1,
          'nhe': 1,
          'pensive': 1,
          'resourceful': 1,
          'relationships': 1,
          'perspective': 1,
          'equally': 1,
          'seems': 1,
          'longing': 1,
          'drastic': 1,
          'change': 1,
          'fatigued': 1,
          'superheroes': 1,
          'superman': 1,
          'phantom': 1,
          'possess': 1,
          'civilians': 1,
          'make': 1,
          'extraordinary': 1,
          'nnone': 1,
          'fighting': 1,
          'sequences': 1,
          'weakly': 1,
          'executed': 1,
          'dialogue': 1,
          'pennydreadful': 1,
          'direction': 1,
          'odious': 1,
          'duplicate': 1,
          'blade': 1,
          'runners': 1,
          'example': 1,
          'vastly': 1,
          'creative': 1,
          'imagination': 1,
          'writers': 1,
          'decided': 1,
          'include': 1,
          'orphan': 1,
          'boy': 1,
          'abandoned': 1,
          'beaten': 1,
          'rescued': 1,
          'emotions': 1,
          'tend': 1,
          'little': 1,
          'sympathetic': 1,
          'nadmittedly': 1,
          'laugh': 1,
          'thats': 1,
          'todd': 1,
          'showed': 1,
          'unexpected': 1,
          'cameo': 1,
          'bum': 1,
          'wonder': 1,
          'american': 1,
          'grow': 1,
          'engrossment': 1,
          'literature': 1,
          'nbesides': 1,
          'blaming': 1,
          'large': 1,
          'portion': 1,
          'laughable': 1,
          'school': 1,
          'system': 1,
          'condemn': 1,
          'garbage': 1,
          'nmovies': 1,
          'admiration': 1,
          'captivation': 1,
          'richness': 1,
          'vague': 1,
          'interest': 1,
          'subjected': 1,
          'continue': 1,
          'simply': 1,
          'unable': 1,
          'differentiate': 1,
          'imaginative': 1,
          'wondrous': 1,
          'insipid': 1,
          'wasteful': 1,
          'nchildren': 1,
          'muppets': 1,
          'unapologetically': 1,
          'targets': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'film': 3,
          'old': 2,
          'danielle': 2,
          'prince': 2,
          'woman': 2,
          'century': 2,
          'movie': 2,
          'like': 2,
          'ntheater': 2,
          'na': 2,
          'man': 2,
          'one': 2,
          'enjoyable': 2,
          'bad': 1,
          'thing': 1,
          'update': 1,
          'stories': 1,
          'nits': 1,
          'done': 1,
          'time': 1,
          'oral': 1,
          'tradition': 1,
          'difficulty': 1,
          'tale': 1,
          'changed': 1,
          'dry': 1,
          'new': 1,
          'cinderella': 1,
          'drew': 1,
          'barrymore': 1,
          'sitting': 1,
          'around': 1,
          'waiting': 1,
          'come': 1,
          'nshes': 1,
          'late': 1,
          'twentieth': 1,
          'albeit': 1,
          'situated': 1,
          'sixteenth': 1,
          'france': 1,
          'nwhen': 1,
          'father': 1,
          'dies': 1,
          'stays': 1,
          'house': 1,
          'even': 1,
          'though': 1,
          'mistreated': 1,
          'wicked': 1,
          'stepmother': 1,
          'rodmilla': 1,
          'anjelica': 1,
          'huston': 1,
          'nshe': 1,
          'works': 1,
          'day': 1,
          'reads': 1,
          'sir': 1,
          'thomas': 1,
          'firelight': 1,
          'night': 1,
          'nalthough': 1,
          'story': 1,
          'updated': 1,
          'know': 1,
          'plot': 1,
          'ndanielle': 1,
          'meets': 1,
          'henry': 1,
          'dougray': 1,
          'scott': 1,
          'goes': 1,
          'ball': 1,
          'disguised': 1,
          'later': 1,
          'found': 1,
          'live': 1,
          'happily': 1,
          'ever': 1,
          'often': 1,
          'watching': 1,
          'filmed': 1,
          'play': 1,
          'real': 1,
          'life': 1,
          'engrossing': 1,
          'screen': 1,
          'usually': 1,
          'lifeless': 1,
          'nthere': 1,
          'doesnt': 1,
          'seem': 1,
          'much': 1,
          'going': 1,
          'camera': 1,
          'star': 1,
          'films': 1,
          'nhere': 1,
          'coconspirator': 1,
          'ndanielles': 1,
          'convictions': 1,
          'compromised': 1,
          'socialist': 1,
          'feminist': 1,
          'pretends': 1,
          'royalty': 1,
          'get': 1,
          'kind': 1,
          'last': 1,
          'act': 1,
          'revenge': 1,
          'characters': 1,
          'cartoonish': 1,
          'fairy': 1,
          'godmother': 1,
          'standin': 1,
          'leonardo': 1,
          'da': 1,
          'vinci': 1,
          'patrick': 1,
          'godfrey': 1,
          'fun': 1,
          'watch': 1,
          'eccentric': 1,
          'advises': 1,
          'nhuston': 1,
          'overthetop': 1,
          'wickedness': 1,
          'nin': 1,
          'fairness': 1,
          'companion': 1,
          'loved': 1,
          'nmaybe': 1,
          'chick': 1,
          'flicks': 1,
          'men': 1,
          'dont': 1,
          'nit': 1,
          'certainly': 1,
          'date': 1,
          'nnearly': 1,
          'entire': 1,
          'audience': 1,
          'couples': 1,
          'noh': 1,
          'well': 1,
          'maybe': 1,
          'good': 1,
          'something': 1,
          'nneg': 1}),
 Counter({'hudson': 9,
          'hawk': 9,
          'movie': 7,
          'willis': 7,
          'im': 5,
          'nits': 5,
          'get': 4,
          'film': 4,
          'even': 4,
          'bruce': 3,
          'many': 3,
          'things': 3,
          'nbut': 3,
          'sure': 3,
          'big': 3,
          'ni': 3,
          'laughs': 3,
          'suppose': 2,
          'title': 2,
          'box': 2,
          'office': 2,
          'nthe': 2,
          'sing': 2,
          'never': 2,
          'aiello': 2,
          'fat': 2,
          'absurd': 2,
          'layer': 2,
          'nif': 2,
          'quite': 2,
          'going': 2,
          'entirely': 2,
          'entire': 2,
          'deadpan': 2,
          'reactions': 2,
          'interest': 2,
          'character': 2,
          'fans': 2,
          '90': 2,
          'looks': 2,
          'future': 2,
          'theres': 2,
          'couple': 2,
          'unfair': 1,
          'criticize': 1,
          'like': 1,
          'panned': 1,
          'reviewers': 1,
          'moviegoers': 1,
          'alike': 1,
          'since': 1,
          '1991': 1,
          'release': 1,
          'nmichael': 1,
          'lehmanns': 1,
          'actioncomedy': 1,
          'quick': 1,
          'win': 1,
          'biggest': 1,
          'flop': 1,
          'time': 1,
          'close': 1,
          'thereof': 1,
          'stars': 1,
          'renowned': 1,
          'cat': 1,
          'burglar': 1,
          'whos': 1,
          'released': 1,
          'prison': 1,
          'years': 1,
          'isolation': 1,
          'let': 1,
          'put': 1,
          'way': 1,
          'explains': 1,
          'saw': 1,
          'et': 1,
          'ngreeting': 1,
          'old': 1,
          'friend': 1,
          'partner': 1,
          'crime': 1,
          'played': 1,
          'danny': 1,
          'becomes': 1,
          'subject': 1,
          'amusing': 1,
          'jokes': 1,
          'nthese': 1,
          'rather': 1,
          'welcome': 1,
          'filled': 1,
          'completely': 1,
          'unfunny': 1,
          'sight': 1,
          'gags': 1,
          'cartoonish': 1,
          'villains': 1,
          'unbelievable': 1,
          'coincidences': 1,
          'nit': 1,
          'appears': 1,
          'director': 1,
          'lehmann': 1,
          'didnt': 1,
          'know': 1,
          'stop': 1,
          'silliness': 1,
          'piles': 1,
          'utter': 1,
          'ridiculousness': 1,
          'propels': 1,
          'toward': 1,
          'finish': 1,
          'line': 1,
          'point': 1,
          'make': 1,
          'assumption': 1,
          'couldnt': 1,
          'goofier': 1,
          'youll': 1,
          'soon': 1,
          'eating': 1,
          'words': 1,
          'inclined': 1,
          'say': 1,
          'terrible': 1,
          'numbers': 1,
          'suggest': 1,
          'fastpaced': 1,
          'entertaining': 1,
          'youve': 1,
          'got': 1,
          'incredible': 1,
          'patience': 1,
          'warped': 1,
          'sense': 1,
          'humor': 1,
          'nfor': 1,
          'first': 1,
          'portion': 1,
          'review': 1,
          'try': 1,
          'center': 1,
          'positive': 1,
          'aspects': 1,
          'nwish': 1,
          'luck': 1,
          'nfirst': 1,
          'foremost': 1,
          'good': 1,
          'sport': 1,
          'nwhile': 1,
          'smoking': 1,
          'cowrote': 1,
          'script': 1,
          'aware': 1,
          'project': 1,
          'ugly': 1,
          'joke': 1,
          'nhe': 1,
          'constantly': 1,
          'gives': 1,
          'silly': 1,
          'outofplace': 1,
          'means': 1,
          'share': 1,
          'nanother': 1,
          'plus': 1,
          'appearance': 1,
          'andie': 1,
          'macdowell': 1,
          'schizophrenic': 1,
          'nun': 1,
          'love': 1,
          'nthey': 1,
          'meet': 1,
          'goes': 1,
          'mission': 1,
          'steal': 1,
          'priceless': 1,
          'book': 1,
          'vatican': 1,
          'relationship': 1,
          'escalates': 1,
          'unfortunate': 1,
          'mcdowells': 1,
          'onenote': 1,
          'used': 1,
          'excuse': 1,
          'predictable': 1,
          'plottwist': 1,
          'offers': 1,
          'absolutely': 1,
          'encouraging': 1,
          'chemistry': 1,
          'rambling': 1,
          'negative': 1,
          'arent': 1,
          'nenough': 1,
          'charade': 1,
          'part': 1,
          'excruciating': 1,
          'experience': 1,
          'stupid': 1,
          'pointless': 1,
          'repetitive': 1,
          'wonder': 1,
          'thought': 1,
          'exiting': 1,
          'theater': 1,
          'really': 1,
          'doesnt': 1,
          'potential': 1,
          'please': 1,
          'anyone': 1,
          'naction': 1,
          'take': 1,
          'note': 1,
          'composed': 1,
          'comedy': 1,
          'action': 1,
          'sequences': 1,
          'skittery': 1,
          'rushed': 1,
          'poorly': 1,
          'edited': 1,
          'nand': 1,
          'expecting': 1,
          'hearty': 1,
          'laugh': 1,
          'two': 1,
          'find': 1,
          'difficult': 1,
          'smirk': 1,
          'headacheinducing': 1,
          'hijinks': 1,
          'ndont': 1,
          'wrong': 1,
          'devoid': 1,
          'bad': 1,
          'unintentional': 1,
          'plain': 1,
          'forced': 1,
          'impressive': 1,
          'cast': 1,
          'suitably': 1,
          'embarrassed': 1,
          'understandable': 1,
          'see': 1,
          'caliber': 1,
          'presence': 1,
          'academy': 1,
          'award': 1,
          'winner': 1,
          'james': 1,
          'coburn': 1,
          'ncoburn': 1,
          'plays': 1,
          'former': 1,
          'nemesis': 1,
          'comes': 1,
          'play': 1,
          'unsure': 1,
          'place': 1,
          'nespecially': 1,
          'resorts': 1,
          'martial': 1,
          'arts': 1,
          'final': 1,
          'showdown': 1,
          'fight': 1,
          'would': 1,
          'look': 1,
          'right': 1,
          'home': 1,
          'jackie': 1,
          'chan': 1,
          'nthings': 1,
          'bizarre': 1,
          'introduced': 1,
          'team': 1,
          'rejects': 1,
          'named': 1,
          'chocolate': 1,
          'bars': 1,
          'including': 1,
          'nypd': 1,
          'blue': 1,
          'star': 1,
          'david': 1,
          'caruso': 1,
          'speechless': 1,
          'cardflipping': 1,
          'kitkat': 1,
          'thats': 1,
          'enough': 1,
          'richard': 1,
          'e': 1,
          'grant': 1,
          'sandra': 1,
          'bernhard': 1,
          'hamming': 1,
          'deranged': 1,
          'brink': 1,
          'convoluted': 1,
          'economic': 1,
          'takeover': 1,
          'ntheir': 1,
          'crotchbiting': 1,
          'pooch': 1,
          'provides': 1,
          'nwait': 1,
          'maybe': 1,
          'nim': 1,
          'kind': 1,
          'everyone': 1,
          'mind': 1,
          'filming': 1,
          'cant': 1,
          'begin': 1,
          'start': 1,
          'films': 1,
          'plot': 1,
          'lets': 1,
          'amusement': 1,
          'viewers': 1,
          'could': 1,
          'derive': 1,
          'ridiculous': 1,
          'premise': 1,
          'desperate': 1,
          'clue': 1,
          'minute': 1,
          'one': 1,
          'minutes': 1,
          'pure': 1,
          'cinematic': 1,
          'muck': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'disco': 6,
          'club': 6,
          'made': 5,
          '_54_': 5,
          'studio': 4,
          '54': 4,
          'christopher': 4,
          'audience': 4,
          'shane': 4,
          'crowd': 4,
          'one': 4,
          'dance': 3,
          'miramax': 3,
          'last': 3,
          'campbell': 3,
          'phillippe': 3,
          'would': 3,
          'spent': 3,
          'subject': 2,
          'infamous': 2,
          'came': 2,
          'sex': 2,
          'hayek': 2,
          'myers': 2,
          'turn': 2,
          'reshoots': 2,
          'screen': 2,
          'finished': 2,
          'though': 2,
          'numerous': 2,
          'away': 2,
          'less': 2,
          'way': 2,
          'still': 2,
          '_54_s': 2,
          'anita': 2,
          'busboy': 2,
          'nthese': 2,
          'wild': 2,
          'comes': 2,
          'character': 2,
          'nas': 2,
          'little': 2,
          'much': 2,
          'within': 2,
          'isnt': 2,
          'may': 2,
          'cut': 2,
          'failure': 2,
          'time': 2,
          'floor': 2,
          'moment': 2,
          'screaming': 1,
          'late': 1,
          'steve': 1,
          'rubells': 1,
          'new': 1,
          'york': 1,
          'discotheque': 1,
          'symbolize': 1,
          'taboosmashing': 1,
          'excesses': 1,
          'eras': 1,
          'heyday': 1,
          'easy': 1,
          'drugs': 1,
          'even': 1,
          'easier': 1,
          'everyone': 1,
          'set': 1,
          'thumping': 1,
          'beat': 1,
          'nso': 1,
          'started': 1,
          'production': 1,
          'year': 1,
          'buzz': 1,
          'hype': 1,
          'resulting': 1,
          'anticipation': 1,
          'began': 1,
          'edgy': 1,
          'downanddirty': 1,
          'written': 1,
          'directed': 1,
          'promising': 1,
          'firsttimer': 1,
          'mark': 1,
          'starring': 1,
          'hot': 1,
          'young': 1,
          'talent': 1,
          'salma': 1,
          'neve': 1,
          'newcomer': 1,
          'ryan': 1,
          'mike': 1,
          'dramatic': 1,
          'debut': 1,
          'nmy': 1,
          'easily': 1,
          'worm': 1,
          'nhype': 1,
          'turned': 1,
          'damage': 1,
          'control': 1,
          'word': 1,
          'got': 1,
          '11thhour': 1,
          'wrapped': 1,
          'month': 1,
          'ago': 1,
          'rash': 1,
          'studioimposed': 1,
          'edits': 1,
          'left': 1,
          'virtually': 1,
          'entire': 1,
          'cast': 1,
          'crew': 1,
          'especially': 1,
          'unhappy': 1,
          'likely': 1,
          'possibility': 1,
          'critics': 1,
          'nat': 1,
          'minute': 1,
          'decide': 1,
          'hastily': 1,
          'scheduled': 1,
          'screening': 1,
          'myerss': 1,
          'name': 1,
          'misspelled': 1,
          'invitation': 1,
          'mention': 1,
          'typos': 1,
          'press': 1,
          'notes': 1,
          'media': 1,
          'noticeably': 1,
          'impressed': 1,
          'included': 1,
          'nand': 1,
          'good': 1,
          'reasonsomehow': 1,
          'supremely': 1,
          'disappointing': 1,
          'historically': 1,
          'hip': 1,
          'hedonism': 1,
          'nboring': 1,
          'nalthough': 1,
          'distanced': 1,
          'must': 1,
          'shoulder': 1,
          'blame': 1,
          'lifelessness': 1,
          'n_54_': 1,
          'focuses': 1,
          'part': 1,
          'tightknit': 1,
          'trio': 1,
          'employees': 1,
          'coat': 1,
          'check': 1,
          'girlaspiring': 1,
          'diva': 1,
          'wasted': 1,
          'husband': 1,
          'greg': 1,
          'breckin': 1,
          'meyer': 1,
          'prominently': 1,
          'freshfromjersey': 1,
          'oshea': 1,
          'enjoys': 1,
          'quick': 1,
          'rise': 1,
          'head': 1,
          'bartender': 1,
          'characters': 1,
          'generic': 1,
          'descriptions': 1,
          'nin': 1,
          'focusing': 1,
          'hired': 1,
          'help': 1,
          'really': 1,
          'missed': 1,
          'boat': 1,
          'nwith': 1,
          'exception': 1,
          'flamboyant': 1,
          'alwayswoozy': 1,
          'rubell': 1,
          'wellmodulated': 1,
          'meaty': 1,
          'stories': 1,
          'told': 1,
          'workers': 1,
          'people': 1,
          'went': 1,
          'party': 1,
          'necessarily': 1,
          'vip': 1,
          'guests': 1,
          'eccentrics': 1,
          'managed': 1,
          'picked': 1,
          'clubs': 1,
          'famously': 1,
          'hardass': 1,
          'doormen': 1,
          'among': 1,
          'things': 1,
          'night': 1,
          'rich': 1,
          'famous': 1,
          'taste': 1,
          'ellen': 1,
          'dows': 1,
          'feisty': 1,
          'dottie': 1,
          'drugcrazed': 1,
          'granny': 1,
          'shes': 1,
          'peripheral': 1,
          'best': 1,
          'aside': 1,
          'expected': 1,
          'overhead': 1,
          'shots': 1,
          'precious': 1,
          'actual': 1,
          '_dancing_': 1,
          'nwhat': 1,
          'filmespecially': 1,
          'pinnacle': 1,
          'movementwithout': 1,
          'dancing': 1,
          'neven': 1,
          'whit': 1,
          'stillmans': 1,
          '_the_last_days_of_disco_': 1,
          'wasnt': 1,
          'concerned': 1,
          'witty': 1,
          'dialogue': 1,
          'group': 1,
          'hiptoonlythemselves': 1,
          'clubhopping': 1,
          'preppies': 1,
          'featured': 1,
          'least': 1,
          'extended': 1,
          'scene': 1,
          'ndancing': 1,
          'thing': 1,
          'glazed': 1,
          '_54_so': 1,
          'entirely': 1,
          'christophers': 1,
          'fault': 1,
          'nfrom': 1,
          'ive': 1,
          'heard': 1,
          'original': 1,
          'vision': 1,
          'something': 1,
          'considerably': 1,
          'dark': 1,
          'daring': 1,
          'starting': 1,
          'conceived': 1,
          'actually': 1,
          'filmed': 1,
          'morally': 1,
          'ambiguous': 1,
          'bisexual': 1,
          'efficient': 1,
          'springboard': 1,
          'cover': 1,
          'pansexual': 1,
          'pleasure': 1,
          'palace': 1,
          'aspect': 1,
          '54s': 1,
          'legend': 1,
          'nbut': 1,
          'somewhere': 1,
          'principal': 1,
          'photography': 1,
          'final': 1,
          'defanged': 1,
          'quite': 1,
          'literally': 1,
          'straightened': 1,
          'consequently': 1,
          'naside': 1,
          'brief': 1,
          'glimpse': 1,
          'erotic': 1,
          'encounters': 1,
          'toward': 1,
          'beginning': 1,
          'shanes': 1,
          'fleeting': 1,
          'dalliance': 1,
          'seductive': 1,
          'socialite': 1,
          'billie': 1,
          'sela': 1,
          'ward': 1,
          'abbreviated': 1,
          'bedhopping': 1,
          'montage': 1,
          'sexual': 1,
          'dimension': 1,
          'ignored': 1,
          'nshane': 1,
          'incarnation': 1,
          'sanitized': 1,
          'point': 1,
          'blandness': 1,
          'idealistic': 1,
          'dogooder': 1,
          'pines': 1,
          'frequent': 1,
          'guest': 1,
          'julie': 1,
          'black': 1,
          'worldly': 1,
          'soap': 1,
          'star': 1,
          'yes': 1,
          'heart': 1,
          'gold': 1,
          'nthis': 1,
          'tackedon': 1,
          'romance': 1,
          'slightly': 1,
          'tedious': 1,
          'either': 1,
          'connection': 1,
          'nthey': 1,
          'fail': 1,
          'counts': 1,
          'nultimately': 1,
          'three': 1,
          'letters': 1,
          'fun': 1,
          'ntoo': 1,
          'boring': 1,
          'action': 1,
          'took': 1,
          'place': 1,
          'nanyhow': 1,
          'whatever': 1,
          'used': 1,
          'effectively': 1,
          'nwhen': 1,
          'finally': 1,
          'gets': 1,
          'big': 1,
          'break': 1,
          'perform': 1,
          'onstage': 1,
          'euphoric': 1,
          'height': 1,
          'however': 1,
          'doesnt': 1,
          'get': 1,
          'chance': 1,
          'reach': 1,
          'level': 1,
          'short': 1,
          'forced': 1,
          'sentimentality': 1,
          'also': 1,
          'mars': 1,
          'films': 1,
          'conclusion': 1,
          'lastminute': 1,
          'nstrangely': 1,
          'upbeat': 1,
          'wistful': 1,
          'resolution': 1,
          'wholly': 1,
          'unconvincing': 1,
          'unsatisfying': 1,
          'nthere': 1,
          'interesting': 1,
          'portrait': 1,
          'theretwo': 1,
          'factbut': 1,
          'ntheyre': 1,
          'cable': 1,
          'tv': 1,
          'couple': 1,
          'documentaries': 1,
          'produced': 1,
          'e': 1,
          'vh1': 1,
          'two': 1,
          'fascinating': 1,
          'looks': 1,
          'sordid': 1,
          'goingson': 1,
          'show': 1,
          'theres': 1,
          'great': 1,
          'movie': 1,
          'nthe': 1,
          'problem': 1,
          'critical': 1,
          'certain': 1,
          'box': 1,
          'office': 1,
          'run': 1,
          'hollywood': 1,
          'course': 1,
          'nneg': 1}),
 Counter({'kevin': 8,
          'nthe': 7,
          'lomax': 7,
          'milton': 7,
          'case': 6,
          'movie': 6,
          'ann': 5,
          'courtroom': 5,
          'lawyer': 4,
          'offered': 4,
          'nhe': 4,
          'wife': 4,
          'dream': 4,
          'nkevin': 4,
          'time': 4,
          'get': 4,
          'devil': 4,
          'gets': 3,
          'new': 3,
          'keanu': 3,
          'reeves': 3,
          'long': 3,
          'firm': 3,
          'fact': 3,
          'mary': 3,
          'man': 3,
          'al': 3,
          'pacino': 3,
          'life': 3,
          'problems': 3,
          'possible': 3,
          'one': 3,
          'really': 3,
          'happen': 3,
          'trying': 3,
          'ni': 3,
          'performance': 3,
          'ending': 3,
          'wisdom': 3,
          'film': 3,
          'could': 3,
          'devils': 3,
          'advocate': 3,
          'hotshot': 2,
          'york': 2,
          'job': 2,
          'jury': 2,
          'work': 2,
          'well': 2,
          'big': 2,
          'charlize': 2,
          'theron': 2,
          'given': 2,
          'concerning': 2,
          'skill': 2,
          'boss': 2,
          'john': 2,
          'law': 2,
          'much': 2,
          'kevins': 2,
          'home': 2,
          'nmary': 2,
          'matters': 2,
          'spend': 2,
          'connie': 2,
          'also': 2,
          'control': 2,
          'judith': 2,
          'character': 2,
          'plan': 2,
          'scenes': 2,
          'would': 2,
          'never': 2,
          'hard': 2,
          'actor': 2,
          'good': 2,
          'interesting': 2,
          'nin': 2,
          'thing': 2,
          'like': 2,
          'characters': 2,
          'didnt': 2,
          'toyed': 2,
          'obviously': 1,
          'guilty': 1,
          'child': 1,
          'molester': 1,
          'acquitted': 1,
          'shortly': 1,
          'victory': 1,
          'celebration': 1,
          'opportunity': 1,
          'show': 1,
          'prowess': 1,
          'city': 1,
          'yet': 1,
          'asked': 1,
          'simply': 1,
          'pick': 1,
          'accepts': 1,
          'selects': 1,
          'nmaking': 1,
          'decision': 1,
          'easy': 1,
          'money': 1,
          'gorgeous': 1,
          'apartment': 1,
          'convinces': 1,
          'make': 1,
          'move': 1,
          'first': 1,
          'test': 1,
          'winless': 1,
          'sacrifices': 1,
          'animals': 1,
          'basement': 1,
          'charge': 1,
          'health': 1,
          'code': 1,
          'violations': 1,
          'shows': 1,
          'earns': 1,
          'acquittal': 1,
          'nhis': 1,
          'partner': 1,
          'quite': 1,
          'impressed': 1,
          'takes': 1,
          'wing': 1,
          'explaining': 1,
          'many': 1,
          'philosophies': 1,
          'women': 1,
          'sex': 1,
          'angles': 1,
          'promise': 1,
          'blissful': 1,
          'wealthy': 1,
          'nkevins': 1,
          'next': 1,
          'chagrin': 1,
          'colleagues': 1,
          'defending': 1,
          'triple': 1,
          'murder': 1,
          'suspect': 1,
          'history': 1,
          'nalthough': 1,
          'career': 1,
          'taking': 1,
          'starting': 1,
          'numerous': 1,
          'nshe': 1,
          'experiencing': 1,
          'severe': 1,
          'depression': 1,
          'hours': 1,
          'horrible': 1,
          'dreams': 1,
          'hallucinations': 1,
          'people': 1,
          'turning': 1,
          'ghouls': 1,
          'faces': 1,
          'becoming': 1,
          'horribly': 1,
          'disfigured': 1,
          'help': 1,
          'dismissing': 1,
          'explains': 1,
          'needs': 1,
          'focus': 1,
          'attention': 1,
          'nnot': 1,
          'helping': 1,
          'ideas': 1,
          'affair': 1,
          'sexy': 1,
          'nielson': 1,
          'working': 1,
          'falls': 1,
          'deeper': 1,
          'madness': 1,
          'spends': 1,
          'away': 1,
          'eventually': 1,
          'looses': 1,
          'institutionalize': 1,
          'disturbing': 1,
          'news': 1,
          'mother': 1,
          'ivey': 1,
          'mystery': 1,
          'identity': 1,
          'father': 1,
          'starts': 1,
          'lose': 1,
          'learns': 1,
          'caused': 1,
          'nthat': 1,
          'mr': 1,
          'truly': 1,
          'evil': 1,
          'may': 1,
          'must': 1,
          'somehow': 1,
          'confront': 1,
          'thwart': 1,
          'whatever': 1,
          'diabolical': 1,
          'store': 1,
          'nbut': 1,
          'defeat': 1,
          'nwhy': 1,
          'movies': 1,
          'absurd': 1,
          'ndo': 1,
          'filmmakers': 1,
          'believe': 1,
          'normal': 1,
          'drama': 1,
          'doesnt': 1,
          'fit': 1,
          'bill': 1,
          'juice': 1,
          'real': 1,
          'wouldnt': 1,
          'bad': 1,
          'werent': 1,
          'pull': 1,
          'give': 1,
          'credit': 1,
          'throughout': 1,
          'saw': 1,
          'play': 1,
          'coming': 1,
          'short': 1,
          'ncharlize': 1,
          'defines': 1,
          'term': 1,
          'overthetop': 1,
          'disappointment': 1,
          'contrast': 1,
          '2': 1,
          'days': 1,
          'valley': 1,
          'kept': 1,
          'asking': 1,
          'heck': 1,
          'mess': 1,
          'nmaybe': 1,
          'felt': 1,
          'playing': 1,
          'tell': 1,
          'fun': 1,
          'save': 1,
          'poor': 1,
          'performances': 1,
          'lackluster': 1,
          'script': 1,
          'surround': 1,
          'nits': 1,
          'pretty': 1,
          'standard': 1,
          'stuff': 1,
          'including': 1,
          'appears': 1,
          'competent': 1,
          'person': 1,
          'planet': 1,
          'anything': 1,
          'right': 1,
          'nplease': 1,
          'read': 1,
          'want': 1,
          'spoiled': 1,
          'something': 1,
          'chest': 1,
          '1986': 1,
          'remember': 1,
          'watching': 1,
          'called': 1,
          'emilio': 1,
          'estevez': 1,
          'demi': 1,
          'moore': 1,
          'worst': 1,
          'nwhat': 1,
          'call': 1,
          'guess': 1,
          'scenario': 1,
          'two': 1,
          'lead': 1,
          'killed': 1,
          'end': 1,
          'wake': 1,
          'apparent': 1,
          'say': 1,
          'gosh': 1,
          'im': 1,
          'glad': 1,
          'considered': 1,
          'inexcusable': 1,
          'way': 1,
          'audience': 1,
          'nwell': 1,
          'happens': 1,
          'although': 1,
          'arguments': 1,
          'made': 1,
          'surrounding': 1,
          'whether': 1,
          'actually': 1,
          'perhaps': 1,
          'went': 1,
          'back': 1,
          'try': 1,
          'different': 1,
          'route': 1,
          'since': 1,
          'failed': 1,
          'point': 1,
          'last': 1,
          '90': 1,
          'know': 1,
          'stretch': 1,
          'nothing': 1,
          'happened': 1,
          'annoyed': 1,
          'nof': 1,
          'course': 1,
          'almost': 1,
          'forgiven': 1,
          'story': 1,
          'precedes': 1,
          'least': 1,
          'nas': 1,
          'recall': 1,
          'decent': 1,
          'n': 1,
          'ndirected': 1,
          'taylor': 1,
          'hackford': 1,
          'nreeves': 1,
          'ntheron': 1,
          'mrs': 1,
          'nivey': 1,
          'eddie': 1,
          'barzoon': 1,
          'jeffrey': 1,
          'jones': 1,
          'christabella': 1,
          'nnielson': 1,
          'nwritten': 1,
          'randy': 1,
          'turgeon': 1,
          'march': 1,
          '18': 1,
          '1998': 1,
          'nneg': 1}),
 Counter({'angels': 9,
          'nthe': 6,
          'matrix': 5,
          'one': 4,
          'even': 4,
          'charlies': 3,
          'movie': 3,
          'tv': 3,
          'ncharlies': 3,
          'film': 3,
          'three': 3,
          'cleavagebusting': 3,
          'njust': 2,
          'action': 2,
          'dumb': 2,
          'liu': 2,
          'mysterious': 2,
          'millionaire': 2,
          'around': 2,
          'computer': 2,
          'great': 2,
          'sam': 2,
          'rockwell': 2,
          'rival': 2,
          'like': 2,
          'many': 2,
          'fight': 2,
          'sequences': 2,
          'strange': 2,
          'revenge': 2,
          'jackie': 2,
          'believable': 2,
          'movies': 2,
          'night': 2,
          'scenes': 2,
          'time': 2,
          'spy': 1,
          'game': 1,
          'nyou': 1,
          'thank': 1,
          'nwhen': 1,
          'banality': 1,
          'pandering': 1,
          'become': 1,
          'okay': 1,
          'steal': 1,
          'hong': 1,
          'kong': 1,
          'kitschy': 1,
          'show': 1,
          'mid1970s': 1,
          'thats': 1,
          'worst': 1,
          'examples': 1,
          'homogeneity': 1,
          'shameless': 1,
          'duplicity': 1,
          'ive': 1,
          'seen': 1,
          'ages': 1,
          'plain': 1,
          'nas': 1,
          'know': 1,
          'hottest': 1,
          'females': 1,
          'planet': 1,
          'drew': 1,
          'barrymore': 1,
          'cameron': 1,
          'diaz': 1,
          'lucy': 1,
          'superagents': 1,
          'working': 1,
          'named': 1,
          'charlie': 1,
          'nthey': 1,
          'drive': 1,
          'fast': 1,
          'cars': 1,
          'look': 1,
          'ohsofabulous': 1,
          'morning': 1,
          'dont': 1,
          'seem': 1,
          'get': 1,
          'scratch': 1,
          'fighting': 1,
          'armed': 1,
          'men': 1,
          'buildings': 1,
          'explode': 1,
          'ten': 1,
          'feet': 1,
          'front': 1,
          'flying': 1,
          'air': 1,
          'slowmotion': 1,
          'nand': 1,
          'entourage': 1,
          'spends': 1,
          '90': 1,
          'minutes': 1,
          'romping': 1,
          'wetsuits': 1,
          'waitress': 1,
          'uniforms': 1,
          'wet': 1,
          'tshirts': 1,
          'scarcely': 1,
          'succeed': 1,
          'resembling': 1,
          'much': 1,
          'group': 1,
          'annoying': 1,
          'drunk': 1,
          'sorority': 1,
          'girls': 1,
          'kind': 1,
          'hit': 1,
          'everybody': 1,
          'party': 1,
          'actual': 1,
          'plot': 1,
          'revolves': 1,
          'ridiculous': 1,
          'story': 1,
          'engineer': 1,
          'gets': 1,
          'kidnapped': 1,
          'company': 1,
          'nof': 1,
          'course': 1,
          'wants': 1,
          'control': 1,
          'new': 1,
          'personal': 1,
          'identification': 1,
          'system': 1,
          'involves': 1,
          'latterday': 1,
          'buzzwords': 1,
          'gps': 1,
          'cellular': 1,
          'tracking': 1,
          'mainframe': 1,
          'amazing': 1,
          'crispin': 1,
          'glover': 1,
          'lends': 1,
          'acting': 1,
          'chops': 1,
          'crazed': 1,
          'henchmen': 1,
          'involved': 1,
          'nasty': 1,
          'things': 1,
          'happen': 1,
          'battling': 1,
          'roundrobin': 1,
          'ripoff': 1,
          'harboring': 1,
          'attraction': 1,
          'slicedoff': 1,
          'locks': 1,
          'hair': 1,
          'coup': 1,
          'de': 1,
          'grace': 1,
          'bill': 1,
          'murray': 1,
          'bosley': 1,
          'serving': 1,
          'manservant': 1,
          'point': 1,
          'pimp': 1,
          'rest': 1,
          'comprises': 1,
          'arc': 1,
          'enough': 1,
          'costume': 1,
          'changes': 1,
          'fill': 1,
          'productions': 1,
          'les': 1,
          'miserables': 1,
          'carboncopy': 1,
          'would': 1,
          'lend': 1,
          'credible': 1,
          'evidence': 1,
          'chan': 1,
          'wachowski': 1,
          'brothers': 1,
          'lawsuit': 1,
          'intellectual': 1,
          'property': 1,
          'theft': 1,
          'transformation': 1,
          'mickey': 1,
          'rourkes': 1,
          'longlost': 1,
          'brother': 1,
          'starts': 1,
          'bang': 1,
          'ends': 1,
          'soggy': 1,
          'burrito': 1,
          'left': 1,
          'overnight': 1,
          'nnothing': 1,
          'difficult': 1,
          'plausible': 1,
          'actions': 1,
          'nit': 1,
          'feels': 1,
          'mission': 1,
          'impossible': 1,
          '2': 1,
          'cleopatra': 1,
          'jones': 1,
          'casino': 1,
          'gold': 1,
          'rolled': 1,
          'ndiaz': 1,
          'knucklehead': 1,
          'nbarrymore': 1,
          'dangerous': 1,
          'mean': 1,
          'tough': 1,
          'katie': 1,
          'holmes': 1,
          'role': 1,
          'nliu': 1,
          'nlucy': 1,
          'looking': 1,
          'good': 1,
          'skintight': 1,
          'black': 1,
          'leather': 1,
          'suit': 1,
          'list': 1,
          'directly': 1,
          'lifted': 1,
          'equally': 1,
          'astonishing': 1,
          'writers': 1,
          'apparently': 1,
          'ran': 1,
          'copier': 1,
          'stealing': 1,
          'armageddon': 1,
          'lethal': 1,
          'weapon': 1,
          'ii': 1,
          'chans': 1,
          'escape': 1,
          'saturday': 1,
          'fever': 1,
          'nerds': 1,
          'payback': 1,
          'darkman': 1,
          'dr': 1,
          'mentioned': 1,
          'tvs': 1,
          'friends': 1,
          'nits': 1,
          'shame': 1,
          'screenwriters': 1,
          'john': 1,
          'august': 1,
          'helm': 1,
          'last': 1,
          'years': 1,
          'favorite': 1,
          'go': 1,
          'nthen': 1,
          'expect': 1,
          'director': 1,
          'known': 1,
          'solely': 1,
          'mcg': 1,
          'nthere': 1,
          'camp': 1,
          'value': 1,
          'interesting': 1,
          'main': 1,
          'characters': 1,
          'invigorating': 1,
          'reason': 1,
          'waste': 1,
          'except': 1,
          'ogle': 1,
          'hot': 1,
          'chicks': 1,
          'enjoy': 1,
          'performances': 1,
          'supporting': 1,
          'players': 1,
          'nnote': 1,
          'hollywood': 1,
          'next': 1,
          'lets': 1,
          'leave': 1,
          'shows': 1,
          'nneg': 1}),
 Counter({'boy': 7,
          'francis': 5,
          'film': 4,
          'butcher': 4,
          'little': 4,
          'one': 4,
          'nthe': 4,
          'always': 3,
          'director': 3,
          'well': 3,
          'could': 3,
          'rather': 3,
          'jordan': 2,
          'work': 2,
          'nhis': 2,
          'latest': 2,
          'owens': 2,
          'learn': 2,
          'mother': 2,
          'nfrancis': 2,
          'picture': 2,
          'nothing': 2,
          'every': 2,
          'scene': 2,
          'away': 2,
          'actually': 2,
          'young': 2,
          'gives': 2,
          'also': 2,
          'character': 2,
          'talks': 2,
          'nhe': 2,
          'story': 2,
          'fan': 1,
          'neil': 1,
          'early': 1,
          '1984s': 1,
          'company': 1,
          'wolves': 1,
          '1992s': 1,
          'crying': 1,
          'game': 1,
          '1994s': 1,
          'interview': 1,
          'vampire': 1,
          'return': 1,
          'roots': 1,
          'ireland': 1,
          'unfortunately': 1,
          'successful': 1,
          'homecoming': 1,
          'ntold': 1,
          'eyes': 1,
          '12yearold': 1,
          'irish': 1,
          'newcomer': 1,
          'eomann': 1,
          'peculiar': 1,
          'follows': 1,
          'decidedly': 1,
          'unstable': 1,
          'life': 1,
          'father': 1,
          'stephen': 1,
          'rea': 1,
          'indifferent': 1,
          'alcoholic': 1,
          'fiona': 1,
          'shaw': 1,
          'mentally': 1,
          'ill': 1,
          'hospitals': 1,
          'delights': 1,
          'terrorizing': 1,
          'friends': 1,
          'forbidden': 1,
          'see': 1,
          'anymore': 1,
          'type': 1,
          'lot': 1,
          'say': 1,
          'mostly': 1,
          'fluctuates': 1,
          'sarcasm': 1,
          'frightening': 1,
          'honesty': 1,
          'quickly': 1,
          'becomes': 1,
          'apparent': 1,
          'may': 1,
          'psychotic': 1,
          'even': 1,
          'capable': 1,
          'brutal': 1,
          'murder': 1,
          'premise': 1,
          'turned': 1,
          'thoughtprovoking': 1,
          'disturbing': 1,
          'motion': 1,
          'somehow': 1,
          'works': 1,
          'almost': 1,
          'distancing': 1,
          'suspect': 1,
          'supposed': 1,
          'sympathize': 1,
          'nthis': 1,
          'definately': 1,
          'fault': 1,
          'however': 1,
          'brilliantly': 1,
          'accurate': 1,
          'performance': 1,
          'able': 1,
          'seem': 1,
          'menacing': 1,
          'fact': 1,
          'dont': 1,
          'get': 1,
          'close': 1,
          'sloppy': 1,
          'screenplay': 1,
          'supporting': 1,
          'characters': 1,
          'help': 1,
          'though': 1,
          'nrea': 1,
          'wasted': 1,
          'practically': 1,
          'scenes': 1,
          'son': 1,
          'anyone': 1,
          'else': 1,
          'matter': 1,
          'usually': 1,
          'seems': 1,
          'sitting': 1,
          'watching': 1,
          'television': 1,
          'throughout': 1,
          'nshaw': 1,
          'bit': 1,
          'since': 1,
          'touching': 1,
          'time': 1,
          'despair': 1,
          'beginning': 1,
          'know': 1,
          'nand': 1,
          'singer': 1,
          'sinead': 1,
          'oconnor': 1,
          'appears': 1,
          'effectively': 1,
          'virgin': 1,
          'mary': 1,
          'occasionally': 1,
          'advice': 1,
          'pacing': 1,
          'nalthough': 1,
          'dynamite': 1,
          'moves': 1,
          'deadeningly': 1,
          'slow': 1,
          'rate': 1,
          'found': 1,
          'mind': 1,
          'wandering': 1,
          'nit': 1,
          'episodic': 1,
          'developments': 1,
          'fly': 1,
          'satisfying': 1,
          'payoffs': 1,
          'nat': 1,
          'point': 1,
          'sent': 1,
          'juvenile': 1,
          'prison': 1,
          'odd': 1,
          'possibly': 1,
          'sexual': 1,
          'relationship': 1,
          'begins': 1,
          'develop': 1,
          'priest': 1,
          'comes': 1,
          'nid': 1,
          'think': 1,
          'brief': 1,
          'diversion': 1,
          'total': 1,
          'misfire': 1,
          'already': 1,
          'proven': 1,
          'strong': 1,
          'lucked': 1,
          'nwhat': 1,
          'courageous': 1,
          'unsettling': 1,
          'study': 1,
          'emotionally': 1,
          'disturbed': 1,
          'manages': 1,
          'ineffective': 1,
          'uninvolivng': 1,
          'bore': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'like': 4,
          'nwith': 3,
          'big': 3,
          'much': 3,
          'nthe': 3,
          'men': 3,
          'fog': 3,
          'action': 3,
          'know': 2,
          'less': 2,
          'films': 2,
          '13th': 2,
          'warrior': 2,
          'ahmed': 2,
          'nafter': 2,
          'forced': 2,
          'nso': 2,
          'start': 2,
          'takes': 2,
          'place': 2,
          'basically': 2,
          'script': 2,
          'see': 2,
          'camera': 2,
          'characters': 2,
          'mctiernan': 2,
          'money': 2,
          'summer': 1,
          'memorable': 1,
          'total': 1,
          '4': 1,
          'decent': 1,
          'surprise': 1,
          'budget': 1,
          'failures': 1,
          'keep': 1,
          'appearing': 1,
          'said': 1,
          'pretty': 1,
          'predict': 1,
          'opinion': 1,
          'based': 1,
          'michael': 1,
          'crichton': 1,
          'eaters': 1,
          'dead': 1,
          'ibn': 1,
          'fahdlan': 1,
          'banished': 1,
          'country': 1,
          'looking': 1,
          'wife': 1,
          'king': 1,
          'tarveling': 1,
          'many': 1,
          'months': 1,
          'comes': 1,
          'across': 1,
          'gang': 1,
          'norsemen': 1,
          'pick': 1,
          '13': 1,
          'protect': 1,
          'town': 1,
          'mythical': 1,
          'monsters': 1,
          'travel': 1,
          'picking': 1,
          'left': 1,
          'without': 1,
          '1': 1,
          'thus': 1,
          'choosen': 1,
          'far': 1,
          'sounds': 1,
          'interesting': 1,
          'right': 1,
          'nnot': 1,
          '15': 1,
          'minutes': 1,
          'run': 1,
          'around': 1,
          'killing': 1,
          'nthat': 1,
          'alone': 1,
          'shows': 1,
          'needed': 1,
          'story': 1,
          'introduced': 1,
          'rest': 1,
          'developing': 1,
          'nobviously': 1,
          'thats': 1,
          'case': 1,
          'neven': 1,
          'going': 1,
          'expecting': 1,
          'packed': 1,
          'adventure': 1,
          'disappointed': 1,
          'nsince': 1,
          'constantly': 1,
          'hard': 1,
          'scene': 1,
          'clearly': 1,
          'due': 1,
          'circumstances': 1,
          'poor': 1,
          'work': 1,
          'ncant': 1,
          'sit': 1,
          'still': 1,
          'nid': 1,
          'actually': 1,
          'watch': 1,
          'focus': 1,
          'failed': 1,
          'deliver': 1,
          'well': 1,
          'moves': 1,
          'point': 1,
          'care': 1,
          'anything': 1,
          'popcorn': 1,
          'youre': 1,
          'eating': 1,
          'corny': 1,
          'dialogue': 1,
          'laugh': 1,
          'odd': 1,
          'reason': 1,
          'goes': 1,
          'nowhere': 1,
          'dull': 1,
          'sequences': 1,
          'predictable': 1,
          'ending': 1,
          'worst': 1,
          'weak': 1,
          'theres': 1,
          'nothing': 1,
          'except': 1,
          'maybe': 1,
          'set': 1,
          'designs': 1,
          'nthats': 1,
          'thing': 1,
          'honestly': 1,
          'caught': 1,
          'interest': 1,
          'nwhen': 1,
          'heard': 1,
          'john': 1,
          'director': 1,
          'wanted': 1,
          'name': 1,
          'kept': 1,
          'project': 1,
          'made': 1,
          'wonder': 1,
          'nwell': 1,
          'ncrichtons': 1,
          'greed': 1,
          'edit': 1,
          'finished': 1,
          'product': 1,
          'led': 1,
          'arguement': 1,
          'nwhats': 1,
          'argue': 1,
          'anyway': 1,
          'couldnt': 1,
          'saved': 1,
          'matter': 1,
          'spent': 1,
          'casted': 1,
          'nseeing': 1,
          'haunting': 1,
          'daddy': 1,
          'making': 1,
          'wouldnt': 1,
          'surprised': 1,
          'become': 1,
          'hit': 1,
          'nplease': 1,
          'favor': 1,
          'save': 1,
          'costs': 1,
          'else': 1,
          'lost': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'bad': 7,
          'supernova': 7,
          'troy': 7,
          'movie': 6,
          'like': 6,
          'nthe': 6,
          'movies': 5,
          'seeing': 5,
          'thats': 5,
          'something': 5,
          'one': 4,
          'films': 4,
          'say': 4,
          'dont': 4,
          'see': 4,
          'every': 4,
          'get': 4,
          'nmaybe': 4,
          'yerzy': 4,
          'computer': 4,
          'minutes': 4,
          'seen': 4,
          'right': 4,
          'credits': 4,
          'might': 3,
          'im': 3,
          'nbut': 3,
          'know': 3,
          'going': 3,
          'want': 3,
          'nso': 3,
          'think': 3,
          'ever': 3,
          'find': 3,
          'medical': 3,
          'crew': 3,
          'spader': 3,
          'kaela': 3,
          'danika': 3,
          'tunney': 3,
          'relationship': 3,
          'make': 3,
          'expect': 3,
          'nthen': 3,
          'starts': 3,
          'nothing': 3,
          'plot': 3,
          'may': 3,
          'rest': 3,
          'characters': 3,
          'end': 3,
          'point': 3,
          'less': 3,
          'review': 2,
          'good': 2,
          'nif': 2,
          'could': 2,
          'whatever': 2,
          'tell': 2,
          'youre': 2,
          'told': 2,
          'wasnt': 2,
          'thought': 2,
          'actors': 2,
          'cut': 2,
          'name': 2,
          'removed': 2,
          'didnt': 2,
          'place': 2,
          'space': 2,
          'captain': 2,
          'robert': 2,
          'forster': 2,
          'second': 2,
          'officer': 2,
          'nick': 2,
          'james': 2,
          'phillips': 2,
          'benj': 2,
          'apparently': 2,
          'love': 2,
          'female': 2,
          'wont': 2,
          'distress': 2,
          'sent': 2,
          'man': 2,
          'peter': 2,
          'facinelli': 2,
          'brought': 2,
          'board': 2,
          'nhe': 2,
          'making': 2,
          'really': 2,
          'stuff': 2,
          'nhave': 2,
          'villain': 2,
          'script': 2,
          'three': 2,
          'lava': 2,
          'lamp': 2,
          'title': 2,
          'anything': 2,
          'nas': 2,
          'isnt': 2,
          'little': 2,
          'sense': 2,
          'sex': 2,
          'unusually': 2,
          'scene': 2,
          '10': 2,
          'nbassett': 2,
          'theyre': 2,
          'character': 2,
          'obvious': 2,
          'much': 2,
          'opening': 2,
          'middle': 2,
          'b': 2,
          'thing': 2,
          'nnot': 2,
          'cast': 2,
          'lot': 2,
          'looking': 2,
          'probably': 2,
          'arrogant': 1,
          'critics': 1,
          'thinks': 1,
          'great': 1,
          'impact': 1,
          'success': 1,
          'failure': 1,
          'certain': 1,
          'look': 1,
          'particularly': 1,
          'service': 1,
          'readers': 1,
          'warning': 1,
          'true': 1,
          'put': 1,
          'banner': 1,
          'top': 1,
          'site': 1,
          'reads': 1,
          'shay': 1,
          'casey': 1,
          'bunkyoure': 1,
          'matter': 1,
          'truth': 1,
          'nasty': 1,
          'masochistic': 1,
          'urge': 1,
          'nyou': 1,
          'feeling': 1,
          'sick': 1,
          'damn': 1,
          'academy': 1,
          'award': 1,
          'contenders': 1,
          'ball': 1,
          'trashing': 1,
          'mercilessly': 1,
          'nsometimes': 1,
          'anyone': 1,
          'goes': 1,
          'pauly': 1,
          'shore': 1,
          'nadmit': 1,
          'sometimes': 1,
          'saw': 1,
          'ntruth': 1,
          'quite': 1,
          'felt': 1,
          'sorry': 1,
          'maybe': 1,
          'decent': 1,
          'studio': 1,
          'hadnt': 1,
          'started': 1,
          'tinkering': 1,
          'directors': 1,
          'walter': 1,
          'hill': 1,
          'final': 1,
          'causing': 1,
          'becoming': 1,
          'softy': 1,
          'nin': 1,
          'case': 1,
          'advance': 1,
          'buzz': 1,
          'would': 1,
          'believe': 1,
          'still': 1,
          'takes': 1,
          'aboard': 1,
          'vessel': 1,
          'nightingale': 1,
          'includes': 1,
          'j': 1,
          'nmarley': 1,
          'new': 1,
          'vanzant': 1,
          'head': 1,
          'evers': 1,
          'angela': 1,
          'bassett': 1,
          'technicians': 1,
          'penalosa': 1,
          'lou': 1,
          'diamond': 1,
          'lund': 1,
          'robin': 1,
          'technician': 1,
          'sotomejor': 1,
          'wilson': 1,
          'cruz': 1,
          'nthere': 1,
          'attempts': 1,
          'characterization': 1,
          'means': 1,
          'shady': 1,
          'past': 1,
          'involving': 1,
          'drug': 1,
          'addiction': 1,
          'puts': 1,
          'edge': 1,
          'requires': 1,
          'kissyfaces': 1,
          'five': 1,
          'gay': 1,
          'ndont': 1,
          'explanation': 1,
          'nanyway': 1,
          'gets': 1,
          'call': 1,
          'location': 1,
          'deep': 1,
          'failed': 1,
          'mining': 1,
          'operation': 1,
          'nduring': 1,
          'dimension': 1,
          'jump': 1,
          'called': 1,
          'hold': 1,
          'killed': 1,
          'signal': 1,
          'calls': 1,
          'larson': 1,
          'supposed': 1,
          'son': 1,
          'bunch': 1,
          'predictable': 1,
          'happening': 1,
          'alien': 1,
          'event': 1,
          'horizon': 1,
          'lame': 1,
          'ngood': 1,
          'youve': 1,
          'npostproduction': 1,
          'cuts': 1,
          'original': 1,
          'screenplay': 1,
          'unpredictable': 1,
          'either': 1,
          'nafter': 1,
          'ones': 1,
          'turn': 1,
          'bigger': 1,
          'problem': 1,
          'stick': 1,
          'simple': 1,
          'afforded': 1,
          'nnumerous': 1,
          'rewrites': 1,
          'credited': 1,
          'people': 1,
          'gross': 1,
          'underestimate': 1,
          'crammed': 1,
          'lean': 1,
          '90minute': 1,
          'tons': 1,
          'extraneous': 1,
          'threads': 1,
          'remain': 1,
          'underdeveloped': 1,
          'nwas': 1,
          'limping': 1,
          'robot': 1,
          'shaped': 1,
          'fighter': 1,
          'pilot': 1,
          'ndid': 1,
          'ships': 1,
          'learn': 1,
          'humanity': 1,
          'nwhat': 1,
          'glowing': 1,
          'artifact': 1,
          'nand': 1,
          'signify': 1,
          'far': 1,
          'refers': 1,
          'small': 1,
          'detail': 1,
          'developed': 1,
          'unnecessary': 1,
          'story': 1,
          'elements': 1,
          'ncharacter': 1,
          'relationships': 1,
          'also': 1,
          'nfor': 1,
          'reason': 1,
          'person': 1,
          'keeps': 1,
          'nwe': 1,
          'early': 1,
          'within': 1,
          'first': 1,
          'spaders': 1,
          'start': 1,
          'hating': 1,
          'nfifteen': 1,
          'bottle': 1,
          'pear': 1,
          'brandy': 1,
          'later': 1,
          'engaging': 1,
          'hankypanky': 1,
          'nwhen': 1,
          'creepy': 1,
          'stranger': 1,
          'shows': 1,
          'ship': 1,
          'course': 1,
          'members': 1,
          'fall': 1,
          'nevery': 1,
          'single': 1,
          'shift': 1,
          'interaction': 1,
          'happens': 1,
          'extremely': 1,
          'suddenly': 1,
          'many': 1,
          'clues': 1,
          'prominent': 1,
          'example': 1,
          'however': 1,
          'fact': 1,
          'nfurthermore': 1,
          'looks': 1,
          'took': 1,
          'originally': 1,
          'intended': 1,
          'spliced': 1,
          'real': 1,
          'mentioned': 1,
          'twice': 1,
          'nright': 1,
          'shock': 1,
          'lest': 1,
          'decide': 1,
          'walk': 1,
          'upon': 1,
          'discovery': 1,
          'notice': 1,
          'seems': 1,
          'dropped': 1,
          'littletono': 1,
          'introduction': 1,
          'situations': 1,
          'feels': 1,
          'skipped': 1,
          'changes': 1,
          'explain': 1,
          'things': 1,
          'went': 1,
          'thoroughly': 1,
          'enamored': 1,
          'ready': 1,
          'baby': 1,
          'npoint': 1,
          'shagging': 1,
          'obsessed': 1,
          'ndoesnt': 1,
          'nsince': 1,
          'understand': 1,
          'motivations': 1,
          'care': 1,
          'abruptly': 1,
          'murdering': 1,
          'onebyone': 1,
          'knocking': 1,
          'whit': 1,
          'nits': 1,
          'shame': 1,
          'contains': 1,
          'talented': 1,
          'nthey': 1,
          'line': 1,
          'monotone': 1,
          'voice': 1,
          'blank': 1,
          'expressions': 1,
          'faces': 1,
          'nsexual': 1,
          'tension': 1,
          'nmore': 1,
          'constipation': 1,
          'embarrassed': 1,
          'utter': 1,
          'howlers': 1,
          'made': 1,
          'someone': 1,
          'powerful': 1,
          'god': 1,
          'whole': 1,
          'nice': 1,
          'mind': 1,
          'climax': 1,
          'taking': 1,
          'transport': 1,
          'pod': 1,
          'biggest': 1,
          'foreheadslapper': 1,
          'inhabits': 1,
          'history': 1,
          'suspected': 1,
          'awfully': 1,
          'onenote': 1,
          'hes': 1,
          'given': 1,
          'notes': 1,
          'work': 1,
          'even': 1,
          'ntunney': 1,
          'stands': 1,
          'around': 1,
          'cute': 1,
          'scared': 1,
          'nphillips': 1,
          'broods': 1,
          'ncruz': 1,
          'flirts': 1,
          'die': 1,
          'star': 1,
          'blows': 1,
          'paying': 1,
          'attention': 1,
          'n': 1,
          'pretty': 1,
          'awful': 1,
          'cutting': 1,
          'slack': 1,
          'merely': 1,
          'expected': 1,
          'got': 1,
          'nthats': 1,
          'reasons': 1,
          'youll': 1,
          'hate': 1,
          'neven': 1,
          'special': 1,
          'effects': 1,
          'fairly': 1,
          'unimpressive': 1,
          'suffice': 1,
          'save': 1,
          'nhonestly': 1,
          'though': 1,
          'dozen': 1,
          'writers': 1,
          'director': 1,
          'replaced': 1,
          'pseudonym': 1,
          'nit': 1,
          'usually': 1,
          'results': 1,
          'nneg': 1}),
 Counter({'show': 5,
          'n': 4,
          'one': 3,
          'like': 3,
          'worst': 3,
          'ni': 2,
          'would': 2,
          'give': 2,
          'guts': 2,
          'movie': 2,
          'quaid': 2,
          'nthe': 2,
          'nthey': 2,
          'great': 2,
          'door': 2,
          'films': 2,
          'year': 2,
          'timing': 1,
          'reasons': 1,
          'baby': 1,
          'sitters': 1,
          'recently': 1,
          'went': 1,
          'multiplex': 1,
          'saw': 1,
          'undercover': 1,
          'blues': 1,
          'half': 1,
          'star': 1,
          'nanyone': 1,
          'bad': 1,
          'later': 1,
          'read': 1,
          'ny': 1,
          'times': 1,
          'review': 1,
          'said': 1,
          'kathleen': 1,
          'turner': 1,
          'dennis': 1,
          'gotten': 1,
          'plump': 1,
          'looked': 1,
          'mumps': 1,
          'script': 1,
          'part': 1,
          'characters': 1,
          'talked': 1,
          'funny': 1,
          'accents': 1,
          'attempt': 1,
          'make': 1,
          'laugh': 1,
          'lots': 1,
          'sight': 1,
          'gags': 1,
          'two': 1,
          'people': 1,
          'trying': 1,
          'go': 1,
          'together': 1,
          'therefore': 1,
          'bumping': 1,
          'shoulders': 1,
          'nturner': 1,
          'kept': 1,
          'smiling': 1,
          'idiots': 1,
          'game': 1,
          'good': 1,
          'news': 1,
          'smart': 1,
          'enough': 1,
          'vote': 1,
          'feet': 1,
          'left': 1,
          'nbuy': 1,
          'tickets': 1,
          'enemies': 1,
          'ntell': 1,
          'smile': 1,
          'lot': 1,
          'top': 1,
          'na': 1,
          'must': 1,
          'see': 1,
          'film': 1,
          'excellent': 1,
          'nlook': 1,
          'average': 1,
          'nkind': 1,
          'enjoyable': 1,
          'poor': 1,
          'ndont': 1,
          'waste': 1,
          'money': 1,
          'n0': 1,
          'ntotally': 1,
          'unbearable': 1,
          'nreview': 1,
          'written': 1,
          'september': 1,
          '29': 1,
          '1993': 1,
          'nopinions': 1,
          'expressed': 1,
          'mine': 1,
          'meant': 1,
          'reflect': 1,
          'employers': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'know': 5,
          'sequel': 4,
          'nthe': 4,
          'still': 4,
          'original': 4,
          'years': 3,
          'reason': 2,
          'many': 2,
          'cases': 2,
          'thats': 2,
          '2': 2,
          'last': 2,
          'summer': 2,
          'mightve': 2,
          'njulie': 2,
          'hewitt': 2,
          'ray': 2,
          'prinze': 2,
          'back': 2,
          'rather': 2,
          'wide': 2,
          'open': 2,
          'julie': 2,
          'karla': 2,
          'brandy': 2,
          'phifer': 2,
          'radio': 2,
          'hook': 2,
          'material': 2,
          'plot': 2,
          'man': 2,
          'nand': 2,
          'almost': 2,
          'show': 2,
          'obvious': 1,
          'producing': 1,
          'immensely': 1,
          'popular': 1,
          'acquire': 1,
          'continued': 1,
          'profits': 1,
          'rationale': 1,
          'sound': 1,
          'recent': 1,
          'shoddy': 1,
          'product': 1,
          'exposed': 1,
          'cashmilking': 1,
          'vehicle': 1,
          'really': 1,
          'nlast': 1,
          'speed': 1,
          'scream': 1,
          'well': 1,
          'species': 1,
          'ii': 1,
          'products': 1,
          'decisively': 1,
          'less': 1,
          'satisfactory': 1,
          'nin': 1,
          'even': 1,
          'discredit': 1,
          'predecessor': 1,
          'latest': 1,
          'neoslasher': 1,
          'flick': 1,
          'nwhatever': 1,
          'uniqueness': 1,
          'seems': 1,
          'trite': 1,
          'overplayed': 1,
          'paired': 1,
          'abominable': 1,
          'thriller': 1,
          'james': 1,
          'jennifer': 1,
          'love': 1,
          'bronson': 1,
          'freddie': 1,
          'jr': 1,
          'star': 1,
          'reprising': 1,
          'roles': 1,
          'typical': 1,
          'fashion': 1,
          'experience': 1,
          'predictable': 1,
          'fallingout': 1,
          'beginning': 1,
          'leaving': 1,
          'door': 1,
          'newcomer': 1,
          'benson': 1,
          'matthew': 1,
          'settle': 1,
          'nwill': 1,
          'hit': 1,
          'along': 1,
          'friends': 1,
          'norwood': 1,
          'tyrell': 1,
          'mekhi': 1,
          'foursome': 1,
          'heads': 1,
          'stationgiveaway': 1,
          'vacation': 1,
          'tropics': 1,
          'nunfortunately': 1,
          'things': 1,
          'arent': 1,
          'peachy': 1,
          'arrive': 1,
          'regularity': 1,
          'could': 1,
          'set': 1,
          'watch': 1,
          'infamous': 1,
          'fisherman': 1,
          'muse': 1,
          'watson': 1,
          'nits': 1,
          'another': 1,
          'bloody': 1,
          'showdown': 1,
          'complete': 1,
          'cliffhanger': 1,
          'ending': 1,
          'ntheres': 1,
          'much': 1,
          'market': 1,
          'saturated': 1,
          'genx': 1,
          'thrillers': 1,
          'like': 1,
          'one': 1,
          'unlikely': 1,
          'get': 1,
          'recognition': 1,
          'bad': 1,
          'nfor': 1,
          'diehard': 1,
          'fans': 1,
          'genre': 1,
          'required': 1,
          'viewing': 1,
          'bottom': 1,
          'line': 1,
          'recycled': 1,
          'aura': 1,
          'thrillerism': 1,
          'surrounding': 1,
          'isnt': 1,
          'heightened': 1,
          'skillful': 1,
          'scripting': 1,
          'camera': 1,
          'work': 1,
          'tense': 1,
          'stringbased': 1,
          'score': 1,
          'manipulative': 1,
          'editing': 1,
          'ends': 1,
          'becoming': 1,
          'belittled': 1,
          'time': 1,
          'around': 1,
          'script': 1,
          'gives': 1,
          'lines': 1,
          'dialogue': 1,
          'goes': 1,
          'scary': 1,
          'figure': 1,
          'nutcase': 1,
          'short': 1,
          'painful': 1,
          'moments': 1,
          'nmuch': 1,
          'mystery': 1,
          'dropped': 1,
          'sake': 1,
          'getting': 1,
          'point': 1,
          'whole': 1,
          'exists': 1,
          'must': 1,
          'guess': 1,
          'capital': 1,
          'brazil': 1,
          'order': 1,
          'win': 1,
          'trip': 1,
          'station': 1,
          'dead': 1,
          'giveaway': 1,
          'lessening': 1,
          'suspense': 1,
          'creating': 1,
          'hurryupandwait': 1,
          'timing': 1,
          'problem': 1,
          'whereas': 1,
          'killers': 1,
          'identity': 1,
          'question': 1,
          'first': 1,
          'given': 1,
          'changes': 1,
          'dynamic': 1,
          'drastically': 1,
          'nthree': 1,
          'four': 1,
          'teens': 1,
          'run': 1,
          'automatically': 1,
          'rain': 1,
          'slicker': 1,
          'nonchalantly': 1,
          'refer': 1,
          'killer': 1,
          'ntheyre': 1,
          'used': 1,
          'performances': 1,
          'give': 1,
          'decent': 1,
          'end': 1,
          'left': 1,
          'third': 1,
          'likely': 1,
          'brand': 1,
          'new': 1,
          'supporting': 1,
          'cast': 1,
          'ngod': 1,
          'help': 1,
          'us': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'mrs': 6,
          'williamson': 6,
          'tingle': 5,
          'kevin': 3,
          'way': 3,
          'films': 3,
          'students': 3,
          'ni': 3,
          'even': 3,
          'teacher': 3,
          'poor': 3,
          'one': 3,
          'best': 3,
          'could': 3,
          'get': 3,
          'williamsons': 2,
          'work': 2,
          'finds': 2,
          'old': 2,
          'ideas': 2,
          'teaching': 2,
          'end': 2,
          'including': 2,
          'nbut': 2,
          'laughs': 2,
          'nand': 2,
          'scream': 2,
          'enjoyed': 2,
          'reason': 2,
          'big': 2,
          'black': 2,
          'comedy': 2,
          'may': 2,
          'script': 2,
          'name': 2,
          'character': 2,
          'project': 2,
          'history': 2,
          'worst': 2,
          'principal': 2,
          'mckean': 2,
          'goes': 2,
          'like': 2,
          'nin': 2,
          'substitute': 2,
          'holmes': 2,
          'leigh': 2,
          'tingles': 2,
          'anns': 2,
          'coughlan': 2,
          'three': 2,
          'morning': 2,
          'plan': 2,
          'everything': 2,
          'entirely': 2,
          'tambor': 2,
          'little': 2,
          'nthere': 2,
          'lifeless': 2,
          'im': 1,
          'dedicated': 1,
          'fan': 1,
          'writer': 1,
          'nhe': 1,
          'always': 1,
          'clever': 1,
          'spice': 1,
          'material': 1,
          'witty': 1,
          'dialogue': 1,
          'fresh': 1,
          'stem': 1,
          'inventive': 1,
          'brain': 1,
          'nwith': 1,
          'directorial': 1,
          'debut': 1,
          'reached': 1,
          'rope': 1,
          'nwhat': 1,
          'used': 1,
          'intelligent': 1,
          'hopelessly': 1,
          'stale': 1,
          'components': 1,
          'encouraging': 1,
          'premise': 1,
          'high': 1,
          'school': 1,
          'relate': 1,
          'thrills': 1,
          'nboth': 1,
          'supposedly': 1,
          'absent': 1,
          'draggy': 1,
          'exercise': 1,
          'elaborate': 1,
          'revenge': 1,
          'shame': 1,
          'loved': 1,
          'heck': 1,
          'scifi': 1,
          'goofiness': 1,
          'faculty': 1,
          'nkevin': 1,
          'horror': 1,
          'draw': 1,
          'box': 1,
          'office': 1,
          'nteaching': 1,
          'leave': 1,
          'gaping': 1,
          'void': 1,
          'optimistic': 1,
          'followers': 1,
          'put': 1,
          'reign': 1,
          'perhaps': 1,
          'encourage': 1,
          'spend': 1,
          'time': 1,
          'perfecting': 1,
          'worry': 1,
          'directing': 1,
          'duties': 1,
          'still': 1,
          'faith': 1,
          'fear': 1,
          'soon': 1,
          'forgotten': 1,
          'echo': 1,
          'past': 1,
          'title': 1,
          'pet': 1,
          'vicious': 1,
          'uncaring': 1,
          'played': 1,
          'deliciously': 1,
          'overthetop': 1,
          'british': 1,
          'actress': 1,
          'helen': 1,
          'mirren': 1,
          'nmrs': 1,
          'basically': 1,
          'every': 1,
          'nightmare': 1,
          'heartless': 1,
          'human': 1,
          'bent': 1,
          'distributing': 1,
          'marks': 1,
          'hardworking': 1,
          'pupils': 1,
          'michael': 1,
          'horrified': 1,
          'unanimously': 1,
          'despised': 1,
          'among': 1,
          'fellow': 1,
          'staff': 1,
          'members': 1,
          'fact': 1,
          'everyone': 1,
          'hallway': 1,
          'quickly': 1,
          'steers': 1,
          'nmirrens': 1,
          'performance': 1,
          'delights': 1,
          'distressingly': 1,
          'hollow': 1,
          'flat': 1,
          'soft': 1,
          'drink': 1,
          'words': 1,
          'plot': 1,
          'problem': 1,
          'nmaterial': 1,
          'enjoyable': 1,
          'rendered': 1,
          'totally': 1,
          'ridiculous': 1,
          'handling': 1,
          'part': 1,
          'director': 1,
          'likable': 1,
          'katie': 1,
          'plays': 1,
          'ann': 1,
          'overachiever': 1,
          'hoping': 1,
          'college': 1,
          'scholarship': 1,
          'typical': 1,
          'says': 1,
          'worked': 1,
          'countless': 1,
          'hours': 1,
          'laughable': 1,
          'nlater': 1,
          'studying': 1,
          'gymnasium': 1,
          'classmate': 1,
          'barry': 1,
          'watson': 1,
          'offers': 1,
          'photocopied': 1,
          'duplicate': 1,
          'final': 1,
          'exam': 1,
          'nleigh': 1,
          'friend': 1,
          'marisa': 1,
          'encourages': 1,
          'use': 1,
          'nalas': 1,
          'hag': 1,
          'scheming': 1,
          'snatches': 1,
          'test': 1,
          'prepares': 1,
          'talk': 1,
          'nhow': 1,
          'convenient': 1,
          'head': 1,
          'house': 1,
          'attempting': 1,
          'set': 1,
          'facts': 1,
          'straight': 1,
          'clear': 1,
          'nthings': 1,
          'hand': 1,
          'gets': 1,
          'knocked': 1,
          'unconscious': 1,
          'tussle': 1,
          'tie': 1,
          'bed': 1,
          'try': 1,
          'reasoning': 1,
          'nof': 1,
          'course': 1,
          'nbesides': 1,
          'pointless': 1,
          'subplots': 1,
          'involving': 1,
          'football': 1,
          'coach': 1,
          'jeffrey': 1,
          'horribly': 1,
          'wasted': 1,
          'actual': 1,
          'progress': 1,
          'urgency': 1,
          'situation': 1,
          'tension': 1,
          'involved': 1,
          'humor': 1,
          'completely': 1,
          'inconsistent': 1,
          'nafter': 1,
          'many': 1,
          'jokes': 1,
          'theater': 1,
          'silent': 1,
          'heard': 1,
          'fly': 1,
          'sneeze': 1,
          'nyou': 1,
          'continue': 1,
          'await': 1,
          'momentum': 1,
          'story': 1,
          'something': 1,
          'possibly': 1,
          'revive': 1,
          'slow': 1,
          'pace': 1,
          'na': 1,
          'moment': 1,
          'never': 1,
          'arises': 1,
          'nwilliamson': 1,
          'also': 1,
          'handsome': 1,
          'job': 1,
          'wasting': 1,
          'key': 1,
          'supporting': 1,
          'players': 1,
          'talented': 1,
          'larry': 1,
          'sanders': 1,
          'vet': 1,
          'beautiful': 1,
          'vivica': 1,
          'fox': 1,
          'scene': 1,
          'caring': 1,
          'guidance': 1,
          'counselor': 1,
          'disposes': 1,
          'non': 1,
          'plus': 1,
          'side': 1,
          'admirable': 1,
          'latter': 1,
          'giving': 1,
          'frighteningly': 1,
          'believable': 1,
          'exorcism': 1,
          'impression': 1,
          'molly': 1,
          'ringwald': 1,
          'amusing': 1,
          'cameo': 1,
          'appearance': 1,
          'nwhile': 1,
          'pretty': 1,
          'remains': 1,
          'watchable': 1,
          'promising': 1,
          'pop': 1,
          'anything': 1,
          'remotely': 1,
          'interesting': 1,
          'squandered': 1,
          'inane': 1,
          'nmirren': 1,
          'easily': 1,
          'keep': 1,
          'watching': 1,
          'nshe': 1,
          'convincingly': 1,
          'evil': 1,
          'fun': 1,
          'watch': 1,
          'gifted': 1,
          'delivery': 1,
          'cant': 1,
          'save': 1,
          'individual': 1,
          'scenes': 1,
          'flounder': 1,
          'boredom': 1,
          'nif': 1,
          'word': 1,
          'movie': 1,
          'surrounding': 1,
          'would': 1,
          'disappointing': 1,
          'nbasically': 1,
          'enemy': 1,
          'nhis': 1,
          'uneventful': 1,
          'direction': 1,
          'prevents': 1,
          'aspects': 1,
          'screenplay': 1,
          'appreciated': 1,
          'writing': 1,
          'especially': 1,
          'good': 1,
          'nwe': 1,
          'see': 1,
          'rookie': 1,
          'screenwriter': 1,
          'ehren': 1,
          'kruger': 1,
          'writes': 1,
          'third': 1,
          'installment': 1,
          'franchise': 1,
          'christmas': 1,
          'whether': 1,
          'real': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'film': 7,
          'story': 5,
          'cant': 4,
          'past': 4,
          'father': 4,
          'one': 4,
          'forget': 3,
          'fraser': 3,
          'away': 3,
          'parents': 3,
          'soon': 3,
          'becomes': 3,
          'simcha': 3,
          'lost': 3,
          'starts': 3,
          'chajas': 3,
          'showing': 3,
          'point': 2,
          'krabb': 2,
          'jews': 2,
          'bitter': 2,
          'jewish': 2,
          'roots': 2,
          'student': 2,
          'mother': 2,
          'nher': 2,
          'home': 2,
          'filled': 2,
          'loving': 2,
          'family': 2,
          'old': 2,
          'job': 2,
          'apartment': 2,
          'nanny': 2,
          'man': 2,
          'mr': 2,
          'strict': 2,
          'way': 2,
          'kalman': 2,
          'rossellini': 2,
          'kind': 2,
          'stern': 2,
          'keeps': 2,
          'make': 2,
          'things': 2,
          'done': 2,
          'script': 2,
          'nit': 2,
          'trying': 2,
          'role': 2,
          'seemed': 2,
          'kept': 2,
          'delivering': 2,
          'characters': 2,
          'going': 2,
          'felt': 2,
          'could': 2,
          'mistaken': 2,
          'performance': 2,
          'sufferings': 2,
          'quack': 2,
          'movie': 2,
          'means': 1,
          'well': 1,
          'pushy': 1,
          'promoting': 1,
          'belabored': 1,
          'sentimental': 1,
          'compelling': 1,
          'drama': 1,
          'nits': 1,
          'jeroen': 1,
          'melodrama': 1,
          'community': 1,
          'antwerp': 1,
          '1972': 1,
          'heroine': 1,
          'attractive': 1,
          'carefree': 1,
          'nonreligious': 1,
          '20yearold': 1,
          'chaja': 1,
          'wants': 1,
          'getting': 1,
          'involved': 1,
          'demonstrations': 1,
          'screwing': 1,
          'rebel': 1,
          'leader': 1,
          'living': 1,
          'gentile': 1,
          'friends': 1,
          'nagging': 1,
          'gebrecht': 1,
          'selfabsorbed': 1,
          'eccentric': 1,
          'schell': 1,
          'survivors': 1,
          'holocaust': 1,
          'concentration': 1,
          'camps': 1,
          'life': 1,
          'angst': 1,
          'denial': 1,
          'always': 1,
          'busying': 1,
          'cooking': 1,
          'soup': 1,
          'baking': 1,
          'cakes': 1,
          'complaining': 1,
          'everything': 1,
          'openly': 1,
          'recently': 1,
          'absorbed': 1,
          'searching': 1,
          'two': 1,
          'suitcases': 1,
          'mementos': 1,
          'album': 1,
          'silverware': 1,
          'violin': 1,
          'nhe': 1,
          'buried': 1,
          'garden': 1,
          'war': 1,
          'fleeing': 1,
          'nazis': 1,
          'locate': 1,
          'due': 1,
          'changes': 1,
          'city': 1,
          'nout': 1,
          'frustration': 1,
          'quitting': 1,
          'dishwasher': 1,
          'facing': 1,
          'eviction': 1,
          'reluctantly': 1,
          'accepts': 1,
          'hasidic': 1,
          'couple': 1,
          'building': 1,
          'apfelschnitt': 1,
          'topol': 1,
          'tells': 1,
          'hasidics': 1,
          'ultraorthodox': 1,
          'dont': 1,
          'go': 1,
          'cinema': 1,
          'watch': 1,
          'tv': 1,
          'adhere': 1,
          'dress': 1,
          'codes': 1,
          'strictly': 1,
          'observe': 1,
          'religious': 1,
          'laws': 1,
          'nchaja': 1,
          'first': 1,
          'put': 1,
          'expect': 1,
          'follow': 1,
          'rules': 1,
          'finds': 1,
          'wife': 1,
          'mrs': 1,
          'attached': 1,
          '5': 1,
          'children': 1,
          '4yearold': 1,
          'named': 1,
          'monty': 1,
          'doesnt': 1,
          'talk': 1,
          'friendly': 1,
          'considers': 1,
          'whore': 1,
          'dresses': 1,
          'nto': 1,
          'hammer': 1,
          'antisemitism': 1,
          'hasnt': 1,
          'gone': 1,
          'theres': 1,
          'barrage': 1,
          'overdone': 1,
          'uninvolving': 1,
          'scenes': 1,
          'sneering': 1,
          'concierge': 1,
          'bradley': 1,
          'making': 1,
          'nasty': 1,
          'remarks': 1,
          'tries': 1,
          'inconvenient': 1,
          'preventing': 1,
          'using': 1,
          'elevator': 1,
          'hamfisted': 1,
          'adapted': 1,
          'carl': 1,
          'friedmans': 1,
          'book': 1,
          'shovel': 1,
          'loom': 1,
          'goes': 1,
          'false': 1,
          'note': 1,
          'another': 1,
          'gets': 1,
          'goo': 1,
          'sentimentality': 1,
          'telling': 1,
          'shes': 1,
          'jewess': 1,
          'find': 1,
          'identity': 1,
          'loves': 1,
          'mute': 1,
          'child': 1,
          'stuck': 1,
          'insulated': 1,
          'environment': 1,
          'makes': 1,
          'lingering': 1,
          'effects': 1,
          'forgotten': 1,
          'effort': 1,
          'heavyhanded': 1,
          'many': 1,
          'obvious': 1,
          'messages': 1,
          'ponderously': 1,
          'stock': 1,
          'supporting': 1,
          'cast': 1,
          'consists': 1,
          'wooden': 1,
          'give': 1,
          'roles': 1,
          'cartoonish': 1,
          'flavoring': 1,
          'given': 1,
          'human': 1,
          'shades': 1,
          'janitor': 1,
          'villain': 1,
          'particularly': 1,
          'annoying': 1,
          'onedimensional': 1,
          'falsely': 1,
          'acted': 1,
          'ones': 1,
          'fought': 1,
          'showed': 1,
          'feelings': 1,
          'whose': 1,
          'effervescent': 1,
          'face': 1,
          'expressive': 1,
          'times': 1,
          'joys': 1,
          'admirably': 1,
          'think': 1,
          'gave': 1,
          'warm': 1,
          'woman': 1,
          'suffering': 1,
          'silence': 1,
          'strong': 1,
          'accepting': 1,
          'faith': 1,
          'ntopols': 1,
          'reassuring': 1,
          'wise': 1,
          'says': 1,
          'right': 1,
          'acts': 1,
          'true': 1,
          'voice': 1,
          'filmmaker': 1,
          'explaining': 1,
          'common': 1,
          'sense': 1,
          'brazenly': 1,
          'uses': 1,
          'little': 1,
          'get': 1,
          'across': 1,
          'agenda': 1,
          'pointing': 1,
          'patriarchal': 1,
          'world': 1,
          'cruel': 1,
          'love': 1,
          'care': 1,
          'hes': 1,
          'taken': 1,
          'duck': 1,
          'pond': 1,
          'jabbering': 1,
          'beginning': 1,
          'saying': 1,
          'ask': 1,
          'four': 1,
          'questions': 1,
          'passover': 1,
          'seder': 1,
          'nbut': 1,
          'boy': 1,
          'terrified': 1,
          'wets': 1,
          'pants': 1,
          'presence': 1,
          'refuses': 1,
          'speak': 1,
          'dad': 1,
          'eventually': 1,
          'victim': 1,
          'tragic': 1,
          'accident': 1,
          'thereby': 1,
          'exploits': 1,
          'boys': 1,
          'tiresome': 1,
          'sincerely': 1,
          'ni': 1,
          'didnt': 1,
          'see': 1,
          'attended': 1,
          'lecture': 1,
          'whole': 1,
          '100': 1,
          'minutes': 1,
          'serious': 1,
          'unappetizing': 1,
          'hoped': 1,
          'would': 1,
          'somehow': 1,
          'end': 1,
          'habit': 1,
          'rehashing': 1,
          'viewpoint': 1,
          'unnecessarilythe': 1,
          'message': 1,
          'sending': 1,
          'already': 1,
          'received': 1,
          'nin': 1,
          'last': 1,
          'shot': 1,
          'daughter': 1,
          'hopelessly': 1,
          'digging': 1,
          'luggage': 1,
          'impression': 1,
          'learned': 1,
          'anything': 1,
          'nthat': 1,
          'seems': 1,
          'strange': 1,
          'since': 1,
          'thought': 1,
          'supposed': 1,
          'nunless': 1,
          'films': 1,
          'real': 1,
          'aim': 1,
          'us': 1,
          'cry': 1,
          'nneg': 1}),
 Counter({'nbut': 8,
          'de': 5,
          'bont': 5,
          'house': 5,
          'nthe': 5,
          'film': 4,
          'end': 4,
          'good': 4,
          'bad': 3,
          'ni': 3,
          'thought': 3,
          'liam': 3,
          'neeson': 3,
          'cathrine': 3,
          'zeta': 3,
          'jones': 3,
          'jan': 3,
          'nand': 3,
          'nit': 3,
          'haunting': 3,
          'n': 3,
          'special': 3,
          'say': 3,
          'things': 3,
          'actually': 3,
          'tagline': 2,
          'born': 2,
          'didnt': 2,
          'great': 2,
          'actors': 2,
          'basically': 2,
          'story': 2,
          'hill': 2,
          'doctor': 2,
          'experiment': 2,
          'emotional': 2,
          'forth': 2,
          'na': 2,
          'sinister': 2,
          'take': 2,
          'screen': 2,
          'second': 2,
          'nis': 2,
          'nits': 2,
          'book': 2,
          'scary': 2,
          'make': 2,
          'style': 2,
          'material': 2,
          'effects': 2,
          'impressive': 2,
          'every': 2,
          'absolutely': 2,
          'shows': 2,
          'climax': 2,
          'hichock': 2,
          'see': 2,
          'one': 2,
          'might': 2,
          'stupid': 2,
          'shining': 2,
          'houses': 1,
          'nso': 1,
          'expect': 1,
          'much': 1,
          'preserved': 1,
          'little': 1,
          'spark': 1,
          'ope': 1,
          'entered': 1,
          'theatre': 1,
          'mabe': 1,
          'fun': 1,
          'fact': 1,
          'beginning': 1,
          'rather': 1,
          'intriguing': 1,
          'nthese': 1,
          'helpless': 1,
          'muddled': 1,
          'mess': 1,
          'defies': 1,
          'rationality': 1,
          'nhere': 1,
          'monstrously': 1,
          'overdecorated': 1,
          'mansion': 1,
          'known': 1,
          'visitors': 1,
          'tricked': 1,
          'unknown': 1,
          'guinea': 1,
          'pigs': 1,
          'fright': 1,
          'guise': 1,
          'insomnia': 1,
          'investigation': 1,
          'namong': 1,
          'sophisticated': 1,
          'bisexual': 1,
          'cynical': 1,
          'dope': 1,
          'owen': 1,
          'wilson': 1,
          'gentle': 1,
          'lady': 1,
          'lily': 1,
          'taylor': 1,
          'nactually': 1,
          'researching': 1,
          'primordial': 1,
          'fear': 1,
          'reaction': 1,
          'intends': 1,
          'plant': 1,
          'disturbing': 1,
          'ideas': 1,
          'subjects': 1,
          'watch': 1,
          'happens': 1,
          'gets': 1,
          'unexpected': 1,
          'help': 1,
          'rumbles': 1,
          'hums': 1,
          'belches': 1,
          'remarkable': 1,
          'sights': 1,
          'nportals': 1,
          'become': 1,
          'veiny': 1,
          'stainedglass': 1,
          'eyeballs': 1,
          'fireplace': 1,
          'guarded': 1,
          'stone': 1,
          'lions': 1,
          'gapes': 1,
          'like': 1,
          'mouth': 1,
          'nfilmy': 1,
          'cherubic': 1,
          'spirits': 1,
          'shape': 1,
          'sheets': 1,
          'billowy': 1,
          'curtains': 1,
          'computerized': 1,
          'spooketeria': 1,
          'rarely': 1,
          'feels': 1,
          'real': 1,
          'placing': 1,
          'wall': 1,
          'audience': 1,
          'half': 1,
          'main': 1,
          'heroine': 1,
          'running': 1,
          'back': 1,
          'lamps': 1,
          'evil': 1,
          'furniture': 1,
          'exciting': 1,
          'worst': 1,
          'thing': 1,
          'based': 1,
          'shirley': 1,
          'jackson': 1,
          '1963': 1,
          'adaptation': 1,
          'intelligent': 1,
          'played': 1,
          'greatest': 1,
          'fears': 1,
          'sub': 1,
          'conscience': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'cost': 1,
          'less': 1,
          'old': 1,
          'car': 1,
          'managed': 1,
          'shock': 1,
          'terrify': 1,
          'audiences': 1,
          'senses': 1,
          '70': 1,
          'mill': 1,
          'nbudget': 1,
          'screenwriter': 1,
          'david': 1,
          'self': 1,
          'hash': 1,
          'perfectly': 1,
          'lovely': 1,
          'piece': 1,
          'terror': 1,
          'nde': 1,
          'filmmaking': 1,
          'line': 1,
          'frightening': 1,
          'nhe': 1,
          'master': 1,
          'extravagant': 1,
          'effect': 1,
          'big': 1,
          'visual': 1,
          'adrenaline': 1,
          'rush': 1,
          'give': 1,
          'serious': 1,
          'nin': 1,
          'haunt': 1,
          'fledgling': 1,
          'studio': 1,
          'dream': 1,
          'works': 1,
          'skg': 1,
          'bonts': 1,
          'career': 1,
          'director': 1,
          'nyet': 1,
          'wouldnt': 1,
          'fair': 1,
          'everything': 1,
          'truly': 1,
          'wonderfully': 1,
          'decorated': 1,
          'beautiful': 1,
          'mysterious': 1,
          'magical': 1,
          'spooky': 1,
          'music': 1,
          'blaring': 1,
          'floors': 1,
          'moving': 1,
          'ceiling': 1,
          'morphing': 1,
          'pictures': 1,
          'walls': 1,
          'screaming': 1,
          'moment': 1,
          'time': 1,
          'without': 1,
          'life': 1,
          'nothing': 1,
          'effectsextravaganza': 1,
          'visually': 1,
          'intellectually': 1,
          'hollow': 1,
          'thriller': 1,
          'simply': 1,
          'doesnt': 1,
          'engage': 1,
          'nat': 1,
          'first': 1,
          'know': 1,
          'whats': 1,
          'going': 1,
          'part': 1,
          'nare': 1,
          'hallucinations': 1,
          'nprojections': 1,
          'subconscience': 1,
          'nparanoia': 1,
          'happening': 1,
          'possessed': 1,
          'point': 1,
          'hopes': 1,
          'entertainment': 1,
          'disappears': 1,
          'window': 1,
          'nfor': 1,
          'ever': 1,
          'sat': 1,
          'anticipation': 1,
          'decent': 1,
          'thats': 1,
          'got': 1,
          'believe': 1,
          'said': 1,
          'better': 1,
          'wait': 1,
          'nthis': 1,
          'may': 1,
          'true': 1,
          'work': 1,
          'problem': 1,
          'nthey': 1,
          'impossible': 1,
          'seriously': 1,
          'nany': 1,
          'paralells': 1,
          'heard': 1,
          'linking': 1,
          'picture': 1,
          'kubricks': 1,
          'baseless': 1,
          'class': 1,
          'acting': 1,
          'talent': 1,
          'originality': 1,
          'art': 1,
          'direction': 1,
          'boast': 1,
          'elements': 1,
          'alone': 1,
          'enough': 1,
          'ncasting': 1,
          'small': 1,
          'pale': 1,
          'parts': 1,
          'makes': 1,
          'worse': 1,
          'guess': 1,
          'matter': 1,
          'critics': 1,
          'write': 1,
          'anyway': 1,
          'even': 1,
          'would': 1,
          'films': 1,
          'nneg': 1}),
 Counter({'mona': 6,
          'griffin': 6,
          'nthe': 6,
          'porter': 4,
          'ellie': 4,
          'film': 4,
          'town': 4,
          'country': 4,
          'beatty': 3,
          'friends': 3,
          'begins': 3,
          'stoddard': 2,
          'successful': 2,
          'years': 2,
          'marital': 2,
          'cinematographer': 2,
          'william': 2,
          'fraker': 2,
          'buck': 2,
          'henry': 2,
          'chelsom': 2,
          'funny': 2,
          'bones': 2,
          'nafter': 2,
          'scene': 2,
          'finds': 2,
          'divorce': 2,
          'thinks': 2,
          'trip': 2,
          'two': 2,
          'end': 2,
          'never': 2,
          'home': 2,
          'second': 2,
          'tell': 2,
          'porters': 2,
          'sun': 2,
          'valley': 2,
          'misadventures': 2,
          'women': 2,
          'back': 2,
          'new': 2,
          'york': 2,
          'city': 2,
          'nwhile': 2,
          'character': 2,
          'mostly': 2,
          'sex': 2,
          'wives': 2,
          'seldes': 2,
          'films': 2,
          'warren': 1,
          'architect': 1,
          'married': 1,
          'fabric': 1,
          'designer': 1,
          'diane': 1,
          'keaton': 1,
          'twentyfive': 1,
          'nthey': 1,
          'best': 1,
          'goldie': 1,
          'hawn': 1,
          'garry': 1,
          'shandling': 1,
          'face': 1,
          'crises': 1,
          'well': 1,
          'known': 1,
          'torturous': 1,
          'path': 1,
          'screen': 1,
          'n': 1,
          'pedigree': 1,
          'befitting': 1,
          'title': 1,
          'star': 1,
          'cast': 1,
          'photographed': 1,
          'oscar': 1,
          'nominated': 1,
          'mouthing': 1,
          'words': 1,
          'screenwriter': 1,
          'graduate': 1,
          'direction': 1,
          'peter': 1,
          'reports': 1,
          'budget': 1,
          'overruns': 1,
          'reshoots': 1,
          'racking': 1,
          'twelve': 1,
          'different': 1,
          'release': 1,
          'dates': 1,
          'media': 1,
          'prepped': 1,
          'beattys': 1,
          'next': 1,
          'ishtar': 1,
          'nso': 1,
          'bad': 1,
          'answer': 1,
          'nbut': 1,
          'good': 1,
          'either': 1,
          'major': 1,
          'problem': 1,
          'unstructured': 1,
          'random': 1,
          'nstoddard': 1,
          'immediately': 1,
          'established': 1,
          'philanderer': 1,
          'bedded': 1,
          'flaky': 1,
          'cellist': 1,
          'nastassja': 1,
          'kinski': 1,
          'nnext': 1,
          'celebrating': 1,
          'anniversary': 1,
          'paris': 1,
          'nthen': 1,
          'spies': 1,
          'hustling': 1,
          'redhead': 1,
          'motel': 1,
          'proceedings': 1,
          'cameos': 1,
          'couples': 1,
          'lawyer': 1,
          'nellie': 1,
          'shes': 1,
          'overeacting': 1,
          'sends': 1,
          'support': 1,
          'check': 1,
          'familys': 1,
          'mississippi': 1,
          'manse': 1,
          'childhood': 1,
          'bed': 1,
          'together': 1,
          'making': 1,
          'us': 1,
          'wonder': 1,
          'theyd': 1,
          'become': 1,
          'couple': 1,
          'begin': 1,
          'nback': 1,
          'coupling': 1,
          'interrupted': 1,
          'bursting': 1,
          'cheating': 1,
          'nporter': 1,
          'goes': 1,
          'idaho': 1,
          'comic': 1,
          'wacky': 1,
          'attempts': 1,
          'hes': 1,
          'gay': 1,
          'four': 1,
          'along': 1,
          'every': 1,
          'woman': 1,
          'dallied': 1,
          'somewhat': 1,
          'happily': 1,
          'ever': 1,
          'nalthough': 1,
          'promisingly': 1,
          'resembling': 1,
          'woody': 1,
          'allen': 1,
          'take': 1,
          'wasps': 1,
          'many': 1,
          'strands': 1,
          'drift': 1,
          'nowhere': 1,
          'household': 1,
          'huge': 1,
          'containing': 1,
          'adult': 1,
          'children': 1,
          'josh': 1,
          'hartnett': 1,
          'virgin': 1,
          'suicides': 1,
          'tricia': 1,
          'vessey': 1,
          'kiss': 1,
          'girls': 1,
          'colorful': 1,
          'bedmates': 1,
          'maid': 1,
          'whos': 1,
          'imported': 1,
          'shirtless': 1,
          'boyfriend': 1,
          'rainforest': 1,
          'amusing': 1,
          'early': 1,
          'overhearing': 1,
          'three': 1,
          'bouts': 1,
          'lovemaking': 1,
          'search': 1,
          'nocturnal': 1,
          'snack': 1,
          'six': 1,
          'supporting': 1,
          'players': 1,
          'dropped': 1,
          'except': 1,
          'outofnowhere': 1,
          'appearance': 1,
          'formerly': 1,
          'forgotten': 1,
          'son': 1,
          'nporters': 1,
          'romantic': 1,
          'equally': 1,
          'mishandled': 1,
          'nonce': 1,
          'discord': 1,
          'seems': 1,
          'editted': 1,
          'machete': 1,
          'stopping': 1,
          'starting': 1,
          'regaining': 1,
          'rhythm': 1,
          'gets': 1,
          'tart': 1,
          'observations': 1,
          'passive': 1,
          'bemused': 1,
          'nmaybe': 1,
          'supposed': 1,
          'feel': 1,
          'sympathy': 1,
          'adulterer': 1,
          'doesnt': 1,
          'initiate': 1,
          'romps': 1,
          'nkeatons': 1,
          'trusting': 1,
          'nature': 1,
          'thats': 1,
          'result': 1,
          'self': 1,
          'involvement': 1,
          'resulting': 1,
          'unlikeable': 1,
          'nhawn': 1,
          'smartly': 1,
          'recycles': 1,
          'mature': 1,
          'kitten': 1,
          'towners': 1,
          'first': 1,
          'club': 1,
          'shandlings': 1,
          'relegated': 1,
          'true': 1,
          'banana': 1,
          'status': 1,
          'nkinski': 1,
          'bland': 1,
          'unmotivated': 1,
          'nandie': 1,
          'macdowell': 1,
          'takes': 1,
          'weirdly': 1,
          'unappealing': 1,
          'role': 1,
          'screenplays': 1,
          'bizarre': 1,
          'subplot': 1,
          'charlton': 1,
          'heston': 1,
          'rifle': 1,
          'toting': 1,
          'billionaire': 1,
          'daddy': 1,
          'marian': 1,
          'alcoholic': 1,
          'wheelchairbound': 1,
          'foulmouthed': 1,
          'mother': 1,
          'nheston': 1,
          'fun': 1,
          'jenna': 1,
          'elfman': 1,
          'bait': 1,
          'tackle': 1,
          'salesgirl': 1,
          'brings': 1,
          'halloween': 1,
          'party': 1,
          'noscar': 1,
          'nominatored': 1,
          'gives': 1,
          'nice': 1,
          'look': 1,
          'director': 1,
          'shows': 1,
          'none': 1,
          'quirkily': 1,
          'blackly': 1,
          'humorous': 1,
          'depth': 1,
          'brought': 1,
          'like': 1,
          'hear': 1,
          'song': 1,
          'script': 1,
          'weakest': 1,
          'link': 1,
          'telling': 1,
          'laughs': 1,
          'come': 1,
          'oldfashioned': 1,
          'physical': 1,
          'slapstick': 1,
          'sight': 1,
          'bear': 1,
          'suit': 1,
          'isnt': 1,
          'exactly': 1,
          'painful': 1,
          'sit': 1,
          'lays': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'case': 8,
          'hes': 7,
          'one': 6,
          'nthe': 6,
          '8mm': 6,
          'see': 6,
          'welles': 6,
          'cage': 6,
          'whole': 6,
          'lawyer': 6,
          'car': 6,
          'someone': 4,
          'fact': 4,
          'first': 4,
          'thing': 4,
          'would': 4,
          'gun': 4,
          'side': 4,
          'schumacher': 3,
          'private': 3,
          'hired': 3,
          'actually': 3,
          'nso': 3,
          'main': 3,
          'nthen': 3,
          'reach': 3,
          'around': 3,
          'music': 3,
          'capable': 3,
          'following': 2,
          'review': 2,
          'n': 2,
          'joel': 2,
          'ni': 2,
          'heard': 2,
          'noh': 2,
          'wish': 2,
          'nin': 2,
          'everything': 2,
          'minutes': 2,
          'detective': 2,
          'mind': 2,
          'important': 2,
          'returns': 2,
          'home': 2,
          'even': 2,
          'time': 2,
          'rake': 2,
          'yard': 2,
          'woman': 2,
          'comes': 2,
          'snuff': 2,
          'young': 2,
          'type': 2,
          'character': 2,
          'bad': 2,
          'instinct': 2,
          'anything': 2,
          'part': 2,
          'going': 2,
          'get': 2,
          'give': 2,
          'characters': 2,
          'trying': 2,
          'goes': 2,
          'really': 2,
          'performance': 2,
          'mr': 2,
          'contains': 1,
          'spoilers': 1,
          'please': 1,
          'stop': 1,
          'vomits': 1,
          'canister': 1,
          'tries': 1,
          'pass': 1,
          'movie': 1,
          'chuck': 1,
          'dowling': 1,
          'jacksonville': 1,
          'journal': 1,
          'wrote': 1,
          'sentence': 1,
          '1997s': 1,
          'batman': 1,
          'robin': 1,
          'napparently': 1,
          'words': 1,
          'stopped': 1,
          'nbecause': 1,
          'done': 1,
          'plot': 1,
          'similar': 1,
          '1977': 1,
          'paul': 1,
          'schrader': 1,
          'hardcore': 1,
          'surprisingly': 1,
          'decent': 1,
          'engrossing': 1,
          'tale': 1,
          'opening': 1,
          'tom': 1,
          'nicolas': 1,
          'working': 1,
          'prestigious': 1,
          'member': 1,
          'u': 1,
          'government': 1,
          'nkeep': 1,
          'trusted': 1,
          'solves': 1,
          'nhe': 1,
          'wife': 1,
          'new': 1,
          'daughter': 1,
          'finds': 1,
          'keep': 1,
          'well': 1,
          'nhes': 1,
          'rich': 1,
          'elderly': 1,
          'solve': 1,
          'mystery': 1,
          'nafter': 1,
          'husbands': 1,
          'death': 1,
          'across': 1,
          'safe': 1,
          'nit': 1,
          'appears': 1,
          'sort': 1,
          'urban': 1,
          'legend': 1,
          'pornography': 1,
          'industry': 1,
          'brutally': 1,
          'murdered': 1,
          'camera': 1,
          'wants': 1,
          'locate': 1,
          'girl': 1,
          'hopefully': 1,
          'disprove': 1,
          'sets': 1,
          'journey': 1,
          'sordid': 1,
          'underworld': 1,
          'sleaze': 1,
          'discover': 1,
          'truth': 1,
          'problem': 1,
          'completely': 1,
          'pointless': 1,
          'nwelles': 1,
          'selected': 1,
          'old': 1,
          'womans': 1,
          'anthony': 1,
          'heald': 1,
          'actor': 1,
          'always': 1,
          'plays': 1,
          'guy': 1,
          'nwhen': 1,
          'behind': 1,
          'choice': 1,
          'casting': 1,
          'begins': 1,
          'investigation': 1,
          'times': 1,
          'shadowy': 1,
          'figure': 1,
          'person': 1,
          'could': 1,
          'possibly': 1,
          'sent': 1,
          'knows': 1,
          'investigating': 1,
          'yet': 1,
          'confirmed': 1,
          'revealed': 1,
          'tells': 1,
          'chosen': 1,
          'inexperienced': 1,
          'ridiculous': 1,
          'since': 1,
          'kill': 1,
          'anyway': 1,
          'tell': 1,
          'moments': 1,
          'nbut': 1,
          'earlier': 1,
          'told': 1,
          'highly': 1,
          'recommended': 1,
          'nhuh': 1,
          'nalso': 1,
          'reveals': 1,
          'goal': 1,
          'back': 1,
          'place': 1,
          'gave': 1,
          'away': 1,
          'thinking': 1,
          'return': 1,
          'nits': 1,
          'totally': 1,
          'absurd': 1,
          'nand': 1,
          'screenwriter': 1,
          'seven': 1,
          'nlate': 1,
          'theres': 1,
          'confrontation': 1,
          'struggle': 1,
          'guns': 1,
          'ends': 1,
          'underneath': 1,
          'ncage': 1,
          'handcuffed': 1,
          'bed': 1,
          'rapidly': 1,
          'table': 1,
          'njames': 1,
          'gandolfinis': 1,
          'supposed': 1,
          'scene': 1,
          'suspense': 1,
          'nyou': 1,
          'slightly': 1,
          'instead': 1,
          'easily': 1,
          'keeps': 1,
          'stretching': 1,
          'ngo': 1,
          'nthis': 1,
          'gets': 1,
          'gandolfini': 1,
          'decides': 1,
          'best': 1,
          'go': 1,
          'nboy': 1,
          'getting': 1,
          'nerves': 1,
          'think': 1,
          'final': 1,
          'straw': 1,
          'devastated': 1,
          'seen': 1,
          'longer': 1,
          'able': 1,
          'lawn': 1,
          'nwe': 1,
          'shot': 1,
          'pathetically': 1,
          'poking': 1,
          'leaves': 1,
          'nother': 1,
          'things': 1,
          'bugged': 1,
          'call': 1,
          'nwhenever': 1,
          'score': 1,
          'starts': 1,
          'sounds': 1,
          'like': 1,
          'techno': 1,
          'awful': 1,
          'indian': 1,
          'middle': 1,
          'eastern': 1,
          'accompany': 1,
          'nawful': 1,
          'decision': 1,
          'nanother': 1,
          'cages': 1,
          'nat': 1,
          'point': 1,
          'wide': 1,
          'range': 1,
          'performances': 1,
          'either': 1,
          'good': 1,
          'nfor': 1,
          'delivers': 1,
          'wooden': 1,
          'shines': 1,
          'interacting': 1,
          'joaquin': 1,
          'phoenix': 1,
          'gives': 1,
          'great': 1,
          'porn': 1,
          'shop': 1,
          'clerk': 1,
          'heart': 1,
          'gold': 1,
          'helps': 1,
          'nyoure': 1,
          'much': 1,
          'better': 1,
          'nnow': 1,
          'nim': 1,
          'starting': 1,
          'doubt': 1,
          'youre': 1,
          'else': 1,
          'besides': 1,
          'urinating': 1,
          'onto': 1,
          'institution': 1,
          'american': 1,
          'cinema': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'bad': 4,
          'day': 3,
          'nit': 3,
          'movie': 3,
          'one': 3,
          'cast': 3,
          'thief': 3,
          'back': 3,
          'films': 2,
          'worst': 2,
          'made': 2,
          'woke': 2,
          'early': 2,
          'died': 2,
          'certainly': 2,
          'nthe': 2,
          'would': 2,
          'goes': 2,
          'nhe': 2,
          'loan': 2,
          'kills': 2,
          'na': 2,
          'money': 2,
          'music': 2,
          'fun': 2,
          'low': 2,
          'get': 2,
          'time': 2,
          'waste': 2,
          'recent': 1,
          'years': 1,
          'mr': 1,
          'nmagoo': 1,
          'far': 1,
          'ever': 1,
          'spectacularly': 1,
          'blue': 1,
          'face': 1,
          'horrible': 1,
          'baby': 1,
          'genuises': 1,
          'may': 1,
          'however': 1,
          'ranks': 1,
          'acting': 1,
          'thats': 1,
          'want': 1,
          'call': 1,
          'well': 1,
          'mediocre': 1,
          'nloaded': 1,
          'sensational': 1,
          'think': 1,
          'least': 1,
          'save': 1,
          'bit': 1,
          'boy': 1,
          'wrong': 1,
          'nafter': 1,
          'escaping': 1,
          'mental': 1,
          'institution': 1,
          'played': 1,
          'billy': 1,
          'zane': 1,
          'real': 1,
          'world': 1,
          'finds': 1,
          'pretty': 1,
          'harsh': 1,
          'gritty': 1,
          'turns': 1,
          'burglary': 1,
          'survive': 1,
          'robs': 1,
          'officer': 1,
          'runs': 1,
          'thousands': 1,
          'countrywide': 1,
          'man': 1,
          'hunt': 1,
          'catch': 1,
          'bring': 1,
          'ends': 1,
          'cemetery': 1,
          'puts': 1,
          'coffin': 1,
          'keep': 1,
          'later': 1,
          'comes': 1,
          'realizes': 1,
          'someone': 1,
          'took': 1,
          'put': 1,
          'somewhere': 1,
          'nnow': 1,
          'determined': 1,
          'kill': 1,
          'visitors': 1,
          'funeral': 1,
          'earlier': 1,
          'gets': 1,
          'ultimately': 1,
          'leading': 1,
          'finale': 1,
          'less': 1,
          'satisfying': 1,
          'based': 1,
          'longlost': 1,
          'script': 1,
          'ed': 1,
          'wood': 1,
          'question': 1,
          'dialogue': 1,
          'movement': 1,
          'exactly': 1,
          'point': 1,
          'moves': 1,
          'along': 1,
          'rather': 1,
          'slow': 1,
          'pace': 1,
          'advantage': 1,
          'soundtrack': 1,
          'catchy': 1,
          'vibrant': 1,
          'except': 1,
          'first': 1,
          'song': 1,
          'offensive': 1,
          'opens': 1,
          'innovative': 1,
          'opening': 1,
          'credits': 1,
          'sequence': 1,
          'quickly': 1,
          'downhill': 1,
          'nsome': 1,
          'points': 1,
          'steals': 1,
          'womans': 1,
          'purse': 1,
          'faints': 1,
          'sandra': 1,
          'bernhard': 1,
          'dancer': 1,
          'tippi': 1,
          'hendren': 1,
          'deaf': 1,
          'woman': 1,
          'psycho': 1,
          'ncome': 1,
          'people': 1,
          'new': 1,
          'ideas': 1,
          'already': 1,
          'nwhats': 1,
          'even': 1,
          'worse': 1,
          'plot': 1,
          'nwell': 1,
          'certain': 1,
          'extent': 1,
          'cares': 1,
          'middle': 1,
          'arrives': 1,
          'bored': 1,
          'mind': 1,
          'ready': 1,
          'something': 1,
          'exciting': 1,
          'happen': 1,
          'ni': 1,
          'perfectly': 1,
          'shows': 1,
          'us': 1,
          'filmmakers': 1,
          'sometimes': 1,
          'desperate': 1,
          'make': 1,
          'neven': 1,
          'huge': 1,
          'talent': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'ronin': 8,
          'nthe': 6,
          'characters': 5,
          'would': 4,
          'films': 4,
          'two': 4,
          'seems': 4,
          'good': 4,
          'case': 4,
          'may': 3,
          'man': 3,
          'plot': 3,
          'one': 3,
          'nsam': 3,
          'professional': 3,
          'metal': 3,
          'know': 3,
          '4': 3,
          '47': 3,
          'american': 2,
          'thriller': 2,
          'nsome': 2,
          'people': 2,
          'pick': 2,
          'others': 2,
          'tense': 2,
          'came': 2,
          'frankenheimer': 2,
          'little': 2,
          'nthey': 2,
          'way': 2,
          'chases': 2,
          'like': 2,
          'another': 2,
          'get': 2,
          'samurai': 2,
          'nthis': 2,
          'nhe': 2,
          'really': 2,
          'killer': 2,
          'business': 2,
          'irish': 2,
          'action': 2,
          'team': 2,
          'also': 2,
          'breaking': 2,
          'nalso': 2,
          'group': 2,
          'never': 2,
          'involved': 2,
          'actors': 2,
          'deep': 2,
          '0': 2,
          'scale': 2,
          'hard': 1,
          'choose': 1,
          'best': 1,
          'political': 1,
          'probably': 1,
          'manchurian': 1,
          'candidate': 1,
          'included': 1,
          'seven': 1,
          'days': 1,
          'nboth': 1,
          'exercises': 1,
          'chills': 1,
          'within': 1,
          'years': 1,
          'directed': 1,
          'john': 1,
          'nbut': 1,
          '1962': 1,
          '1964': 1,
          'respectively': 1,
          'nfor': 1,
          'rest': 1,
          'career': 1,
          'turned': 1,
          'decent': 1,
          'shown': 1,
          'promise': 1,
          'thrillers': 1,
          'showed': 1,
          'neach': 1,
          'memorable': 1,
          'almost': 1,
          'nothing': 1,
          'gunplay': 1,
          'thrills': 1,
          'nronin': 1,
          'made': 1,
          'nsomewhere': 1,
          'behind': 1,
          'shooting': 1,
          'explosions': 1,
          'car': 1,
          'rudiments': 1,
          'ofa': 1,
          'see': 1,
          'tiny': 1,
          'pieces': 1,
          'nwe': 1,
          'clue': 1,
          'going': 1,
          'j': 1,
          'zeiks': 1,
          'screenplay': 1,
          'bit': 1,
          'obscure': 1,
          'begins': 1,
          'explaining': 1,
          'masterless': 1,
          'nwhen': 1,
          'failed': 1,
          'job': 1,
          'protecting': 1,
          'master': 1,
          'death': 1,
          'becomes': 1,
          'much': 1,
          'gunfighter': 1,
          'west': 1,
          'nif': 1,
          'miss': 1,
          'opening': 1,
          'worry': 1,
          'explain': 1,
          'played': 1,
          'robert': 1,
          'de': 1,
          'niro': 1,
          'modern': 1,
          'equivalent': 1,
          'free': 1,
          'agent': 1,
          'instincts': 1,
          'stay': 1,
          'alive': 1,
          'world': 1,
          'clearly': 1,
          'dangerous': 1,
          'time': 1,
          'drifting': 1,
          'around': 1,
          'somewhere': 1,
          'france': 1,
          'recruited': 1,
          'montmartre': 1,
          'bar': 1,
          'dierdre': 1,
          'natascha': 1,
          'mcelhone': 1,
          'truman': 1,
          'show': 1,
          'woman': 1,
          'part': 1,
          'steal': 1,
          'mysterious': 1,
          'ndierdre': 1,
          'tightlipped': 1,
          'joins': 1,
          'four': 1,
          'vincent': 1,
          'jean': 1,
          'reno': 1,
          'professionalleon': 1,
          'mission': 1,
          'impossible': 1,
          'spence': 1,
          'sean': 1,
          'bean': 1,
          'tvs': 1,
          'richard': 1,
          'sharpe': 1,
          'patriot': 1,
          'games': 1,
          'goldeneye': 1,
          'gregor': 1,
          'stellan': 1,
          'skarsgard': 1,
          'waves': 1,
          'hunting': 1,
          'along': 1,
          'larry': 1,
          'skipp': 1,
          'suddeth': 1,
          'particularly': 1,
          'sam': 1,
          'cold': 1,
          'field': 1,
          'expertise': 1,
          'ntheir': 1,
          'human': 1,
          'side': 1,
          'tensions': 1,
          'among': 1,
          'members': 1,
          'story': 1,
          'easy': 1,
          'follow': 1,
          'nit': 1,
          'clear': 1,
          'doublecrossing': 1,
          'working': 1,
          'nsomehow': 1,
          'russians': 1,
          'russian': 1,
          'mafia': 1,
          'radicals': 1,
          'trying': 1,
          'hands': 1,
          'certain': 1,
          'none': 1,
          'wonders': 1,
          'saw': 1,
          'script': 1,
          'mostly': 1,
          'onedimensional': 1,
          'killers': 1,
          'work': 1,
          'seeing': 1,
          'thought': 1,
          'patterns': 1,
          'adds': 1,
          'interest': 1,
          'feeling': 1,
          'teaming': 1,
          'neither': 1,
          'killed': 1,
          'nby': 1,
          'end': 1,
          'got': 1,
          'anybody': 1,
          'nmaybe': 1,
          'secret': 1,
          'took': 1,
          'parts': 1,
          'since': 1,
          'demanding': 1,
          'create': 1,
          'nin': 1,
          'addition': 1,
          'features': 1,
          'jonathan': 1,
          'pryce': 1,
          'michael': 1,
          'lonsdale': 1,
          'latter': 1,
          'moonraker': 1,
          'superior': 1,
          'day': 1,
          'jackal': 1,
          'nas': 1,
          'revival': 1,
          'sort': 1,
          'popular': 1,
          '1960s': 1,
          'hoping': 1,
          'something': 1,
          'grab': 1,
          'onto': 1,
          'enjoy': 1,
          'nunfortunately': 1,
          'make': 1,
          'us': 1,
          'care': 1,
          'eventually': 1,
          'ends': 1,
          'want': 1,
          'ni': 1,
          'rate': 1,
          '10': 1,
          'nnonspoiler': 1,
          'incidentally': 1,
          'tale': 1,
          'filmed': 1,
          'multiple': 1,
          'times': 1,
          'usually': 1,
          'title': 1,
          'chushingura': 1,
          'frequently': 1,
          'sees': 1,
          'japanese': 1,
          'art': 1,
          'image': 1,
          'door': 1,
          'huge': 1,
          'mallet': 1,
          'first': 1,
          'blow': 1,
          'nneg': 1}),
 Counter({'like': 8,
          'think': 5,
          'darnell': 4,
          'get': 4,
          'brandi': 4,
          'doesnt': 3,
          'one': 3,
          'enough': 3,
          'darnells': 3,
          'sense': 3,
          'would': 3,
          'says': 3,
          'nbut': 3,
          'woman': 3,
          'lawrences': 2,
          'irresponsible': 2,
          'case': 2,
          'actions': 2,
          'especially': 2,
          'nhe': 2,
          'guys': 2,
          'women': 2,
          'long': 2,
          'nnow': 2,
          'im': 2,
          'beautiful': 2,
          'nand': 2,
          'period': 2,
          'film': 2,
          'real': 2,
          'king': 2,
          'guy': 2,
          'hes': 2,
          'dumb': 2,
          'two': 2,
          'though': 2,
          'fall': 2,
          'intelligent': 2,
          'writers': 2,
          'lot': 2,
          'reese': 2,
          'parts': 2,
          'main': 1,
          'problem': 1,
          'martin': 1,
          'pet': 1,
          'project': 1,
          'thin': 1,
          'line': 1,
          'love': 1,
          'hate': 1,
          'fatal': 1,
          'attraction': 1,
          'variation': 1,
          'protagonist': 1,
          'man': 1,
          'character': 1,
          'jerk': 1,
          'seem': 1,
          'anything': 1,
          'except': 1,
          'justify': 1,
          'womans': 1,
          'nthat': 1,
          'wright': 1,
          'macho': 1,
          'lined': 1,
          'mile': 1,
          'dont': 1,
          'condone': 1,
          'male': 1,
          'nmy': 1,
          'philosophy': 1,
          'heterosexual': 1,
          'males': 1,
          'lucky': 1,
          'hands': 1,
          'kind': 1,
          'girl': 1,
          'treat': 1,
          'princess': 1,
          'respect': 1,
          'ndarnell': 1,
          'sleeps': 1,
          'girls': 1,
          'dumps': 1,
          'discovered': 1,
          'newest': 1,
          'target': 1,
          'wealthy': 1,
          'web': 1,
          'played': 1,
          'nicely': 1,
          'whitfield': 1,
          'runs': 1,
          'successful': 1,
          'estate': 1,
          'business': 1,
          'kill': 1,
          'dumping': 1,
          'childdhood': 1,
          'friend': 1,
          'mia': 1,
          'found': 1,
          'thinking': 1,
          'supposed': 1,
          'feel': 1,
          'sorry': 1,
          'nafter': 1,
          'largely': 1,
          'fault': 1,
          'nif': 1,
          'lining': 1,
          'youd': 1,
          'hed': 1,
          'common': 1,
          'backfire': 1,
          'day': 1,
          'mother': 1,
          'also': 1,
          'pretty': 1,
          'nyou': 1,
          'tells': 1,
          'killed': 1,
          'husband': 1,
          'allegedly': 1,
          'abusing': 1,
          'n': 1,
          'id': 1,
          'put': 1,
          'pants': 1,
          'seconds': 1,
          'psycho': 1,
          'bitch': 1,
          'hard': 1,
          'agree': 1,
          'finale': 1,
          'treating': 1,
          'garbage': 1,
          'none': 1,
          'final': 1,
          'flaw': 1,
          'letting': 1,
          'begin': 1,
          'nbrandi': 1,
          'classy': 1,
          'mba': 1,
          'harvard': 1,
          'initally': 1,
          'resists': 1,
          'immature': 1,
          'play': 1,
          'calls': 1,
          'life': 1,
          'sudden': 1,
          'yes': 1,
          'listen': 1,
          'four': 1,
          'letter': 1,
          'word': 1,
          'vocabulary': 1,
          'watch': 1,
          'wonder': 1,
          'much': 1,
          'less': 1,
          'unhealthy': 1,
          'obsession': 1,
          'nlawrence': 1,
          'good': 1,
          'wants': 1,
          'order': 1,
          'prove': 1,
          'needs': 1,
          'let': 1,
          'people': 1,
          'write': 1,
          'direct': 1,
          'movies': 1,
          'nlook': 1,
          'movie': 1,
          'nfour': 1,
          'result': 1,
          'hours': 1,
          'couldve': 1,
          'easily': 1,
          'worked': 1,
          'ninety': 1,
          'minutes': 1,
          'subplots': 1,
          'characters': 1,
          'appear': 1,
          'disappear': 1,
          'quickly': 1,
          'came': 1,
          'makes': 1,
          'didnt': 1,
          'along': 1,
          'isnt': 1,
          'necessary': 1,
          'nthere': 1,
          'bright': 1,
          'spots': 1,
          'nwhitfield': 1,
          'regina': 1,
          'della': 1,
          'bobby': 1,
          'brown': 1,
          'lazily': 1,
          'written': 1,
          'help': 1,
          'funny': 1,
          'example': 1,
          'scene': 1,
          'attempts': 1,
          'fight': 1,
          'whitfeld': 1,
          'harrassing': 1,
          'son': 1,
          'damaging': 1,
          'property': 1,
          'theyre': 1,
          'sustain': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'claire': 7,
          'nthe': 6,
          'noel': 5,
          'nclaire': 4,
          'lesbianism': 3,
          'interesting': 3,
          'f': 3,
          'talk': 3,
          'boring': 2,
          'serious': 2,
          'e': 2,
          'like': 2,
          'one': 2,
          'two': 2,
          'writers': 2,
          'thats': 2,
          'lesbian': 2,
          'looks': 2,
          'yet': 2,
          'get': 2,
          'scene': 2,
          'even': 2,
          'way': 2,
          'better': 2,
          'capsule': 1,
          'examined': 1,
          'hushed': 1,
          'reverential': 1,
          'tones': 1,
          'reserved': 1,
          'terminal': 1,
          'illness': 1,
          'npotentially': 1,
          'idea': 1,
          'made': 1,
          'stagy': 1,
          'moon': 1,
          'impossibly': 1,
          'sober': 1,
          'waiting': 1,
          'someone': 1,
          'sneeze': 1,
          'break': 1,
          'ice': 1,
          'nits': 1,
          'perfect': 1,
          'example': 1,
          'wife': 1,
          'calls': 1,
          'nmovie': 1,
          'nmeans': 1,
          'ing': 1,
          'earnest': 1,
          'nmovies': 1,
          'need': 1,
          'wit': 1,
          'brashness': 1,
          'absorbing': 1,
          'strained': 1,
          'speech': 1,
          'another': 1,
          'written': 1,
          'delivered': 1,
          'energy': 1,
          'spontenaity': 1,
          'dmv': 1,
          'clerk': 1,
          'takes': 1,
          'women': 1,
          'throws': 1,
          'together': 1,
          'cabin': 1,
          'womenonly': 1,
          'retreat': 1,
          'wrights': 1,
          'light': 1,
          'comedy': 1,
          'scholarly': 1,
          'authority': 1,
          'porn': 1,
          'sexual': 1,
          'behavior': 1,
          'nobviously': 1,
          'going': 1,
          'plenty': 1,
          'entire': 1,
          'hundred': 1,
          'twelve': 1,
          'insufferable': 1,
          'minutes': 1,
          'sets': 1,
          'microscopic': 1,
          'plot': 1,
          'beatadeadhorseintoglue': 1,
          'obviousness': 1,
          'evening': 1,
          'talks': 1,
          'camp': 1,
          'chaired': 1,
          'motherly': 1,
          'type': 1,
          'named': 1,
          'maggie': 1,
          'selfprofessed': 1,
          'owns': 1,
          'also': 1,
          'shes': 1,
          'hit': 1,
          'sockful': 1,
          'wet': 1,
          'sand': 1,
          'quickly': 1,
          'degenerates': 1,
          'lots': 1,
          'scenes': 1,
          'glances': 1,
          'significance': 1,
          'water': 1,
          'reflectively': 1,
          'n': 1,
          'ugh': 1,
          'amazing': 1,
          'thing': 1,
          'people': 1,
          'intelligent': 1,
          'much': 1,
          'little': 1,
          'thick': 1,
          'heads': 1,
          'nall': 1,
          'course': 1,
          'leads': 1,
          'complete': 1,
          'inevitability': 1,
          'come': 1,
          'hour': 1,
          'earlier': 1,
          'ends': 1,
          'without': 1,
          'benefit': 1,
          'reflection': 1,
          'whats': 1,
          'happened': 1,
          'nwe': 1,
          'never': 1,
          'hint': 1,
          'changed': 1,
          'anyone': 1,
          'felt': 1,
          'things': 1,
          'didnt': 1,
          'happen': 1,
          'problem': 1,
          'nis': 1,
          'leaden': 1,
          'handled': 1,
          'nwhy': 1,
          'word': 1,
          'would': 1,
          'adult': 1,
          'least': 1,
          'thoughtful': 1,
          'examination': 1,
          'sex': 1,
          'almost': 1,
          'always': 1,
          'winds': 1,
          'producing': 1,
          'unwatchably': 1,
          'deals': 1,
          'might': 1,
          'well': 1,
          'watching': 1,
          'overheated': 1,
          'docudrama': 1,
          'aids': 1,
          'nmany': 1,
          'movies': 1,
          'used': 1,
          'subject': 1,
          'ways': 1,
          'thousand': 1,
          'times': 1,
          'engaging': 1,
          'creative': 1,
          'intellectually': 1,
          'artistically': 1,
          'nlook': 1,
          'john': 1,
          'sayles': 1,
          'lianna': 1,
          'littleseen': 1,
          'desert': 1,
          'bloom': 1,
          'life': 1,
          'vibrancy': 1,
          'nwhat': 1,
          'needed': 1,
          'good': 1,
          'swift': 1,
          'kick': 1,
          'pants': 1,
          'nneg': 1}),
 Counter({'urban': 13,
          'legend': 11,
          'film': 9,
          'slasher': 8,
          'mad': 7,
          'exploitation': 7,
          'killer': 6,
          'movie': 6,
          'would': 6,
          'people': 5,
          'one': 4,
          'made': 4,
          'cant': 4,
          'ni': 4,
          'scary': 4,
          'like': 4,
          'kind': 4,
          'nfor': 3,
          'crazed': 3,
          'flick': 3,
          'audience': 3,
          'nthe': 3,
          'anyone': 3,
          'three': 3,
          'films': 3,
          'good': 3,
          'without': 3,
          'lack': 3,
          'legends': 3,
          'irritating': 3,
          'said': 2,
          'paraphrasing': 2,
          'sex': 2,
          'could': 2,
          'entire': 2,
          'genre': 2,
          'horror': 2,
          'always': 2,
          'nudity': 2,
          'free': 2,
          'though': 2,
          'gore': 2,
          'gross': 2,
          'em': 2,
          'actually': 2,
          'find': 2,
          'box': 2,
          'office': 2,
          'anything': 2,
          'audiences': 2,
          'kinds': 2,
          'flicks': 2,
          'produced': 2,
          'idiotic': 2,
          'time': 2,
          'wild': 2,
          'nbut': 2,
          'craft': 2,
          'boom': 2,
          'awful': 2,
          'possibility': 2,
          'college': 2,
          'campus': 2,
          'young': 2,
          'nall': 2,
          'better': 2,
          'running': 2,
          'little': 2,
          'whole': 2,
          'nits': 2,
          'villain': 2,
          'really': 2,
          'characters': 2,
          'loud': 2,
          'filmmakers': 2,
          'thing': 2,
          'disguise': 2,
          'enough': 2,
          'know': 2,
          'summer': 2,
          '2': 2,
          'entertaining': 2,
          'annoying': 2,
          'stand': 2,
          'getting': 2,
          'slaughtered': 2,
          'great': 1,
          'actor': 1,
          'james': 1,
          'woods': 1,
          'im': 1,
          'isnt': 1,
          'messy': 1,
          'youre': 1,
          'right': 1,
          'na': 1,
          'truly': 1,
          'profound': 1,
          'statement': 1,
          'replace': 1,
          'uninformed': 1,
          'souls': 1,
          'subgenre': 1,
          'melding': 1,
          'elements': 1,
          'put': 1,
          'service': 1,
          'plot': 1,
          'follows': 1,
          'identical': 1,
          'outline': 1,
          'usually': 1,
          'masked': 1,
          'stalks': 1,
          'kills': 1,
          'attractive': 1,
          'teens': 1,
          'la': 1,
          'halloween': 1,
          'nurban': 1,
          'sanitary': 1,
          'bloodless': 1,
          'irony': 1,
          'laden': 1,
          'dialogue': 1,
          'beautiful': 1,
          'overly': 1,
          'talented': 1,
          'cast': 1,
          'closely': 1,
          'resembles': 1,
          'overlong': 1,
          'wb': 1,
          'television': 1,
          'special': 1,
          'makers': 1,
          'two': 1,
          'weapons': 1,
          'disposal': 1,
          'stale': 1,
          'frightfree': 1,
          'stephen': 1,
          'king': 1,
          'scare': 1,
          'make': 1,
          'laugh': 1,
          'nalas': 1,
          'succeeds': 1,
          'latter': 1,
          'intention': 1,
          'fact': 1,
          'became': 1,
          'minor': 1,
          'success': 1,
          '40': 1,
          'million': 1,
          'domestic': 1,
          'frightening': 1,
          'nit': 1,
          'seems': 1,
          'tastes': 1,
          'whittled': 1,
          'degree': 1,
          'even': 1,
          'claiming': 1,
          'given': 1,
          'benefit': 1,
          'doubt': 1,
          'promotion': 1,
          'sure': 1,
          'promised': 1,
          'thrills': 1,
          'digit': 1,
          'iq': 1,
          'argue': 1,
          'provides': 1,
          'nunfortunately': 1,
          'continue': 1,
          'longer': 1,
          'expectations': 1,
          'superhyped': 1,
          'blockbuster': 1,
          'another': 1,
          'desensitized': 1,
          'point': 1,
          'dont': 1,
          'need': 1,
          'promise': 1,
          'added': 1,
          'pressure': 1,
          'delivering': 1,
          'nif': 1,
          'disagrees': 1,
          'love': 1,
          'explain': 1,
          'successes': 1,
          'shit': 1,
          'batman': 1,
          'robin': 1,
          'west': 1,
          'godzilla': 1,
          'forget': 1,
          'goes': 1,
          'saying': 1,
          'offshoot': 1,
          'ounce': 1,
          'especially': 1,
          'considering': 1,
          'sheer': 1,
          'volume': 1,
          'nallow': 1,
          'present': 1,
          'real': 1,
          'fault': 1,
          'enthusiastic': 1,
          'nthese': 1,
          'arent': 1,
          'harnessed': 1,
          'lofty': 1,
          'aspirations': 1,
          'break': 1,
          'give': 1,
          'bloody': 1,
          'nsadly': 1,
          'literally': 1,
          'hundreds': 1,
          'estimate': 1,
          'maybe': 1,
          'worth': 1,
          'nand': 1,
          'certainly': 1,
          'included': 1,
          'amongst': 1,
          'ndespite': 1,
          'considerable': 1,
          'production': 1,
          'value': 1,
          'absence': 1,
          'mics': 1,
          'slipping': 1,
          'frame': 1,
          'budget': 1,
          'entry': 1,
          'sweepstakes': 1,
          'nas': 1,
          'far': 1,
          'natured': 1,
          'setting': 1,
          'alone': 1,
          'offers': 1,
          'myriad': 1,
          'promising': 1,
          'possibilities': 1,
          'takes': 1,
          'place': 1,
          'appropriate': 1,
          'playground': 1,
          'nyou': 1,
          'see': 1,
          'community': 1,
          'almost': 1,
          'entirely': 1,
          'midst': 1,
          'strange': 1,
          'hormonal': 1,
          'surges': 1,
          'percolating': 1,
          'beneath': 1,
          'surface': 1,
          'growing': 1,
          'together': 1,
          'going': 1,
          'inexplicable': 1,
          'emotional': 1,
          'highs': 1,
          'lows': 1,
          'naturally': 1,
          'weirdness': 1,
          'expected': 1,
          'elusive': 1,
          'ncoupled': 1,
          'copious': 1,
          'amounts': 1,
          'scantily': 1,
          'clad': 1,
          'coeds': 1,
          'around': 1,
          'introduction': 1,
          'proceedings': 1,
          'relatively': 1,
          'easy': 1,
          'task': 1,
          'alas': 1,
          'clich': 1,
          'full': 1,
          'way': 1,
          'clean': 1,
          'family': 1,
          'much': 1,
          'stupidity': 1,
          'nthis': 1,
          'drags': 1,
          'dead': 1,
          'victims': 1,
          'scene': 1,
          'crime': 1,
          'reason': 1,
          'dunno': 1,
          'exercise': 1,
          'calmly': 1,
          'purses': 1,
          'runninglikethewindprey': 1,
          'yet': 1,
          'still': 1,
          'manages': 1,
          'catch': 1,
          'prey': 1,
          'editing': 1,
          'techniques': 1,
          'run': 1,
          'clash': 1,
          'reverberates': 1,
          'soundtrack': 1,
          'wish': 1,
          'retire': 1,
          'loudnoisejumpscare': 1,
          'nyes': 1,
          'jumps': 1,
          'momentarily': 1,
          'frightened': 1,
          'wouldnt': 1,
          'sonic': 1,
          'suddenly': 1,
          'infiltrated': 1,
          'quiet': 1,
          'room': 1,
          'lost': 1,
          'hope': 1,
          'genuine': 1,
          'scares': 1,
          'ten': 1,
          'minutes': 1,
          'caught': 1,
          'glimpse': 1,
          'napparently': 1,
          'creative': 1,
          'ways': 1,
          'slashers': 1,
          'nin': 1,
          'scream': 1,
          'ghost': 1,
          'mask': 1,
          'last': 1,
          'fisher': 1,
          'mans': 1,
          'rain': 1,
          'slicker': 1,
          'middle': 1,
          'less': 1,
          'sinks': 1,
          'level': 1,
          'mel': 1,
          'brooks': 1,
          'parody': 1,
          'wears': 1,
          'oversized': 1,
          'parka': 1,
          'fury': 1,
          'hood': 1,
          'ooh': 1,
          'intended': 1,
          'conceal': 1,
          'hisher': 1,
          'identity': 1,
          'humbly': 1,
          'suggest': 1,
          'donald': 1,
          'duck': 1,
          'costume': 1,
          'nthough': 1,
          'must': 1,
          'admit': 1,
          'winning': 1,
          'premise': 1,
          'somewhat': 1,
          'slices': 1,
          'dices': 1,
          'comely': 1,
          'students': 1,
          'tune': 1,
          'famous': 1,
          'babysitter': 1,
          'gets': 1,
          'threatening': 1,
          'phone': 1,
          'calls': 1,
          'theyre': 1,
          'coming': 1,
          'inside': 1,
          'house': 1,
          'wont': 1,
          'spoil': 1,
          'surprise': 1,
          'used': 1,
          'offer': 1,
          'fine': 1,
          '00': 1,
          'cable': 1,
          'viewing': 1,
          'happen': 1,
          'intoxicated': 1,
          'nsad': 1,
          'say': 1,
          'doesnt': 1,
          'include': 1,
          'favorite': 1,
          'fairly': 1,
          'graphic': 1,
          'antidote': 1,
          'concerning': 1,
          'richard': 1,
          'gere': 1,
          'unhappy': 1,
          'gerbil': 1,
          'nnow': 1,
          'nbefore': 1,
          'leave': 1,
          'bring': 1,
          'attention': 1,
          'third': 1,
          'first': 1,
          'second': 1,
          'group': 1,
          'ive': 1,
          'ever': 1,
          'spent': 1,
          'evening': 1,
          'nonly': 1,
          'jared': 1,
          'leto': 1,
          'looking': 1,
          'carbon': 1,
          'copy': 1,
          'rob': 1,
          'lowe': 1,
          'back': 1,
          'day': 1,
          'alicia': 1,
          'witt': 1,
          'resilient': 1,
          'heroine': 1,
          'avoid': 1,
          'vexatiousness': 1,
          'bunch': 1,
          'tie': 1,
          'noxima': 1,
          'girl': 1,
          'rebecca': 1,
          'gayheart': 1,
          'sitcom': 1,
          'star': 1,
          'michael': 1,
          'rosenbaum': 1,
          'supremely': 1,
          'lout': 1,
          'cheered': 1,
          'painful': 1,
          'death': 1,
          'cruel': 1,
          'person': 1,
          'nironically': 1,
          'aggravating': 1,
          'sacks': 1,
          'human': 1,
          'waste': 1,
          'provide': 1,
          'entertainment': 1,
          'viewed': 1,
          'vicarious': 1,
          'fantasy': 1,
          'mildly': 1,
          'nafter': 1,
          'features': 1,
          'faux': 1,
          'hipsters': 1,
          'least': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'way': 3,
          'convict': 3,
          'liotta': 3,
          'flight': 3,
          'like': 3,
          'movie': 3,
          'im': 2,
          'seen': 2,
          'nyou': 2,
          'plane': 2,
          'nhe': 2,
          'transported': 2,
          'la': 2,
          'would': 2,
          'christmas': 2,
          'eve': 2,
          'one': 2,
          'ever': 2,
          'every': 2,
          'premise': 1,
          'turbulence': 1,
          'sure': 1,
          'familiar': 1,
          'us': 1,
          'nweve': 1,
          'passenger': 1,
          '57': 1,
          'executive': 1,
          'decision': 1,
          'countless': 1,
          'flicks': 1,
          'good': 1,
          'know': 1,
          'terrorists': 1,
          'take': 1,
          'ask': 1,
          'police': 1,
          'ground': 1,
          'nturbulence': 1,
          'starts': 1,
          'ray': 1,
          'accused': 1,
          'crime': 1,
          'think': 1,
          'could': 1,
          'done': 1,
          'hes': 1,
          'open': 1,
          'kind': 1,
          'taken': 1,
          'subsequently': 1,
          'commerical': 1,
          'nthis': 1,
          'already': 1,
          'problem': 1,
          'nthere': 1,
          'convicts': 1,
          'commercial': 1,
          'normal': 1,
          'passangers': 1,
          'nanyway': 1,
          'everyone': 1,
          'waiting': 1,
          'get': 1,
          'spend': 1,
          'nwell': 1,
          'manages': 1,
          'stop': 1,
          'proverbial': 1,
          'tracks': 1,
          'still': 1,
          'calm': 1,
          'takes': 1,
          'also': 1,
          'eyes': 1,
          'lauren': 1,
          'holly': 1,
          'attendent': 1,
          'seems': 1,
          'grow': 1,
          'closer': 1,
          'n': 1,
          'plot': 1,
          'stops': 1,
          'ni': 1,
          'didnt': 1,
          'seemed': 1,
          'rip': 1,
          'airplane': 1,
          'ive': 1,
          'nat': 1,
          'point': 1,
          'mr': 1,
          'looked': 1,
          'exactly': 1,
          'jack': 1,
          'nicholson': 1,
          'shining': 1,
          'serious': 1,
          'nit': 1,
          'stole': 1,
          'nthe': 1,
          'reason': 1,
          'give': 1,
          '0': 1,
          'stars': 1,
          'okay': 1,
          'stunts': 1,
          'ndont': 1,
          'even': 1,
          'bother': 1,
          'nneg': 1}),
 Counter({'blues': 8,
          'elwood': 8,
          'brothers': 7,
          'film': 5,
          'years': 4,
          'music': 4,
          'movie': 3,
          'musical': 3,
          'band': 3,
          'ago': 3,
          'passed': 3,
          'much': 3,
          'whole': 3,
          '2000': 2,
          'original': 2,
          'john': 2,
          'nearly': 2,
          'aykroyd': 2,
          'along': 2,
          'brother': 2,
          'family': 2,
          'seems': 2,
          'cab': 2,
          'also': 2,
          'around': 2,
          'buster': 2,
          'group': 2,
          'acting': 2,
          'funny': 2,
          'given': 2,
          'many': 2,
          'heavily': 2,
          'story': 2,
          'two': 2,
          'people': 2,
          'may': 2,
          'unfunny': 2,
          'musicians': 2,
          'actors': 2,
          'sort': 2,
          'really': 2,
          'kind': 2,
          'laced': 1,
          'good': 1,
          'blend': 1,
          'action': 1,
          'comedy': 1,
          'heavy': 1,
          'dose': 1,
          'celebrity': 1,
          'guest': 1,
          'appearances': 1,
          'sounds': 1,
          'pretty': 1,
          'gourmet': 1,
          'even': 1,
          'best': 1,
          'ingredients': 1,
          'thrown': 1,
          'together': 1,
          'wrong': 1,
          'way': 1,
          'creating': 1,
          'dismal': 1,
          'unsatisfactory': 1,
          'product': 1,
          'neighteen': 1,
          'hit': 1,
          'theaters': 1,
          'unleashed': 1,
          'minus': 1,
          'half': 1,
          'duo': 1,
          'late': 1,
          'belushi': 1,
          'charm': 1,
          'ndan': 1,
          'reprises': 1,
          'role': 1,
          'well': 1,
          'cowriting': 1,
          'credit': 1,
          'sharp': 1,
          'dressed': 1,
          'con': 1,
          'man': 1,
          'wreaked': 1,
          'havoc': 1,
          'selfproclaimed': 1,
          'mission': 1,
          'god': 1,
          'jake': 1,
          'eighteen': 1,
          'nas': 1,
          'begin': 1,
          'released': 1,
          'state': 1,
          'penitentiary': 1,
          'news': 1,
          'death': 1,
          'prison': 1,
          'ncompletely': 1,
          'decides': 1,
          'trace': 1,
          'roots': 1,
          'back': 1,
          'orphanage': 1,
          'spent': 1,
          'childhood': 1,
          'discover': 1,
          'everyone': 1,
          'ever': 1,
          'known': 1,
          'away': 1,
          'nbut': 1,
          'isnt': 1,
          'completely': 1,
          'without': 1,
          'nit': 1,
          'halfbrother': 1,
          'sorts': 1,
          'real': 1,
          'mind': 1,
          'illegitimate': 1,
          'child': 1,
          'bluesman': 1,
          'pseudofather': 1,
          'curtis': 1,
          'calloway': 1,
          'first': 1,
          'ndespite': 1,
          'inklings': 1,
          'mother': 1,
          'superior': 1,
          'mary': 1,
          'stigmata': 1,
          'kathleen': 1,
          'freeman': 1,
          'otherwise': 1,
          'seeks': 1,
          'remaining': 1,
          'effort': 1,
          'start': 1,
          'new': 1,
          'nworking': 1,
          'police': 1,
          'commander': 1,
          'cabel': 1,
          'chamberlain': 1,
          'joe': 1,
          'morton': 1,
          'immediate': 1,
          'disliking': 1,
          'nonchalantly': 1,
          'fills': 1,
          'mothers': 1,
          'affair': 1,
          'goes': 1,
          'steal': 1,
          'wallet': 1,
          'nfollowing': 1,
          'lonely': 1,
          'orphan': 1,
          'j': 1,
          'nevan': 1,
          'bonifant': 1,
          'quickly': 1,
          'learns': 1,
          'become': 1,
          'minielwood': 1,
          'nwhen': 1,
          'bartender': 1,
          'mighty': 1,
          'mack': 1,
          'mcteer': 1,
          'goodman': 1,
          'joins': 1,
          'complete': 1,
          'travels': 1,
          'country': 1,
          'crashing': 1,
          'cars': 1,
          'blowing': 1,
          'things': 1,
          'obstructing': 1,
          'peace': 1,
          'solid': 1,
          'rock': 1,
          'nmeanwhile': 1,
          'cabs': 1,
          'personal': 1,
          'vendetta': 1,
          'leads': 1,
          'impassioned': 1,
          'manhunt': 1,
          'nexttonextofkin': 1,
          'nfrom': 1,
          'point': 1,
          'turns': 1,
          'series': 1,
          'videos': 1,
          'bits': 1,
          'nthose': 1,
          'hoping': 1,
          'interesting': 1,
          'andor': 1,
          'yarn': 1,
          'interludes': 1,
          'interested': 1,
          'nonly': 1,
          'extremely': 1,
          'avid': 1,
          'fans': 1,
          'attempt': 1,
          'getting': 1,
          'thru': 1,
          'hours': 1,
          'nfor': 1,
          'worth': 1,
          'luckily': 1,
          'shoddy': 1,
          'attempts': 1,
          'intrude': 1,
          'upon': 1,
          'festivities': 1,
          'bogged': 1,
          'jokes': 1,
          'turned': 1,
          'stiff': 1,
          'pointless': 1,
          '10year': 1,
          'old': 1,
          'attempting': 1,
          'add': 1,
          'home': 1,
          'alone': 1,
          'cuteness': 1,
          'thing': 1,
          'nappearances': 1,
          'legends': 1,
          'aretha': 1,
          'franklin': 1,
          'james': 1,
          'brown': 1,
          'eric': 1,
          'clapton': 1,
          'slew': 1,
          'others': 1,
          'high': 1,
          'points': 1,
          'confirm': 1,
          'nblues': 1,
          'deserving': 1,
          'one': 1,
          'star': 1,
          'simply': 1,
          'love': 1,
          'might': 1,
          'like': 1,
          'nmany': 1,
          'scenes': 1,
          'nauseatingly': 1,
          'dont': 1,
          'passion': 1,
          'deep': 1,
          'bluesrock': 1,
          'youll': 1,
          'bored': 1,
          'skull': 1,
          'nmuch': 1,
          'nothing': 1,
          'aykroyds': 1,
          'selfserving': 1,
          'vanity': 1,
          'project': 1,
          'matter': 1,
          'fun': 1,
          'none': 1,
          'excitement': 1,
          'audience': 1,
          'nand': 1,
          'seeing': 1,
          'three': 1,
          'guys': 1,
          'threepiece': 1,
          'suits': 1,
          'goofily': 1,
          'dancing': 1,
          'poker': 1,
          'faces': 1,
          'long': 1,
          'nunfortunately': 1,
          'seconds': 1,
          'fifteen': 1,
          'minutes': 1,
          'nneg': 1}),
 Counter({'austin': 5,
          'powers': 5,
          'one': 4,
          'scene': 4,
          'dr': 4,
          'original': 3,
          'would': 3,
          'fact': 3,
          'played': 3,
          'myers': 3,
          'film': 3,
          'evil': 3,
          'make': 3,
          'spy': 2,
          'shagged': 2,
          'half': 2,
          'silly': 2,
          'nif': 2,
          'audience': 2,
          'filmmakers': 2,
          'mike': 2,
          'hear': 2,
          'alone': 2,
          'enough': 2,
          'time': 2,
          'back': 2,
          'movie': 2,
          'theres': 2,
          'minime': 2,
          'zany': 1,
          'totally': 1,
          'enjoyable': 1,
          'predecessor': 1,
          'easily': 1,
          'summers': 1,
          'biggest': 1,
          'pleasures': 1,
          'nin': 1,
          'exact': 1,
          'opposite': 1,
          'instead': 1,
          'refreshing': 1,
          'clever': 1,
          'parody': 1,
          'another': 1,
          'bombard': 1,
          'us': 1,
          'usedup': 1,
          'tired': 1,
          'jokes': 1,
          'taken': 1,
          'directly': 1,
          'first': 1,
          'ntake': 1,
          'fraction': 1,
          'giddy': 1,
          'enthusiasm': 1,
          'displayed': 1,
          'previously': 1,
          'confronts': 1,
          'henchmen': 1,
          'side': 1,
          'cliff': 1,
          'nafter': 1,
          'pushed': 1,
          'ravine': 1,
          'bad': 1,
          'guy': 1,
          'course': 1,
          'assumed': 1,
          'dead': 1,
          'nbut': 1,
          'suddenly': 1,
          'pleading': 1,
          'voice': 1,
          'coming': 1,
          'hes': 1,
          'injured': 1,
          'na': 1,
          'similar': 1,
          'well': 1,
          'international': 1,
          'man': 1,
          'mystery': 1,
          'insulted': 1,
          'ndid': 1,
          'really': 1,
          'believe': 1,
          'laugh': 1,
          'ripoff': 1,
          'napparently': 1,
          'overestimated': 1,
          'intelligence': 1,
          'average': 1,
          'moviegoer': 1,
          'considering': 1,
          'pulled': 1,
          '200': 1,
          'million': 1,
          'domestic': 1,
          'theatrical': 1,
          'grosses': 1,
          'ndo': 1,
          'sound': 1,
          'franchise': 1,
          'heading': 1,
          'way': 1,
          'nhaving': 1,
          'said': 1,
          'though': 1,
          'still': 1,
          'deny': 1,
          'merits': 1,
          'nthe': 1,
          'basic': 1,
          'plot': 1,
          'delightfully': 1,
          'sustain': 1,
          'interest': 1,
          'somewhat': 1,
          'second': 1,
          'three': 1,
          'roles': 1,
          'constructed': 1,
          'machine': 1,
          'goes': 1,
          'year': 1,
          '1969': 1,
          'attempt': 1,
          'snatch': 1,
          'mojo': 1,
          'dont': 1,
          'love': 1,
          'word': 1,
          'nwhilst': 1,
          'cryogenically': 1,
          'frozen': 1,
          'nwhen': 1,
          'gets': 1,
          'wind': 1,
          'great': 1,
          'intro': 1,
          'explaining': 1,
          'absence': 1,
          'elizabeth': 1,
          'hurleys': 1,
          'vanessa': 1,
          'kensington': 1,
          'travels': 1,
          'reclaim': 1,
          'sexual': 1,
          'drive': 1,
          'accompanied': 1,
          'hottotrot': 1,
          'felicity': 1,
          'shagwell': 1,
          'heather': 1,
          'graham': 1,
          'nthis': 1,
          'sounds': 1,
          'stupid': 1,
          'know': 1,
          'starts': 1,
          'kind': 1,
          'weird': 1,
          'offthewall': 1,
          'sense': 1,
          'worked': 1,
          'nthen': 1,
          'verne': 1,
          'troyer': 1,
          'npetite': 1,
          'clone': 1,
          'exactly': 1,
          '18': 1,
          'size': 1,
          'ntroyers': 1,
          'persona': 1,
          'gains': 1,
          'extra': 1,
          'halfstar': 1,
          'contributing': 1,
          'particularly': 1,
          'hilarious': 1,
          'attempts': 1,
          'nibble': 1,
          'minimr': 1,
          'nbigglesworth': 1,
          'njust': 1,
          'try': 1,
          'ignore': 1,
          '28': 1,
          'evils': 1,
          'height': 1,
          'rise': 1,
          '21': 1,
          'feet': 1,
          'nno': 1,
          'matter': 1,
          'nhowever': 1,
          'four': 1,
          'hearty': 1,
          'laughs': 1,
          'throughout': 1,
          'entire': 1,
          'hour': 1,
          'notable': 1,
          'infamous': 1,
          'tent': 1,
          'isnt': 1,
          'warrant': 1,
          'even': 1,
          'minor': 1,
          'recommendation': 1,
          '3': 1,
          'kill': 1,
          'secret': 1,
          'agent': 1,
          'put': 1,
          'emphasis': 1,
          'nunconventional': 1,
          'yes': 1,
          'denying': 1,
          'itd': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'erotic': 4,
          'film': 4,
          'mirkine': 3,
          'time': 3,
          'laurence': 3,
          'would': 3,
          'scenes': 3,
          'series': 2,
          'set': 2,
          'david': 2,
          'nelson': 2,
          'sanity': 2,
          'treill': 2,
          'nunfortunately': 2,
          'brosnan': 2,
          'make': 2,
          'thriller': 2,
          'slow': 2,
          'worth': 2,
          'thrillers': 1,
          'flooded': 1,
          'videoshelves': 1,
          'early': 1,
          '1990s': 1,
          'came': 1,
          'frenchcanadian': 1,
          'coproduction': 1,
          'max': 1,
          'fischer': 1,
          'nthe': 1,
          'movie': 1,
          'paris': 1,
          'hero': 1,
          'struggling': 1,
          'american': 1,
          'author': 1,
          'judd': 1,
          'specialised': 1,
          'playing': 1,
          'losers': 1,
          'people': 1,
          'edge': 1,
          'suffers': 1,
          'terrible': 1,
          'writers': 1,
          'bloc': 1,
          'nhe': 1,
          'manages': 1,
          'overcome': 1,
          'crisis': 1,
          'beginning': 1,
          'romantic': 1,
          'relationship': 1,
          'beautiful': 1,
          'model': 1,
          'anabelle': 1,
          'hangs': 1,
          'jet': 1,
          'circles': 1,
          'gradually': 1,
          'makes': 1,
          'pathologically': 1,
          'jealous': 1,
          'nher': 1,
          'connection': 1,
          'powerful': 1,
          'caravan': 1,
          'pierce': 1,
          'step': 1,
          'line': 1,
          'reason': 1,
          'put': 1,
          'motion': 1,
          'whole': 1,
          'violent': 1,
          'tragic': 1,
          'events': 1,
          'nalthough': 1,
          'pseudoerotic': 1,
          'elements': 1,
          'plot': 1,
          'indeed': 1,
          'drama': 1,
          'probably': 1,
          'appropriate': 1,
          'genre': 1,
          'label': 1,
          'npacing': 1,
          'simply': 1,
          'thrill': 1,
          'viewers': 1,
          'patient': 1,
          'enough': 1,
          'sit': 1,
          'entirety': 1,
          'wait': 1,
          'long': 1,
          'interesting': 1,
          'significant': 1,
          'developments': 1,
          'nlow': 1,
          'budget': 1,
          'also': 1,
          'becomes': 1,
          'painfully': 1,
          'visible': 1,
          'physical': 1,
          'attributes': 1,
          'thing': 1,
          'watching': 1,
          'little': 1,
          'supposedly': 1,
          'wanted': 1,
          'watch': 1,
          'reasons': 1,
          'feel': 1,
          'disappointed': 1,
          'ninstead': 1,
          'settle': 1,
          'pointless': 1,
          'involving': 1,
          'treills': 1,
          'attempts': 1,
          'serious': 1,
          'acting': 1,
          'nall': 1,
          'definitely': 1,
          'spending': 1,
          'hour': 1,
          'half': 1,
          'someones': 1,
          'precious': 1,
          'nneg': 1}),
 Counter({'review': 7,
          'n': 4,
          'want': 3,
          'film': 3,
          'write': 2,
          'action': 2,
          'bait': 2,
          'audience': 2,
          'something': 2,
          'waste': 2,
          'time': 2,
          'reviews': 2,
          'movies': 2,
          'ni': 2,
          'think': 2,
          'quotes': 2,
          'take': 2,
          'nits': 2,
          'bad': 2,
          'watch': 2,
          'right': 2,
          'plays': 2,
          'films': 2,
          'characters': 2,
          'case': 2,
          'playing': 2,
          'sit': 1,
          'computer': 1,
          'recent': 1,
          'comedy': 1,
          'starring': 1,
          'jamie': 1,
          'foxx': 1,
          'david': 1,
          'morse': 1,
          'nthis': 1,
          'dont': 1,
          'even': 1,
          'id': 1,
          'laying': 1,
          'criticisms': 1,
          'would': 1,
          'sogenericandpredictableitsbeyondridiculous': 1,
          'piece': 1,
          'hollywood': 1,
          'fluff': 1,
          'nif': 1,
          'theyre': 1,
          'going': 1,
          'give': 1,
          'us': 1,
          'little': 1,
          'credit': 1,
          'put': 1,
          'together': 1,
          'half': 1,
          'brain': 1,
          'mental': 1,
          'energy': 1,
          'criticising': 1,
          'nlast': 1,
          'summer': 1,
          'took': 1,
          'approach': 1,
          'mummy': 1,
          'quoted': 1,
          'phrases': 1,
          'subpar': 1,
          'shall': 1,
          'thing': 1,
          'less': 1,
          'applicable': 1,
          'hope': 1,
          'goes': 1,
          'show': 1,
          'find': 1,
          'need': 1,
          'know': 1,
          'without': 1,
          'wild': 1,
          'guess': 1,
          'genuinely': 1,
          'unfunny': 1,
          'members': 1,
          'laughed': 1,
          'entire': 1,
          'two': 1,
          'hours': 1,
          'unoriginal': 1,
          'unthrilling': 1,
          'point': 1,
          'fun': 1,
          'badness': 1,
          'absolute': 1,
          'loathe': 1,
          'pained': 1,
          'watching': 1,
          'cliche': 1,
          'uhh': 1,
          'nlost': 1,
          'train': 1,
          'thought': 1,
          'nanyways': 1,
          'heres': 1,
          'enjoy': 1,
          'getting': 1,
          'audiences': 1,
          'attention': 1,
          'beginning': 1,
          'major': 1,
          'role': 1,
          'todays': 1,
          'work': 1,
          'nwe': 1,
          'exciting': 1,
          'slow': 1,
          'buildup': 1,
          'story': 1,
          'god': 1,
          'forbid': 1,
          'mainstreams': 1,
          'hands': 1,
          'armageddon': 1,
          'clear': 1,
          'doesnt': 1,
          'reality': 1,
          'thus': 1,
          'attempt': 1,
          'establish': 1,
          'plausability': 1,
          'minimal': 1,
          'amount': 1,
          'necessary': 1,
          'comes': 1,
          'across': 1,
          'halfassed': 1,
          'effort': 1,
          'nsupporting': 1,
          'shady': 1,
          'supplots': 1,
          'introduced': 1,
          'made': 1,
          'large': 1,
          'cast': 1,
          'handful': 1,
          'real': 1,
          'significance': 1,
          'ntheres': 1,
          'fine': 1,
          'line': 1,
          'separating': 1,
          'homage': 1,
          'plagiarism': 1,
          'godzilla': 1,
          '1998': 1,
          'unfortunately': 1,
          'modern': 1,
          'thrillers': 1,
          'showed': 1,
          'potential': 1,
          'authenticity': 1,
          'intelligence': 1,
          'cliches': 1,
          'sequences': 1,
          'jackal': 1,
          'nchadz': 1,
          'movie': 1,
          'page': 1,
          'back': 1,
          'heavy': 1,
          'renovation': 1,
          'nreviews': 1,
          'nearly': 1,
          'mainstream': 1,
          'today': 1,
          'nget': 1,
          'everything': 1,
          'local': 1,
          'cineplex': 1,
          'better': 1,
          'make': 1,
          'informed': 1,
          'decision': 1,
          'see': 1,
          'ndont': 1,
          'forget': 1,
          'vote': 1,
          'poll': 1,
          'sign': 1,
          'guestbook': 1,
          'nneg': 1}),
 Counter({'like': 7,
          'simply': 6,
          'irresistible': 6,
          'much': 4,
          'gellar': 3,
          'amanda': 3,
          'tom': 3,
          'water': 3,
          'go': 3,
          'finds': 2,
          'plays': 2,
          'though': 2,
          'would': 2,
          'movie': 2,
          'n': 2,
          'telekinetic': 2,
          'crab': 2,
          'one': 2,
          'best': 2,
          'fred': 2,
          'ginger': 2,
          'part': 2,
          'going': 2,
          'nin': 2,
          'fact': 2,
          'ever': 2,
          'anywhere': 2,
          'tvs': 1,
          'buffy': 1,
          'side': 1,
          'supernatural': 1,
          'spectrum': 1,
          'nsarah': 1,
          'michelle': 1,
          'neverceasing': 1,
          'crusader': 1,
          'neverending': 1,
          'evil': 1,
          'every': 1,
          'tuesday': 1,
          'night': 1,
          'wb': 1,
          'network': 1,
          'downonherluck': 1,
          'chef': 1,
          'suspected': 1,
          'dabbling': 1,
          'witchcraft': 1,
          'flailing': 1,
          'restaurant': 1,
          'receives': 1,
          'help': 1,
          'form': 1,
          'magically': 1,
          'scrumptious': 1,
          'meals': 1,
          'ntaste': 1,
          'test': 1,
          'results': 1,
          'vampire': 1,
          'slaying': 1,
          'place': 1,
          'really': 1,
          'livened': 1,
          'excruciating': 1,
          'actually': 1,
          'quite': 1,
          'easy': 1,
          'deny': 1,
          'disaster': 1,
          'culinary': 1,
          'proportions': 1,
          'pretty': 1,
          'opening': 1,
          'ngellars': 1,
          'falling': 1,
          'harried': 1,
          'henri': 1,
          'bendel': 1,
          'exec': 1,
          'sean': 1,
          'patrick': 1,
          'flannery': 1,
          'powder': 1,
          'around': 1,
          'time': 1,
          'discovers': 1,
          'uncanny': 1,
          'ability': 1,
          'mystically': 1,
          'manifest': 1,
          'emotions': 1,
          'cooking': 1,
          'secret': 1,
          'ingredient': 1,
          'arouses': 1,
          'interest': 1,
          'publics': 1,
          'tiny': 1,
          'tribeca': 1,
          'eatery': 1,
          'nall': 1,
          'love': 1,
          'sorcery': 1,
          'lot': 1,
          'also': 1,
          'figures': 1,
          'story': 1,
          'tale': 1,
          'times': 1,
          'american': 1,
          'spin': 1,
          '1993s': 1,
          'mexican': 1,
          'classic': 1,
          'chocolate': 1,
          'nseveral': 1,
          'differences': 1,
          'didnt': 1,
          'two': 1,
          'good': 1,
          'film': 1,
          'hand': 1,
          'challenging': 1,
          'easybake': 1,
          'oven': 1,
          'namateurishly': 1,
          'staged': 1,
          'scenes': 1,
          'cancel': 1,
          'badness': 1,
          'embarrassing': 1,
          'seduction': 1,
          'literal': 1,
          'vanilla': 1,
          'fog': 1,
          'impromptu': 1,
          'dance': 1,
          'sequence': 1,
          'never': 1,
          'took': 1,
          'anything': 1,
          'garish': 1,
          'nthe': 1,
          'intrusive': 1,
          'musical': 1,
          'score': 1,
          'distracts': 1,
          'flat': 1,
          'dialogue': 1,
          'regular': 1,
          'intervals': 1,
          'youre': 1,
          'miss': 1,
          'take': 1,
          'away': 1,
          'instances': 1,
          'salty': 1,
          'language': 1,
          'madefordisney': 1,
          'channel': 1,
          'written': 1,
          'nbut': 1,
          'majority': 1,
          'resistibility': 1,
          'factor': 1,
          'less': 1,
          'aforementioned': 1,
          'overkill': 1,
          'bland': 1,
          'leads': 1,
          'thin': 1,
          'ambiguously': 1,
          'defined': 1,
          'theres': 1,
          'fun': 1,
          'rooting': 1,
          'inevitable': 1,
          'happily': 1,
          'nnor': 1,
          'otherworldly': 1,
          'powers': 1,
          'serve': 1,
          'bring': 1,
          'together': 1,
          'make': 1,
          'sense': 1,
          'left': 1,
          'hohum': 1,
          'relationship': 1,
          'based': 1,
          'enchanted': 1,
          'eclairs': 1,
          'last': 1,
          'long': 1,
          'people': 1,
          'nperhaps': 1,
          'sensing': 1,
          'filmmakers': 1,
          'piled': 1,
          'weird': 1,
          'supporting': 1,
          'characters': 1,
          'acting': 1,
          'vets': 1,
          'betty': 1,
          'buckley': 1,
          'dylan': 1,
          'baker': 1,
          'patricia': 1,
          'clarkson': 1,
          'dont': 1,
          'either': 1,
          'nothing': 1,
          'goes': 1,
          'save': 1,
          'doesnt': 1,
          'somewhere': 1,
          'wish': 1,
          'shed': 1,
          '_somewhere_': 1,
          'better': 1,
          'nalready': 1,
          'proving': 1,
          'major': 1,
          'talent': 1,
          'relatively': 1,
          'big': 1,
          'smallscreen': 1,
          'roles': 1,
          'shes': 1,
          'sole': 1,
          'reason': 1,
          'overcooked': 1,
          'souffle': 1,
          'isnt': 1,
          'completely': 1,
          'fit': 1,
          'garbage': 1,
          'disposal': 1,
          'looking': 1,
          'smashing': 1,
          'todd': 1,
          'oldhamdesigned': 1,
          'duds': 1,
          'investing': 1,
          'perfunctory': 1,
          'gets': 1,
          'return': 1,
          'nits': 1,
          'certainly': 1,
          'dish': 1,
          'served': 1,
          'current': 1,
          'condition': 1,
          'guess': 1,
          'without': 1,
          'strictly': 1,
          'unwatchable': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'warrior': 4,
          'nthe': 4,
          '13th': 3,
          'banderas': 3,
          'men': 3,
          'numerous': 3,
          'acting': 2,
          'best': 2,
          'would': 2,
          'credits': 2,
          'moment': 2,
          'goes': 2,
          'ending': 2,
          'warriors': 2,
          'join': 2,
          '13': 2,
          'man': 2,
          'line': 2,
          'nunfortunately': 2,
          'makes': 2,
          'like': 2,
          'one': 2,
          'help': 2,
          'reeks': 1,
          'badly': 1,
          'melodrama': 1,
          'poor': 1,
          'carries': 1,
          'worst': 1,
          'scent': 1,
          'canines': 1,
          'least': 1,
          'appetizing': 1,
          'residue': 1,
          'part': 1,
          'close': 1,
          'contest': 1,
          'closing': 1,
          'brief': 1,
          'middle': 1,
          'screen': 1,
          'entirely': 1,
          'white': 1,
          'hope': 1,
          'slipped': 1,
          'caught': 1,
          'ablaze': 1,
          'projector': 1,
          'nmy': 1,
          'vote': 1,
          'start': 1,
          'trying': 1,
          'put': 1,
          'awful': 1,
          'experience': 1,
          'behind': 1,
          'nibn': 1,
          'fahdlan': 1,
          'antonio': 1,
          'important': 1,
          'official': 1,
          'banished': 1,
          'home': 1,
          'sleeping': 1,
          'another': 1,
          'mans': 1,
          'wife': 1,
          'nhe': 1,
          'encounters': 1,
          'group': 1,
          'norse': 1,
          'convince': 1,
          'mysterious': 1,
          'journey': 1,
          'taken': 1,
          'nfahdlan': 1,
          'chosen': 1,
          'last': 1,
          'desperately': 1,
          'overacted': 1,
          'overdone': 1,
          'persons': 1,
          'screening': 1,
          'attended': 1,
          'broke': 1,
          'laughter': 1,
          'movie': 1,
          'proves': 1,
          'new': 1,
          'low': 1,
          'point': 1,
          'whos': 1,
          'seems': 1,
          'closer': 1,
          'role': 1,
          'lover': 1,
          'caretaker': 1,
          'dying': 1,
          'gay': 1,
          '1993s': 1,
          'philadelphia': 1,
          'nin': 1,
          'films': 1,
          'supposed': 1,
          'pay': 1,
          'scene': 1,
          'exclaims': 1,
          'wrong': 1,
          'na': 1,
          'intended': 1,
          'memorable': 1,
          'quote': 1,
          'production': 1,
          'delivers': 1,
          'fashion': 1,
          'chevy': 1,
          'chases': 1,
          'career': 1,
          'look': 1,
          'oscar': 1,
          'material': 1,
          'based': 1,
          'michael': 1,
          'crichtons': 1,
          'selling': 1,
          'novel': 1,
          'eaters': 1,
          'dead': 1,
          'shot': 1,
          'name': 1,
          'three': 1,
          'years': 1,
          'ago': 1,
          'rewrites': 1,
          'dialogue': 1,
          'seem': 1,
          'completely': 1,
          'phony': 1,
          'plot': 1,
          'incredibly': 1,
          'difficult': 1,
          'follow': 1,
          'nat': 1,
          'time': 1,
          'think': 1,
          'questions': 1,
          'nquestions': 1,
          'characters': 1,
          'always': 1,
          'perfect': 1,
          'lighting': 1,
          'even': 1,
          'pitch': 1,
          'dark': 1,
          'n': 1,
          'ever': 1,
          'blood': 1,
          'cover': 1,
          'sides': 1,
          'face': 1,
          'rather': 1,
          'side': 1,
          'nand': 1,
          'finally': 1,
          'manager': 1,
          'give': 1,
          'refund': 1,
          'n90': 1,
          'minutes': 1,
          '103': 1,
          'minute': 1,
          'invites': 1,
          'come': 1,
          'woman': 1,
          'nothing': 1,
          'could': 1,
          'appropriate': 1,
          'hands': 1,
          'form': 1,
          'chorus': 1,
          'break': 1,
          'rendition': 1,
          'springtime': 1,
          'hitler': 1,
          'nneg': 1}),
 Counter({'though': 2,
          'epic': 2,
          'michael': 2,
          'douglas': 2,
          'lion': 2,
          'movie': 2,
          'even': 2,
          'ive': 1,
          'heard': 1,
          'called': 1,
          'jaws': 1,
          'claws': 1,
          'thats': 1,
          'fair': 1,
          'summation': 1,
          'plot': 1,
          'tag': 1,
          'line': 1,
          'little': 1,
          'quantify': 1,
          'quality': 1,
          'ndirector': 1,
          'stephen': 1,
          'hopkins': 1,
          'blown': 1,
          'away': 1,
          'predator': 1,
          '2': 1,
          'screenwriter': 1,
          'william': 1,
          'goldman': 1,
          'maverick': 1,
          'misery': 1,
          'would': 1,
          'believe': 1,
          'historical': 1,
          'drama': 1,
          'man': 1,
          'nature': 1,
          'based': 1,
          'really': 1,
          'happened': 1,
          'africa': 1,
          'railroad': 1,
          'workers': 1,
          'trying': 1,
          'build': 1,
          'bridge': 1,
          '20th': 1,
          'century': 1,
          'ntheyve': 1,
          'stacked': 1,
          'deck': 1,
          'two': 1,
          'big': 1,
          'stars': 1,
          'val': 1,
          'kilmer': 1,
          'bigger': 1,
          'production': 1,
          'design': 1,
          'beautiful': 1,
          'photography': 1,
          'academy': 1,
          'award': 1,
          'winner': 1,
          'vilmos': 1,
          'zsigmond': 1,
          'score': 1,
          'overblown': 1,
          'makes': 1,
          'king': 1,
          'soundtrack': 1,
          'sound': 1,
          'like': 1,
          'chamber': 1,
          'music': 1,
          'nthe': 1,
          'doesnt': 1,
          'make': 1,
          'lick': 1,
          'sense': 1,
          'either': 1,
          'basic': 1,
          'boofest': 1,
          'nin': 1,
          'fact': 1,
          'bits': 1,
          'laughably': 1,
          'ludicrous': 1,
          'may': 1,
          'think': 1,
          'youve': 1,
          'stumbled': 1,
          'sequel': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000': 1,
          'nhow': 1,
          'three': 1,
          'guys': 1,
          'rifles': 1,
          'trap': 1,
          'cant': 1,
          'hit': 1,
          'damned': 1,
          'thing': 1,
          'hamonwry': 1,
          'acting': 1,
          'chews': 1,
          'scenery': 1,
          'animals': 1,
          'ever': 1,
          'favorite': 1,
          'lions': 1,
          'agile': 1,
          'climb': 1,
          'onto': 1,
          'rooftops': 1,
          'nneg': 1}),
 Counter({'nbut': 4,
          'giant': 4,
          'billy': 3,
          'crystal': 3,
          'sammy': 3,
          'max': 3,
          'actor': 3,
          'pathetic': 3,
          'yet': 2,
          'concept': 2,
          'comedy': 2,
          'nhe': 2,
          'tries': 2,
          'life': 2,
          'gets': 2,
          'bogged': 2,
          'nsammy': 2,
          'nhes': 2,
          'muresan': 2,
          'lilianna': 2,
          'america': 2,
          'back': 2,
          'nand': 2,
          'job': 2,
          'nthe': 2,
          'isnt': 2,
          'films': 2,
          'best': 2,
          'much': 2,
          'steven': 2,
          'seagal': 2,
          'accent': 2,
          'doesnt': 2,
          'reappears': 1,
          'another': 1,
          'high': 1,
          'infuse': 1,
          'sentimentality': 1,
          'lack': 1,
          'sophistication': 1,
          'struggling': 1,
          'agent': 1,
          'end': 1,
          'ropes': 1,
          'separated': 1,
          'wife': 1,
          'serena': 1,
          'kathleen': 1,
          'quinlan': 1,
          'last': 1,
          'serious': 1,
          'client': 1,
          'lowbudget': 1,
          'film': 1,
          'shooting': 1,
          'romania': 1,
          'turn': 1,
          'bad': 1,
          'luck': 1,
          'wrecks': 1,
          'car': 1,
          'nto': 1,
          'mysteriously': 1,
          'saved': 1,
          'gheorghe': 1,
          'heart': 1,
          'gold': 1,
          'leads': 1,
          'solitary': 1,
          'helping': 1,
          'monks': 1,
          'local': 1,
          'monastery': 1,
          'nhis': 1,
          'longing': 1,
          'long': 1,
          'lost': 1,
          'love': 1,
          'joanna': 1,
          'pacula': 1,
          'since': 1,
          'moved': 1,
          'seeing': 1,
          'golden': 1,
          'ticket': 1,
          'convinces': 1,
          'become': 1,
          'represented': 1,
          'course': 1,
          'come': 1,
          'sam': 1,
          'bounce': 1,
          'dangling': 1,
          'meeting': 1,
          'carrot': 1,
          'maxs': 1,
          'nose': 1,
          'slowly': 1,
          'sammys': 1,
          'deceptions': 1,
          'begin': 1,
          'haunt': 1,
          'develop': 1,
          'conscience': 1,
          'innocent': 1,
          'becomes': 1,
          'disillusioned': 1,
          'humor': 1,
          'worlds': 1,
          'greatest': 1,
          'nmostly': 1,
          'falls': 1,
          'category': 1,
          'boy': 1,
          'hes': 1,
          'nso': 1,
          'big': 1,
          'go': 1,
          'far': 1,
          'matter': 1,
          'hard': 1,
          'talent': 1,
          'nstill': 1,
          'slightly': 1,
          'amusing': 1,
          'parts': 1,
          'longed': 1,
          'movie': 1,
          'sappy': 1,
          'moments': 1,
          'moment': 1,
          'thats': 1,
          'saying': 1,
          'bit': 1,
          'part': 1,
          'playing': 1,
          'nbetween': 1,
          'executive': 1,
          'decision': 1,
          'seagals': 1,
          'roles': 1,
          'cameos': 1,
          'nmaybe': 1,
          'consider': 1,
          'change': 1,
          'work': 1,
          'character': 1,
          'ngheorghe': 1,
          'natural': 1,
          'thick': 1,
          'cottonmouthed': 1,
          'certainly': 1,
          'help': 1,
          'nin': 1,
          'fact': 1,
          'thing': 1,
          'adds': 1,
          'role': 1,
          'immense': 1,
          'stature': 1,
          'noriginally': 1,
          'designed': 1,
          'several': 1,
          'years': 1,
          'ago': 1,
          'andre': 1,
          'nandre': 1,
          'also': 1,
          'hefty': 1,
          'displayed': 1,
          'knack': 1,
          'princess': 1,
          'bride': 1,
          'something': 1,
          'nmuresan': 1,
          'studied': 1,
          'pointers': 1,
          'nwhy': 1,
          'continually': 1,
          'get': 1,
          'caught': 1,
          'comedies': 1,
          'proven': 1,
          'funnier': 1,
          'formulaic': 1,
          'allow': 1,
          'like': 1,
          'glutton': 1,
          'punishment': 1,
          'keeps': 1,
          'coming': 1,
          'nthat': 1,
          'mean': 1,
          'nneg': 1}),
 Counter({'planet': 3,
          'nthe': 3,
          'nin': 2,
          'red': 2,
          'film': 2,
          'ship': 2,
          'time': 2,
          'could': 2,
          'waiting': 2,
          'movies': 1,
          'two': 1,
          'big': 1,
          'es': 1,
          'well': 1,
          'educate': 1,
          'entertain': 1,
          'best': 1,
          'possible': 1,
          'worlds': 1,
          'accomplish': 1,
          'non': 1,
          'fail': 1,
          'entirely': 1,
          'near': 1,
          'future': 1,
          'manned': 1,
          'mission': 1,
          'sent': 1,
          'mars': 1,
          'observe': 1,
          'primitive': 1,
          'plant': 1,
          'growth': 1,
          'nthis': 1,
          'remarkable': 1,
          'job': 1,
          'demonstrating': 1,
          'exactly': 1,
          'exciting': 1,
          'watching': 1,
          'algae': 1,
          'grow': 1,
          'would': 1,
          'nafter': 1,
          'mumbojumbo': 1,
          'ecological': 1,
          'disaster': 1,
          'earth': 1,
          'interminable': 1,
          'wait': 1,
          'reach': 1,
          'fourth': 1,
          'falls': 1,
          'apart': 1,
          'almost': 1,
          'fast': 1,
          'movie': 1,
          'ground': 1,
          'crew': 1,
          'people': 1,
          'couldnt': 1,
          'care': 1,
          'less': 1,
          'trapped': 1,
          'surface': 1,
          'without': 1,
          'food': 1,
          'water': 1,
          'air': 1,
          'stalked': 1,
          'deadly': 1,
          'rogue': 1,
          'cyberdog': 1,
          'one': 1,
          'potentially': 1,
          'interesting': 1,
          'character': 1,
          'carrieanne': 1,
          'moss': 1,
          'spends': 1,
          'alone': 1,
          'orbiting': 1,
          'talking': 1,
          'computer': 1,
          'nattempting': 1,
          'graft': 1,
          '2001': 1,
          'esque': 1,
          'space': 1,
          'mysticism': 1,
          'terminator': 1,
          'robot': 1,
          'horror': 1,
          'first': 1,
          'director': 1,
          'antony': 1,
          'hoffman': 1,
          'cant': 1,
          'seem': 1,
          'figure': 1,
          'whats': 1,
          'going': 1,
          'nneither': 1,
          'ndidnt': 1,
          'anyone': 1,
          'step': 1,
          'back': 1,
          'shooting': 1,
          'make': 1,
          'sure': 1,
          'coherent': 1,
          'story': 1,
          'ncouldnt': 1,
          'used': 1,
          'money': 1,
          'saved': 1,
          'pay': 1,
          'half': 1,
          'dozen': 1,
          'actors': 1,
          'hire': 1,
          'scriptwriter': 1,
          'nthere': 1,
          'many': 1,
          'missteps': 1,
          'nevery': 1,
          'opportunity': 1,
          'create': 1,
          'dynamic': 1,
          'tension': 1,
          'thwarted': 1,
          'plot': 1,
          'holes': 1,
          'lackluster': 1,
          'direction': 1,
          'nwhy': 1,
          'introduce': 1,
          'theme': 1,
          'faith': 1,
          'vs': 1,
          'science': 1,
          'crewman': 1,
          'comment': 1,
          'disappears': 1,
          'early': 1,
          'die': 1,
          '_offscreen_': 1,
          'audience': 1,
          'begins': 1,
          'something': 1,
          'happen': 1,
          'ntwo': 1,
          'hours': 1,
          'later': 1,
          'theyre': 1,
          'still': 1,
          'ndespite': 1,
          'greatest': 1,
          'hopes': 1,
          'life': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'nthey': 7,
          'na': 5,
          'woody': 5,
          'wesley': 5,
          'train': 4,
          'seen': 4,
          'interesting': 4,
          'nthe': 4,
          'n': 4,
          'even': 3,
          'nits': 3,
          'time': 3,
          'kid': 3,
          'money': 3,
          'token': 3,
          'nive': 3,
          'fuck': 3,
          'stupid': 2,
          'doesnt': 2,
          'enjoyable': 2,
          'would': 2,
          'one': 2,
          'movies': 2,
          'simply': 2,
          'better': 2,
          'waste': 2,
          'police': 2,
          'job': 2,
          'id': 2,
          'running': 2,
          'nthen': 2,
          'enough': 2,
          'work': 2,
          'case': 2,
          'two': 2,
          'subplot': 2,
          'minute': 2,
          'get': 2,
          'exist': 2,
          'like': 2,
          'mess': 2,
          'genuine': 2,
          'tried': 2,
          'pitch': 2,
          'capsule': 1,
          'insult': 1,
          'incompetent': 1,
          'benefit': 1,
          'trashily': 1,
          'nweslely': 1,
          'well': 1,
          'leave': 1,
          'resumes': 1,
          'nmoney': 1,
          'worst': 1,
          'ever': 1,
          'idiotic': 1,
          'contemptuous': 1,
          'audience': 1,
          'nit': 1,
          'tries': 1,
          'make': 1,
          'us': 1,
          'swallow': 1,
          'things': 1,
          'stopped': 1,
          'cold': 1,
          'plain': 1,
          'omit': 1,
          'entirely': 1,
          'snipes': 1,
          'harrelson': 1,
          'actors': 1,
          'rights': 1,
          'nauseating': 1,
          'fun': 1,
          'trash': 1,
          'nwoody': 1,
          'star': 1,
          'maybe': 1,
          'thats': 1,
          'right': 1,
          'word': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'transit': 1,
          'authority': 1,
          'could': 1,
          'actually': 1,
          'core': 1,
          'really': 1,
          'plays': 1,
          'drunk': 1,
          'possum': 1,
          'attract': 1,
          'chainsnatchers': 1,
          'lookout': 1,
          'ni': 1,
          'whole': 1,
          'headful': 1,
          'legal': 1,
          'ethical': 1,
          'questions': 1,
          'surrounding': 1,
          'raised': 1,
          'documentary': 1,
          'subject': 1,
          'intelligent': 1,
          'thoughtprovoking': 1,
          'nsee': 1,
          'follow': 1,
          'chase': 1,
          'tunnel': 1,
          'station': 1,
          'heavily': 1,
          'armored': 1,
          'car': 1,
          'picks': 1,
          'cash': 1,
          'books': 1,
          'parked': 1,
          'guards': 1,
          'see': 1,
          'lift': 1,
          'machine': 1,
          'guns': 1,
          'shout': 1,
          'halt': 1,
          'nand': 1,
          'open': 1,
          'fire': 1,
          'stop': 1,
          'nblam': 1,
          'kids': 1,
          'dead': 1,
          'show': 1,
          'course': 1,
          'ta': 1,
          'cops': 1,
          'hate': 1,
          'pushing': 1,
          'match': 1,
          'starts': 1,
          'someone': 1,
          'gets': 1,
          'decked': 1,
          'covered': 1,
          'face': 1,
          'nid': 1,
          'never': 1,
          'hard': 1,
          'little': 1,
          'destroy': 1,
          'systematically': 1,
          'chance': 1,
          'credible': 1,
          'nfed': 1,
          'bs': 1,
          'goddamned': 1,
          'fault': 1,
          'hatch': 1,
          'plot': 1,
          'rob': 1,
          'nhence': 1,
          'title': 1,
          'didnt': 1,
          'figure': 1,
          'yet': 1,
          'theres': 1,
          'maniac': 1,
          'torches': 1,
          'book': 1,
          'clerks': 1,
          'love': 1,
          'story': 1,
          'holdup': 1,
          'holdups': 1,
          'sorry': 1,
          'easy': 1,
          'lose': 1,
          'track': 1,
          'braindead': 1,
          'mob': 1,
          'boss': 1,
          'wants': 1,
          'nthere': 1,
          'wasnt': 1,
          'gave': 1,
          'horses': 1,
          'ass': 1,
          'nneither': 1,
          'play': 1,
          'characters': 1,
          'single': 1,
          'nwe': 1,
          'care': 1,
          'noisy': 1,
          'loud': 1,
          'foolish': 1,
          'jerks': 1,
          'whould': 1,
          'flunked': 1,
          'academy': 1,
          'deserve': 1,
          'shot': 1,
          'run': 1,
          'may': 1,
          'rehash': 1,
          'kind': 1,
          'dynamics': 1,
          'written': 1,
          'white': 1,
          'men': 1,
          'cant': 1,
          'jump': 1,
          'idiots': 1,
          'expected': 1,
          'root': 1,
          'nbullcrap': 1,
          'completely': 1,
          'schizophrenic': 1,
          'tone': 1,
          'texture': 1,
          'nwhat': 1,
          'exactly': 1,
          'cop': 1,
          'npolice': 1,
          'procedure': 1,
          'given': 1,
          'moments': 1,
          'thought': 1,
          'anywhere': 1,
          'thriller': 1,
          'booth': 1,
          'killer': 1,
          'inept': 1,
          'throwaway': 1,
          'ditched': 1,
          'rewrite': 1,
          'comedy': 1,
          'jokes': 1,
          'wasted': 1,
          'drama': 1,
          'nall': 1,
          'dramatic': 1,
          'tension': 1,
          'principals': 1,
          'freezedried': 1,
          'offtherack': 1,
          'ntheres': 1,
          'moment': 1,
          'felt': 1,
          'listening': 1,
          'human': 1,
          'beings': 1,
          'talk': 1,
          'screenwriterese': 1,
          'bizarre': 1,
          'analect': 1,
          'every': 1,
          'sentence': 1,
          'ends': 1,
          'punchline': 1,
          'primary': 1,
          'mode': 1,
          'expression': 1,
          'unique': 1,
          'conjunctions': 1,
          'fourletter': 1,
          'words': 1,
          'actual': 1,
          'dialogue': 1,
          'excerpt': 1,
          'heard': 1,
          'nlook': 1,
          'ill': 1,
          'honest': 1,
          'writing': 1,
          'screenplays': 1,
          'suspect': 1,
          'laughed': 1,
          'office': 1,
          'nanyone': 1,
          'interested': 1,
          'hearing': 1,
          'ideas': 1,
          'good': 1,
          'write': 1,
          'hear': 1,
          'god': 1,
          'knows': 1,
          'know': 1,
          'weasted': 1,
          'piece': 1,
          'tripe': 1,
          'nneg': 1}),
 Counter({'one': 4,
          'get': 4,
          'dumas': 3,
          'musketeers': 3,
          'dartagnan': 3,
          'roth': 3,
          'nthe': 3,
          'works': 2,
          'reason': 2,
          'story': 2,
          'musketeer': 2,
          'film': 2,
          'nits': 2,
          'awful': 2,
          'classic': 2,
          'action': 2,
          'sequences': 2,
          'time': 2,
          'cant': 2,
          'febre': 2,
          'richelieu': 2,
          'fight': 2,
          'deneuve': 2,
          'suvari': 2,
          'nothing': 2,
          'least': 2,
          'sense': 2,
          'felt': 2,
          'though': 2,
          'every': 2,
          'alexander': 1,
          'three': 1,
          'oftenadapted': 1,
          'literary': 1,
          'good': 1,
          'swashbuckler': 1,
          'legend': 1,
          'rather': 1,
          'nperhaps': 1,
          'new': 1,
          'reimagines': 1,
          'novel': 1,
          'spirit': 1,
          'style': 1,
          'matrix': 1,
          'adaptation': 1,
          'many': 1,
          'spiritless': 1,
          'silly': 1,
          'unforgivably': 1,
          'boring': 1,
          'transforming': 1,
          'timeless': 1,
          'mishmash': 1,
          'oldastime': 1,
          'clich': 1,
          'incoherent': 1,
          'repetitive': 1,
          'nthis': 1,
          'played': 1,
          'calvin': 1,
          'klein': 1,
          'model': 1,
          'justin': 1,
          'chambers': 1,
          'even': 1,
          'pronounce': 1,
          'characters': 1,
          'name': 1,
          'nas': 1,
          'boy': 1,
          'watched': 1,
          'father': 1,
          'killed': 1,
          'tim': 1,
          'lackey': 1,
          'powerhungry': 1,
          'cardinal': 1,
          'nhe': 1,
          'vowed': 1,
          'vengeance': 1,
          'nafter': 1,
          'undergoing': 1,
          'intense': 1,
          'training': 1,
          'expert': 1,
          'swordsman': 1,
          'goes': 1,
          'looking': 1,
          'enemy': 1,
          'non': 1,
          'quest': 1,
          'embroils': 1,
          'struggle': 1,
          'control': 1,
          'highest': 1,
          'levels': 1,
          'french': 1,
          'government': 1,
          'royal': 1,
          'lost': 1,
          'gusto': 1,
          'jobs': 1,
          'taken': 1,
          'cardinals': 1,
          'guards': 1,
          'nonly': 1,
          'loyal': 1,
          'swashbuckers': 1,
          'remain': 1,
          'among': 1,
          'athos': 1,
          'portos': 1,
          'figureheads': 1,
          'movie': 1,
          'ntogether': 1,
          'extricate': 1,
          'queen': 1,
          'catherine': 1,
          'traps': 1,
          'trying': 1,
          'plant': 1,
          'noh': 1,
          'afterthought': 1,
          'falls': 1,
          'love': 1,
          'poor': 1,
          'maid': 1,
          'local': 1,
          'inn': 1,
          'mena': 1,
          'njust': 1,
          'thought': 1,
          'id': 1,
          'mention': 1,
          'nnow': 1,
          'look': 1,
          'dont': 1,
          'know': 1,
          'whose': 1,
          'idea': 1,
          'whoever': 1,
          'responsible': 1,
          'deserves': 1,
          'severe': 1,
          'tonguelashing': 1,
          'ni': 1,
          'modernizing': 1,
          'literature': 1,
          'inspire': 1,
          'viewers': 1,
          'actually': 1,
          'read': 1,
          'book': 1,
          'films': 1,
          'dull': 1,
          'positive': 1,
          'side': 1,
          'effects': 1,
          'ndirector': 1,
          'peter': 1,
          'hyams': 1,
          'known': 1,
          'masterpieces': 1,
          'modern': 1,
          'cinema': 1,
          'timecop': 1,
          'end': 1,
          'days': 1,
          'jettisoned': 1,
          'everything': 1,
          'great': 1,
          'masterwork': 1,
          'excitement': 1,
          'cause': 1,
          'camaraderie': 1,
          'ninstead': 1,
          'impressively': 1,
          'choreographed': 1,
          'somehow': 1,
          'vacuous': 1,
          'uninvolving': 1,
          'emerge': 1,
          'emptiness': 1,
          'lead': 1,
          'nwhen': 1,
          'finally': 1,
          'holler': 1,
          'could': 1,
          'sworn': 1,
          'rolling': 1,
          'grave': 1,
          'nmaybe': 1,
          'utter': 1,
          'lack': 1,
          'suspense': 1,
          'hyamss': 1,
          'tone': 1,
          'unreasonably': 1,
          'dark': 1,
          'brooding': 1,
          'consider': 1,
          'readers': 1,
          'digest': 1,
          'condensed': 1,
          'version': 1,
          'gives': 1,
          'us': 1,
          'anything': 1,
          'may': 1,
          'construed': 1,
          'fun': 1,
          'purposely': 1,
          'expunged': 1,
          'production': 1,
          'joylessness': 1,
          'proceedings': 1,
          'oppressively': 1,
          'shady': 1,
          'lighting': 1,
          'mechanical': 1,
          'scenes': 1,
          'frame': 1,
          'nchambers': 1,
          'act': 1,
          'arent': 1,
          'given': 1,
          'chance': 1,
          'nand': 1,
          'push': 1,
          'comes': 1,
          'shove': 1,
          'use': 1,
          'stunt': 1,
          'doubles': 1,
          'distractingly': 1,
          'obvious': 1,
          'gets': 1,
          'play': 1,
          'villain': 1,
          'without': 1,
          'wear': 1,
          'ape': 1,
          'suit': 1,
          'nsome': 1,
          'movies': 1,
          'seem': 1,
          'sloppy': 1,
          'careless': 1,
          'clearly': 1,
          'made': 1,
          'quick': 1,
          'buck': 1,
          'nwith': 1,
          'meticulously': 1,
          'crafted': 1,
          'intricate': 1,
          'stylish': 1,
          'precise': 1,
          'hitting': 1,
          'wrong': 1,
          'note': 1,
          'single': 1,
          'nneg': 1}),
 Counter({'film': 3,
          'godzilla': 2,
          'would': 2,
          'remake': 1,
          '1954': 1,
          'japanese': 1,
          'monster': 1,
          'transformed': 1,
          'jurassic': 1,
          'park': 1,
          'copy': 1,
          'swims': 1,
          'south': 1,
          'pacific': 1,
          'new': 1,
          'york': 1,
          'real': 1,
          'reason': 1,
          'trashes': 1,
          'town': 1,
          'nalthough': 1,
          'destruction': 1,
          'entertaining': 1,
          'gets': 1,
          'old': 1,
          'fast': 1,
          'nthe': 1,
          'often': 1,
          'makes': 1,
          'sense': 1,
          'severalhundred': 1,
          'foot': 1,
          'tall': 1,
          'beast': 1,
          'hides': 1,
          'subway': 1,
          'tunnels': 1,
          'sports': 1,
          'secondrate': 1,
          'effects': 1,
          'baby': 1,
          'godzillas': 1,
          'seem': 1,
          'one': 1,
          'computer': 1,
          'effect': 1,
          'multiplied': 1,
          'screen': 1,
          'lame': 1,
          'jokes': 1,
          'mayor': 1,
          'ebert': 1,
          'assistant': 1,
          'gene': 1,
          'never': 1,
          'funny': 1,
          'horrendous': 1,
          'acting': 1,
          'even': 1,
          'matthew': 1,
          'broderick': 1,
          'dull': 1,
          'unbelievable': 1,
          'love': 1,
          'story': 1,
          'anyone': 1,
          'want': 1,
          'get': 1,
          'back': 1,
          'together': 1,
          'maria': 1,
          'pitillos': 1,
          'character': 1,
          'nthere': 1,
          'elements': 1,
          'fall': 1,
          'flat': 1,
          'going': 1,
          'waste': 1,
          'good': 1,
          'words': 1,
          'nonly': 1,
          'diehard': 1,
          'creature': 1,
          'feature': 1,
          'fans': 1,
          'might': 1,
          'fun': 1,
          'could': 1,
          'check': 1,
          'brain': 1,
          'door': 1,
          'ni': 1,
          'couldnt': 1,
          'n': 1,
          'michael': 1,
          'redman': 1,
          'written': 1,
          'column': 1,
          '23': 1,
          'years': 1,
          'seldom': 1,
          'disorienting': 1,
          'cinematic': 1,
          'experience': 1,
          'seeing': 1,
          'fear': 1,
          'loathing': 1,
          'evening': 1,
          'nneg': 1}),
 Counter({'valmont': 9,
          'intentions': 8,
          'liaisons': 6,
          'film': 6,
          'movie': 6,
          'sebastian': 6,
          'cruel': 5,
          'like': 5,
          'character': 5,
          'ni': 4,
          'way': 4,
          'characters': 4,
          'hate': 4,
          'kathryn': 4,
          'nbut': 4,
          'scene': 4,
          'dangerous': 3,
          'kids': 3,
          'nit': 3,
          'kumble': 3,
          'credit': 3,
          'nand': 3,
          'fact': 3,
          'kind': 3,
          'ncruel': 3,
          'every': 3,
          'also': 3,
          'nsebastian': 3,
          'cant': 3,
          'sex': 3,
          'dont': 3,
          'really': 3,
          'nthe': 3,
          'wants': 3,
          'supposed': 3,
          'moral': 3,
          'love': 3,
          'point': 3,
          'would': 2,
          'everything': 2,
          'frears': 2,
          'roger': 2,
          'material': 2,
          'impressed': 2,
          'nin': 2,
          'nits': 2,
          'kiddieporn': 2,
          'fullyclothed': 2,
          'pretentious': 2,
          'beautiful': 2,
          'earth': 2,
          'mess': 2,
          'fails': 2,
          'phillippe': 2,
          'could': 2,
          'name': 2,
          'say': 2,
          'woman': 2,
          'merteuil': 2,
          'nkathryn': 2,
          'annette': 2,
          'hargrove': 2,
          'nso': 2,
          'believable': 2,
          'masterful': 2,
          'acting': 2,
          'bad': 2,
          'many': 2,
          'hateful': 2,
          'shes': 2,
          'last': 2,
          'scenes': 2,
          'give': 2,
          'change': 2,
          'course': 2,
          'theres': 2,
          'one': 2,
          'doesnt': 2,
          'work': 2,
          'nkumble': 2,
          'interesting': 2,
          'first': 1,
          'saw': 1,
          'preview': 1,
          'turned': 1,
          'friend': 1,
          'said': 1,
          'clear': 1,
          'obvious': 1,
          'chunk': 1,
          'plagiarized': 1,
          'nonsense': 1,
          'owing': 1,
          'stephen': 1,
          '1988': 1,
          'masterpiece': 1,
          'nimagine': 1,
          'surprise': 1,
          'see': 1,
          'writerdirector': 1,
          'given': 1,
          'source': 1,
          'choderlos': 1,
          'de': 1,
          'laclos': 1,
          'recognized': 1,
          'novel': 1,
          'les': 1,
          'dangereuses': 1,
          'opening': 1,
          'credits': 1,
          'much': 1,
          'recognition': 1,
          'actual': 1,
          'appalling': 1,
          'excuse': 1,
          'hackwork': 1,
          'complete': 1,
          'earthy': 1,
          'sextalk': 1,
          'handjobs': 1,
          'suppose': 1,
          'inevitable': 1,
          'teen': 1,
          'highschool': 1,
          'angst': 1,
          'movies': 1,
          'coming': 1,
          'certainly': 1,
          'room': 1,
          'laughable': 1,
          'bunch': 1,
          'teenagers': 1,
          'think': 1,
          'theyre': 1,
          'smarter': 1,
          'people': 1,
          'combined': 1,
          'possible': 1,
          'primarily': 1,
          'expected': 1,
          'hated': 1,
          'ryan': 1,
          'perhaps': 1,
          'opinion': 1,
          'objective': 1,
          'nphillippe': 1,
          'plays': 1,
          'check': 1,
          'nwow': 1,
          'nisnt': 1,
          'memorable': 1,
          'rolls': 1,
          'tongue': 1,
          'spirit': 1,
          'phrases': 1,
          'sanguine': 1,
          'vapors': 1,
          'velvet': 1,
          'sandwich': 1,
          'coolest': 1,
          'guy': 1,
          'ever': 1,
          'walked': 1,
          'object': 1,
          'reach': 1,
          'nhe': 1,
          'money': 1,
          'fingertips': 1,
          'luckily': 1,
          'parents': 1,
          'never': 1,
          'enter': 1,
          'life': 1,
          'world': 1,
          'adults': 1,
          'exist': 1,
          'ones': 1,
          'irritating': 1,
          'lives': 1,
          'stepsister': 1,
          'sarah': 1,
          'michelle': 1,
          'gellar': 1,
          'bitchqueen': 1,
          'universe': 1,
          'man': 1,
          'nsince': 1,
          'two': 1,
          'rich': 1,
          'bored': 1,
          'thing': 1,
          'challenge': 1,
          'meaningless': 1,
          'sexual': 1,
          'devirginize': 1,
          'cecile': 1,
          'caldwell': 1,
          'selma': 1,
          'blair': 1,
          'naive': 1,
          'dorkchick': 1,
          'somehow': 1,
          'wronged': 1,
          'easy': 1,
          'nail': 1,
          'reese': 1,
          'witherspoon': 1,
          'paradigm': 1,
          'chastity': 1,
          'beauty': 1,
          'make': 1,
          'deal': 1,
          'explicit': 1,
          'state': 1,
          'dear': 1,
          'god': 1,
          'n': 1,
          'actually': 1,
          'begins': 1,
          'fall': 1,
          'poor': 1,
          'ndangerous': 1,
          'great': 1,
          'reasons': 1,
          'lacks': 1,
          'simply': 1,
          'witch': 1,
          'girl': 1,
          'loathsome': 1,
          'probably': 1,
          'enjoy': 1,
          'pouring': 1,
          'hot': 1,
          'lead': 1,
          'nshe': 1,
          'mean': 1,
          'glenn': 1,
          'close': 1,
          'gave': 1,
          'depth': 1,
          'ngellar': 1,
          'aesthetically': 1,
          'pleasing': 1,
          'onedimensional': 1,
          'utterly': 1,
          'repulsive': 1,
          'nwitherspoon': 1,
          'truly': 1,
          'face': 1,
          'isnt': 1,
          'staple': 1,
          'sure': 1,
          'wont': 1,
          'issue': 1,
          'things': 1,
          'little': 1,
          'reprehensible': 1,
          'forget': 1,
          'mr': 1,
          'continues': 1,
          'exceed': 1,
          'expectations': 1,
          'impenetrable': 1,
          'invulnerable': 1,
          'blandness': 1,
          'manage': 1,
          'facial': 1,
          'expression': 1,
          'three': 1,
          'times': 1,
          'shouts': 1,
          'thereby': 1,
          'defeating': 1,
          'hypothesis': 1,
          'vocally': 1,
          'monotone': 1,
          'ntrue': 1,
          'help': 1,
          'drained': 1,
          'aspects': 1,
          'leaving': 1,
          'us': 1,
          'sexcrazed': 1,
          'lunatic': 1,
          'sympathetic': 1,
          'falls': 1,
          'flower': 1,
          'shuns': 1,
          'wicked': 1,
          'bitch': 1,
          'nfirst': 1,
          'nobody': 1,
          'talks': 1,
          'neven': 1,
          'intellectuals': 1,
          'know': 1,
          'bother': 1,
          'pointless': 1,
          'yammering': 1,
          'nfor': 1,
          'looks': 1,
          'might': 1,
          'play': 1,
          'laughs': 1,
          'ends': 1,
          'taking': 1,
          'seriously': 1,
          'join': 1,
          'manages': 1,
          'come': 1,
          'softporn': 1,
          'nearlier': 1,
          'mentioned': 1,
          'handjob': 1,
          'occurs': 1,
          'intended': 1,
          'whats': 1,
          'extended': 1,
          'ntitillation': 1,
          'even': 1,
          'pretense': 1,
          'meaningful': 1,
          'note': 1,
          'parallels': 1,
          'clearly': 1,
          'familiar': 1,
          'earlier': 1,
          'similar': 1,
          'tone': 1,
          'moments': 1,
          'imitates': 1,
          'almost': 1,
          'completely': 1,
          'spoiler': 1,
          'warning': 1,
          'antagonist': 1,
          'humiliated': 1,
          'front': 1,
          'peers': 1,
          'act': 1,
          'nnobody': 1,
          'acts': 1,
          'translation': 1,
          'forgot': 1,
          'development': 1,
          'sympathy': 1,
          'pretty': 1,
          'crucial': 1,
          'elements': 1,
          'result': 1,
          'picture': 1,
          'confounding': 1,
          'badness': 1,
          'thinks': 1,
          'deep': 1,
          'profound': 1,
          'nill': 1,
          'realizing': 1,
          'influences': 1,
          'awful': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'film': 6,
          'good': 6,
          'mimic': 5,
          'instead': 4,
          'movie': 4,
          'children': 3,
          'case': 3,
          'audience': 3,
          'cockroaches': 3,
          'bug': 3,
          'however': 3,
          'action': 3,
          'characters': 3,
          'old': 2,
          'never': 2,
          'work': 2,
          'animals': 2,
          'nin': 2,
          'genetically': 2,
          'enhanced': 2,
          'sorvino': 2,
          'judas': 2,
          'breed': 2,
          'kill': 2,
          'terror': 2,
          'ever': 2,
          'predator': 2,
          'us': 2,
          'bugs': 2,
          'trying': 2,
          'could': 2,
          'nif': 2,
          'director': 2,
          'nthere': 2,
          'script': 2,
          'directed': 2,
          'k': 2,
          'really': 2,
          'may': 2,
          'look': 2,
          'na': 2,
          'everyone': 1,
          'knows': 1,
          'rule': 1,
          'latest': 1,
          'horror': 1,
          'flick': 1,
          'killer': 1,
          'features': 1,
          'succeeds': 1,
          'nothing': 1,
          'except': 1,
          'mildly': 1,
          'engaging': 1,
          'begins': 1,
          'new': 1,
          'york': 1,
          'see': 1,
          'dying': 1,
          'mysterious': 1,
          'disease': 1,
          'carried': 1,
          'ndr': 1,
          'susan': 1,
          'tyler': 1,
          'creates': 1,
          'designed': 1,
          'job': 1,
          'die': 1,
          'gone': 1,
          'nthree': 1,
          'years': 1,
          'later': 1,
          'appears': 1,
          'screen': 1,
          'discover': 1,
          'back': 1,
          'bigger': 1,
          'ready': 1,
          'spin': 1,
          'nhumans': 1,
          'nthat': 1,
          'teach': 1,
          'squishing': 1,
          'nwhat': 1,
          'roller': 1,
          'coaster': 1,
          'ride': 1,
          'everywhere': 1,
          'tons': 1,
          'gory': 1,
          'deaths': 1,
          'massive': 1,
          'set': 1,
          'pieces': 1,
          'turns': 1,
          'rather': 1,
          'subdued': 1,
          'almost': 1,
          'boring': 1,
          'plods': 1,
          'along': 1,
          'slow': 1,
          'pace': 1,
          'nperhaps': 1,
          'thought': 1,
          'provoking': 1,
          'avoid': 1,
          'type': 1,
          'easily': 1,
          'become': 1,
          'writers': 1,
          'made': 1,
          'wrong': 1,
          'move': 1,
          'perfectly': 1,
          'suited': 1,
          'fest': 1,
          'bought': 1,
          'cronos': 1,
          'far': 1,
          'superior': 1,
          'directs': 1,
          'calm': 1,
          'frankly': 1,
          'dull': 1,
          'exciting': 1,
          'sequences': 1,
          'lot': 1,
          'people': 1,
          'talking': 1,
          'dialogue': 1,
          'intelligent': 1,
          'would': 1,
          'right': 1,
          'sadly': 1,
          'babbling': 1,
          'nonsense': 1,
          'fact': 1,
          'embarrsingly': 1,
          'weak': 1,
          'characterizations': 1,
          'much': 1,
          'better': 1,
          'company': 1,
          '2d': 1,
          'come': 1,
          'bothering': 1,
          'develop': 1,
          'annoying': 1,
          'way': 1,
          'infuriating': 1,
          'watch': 1,
          'camera': 1,
          'cuts': 1,
          'place': 1,
          'disoreitating': 1,
          'involving': 1,
          'merely': 1,
          'alienates': 1,
          'peformances': 1,
          'slightly': 1,
          'average': 1,
          'nsorvino': 1,
          'although': 1,
          'shes': 1,
          'conveying': 1,
          'anything': 1,
          'emotion': 1,
          'supporting': 1,
          'cast': 1,
          'sterotypes': 1,
          'big': 1,
          'black': 1,
          'security': 1,
          'guard': 1,
          'foul': 1,
          'mouth': 1,
          'geeky': 1,
          'scientist': 1,
          'spectacles': 1,
          'stereotypical': 1,
          'mexican': 1,
          'timer': 1,
          'ntheir': 1,
          'reasonable': 1,
          'fun': 1,
          'nmimic': 1,
          'fail': 1,
          'story': 1,
          'pacing': 1,
          'nlike': 1,
          'dark': 1,
          'city': 1,
          'definite': 1,
          'style': 1,
          'content': 1,
          'nit': 1,
          'bit': 1,
          'gloomy': 1,
          'sets': 1,
          'nice': 1,
          'parts': 1,
          'well': 1,
          'nbut': 1,
          'looks': 1,
          'arent': 1,
          'enough': 1,
          'save': 1,
          'depths': 1,
          'mediocre': 1,
          'somewhere': 1,
          'shouldnt': 1,
          'belong': 1,
          'opportunity': 1,
          'wasted': 1,
          'shame': 1,
          'noverall': 1,
          'rating': 1,
          'review': 1,
          'david': 1,
          'wilcock': 1,
          '1998': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'time': 5,
          'ship': 4,
          'funny': 4,
          'tries': 3,
          'speed': 3,
          'bullock': 3,
          'wrong': 3,
          'going': 3,
          'ships': 3,
          'could': 3,
          'nthe': 3,
          'sound': 3,
          'ni': 3,
          'really': 3,
          'know': 3,
          'action': 3,
          'desaster': 3,
          'part': 3,
          'passengers': 3,
          'cant': 3,
          'effects': 3,
          'nbut': 2,
          'two': 2,
          'movies': 2,
          'sandra': 2,
          'place': 2,
          'cruise': 2,
          'alex': 2,
          'patric': 2,
          'course': 2,
          'geiger': 2,
          'willem': 2,
          'dafoe': 2,
          'pick': 2,
          'nnow': 2,
          'whole': 2,
          '2': 2,
          'goes': 2,
          'nthen': 2,
          'around': 2,
          'looked': 2,
          'bomb': 2,
          'fire': 2,
          'still': 2,
          'crew': 2,
          'saved': 2,
          'nhe': 2,
          'good': 2,
          'like': 2,
          'meant': 2,
          'oil': 2,
          'tanker': 2,
          'see': 2,
          'scene': 2,
          'nin': 2,
          'theater': 2,
          'present': 1,
          'sequel': 1,
          'jan': 1,
          'de': 1,
          'bonts': 1,
          'debut': 1,
          'director': 1,
          '1994': 1,
          'surprise': 1,
          'hit': 1,
          'thing': 1,
          'common': 1,
          'female': 1,
          'lead': 1,
          'nannie': 1,
          'nshes': 1,
          'new': 1,
          'boyfriend': 1,
          'jason': 1,
          'kidnapped': 1,
          'john': 1,
          'bone': 1,
          'shipping': 1,
          'line': 1,
          'nthey': 1,
          'sacked': 1,
          'got': 1,
          'sick': 1,
          'wants': 1,
          'diamonds': 1,
          'stored': 1,
          'safe': 1,
          'compensation': 1,
          'nthat': 1,
          'actually': 1,
          'storyline': 1,
          'nspeed': 1,
          'without': 1,
          'dialogues': 1,
          'images': 1,
          'remarkable': 1,
          'dont': 1,
          'called': 1,
          'nexcept': 1,
          'scenes': 1,
          'vaguely': 1,
          'reminiscent': 1,
          'along': 1,
          'lines': 1,
          '70ies': 1,
          'nfirst': 1,
          'introduced': 1,
          'number': 1,
          'people': 1,
          'important': 1,
          'later': 1,
          'strikes': 1,
          'nsandra': 1,
          'said': 1,
          'glad': 1,
          'take': 1,
          'couldnt': 1,
          'find': 1,
          'nmost': 1,
          'decoration': 1,
          'happens': 1,
          'shot': 1,
          'defusing': 1,
          'freeing': 1,
          'trapped': 1,
          'behind': 1,
          'door': 1,
          'handle': 1,
          'chain': 1,
          'saw': 1,
          'nwe': 1,
          'also': 1,
          'doors': 1,
          'cut': 1,
          'apart': 1,
          'seconds': 1,
          'defusal': 1,
          'furniture': 1,
          'damaged': 1,
          'heroes': 1,
          'needed': 1,
          'njason': 1,
          'alias': 1,
          'spends': 1,
          'flirting': 1,
          'annie': 1,
          'helping': 1,
          'frolicking': 1,
          'water': 1,
          'nhis': 1,
          'initial': 1,
          'seasickness': 1,
          'suddenly': 1,
          'gone': 1,
          'evil': 1,
          'pretty': 1,
          'job': 1,
          'blame': 1,
          'keanu': 1,
          'reeves': 1,
          'declining': 1,
          'theres': 1,
          'villain': 1,
          'desperately': 1,
          'look': 1,
          'frightening': 1,
          'frankensteins': 1,
          'monster': 1,
          'doesnt': 1,
          'succeed': 1,
          'though': 1,
          'nan': 1,
          'untidy': 1,
          'appearance': 1,
          'isnt': 1,
          'enough': 1,
          'convince': 1,
          'viewer': 1,
          'psychopath': 1,
          'potential': 1,
          'nbefore': 1,
          'make': 1,
          'us': 1,
          'believe': 1,
          'dangerous': 1,
          'man': 1,
          'practise': 1,
          'front': 1,
          'mirror': 1,
          'recommend': 1,
          'probably': 1,
          'situations': 1,
          'arent': 1,
          'nespecially': 1,
          'showdown': 1,
          'first': 1,
          'runs': 1,
          'dissembles': 1,
          'village': 1,
          'treat': 1,
          'nthere': 1,
          'get': 1,
          'superfluous': 1,
          'keeping': 1,
          'last': 1,
          'years': 1,
          'tradition': 1,
          'dog': 1,
          'miraculously': 1,
          'certain': 1,
          'death': 1,
          'na': 1,
          'takes': 1,
          'right': 1,
          'collision': 1,
          'nsome': 1,
          'members': 1,
          'watch': 1,
          'colliding': 1,
          'old': 1,
          'nhad': 1,
          'window': 1,
          'wouldnt': 1,
          'missed': 1,
          'huge': 1,
          'racing': 1,
          'toward': 1,
          'nthose': 1,
          'want': 1,
          'large': 1,
          'screen': 1,
          'system': 1,
          'enjoy': 1,
          'visual': 1,
          'phantastic': 1,
          'surround': 1,
          'adequately': 1,
          'equipped': 1,
          'explosion': 1,
          'feel': 1,
          'seats': 1,
          'vibrate': 1,
          'ilm': 1,
          'special': 1,
          'save': 1,
          'nfor': 1,
          'money': 1,
          'done': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'amazing': 4,
          'one': 4,
          'mr': 3,
          'furious': 3,
          'capt': 3,
          'superhero': 2,
          'city': 2,
          'stiller': 2,
          'blue': 2,
          'raja': 2,
          'hank': 2,
          'azaria': 2,
          'shoveler': 2,
          'captain': 2,
          'hes': 2,
          'amazings': 2,
          'league': 2,
          'character': 2,
          'spleen': 2,
          'n': 2,
          'mary': 2,
          'hartman': 2,
          'cast': 2,
          'script': 2,
          'tough': 1,
          'aspiring': 1,
          'champion': 1,
          'njust': 1,
          'ask': 1,
          'ben': 1,
          'william': 1,
          'h': 1,
          'macy': 1,
          'ntheyre': 1,
          'trying': 1,
          'break': 1,
          'biz': 1,
          'greg': 1,
          'kinnear': 1,
          'citys': 1,
          'hero': 1,
          'numero': 1,
          'uno': 1,
          'hogs': 1,
          'action': 1,
          'good': 1,
          'problems': 1,
          'nbecause': 1,
          'eliminated': 1,
          'crime': 1,
          'endorsement': 1,
          'deals': 1,
          'falling': 1,
          'public': 1,
          'craves': 1,
          'major': 1,
          'slugfest': 1,
          'engineers': 1,
          'parole': 1,
          'onetime': 1,
          'arch': 1,
          'enemy': 1,
          'casanova': 1,
          'frankenstein': 1,
          'geoffrey': 1,
          'rush': 1,
          'nfrankenstein': 1,
          'succeeds': 1,
          'beyond': 1,
          'expectations': 1,
          'captures': 1,
          'setting': 1,
          'scheme': 1,
          'destroy': 1,
          'nso': 1,
          'left': 1,
          'save': 1,
          'day': 1,
          'wouldbe': 1,
          'superheroes': 1,
          'abilities': 1,
          'little': 1,
          'justice': 1,
          'hurls': 1,
          'forks': 1,
          'foes': 1,
          'hits': 1,
          'shovel': 1,
          'yells': 1,
          'people': 1,
          'essentially': 1,
          'played': 1,
          'guest': 1,
          'appearance': 1,
          'friends': 1,
          'nafter': 1,
          'painful': 1,
          'first': 1,
          'strike': 1,
          'guys': 1,
          'hold': 1,
          'auditions': 1,
          'teammates': 1,
          'add': 1,
          'bowler': 1,
          'janeane': 1,
          'garofalo': 1,
          'carries': 1,
          'dead': 1,
          'fathers': 1,
          'skull': 1,
          'bowling': 1,
          'ball': 1,
          'invisible': 1,
          'boy': 1,
          'kel': 1,
          'mitchell': 1,
          'use': 1,
          'powers': 1,
          'looking': 1,
          'paul': 1,
          'reubens': 1,
          'blows': 1,
          'devastating': 1,
          'winds': 1,
          'rear': 1,
          'sphinx': 1,
          'wes': 1,
          'studi': 1,
          'mysterious': 1,
          'figure': 1,
          'teach': 1,
          'fight': 1,
          'mystery': 1,
          'men': 1,
          'boasts': 1,
          'talented': 1,
          'eclectic': 1,
          'casts': 1,
          'ever': 1,
          'assembled': 1,
          'nin': 1,
          'addition': 1,
          'already': 1,
          'mentioned': 1,
          'credits': 1,
          'include': 1,
          'lena': 1,
          'olin': 1,
          'frankensteins': 1,
          'evil': 1,
          'shrink': 1,
          'comedian': 1,
          'eddie': 1,
          'izzard': 1,
          'fugees': 1,
          'prakazrel': 1,
          'michel': 1,
          'discothemed': 1,
          'thugs': 1,
          'singer': 1,
          'tom': 1,
          'waits': 1,
          'inventor': 1,
          'weapons': 1,
          'artie': 1,
          'lange': 1,
          'mad': 1,
          'tv': 1,
          'another': 1,
          'thug': 1,
          'claire': 1,
          'forlani': 1,
          'meet': 1,
          'joe': 1,
          'black': 1,
          'waitress': 1,
          'pursuing': 1,
          'louise': 1,
          'lasser': 1,
          'rajas': 1,
          'mother': 1,
          'actormagician': 1,
          'ricky': 1,
          'jay': 1,
          'manager': 1,
          'includes': 1,
          'four': 1,
          'oscarnominated': 1,
          'actors': 1,
          'nwhen': 1,
          'saw': 1,
          'list': 1,
          'players': 1,
          'early': 1,
          'last': 1,
          'year': 1,
          'figured': 1,
          'result': 1,
          'would': 1,
          'cantmiss': 1,
          'comedy': 1,
          'nyet': 1,
          'must': 1,
          'report': 1,
          'disappointment': 1,
          'probably': 1,
          'worst': 1,
          '1999': 1,
          'nnearly': 1,
          'every': 1,
          'joke': 1,
          'misfires': 1,
          'stabs': 1,
          'comic': 1,
          'books': 1,
          'obvious': 1,
          'funny': 1,
          'example': 1,
          'recognize': 1,
          'secret': 1,
          'identity': 1,
          'wearing': 1,
          'glasses': 1,
          'fart': 1,
          'jokes': 1,
          'surrounding': 1,
          'surprisingly': 1,
          'gags': 1,
          'work': 1,
          'tries': 1,
          'hard': 1,
          'especially': 1,
          'whose': 1,
          'adopts': 1,
          'effete': 1,
          'british': 1,
          'accent': 1,
          'costume': 1,
          'lame': 1,
          'run': 1,
          'nneg': 1}),
 Counter({'film': 9,
          '8mm': 7,
          'movie': 5,
          'snuff': 5,
          'seven': 4,
          'cage': 4,
          'thriller': 4,
          'nthe': 3,
          'appears': 3,
          'phoenix': 3,
          'shock': 3,
          'performance': 3,
          'character': 3,
          'director': 3,
          'written': 2,
          'idea': 2,
          'standard': 2,
          'mrs': 2,
          'christian': 2,
          'girl': 2,
          'featured': 2,
          'know': 2,
          'porn': 2,
          'video': 2,
          'industry': 2,
          'within': 2,
          'disturbing': 2,
          'although': 2,
          'away': 2,
          'n8mm': 2,
          'much': 2,
          'apart': 2,
          'help': 2,
          'entertainment': 2,
          'fun': 2,
          'films': 2,
          'talent': 2,
          'hes': 2,
          'boring': 2,
          'nand': 2,
          'gloom': 2,
          'completely': 2,
          'wasted': 2,
          'far': 2,
          'though': 2,
          'one': 2,
          'characters': 2,
          'year': 2,
          'nalso': 2,
          'scenes': 2,
          'controversial': 2,
          'looks': 2,
          'worth': 2,
          'scribe': 1,
          'andrew': 1,
          'kevin': 1,
          'walker': 1,
          'interesting': 1,
          'ruined': 1,
          'hollywood': 1,
          'formula': 1,
          'become': 1,
          'bog': 1,
          'murder': 1,
          'mystery': 1,
          'nnicolas': 1,
          'plays': 1,
          'family': 1,
          'man': 1,
          'detective': 1,
          'tom': 1,
          'welles': 1,
          'asked': 1,
          'upper': 1,
          'class': 1,
          'toff': 1,
          'myra': 1,
          'carter': 1,
          'investigate': 1,
          'found': 1,
          'recently': 1,
          'deceased': 1,
          'husbands': 1,
          'safe': 1,
          'happens': 1,
          'mythical': 1,
          'get': 1,
          'brutally': 1,
          'slashed': 1,
          'nall': 1,
          'wants': 1,
          'killed': 1,
          'nwelles': 1,
          'agrees': 1,
          'soon': 1,
          'gets': 1,
          'pulled': 1,
          'seedy': 1,
          'underworld': 1,
          'movies': 1,
          'clerk': 1,
          'max': 1,
          'california': 1,
          'guide': 1,
          'nalthough': 1,
          'hasnt': 1,
          'really': 1,
          'examined': 1,
          'mainstream': 1,
          'cinema': 1,
          'still': 1,
          'makes': 1,
          'rather': 1,
          'plodding': 1,
          'seems': 1,
          'bit': 1,
          'sicker': 1,
          'certainly': 1,
          'jerky': 1,
          'camera': 1,
          'angles': 1,
          'grainy': 1,
          'image': 1,
          'takes': 1,
          'problem': 1,
          'wanting': 1,
          'moments': 1,
          'action': 1,
          'nothing': 1,
          'havent': 1,
          'seen': 1,
          'another': 1,
          'cast': 1,
          'towards': 1,
          'hideous': 1,
          'increasingly': 1,
          'lazy': 1,
          'nicolas': 1,
          'nwhile': 1,
          'breezy': 1,
          'earlier': 1,
          'raising': 1,
          'arizona': 1,
          '1987': 1,
          'ever': 1,
          'since': 1,
          'leaving': 1,
          'las': 1,
          'vegas': 1,
          '1995': 1,
          'lost': 1,
          'acting': 1,
          'autopilot': 1,
          'terrible': 1,
          'snake': 1,
          'eyes': 1,
          '1998': 1,
          'nhere': 1,
          'uninteresting': 1,
          'dull': 1,
          'monotonous': 1,
          'voice': 1,
          'overlong': 1,
          'virtues': 1,
          'keep': 1,
          'suspense': 1,
          'nonly': 1,
          'onscreen': 1,
          'excellent': 1,
          'start': 1,
          'moving': 1,
          'true': 1,
          'nhis': 1,
          'great': 1,
          'break': 1,
          'purely': 1,
          'enjoyable': 1,
          'watch': 1,
          'ncatherine': 1,
          'keener': 1,
          'cages': 1,
          'wife': 1,
          'delivers': 1,
          'better': 1,
          'deserves': 1,
          'nher': 1,
          'hugely': 1,
          'underwritten': 1,
          'fargos': 1,
          'peter': 1,
          'stormare': 1,
          'wildly': 1,
          'top': 1,
          'nas': 1,
          'person': 1,
          'behind': 1,
          'filled': 1,
          'doom': 1,
          'noone': 1,
          'use': 1,
          'light': 1,
          'switch': 1,
          'nunlike': 1,
          'isnt': 1,
          'clever': 1,
          'twist': 1,
          'pathetic': 1,
          'startlingly': 1,
          'obvious': 1,
          'arrives': 1,
          'nlacking': 1,
          'strong': 1,
          'ultimately': 1,
          'becomes': 1,
          'uninvolving': 1,
          'plot': 1,
          'wise': 1,
          'relies': 1,
          'graphic': 1,
          'provide': 1,
          'nbut': 1,
          'joel': 1,
          'schumacher': 1,
          'wrong': 1,
          'guy': 1,
          'job': 1,
          'puts': 1,
          'style': 1,
          'content': 1,
          'direction': 1,
          'look': 1,
          'good': 1,
          'nschumacher': 1,
          'also': 1,
          'audience': 1,
          'meant': 1,
          'looking': 1,
          'dark': 1,
          'belly': 1,
          'doesnt': 1,
          'exactly': 1,
          'leave': 1,
          'haunting': 1,
          'impression': 1,
          'viewers': 1,
          'mind': 1,
          'misses': 1,
          'point': 1,
          'last': 1,
          '20': 1,
          'minutes': 1,
          'hackneyed': 1,
          'cliched': 1,
          'amazing': 1,
          'think': 1,
          'youre': 1,
          'watching': 1,
          'success': 1,
          'snuffed': 1,
          'opportunity': 1,
          'nwith': 1,
          'lead': 1,
          'manage': 1,
          'obsessed': 1,
          'could': 1,
          'shocking': 1,
          'dumb': 1,
          'nultimately': 1,
          'probably': 1,
          'renting': 1,
          'home': 1,
          'unless': 1,
          'desperate': 1,
          'see': 1,
          'like': 1,
          'trust': 1,
          'rest': 1,
          '2': 1,
          'hours': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'like': 6,
          'hes': 6,
          'one': 5,
          'affleck': 5,
          'nand': 4,
          'nhow': 4,
          'two': 4,
          'make': 4,
          'reindeer': 4,
          'games': 4,
          'isnt': 3,
          'right': 3,
          'show': 3,
          'good': 3,
          'theres': 3,
          'attention': 3,
          'santa': 3,
          'suits': 3,
          'days': 3,
          'know': 3,
          'ben': 3,
          'gary': 3,
          'sinise': 3,
          'casino': 3,
          'man': 3,
          'nhes': 3,
          'nhe': 3,
          'making': 3,
          'time': 3,
          'bad': 3,
          'clue': 2,
          'something': 2,
          'gon': 2,
          'na': 2,
          'quite': 2,
          'youre': 2,
          'see': 2,
          'release': 2,
          'say': 2,
          'charlize': 2,
          'theron': 2,
          'movies': 2,
          'new': 2,
          'us': 2,
          'find': 2,
          'immediately': 2,
          'dead': 2,
          'nthen': 2,
          'scene': 2,
          'line': 2,
          'poorly': 2,
          'prison': 2,
          'afflecks': 2,
          'best': 2,
          'buddy': 2,
          'take': 2,
          'think': 2,
          'nhave': 2,
          'never': 2,
          'get': 2,
          'force': 2,
          'idea': 2,
          'place': 2,
          'non': 2,
          'paper': 2,
          'seems': 2,
          'piece': 2,
          'thinks': 2,
          'sort': 2,
          'car': 2,
          'nbut': 2,
          'nstep': 2,
          'easily': 2,
          'forgotten': 2,
          'possible': 2,
          'role': 2,
          'gets': 2,
          'past': 2,
          'name': 2,
          'nget': 2,
          'even': 2,
          'instead': 2,
          'weeks': 2,
          'worse': 2,
          'plan': 2,
          'seem': 2,
          'preposterous': 2,
          'first': 1,
          'heavily': 1,
          'christmasthemed': 1,
          'date': 1,
          'oh': 1,
          'end': 1,
          'february': 1,
          'nyour': 1,
          'second': 1,
          'dubious': 1,
          'stars': 1,
          'makes': 1,
          'appearance': 1,
          'daily': 1,
          'asked': 1,
          'replies': 1,
          'equivalent': 1,
          'verbal': 1,
          'sigh': 1,
          'nassuring': 1,
          'yeah': 1,
          'sure': 1,
          'scenes': 1,
          'youd': 1,
          'expect': 1,
          'action': 1,
          'nstuff': 1,
          'ntoo': 1,
          'grab': 1,
          'open': 1,
          'five': 1,
          'guys': 1,
          'claus': 1,
          'caption': 1,
          'reading': 1,
          'six': 1,
          'earlier': 1,
          'nya': 1,
          'honestly': 1,
          'interested': 1,
          'killed': 1,
          'poor': 1,
          'santas': 1,
          'lose': 1,
          'follow': 1,
          'opening': 1,
          'terminally': 1,
          'dull': 1,
          'niceguyswhodontdeservetobeinprison': 1,
          'nwrite': 1,
          'prisoners': 1,
          'want': 1,
          'go': 1,
          'home': 1,
          'eat': 1,
          'christmas': 1,
          'dinner': 1,
          'watch': 1,
          'ball': 1,
          'dad': 1,
          'actually': 1,
          'film': 1,
          'forget': 1,
          'leave': 1,
          'cutting': 1,
          'room': 1,
          'floor': 1,
          'nfor': 1,
          'measure': 1,
          'throw': 1,
          'motivated': 1,
          'riot': 1,
          'stabbed': 1,
          'naw': 1,
          'nalready': 1,
          'cliches': 1,
          'piled': 1,
          'thick': 1,
          'rains': 1,
          'pours': 1,
          'dash': 1,
          'violently': 1,
          'rocks': 1,
          'im': 1,
          'contemplating': 1,
          'strategy': 1,
          'calling': 1,
          'shotgun': 1,
          'hour': 1,
          'credits': 1,
          'roll': 1,
          'deny': 1,
          'characters': 1,
          'ability': 1,
          'reason': 1,
          'ill': 1,
          'understand': 1,
          'pretend': 1,
          'girlfriend': 1,
          'played': 1,
          'participate': 1,
          'planned': 1,
          'heist': 1,
          'nthe': 1,
          'villains': 1,
          'big': 1,
          'nkidnap': 1,
          'used': 1,
          'security': 1,
          'guard': 1,
          'tell': 1,
          'doors': 1,
          'dress': 1,
          'create': 1,
          'diversions': 1,
          'rob': 1,
          'stuff': 1,
          'potential': 1,
          'caper': 1,
          'comedy': 1,
          'veteran': 1,
          'director': 1,
          'john': 1,
          'frankenheimer': 1,
          'wrongly': 1,
          'picks': 1,
          'looking': 1,
          'makings': 1,
          'clever': 1,
          'actioncrime': 1,
          'thriller': 1,
          'nits': 1,
          'capable': 1,
          'nfar': 1,
          'responsible': 1,
          'classic': 1,
          'political': 1,
          'thrillers': 1,
          'manchurian': 1,
          'candidate': 1,
          'seven': 1,
          'may': 1,
          'wowed': 1,
          'memorable': 1,
          'chases': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'last': 1,
          'years': 1,
          'ronin': 1,
          'certainly': 1,
          'guilty': 1,
          'churning': 1,
          'certifiable': 1,
          'losers': 1,
          'nput': 1,
          'shelf': 1,
          'shame': 1,
          '1996': 1,
          'version': 1,
          'island': 1,
          'dr': 1,
          'moreau': 1,
          'cast': 1,
          'worlds': 1,
          'generic': 1,
          'hero': 1,
          'oneliners': 1,
          'doesnt': 1,
          'shoot': 1,
          'implode': 1,
          'anything': 1,
          'interesting': 1,
          'ways': 1,
          'regrets': 1,
          'thief': 1,
          'wants': 1,
          'cup': 1,
          'hot': 1,
          'chocolate': 1,
          'pecan': 1,
          'pie': 1,
          'nhis': 1,
          'rudy': 1,
          'short': 1,
          'rudolph': 1,
          'likelihood': 1,
          'nsee': 1,
          'called': 1,
          'nshut': 1,
          'nin': 1,
          'supporting': 1,
          'actor': 1,
          'nothing': 1,
          'viability': 1,
          'leading': 1,
          'sinises': 1,
          'villain': 1,
          'dresses': 1,
          'looks': 1,
          'standard': 1,
          'crook': 1,
          'filmmaker': 1,
          'could': 1,
          'dirty': 1,
          'pottymouthed': 1,
          'got': 1,
          'long': 1,
          'scruffy': 1,
          'hair': 1,
          'goatee': 1,
          'fully': 1,
          'expected': 1,
          'walk': 1,
          'carrying': 1,
          'sacks': 1,
          'giant': 1,
          'dollar': 1,
          'signs': 1,
          'also': 1,
          'extremely': 1,
          'inept': 1,
          'garish': 1,
          'cowboy': 1,
          'costumes': 1,
          'acceptable': 1,
          'disguises': 1,
          'trusts': 1,
          'character': 1,
          'pull': 1,
          'tricks': 1,
          'lies': 1,
          'nearly': 1,
          'kills': 1,
          'tapping': 1,
          'comic': 1,
          'possibilities': 1,
          'playing': 1,
          'tough': 1,
          'smart': 1,
          'smooth': 1,
          'criminal': 1,
          'mastermind': 1,
          'rather': 1,
          'complete': 1,
          'moron': 1,
          'obviously': 1,
          'written': 1,
          'script': 1,
          'side': 1,
          'note': 1,
          'wins': 1,
          'title': 1,
          'naward': 1,
          'awkwardly': 1,
          'cram': 1,
          'lines': 1,
          'early': 1,
          'proceedings': 1,
          'nlast': 1,
          'winner': 1,
          'natasha': 1,
          'henstridge': 1,
          'whole': 1,
          'nine': 1,
          'yards': 1,
          'things': 1,
          'include': 1,
          'three': 1,
          'plot': 1,
          'twists': 1,
          'apparently': 1,
          'stupidity': 1,
          'suddenly': 1,
          'intelligent': 1,
          'ridiculous': 1,
          'unlikely': 1,
          'nthis': 1,
          'whats': 1,
          'except': 1,
          'moments': 1,
          'near': 1,
          'notsostunning': 1,
          'conclusion': 1,
          'replaced': 1,
          'ludicrously': 1,
          'really': 1,
          'gives': 1,
          'satisfaction': 1,
          'laughably': 1,
          'nif': 1,
          'theyd': 1,
          'done': 1,
          'much': 1,
          'least': 1,
          'would': 1,
          'entertained': 1,
          'nneg': 1}),
 Counter({'boggs': 6,
          'carry': 4,
          'kenneth': 4,
          'spanner': 4,
          'sid': 4,
          'hattie': 4,
          'jacques': 4,
          'factory': 3,
          'toilet': 3,
          'cope': 3,
          'plummer': 3,
          'budgie': 3,
          'ocallaghan': 3,
          'performances': 3,
          'part': 3,
          'film': 3,
          'movie': 3,
          'williams': 2,
          'two': 2,
          'charles': 2,
          'hawtrey': 2,
          'vic': 2,
          'bernard': 2,
          'bresslaw': 2,
          'james': 2,
          'wife': 2,
          'beattie': 2,
          'moore': 2,
          'sims': 2,
          'winners': 2,
          'horse': 2,
          'nhis': 2,
          'piper': 2,
          'going': 2,
          'son': 2,
          'nin': 2,
          'agatha': 2,
          'renee': 2,
          'houston': 2,
          'usual': 2,
          'appealing': 2,
          'nhowever': 2,
          'go': 2,
          'character': 2,
          'na': 2,
          'marvellous': 2,
          'performance': 2,
          'nthe': 2,
          'suffers': 2,
          'annoying': 2,
          'nthis': 2,
          'humour': 2,
          'becomes': 2,
          'jokes': 2,
          'convenience': 1,
          'goingson': 1,
          'manufacturer': 1,
          'wc': 1,
          'nonce': 1,
          'order': 1,
          'manufacture': 1,
          '1000': 1,
          'bidets': 1,
          'months': 1,
          'coote': 1,
          'designed': 1,
          'suitable': 1,
          'model': 1,
          'employees': 1,
          'set': 1,
          'work': 1,
          'interrupted': 1,
          'union': 1,
          'representative': 1,
          'friend': 1,
          'bernie': 1,
          'hulke': 1,
          'call': 1,
          'strikes': 1,
          'slightest': 1,
          'pretext': 1,
          'nmeanwhile': 1,
          'chief': 1,
          'foreman': 1,
          'growing': 1,
          'tired': 1,
          'nhe': 1,
          'would': 1,
          'much': 1,
          'rather': 1,
          'live': 1,
          'next': 1,
          'door': 1,
          'fellow': 1,
          'worker': 1,
          'chloe': 1,
          'joan': 1,
          'discovers': 1,
          'predict': 1,
          'races': 1,
          'moon': 1,
          'flush': 1,
          'money': 1,
          'daughter': 1,
          'myrtle': 1,
          'jacki': 1,
          'wcs': 1,
          'lewis': 1,
          'richard': 1,
          'causes': 1,
          'conflict': 1,
          'staff': 1,
          'day': 1,
          'seaside': 1,
          'vies': 1,
          'attentions': 1,
          'end': 1,
          'strike': 1,
          'cease': 1,
          'close': 1,
          'support': 1,
          'group': 1,
          'women': 1,
          'led': 1,
          'cootes': 1,
          'wifetobe': 1,
          'spanners': 1,
          'mother': 1,
          'try': 1,
          'resolve': 1,
          'situation': 1,
          'nalso': 1,
          'realises': 1,
          'caused': 1,
          'nothing': 1,
          'trouble': 1,
          'since': 1,
          'started': 1,
          'predicting': 1,
          'race': 1,
          'nthere': 1,
          'good': 1,
          'standard': 1,
          'roles': 1,
          'ncharles': 1,
          'third': 1,
          'billing': 1,
          'appears': 1,
          'scenes': 1,
          'mildly': 1,
          'amusing': 1,
          'nrichard': 1,
          'stuckup': 1,
          'patsy': 1,
          'rowlands': 1,
          'funny': 1,
          'miss': 1,
          'withering': 1,
          'assistant': 1,
          'terrific': 1,
          'small': 1,
          'sole': 1,
          'acting': 1,
          'honours': 1,
          'nalthough': 1,
          'directly': 1,
          'involved': 1,
          'main': 1,
          'storyline': 1,
          'manages': 1,
          'input': 1,
          'great': 1,
          'deal': 1,
          'pathos': 1,
          'feeling': 1,
          'actress': 1,
          'especially': 1,
          'debut': 1,
          'overdoes': 1,
          'role': 1,
          'making': 1,
          'unfunny': 1,
          'njoan': 1,
          'returns': 1,
          'love': 1,
          'interest': 1,
          'instead': 1,
          'barbara': 1,
          'windsor': 1,
          'nsims': 1,
          'downtrodden': 1,
          'taken': 1,
          'nadditionally': 1,
          'bill': 1,
          'maynard': 1,
          'fred': 1,
          'poor': 1,
          'tries': 1,
          'best': 1,
          'entertain': 1,
          'viewer': 1,
          'locations': 1,
          'wealth': 1,
          'characters': 1,
          'tiresome': 1,
          'quickly': 1,
          'leave': 1,
          'lot': 1,
          'desired': 1,
          'know': 1,
          'nit': 1,
          'made': 1,
          '1971': 1,
          'talbot': 1,
          'rothwell': 1,
          'scriptwriter': 1,
          'seems': 1,
          'minds': 1,
          'whether': 1,
          'bluer': 1,
          'maintain': 1,
          'innocent': 1,
          'success': 1,
          'predecessors': 1,
          'nthat': 1,
          'minor': 1,
          'whose': 1,
          'major': 1,
          'asset': 1,
          'new': 1,
          'minorregulars': 1,
          'able': 1,
          'enliven': 1,
          'humourless': 1,
          'nneg': 1}),
 Counter({'nbut': 8,
          'de': 5,
          'house': 5,
          'nthe': 5,
          'film': 4,
          'bont': 4,
          'end': 4,
          'good': 4,
          'bad': 3,
          'ni': 3,
          'thought': 3,
          'liam': 3,
          'neeson': 3,
          'cathrine': 3,
          'zeta': 3,
          'jones': 3,
          'jan': 3,
          'nand': 3,
          'nit': 3,
          'haunting': 3,
          'n': 3,
          'special': 3,
          'say': 3,
          'things': 3,
          'actually': 3,
          'tagline': 2,
          'born': 2,
          'didnt': 2,
          'great': 2,
          'actors': 2,
          'basically': 2,
          'story': 2,
          'hill': 2,
          'doctor': 2,
          'experiment': 2,
          'emotional': 2,
          'forth': 2,
          'na': 2,
          'sinister': 2,
          'take': 2,
          'screen': 2,
          'second': 2,
          'nis': 2,
          'nits': 2,
          'book': 2,
          'scary': 2,
          'make': 2,
          'style': 2,
          'material': 2,
          'effects': 2,
          'impressive': 2,
          'every': 2,
          'absolutely': 2,
          'shows': 2,
          'climax': 2,
          'hichock': 2,
          'see': 2,
          'one': 2,
          'might': 2,
          'stupid': 2,
          'shining': 2,
          'houses': 1,
          'nso': 1,
          'expect': 1,
          'much': 1,
          'preserved': 1,
          'little': 1,
          'spark': 1,
          'ope': 1,
          'entered': 1,
          'theatre': 1,
          'mabe': 1,
          'fun': 1,
          'fact': 1,
          'beginning': 1,
          'rather': 1,
          'intriguing': 1,
          'nthese': 1,
          'helpless': 1,
          'muddled': 1,
          'mess': 1,
          'defies': 1,
          'rationality': 1,
          'nhere': 1,
          'monstrously': 1,
          'overdecorated': 1,
          'mansion': 1,
          'known': 1,
          'visitors': 1,
          'tricked': 1,
          'unknown': 1,
          'guinea': 1,
          'pigs': 1,
          'fright': 1,
          'guise': 1,
          'insomnia': 1,
          'investigation': 1,
          'namong': 1,
          'sophisticated': 1,
          'bisexual': 1,
          'cynical': 1,
          'dope': 1,
          'owen': 1,
          'wilson': 1,
          'gentle': 1,
          'lady': 1,
          'lily': 1,
          'taylor': 1,
          'nactually': 1,
          'researching': 1,
          'primordial': 1,
          'fear': 1,
          'reaction': 1,
          'intends': 1,
          'plant': 1,
          'disturbing': 1,
          'ideas': 1,
          'subjects': 1,
          'watch': 1,
          'nwhat': 1,
          'happens': 1,
          'gets': 1,
          'unexpected': 1,
          'help': 1,
          'rumbles': 1,
          'hums': 1,
          'belches': 1,
          'remarkable': 1,
          'sights': 1,
          'nportals': 1,
          'become': 1,
          'veiny': 1,
          'stainedglass': 1,
          'eyeballs': 1,
          'fireplace': 1,
          'guarded': 1,
          'stone': 1,
          'lions': 1,
          'gapes': 1,
          'like': 1,
          'mouth': 1,
          'nfilmy': 1,
          'cherubic': 1,
          'spirits': 1,
          'shape': 1,
          'sheets': 1,
          'billowy': 1,
          'curtains': 1,
          'computerized': 1,
          'spooketeria': 1,
          'rarely': 1,
          'feels': 1,
          'real': 1,
          'placing': 1,
          'wall': 1,
          'audience': 1,
          'half': 1,
          'main': 1,
          'heroine': 1,
          'running': 1,
          'back': 1,
          'lamps': 1,
          'evil': 1,
          'furniture': 1,
          'exciting': 1,
          'worst': 1,
          'thing': 1,
          'based': 1,
          'shirley': 1,
          'jackson': 1,
          '1963': 1,
          'adaptation': 1,
          'intelligent': 1,
          'played': 1,
          'greatest': 1,
          'fears': 1,
          'sub': 1,
          'conscience': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'cost': 1,
          'less': 1,
          'old': 1,
          'car': 1,
          'managed': 1,
          'shock': 1,
          'terrify': 1,
          'audiences': 1,
          'senses': 1,
          '70': 1,
          'mill': 1,
          'nbudget': 1,
          'screenwriter': 1,
          'david': 1,
          'self': 1,
          'hash': 1,
          'perfectly': 1,
          'lovely': 1,
          'piece': 1,
          'terror': 1,
          'nde': 1,
          'nbont': 1,
          'filmmaking': 1,
          'line': 1,
          'frightening': 1,
          'nhe': 1,
          'master': 1,
          'extravagant': 1,
          'effect': 1,
          'big': 1,
          'visual': 1,
          'adrenaline': 1,
          'rush': 1,
          'give': 1,
          'serious': 1,
          'nin': 1,
          'haunt': 1,
          'fledgling': 1,
          'studio': 1,
          'dream': 1,
          'works': 1,
          'skg': 1,
          'bonts': 1,
          'career': 1,
          'director': 1,
          'nyet': 1,
          'wouldnt': 1,
          'fair': 1,
          'everything': 1,
          'truly': 1,
          'wonderfully': 1,
          'decorated': 1,
          'beautiful': 1,
          'mysterious': 1,
          'magical': 1,
          'spooky': 1,
          'music': 1,
          'blaring': 1,
          'floors': 1,
          'moving': 1,
          'ceiling': 1,
          'morphing': 1,
          'pictures': 1,
          'walls': 1,
          'screaming': 1,
          'moment': 1,
          'time': 1,
          'without': 1,
          'life': 1,
          'nothing': 1,
          'effectsextravaganza': 1,
          'visually': 1,
          'intellectually': 1,
          'hollow': 1,
          'thriller': 1,
          'simply': 1,
          'doesnt': 1,
          'engage': 1,
          'nat': 1,
          'first': 1,
          'know': 1,
          'whats': 1,
          'going': 1,
          'part': 1,
          'nare': 1,
          'hallucinations': 1,
          'nprojections': 1,
          'subconscience': 1,
          'nparanoia': 1,
          'happening': 1,
          'possessed': 1,
          'point': 1,
          'hopes': 1,
          'entertainment': 1,
          'disappears': 1,
          'window': 1,
          'nfor': 1,
          'ever': 1,
          'sat': 1,
          'anticipation': 1,
          'decent': 1,
          'thats': 1,
          'got': 1,
          'believe': 1,
          'said': 1,
          'nbetter': 1,
          'wait': 1,
          'nthis': 1,
          'may': 1,
          'true': 1,
          'work': 1,
          'problem': 1,
          'nthey': 1,
          'impossible': 1,
          'seriously': 1,
          'nany': 1,
          'paralells': 1,
          'heard': 1,
          'linking': 1,
          'picture': 1,
          'kubricks': 1,
          'baseless': 1,
          'class': 1,
          'acting': 1,
          'talent': 1,
          'originality': 1,
          'art': 1,
          'direction': 1,
          'boast': 1,
          'elements': 1,
          'alone': 1,
          'enough': 1,
          'ncasting': 1,
          'small': 1,
          'pale': 1,
          'parts': 1,
          'makes': 1,
          'worse': 1,
          'guess': 1,
          'matter': 1,
          'critics': 1,
          'write': 1,
          'anyway': 1,
          'even': 1,
          'would': 1,
          'films': 1,
          'nneg': 1}),
 Counter({'mother': 9,
          'daughter': 8,
          'beverly': 7,
          'hills': 7,
          'one': 5,
          'life': 4,
          'mom': 4,
          'film': 3,
          'script': 3,
          'even': 3,
          'go': 3,
          'nthe': 3,
          'school': 3,
          'many': 3,
          'high': 3,
          'learns': 3,
          'anywhere': 2,
          'thing': 2,
          'tell': 2,
          'order': 2,
          'couldnt': 2,
          'went': 2,
          'fortunate': 2,
          'weak': 2,
          'made': 2,
          'ann': 2,
          'leave': 2,
          'small': 2,
          'doesnt': 2,
          'like': 2,
          'beach': 2,
          'car': 2,
          'best': 2,
          'ending': 2,
          'good': 2,
          'job': 2,
          'survive': 2,
          'wisconsin': 2,
          'nduring': 2,
          'traffic': 2,
          'cop': 2,
          'wise': 2,
          'living': 2,
          'way': 2,
          'stay': 2,
          'nbut': 2,
          'wants': 2,
          'trying': 2,
          'right': 2,
          'nthis': 2,
          'showing': 2,
          'title': 1,
          'taken': 1,
          'writings': 1,
          'ralph': 1,
          'waldo': 1,
          'emerson': 1,
          'describing': 1,
          'traveler': 1,
          'nthere': 1,
          'isnt': 1,
          'motherdaughter': 1,
          'relationship': 1,
          'melodrama': 1,
          'felt': 1,
          'honest': 1,
          'nit': 1,
          'relies': 1,
          'contrived': 1,
          'minor': 1,
          'character': 1,
          'obvious': 1,
          'straighten': 1,
          'dysfunctional': 1,
          'lives': 1,
          'reason': 1,
          'figure': 1,
          'nif': 1,
          'looks': 1,
          'familiar': 1,
          'slums': 1,
          '98': 1,
          'ground': 1,
          'comical': 1,
          'perceptive': 1,
          'due': 1,
          'alan': 1,
          'arkin': 1,
          'natasha': 1,
          'lyonne': 1,
          'performances': 1,
          'much': 1,
          'sharper': 1,
          'work': 1,
          'nalvin': 1,
          'sargents': 1,
          'annoyingly': 1,
          'claustral': 1,
          'nwayne': 1,
          'wangs': 1,
          'joy': 1,
          'luck': 1,
          'club': 1,
          'inept': 1,
          'direction': 1,
          'weaker': 1,
          'inability': 1,
          'story': 1,
          'unfolding': 1,
          'without': 1,
          'voiceover': 1,
          'relating': 1,
          'action': 1,
          'convey': 1,
          'npushy': 1,
          'adele': 1,
          'august': 1,
          'susan': 1,
          'sarandon': 1,
          'forces': 1,
          '14yearold': 1,
          'natalie': 1,
          'portman': 1,
          'midwestern': 1,
          'burg': 1,
          'crosscountry': 1,
          'resents': 1,
          'twice': 1,
          'divorced': 1,
          'unstable': 1,
          'exotic': 1,
          'schoolteacher': 1,
          'bullying': 1,
          'actress': 1,
          'means': 1,
          'escaping': 1,
          'humdrum': 1,
          'daqughter': 1,
          'used': 1,
          'gold': 1,
          'mercedes': 1,
          'buys': 1,
          'drive': 1,
          'lala': 1,
          'land': 1,
          'cant': 1,
          'stand': 1,
          'boys': 1,
          'records': 1,
          'enjoys': 1,
          'hearing': 1,
          'radio': 1,
          'nso': 1,
          'becomes': 1,
          'question': 1,
          'knows': 1,
          'ladies': 1,
          'fight': 1,
          'predictable': 1,
          'sweet': 1,
          'comes': 1,
          'yawner': 1,
          'nadeles': 1,
          'dream': 1,
          'greener': 1,
          'pastures': 1,
          'soon': 1,
          'look': 1,
          'lands': 1,
          'slum': 1,
          'precious': 1,
          'scratched': 1,
          'unruly': 1,
          'kids': 1,
          'settles': 1,
          'hates': 1,
          'financially': 1,
          'ndaughter': 1,
          'pines': 1,
          'town': 1,
          'friends': 1,
          'arguments': 1,
          'freespirited': 1,
          'ice': 1,
          'cream': 1,
          'ticketed': 1,
          'runs': 1,
          'away': 1,
          'chased': 1,
          'friendly': 1,
          'michael': 1,
          'milhoan': 1,
          'offers': 1,
          'counsel': 1,
          'nwith': 1,
          'cops': 1,
          'zen': 1,
          'wisdom': 1,
          'passed': 1,
          'onto': 1,
          'different': 1,
          'addresses': 1,
          'reaches': 1,
          '17': 1,
          'plans': 1,
          'get': 1,
          'using': 1,
          'grades': 1,
          'brown': 1,
          'university': 1,
          'instead': 1,
          'ucla': 1,
          'grows': 1,
          'feeling': 1,
          'awkward': 1,
          'immediately': 1,
          'girlfriends': 1,
          'rich': 1,
          'boy': 1,
          'admirer': 1,
          'neliot': 1,
          'corbin': 1,
          'allred': 1,
          'reader': 1,
          'transition': 1,
          'feel': 1,
          'reality': 1,
          'everything': 1,
          'seemed': 1,
          'staged': 1,
          'unemotional': 1,
          'nwhen': 1,
          'cousin': 1,
          'benny': 1,
          'shawn': 1,
          'hatosy': 1,
          'happens': 1,
          'friend': 1,
          'dies': 1,
          'accident': 1,
          'back': 1,
          'returns': 1,
          'funeral': 1,
          'reunion': 1,
          'scenes': 1,
          'wasnt': 1,
          'clearly': 1,
          'shown': 1,
          'matter': 1,
          'never': 1,
          'clear': 1,
          'badly': 1,
          'big': 1,
          'battle': 1,
          'wills': 1,
          'dreams': 1,
          'ni': 1,
          'guess': 1,
          'filmmaker': 1,
          'say': 1,
          'bad': 1,
          'dreamer': 1,
          'observant': 1,
          'able': 1,
          'recognize': 1,
          'mothers': 1,
          'faults': 1,
          'growing': 1,
          'pains': 1,
          'need': 1,
          'parenting': 1,
          'nmother': 1,
          'series': 1,
          'setbacks': 1,
          'dumped': 1,
          'dreamboat': 1,
          'dentist': 1,
          'bochner': 1,
          'met': 1,
          'witnessing': 1,
          'mimic': 1,
          'whiny': 1,
          'optimistic': 1,
          'sayings': 1,
          'acting': 1,
          'part': 1,
          'grownup': 1,
          'independent': 1,
          'stop': 1,
          'nshe': 1,
          'told': 1,
          'ticket': 1,
          'time': 1,
          'remind': 1,
          'course': 1,
          'results': 1,
          'corny': 1,
          'moms': 1,
          'heart': 1,
          'always': 1,
          'place': 1,
          'wrong': 1,
          'films': 1,
          'want': 1,
          'theater': 1,
          'nneg': 1}),
 Counter({'tomb': 6,
          'raider': 6,
          'game': 5,
          'croft': 5,
          'video': 4,
          'jolie': 4,
          'things': 3,
          'lara': 3,
          'isnt': 3,
          'say': 3,
          'time': 3,
          'well': 2,
          'big': 2,
          'none': 2,
          'fun': 2,
          'exciting': 2,
          'bitter': 2,
          'brought': 2,
          'nthe': 2,
          'makes': 2,
          'look': 2,
          'suspect': 2,
          'character': 2,
          'development': 2,
          'movie': 2,
          'hard': 2,
          'nshouldnt': 2,
          'father': 2,
          'nfun': 1,
          'nexciting': 1,
          'nchallenging': 1,
          'ngiven': 1,
          'unprecedented': 1,
          'popularity': 1,
          'especially': 1,
          'among': 1,
          'teenage': 1,
          'boys': 1,
          'sports': 1,
          'uberbuff': 1,
          'pistol': 1,
          'packin': 1,
          'babe': 1,
          'raids': 1,
          'ntombs': 1,
          'believe': 1,
          'three': 1,
          'n': 1,
          'screen': 1,
          'variant': 1,
          'said': 1,
          'features': 1,
          'pumpedup': 1,
          'angelina': 1,
          'oscar': 1,
          'winner': 1,
          'girl': 1,
          'interrupted': 1,
          'less': 1,
          'title': 1,
          'role': 1,
          'however': 1,
          'nit': 1,
          'challenge': 1,
          'seeing': 1,
          'long': 1,
          'stay': 1,
          'seat': 1,
          'suffered': 1,
          'end': 1,
          'wife': 1,
          'opted': 1,
          'barnes': 1,
          'noble': 1,
          '45minute': 1,
          'mark': 1,
          'ndirected': 1,
          'simon': 1,
          'west': 1,
          'subtlety': 1,
          'con': 1,
          'air': 1,
          'emptyheaded': 1,
          'budget': 1,
          'bore': 1,
          'story': 1,
          'borrows': 1,
          'unintelligently': 1,
          'mother': 1,
          'turkeys': 1,
          'hudson': 1,
          'hawk': 1,
          'hokum': 1,
          'planetary': 1,
          'alignments': 1,
          'sacred': 1,
          'stones': 1,
          'together': 1,
          'nwho': 1,
          'heck': 1,
          'cares': 1,
          'super': 1,
          'mario': 1,
          'bros': 1,
          'bob': 1,
          'hoskins': 1,
          'illadvised': 1,
          'career': 1,
          'move': 1,
          'like': 1,
          'rocco': 1,
          'brothers': 1,
          'classic': 1,
          'italian': 1,
          'neorealism': 1,
          'nill': 1,
          'go': 1,
          'limb': 1,
          'theres': 1,
          'actually': 1,
          'proper': 1,
          'nthis': 1,
          'defendersvideo': 1,
          'nuts': 1,
          'jump': 1,
          'kicking': 1,
          'serious': 1,
          'butt': 1,
          'bum': 1,
          'since': 1,
          'ms': 1,
          'hails': 1,
          'englands': 1,
          'green': 1,
          'pleasant': 1,
          'nwith': 1,
          'lips': 1,
          'breasts': 1,
          'biceps': 1,
          'inflated': 1,
          'max': 1,
          'posturing': 1,
          'simply': 1,
          'standing': 1,
          'still': 1,
          'without': 1,
          'trying': 1,
          'tough': 1,
          'nok': 1,
          'lets': 1,
          'forget': 1,
          'challenging': 1,
          'least': 1,
          'buttkicking': 1,
          'heroine': 1,
          'also': 1,
          'encompass': 1,
          'sophistication': 1,
          'james': 1,
          'bond': 1,
          'wit': 1,
          'indiana': 1,
          'jones': 1,
          'ntheres': 1,
          'humor': 1,
          'found': 1,
          'anywhere': 1,
          'even': 1,
          'though': 1,
          'tries': 1,
          'neven': 1,
          'mummy': 1,
          'returns': 1,
          'didnt': 1,
          'take': 1,
          'seriously': 1,
          'villain': 1,
          'noticeably': 1,
          'lacking': 1,
          'special': 1,
          'effects': 1,
          'ridiculously': 1,
          'overblown': 1,
          'unnecessarily': 1,
          'complicated': 1,
          'script': 1,
          'nonexistent': 1,
          'nto': 1,
          'liven': 1,
          'perhaps': 1,
          'jolies': 1,
          'live': 1,
          'jon': 1,
          'voight': 1,
          'puts': 1,
          'minutes': 1,
          'laras': 1,
          'dead': 1,
          'lord': 1,
          'talk': 1,
          'stretch': 1,
          'thing': 1,
          'hadnt': 1,
          'expected': 1,
          'film': 1,
          'affects': 1,
          'slightly': 1,
          'better': 1,
          'english': 1,
          'accent': 1,
          'pa': 1,
          'although': 1,
          'thinlooking': 1,
          'moustache': 1,
          'hes': 1,
          'forced': 1,
          'wear': 1,
          'gets': 1,
          'way': 1,
          'nunsuccessful': 1,
          'entirely': 1,
          'nif': 1,
          'anything': 1,
          'want': 1,
          'check': 1,
          'figure': 1,
          'exactly': 1,
          'fuss': 1,
          'nneg': 1}),
 Counter({'anastasia': 5,
          'may': 3,
          'animation': 3,
          'disney': 2,
          'studios': 2,
          'bluth': 2,
          'visuals': 2,
          'fox': 2,
          'occasionally': 2,
          'kids': 2,
          'plot': 2,
          'walt': 1,
          'finally': 1,
          'met': 1,
          'match': 1,
          'lush': 1,
          'twentieth': 1,
          'century': 1,
          'foxs': 1,
          'nbut': 1,
          'judging': 1,
          'latest': 1,
          'efforts': 1,
          'thing': 1,
          'brag': 1,
          'ndisneys': 1,
          'recent': 1,
          'classics': 1,
          'stretched': 1,
          'credibility': 1,
          'films': 1,
          'pocahontas': 1,
          'hunchback': 1,
          'notre': 1,
          'dame': 1,
          'lesser': 1,
          'extent': 1,
          'hercules': 1,
          'nwith': 1,
          'gone': 1,
          'far': 1,
          'throw': 1,
          'facts': 1,
          'completely': 1,
          'window': 1,
          'nsome': 1,
          'say': 1,
          'nits': 1,
          'movie': 1,
          'nwell': 1,
          'nif': 1,
          'young': 1,
          'beware': 1,
          'noticeably': 1,
          'frightened': 1,
          'corpserotting': 1,
          'rasputin': 1,
          'zombie': 1,
          'whose': 1,
          'body': 1,
          'parts': 1,
          'continually': 1,
          'fall': 1,
          'disconcertingly': 1,
          'real': 1,
          'way': 1,
          'nconsider': 1,
          'warned': 1,
          'nnevertheless': 1,
          'quite': 1,
          'stunning': 1,
          'times': 1,
          'ndon': 1,
          'used': 1,
          'computer': 1,
          'extensively': 1,
          'throughout': 1,
          'rivalling': 1,
          'photographic': 1,
          'quality': 1,
          'nand': 1,
          'yet': 1,
          'scenes': 1,
          'handdrawn': 1,
          'material': 1,
          'seems': 1,
          'saturdaymorning': 1,
          'tv': 1,
          'crowd': 1,
          'leads': 1,
          'wonder': 1,
          'nwas': 1,
          'rushed': 1,
          'market': 1,
          'combat': 1,
          'nthe': 1,
          'anyone': 1,
          'read': 1,
          'history': 1,
          'knows': 1,
          'concerns': 1,
          'attempt': 1,
          'return': 1,
          'royal': 1,
          'family': 1,
          'lost': 1,
          'overthrow': 1,
          'romanovs': 1,
          '1916': 1,
          'nnot': 1,
          'much': 1,
          'concerned': 1,
          'really': 1,
          'happened': 1,
          'nas': 1,
          'go': 1,
          'rent': 1,
          'disneys': 1,
          'candleshoe': 1,
          'nyoull': 1,
          'see': 1,
          '60': 1,
          'nneg': 1}),
 Counter({'deep': 9,
          'rising': 9,
          'nthe': 8,
          'like': 5,
          'nin': 5,
          'film': 5,
          'something': 3,
          'big': 3,
          'special': 3,
          'since': 3,
          'much': 3,
          'titanic': 3,
          'bad': 3,
          'ship': 3,
          'williams': 3,
          'supposed': 3,
          'days': 3,
          'screen': 3,
          'effects': 2,
          'one': 2,
          'luxury': 2,
          'liner': 2,
          'obvious': 2,
          'thats': 2,
          'fact': 2,
          'level': 2,
          'human': 2,
          'learn': 2,
          'monster': 2,
          'feels': 2,
          'tremors': 2,
          'half': 2,
          'really': 2,
          'anything': 2,
          'board': 2,
          'cast': 2,
          'theres': 2,
          'treat': 2,
          'whos': 2,
          'kevin': 2,
          'j': 2,
          'oconnor': 2,
          'wes': 2,
          'studi': 2,
          'sink': 2,
          'problem': 2,
          'time': 2,
          'janssen': 2,
          'primarily': 2,
          'best': 2,
          'known': 2,
          'last': 2,
          'nunfortunately': 2,
          'picture': 2,
          'audiences': 2,
          'heres': 1,
          'chew': 1,
          'whats': 1,
          'favorite': 1,
          'food': 1,
          'cheesylooking': 1,
          'monsters': 1,
          'lurking': 1,
          'bowels': 1,
          'answer': 1,
          'question': 1,
          'cardboard': 1,
          'depth': 1,
          'fully': 1,
          'developed': 1,
          'character': 1,
          'painfully': 1,
          'generic': 1,
          'creature': 1,
          'feature': 1,
          'ndeep': 1,
          'demonstrates': 1,
          'originality': 1,
          'vitality': 1,
          'scripted': 1,
          'computer': 1,
          'considering': 1,
          'rigid': 1,
          'adherence': 1,
          'expected': 1,
          'formulas': 1,
          'perhaps': 1,
          'astonishing': 1,
          'thing': 1,
          'exceptionally': 1,
          'high': 1,
          'gore': 1,
          'nnot': 1,
          'starship': 1,
          'troopers': 1,
          'many': 1,
          'chunks': 1,
          'flesh': 1,
          'nonhuman': 1,
          'scattered': 1,
          'directions': 1,
          'nwe': 1,
          'bloody': 1,
          'trivia': 1,
          'well': 1,
          'sea': 1,
          'spraypaints': 1,
          'red': 1,
          'drinks': 1,
          'spits': 1,
          'liquefied': 1,
          'remains': 1,
          'halfdigested': 1,
          'leftovers': 1,
          'ni': 1,
          'suppose': 1,
          'risings': 1,
          'gallery': 1,
          'grotesque': 1,
          'images': 1,
          'represents': 1,
          'fun': 1,
          'stuff': 1,
          'love': 1,
          'macabre': 1,
          'doesnt': 1,
          'non': 1,
          'surface': 1,
          'analyzed': 1,
          'grafted': 1,
          'onto': 1,
          'everyone': 1,
          'else': 1,
          'citing': 1,
          'equally': 1,
          'valid': 1,
          'alienstitanic': 1,
          'connection': 1,
          'james': 1,
          'cameron': 1,
          'directed': 1,
          'going': 1,
          'disaster': 1,
          'angle': 1,
          'tongueincheek': 1,
          'mayhem': 1,
          'somehow': 1,
          'misses': 1,
          'marks': 1,
          'wide': 1,
          'margin': 1,
          'humorous': 1,
          'tense': 1,
          'exciting': 1,
          'downright': 1,
          'boring': 1,
          'despite': 1,
          'length': 1,
          'camerons': 1,
          'current': 1,
          'boxoffice': 1,
          'champ': 1,
          'longer': 1,
          'movie': 1,
          'nis': 1,
          'necessary': 1,
          'say': 1,
          'plot': 1,
          'nprobably': 1,
          'easy': 1,
          'guess': 1,
          'ill': 1,
          'go': 1,
          'ahead': 1,
          'oblige': 1,
          'anyone': 1,
          'wants': 1,
          'synopsis': 1,
          'opens': 1,
          'introducing': 1,
          'us': 1,
          'gang': 1,
          'guys': 1,
          'mercenary': 1,
          'addition': 1,
          'usual': 1,
          'psychopaths': 1,
          'lunatics': 1,
          'finnegan': 1,
          'boats': 1,
          'pilot': 1,
          'indiana': 1,
          'jones': 1,
          'knockoff': 1,
          'joey': 1,
          'inept': 1,
          'sidekick': 1,
          'lovable': 1,
          'funny': 1,
          'irritating': 1,
          'hanover': 1,
          'mastermind': 1,
          'use': 1,
          'term': 1,
          'lightly': 1,
          'operation': 1,
          'ntheir': 1,
          'goal': 1,
          'attack': 1,
          'cruise': 1,
          'clean': 1,
          'safe': 1,
          'using': 1,
          'illegallyacquired': 1,
          'torpedoes': 1,
          'reach': 1,
          'argonautica': 1,
          'titaniclike': 1,
          'turned': 1,
          'marie': 1,
          'celeste': 1,
          'naside': 1,
          'beautiful': 1,
          'jewel': 1,
          'thief': 1,
          'famke': 1,
          'couple': 1,
          'crew': 1,
          'members': 1,
          'reason': 1,
          'soon': 1,
          'becomes': 1,
          'taken': 1,
          'effect': 1,
          'resemble': 1,
          'octopus': 1,
          'teeth': 1,
          'eight': 1,
          'tentacles': 1,
          'led': 1,
          'comprised': 1,
          'hasbeens': 1,
          'probablyneverwillbes': 1,
          'two': 1,
          'exceptions': 1,
          'villain': 1,
          'mohicans': 1,
          'djimon': 1,
          'hounsou': 1,
          'amistads': 1,
          'cinque': 1,
          'nwilliams': 1,
          'cant': 1,
          'miss': 1,
          'prospect': 1,
          'hollywood': 1,
          'fallen': 1,
          'far': 1,
          'favor': 1,
          'lead': 1,
          'role': 1,
          'inability': 1,
          'create': 1,
          'charismatic': 1,
          'interesting': 1,
          'figure': 1,
          'may': 1,
          'whatever': 1,
          'left': 1,
          'sputtering': 1,
          'career': 1,
          'nfamke': 1,
          'forever': 1,
          'xenia': 1,
          'onatopp': 1,
          'goldeneye': 1,
          'perfect': 1,
          'bland': 1,
          'match': 1,
          'ngiven': 1,
          'limited': 1,
          'acting': 1,
          'abilities': 1,
          'likely': 1,
          'chosen': 1,
          'part': 1,
          'basis': 1,
          'physical': 1,
          'attributes': 1,
          'bra': 1,
          'defeats': 1,
          'purpose': 1,
          'wet': 1,
          'teeshirt': 1,
          'nmeanwhile': 1,
          'entirely': 1,
          'exhibits': 1,
          'appeal': 1,
          'fingernails': 1,
          'scratching': 1,
          'blackboard': 1,
          'nthese': 1,
          'becoming': 1,
          'difficult': 1,
          'impress': 1,
          'computergenerated': 1,
          'nthis': 1,
          'lesson': 1,
          'writerdirector': 1,
          'stephen': 1,
          'sommers': 1,
          'previously': 1,
          'helmed': 1,
          'liveaction': 1,
          'jungle': 1,
          'book': 1,
          'needs': 1,
          'jurassic': 1,
          'park': 1,
          'viewers': 1,
          'astounded': 1,
          'mere': 1,
          'spectacle': 1,
          'seeing': 1,
          'imposing': 1,
          'past': 1,
          'nnow': 1,
          'moviegoers': 1,
          'looking': 1,
          'sophistication': 1,
          'visuals': 1,
          'wellincorporated': 1,
          'impossible': 1,
          'tell': 1,
          'end': 1,
          'reality': 1,
          'begins': 1,
          'everything': 1,
          'artificial': 1,
          'unconvincing': 1,
          'fundamental': 1,
          'faced': 1,
          'isnt': 1,
          'idiotic': 1,
          'monotony': 1,
          'individual': 1,
          'poor': 1,
          'quality': 1,
          'entire': 1,
          'bankrupt': 1,
          'genre': 1,
          'although': 1,
          'fair': 1,
          'particularly': 1,
          'entry': 1,
          'neven': 1,
          'sunk': 1,
          'sight': 1,
          'knowledgeable': 1,
          'viewer': 1,
          'knows': 1,
          'wont': 1,
          'kind': 1,
          'nlike': 1,
          'slimy': 1,
          'slithering': 1,
          'things': 1,
          'inhabit': 1,
          'air': 1,
          'vents': 1,
          'pipes': 1,
          'movies': 1,
          'waiting': 1,
          'around': 1,
          'corner': 1,
          'ambush': 1,
          'nand': 1,
          'consideration': 1,
          'unlike': 1,
          'truly': 1,
          'horrifying': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 7,
          'invisible': 6,
          'man': 6,
          'us': 6,
          'nhe': 5,
          'beacon': 4,
          'verhoven': 4,
          'like': 4,
          'movie': 4,
          'place': 4,
          'nand': 4,
          'novel': 3,
          'actors': 3,
          'shue': 3,
          'effects': 3,
          'see': 3,
          'first': 3,
          'nbut': 3,
          'made': 3,
          'something': 3,
          'hollow': 3,
          'nit': 3,
          'nin': 3,
          'make': 3,
          'kevin': 2,
          'paul': 2,
          'amazing': 2,
          'special': 2,
          'enough': 2,
          'time': 2,
          'secret': 2,
          'caine': 2,
          'invisibility': 2,
          'ncaine': 2,
          'bad': 2,
          'thing': 2,
          'couple': 2,
          'nthough': 2,
          'actually': 2,
          'verhovens': 2,
          'imagination': 2,
          'doesnt': 2,
          'reason': 2,
          'nbeing': 2,
          'gives': 2,
          'without': 2,
          'society': 2,
          'truly': 2,
          'depth': 2,
          'book': 2,
          'since': 2,
          'talent': 2,
          'seen': 2,
          'one': 2,
          'way': 2,
          'nthere': 2,
          'nwe': 2,
          'slowly': 2,
          'blood': 2,
          'great': 2,
          'much': 2,
          'never': 2,
          'anything': 2,
          'films': 2,
          'nits': 2,
          'etc': 2,
          'adaptation': 1,
          'h': 1,
          'g': 1,
          'wells': 1,
          'acclaimed': 1,
          'elizabeth': 1,
          'director': 1,
          'nthat': 1,
          'plus': 1,
          'quick': 1,
          'demonstration': 1,
          'trailer': 1,
          'lure': 1,
          'theatre': 1,
          'problem': 1,
          'keep': 1,
          'ni': 1,
          'cant': 1,
          'imagine': 1,
          'anyone': 1,
          'would': 1,
          'second': 1,
          'nworking': 1,
          'top': 1,
          'military': 1,
          'project': 1,
          'sebastian': 1,
          'eccentric': 1,
          'genius': 1,
          'calls': 1,
          'god': 1,
          'discovered': 1,
          'two': 1,
          'faces': 1,
          'completed': 1,
          'nnow': 1,
          'next': 1,
          'logical': 1,
          'step': 1,
          'human': 1,
          'volunteers': 1,
          'risky': 1,
          'experiment': 1,
          'goes': 1,
          'wrong': 1,
          'nwhile': 1,
          'exgirlfriend': 1,
          'linda': 1,
          'elisabeth': 1,
          'desperately': 1,
          'tries': 1,
          'find': 1,
          'return': 1,
          'normal': 1,
          'learns': 1,
          'prison': 1,
          'superpower': 1,
          'thats': 1,
          'unexpected': 1,
          'sideeffect': 1,
          'drug': 1,
          'sends': 1,
          'careening': 1,
          'paranoid': 1,
          'megalomania': 1,
          'naturally': 1,
          'given': 1,
          'modest': 1,
          'superpowers': 1,
          'survive': 1,
          'immolation': 1,
          'flame': 1,
          'thrower': 1,
          'explosion': 1,
          'quart': 1,
          'nitroglycerine': 1,
          'nsoon': 1,
          'every': 1,
          'sense': 1,
          'decency': 1,
          'forgotten': 1,
          'little': 1,
          'intelligence': 1,
          'left': 1,
          'disappears': 1,
          'looses': 1,
          'control': 1,
          'turns': 1,
          'alienripoff': 1,
          'walking': 1,
          'half': 1,
          'finished': 1,
          'terminator': 1,
          'spooking': 1,
          'scaring': 1,
          'killing': 1,
          'everybody': 1,
          'based': 1,
          'called': 1,
          'title': 1,
          'ironically': 1,
          'changed': 1,
          'sums': 1,
          'nicely': 1,
          'nthis': 1,
          'silly': 1,
          'production': 1,
          'nlaughable': 1,
          'napparently': 1,
          'stretch': 1,
          'far': 1,
          'nfor': 1,
          'worthwhile': 1,
          'become': 1,
          'case': 1,
          'girls': 1,
          'locker': 1,
          'room': 1,
          'undetected': 1,
          'primitive': 1,
          'schoolboy': 1,
          'mentality': 1,
          'eventually': 1,
          'kills': 1,
          'opportunity': 1,
          'want': 1,
          'influenced': 1,
          'many': 1,
          'ways': 1,
          'illusion': 1,
          'life': 1,
          'consequences': 1,
          'nature': 1,
          'nall': 1,
          'true': 1,
          'horror': 1,
          'gone': 1,
          'remain': 1,
          'seat': 1,
          'use': 1,
          'power': 1,
          'voyeuristically': 1,
          'modernization': 1,
          'words': 1,
          'dehumanization': 1,
          'stop': 1,
          'becomes': 1,
          'rapist': 1,
          'course': 1,
          'murderer': 1,
          'nyoull': 1,
          'start': 1,
          'wondering': 1,
          'found': 1,
          'nshues': 1,
          'barely': 1,
          'josh': 1,
          'brolin': 1,
          'underused': 1,
          'rest': 1,
          'cast': 1,
          'suffer': 1,
          'mostly': 1,
          'lack': 1,
          'nkevin': 1,
          'performs': 1,
          'gracefully': 1,
          'nhis': 1,
          'face': 1,
          'part': 1,
          'exists': 1,
          'disembodied': 1,
          'voice': 1,
          'times': 1,
          'presence': 1,
          'saves': 1,
          'completely': 1,
          'embarrassing': 1,
          'end': 1,
          'probably': 1,
          'best': 1,
          'technical': 1,
          'achievement': 1,
          'jurassic': 1,
          'park': 1,
          'absolutely': 1,
          'observe': 1,
          'layers': 1,
          'skin': 1,
          'muscle': 1,
          'tissue': 1,
          'bone': 1,
          'peeled': 1,
          'away': 1,
          'body': 1,
          'rendered': 1,
          'beating': 1,
          'heart': 1,
          'inflating': 1,
          'lungs': 1,
          'veins': 1,
          'pulsing': 1,
          'newlypumped': 1,
          'inventive': 1,
          'shots': 1,
          'smoke': 1,
          'fire': 1,
          'air': 1,
          'water': 1,
          'scenes': 1,
          'worth': 1,
          'attending': 1,
          'nwhat': 1,
          'disturbing': 1,
          'talented': 1,
          'grand': 1,
          'budget': 1,
          'could': 1,
          'npretty': 1,
          'jan': 1,
          'de': 1,
          'bont': 1,
          'twister': 1,
          'haunting': 1,
          'extraordinary': 1,
          'responsible': 1,
          'several': 1,
          'good': 1,
          'basic': 1,
          'instinct': 1,
          'starship': 1,
          'troopers': 1,
          'incredibly': 1,
          'showgirls': 1,
          'total': 1,
          'recall': 1,
          'fits': 1,
          'perfectly': 1,
          'collection': 1,
          'better': 1,
          'worse': 1,
          'average': 1,
          'proves': 1,
          'incapable': 1,
          'handling': 1,
          'complex': 1,
          'issues': 1,
          'instead': 1,
          'chills': 1,
          'inserts': 1,
          'trademarks': 1,
          'stupid': 1,
          'dialogue': 1,
          'lots': 1,
          'dull': 1,
          'action': 1,
          'naked': 1,
          'bodies': 1,
          'even': 1,
          'throws': 1,
          'worst': 1,
          'clich': 1,
          'advancing': 1,
          'fireball': 1,
          'villain': 1,
          'comes': 1,
          'back': 1,
          'dead': 1,
          'tops': 1,
          'whole': 1,
          'ridiculous': 1,
          'endings': 1,
          'year': 1,
          'youll': 1,
          'screaming': 1,
          'nooooo': 1,
          'attempt': 1,
          'run': 1,
          'towards': 1,
          'exit': 1,
          'slow': 1,
          'motion': 1,
          'ask': 1,
          'answer': 1,
          'simple': 1,
          'hollywood': 1,
          'producing': 1,
          'machine': 1,
          'business': 1,
          'moviemaking': 1,
          'money': 1,
          'telling': 1,
          'stories': 1,
          'marketing': 1,
          'transporting': 1,
          'different': 1,
          'dazzle': 1,
          'magic': 1,
          'cleverness': 1,
          'nto': 1,
          'care': 1,
          'think': 1,
          'feel': 1,
          'nverhoven': 1,
          'obviously': 1,
          'missed': 1,
          'point': 1,
          'proof': 1,
          'flesh': 1,
          'bones': 1,
          'soul': 1,
          'na': 1,
          'void': 1,
          'nneg': 1}),
 Counter({'murphy': 16,
          'harlem': 8,
          'nights': 7,
          'movie': 7,
          'n': 7,
          'nthey': 5,
          'get': 5,
          'character': 5,
          'murphys': 4,
          'gon': 4,
          'na': 4,
          'eddie': 3,
          'time': 3,
          'think': 3,
          'good': 3,
          'film': 3,
          'nand': 3,
          'minutes': 3,
          'nfor': 3,
          'role': 3,
          'hall': 3,
          'movies': 2,
          'blame': 2,
          'fails': 2,
          'nbut': 2,
          'nheres': 2,
          'drama': 2,
          'best': 2,
          'ive': 2,
          'nthe': 2,
          'even': 2,
          'nmurphys': 2,
          'script': 2,
          'makes': 2,
          'first': 2,
          'gets': 2,
          'cast': 2,
          'della': 2,
          'reese': 2,
          '3': 2,
          'women': 2,
          'nmurphy': 2,
          'life': 2,
          'another': 2,
          'spiffy': 2,
          'plot': 2,
          'sting': 2,
          'fun': 2,
          'little': 2,
          'nin': 2,
          'much': 2,
          'ten': 2,
          'lot': 1,
          'riding': 1,
          'nas': 1,
          'writer': 1,
          'director': 1,
          'executive': 1,
          'producer': 1,
          'star': 1,
          'shoulder': 1,
          'hell': 1,
          'receive': 1,
          'credit': 1,
          'succeeds': 1,
          'nshould': 1,
          'sacrifice': 1,
          'hardearned': 1,
          'cash': 1,
          'support': 1,
          'risky': 1,
          'gamble': 1,
          'nwell': 1,
          'depends': 1,
          'trust': 1,
          'thinks': 1,
          'audience': 1,
          'expecting': 1,
          'sexy': 1,
          'funny': 1,
          'ni': 1,
          'done': 1,
          'paramount': 1,
          'radio': 1,
          'network': 1,
          'charmless': 1,
          'unoriginal': 1,
          'disappointing': 1,
          'almost': 1,
          'without': 1,
          'question': 1,
          'worst': 1,
          'actors': 1,
          'career': 1,
          'havent': 1,
          'seen': 1,
          'defense': 1,
          'guess': 1,
          'whos': 1,
          'problem': 1,
          'direction': 1,
          'fairly': 1,
          'looking': 1,
          'nno': 1,
          'project': 1,
          'probably': 1,
          'doomed': 1,
          'cameras': 1,
          'rolled': 1,
          'awful': 1,
          'culprit': 1,
          'nlets': 1,
          'count': 1,
          'mistakes': 1,
          'attempt': 1,
          'screenwriting': 1,
          '1': 1,
          'shatters': 1,
          'record': 1,
          'profanity': 1,
          'motion': 1,
          'picture': 1,
          'nyes': 1,
          'outdoes': 1,
          'work': 1,
          'raw': 1,
          'npractically': 1,
          'every': 1,
          'line': 1,
          'dialogue': 1,
          'contains': 1,
          'least': 1,
          'one': 1,
          'four': 1,
          'letter': 1,
          'word': 1,
          '15': 1,
          'irritating': 1,
          '2': 1,
          'wastes': 1,
          'talents': 1,
          'fine': 1,
          'nrichard': 1,
          'pryor': 1,
          'redd': 1,
          'foxx': 1,
          'michael': 1,
          'lerner': 1,
          'face': 1,
          'impossible': 1,
          'task': 1,
          'carving': 1,
          'credible': 1,
          'characters': 1,
          'riddled': 1,
          'stereotypes': 1,
          'neach': 1,
          'shines': 1,
          'occasionally': 1,
          'basically': 1,
          'performers': 1,
          'stuck': 1,
          'bad': 1,
          'vehicle': 1,
          'demeans': 1,
          'depicting': 1,
          'solely': 1,
          'sexual': 1,
          'objects': 1,
          'pawns': 1,
          'power': 1,
          'struggles': 1,
          'men': 1,
          'admitted': 1,
          'interviews': 1,
          'weary': 1,
          'private': 1,
          'really': 1,
          'neither': 1,
          'puts': 1,
          'bitter': 1,
          'feelings': 1,
          '000': 1,
          'screens': 1,
          'across': 1,
          'country': 1,
          'matter': 1,
          'altogether': 1,
          'nyoure': 1,
          'forced': 1,
          'swallow': 1,
          'pretty': 1,
          'gruesome': 1,
          'stuff': 1,
          'instance': 1,
          'punches': 1,
          'stomach': 1,
          'shoots': 1,
          'jasmine': 1,
          'guy': 1,
          'head': 1,
          'nthis': 1,
          'meanspirited': 1,
          'folks': 1,
          'nlovely': 1,
          'newcomer': 1,
          'lela': 1,
          'rochon': 1,
          'easy': 1,
          'common': 1,
          'whore': 1,
          'doesnt': 1,
          'scenes': 1,
          'nthank': 1,
          'god': 1,
          'might': 1,
          'run': 1,
          'bulldozer': 1,
          '4': 1,
          'written': 1,
          'perhaps': 1,
          'blandest': 1,
          'date': 1,
          'loveable': 1,
          'charisma': 1,
          'emerges': 1,
          'twice': 1,
          'would': 1,
          'rather': 1,
          'give': 1,
          'wardrobe': 1,
          'personality': 1,
          'nsometimes': 1,
          'seems': 1,
          'made': 1,
          'could': 1,
          'wear': 1,
          'fancy': 1,
          'suits': 1,
          'look': 1,
          'debonair': 1,
          '5': 1,
          'shameless': 1,
          'ripoff': 1,
          'nif': 1,
          'youre': 1,
          'going': 1,
          'make': 1,
          'youve': 1,
          'got': 1,
          'something': 1,
          'original': 1,
          'tale': 1,
          'warring': 1,
          'nightclub': 1,
          'owners': 1,
          'circa': 1,
          '1938': 1,
          'add': 1,
          'anything': 1,
          'new': 1,
          'formula': 1,
          '6': 1,
          'laughs': 1,
          'stuttering': 1,
          'nyou': 1,
          'know': 1,
          'comedy': 1,
          'digging': 1,
          'deep': 1,
          'resorts': 1,
          'ridiculing': 1,
          'handicapped': 1,
          '7': 1,
          'idea': 1,
          'scene': 1,
          'apologizes': 1,
          'shooting': 1,
          'reeses': 1,
          'toe': 1,
          'nneedless': 1,
          'say': 1,
          'shows': 1,
          'promise': 1,
          'imagination': 1,
          'screenwriter': 1,
          'fairness': 1,
          'however': 1,
          'rays': 1,
          'sunshine': 1,
          'manage': 1,
          'break': 1,
          'gloomy': 1,
          'cloud': 1,
          'surrounding': 1,
          'ndanny': 1,
          'aiello': 1,
          'watch': 1,
          'dirty': 1,
          'cop': 1,
          'take': 1,
          'naiello': 1,
          'stands': 1,
          'large': 1,
          'ensemble': 1,
          'obviously': 1,
          'relishes': 1,
          'opportunity': 1,
          'play': 1,
          'nasty': 1,
          'racist': 1,
          'detective': 1,
          'mob': 1,
          'ties': 1,
          'naiellos': 1,
          'zesty': 1,
          'performance': 1,
          'gives': 1,
          'needed': 1,
          'spice': 1,
          'nanother': 1,
          'bright': 1,
          'spot': 1,
          'arsenio': 1,
          'hilarious': 1,
          'showstopping': 1,
          'cameo': 1,
          'crybaby': 1,
          'gangster': 1,
          'virtually': 1,
          'steals': 1,
          'spotlight': 1,
          'fact': 1,
          'halls': 1,
          'screen': 1,
          'funniest': 1,
          'nunfortunately': 1,
          'completely': 1,
          'irrelevant': 1,
          'given': 1,
          'bigger': 1,
          'nof': 1,
          'course': 1,
          'already': 1,
          'mentioned': 1,
          'didnt': 1,
          'care': 1,
          'admit': 1,
          'love': 1,
          'neckties': 1,
          'simply': 1,
          'spectacularalmost': 1,
          'worth': 1,
          'price': 1,
          'admission': 1,
          'nneg': 1}),
 Counter({'bob': 8,
          'duchovny': 5,
          'romantic': 4,
          'nthe': 4,
          'david': 3,
          'grace': 3,
          'driver': 3,
          'comes': 3,
          'cast': 3,
          'movie': 3,
          'marty': 3,
          'belushi': 3,
          'nat': 2,
          'something': 2,
          'xfiles': 2,
          'loses': 2,
          'wife': 2,
          'heart': 2,
          'transplant': 2,
          'gets': 2,
          'seem': 2,
          'hours': 2,
          'return': 2,
          'boy': 2,
          'girl': 2,
          'generate': 2,
          'fastforward': 2,
          'scenes': 2,
          'playing': 2,
          'supporting': 2,
          'oconnor': 2,
          'graces': 2,
          'nwhen': 2,
          'martys': 2,
          'poker': 2,
          'best': 2,
          'friend': 2,
          'megan': 2,
          'james': 2,
          'joe': 2,
          'see': 2,
          'one': 1,
          'demanded': 1,
          'comedy': 1,
          'last': 1,
          'magnetism': 1,
          'comedic': 1,
          'brilliance': 1,
          'mined': 1,
          'resources': 1,
          'choice': 1,
          'may': 1,
          'plot': 1,
          'could': 1,
          'fodder': 1,
          'valentines': 1,
          'day': 1,
          'episode': 1,
          'nbob': 1,
          'rueland': 1,
          'elizabeth': 1,
          'joely': 1,
          'richardson': 1,
          'car': 1,
          'accident': 1,
          'time': 1,
          'briggs': 1,
          'minnie': 1,
          'hospital': 1,
          'waiting': 1,
          'ngrace': 1,
          'elizabeths': 1,
          'leads': 1,
          'nits': 1,
          'equivalent': 1,
          'horror': 1,
          'films': 1,
          'someone': 1,
          'serial': 1,
          'killer': 1,
          'driven': 1,
          'slaughter': 1,
          'people': 1,
          'nfour': 1,
          'writers': 1,
          'credited': 1,
          'contributing': 1,
          'story': 1,
          'nthat': 1,
          'doesnt': 1,
          'possible': 1,
          'ndespite': 1,
          'solid': 1,
          'two': 1,
          'long': 1,
          'adds': 1,
          'little': 1,
          'meets': 1,
          'formula': 1,
          'result': 1,
          'terribly': 1,
          'tedious': 1,
          'slowmoving': 1,
          'nduchovny': 1,
          'unable': 1,
          'sparks': 1,
          'kept': 1,
          'wishing': 1,
          'button': 1,
          'move': 1,
          'along': 1,
          'nsince': 1,
          'managed': 1,
          'work': 1,
          'well': 1,
          'roles': 1,
          'blame': 1,
          'nhes': 1,
          'element': 1,
          'without': 1,
          'manufactured': 1,
          'static': 1,
          'sexual': 1,
          'tension': 1,
          'tv': 1,
          'series': 1,
          'ive': 1,
          'always': 1,
          'thought': 1,
          'relationship': 1,
          'mulder': 1,
          'scully': 1,
          'siblinglike': 1,
          'hotandbothered': 1,
          'ntheres': 1,
          'makes': 1,
          'uneasy': 1,
          'nregardless': 1,
          'role': 1,
          'hes': 1,
          'weirdo': 1,
          'redeeming': 1,
          'quality': 1,
          'hilarious': 1,
          'circle': 1,
          'friends': 1,
          'relatives': 1,
          'around': 1,
          'constantly': 1,
          'matchmaker': 1,
          'laughs': 1,
          'ncarroll': 1,
          'grandfather': 1,
          'oreilly': 1,
          'restaurant': 1,
          'immediately': 1,
          'begins': 1,
          'quizzing': 1,
          'marital': 1,
          'status': 1,
          'discovers': 1,
          'widower': 1,
          'invites': 1,
          'join': 1,
          'game': 1,
          'introduces': 1,
          'declaration': 1,
          'nhis': 1,
          'dead': 1,
          'buddies': 1,
          'desperate': 1,
          'find': 1,
          'mate': 1,
          'greet': 1,
          'enthusiastically': 1,
          'hear': 1,
          'news': 1,
          'nalso': 1,
          'funny': 1,
          'bonnie': 1,
          'hunt': 1,
          'megans': 1,
          'husband': 1,
          'nmarried': 1,
          'children': 1,
          'provide': 1,
          'useful': 1,
          'counterpoint': 1,
          'showing': 1,
          'mundane': 1,
          'results': 1,
          'romance': 1,
          'nalthough': 1,
          'rare': 1,
          'premieres': 1,
          'theater': 1,
          'delivers': 1,
          'lines': 1,
          'great': 1,
          'comic': 1,
          'skill': 1,
          'nrounding': 1,
          'impressive': 1,
          'alan': 1,
          'grier': 1,
          'bobs': 1,
          'robert': 1,
          'loggia': 1,
          'brotherinlaw': 1,
          'angelo': 1,
          'nin': 1,
          'lead': 1,
          'actors': 1,
          'lived': 1,
          'standards': 1,
          'set': 1,
          'rest': 1,
          'nbottom': 1,
          'line': 1,
          'compelled': 1,
          'watch': 1,
          'video': 1,
          'carroll': 1,
          'nneg': 1}),
 Counter({'urban': 7,
          'legend': 7,
          'scream': 5,
          'great': 4,
          'one': 4,
          'silvio': 3,
          'slasher': 3,
          'makes': 3,
          'movie': 3,
          'another': 3,
          'im': 2,
          'horta': 2,
          'wrote': 2,
          'success': 2,
          'nthe': 2,
          'dialogue': 2,
          'little': 2,
          'supposed': 2,
          'said': 2,
          'know': 2,
          'movies': 2,
          'dont': 2,
          'cutouts': 2,
          'none': 2,
          'reason': 2,
          'rebecca': 2,
          'gayheart': 2,
          'film': 2,
          'hes': 2,
          'sure': 1,
          'guessing': 1,
          'seems': 1,
          'may': 1,
          'time': 1,
          'write': 1,
          'second': 1,
          'draft': 1,
          'nseriously': 1,
          'ideaa': 1,
          'psycho': 1,
          'bumping': 1,
          'people': 1,
          'style': 1,
          'legendsis': 1,
          'wish': 1,
          'could': 1,
          'pulled': 1,
          'first': 1,
          'sign': 1,
          'trouble': 1,
          'comes': 1,
          'painfully': 1,
          'insipid': 1,
          'nan': 1,
          'example': 1,
          'car': 1,
          'crash': 1,
          'mustve': 1,
          'awful': 1,
          'neveryone': 1,
          'involved': 1,
          'nyou': 1,
          'tell': 1,
          'writer': 1,
          'intended': 1,
          'something': 1,
          'airy': 1,
          'figured': 1,
          'ni': 1,
          'isnt': 1,
          'lot': 1,
          'characterization': 1,
          'mind': 1,
          'cardboard': 1,
          'please': 1,
          'let': 1,
          'damn': 1,
          'bland': 1,
          'like': 1,
          'star': 1,
          'wars': 1,
          'diva': 1,
          'become': 1,
          'treasured': 1,
          'feature': 1,
          'charismatic': 1,
          'actors': 1,
          'playing': 1,
          'interesting': 1,
          'characters': 1,
          'naside': 1,
          'jared': 1,
          'leto': 1,
          'joshua': 1,
          'jackson': 1,
          'arent': 1,
          'screen': 1,
          'long': 1,
          'enough': 1,
          'grade': 1,
          'nalicia': 1,
          'witt': 1,
          'shows': 1,
          'acerbity': 1,
          'wit': 1,
          'displayed': 1,
          'cybill': 1,
          'actually': 1,
          'looks': 1,
          'unattractive': 1,
          'mention': 1,
          'dumb': 1,
          'post': 1,
          '34': 1,
          'robert': 1,
          'englund': 1,
          'cruises': 1,
          'auto': 1,
          'pilot': 1,
          'ngood': 1,
          'thing': 1,
          'brad': 1,
          'dourif': 1,
          'wait': 1,
          'five': 1,
          'minutes': 1,
          '_and_': 1,
          'redoing': 1,
          'goodnatured': 1,
          'stuttering': 1,
          'character': 1,
          'flew': 1,
          'cuckoos': 1,
          'nest': 1,
          'nwhich': 1,
          'brings': 1,
          'aspect': 1,
          'unoriginality': 1,
          'blatantly': 1,
          'ripped': 1,
          'think': 1,
          'cravens': 1,
          'williamsons': 1,
          'nurban': 1,
          'tries': 1,
          'deconstruct': 1,
          'modernday': 1,
          'folklore': 1,
          'much': 1,
          'way': 1,
          'deconstructed': 1,
          'films': 1,
          'doesnt': 1,
          'quite': 1,
          'succeed': 1,
          'nits': 1,
          'best': 1,
          'stab': 1,
          'selfreflexivity': 1,
          'poking': 1,
          'fun': 1,
          'girl': 1,
          'noxzeema': 1,
          'ad': 1,
          'ie': 1,
          'also': 1,
          'killertauntinghisvictimonthephone': 1,
          'routine': 1,
          'quick': 1,
          'exchange': 1,
          'nfemale': 1,
          'protagonist': 1,
          'nvillain': 1,
          'nwhy': 1,
          'ncongratulations': 1,
          'answered': 1,
          'andor': 1,
          'nlike': 1,
          'couldve': 1,
          'nif': 1,
          'worked': 1,
          'allowed': 1,
          'work': 1,
          'longer': 1,
          'script': 1,
          'nstill': 1,
          'least': 1,
          'pretty': 1,
          'cool': 1,
          'death': 1,
          'scenes': 1,
          'somewhat': 1,
          'realized': 1,
          'whodunit': 1,
          'angle': 1,
          'waaaayyyyyy': 1,
          'better': 1,
          'last': 1,
          'summer': 1,
          'nneg': 1}),
 Counter({'high': 7,
          'never': 5,
          'kissed': 5,
          'school': 5,
          'one': 4,
          'editor': 4,
          'josie': 4,
          'get': 4,
          'would': 4,
          'movies': 3,
          'copy': 3,
          'character': 3,
          'adult': 3,
          'script': 3,
          'barrymore': 2,
          'nshe': 2,
          'ever': 2,
          'nnow': 2,
          'could': 2,
          'fable': 2,
          'office': 2,
          'nthe': 2,
          'expose': 2,
          'todays': 2,
          'njosie': 2,
          'many': 2,
          'problems': 2,
          'nand': 2,
          'popular': 2,
          'girls': 2,
          'consistency': 2,
          'tries': 2,
          'firm': 2,
          'nit': 2,
          'main': 2,
          'aldys': 2,
          'drew': 1,
          'beginning': 1,
          'corner': 1,
          'market': 1,
          'playing': 1,
          'girl': 1,
          'outside': 1,
          'whos': 1,
          'awkward': 1,
          'klutz': 1,
          'spunky': 1,
          'doityourselfer': 1,
          'doesnt': 1,
          'fit': 1,
          'others': 1,
          'perfected': 1,
          'characters': 1,
          'wedding': 1,
          'singer': 1,
          'notably': 1,
          'shes': 1,
          'back': 1,
          'starring': 1,
          'called': 1,
          'modernday': 1,
          'cinderella': 1,
          'nyou': 1,
          'know': 1,
          'plays': 1,
          'newspaper': 1,
          'well': 1,
          'secretary': 1,
          'ntrust': 1,
          'seen': 1,
          'inside': 1,
          'private': 1,
          'since': 1,
          'gutenberg': 1,
          'dont': 1,
          'mean': 1,
          'steve': 1,
          'invented': 1,
          'printing': 1,
          'press': 1,
          'premise': 1,
          'simple': 1,
          'nbarrymores': 1,
          'geller': 1,
          '25': 1,
          'youngest': 1,
          'hired': 1,
          'chicago': 1,
          'suntimes': 1,
          'assigned': 1,
          'go': 1,
          'undercover': 1,
          'return': 1,
          'teens': 1,
          'feeling': 1,
          'says': 1,
          'named': 1,
          '70s': 1,
          'cartoon': 1,
          'geek': 1,
          'jumps': 1,
          'opportunity': 1,
          'second': 1,
          'chance': 1,
          'nthis': 1,
          'time': 1,
          'thinks': 1,
          'right': 1,
          'accepted': 1,
          'incrowd': 1,
          'kind': 1,
          'good': 1,
          'job': 1,
          'successful': 1,
          'career': 1,
          'actually': 1,
          'look': 1,
          'forward': 1,
          'reliving': 1,
          'hell': 1,
          'adolescence': 1,
          'nthese': 1,
          'among': 1,
          'plague': 1,
          'nscreenwriters': 1,
          'abby': 1,
          'kohn': 1,
          'marc': 1,
          'silverstein': 1,
          'handle': 1,
          'ntheir': 1,
          'capriciously': 1,
          'switching': 1,
          'confident': 1,
          'ditzy': 1,
          'blubbering': 1,
          'womanchild': 1,
          'least': 1,
          'provocation': 1,
          'fact': 1,
          'put': 1,
          'much': 1,
          'stock': 1,
          'trying': 1,
          'become': 1,
          'tight': 1,
          'vapid': 1,
          'airheads': 1,
          'supposedly': 1,
          'south': 1,
          'glen': 1,
          'schools': 1,
          'leads': 1,
          'question': 1,
          'maturity': 1,
          'mental': 1,
          'stability': 1,
          'nok': 1,
          'sociological': 1,
          'scene': 1,
          'nhowever': 1,
          'certain': 1,
          'rules': 1,
          'apply': 1,
          'film': 1,
          'namong': 1,
          'illconceived': 1,
          'conceit': 1,
          'seriously': 1,
          'strive': 1,
          'climb': 1,
          'food': 1,
          'chain': 1,
          'process': 1,
          'lose': 1,
          'focus': 1,
          'assignment': 1,
          'nany': 1,
          'competent': 1,
          'tossed': 1,
          'ass': 1,
          'door': 1,
          'quicker': 1,
          'say': 1,
          'rewrite': 1,
          'nto': 1,
          'fair': 1,
          'appealing': 1,
          'given': 1,
          'little': 1,
          'work': 1,
          'valiantly': 1,
          'grip': 1,
          'continually': 1,
          'undermines': 1,
          'nbarrymore': 1,
          'comes': 1,
          'best': 1,
          'physical': 1,
          'comedy': 1,
          'aspects': 1,
          'walk': 1,
          'talk': 1,
          'act': 1,
          'like': 1,
          'cool': 1,
          'hip': 1,
          'schooler': 1,
          'notherwise': 1,
          'left': 1,
          'foundering': 1,
          'cliched': 1,
          'sea': 1,
          'teenage': 1,
          'stereotypes': 1,
          'situations': 1,
          'n': 1,
          'entertaining': 1,
          'funny': 1,
          'fits': 1,
          'starts': 1,
          'lacks': 1,
          'grasp': 1,
          'wants': 1,
          'accomplish': 1,
          'bright': 1,
          'spot': 1,
          'provided': 1,
          'leelee': 1,
          'sobieski': 1,
          'outsider': 1,
          'befriends': 1,
          'new': 1,
          'student': 1,
          'sees': 1,
          'lot': 1,
          'former': 1,
          'self': 1,
          'yet': 1,
          'still': 1,
          'abandons': 1,
          'hang': 1,
          'nreal': 1,
          'mature': 1,
          'deficiency': 1,
          'nits': 1,
          'illogical': 1,
          'unrealistic': 1,
          'uneven': 1,
          'undemanding': 1,
          'warm': 1,
          'humorous': 1,
          'spots': 1,
          'enough': 1,
          'overcome': 1,
          'obstacles': 1,
          'nneg': 1}),
 Counter({'movie': 12,
          'silent': 7,
          'bob': 7,
          'hollywood': 5,
          'smith': 5,
          'jay': 5,
          'back': 4,
          'monkey': 4,
          'ben': 3,
          'affleck': 3,
          'strike': 3,
          'two': 3,
          'come': 2,
          'going': 2,
          'jason': 2,
          'kevin': 2,
          'ferrell': 2,
          'njay': 2,
          'nkevin': 2,
          'grossout': 2,
          'jokes': 2,
          'smiths': 2,
          'based': 2,
          'made': 2,
          'nthis': 2,
          'internet': 2,
          'take': 2,
          'group': 2,
          'really': 2,
          'film': 2,
          'comedy': 2,
          'make': 2,
          'gags': 2,
          'another': 2,
          'lines': 2,
          'clitoris': 2,
          'nwere': 1,
          'nstarring': 1,
          'mewes': 1,
          'shannon': 1,
          'elizabeth': 1,
          'seann': 1,
          'william': 1,
          'scott': 1,
          'chris': 1,
          'rock': 1,
          'lee': 1,
          'ndirected': 1,
          'nrated': 1,
          'r': 1,
          'dumb': 1,
          'disguised': 1,
          'smarmy': 1,
          'interior': 1,
          'coming': 1,
          'wonderful': 1,
          'challenging': 1,
          'dogma': 1,
          'fills': 1,
          'subroad': 1,
          'trip': 1,
          'expects': 1,
          'us': 1,
          'buy': 1,
          'hes': 1,
          'ohsoironic': 1,
          'nbut': 1,
          'selfaware': 1,
          'becomes': 1,
          'nothing': 1,
          'hardly': 1,
          'expected': 1,
          'pay': 1,
          'admission': 1,
          'new': 1,
          'jersey': 1,
          'stoners': 1,
          'hang': 1,
          'doorstep': 1,
          'convenience': 1,
          'store': 1,
          'selling': 1,
          'pot': 1,
          'appeared': 1,
          'almost': 1,
          'movies': 1,
          'im': 1,
          'mistaken': 1,
          'starred': 1,
          'one': 1,
          'nthey': 1,
          'find': 1,
          'comic': 1,
          'book': 1,
          'presents': 1,
          'problems': 1,
          'havent': 1,
          'received': 1,
          'penny': 1,
          'royalties': 1,
          'b': 1,
          'nerds': 1,
          'whats': 1,
          'nare': 1,
          'talking': 1,
          'trash': 1,
          'nwhat': 1,
          'except': 1,
          'go': 1,
          'stop': 1,
          'non': 1,
          'way': 1,
          'theyre': 1,
          'hitchhiking': 1,
          'knew': 1,
          'needed': 1,
          'tickets': 1,
          'bus': 1,
          'n': 1,
          'run': 1,
          'hotties': 1,
          'pretend': 1,
          'animalrights': 1,
          'jewel': 1,
          'thiefs': 1,
          'parade': 1,
          'around': 1,
          'charlies': 1,
          'angelsstyle': 1,
          'outfits': 1,
          'nof': 1,
          'course': 1,
          'set': 1,
          'look': 1,
          'like': 1,
          'thieves': 1,
          'massive': 1,
          'manhunt': 1,
          'second': 1,
          'half': 1,
          'nwill': 1,
          'proves': 1,
          'incapable': 1,
          'anything': 1,
          'sketch': 1,
          'shows': 1,
          'wildlife': 1,
          'marshal': 1,
          'inspector': 1,
          'thinks': 1,
          'stolen': 1,
          'nthe': 1,
          'probably': 1,
          'please': 1,
          'diehard': 1,
          'undiscerning': 1,
          'fans': 1,
          'everyone': 1,
          'else': 1,
          'critical': 1,
          'mindbogglingly': 1,
          'stupid': 1,
          'effort': 1,
          'following': 1,
          'sophisticated': 1,
          'cinema': 1,
          'churned': 1,
          'years': 1,
          'past': 1,
          'nany': 1,
          'appeal': 1,
          'think': 1,
          'understood': 1,
          'point': 1,
          'absurdity': 1,
          'nthere': 1,
          'needs': 1,
          'something': 1,
          'holding': 1,
          'together': 1,
          'smugness': 1,
          'nonce': 1,
          'get': 1,
          'abruptly': 1,
          'switches': 1,
          'gears': 1,
          'ridiculously': 1,
          'broad': 1,
          'satire': 1,
          'ncountless': 1,
          'hot': 1,
          'stars': 1,
          'personalities': 1,
          'appearance': 1,
          'veterans': 1,
          'matt': 1,
          'damon': 1,
          'wes': 1,
          'craven': 1,
          'resorts': 1,
          'lowbrow': 1,
          'scream': 1,
          'sequel': 1,
          'killer': 1,
          'nget': 1,
          'ntheyre': 1,
          'desperate': 1,
          'ran': 1,
          'ideas': 1,
          'used': 1,
          'na': 1,
          'nas': 1,
          'often': 1,
          'happens': 1,
          'writers': 1,
          'working': 1,
          'actually': 1,
          'capable': 1,
          'good': 1,
          'throwaways': 1,
          'big': 1,
          'painstaking': 1,
          'mostly': 1,
          'fall': 1,
          'flat': 1,
          'none': 1,
          'funniest': 1,
          'flies': 1,
          'asked': 1,
          'comment': 1,
          'dont': 1,
          'ask': 1,
          'responds': 1,
          'female': 1,
          'talented': 1,
          'writer': 1,
          'though': 1,
          'agree': 1,
          'films': 1,
          'would': 1,
          'better': 1,
          'hed': 1,
          'let': 1,
          'real': 1,
          'director': 1,
          'helm': 1,
          'holds': 1,
          'true': 1,
          'promise': 1,
          'facetious': 1,
          'nunfortunately': 1,
          'also': 1,
          'shapeless': 1,
          'pointless': 1,
          'largely': 1,
          'unfunny': 1,
          'nsmiths': 1,
          'verbal': 1,
          'trampoline': 1,
          'called': 1,
          'distinctive': 1,
          'dialogue': 1,
          'takes': 1,
          'seat': 1,
          'dubious': 1,
          'instincts': 1,
          'populist': 1,
          'filmmaker': 1,
          'supposed': 1,
          'didnt': 1,
          'offend': 1,
          'anyone': 1,
          'offensive': 1,
          'terrible': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'james': 4,
          'bond': 4,
          'one': 4,
          'series': 3,
          'sequence': 3,
          'nthe': 3,
          'character': 3,
          'car': 3,
          'film': 3,
          'let': 2,
          'easily': 2,
          'even': 2,
          'almost': 2,
          'made': 2,
          'assassin': 2,
          'plot': 2,
          'might': 2,
          'order': 2,
          'nthere': 2,
          'also': 2,
          'much': 2,
          'possibly': 2,
          'action': 2,
          'whole': 2,
          'could': 2,
          'begin': 1,
          'saying': 1,
          'worst': 1,
          'entire': 1,
          'official': 1,
          'unofficial': 1,
          'nit': 1,
          'full': 1,
          'selfparody': 1,
          'silly': 1,
          'characters': 1,
          'would': 1,
          'believe': 1,
          'watching': 1,
          'spoof': 1,
          'nan': 1,
          'omen': 1,
          'come': 1,
          'provided': 1,
          'precredits': 1,
          'dull': 1,
          'affair': 1,
          'featuring': 1,
          'confrontation': 1,
          'man': 1,
          'difficult': 1,
          'give': 1,
          'better': 1,
          'description': 1,
          'since': 1,
          'mention': 1,
          'elsewhere': 1,
          'title': 1,
          'na': 1,
          'song': 1,
          'woefully': 1,
          'terrible': 1,
          'lyrics': 1,
          'follows': 1,
          'rest': 1,
          'worse': 1,
          'pleasant': 1,
          'change': 1,
          'usual': 1,
          'ruletheworld': 1,
          'often': 1,
          'found': 1,
          'movies': 1,
          '70s': 1,
          'get': 1,
          'confused': 1,
          'mismash': 1,
          'fabled': 1,
          'francisco': 1,
          'scaramanga': 1,
          'christopher': 1,
          'lee': 1,
          'putting': 1,
          'performance': 1,
          'rare': 1,
          'saving': 1,
          'graces': 1,
          'someone': 1,
          'apparently': 1,
          'payed': 1,
          'million': 1,
          'dollars': 1,
          'remove': 1,
          'roger': 1,
          'moores': 1,
          '007': 1,
          'flimsy': 1,
          'connection': 1,
          'energy': 1,
          'crisis': 1,
          'missing': 1,
          'solar': 1,
          'cell': 1,
          '95': 1,
          'efficiency': 1,
          'nits': 1,
          'mess': 1,
          'sounds': 1,
          'nbond': 1,
          'helped': 1,
          'task': 1,
          'mary': 1,
          'goodnight': 1,
          'ekland': 1,
          'whose': 1,
          'couldnt': 1,
          'closer': 1,
          'stereotypical': 1,
          'bimbo': 1,
          'nduring': 1,
          'course': 1,
          'gets': 1,
          'locked': 1,
          'closet': 1,
          'trunk': 1,
          'blunders': 1,
          'around': 1,
          'control': 1,
          'room': 1,
          'accidentally': 1,
          'setting': 1,
          'laser': 1,
          'serves': 1,
          'purpose': 1,
          'enhancing': 1,
          'whatsoever': 1,
          'nmaud': 1,
          'adams': 1,
          'later': 1,
          'star': 1,
          'octopussy': 1,
          'stronger': 1,
          'useful': 1,
          'hardly': 1,
          'features': 1,
          'nscaramangas': 1,
          'lackey': 1,
          'dwarf': 1,
          'called': 1,
          'niknak': 1,
          'rather': 1,
          'fittingly': 1,
          'silliest': 1,
          'henchman': 1,
          'serving': 1,
          'annoyance': 1,
          'weak': 1,
          'dialogue': 1,
          'equal': 1,
          'measures': 1,
          'nworse': 1,
          'still': 1,
          'total': 1,
          'lack': 1,
          'throughout': 1,
          'fight': 1,
          'fifteen': 1,
          'minutes': 1,
          'counting': 1,
          'ludicrous': 1,
          'scene': 1,
          'two': 1,
          'teenage': 1,
          'girls': 1,
          'beat': 1,
          'several': 1,
          'dozen': 1,
          'trained': 1,
          'martial': 1,
          'artists': 1,
          'another': 1,
          'misguided': 1,
          'attempt': 1,
          'humour': 1,
          'solitary': 1,
          'chase': 1,
          'highlight': 1,
          'interrupted': 1,
          'frequent': 1,
          'basis': 1,
          'redneck': 1,
          'sheriff': 1,
          'j': 1,
          'w': 1,
          'npepper': 1,
          'played': 1,
          'clifton': 1,
          'live': 1,
          'die': 1,
          'fame': 1,
          'yelling': 1,
          'stupid': 1,
          'comments': 1,
          'passenger': 1,
          'window': 1,
          'nhe': 1,
          'irritating': 1,
          'neven': 1,
          'presence': 1,
          'bearable': 1,
          'impressive': 1,
          'stunts': 1,
          'cinematic': 1,
          'history': 1,
          '360': 1,
          'degree': 1,
          'twisting': 1,
          'loop': 1,
          'jump': 1,
          'broken': 1,
          'bridge': 1,
          'except': 1,
          'somebody': 1,
          'got': 1,
          'idea': 1,
          'dub': 1,
          'mocking': 1,
          'whistle': 1,
          'tone': 1,
          'final': 1,
          'print': 1,
          'non': 1,
          'top': 1,
          'debacle': 1,
          'end': 1,
          'anticlimatic': 1,
          'scaramangas': 1,
          'funhouse': 1,
          'good': 1,
          'thing': 1,
          'came': 1,
          'producers': 1,
          'make': 1,
          'next': 1,
          'infinitely': 1,
          'superior': 1,
          'spy': 1,
          'loved': 1,
          'great': 1,
          'franchise': 1,
          'survive': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'civil': 7,
          'action': 7,
          'one': 7,
          'since': 4,
          'drama': 4,
          'lawyer': 4,
          'even': 4,
          'well': 4,
          'children': 3,
          'story': 3,
          'personal': 3,
          'jan': 3,
          'case': 3,
          'families': 3,
          'get': 3,
          'accident': 3,
          'parents': 3,
          'teenage': 3,
          'character': 3,
          'director': 2,
          'steven': 2,
          'zaillian': 2,
          '1993s': 2,
          'doesnt': 2,
          'make': 2,
          'john': 2,
          'travolta': 2,
          'robert': 2,
          'duvall': 2,
          'william': 2,
          'h': 2,
          'macy': 2,
          'got': 2,
          'involved': 2,
          'completely': 2,
          'died': 2,
          'leukemia': 2,
          'certainly': 2,
          'somehow': 2,
          'courtroom': 2,
          'schlictmann': 2,
          'decides': 2,
          'corporate': 2,
          'beatrice': 2,
          'foods': 2,
          'place': 2,
          'two': 2,
          'care': 2,
          'going': 2,
          'attempts': 2,
          'far': 2,
          'sweet': 2,
          'hereafter': 2,
          'ian': 2,
          'holm': 2,
          'school': 2,
          'bus': 2,
          'nin': 2,
          'girl': 2,
          'young': 2,
          'running': 2,
          'time': 2,
          'virtually': 2,
          'scene': 2,
          'actually': 2,
          'way': 2,
          'every': 2,
          'role': 2,
          'previously': 1,
          'wrote': 1,
          'powerful': 1,
          'screenplay': 1,
          'spielberg': 1,
          'schindlers': 1,
          'list': 1,
          'directed': 1,
          'intelligent': 1,
          'searching': 1,
          'bobby': 1,
          'fischer': 1,
          'new': 1,
          'likely': 1,
          'looked': 1,
          'upon': 1,
          'unfortunate': 1,
          'misstep': 1,
          'otherwise': 1,
          'prosperous': 1,
          'career': 1,
          'nwhat': 1,
          'sense': 1,
          'highprofile': 1,
          'superb': 1,
          'actors': 1,
          'kathleen': 1,
          'quinlan': 1,
          'project': 1,
          'dull': 1,
          'ineffective': 1,
          'nthe': 1,
          'involves': 1,
          'small': 1,
          'community': 1,
          'mysteriously': 1,
          'contains': 1,
          'type': 1,
          'emotionallycharged': 1,
          'signs': 1,
          'feeling': 1,
          'removed': 1,
          'proceedings': 1,
          'leaving': 1,
          'us': 1,
          'nothing': 1,
          'poorlydone': 1,
          'nbased': 1,
          'book': 1,
          'jonathan': 1,
          'hart': 1,
          'consequently': 1,
          'based': 1,
          'true': 1,
          'account': 1,
          'set': 1,
          '1982': 1,
          'town': 1,
          'woburn': 1,
          'mass': 1,
          'injury': 1,
          'take': 1,
          'eight': 1,
          'simply': 1,
          'want': 1,
          'apology': 1,
          'childrens': 1,
          'death': 1,
          'due': 1,
          'unknown': 1,
          'causes': 1,
          'njan': 1,
          'originally': 1,
          'drop': 1,
          'stumbles': 1,
          'across': 1,
          'giants': 1,
          'grace': 1,
          'plants': 1,
          'located': 1,
          'near': 1,
          'homes': 1,
          'sees': 1,
          'pieces': 1,
          'suddenly': 1,
          'fall': 1,
          'companies': 1,
          'leaking': 1,
          'harmful': 1,
          'chemicals': 1,
          'nearby': 1,
          'lake': 1,
          'thus': 1,
          'goes': 1,
          'citys': 1,
          'drinking': 1,
          'water': 1,
          'nsuddenly': 1,
          'hearing': 1,
          'heartbreak': 1,
          'stories': 1,
          'begins': 1,
          'becomes': 1,
          'determined': 1,
          'bottom': 1,
          'mystery': 1,
          'though': 1,
          'warned': 1,
          'staff': 1,
          'accountant': 1,
          'money': 1,
          'coming': 1,
          'nalso': 1,
          'figuring': 1,
          'jerome': 1,
          'facher': 1,
          'counsel': 1,
          'finds': 1,
          'heated': 1,
          'waters': 1,
          'accept': 1,
          '20million': 1,
          'offer': 1,
          'settle': 1,
          'ncoming': 1,
          'talented': 1,
          'writer': 1,
          'cast': 1,
          'mention': 1,
          'interesting': 1,
          'composers': 1,
          'danny': 1,
          'elfman': 1,
          'astoundingly': 1,
          'emptyheaded': 1,
          'includes': 1,
          'intriguing': 1,
          'transforms': 1,
          'admittedly': 1,
          'tiresome': 1,
          'occasionally': 1,
          'boring': 1,
          'experience': 1,
          'nperhaps': 1,
          'major': 1,
          'problems': 1,
          'relatively': 1,
          'uncommercial': 1,
          'motion': 1,
          'picture': 1,
          'misplaced': 1,
          'refreshing': 1,
          'unconventional': 1,
          'attitude': 1,
          'absence': 1,
          'magnetism': 1,
          'meaning': 1,
          'nwatching': 1,
          'couldnt': 1,
          'help': 1,
          'notice': 1,
          'similarities': 1,
          '1997s': 1,
          'superior': 1,
          'dealt': 1,
          'played': 1,
          'brilliantly': 1,
          'investigating': 1,
          'killed': 1,
          'number': 1,
          'find': 1,
          'someone': 1,
          'may': 1,
          'responsible': 1,
          'interviews': 1,
          'grieving': 1,
          'sole': 1,
          'surviving': 1,
          'passenger': 1,
          'starts': 1,
          'remind': 1,
          'daughter': 1,
          'drugaddict': 1,
          'run': 1,
          'away': 1,
          'home': 1,
          'nnot': 1,
          'plotting': 1,
          'similar': 1,
          'also': 1,
          'exact': 1,
          '115': 1,
          'minutes': 1,
          'nconsidering': 1,
          'amazing': 1,
          'fulfilling': 1,
          'truthful': 1,
          'concentrating': 1,
          'delving': 1,
          'deeply': 1,
          'holms': 1,
          'demons': 1,
          'however': 1,
          'idea': 1,
          'went': 1,
          'hours': 1,
          'nothingness': 1,
          'nwe': 1,
          'know': 1,
          'main': 1,
          'characters': 1,
          'nthrough': 1,
          'whole': 1,
          'duration': 1,
          'learn': 1,
          'thing__not': 1,
          'thing__about': 1,
          'travoltas': 1,
          'appear': 1,
          'sort': 1,
          'life': 1,
          'purpose': 1,
          'outside': 1,
          'job': 1,
          'nevery': 1,
          'tediously': 1,
          'related': 1,
          'directly': 1,
          'premise': 1,
          'therefore': 1,
          'root': 1,
          'nyouve': 1,
          'work': 1,
          'pretty': 1,
          'hard': 1,
          'audience': 1,
          'become': 1,
          'plight': 1,
          'dead': 1,
          'exactly': 1,
          'nto': 1,
          'honest': 1,
          'would': 1,
          'fairly': 1,
          'hardpressed': 1,
          'state': 1,
          'aspect': 1,
          'liked': 1,
          'naside': 1,
          'flashback': 1,
          'mans': 1,
          'son': 1,
          'doctor': 1,
          'remained': 1,
          'unmoved': 1,
          'passive': 1,
          'scenes': 1,
          'found': 1,
          'mind': 1,
          'wandering': 1,
          'ni': 1,
          'could': 1,
          'say': 1,
          'performances': 1,
          'good': 1,
          'whos': 1,
          'fooling': 1,
          'nsince': 1,
          'onedimensionally': 1,
          'written': 1,
          'ones': 1,
          'acting': 1,
          'abilities': 1,
          'challenged': 1,
          'ntravolta': 1,
          'plays': 1,
          'enough': 1,
          'thats': 1,
          'nduvall': 1,
          'sleepwalks': 1,
          'apparently': 1,
          'appearing': 1,
          'give': 1,
          'oneliners': 1,
          'chance': 1,
          'gets': 1,
          'nand': 1,
          'world': 1,
          'kathy': 1,
          'bates': 1,
          'pictures': 1,
          'final': 1,
          'judge': 1,
          'nshe': 1,
          'appears': 1,
          'unbilled': 1,
          'cameo': 1,
          'agree': 1,
          'first': 1,
          'nfinally': 1,
          'conclusion': 1,
          'arrived': 1,
          'end': 1,
          'credits': 1,
          'began': 1,
          'left': 1,
          'another': 1,
          'question': 1,
          'point': 1,
          'nabruptly': 1,
          'ending': 1,
          'without': 1,
          'susceptible': 1,
          'momentum': 1,
          'none': 1,
          'came': 1,
          'begin': 1,
          'seemed': 1,
          'least': 1,
          'example': 1,
          'justice': 1,
          'serious': 1,
          'subject': 1,
          'matter': 1,
          'deals': 1,
          'nneg': 1}),
 Counter({'spawn': 21,
          'film': 9,
          'much': 8,
          'comic': 7,
          'book': 6,
          'batman': 6,
          'special': 6,
          'effects': 6,
          'audience': 6,
          'simmons': 4,
          'violator': 4,
          'nthe': 4,
          'movie': 4,
          'like': 4,
          'however': 4,
          'one': 4,
          'time': 4,
          'al': 3,
          'hell': 3,
          'earth': 3,
          'general': 3,
          'spawns': 3,
          'mcfarlane': 3,
          'made': 3,
          'success': 3,
          'ni': 3,
          'films': 3,
          'character': 3,
          'dialogue': 3,
          'na': 3,
          'violent': 3,
          'help': 3,
          'nspawn': 3,
          'seems': 3,
          'role': 3,
          'hard': 3,
          'assasin': 2,
          'goes': 2,
          'pact': 2,
          'knives': 2,
          'chains': 2,
          'morphing': 2,
          'left': 2,
          'comics': 2,
          'new': 2,
          'nmcfarlanes': 2,
          'became': 2,
          'series': 2,
          'hero': 2,
          'visually': 2,
          'early': 2,
          'brilliantly': 2,
          'capture': 2,
          'show': 2,
          'attempts': 2,
          'violence': 2,
          'disappointing': 2,
          'dont': 2,
          'presence': 2,
          'trend': 2,
          'movies': 2,
          'plot': 2,
          'another': 2,
          'characters': 2,
          'without': 2,
          'technically': 2,
          'script': 2,
          'cast': 2,
          'comes': 2,
          'across': 2,
          'suffers': 2,
          'wanda': 2,
          'return': 2,
          'sometimes': 2,
          'spends': 2,
          'villain': 2,
          'leguizamo': 2,
          'nicholson': 2,
          'receives': 2,
          'jai': 2,
          'white': 2,
          'violators': 2,
          'offensive': 2,
          'seen': 2,
          'little': 2,
          'sheen': 2,
          'obnoxious': 2,
          'nmany': 2,
          'good': 2,
          'synopsis': 1,
          'topnotch': 1,
          'guilty': 1,
          'conscience': 1,
          'dies': 1,
          'fiery': 1,
          'explosion': 1,
          'nmaking': 1,
          'malebolgia': 1,
          'chief': 1,
          'demon': 1,
          'returns': 1,
          '5': 1,
          'years': 1,
          'later': 1,
          'reborn': 1,
          'hells': 1,
          'army': 1,
          'donning': 1,
          'necroplasmic': 1,
          'costume': 1,
          'replete': 1,
          'cape': 1,
          'nsullen': 1,
          'wise': 1,
          'cogliostro': 1,
          'flatulating': 1,
          'wisecracking': 1,
          'vy': 1,
          'attention': 1,
          'ncomments': 1,
          'todd': 1,
          'marvel': 1,
          'name': 1,
          'firstrate': 1,
          'penciller': 1,
          'spiderman': 1,
          'titles': 1,
          'join': 1,
          'newlyformed': 1,
          'creatorowned': 1,
          'image': 1,
          'legend': 1,
          'born': 1,
          'immediately': 1,
          'commercial': 1,
          'critical': 1,
          'defining': 1,
          '1990s': 1,
          'nmcfarlane': 1,
          'created': 1,
          'original': 1,
          'intricate': 1,
          'allowing': 1,
          'utilize': 1,
          'knack': 1,
          'artistic': 1,
          'detail': 1,
          'max': 1,
          'issues': 1,
          'mcfarlanes': 1,
          'genius': 1,
          'illustration': 1,
          'writing': 1,
          'nwith': 1,
          'popularity': 1,
          'current': 1,
          'warner': 1,
          'bros': 1,
          'franchise': 1,
          'version': 1,
          'sort': 1,
          'seemed': 1,
          'inevitable': 1,
          'nin': 1,
          'summer': 1,
          '1997': 1,
          'hence': 1,
          'line': 1,
          'cinema': 1,
          'released': 1,
          'liveaction': 1,
          'based': 1,
          'groundbreaking': 1,
          'nthis': 1,
          'topheavy': 1,
          'exercise': 1,
          'unfortunately': 1,
          'topples': 1,
          'quickly': 1,
          'leaves': 1,
          'fans': 1,
          'numbed': 1,
          'misses': 1,
          'mark': 1,
          'nwhat': 1,
          'happened': 1,
          'nwhy': 1,
          'bad': 1,
          'ntodd': 1,
          'executive': 1,
          'produced': 1,
          'misfire': 1,
          'even': 1,
          'appears': 1,
          'cameo': 1,
          'think': 1,
          'necessarily': 1,
          'hurt': 1,
          'helped': 1,
          'place': 1,
          'blame': 1,
          'part': 1,
          'recent': 1,
          'hollywood': 1,
          'fueled': 1,
          'public': 1,
          'demand': 1,
          'apparently': 1,
          'blowout': 1,
          'utilizing': 1,
          'latest': 1,
          'computer': 1,
          'technology': 1,
          'nthese': 1,
          'focus': 1,
          'upon': 1,
          'expense': 1,
          'everything': 1,
          'else': 1,
          'etc': 1,
          'reflecting': 1,
          'shows': 1,
          'gratuitous': 1,
          'scene': 1,
          'populated': 1,
          'filled': 1,
          'unnecessary': 1,
          'pyrotechnics': 1,
          'nhardly': 1,
          'minute': 1,
          'fires': 1,
          'explosions': 1,
          'appearing': 1,
          'nowhere': 1,
          'glowing': 1,
          'eyes': 1,
          'constantly': 1,
          'transforming': 1,
          'demons': 1,
          'lot': 1,
          'interesting': 1,
          'solid': 1,
          'get': 1,
          'wrong': 1,
          'arent': 1,
          'engaging': 1,
          'ultimately': 1,
          'overwrought': 1,
          'wallpaper': 1,
          'surface': 1,
          'may': 1,
          'eye': 1,
          'nothing': 1,
          'exists': 1,
          'underneath': 1,
          'nspawns': 1,
          'translation': 1,
          'storyline': 1,
          'level': 1,
          'tortured': 1,
          'mercenary': 1,
          'trade': 1,
          'nonetheless': 1,
          'warm': 1,
          'man': 1,
          'love': 1,
          'beautiful': 1,
          'nhaving': 1,
          'died': 1,
          'journeyed': 1,
          'nsimmons': 1,
          'discovers': 1,
          'memories': 1,
          'fragmented': 1,
          'body': 1,
          'creepy': 1,
          'mess': 1,
          'wife': 1,
          'married': 1,
          'ndespite': 1,
          'nature': 1,
          'readers': 1,
          'couldnt': 1,
          'feel': 1,
          'sympathetic': 1,
          'toward': 1,
          'plight': 1,
          'underworld': 1,
          'spend': 1,
          'nearly': 1,
          'nwhen': 1,
          'developed': 1,
          'seem': 1,
          'absurd': 1,
          'rather': 1,
          'touching': 1,
          'cartoonish': 1,
          'implausible': 1,
          'subplot': 1,
          'possesses': 1,
          'antidote': 1,
          'supervirus': 1,
          'called': 1,
          'heat16': 1,
          'wishes': 1,
          'unleash': 1,
          'enslave': 1,
          'world': 1,
          'matters': 1,
          'apparent': 1,
          'attempt': 1,
          'duplicate': 1,
          'also': 1,
          'unwisely': 1,
          'favored': 1,
          'joker': 1,
          'njohn': 1,
          'jack': 1,
          'top': 1,
          'billing': 1,
          'michael': 1,
          'second': 1,
          'ordinarily': 1,
          'find': 1,
          'intensely': 1,
          'annoying': 1,
          'make': 1,
          'perfect': 1,
          'candidate': 1,
          'antics': 1,
          'grate': 1,
          'nerves': 1,
          'napparently': 1,
          'meant': 1,
          'relief': 1,
          'especially': 1,
          'contrasted': 1,
          'sullen': 1,
          'lines': 1,
          'oftentimes': 1,
          'grotesque': 1,
          'unfunny': 1,
          'leaving': 1,
          'wishing': 1,
          'would': 1,
          'leave': 1,
          'nleguizamo': 1,
          'satisfactory': 1,
          'job': 1,
          'far': 1,
          'often': 1,
          'nmichael': 1,
          'relative': 1,
          'newcomer': 1,
          'theatrical': 1,
          'releases': 1,
          'appealing': 1,
          'actor': 1,
          'handles': 1,
          'adequately': 1,
          'see': 1,
          'various': 1,
          'masks': 1,
          'nmore': 1,
          'needed': 1,
          'spent': 1,
          'whites': 1,
          'pull': 1,
          'heartstrings': 1,
          'note': 1,
          'martin': 1,
          'overthetop': 1,
          'evil': 1,
          'wynn': 1,
          'neasily': 1,
          'hammiest': 1,
          'performance': 1,
          'imagine': 1,
          'mucked': 1,
          'played': 1,
          'vietnam': 1,
          'great': 1,
          'apocalypse': 1,
          'nsheens': 1,
          'excessive': 1,
          'demeanor': 1,
          'accept': 1,
          'mastermind': 1,
          'surprise': 1,
          'considering': 1,
          'extensive': 1,
          'career': 1,
          'elements': 1,
          'conspire': 1,
          'abundant': 1,
          'drag': 1,
          'nmtvstyle': 1,
          'jerky': 1,
          'inyourface': 1,
          'editing': 1,
          'nflames': 1,
          'example': 1,
          'roll': 1,
          'screen': 1,
          'announce': 1,
          'shift': 1,
          'setting': 1,
          'ncogliostro': 1,
          'unlikely': 1,
          'wannabe': 1,
          'guide': 1,
          'serves': 1,
          'poor': 1,
          'narrator': 1,
          'nhe': 1,
          'goofily': 1,
          'tells': 1,
          'point': 1,
          'humanity': 1,
          'remains': 1,
          'really': 1,
          'cares': 1,
          'sequence': 1,
          'leads': 1,
          'music': 1,
          'finally': 1,
          'assaults': 1,
          'manic': 1,
          'nloud': 1,
          'rock': 1,
          'fused': 1,
          'drum': 1,
          'loops': 1,
          'dominate': 1,
          'scenes': 1,
          'nto': 1,
          'fair': 1,
          'marilyn': 1,
          'mansons': 1,
          'long': 1,
          'road': 1,
          'effectively': 1,
          'compliments': 1,
          'filter': 1,
          'crystal': 1,
          'methods': 1,
          'cant': 1,
          'trip': 1,
          'proves': 1,
          'surprisingly': 1,
          'fitting': 1,
          'theme': 1,
          'song': 1,
          'nfor': 1,
          'instead': 1,
          'pomp': 1,
          'circumstance': 1,
          'development': 1,
          'nit': 1,
          'two': 1,
          'stars': 1,
          'welldone': 1,
          'though': 1,
          'equal': 1,
          'superior': 1,
          'better': 1,
          'nrated': 1,
          'pg13': 1,
          'many': 1,
          'rrated': 1,
          'probably': 1,
          'wouldnt': 1,
          'appropriate': 1,
          'young': 1,
          'nneg': 1}),
 Counter({'jjaks': 8,
          'minnesota': 7,
          'feeling': 5,
          'freddie': 5,
          'reeves': 4,
          'sam': 4,
          'film': 3,
          'romantic': 3,
          'another': 3,
          'nfeeling': 3,
          'baigelman': 3,
          'story': 3,
          'sams': 3,
          'wedding': 3,
          'scene': 3,
          'would': 3,
          'cant': 2,
          'time': 2,
          'keanu': 2,
          'rather': 2,
          'trouble': 2,
          'red': 2,
          'donofrio': 2,
          'far': 2,
          'freddies': 2,
          'bathroom': 2,
          'mutual': 2,
          'isnt': 2,
          'ready': 2,
          'let': 2,
          'go': 2,
          'without': 2,
          'fight': 2,
          'begins': 2,
          'nthere': 2,
          'sibling': 2,
          'rivalry': 2,
          'nit': 2,
          'life': 2,
          'trying': 2,
          'family': 2,
          'nthe': 2,
          'moments': 2,
          'funny': 2,
          'expect': 2,
          'ni': 2,
          'didnt': 2,
          'got': 2,
          'line': 2,
          'films': 2,
          'gags': 2,
          'brutality': 2,
          'becomes': 2,
          'come': 2,
          'turns': 2,
          'performance': 2,
          'fault': 2,
          'recall': 1,
          'previous': 1,
          'experience': 1,
          'fairly': 1,
          'good': 1,
          'turned': 1,
          'sour': 1,
          'quickly': 1,
          'nfor': 1,
          'forty': 1,
          'minutes': 1,
          'lured': 1,
          'loopy': 1,
          'occasionally': 1,
          'overwrought': 1,
          'comedy': 1,
          'even': 1,
          'giving': 1,
          'benefit': 1,
          'doubt': 1,
          'nthen': 1,
          'suddenly': 1,
          'clubbed': 1,
          'head': 1,
          'nasty': 1,
          'bit': 1,
          'violence': 1,
          'shortly': 1,
          'thereafter': 1,
          'whacked': 1,
          'gut': 1,
          'made': 1,
          'feel': 1,
          'violated': 1,
          'though': 1,
          'trusted': 1,
          'writerdirector': 1,
          'steven': 1,
          'bring': 1,
          'cool': 1,
          'glass': 1,
          'water': 1,
          'instead': 1,
          'threw': 1,
          'acid': 1,
          'face': 1,
          'tells': 1,
          'topless': 1,
          'dancer': 1,
          'named': 1,
          'cameron': 1,
          'diaz': 1,
          'finds': 1,
          'deep': 1,
          'boss': 1,
          'delroy': 1,
          'lindo': 1,
          'suspects': 1,
          'stealing': 1,
          'nreds': 1,
          'punishment': 1,
          'force': 1,
          'marry': 1,
          'bookkeeper': 1,
          'clayton': 1,
          'vincent': 1,
          'man': 1,
          'dreams': 1,
          'nenter': 1,
          'estranged': 1,
          'younger': 1,
          'brother': 1,
          'arrives': 1,
          'catch': 1,
          'eye': 1,
          'sex': 1,
          'nunited': 1,
          'attraction': 1,
          'loathing': 1,
          'take': 1,
          'together': 1,
          'nfreddie': 1,
          'meanwhile': 1,
          'money': 1,
          'thus': 1,
          'series': 1,
          'violent': 1,
          'confrontations': 1,
          'style': 1,
          'substance': 1,
          'beginning': 1,
          'opens': 1,
          'effective': 1,
          'montage': 1,
          'showing': 1,
          'intense': 1,
          'boys': 1,
          'mother': 1,
          'tuesday': 1,
          'weld': 1,
          'sending': 1,
          'away': 1,
          'live': 1,
          'father': 1,
          'great': 1,
          'job': 1,
          'setting': 1,
          'unstable': 1,
          'landed': 1,
          'petty': 1,
          'crimes': 1,
          'always': 1,
          'please': 1,
          'wounded': 1,
          'look': 1,
          'right': 1,
          'sequence': 1,
          'includes': 1,
          'number': 1,
          'nice': 1,
          'notably': 1,
          'aforementioned': 1,
          'simple': 1,
          'question': 1,
          'given': 1,
          'spin': 1,
          'nmost': 1,
          'important': 1,
          'establish': 1,
          'connection': 1,
          'humor': 1,
          'economy': 1,
          'spontaneously': 1,
          'begin': 1,
          'singing': 1,
          'along': 1,
          'replacements': 1,
          'dare': 1,
          'car': 1,
          'radio': 1,
          'nyou': 1,
          'every': 1,
          'reason': 1,
          'relationships': 1,
          'familial': 1,
          'focal': 1,
          'point': 1,
          'nunfortunately': 1,
          'dead': 1,
          'wrong': 1,
          'suppose': 1,
          'expected': 1,
          'daisies': 1,
          'valentines': 1,
          'early': 1,
          'threatens': 1,
          'tries': 1,
          'avoid': 1,
          'certainly': 1,
          'nwhat': 1,
          'yet': 1,
          'long': 1,
          'recent': 1,
          'ride': 1,
          'tarantino': 1,
          'wave': 1,
          'mixing': 1,
          'creating': 1,
          'nsuddenly': 1,
          'entanglements': 1,
          'conflict': 1,
          'corpse': 1,
          'everything': 1,
          'degenerates': 1,
          'completely': 1,
          'virtually': 1,
          'nothing': 1,
          'recognizable': 1,
          'little': 1,
          'excuse': 1,
          'one': 1,
          'round': 1,
          'beatings': 1,
          'consistency': 1,
          'characterizations': 1,
          'nvincent': 1,
          'manic': 1,
          'whose': 1,
          'jealousy': 1,
          'competitiveness': 1,
          'apparent': 1,
          'sense': 1,
          'inferiority': 1,
          'seem': 1,
          'keeping': 1,
          'know': 1,
          'framed': 1,
          'hero': 1,
          'reminiscent': 1,
          'chain': 1,
          'reaction': 1,
          'spend': 1,
          'second': 1,
          'half': 1,
          'screaming': 1,
          'covered': 1,
          'blood': 1,
          'managed': 1,
          'employ': 1,
          'radical': 1,
          'shift': 1,
          'tone': 1,
          'successfully': 1,
          'jonathan': 1,
          'demmes': 1,
          'something': 1,
          'wild': 1,
          'neil': 1,
          'jordans': 1,
          'crying': 1,
          'game': 1,
          'mind': 1,
          'try': 1,
          'draw': 1,
          'audience': 1,
          'promise': 1,
          'relatively': 1,
          'innocuous': 1,
          'entertainment': 1,
          'dont': 1,
          'want': 1,
          'dismiss': 1,
          'baigelmans': 1,
          'successes': 1,
          'hand': 1,
          'gets': 1,
          'fun': 1,
          'dan': 1,
          'aykroyd': 1,
          'crooked': 1,
          'cop': 1,
          'wellcrafted': 1,
          'comic': 1,
          'fine': 1,
          'chosen': 1,
          'promote': 1,
          'lighthearted': 1,
          'caper': 1,
          '_is_': 1,
          'violates': 1,
          'characters': 1,
          'sake': 1,
          'shock': 1,
          'value': 1,
          'make': 1,
          'two': 1,
          'halves': 1,
          'whole': 1,
          'left': 1,
          'used': 1,
          'theres': 1,
          'much': 1,
          'nneg': 1}),
 Counter({'storm': 7,
          'perfect': 5,
          'nthe': 5,
          'film': 4,
          'never': 4,
          'hes': 4,
          'story': 3,
          'ni': 3,
          'characters': 3,
          'movie': 3,
          'guy': 3,
          'know': 3,
          'latest': 2,
          'nit': 2,
          'good': 2,
          'try': 2,
          'much': 2,
          'tell': 2,
          'crew': 2,
          'boat': 2,
          'andrea': 2,
          'gail': 2,
          'petersen': 2,
          'nso': 2,
          'want': 2,
          'see': 2,
          'survival': 2,
          'get': 2,
          'john': 2,
          'hawkes': 2,
          'remaining': 2,
          'character': 2,
          'given': 2,
          'supposed': 2,
          'one': 2,
          'would': 2,
          'real': 2,
          'wolfgang': 1,
          'petersens': 1,
          'like': 1,
          'pineapple': 1,
          'tastes': 1,
          'arduous': 1,
          'peeling': 1,
          'digging': 1,
          'eat': 1,
          'fruit': 1,
          'spikes': 1,
          'going': 1,
          'hurt': 1,
          'quite': 1,
          'bit': 1,
          'nok': 1,
          'maybe': 1,
          'confusing': 1,
          'analogy': 1,
          'heres': 1,
          'main': 1,
          'complaint': 1,
          'man': 1,
          'battles': 1,
          'nature': 1,
          'flick': 1,
          'isnt': 1,
          'really': 1,
          'nbasically': 1,
          'massachusetts': 1,
          'fishing': 1,
          'goes': 1,
          'sea': 1,
          'small': 1,
          'called': 1,
          'gets': 1,
          'stuck': 1,
          'middle': 1,
          'century': 1,
          'nhow': 1,
          'time': 1,
          'take': 1,
          'nnot': 1,
          'nearly': 1,
          'enough': 1,
          'spends': 1,
          'majority': 1,
          'developing': 1,
          'pointless': 1,
          'side': 1,
          'stories': 1,
          'eventually': 1,
          'become': 1,
          'superfluous': 1,
          'naudiences': 1,
          'fight': 1,
          'lot': 1,
          'cliched': 1,
          'maudlin': 1,
          'drivel': 1,
          'last': 1,
          'quarter': 1,
          'utterly': 1,
          'every': 1,
          'aspect': 1,
          'lasting': 1,
          'first': 1,
          'threequarters': 1,
          'yet': 1,
          'read': 1,
          'sebastian': 1,
          'jungers': 1,
          'heard': 1,
          'unforgettable': 1,
          'tale': 1,
          'nbased': 1,
          'true': 1,
          'book': 1,
          'must': 1,
          'found': 1,
          'way': 1,
          'introduce': 1,
          'version': 1,
          'approach': 1,
          'weak': 1,
          'nusing': 1,
          'wonderfully': 1,
          'patriotic': 1,
          'score': 1,
          'james': 1,
          'horner': 1,
          'almost': 1,
          'hides': 1,
          'inyourface': 1,
          'banality': 1,
          'nright': 1,
          'away': 1,
          'central': 1,
          'introduced': 1,
          'gritty': 1,
          'determined': 1,
          'captain': 1,
          'george': 1,
          'clooney': 1,
          'ingenue': 1,
          'mark': 1,
          'wahlberg': 1,
          'torn': 1,
          'job': 1,
          'girlfriend': 1,
          'diane': 1,
          'lane': 1,
          'loving': 1,
          'father': 1,
          'c': 1,
          'reilly': 1,
          'comic': 1,
          'relief': 1,
          'whos': 1,
          'always': 1,
          'trying': 1,
          'laid': 1,
          'new': 1,
          'william': 1,
          'fichtner': 1,
          'immediately': 1,
          'antagonizes': 1,
          'crewmate': 1,
          'quiet': 1,
          'french': 1,
          'allen': 1,
          'payne': 1,
          'many': 1,
          'problems': 1,
          'strike': 1,
          'opening': 1,
          'segment': 1,
          'portions': 1,
          'directly': 1,
          'suffer': 1,
          'allstar': 1,
          'casts': 1,
          'fault': 1,
          'designed': 1,
          'portrayal': 1,
          'nallen': 1,
          'paynes': 1,
          'speaks': 1,
          'entire': 1,
          'mute': 1,
          'lines': 1,
          'nare': 1,
          'root': 1,
          'whose': 1,
          'face': 1,
          'voice': 1,
          'chance': 1,
          'interact': 1,
          'nfichtners': 1,
          'terribly': 1,
          'underdeveloped': 1,
          'dont': 1,
          'four': 1,
          'fishermen': 1,
          'cardboard': 1,
          'stereotypes': 1,
          'says': 1,
          'female': 1,
          'stranger': 1,
          'scene': 1,
          'look': 1,
          'nme': 1,
          'nooooh': 1,
          'creative': 1,
          'nas': 1,
          'script': 1,
          'advances': 1,
          'floats': 1,
          'farther': 1,
          'waters': 1,
          'continues': 1,
          'feel': 1,
          'human': 1,
          'nonly': 1,
          'takes': 1,
          'center': 1,
          'stage': 1,
          'jump': 1,
          'sleepwalk': 1,
          'computergenerated': 1,
          'images': 1,
          'gigantic': 1,
          'waves': 1,
          'crashing': 1,
          'helpless': 1,
          'thunderously': 1,
          'imagine': 1,
          'imax': 1,
          'city': 1,
          'kid': 1,
          'surely': 1,
          'go': 1,
          'water': 1,
          'nthis': 1,
          'loud': 1,
          'jolting': 1,
          'entertainment': 1,
          'adjectives': 1,
          'completely': 1,
          'negate': 1,
          'rest': 1,
          'unfortunately': 1,
          'disappointment': 1,
          'maelstrom': 1,
          'lived': 1,
          'potential': 1,
          'everything': 1,
          'else': 1,
          'failed': 1,
          'guess': 1,
          'ill': 1,
          'stick': 1,
          'spectacle': 1,
          'cbs': 1,
          'nneg': 1}),
 Counter({'fatal': 6,
          'charm': 6,
          'film': 6,
          'valerie': 5,
          'school': 5,
          'bad': 4,
          'alan': 4,
          'smithee': 4,
          'erotic': 4,
          'high': 3,
          'doesnt': 3,
          'plays': 3,
          'see': 3,
          'killer': 3,
          'directed': 3,
          'nif': 3,
          'seriously': 3,
          'watching': 3,
          'something': 3,
          'thriller': 3,
          'valeries': 3,
          'nthe': 3,
          'atkins': 3,
          'adam': 3,
          'suspect': 3,
          'look': 2,
          'poetry': 2,
          'much': 2,
          'sunglasses': 2,
          'wears': 2,
          'halfbuttoned': 2,
          'jacket': 2,
          'consider': 2,
          'number': 2,
          'turkey': 2,
          'understand': 2,
          'poor': 2,
          'nits': 2,
          'though': 2,
          'isnt': 2,
          'still': 2,
          'scenes': 2,
          'mother': 2,
          'theyre': 2,
          'second': 2,
          'dangerous': 2,
          'large': 2,
          'would': 2,
          'given': 2,
          'people': 2,
          'one': 2,
          'time': 2,
          'nfatal': 2,
          'obvious': 2,
          'place': 2,
          'na': 2,
          'ni': 2,
          'someone': 2,
          'english': 2,
          'literature': 2,
          'class': 2,
          'course': 2,
          'students': 2,
          'synopsis': 1,
          'junior': 1,
          'day': 1,
          '22': 1,
          'writes': 1,
          'complains': 1,
          'hates': 1,
          'fantasizes': 1,
          'young': 1,
          'guy': 1,
          'trial': 1,
          'raping': 1,
          'murdering': 1,
          'six': 1,
          'women': 1,
          'chooses': 1,
          'pen': 1,
          'pal': 1,
          'hooky': 1,
          'court': 1,
          'nafter': 1,
          'jailbreak': 1,
          'puts': 1,
          'big': 1,
          'uses': 1,
          'go': 1,
          'ncomments': 1,
          'appropriately': 1,
          'titled': 1,
          'bore': 1,
          'crap': 1,
          'find': 1,
          'youre': 1,
          'anything': 1,
          'else': 1,
          'n': 1,
          'pseudonym': 1,
          'directors': 1,
          'used': 1,
          'produce': 1,
          'really': 1,
          'nfrankly': 1,
          'id': 1,
          'embarrassed': 1,
          'think': 1,
          'director': 1,
          'might': 1,
          'picked': 1,
          'moniker': 1,
          'nwhere': 1,
          'begin': 1,
          'painfully': 1,
          'nlets': 1,
          'start': 1,
          'acting': 1,
          'pretty': 1,
          'namanda': 1,
          'peterson': 1,
          'shows': 1,
          'least': 1,
          'talent': 1,
          'rest': 1,
          'cast': 1,
          'dont': 1,
          'even': 1,
          'performance': 1,
          'exactly': 1,
          'stellar': 1,
          'material': 1,
          'nshes': 1,
          'also': 1,
          'miscast': 1,
          'seems': 1,
          'way': 1,
          'old': 1,
          'year': 1,
          'complete': 1,
          'nher': 1,
          'played': 1,
          'mary': 1,
          'frann': 1,
          'joke': 1,
          'two': 1,
          'couple': 1,
          'coworkers': 1,
          'going': 1,
          'lunch': 1,
          'together': 1,
          'rather': 1,
          'daughter': 1,
          'nchristopher': 1,
          'handsome': 1,
          'enough': 1,
          'actor': 1,
          'looks': 1,
          'like': 1,
          'clown': 1,
          'half': 1,
          'ntrying': 1,
          'appear': 1,
          'malicious': 1,
          'disney': 1,
          'decided': 1,
          'zany': 1,
          'comedy': 1,
          'caper': 1,
          'unabomber': 1,
          'probably': 1,
          'perfect': 1,
          'candidate': 1,
          'lead': 1,
          'cut': 1,
          'nearly': 1,
          'movie': 1,
          'occurs': 1,
          'courtroom': 1,
          'noutside': 1,
          'laughably': 1,
          'performances': 1,
          'actors': 1,
          'portraying': 1,
          'lawyers': 1,
          'sitting': 1,
          'benches': 1,
          'provide': 1,
          'silliest': 1,
          'effort': 1,
          'drama': 1,
          'nthey': 1,
          'constantly': 1,
          'shift': 1,
          'turn': 1,
          'arc': 1,
          'heads': 1,
          'mock': 1,
          'interest': 1,
          'got': 1,
          'worst': 1,
          'perfomances': 1,
          'group': 1,
          'ever': 1,
          'charms': 1,
          'storyline': 1,
          'inspires': 1,
          'yawns': 1,
          'thrills': 1,
          'script': 1,
          'belabors': 1,
          'red': 1,
          'herring': 1,
          'early': 1,
          'may': 1,
          'committed': 1,
          'murders': 1,
          'charged': 1,
          'nthis': 1,
          'however': 1,
          'turns': 1,
          'strangled': 1,
          'drowned': 1,
          'halfway': 1,
          'plot': 1,
          'fault': 1,
          'neven': 1,
          'idiots': 1,
          'didnt': 1,
          'movies': 1,
          'title': 1,
          'blond': 1,
          'newsreporter': 1,
          'commented': 1,
          'innocent': 1,
          'charming': 1,
          'defendant': 1,
          'seemed': 1,
          'becomes': 1,
          'quite': 1,
          'washes': 1,
          'nso': 1,
          'audience': 1,
          'must': 1,
          'wait': 1,
          'havent': 1,
          'already': 1,
          'stopped': 1,
          'necessary': 1,
          'details': 1,
          'fall': 1,
          'goes': 1,
          'heroine': 1,
          'drawnout': 1,
          'finale': 1,
          'video': 1,
          'box': 1,
          'dud': 1,
          'describes': 1,
          'neither': 1,
          'particularly': 1,
          'cant': 1,
          'imagine': 1,
          'mood': 1,
          'hed': 1,
          'happy': 1,
          'fluff': 1,
          'moments': 1,
          'occur': 1,
          'take': 1,
          'van': 1,
          'little': 1,
          'lighting': 1,
          'filmed': 1,
          'focus': 1,
          'supposed': 1,
          'fantasies': 1,
          'creative': 1,
          'non': 1,
          'personal': 1,
          'note': 1,
          'disturbed': 1,
          'ludicrous': 1,
          'shown': 1,
          'suffer': 1,
          'wonder': 1,
          'hated': 1,
          'nas': 1,
          'instructor': 1,
          'hard': 1,
          'accepting': 1,
          'fact': 1,
          'emphasizing': 1,
          'great': 1,
          'teacher': 1,
          'stoop': 1,
          'reading': 1,
          'boyfriends': 1,
          'loud': 1,
          'embarassing': 1,
          'author': 1,
          'front': 1,
          'questions': 1,
          'poems': 1,
          'inspiration': 1,
          'guess': 1,
          'public': 1,
          'system': 1,
          'setting': 1,
          'dubious': 1,
          'standards': 1,
          'wont': 1,
          'anyone': 1,
          'unless': 1,
          'theres': 1,
          'thats': 1,
          'charmed': 1,
          'boring': 1,
          'lifeless': 1,
          'insipid': 1,
          'suspenseless': 1,
          'thrillers': 1,
          'happen': 1,
          'upon': 1,
          'keep': 1,
          'moving': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'nthe': 6,
          'highly': 5,
          'form': 5,
          'story': 5,
          'life': 4,
          'russian': 3,
          'vessel': 3,
          'simply': 3,
          'predictable': 3,
          'advanced': 3,
          'crew': 3,
          'tug': 3,
          'characters': 3,
          'one': 3,
          'typhoon': 3,
          'original': 2,
          'scifi': 2,
          'thriller': 2,
          'takes': 2,
          'control': 2,
          'creating': 2,
          'full': 2,
          'makes': 2,
          'irrational': 2,
          'choice': 2,
          'looks': 2,
          'add': 2,
          'seems': 2,
          'barely': 2,
          'seem': 2,
          'always': 2,
          'nthis': 2,
          'away': 2,
          'extremely': 2,
          'flaws': 2,
          'actual': 2,
          'special': 2,
          'effects': 2,
          'waves': 2,
          'robotics': 2,
          'move': 2,
          'able': 2,
          'create': 2,
          'nas': 2,
          'actors': 2,
          'would': 2,
          'going': 2,
          'intelligent': 1,
          'completely': 1,
          'electronic': 1,
          'nature': 1,
          'beams': 1,
          'onto': 1,
          'science': 1,
          'nwell': 1,
          'point': 1,
          'strays': 1,
          'becoming': 1,
          'decent': 1,
          'becomes': 1,
          'nanyhow': 1,
          'computers': 1,
          'starts': 1,
          'robots': 1,
          'help': 1,
          'gruesome': 1,
          'task': 1,
          'exterminating': 1,
          'virus': 1,
          'known': 1,
          'man': 1,
          'exterminated': 1,
          'hapless': 1,
          'discovers': 1,
          'derelict': 1,
          'ship': 1,
          'tries': 1,
          'salvage': 1,
          'nno': 1,
          'needs': 1,
          'said': 1,
          'happens': 1,
          'conflict': 1,
          'lies': 1,
          'shallow': 1,
          'dont': 1,
          'much': 1,
          'subsist': 1,
          'captain': 1,
          'played': 1,
          'donald': 1,
          'sutherland': 1,
          'leaving': 1,
          'audience': 1,
          'wondering': 1,
          'survived': 1,
          'long': 1,
          'enough': 1,
          'reach': 1,
          'age': 1,
          '60s': 1,
          'nto': 1,
          'shown': 1,
          'motley': 1,
          'times': 1,
          'skilled': 1,
          'specific': 1,
          'fields': 1,
          'others': 1,
          'capable': 1,
          'basic': 1,
          'tasks': 1,
          'nsome': 1,
          'supposed': 1,
          'capabilities': 1,
          'leads': 1,
          'wonder': 1,
          'transporting': 1,
          'cargo': 1,
          'middle': 1,
          'pacific': 1,
          'less': 1,
          'nnone': 1,
          'work': 1,
          'together': 1,
          'bickering': 1,
          'vying': 1,
          'sense': 1,
          'ever': 1,
          'holes': 1,
          'nall': 1,
          'helped': 1,
          'along': 1,
          'generated': 1,
          'part': 1,
          'make': 1,
          'look': 1,
          'like': 1,
          'boat': 1,
          'small': 1,
          'model': 1,
          'sitting': 1,
          'tub': 1,
          'someone': 1,
          'nit': 1,
          'genuinely': 1,
          'fake': 1,
          'granted': 1,
          'trying': 1,
          'recreate': 1,
          'hurricane': 1,
          'easy': 1,
          'stretch': 1,
          'imagination': 1,
          'storm': 1,
          'approach': 1,
          'style': 1,
          'similar': 1,
          'huge': 1,
          'wave': 1,
          'deep': 1,
          'impact': 1,
          'ends': 1,
          'looking': 1,
          'corny': 1,
          'amateurish': 1,
          'nalso': 1,
          'topic': 1,
          'creates': 1,
          'slowly': 1,
          'nif': 1,
          'faster': 1,
          'nregardless': 1,
          'many': 1,
          'cases': 1,
          'take': 1,
          'film': 1,
          'rather': 1,
          'casting': 1,
          'finally': 1,
          'nothing': 1,
          'complain': 1,
          'superb': 1,
          'doubtful': 1,
          'chimpanzees': 1,
          'difficulty': 1,
          'acting': 1,
          'roles': 1,
          'nhaving': 1,
          'cast': 1,
          'present': 1,
          'probably': 1,
          'saved': 1,
          'absolute': 1,
          'catastrophe': 1,
          'nwatching': 1,
          'act': 1,
          'made': 1,
          'bearable': 1,
          'saving': 1,
          'grace': 1,
          'action': 1,
          'packed': 1,
          'seemed': 1,
          'something': 1,
          'happening': 1,
          'nso': 1,
          'expecting': 1,
          'see': 1,
          'anything': 1,
          'grand': 1,
          'kill': 1,
          'time': 1,
          'watch': 1,
          'mediocre': 1,
          'wont': 1,
          'disappointed': 1,
          'latest': 1,
          'genre': 1,
          'originally': 1,
          'created': 1,
          'aliens': 1,
          'little': 1,
          'try': 1,
          'cash': 1,
          'aspect': 1,
          'best': 1,
          'left': 1,
          'video': 1,
          'even': 1,
          'might': 1,
          'advised': 1,
          'wait': 1,
          'major': 1,
          'networks': 1,
          'air': 1,
          'tv': 1,
          'nneg': 1}),
 Counter({'movie': 12,
          'nthe': 8,
          'plot': 8,
          'game': 6,
          'nit': 5,
          'action': 5,
          'film': 4,
          'nthis': 4,
          'like': 4,
          'nbut': 3,
          'better': 3,
          'good': 3,
          'watch': 3,
          'could': 3,
          'raul': 3,
          'julia': 3,
          'characters': 3,
          'based': 2,
          'series': 2,
          'ok': 2,
          'involves': 2,
          'mario': 2,
          'bros': 2,
          'find': 2,
          'nso': 2,
          'get': 2,
          'transported': 2,
          'dennis': 2,
          'hopper': 2,
          'seems': 2,
          'sort': 2,
          'want': 2,
          'starring': 2,
          'n': 2,
          'fighter': 2,
          'jean': 2,
          'claude': 2,
          'vandamme': 2,
          'scenes': 2,
          'sets': 2,
          'time': 2,
          'short': 2,
          'flicks': 2,
          'wildly': 1,
          'popular': 1,
          'videogame': 1,
          'name': 1,
          'nbefore': 1,
          'spinoff': 1,
          'cartoons': 1,
          'idea': 1,
          'insane': 1,
          'animated': 1,
          'done': 1,
          'ninstead': 1,
          'people': 1,
          'best': 1,
          'talented': 1,
          'cast': 1,
          'nyet': 1,
          'still': 1,
          'fails': 1,
          'completely': 1,
          'different': 1,
          'games': 1,
          'im': 1,
          'complaining': 1,
          'story': 1,
          'plumbing': 1,
          'business': 1,
          'brooklyn': 1,
          'compete': 1,
          'rival': 1,
          'company': 1,
          'neventually': 1,
          'construction': 1,
          'site': 1,
          'nemesis': 1,
          'happens': 1,
          'enviromentally': 1,
          'unsafe': 1,
          'due': 1,
          'luigis': 1,
          'john': 1,
          'leguizamo': 1,
          'girlfriend': 1,
          'princess': 1,
          'daisy': 1,
          'go': 1,
          'investigate': 1,
          'nthey': 1,
          'blade': 1,
          'runneresque': 1,
          'world': 1,
          'lead': 1,
          'king': 1,
          'koopa': 1,
          'nsomehow': 1,
          'dealing': 1,
          'dinosaurs': 1,
          'mutated': 1,
          'alternate': 1,
          'futuristic': 1,
          'megacity': 1,
          'jumbles': 1,
          'fine': 1,
          'deserves': 1,
          'acting': 1,
          'visual': 1,
          'special': 1,
          'effects': 1,
          'especially': 1,
          'robotic': 1,
          'yoshi': 1,
          'nhowever': 1,
          'drags': 1,
          'fun': 1,
          'nand': 1,
          'leaves': 1,
          'open': 1,
          'sequel': 1,
          'probably': 1,
          'wont': 1,
          'ever': 1,
          'made': 1,
          'begins': 1,
          'promising': 1,
          'ends': 1,
          'leaving': 1,
          'weird': 1,
          'taste': 1,
          'mouth': 1,
          'odd': 1,
          'excellent': 1,
          'super': 1,
          'nyou': 1,
          'worse': 1,
          'definitely': 1,
          'nstreet': 1,
          '1995': 1,
          'never': 1,
          'ending': 1,
          'sequels': 1,
          'called': 1,
          'street': 1,
          '2': 1,
          'reasonable': 1,
          'nyes': 1,
          'watchable': 1,
          'nraul': 1,
          'job': 1,
          'considering': 1,
          'final': 1,
          'nwhile': 1,
          'nonstop': 1,
          'fighting': 1,
          'sequences': 1,
          'hodgepodge': 1,
          'flashy': 1,
          'costumes': 1,
          'trying': 1,
          'show': 1,
          'ndoes': 1,
          'work': 1,
          'nsort': 1,
          'evil': 1,
          'shadowloo': 1,
          'organization': 1,
          'run': 1,
          'bison': 1,
          'nguile': 1,
          'takes': 1,
          'troops': 1,
          'attack': 1,
          'bisons': 1,
          'main': 1,
          'base': 1,
          'attempt': 1,
          'liberate': 1,
          'innocent': 1,
          'villages': 1,
          'taken': 1,
          'nin': 1,
          'amount': 1,
          'introduces': 1,
          'several': 1,
          'well': 1,
          'catches': 1,
          'attention': 1,
          'ultimately': 1,
          'showcase': 1,
          'fans': 1,
          'point': 1,
          'things': 1,
          'theres': 1,
          'chun': 1,
          'li': 1,
          'look': 1,
          'fireball': 1,
          'ryu': 1,
          'vega': 1,
          'hits': 1,
          'bases': 1,
          'presenting': 1,
          'goes': 1,
          'needed': 1,
          'first': 1,
          'place': 1,
          'exciting': 1,
          'nif': 1,
          'lighthearted': 1,
          'liked': 1,
          'one': 1,
          'even': 1,
          'worth': 1,
          'watching': 1,
          'see': 1,
          'julias': 1,
          'last': 1,
          'performance': 1,
          'cant': 1,
          'enough': 1,
          'van': 1,
          'damme': 1,
          'nother': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'studio': 9,
          '54': 7,
          'people': 5,
          'much': 5,
          'one': 4,
          'character': 4,
          'films': 4,
          'like': 4,
          'never': 4,
          'become': 3,
          'club': 3,
          'thats': 3,
          'last': 3,
          'us': 3,
          'interesting': 3,
          'characters': 3,
          'nthe': 3,
          'story': 3,
          'hes': 3,
          'scene': 3,
          'myers': 3,
          'want': 3,
          'many': 2,
          'life': 2,
          'boring': 2,
          'mention': 2,
          'fascinating': 2,
          'populated': 2,
          'really': 2,
          'make': 2,
          'good': 2,
          'protagonist': 2,
          'n': 2,
          'creation': 2,
          'subject': 2,
          'engrossing': 2,
          'summer': 2,
          'enough': 2,
          'part': 2,
          '70s': 2,
          'boogie': 2,
          'nights': 2,
          'days': 2,
          'disco': 2,
          'time': 2,
          'period': 2,
          'party': 2,
          '80s': 2,
          'wakeup': 2,
          'real': 2,
          'mike': 2,
          'clueless': 2,
          'others': 2,
          'plus': 2,
          'could': 2,
          'perhaps': 2,
          'halfassed': 2,
          'named': 2,
          'shane': 2,
          'phillippe': 2,
          'chief': 2,
          'bit': 2,
          'interest': 2,
          'begins': 2,
          'get': 2,
          'point': 2,
          'sole': 2,
          'rubell': 2,
          'makes': 2,
          'saw': 2,
          'proves': 2,
          'director': 2,
          'though': 2,
          'direction': 2,
          'attracted': 1,
          'weird': 1,
          'bizarre': 1,
          'gates': 1,
          'wonder': 1,
          'death': 1,
          'centers': 1,
          'cliched': 1,
          'individual': 1,
          'ensemble': 1,
          'wouldnt': 1,
          'unless': 1,
          'worked': 1,
          'according': 1,
          'nare': 1,
          'supposed': 1,
          'believe': 1,
          'strange': 1,
          'folk': 1,
          'nightly': 1,
          'bland': 1,
          'ripoff': 1,
          'tony': 1,
          'manero': 1,
          'would': 1,
          'belongs': 1,
          'elite': 1,
          'group': 1,
          'known': 1,
          'big': 1,
          'disappointments': 1,
          'attain': 1,
          'hype': 1,
          'andor': 1,
          'potential': 1,
          'come': 1,
          'worse': 1,
          'finally': 1,
          'finished': 1,
          'ni': 1,
          'heavily': 1,
          'awaiting': 1,
          'least': 1,
          'ive': 1,
          'fascinated': 1,
          'infamous': 1,
          'documentary': 1,
          'running': 1,
          'vh1': 1,
          'weirdly': 1,
          'intriguing': 1,
          'edgy': 1,
          'nperhaps': 1,
          'importantly': 1,
          'blossoming': 1,
          'subgenre': 1,
          'nostalgia': 1,
          'picking': 1,
          'mighty': 1,
          'steam': 1,
          'coming': 1,
          'within': 1,
          'year': 1,
          'damn': 1,
          'movies': 1,
          'captured': 1,
          'feel': 1,
          'certain': 1,
          'late': 1,
          'early': 1,
          'brought': 1,
          'scotty': 1,
          'tragically': 1,
          'gay': 1,
          'boom': 1,
          'operator': 1,
          'charlotte': 1,
          'ironically': 1,
          'bitchy': 1,
          'coprotagonist': 1,
          'several': 1,
          'deals': 1,
          'timeline': 1,
          'began': 1,
          'run': 1,
          'ended': 1,
          'dealt': 1,
          'narrated': 1,
          'opening': 1,
          'finale': 1,
          'interested': 1,
          'nthis': 1,
          'definite': 1,
          'nheres': 1,
          '2': 1,
          'hour': 1,
          'tragic': 1,
          'went': 1,
          'things': 1,
          'diseases': 1,
          'economy': 1,
          'problems': 1,
          'worst': 1,
          'reagan': 1,
          'hit': 1,
          'forced': 1,
          'everyone': 1,
          'rude': 1,
          'awakening': 1,
          'tragedy': 1,
          'lets': 1,
          'look': 1,
          'affected': 1,
          'nbut': 1,
          'doesnt': 1,
          'let': 1,
          'happen': 1,
          'nit': 1,
          'gives': 1,
          'oshea': 1,
          'ryan': 1,
          'know': 1,
          'whos': 1,
          'trait': 1,
          'fact': 1,
          'new': 1,
          'jersey': 1,
          'also': 1,
          'happens': 1,
          'flaw': 1,
          'guess': 1,
          'nhes': 1,
          'dimwitted': 1,
          'soon': 1,
          'finds': 1,
          'rave': 1,
          'amongst': 1,
          'regulars': 1,
          'nbit': 1,
          'saturday': 1,
          'night': 1,
          'fever': 1,
          'cept': 1,
          'travolta': 1,
          'put': 1,
          'npoor': 1,
          'poor': 1,
          'struggles': 1,
          'ticket': 1,
          'glimpse': 1,
          'decadence': 1,
          'going': 1,
          'inside': 1,
          'nshane': 1,
          'hang': 1,
          'denizens': 1,
          'anita': 1,
          'salma': 1,
          'hayek': 1,
          'wannabe': 1,
          'donna': 1,
          'sommers': 1,
          'young': 1,
          'hubby': 1,
          'greg': 1,
          'randanzo': 1,
          'breckin': 1,
          'meyer': 1,
          'helps': 1,
          'bartender': 1,
          'rise': 1,
          'fame': 1,
          'nalthough': 1,
          'somewhere': 1,
          'sleeps': 1,
          'foxy': 1,
          'billie': 1,
          'auster': 1,
          'sela': 1,
          'ward': 1,
          'exec': 1,
          'sorts': 1,
          'falls': 1,
          'lust': 1,
          'soap': 1,
          'star': 1,
          'julie': 1,
          'black': 1,
          'neve': 1,
          'campbell': 1,
          'thus': 1,
          'romance': 1,
          'subplot': 1,
          'necessarily': 1,
          'important': 1,
          'anything': 1,
          'else': 1,
          'becomes': 1,
          'major': 1,
          'strongpoint': 1,
          'alltoo': 1,
          'necesary': 1,
          'personage': 1,
          'steve': 1,
          'played': 1,
          'heard': 1,
          'nrubell': 1,
          'famous': 1,
          'head': 1,
          'acted': 1,
          'stopped': 1,
          'partying': 1,
          'ever': 1,
          'easy': 1,
          'metaphor': 1,
          'times': 1,
          'thanks': 1,
          'surprisingly': 1,
          'strong': 1,
          'performance': 1,
          'nnotice': 1,
          'scenes': 1,
          'shocking': 1,
          'tries': 1,
          'felatio': 1,
          'male': 1,
          'employees': 1,
          'turn': 1,
          'promotion': 1,
          'brings': 1,
          'humanity': 1,
          'couple': 1,
          'whove': 1,
          'seen': 1,
          'tv': 1,
          'aspect': 1,
          'actually': 1,
          'nails': 1,
          'nfirst': 1,
          'feature': 1,
          'mark': 1,
          'christopher': 1,
          'better': 1,
          'writer': 1,
          'terribly': 1,
          'nhis': 1,
          'trite': 1,
          'shallow': 1,
          'shockingly': 1,
          'flat': 1,
          'especially': 1,
          'nits': 1,
          'great': 1,
          'tell': 1,
          'instead': 1,
          'opted': 1,
          'easier': 1,
          'route': 1,
          'studios': 1,
          'recreation': 1,
          'amazingly': 1,
          'accurate': 1,
          'impressive': 1,
          'captivating': 1,
          'nsome': 1,
          'say': 1,
          'job': 1,
          'visit': 1,
          'locale': 1,
          'takes': 1,
          'place': 1,
          'despite': 1,
          'tone': 1,
          'still': 1,
          'go': 1,
          'rome': 1,
          'nightclubs': 1,
          'fellinis': 1,
          'la': 1,
          'dolce': 1,
          'vita': 1,
          'watched': 1,
          'didnt': 1,
          'particularly': 1,
          'stay': 1,
          'nneg': 1}),
 Counter({'headless': 6,
          'horseman': 6,
          'hollow': 4,
          'film': 4,
          'depp': 4,
          'nthe': 4,
          'could': 4,
          'even': 4,
          'script': 3,
          'much': 3,
          'story': 3,
          'sleepy': 3,
          'nhe': 3,
          'like': 3,
          'quite': 3,
          'burton': 2,
          'films': 2,
          'mess': 2,
          'ichabod': 2,
          'crane': 2,
          'actually': 2,
          'version': 2,
          'least': 2,
          'burtons': 2,
          'far': 2,
          'new': 2,
          'victims': 2,
          'christina': 2,
          'ricci': 2,
          'stop': 2,
          'character': 2,
          'holes': 2,
          'one': 2,
          'nby': 2,
          'end': 2,
          'thought': 2,
          'atmosphere': 2,
          'time': 2,
          'made': 2,
          'real': 2,
          'getting': 2,
          'actress': 2,
          'back': 2,
          'past': 1,
          'tim': 1,
          'taken': 1,
          'cinema': 1,
          'storm': 1,
          'action': 1,
          'packed': 1,
          'batman': 1,
          'hilarious': 1,
          'ed': 1,
          'wood': 1,
          'lately': 1,
          'dont': 1,
          'cut': 1,
          'nsleepy': 1,
          'unique': 1,
          'features': 1,
          'terrible': 1,
          'nfor': 1,
          'remember': 1,
          'disneys': 1,
          'fantastic': 1,
          'adventures': 1,
          'superior': 1,
          'ndisneys': 1,
          'interesting': 1,
          'drags': 1,
          'long': 1,
          'without': 1,
          'suspense': 1,
          'frights': 1,
          'nwhile': 1,
          'stories': 1,
          'similar': 1,
          'adds': 1,
          'likable': 1,
          'throws': 1,
          'weak': 1,
          'dialogue': 1,
          'top': 1,
          'nichabod': 1,
          'johnny': 1,
          'apparently': 1,
          'constable': 1,
          'sent': 1,
          'york': 1,
          'investigate': 1,
          'suspicious': 1,
          'murders': 1,
          'traces': 1,
          'evidence': 1,
          'found': 1,
          'murderer': 1,
          'reveals': 1,
          'hence': 1,
          'nnow': 1,
          'help': 1,
          'orphaned': 1,
          'boy': 1,
          'must': 1,
          'killing': 1,
          'spree': 1,
          'destroy': 1,
          'whole': 1,
          'town': 1,
          'nsure': 1,
          'intriguing': 1,
          'many': 1,
          'save': 1,
          'disaster': 1,
          'nin': 1,
          'original': 1,
          'meant': 1,
          'unstoppable': 1,
          'nno': 1,
          'audiences': 1,
          'deep': 1,
          'nburton': 1,
          'however': 1,
          'concentrates': 1,
          'make': 1,
          'main': 1,
          'characters': 1,
          'heroes': 1,
          'takes': 1,
          'risk': 1,
          'ever': 1,
          'fails': 1,
          'nanother': 1,
          'pathetic': 1,
          'element': 1,
          'nlike': 1,
          'said': 1,
          'earlier': 1,
          'stuffed': 1,
          'look': 1,
          'sloppy': 1,
          'kind': 1,
          'completely': 1,
          'butchered': 1,
          'pieces': 1,
          'nthankfully': 1,
          'factors': 1,
          'particularly': 1,
          'liked': 1,
          'acting': 1,
          'notable': 1,
          'took': 1,
          'nerdy': 1,
          'cartoon': 1,
          'simply': 1,
          'acted': 1,
          'better': 1,
          'manner': 1,
          'nif': 1,
          'wasnt': 1,
          'quirky': 1,
          'oneliners': 1,
          'doubt': 1,
          'remained': 1,
          'awake': 1,
          'frankly': 1,
          'njust': 1,
          'good': 1,
          'winds': 1,
          'nit': 1,
          'goes': 1,
          'show': 1,
          'actor': 1,
          'pass': 1,
          'big': 1,
          'blockbuster': 1,
          'nits': 1,
          'tempting': 1,
          'let': 1,
          'go': 1,
          'mush': 1,
          'involving': 1,
          'ni': 1,
          'gazed': 1,
          'sets': 1,
          'eerie': 1,
          'fog': 1,
          'rather': 1,
          'pay': 1,
          'attention': 1,
          'going': 1,
          'nat': 1,
          'eye': 1,
          'candy': 1,
          'trash': 1,
          'scenes': 1,
          'value': 1,
          'tree': 1,
          'full': 1,
          'heads': 1,
          'fight': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'nother': 1,
          'wish': 1,
          'fast': 1,
          'forward': 1,
          'gaping': 1,
          'sit': 1,
          'stare': 1,
          'scenery': 1,
          'think': 1,
          'laugh': 1,
          'bad': 1,
          'developed': 1,
          'nthis': 1,
          'biggest': 1,
          'disappointment': 1,
          'year': 1,
          'especially': 1,
          'talented': 1,
          'director': 1,
          'handles': 1,
          'project': 1,
          'ndont': 1,
          'waste': 1,
          'money': 1,
          'head': 1,
          'feel': 1,
          'nneg': 1}),
 Counter({'plot': 6,
          'bad': 6,
          'movie': 6,
          'one': 5,
          'nand': 5,
          'guys': 4,
          'actually': 4,
          'character': 4,
          'give': 4,
          'psychiatrist': 3,
          'good': 3,
          'even': 3,
          'film': 3,
          'nwe': 3,
          'get': 3,
          'douglas': 3,
          'would': 3,
          'end': 3,
          'part': 3,
          'little': 3,
          'home': 2,
          'daughter': 2,
          'premise': 2,
          'holes': 2,
          'dont': 2,
          'like': 2,
          'well': 2,
          'primal': 2,
          'fear': 2,
          'time': 2,
          'thing': 2,
          'first': 2,
          'halfway': 2,
          'left': 2,
          'questions': 2,
          'woman': 2,
          'crap': 2,
          'guy': 2,
          'suddenly': 2,
          'action': 2,
          'point': 2,
          'still': 2,
          '10': 2,
          'years': 2,
          'days': 2,
          'another': 2,
          'thats': 2,
          'many': 2,
          'murphys': 2,
          'turned': 2,
          'interesting': 2,
          'anyone': 2,
          'wasnt': 2,
          'espositos': 2,
          'flick': 2,
          'reason': 2,
          'nincidentally': 2,
          'dumb': 2,
          'audience': 2,
          'sense': 2,
          'came': 2,
          'spider': 2,
          '710': 2,
          'rich': 1,
          'great': 1,
          'life': 1,
          'gets': 1,
          'cute': 1,
          'kidnapped': 1,
          'want': 1,
          'extract': 1,
          'information': 1,
          'mind': 1,
          'nutty': 1,
          'patients': 1,
          'nof': 1,
          'course': 1,
          'patient': 1,
          'cooperative': 1,
          'doctor': 1,
          'hours': 1,
          'comply': 1,
          'demands': 1,
          'kill': 1,
          'npretty': 1,
          'ncritique': 1,
          'youre': 1,
          'fan': 1,
          'movies': 1,
          'packed': 1,
          'inconsistencies': 1,
          'yes': 1,
          'heed': 1,
          'words': 1,
          'skip': 1,
          'hollow': 1,
          'thriller': 1,
          'saying': 1,
          'either': 1,
          'since': 1,
          'potential': 1,
          'started': 1,
          'pretty': 1,
          'nsure': 1,
          'story': 1,
          'basically': 1,
          'amalgamation': 1,
          'ransom': 1,
          'nick': 1,
          'pureed': 1,
          'whole': 1,
          'working': 1,
          'clock': 1,
          'engaged': 1,
          'nbut': 1,
          'mark': 1,
          'bottom': 1,
          'drops': 1,
          'lot': 1,
          'plausible': 1,
          'answers': 1,
          'overly': 1,
          'smart': 1,
          'kid': 1,
          'manages': 1,
          'pull': 1,
          'weak': 1,
          'leg': 1,
          'cast': 1,
          'beating': 1,
          'tough': 1,
          'new': 1,
          'york': 1,
          'uppedity': 1,
          'turning': 1,
          'hero': 1,
          'moves': 1,
          'attitude': 1,
          'boot': 1,
          'films': 1,
          'main': 1,
          'nwhy': 1,
          'shrink': 1,
          'n': 1,
          'waited': 1,
          'whats': 1,
          'set': 1,
          'heist': 1,
          'instead': 1,
          'nill': 1,
          'tell': 1,
          'wouldnt': 1,
          'otherwise': 1,
          'nugh': 1,
          'whatever': 1,
          'case': 1,
          'removed': 1,
          'mental': 1,
          'come': 1,
          'went': 1,
          'nicely': 1,
          'ni': 1,
          'thought': 1,
          'didnt': 1,
          'trust': 1,
          'buddy': 1,
          'asked': 1,
          'joke': 1,
          'bogus': 1,
          'chase': 1,
          'sequences': 1,
          'later': 1,
          'longwinded': 1,
          'ending': 1,
          'answer': 1,
          'mightve': 1,
          'brought': 1,
          'contradictions': 1,
          'nbadly': 1,
          'put': 1,
          'together': 1,
          'features': 1,
          'decent': 1,
          'acting': 1,
          'nice': 1,
          'cinematography': 1,
          'initially': 1,
          'loses': 1,
          'haze': 1,
          'miscues': 1,
          'ultimately': 1,
          'leave': 1,
          'care': 1,
          'nin': 1,
          'fact': 1,
          'brittany': 1,
          'excellent': 1,
          'portrayal': 1,
          'traumatized': 1,
          'teen': 1,
          'jennifer': 1,
          'embarrassing': 1,
          'performance': 1,
          'police': 1,
          'yeah': 1,
          'right': 1,
          'nwatching': 1,
          'delivering': 1,
          'lines': 1,
          'funniest': 1,
          'supposed': 1,
          'michael': 1,
          'cool': 1,
          'regular': 1,
          'remain': 1,
          'seated': 1,
          'picture': 1,
          'please': 1,
          'place': 1,
          'nshe': 1,
          'completely': 1,
          'superfluous': 1,
          'top': 1,
          'director': 1,
          'seems': 1,
          'realized': 1,
          'must': 1,
          'bought': 1,
          'garbage': 1,
          'hed': 1,
          'shoveling': 1,
          'hour': 1,
          'half': 1,
          'prior': 1,
          'decides': 1,
          'add': 1,
          'insult': 1,
          'injury': 1,
          'flashing': 1,
          'back': 1,
          'earlier': 1,
          'characters': 1,
          'death': 1,
          'dies': 1,
          'know': 1,
          'two': 1,
          'interrelated': 1,
          'somehow': 1,
          'nooooh': 1,
          'thanks': 1,
          'mr': 1,
          'fleder': 1,
          'nappreciate': 1,
          'spoonfeeding': 1,
          'dude': 1,
          'yum': 1,
          'nyum': 1,
          'nhow': 1,
          'explaining': 1,
          'every': 1,
          'made': 1,
          'nwhatever': 1,
          'neither': 1,
          'way': 1,
          'rats': 1,
          'ass': 1,
          'dog': 1,
          'unfortunate': 1,
          'points': 1,
          'going': 1,
          'nsee': 1,
          'thrillers': 1,
          'appreciated': 1,
          'along': 1,
          'likely': 1,
          'enjoy': 1,
          'nthey': 1,
          'start': 1,
          'premises': 1,
          'toss': 1,
          'logic': 1,
          'window': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'nalong': 1,
          '410': 1,
          'girl': 1,
          'interrupted': 1,
          '510': 1,
          'kiss': 1,
          'girls': 1,
          'seven': 1,
          '1010': 1,
          'nneg': 1}),
 Counter({'seth': 7,
          'commandments': 5,
          'taplitz': 4,
          'faith': 3,
          'seths': 3,
          'wish': 2,
          'would': 2,
          'take': 2,
          'daniel': 2,
          'man': 2,
          'bad': 2,
          'break': 2,
          'every': 2,
          'thou': 2,
          'shalt': 2,
          'rachel': 2,
          'courteney': 2,
          'cox': 2,
          'harry': 2,
          'film': 2,
          'performance': 2,
          'nthe': 2,
          'whose': 2,
          'clear': 2,
          'makes': 2,
          'films': 1,
          'issues': 1,
          'morality': 1,
          'modern': 1,
          'world': 1,
          'nand': 1,
          'filmmakers': 1,
          'use': 1,
          'blueprint': 1,
          '_not_': 1,
          'nwriterdirector': 1,
          'created': 1,
          'bizarre': 1,
          'conglomeration': 1,
          'satire': 1,
          'soulsearching': 1,
          'tale': 1,
          'warner': 1,
          'aidan': 1,
          'quinn': 1,
          'runs': 1,
          'streak': 1,
          'luck': 1,
          'usually': 1,
          'inspires': 1,
          'countrywestern': 1,
          'lyrics': 1,
          'pregnant': 1,
          'wife': 1,
          'drowns': 1,
          'home': 1,
          'destroyed': 1,
          'tornado': 1,
          'loses': 1,
          'job': 1,
          'dog': 1,
          'crippled': 1,
          'bolt': 1,
          'lightning': 1,
          'nconvinced': 1,
          'god': 1,
          'broken': 1,
          'half': 1,
          'covenant': 1,
          'decides': 1,
          'sets': 1,
          'turn': 1,
          'ten': 1,
          'vice': 1,
          'versa': 1,
          'nhis': 1,
          'wifes': 1,
          'sister': 1,
          'friends': 1,
          'wants': 1,
          'help': 1,
          'rachels': 1,
          'selfish': 1,
          'husband': 1,
          'anthony': 1,
          'lapaglia': 1,
          'tends': 1,
          'thinks': 1,
          'lunatic': 1,
          'nthus': 1,
          'begins': 1,
          'picks': 1,
          'wrong': 1,
          'tone': 1,
          'occasion': 1,
          'ntaplitz': 1,
          'isnt': 1,
          'interested': 1,
          'treating': 1,
          'tragedies': 1,
          'genuinely': 1,
          'tragic': 1,
          'making': 1,
          'impossible': 1,
          'sympathize': 1,
          'ncomposer': 1,
          'joseph': 1,
          'vitarelli': 1,
          'provides': 1,
          'score': 1,
          'full': 1,
          'whimsical': 1,
          'woodwinds': 1,
          'turning': 1,
          'sacrilegious': 1,
          'mission': 1,
          'amusing': 1,
          'lark': 1,
          'quinns': 1,
          'wildeyed': 1,
          'fervor': 1,
          'without': 1,
          'genuine': 1,
          'pain': 1,
          'actual': 1,
          'breaking': 1,
          'almost': 1,
          'treated': 1,
          'afterthought': 1,
          'one': 1,
          'five': 1,
          'dispatched': 1,
          'fiveminute': 1,
          'montage': 1,
          'result': 1,
          'character': 1,
          'actions': 1,
          'feel': 1,
          'less': 1,
          'like': 1,
          'authentic': 1,
          'responses': 1,
          'anguished': 1,
          'machinations': 1,
          'highconcept': 1,
          'movie': 1,
          'plot': 1,
          'nits': 1,
          'even': 1,
          'entirely': 1,
          'ncorporate': 1,
          'attorney': 1,
          'given': 1,
          'case': 1,
          'supposed': 1,
          'soften': 1,
          'hard': 1,
          'heart': 1,
          'see': 1,
          'indication': 1,
          'gets': 1,
          'comeuppance': 1,
          'part': 1,
          'false': 1,
          'witness': 1,
          'nonly': 1,
          'strikes': 1,
          'note': 1,
          'reality': 1,
          'solid': 1,
          'sane': 1,
          'center': 1,
          'around': 1,
          'equally': 1,
          'troubled': 1,
          'men': 1,
          'revolve': 1,
          'neven': 1,
          'cant': 1,
          'force': 1,
          'decide': 1,
          'story': 1,
          'learned': 1,
          'dealing': 1,
          'struggles': 1,
          'lives': 1,
          'relationship': 1,
          'infinite': 1,
          'nby': 1,
          'time': 1,
          'singularly': 1,
          'biblical': 1,
          'reappearance': 1,
          'late': 1,
          'become': 1,
          'aiming': 1,
          'fantastical': 1,
          'fable': 1,
          'connection': 1,
          'real': 1,
          'human': 1,
          'experience': 1,
          'ncommandments': 1,
          'comedy': 1,
          'could': 1,
          'decent': 1,
          'drama': 1,
          'guts': 1,
          'loss': 1,
          'thereof': 1,
          'seriously': 1,
          'nneg': 1}),
 Counter({'jawbreaker': 6,
          'nthe': 6,
          'film': 6,
          'fern': 5,
          'school': 3,
          'seems': 3,
          'teen': 3,
          'one': 3,
          'nit': 3,
          'time': 3,
          'julie': 3,
          'murder': 3,
          'characters': 3,
          'high': 2,
          'comedy': 2,
          'shes': 2,
          'us': 2,
          'know': 2,
          'popular': 2,
          'clique': 2,
          'accidentally': 2,
          'three': 2,
          'girls': 2,
          'decide': 2,
          'little': 2,
          'leader': 2,
          'courtney': 2,
          'rose': 2,
          'mcgowan': 2,
          'cover': 2,
          'member': 2,
          'another': 2,
          'mayo': 2,
          'quickly': 2,
          'makeover': 2,
          'crowd': 2,
          'njawbreaker': 2,
          'might': 2,
          'plot': 2,
          'films': 2,
          'point': 2,
          'nas': 2,
          'nits': 2,
          'character': 2,
          'movie': 2,
          'doesnt': 2,
          'become': 2,
          'detestable': 2,
          'hot': 1,
          'genre': 1,
          'moment': 1,
          'nwith': 1,
          'varsity': 1,
          'blues': 1,
          'behind': 1,
          'several': 1,
          'set': 1,
          'release': 1,
          'later': 1,
          'year': 1,
          'experiencing': 1,
          'renaissance': 1,
          'nhowever': 1,
          'wouldnt': 1,
          'quality': 1,
          'latest': 1,
          'entry': 1,
          'nthis': 1,
          'shockingly': 1,
          'bitter': 1,
          'candy': 1,
          'definitely': 1,
          'sour': 1,
          'center': 1,
          'feared': 1,
          'reagan': 1,
          'unexpected': 1,
          'dilemma': 1,
          'nthey': 1,
          'killed': 1,
          'dream': 1,
          'liz': 1,
          'purr': 1,
          'charlotte': 1,
          'roldan': 1,
          'choked': 1,
          'giant': 1,
          'kidnapping': 1,
          'prank': 1,
          '17th': 1,
          'birthday': 1,
          'nnow': 1,
          'surviving': 1,
          'must': 1,
          'takes': 1,
          'groups': 1,
          'ditzy': 1,
          'marcie': 1,
          'benz': 1,
          'game': 1,
          'go': 1,
          'along': 1,
          'cliques': 1,
          'final': 1,
          'rebecca': 1,
          'gayheart': 1,
          'guilty': 1,
          'conscience': 1,
          'nto': 1,
          'make': 1,
          'things': 1,
          'worse': 1,
          'student': 1,
          'hopelessly': 1,
          'geeky': 1,
          'judy': 1,
          'evans': 1,
          'greer': 1,
          'discovers': 1,
          'truth': 1,
          'surely': 1,
          'blown': 1,
          'nnot': 1,
          'fast': 1,
          'nthinking': 1,
          'offers': 1,
          'onceinalifetime': 1,
          'chance': 1,
          'nafter': 1,
          'quick': 1,
          'transformed': 1,
          'vylette': 1,
          'beautiful': 1,
          'new': 1,
          'girl': 1,
          'fullfledged': 1,
          'ndoes': 1,
          'mean': 1,
          'popularity': 1,
          'key': 1,
          'getting': 1,
          'away': 1,
          'finely': 1,
          'honed': 1,
          'plan': 1,
          'crack': 1,
          'obviously': 1,
          'attempting': 1,
          'heathers': 1,
          'generation': 1,
          'failing': 1,
          'miserably': 1,
          'add': 1,
          'manages': 1,
          'capture': 1,
          'mix': 1,
          'social': 1,
          'observations': 1,
          'misses': 1,
          'crucial': 1,
          'elements': 1,
          'sharp': 1,
          'dialogue': 1,
          'witty': 1,
          'muchneeded': 1,
          'humor': 1,
          'possible': 1,
          'succeeded': 1,
          'darkly': 1,
          'humorous': 1,
          'wasnt': 1,
          'shackled': 1,
          'deadweight': 1,
          'innovative': 1,
          'twist': 1,
          'nat': 1,
          'poised': 1,
          'spin': 1,
          'wildly': 1,
          'uncharted': 1,
          'depths': 1,
          'nbut': 1,
          'sudden': 1,
          'innovation': 1,
          'stops': 1,
          'becomes': 1,
          'mired': 1,
          'murderandcoverup': 1,
          'plotting': 1,
          'saps': 1,
          'life': 1,
          'energy': 1,
          'right': 1,
          'nin': 1,
          'fares': 1,
          'best': 1,
          'manipulative': 1,
          'truly': 1,
          'dominates': 1,
          'every': 1,
          'scene': 1,
          'difficult': 1,
          'feat': 1,
          'however': 1,
          'crying': 1,
          'better': 1,
          'least': 1,
          'decently': 1,
          'drawn': 1,
          'interact': 1,
          'quite': 1,
          'handle': 1,
          'semilikable': 1,
          'neither': 1,
          'could': 1,
          'effectively': 1,
          'end': 1,
          'simply': 1,
          'revealing': 1,
          'knows': 1,
          'lengths': 1,
          'goes': 1,
          'prolong': 1,
          'unintentional': 1,
          'effect': 1,
          'distancing': 1,
          'motives': 1,
          'murky': 1,
          'unclear': 1,
          'finally': 1,
          'falls': 1,
          'really': 1,
          'matter': 1,
          'wins': 1,
          'loses': 1,
          'since': 1,
          'sides': 1,
          'equally': 1,
          'n': 1,
          'good': 1,
          'word': 1,
          'describe': 1,
          'certain': 1,
          'like': 1,
          'weapon': 1,
          'described': 1,
          'title': 1,
          'triggering': 1,
          'gag': 1,
          'reflex': 1,
          'audience': 1,
          'nneg': 1}),
 Counter({'n': 12,
          'gorilla': 5,
          'jungle': 3,
          'kong': 3,
          'film': 3,
          'girl': 3,
          'ape': 3,
          '11story': 2,
          'hong': 2,
          'escapes': 2,
          'like': 2,
          '4': 2,
          'sort': 2,
          'stock': 2,
          'capsule': 1,
          'wild': 1,
          'woman': 1,
          'discovered': 1,
          'tibet': 1,
          'taken': 1,
          'causes': 1,
          'havoc': 1,
          'nthis': 1,
          'laughable': 1,
          '1977': 1,
          'rip': 1,
          'king': 1,
          '1976': 1,
          'ripoff': 1,
          'nproduction': 1,
          'values': 1,
          'low': 1,
          'audiences': 1,
          'seem': 1,
          'mostly': 1,
          'derisive': 1,
          'laughter': 1,
          'high': 1,
          '2': 1,
          'directed': 1,
          'ho': 1,
          'menghua': 1,
          'provided': 1,
          'laughing': 1,
          'finish': 1,
          'festival': 1,
          'earthquake': 1,
          'uncovers': 1,
          'tall': 1,
          'himalayas': 1,
          'na': 1,
          'hunter': 1,
          'chosen': 1,
          'broke': 1,
          'loose': 1,
          'ends': 1,
          'gets': 1,
          'sent': 1,
          'find': 1,
          'finds': 1,
          'female': 1,
          'tarzan': 1,
          'controls': 1,
          'evelyne': 1,
          'kraft': 1,
          'leather': 1,
          'bikini': 1,
          'pasted': 1,
          'always': 1,
          'looks': 1,
          'verge': 1,
          'bouncing': 1,
          'actor': 1,
          'idea': 1,
          'gorillas': 1,
          'move': 1,
          'suit': 1,
          'terrible': 1,
          'nnice': 1,
          'miniature': 1,
          'effects': 1,
          'however': 1,
          'almost': 1,
          'music': 1,
          'video': 1,
          'inside': 1,
          'playing': 1,
          'animals': 1,
          'chichi': 1,
          'leopard': 1,
          'several': 1,
          'places': 1,
          'narrative': 1,
          'nearly': 1,
          'incoherent': 1,
          'missing': 1,
          'scenes': 1,
          'viewer': 1,
          'guess': 1,
          'happened': 1,
          'interim': 1,
          'actual': 1,
          'location': 1,
          'shooting': 1,
          'mysore': 1,
          'nape': 1,
          'shown': 1,
          'badly': 1,
          'matted': 1,
          'behind': 1,
          'temple': 1,
          'combining': 1,
          'images': 1,
          'usually': 1,
          'pretty': 1,
          'bad': 1,
          'nincompetent': 1,
          'matching': 1,
          'stocks': 1,
          'footage': 1,
          'frequently': 1,
          'used': 1,
          'brought': 1,
          'greedy': 1,
          'entrepreneur': 1,
          'really': 1,
          'abuses': 1,
          'tears': 1,
          'things': 1,
          'real': 1,
          'good': 1,
          'nneg': 1}),
 Counter({'bachelor': 8,
          'nthe': 7,
          'film': 6,
          'one': 4,
          'nodonnell': 4,
          'anne': 4,
          'approach': 4,
          'charm': 3,
          'behind': 3,
          'odonnell': 3,
          'time': 3,
          'could': 3,
          'jimmie': 3,
          'nand': 3,
          'movies': 2,
          'quite': 2,
          'romantic': 2,
          'find': 2,
          'chris': 2,
          'vehicle': 2,
          'mess': 2,
          'together': 2,
          'moments': 2,
          'certainly': 2,
          'actor': 2,
          'two': 2,
          'far': 2,
          'screenplay': 2,
          'becomes': 2,
          'save': 2,
          'zellweger': 2,
          'plot': 2,
          'along': 2,
          'movie': 2,
          'grandfather': 2,
          'must': 2,
          'birthday': 2,
          'bride': 2,
          'within': 2,
          'jimmies': 2,
          'interesting': 2,
          'colorful': 2,
          'cast': 2,
          'cute': 2,
          'enjoyable': 2,
          'running': 2,
          'angry': 2,
          'best': 1,
          'terrible': 1,
          'ever': 1,
          'see': 1,
          'nwading': 1,
          'gooey': 1,
          'detestable': 1,
          'sludge': 1,
          'chore': 1,
          'even': 1,
          'dedicated': 1,
          'nthose': 1,
          'hoping': 1,
          'genuine': 1,
          'feeling': 1,
          'wander': 1,
          'elsewhere': 1,
          'painfully': 1,
          'clumsy': 1,
          'strung': 1,
          'brief': 1,
          'surprising': 1,
          'poignancy': 1,
          'nawaiting': 1,
          'enduring': 1,
          'rest': 1,
          'worth': 1,
          'money': 1,
          'nalthough': 1,
          'evolved': 1,
          'stereotypical': 1,
          'prettyboy': 1,
          'cocoon': 1,
          'effortless': 1,
          'nmost': 1,
          'recognize': 1,
          'highflying': 1,
          'robin': 1,
          'latest': 1,
          'batman': 1,
          'films': 1,
          'abilities': 1,
          'evident': 1,
          'boyish': 1,
          'smile': 1,
          'ncan': 1,
          'carry': 1,
          'weight': 1,
          'shoulders': 1,
          'nperhaps': 1,
          'found': 1,
          'proper': 1,
          'nbut': 1,
          'falls': 1,
          'short': 1,
          'requirements': 1,
          'cant': 1,
          'register': 1,
          'pathetic': 1,
          'guiding': 1,
          'light': 1,
          'success': 1,
          'na': 1,
          'instances': 1,
          'adorable': 1,
          'humor': 1,
          'aside': 1,
          'apparent': 1,
          'festering': 1,
          'plays': 1,
          'hopeless': 1,
          'late': 1,
          'twenties': 1,
          'whos': 1,
          'progressing': 1,
          'serious': 1,
          'relationship': 1,
          'renee': 1,
          'njimmie': 1,
          'takes': 1,
          'dinner': 1,
          'restaurant': 1,
          'specifically': 1,
          'used': 1,
          'proposals': 1,
          'attempts': 1,
          'ask': 1,
          'hand': 1,
          'marriage': 1,
          'problem': 1,
          'proposal': 1,
          'sucks': 1,
          'nbig': 1,
          'nyou': 1,
          'tell': 1,
          'things': 1,
          'arent': 1,
          'going': 1,
          'pleasantly': 1,
          'gets': 1,
          'infamous': 1,
          'deerintheheadlights': 1,
          'look': 1,
          'questions': 1,
          'stupidity': 1,
          'thickens': 1,
          'njimmies': 1,
          'peter': 1,
          'ustinov': 1,
          'dies': 1,
          'suddenly': 1,
          'leaving': 1,
          'video': 1,
          'grandson': 1,
          'also': 1,
          'happens': 1,
          'living': 1,
          'relative': 1,
          'neverybody': 1,
          'speechless': 1,
          'grandpa': 1,
          'declares': 1,
          'passing': 1,
          'inheritance': 1,
          'amount': 1,
          '100': 1,
          'million': 1,
          'dollars': 1,
          'nof': 1,
          'course': 1,
          'theres': 1,
          'catch': 1,
          'get': 1,
          'married': 1,
          '30th': 1,
          'stay': 1,
          'joined': 1,
          'entire': 1,
          'decade': 1,
          'produce': 1,
          'healthy': 1,
          'children': 1,
          'first': 1,
          'five': 1,
          'years': 1,
          'bad': 1,
          'news': 1,
          'following': 1,
          'day': 1,
          'nwith': 1,
          'town': 1,
          'willing': 1,
          'share': 1,
          'riches': 1,
          'limited': 1,
          'frame': 1,
          'nthere': 1,
          'worthwhile': 1,
          'aspects': 1,
          'nfor': 1,
          'dripping': 1,
          'clich': 1,
          'nanother': 1,
          'supporting': 1,
          'tries': 1,
          'relentlessly': 1,
          'rescue': 1,
          'drowning': 1,
          'mediocrity': 1,
          'nustinov': 1,
          'cranky': 1,
          'figure': 1,
          'james': 1,
          'cromwell': 1,
          'sincere': 1,
          'effective': 1,
          'wise': 1,
          'priest': 1,
          'dragged': 1,
          'marital': 1,
          'adventures': 1,
          'cons': 1,
          'may': 1,
          'trying': 1,
          'oldfashioned': 1,
          'method': 1,
          'director': 1,
          'gary': 1,
          'sinyor': 1,
          'gives': 1,
          'synthetic': 1,
          'feel': 1,
          'characters': 1,
          'drawn': 1,
          'obvious': 1,
          'broad': 1,
          'strokes': 1,
          'bogged': 1,
          'everything': 1,
          'humanly': 1,
          'imaginable': 1,
          'nyes': 1,
          'frustrating': 1,
          'lamely': 1,
          'written': 1,
          'subject': 1,
          'matter': 1,
          'poorly': 1,
          'conceived': 1,
          'considerable': 1,
          'leads': 1,
          'thoughtlessly': 1,
          'wasted': 1,
          'whatever': 1,
          'promise': 1,
          'initially': 1,
          'contained': 1,
          'npotential': 1,
          'goes': 1,
          'window': 1,
          'early': 1,
          'suit': 1,
          'sinyors': 1,
          'minute': 1,
          'hapless': 1,
          'drivel': 1,
          'seems': 1,
          'accustomed': 1,
          'directors': 1,
          'wishes': 1,
          'lost': 1,
          'without': 1,
          'homing': 1,
          'beacon': 1,
          'nyouve': 1,
          'seen': 1,
          'tv': 1,
          'spots': 1,
          'havent': 1,
          'madly': 1,
          'rushing': 1,
          'deserted': 1,
          'street': 1,
          'caption': 1,
          'reads': 1,
          'man': 1,
          'nin': 1,
          'actuality': 1,
          'hes': 1,
          'fleeing': 1,
          'thousands': 1,
          'brides': 1,
          'want': 1,
          'marry': 1,
          'inherit': 1,
          'fortune': 1,
          'sequences': 1,
          'nafter': 1,
          'seeing': 1,
          'believe': 1,
          'approaching': 1,
          'horde': 1,
          'something': 1,
          'else': 1,
          'fans': 1,
          'endured': 1,
          'hunting': 1,
          'revenge': 1,
          'nneg': 1}),
 Counter({'talk': 5,
          'lives': 5,
          'film': 5,
          'topless': 4,
          'women': 4,
          'brilliant': 4,
          'hour': 4,
          'people': 4,
          'events': 4,
          'know': 3,
          'end': 3,
          'nit': 3,
          'nthe': 3,
          'around': 3,
          'like': 3,
          'characters': 2,
          'liz': 2,
          'boyfriend': 2,
          'first': 2,
          'go': 2,
          'seem': 2,
          'place': 2,
          'nthis': 2,
          'lot': 2,
          'half': 2,
          'sense': 2,
          'actors': 2,
          'good': 2,
          'movie': 2,
          'real': 2,
          'turn': 2,
          'world': 2,
          'falls': 1,
          'category': 1,
          'mentioned': 1,
          'devils': 1,
          'advocate': 1,
          'movies': 1,
          'beginning': 1,
          'dont': 1,
          'begins': 1,
          'introducing': 1,
          'us': 1,
          'selection': 1,
          'nthere': 1,
          'oversleeps': 1,
          'running': 1,
          'late': 1,
          'appointment': 1,
          'prue': 1,
          'getting': 1,
          'married': 1,
          'geoff': 1,
          'lizs': 1,
          'neil': 1,
          'previous': 1,
          'ant': 1,
          'written': 1,
          'screenplay': 1,
          'nfor': 1,
          'get': 1,
          'everyday': 1,
          'activities': 1,
          'phone': 1,
          'dinner': 1,
          'hang': 1,
          'clothes': 1,
          'line': 1,
          'interactions': 1,
          'truthful': 1,
          'guileless': 1,
          'almost': 1,
          'filmmakers': 1,
          'hid': 1,
          'cameras': 1,
          'filmed': 1,
          'unbeknownst': 1,
          'nat': 1,
          'times': 1,
          'border': 1,
          'ridiculous': 1,
          'screening': 1,
          'still': 1,
          'keeping': 1,
          'doesnt': 1,
          'sound': 1,
          'premise': 1,
          'follow': 1,
          'vaguely': 1,
          'related': 1,
          'execution': 1,
          'idea': 1,
          'makes': 1,
          'engrossing': 1,
          'nunfortunately': 1,
          'level': 1,
          'honesty': 1,
          'isnt': 1,
          'maintained': 1,
          'nwith': 1,
          'impending': 1,
          'doom': 1,
          'invades': 1,
          'descends': 1,
          'melodrama': 1,
          'nsuch': 1,
          'disappointment': 1,
          'start': 1,
          'quite': 1,
          'ms': 1,
          'danielle': 1,
          'cormack': 1,
          'particularly': 1,
          'impressive': 1,
          'energy': 1,
          'character': 1,
          'palpable': 1,
          'major': 1,
          'reason': 1,
          'watchable': 1,
          'na': 1,
          'performances': 1,
          'bit': 1,
          'rough': 1,
          'edges': 1,
          'suits': 1,
          'totally': 1,
          'documentary': 1,
          'feel': 1,
          'seems': 1,
          'watching': 1,
          'rather': 1,
          'playing': 1,
          'roles': 1,
          'nthat': 1,
          'melodramatic': 1,
          'comes': 1,
          'shock': 1,
          'nup': 1,
          'till': 1,
          'point': 1,
          'transported': 1,
          'mildly': 1,
          'insane': 1,
          'taking': 1,
          'nwhile': 1,
          'final': 1,
          'beyond': 1,
          'realms': 1,
          'possibility': 1,
          'unlikely': 1,
          'way': 1,
          'jarring': 1,
          'someone': 1,
          'caught': 1,
          'nnot': 1,
          'also': 1,
          'tone': 1,
          'wrong': 1,
          'clashing': 1,
          'strongly': 1,
          'fun': 1,
          'preceded': 1,
          'say': 1,
          'nas': 1,
          'stated': 1,
          'superb': 1,
          'even': 1,
          'average': 1,
          'takes': 1,
          'means': 1,
          'otherwise': 1,
          'loses': 1,
          'gloss': 1,
          'nneg': 1}),
 Counter({'name': 2,
          'title': 2,
          'mars': 2,
          'would': 2,
          'home': 2,
          'nthe': 2,
          'matriarchal': 2,
          'society': 2,
          'beware': 1,
          'movies': 1,
          'directors': 1,
          'ntake': 1,
          'john': 1,
          'carpenters': 1,
          'ghosts': 1,
          'please': 1,
          'nif': 1,
          'carpenter': 1,
          'brand': 1,
          'wasnt': 1,
          'superglued': 1,
          'embarrassment': 1,
          'surely': 1,
          'bypassed': 1,
          'theaters': 1,
          'entirely': 1,
          'gone': 1,
          'straight': 1,
          'proper': 1,
          'usa': 1,
          'network': 1,
          'nand': 1,
          'spared': 1,
          'headache': 1,
          'latest': 1,
          'director': 1,
          'starman': 1,
          'halloween': 1,
          'escape': 1,
          'new': 1,
          'york': 1,
          'lousy': 1,
          'western': 1,
          'gussied': 1,
          'look': 1,
          'like': 1,
          'futuristic': 1,
          'horror': 1,
          'flick': 1,
          'production': 1,
          'set': 1,
          '2176': 1,
          'humanity': 1,
          'looks': 1,
          'relief': 1,
          'overpopulation': 1,
          'strangling': 1,
          'world': 1,
          'nsix': 1,
          'hundred': 1,
          'forty': 1,
          'thousand': 1,
          'people': 1,
          'live': 1,
          'work': 1,
          'outposts': 1,
          'red': 1,
          'planet': 1,
          'terraforming': 1,
          'make': 1,
          'hospitable': 1,
          'future': 1,
          'generations': 1,
          'na': 1,
          'nterraforming': 1,
          'nsounds': 1,
          'pretty': 1,
          'intriguing': 1,
          'eh': 1,
          'nwell': 1,
          'dont': 1,
          'get': 1,
          'hopes': 1,
          'nneg': 1}),
 Counter({'max': 6,
          'films': 3,
          'dont': 3,
          'see': 3,
          'like': 3,
          'isnt': 3,
          'better': 3,
          'day': 3,
          'year': 2,
          'digimon': 2,
          'move': 2,
          'little': 2,
          'doesnt': 2,
          'much': 2,
          'get': 2,
          'keeble': 2,
          'film': 2,
          'youd': 2,
          'dubya': 2,
          'week': 2,
          'first': 2,
          'man': 2,
          'snow': 2,
          'school': 2,
          'nhe': 2,
          'family': 2,
          'maxs': 2,
          'pretty': 2,
          'august': 1,
          'september': 1,
          'wasteland': 1,
          'comes': 1,
          'childrens': 1,
          'october': 1,
          'dumping': 1,
          'ground': 1,
          'munchkin': 1,
          'movies': 1,
          'studios': 1,
          'want': 1,
          'slaughtered': 1,
          'familyoriented': 1,
          'thanksgiving': 1,
          'nlast': 1,
          'benevolent': 1,
          'studio': 1,
          'gods': 1,
          'gave': 1,
          'us': 1,
          'bestow': 1,
          'keebles': 1,
          'big': 1,
          'delighted': 1,
          'moviegoers': 1,
          'across': 1,
          'country': 1,
          'nparents': 1,
          'thrilled': 1,
          'theyll': 1,
          'finally': 1,
          'something': 1,
          'drag': 1,
          'austin': 1,
          'kayla': 1,
          'smell': 1,
          'nearly': 1,
          'ass': 1,
          'ndont': 1,
          'wrong': 1,
          'actually': 1,
          'ment': 1,
          'away': 1,
          'fetish': 1,
          'entertaining': 1,
          'nin': 1,
          'fact': 1,
          'waiting': 1,
          'blow': 1,
          'disposable': 1,
          'income': 1,
          'real': 1,
          'kiddie': 1,
          'pics': 1,
          'monsters': 1,
          'inc': 1,
          'harry': 1,
          'potter': 1,
          'come': 1,
          'next': 1,
          'month': 1,
          'nbut': 1,
          'iii': 1,
          'tells': 1,
          'go': 1,
          'spend': 1,
          'money': 1,
          'stimulate': 1,
          'economy': 1,
          'gassing': 1,
          'minivan': 1,
          'twice': 1,
          'going': 1,
          'cut': 1,
          'nwe': 1,
          'young': 1,
          'alex': 1,
          'linz': 1,
          'home': 1,
          'alone': 1,
          '3': 1,
          'pintsized': 1,
          'superhero': 1,
          'delivering': 1,
          'newspapers': 1,
          'pinpoint': 1,
          'accuracy': 1,
          'david': 1,
          'beckham': 1,
          'cross': 1,
          'foiling': 1,
          'diabolical': 1,
          'plans': 1,
          'evil': 1,
          'ice': 1,
          'cream': 1,
          'jamie': 1,
          'kennedy': 1,
          'jay': 1,
          'silent': 1,
          'bob': 1,
          'strike': 1,
          'back': 1,
          'landing': 1,
          'neighborhood': 1,
          'honey': 1,
          'brooke': 1,
          'anne': 1,
          'smith': 1,
          'way': 1,
          'hottest': 1,
          'chick': 1,
          'disney': 1,
          'since': 1,
          'emmanuelle': 1,
          'chriqui': 1,
          'played': 1,
          'claire': 1,
          'boner': 1,
          'nthe': 1,
          'scenario': 1,
          'course': 1,
          'dream': 1,
          'nmax': 1,
          'really': 1,
          'doofus': 1,
          'wakes': 1,
          'junior': 1,
          'high': 1,
          'pessimistic': 1,
          'attitude': 1,
          'luck': 1,
          'ladies': 1,
          'two': 1,
          'friends': 1,
          'kindly': 1,
          'described': 1,
          'social': 1,
          'outcasts': 1,
          'perpetually': 1,
          'robed': 1,
          'robe': 1,
          'josh': 1,
          'peck': 1,
          'clarinetplaying': 1,
          'cutie': 1,
          'named': 1,
          'megan': 1,
          'summer': 1,
          'catchs': 1,
          'zena': 1,
          'grey': 1,
          'harbors': 1,
          'secret': 1,
          'feelings': 1,
          'nthings': 1,
          'arrives': 1,
          'contend': 1,
          'among': 1,
          'things': 1,
          'redhot': 1,
          'science': 1,
          'teacher': 1,
          'amber': 1,
          'valletta': 1,
          'pair': 1,
          'polaropposite': 1,
          'bullies': 1,
          'noel': 1,
          'fisher': 1,
          'orlando': 1,
          'brown': 1,
          'illiterate': 1,
          'principal': 1,
          'larry': 1,
          'miller': 1,
          'princess': 1,
          'diaries': 1,
          'whos': 1,
          'secretly': 1,
          'diverting': 1,
          'schools': 1,
          'last': 1,
          'dime': 1,
          'football': 1,
          'program': 1,
          'nwhen': 1,
          'father': 1,
          'grownup': 1,
          'nerd': 1,
          'robert': 1,
          'carradine': 1,
          'unexpectedly': 1,
          'announces': 1,
          'moving': 1,
          'new': 1,
          'town': 1,
          'end': 1,
          'decides': 1,
          'perfect': 1,
          'time': 1,
          'exact': 1,
          'revenge': 1,
          'everyone': 1,
          'pisses': 1,
          'nwhoa': 1,
          'worry': 1,
          'parents': 1,
          'kleboldharris': 1,
          'style': 1,
          'nits': 1,
          'tame': 1,
          'stuff': 1,
          'ends': 1,
          'hot': 1,
          'water': 1,
          'dad': 1,
          'nixes': 1,
          'leaving': 1,
          'son': 1,
          'dangling': 1,
          'wind': 1,
          'many': 1,
          'tampon': 1,
          'strings': 1,
          'ndirector': 1,
          'tim': 1,
          'hill': 1,
          'muppets': 1,
          'space': 1,
          'adds': 1,
          'nice': 1,
          'touches': 1,
          'voiceover': 1,
          'character': 1,
          'introductions': 1,
          'main': 1,
          'characters': 1,
          'flashback': 1,
          'scene': 1,
          'thats': 1,
          'funny': 1,
          'else': 1,
          'happening': 1,
          'stylewise': 1,
          'unless': 1,
          'nyou': 1,
          'count': 1,
          'farting': 1,
          'puking': 1,
          'couple': 1,
          'bizarre': 1,
          'cameos': 1,
          'tony': 1,
          'hawk': 1,
          'lil': 1,
          'romeo': 1,
          'n1': 1,
          '30': 1,
          'pg': 1,
          'bullying': 1,
          'crude': 1,
          'humor': 1,
          'nneg': 1}),
 Counter({'movie': 11,
          'horizon': 5,
          'event': 4,
          'nthe': 4,
          'nit': 4,
          'nand': 3,
          'future': 3,
          'go': 3,
          'ship': 3,
          'film': 3,
          'ripoff': 3,
          '40': 3,
          'minutes': 3,
          'kind': 3,
          'many': 3,
          'little': 3,
          'one': 3,
          'story': 3,
          'black': 2,
          'hole': 2,
          'also': 2,
          'vanished': 2,
          'crew': 2,
          'nif': 2,
          'know': 2,
          'infinite': 2,
          'terror': 2,
          'certainly': 2,
          'seems': 2,
          'sick': 2,
          'alien': 2,
          'degenerates': 2,
          'first': 2,
          'interesting': 2,
          'nthats': 2,
          'tries': 2,
          'make': 2,
          'viewers': 2,
          'feel': 2,
          'gore': 2,
          'seen': 2,
          'respect': 2,
          'audience': 2,
          'nthere': 2,
          'floating': 2,
          'extremely': 2,
          'save': 2,
          'idea': 2,
          'life': 2,
          'space': 2,
          'nbut': 2,
          'talent': 2,
          'premise': 2,
          'something': 2,
          'nhe': 2,
          'scene': 2,
          'fully': 2,
          'look': 2,
          'forward': 2,
          'boundary': 1,
          'name': 1,
          'spaceship': 1,
          'tried': 1,
          'faster': 1,
          'speed': 1,
          'light': 1,
          'traversing': 1,
          'portable': 1,
          'nnaturally': 1,
          'setup': 1,
          'nwhen': 1,
          'suddenly': 1,
          'appears': 1,
          'point': 1,
          'outside': 1,
          'neptune': 1,
          'called': 1,
          'lewis': 1,
          'clark': 1,
          'investigate': 1,
          'dr': 1,
          'william': 1,
          'weir': 1,
          'creator': 1,
          'gets': 1,
          'come': 1,
          'along': 1,
          'ride': 1,
          'youve': 1,
          'glanced': 1,
          'poster': 1,
          'supposedly': 1,
          'follows': 1,
          'nwell': 1,
          'dont': 1,
          'part': 1,
          'qualify': 1,
          'nevent': 1,
          'meanspirited': 1,
          'gory': 1,
          'excuse': 1,
          'starts': 1,
          'pointlessly': 1,
          'bloody': 1,
          'slasher': 1,
          'flick': 1,
          'nat': 1,
          'least': 1,
          'lot': 1,
          'said': 1,
          'rest': 1,
          'forever': 1,
          'scary': 1,
          'monster': 1,
          'psychological': 1,
          'thriller': 1,
          'simply': 1,
          'stomach': 1,
          'site': 1,
          'extreme': 1,
          'nyouve': 1,
          'hellraiser': 1,
          'series': 1,
          'plenty': 1,
          'scenes': 1,
          'containing': 1,
          'sensibility': 1,
          'nthis': 1,
          'hoped': 1,
          'died': 1,
          'years': 1,
          'ago': 1,
          'quite': 1,
          'possible': 1,
          'frighten': 1,
          'shock': 1,
          'without': 1,
          'resorting': 1,
          'nothing': 1,
          'takes': 1,
          'low': 1,
          'road': 1,
          'pay': 1,
          'price': 1,
          'good': 1,
          'respectable': 1,
          'performances': 1,
          'fishburne': 1,
          'neill': 1,
          'noticably': 1,
          'npaul': 1,
          'andersons': 1,
          'direction': 1,
          'impressive': 1,
          'mortal': 1,
          'kombat': 1,
          'nice': 1,
          'special': 1,
          'effects': 1,
          'mostly': 1,
          'dealing': 1,
          'numerous': 1,
          'common': 1,
          'objects': 1,
          'around': 1,
          'zerogravity': 1,
          'sets': 1,
          'beautiful': 1,
          'gaze': 1,
          'upon': 1,
          'richard': 1,
          'jones': 1,
          'character': 1,
          'cooper': 1,
          'hilarious': 1,
          'likable': 1,
          'characters': 1,
          'ive': 1,
          'recent': 1,
          'movies': 1,
          'screen': 1,
          'time': 1,
          'none': 1,
          'dgrade': 1,
          'level': 1,
          'sort': 1,
          'within': 1,
          'walls': 1,
          'knows': 1,
          'fears': 1,
          'inner': 1,
          'skeletons': 1,
          'human': 1,
          'passengers': 1,
          'promising': 1,
          'na': 1,
          'haunted': 1,
          'house': 1,
          'isnt': 1,
          'bad': 1,
          'final': 1,
          'execution': 1,
          'disappointing': 1,
          'say': 1,
          'philip': 1,
          'eisner': 1,
          'making': 1,
          'feature': 1,
          'filmwriting': 1,
          'debut': 1,
          'doesnt': 1,
          'nfor': 1,
          'manages': 1,
          'tired': 1,
          'adding': 1,
          'aspects': 1,
          'unique': 1,
          'flavor': 1,
          'thats': 1,
          'writers': 1,
          'even': 1,
          'though': 1,
          'sicken': 1,
          'honestly': 1,
          'tense': 1,
          'question': 1,
          'deals': 1,
          'airlock': 1,
          'others': 1,
          'try': 1,
          'definitely': 1,
          'gift': 1,
          'display': 1,
          'ni': 1,
          'seeing': 1,
          'hope': 1,
          'work': 1,
          'explores': 1,
          'possibilities': 1,
          'got': 1,
          'enjoyment': 1,
          'agree': 1,
          'laurence': 1,
          'fishburnes': 1,
          'sentiment': 1,
          'god': 1,
          'help': 1,
          'us': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'film': 5,
          'chainsaw': 4,
          'bad': 4,
          'mcconaughey': 4,
          'never': 3,
          'zellweger': 3,
          'would': 3,
          'rule': 2,
          'na': 2,
          'sequel': 2,
          'good': 2,
          'original': 2,
          'nthere': 2,
          'massacre': 2,
          'also': 2,
          'isnt': 2,
          'even': 2,
          'time': 2,
          'made': 2,
          'stars': 2,
          'acting': 2,
          'ever': 2,
          'napparently': 2,
          'two': 2,
          'dont': 2,
          'sort': 2,
          'horror': 2,
          'plays': 2,
          'remote': 2,
          'control': 2,
          'say': 2,
          'make': 2,
          'worse': 2,
          'wrong': 2,
          'nthis': 2,
          'comes': 1,
          'movies': 1,
          'exceptions': 1,
          'texas': 1,
          'next': 1,
          'generation': 1,
          'one': 1,
          'nnow': 1,
          'take': 1,
          'consideration': 1,
          'really': 1,
          'first': 1,
          'recipe': 1,
          'painful': 1,
          'viewing': 1,
          'experience': 1,
          'ndont': 1,
          'fooled': 1,
          'presence': 1,
          'coming': 1,
          'talents': 1,
          'matthew': 1,
          'kill': 1,
          'renee': 1,
          'jerry': 1,
          'maguire': 1,
          'nthey': 1,
          'njudging': 1,
          'performances': 1,
          'took': 1,
          'lessons': 1,
          'nits': 1,
          'wonder': 1,
          'worked': 1,
          'hollywood': 1,
          'appearing': 1,
          'turkey': 1,
          'producers': 1,
          'realized': 1,
          'sat': 1,
          'unreleased': 1,
          'years': 1,
          'someone': 1,
          'decided': 1,
          'might': 1,
          'able': 1,
          'capitalize': 1,
          'success': 1,
          'young': 1,
          'none': 1,
          'happy': 1,
          'thing': 1,
          'seeing': 1,
          'light': 1,
          'day': 1,
          'nand': 1,
          'blame': 1,
          'better': 1,
          'porno': 1,
          'flick': 1,
          'starring': 1,
          'nunfortunately': 1,
          'typically': 1,
          'stupid': 1,
          'character': 1,
          'nwhile': 1,
          'guy': 1,
          'wears': 1,
          'mechanical': 1,
          'brace': 1,
          'leg': 1,
          'controls': 1,
          'television': 1,
          'n': 1,
          'hey': 1,
          'didnt': 1,
          'warn': 1,
          'nto': 1,
          'matters': 1,
          'leatherface': 1,
          'wielding': 1,
          'maniac': 1,
          'scariest': 1,
          'psychopathic': 1,
          'killers': 1,
          'best': 1,
          'times': 1,
          'become': 1,
          'full': 1,
          'blown': 1,
          'crossdresser': 1,
          'spends': 1,
          'entire': 1,
          'drag': 1,
          'plot': 1,
          'worth': 1,
          'mentioning': 1,
          'nlets': 1,
          'suffice': 1,
          'group': 1,
          'teenagers': 1,
          'typical': 1,
          'place': 1,
          'left': 1,
          'mercy': 1,
          'man': 1,
          'lipstick': 1,
          'wearing': 1,
          'revving': 1,
          'halfwitted': 1,
          'sidekick': 1,
          'nman': 1,
          'cant': 1,
          'get': 1,
          'absolutely': 1,
          'redeeming': 1,
          'qualities': 1,
          'neven': 1,
          'obligatory': 1,
          'topless': 1,
          'babe': 1,
          'shot': 1,
          'wasnt': 1,
          'enough': 1,
          'hold': 1,
          'interest': 1,
          '2': 1,
          'seconds': 1,
          'nthe': 1,
          'writing': 1,
          'direction': 1,
          'things': 1,
          'look': 1,
          'comparison': 1,
          'people': 1,
          'prison': 1,
          'watch': 1,
          'guarantee': 1,
          'criminals': 1,
          'thought': 1,
          'subjected': 1,
          'break': 1,
          'law': 1,
          'nneg': 1}),
 Counter({'nthe': 5,
          'nhe': 4,
          'one': 4,
          'milton': 4,
          'begins': 4,
          'movie': 4,
          'two': 4,
          'lomax': 3,
          'also': 3,
          'nhis': 3,
          'story': 3,
          'film': 3,
          'never': 3,
          'nyoull': 3,
          'reeves': 2,
          'ultimately': 2,
          'character': 2,
          'knowing': 2,
          'good': 2,
          'trial': 2,
          'lawyer': 2,
          'nin': 2,
          'scene': 2,
          'guilty': 2,
          'desire': 2,
          'soon': 2,
          'john': 2,
          'pacino': 2,
          'given': 2,
          'life': 2,
          'soul': 2,
          'firm': 2,
          'mary': 2,
          'ann': 2,
          'nbut': 2,
          'begin': 2,
          'like': 2,
          'makes': 2,
          'power': 2,
          'devil': 2,
          'things': 2,
          'much': 2,
          'horrifying': 2,
          'tries': 2,
          'give': 2,
          'first': 2,
          'get': 2,
          'final': 2,
          'slowly': 2,
          'nthis': 2,
          'fully': 2,
          'focus': 2,
          'seemed': 2,
          'hotshot': 1,
          'defense': 1,
          'attorney': 1,
          'kevin': 1,
          'keanu': 1,
          'special': 1,
          'talent': 1,
          'picking': 1,
          'juries': 1,
          'acquit': 1,
          'clients': 1,
          'excellent': 1,
          'judge': 1,
          'strings': 1,
          'pull': 1,
          'sway': 1,
          'jury': 1,
          'breaking': 1,
          'potentially': 1,
          'damaging': 1,
          'witnesss': 1,
          'testimony': 1,
          'nand': 1,
          'top': 1,
          'hes': 1,
          'damn': 1,
          'opening': 1,
          'obvious': 1,
          'defendant': 1,
          'represents': 1,
          'doesnt': 1,
          'hamper': 1,
          'lomaxs': 1,
          'creatively': 1,
          'squeeze': 1,
          'client': 1,
          'doors': 1,
          'reasonable': 1,
          'doubt': 1,
          'thereby': 1,
          'getting': 1,
          'acquittal': 1,
          'unblemished': 1,
          'record': 1,
          'victories': 1,
          'captures': 1,
          'attention': 1,
          'prestigious': 1,
          'firms': 1,
          'country': 1,
          'headed': 1,
          'al': 1,
          'brought': 1,
          'headquarters': 1,
          'nyc': 1,
          'immediately': 1,
          'impresses': 1,
          'subsequently': 1,
          'offered': 1,
          'fulltime': 1,
          'position': 1,
          'head': 1,
          'newlycreated': 1,
          'criminal': 1,
          'law': 1,
          'division': 1,
          'nlomax': 1,
          'case': 1,
          'must': 1,
          'defend': 1,
          'real': 1,
          'estate': 1,
          'tycoon': 1,
          'charged': 1,
          'triple': 1,
          'homicide': 1,
          'draw': 1,
          'fame': 1,
          'prove': 1,
          'really': 1,
          'isolate': 1,
          'hell': 1,
          'works': 1,
          'late': 1,
          'defends': 1,
          'pledges': 1,
          'neglect': 1,
          'smart': 1,
          'fretful': 1,
          'wife': 1,
          'charlize': 1,
          'theron': 1,
          'starts': 1,
          'promising': 1,
          'grishamlike': 1,
          'consciencestricken': 1,
          'lawyers': 1,
          'takes': 1,
          'abrupt': 1,
          'detour': 1,
          'supernatural': 1,
          'forces': 1,
          'tinker': 1,
          'nit': 1,
          'typical': 1,
          'parable': 1,
          'smalltown': 1,
          'boy': 1,
          'big': 1,
          'balance': 1,
          'sense': 1,
          'self': 1,
          'allure': 1,
          'money': 1,
          'greed': 1,
          'far': 1,
          'corrupt': 1,
          'partner': 1,
          'nquite': 1,
          'literally': 1,
          'disguise': 1,
          'progresses': 1,
          'reveals': 1,
          'uncanny': 1,
          'talents': 1,
          'could': 1,
          'sold': 1,
          'long': 1,
          'ago': 1,
          'nfreaky': 1,
          'frightening': 1,
          'happen': 1,
          'elasped': 1,
          'miltons': 1,
          'intent': 1,
          'finally': 1,
          'revealed': 1,
          'us': 1,
          'separate': 1,
          'distinct': 1,
          'acts': 1,
          'involves': 1,
          'comeuppance': 1,
          'bigcity': 1,
          'second': 1,
          'focuses': 1,
          'ulterior': 1,
          'motive': 1,
          'employing': 1,
          'nunfortunately': 1,
          'mix': 1,
          'well': 1,
          'cohesive': 1,
          'underdeveloped': 1,
          'stories': 1,
          'rely': 1,
          'shaky': 1,
          'revelation': 1,
          'tie': 1,
          'together': 1,
          'impressive': 1,
          'production': 1,
          'piece': 1,
          'underlying': 1,
          'atmosphere': 1,
          'ngranted': 1,
          'handsomelooking': 1,
          'enjoy': 1,
          'wall': 1,
          'mural': 1,
          'seemingly': 1,
          'comes': 1,
          'heated': 1,
          'speech': 1,
          'images': 1,
          'temptation': 1,
          'expressed': 1,
          'fleshy': 1,
          'flashy': 1,
          'parties': 1,
          'feel': 1,
          'loneliness': 1,
          'insanity': 1,
          'sets': 1,
          'husband': 1,
          'drifting': 1,
          'away': 1,
          'better': 1,
          'storylines': 1,
          'unfortunately': 1,
          'subplot': 1,
          'nas': 1,
          'involving': 1,
          'expect': 1,
          'nothing': 1,
          'worst': 1,
          'scenes': 1,
          'anchors': 1,
          'drifts': 1,
          'background': 1,
          'path': 1,
          'selfvanity': 1,
          'selfconsciousness': 1,
          'explored': 1,
          'actions': 1,
          'seem': 1,
          'arbitrary': 1,
          'reasons': 1,
          'known': 1,
          'npacinos': 1,
          'comical': 1,
          'portrayal': 1,
          'spirited': 1,
          'vanity': 1,
          'shift': 1,
          'nthere': 1,
          'another': 1,
          'plot': 1,
          'introduced': 1,
          'gets': 1,
          'revisited': 1,
          'inconsistent': 1,
          'throughout': 1,
          'payoff': 1,
          'quick': 1,
          'cheap': 1,
          'thrilling': 1,
          'dramatic': 1,
          'time': 1,
          'nhowever': 1,
          'devils': 1,
          'advocate': 1,
          'strives': 1,
          'noticed': 1,
          'little': 1,
          'impression': 1,
          'nneg': 1}),
 Counter({'think': 5,
          'sure': 4,
          'eastwick': 4,
          'women': 4,
          'nicholson': 4,
          'movie': 4,
          'na': 4,
          'witches': 3,
          'ni': 3,
          'like': 3,
          'nif': 3,
          'film': 3,
          'one': 3,
          'folk': 3,
          'little': 3,
          'direction': 3,
          'scene': 3,
          'im': 2,
          'going': 2,
          'made': 2,
          'old': 2,
          'get': 2,
          'bits': 2,
          'seem': 2,
          'something': 2,
          'role': 2,
          'devil': 2,
          'goes': 2,
          'audience': 2,
          'even': 2,
          'confused': 2,
          'nthey': 2,
          'comedy': 2,
          'bit': 2,
          'tale': 2,
          'overtones': 2,
          'either': 2,
          'funny': 2,
          'could': 2,
          'nin': 2,
          'character': 2,
          'never': 2,
          'another': 2,
          'nand': 2,
          'effects': 2,
          'guys': 2,
          '00': 2,
          'people': 2,
          'nlet': 2,
          'use': 2,
          'time': 2,
          'seems': 2,
          'maybe': 2,
          'writing': 1,
          'review': 1,
          'hell': 1,
          'pardon': 1,
          'expression': 1,
          'nhowever': 1,
          'express': 1,
          'important': 1,
          'observation': 1,
          'e': 1,
          'didnt': 1,
          'summarize': 1,
          'id': 1,
          'conclude': 1,
          'updating': 1,
          'new': 1,
          'england': 1,
          'tales': 1,
          'someone': 1,
          'selling': 1,
          'souls': 1,
          'scratch': 1,
          'try': 1,
          'deal': 1,
          'nthats': 1,
          'kernel': 1,
          'anyway': 1,
          'ntossed': 1,
          'pieces': 1,
          'occasionally': 1,
          'saying': 1,
          'men': 1,
          'feminism': 1,
          'modern': 1,
          'reformers': 1,
          'friendship': 1,
          'nunfortunately': 1,
          'effort': 1,
          'ever': 1,
          'follow': 1,
          'elucidate': 1,
          'concepts': 1,
          'theyre': 1,
          'simply': 1,
          'thrown': 1,
          'left': 1,
          'rot': 1,
          'apace': 1,
          'nactually': 1,
          'came': 1,
          'expecting': 1,
          'kind': 1,
          'supernatural': 1,
          'level': 1,
          'ghostbusters': 1,
          'getting': 1,
          'philosophical': 1,
          'laughed': 1,
          'tried': 1,
          'laugh': 1,
          'moments': 1,
          'barely': 1,
          'much': 1,
          'horrible': 1,
          'bend': 1,
          'away': 1,
          'rather': 1,
          'frightening': 1,
          'nthree': 1,
          'cher': 1,
          'susan': 1,
          'sarandon': 1,
          'michelle': 1,
          'pfieffer': 1,
          'live': 1,
          'small': 1,
          'midwestern': 1,
          'town': 1,
          'none': 1,
          'night': 1,
          'drinking': 1,
          'late': 1,
          'evening': 1,
          'begin': 1,
          'wishing': 1,
          'ideal': 1,
          'man': 1,
          'drop': 1,
          'lives': 1,
          'seeming': 1,
          'answer': 1,
          'idle': 1,
          'daydreams': 1,
          'wealthy': 1,
          'eccentric': 1,
          'moves': 1,
          'mansion': 1,
          'hill': 1,
          'seduces': 1,
          'attempting': 1,
          'everything': 1,
          'want': 1,
          'nhe': 1,
          'soon': 1,
          'shows': 1,
          'evidence': 1,
          'mysticalperhaps': 1,
          'demonicpower': 1,
          'devotion': 1,
          'womens': 1,
          'merest': 1,
          'fantasies': 1,
          'wishes': 1,
          'dangerous': 1,
          'neven': 1,
          'worse': 1,
          'ignored': 1,
          'moods': 1,
          'become': 1,
          'ugly': 1,
          'mistreats': 1,
          'spurning': 1,
          'nanyway': 1,
          'problems': 1,
          'three': 1,
          'female': 1,
          'characters': 1,
          'fairly': 1,
          'uninteresting': 1,
          'several': 1,
          'cardboard': 1,
          'stereotypes': 1,
          'especially': 1,
          'sarandons': 1,
          'nwe': 1,
          'inside': 1,
          'feel': 1,
          'sympathetic': 1,
          'dialogue': 1,
          'personalities': 1,
          'pretty': 1,
          'bland': 1,
          'nas': 1,
          'well': 1,
          'needs': 1,
          'go': 1,
          'darryl': 1,
          'van': 1,
          'horne': 1,
          'interesting': 1,
          'due': 1,
          'grace': 1,
          'screenwriter': 1,
          'importantly': 1,
          'nicholsons': 1,
          'acting': 1,
          'still': 1,
          'cant': 1,
          'yanked': 1,
          'without': 1,
          'making': 1,
          'vague': 1,
          'theres': 1,
          'special': 1,
          'nnot': 1,
          'themselvesthey': 1,
          'werent': 1,
          'goodbut': 1,
          'overuse': 1,
          'almost': 1,
          'positive': 1,
          'saw': 1,
          'credits': 1,
          'produced': 1,
          'alexander': 1,
          'salkind': 1,
          'turned': 1,
          'slop': 1,
          'named': 1,
          'superman': 1,
          'ii': 1,
          'iii': 1,
          'supergirl': 1,
          'big': 1,
          'name': 1,
          'actors': 1,
          'dopy': 1,
          'stunts': 1,
          'stephen': 1,
          'spielberg': 1,
          '18th': 1,
          'vomit': 1,
          'nicholsonblowndownthestreet': 1,
          'stunt': 1,
          'nnope': 1,
          'bunch': 1,
          'directed': 1,
          'george': 1,
          'miller': 1,
          'shown': 1,
          'great': 1,
          'skill': 1,
          'stuntsspecial': 1,
          'road': 1,
          'warrior': 1,
          'nightmare': 1,
          '20': 1,
          'feet': 1,
          'episode': 1,
          'twilight': 1,
          'zone': 1,
          'apparently': 1,
          'doesnt': 1,
          'know': 1,
          'turn': 1,
          'wind': 1,
          'machine': 1,
          'let': 1,
          'act': 1,
          'nfgawds': 1,
          'sake': 1,
          'jack': 1,
          'loose': 1,
          'grin': 1,
          'demonically': 1,
          'nskip': 1,
          'splitting': 1,
          'earth': 1,
          'fake': 1,
          'lightning': 1,
          'nwatching': 1,
          'tossed': 1,
          'car': 1,
          'voodoo': 1,
          'doll': 1,
          'waste': 1,
          'youre': 1,
          'slapstick': 1,
          'pee': 1,
          'wee': 1,
          'herman': 1,
          'nnicholson': 1,
          'find': 1,
          'bearings': 1,
          'extremely': 1,
          'good': 1,
          'church': 1,
          'instance': 1,
          'stiff': 1,
          'hes': 1,
          'next': 1,
          'wonder': 1,
          'nthis': 1,
          'script': 1,
          'map': 1,
          'giving': 1,
          'feeling': 1,
          'itd': 1,
          'love': 1,
          'allegory': 1,
          'give': 1,
          'itll': 1,
          'nso': 1,
          'horror': 1,
          'statement': 1,
          'nan': 1,
          'examination': 1,
          'religious': 1,
          'right': 1,
          'comparitive': 1,
          'morality': 1,
          'tend': 1,
          'image': 1,
          'dominate': 1,
          'watching': 1,
          'nsomeone': 1,
          'regurgitate': 1,
          'halfdigested': 1,
          'food': 1,
          'cherry': 1,
          'pits': 1,
          'rooms': 1,
          'screen': 1,
          'ultimately': 1,
          'words': 1,
          'mess': 1,
          'n': 1,
          '2': 1,
          'enough': 1,
          'watch': 1,
          '25': 1,
          'charm': 1,
          'able': 1,
          'make': 1,
          'logjams': 1,
          'others': 1,
          'nneg': 1}),
 Counter({'virus': 12,
          'ship': 8,
          'film': 7,
          'one': 6,
          'race': 5,
          'computer': 5,
          'big': 5,
          'heroes': 4,
          'get': 4,
          'bad': 4,
          'nits': 4,
          'creature': 4,
          'alien': 3,
          'human': 3,
          'nafter': 3,
          'taken': 3,
          'nthe': 3,
          'power': 3,
          'nvirus': 3,
          'films': 3,
          'simply': 3,
          'lot': 3,
          'interesting': 2,
          'thing': 2,
          'clunky': 2,
          'try': 2,
          'kill': 2,
          'space': 2,
          'station': 2,
          'thinks': 2,
          'even': 2,
          'entire': 2,
          'let': 2,
          'us': 2,
          'years': 2,
          'nbut': 2,
          'much': 2,
          'theres': 2,
          'captain': 2,
          'everton': 2,
          'donald': 2,
          'sutherland': 2,
          'board': 2,
          'going': 2,
          'however': 2,
          'realize': 2,
          'every': 2,
          'terminator': 2,
          'basically': 2,
          'movie': 2,
          'deep': 2,
          'rising': 2,
          'good': 2,
          'genre': 2,
          'scenes': 2,
          'really': 2,
          'make': 2,
          'non': 2,
          'people': 2,
          'like': 2,
          'around': 2,
          'acting': 2,
          'title': 1,
          'refer': 1,
          'robotic': 1,
          'animals': 1,
          'nalas': 1,
          'refers': 1,
          'nas': 1,
          'turns': 1,
          'sends': 1,
          'earth': 1,
          'via': 1,
          'mir': 1,
          'perhaps': 1,
          'cancer': 1,
          'needs': 1,
          'eradicated': 1,
          'spreads': 1,
          'planet': 1,
          'live': 1,
          'another': 1,
          'billion': 1,
          'might': 1,
          'advance': 1,
          'beyond': 1,
          'solar': 1,
          'system': 1,
          'next': 1,
          'doesnt': 1,
          'worry': 1,
          'woman': 1,
          'named': 1,
          'foster': 1,
          'jamie': 1,
          'lee': 1,
          'curtis': 1,
          'stopping': 1,
          'nshes': 1,
          'chief': 1,
          'navigator': 1,
          'sea': 1,
          'vessel': 1,
          'travelling': 1,
          'steve': 1,
          'baker': 1,
          'william': 1,
          'baldwin': 1,
          'woods': 1,
          'marshall': 1,
          'bell': 1,
          'squeaky': 1,
          'julio': 1,
          'oscar': 1,
          'mechoso': 1,
          'richie': 1,
          'sherman': 1,
          'augustus': 1,
          'ntheyre': 1,
          'sailing': 1,
          'typhoon': 1,
          'lovely': 1,
          'evening': 1,
          'stumble': 1,
          'across': 1,
          'enormous': 1,
          'abandoned': 1,
          'russian': 1,
          'satellite': 1,
          'international': 1,
          'waters': 1,
          'nlucky': 1,
          'already': 1,
          'saw': 1,
          'eliminated': 1,
          'everyone': 1,
          'evil': 1,
          'hes': 1,
          'take': 1,
          'reward': 1,
          'convinces': 1,
          'crew': 1,
          'money': 1,
          'salvage': 1,
          'nsoon': 1,
          'apparent': 1,
          'something': 1,
          'must': 1,
          'happened': 1,
          'nfinally': 1,
          'meet': 1,
          'nadia': 1,
          'joanna': 1,
          'pacula': 1,
          'explains': 1,
          'situation': 1,
          'creating': 1,
          'biomechanical': 1,
          'lifeforms': 1,
          'eliminate': 1,
          'truly': 1,
          'dumb': 1,
          'action': 1,
          'thriller': 1,
          'negligible': 1,
          'intelligence': 1,
          'innovation': 1,
          'nwhen': 1,
          'considering': 1,
          'lacks': 1,
          'single': 1,
          'original': 1,
          'scene': 1,
          'direct': 1,
          'ripoff': 1,
          'nearly': 1,
          'james': 1,
          'cameron': 1,
          'aliens': 1,
          'abyss': 1,
          'plagiarized': 1,
          'importantly': 1,
          'last': 1,
          'ni': 1,
          'liked': 1,
          'funny': 1,
          'knows': 1,
          'silly': 1,
          'derivative': 1,
          'takes': 1,
          'seriously': 1,
          'nand': 1,
          'serious': 1,
          'manner': 1,
          'possible': 1,
          'steals': 1,
          'showing': 1,
          'countless': 1,
          'familiar': 1,
          'sporting': 1,
          'cookiecutter': 1,
          'plot': 1,
          'scifihorror': 1,
          'could': 1,
          'fit': 1,
          'little': 1,
          'trimming': 1,
          'amazing': 1,
          'poorly': 1,
          'whole': 1,
          'thought': 1,
          'nokay': 1,
          'straight': 1,
          'never': 1,
          'explained': 1,
          'sentient': 1,
          'electricity': 1,
          'nthey': 1,
          'need': 1,
          'physical': 1,
          'use': 1,
          'onto': 1,
          'surrounded': 1,
          'water': 1,
          'cares': 1,
          'bunch': 1,
          'immobile': 1,
          'robots': 1,
          'somehow': 1,
          'three': 1,
          'hundred': 1,
          'start': 1,
          'using': 1,
          'dead': 1,
          'create': 1,
          'halfhuman': 1,
          'halfmachine': 1,
          'creatures': 1,
          'look': 1,
          'worse': 1,
          'walking': 1,
          'leader': 1,
          'course': 1,
          'nevery': 1,
          'end': 1,
          'tear': 1,
          'walls': 1,
          'move': 1,
          'indeed': 1,
          'cliched': 1,
          'central': 1,
          'flaw': 1,
          'lies': 1,
          'fact': 1,
          'isnt': 1,
          'threatening': 1,
          'established': 1,
          'turn': 1,
          'stop': 1,
          'sealed': 1,
          'room': 1,
          'time': 1,
          'level': 1,
          'almost': 1,
          'passable': 1,
          'fun': 1,
          'gory': 1,
          'camp': 1,
          'appeal': 1,
          'director': 1,
          'john': 1,
          'bruno': 1,
          'worked': 1,
          'camerons': 1,
          'ntheres': 1,
          'also': 1,
          'nice': 1,
          'array': 1,
          'actors': 1,
          'though': 1,
          'none': 1,
          'except': 1,
          'bottom': 1,
          'line': 1,
          'nit': 1,
          'rips': 1,
          'movies': 1,
          'worth': 1,
          'seeing': 1,
          'nin': 1,
          'order': 1,
          'recommend': 1,
          'rent': 1,
          'admire': 1,
          'qualities': 1,
          'actually': 1,
          'threatens': 1,
          'nneg': 1}),
 Counter({'werewolf': 12,
          'american': 7,
          'paris': 5,
          'nthe': 4,
          'delpy': 4,
          'andy': 3,
          'nshe': 3,
          'movie': 3,
          'isnt': 3,
          'nand': 3,
          'thats': 3,
          'horror': 2,
          'london': 2,
          'nwhere': 2,
          'comedy': 2,
          'sequel': 2,
          'kind': 2,
          'first': 2,
          'one': 2,
          'something': 2,
          'even': 2,
          'film': 2,
          'everett': 2,
          'scott': 2,
          'vince': 2,
          'vieluf': 2,
          'phil': 2,
          'buckman': 2,
          'bungee': 2,
          'serafine': 2,
          'julie': 2,
          'make': 2,
          'good': 2,
          'us': 2,
          'thing': 2,
          'since': 2,
          'ndelpys': 2,
          'could': 2,
          'better': 2,
          'cast': 2,
          'level': 2,
          'material': 2,
          'nit': 2,
          'either': 2,
          'killing': 2,
          'movies': 2,
          'give': 2,
          'would': 2,
          'bad': 2,
          'waller': 2,
          'failed': 1,
          'attempt': 1,
          'recapture': 1,
          'humor': 1,
          'john': 1,
          'landis': 1,
          '1981': 1,
          'feature': 1,
          'original': 1,
          'revolting': 1,
          'silliness': 1,
          'found': 1,
          'tv': 1,
          'sitcoms': 1,
          'installment': 1,
          'chills': 1,
          'sequences': 1,
          'inappropriately': 1,
          'unintentionally': 1,
          'funny': 1,
          'nin': 1,
          'short': 1,
          'become': 1,
          'minor': 1,
          'classic': 1,
          'genre': 1,
          'woeful': 1,
          'seems': 1,
          'destined': 1,
          'late': 1,
          'nights': 1,
          'cinemax': 1,
          'necessary': 1,
          'gratuitous': 1,
          'nudity': 1,
          'opens': 1,
          'trio': 1,
          'daredevil': 1,
          'americans': 1,
          'tom': 1,
          'brad': 1,
          'chris': 1,
          'sneaking': 1,
          'top': 1,
          'eiffel': 1,
          'tower': 1,
          'drink': 1,
          'wine': 1,
          'little': 1,
          'jumping': 1,
          'nsoon': 1,
          'company': 1,
          'person': 1,
          'decided': 1,
          'end': 1,
          'jumps': 1,
          'cord': 1,
          'attached': 1,
          'goes': 1,
          'manages': 1,
          'save': 1,
          'price': 1,
          'major': 1,
          'headache': 1,
          'nserafine': 1,
          'disappears': 1,
          'smitten': 1,
          'seeks': 1,
          'nhowever': 1,
          'learns': 1,
          'wouldbe': 1,
          'girlfriends': 1,
          'dark': 1,
          'secret': 1,
          'wishes': 1,
          'hadnt': 1,
          'nshes': 1,
          'cursed': 1,
          'change': 1,
          'hideous': 1,
          'beast': 1,
          'moon': 1,
          'full': 1,
          'matters': 1,
          'worse': 1,
          'suffered': 1,
          'nasty': 1,
          'bite': 1,
          'nactress': 1,
          'far': 1,
          'imbues': 1,
          'spirit': 1,
          'spunk': 1,
          'humanity': 1,
          'gives': 1,
          'emotional': 1,
          'stake': 1,
          'characters': 1,
          'fate': 1,
          'nthis': 1,
          'necessarily': 1,
          'prevents': 1,
          'relaxing': 1,
          'enjoying': 1,
          'completely': 1,
          'mindless': 1,
          'campy': 1,
          'entertainment': 1,
          'experience': 1,
          'injection': 1,
          'class': 1,
          'otherwise': 1,
          'classless': 1,
          'production': 1,
          'raises': 1,
          'specter': 1,
          'script': 1,
          'surrounding': 1,
          'previous': 1,
          'credits': 1,
          'include': 1,
          'memorable': 1,
          'ventures': 1,
          'krzysztof': 1,
          'kieslowskis': 1,
          'white': 1,
          'richard': 1,
          'linklaters': 1,
          'sunrise': 1,
          'radiant': 1,
          'charismatic': 1,
          'effective': 1,
          'ngiven': 1,
          'nature': 1,
          'work': 1,
          'gets': 1,
          'close': 1,
          'possible': 1,
          'adjectives': 1,
          'argued': 1,
          'reason': 1,
          'see': 1,
          'devoted': 1,
          'fans': 1,
          'consider': 1,
          'giving': 1,
          'miss': 1,
          'primary': 1,
          'objective': 1,
          'catching': 1,
          'glimpse': 1,
          'buff': 1,
          'check': 1,
          'zoe': 1,
          'passion': 1,
          'beatrice': 1,
          'intelligible': 1,
          'plots': 1,
          'addition': 1,
          'breasts': 1,
          'rest': 1,
          'acts': 1,
          'considerably': 1,
          'say': 1,
          'performances': 1,
          'appropriate': 1,
          'screenplay': 1,
          'ntom': 1,
          'plays': 1,
          'lead': 1,
          'like': 1,
          'hes': 1,
          'madefortv': 1,
          'call': 1,
          'bland': 1,
          'nactors': 1,
          'andys': 1,
          'friends': 1,
          'impressive': 1,
          'njulie': 1,
          'bowen': 1,
          'happy': 1,
          'gilmore': 1,
          'suitably': 1,
          'fetching': 1,
          'meat': 1,
          'respected': 1,
          'french': 1,
          'actor': 1,
          'thierry': 1,
          'lhermitte': 1,
          'brief': 1,
          'turn': 1,
          'another': 1,
          'monster': 1,
          'meal': 1,
          'non': 1,
          'technical': 1,
          'side': 1,
          'news': 1,
          'computergenerated': 1,
          'werewolves': 1,
          'look': 1,
          'painfully': 1,
          'unreal': 1,
          'creatures': 1,
          'probably': 1,
          'believable': 1,
          'men': 1,
          'wolf': 1,
          'suits': 1,
          'nrepeated': 1,
          'use': 1,
          'made': 1,
          'cam': 1,
          'infrared': 1,
          'wolfs': 1,
          'pointofview': 1,
          'approach': 1,
          'interesting': 1,
          'couple': 1,
          'times': 1,
          'employed': 1,
          'becomes': 1,
          'tedious': 1,
          'soundtrack': 1,
          'includes': 1,
          'alternative': 1,
          'grunge': 1,
          'rock': 1,
          'tunes': 1,
          'clash': 1,
          'violently': 1,
          'onscreen': 1,
          'action': 1,
          'theyre': 1,
          'matched': 1,
          'ndirector': 1,
          'anthony': 1,
          'displayed': 1,
          'confident': 1,
          'edgy': 1,
          'style': 1,
          'mute': 1,
          'witness': 1,
          'stumbles': 1,
          'never': 1,
          'able': 1,
          'elements': 1,
          'gel': 1,
          'nas': 1,
          'result': 1,
          'get': 1,
          'worst': 1,
          'howling': 1,
          'ii': 1,
          'sister': 1,
          'n': 1,
          'credit': 1,
          'dog': 1,
          'though': 1,
          'rarely': 1,
          'seen': 1,
          'days': 1,
          'marginally': 1,
          'entertaining': 1,
          'sort': 1,
          'way': 1,
          'dubious': 1,
          'distinction': 1,
          'nultimately': 1,
          'unfortunate': 1,
          'effort': 1,
          'unbearable': 1,
          'sit': 1,
          'howl': 1,
          'nneg': 1}),
 Counter({'sin': 7,
          'original': 6,
          'film': 4,
          'girl': 4,
          'actually': 3,
          'boy': 3,
          'either': 2,
          'act': 2,
          'nbut': 2,
          'bother': 2,
          'nthe': 2,
          'even': 2,
          'angelina': 2,
          'jolie': 2,
          '1900': 2,
          'one': 2,
          'since': 2,
          'find': 2,
          'sex': 2,
          'see': 2,
          'money': 2,
          'thriller': 2,
          'go': 2,
          'worst': 2,
          'b': 2,
          'depending': 1,
          'ask': 1,
          'eating': 1,
          'apple': 1,
          'disobedience': 1,
          'god': 1,
          'betrayal': 1,
          'case': 1,
          'didnt': 1,
          'know': 1,
          'dont': 1,
          'remembering': 1,
          'words': 1,
          'never': 1,
          'come': 1,
          'movie': 1,
          'name': 1,
          'let': 1,
          'alone': 1,
          'concept': 1,
          'closest': 1,
          'gets': 1,
          'catholicism': 1,
          'narrative': 1,
          'story': 1,
          'told': 1,
          'priest': 1,
          'death': 1,
          'row': 1,
          'cuba': 1,
          'circa': 1,
          'nregardless': 1,
          'senseless': 1,
          'title': 1,
          'plot': 1,
          'albeit': 1,
          'mangled': 1,
          'acts': 1,
          'screenwriting': 1,
          'art': 1,
          'war': 1,
          'based': 1,
          'book': 1,
          'waltz': 1,
          'across': 1,
          'darkness': 1,
          'nboy': 1,
          'antionio': 1,
          'banderas': 1,
          'places': 1,
          'personal': 1,
          'ad': 1,
          'sometime': 1,
          'around': 1,
          'searching': 1,
          'wife': 1,
          'nsince': 1,
          'century': 1,
          'ago': 1,
          'narrowly': 1,
          'dodge': 1,
          'remake': 1,
          'green': 1,
          'card': 1,
          'faked': 1,
          'photo': 1,
          'beautiful': 1,
          'nskipping': 1,
          'moderately': 1,
          'useless': 1,
          'scenes': 1,
          'getting': 1,
          'question': 1,
          'way': 1,
          'yes': 1,
          'get': 1,
          'jolies': 1,
          'breasts': 1,
          'turns': 1,
          'con': 1,
          'artist': 1,
          'swindles': 1,
          'heads': 1,
          'hills': 1,
          'noriginal': 1,
          'briefly': 1,
          'tries': 1,
          'nwe': 1,
          'whorechasing': 1,
          'saying': 1,
          'wants': 1,
          'kill': 1,
          'soon': 1,
          'finds': 1,
          'instead': 1,
          'following': 1,
          'might': 1,
          'promising': 1,
          'least': 1,
          'completely': 1,
          'fucking': 1,
          'boring': 1,
          'degenerates': 1,
          'dissection': 1,
          'virginwhore': 1,
          'complex': 1,
          'milk': 1,
          'ngirl': 1,
          'toys': 1,
          'idea': 1,
          'reforming': 1,
          'congirl': 1,
          'past': 1,
          'avoiding': 1,
          'man': 1,
          'lover': 1,
          'keeps': 1,
          'making': 1,
          'start': 1,
          'scams': 1,
          'first': 1,
          'place': 1,
          'nadd': 1,
          'insult': 1,
          'injury': 1,
          'stylistic': 1,
          'choices': 1,
          'cinematic': 1,
          'history': 1,
          'literally': 1,
          'half': 1,
          'slow': 1,
          'motion': 1,
          'uses': 1,
          'strobe': 1,
          'effect': 1,
          'acting': 1,
          'roughly': 1,
          'caliber': 1,
          'gun': 1,
          'torturous': 1,
          'films': 1,
          'summer': 1,
          'definitely': 1,
          'front': 1,
          'running': 1,
          'make': 1,
          'bottom': 1,
          'ten': 1,
          'year': 1,
          'ndont': 1,
          'honest': 1,
          'admit': 1,
          'pure': 1,
          'appeal': 1,
          'njust': 1,
          'keep': 1,
          'mind': 1,
          'although': 1,
          'may': 1,
          'block': 1,
          'much': 1,
          'worse': 1,
          'nthis': 1,
          'sacrilege': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'evil': 6,
          'one': 5,
          'good': 5,
          'bad': 5,
          'battle': 5,
          'film': 5,
          'say': 4,
          'get': 4,
          'nazis': 4,
          'even': 4,
          'technology': 3,
          'attempt': 3,
          'nwe': 3,
          'lot': 3,
          'made': 3,
          'like': 3,
          'nhowever': 3,
          'hitler': 3,
          'see': 3,
          'know': 3,
          'much': 3,
          'dont': 3,
          'children': 3,
          'wizards': 2,
          'animated': 2,
          'narration': 2,
          'epic': 2,
          'earth': 2,
          'elves': 2,
          'day': 2,
          'fairy': 2,
          'gives': 2,
          'twins': 2,
          'magic': 2,
          'given': 2,
          'must': 2,
          'occur': 2,
          'forces': 2,
          'still': 2,
          'would': 2,
          'fantasy': 2,
          'world': 2,
          'soon': 2,
          'cartoon': 2,
          'nnot': 2,
          'blackwolf': 2,
          'since': 2,
          'armies': 2,
          'ogres': 2,
          'nokay': 2,
          'real': 2,
          'nthis': 2,
          'well': 2,
          'characters': 2,
          'doesnt': 2,
          'credit': 2,
          'says': 2,
          'final': 2,
          'therefore': 2,
          'obvious': 2,
          'happen': 2,
          'unexpected': 2,
          'disappointing': 2,
          'scene': 2,
          'angle': 2,
          'overly': 2,
          'could': 2,
          'bakshi': 2,
          'nso': 2,
          'already': 2,
          'point': 2,
          'us': 2,
          'footage': 2,
          'feature': 1,
          'begins': 1,
          'proportions': 1,
          'nover': 1,
          'black': 1,
          'white': 1,
          'drawings': 1,
          'told': 1,
          'destroyed': 1,
          'apocalyptic': 1,
          'nuclear': 1,
          'exchange': 1,
          'sending': 1,
          'remnants': 1,
          'humanity': 1,
          'generations': 1,
          'radiationinduced': 1,
          'mutation': 1,
          'original': 1,
          'inhabitants': 1,
          'fairies': 1,
          'return': 1,
          'populate': 1,
          'globe': 1,
          'along': 1,
          'mutant': 1,
          'counterparts': 1,
          'none': 1,
          'trite': 1,
          'thats': 1,
          'exactly': 1,
          'happened': 1,
          'advance': 1,
          'notice': 1,
          'queen': 1,
          'birth': 1,
          'grow': 1,
          'powerful': 1,
          'embracing': 1,
          'utilizing': 1,
          'expand': 1,
          'empire': 1,
          'notion': 1,
          'ultimate': 1,
          'nas': 1,
          'unoriginal': 1,
          'premise': 1,
          'somewhat': 1,
          'interested': 1,
          'story': 1,
          'play': 1,
          'ntheres': 1,
          'ni': 1,
          'learned': 1,
          'however': 1,
          'expectation': 1,
          'decent': 1,
          'nonce': 1,
          'transition': 1,
          'art': 1,
          'color': 1,
          'animation': 1,
          'entirely': 1,
          'different': 1,
          'feel': 1,
          'takes': 1,
          'precedence': 1,
          'nrather': 1,
          'saga': 1,
          'promised': 1,
          'goofylooking': 1,
          'saturday': 1,
          'morning': 1,
          'look': 1,
          'mind': 1,
          'zany': 1,
          'sounds': 1,
          'honk': 1,
          'boing': 1,
          'nfor': 1,
          'years': 1,
          'lost': 1,
          'battles': 1,
          'magical': 1,
          'mutants': 1,
          'dispirited': 1,
          'distracted': 1,
          'joined': 1,
          'secret': 1,
          'weapon': 1,
          'nyup': 1,
          'adolf': 1,
          'luftwaffe': 1,
          'wehrmacht': 1,
          'things': 1,
          'archival': 1,
          'minions': 1,
          'dug': 1,
          'nprojected': 1,
          'sky': 1,
          'inspires': 1,
          'army': 1,
          'shocking': 1,
          'enemy': 1,
          'submission': 1,
          'long': 1,
          'enough': 1,
          'hack': 1,
          'nbefore': 1,
          'dead': 1,
          'everywhere': 1,
          'viewer': 1,
          'care': 1,
          'ntheyre': 1,
          'either': 1,
          'silly': 1,
          'sappy': 1,
          'dialog': 1,
          'gets': 1,
          'nan': 1,
          'example': 1,
          'avatar': 1,
          'nonchalantly': 1,
          'looks': 1,
          'brother': 1,
          'begin': 1,
          'formidable': 1,
          'hes': 1,
          'also': 1,
          'guy': 1,
          'biggest': 1,
          'bummer': 1,
          'trip': 1,
          'ive': 1,
          'ever': 1,
          'nmy': 1,
          'favorite': 1,
          'line': 1,
          'sideline': 1,
          'asked': 1,
          'child': 1,
          'cant': 1,
          'fight': 1,
          'back': 1,
          'nazicharged': 1,
          'nher': 1,
          'response': 1,
          'weapons': 1,
          'love': 1,
          'nsuffice': 1,
          'strictly': 1,
          'twodimensional': 1,
          'expect': 1,
          'anything': 1,
          'nwhich': 1,
          'occurrence': 1,
          'way': 1,
          'brothers': 1,
          'played': 1,
          'anticlimactic': 1,
          'nplease': 1,
          'note': 1,
          'action': 1,
          'nthat': 1,
          'couldnt': 1,
          'settle': 1,
          'particular': 1,
          'mood': 1,
          'nit': 1,
          'seems': 1,
          'move': 1,
          'dark': 1,
          'light': 1,
          'cuts': 1,
          'nscenes': 1,
          'seemingly': 1,
          'meant': 1,
          'contain': 1,
          'deep': 1,
          'meaning': 1,
          'ruined': 1,
          'acts': 1,
          'levity': 1,
          'dramatics': 1,
          'seem': 1,
          'random': 1,
          'staged': 1,
          'acted': 1,
          'detracting': 1,
          'kind': 1,
          'value': 1,
          'enjoyment': 1,
          'otherwise': 1,
          'gleaned': 1,
          'nralph': 1,
          'director': 1,
          'makes': 1,
          'message': 1,
          'across': 1,
          'nwell': 1,
          'maybe': 1,
          'might': 1,
          'movie': 1,
          'nits': 1,
          'nin': 1,
          'scenes': 1,
          'fights': 1,
          'theres': 1,
          'violence': 1,
          'gore': 1,
          'seeing': 1,
          'theyre': 1,
          'watching': 1,
          'adults': 1,
          'nif': 1,
          'probably': 1,
          'need': 1,
          'bashed': 1,
          'head': 1,
          'nwhy': 1,
          'guys': 1,
          'symbolic': 1,
          'instead': 1,
          'using': 1,
          'old': 1,
          'propaganda': 1,
          'seriously': 1,
          'disjointed': 1,
          'show': 1,
          'something': 1,
          'nwizards': 1,
          'nazi': 1,
          'tanks': 1,
          'airplanes': 1,
          'giving': 1,
          'speeches': 1,
          'reason': 1,
          'considered': 1,
          'atrocities': 1,
          'committed': 1,
          'nthere': 1,
          'absolutely': 1,
          'connection': 1,
          'third': 1,
          'reich': 1,
          'cursory': 1,
          'explanation': 1,
          'stuff': 1,
          'inspiring': 1,
          'first': 1,
          'place': 1,
          'needed': 1,
          'thought': 1,
          'thoroughly': 1,
          'subject': 1,
          'matter': 1,
          'deserves': 1,
          'better': 1,
          'treatment': 1,
          'nid': 1,
          'assume': 1,
          'trying': 1,
          'nationalist': 1,
          'movement': 1,
          'drove': 1,
          'anywhere': 1,
          'time': 1,
          'vigilant': 1,
          'im': 1,
          'sure': 1,
          'want': 1,
          'give': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'haunted': 7,
          'hill': 5,
          'price': 5,
          'horror': 5,
          'house': 4,
          'better': 4,
          'movie': 4,
          'former': 3,
          'nthe': 3,
          'bad': 3,
          'entertaining': 3,
          'haunting': 3,
          'cast': 3,
          '1958': 2,
          'starring': 2,
          'vincent': 2,
          'william': 2,
          'geoffrey': 2,
          'rush': 2,
          'chris': 2,
          'kattan': 2,
          '000': 2,
          'sanitarium': 2,
          'night': 2,
          'establishment': 2,
          'sports': 2,
          'sometimes': 2,
          'nit': 2,
          'another': 2,
          'recent': 2,
          'owes': 2,
          'classic': 2,
          'nhouse': 2,
          'ni': 2,
          'camp': 2,
          'spiral': 2,
          'plays': 2,
          'half': 2,
          'two': 2,
          'say': 2,
          'inspired': 1,
          'ndirected': 1,
          'malone': 1,
          'nstarring': 1,
          'famke': 1,
          'janssen': 1,
          'nrated': 1,
          'r': 1,
          'contains': 1,
          'violence': 1,
          'profanity': 1,
          'brief': 1,
          'nudity': 1,
          'nsynopsis': 1,
          'eccentric': 1,
          'millionaire': 1,
          'offers': 1,
          '1': 1,
          'guests': 1,
          'appear': 1,
          'gathering': 1,
          'catch': 1,
          'survive': 1,
          'staff': 1,
          'patients': 1,
          'ncomments': 1,
          'based': 1,
          'upon': 1,
          'original': 1,
          'title': 1,
          'directed': 1,
          'castle': 1,
          'nin': 1,
          'obvious': 1,
          'homage': 1,
          'millionaires': 1,
          'name': 1,
          'thin': 1,
          'mustache': 1,
          'like': 1,
          'used': 1,
          'nthis': 1,
          'pretty': 1,
          'yet': 1,
          'films': 1,
          'surprisingly': 1,
          'remake': 1,
          'basis': 1,
          'novel': 1,
          'shirley': 1,
          'jackson': 1,
          'literary': 1,
          'pretensions': 1,
          'fell': 1,
          'flat': 1,
          'face': 1,
          'lineage': 1,
          'bmovie': 1,
          '40': 1,
          'years': 1,
          'old': 1,
          'makes': 1,
          'illusion': 1,
          'crappy': 1,
          'nthus': 1,
          'somehow': 1,
          'proves': 1,
          'slightly': 1,
          'successful': 1,
          'cant': 1,
          'think': 1,
          'eclectic': 1,
          'lifts': 1,
          'hohum': 1,
          'thriller': 1,
          'borderline': 1,
          'exercise': 1,
          'nprice': 1,
          'main': 1,
          'character': 1,
          'played': 1,
          'academyaward': 1,
          'winning': 1,
          'actor': 1,
          'shine': 1,
          'nrush': 1,
          'seems': 1,
          'making': 1,
          'downward': 1,
          'industry': 1,
          'reminiscent': 1,
          'ben': 1,
          'ghandi': 1,
          'schindlers': 1,
          'list': 1,
          'kingsleys': 1,
          'ridiculous': 1,
          'appearance': 1,
          'scifi': 1,
          'species': 1,
          'dont': 1,
          'know': 1,
          'see': 1,
          'quality': 1,
          'actors': 1,
          'movies': 1,
          'nmore': 1,
          'surprises': 1,
          'nrising': 1,
          'star': 1,
          'taye': 1,
          'diggs': 1,
          'stereotypical': 1,
          'african': 1,
          'american': 1,
          'figure': 1,
          'rather': 1,
          'lamely': 1,
          'singer': 1,
          'lisa': 1,
          'loeb': 1,
          'nappears': 1,
          'tv': 1,
          'news': 1,
          'reporter': 1,
          'highlight': 1,
          'however': 1,
          'saturday': 1,
          'live': 1,
          'member': 1,
          'nkattans': 1,
          'comic': 1,
          'sense': 1,
          'provides': 1,
          'several': 1,
          'good': 1,
          'humorous': 1,
          'moments': 1,
          'hysterical': 1,
          'proprietor': 1,
          'nwhile': 1,
          'first': 1,
          'leaves': 1,
          'audience': 1,
          'guessing': 1,
          'whats': 1,
          'exactly': 1,
          'going': 1,
          'second': 1,
          'dissolves': 1,
          'standard': 1,
          'ghost': 1,
          'story': 1,
          'stuff': 1,
          'loses': 1,
          'suspense': 1,
          'na': 1,
          'disappointingly': 1,
          'cheesy': 1,
          'ending': 1,
          'really': 1,
          'mars': 1,
          'suspect': 1,
          'left': 1,
          'secondrun': 1,
          'theaters': 1,
          'nits': 1,
          'worth': 1,
          'catching': 1,
          'cable': 1,
          'next': 1,
          'year': 1,
          'get': 1,
          'chance': 1,
          'nif': 1,
          'choice': 1,
          'pick': 1,
          'evils': 1,
          'could': 1,
          'nthough': 1,
          'appropriately': 1,
          'perhaps': 1,
          'itd': 1,
          'turkeys': 1,
          'nneg': 1}),
 Counter({'n': 6,
          'sex': 5,
          'morgue': 4,
          'attendant': 3,
          'nthis': 2,
          'film': 2,
          'death': 2,
          'dead': 2,
          'necrophilia': 2,
          'orgies': 2,
          'print': 2,
          '4': 2,
          'gets': 2,
          'teen': 2,
          'life': 2,
          'nhe': 2,
          'part': 2,
          'joins': 2,
          'saved': 2,
          'man': 2,
          'involved': 2,
          'white': 2,
          'often': 2,
          'dont': 2,
          'capsule': 1,
          'liebes': 1,
          'meets': 1,
          'tod': 1,
          'na': 1,
          'accidentally': 1,
          'revives': 1,
          'woman': 1,
          'brings': 1,
          'world': 1,
          'heavy': 1,
          'says': 1,
          'something': 1,
          'obscure': 1,
          'relationship': 1,
          'imparts': 1,
          'insights': 1,
          'nto': 1,
          'make': 1,
          'matter': 1,
          'worse': 1,
          'poorly': 1,
          'subtitled': 1,
          'english': 1,
          'french': 1,
          'n0': 1,
          'attractive': 1,
          '18yearold': 1,
          'dies': 1,
          'disco': 1,
          'floor': 1,
          'sent': 1,
          'none': 1,
          'attendants': 1,
          'ben': 1,
          'jeanmarc': 1,
          'barr': 1,
          'attracted': 1,
          'attempts': 1,
          'nwe': 1,
          'see': 1,
          'crawling': 1,
          'away': 1,
          'shock': 1,
          'nin': 1,
          'middle': 1,
          'come': 1,
          'back': 1,
          'adding': 1,
          'new': 1,
          'form': 1,
          'collection': 1,
          'kinks': 1,
          'already': 1,
          'group': 1,
          'together': 1,
          'sm': 1,
          'nthe': 1,
          'revived': 1,
          'teresa': 1,
          'elodie': 1,
          'bouchez': 1,
          'moral': 1,
          'dilemma': 1,
          'teresas': 1,
          'father': 1,
          'nben': 1,
          'abused': 1,
          'daughters': 1,
          'body': 1,
          'opaque': 1,
          'allegory': 1,
          'suicide': 1,
          'sexual': 1,
          'hijinx': 1,
          'nalso': 1,
          'final': 1,
          'stages': 1,
          'dying': 1,
          'aids': 1,
          'close': 1,
          'friend': 1,
          'get': 1,
          'subtitles': 1,
          'background': 1,
          'making': 1,
          'hard': 1,
          'read': 1,
          'think': 1,
          'whole': 1,
          'lot': 1,
          'meaning': 1,
          'lost': 1,
          'title': 1,
          'means': 1,
          'let': 1,
          'die': 1,
          'sunday': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'little': 6,
          'one': 6,
          'nand': 4,
          'career': 3,
          'director': 3,
          'years': 3,
          'jimmy': 3,
          'basinger': 3,
          'girl': 3,
          'talent': 3,
          'bad': 3,
          'good': 3,
          'pretty': 3,
          'really': 3,
          'films': 3,
          'dont': 3,
          'know': 2,
          'nhe': 2,
          'starts': 2,
          'take': 2,
          'next': 2,
          'year': 2,
          'another': 2,
          'film': 2,
          'five': 2,
          'smits': 2,
          'na': 2,
          'satanic': 2,
          'wants': 2,
          'well': 2,
          'agent': 2,
          'plenty': 2,
          'youve': 2,
          'got': 2,
          'plot': 2,
          'ass': 2,
          'barely': 2,
          'effects': 2,
          'go': 2,
          'around': 2,
          'nthe': 2,
          'character': 2,
          'bonehead': 2,
          'moves': 2,
          'entire': 2,
          'time': 2,
          'figure': 2,
          'even': 2,
          'move': 2,
          'police': 2,
          'would': 2,
          'zero': 2,
          'thrills': 2,
          'drama': 2,
          'worst': 2,
          'officers': 2,
          'thrillers': 2,
          'issues': 1,
          'everyone': 1,
          'audience': 1,
          'comes': 1,
          'laughing': 1,
          'nits': 1,
          'comedy': 1,
          'strange': 1,
          'path': 1,
          'chuck': 1,
          'russell': 1,
          'decent': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          'series': 1,
          'debut': 1,
          'installment': 1,
          'number': 1,
          'three': 1,
          'follows': 1,
          'blob': 1,
          'waits': 1,
          'six': 1,
          'piece': 1,
          'called': 1,
          'mask': 1,
          'starring': 1,
          'jim': 1,
          'carrey': 1,
          'star': 1,
          'vehicle': 1,
          'eraser': 1,
          'two': 1,
          'nso': 1,
          'thought': 1,
          'let': 1,
          'wait': 1,
          'get': 1,
          'weak': 1,
          'script': 1,
          'jammed': 1,
          'cliches': 1,
          'hope': 1,
          'kim': 1,
          'could': 1,
          'pull': 1,
          'ashes': 1,
          'nstrange': 1,
          'dude': 1,
          'crappy': 1,
          'flick': 1,
          'nplot': 1,
          'sixyear': 1,
          'old': 1,
          'believed': 1,
          'kind': 1,
          'mysterious': 1,
          'prophet': 1,
          'sent': 1,
          'god': 1,
          'cult': 1,
          'switch': 1,
          'side': 1,
          'girls': 1,
          'aunt': 1,
          'nsave': 1,
          'damn': 1,
          'devil': 1,
          'worshippers': 1,
          'nenter': 1,
          'occult': 1,
          'expert': 1,
          'bobo': 1,
          'cops': 1,
          'lots': 1,
          'nuns': 1,
          'praying': 1,
          'gist': 1,
          'things': 1,
          'ncritique': 1,
          'holes': 1,
          'size': 1,
          'squeezes': 1,
          'sense': 1,
          'clich': 1,
          'ridden': 1,
          'wasted': 1,
          'cheezy': 1,
          'dialogue': 1,
          'unintentional': 1,
          'laughs': 1,
          'boot': 1,
          'nwhats': 1,
          'nwell': 1,
          'rufus': 1,
          'sewell': 1,
          'fun': 1,
          'watch': 1,
          'head': 1,
          'creepy': 1,
          'runaway': 1,
          'childrens': 1,
          'sheltersatanist': 1,
          'supreme': 1,
          'seriously': 1,
          'wicked': 1,
          'eyes': 1,
          'enough': 1,
          'ham': 1,
          'performance': 1,
          'cheese': 1,
          'lying': 1,
          'also': 1,
          'unfortunately': 1,
          'doesnt': 1,
          'much': 1,
          'believe': 1,
          'actually': 1,
          'enjoying': 1,
          'first': 1,
          'half': 1,
          'hour': 1,
          'promise': 1,
          'protagonist': 1,
          'drown': 1,
          'basis': 1,
          'believability': 1,
          'nfor': 1,
          'reason': 1,
          'takes': 1,
          'anyone': 1,
          'niece': 1,
          'gifted': 1,
          'longer': 1,
          'every': 1,
          'makes': 1,
          'dumb': 1,
          'nadd': 1,
          'force': 1,
          'incompetents': 1,
          'save': 1,
          'whose': 1,
          'advised': 1,
          'playing': 1,
          'exact': 1,
          'cop': 1,
          'nypd': 1,
          'blue': 1,
          'nat': 1,
          'least': 1,
          'change': 1,
          'clothes': 1,
          'scares': 1,
          'less': 1,
          'actual': 1,
          'respected': 1,
          'actors': 1,
          'like': 1,
          'christina': 1,
          'ricci': 1,
          'ian': 1,
          'holm': 1,
          'bit': 1,
          'parts': 1,
          'ndid': 1,
          'owe': 1,
          'favor': 1,
          'something': 1,
          'ntogether': 1,
          'minutes': 1,
          'screen': 1,
          'suppose': 1,
          'riccis': 1,
          'hospital': 1,
          'room': 1,
          'scene': 1,
          'might': 1,
          'worth': 1,
          'look': 1,
          'horndogs': 1,
          'part': 1,
          'hilariously': 1,
          'unbelievable': 1,
          'ending': 1,
          'features': 1,
          'coming': 1,
          'brilliant': 1,
          'idea': 1,
          'sneaking': 1,
          'mans': 1,
          'house': 1,
          'guilty': 1,
          'crime': 1,
          'nuuuhmm': 1,
          'hows': 1,
          'nabout': 1,
          'knocking': 1,
          'door': 1,
          'arresting': 1,
          'sorry': 1,
          'nanyway': 1,
          'usually': 1,
          'inscribe': 1,
          'spoilers': 1,
          'reviews': 1,
          'stupidity': 1,
          'characters': 1,
          'difficult': 1,
          'describe': 1,
          'without': 1,
          'validating': 1,
          'solid': 1,
          'idiotic': 1,
          'proof': 1,
          'lose': 1,
          'acting': 1,
          'hiatus': 1,
          'profession': 1,
          '1997': 1,
          'oscar': 1,
          'win': 1,
          'ndifficult': 1,
          'say': 1,
          'lines': 1,
          'delivered': 1,
          'poorly': 1,
          'neither': 1,
          'way': 1,
          'originality': 1,
          'obvious': 1,
          'computer': 1,
          'entertainment': 1,
          'value': 1,
          'certainly': 1,
          'bestow': 1,
          'honor': 1,
          'movies': 1,
          'summer': 1,
          'upon': 1,
          'nbut': 1,
          'mind': 1,
          'rehashed': 1,
          'gobbledygook': 1,
          'various': 1,
          'kid': 1,
          'based': 1,
          'enjoy': 1,
          'watching': 1,
          'bring': 1,
          'anything': 1,
          'new': 1,
          'table': 1,
          'ndrink': 1,
          'beers': 1,
          'smoke': 1,
          'beans': 1,
          'rent': 1,
          'video': 1,
          'may': 1,
          'funnier': 1,
          'nneg': 1}),
 Counter({'daddy': 5,
          'really': 4,
          'good': 4,
          'koufax': 4,
          'julian': 4,
          'funny': 4,
          'film': 4,
          'sandler': 3,
          'special': 3,
          'money': 3,
          'girlfriend': 3,
          'child': 3,
          'nbig': 3,
          'nthe': 3,
          'make': 2,
          'goes': 2,
          'release': 2,
          'doesnt': 2,
          'lot': 2,
          'big': 2,
          'nits': 2,
          'also': 2,
          'nothing': 2,
          'plays': 2,
          'sonny': 2,
          'new': 2,
          'twins': 2,
          'attempt': 2,
          'wants': 2,
          'keep': 2,
          'isnt': 2,
          'lauren': 2,
          'adams': 2,
          'humour': 2,
          'end': 2,
          'much': 2,
          'better': 2,
          'trash': 2,
          'well': 2,
          'even': 2,
          'adam': 1,
          'vehicles': 1,
          'never': 1,
          'anything': 1,
          'continue': 1,
          'load': 1,
          'nwhich': 1,
          'show': 1,
          'sad': 1,
          'state': 1,
          'cinema': 1,
          'today': 1,
          'nwhile': 1,
          'comedies': 1,
          'like': 1,
          'rushmore': 1,
          'choose': 1,
          'recent': 1,
          'example': 1,
          'gets': 1,
          'limited': 1,
          'got': 1,
          'huge': 1,
          'made': 1,
          'cash': 1,
          'deserve': 1,
          'making': 1,
          'nbut': 1,
          'digress': 1,
          'nsandler': 1,
          'unemployed': 1,
          'yorker': 1,
          'seemingly': 1,
          'low': 1,
          'mental': 1,
          'age': 1,
          'nhis': 1,
          'makes': 1,
          'ultimatum': 1,
          'either': 1,
          'wise': 1,
          'get': 1,
          'responsible': 1,
          'shes': 1,
          'leaving': 1,
          'nby': 1,
          'strange': 1,
          'set': 1,
          'events': 1,
          'ends': 1,
          'played': 1,
          'cole': 1,
          'dylan': 1,
          'sprouse': 1,
          'five': 1,
          'year': 1,
          'old': 1,
          'kid': 1,
          'nafter': 1,
          'failed': 1,
          'impress': 1,
          'decides': 1,
          'nhowever': 1,
          'social': 1,
          'worker': 1,
          'mr': 1,
          'brooks': 1,
          'mostel': 1,
          'finds': 1,
          'real': 1,
          'father': 1,
          'take': 1,
          'back': 1,
          'nkoufax': 1,
          'along': 1,
          'layla': 1,
          'fight': 1,
          'nmany': 1,
          'jokes': 1,
          'revolve': 1,
          'around': 1,
          'toilet': 1,
          'supposedly': 1,
          'meant': 1,
          'find': 1,
          'peeing': 1,
          'wall': 1,
          'ntheres': 1,
          'occasional': 1,
          'one': 1,
          'liner': 1,
          'usually': 1,
          'strangely': 1,
          'delivered': 1,
          'wrong': 1,
          'lose': 1,
          'silly': 1,
          'gags': 1,
          'suddenly': 1,
          'turns': 1,
          'sentimental': 1,
          'bad': 1,
          'hideous': 1,
          'court': 1,
          'scene': 1,
          'useless': 1,
          'unbelievable': 1,
          'helped': 1,
          'soppy': 1,
          'overacting': 1,
          'poor': 1,
          'win': 1,
          'audience': 1,
          'nadam': 1,
          'basically': 1,
          'role': 1,
          'last': 1,
          'films': 1,
          'except': 1,
          'wedding': 1,
          'singer': 1,
          'njoey': 1,
          'deserves': 1,
          'far': 1,
          'nsteve': 1,
          'buscemi': 1,
          'pops': 1,
          'cameo': 1,
          'scenes': 1,
          'pretty': 1,
          'nrob': 1,
          'schneider': 1,
          'crazy': 1,
          'delivery': 1,
          'man': 1,
          'two': 1,
          'play': 1,
          'k': 1,
          'start': 1,
          'rather': 1,
          'becoming': 1,
          'annoying': 1,
          'brattish': 1,
          'halfway': 1,
          'finally': 1,
          'turn': 1,
          'american': 1,
          'wholesome': 1,
          'goodness': 1,
          'tear': 1,
          'juice': 1,
          'turned': 1,
          'high': 1,
          'worth': 1,
          'chuckles': 1,
          'nalthough': 1,
          'actually': 1,
          'put': 1,
          'together': 1,
          'nice': 1,
          'direction': 1,
          'production': 1,
          'design': 1,
          'montages': 1,
          'professionalism': 1,
          'cant': 1,
          'help': 1,
          'fact': 1,
          'script': 1,
          'characters': 1,
          'die': 1,
          'hard': 1,
          'fans': 1,
          'thats': 1,
          'nneg': 1}),
 Counter({'making': 2,
          'film': 2,
          'deserves': 1,
          'recognition': 1,
          'relatively': 1,
          'youthful': 1,
          'critic': 1,
          'feel': 1,
          'extremely': 1,
          'old': 1,
          'crotchety20': 1,
          'ncapsule': 1,
          'review': 1,
          'feelgood': 1,
          'family': 1,
          'entertainment': 1,
          'morphed': 1,
          '90s': 1,
          'hourandahalf': 1,
          'commercial': 1,
          'disguised': 1,
          'unnecessary': 1,
          'remake': 1,
          'defining': 1,
          'image': 1,
          'grown': 1,
          'man': 1,
          'launching': 1,
          'volume': 1,
          'green': 1,
          'protoplasmic': 1,
          'goo': 1,
          'ass': 1,
          'n': 1,
          'rocketman': 1,
          'george': 1,
          'jungle': 1,
          'disney': 1,
          'recently': 1,
          'eclipsed': 1,
          'longtime': 1,
          'champion': 1,
          'troma': 1,
          'studio': 1,
          'likely': 1,
          'include': 1,
          'fart': 1,
          'joke': 1,
          'nas': 1,
          'absentminded': 1,
          'professor': 1,
          'invents': 1,
          'titular': 1,
          'computergenerated': 1,
          'goop': 1,
          'listless': 1,
          'robin': 1,
          'williams': 1,
          'manages': 1,
          'difficult': 1,
          'task': 1,
          'original': 1,
          'lead': 1,
          'fred': 1,
          'macmurray': 1,
          'seem': 1,
          'sprightly': 1,
          'nthe': 1,
          'thing': 1,
          'made': 1,
          'borderline': 1,
          'tolerable': 1,
          'newlyfounded': 1,
          'firm': 1,
          'belief': 1,
          'writerproducer': 1,
          'john': 1,
          'hughes': 1,
          'going': 1,
          'spend': 1,
          'eternal': 1,
          'afterlife': 1,
          'conked': 1,
          'noggin': 1,
          'different': 1,
          'blunt': 1,
          'instruments': 1,
          'hes': 1,
          'used': 1,
          'comedic': 1,
          'effect': 1,
          'films': 1,
          'like': 1,
          'odious': 1,
          'home': 1,
          'alone': 1,
          'series': 1,
          'ntake': 1,
          'kids': 1,
          'see': 1,
          'boogie': 1,
          'nights': 1,
          'instead': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'film': 4,
          'best': 4,
          'movie': 3,
          'jim': 3,
          'phelps': 3,
          'computer': 3,
          'first': 2,
          'going': 2,
          'music': 2,
          'mission': 2,
          'impossible': 2,
          'tv': 2,
          'show': 2,
          'whatsoever': 2,
          'james': 2,
          'bond': 2,
          'depalmas': 2,
          'blow': 2,
          'victim': 2,
          'made': 2,
          'cruise': 2,
          'basically': 2,
          'contrived': 2,
          'sequences': 2,
          'involves': 2,
          'room': 2,
          'much': 2,
          'looks': 2,
          'kills': 1,
          'emilio': 1,
          'estevez': 1,
          'fifteen': 1,
          'minutes': 1,
          'something': 1,
          'nunfortunately': 1,
          'familiar': 1,
          'theme': 1,
          'worthwhile': 1,
          'things': 1,
          'directed': 1,
          'brian': 1,
          'depalma': 1,
          'problem': 1,
          'absolutely': 1,
          'connection': 1,
          'aside': 1,
          'force': 1,
          'whose': 1,
          'deft': 1,
          'teamwork': 1,
          'orchestrated': 1,
          'allowed': 1,
          'counfound': 1,
          'evil': 1,
          'dictators': 1,
          'mythic': 1,
          'banana': 1,
          'republics': 1,
          'inflicting': 1,
          'sordid': 1,
          'schemes': 1,
          'upon': 1,
          'world': 1,
          'nteamwork': 1,
          'key': 1,
          'nthis': 1,
          'set': 1,
          'cross': 1,
          'john': 1,
          'travolta': 1,
          'character': 1,
          'real': 1,
          'imagined': 1,
          'conspiracies': 1,
          'directions': 1,
          'nit': 1,
          'travoltas': 1,
          'vulnerability': 1,
          'exciting': 1,
          'claustrophobic': 1,
          'nin': 1,
          'tom': 1,
          'omniscient': 1,
          'believe': 1,
          'theres': 1,
          'fun': 1,
          'story': 1,
          'gets': 1,
          'full': 1,
          'holes': 1,
          'nthere': 1,
          'two': 1,
          'memorable': 1,
          'one': 1,
          'breaking': 1,
          'kubrickesque': 1,
          'task': 1,
          'could': 1,
          'easier': 1,
          'characters': 1,
          'whit': 1,
          'common': 1,
          'sense': 1,
          'suffice': 1,
          'say': 1,
          'alarm': 1,
          'system': 1,
          'disengaged': 1,
          'operator': 1,
          'second': 1,
          'highspeed': 1,
          'train': 1,
          'helicopter': 1,
          'chunnel': 1,
          'seen': 1,
          'disbelieved': 1,
          'actors': 1,
          'miscast': 1,
          'especially': 1,
          'emannuelle': 1,
          'beart': 1,
          'wife': 1,
          'act': 1,
          'ving': 1,
          'rhames': 1,
          'hacker': 1,
          'lost': 1,
          'embarrased': 1,
          'ntom': 1,
          'jon': 1,
          'voight': 1,
          'like': 1,
          'bobby': 1,
          'brain': 1,
          'heenan': 1,
          'nbrian': 1,
          'career': 1,
          'bafflingly': 1,
          'erratic': 1,
          'nat': 1,
          'beats': 1,
          'hitchcock': 1,
          'game': 1,
          'carrie': 1,
          'body': 1,
          'double': 1,
          'screenplay': 1,
          'partly': 1,
          'written': 1,
          'robert': 1,
          'towne': 1,
          'wrote': 1,
          'scenario': 1,
          'seventies': 1,
          'chinatown': 1,
          'script': 1,
          'perfunctory': 1,
          'terrrible': 1,
          'worst': 1,
          'cinematography': 1,
          'comic': 1,
          'book': 1,
          'redblue': 1,
          'emphasis': 1,
          'nice': 1,
          'look': 1,
          'suspense': 1,
          'telegraphed': 1,
          'even': 1,
          'features': 1,
          'old': 1,
          'killer': 1,
          'talks': 1,
          'shooting': 1,
          'thus': 1,
          'giving': 1,
          'time': 1,
          'think': 1,
          'escape': 1,
          'trick': 1,
          'nplease': 1,
          'dont': 1,
          'spend': 1,
          'money': 1,
          'itll': 1,
          'encourage': 1,
          'hollywood': 1,
          'make': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'game': 6,
          'video': 5,
          'mortal': 5,
          'kombat': 5,
          'players': 4,
          'nbut': 3,
          'first': 3,
          'nand': 3,
          'tries': 3,
          'nthis': 3,
          'little': 3,
          'based': 2,
          'fighter': 2,
          'much': 2,
          'story': 2,
          'lots': 2,
          'fight': 2,
          'scenes': 2,
          'nit': 2,
          'got': 2,
          'forces': 2,
          'outworld': 2,
          'try': 2,
          'earths': 2,
          'nthe': 2,
          'competition': 2,
          'fought': 2,
          'human': 2,
          'outworlds': 2,
          'warriors': 2,
          'impressive': 2,
          'fighters': 2,
          'lord': 2,
          'rayden': 2,
          'liu': 2,
          'kang': 2,
          'princess': 2,
          'kitana': 2,
          'easy': 2,
          'unfortunately': 2,
          'depth': 2,
          'becomes': 2,
          'awkward': 2,
          'nothing': 2,
          'nthey': 2,
          'actually': 2,
          'apparent': 2,
          'example': 2,
          'element': 2,
          'hear': 2,
          'slowly': 2,
          'simulate': 2,
          'infinite': 2,
          'wisdom': 2,
          'inclusion': 2,
          'fans': 2,
          'movies': 1,
          'games': 1,
          'street': 1,
          'mario': 1,
          'bros': 1,
          'never': 1,
          'generated': 1,
          'interest': 1,
          'box': 1,
          'office': 1,
          'came': 1,
          '1995': 1,
          'surprisingly': 1,
          'well': 1,
          'nwith': 1,
          'simple': 1,
          'pulsating': 1,
          'soundtrack': 1,
          'awesomely': 1,
          'choreographed': 1,
          'moved': 1,
          'quickly': 1,
          'displayed': 1,
          'energy': 1,
          'vote': 1,
          'expected': 1,
          'least': 1,
          'havent': 1,
          'opportunity': 1,
          'would': 1,
          'definitely': 1,
          'recommend': 1,
          'see': 1,
          'nin': 1,
          'world': 1,
          'popular': 1,
          'arcade': 1,
          'dark': 1,
          'infiltrate': 1,
          'realm': 1,
          'ulimate': 1,
          'goal': 1,
          'total': 1,
          'conquest': 1,
          'destruction': 1,
          'humanity': 1,
          'refers': 1,
          'mortals': 1,
          'minions': 1,
          'guarantee': 1,
          'safety': 1,
          'another': 1,
          'generation': 1,
          'nmk2': 1,
          'picks': 1,
          'almost': 1,
          'immediately': 1,
          'humans': 1,
          'return': 1,
          'victoriously': 1,
          'ndespite': 1,
          'victory': 1,
          'however': 1,
          'gateway': 1,
          'somehow': 1,
          'opened': 1,
          'continues': 1,
          'quest': 1,
          'conquer': 1,
          'earth': 1,
          'noutworlds': 1,
          'include': 1,
          'collection': 1,
          'including': 1,
          'shao': 1,
          'kahn': 1,
          'mintoro': 1,
          'centaur': 1,
          'sheeva': 1,
          'fourarmed': 1,
          'ogre': 1,
          'sindel': 1,
          'nearths': 1,
          'leadership': 1,
          'benevolent': 1,
          'god': 1,
          'includes': 1,
          'sonya': 1,
          'blade': 1,
          'jax': 1,
          'must': 1,
          'nits': 1,
          'enough': 1,
          'premise': 1,
          'writers': 1,
          'onscreen': 1,
          'version': 1,
          'go': 1,
          'beyond': 1,
          'comic': 1,
          'book': 1,
          'boundaries': 1,
          'adding': 1,
          'conceptualization': 1,
          'selfworth': 1,
          'worst': 1,
          'love': 1,
          'likable': 1,
          'showcasing': 1,
          'martial': 1,
          'arts': 1,
          'fighting': 1,
          'skills': 1,
          'look': 1,
          'extremely': 1,
          'uncomfortable': 1,
          'required': 1,
          'act': 1,
          'embarrassingly': 1,
          'develop': 1,
          'romantic': 1,
          'bond': 1,
          'original': 1,
          'mk': 1,
          'smart': 1,
          'letting': 1,
          'best': 1,
          'spoke': 1,
          'lot': 1,
          'nthus': 1,
          'digest': 1,
          'nhowever': 1,
          'mk2': 1,
          'give': 1,
          'certain': 1,
          'amount': 1,
          'lacking': 1,
          'attempt': 1,
          'fails': 1,
          'miserably': 1,
          'uneasy': 1,
          'feeling': 1,
          'readily': 1,
          'whenever': 1,
          'speak': 1,
          'nnot': 1,
          'talk': 1,
          'riddles': 1,
          'offer': 1,
          'enigmatic': 1,
          'e': 1,
          'g': 1,
          'nuseless': 1,
          'advice': 1,
          'speaks': 1,
          'ntry': 1,
          'reading': 1,
          'half': 1,
          'fast': 1,
          'youll': 1,
          'mean': 1,
          'complete': 1,
          'fatality': 1,
          'nfight': 1,
          'wellchoreographed': 1,
          'highlighted': 1,
          'terrific': 1,
          'acrobatics': 1,
          'agility': 1,
          'rewarded': 1,
          'practically': 1,
          'every': 1,
          'character': 1,
          'although': 1,
          'screen': 1,
          'time': 1,
          'amounts': 1,
          'cameo': 1,
          'neven': 1,
          'youre': 1,
          'familiar': 1,
          'costume': 1,
          'unique': 1,
          'weaponry': 1,
          'easily': 1,
          'differentiate': 1,
          'moviegoers': 1,
          'especially': 1,
          'expect': 1,
          'noddly': 1,
          'pollutes': 1,
          'purity': 1,
          'essence': 1,
          'poor': 1,
          'acting': 1,
          'results': 1,
          'muddled': 1,
          'offers': 1,
          'viewing': 1,
          'audience': 1,
          'chance': 1,
          'survival': 1,
          'n': 1,
          'talking': 1,
          'nrent': 1,
          'one': 1,
          'sequel': 1,
          'nneg': 1}),
 Counter({'west': 14,
          'wild': 8,
          'gordon': 6,
          'n': 5,
          'jim': 4,
          'loveless': 4,
          'rita': 4,
          'first': 4,
          'kline': 3,
          'smith': 3,
          'time': 3,
          'whose': 3,
          'funny': 2,
          'men': 2,
          'black': 2,
          'director': 2,
          'sonnenfeld': 2,
          'answer': 2,
          'back': 2,
          'part': 2,
          'tarantula': 2,
          'waiting': 2,
          'anyone': 2,
          'comic': 2,
          'moment': 2,
          'cool': 2,
          'one': 2,
          'big': 2,
          'nwild': 2,
          'levine': 2,
          'sequence': 2,
          'dont': 1,
          'think': 1,
          'kevin': 1,
          'drag': 1,
          'wait': 1,
          'til': 1,
          'see': 1,
          'dragits': 1,
          'even': 1,
          'less': 1,
          'nby': 1,
          'disguised': 1,
          'belly': 1,
          'dancer': 1,
          'bail': 1,
          'captured': 1,
          'comrade': 1,
          'artemus': 1,
          'clutches': 1,
          'evil': 1,
          'dr': 1,
          'branagh': 1,
          'unequivocally': 1,
          'bored': 1,
          'new': 1,
          'summer': 1,
          'blockbuster': 1,
          'barry': 1,
          'nis': 1,
          'old': 1,
          'really': 1,
          'breeding': 1,
          'ground': 1,
          'high': 1,
          'comedy': 1,
          'anyway': 1,
          'recall': 1,
          'rustlers': 1,
          'rhapsody': 1,
          'future': 1,
          'iii': 1,
          'yes': 1,
          'youre': 1,
          'thinking': 1,
          'blazing': 1,
          'saddles': 1,
          'movie': 1,
          'parody': 1,
          'western': 1,
          'genre': 1,
          'nineteenth': 1,
          'century': 1,
          'romp': 1,
          'n1869': 1,
          'quickdraw': 1,
          'lawman': 1,
          'teams': 1,
          'brainiac': 1,
          'federal': 1,
          'agent': 1,
          'orders': 1,
          'president': 1,
          'grant': 1,
          'impression': 1,
          'know': 1,
          'deadon': 1,
          'apprehend': 1,
          'legless': 1,
          'mad': 1,
          'inventor': 1,
          'plotting': 1,
          'divvy': 1,
          'united': 1,
          'states': 1,
          'sell': 1,
          'britain': 1,
          'spain': 1,
          'nhow': 1,
          'accomplish': 1,
          'nwell': 1,
          'hulking': 1,
          'around': 1,
          'desert': 1,
          'enormous': 1,
          'mechanical': 1,
          'course': 1,
          'nbosomy': 1,
          'dance': 1,
          'hall': 1,
          'girl': 1,
          'escobar': 1,
          'hayek': 1,
          'scientist': 1,
          'father': 1,
          'kidnapped': 1,
          'joins': 1,
          'gadgetfilled': 1,
          'train': 1,
          'discovers': 1,
          'cage': 1,
          'rescued': 1,
          'nracial': 1,
          'politics': 1,
          'obviously': 1,
          'prevented': 1,
          'filmmakers': 1,
          'pairing': 1,
          'dull': 1,
          'romantically': 1,
          'despite': 1,
          'movies': 1,
          'hip': 1,
          'attitude': 1,
          'toward': 1,
          'thing': 1,
          'automatically': 1,
          'shoots': 1,
          'calls': 1,
          'nigger': 1,
          'person': 1,
          'finish': 1,
          'speaking': 1,
          'word': 1,
          'nsuper': 1,
          'nat': 1,
          'rate': 1,
          'kept': 1,
          'say': 1,
          'something': 1,
          'humourous': 1,
          'shes': 1,
          'walking': 1,
          'dressup': 1,
          'toy': 1,
          'single': 1,
          'also': 1,
          'best': 1,
          'shot': 1,
          'film': 1,
          'bashfully': 1,
          'reveals': 1,
          'bare': 1,
          'bumcheeks': 1,
          'peekaboo': 1,
          'flap': 1,
          'pyjamas': 1,
          'njim': 1,
          'role': 1,
          'finally': 1,
          'stymied': 1,
          'timing': 1,
          'always': 1,
          'hit': 1,
          'miss': 1,
          'episodes': 1,
          'fresh': 1,
          'prince': 1,
          'belair': 1,
          'demonstrate': 1,
          'nsmiths': 1,
          'better': 1,
          'reactor': 1,
          'actor': 1,
          'thoroughly': 1,
          'engaging': 1,
          'blackhe': 1,
          'didnt': 1,
          'start': 1,
          'hero': 1,
          'nin': 1,
          'hes': 1,
          'required': 1,
          'exude': 1,
          'eastwood': 1,
          'amuse': 1,
          'frame': 1,
          'difficult': 1,
          'feat': 1,
          'im': 1,
          'sure': 1,
          'living': 1,
          'performer': 1,
          'could': 1,
          'pull': 1,
          'nsmith': 1,
          'ill': 1,
          'equipped': 1,
          'example': 1,
          'handle': 1,
          'performs': 1,
          'standup': 1,
          'rednecks': 1,
          'hanging': 1,
          'nwhat': 1,
          'attracted': 1,
          'material': 1,
          'nthis': 1,
          'isnt': 1,
          'adapted': 1,
          'tv': 1,
          'show': 1,
          'screen': 1,
          'addams': 1,
          'family': 1,
          'stinker': 1,
          'career': 1,
          'poorlypaced': 1,
          'bombast': 1,
          'full': 1,
          'doa': 1,
          'gags': 1,
          'ted': 1,
          'shows': 1,
          'general': 1,
          'uses': 1,
          'gramophone': 1,
          'horn': 1,
          'hearing': 1,
          'aid': 1,
          'played': 1,
          'buffalo': 1,
          'bill': 1,
          'silence': 1,
          'lambshes': 1,
          'intense': 1,
          'get': 1,
          'intentional': 1,
          'laugh': 1,
          'lousy': 1,
          'special': 1,
          'effects': 1,
          'bluescreening': 1,
          'amateurishforegrounds': 1,
          'never': 1,
          'proportionate': 1,
          'backgrounds': 1,
          'frequent': 1,
          'illogic': 1,
          'wit': 1,
          'ridiculous': 1,
          'villain': 1,
          'badly': 1,
          'wants': 1,
          'way': 1,
          'drops': 1,
          'nhim': 1,
          'onto': 1,
          'steel': 1,
          'platform': 1,
          'battle': 1,
          'generic': 1,
          'ugly': 1,
          'henchmen': 1,
          'instead': 1,
          'shooting': 1,
          'point': 1,
          'blank': 1,
          'rage': 1,
          'many': 1,
          'guns': 1,
          'board': 1,
          'wests': 1,
          'bright': 1,
          'spots': 1,
          'opening': 1,
          'credits': 1,
          'bai': 1,
          'lings': 1,
          'alltoobrief': 1,
          'appearance': 1,
          'femme': 1,
          'fatale': 1,
          'brilliant': 1,
          'masters': 1,
          'voice': 1,
          'joke': 1,
          'films': 1,
          'half': 1,
          'clever': 1,
          'enjoyable': 1,
          'least': 1,
          'second': 1,
          'nwhen': 1,
          'towards': 1,
          'seemed': 1,
          'like': 1,
          'end': 1,
          'proposes': 1,
          'idea': 1,
          'building': 1,
          'airplane': 1,
          'rejects': 1,
          'collective': 1,
          'groan': 1,
          'among': 1,
          'audience': 1,
          'members': 1,
          'meant': 1,
          'going': 1,
          'sit': 1,
          'another': 1,
          'loud': 1,
          'action': 1,
          'builds': 1,
          'glider': 1,
          'invention': 1,
          'would': 1,
          'inevitably': 1,
          'lead': 1,
          'proverbial': 1,
          'whizbang': 1,
          'finale': 1,
          'nneg': 1}),
 Counter({'briefcase': 6,
          'nthe': 4,
          'car': 3,
          'get': 3,
          'add': 3,
          'chase': 2,
          'good': 2,
          'action': 2,
          'thriller': 2,
          'film': 2,
          'several': 2,
          'groups': 2,
          'hires': 2,
          'nthey': 2,
          'run': 2,
          'movie': 2,
          'plot': 2,
          'twists': 2,
          'time': 2,
          'cares': 2,
          'long': 2,
          'ever': 1,
          'seen': 1,
          'fox': 1,
          'tvs': 1,
          'special': 1,
          'programs': 1,
          'youll': 1,
          'idea': 1,
          'content': 1,
          'ronin': 1,
          'new': 1,
          'director': 1,
          'john': 1,
          'frankenheimer': 1,
          'involves': 1,
          'mysterious': 1,
          'terrorist': 1,
          'want': 1,
          'hands': 1,
          'nan': 1,
          'irish': 1,
          'women': 1,
          'dierdre': 1,
          'played': 1,
          'truman': 1,
          'shows': 1,
          'natascha': 1,
          'mcelhone': 1,
          'group': 1,
          'mercenaries': 1,
          'assist': 1,
          'getting': 1,
          'namong': 1,
          'people': 1,
          'sam': 1,
          'robert': 1,
          'de': 1,
          'niro': 1,
          'vincent': 1,
          'jean': 1,
          'reno': 1,
          'gregor': 1,
          'stellan': 1,
          'skarsg': 1,
          'rd': 1,
          'hunting': 1,
          'ndierdres': 1,
          'assignment': 1,
          'seize': 1,
          'current': 1,
          'owners': 1,
          'transporting': 1,
          'accomplish': 1,
          'task': 1,
          'traitor': 1,
          'bunch': 1,
          'soon': 1,
          'stays': 1,
          'leads': 1,
          'viewer': 1,
          'badly': 1,
          'executed': 1,
          'writer': 1,
          'seemed': 1,
          'attempting': 1,
          'make': 1,
          'smart': 1,
          'failed': 1,
          'understand': 1,
          'surprises': 1,
          'doesnt': 1,
          'credibility': 1,
          'senseless': 1,
          'script': 1,
          'reaction': 1,
          'come': 1,
          'one': 1,
          'going': 1,
          'apparent': 1,
          'climax': 1,
          'nbut': 1,
          'excitement': 1,
          'mentioned': 1,
          'earlier': 1,
          'endless': 1,
          'scenes': 1,
          'unrealistic': 1,
          'fail': 1,
          'anything': 1,
          'story': 1,
          'ndont': 1,
          'wrong': 1,
          'love': 1,
          'chases': 1,
          'overdone': 1,
          'nwe': 1,
          'never': 1,
          'find': 1,
          'whats': 1,
          'doubt': 1,
          'anyone': 1,
          'finish': 1,
          'sitting': 1,
          'two': 1,
          'hour': 1,
          'attempted': 1,
          'nneg': 1}),
 Counter({'wild': 10,
          'west': 6,
          'story': 6,
          'movie': 5,
          'nif': 5,
          'hes': 5,
          'better': 4,
          'smith': 4,
          'men': 3,
          'black': 3,
          'one': 3,
          'racist': 3,
          'sex': 3,
          'jokes': 3,
          'even': 3,
          'time': 3,
          'good': 3,
          'bother': 3,
          'nwild': 2,
          'name': 2,
          'bros': 2,
          'get': 2,
          'big': 2,
          'barry': 2,
          'sonnenfeld': 2,
          'bigscreen': 2,
          'robert': 2,
          'conrad': 2,
          'nbut': 2,
          'somehow': 2,
          'along': 2,
          'way': 2,
          'nthey': 2,
          'wouldve': 2,
          'made': 2,
          'script': 2,
          'times': 2,
          'nas': 2,
          'mess': 2,
          'complete': 2,
          'tv': 2,
          'show': 2,
          'gordon': 2,
          'kline': 2,
          'villain': 2,
          'involving': 2,
          'although': 2,
          'acting': 2,
          'doesnt': 2,
          'help': 2,
          'either': 2,
          'seems': 2,
          'point': 2,
          'mostly': 2,
          'isnt': 2,
          'creativity': 2,
          'directing': 2,
          'nlast': 2,
          'least': 2,
          'huge': 2,
          'logic': 2,
          'train': 2,
          'back': 2,
          'still': 2,
          'kissing': 2,
          'looking': 2,
          'nthe': 2,
          'ntheres': 2,
          'ni': 2,
          'dont': 2,
          'performances': 2,
          'happy': 1,
          'bastards': 1,
          'quick': 1,
          'review': 1,
          'na': 1,
          'mightve': 1,
          'waste': 1,
          'nwarner': 1,
          'attempt': 1,
          'style': 1,
          'managed': 1,
          'lasso': 1,
          'names': 1,
          'actor': 1,
          'director': 1,
          'duo': 1,
          'behind': 1,
          'mibs': 1,
          'success': 1,
          'order': 1,
          'fourth': 1,
          'july': 1,
          'blockbuster': 1,
          'contemporary': 1,
          'update': 1,
          'classic': 1,
          'westernscifi': 1,
          'series': 1,
          'starring': 1,
          'ran': 1,
          'problem': 1,
          'busy': 1,
          'trying': 1,
          'fill': 1,
          'specific': 1,
          'roles': 1,
          'forgot': 1,
          'general': 1,
          'difference': 1,
          'writer': 1,
          'wests': 1,
          'compiled': 1,
          'six': 1,
          'different': 1,
          'people': 1,
          'rather': 1,
          'put': 1,
          'brilliant': 1,
          'touches': 1,
          'ed': 1,
          'solomon': 1,
          'warner': 1,
          'gotten': 1,
          'possibly': 1,
          'five': 1,
          'nheck': 1,
          'ten': 1,
          'however': 1,
          'screenplay': 1,
          'filled': 1,
          'dead': 1,
          'laughs': 1,
          'enough': 1,
          'make': 1,
          'cringe': 1,
          'performing': 1,
          'lack': 1,
          'chemistry': 1,
          'work': 1,
          'well': 1,
          'nheres': 1,
          'us': 1,
          'army': 1,
          'member': 1,
          'james': 1,
          'teams': 1,
          'creative': 1,
          'genius': 1,
          'artemus': 1,
          'kevin': 1,
          'take': 1,
          'ruthless': 1,
          'arliss': 1,
          'loveless': 1,
          'kenneth': 1,
          'branagh': 1,
          'whose': 1,
          'lower': 1,
          'half': 1,
          'blown': 1,
          'civil': 1,
          'war': 1,
          'leaving': 1,
          'roll': 1,
          'around': 1,
          'steamcontrolled': 1,
          'wheelchair': 1,
          'catch': 1,
          'onto': 1,
          'plot': 1,
          'superweapon': 1,
          'basically': 1,
          'considered': 1,
          '80foot': 1,
          'tarantula': 1,
          'looks': 1,
          'bigger': 1,
          'hellbent': 1,
          'destroying': 1,
          'anything': 1,
          'path': 1,
          'said': 1,
          'unfolds': 1,
          'nkevin': 1,
          'miserable': 1,
          'failing': 1,
          'display': 1,
          'smidgeon': 1,
          'care': 1,
          '1985': 1,
          'western': 1,
          'silverado': 1,
          'nsmith': 1,
          'nearly': 1,
          'charming': 1,
          'mib': 1,
          'nbranagh': 1,
          'goes': 1,
          'excessively': 1,
          'top': 1,
          'perhaps': 1,
          'cant': 1,
          'stand': 1,
          'look': 1,
          'strange': 1,
          'beard': 1,
          'nand': 1,
          'salma': 1,
          'hayek': 1,
          'ride': 1,
          'search': 1,
          'missing': 1,
          'father': 1,
          'exists': 1,
          'sexual': 1,
          'attention': 1,
          'nher': 1,
          'barely': 1,
          'passable': 1,
          'breath': 1,
          'fresh': 1,
          'ass': 1,
          'ndirector': 1,
          'great': 1,
          'neven': 1,
          'though': 1,
          'shows': 1,
          'points': 1,
          'overall': 1,
          'urgency': 1,
          'lost': 1,
          'nits': 1,
          'feels': 1,
          'nono': 1,
          'youre': 1,
          'helming': 1,
          'whats': 1,
          'supposed': 1,
          'hit': 1,
          'gaps': 1,
          'plain': 1,
          'unacceptable': 1,
          'nat': 1,
          'defies': 1,
          'gravity': 1,
          'first': 1,
          'boarding': 1,
          'klines': 1,
          'nhe': 1,
          'jumps': 1,
          'gets': 1,
          'launched': 1,
          'straight': 1,
          'air': 1,
          'manages': 1,
          'land': 1,
          'three': 1,
          'cars': 1,
          'ahead': 1,
          'motion': 1,
          'nalso': 1,
          'strangely': 1,
          'comfortable': 1,
          'talking': 1,
          'racism': 1,
          'front': 1,
          'lynch': 1,
          'mob': 1,
          'particularly': 1,
          'considering': 1,
          'fact': 1,
          'family': 1,
          'killed': 1,
          'likes': 1,
          'folks': 1,
          'making': 1,
          'faces': 1,
          'knows': 1,
          'woman': 1,
          'peephole': 1,
          'enemy': 1,
          'saving': 1,
          'grace': 1,
          'come': 1,
          'form': 1,
          'special': 1,
          'effects': 1,
          'mechanical': 1,
          'spider': 1,
          'technical': 1,
          'marvel': 1,
          'authentic': 1,
          'considerable': 1,
          'also': 1,
          'sequence': 1,
          'metal': 1,
          'magnet': 1,
          'neckbraces': 1,
          'spinning': 1,
          'saw': 1,
          'blades': 1,
          'question': 1,
          'comes': 1,
          'play': 1,
          'regarding': 1,
          'polarity': 1,
          'would': 1,
          'say': 1,
          'sit': 1,
          'really': 1,
          'possible': 1,
          'end': 1,
          'vicious': 1,
          'circle': 1,
          'ngo': 1,
          'rent': 1,
          'instead': 1,
          'pretend': 1,
          'tommy': 1,
          'lee': 1,
          'jones': 1,
          'wearing': 1,
          'cowboy': 1,
          'hats': 1,
          'nyoull': 1,
          'go': 1,
          'keep': 1,
          'eye': 1,
          'role': 1,
          'president': 1,
          'grant': 1,
          'bet': 1,
          'wishes': 1,
          'somewhere': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'nthe': 7,
          'todd': 6,
          'soldiers': 4,
          'find': 4,
          'much': 4,
          'dont': 4,
          'new': 4,
          'years': 4,
          'old': 3,
          'michael': 3,
          'redman': 3,
          'lovers': 3,
          'around': 3,
          'anything': 3,
          'battle': 3,
          'world': 3,
          'space': 3,
          'isnt': 3,
          'would': 3,
          'blade': 3,
          'runner': 3,
          'never': 2,
          'warrior': 2,
          'two': 2,
          'difficult': 2,
          'need': 2,
          'everything': 2,
          'hat': 2,
          'last': 2,
          'energy': 2,
          'nthey': 2,
          'care': 2,
          'know': 2,
          'live': 2,
          'ntodd': 2,
          'living': 2,
          'nhe': 2,
          'question': 2,
          'na': 2,
          'hes': 2,
          'best': 2,
          'caine': 2,
          'jason': 2,
          'trash': 2,
          'garbage': 2,
          'still': 2,
          'finds': 2,
          'back': 2,
          'get': 2,
          'good': 2,
          'look': 2,
          'human': 2,
          'role': 2,
          'played': 2,
          'mostly': 2,
          'slow': 2,
          'motion': 2,
          'even': 2,
          'films': 2,
          'science': 2,
          'made': 2,
          'takes': 2,
          'place': 2,
          'time': 2,
          'nthere': 2,
          'first': 2,
          'sees': 2,
          'doesnt': 2,
          'work': 2,
          'comes': 2,
          'real': 2,
          'shane': 2,
          'movie': 2,
          'occasionally': 2,
          'like': 2,
          'die': 1,
          'turn': 1,
          'cliches': 1,
          'nsoldier': 1,
          'review': 1,
          'copyright': 1,
          '1998': 1,
          'lover': 1,
          'personality': 1,
          'aspects': 1,
          'exist': 1,
          'body': 1,
          'njungian': 1,
          'archetypes': 1,
          'opposites': 1,
          'create': 1,
          'whole': 1,
          'integrate': 1,
          'noften': 1,
          'well': 1,
          'encounter': 1,
          'think': 1,
          'wonderful': 1,
          'help': 1,
          'jungs': 1,
          'magician': 1,
          'sit': 1,
          'imagining': 1,
          'grand': 1,
          'schemes': 1,
          'nwithout': 1,
          'drive': 1,
          'manifest': 1,
          'plans': 1,
          'less': 1,
          'wisdom': 1,
          'recognize': 1,
          'darkness': 1,
          'dreams': 1,
          'nwarriors': 1,
          'hand': 1,
          'ready': 1,
          'go': 1,
          'war': 1,
          'drop': 1,
          'combat': 1,
          'every': 1,
          'bit': 1,
          'enough': 1,
          'whats': 1,
          'worth': 1,
          'fighting': 1,
          'gladiators': 1,
          'nthis': 1,
          'dichotomy': 1,
          'describes': 1,
          'individuals': 1,
          'also': 1,
          'illustrate': 1,
          'societies': 1,
          'namerica': 1,
          'late': 1,
          'sixties': 1,
          'conflict': 1,
          'style': 1,
          'cold': 1,
          'warriors': 1,
          'hippie': 1,
          '3465': 1,
          'kurt': 1,
          'russell': 1,
          'breathing': 1,
          'archetype': 1,
          'nchosen': 1,
          'birth': 1,
          'soldier': 1,
          'raised': 1,
          'government': 1,
          'killing': 1,
          'machine': 1,
          'nhis': 1,
          'childhood': 1,
          'cruelty': 1,
          'competition': 1,
          'indoctrinated': 1,
          'big': 1,
          'rules': 1,
          'nnever': 1,
          'authority': 1,
          'nwinning': 1,
          'nstrength': 1,
          'beats': 1,
          'knowledge': 1,
          'veteran': 1,
          'numerous': 1,
          'intergalactic': 1,
          'wars': 1,
          '40': 1,
          'obsolete': 1,
          'generation': 1,
          'genetically': 1,
          'engineered': 1,
          'faster': 1,
          'stronger': 1,
          'nleft': 1,
          'dead': 1,
          'test': 1,
          'killers': 1,
          '607': 1,
          'scott': 1,
          'lee': 1,
          'unceremoniously': 1,
          'dumped': 1,
          'arcadia': 1,
          '234': 1,
          'nobviously': 1,
          'hero': 1,
          'alive': 1,
          'group': 1,
          'shipwrecked': 1,
          'settlers': 1,
          'abandoned': 1,
          'planet': 1,
          'nurse': 1,
          'health': 1,
          'nwhen': 1,
          'peaceloving': 1,
          'colonists': 1,
          'afraid': 1,
          'exiled': 1,
          'amid': 1,
          'junk': 1,
          'environmentally': 1,
          'hostile': 1,
          'guys': 1,
          'nthese': 1,
          'military': 1,
          'coincidentally': 1,
          'chooses': 1,
          'conduct': 1,
          'exercises': 1,
          'improved': 1,
          'weapons': 1,
          'protector': 1,
          'nwhat': 1,
          'could': 1,
          'fascinating': 1,
          'roles': 1,
          'culture': 1,
          'fears': 1,
          'ultraright': 1,
          'wing': 1,
          'future': 1,
          'ruined': 1,
          'turning': 1,
          'cartoon': 1,
          'effects': 1,
          'secondrate': 1,
          'explosions': 1,
          'jerky': 1,
          'plot': 1,
          'nwe': 1,
          'glimpse': 1,
          'society': 1,
          'created': 1,
          'nhardly': 1,
          'makes': 1,
          'sense': 1,
          'fares': 1,
          'badly': 1,
          'nwith': 1,
          'remarkable': 1,
          'advances': 1,
          'weve': 1,
          '37': 1,
          '2036': 1,
          'stupid': 1,
          'nafter': 1,
          'conquering': 1,
          'stars': 1,
          'reason': 1,
          'use': 1,
          'vast': 1,
          'amounts': 1,
          'load': 1,
          'huge': 1,
          'ships': 1,
          'rubbish': 1,
          'tote': 1,
          'landfill': 1,
          'light': 1,
          'away': 1,
          'neven': 1,
          'stranger': 1,
          'barges': 1,
          'appear': 1,
          'double': 1,
          'machines': 1,
          'nvirtually': 1,
          'vintage': 1,
          '1960': 1,
          'nothing': 1,
          'story': 1,
          'predictable': 1,
          'thing': 1,
          'coming': 1,
          'life': 1,
          'sandra': 1,
          'connie': 1,
          'nielsen': 1,
          'woman': 1,
          'little': 1,
          'beautiful': 1,
          'harsh': 1,
          'conditions': 1,
          'taking': 1,
          'nit': 1,
          'take': 1,
          'genius': 1,
          'foresee': 1,
          'husband': 1,
          'going': 1,
          'longer': 1,
          'nis': 1,
          'shock': 1,
          'climax': 1,
          'unarmed': 1,
          'nwho': 1,
          'guess': 1,
          'wins': 1,
          'nsome': 1,
          'scenes': 1,
          'comedy': 1,
          'ntodds': 1,
          'awakening': 1,
          'emotion': 1,
          'glimpses': 1,
          'connies': 1,
          'nipple': 1,
          'poking': 1,
          'thin': 1,
          'blouse': 1,
          'nlater': 1,
          'sits': 1,
          'lonely': 1,
          'campfire': 1,
          'tear': 1,
          'rolls': 1,
          'dramatically': 1,
          'lighted': 1,
          'cheek': 1,
          'nsupposedly': 1,
          'clich': 1,
          'meant': 1,
          'humorous': 1,
          'ndastardly': 1,
          'col': 1,
          'mekum': 1,
          'isaacs': 1,
          'pencilthin': 1,
          'mustache': 1,
          'snidley': 1,
          'whiplash': 1,
          'nresponsible': 1,
          'quirky': 1,
          'visually': 1,
          'enticing': 1,
          'problematic': 1,
          'fifth': 1,
          'element': 1,
          'director': 1,
          'paul': 1,
          'anderson': 1,
          'outer': 1,
          'nmaybe': 1,
          'sylvester': 1,
          'stallone': 1,
          'rambo': 1,
          'mode': 1,
          'action': 1,
          'outcome': 1,
          'nsomehow': 1,
          'superior': 1,
          'prove': 1,
          'match': 1,
          'acting': 1,
          'write': 1,
          'home': 1,
          'nnielsen': 1,
          'almost': 1,
          'across': 1,
          'person': 1,
          'soon': 1,
          'relegated': 1,
          'background': 1,
          'victim': 1,
          'nrussell': 1,
          'buffedup': 1,
          'credible': 1,
          'job': 1,
          'challenge': 1,
          'nuttering': 1,
          '100': 1,
          'words': 1,
          'hit': 1,
          'things': 1,
          'stare': 1,
          'grimly': 1,
          'ngary': 1,
          'busey': 1,
          'todds': 1,
          'commanding': 1,
          'officer': 1,
          'completely': 1,
          'wasted': 1,
          'lowkey': 1,
          'neverything': 1,
          'blows': 1,
          'looks': 1,
          'cool': 1,
          'nsometimes': 1,
          'sets': 1,
          'impressive': 1,
          'nunfortunately': 1,
          'sometimes': 1,
          'make': 1,
          'nmost': 1,
          'disappointing': 1,
          'screenplay': 1,
          'david': 1,
          'webb': 1,
          'peoples': 1,
          'wrote': 1,
          'possibly': 1,
          'fiction': 1,
          'ever': 1,
          'nsharpeyed': 1,
          'viewers': 1,
          'notice': 1,
          'obscure': 1,
          'references': 1,
          'npeoples': 1,
          'says': 1,
          'sequel': 1,
          'sidequel': 1,
          'universe': 1,
          'nalthough': 1,
          'may': 1,
          'intent': 1,
          'original': 1,
          'script': 1,
          'result': 1,
          'bad': 1,
          'television': 1,
          'series': 1,
          'replicants': 1,
          'watch': 1,
          'pass': 1,
          'nperhaps': 1,
          'artificial': 1,
          'humans': 1,
          'entertaining': 1,
          'n': 1,
          'written': 1,
          'column': 1,
          '23': 1,
          'wants': 1,
          'wish': 1,
          'everyone': 1,
          'appropriate': 1,
          'halloween': 1,
          'whatever': 1,
          'nyoud': 1,
          'nneg': 1}),
 Counter({'bad': 5,
          'movie': 5,
          'nthe': 5,
          'bmovie': 4,
          'one': 4,
          'slugs': 4,
          'story': 4,
          'really': 3,
          'nit': 3,
          'horror': 3,
          'movies': 3,
          'nthat': 2,
          'isnt': 2,
          'good': 2,
          'two': 2,
          'university': 2,
          'students': 2,
          'requisite': 2,
          'jill': 2,
          'whitlow': 2,
          'make': 2,
          'much': 2,
          'nyou': 2,
          'homicide': 1,
          'prophetic': 1,
          'question': 1,
          'asked': 1,
          'leads': 1,
          'early': 1,
          'scenes': 1,
          'nlet': 1,
          'clear': 1,
          'things': 1,
          'cupcake': 1,
          'nso': 1,
          'almost': 1,
          'nalmost': 1,
          'quite': 1,
          'starts': 1,
          '1950s': 1,
          'space': 1,
          'aliens': 1,
          'sending': 1,
          'botched': 1,
          'experiment': 1,
          'earth': 1,
          'bunch': 1,
          'sluglike': 1,
          'creatures': 1,
          'kill': 1,
          'people': 1,
          'take': 1,
          'bodies': 1,
          'first': 1,
          'victim': 1,
          'fifties': 1,
          'cryogenically': 1,
          'frozen': 1,
          'danger': 1,
          'anybody': 1,
          'loser': 1,
          'unfreeze': 1,
          '1986': 1,
          'nhe': 1,
          'inside': 1,
          'promptly': 1,
          'begin': 1,
          'wreaking': 1,
          'havoc': 1,
          'turning': 1,
          'coeds': 1,
          'slug': 1,
          'zombies': 1,
          'na': 1,
          'slightly': 1,
          'crazed': 1,
          'cop': 1,
          'tom': 1,
          'atkins': 1,
          'girl': 1,
          'face': 1,
          'angel': 1,
          'join': 1,
          'geeky': 1,
          'jason': 1,
          'lively': 1,
          'steve': 1,
          'marshall': 1,
          'battle': 1,
          'less': 1,
          'falls': 1,
          'four': 1,
          'world': 1,
          'safe': 1,
          'evil': 1,
          'acting': 1,
          'capital': 1,
          'b': 1,
          'worse': 1,
          'nand': 1,
          'special': 1,
          'effects': 1,
          'somewhere': 1,
          'old': 1,
          'rerun': 1,
          'star': 1,
          'trek': 1,
          'see': 1,
          'home': 1,
          'saving': 1,
          'grace': 1,
          'titshot': 1,
          'courtesy': 1,
          'absolutely': 1,
          'nothing': 1,
          'liked': 1,
          'nactually': 1,
          'high': 1,
          'point': 1,
          'nof': 1,
          'course': 1,
          'saying': 1,
          'moves': 1,
          'around': 1,
          'hap': 1,
          'hazard': 1,
          'fashion': 1,
          'nwhich': 1,
          'gives': 1,
          'leg': 1,
          'films': 1,
          'nunlike': 1,
          'genre': 1,
          'actually': 1,
          'nnot': 1,
          'great': 1,
          'nthis': 1,
          'long': 1,
          'line': 1,
          '1980s': 1,
          'thrown': 1,
          'together': 1,
          'capitalize': 1,
          'success': 1,
          'friday': 1,
          '13th': 1,
          'halloween': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          'could': 1,
          'randomly': 1,
          'select': 1,
          'section': 1,
          'local': 1,
          'video': 1,
          'store': 1,
          'probably': 1,
          'luck': 1,
          'something': 1,
          'better': 1,
          'nbut': 1,
          'night': 1,
          'creeps': 1,
          'might': 1,
          'nice': 1,
          'addition': 1,
          'marathon': 1,
          'njust': 1,
          'dont': 1,
          'upset': 1,
          'cant': 1,
          'find': 1,
          'wont': 1,
          'missing': 1,
          'nneg': 1}),
 Counter({'jawbreaker': 7,
          'scene': 3,
          'even': 3,
          'n': 3,
          'one': 3,
          'film': 3,
          'anything': 3,
          'role': 3,
          'funny': 2,
          'nnot': 2,
          'content': 2,
          'rest': 2,
          'eyes': 2,
          'yet': 2,
          'another': 2,
          'acting': 2,
          'obviously': 2,
          'stein': 2,
          'quite': 2,
          'worst': 2,
          'ive': 2,
          'garbage': 2,
          'theres': 1,
          'early': 1,
          'character': 1,
          'utters': 1,
          'unintentionally': 1,
          'prophetic': 1,
          'line': 1,
          'nhow': 1,
          'right': 1,
          'nthis': 1,
          'pathetic': 1,
          'tale': 1,
          'three': 1,
          'highschoolers': 1,
          'accidentally': 1,
          'kill': 1,
          'best': 1,
          'friend': 1,
          'birthday': 1,
          'kidnapping': 1,
          'prank': 1,
          'gone': 1,
          'horribly': 1,
          'awry': 1,
          'never': 1,
          'remotely': 1,
          'fun': 1,
          'original': 1,
          'tooobvious': 1,
          'heathers': 1,
          'heisting': 1,
          'filmmakers': 1,
          'proceed': 1,
          'lift': 1,
          'freely': 1,
          'staggering': 1,
          'variety': 1,
          'sources': 1,
          'including': 1,
          'carrie': 1,
          'bride': 1,
          'frankenstein': 1,
          'blue': 1,
          'velvet': 1,
          'shaws': 1,
          'pygmalion': 1,
          'recently': 1,
          'remade': 1,
          'shes': 1,
          'pastiche': 1,
          'enjoyable': 1,
          'ni': 1,
          'find': 1,
          'extremely': 1,
          'telling': 1,
          'engaging': 1,
          'part': 1,
          'credit': 1,
          'sequence': 1,
          'factory': 1,
          'montage': 1,
          'inexplicably': 1,
          'backed': 1,
          'veruca': 1,
          'salts': 1,
          'volcano': 1,
          'girls': 1,
          'serving': 1,
          'blueprint': 1,
          'song': 1,
          'absolutely': 1,
          'nothing': 1,
          'footage': 1,
          'watching': 1,
          'njust': 1,
          'close': 1,
          'pretend': 1,
          'youre': 1,
          'listening': 1,
          'altrock': 1,
          'station': 1,
          'wont': 1,
          'missing': 1,
          'nthe': 1,
          'blame': 1,
          'mess': 1,
          'big': 1,
          'spread': 1,
          'around': 1,
          'among': 1,
          'principals': 1,
          'nrebecca': 1,
          'gayheart': 1,
          'following': 1,
          'roles': 1,
          'scream': 1,
          '2': 1,
          'urban': 1,
          'legend': 1,
          'known': 1,
          'better': 1,
          'take': 1,
          'teen': 1,
          'body': 1,
          'count': 1,
          'movie': 1,
          'npam': 1,
          'grier': 1,
          'totally': 1,
          'wasted': 1,
          'credibility': 1,
          'might': 1,
          'gotten': 1,
          'quentin': 1,
          'tarantinos': 1,
          'jackie': 1,
          'brown': 1,
          'nand': 1,
          'rose': 1,
          'mcgowan': 1,
          'quit': 1,
          'nshe': 1,
          'charisma': 1,
          'presence': 1,
          'skills': 1,
          'rolling': 1,
          'looking': 1,
          'disaffected': 1,
          'nmcgowan': 1,
          'manages': 1,
          'upstaged': 1,
          'reallife': 1,
          'boyfriend': 1,
          'rocker': 1,
          'marilyn': 1,
          'manson': 1,
          'whose': 1,
          'fifteen': 1,
          'second': 1,
          'far': 1,
          'interesting': 1,
          'real': 1,
          'actors': 1,
          'nmanson': 1,
          'sans': 1,
          'trademark': 1,
          'makeup': 1,
          'contact': 1,
          'lenses': 1,
          'fake': 1,
          'moustache': 1,
          'looks': 1,
          'eerily': 1,
          'like': 1,
          'nicholas': 1,
          'cage': 1,
          'woulda': 1,
          'thunk': 1,
          'nthat': 1,
          'crack': 1,
          'direction': 1,
          'committee': 1,
          'wasnt': 1,
          'merely': 1,
          'pithy': 1,
          'soundbite': 1,
          'nstylistically': 1,
          'thematically': 1,
          'narratively': 1,
          'map': 1,
          'varying': 1,
          'wildly': 1,
          'tone': 1,
          'nthough': 1,
          'credited': 1,
          'solely': 1,
          'writerdirector': 1,
          'darren': 1,
          'gets': 1,
          'feeling': 1,
          'two': 1,
          'scenes': 1,
          'actually': 1,
          'guided': 1,
          'hands': 1,
          'nif': 1,
          'indeed': 1,
          'responsible': 1,
          'whole': 1,
          'atrocity': 1,
          'someone': 1,
          'needs': 1,
          'get': 1,
          'man': 1,
          'drugs': 1,
          'pronto': 1,
          'nprozac': 1,
          'lithium': 1,
          'kava': 1,
          'ritalin': 1,
          'something': 1,
          'nhes': 1,
          'desperate': 1,
          'need': 1,
          'chemical': 1,
          'help': 1,
          'monumental': 1,
          'waste': 1,
          'effort': 1,
          'resources': 1,
          'likely': 1,
          'single': 1,
          'films': 1,
          'ever': 1,
          'seen': 1,
          'nto': 1,
          'call': 1,
          'would': 1,
          'insult': 1,
          'nbad': 1,
          'flicks': 1,
          'year': 1,
          'safe': 1,
          'already': 1,
          'got': 1,
          'pick': 1,
          '99': 1,
          'runs': 1,
          'approximately': 1,
          '90': 1,
          'minutes': 1,
          'though': 1,
          'feels': 1,
          'longer': 1,
          'titanic': 1,
          'rated': 1,
          'r': 1,
          'language': 1,
          'sexual': 1,
          'situations': 1,
          'graphic': 1,
          'violence': 1,
          'recommended': 1,
          'kids': 1,
          'teens': 1,
          'anyone': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'like': 4,
          'mia': 4,
          'baby': 3,
          'seems': 3,
          'neighbors': 3,
          'movie': 3,
          'film': 2,
          'time': 2,
          'boring': 2,
          'laughable': 2,
          'n': 2,
          'bad': 2,
          'past': 2,
          'nrosemarys': 2,
          'john': 2,
          'evil': 2,
          'nit': 2,
          'room': 2,
          'finds': 2,
          'nthe': 2,
          'whos': 2,
          'long': 2,
          'way': 2,
          'say': 1,
          'dated': 1,
          'nyou': 1,
          'youve': 1,
          'seen': 1,
          'rosemarys': 1,
          'exorcist': 1,
          'thrilling': 1,
          'horror': 1,
          'decades': 1,
          'passed': 1,
          'since': 1,
          'original': 1,
          'release': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000': 1,
          'skewered': 1,
          'films': 1,
          'let': 1,
          'tell': 1,
          'could': 1,
          'number': 1,
          'good': 1,
          'ones': 1,
          'stars': 1,
          'farrow': 1,
          'actually': 1,
          'goodlooking': 1,
          'innocent': 1,
          'housewife': 1,
          'notsoinnocent': 1,
          'husband': 1,
          'cassavettes': 1,
          'actor': 1,
          'takes': 1,
          'easy': 1,
          'albeit': 1,
          'road': 1,
          'success': 1,
          'harmless': 1,
          'beginning': 1,
          'nmia': 1,
          'move': 1,
          'apartment': 1,
          'several': 1,
          'murders': 1,
          'committed': 1,
          'theres': 1,
          'also': 1,
          'skull': 1,
          'living': 1,
          'decoration': 1,
          'ntheir': 1,
          'elderly': 1,
          'pop': 1,
          'housewarming': 1,
          'nalls': 1,
          'well': 1,
          'first': 1,
          'hour': 1,
          'slowmoving': 1,
          'eats': 1,
          'chocolate': 1,
          'mousse': 1,
          'passes': 1,
          'nwhen': 1,
          'comes': 1,
          'darkened': 1,
          'bunch': 1,
          'people': 1,
          'yelling': 1,
          'dancing': 1,
          'savages': 1,
          'big': 1,
          'man': 1,
          'raping': 1,
          'foreshadowing': 1,
          'future': 1,
          'life': 1,
          'woody': 1,
          'allen': 1,
          'dream': 1,
          'pregnant': 1,
          'almost': 1,
          'forgets': 1,
          'nand': 1,
          'everyones': 1,
          'helping': 1,
          'pregnancy': 1,
          'wonderful': 1,
          'vitamin': 1,
          'potions': 1,
          'drink': 1,
          'goodluck': 1,
          'charm': 1,
          'wear': 1,
          'around': 1,
          'neck': 1,
          'name': 1,
          'obstetrician': 1,
          'business': 1,
          '66': 1,
          '6': 1,
          'nyears': 1,
          'nmeanwhile': 1,
          'begins': 1,
          'chronic': 1,
          'stomach': 1,
          'pains': 1,
          'losing': 1,
          'lot': 1,
          'weight': 1,
          'nbefore': 1,
          'looks': 1,
          'lead': 1,
          'singer': 1,
          'cranberries': 1,
          'nthats': 1,
          'know': 1,
          'healths': 1,
          'failing': 1,
          'person': 1,
          'least': 1,
          'bit': 1,
          'suspicious': 1,
          'old': 1,
          'friend': 1,
          'maurice': 1,
          'evans': 1,
          'calls': 1,
          'give': 1,
          'news': 1,
          'immediately': 1,
          'falls': 1,
          'coma': 1,
          'nby': 1,
          'twohour': 1,
          'mark': 1,
          'felt': 1,
          'leads': 1,
          'payoff': 1,
          'thats': 1,
          'rest': 1,
          'ni': 1,
          'guess': 1,
          'someone': 1,
          'put': 1,
          'spell': 1,
          'nneg': 1}),
 Counter({'sam': 5,
          'summer': 5,
          'film': 5,
          'little': 4,
          'movie': 4,
          'doesnt': 4,
          'mira': 3,
          'sorvino': 3,
          'brody': 3,
          'gets': 3,
          'nthe': 3,
          'new': 3,
          'city': 3,
          'first': 3,
          'son': 3,
          'people': 3,
          'group': 3,
          'dionna': 3,
          'well': 3,
          'night': 3,
          'killer': 2,
          'john': 2,
          'leguizamo': 2,
          'adrian': 2,
          'nsummer': 2,
          'spike': 2,
          'nlee': 2,
          'great': 2,
          'nbut': 2,
          'director': 2,
          'something': 2,
          'say': 2,
          'york': 2,
          'focus': 2,
          'vinny': 2,
          'young': 2,
          'ritchie': 2,
          'punk': 2,
          'gang': 2,
          'time': 2,
          'characters': 2,
          'killings': 2,
          'nvinny': 2,
          'make': 2,
          'much': 2,
          'makes': 2,
          'list': 2,
          'think': 2,
          'way': 2,
          'clear': 2,
          'hour': 2,
          'character': 2,
          'good': 2,
          'guy': 2,
          'performance': 2,
          '44': 1,
          'caliber': 1,
          'struck': 1,
          'nstarring': 1,
          'jennifer': 1,
          'esposito': 1,
          'michael': 1,
          'rispoli': 1,
          'bebe': 1,
          'neuwirth': 1,
          'nrated': 1,
          'r': 1,
          'remembered': 1,
          'waste': 1,
          'lees': 1,
          'abilities': 1,
          'filmmaker': 1,
          'often': 1,
          'exhibiting': 1,
          'kinetic': 1,
          'visual': 1,
          'flair': 1,
          'par': 1,
          'brian': 1,
          'depalma': 1,
          'martin': 1,
          'scorsese': 1,
          'storytelling': 1,
          'ability': 1,
          'comparable': 1,
          'steven': 1,
          'spielberg': 1,
          'bind': 1,
          'nhis': 1,
          'latest': 1,
          'effort': 1,
          'case': 1,
          'pretending': 1,
          'reality': 1,
          'substance': 1,
          'absorb': 1,
          'work': 1,
          '1977': 1,
          'unusual': 1,
          'nit': 1,
          'hottest': 1,
          'record': 1,
          'nto': 1,
          'boot': 1,
          'yorks': 1,
          'serial': 1,
          'loose': 1,
          'calling': 1,
          'david': 1,
          'berkowitz': 1,
          'killed': 1,
          '9': 1,
          'area': 1,
          'frightened': 1,
          'whole': 1,
          'population': 1,
          'nso': 1,
          'understandable': 1,
          'nyc': 1,
          'hit': 1,
          'citywide': 1,
          'blackout': 1,
          'went': 1,
          'berserk': 1,
          'causing': 1,
          'billions': 1,
          'dollars': 1,
          'damage': 1,
          'movies': 1,
          'twentysomethings': 1,
          'fateful': 1,
          'clubhopping': 1,
          'adultrous': 1,
          'hairdresser': 1,
          'benevolent': 1,
          'wife': 1,
          'looking': 1,
          'becomes': 1,
          'outcast': 1,
          'suspect': 1,
          'small': 1,
          'mobsters': 1,
          'minor': 1,
          'nwe': 1,
          'follow': 1,
          'roller': 1,
          'coaster': 1,
          'lives': 1,
          'thrown': 1,
          'whack': 1,
          'even': 1,
          'recent': 1,
          'marital': 1,
          'problems': 1,
          'cheats': 1,
          'tries': 1,
          'please': 1,
          'stay': 1,
          'faithful': 1,
          'nritchie': 1,
          'shunned': 1,
          'friends': 1,
          'started': 1,
          'become': 1,
          'eccentric': 1,
          'degenerated': 1,
          'point': 1,
          'dancing': 1,
          'gay': 1,
          'clubs': 1,
          'making': 1,
          'porno': 1,
          'films': 1,
          'girlfriend': 1,
          'ntensions': 1,
          'build': 1,
          'conflicts': 1,
          'arise': 1,
          'anniversary': 1,
          'sams': 1,
          'murder': 1,
          'looms': 1,
          'promises': 1,
          'strike': 1,
          'na': 1,
          'local': 1,
          'hands': 1,
          'detailing': 1,
          'members': 1,
          'might': 1,
          'suspects': 1,
          'nat': 1,
          'top': 1,
          'unwilling': 1,
          'part': 1,
          'said': 1,
          'called': 1,
          'upon': 1,
          'set': 1,
          'trap': 1,
          'friend': 1,
          'nas': 1,
          'watch': 1,
          'proceedings': 1,
          'painfully': 1,
          'graphic': 1,
          'dreaded': 1,
          'nquestion': 1,
          'springs': 1,
          'mind': 1,
          'nfrom': 1,
          'made': 1,
          'id': 1,
          'guessed': 1,
          'lee': 1,
          'trying': 1,
          'tell': 1,
          'us': 1,
          'searched': 1,
          'deeper': 1,
          'became': 1,
          'find': 1,
          'touches': 1,
          'media': 1,
          '70s': 1,
          'scene': 1,
          'details': 1,
          'actual': 1,
          'personal': 1,
          'dilemmas': 1,
          'bring': 1,
          'topics': 1,
          'together': 1,
          'form': 1,
          'coherent': 1,
          'theme': 1,
          'discernible': 1,
          'statement': 1,
          'nall': 1,
          'lost': 1,
          'turns': 1,
          'hollow': 1,
          'saving': 1,
          'grace': 1,
          'enjoyable': 1,
          'ntoo': 1,
          'bad': 1,
          'get': 1,
          'help': 1,
          'nfrankly': 1,
          'bore': 1,
          'redundant': 1,
          'repetitive': 1,
          'two': 1,
          'twenty': 1,
          'minute': 1,
          'entertain': 1,
          'beyond': 1,
          'half': 1,
          'nthere': 1,
          'suspense': 1,
          'refuses': 1,
          'fully': 1,
          'murders': 1,
          'involving': 1,
          'drama': 1,
          'muddled': 1,
          'vague': 1,
          'nleguizamos': 1,
          'turn': 1,
          'vinnie': 1,
          'annoying': 1,
          'whiny': 1,
          'script': 1,
          'supposed': 1,
          'believe': 1,
          'flawed': 1,
          'still': 1,
          'nyoud': 1,
          'never': 1,
          'guess': 1,
          'nadrian': 1,
          'especially': 1,
          'fare': 1,
          'better': 1,
          'nsorvino': 1,
          'gives': 1,
          'riveting': 1,
          'touching': 1,
          'banal': 1,
          'im': 1,
          'tempted': 1,
          'liked': 1,
          'nearly': 1,
          'everything': 1,
          'else': 1,
          'around': 1,
          'inane': 1,
          'affecting': 1,
          'emotions': 1,
          'truetoheart': 1,
          'nbrody': 1,
          'paints': 1,
          'effective': 1,
          'portrait': 1,
          'desperate': 1,
          'attention': 1,
          'bargained': 1,
          'superficial': 1,
          'elements': 1,
          'looks': 1,
          'notable': 1,
          'performances': 1,
          'suppose': 1,
          'pretty': 1,
          'directed': 1,
          'purely': 1,
          'technical': 1,
          'also': 1,
          'empty': 1,
          'pretentious': 1,
          'boring': 1,
          'nlike': 1,
          'last': 1,
          'years': 1,
          'thin': 1,
          'red': 1,
          'line': 1,
          'know': 1,
          'wants': 1,
          'goes': 1,
          'ahead': 1,
          'says': 1,
          'anyway': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'house': 4,
          'player': 3,
          'friends': 3,
          'one': 3,
          'naked': 3,
          'breasts': 3,
          'screen': 2,
          'bellamy': 2,
          'women': 2,
          'character': 2,
          'day': 2,
          'decide': 2,
          'want': 2,
          'car': 2,
          'sex': 2,
          'comedy': 2,
          'gottfrieds': 2,
          'along': 2,
          'wow': 1,
          'without': 1,
          'redeeming': 1,
          'qualities': 1,
          'whatsoever': 1,
          'nim': 1,
          'amazed': 1,
          'someone': 1,
          'thought': 1,
          'story': 1,
          'must': 1,
          'told': 1,
          'nmany': 1,
          'blacks': 1,
          'hollywood': 1,
          'complain': 1,
          'nominated': 1,
          'awards': 1,
          'based': 1,
          'race': 1,
          'ni': 1,
          'think': 1,
          'first': 1,
          'need': 1,
          'concentrate': 1,
          'energy': 1,
          'stop': 1,
          'making': 1,
          'movies': 1,
          'makes': 1,
          'look': 1,
          'like': 1,
          'nothing': 1,
          'sexcrazed': 1,
          'buffoons': 1,
          'neven': 1,
          'im': 1,
          'offended': 1,
          'nbill': 1,
          'means': 1,
          'sleeps': 1,
          'lot': 1,
          'lies': 1,
          'nwhat': 1,
          'pleasant': 1,
          'main': 1,
          'none': 1,
          'find': 1,
          'nwhy': 1,
          'idea': 1,
          'nhow': 1,
          'many': 1,
          'years': 1,
          'sudden': 1,
          'would': 1,
          'learn': 1,
          'nanyway': 1,
          'agrees': 1,
          'teach': 1,
          'wonderful': 1,
          'lesson': 1,
          'consists': 1,
          'letting': 1,
          'ride': 1,
          'rides': 1,
          'nthis': 1,
          'bulk': 1,
          'folks': 1,
          'guys': 1,
          'riding': 1,
          'keeps': 1,
          'getting': 1,
          'others': 1,
          'sit': 1,
          'nsince': 1,
          'russell': 1,
          'simmons': 1,
          'producer': 1,
          'since': 1,
          'official': 1,
          'title': 1,
          'def': 1,
          'jams': 1,
          'ready': 1,
          'jumping': 1,
          'stomping': 1,
          'feet': 1,
          'beating': 1,
          'person': 1,
          'next': 1,
          'namazingly': 1,
          'aside': 1,
          'gilbert': 1,
          '90': 1,
          'seconds': 1,
          'time': 1,
          'express': 1,
          'manner': 1,
          'ninstead': 1,
          'jokes': 1,
          'theres': 1,
          'endless': 1,
          'stream': 1,
          'profanity': 1,
          'arent': 1,
          'bad': 1,
          'alone': 1,
          'dont': 1,
          'make': 1,
          'good': 1,
          'movie': 1,
          'nbe': 1,
          'sure': 1,
          'bring': 1,
          'ebonics': 1,
          'english': 1,
          'dictionary': 1,
          'well': 1,
          'ngilbert': 1,
          'serves': 1,
          'brief': 1,
          'appearance': 1,
          'asking': 1,
          'explanations': 1,
          'said': 1,
          'nthey': 1,
          'brought': 1,
          'entire': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'really': 4,
          'matthau': 3,
          'lemmon': 3,
          'like': 3,
          'nthe': 2,
          'couple': 2,
          'ii': 2,
          'old': 2,
          'aint': 2,
          'years': 2,
          'feels': 2,
          'generic': 2,
          'movie': 2,
          'made': 2,
          'one': 2,
          'didnt': 2,
          'nand': 2,
          'bob': 1,
          'happy': 1,
          'bastards': 1,
          'quickie': 1,
          'review': 1,
          'odd': 1,
          'ngrumpy': 1,
          'men': 1,
          'nhell': 1,
          'fellow': 1,
          'americans': 1,
          'nwalter': 1,
          'jack': 1,
          'team': 1,
          'even': 1,
          'worn': 1,
          'vehicle': 1,
          'films': 1,
          'past': 1,
          'nodd': 1,
          'terribly': 1,
          'first': 1,
          'thirty': 1,
          'ago': 1,
          'wonderful': 1,
          'tale': 1,
          'nthats': 1,
          'repackaging': 1,
          'campbells': 1,
          'soup': 1,
          'food': 1,
          'nhow': 1,
          'writer': 1,
          'neil': 1,
          'simon': 1,
          'couldve': 1,
          'horrible': 1,
          'mistake': 1,
          'screen': 1,
          'writing': 1,
          'beyond': 1,
          'nthroughout': 1,
          'laugh': 1,
          'nhonestly': 1,
          'ni': 1,
          'mean': 1,
          'dumb': 1,
          'situations': 1,
          'yeah': 1,
          'cropduster': 1,
          'let': 1,
          'geezers': 1,
          'without': 1,
          'notice': 1,
          'seem': 1,
          'funny': 1,
          'car': 1,
          'rolling': 1,
          'cliff': 1,
          'way': 1,
          'wouldve': 1,
          'seen': 1,
          'humor': 1,
          'still': 1,
          'ending': 1,
          'gets': 1,
          'supermushy': 1,
          'nin': 1,
          'final': 1,
          'twenty': 1,
          'minutes': 1,
          'meets': 1,
          'girl': 1,
          'thinks': 1,
          'loses': 1,
          'talks': 1,
          'son': 1,
          'wasted': 1,
          'jonathan': 1,
          'silverman': 1,
          'amrriage': 1,
          'lemmons': 1,
          'daughter': 1,
          'course': 1,
          'another': 1,
          'roomie': 1,
          'situation': 1,
          'hands': 1,
          'nooh': 1,
          'gave': 1,
          'lot': 1,
          'away': 1,
          'im': 1,
          'sure': 1,
          'nconsider': 1,
          'hospitable': 1,
          'gester': 1,
          'wont': 1,
          'waste': 1,
          'time': 1,
          'renting': 1,
          'muck': 1,
          'nneg': 1}),
 Counter({'betty': 12,
          'film': 11,
          'soap': 7,
          'one': 6,
          'like': 6,
          'nthe': 6,
          'little': 6,
          'movie': 5,
          'labutes': 5,
          'hit': 5,
          'men': 5,
          'rock': 5,
          'good': 4,
          'something': 4,
          'labute': 4,
          'two': 4,
          'character': 4,
          'best': 3,
          'could': 3,
          'nnurse': 3,
          'season': 3,
          'least': 3,
          'first': 3,
          'nits': 3,
          'even': 3,
          'nbetty': 3,
          'favorite': 3,
          'doesnt': 3,
          'opera': 3,
          'zellweger': 3,
          'chris': 3,
          'kinnear': 3,
          'play': 3,
          'work': 3,
          'comic': 3,
          'made': 3,
          'movies': 3,
          'think': 3,
          'though': 3,
          'reality': 3,
          'tv': 3,
          'summer': 2,
          'offered': 2,
          'big': 2,
          'end': 2,
          'critics': 2,
          'every': 2,
          'time': 2,
          'films': 2,
          'attempt': 2,
          'resembling': 2,
          'mainstream': 2,
          'picture': 2,
          'thats': 2,
          'people': 2,
          'ni': 2,
          'screenplay': 2,
          'seems': 2,
          'material': 2,
          'tries': 2,
          'flick': 2,
          'makes': 2,
          'half': 2,
          'make': 2,
          'seem': 2,
          'renee': 2,
          'killing': 2,
          'husband': 2,
          'since': 2,
          'morgan': 2,
          'freeman': 2,
          'happens': 2,
          'death': 2,
          'shes': 2,
          'greg': 2,
          'bit': 2,
          'much': 2,
          'horrid': 2,
          'things': 2,
          'man': 2,
          'maybe': 2,
          'girlfriend': 2,
          'boys': 2,
          'job': 2,
          'baby': 2,
          'top': 2,
          'point': 2,
          'use': 2,
          'nurse': 2,
          'hes': 2,
          'would': 2,
          'matter': 2,
          'part': 2,
          'performance': 2,
          'take': 2,
          'bettys': 2,
          'rather': 2,
          'interesting': 2,
          'score': 2,
          'progress': 2,
          'takes': 2,
          'get': 2,
          'victims': 2,
          'current': 2,
          'television': 2,
          'success': 2,
          'survivor': 2,
          'way': 2,
          '00': 1,
          'wasnt': 1,
          'devout': 1,
          'cinephiles': 1,
          'nit': 1,
          'blair': 1,
          'witches': 1,
          'sixth': 1,
          'senses': 1,
          'budget': 1,
          'hollywood': 1,
          'efficient': 1,
          'xmen': 1,
          'adaptation': 1,
          'flawed': 1,
          'entertaining': 1,
          'shaft': 1,
          'update': 1,
          'signals': 1,
          'unofficial': 1,
          'dreadful': 1,
          'commencement': 1,
          'potentially': 1,
          'brighter': 1,
          'fall': 1,
          'batterycharging': 1,
          'sit': 1,
          'piece': 1,
          'shit': 1,
          'moseys': 1,
          'multiplexes': 1,
          'year': 1,
          'oscar': 1,
          'contenders': 1,
          'read': 1,
          'quality': 1,
          'compete': 1,
          'audiences': 1,
          'nalas': 1,
          'dubious': 1,
          'distinction': 1,
          'overpraised': 1,
          'junk': 1,
          'heap': 1,
          'new': 1,
          'also': 1,
          'indie': 1,
          'director': 1,
          'neil': 1,
          'im': 1,
          'sad': 1,
          'report': 1,
          'resounding': 1,
          'failure': 1,
          'web': 1,
          'site': 1,
          'mess': 1,
          'hopelessly': 1,
          'saccharine': 1,
          'accused': 1,
          'previous': 1,
          'unrelentingly': 1,
          'masochistic': 1,
          'went': 1,
          'expecting': 1,
          'decent': 1,
          'gleefully': 1,
          'praised': 1,
          'winning': 1,
          'award': 1,
          'cannes': 1,
          'exited': 1,
          'shaking': 1,
          'noggin': 1,
          'bewilderment': 1,
          'nare': 1,
          'desperate': 1,
          'unique': 1,
          'theyre': 1,
          'blind': 1,
          'derivative': 1,
          'particular': 1,
          'brand': 1,
          'uniqueness': 1,
          'dolls': 1,
          'nfor': 1,
          'working': 1,
          'script': 1,
          'written': 1,
          'unsure': 1,
          'handle': 1,
          'hip': 1,
          'pulp': 1,
          'fiction': 1,
          'another': 1,
          'featuring': 1,
          'pair': 1,
          'strangely': 1,
          'bright': 1,
          'articulate': 1,
          'enchanting': 1,
          'wizard': 1,
          'oz': 1,
          'several': 1,
          'allusions': 1,
          'heartwarming': 1,
          'stick': 1,
          'loveable': 1,
          'misfit': 1,
          'left': 1,
          'cold': 1,
          'calculated': 1,
          'desperation': 1,
          'hearted': 1,
          'crowd': 1,
          'pleaser': 1,
          'heart': 1,
          'concerns': 1,
          'addict': 1,
          'brilliantly': 1,
          'played': 1,
          'witnesses': 1,
          'del': 1,
          'aaron': 1,
          'eckhart': 1,
          'playing': 1,
          'casually': 1,
          'loutish': 1,
          'richard': 1,
          'benjamin': 1,
          'diary': 1,
          'mad': 1,
          'housewife': 1,
          'nshe': 1,
          'beloved': 1,
          'background': 1,
          'somehow': 1,
          'merges': 1,
          'realities': 1,
          'nshes': 1,
          'blocked': 1,
          'husbands': 1,
          'thinks': 1,
          'reason': 1,
          'love': 1,
          'sets': 1,
          'road': 1,
          'la': 1,
          'drugs': 1,
          'unknowingly': 1,
          'stashed': 1,
          'car': 1,
          'trunk': 1,
          'searching': 1,
          'boyfriend': 1,
          'dr': 1,
          'david': 1,
          'ravell': 1,
          'bickering': 1,
          'follow': 1,
          'close': 1,
          'pursuit': 1,
          'birthed': 1,
          'extraordinary': 1,
          'company': 1,
          'slipped': 1,
          'sophomore': 1,
          'effort': 1,
          'friends': 1,
          'neighbors': 1,
          'fell': 1,
          'straight': 1,
          'ass': 1,
          'bash': 1,
          'penned': 1,
          'recently': 1,
          'aired': 1,
          'showtime': 1,
          'demonstrated': 1,
          'forward': 1,
          'movement': 1,
          'artist': 1,
          'persistence': 1,
          'wallowing': 1,
          'average': 1,
          'usually': 1,
          'realizing': 1,
          'nin': 1,
          'paul': 1,
          'rudd': 1,
          'obnoxious': 1,
          'jock': 1,
          'delivers': 1,
          'monologue': 1,
          'detailing': 1,
          'followed': 1,
          'gay': 1,
          'bathroom': 1,
          'beat': 1,
          'clueless': 1,
          'essentially': 1,
          'regards': 1,
          'sadistic': 1,
          'behaviors': 1,
          'along': 1,
          'old': 1,
          'maxim': 1,
          'nanother': 1,
          'schlubby': 1,
          'businessman': 1,
          'reacts': 1,
          'loss': 1,
          'actually': 1,
          'nwhat': 1,
          'powerful': 1,
          'casual': 1,
          'nonchalant': 1,
          'cruelty': 1,
          'selfishness': 1,
          'often': 1,
          'elements': 1,
          'us': 1,
          'amplified': 1,
          'disgusting': 1,
          'degree': 1,
          'become': 1,
          'borderline': 1,
          'nobviously': 1,
          'dose': 1,
          'different': 1,
          'kind': 1,
          'pigeon': 1,
          'holes': 1,
          'isnt': 1,
          'nhe': 1,
          'clearly': 1,
          'passion': 1,
          'instead': 1,
          'replacing': 1,
          'mojo': 1,
          'strained': 1,
          'quirks': 1,
          'huge': 1,
          'fan': 1,
          'joke': 1,
          'gimmick': 1,
          'zelllweger': 1,
          'hadnt': 1,
          'managed': 1,
          'transcend': 1,
          'tailor': 1,
          'appeal': 1,
          'widest': 1,
          'possible': 1,
          'audience': 1,
          'nnearly': 1,
          'scene': 1,
          'fatally': 1,
          'slows': 1,
          'enact': 1,
          'softboiled': 1,
          'tarantinoesque': 1,
          'dialogue': 1,
          'nthey': 1,
          'evince': 1,
          'chemistry': 1,
          'constantly': 1,
          'rant': 1,
          'mode': 1,
          'acting': 1,
          'angry': 1,
          'thing': 1,
          'occupation': 1,
          'represented': 1,
          'far': 1,
          'frequently': 1,
          'nowadays': 1,
          'great': 1,
          'yet': 1,
          'hasnt': 1,
          'able': 1,
          'bring': 1,
          'feral': 1,
          'intelligence': 1,
          'whenever': 1,
          'acts': 1,
          'damn': 1,
          'show': 1,
          'nsurprisingly': 1,
          'considering': 1,
          'irene': 1,
          'gives': 1,
          'revelatory': 1,
          'building': 1,
          'faced': 1,
          'apple': 1,
          'pie': 1,
          'looks': 1,
          'nthat': 1,
          'wideopen': 1,
          'face': 1,
          'helium': 1,
          'voiced': 1,
          'earnestness': 1,
          'suggests': 1,
          'girl': 1,
          'fully': 1,
          'grown': 1,
          'thirtyyearold': 1,
          'body': 1,
          'ever': 1,
          'done': 1,
          'nfreeman': 1,
          'effective': 1,
          'always': 1,
          'nonetheless': 1,
          'suffers': 1,
          'odds': 1,
          'wants': 1,
          'actor': 1,
          'plays': 1,
          'role': 1,
          'usual': 1,
          'calm': 1,
          'collected': 1,
          'manner': 1,
          'insinuate': 1,
          'symbolic': 1,
          'kinship': 1,
          'suggesting': 1,
          'controlled': 1,
          'fantasies': 1,
          'nthats': 1,
          'anything': 1,
          'crash': 1,
          'land': 1,
          'subtheme': 1,
          'labored': 1,
          'speech': 1,
          'midst': 1,
          'badly': 1,
          'staged': 1,
          'gun': 1,
          'battle': 1,
          'moments': 1,
          'many': 1,
          'scenes': 1,
          'involving': 1,
          'especially': 1,
          'confrontation': 1,
          'almost': 1,
          'soothing': 1,
          'lyrical': 1,
          'know': 1,
          'trouble': 1,
          'sticks': 1,
          'nothing': 1,
          'jells': 1,
          'parts': 1,
          'bad': 1,
          'disparate': 1,
          'opposing': 1,
          'might': 1,
          'worked': 1,
          'settled': 1,
          'type': 1,
          'female': 1,
          'forrest': 1,
          'gump': 1,
          'oddball': 1,
          'art': 1,
          'falls': 1,
          'flat': 1,
          'diet': 1,
          'coke': 1,
          'nbettys': 1,
          'mistake': 1,
          'relying': 1,
          'concurrence': 1,
          'without': 1,
          'wouldnt': 1,
          'driven': 1,
          'coincidence': 1,
          'charter': 1,
          'becomes': 1,
          'order': 1,
          'closer': 1,
          'imaginary': 1,
          'lover': 1,
          'hospital': 1,
          'exact': 1,
          'moment': 1,
          'drive': 1,
          'shooting': 1,
          'place': 1,
          'miraculously': 1,
          'knows': 1,
          'care': 1,
          'wound': 1,
          'happened': 1,
          'see': 1,
          'leads': 1,
          'room': 1,
          'eventually': 1,
          'gets': 1,
          'party': 1,
          'meets': 1,
          'tidy': 1,
          'dontcha': 1,
          'theme': 1,
          'aware': 1,
          'state': 1,
          'leaning': 1,
          'towards': 1,
          'enormous': 1,
          'moderate': 1,
          'brother': 1,
          'nthis': 1,
          'women': 1,
          'deluded': 1,
          'ironically': 1,
          'reallife': 1,
          'sean': 1,
          'kennif': 1,
          'taken': 1,
          'doctor': 1,
          'guiding': 1,
          'light': 1,
          'ninstead': 1,
          'exploring': 1,
          'timely': 1,
          'relating': 1,
          'craze': 1,
          'largely': 1,
          'appear': 1,
          'satire': 1,
          'albeit': 1,
          'feel': 1,
          'appropriate': 1,
          '80s': 1,
          '00s': 1,
          'simply': 1,
          'uses': 1,
          'delusions': 1,
          'plot': 1,
          'device': 1,
          'b': 1,
          'unearthed': 1,
          'except': 1,
          'rest': 1,
          'lot': 1,
          'contemplation': 1,
          'nneg': 1}),
 Counter({'woo': 4,
          'get': 3,
          'davidson': 3,
          'one': 3,
          'good': 2,
          'like': 2,
          'bananas': 2,
          'hours': 2,
          'best': 2,
          'films': 2,
          'film': 2,
          'things': 2,
          'thugs': 2,
          'doors': 2,
          'ripoff': 1,
          'movies': 1,
          'woody': 1,
          'allens': 1,
          'martin': 1,
          'scorseses': 1,
          'nyoud': 1,
          'think': 1,
          'youd': 1,
          'ninstead': 1,
          'nfalling': 1,
          'somewhere': 1,
          'def': 1,
          'jams': 1,
          'player': 1,
          'awful': 1,
          'booty': 1,
          'call': 1,
          'ok': 1,
          'yet': 1,
          'another': 1,
          'embarassing': 1,
          'genre': 1,
          'showing': 1,
          'africanamericans': 1,
          'nothing': 1,
          'sexual': 1,
          'buffoons': 1,
          'nthe': 1,
          'whole': 1,
          'plays': 1,
          'black': 1,
          'version': 1,
          'wild': 1,
          'woman': 1,
          'jada': 1,
          'pinkett': 1,
          'smith': 1,
          'goes': 1,
          'blind': 1,
          'date': 1,
          'straightlaced': 1,
          'tim': 1,
          'tommy': 1,
          'nmayhem': 1,
          'follows': 1,
          'nfor': 1,
          'unknown': 1,
          'reason': 1,
          'read': 1,
          'contrived': 1,
          'screenplay': 1,
          'puts': 1,
          'woos': 1,
          'antics': 1,
          'entire': 1,
          'night': 1,
          'include': 1,
          'destroying': 1,
          'bathroom': 1,
          'mirror': 1,
          'stealing': 1,
          'house': 1,
          'violently': 1,
          'questioning': 1,
          'accusing': 1,
          'belittling': 1,
          'actually': 1,
          'previous': 1,
          'girlfriends': 1,
          'causing': 1,
          'riot': 1,
          'elegant': 1,
          'restaurant': 1,
          'various': 1,
          'infuriating': 1,
          'normal': 1,
          'person': 1,
          'wouldnt': 1,
          'tolerate': 1,
          'nbut': 1,
          'sake': 1,
          'bad': 1,
          'movie': 1,
          'nsure': 1,
          'nthere': 1,
          'chuckles': 1,
          'scene': 1,
          'swiped': 1,
          'directly': 1,
          'nin': 1,
          'case': 1,
          'running': 1,
          'gets': 1,
          'subway': 1,
          'car': 1,
          'closing': 1,
          'starts': 1,
          'taunt': 1,
          'open': 1,
          'back': 1,
          'na': 1,
          'joke': 1,
          'stolen': 1,
          'nanother': 1,
          'chuckle': 1,
          'provided': 1,
          'billy': 1,
          'dee': 1,
          'williams': 1,
          'cameo': 1,
          'nmovies': 1,
          'seemingly': 1,
          'released': 1,
          'every': 1,
          'three': 1,
          'months': 1,
          'ever': 1,
          'hit': 1,
          'nwoo': 1,
          'wont': 1,
          'either': 1,
          'nso': 1,
          'made': 1,
          'nand': 1,
          'importantly': 1,
          'isnt': 1,
          'anyone': 1,
          'else': 1,
          'besides': 1,
          'thinks': 1,
          'offensive': 1,
          'neveryone': 1,
          'involved': 1,
          'really': 1,
          'reconsider': 1,
          'careers': 1,
          'point': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'things': 10,
          'nthe': 10,
          'wild': 6,
          'picture': 4,
          'film': 4,
          'one': 4,
          'bacon': 4,
          'nwild': 3,
          'much': 3,
          'thriller': 3,
          'movie': 3,
          'sex': 3,
          'films': 3,
          'less': 3,
          'richards': 3,
          'campbell': 3,
          'kevin': 3,
          'even': 3,
          'hes': 3,
          'way': 2,
          'early': 2,
          'frontal': 2,
          'motion': 2,
          'nthis': 2,
          'movies': 2,
          'wants': 2,
          'viewers': 2,
          'real': 2,
          'story': 2,
          'twists': 2,
          'flash': 2,
          'audience': 2,
          'end': 2,
          'stab': 2,
          'right': 2,
          'three': 2,
          'good': 2,
          'time': 2,
          'cant': 2,
          'russell': 2,
          'denise': 2,
          'neve': 2,
          'keeps': 2,
          'nbut': 2,
          'character': 2,
          'sam': 2,
          'dillon': 2,
          'none': 2,
          'comes': 2,
          'goes': 2,
          'bill': 2,
          'murray': 2,
          'look': 2,
          'nothing': 2,
          'gets': 2,
          'ending': 2,
          'steam': 1,
          'otherwise': 1,
          'dreary': 1,
          'spring': 1,
          'day': 1,
          'provided': 1,
          'course': 1,
          'youre': 1,
          'victim': 1,
          'lobotomy': 1,
          'nthere': 1,
          'fact': 1,
          'doubt': 1,
          'aimed': 1,
          'moviegoers': 1,
          'late': 1,
          'teens': 1,
          'twenties': 1,
          'lucrative': 1,
          'target': 1,
          'group': 1,
          'noir': 1,
          'mtv': 1,
          'generation': 1,
          'fastpaced': 1,
          'slick': 1,
          'flashy': 1,
          'gleefully': 1,
          'mindless': 1,
          'hollow': 1,
          'core': 1,
          'easily': 1,
          'five': 1,
          'dumbest': 1,
          'arrive': 1,
          'theaters': 1,
          'first': 1,
          'eleven': 1,
          'weeks': 1,
          '1998': 1,
          'nive': 1,
          'seen': 1,
          'convincing': 1,
          'drama': 1,
          'nearly': 1,
          'bare': 1,
          'flesh': 1,
          'pinnacle': 1,
          'narrative': 1,
          'quality': 1,
          'baywatch': 1,
          'dupe': 1,
          'thinking': 1,
          'nwhat': 1,
          'however': 1,
          'series': 1,
          'increasingly': 1,
          'improbable': 1,
          'shockingly': 1,
          'predictable': 1,
          'plot': 1,
          'neverything': 1,
          'serpentine': 1,
          'moments': 1,
          'filler': 1,
          'breast': 1,
          'spatter': 1,
          'blood': 1,
          'idiotic': 1,
          'dialogue': 1,
          'side': 1,
          'steven': 1,
          'seagal': 1,
          'tries': 1,
          'hard': 1,
          'surprise': 1,
          'easy': 1,
          'guess': 1,
          'take': 1,
          'unlikely': 1,
          'thing': 1,
          'happen': 1,
          'probably': 1,
          'nusing': 1,
          'approach': 1,
          'times': 1,
          'wrong': 1,
          'nthats': 1,
          'average': 1,
          'production': 1,
          'keep': 1,
          'dark': 1,
          'whats': 1,
          'around': 1,
          'next': 1,
          'corner': 1,
          'ad': 1,
          'campaign': 1,
          'uses': 1,
          'two': 1,
          'sell': 1,
          'hot': 1,
          'young': 1,
          'cast': 1,
          'old': 1,
          'standby': 1,
          'nboth': 1,
          'abundance': 1,
          'screen': 1,
          'although': 1,
          'ill': 1,
          'admit': 1,
          'erotic': 1,
          'content': 1,
          'somewhat': 1,
          'impressive': 1,
          'expected': 1,
          'nnothing': 1,
          'exceptionally': 1,
          'risqu': 1,
          'softcore': 1,
          'sequences': 1,
          'generic': 1,
          'dont': 1,
          'generate': 1,
          'heat': 1,
          'lesbian': 1,
          'kisses': 1,
          'hold': 1,
          'candle': 1,
          'bound': 1,
          'ntheresa': 1,
          'token': 1,
          'topless': 1,
          'appearances': 1,
          'possessing': 1,
          'ironclad': 1,
          'nudity': 1,
          'clause': 1,
          'contract': 1,
          'clothes': 1,
          'greatest': 1,
          'curiosity': 1,
          'full': 1,
          'shot': 1,
          'climbing': 1,
          'shower': 1,
          'nmaybe': 1,
          'girls': 1,
          'skip': 1,
          'seeing': 1,
          'fullyclothed': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'thirteenth': 1,
          'titanic': 1,
          'catch': 1,
          'glimpse': 1,
          'kyra': 1,
          'sedgwick': 1,
          'mrs': 1,
          'nkevin': 1,
          'familiar': 1,
          'director': 1,
          'john': 1,
          'mcnaughton': 1,
          'whose': 1,
          'last': 1,
          'effort': 1,
          'finelytuned': 1,
          'psychological': 1,
          'normal': 1,
          'life': 1,
          'nthat': 1,
          'featured': 1,
          'copious': 1,
          'pair': 1,
          'characters': 1,
          'powerful': 1,
          'script': 1,
          'nits': 1,
          'difficult': 1,
          'believe': 1,
          'something': 1,
          'shallow': 1,
          'could': 1,
          'come': 1,
          'maker': 1,
          'suppose': 1,
          'need': 1,
          'put': 1,
          'food': 1,
          'table': 1,
          'nmcnaughton': 1,
          'appears': 1,
          'completely': 1,
          'lost': 1,
          'obviously': 1,
          'mainstream': 1,
          'success': 1,
          'previous': 1,
          'widerelease': 1,
          'mad': 1,
          'dog': 1,
          'glory': 1,
          'boxoffice': 1,
          'disappointment': 1,
          'nquick': 1,
          'cuts': 1,
          'pretty': 1,
          'sunrises': 1,
          'begin': 1,
          'cover': 1,
          'flaws': 1,
          'main': 1,
          'use': 1,
          'term': 1,
          'lightly': 1,
          'since': 1,
          'shows': 1,
          'occasional': 1,
          'personality': 1,
          'lombardo': 1,
          'matt': 1,
          'guidance': 1,
          'counselor': 1,
          'floridas': 1,
          'blue': 1,
          'bay': 1,
          'high': 1,
          'school': 1,
          'na': 1,
          'student': 1,
          'deliciously': 1,
          'curvaceous': 1,
          'kelly': 1,
          'van': 1,
          'ryan': 1,
          'crush': 1,
          'afternoon': 1,
          'house': 1,
          'wash': 1,
          'car': 1,
          'leaves': 1,
          'clothing': 1,
          'torn': 1,
          'nafter': 1,
          'confessing': 1,
          'mother': 1,
          'theresa': 1,
          'raped': 1,
          'police': 1,
          'station': 1,
          'tells': 1,
          'detectives': 1,
          'ray': 1,
          'duquette': 1,
          'gloria': 1,
          'perez': 1,
          'daphne': 1,
          'rubinvega': 1,
          'nthey': 1,
          'skeptical': 1,
          'claims': 1,
          'another': 1,
          'girl': 1,
          'suzie': 1,
          'toller': 1,
          'forward': 1,
          'similar': 1,
          'tale': 1,
          'nmeanwhile': 1,
          'convinced': 1,
          'set': 1,
          'shyster': 1,
          'lawyer': 1,
          'help': 1,
          'acting': 1,
          'isnt': 1,
          'principals': 1,
          'work': 1,
          'definitely': 1,
          'based': 1,
          'nnot': 1,
          'ludicrous': 1,
          'screenplay': 1,
          'ignore': 1,
          'possibility': 1,
          'someone': 1,
          'may': 1,
          'tripledigit': 1,
          'q': 1,
          'doesnt': 1,
          'bother': 1,
          'give': 1,
          'onscreen': 1,
          'individuals': 1,
          'hint': 1,
          'depth': 1,
          'men': 1,
          'women': 1,
          'populating': 1,
          'nice': 1,
          'nmatt': 1,
          'given': 1,
          'plenty': 1,
          'opportunities': 1,
          'flex': 1,
          'biceps': 1,
          'nneve': 1,
          'model': 1,
          'slutty': 1,
          'ndenise': 1,
          'strikes': 1,
          'fetching': 1,
          'pose': 1,
          'seethrough': 1,
          'onepiece': 1,
          'bathing': 1,
          'suit': 1,
          'nand': 1,
          'rise': 1,
          'whos': 1,
          'remotely': 1,
          'interesting': 1,
          'seems': 1,
          'think': 1,
          'comedy': 1,
          'maybe': 1,
          'got': 1,
          'idea': 1,
          'ncolumbia': 1,
          'pictures': 1,
          'specifically': 1,
          'requested': 1,
          'critics': 1,
          'reveal': 1,
          'prompts': 1,
          'question': 1,
          'want': 1,
          'kept': 1,
          'secret': 1,
          'occurs': 1,
          'credits': 1,
          'stay': 1,
          'seated': 1,
          'jawdroppingly': 1,
          'absurd': 1,
          'feat': 1,
          'joe': 1,
          'eszterhas': 1,
          'writer': 1,
          'basic': 1,
          'instinct': 1,
          'showgirls': 1,
          'would': 1,
          'impressed': 1,
          'nthanks': 1,
          'jeffrey': 1,
          'kimballs': 1,
          'polished': 1,
          'kinetic': 1,
          'cinematography': 1,
          'always': 1,
          'looks': 1,
          'great': 1,
          'george': 1,
          'clintons': 1,
          'score': 1,
          'pulsing': 1,
          'throbbing': 1,
          'matter': 1,
          'shiny': 1,
          'superficial': 1,
          'sheen': 1,
          'still': 1,
          'trash': 1,
          'like': 1,
          'garbage': 1,
          'stinks': 1,
          'nneg': 1}),
 Counter({'metro': 18,
          'film': 10,
          'action': 8,
          'roper': 8,
          'nit': 6,
          'murphy': 6,
          'villain': 6,
          'like': 5,
          'good': 5,
          'n': 5,
          'nthe': 5,
          'films': 4,
          'one': 4,
          'little': 4,
          'nand': 4,
          'hostage': 4,
          'would': 4,
          'actor': 4,
          'role': 4,
          'works': 4,
          'nice': 3,
          'neddie': 3,
          'lot': 3,
          'cop': 3,
          'takes': 3,
          'seriously': 3,
          'eddie': 3,
          'plays': 3,
          'scene': 3,
          'michael': 3,
          'ncars': 3,
          'scenes': 3,
          'partner': 3,
          'ones': 3,
          'overplay': 3,
          'thoughts': 2,
          'nbut': 2,
          'best': 2,
          'suspense': 2,
          'comedy': 2,
          'better': 2,
          'beverly': 2,
          'hills': 2,
          'roles': 2,
          'movies': 2,
          'nin': 2,
          'negotiator': 2,
          'negotiation': 2,
          'way': 2,
          'nhis': 2,
          'hardly': 2,
          'quite': 2,
          'nmurphy': 2,
          'san': 2,
          'francisco': 2,
          'korda': 2,
          'great': 2,
          'reminded': 2,
          'go': 2,
          'nthere': 2,
          'also': 2,
          'new': 2,
          'maturing': 2,
          'genius': 2,
          'see': 2,
          'dimwit': 2,
          'really': 2,
          'ni': 2,
          'wincott': 2,
          'take': 2,
          'movie': 2,
          'still': 2,
          'keeps': 1,
          'involved': 1,
          'nsome': 1,
          'sequences': 1,
          'conventional': 1,
          'attention': 1,
          'detracted': 1,
          'diverted': 1,
          'ghost': 1,
          'darkness': 1,
          'opened': 1,
          'months': 1,
          'ago': 1,
          'bland': 1,
          'uninvolving': 1,
          'invited': 1,
          'divert': 1,
          'nearly': 1,
          'put': 1,
          'asleep': 1,
          'hip': 1,
          'sharp': 1,
          'nifty': 1,
          'pieces': 1,
          'bad': 1,
          'shape': 1,
          'invites': 1,
          'mention': 1,
          'last': 1,
          'year': 1,
          'nutty': 1,
          'professor': 1,
          'blessed': 1,
          'revival': 1,
          'back': 1,
          'position': 1,
          'used': 1,
          'happens': 1,
          'series': 1,
          'nthat': 1,
          'prevent': 1,
          'fun': 1,
          'responsible': 1,
          'controlled': 1,
          'people': 1,
          'featured': 1,
          'reckless': 1,
          'wild': 1,
          'always': 1,
          'crossing': 1,
          'line': 1,
          'inch': 1,
          'job': 1,
          'hobby': 1,
          'preferred': 1,
          'trouble': 1,
          'character': 1,
          'mischievous': 1,
          'trademark': 1,
          'grin': 1,
          'anywhere': 1,
          'found': 1,
          'perhaps': 1,
          'scott': 1,
          'previously': 1,
          'mentioned': 1,
          'first': 1,
          'tense': 1,
          'situation': 1,
          'introduced': 1,
          'kind': 1,
          'work': 1,
          'tries': 1,
          'calm': 1,
          'confused': 1,
          'unkempt': 1,
          'young': 1,
          'criminal': 1,
          'taken': 1,
          'captive': 1,
          'entire': 1,
          'capacity': 1,
          'bank': 1,
          'holding': 1,
          'handles': 1,
          'without': 1,
          'usual': 1,
          'happygolucky': 1,
          'misfit': 1,
          'humor': 1,
          'develops': 1,
          'established': 1,
          'beguiling': 1,
          'jewel': 1,
          'thief': 1,
          'murderer': 1,
          'likes': 1,
          'let': 1,
          'cops': 1,
          'know': 1,
          'fatalities': 1,
          'giving': 1,
          'ear': 1,
          'victim': 1,
          'different': 1,
          'twists': 1,
          'slight': 1,
          'turns': 1,
          'virtuoso': 1,
          'chase': 1,
          'involving': 1,
          'cable': 1,
          'car': 1,
          'flip': 1,
          'crash': 1,
          'turn': 1,
          'done': 1,
          'speed': 1,
          'speeding': 1,
          'bus': 1,
          'fifty': 1,
          'mile': 1,
          'per': 1,
          'hour': 1,
          'significant': 1,
          'reasons': 1,
          'rather': 1,
          'choose': 1,
          'nscenes': 1,
          'horse': 1,
          'track': 1,
          'gambler': 1,
          'knows': 1,
          'tricks': 1,
          'teaches': 1,
          'methods': 1,
          'betting': 1,
          'winning': 1,
          'nof': 1,
          'course': 1,
          'writers': 1,
          'tried': 1,
          'disguise': 1,
          'insignificant': 1,
          'draw': 1,
          'parallels': 1,
          'gambling': 1,
          'girlfriend': 1,
          'nthose': 1,
          'make': 1,
          'mainly': 1,
          'personality': 1,
          'enjoyed': 1,
          'seeing': 1,
          'rapaport': 1,
          'lipreading': 1,
          'bookskimming': 1,
          'master': 1,
          'observation': 1,
          'presence': 1,
          'pleased': 1,
          'much': 1,
          'cast': 1,
          'proclaimed': 1,
          'nrapaport': 1,
          'usually': 1,
          'dopey': 1,
          'recognized': 1,
          'joy': 1,
          'able': 1,
          'feel': 1,
          'respect': 1,
          'two': 1,
          'main': 1,
          'types': 1,
          'villains': 1,
          'part': 1,
          'story': 1,
          'devices': 1,
          'device': 1,
          'darn': 1,
          'nonetheless': 1,
          'nhe': 1,
          'played': 1,
          'whose': 1,
          'voice': 1,
          'pushed': 1,
          'abraded': 1,
          'rasp': 1,
          'smokes': 1,
          'cigarette': 1,
          'every': 1,
          'nwincott': 1,
          'makes': 1,
          'mean': 1,
          'could': 1,
          'classic': 1,
          'type': 1,
          'push': 1,
          'old': 1,
          'lady': 1,
          'flight': 1,
          'stairs': 1,
          'kicks': 1,
          'richard': 1,
          'widmark': 1,
          'kiss': 1,
          'death': 1,
          'addition': 1,
          'physical': 1,
          'appearance': 1,
          'mannerisms': 1,
          'actually': 1,
          'arrogant': 1,
          'friend': 1,
          'use': 1,
          'longer': 1,
          'list': 1,
          'liked': 1,
          'think': 1,
          'worked': 1,
          'past': 1,
          'precursor': 1,
          'later': 1,
          'place': 1,
          'possibly': 1,
          'growing': 1,
          'person': 1,
          'family': 1,
          'nononsense': 1,
          'buddy': 1,
          'dry': 1,
          'tendency': 1,
          'occasionally': 1,
          'allout': 1,
          'cares': 1,
          'remains': 1,
          'serious': 1,
          'overdo': 1,
          'noh': 1,
          'plenty': 1,
          'explosions': 1,
          'well': 1,
          'nhow': 1,
          'filmmakers': 1,
          'give': 1,
          'us': 1,
          'nif': 1,
          'major': 1,
          'objection': 1,
          'length': 1,
          'area': 1,
          'seem': 1,
          'wear': 1,
          'welcomes': 1,
          'lasted': 1,
          'long': 1,
          'entertaining': 1,
          'gave': 1,
          'something': 1,
          'waited': 1,
          'end': 1,
          'npaul': 1,
          'haynes': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'nits': 4,
          'something': 3,
          'stupid': 3,
          'plot': 3,
          'nthe': 3,
          'like': 3,
          'many': 2,
          'ways': 2,
          'one': 2,
          'supposed': 2,
          'thriller': 2,
          'dead': 2,
          'work': 2,
          'threads': 2,
          'problem': 2,
          'clue': 2,
          'care': 2,
          'character': 2,
          'anyone': 2,
          'know': 2,
          'way': 2,
          'kind': 2,
          'capsule': 1,
          'dumb': 1,
          'dud': 1,
          'entry': 1,
          'body': 1,
          'heat': 1,
          'sweepstakes': 1,
          'landmark': 1,
          'spawned': 1,
          'jillion': 1,
          'clones': 1,
          'nbasic': 1,
          'instincts': 1,
          'worst': 1,
          'crime': 1,
          'bad': 1,
          'incompetent': 1,
          'well': 1,
          'think': 1,
          'audience': 1,
          'feet': 1,
          'ultimately': 1,
          'arbitrary': 1,
          'put': 1,
          'jerk': 1,
          'us': 1,
          'around': 1,
          'also': 1,
          'sexy': 1,
          'instead': 1,
          'got': 1,
          'unpleasant': 1,
          'rawness': 1,
          'teenager': 1,
          'showing': 1,
          'younger': 1,
          'kids': 1,
          'collections': 1,
          'dirty': 1,
          'pictures': 1,
          'ripoff': 1,
          'story': 1,
          'opens': 1,
          'rock': 1,
          'star': 1,
          'murdered': 1,
          'throes': 1,
          'orgasm': 1,
          'biggest': 1,
          'suspect': 1,
          'authoress': 1,
          'catherine': 1,
          'tramell': 1,
          'sharon': 1,
          'stone': 1,
          'wrote': 1,
          'novel': 1,
          'murder': 1,
          'eerily': 1,
          'presaged': 1,
          'maybe': 1,
          'copycat': 1,
          'nthese': 1,
          'get': 1,
          'fed': 1,
          'detective': 1,
          'whos': 1,
          'case': 1,
          'michael': 1,
          'douglas': 1,
          'problems': 1,
          'nlike': 1,
          'wonder': 1,
          'elevator': 1,
          'goes': 1,
          'top': 1,
          'floor': 1,
          'nwe': 1,
          'measure': 1,
          'stopwatch': 1,
          'time': 1,
          'setting': 1,
          'eyes': 1,
          'moment': 1,
          'mattress': 1,
          'dance': 1,
          'njoe': 1,
          'eszterhas': 1,
          'written': 1,
          'screenplay': 1,
          'uses': 1,
          'device': 1,
          'used': 1,
          'much': 1,
          'better': 1,
          'jagged': 1,
          'edge': 1,
          'killers': 1,
          'identity': 1,
          'kept': 1,
          'secret': 1,
          'movies': 1,
          'final': 1,
          'shot': 1,
          'nthis': 1,
          'isnt': 1,
          'point': 1,
          'weve': 1,
          'given': 1,
          'nothing': 1,
          'nevery': 1,
          'every': 1,
          'ambiguous': 1,
          'whole': 1,
          'aspect': 1,
          'shill': 1,
          'nred': 1,
          'herrings': 1,
          'violence': 1,
          'kinky': 1,
          'sexuality': 1,
          'litter': 1,
          'potholes': 1,
          'manhattan': 1,
          'streets': 1,
          'nthey': 1,
          'add': 1,
          'zip': 1,
          'theyre': 1,
          'happening': 1,
          'people': 1,
          'ndouglass': 1,
          'foulmouthed': 1,
          'bitter': 1,
          'thats': 1,
          'stones': 1,
          'ironon': 1,
          'smile': 1,
          'never': 1,
          'changes': 1,
          'rest': 1,
          'forgettable': 1,
          'nwhen': 1,
          'dont': 1,
          'even': 1,
          'luxury': 1,
          'giving': 1,
          'damn': 1,
          'cares': 1,
          'happens': 1,
          'nespecially': 1,
          'ending': 1,
          'unsatisfying': 1,
          'inexplicable': 1,
          'n': 1,
          'friend': 1,
          'mine': 1,
          'came': 1,
          'rule': 1,
          'thumb': 1,
          'characters': 1,
          'behaves': 1,
          'would': 1,
          'leave': 1,
          'none': 1,
          'nastier': 1,
          'things': 1,
          'treats': 1,
          'lesbianism': 1,
          'integral': 1,
          'part': 1,
          'someones': 1,
          'life': 1,
          'kink': 1,
          'thrill': 1,
          'men': 1,
          'ni': 1,
          'despair': 1,
          'whenever': 1,
          'encounter': 1,
          'stupidity': 1,
          'mainstream': 1,
          'entertainment': 1,
          'still': 1,
          'culturally': 1,
          'neanderthal': 1,
          'include': 1,
          'bigbudget': 1,
          'hollywood': 1,
          'film': 1,
          'hefnerism': 1,
          'nneg': 1}),
 Counter({'gal': 8,
          'old': 7,
          'plot': 7,
          'nthe': 6,
          '4': 5,
          'beast': 5,
          'film': 5,
          'crime': 5,
          'london': 4,
          'kingsley': 4,
          'sexy': 4,
          'would': 4,
          'respectability': 4,
          'gangster': 3,
          'one': 3,
          'ben': 3,
          '0': 3,
          'comes': 3,
          'nin': 3,
          'done': 3,
          'pool': 3,
          'familiar': 3,
          'cockney': 2,
          'retired': 2,
          'spain': 2,
          'nhis': 2,
          'job': 2,
          'vicious': 2,
          'give': 2,
          'performance': 2,
          'westerns': 2,
          'guessed': 2,
          'played': 2,
          'seen': 2,
          'time': 2,
          'know': 2,
          'even': 2,
          'roles': 2,
          'make': 2,
          'villa': 2,
          'nbut': 2,
          'first': 2,
          'punch': 2,
          'gang': 2,
          'bank': 2,
          'wants': 2,
          'sends': 2,
          'rabid': 2,
          'makes': 2,
          'yes': 2,
          'including': 2,
          'see': 2,
          'could': 2,
          'vault': 2,
          'water': 2,
          'story': 2,
          'overly': 2,
          'ni': 2,
          'type': 2,
          'nit': 2,
          'western': 2,
          'british': 2,
          'new': 2,
          'least': 2,
          'style': 2,
          'nwe': 2,
          'side': 2,
          'scale': 2,
          'capsule': 1,
          '50sish': 1,
          'associates': 1,
          'want': 1,
          'last': 1,
          'send': 1,
          'offer': 1,
          'cant': 1,
          'refuse': 1,
          'na': 1,
          'standout': 1,
          'save': 1,
          'essentially': 1,
          'set': 1,
          'cliches': 1,
          'recycled': 1,
          'n': 1,
          'nroger': 1,
          'ebert': 1,
          'asks': 1,
          'review': 1,
          'savage': 1,
          'maddog': 1,
          'frothing': 1,
          'recent': 1,
          'movies': 1,
          'nben': 1,
          'nmy': 1,
          'response': 1,
          'anyone': 1,
          'alan': 1,
          'arkin': 1,
          'wait': 1,
          'dark': 1,
          'henry': 1,
          'fonda': 1,
          'upon': 1,
          'west': 1,
          'anthony': 1,
          'hopkins': 1,
          'silence': 1,
          'lambs': 1,
          'nthey': 1,
          'way': 1,
          'create': 1,
          'really': 1,
          'creepy': 1,
          'sociopath': 1,
          'cast': 1,
          'someone': 1,
          'generally': 1,
          'plays': 1,
          'mild': 1,
          'sympathetic': 1,
          'ineffectual': 1,
          'character': 1,
          'characteristics': 1,
          'actor': 1,
          'seem': 1,
          'gentle': 1,
          'work': 1,
          'favor': 1,
          'role': 1,
          'calls': 1,
          'fierce': 1,
          'nthat': 1,
          'principle': 1,
          'works': 1,
          'ngary': 1,
          'dove': 1,
          'ray': 1,
          'winstone': 1,
          'career': 1,
          'living': 1,
          'luxurious': 1,
          'nlife': 1,
          'become': 1,
          'routine': 1,
          'sunning': 1,
          'relaxing': 1,
          'paradise': 1,
          'shattered': 1,
          'onetwopunch': 1,
          'boulder': 1,
          'rolling': 1,
          'hill': 1,
          'next': 1,
          'second': 1,
          'gals': 1,
          'past': 1,
          'nback': 1,
          'boss': 1,
          'teddy': 1,
          'bass': 1,
          'ian': 1,
          'mcshane': 1,
          'tvs': 1,
          'lovejoy': 1,
          'planning': 1,
          'break': 1,
          'safety': 1,
          'deposit': 1,
          'room': 1,
          'nhe': 1,
          'henchman': 1,
          'logan': 1,
          'fetch': 1,
          'ndon': 1,
          'accept': 1,
          'decision': 1,
          'certainly': 1,
          'nhowever': 1,
          'says': 1,
          'whatever': 1,
          'takes': 1,
          'turn': 1,
          'threatening': 1,
          'guys': 1,
          'exporn': 1,
          'star': 1,
          'wife': 1,
          'deedee': 1,
          'amanda': 1,
          'redman': 1,
          'meantime': 1,
          'knows': 1,
          'get': 1,
          'everybodys': 1,
          'skin': 1,
          'nkingsley': 1,
          'compact': 1,
          'package': 1,
          'fury': 1,
          'nastiness': 1,
          'nthere': 1,
          'serious': 1,
          'problems': 1,
          'louis': 1,
          'melliss': 1,
          'david': 1,
          'scintos': 1,
          'script': 1,
          'caught': 1,
          'filming': 1,
          'nwhen': 1,
          'actual': 1,
          'idea': 1,
          'important': 1,
          'success': 1,
          'nbeyond': 1,
          'ability': 1,
          'use': 1,
          'skindiving': 1,
          'gear': 1,
          'special': 1,
          'talents': 1,
          'required': 1,
          'nany': 1,
          'local': 1,
          'hood': 1,
          'needed': 1,
          'nadditionally': 1,
          'involves': 1,
          'digging': 1,
          'swimming': 1,
          'flooding': 1,
          'nno': 1,
          'let': 1,
          'avoided': 1,
          'complication': 1,
          'altogether': 1,
          'far': 1,
          'much': 1,
          'accounted': 1,
          'spite': 1,
          'provocative': 1,
          'title': 1,
          'cliched': 1,
          'elements': 1,
          'like': 1,
          'law': 1,
          'jake': 1,
          'wade': 1,
          'usually': 1,
          'reformed': 1,
          'outlaw': 1,
          'robert': 1,
          'taylor': 1,
          'hung': 1,
          'guns': 1,
          'trying': 1,
          'life': 1,
          'peaceful': 1,
          'however': 1,
          'buddy': 1,
          'richard': 1,
          'widmark': 1,
          'go': 1,
          'git': 1,
          'im': 1,
          'great': 1,
          'twists': 1,
          'gray': 1,
          'beards': 1,
          'nperhaps': 1,
          'little': 1,
          'made': 1,
          'stylish': 1,
          'dressed': 1,
          'look': 1,
          'nif': 1,
          'creative': 1,
          'nthis': 1,
          'director': 1,
          'jonathan': 1,
          'glazers': 1,
          'reputedly': 1,
          'notable': 1,
          'tv': 1,
          'ads': 1,
          'guinness': 1,
          'stout': 1,
          'unexpected': 1,
          'touches': 1,
          'odd': 1,
          'dream': 1,
          'sequences': 1,
          'ncinematographer': 1,
          'ivan': 1,
          'bird': 1,
          'uses': 1,
          'lot': 1,
          'half': 1,
          'lit': 1,
          'scenes': 1,
          'persons': 1,
          'faces': 1,
          'fades': 1,
          'darkness': 1,
          'sort': 1,
          'metaphor': 1,
          'halfworld': 1,
          'characters': 1,
          'inhabit': 1,
          'nhalf': 1,
          'everything': 1,
          'happening': 1,
          'also': 1,
          'kept': 1,
          'hidden': 1,
          'yanks': 1,
          'hard': 1,
          'dialog': 1,
          'nat': 1,
          'theater': 1,
          'difficult': 1,
          'words': 1,
          'quiet': 1,
          'speaking': 1,
          'heavy': 1,
          'accents': 1,
          'language': 1,
          'nsexy': 1,
          'minor': 1,
          'lent': 1,
          'us': 1,
          'still': 1,
          'somewhat': 1,
          'novel': 1,
          'genre': 1,
          'may': 1,
          'films': 1,
          'nfurther': 1,
          'kingsleys': 1,
          'highpowered': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'football': 7,
          'evil': 6,
          'high': 4,
          'school': 4,
          'though': 4,
          'little': 4,
          'movie': 4,
          'nthe': 4,
          'quarterback': 3,
          'coach': 3,
          'blues': 3,
          'life': 3,
          'ni': 3,
          'moxxon': 2,
          'even': 2,
          'read': 2,
          'slaughterhouse': 2,
          'five': 2,
          'kilmer': 2,
          'moxxons': 2,
          'team': 2,
          'kid': 2,
          'brother': 2,
          'forms': 2,
          'cult': 2,
          'cream': 2,
          'star': 2,
          'films': 2,
          'teen': 2,
          'n': 2,
          'intended': 2,
          'nvarsity': 2,
          'really': 2,
          'scenes': 2,
          'audience': 2,
          'around': 2,
          'nothing': 2,
          'want': 2,
          'stock': 2,
          'guy': 2,
          'movies': 2,
          'nmaybe': 2,
          'im': 2,
          'theater': 2,
          'synopsis': 1,
          'backup': 1,
          'becomes': 1,
          'starting': 1,
          'midway': 1,
          'senior': 1,
          'year': 1,
          'hed': 1,
          'rather': 1,
          'playbook': 1,
          'nevil': 1,
          'throws': 1,
          'away': 1,
          'book': 1,
          'physician': 1,
          'injects': 1,
          'painkillers': 1,
          'players': 1,
          'nin': 1,
          'meantime': 1,
          'bubblegumblond': 1,
          'cheerleader': 1,
          'smears': 1,
          'whip': 1,
          'seduce': 1,
          'new': 1,
          'ncomments': 1,
          'since': 1,
          'usually': 1,
          'review': 1,
          'horror': 1,
          'science': 1,
          'fiction': 1,
          'feel': 1,
          'league': 1,
          'discussing': 1,
          'pun': 1,
          'nthank': 1,
          'produced': 1,
          'mtv': 1,
          'shows': 1,
          'nseveral': 1,
          'extended': 1,
          'allow': 1,
          'continual': 1,
          'soundtrack': 1,
          'mediocre': 1,
          'pop': 1,
          'songs': 1,
          'meant': 1,
          'appeal': 1,
          'adolescent': 1,
          'male': 1,
          'crap': 1,
          'teenagers': 1,
          'reasons': 1,
          'melodramatic': 1,
          'angst': 1,
          'adults': 1,
          'problems': 1,
          'course': 1,
          'onedimensional': 1,
          'characters': 1,
          'fanatically': 1,
          'obssessed': 1,
          'local': 1,
          'performs': 1,
          'nyes': 1,
          'represents': 1,
          'mtvland': 1,
          'nthis': 1,
          'land': 1,
          'health': 1,
          'teacher': 1,
          'also': 1,
          'parttime': 1,
          'stripper': 1,
          'ice': 1,
          'store': 1,
          'attendant': 1,
          'girlfriend': 1,
          'wears': 1,
          'egyptian': 1,
          'ankh': 1,
          'neck': 1,
          'cute': 1,
          'uncaring': 1,
          'obssessive': 1,
          'madman': 1,
          'friends': 1,
          'lives': 1,
          'consist': 1,
          'getting': 1,
          'laid': 1,
          'driving': 1,
          'cop': 1,
          'cars': 1,
          'naked': 1,
          'nall': 1,
          'main': 1,
          'character': 1,
          'however': 1,
          'attend': 1,
          'brown': 1,
          'university': 1,
          'fall': 1,
          'nwell': 1,
          'least': 1,
          'realistic': 1,
          'mtvs': 1,
          'real': 1,
          'world': 1,
          'stars': 1,
          'james': 1,
          'van': 1,
          'der': 1,
          'beek': 1,
          'weeks': 1,
          'tv': 1,
          'making': 1,
          'leap': 1,
          'big': 1,
          'screen': 1,
          'nhe': 1,
          'plays': 1,
          'hick': 1,
          'adequately': 1,
          'emotional': 1,
          'dialogue': 1,
          'make': 1,
          'people': 1,
          'chuckle': 1,
          'dawnt': 1,
          'mah': 1,
          'nwho': 1,
          'would': 1,
          'njon': 1,
          'voight': 1,
          'countless': 1,
          'surprise': 1,
          'nbut': 1,
          'product': 1,
          'society': 1,
          'nafter': 1,
          'everybody': 1,
          'young': 1,
          'old': 1,
          'whatsoever': 1,
          'obssess': 1,
          'pressures': 1,
          '90': 1,
          'screaming': 1,
          'fans': 1,
          'field': 1,
          'drove': 1,
          'screenplay': 1,
          'never': 1,
          'answers': 1,
          'burning': 1,
          'question': 1,
          'nat': 1,
          'times': 1,
          'iliffs': 1,
          'story': 1,
          'show': 1,
          'glimmers': 1,
          'touching': 1,
          'humorous': 1,
          'gets': 1,
          'hopes': 1,
          'might': 1,
          'something': 1,
          'redeeming': 1,
          'get': 1,
          'trashed': 1,
          'another': 1,
          'lengthy': 1,
          'party': 1,
          'sequence': 1,
          'overwrought': 1,
          'game': 1,
          'pacing': 1,
          'slow': 1,
          'plot': 1,
          'turns': 1,
          'mindnumbingly': 1,
          'obvious': 1,
          'start': 1,
          'finish': 1,
          'suppose': 1,
          'hard': 1,
          'varsity': 1,
          'miffed': 1,
          'pay': 1,
          '3': 1,
          'bucks': 1,
          'see': 1,
          'dollar': 1,
          'night': 1,
          'cinema': 1,
          'nsomething': 1,
          'request': 1,
          'studio': 1,
          'made': 1,
          'charge': 1,
          'money': 1,
          'found': 1,
          'film': 1,
          'oftentimes': 1,
          'ludicrous': 1,
          'boring': 1,
          'nthree': 1,
          'guys': 1,
          'front': 1,
          'us': 1,
          'smuggled': 1,
          'beer': 1,
          'wished': 1,
          'thought': 1,
          'nalcohol': 1,
          'lots': 1,
          'may': 1,
          'helped': 1,
          'viewing': 1,
          'experience': 1,
          'nneg': 1}),
 Counter({'jesse': 5,
          'american': 3,
          'outlaws': 3,
          'james': 3,
          'first': 2,
          'gang': 2,
          'nthe': 2,
          'scott': 2,
          'hometown': 2,
          'movie': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'warner': 1,
          'bros': 1,
          'nthomas': 1,
          'edisons': 1,
          'great': 1,
          'train': 1,
          'robbery': 1,
          '1903': 1,
          'western': 1,
          'ever': 1,
          'made': 1,
          'black': 1,
          'flag': 1,
          '1923': 1,
          'introduced': 1,
          'outlaw': 1,
          'folk': 1,
          'hero': 1,
          'nnow': 1,
          '20': 1,
          'similarlythemed': 1,
          'pictures': 1,
          'later': 1,
          'notorious': 1,
          'ride': 1,
          'banal': 1,
          'mtv': 1,
          'spin': 1,
          'legend': 1,
          'story': 1,
          'begins': 1,
          'charasmatic': 1,
          'colin': 1,
          'farrell': 1,
          'brother': 1,
          'frank': 1,
          'gabriel': 1,
          'macht': 1,
          'cole': 1,
          'younger': 1,
          'caan': 1,
          'mccormack': 1,
          'trusty': 1,
          'comanche': 1,
          'tom': 1,
          'nathaniel': 1,
          'arcand': 1,
          'four': 1,
          'years': 1,
          'fighting': 1,
          'rebs': 1,
          'civil': 1,
          'war': 1,
          'return': 1,
          'liberty': 1,
          'missouri': 1,
          'discover': 1,
          'union': 1,
          'troops': 1,
          'occupying': 1,
          'nand': 1,
          'avaricious': 1,
          'east': 1,
          'coast': 1,
          'railroad': 1,
          'baron': 1,
          'thaddeus': 1,
          'rains': 1,
          'harris': 1,
          'yulin': 1,
          'forcing': 1,
          'farmers': 1,
          'sell': 1,
          'land': 1,
          'less': 1,
          'true': 1,
          'value': 1,
          'aided': 1,
          'allan': 1,
          'pinkerton': 1,
          'timothy': 1,
          'dalton': 1,
          'infamous': 1,
          'detectives': 1,
          'back': 1,
          'thugs': 1,
          'provided': 1,
          'security': 1,
          'nbut': 1,
          'kathy': 1,
          'bates': 1,
          'becomes': 1,
          'one': 1,
          'victims': 1,
          'rest': 1,
          'guys': 1,
          'gregory': 1,
          'smith': 1,
          'ty': 1,
          'oneal': 1,
          'joe': 1,
          'stevens': 1,
          'form': 1,
          'jamesyounger': 1,
          'wreak': 1,
          'revenge': 1,
          'attacking': 1,
          'railroads': 1,
          'supply': 1,
          'lines': 1,
          'sabotaging': 1,
          'track': 1,
          'robbing': 1,
          'banks': 1,
          'payroll': 1,
          'kept': 1,
          'nplus': 1,
          'theres': 1,
          'romance': 1,
          'spunky': 1,
          'gal': 1,
          'lee': 1,
          'mimms': 1,
          'ali': 1,
          'larter': 1,
          'nworking': 1,
          'politicallycorrect': 1,
          'clich': 1,
          'drenched': 1,
          'sanitized': 1,
          'revisionist': 1,
          'screenplay': 1,
          'roderick': 1,
          'taylor': 1,
          'john': 1,
          'rodgers': 1,
          'director': 1,
          'les': 1,
          'mayfield': 1,
          'keeps': 1,
          'action': 1,
          'fastpaced': 1,
          'goes': 1,
          'lightweight': 1,
          'laughs': 1,
          'choppy': 1,
          'editing': 1,
          'hurts': 1,
          'russell': 1,
          'boyds': 1,
          'cinematography': 1,
          'luke': 1,
          'reichles': 1,
          'designer': 1,
          'duds': 1,
          'trevor': 1,
          'rabins': 1,
          'music': 1,
          'lend': 1,
          'authenticity': 1,
          'non': 1,
          'granger': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'galloping': 1,
          'formulaic': 1,
          '3': 1,
          'nits': 1,
          'wild': 1,
          'west': 1,
          'revisited': 1,
          'date': 1,
          'nneg': 1}),
 Counter({'bad': 9,
          'film': 9,
          'knock': 9,
          'ni': 7,
          'action': 6,
          'running': 4,
          'nit': 4,
          'rochon': 4,
          'damme': 4,
          'boring': 4,
          'nbut': 4,
          'scenes': 4,
          'say': 3,
          'cant': 3,
          'awfulness': 3,
          'see': 3,
          'films': 3,
          'makes': 3,
          'nin': 3,
          'fact': 3,
          'time': 3,
          'completely': 3,
          'incoherent': 3,
          'also': 3,
          'course': 3,
          'van': 3,
          'schneider': 3,
          'dont': 3,
          'like': 3,
          'first': 3,
          'products': 3,
          'know': 3,
          'martial': 3,
          'arts': 3,
          'good': 3,
          'nknock': 3,
          'hes': 3,
          'funny': 3,
          'though': 2,
          'one': 2,
          'charm': 2,
          'kind': 2,
          'acting': 2,
          'story': 2,
          'im': 2,
          'badness': 2,
          'truly': 2,
          'terrible': 2,
          'paul': 2,
          'sorvino': 2,
          'however': 2,
          'rob': 2,
          'tsui': 2,
          'seems': 2,
          'mess': 2,
          'writing': 2,
          'far': 2,
          'way': 2,
          'nfor': 2,
          'sake': 2,
          'comparison': 2,
          'plays': 2,
          'look': 2,
          'theres': 2,
          'problem': 2,
          'although': 2,
          'idea': 2,
          'really': 2,
          'end': 2,
          'guy': 2,
          'character': 2,
          'many': 2,
          'absolutely': 2,
          'hard': 2,
          'nthe': 2,
          'particular': 2,
          'fruit': 2,
          'factory': 2,
          'nits': 2,
          'doesnt': 2,
          'theyre': 2,
          'fun': 2,
          'dear': 1,
          'god': 1,
          'fantastically': 1,
          'nregardless': 1,
          'grasp': 1,
          'words': 1,
          'nyou': 1,
          'experience': 1,
          'nheres': 1,
          'kicker': 1,
          'suggest': 1,
          'nyes': 1,
          'easily': 1,
          'incompetent': 1,
          'year': 1,
          'certain': 1,
          'misguided': 1,
          'unique': 1,
          'disaster': 1,
          'endure': 1,
          'enjoyed': 1,
          'brief': 1,
          'despite': 1,
          'dreadful': 1,
          'incomprehensible': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'excusing': 1,
          'reaches': 1,
          'unacceptable': 1,
          'level': 1,
          'wonder': 1,
          'hacked': 1,
          'worse': 1,
          'avengers': 1,
          'features': 1,
          'performances': 1,
          'lela': 1,
          'michael': 1,
          'wong': 1,
          'jeanclaude': 1,
          'entertaining': 1,
          'presence': 1,
          'excessively': 1,
          'inventive': 1,
          'pretentious': 1,
          'direction': 1,
          'hark': 1,
          'nas': 1,
          'watched': 1,
          'occasionally': 1,
          'wondered': 1,
          'aware': 1,
          'nnow': 1,
          'retrospect': 1,
          'clear': 1,
          'wasnt': 1,
          'still': 1,
          'fascinating': 1,
          'plot': 1,
          'descriptions': 1,
          'part': 1,
          'review': 1,
          'case': 1,
          'hook': 1,
          'could': 1,
          'write': 1,
          'accurate': 1,
          'synopsis': 1,
          'trouble': 1,
          'understanding': 1,
          'usual': 1,
          'suspects': 1,
          'viewing': 1,
          'paid': 1,
          'closer': 1,
          'attention': 1,
          'thing': 1,
          'able': 1,
          'dude': 1,
          'named': 1,
          'ray': 1,
          'accused': 1,
          'cia': 1,
          'think': 1,
          'selling': 1,
          'namebrand': 1,
          'materials': 1,
          'generic': 1,
          'cheap': 1,
          'lots': 1,
          'nray': 1,
          'beat': 1,
          'guys': 1,
          'nrob': 1,
          'sidekick': 1,
          'nlela': 1,
          'woman': 1,
          'accuses': 1,
          'stuff': 1,
          'every': 1,
          'goes': 1,
          'shifts': 1,
          'provides': 1,
          'insight': 1,
          'order': 1,
          'sense': 1,
          'strange': 1,
          'written': 1,
          'stephen': 1,
          'e': 1,
          'de': 1,
          'souza': 1,
          'wrote': 1,
          'die': 1,
          '48': 1,
          'hours': 1,
          'ncan': 1,
          'man': 1,
          'unless': 1,
          'huge': 1,
          'chunks': 1,
          'removed': 1,
          'interesting': 1,
          'premise': 1,
          'go': 1,
          'semblance': 1,
          'instance': 1,
          'introduced': 1,
          'seconds': 1,
          'later': 1,
          'chariot': 1,
          'race': 1,
          'streets': 1,
          'hong': 1,
          'kong': 1,
          'nwhy': 1,
          'nwho': 1,
          'knows': 1,
          'nwhat': 1,
          'implications': 1,
          'nmost': 1,
          'abandon': 1,
          'depth': 1,
          'favor': 1,
          'normally': 1,
          'would': 1,
          'preferred': 1,
          'talky': 1,
          'sequences': 1,
          'cut': 1,
          'embarrassingly': 1,
          'delivers': 1,
          'lines': 1,
          'stiff': 1,
          'talentless': 1,
          'insincerity': 1,
          'nsorvino': 1,
          'addition': 1,
          'deserves': 1,
          'better': 1,
          'nvan': 1,
          'charming': 1,
          'watch': 1,
          'rarely': 1,
          'understood': 1,
          'saying': 1,
          'exception': 1,
          'actually': 1,
          'quite': 1,
          'lot': 1,
          'ntsui': 1,
          'utilizes': 1,
          'tricks': 1,
          'john': 1,
          'woo': 1,
          'tame': 1,
          'ntheyre': 1,
          'pointless': 1,
          'gimmicks': 1,
          'shots': 1,
          'innerworkings': 1,
          'shoe': 1,
          'never': 1,
          'piece': 1,
          'inside': 1,
          'wellchoreographed': 1,
          'nlots': 1,
          'pitched': 1,
          'well': 1,
          'comedy': 1,
          'heroes': 1,
          'encounter': 1,
          'beyond': 1,
          'ludicrous': 1,
          'hope': 1,
          'alternative': 1,
          'frightening': 1,
          'thought': 1,
          'feel': 1,
          'exercise': 1,
          'camp': 1,
          'mania': 1,
          'nif': 1,
          'id': 1,
          'give': 1,
          'zero': 1,
          'stars': 1,
          'loud': 1,
          'excessive': 1,
          'even': 1,
          'isnt': 1,
          'meaning': 1,
          'na': 1,
          'succeeds': 1,
          'entertainment': 1,
          'deserve': 1,
          'fully': 1,
          'lambasted': 1,
          'recognize': 1,
          'irrefutable': 1,
          'deny': 1,
          'zany': 1,
          'useless': 1,
          'noh': 1,
          'looking': 1,
          'desperately': 1,
          'real': 1,
          'amongst': 1,
          'crowd': 1,
          'laughably': 1,
          'inane': 1,
          'concepts': 1,
          'admire': 1,
          'excuse': 1,
          'indeed': 1,
          'awful': 1,
          'nneg': 1}),
 Counter({'movie': 15,
          'nthe': 7,
          'bang': 7,
          'characters': 5,
          'people': 5,
          'nbang': 5,
          'ship': 5,
          'liner': 4,
          'sequence': 4,
          'though': 4,
          'one': 4,
          'oil': 4,
          'tanker': 4,
          'nthis': 4,
          'cruise': 3,
          'struck': 3,
          'like': 3,
          'original': 3,
          'many': 3,
          'speed': 3,
          'make': 3,
          'minutes': 3,
          'get': 3,
          'nin': 3,
          'jason': 3,
          'think': 3,
          'oh': 3,
          'doesnt': 3,
          'sequences': 3,
          'dog': 3,
          'sequel': 2,
          'nit': 2,
          'twice': 2,
          'shallow': 2,
          'theres': 2,
          'turned': 2,
          'first': 2,
          'thing': 2,
          'work': 2,
          'opening': 2,
          'terrible': 2,
          'head': 2,
          'end': 2,
          'neven': 2,
          'annie': 2,
          'chainsaw': 2,
          'escape': 2,
          'till': 2,
          'cant': 2,
          'point': 2,
          'character': 2,
          'little': 2,
          'patric': 2,
          'back': 2,
          'might': 2,
          'tree': 2,
          'stump': 2,
          'frown': 2,
          'bad': 2,
          'go': 2,
          'wrong': 2,
          'around': 2,
          'even': 2,
          'real': 2,
          'looks': 2,
          'terrific': 2,
          'ive': 2,
          'ever': 2,
          'feeling': 2,
          'part': 2,
          'going': 2,
          'hit': 2,
          'n20': 2,
          'see': 2,
          'crashes': 2,
          'town': 2,
          '15': 2,
          'welcome': 1,
          'ohso': 1,
          'typical': 1,
          'tries': 1,
          'big': 1,
          'predecessor': 1,
          'yet': 1,
          'ends': 1,
          'nshallow': 1,
          'hmm': 1,
          'idea': 1,
          'nmaybe': 1,
          'illfated': 1,
          'reef': 1,
          'early': 1,
          'things': 1,
          'may': 1,
          'better': 1,
          'nsurprised': 1,
          'camera': 1,
          'anyway': 1,
          'nlooked': 1,
          'cameramen': 1,
          'drunk': 1,
          'kept': 1,
          'tripping': 1,
          'feet': 1,
          'ndifferent': 1,
          'nwell': 1,
          'actually': 1,
          'heres': 1,
          'rundown': 1,
          'nannie': 1,
          'highlight': 1,
          'must': 1,
          'seriously': 1,
          'banged': 1,
          'train': 1,
          'crash': 1,
          'nwhy': 1,
          'nbecause': 1,
          'somethings': 1,
          'got': 1,
          'account': 1,
          'losing': 1,
          'iq': 1,
          'points': 1,
          'wasnt': 1,
          'exactly': 1,
          'rocket': 1,
          'scientist': 1,
          'actions': 1,
          'want': 1,
          'beat': 1,
          'wall': 1,
          'nfor': 1,
          'instance': 1,
          'successfully': 1,
          'using': 1,
          'cut': 1,
          'hole': 1,
          'door': 1,
          'group': 1,
          'noxious': 1,
          'gases': 1,
          'stands': 1,
          'middle': 1,
          'five': 1,
          'someone': 1,
          'reminds': 1,
          'ut': 1,
          'gets': 1,
          'faces': 1,
          'fact': 1,
          'sandras': 1,
          'scantly': 1,
          'dressed': 1,
          'extras': 1,
          'hercules': 1,
          'constantly': 1,
          'rescued': 1,
          'njason': 1,
          'nall': 1,
          'say': 1,
          'bring': 1,
          'keanu': 1,
          'nkeanu': 1,
          'reeves': 1,
          'emotional': 1,
          'range': 1,
          'nthats': 1,
          'ni': 1,
          'dont': 1,
          'changed': 1,
          'facial': 1,
          'expressions': 1,
          'smile': 1,
          'cameras': 1,
          'nnow': 1,
          'said': 1,
          'nwooden': 1,
          'describe': 1,
          'guys': 1,
          'performance': 1,
          'itll': 1,
          'guy': 1,
          'ahh': 1,
          'william': 1,
          'ndafoe': 1,
          'bright': 1,
          'move': 1,
          'nhow': 1,
          'star': 1,
          'acknowledged': 1,
          'classic': 1,
          'body': 1,
          'evidence': 1,
          'n': 1,
          'yes': 1,
          'sarcasm': 1,
          'nhis': 1,
          'wide': 1,
          'eyed': 1,
          'maniac': 1,
          'start': 1,
          'ngoes': 1,
          'steadily': 1,
          'downhill': 1,
          'progresses': 1,
          'degenerates': 1,
          'chasing': 1,
          'hostage': 1,
          'already': 1,
          'money': 1,
          'nthough': 1,
          'id': 1,
          'give': 1,
          'double': 1,
          'thumbs': 1,
          'nice': 1,
          'nconsidering': 1,
          'cost': 1,
          '100': 1,
          'million': 1,
          'dollars': 1,
          'youd': 1,
          'hope': 1,
          'thered': 1,
          'least': 1,
          'couple': 1,
          'eyepopper': 1,
          'given': 1,
          'away': 1,
          'trailer': 1,
          'sideswipes': 1,
          'surprised': 1,
          'hear': 1,
          'completely': 1,
          'ncomputer': 1,
          'generated': 1,
          'nwow': 1,
          'ndont': 1,
          'seen': 1,
          'cg': 1,
          'model': 1,
          'look': 1,
          'trying': 1,
          'disable': 1,
          'propellers': 1,
          'also': 1,
          'time': 1,
          'entire': 1,
          'lackofspeed': 1,
          'problem': 1,
          'affects': 1,
          'nsuch': 1,
          'later': 1,
          'min': 1,
          'nget': 1,
          'failed': 1,
          'simply': 1,
          'didnt': 1,
          'live': 1,
          'name': 1,
          'nwas': 1,
          'lead': 1,
          'split': 1,
          'second': 1,
          'decisions': 1,
          'survive': 1,
          'felt': 1,
          'well': 1,
          'gon': 1,
          'na': 1,
          'run': 1,
          'island': 1,
          'hours': 1,
          'stroll': 1,
          'engineering': 1,
          'turn': 1,
          'engines': 1,
          'im': 1,
          'npassing': 1,
          'cafeteria': 1,
          'way': 1,
          'anybody': 1,
          'anything': 1,
          'ending': 1,
          'really': 1,
          'features': 1,
          'since': 1,
          'found': 1,
          'expensive': 1,
          'realistic': 1,
          'surprise': 1,
          'nsurprise': 1,
          'takes': 1,
          'waaaaay': 1,
          'long': 1,
          'seemed': 1,
          'finally': 1,
          'stopped': 1,
          'none': 1,
          'extremely': 1,
          'poor': 1,
          'scriptiing': 1,
          'harbour': 1,
          '25': 1,
          'killed': 1,
          'ntheres': 1,
          'left': 1,
          'nso': 1,
          'stops': 1,
          'safe': 1,
          'sound': 1,
          'cheering': 1,
          'audience': 1,
          'sitting': 1,
          'thinking': 1,
          'wait': 1,
          'sec': 1,
          'happy': 1,
          'moment': 1,
          'nthen': 1,
          'nalmost': 1,
          'fell': 1,
          'seat': 1,
          'saw': 1,
          'bit': 1,
          'dodging': 1,
          'falling': 1,
          'debris': 1,
          'nputting': 1,
          'peril': 1,
          'become': 1,
          'ultimate': 1,
          'hollywood': 1,
          'cliche': 1,
          'every': 1,
          'nmovie': 1,
          'seems': 1,
          'dogindanger': 1,
          'volcano': 1,
          'dantes': 1,
          'peak': 1,
          'independence': 1,
          'day': 1,
          'daylight': 1,
          'twister': 1,
          'nlost': 1,
          'world': 1,
          'etc': 1,
          'netc': 1,
          'perfect': 1,
          'example': 1,
          'ndirector': 1,
          'jan': 1,
          'de': 1,
          'bont': 1,
          'try': 1,
          'watching': 1,
          'orignal': 1,
          'backtoback': 1,
          'realises': 1,
          'went': 1,
          'nneg': 1}),
 Counter({'killer': 8,
          'tracks': 5,
          'couple': 5,
          'film': 5,
          'cabin': 4,
          'films': 4,
          'test': 3,
          'one': 3,
          'larson': 3,
          'lebrock': 3,
          'seem': 3,
          'company': 2,
          'wants': 2,
          'thinks': 2,
          'great': 2,
          'idea': 2,
          'spend': 2,
          'week': 2,
          'isolated': 2,
          'watching': 2,
          'nstrike': 2,
          'fact': 2,
          'good': 2,
          'sign': 2,
          'two': 2,
          'ever': 2,
          'get': 2,
          'knows': 2,
          'first': 2,
          'brolin': 2,
          'later': 2,
          'character': 2,
          'reason': 2,
          'time': 2,
          'characters': 2,
          'become': 2,
          'dont': 2,
          'like': 2,
          'business': 2,
          'nthe': 2,
          'misery': 2,
          'around': 2,
          'old': 2,
          'chuckle': 2,
          'synopsis': 1,
          'president': 1,
          'selfappointed': 1,
          'successor': 1,
          'whos': 1,
          'psychotic': 1,
          'wives': 1,
          'hundred': 1,
          'miles': 1,
          'civilization': 1,
          'dependable': 1,
          'transportation': 1,
          'means': 1,
          'communication': 1,
          'heavy': 1,
          'snowfall': 1,
          'ncomments': 1,
          'strikes': 1,
          'even': 1,
          'began': 1,
          'someone': 1,
          'scrawled': 1,
          'word': 1,
          'garbage': 1,
          'videotapes': 1,
          'sticker': 1,
          'black': 1,
          'marker': 1,
          'typically': 1,
          'rent': 1,
          'came': 1,
          'previews': 1,
          'played': 1,
          'ndid': 1,
          'sinking': 1,
          'premonition': 1,
          'movies': 1,
          'quality': 1,
          'lack': 1,
          'thereof': 1,
          'trailers': 1,
          'come': 1,
          'nwell': 1,
          'cheesy': 1,
          'advertised': 1,
          'heard': 1,
          'starring': 1,
          'people': 1,
          'looked': 1,
          'bad': 1,
          'definately': 1,
          'ntracks': 1,
          'completed': 1,
          'strikeout': 1,
          'nabout': 1,
          'positive': 1,
          'thing': 1,
          'going': 1,
          'sports': 1,
          'nice': 1,
          'scenery': 1,
          'nto': 1,
          'fair': 1,
          'halfhour': 1,
          'promises': 1,
          'least': 1,
          'watchable': 1,
          'thriller': 1,
          'nwolf': 1,
          'bears': 1,
          'passing': 1,
          'resemblance': 1,
          'hugh': 1,
          'grant': 1,
          'adequately': 1,
          'plays': 1,
          'underling': 1,
          'obviously': 1,
          'set': 1,
          'title': 1,
          'njames': 1,
          'kelly': 1,
          'equally': 1,
          'adequate': 1,
          'loving': 1,
          'threaten': 1,
          'nbrolins': 1,
          'inexplicable': 1,
          'practically': 1,
          'hes': 1,
          'decided': 1,
          'giving': 1,
          'full': 1,
          'control': 1,
          'nby': 1,
          'arrive': 1,
          'begins': 1,
          'tedious': 1,
          'napparently': 1,
          'brolins': 1,
          'successors': 1,
          'involves': 1,
          'chopping': 1,
          'wood': 1,
          'fireplace': 1,
          'skiing': 1,
          'attributes': 1,
          'necessary': 1,
          'run': 1,
          'city': 1,
          'nbut': 1,
          'know': 1,
          'ni': 1,
          'think': 1,
          'though': 1,
          'invested': 1,
          'better': 1,
          'furniture': 1,
          'beds': 1,
          'closets': 1,
          'habit': 1,
          'breaking': 1,
          'slightest': 1,
          'touch': 1,
          'nlarsons': 1,
          'accidently': 1,
          'kills': 1,
          'wife': 1,
          'rather': 1,
          'kill': 1,
          'nthis': 1,
          'leaves': 1,
          'movie': 1,
          'hour': 1,
          'go': 1,
          'three': 1,
          'really': 1,
          'isnt': 1,
          'enough': 1,
          'sustain': 1,
          'writer': 1,
          'must': 1,
          'taken': 1,
          'cue': 1,
          'stephen': 1,
          'king': 1,
          'scenes': 1,
          'lifted': 1,
          'geralds': 1,
          'game': 1,
          'nlarson': 1,
          'fight': 1,
          'torture': 1,
          'tables': 1,
          'turned': 1,
          'times': 1,
          'tramps': 1,
          'snow': 1,
          'looking': 1,
          'help': 1,
          'nsome': 1,
          'guys': 1,
          'add': 1,
          'body': 1,
          'count': 1,
          'without': 1,
          'killing': 1,
          'everyone': 1,
          'alive': 1,
          'end': 1,
          'guy': 1,
          'however': 1,
          'miraculously': 1,
          'survives': 1,
          'death': 1,
          'appears': 1,
          'killed': 1,
          'scene': 1,
          'ludicrous': 1,
          'worthy': 1,
          'noutside': 1,
          'unfortunately': 1,
          'bore': 1,
          'obvious': 1,
          'plot': 1,
          'drawn': 1,
          'ad': 1,
          'infinitum': 1,
          'actors': 1,
          'increasing': 1,
          'obnoxious': 1,
          'nif': 1,
          'youre': 1,
          'video': 1,
          'store': 1,
          'thinking': 1,
          'renting': 1,
          'turkey': 1,
          'nmake': 1,
          'far': 1,
          'superior': 1,
          'suspense': 1,
          'nneg': 1}),
 Counter({'mars': 19,
          'mission': 14,
          'one': 12,
          'film': 10,
          'like': 9,
          'films': 8,
          'nthe': 8,
          '2001': 7,
          'people': 5,
          'team': 5,
          'life': 5,
          'space': 4,
          'aliens': 4,
          'might': 4,
          'time': 4,
          'manages': 4,
          'monolith': 4,
          'things': 4,
          'way': 4,
          'going': 3,
          'nwhy': 3,
          'dont': 3,
          'script': 3,
          'assume': 3,
          'start': 3,
          'plot': 3,
          'rescue': 3,
          'wife': 3,
          'attempt': 3,
          'must': 3,
          'earth': 3,
          'isnt': 3,
          'sequence': 3,
          'looking': 3,
          'scene': 3,
          'also': 3,
          'go': 3,
          'characters': 3,
          'tell': 3,
          'know': 3,
          'show': 3,
          'nthere': 2,
          'probably': 2,
          'enjoy': 2,
          'seen': 2,
          'kind': 2,
          'already': 2,
          'armageddon': 2,
          'encounters': 2,
          'nbecause': 2,
          'nall': 2,
          'cribbed': 2,
          'better': 2,
          'thing': 2,
          'course': 2,
          'main': 2,
          'audience': 2,
          'havent': 2,
          'used': 2,
          'running': 2,
          'n': 2,
          'nothing': 2,
          'long': 2,
          'rotating': 2,
          'station': 2,
          'strangely': 2,
          'na': 2,
          'tim': 2,
          'robbins': 2,
          'jim': 2,
          'sinise': 2,
          'nafter': 2,
          'aboard': 2,
          'vessel': 2,
          'return': 2,
          'home': 2,
          'makes': 2,
          'de': 2,
          'palma': 2,
          'tension': 2,
          'scenes': 2,
          'ship': 2,
          'hole': 2,
          'away': 2,
          'rest': 2,
          'character': 2,
          'little': 2,
          'obvious': 2,
          'opening': 2,
          'shot': 2,
          'right': 2,
          'us': 2,
          'something': 2,
          'whats': 2,
          'dialogue': 2,
          'astronaut': 2,
          'sure': 2,
          'thats': 2,
          'nastronaut': 2,
          'learned': 2,
          'get': 2,
          'viewers': 2,
          'nand': 2,
          'facilitated': 2,
          'evolution': 2,
          'different': 2,
          'fact': 2,
          'substance': 2,
          'requirement': 1,
          'potential': 1,
          'viewer': 1,
          'certain': 1,
          'iq': 1,
          'order': 1,
          'see': 1,
          'quite': 1,
          'nbut': 1,
          'likely': 1,
          'following': 1,
          'movies': 1,
          'odyssey': 1,
          'apollo': 1,
          '13': 1,
          'abyss': 1,
          'close': 1,
          'third': 1,
          'e': 1,
          'extraterrestrial': 1,
          'alien': 1,
          'original': 1,
          'idea': 1,
          'cases': 1,
          'nif': 1,
          'sort': 1,
          'mind': 1,
          'nof': 1,
          'reasons': 1,
          'written': 1,
          'seem': 1,
          'filled': 1,
          'brains': 1,
          'intend': 1,
          'stupid': 1,
          'boring': 1,
          'greatly': 1,
          'concerns': 1,
          'sent': 1,
          'first': 1,
          'manned': 1,
          'trip': 1,
          'ever': 1,
          'made': 1,
          'red': 1,
          'planet': 1,
          'nluke': 1,
          'graham': 1,
          'cheadle': 1,
          'leads': 1,
          'jointly': 1,
          'formed': 1,
          'americans': 1,
          'russians': 1,
          'mysterious': 1,
          'emits': 1,
          'strange': 1,
          'pulse': 1,
          'pulseemitting': 1,
          'moon': 1,
          'try': 1,
          'study': 1,
          'giant': 1,
          'sand': 1,
          'tornado': 1,
          'comes': 1,
          'top': 1,
          'swallows': 1,
          'except': 1,
          'luke': 1,
          'survives': 1,
          'enough': 1,
          'send': 1,
          'garbled': 1,
          'message': 1,
          'back': 1,
          'looks': 1,
          'planned': 1,
          'husband': 1,
          'woody': 1,
          'blake': 1,
          'terri': 1,
          'fisher': 1,
          'connie': 1,
          'nielsen': 1,
          'obligatory': 1,
          'pilot': 1,
          'troubled': 1,
          'past': 1,
          'mcconnell': 1,
          'gary': 1,
          'extra': 1,
          'crew': 1,
          'member': 1,
          'phil': 1,
          'ohlmyer': 1,
          'jerry': 1,
          'oconnell': 1,
          'along': 1,
          'ride': 1,
          'zerogravity': 1,
          'dancing': 1,
          'run': 1,
          'problems': 1,
          'engines': 1,
          'blown': 1,
          'forcing': 1,
          'desperate': 1,
          'landing': 1,
          'supply': 1,
          'nnow': 1,
          'stranded': 1,
          'minimal': 1,
          'supplies': 1,
          'decide': 1,
          'whether': 1,
          'risk': 1,
          'entering': 1,
          'contain': 1,
          'information': 1,
          'originated': 1,
          'critic': 1,
          'wonder': 1,
          'talking': 1,
          'wrong': 1,
          'lets': 1,
          'work': 1,
          'director': 1,
          'brian': 1,
          'create': 1,
          'eerie': 1,
          'middle': 1,
          'nthats': 1,
          'neverything': 1,
          'else': 1,
          'fails': 1,
          'failure': 1,
          'palmas': 1,
          'fault': 1,
          'hes': 1,
          'working': 1,
          'atrocious': 1,
          'nonly': 1,
          'awful': 1,
          'lot': 1,
          'jupiter': 1,
          'teams': 1,
          'air': 1,
          'begins': 1,
          'frantically': 1,
          'search': 1,
          'patch': 1,
          'come': 1,
          'save': 1,
          'comrade': 1,
          'floating': 1,
          'provides': 1,
          'realize': 1,
          'entire': 1,
          'dangermore': 1,
          'dangerattempted': 1,
          'absolutely': 1,
          'contrived': 1,
          'generate': 1,
          'thrilling': 1,
          'ntake': 1,
          'affected': 1,
          'suffers': 1,
          'holes': 1,
          'ships': 1,
          'computer': 1,
          'sounds': 1,
          'hal': 1,
          'uh': 1,
          'able': 1,
          'detect': 1,
          'chamber': 1,
          'engine': 1,
          'outside': 1,
          'solution': 1,
          'easily': 1,
          'presented': 1,
          'inside': 1,
          'nshouldnt': 1,
          'astronauts': 1,
          'trained': 1,
          'deal': 1,
          'hull': 1,
          'breach': 1,
          'idiots': 1,
          'properly': 1,
          'develop': 1,
          'conflict': 1,
          'clumsily': 1,
          'delivered': 1,
          'excruciatingly': 1,
          'exposition': 1,
          'rips': 1,
          'orson': 1,
          'welles': 1,
          'robert': 1,
          'altman': 1,
          'utilizing': 1,
          'tracking': 1,
          'repeatedly': 1,
          'bad': 1,
          'cant': 1,
          'determined': 1,
          'psychologically': 1,
          'inadequate': 1,
          'died': 1,
          'together': 1,
          'anyone': 1,
          'really': 1,
          'talk': 1,
          'ncant': 1,
          'find': 1,
          'less': 1,
          'grating': 1,
          'matter': 1,
          'maybe': 1,
          'flashback': 1,
          'whole': 1,
          'filmmakers': 1,
          'content': 1,
          'merely': 1,
          'exactly': 1,
          'every': 1,
          'nsample': 1,
          'look': 1,
          'theres': 1,
          'b': 1,
          'yeah': 1,
          'c': 1,
          'hey': 1,
          'guys': 1,
          'nthat': 1,
          'exchange': 1,
          'actually': 1,
          'wouldnt': 1,
          'surprised': 1,
          'nfor': 1,
          'cribbing': 1,
          'kubrick': 1,
          'spielberg': 1,
          'james': 1,
          'cameron': 1,
          'even': 1,
          'ron': 1,
          'howard': 1,
          'makers': 1,
          'directors': 1,
          'well': 1,
          'nde': 1,
          'seems': 1,
          'forgotten': 1,
          'nthis': 1,
          'mentallychallenged': 1,
          'filmmaking': 1,
          'wont': 1,
          'explain': 1,
          'everything': 1,
          'five': 1,
          'times': 1,
          'nfourthgraders': 1,
          'may': 1,
          'appreciate': 1,
          'intelligence': 1,
          'insulted': 1,
          'principal': 1,
          'actors': 1,
          'sleepwalk': 1,
          'never': 1,
          'managing': 1,
          'apparent': 1,
          'im': 1,
          'paycheck': 1,
          'attitude': 1,
          'ncheadle': 1,
          'stumbles': 1,
          'awkward': 1,
          'lines': 1,
          'narmin': 1,
          'muellerstahl': 1,
          'thoroughly': 1,
          'embarrass': 1,
          'unbilled': 1,
          'cameo': 1,
          'nrobbins': 1,
          'puts': 1,
          'game': 1,
          'face': 1,
          'phones': 1,
          'standard': 1,
          'decent': 1,
          'guy': 1,
          'performance': 1,
          'hams': 1,
          'wistful': 1,
          'facial': 1,
          'expressions': 1,
          'watching': 1,
          'tapes': 1,
          'dead': 1,
          'played': 1,
          'kim': 1,
          'delaney': 1,
          'still': 1,
          'deliver': 1,
          'ridiculous': 1,
          'heavyhanded': 1,
          'monologue': 1,
          'meaning': 1,
          'especially': 1,
          'stolenfromnolessthanthreemovies': 1,
          'lollipop': 1,
          'whoever': 1,
          'names': 1,
          'conclusion': 1,
          'combines': 1,
          'endless': 1,
          'explanation': 1,
          'subpar': 1,
          'cgi': 1,
          'effects': 1,
          'gagging': 1,
          'sentimentality': 1,
          'alienate': 1,
          'enjoying': 1,
          'entirely': 1,
          'unknown': 1,
          'world': 1,
          'nit': 1,
          'could': 1,
          'said': 1,
          'fans': 1,
          'brainless': 1,
          'action': 1,
          'comment': 1,
          'ignores': 1,
          'incredibly': 1,
          'slowgoing': 1,
          'nleisurely': 1,
          'pacing': 1,
          'helped': 1,
          'stolen': 1,
          'dealt': 1,
          'ideas': 1,
          'much': 1,
          'thoughtful': 1,
          'fashion': 1,
          'generally': 1,
          'contained': 1,
          'engaging': 1,
          'nsupposedly': 1,
          'intended': 1,
          'choke': 1,
          'decides': 1,
          'end': 1,
          'totally': 1,
          'onecharacterdecidesnottoreturn': 1,
          'ending': 1,
          'suspect': 1,
          'either': 1,
          'laughing': 1,
          'groaning': 1,
          'nme': 1,
          'alternated': 1,
          'two': 1,
          'good': 1,
          'finally': 1,
          'ends': 1,
          'movie': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'nthe': 8,
          'movie': 5,
          'goodman': 4,
          'work': 4,
          'adams': 4,
          'sphere': 4,
          'na': 4,
          'one': 4,
          'doesnt': 4,
          'science': 3,
          'fiction': 3,
          'actors': 3,
          'nwhen': 3,
          'team': 3,
          'ship': 3,
          'n': 3,
          'alien': 3,
          'jerry': 3,
          'nthis': 3,
          'squid': 3,
          'scenes': 3,
          'much': 3,
          'neven': 3,
          'never': 3,
          'nothing': 3,
          'could': 3,
          'michael': 2,
          'redman': 2,
          'experiences': 2,
          'occur': 2,
          'thinking': 2,
          'called': 2,
          'ocean': 2,
          'plane': 2,
          '000': 2,
          'surface': 2,
          'first': 2,
          'contact': 2,
          'scientists': 2,
          'group': 2,
          'report': 2,
          'turns': 2,
          'named': 2,
          'storm': 2,
          'name': 2,
          'screen': 2,
          'situation': 2,
          'jellyfish': 2,
          'sea': 2,
          'snakes': 2,
          'even': 2,
          'far': 2,
          'levinson': 2,
          'audience': 2,
          'nits': 2,
          'still': 2,
          'nafter': 2,
          'ntheres': 2,
          'must': 2,
          'ending': 2,
          'explained': 2,
          'already': 2,
          'difficult': 2,
          'underwater': 1,
          'stays': 1,
          'submerged': 1,
          'nsphere': 1,
          'review': 1,
          'copyright': 1,
          '1998': 1,
          'none': 1,
          'unpleasant': 1,
          'theater': 1,
          'cast': 1,
          'fine': 1,
          'end': 1,
          'wastes': 1,
          'talents': 1,
          'nyou': 1,
          'keep': 1,
          'might': 1,
          'accomplished': 1,
          'time': 1,
          'squandered': 1,
          'npsychologist': 1,
          'norman': 1,
          'dustin': 1,
          'hoffman': 1,
          'middle': 1,
          'pacific': 1,
          'survivors': 1,
          'crash': 1,
          'arrives': 1,
          'site': 1,
          'discovers': 1,
          'rather': 1,
          'enormous': 1,
          'spacecraft': 1,
          'sitting': 1,
          '1': 1,
          'feet': 1,
          'almost': 1,
          '300': 1,
          'years': 1,
          'nhaving': 1,
          'written': 1,
          'paper': 1,
          'bush': 1,
          'administration': 1,
          'handle': 1,
          'chosen': 1,
          'head': 1,
          'investigating': 1,
          'nhis': 1,
          'outlined': 1,
          'consists': 1,
          'beth': 1,
          'halperin': 1,
          'sharon': 1,
          'stone': 1,
          'biochemist': 1,
          'harry': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'mathematician': 1,
          'ted': 1,
          'fielding': 1,
          'liev': 1,
          'schreiber': 1,
          'astrophysicist': 1,
          'nunfortunately': 1,
          'writing': 1,
          'blowoff': 1,
          'project': 1,
          'money': 1,
          'thencolleagues': 1,
          'explains': 1,
          'reads': 1,
          'government': 1,
          'documents': 1,
          'nlead': 1,
          'harold': 1,
          'barnes': 1,
          'peter': 1,
          'coyote': 1,
          'top': 1,
          'secret': 1,
          'federal': 1,
          'operative': 1,
          'descends': 1,
          'mobile': 1,
          'undersea': 1,
          'headquarters': 1,
          'set': 1,
          'next': 1,
          'vessel': 1,
          'nonce': 1,
          'stroll': 1,
          'knock': 1,
          'door': 1,
          'explore': 1,
          'stilloperational': 1,
          'ufo': 1,
          'ndiscovering': 1,
          'surprising': 1,
          'origin': 1,
          'crew': 1,
          'finds': 1,
          'astonishing': 1,
          'gigantic': 1,
          'golden': 1,
          'liquid': 1,
          'metal': 1,
          'enters': 1,
          'weirdness': 1,
          'unfolds': 1,
          'rolls': 1,
          'forced': 1,
          'remain': 1,
          'unseen': 1,
          'presence': 1,
          'begins': 1,
          'communicate': 1,
          'computer': 1,
          'ni': 1,
          'happy': 1,
          'flashes': 1,
          'across': 1,
          'unsettling': 1,
          'psychologist': 1,
          'happens': 1,
          'gets': 1,
          'mad': 1,
          'asks': 1,
          'nbarnes': 1,
          'pragmatic': 1,
          'needs': 1,
          'last': 1,
          'cant': 1,
          'put': 1,
          'made': 1,
          'nthen': 1,
          'bad': 1,
          'ndeadly': 1,
          'beasts': 1,
          'appear': 1,
          'nowhere': 1,
          'gang': 1,
          'kills': 1,
          'navy': 1,
          'personnel': 1,
          'nlethal': 1,
          'attack': 1,
          'giant': 1,
          'batters': 1,
          'habitat': 1,
          'reading': 1,
          '20': 1,
          'leagues': 1,
          'suspicious': 1,
          'turn': 1,
          'makings': 1,
          'firstrate': 1,
          'mans': 1,
          'nhowever': 1,
          'finest': 1,
          'ingredients': 1,
          'dont': 1,
          'go': 1,
          'hands': 1,
          'chief': 1,
          'seem': 1,
          'care': 1,
          'product': 1,
          'ndirector': 1,
          'barry': 1,
          'churned': 1,
          'mishmosh': 1,
          'engage': 1,
          'beyond': 1,
          'skillful': 1,
          'suspense': 1,
          'zooms': 1,
          'players': 1,
          'introduced': 1,
          'without': 1,
          'characterization': 1,
          'justification': 1,
          'like': 1,
          'speedreading': 1,
          'novel': 1,
          'realizing': 1,
          'missed': 1,
          'nuances': 1,
          'nit': 1,
          'get': 1,
          'better': 1,
          'action': 1,
          'begin': 1,
          'nwhile': 1,
          'adequate': 1,
          'job': 1,
          'limited': 1,
          'roles': 1,
          'people': 1,
          'flat': 1,
          'noddly': 1,
          'hardly': 1,
          'reactions': 1,
          'deaths': 1,
          'around': 1,
          'interior': 1,
          'bothers': 1,
          'ask': 1,
          'happened': 1,
          'ntheir': 1,
          'history': 1,
          'together': 1,
          'intriguing': 1,
          'plot': 1,
          'device': 1,
          'barely': 1,
          'exploited': 1,
          'halperins': 1,
          'illconceived': 1,
          'affair': 1,
          'student': 1,
          'mentioned': 1,
          'passing': 1,
          'nher': 1,
          'psychotic': 1,
          'tendencies': 1,
          'talked': 1,
          'convincing': 1,
          'truism': 1,
          'items': 1,
          'shown': 1,
          'early': 1,
          'used': 1,
          'obvious': 1,
          'emergency': 1,
          'minisub': 1,
          'know': 1,
          'whats': 1,
          'going': 1,
          'happen': 1,
          'affectations': 1,
          'distracting': 1,
          'nchapter': 1,
          'headings': 1,
          'divide': 1,
          'function': 1,
          'shaky': 1,
          'camera': 1,
          'muddies': 1,
          'perplexing': 1,
          'chaos': 1,
          'nmuch': 1,
          'goes': 1,
          'confusing': 1,
          'follow': 1,
          'nalthough': 1,
          'disorientation': 1,
          'eventually': 1,
          'understandable': 1,
          'great': 1,
          'deal': 1,
          'isnt': 1,
          'internally': 1,
          'consistent': 1,
          'make': 1,
          'sense': 1,
          'nare': 1,
          'manifestations': 1,
          'real': 1,
          'kill': 1,
          'queen': 1,
          'latifa': 1,
          'throwaway': 1,
          'role': 1,
          'nearly': 1,
          'destroys': 1,
          'outpost': 1,
          'bites': 1,
          'fatal': 1,
          'effect': 1,
          'scene': 1,
          'sub': 1,
          'suggests': 1,
          'illusion': 1,
          'earlier': 1,
          'episodes': 1,
          'indicate': 1,
          'nnot': 1,
          'everything': 1,
          'death': 1,
          'major': 1,
          'questions': 1,
          'answers': 1,
          'nwhere': 1,
          'came': 1,
          'clarified': 1,
          'ended': 1,
          'floor': 1,
          '1709': 1,
          'merely': 1,
          'alluded': 1,
          'enigmatic': 1,
          'mysterious': 1,
          'credits': 1,
          'roll': 1,
          'climax': 1,
          'followed': 1,
          '15': 1,
          'minutes': 1,
          'epilogue': 1,
          'little': 1,
          'weaken': 1,
          'labored': 1,
          'tale': 1,
          'prerelease': 1,
          'testing': 1,
          'back': 1,
          'reshoot': 1,
          'imagine': 1,
          'original': 1,
          'worse': 1,
          'nfollowing': 1,
          'recent': 1,
          'tradition': 1,
          'lengthy': 1,
          'films': 1,
          'weighs': 1,
          'two': 1,
          'long': 1,
          'hours': 1,
          'weak': 1,
          'cut': 1,
          'wouldnt': 1,
          'left': 1,
          'supposedly': 1,
          'held': 1,
          'effects': 1,
          'theres': 1,
          'special': 1,
          'nwe': 1,
          'see': 1,
          'monstrous': 1,
          'menacing': 1,
          'nstealing': 1,
          'abyss': 1,
          'disastrous': 1,
          'event': 1,
          'horizon': 1,
          'learned': 1,
          'nremarkably': 1,
          'hoffmans': 1,
          'currently': 1,
          'showing': 1,
          'wag': 1,
          'dog': 1,
          'smart': 1,
          'entertaining': 1,
          'piece': 1,
          'titled': 1,
          'sans': 1,
          'word': 1,
          'nneg': 1}),
 Counter({'van': 7,
          'damme': 7,
          'action': 6,
          '_knock_off_': 5,
          'visual': 4,
          'camera': 4,
          'hong': 3,
          'tsui': 3,
          '_double_team_': 3,
          'make': 3,
          'ntsui': 3,
          'jeans': 3,
          'cia': 3,
          'laughs': 3,
          'though': 3,
          'kong': 2,
          'continues': 2,
          'razzle': 2,
          'dazzle': 2,
          'best': 2,
          'performances': 2,
          'fairly': 2,
          'isnt': 2,
          'much': 2,
          'little': 2,
          'nvan': 2,
          'marcus': 2,
          'company': 2,
          'scheme': 2,
          'bombs': 2,
          'hk': 2,
          'electronic': 2,
          'nits': 2,
          'screen': 2,
          'showing': 2,
          'world': 2,
          'dammes': 2,
          'acting': 2,
          'usual': 2,
          'desouza': 2,
          'actually': 2,
          'entire': 2,
          'movie': 2,
          'coming': 2,
          'one': 2,
          'scene': 2,
          'tsuis': 2,
          'nfor': 2,
          'trick': 2,
          'going': 2,
          'hand': 2,
          'would': 2,
          'something': 2,
          'sequences': 2,
          'fight': 2,
          'anything': 2,
          'nif': 2,
          'renowned': 1,
          'director': 1,
          'hark': 1,
          'first': 1,
          'teamed': 1,
          'jeanclaude': 1,
          'stars': 1,
          '1997': 1,
          'pairing': 1,
          'dennis': 1,
          'rodman': 1,
          'managed': 1,
          'initially': 1,
          'appeared': 1,
          'disaster': 1,
          'slick': 1,
          'stylish': 1,
          'somewhat': 1,
          'diverting': 1,
          'timekiller': 1,
          'energetically': 1,
          'pile': 1,
          'latest': 1,
          'collaboration': 1,
          'muscles': 1,
          'brussels': 1,
          'time': 1,
          'around': 1,
          'style': 1,
          'neither': 1,
          'save': 1,
          'script': 1,
          'ridiculous': 1,
          'worst': 1,
          'incomprehensible': 1,
          'hide': 1,
          'host': 1,
          'truly': 1,
          'lousy': 1,
          'nwriter': 1,
          'steven': 1,
          'e': 1,
          'desouzas': 1,
          'straightforward': 1,
          'plotline': 1,
          'outre': 1,
          '_double_team_s': 1,
          'strange': 1,
          'yarn': 1,
          'involving': 1,
          'secret': 1,
          'think': 1,
          'tankprison': 1,
          'makes': 1,
          'sense': 1,
          'plays': 1,
          'ray': 1,
          'kongbased': 1,
          'sales': 1,
          'rep': 1,
          'stumbles': 1,
          'upon': 1,
          'russian': 1,
          'terrorist': 1,
          'implant': 1,
          'powerful': 1,
          'microchipsized': 1,
          'product': 1,
          'exports': 1,
          'u': 1,
          'dolls': 1,
          'equipment': 1,
          'yes': 1,
          'part': 1,
          'type': 1,
          'ransom': 1,
          'remember': 1,
          'isand': 1,
          'kid': 1,
          'notgraphics': 1,
          'computer': 1,
          'map': 1,
          'detonating': 1,
          'hatwearing': 1,
          'figure': 1,
          'side': 1,
          'bursting': 1,
          'laughter': 1,
          'n': 1,
          'crowd': 1,
          'attended': 1,
          'spontaneously': 1,
          'throughout': 1,
          'nwhile': 1,
          'films': 1,
          'share': 1,
          'unintentional': 1,
          'mostly': 1,
          'due': 1,
          'stiff': 1,
          'skills': 1,
          'physically': 1,
          'agile': 1,
          'delivers': 1,
          'many': 1,
          'embarrassing': 1,
          'directorial': 1,
          'effort': 1,
          '1996s': 1,
          '_the_quest_': 1,
          'na': 1,
          'lot': 1,
          'earned': 1,
          'particularly': 1,
          'painful': 1,
          'lines': 1,
          'smoked': 1,
          'badass': 1,
          'like': 1,
          'roman': 1,
          'candle': 1,
          'nand': 1,
          'entrepreneurship': 1,
          'babycakes': 1,
          'nstanding': 1,
          'among': 1,
          'favorites': 1,
          'nbut': 1,
          'indeed': 1,
          'pathetic': 1,
          'provide': 1,
          'bulk': 1,
          '_knock_off_s': 1,
          'true': 1,
          'laughable': 1,
          'form': 1,
          'perhaps': 1,
          'even': 1,
          'worse': 1,
          'nearly': 1,
          'scenes': 1,
          '_require_': 1,
          'funny': 1,
          'costar': 1,
          'rob': 1,
          'schneider': 1,
          'improbably': 1,
          'cast': 1,
          'deep': 1,
          'cover': 1,
          'agent': 1,
          'posing': 1,
          'marcuss': 1,
          'business': 1,
          'partner': 1,
          'sight': 1,
          'sound': 1,
          'stillheavilyaccented': 1,
          'haplessly': 1,
          'trying': 1,
          'drop': 1,
          'punchlines': 1,
          'hilarious': 1,
          'wrong': 1,
          'way': 1,
          'neven': 1,
          'typically': 1,
          'good': 1,
          'actors': 1,
          'immune': 1,
          'bad': 1,
          'bug': 1,
          'npaul': 1,
          'sorvino': 1,
          'unconvincing': 1,
          'terribly': 1,
          'overwrought': 1,
          'schneiders': 1,
          'superior': 1,
          'lela': 1,
          'rochon': 1,
          'playing': 1,
          'investigator': 1,
          'spends': 1,
          'perpetual': 1,
          'snarl': 1,
          'mode': 1,
          'nin': 1,
          'rochons': 1,
          'defense': 1,
          'role': 1,
          'requires': 1,
          'display': 1,
          'toned': 1,
          'legs': 1,
          'exquisite': 1,
          'bone': 1,
          'structure': 1,
          'perky': 1,
          'bosoms': 1,
          'latter': 1,
          'handy': 1,
          'key': 1,
          'must': 1,
          'fish': 1,
          'microbombs': 1,
          'stuck': 1,
          'ample': 1,
          'cleavage': 1,
          'picks': 1,
          'left': 1,
          'visually': 1,
          'juicing': 1,
          'proceedings': 1,
          'inventive': 1,
          'work': 1,
          'nhere': 1,
          'borders': 1,
          'kill': 1,
          'desperate': 1,
          'attempts': 1,
          'shield': 1,
          'inanity': 1,
          'enterprise': 1,
          'nifty': 1,
          'pulls': 1,
          'recurring': 1,
          'theme': 1,
          'literally': 1,
          'circuitry': 1,
          'devices': 1,
          'others': 1,
          'completely': 1,
          'superfluous': 1,
          'nthis': 1,
          'especially': 1,
          'disconcerting': 1,
          'question': 1,
          'could': 1,
          'clever': 1,
          'used': 1,
          'right': 1,
          'context': 1,
          'instance': 1,
          'early': 1,
          'putting': 1,
          'box': 1,
          'nas': 1,
          'puts': 1,
          'shown': 1,
          'overhead': 1,
          'angle': 1,
          'rectangle': 1,
          'corner': 1,
          'undoubtedly': 1,
          'interesting': 1,
          'nice': 1,
          'use': 1,
          'amounted': 1,
          'nthe': 1,
          'test': 1,
          'boils': 1,
          'surprisingly': 1,
          'leave': 1,
          'desired': 1,
          'employing': 1,
          'freeze': 1,
          'frames': 1,
          'blurred': 1,
          'motion': 1,
          'unconventional': 1,
          'angles': 1,
          'nothing': 1,
          'fundamentally': 1,
          'special': 1,
          'generic': 1,
          'chase': 1,
          'written': 1,
          'nthere': 1,
          'preposterously': 1,
          'amusing': 1,
          'climactic': 1,
          'tigerland': 1,
          'mine': 1,
          'let': 1,
          'alone': 1,
          'remotely': 1,
          'close': 1,
          'legendary': 1,
          'works': 1,
          'thats': 1,
          'given': 1,
          'hope': 1,
          'approaching': 1,
          'countryman': 1,
          'john': 1,
          'woos': 1,
          'stateside': 1,
          'success': 1,
          'break': 1,
          'free': 1,
          'nbefore': 1,
          'late': 1,
          'involvement': 1,
          'bgrade': 1,
          'movies': 1,
          'respect': 1,
          'fans': 1,
          'continue': 1,
          'diminish': 1,
          'nthat': 1,
          'hasnt': 1,
          'already': 1,
          'disappeared': 1,
          'entirely': 1,
          'fiasco': 1,
          'nneg': 1}),
 Counter({'films': 7,
          'n': 5,
          'zucker': 4,
          'brothers': 4,
          'hard': 3,
          'manages': 3,
          'right': 3,
          'nwhat': 3,
          'film': 3,
          'nthe': 3,
          'time': 3,
          'none': 3,
          'nspy': 2,
          'steal': 2,
          'almost': 2,
          'stuff': 2,
          'little': 2,
          'dick': 2,
          'nielsen': 2,
          'world': 2,
          'goal': 2,
          'spoof': 2,
          'james': 2,
          'type': 2,
          'spoofing': 2,
          'funny': 2,
          'least': 2,
          'used': 2,
          'context': 2,
          'much': 2,
          'spy': 2,
          'upon': 1,
          'first': 1,
          'viewing': 1,
          'movie': 1,
          'phrases': 1,
          'done': 1,
          'come': 1,
          'quickly': 1,
          'mind': 1,
          'every': 1,
          'joke': 1,
          'popular': 1,
          'airplane': 1,
          'naked': 1,
          'gun': 1,
          'series': 1,
          'nstealing': 1,
          'profitable': 1,
          'industry': 1,
          'plot': 1,
          'involves': 1,
          'steele': 1,
          'aka': 1,
          'nagent': 1,
          'wd40': 1,
          'leslie': 1,
          'trying': 1,
          'save': 1,
          'deranged': 1,
          'madman': 1,
          'played': 1,
          'andy': 1,
          'griffith': 1,
          'nalong': 1,
          'way': 1,
          'mainly': 1,
          'bond': 1,
          'also': 1,
          'hit': 1,
          'home': 1,
          'alone': 1,
          'sister': 1,
          'act': 1,
          'trick': 1,
          'actually': 1,
          'satirical': 1,
          'achieves': 1,
          'neither': 1,
          'borrows': 1,
          'wrong': 1,
          'elements': 1,
          'superior': 1,
          'danger': 1,
          'nwell': 1,
          'big': 1,
          'roundish': 1,
          'ball': 1,
          'floating': 1,
          'space': 1,
          'around': 1,
          'sun': 1,
          'im': 1,
          'paraphrasing': 1,
          'exchange': 1,
          'four': 1,
          'times': 1,
          'opening': 1,
          'ten': 1,
          'minutes': 1,
          'getting': 1,
          'progressively': 1,
          'less': 1,
          'stolen': 1,
          'background': 1,
          'sight': 1,
          'gags': 1,
          'effective': 1,
          'writing': 1,
          'dialogue': 1,
          'ndirector': 1,
          'rick': 1,
          'friedberg': 1,
          'focuses': 1,
          'mug': 1,
          'shots': 1,
          'actors': 1,
          'especially': 1,
          'quite': 1,
          'well': 1,
          'delivery': 1,
          'lines': 1,
          'cutting': 1,
          'punchline': 1,
          'short': 1,
          'whole': 1,
          'seems': 1,
          'race': 1,
          'evident': 1,
          'final': 1,
          'sequence': 1,
          'comedic': 1,
          'denouement': 1,
          'climax': 1,
          'nas': 1,
          'usual': 1,
          'end': 1,
          'credits': 1,
          'tend': 1,
          'replace': 1,
          'amusing': 1,
          'captain': 1,
          'enterprise': 1,
          'nt': 1,
          'kirk': 1,
          'noverall': 1,
          'thought': 1,
          'weak': 1,
          'effort': 1,
          'nwhile': 1,
          'chosen': 1,
          'methods': 1,
          'nnext': 1,
          'bit': 1,
          'harder': 1,
          'excellent': 1,
          'kind': 1,
          'nmust': 1,
          'see': 1,
          'entertaining': 1,
          'nworth': 1,
          'price': 1,
          'admission': 1,
          'fair': 1,
          'nnothing': 1,
          'special': 1,
          'thinking': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'movie': 7,
          'plot': 5,
          'boring': 4,
          'jones': 4,
          'alien': 4,
          'old': 3,
          'minutes': 3,
          'original': 3,
          'bug': 3,
          'see': 3,
          'even': 3,
          'first': 2,
          'great': 2,
          'na': 2,
          'real': 2,
          '90': 2,
          'films': 2,
          'black': 2,
          'saw': 2,
          'gas': 2,
          'lee': 2,
          'smith': 2,
          'nthe': 2,
          'ridiculous': 2,
          'earth': 2,
          'galaxy': 2,
          'ni': 2,
          'one': 2,
          'also': 2,
          'nand': 2,
          'lover': 2,
          'dont': 2,
          'nit': 2,
          'aliens': 2,
          'joness': 2,
          'conscience': 2,
          'wanting': 2,
          'impressions': 1,
          'critically': 1,
          'closetoawful': 1,
          'moneywise': 1,
          'continue': 1,
          'sometimesfunny': 1,
          'sags': 1,
          'lags': 1,
          'oftentimes': 1,
          'gets': 1,
          'nan': 1,
          'orginal': 1,
          'grows': 1,
          'fast': 1,
          'none': 1,
          'minute': 1,
          'ive': 1,
          'gotten': 1,
          'bored': 1,
          'nmen': 1,
          'defied': 1,
          'odds': 1,
          'nwhen': 1,
          'flick': 1,
          '89': 1,
          'long': 1,
          'thought': 1,
          'maybe': 1,
          'poor': 1,
          'attempt': 1,
          'independence': 1,
          'day': 1,
          'type': 1,
          'ran': 1,
          'nhowever': 1,
          'realize': 1,
          'men': 1,
          'run': 1,
          'manages': 1,
          'show': 1,
          'idea': 1,
          'summer': 1,
          'audiences': 1,
          'embraced': 1,
          'becomes': 1,
          '25': 1,
          'ntommy': 1,
          'play': 1,
          'two': 1,
          'government': 1,
          'agents': 1,
          'responsible': 1,
          'keeping': 1,
          'order': 1,
          'society': 1,
          'begins': 1,
          'played': 1,
          'weirdly': 1,
          'vincent': 1,
          'donofrio': 1,
          'full': 1,
          'metal': 1,
          'jacket': 1,
          'lands': 1,
          'retrieve': 1,
          'thats': 1,
          'somewhere': 1,
          'orions': 1,
          'belt': 1,
          'nanyway': 1,
          'basic': 1,
          'revolves': 1,
          'around': 1,
          'stop': 1,
          'getting': 1,
          'higher': 1,
          'power': 1,
          'blow': 1,
          'premise': 1,
          'ridulous': 1,
          'didnt': 1,
          'like': 1,
          'love': 1,
          'plots': 1,
          'nthis': 1,
          'nbut': 1,
          'director': 1,
          'barry': 1,
          'sonnenfeld': 1,
          'something': 1,
          'ruined': 1,
          'made': 1,
          'drag': 1,
          'put': 1,
          'unncessary': 1,
          'elements': 1,
          'found': 1,
          'romance': 1,
          'nwhenever': 1,
          'donofrios': 1,
          'stomp': 1,
          'eat': 1,
          'people': 1,
          'got': 1,
          'terribly': 1,
          'nwhile': 1,
          'smiths': 1,
          'wisecracks': 1,
          'fill': 1,
          'gaps': 1,
          'wasnt': 1,
          'enough': 1,
          'believe': 1,
          'screenwriters': 1,
          'elected': 1,
          'subplot': 1,
          'tommy': 1,
          'missed': 1,
          'former': 1,
          'agent': 1,
          'cant': 1,
          'contact': 1,
          'humans': 1,
          'really': 1,
          'satellite': 1,
          'computer': 1,
          'watching': 1,
          'plant': 1,
          'garden': 1,
          'sentimental': 1,
          'moment': 1,
          'nnice': 1,
          'try': 1,
          'think': 1,
          'doesnt': 1,
          'work': 1,
          'makes': 1,
          'worry': 1,
          'came': 1,
          'action': 1,
          'lots': 1,
          'nmaybe': 1,
          'unfair': 1,
          'partly': 1,
          'judged': 1,
          'expectations': 1,
          'nnevertheless': 1,
          'though': 1,
          'parts': 1,
          'indeed': 1,
          'funny': 1,
          'grew': 1,
          'quick': 1,
          'nneg': 1}),
 Counter({'five': 4,
          'minutes': 4,
          'nthe': 4,
          'n': 4,
          'time': 3,
          'answer': 3,
          'last': 3,
          'characters': 3,
          'isnt': 3,
          'movies': 2,
          'spend': 2,
          'questions': 2,
          'herzfelds': 2,
          'days': 2,
          'seemingly': 2,
          'unrelated': 2,
          'keep': 2,
          'audience': 2,
          'guessing': 2,
          'becky': 2,
          'next': 2,
          'house': 2,
          'vice': 2,
          'wes': 2,
          'rather': 2,
          'teddy': 2,
          'find': 2,
          'good': 2,
          'home': 2,
          'dog': 2,
          'though': 2,
          'pose': 1,
          'question': 1,
          'first': 1,
          'rest': 1,
          'trying': 1,
          'nthen': 1,
          'whole': 1,
          'posing': 1,
          'try': 1,
          'nwriterdirector': 1,
          'john': 1,
          'two': 1,
          'valley': 1,
          'falls': 1,
          'latter': 1,
          'category': 1,
          'nweaving': 1,
          'together': 1,
          'grabbag': 1,
          'tries': 1,
          'hard': 1,
          'altmanesque': 1,
          'series': 1,
          'parallel': 1,
          'stories': 1,
          'nhitmen': 1,
          'lee': 1,
          'james': 1,
          'spader': 1,
          'partner': 1,
          'dosmo': 1,
          'danny': 1,
          'aiello': 1,
          'pop': 1,
          'guy': 1,
          'bed': 1,
          'leaving': 1,
          'drugged': 1,
          'wife': 1,
          'fox': 1,
          'teri': 1,
          'hatcher': 1,
          'lying': 1,
          'showing': 1,
          'behind': 1,
          'got': 1,
          'nicely': 1,
          'pricked': 1,
          'nan': 1,
          'understandeably': 1,
          'shocked': 1,
          'runs': 1,
          'morning': 1,
          'hailing': 1,
          'couple': 1,
          'cops': 1,
          'jeff': 1,
          'daniels': 1,
          'eric': 1,
          'stoltz': 1,
          'na': 1,
          'murder': 1,
          'territory': 1,
          'flirting': 1,
          'asian': 1,
          'prostitues': 1,
          'would': 1,
          'play': 1,
          'inquisitive': 1,
          'detective': 1,
          'nmeanwhile': 1,
          'washedup': 1,
          'director': 1,
          'paul': 1,
          'mazursky': 1,
          'end': 1,
          'life': 1,
          'nbut': 1,
          'must': 1,
          'nenter': 1,
          'nurse': 1,
          'audrey': 1,
          'marsha': 1,
          'mason': 1,
          'takes': 1,
          'ride': 1,
          'nstuffy': 1,
          'art': 1,
          'dealer': 1,
          'allan': 1,
          'hopper': 1,
          'greg': 1,
          'cruttwell': 1,
          'kidney': 1,
          'stones': 1,
          'nwhile': 1,
          'struggling': 1,
          'fancy': 1,
          'switches': 1,
          'moaning': 1,
          'selfpity': 1,
          'dropping': 1,
          'condescending': 1,
          'hints': 1,
          'loyal': 1,
          'secretarys': 1,
          'glenne': 1,
          'headly': 1,
          'plain': 1,
          'appearance': 1,
          'ndont': 1,
          'surprised': 1,
          'asking': 1,
          'hell': 1,
          'going': 1,
          'nyou': 1,
          'might': 1,
          'like': 1,
          'feeling': 1,
          'cluelessness': 1,
          'nherzfeld': 1,
          'course': 1,
          'pieces': 1,
          'neatly': 1,
          'jigsaw': 1,
          'puzzle': 1,
          'assembled': 1,
          'stunning': 1,
          'means': 1,
          'lack': 1,
          'stature': 1,
          'moral': 1,
          'complexity': 1,
          'altmans': 1,
          'reallife': 1,
          'heroes': 1,
          'short': 1,
          'cuts': 1,
          'even': 1,
          'interesting': 1,
          'funny': 1,
          'nfunny': 1,
          'arent': 1,
          'comparing': 1,
          'likes': 1,
          'tarantinos': 1,
          'pulp': 1,
          'chcaracters': 1,
          'tieup': 1,
          'tidy': 1,
          'nowhere': 1,
          'near': 1,
          'squeaky': 1,
          'clean': 1,
          'resolution': 1,
          'directors': 1,
          'name': 1,
          'nguy': 1,
          'also': 1,
          'seduction': 1,
          'red': 1,
          'rock': 1,
          'west': 1,
          'ntwo': 1,
          'bad': 1,
          'movie': 1,
          'much': 1,
          'else': 1,
          'screenplay': 1,
          'novelty': 1,
          'linkage': 1,
          'nitll': 1,
          'alright': 1,
          'wont': 1,
          'remember': 1,
          'answers': 1,
          'credits': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'like': 8,
          'nthe': 7,
          'end': 5,
          'days': 5,
          'good': 5,
          'great': 5,
          'performance': 5,
          'nwe': 4,
          'go': 4,
          'stigmata': 4,
          'action': 4,
          'budget': 4,
          'new': 4,
          'work': 4,
          'could': 4,
          'tunney': 3,
          'rod': 3,
          'stieger': 3,
          'minutes': 3,
          'know': 3,
          'hit': 3,
          'terrific': 3,
          'parts': 3,
          'plot': 3,
          'times': 3,
          'role': 3,
          'gives': 3,
          '100m': 3,
          'back': 3,
          'fact': 3,
          'film': 3,
          'seems': 3,
          'style': 3,
          'get': 3,
          'may': 2,
          'arnold': 2,
          'robin': 2,
          'gabriel': 2,
          'time': 2,
          'long': 2,
          'comes': 2,
          'bad': 2,
          'getting': 2,
          'original': 2,
          'idea': 2,
          'devils': 2,
          'advocate': 2,
          'little': 2,
          'exorcist': 2,
          'disappointing': 2,
          'films': 2,
          'trailers': 2,
          'also': 2,
          'typical': 2,
          'satan': 2,
          'byrnes': 2,
          'stop': 2,
          'nhe': 2,
          'turns': 2,
          '2000': 2,
          'help': 2,
          'ending': 2,
          'pretty': 2,
          'much': 2,
          'dollar': 2,
          'money': 2,
          'held': 2,
          'thing': 2,
          'nothing': 2,
          'nin': 2,
          'plays': 2,
          'character': 2,
          'always': 2,
          'really': 2,
          'visual': 2,
          'scenes': 2,
          'dont': 2,
          'things': 2,
          'performances': 2,
          'well': 2,
          'less': 2,
          'old': 2,
          'ideas': 2,
          'ones': 2,
          'make': 2,
          'need': 2,
          'blair': 2,
          'witch': 2,
          'people': 2,
          'warning': 1,
          'contain': 1,
          'slight': 1,
          'mild': 1,
          'spoilers': 1,
          'nrated': 1,
          'r': 1,
          'intense': 1,
          'violencegore': 1,
          'strong': 1,
          'sexuality': 1,
          'language': 1,
          'nstarring': 1,
          'schwarzeneggar': 1,
          'byrne': 1,
          'nrunning': 1,
          '132': 1,
          'theater': 1,
          'boom': 1,
          'lights': 1,
          'hearts': 1,
          'race': 1,
          'ten': 1,
          'preview': 1,
          'finally': 1,
          'weve': 1,
          'waiting': 1,
          'see': 1,
          'sit': 1,
          'watch': 1,
          'disbelief': 1,
          'nwhy': 1,
          'shouldnt': 1,
          'nagain': 1,
          'past': 1,
          'summers': 1,
          'worse': 1,
          'nits': 1,
          'kind': 1,
          'throws': 1,
          'rosemarys': 1,
          'baby': 1,
          'along': 1,
          'nwhala': 1,
          'extremely': 1,
          'previews': 1,
          'made': 1,
          'look': 1,
          'nsadly': 1,
          'truly': 1,
          'recent': 1,
          'confusing': 1,
          'ludicrous': 1,
          'destined': 1,
          'first': 1,
          'weekend': 1,
          'flop': 1,
          'next': 1,
          'njericho': 1,
          'cane': 1,
          'schwarzneggar': 1,
          'macho': 1,
          'cop': 1,
          'finds': 1,
          'chosen': 1,
          'track': 1,
          'living': 1,
          'body': 1,
          'impregnating': 1,
          'christine': 1,
          'york': 1,
          'birth': 1,
          'existence': 1,
          'cease': 1,
          'exist': 1,
          'year': 1,
          'strangely': 1,
          'hes': 1,
          'trying': 1,
          'fight': 1,
          '5': 1,
          'seeks': 1,
          'catholic': 1,
          'church': 1,
          'tries': 1,
          'save': 1,
          'girl': 1,
          'leading': 1,
          'thats': 1,
          'satisfying': 1,
          'nthats': 1,
          'nit': 1,
          'razzle': 1,
          'dazzle': 1,
          'seem': 1,
          'show': 1,
          'wonder': 1,
          'went': 1,
          'nas': 1,
          'arnie': 1,
          'ngood': 1,
          'ok': 1,
          'ni': 1,
          'think': 1,
          'since': 1,
          'older': 1,
          'lot': 1,
          'stunts': 1,
          'disappointed': 1,
          'looks': 1,
          'scary': 1,
          'ends': 1,
          'boring': 1,
          'preposterous': 1,
          'drama': 1,
          'leads': 1,
          'something': 1,
          'else': 1,
          'leaves': 1,
          'us': 1,
          'questions': 1,
          'ngabriel': 1,
          'ironically': 1,
          'played': 1,
          'priest': 1,
          'ntwo': 1,
          'years': 1,
          'al': 1,
          'pacino': 1,
          'gave': 1,
          'fun': 1,
          'nrobin': 1,
          'satans': 1,
          'main': 1,
          'person': 1,
          'wants': 1,
          'impregnate': 1,
          'carry': 1,
          'child': 1,
          'nof': 1,
          'course': 1,
          'another': 1,
          'isnt': 1,
          'direction': 1,
          'peter': 1,
          'hyams': 1,
          'bit': 1,
          'overblown': 1,
          'though': 1,
          'nearly': 1,
          'nhere': 1,
          'given': 1,
          'camera': 1,
          'terrifically': 1,
          'directed': 1,
          'sadly': 1,
          'script': 1,
          'written': 1,
          'andrew': 1,
          'marlowe': 1,
          'witty': 1,
          'lines': 1,
          'substance': 1,
          'finale': 1,
          'climax': 1,
          'ready': 1,
          'home': 1,
          'nonly': 1,
          'writing': 1,
          'storyline': 1,
          'finished': 1,
          'product': 1,
          'sad': 1,
          'many': 1,
          'going': 1,
          'organized': 1,
          'brainy': 1,
          'mindnumbing': 1,
          'nat': 1,
          'armageddon': 1,
          'started': 1,
          'tiresome': 1,
          'nhollywood': 1,
          'running': 1,
          'ive': 1,
          'said': 1,
          'needs': 1,
          'neven': 1,
          'pleasing': 1,
          'least': 1,
          '30m': 1,
          'easily': 1,
          '70m': 1,
          'nmaybe': 1,
          'sound': 1,
          'crazy': 1,
          'looking': 1,
          'forward': 1,
          'hope': 1,
          'recycling': 1,
          'boxoffice': 1,
          'project': 1,
          'scare': 1,
          'death': 1,
          'thinking': 1,
          'exactly': 1,
          'scaring': 1,
          'noverblown': 1,
          'effects': 1,
          'stupid': 1,
          'thin': 1,
          'plotline': 1,
          'umm': 1,
          'nyup': 1,
          'describe': 1,
          'nneg': 1}),
 Counter({'carter': 6,
          'know': 5,
          'tough': 5,
          'nhe': 5,
          'film': 4,
          'jack': 3,
          'sylvester': 3,
          'nand': 3,
          'get': 3,
          'vegas': 3,
          'kind': 3,
          'nas': 3,
          'nthe': 3,
          'dont': 2,
          'says': 2,
          'stallone': 2,
          'guy': 2,
          'guys': 2,
          'duties': 2,
          'people': 2,
          'break': 2,
          'look': 2,
          'like': 2,
          'nstallone': 2,
          'find': 2,
          'story': 2,
          'truth': 2,
          'one': 2,
          'thriller': 2,
          'name': 1,
          'want': 1,
          'brooding': 1,
          'antihero': 1,
          'ntake': 1,
          'advice': 1,
          'nto': 1,
          'rewarding': 1,
          'thrown': 1,
          'terrace': 1,
          'watch': 1,
          'almost': 1,
          'painful': 1,
          'n': 1,
          'gloomy': 1,
          'looking': 1,
          'unimaginative': 1,
          'offers': 1,
          'joy': 1,
          'njack': 1,
          'come': 1,
          'works': 1,
          'selfdescribed': 1,
          'financial': 1,
          'adjuster': 1,
          'nexplaining': 1,
          'make': 1,
          'promises': 1,
          'ni': 1,
          'help': 1,
          'remember': 1,
          'chiseled': 1,
          'body': 1,
          'full': 1,
          'tattoos': 1,
          'weathered': 1,
          'indicative': 1,
          'man': 1,
          'seen': 1,
          'share': 1,
          'hard': 1,
          'times': 1,
          'speaks': 1,
          'hushed': 1,
          'menacing': 1,
          'tone': 1,
          'voice': 1,
          'nin': 1,
          'words': 1,
          'acting': 1,
          'previous': 1,
          'roles': 1,
          'character': 1,
          'shallow': 1,
          'onedimensional': 1,
          'thug': 1,
          'whose': 1,
          'modus': 1,
          'operandi': 1,
          'talk': 1,
          'hassle': 1,
          'hapless': 1,
          'needs': 1,
          'dispense': 1,
          'justice': 1,
          'nwith': 1,
          'charisma': 1,
          'pit': 1,
          'bull': 1,
          'knows': 1,
          'nyet': 1,
          'even': 1,
          'put': 1,
          'family': 1,
          'first': 1,
          'begins': 1,
          'learn': 1,
          'jacks': 1,
          'little': 1,
          'brother': 1,
          'died': 1,
          'car': 1,
          'accident': 1,
          'police': 1,
          'attribute': 1,
          'heavy': 1,
          'drinking': 1,
          'nhowever': 1,
          'suspicious': 1,
          'believing': 1,
          'taken': 1,
          'takes': 1,
          'tries': 1,
          'see': 1,
          'pokes': 1,
          'around': 1,
          'runs': 1,
          'several': 1,
          'lowlife': 1,
          'characters': 1,
          'nthey': 1,
          'include': 1,
          'shady': 1,
          'business': 1,
          'partner': 1,
          'prostitute': 1,
          'dweebish': 1,
          'millionaire': 1,
          'molded': 1,
          'bill': 1,
          'gates': 1,
          'oily': 1,
          'owner': 1,
          'porn': 1,
          'website': 1,
          'nany': 1,
          'may': 1,
          'something': 1,
          'brothers': 1,
          'death': 1,
          'nall': 1,
          'means': 1,
          'carrying': 1,
          'deed': 1,
          'nbut': 1,
          'expect': 1,
          'exercise': 1,
          'sleuthing': 1,
          'wellplaced': 1,
          'clues': 1,
          'lead': 1,
          'nhes': 1,
          'brawn': 1,
          'brains': 1,
          'epiphanies': 1,
          'investigation': 1,
          'ninstead': 1,
          'uses': 1,
          'intimidation': 1,
          'muscle': 1,
          'way': 1,
          'forward': 1,
          'cycling': 1,
          'circle': 1,
          'suspects': 1,
          'nflustered': 1,
          'lack': 1,
          'progress': 1,
          'cycles': 1,
          'nthis': 1,
          'gets': 1,
          'tiring': 1,
          'fairly': 1,
          'quickly': 1,
          'nby': 1,
          'time': 1,
          'launches': 1,
          'final': 1,
          'act': 1,
          'numb': 1,
          'pedestrian': 1,
          'pace': 1,
          'noddly': 1,
          'toughguy': 1,
          'starves': 1,
          'us': 1,
          'action': 1,
          'nadmittedly': 1,
          'nifty': 1,
          'chase': 1,
          'sequence': 1,
          'related': 1,
          'tangential': 1,
          'needless': 1,
          'plot': 1,
          'carters': 1,
          'ties': 1,
          'send': 1,
          'thugs': 1,
          'retrieve': 1,
          'also': 1,
          'fails': 1,
          'generate': 1,
          'emotion': 1,
          'personality': 1,
          'slab': 1,
          'stone': 1,
          'feel': 1,
          'perpetually': 1,
          'downcast': 1,
          'weather': 1,
          'constantly': 1,
          'overcast': 1,
          'rainy': 1,
          'nmeanwhile': 1,
          'shots': 1,
          'take': 1,
          'place': 1,
          'night': 1,
          'dimly': 1,
          'lit': 1,
          'rooms': 1,
          'dark': 1,
          'alleys': 1,
          'nits': 1,
          'impossible': 1,
          'stirred': 1,
          'atmosphere': 1,
          'result': 1,
          'amounts': 1,
          'nothing': 1,
          'flat': 1,
          'bereft': 1,
          'clever': 1,
          'moments': 1,
          'devoid': 1,
          'excitement': 1,
          'nyoure': 1,
          'better': 1,
          'leaving': 1,
          'alone': 1,
          'nneg': 1}),
 Counter({'bean': 8,
          'mr': 6,
          'series': 5,
          'film': 5,
          'away': 4,
          'nthe': 4,
          'score': 4,
          'would': 3,
          'atkinson': 3,
          'really': 3,
          'even': 3,
          'american': 2,
          'wrong': 2,
          'ever': 2,
          'heard': 2,
          'dont': 2,
          'nthen': 2,
          'america': 2,
          'makes': 2,
          'point': 2,
          'problems': 2,
          'completely': 2,
          'one': 2,
          'note': 2,
          'n': 2,
          'guys': 2,
          'much': 2,
          'character': 2,
          'episode': 2,
          'though': 2,
          'laughs': 2,
          'time': 2,
          'episodes': 2,
          'go': 2,
          'back': 2,
          'think': 1,
          'films': 1,
          'dismal': 1,
          'failure': 1,
          'due': 1,
          'filmmakers': 1,
          'getting': 1,
          'hold': 1,
          'brilliant': 1,
          'british': 1,
          'comedy': 1,
          'americanizing': 1,
          'nyoud': 1,
          'since': 1,
          'full': 1,
          'blame': 1,
          'placed': 1,
          'folks': 1,
          'wrote': 1,
          'created': 1,
          'rowan': 1,
          'robin': 1,
          'driscoll': 1,
          'richard': 1,
          'curtis': 1,
          'nshould': 1,
          'happen': 1,
          'meet': 1,
          'chaps': 1,
          'favor': 1,
          'ngrab': 1,
          'hair': 1,
          'yell': 1,
          'loudly': 1,
          'ear': 1,
          'thinking': 1,
          'nhave': 1,
          'phrase': 1,
          'aint': 1,
          'broke': 1,
          'fix': 1,
          'walk': 1,
          'concerns': 1,
          'visit': 1,
          'escorting': 1,
          'painting': 1,
          'whistlers': 1,
          'mother': 1,
          'buyer': 1,
          'played': 1,
          'burt': 1,
          'reynolds': 1,
          'type': 1,
          'bit': 1,
          'part': 1,
          'success': 1,
          'boogie': 1,
          'nights': 1,
          'hopefully': 1,
          'nnow': 1,
          'sent': 1,
          'trip': 1,
          'sense': 1,
          'cant': 1,
          'describe': 1,
          'explains': 1,
          'comes': 1,
          'causes': 1,
          'wacky': 1,
          'trouble': 1,
          'nproblems': 1,
          'begin': 1,
          'nfirst': 1,
          'music': 1,
          'tv': 1,
          'show': 1,
          'replaced': 1,
          'either': 1,
          'times': 1,
          'beetlejuice': 1,
          'rob': 1,
          'roy': 1,
          'song': 1,
          'choices': 1,
          'totally': 1,
          'uninspired': 1,
          'good': 1,
          'vibrations': 1,
          'love': 1,
          'l': 1,
          'nwow': 1,
          'put': 1,
          'thought': 1,
          'nalso': 1,
          'way': 1,
          'noise': 1,
          'doesnt': 1,
          'speak': 1,
          'laughter': 1,
          'audience': 1,
          'maybe': 1,
          'occasional': 1,
          'murmur': 1,
          'neach': 1,
          'like': 1,
          'chaplin': 1,
          'silent': 1,
          'movie': 1,
          'nin': 1,
          'constantly': 1,
          'moaning': 1,
          'grunting': 1,
          'whining': 1,
          'etc': 1,
          'annoying': 1,
          'plain': 1,
          'main': 1,
          'problem': 1,
          'funny': 1,
          'nwith': 1,
          'dozens': 1,
          'great': 1,
          'crammed': 1,
          'less': 1,
          '30': 1,
          'minutes': 1,
          'nmultiply': 1,
          'running': 1,
          'three': 1,
          'however': 1,
          'steadily': 1,
          'decrease': 1,
          'nthey': 1,
          'gaul': 1,
          'repeat': 1,
          'jokes': 1,
          'nsad': 1,
          'creatively': 1,
          'lazy': 1,
          'nas': 1,
          'ran': 1,
          '13': 1,
          'nwhy': 1,
          'earth': 1,
          'gang': 1,
          'decide': 1,
          'rework': 1,
          'everything': 1,
          'n13': 1,
          'halfhour': 1,
          'certainly': 1,
          'hadnt': 1,
          'exhausted': 1,
          'possible': 1,
          'situations': 1,
          'nall': 1,
          'say': 1,
          'positively': 1,
          'almost': 1,
          'appropriate': 1,
          'ages': 1,
          'wasnt': 1,
          'couple': 1,
          'scenes': 1,
          'appears': 1,
          'sex': 1,
          'things': 1,
          'nand': 1,
          'isnt': 1,
          'positive': 1,
          'statement': 1,
          'nplease': 1,
          'england': 1,
          'television': 1,
          'youll': 1,
          'make': 1,
          'laugh': 1,
          'npg13': 1,
          'nneg': 1}),
 Counter({'jakob': 8,
          'ghetto': 6,
          'njakob': 5,
          'liar': 5,
          'hope': 5,
          'williams': 4,
          'movie': 4,
          'nthe': 4,
          'false': 4,
          'one': 3,
          'doesnt': 3,
          'war': 3,
          'radio': 3,
          'never': 3,
          'robin': 2,
          'style': 2,
          'worst': 2,
          'films': 2,
          'best': 2,
          'despite': 2,
          'latest': 2,
          'know': 2,
          'little': 2,
          'film': 2,
          'message': 2,
          'gets': 2,
          'tells': 2,
          'assumption': 2,
          'home': 2,
          'danger': 2,
          'great': 2,
          'nin': 2,
          'irrelevant': 2,
          'girl': 2,
          'goes': 2,
          'nhe': 2,
          'expectations': 2,
          'nits': 2,
          'fails': 2,
          'life': 2,
          'character': 2,
          'good': 2,
          'hunting': 2,
          'serious': 2,
          'actor': 2,
          'comedy': 2,
          'na': 2,
          'rarest': 1,
          'gifts': 1,
          'ability': 1,
          'rise': 1,
          'inept': 1,
          'material': 1,
          'suffuse': 1,
          'irreverent': 1,
          'noverwhelmingly': 1,
          'pleasantly': 1,
          'diverting': 1,
          'enjoyable': 1,
          'notable': 1,
          'exception': 1,
          'flubber': 1,
          'nso': 1,
          'person': 1,
          'refused': 1,
          'abandon': 1,
          'patch': 1,
          'adams': 1,
          'tell': 1,
          'even': 1,
          'save': 1,
          'project': 1,
          'trouble': 1,
          'confused': 1,
          'muddled': 1,
          'generically': 1,
          'uplifting': 1,
          'fundamental': 1,
          'contradiction': 1,
          'delivers': 1,
          'depressing': 1,
          'opposed': 1,
          'inspiring': 1,
          'realize': 1,
          'nwilliams': 1,
          'plays': 1,
          'haim': 1,
          'jew': 1,
          'imprisoned': 1,
          'polish': 1,
          'world': 1,
          'ii': 1,
          'none': 1,
          'night': 1,
          'wanders': 1,
          'outside': 1,
          'curfew': 1,
          'promptly': 1,
          'sent': 1,
          'office': 1,
          'highranking': 1,
          'german': 1,
          'officer': 1,
          'punishment': 1,
          'easy': 1,
          'hear': 1,
          'approximately': 1,
          '30': 1,
          'seconds': 1,
          'broadcast': 1,
          'announcement': 1,
          'english': 1,
          'punctuated': 1,
          'triumphant': 1,
          'heil': 1,
          'hitler': 1,
          'russian': 1,
          'troops': 1,
          'miles': 1,
          'away': 1,
          'jakobs': 1,
          'nliberation': 1,
          'thinks': 1,
          'next': 1,
          'day': 1,
          'news': 1,
          'closest': 1,
          'friend': 1,
          'volatile': 1,
          'prize': 1,
          'fighter': 1,
          'named': 1,
          'misha': 1,
          'liev': 1,
          'schreiber': 1,
          'sworn': 1,
          'secrecy': 1,
          'passes': 1,
          'along': 1,
          'nsoon': 1,
          'common': 1,
          'hidden': 1,
          'crime': 1,
          'punishable': 1,
          'death': 1,
          'nthis': 1,
          'absurdly': 1,
          'people': 1,
          'convinced': 1,
          'become': 1,
          'abreast': 1,
          'developments': 1,
          'decide': 1,
          'fate': 1,
          'course': 1,
          'germans': 1,
          'allegedly': 1,
          'informants': 1,
          'throughout': 1,
          'rumors': 1,
          'get': 1,
          'put': 1,
          'curiously': 1,
          'subplot': 1,
          'finds': 1,
          '11year': 1,
          'old': 1,
          'separated': 1,
          'parents': 1,
          'decides': 1,
          'hide': 1,
          'small': 1,
          'napparently': 1,
          'afraid': 1,
          'discovered': 1,
          'length': 1,
          'make': 1,
          'sure': 1,
          'idea': 1,
          'frightens': 1,
          'made': 1,
          'clear': 1,
          'build': 1,
          'uninvolving': 1,
          'generic': 1,
          'relationship': 1,
          'anywhere': 1,
          'end': 1,
          'beginning': 1,
          'moral': 1,
          'story': 1,
          'medicine': 1,
          'nbut': 1,
          'forgets': 1,
          'brings': 1,
          'nsuch': 1,
          'inevitably': 1,
          'leads': 1,
          'realization': 1,
          'arent': 1,
          'met': 1,
          'results': 1,
          'far': 1,
          'worse': 1,
          'nthats': 1,
          'biggest': 1,
          'detriment': 1,
          'based': 1,
          'thus': 1,
          'comes': 1,
          'painfully': 1,
          'moving': 1,
          'give': 1,
          'us': 1,
          'anything': 1,
          'moved': 1,
          'tug': 1,
          'heartstrings': 1,
          'destroys': 1,
          'purpose': 1,
          'existing': 1,
          'nrobin': 1,
          'inject': 1,
          'matter': 1,
          'fact': 1,
          'seems': 1,
          'crippled': 1,
          'fake': 1,
          'accent': 1,
          'stragely': 1,
          'unenthusiastic': 1,
          'spreads': 1,
          'performance': 1,
          'lifeless': 1,
          'hopeless': 1,
          'nnot': 1,
          'since': 1,
          'abandoned': 1,
          'signature': 1,
          'extent': 1,
          'isnt': 1,
          'love': 1,
          'became': 1,
          'oscar': 1,
          'nhere': 1,
          'wannabe': 1,
          'impostor': 1,
          'compared': 1,
          'last': 1,
          'years': 1,
          'beautiful': 1,
          'marketed': 1,
          'holocaust': 1,
          'nit': 1,
          'tries': 1,
          'sometimes': 1,
          'rarely': 1,
          'works': 1,
          'nis': 1,
          'melodrama': 1,
          'study': 1,
          'nno': 1,
          'kind': 1,
          'cant': 1,
          'placed': 1,
          'category': 1,
          'covers': 1,
          'many': 1,
          'different': 1,
          'genres': 1,
          'every': 1,
          'attempts': 1,
          'nneg': 1}),
 Counter({'christmas': 3,
          'one': 3,
          'stewardess': 2,
          'fly': 2,
          'plane': 2,
          'liotta': 2,
          'would': 2,
          'nthe': 2,
          'say': 1,
          'tell': 1,
          'youve': 1,
          'seen': 1,
          'crisis': 1,
          'onboard': 1,
          'commercial': 1,
          'airliner': 1,
          'causes': 1,
          'land': 1,
          'nairport': 1,
          '97': 1,
          'anyone': 1,
          'nray': 1,
          'psychotic': 1,
          'serial': 1,
          'killer': 1,
          'transported': 1,
          'new': 1,
          'york': 1,
          'california': 1,
          'eve': 1,
          'namazingly': 1,
          'seemingly': 1,
          'busy': 1,
          'day': 1,
          'travel': 1,
          'flown': 1,
          'routes': 1,
          'six': 1,
          'passengers': 1,
          'flight': 1,
          'nanyway': 1,
          'take': 1,
          'escapes': 1,
          'kills': 1,
          'police': 1,
          'pilots': 1,
          'lauren': 1,
          'holly': 1,
          'locks': 1,
          'cockpit': 1,
          'story': 1,
          'beyond': 1,
          'routine': 1,
          'script': 1,
          'embarrassing': 1,
          'point': 1,
          'jumbo': 1,
          'jet': 1,
          'flying': 1,
          'completely': 1,
          'upside': 1,
          'characters': 1,
          'worthless': 1,
          'performances': 1,
          'annoying': 1,
          'nsurprisingly': 1,
          'cowriter': 1,
          'steven': 1,
          'e': 1,
          'de': 1,
          'souza': 1,
          'actually': 1,
          'wrote': 1,
          'first': 1,
          'two': 1,
          'die': 1,
          'hard': 1,
          'movies': 1,
          'n': 1,
          'turbulence': 1,
          'takes': 1,
          'place': 1,
          'time': 1,
          'yet': 1,
          'film': 1,
          'released': 1,
          'days': 1,
          'holidays': 1,
          'nbrilliant': 1,
          'marketing': 1,
          'cares': 1,
          'anything': 1,
          'december': 1,
          '26th': 1,
          'studio': 1,
          'knew': 1,
          'bomb': 1,
          'purposely': 1,
          'dumped': 1,
          'fewest': 1,
          'number': 1,
          'people': 1,
          'see': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'nthe': 8,
          'jokes': 7,
          'mystery': 6,
          'men': 6,
          'one': 6,
          'actors': 5,
          'n': 5,
          'day': 5,
          'movie': 4,
          'wannabe': 4,
          'city': 4,
          'amazing': 4,
          'every': 4,
          'cast': 3,
          'characters': 3,
          'made': 3,
          'unique': 3,
          'number': 3,
          'script': 3,
          'funny': 3,
          'work': 3,
          'save': 3,
          'bad': 3,
          'captain': 3,
          'time': 3,
          'like': 3,
          'ben': 3,
          'terrible': 3,
          'na': 2,
          'great': 2,
          'nan': 2,
          'premise': 2,
          'nhowever': 2,
          'laugh': 2,
          'seriously': 2,
          'small': 2,
          'mediocre': 2,
          'entertaining': 2,
          'films': 2,
          'clever': 2,
          'trying': 2,
          'viewers': 2,
          'little': 2,
          'superheroes': 2,
          'needed': 2,
          'already': 2,
          'successful': 2,
          'captured': 2,
          'success': 2,
          'get': 2,
          'complete': 2,
          'scene': 2,
          'old': 2,
          'editing': 2,
          'stiller': 2,
          'heroes': 2,
          'silly': 2,
          'action': 2,
          'seemed': 2,
          'together': 2,
          'way': 2,
          'acting': 2,
          'heard': 2,
          'end': 2,
          'going': 2,
          'classic': 1,
          'respected': 1,
          'supporting': 1,
          'interesting': 1,
          'loser': 1,
          'comic': 1,
          'book': 1,
          'proved': 1,
          'disappointments': 1,
          '1999': 1,
          'bland': 1,
          'hackneyed': 1,
          'talents': 1,
          'previously': 1,
          'audiences': 1,
          'rituals': 1,
          'cliches': 1,
          'shallow': 1,
          'difficult': 1,
          'sit': 1,
          'hurting': 1,
          'attempt': 1,
          'fast': 1,
          'paced': 1,
          'tried': 1,
          'deliver': 1,
          'series': 1,
          'throughout': 1,
          'without': 1,
          'big': 1,
          'laughoutloud': 1,
          'joke': 1,
          'failed': 1,
          'miserably': 1,
          'reasons': 1,
          'nthey': 1,
          'used': 1,
          'times': 1,
          'previous': 1,
          'best': 1,
          'ones': 1,
          'begin': 1,
          'ruined': 1,
          'trailer': 1,
          'expectation': 1,
          'laughing': 1,
          'gags': 1,
          'comedians': 1,
          'none': 1,
          'greatly': 1,
          'damaged': 1,
          'might': 1,
          'worked': 1,
          'ensemble': 1,
          'newcomers': 1,
          'break': 1,
          'business': 1,
          'nbut': 1,
          'veterans': 1,
          'kind': 1,
          'junk': 1,
          'really': 1,
          'questioned': 1,
          'whether': 1,
          'originally': 1,
          'thought': 1,
          'nthankfully': 1,
          'appear': 1,
          'five': 1,
          'movies': 1,
          'new': 1,
          'year': 1,
          'arrives': 1,
          'help': 1,
          'forget': 1,
          'follows': 1,
          'band': 1,
          'living': 1,
          'gotham': 1,
          'ridiculed': 1,
          'fellow': 1,
          'citizens': 1,
          'villains': 1,
          'clumsiness': 1,
          'failure': 1,
          'capture': 1,
          'guy': 1,
          'fact': 1,
          'pathetic': 1,
          'losers': 1,
          'superhero': 1,
          'recently': 1,
          'evildoer': 1,
          'ncaptain': 1,
          'played': 1,
          'terribly': 1,
          'uninspired': 1,
          'greg': 1,
          'kinnear': 1,
          'past': 1,
          'worried': 1,
          'lose': 1,
          'popularity': 1,
          'nafter': 1,
          'freeing': 1,
          'notorious': 1,
          'guys': 1,
          'geoffrey': 1,
          'rush': 1,
          'overacting': 1,
          'bit': 1,
          'much': 1,
          'keep': 1,
          'busy': 1,
          'things': 1,
          'hand': 1,
          'nit': 1,
          'nby': 1,
          'section': 1,
          'plot': 1,
          'finished': 1,
          'interest': 1,
          'happens': 1,
          'havent': 1,
          'figured': 1,
          'low': 1,
          'nthere': 1,
          'scenes': 1,
          'catch': 1,
          'attention': 1,
          'first': 1,
          'shows': 1,
          'wannabes': 1,
          'feels': 1,
          'edited': 1,
          'nright': 1,
          'beginning': 1,
          'become': 1,
          'slightly': 1,
          'seeing': 1,
          'humiliated': 1,
          'folks': 1,
          'home': 1,
          'masked': 1,
          'goons': 1,
          'comes': 1,
          'saves': 1,
          'ruins': 1,
          'ninstead': 1,
          'done': 1,
          'areas': 1,
          'unnecessary': 1,
          'romance': 1,
          'mr': 1,
          'furious': 1,
          'monica': 1,
          'waitress': 1,
          'claire': 1,
          'forlani': 1,
          'vast': 1,
          'majority': 1,
          'talking': 1,
          'coffee': 1,
          'table': 1,
          'simple': 1,
          'rule': 1,
          'order': 1,
          'make': 1,
          'nanother': 1,
          'major': 1,
          'problem': 1,
          'actor': 1,
          'uncomfortable': 1,
          'consequently': 1,
          'gave': 1,
          'performances': 1,
          'depended': 1,
          'fluently': 1,
          'bunch': 1,
          'friends': 1,
          'working': 1,
          'amiable': 1,
          'reunion': 1,
          'even': 1,
          'want': 1,
          'least': 1,
          'seem': 1,
          'nto': 1,
          'pull': 1,
          'randomly': 1,
          'hat': 1,
          'paul': 1,
          'reubens': 1,
          'disappeared': 1,
          'everyones': 1,
          'joy': 1,
          'returns': 1,
          'leaving': 1,
          'impressed': 1,
          'nas': 1,
          'uses': 1,
          'flatulence': 1,
          'weapon': 1,
          'must': 1,
          'therefore': 1,
          'fart': 1,
          'nfart': 1,
          'inevitably': 1,
          'future': 1,
          'thanks': 1,
          'american': 1,
          'pie': 1,
          'theres': 1,
          'something': 1,
          'mary': 1,
          'drags': 1,
          'towards': 1,
          'point': 1,
          'anything': 1,
          'else': 1,
          'world': 1,
          'nanyone': 1,
          'brain': 1,
          'knows': 1,
          'talent': 1,
          'contribute': 1,
          'helpful': 1,
          'nso': 1,
          'continue': 1,
          'watch': 1,
          'nthis': 1,
          'far': 1,
          'worthy': 1,
          'guilty': 1,
          'pleasure': 1,
          'indeed': 1,
          'character': 1,
          'succeeds': 1,
          'another': 1,
          'congratulates': 1,
          'says': 1,
          'knew': 1,
          'could': 1,
          'fails': 1,
          'category': 1,
          'attempts': 1,
          'pass': 1,
          'nwhat': 1,
          'makes': 1,
          'potential': 1,
          'wonderful': 1,
          'unforgettable': 1,
          'nterrible': 1,
          'waste': 1,
          'changes': 1,
          'opinions': 1,
          'im': 1,
          'unpredictable': 1,
          'overexcited': 1,
          'shouts': 1,
          'nno': 1,
          'youre': 1,
          'opposite': 1,
          'nneg': 1}),
 Counter({'scream': 11,
          'nthe': 10,
          '3': 10,
          'series': 7,
          'even': 7,
          'n': 6,
          'killer': 6,
          'stab': 5,
          'movie': 4,
          'sidney': 4,
          'set': 4,
          'one': 4,
          'film': 3,
          'probably': 3,
          'real': 3,
          'characters': 3,
          'sunrise': 3,
          'site': 3,
          'com': 3,
          'ntheres': 3,
          'review': 2,
          'previous': 2,
          'third': 2,
          'studio': 2,
          'part': 2,
          'latest': 2,
          'installment': 2,
          'movies': 2,
          'murders': 2,
          'starts': 2,
          'gale': 2,
          'weathers': 2,
          'arquette': 2,
          'familiar': 2,
          'trilogy': 2,
          'backstory': 2,
          'murder': 2,
          'sidneys': 2,
          'mother': 2,
          'maureen': 2,
          'nat': 2,
          'hollywood': 2,
          'horror': 2,
          'films': 2,
          'information': 2,
          'dont': 2,
          'patrick': 2,
          'three': 2,
          'kevin': 2,
          'first': 2,
          'eventually': 2,
          'becomes': 2,
          'point': 2,
          'cover': 2,
          'new': 2,
          'also': 2,
          'jason': 2,
          'official': 2,
          'wink': 2,
          'spy': 1,
          'shagged': 1,
          'postulated': 1,
          'unbreakable': 1,
          'law': 1,
          'physics': 1,
          'every': 1,
          'time': 1,
          'sequel': 1,
          'good': 1,
          'better': 1,
          'followed': 1,
          'bore': 1,
          'cause': 1,
          'complacency': 1,
          'sighs': 1,
          'relief': 1,
          '2': 1,
          'lives': 1,
          'expectations': 1,
          'figures': 1,
          'sure': 1,
          'thing': 1,
          'provides': 1,
          'proof': 1,
          'rule': 1,
          'nin': 1,
          'los': 1,
          'angeles': 1,
          'production': 1,
          'begun': 1,
          'return': 1,
          'woodsboro': 1,
          'recent': 1,
          'inspired': 1,
          'surrounding': 1,
          'prescott': 1,
          'neve': 1,
          'campbell': 1,
          'nhowever': 1,
          'life': 1,
          'soon': 1,
          'imitating': 1,
          'art': 1,
          'cast': 1,
          'members': 1,
          'turn': 1,
          'stabbed': 1,
          'nsmelling': 1,
          'yet': 1,
          'another': 1,
          'book': 1,
          'deal': 1,
          'courteney': 1,
          'cox': 1,
          'comes': 1,
          'investigate': 1,
          'finds': 1,
          'exboyfriend': 1,
          'dewey': 1,
          'riley': 1,
          'david': 1,
          'acting': 1,
          'technical': 1,
          'consultant': 1,
          'getting': 1,
          'chummy': 1,
          'jennifer': 1,
          'parker': 1,
          'posey': 1,
          'actress': 1,
          'playing': 1,
          'elsewhere': 1,
          'heroine': 1,
          'living': 1,
          'hiding': 1,
          'assumed': 1,
          'name': 1,
          'nuntil': 1,
          'gets': 1,
          'phone': 1,
          'call': 1,
          'evil': 1,
          'voice': 1,
          'late': 1,
          'randy': 1,
          'meeks': 1,
          'jamie': 1,
          'kennedy': 1,
          'makes': 1,
          'surprise': 1,
          'guest': 1,
          'appearance': 1,
          'via': 1,
          'video': 1,
          'explain': 1,
          'rules': 1,
          'nhe': 1,
          'notes': 1,
          'chapter': 1,
          'overabundance': 1,
          'exposition': 1,
          'huge': 1,
          'contend': 1,
          'nindeed': 1,
          'tries': 1,
          'link': 1,
          'back': 1,
          'started': 1,
          'beginning': 1,
          'original': 1,
          'scene': 1,
          'leaves': 1,
          'photo': 1,
          'teenager': 1,
          'includes': 1,
          'note': 1,
          'claiming': 1,
          'nto': 1,
          'find': 1,
          'intrepid': 1,
          'investigators': 1,
          'uncover': 1,
          'happened': 1,
          'maureens': 1,
          'missing': 1,
          'years': 1,
          'starlet': 1,
          'appearing': 1,
          'lowbudget': 1,
          'little': 1,
          'already': 1,
          'guess': 1,
          'killers': 1,
          'relationship': 1,
          'nunlike': 1,
          'predecessors': 1,
          'doesnt': 1,
          'guts': 1,
          'suggest': 1,
          'central': 1,
          'might': 1,
          'suspect': 1,
          'undeveloped': 1,
          'end': 1,
          'care': 1,
          'jaded': 1,
          'detective': 1,
          'dempsey': 1,
          'kinky': 1,
          'producer': 1,
          'lance': 1,
          'henriksen': 1,
          'driven': 1,
          'young': 1,
          'director': 1,
          'scott': 1,
          'foley': 1,
          'ingenue': 1,
          'emily': 1,
          'mortimer': 1,
          'character': 1,
          'turns': 1,
          'seems': 1,
          'selected': 1,
          'random': 1,
          'nwes': 1,
          'craven': 1,
          'supposedly': 1,
          'filmed': 1,
          'different': 1,
          'endings': 1,
          'keep': 1,
          'secret': 1,
          'quite': 1,
          'possible': 1,
          'final': 1,
          'cut': 1,
          'randomly': 1,
          'chosen': 1,
          'trademark': 1,
          'references': 1,
          'become': 1,
          'trite': 1,
          'obvious': 1,
          'npossibly': 1,
          'absence': 1,
          'screenwriter': 1,
          'williamson': 1,
          'penned': 1,
          'two': 1,
          'maybe': 1,
          'hip': 1,
          'ironic': 1,
          'stance': 1,
          'consumes': 1,
          'parodies': 1,
          'cliches': 1,
          'cliche': 1,
          'ni': 1,
          'groaned': 1,
          'attack': 1,
          'repeated': 1,
          'momentformoment': 1,
          'home': 1,
          'referencing': 1,
          'means': 1,
          'poverty': 1,
          'ideas': 1,
          'continues': 1,
          'tradition': 1,
          'eclectic': 1,
          'cameos': 1,
          'faces': 1,
          'small': 1,
          'roles': 1,
          'nlook': 1,
          'jenny': 1,
          'mccarthy': 1,
          'carrie': 1,
          'fisher': 1,
          'warburton': 1,
          'puddy': 1,
          'seinfeld': 1,
          'roger': 1,
          'corman': 1,
          'mewes': 1,
          'smith': 1,
          'jay': 1,
          'silent': 1,
          'bob': 1,
          'walk': 1,
          'nall': 1,
          'bit': 1,
          'players': 1,
          'put': 1,
          'forth': 1,
          'effort': 1,
          'returning': 1,
          'stars': 1,
          'saving': 1,
          'energy': 1,
          'long': 1,
          'post': 1,
          'job': 1,
          'search': 1,
          'nanother': 1,
          'prediction': 1,
          'made': 1,
          'come': 1,
          'pass': 1,
          'copying': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'web': 1,
          'strategy': 1,
          'websites': 1,
          'pretend': 1,
          'events': 1,
          'provide': 1,
          'additional': 1,
          'covered': 1,
          'studios': 1,
          'scream3': 1,
          'trailers': 1,
          'releases': 1,
          'well': 1,
          'news': 1,
          'gail': 1,
          'galeweathers': 1,
          'sucks': 1,
          'scandals': 1,
          'wants': 1,
          'sunrisesucks': 1,
          'ncraven': 1,
          'company': 1,
          'promise': 1,
          'last': 1,
          'nwhile': 1,
          'hope': 1,
          'thats': 1,
          'true': 1,
          'hold': 1,
          'much': 1,
          'hopehorror': 1,
          'harder': 1,
          'kill': 1,
          'monsters': 1,
          'halloween': 1,
          'h2k': 1,
          'works': 1,
          'though': 1,
          'michael': 1,
          'myers': 1,
          'beheaded': 1,
          'h20': 1,
          'freddy': 1,
          'vs': 1,
          'talked': 1,
          'awhile': 1,
          'despite': 1,
          'fact': 1,
          'killed': 1,
          'bound': 1,
          '4': 1,
          'someday': 1,
          'moviestar': 1,
          'wannabes': 1,
          'nbottom': 1,
          'line': 1,
          'called': 1,
          'yawn': 1,
          'nneg': 1}),
 Counter({'batman': 6,
          'film': 5,
          'movie': 4,
          'good': 4,
          'cast': 4,
          'one': 3,
          'ni': 3,
          'schumaccer': 3,
          'nthe': 3,
          'impressive': 3,
          'better': 3,
          'play': 3,
          'want': 2,
          'get': 2,
          'nthis': 2,
          'little': 2,
          'would': 2,
          'screw': 2,
          'jim': 2,
          'carrey': 2,
          'cant': 2,
          'direction': 2,
          'camera': 2,
          'angles': 2,
          'terrible': 2,
          'clooney': 2,
          'casted': 2,
          'major': 2,
          'schwarzenegger': 2,
          'freeze': 2,
          'trouble': 2,
          'figure': 2,
          'limited': 2,
          'stuff': 2,
          'notice': 2,
          'much': 2,
          'wouldve': 2,
          'real': 2,
          'star': 2,
          'role': 2,
          'theyd': 2,
          'involved': 1,
          'show': 1,
          'business': 1,
          'day': 1,
          'nand': 1,
          'refuse': 1,
          'sequels': 1,
          'may': 1,
          'make': 1,
          'believe': 1,
          'worse': 1,
          'proves': 1,
          'worried': 1,
          'last': 1,
          'thought': 1,
          'joel': 1,
          'taking': 1,
          'tim': 1,
          'burton': 1,
          'also': 1,
          'assumed': 1,
          'val': 1,
          'kilmer': 1,
          'bruce': 1,
          'wayne': 1,
          'nthey': 1,
          'didnt': 1,
          'nkilmer': 1,
          'job': 1,
          'left': 1,
          'carry': 1,
          'even': 1,
          'riddler': 1,
          'stand': 1,
          'messed': 1,
          'glitzy': 1,
          'gotham': 1,
          'awkward': 1,
          'different': 1,
          'still': 1,
          'mess': 1,
          'hes': 1,
          'directors': 1,
          'whos': 1,
          'actors': 1,
          'writer': 1,
          'akiva': 1,
          'goldsmith': 1,
          'doesnt': 1,
          'really': 1,
          'give': 1,
          'anything': 1,
          'surprisingly': 1,
          'waynebatman': 1,
          'odonnell': 1,
          'crafty': 1,
          'robin': 1,
          'usual': 1,
          'couldve': 1,
          'somebody': 1,
          'batgirl': 1,
          'friend': 1,
          'likes': 1,
          'neve': 1,
          'campbell': 1,
          'silverstone': 1,
          'bad': 1,
          'thurman': 1,
          'poison': 1,
          'ivy': 1,
          'problem': 1,
          'nhis': 1,
          'accent': 1,
          'heavy': 1,
          'understand': 1,
          'says': 1,
          'action': 1,
          'stars': 1,
          'like': 1,
          'act': 1,
          'know': 1,
          'flex': 1,
          'muscles': 1,
          'say': 1,
          'amount': 1,
          'kill': 1,
          'bunch': 1,
          'guys': 1,
          'nobodyll': 1,
          'nthats': 1,
          'nschwarzenegger': 1,
          'deserve': 1,
          'billing': 1,
          'money': 1,
          'got': 1,
          'hollywood': 1,
          'thinks': 1,
          'npatrick': 1,
          'stewart': 1,
          'person': 1,
          'id': 1,
          'heard': 1,
          'considered': 1,
          'sean': 1,
          'connery': 1,
          'arnold': 1,
          'im': 1,
          'actor': 1,
          'life': 1,
          'realize': 1,
          'must': 1,
          'nice': 1,
          'talent': 1,
          'nakiva': 1,
          'goldsmiths': 1,
          'screenplay': 1,
          'avoids': 1,
          'happens': 1,
          'normal': 1,
          'nin': 1,
          'regular': 1,
          'concentrate': 1,
          'relationship': 1,
          'girlfriend': 1,
          'elle': 1,
          'macphersons': 1,
          'julie': 1,
          'madison': 1,
          'never': 1,
          'sense': 1,
          'nthere': 1,
          'talk': 1,
          'fifth': 1,
          'nmy': 1,
          'interest': 1,
          'see': 1,
          'low': 1,
          'hope': 1,
          'nif': 1,
          'dont': 1,
          'waste': 1,
          'time': 1,
          'rent': 1,
          'movies': 1,
          'blockbuster': 1,
          'nany': 1,
          'nneg': 1}),
 Counter({'would': 6,
          'joan': 5,
          'nthe': 5,
          'joans': 4,
          'revelation': 4,
          'holy': 4,
          'spirit': 4,
          'spiritual': 3,
          'man': 3,
          'god': 3,
          'message': 3,
          'messenger': 2,
          'little': 2,
          'woman': 2,
          'strong': 2,
          'leadership': 2,
          'visions': 2,
          'see': 2,
          'dauphin': 2,
          'deliver': 2,
          'army': 2,
          'command': 2,
          'crown': 2,
          'throne': 2,
          'fifth': 2,
          'element': 2,
          'cast': 2,
          'battle': 2,
          'end': 2,
          'jovovich': 2,
          'role': 2,
          'looks': 2,
          'character': 2,
          'like': 2,
          'malkovich': 2,
          'john': 2,
          'death': 2,
          'one': 2,
          'campaign': 2,
          'nas': 2,
          'men': 2,
          '1': 2,
          'word': 2,
          'spirits': 2,
          'scriptures': 2,
          'movie': 1,
          'deep': 1,
          'religious': 1,
          'undertones': 1,
          'surprising': 1,
          'find': 1,
          'story': 1,
          'arc': 1,
          'ungodly': 1,
          'mess': 1,
          'nin': 1,
          'early': 1,
          'mid': 1,
          '1400s': 1,
          'way': 1,
          'light': 1,
          'found': 1,
          'shining': 1,
          'heart': 1,
          'church': 1,
          'dismally': 1,
          'dark': 1,
          'oppressive': 1,
          'place': 1,
          'nfrance': 1,
          'involved': 1,
          'hundred': 1,
          'years': 1,
          'war': 1,
          'england': 1,
          'nthere': 1,
          'political': 1,
          'country': 1,
          'nmorale': 1,
          'low': 1,
          'hope': 1,
          'future': 1,
          'nit': 1,
          'within': 1,
          'setting': 1,
          'young': 1,
          'french': 1,
          'girl': 1,
          'began': 1,
          'hearing': 1,
          'voices': 1,
          'seeing': 1,
          'nconvinced': 1,
          'messages': 1,
          'brazenly': 1,
          'demanded': 1,
          'order': 1,
          'directly': 1,
          'give': 1,
          'nhe': 1,
          'nand': 1,
          'nthen': 1,
          'seated': 1,
          'abandons': 1,
          'english': 1,
          'captors': 1,
          'ndirector': 1,
          'luc': 1,
          'besson': 1,
          'may': 1,
          'cowrote': 1,
          'script': 1,
          'never': 1,
          'appeared': 1,
          'proper': 1,
          'handle': 1,
          'material': 1,
          'inconsistencies': 1,
          'confusing': 1,
          'blur': 1,
          'violent': 1,
          'scenes': 1,
          'inappropriate': 1,
          'musical': 1,
          'score': 1,
          'lack': 1,
          'vibrant': 1,
          'life': 1,
          'force': 1,
          'center': 1,
          'film': 1,
          'adds': 1,
          'largely': 1,
          'disappointing': 1,
          'product': 1,
          'oftentimes': 1,
          'unintentionally': 1,
          'laughable': 1,
          'nhis': 1,
          'biggest': 1,
          'miscue': 1,
          'wife': 1,
          'milla': 1,
          'title': 1,
          'nms': 1,
          'spectacular': 1,
          'clad': 1,
          'armor': 1,
          'astride': 1,
          'similarly': 1,
          'protected': 1,
          'horse': 1,
          'nif': 1,
          'enough': 1,
          'fully': 1,
          'convey': 1,
          'brilliant': 1,
          'nsince': 1,
          'isnt': 1,
          'tried': 1,
          'failed': 1,
          'act': 1,
          'part': 1,
          'nher': 1,
          'unbalanced': 1,
          'inspiring': 1,
          'troops': 1,
          'merely': 1,
          'screaming': 1,
          'stridently': 1,
          'waving': 1,
          'banner': 1,
          'sword': 1,
          'head': 1,
          'possessed': 1,
          'njohn': 1,
          'fares': 1,
          'bit': 1,
          'better': 1,
          'charles': 1,
          'vii': 1,
          'nan': 1,
          'easily': 1,
          'manipulated': 1,
          'weakness': 1,
          'foreshadows': 1,
          'betrayal': 1,
          'lead': 1,
          'nfaye': 1,
          'dunaway': 1,
          'thomas': 1,
          'affair': 1,
          'gives': 1,
          'performance': 1,
          'minimal': 1,
          'screen': 1,
          'time': 1,
          'dauphins': 1,
          'motherinlaw': 1,
          'chief': 1,
          'advisor': 1,
          'comprised': 1,
          'comical': 1,
          'figures': 1,
          'stooges': 1,
          'soldiers': 1,
          'exception': 1,
          'tcheky': 1,
          'karyo': 1,
          'la': 1,
          'femme': 1,
          'nikita': 1,
          'dunois': 1,
          'leading': 1,
          'attack': 1,
          'prior': 1,
          'arrival': 1,
          'ntrying': 1,
          'plan': 1,
          'systematic': 1,
          'sees': 1,
          'authority': 1,
          'negated': 1,
          'insistence': 1,
          'following': 1,
          'ndustin': 1,
          'hoffman': 1,
          'sphere': 1,
          'small': 1,
          'inhuman': 1,
          'conscience': 1,
          'begins': 1,
          'speaking': 1,
          'awaiting': 1,
          'trial': 1,
          'ndressed': 1,
          'cloaked': 1,
          'monk': 1,
          'leads': 1,
          'doubt': 1,
          'revelations': 1,
          'well': 1,
          'nscriptures': 1,
          'speak': 1,
          'ngod': 1,
          'via': 1,
          'gift': 1,
          'able': 1,
          'communicate': 1,
          'nthree': 1,
          'nine': 1,
          'manifestations': 1,
          'listed': 1,
          'corinthians': 1,
          '12': 1,
          'deal': 1,
          'receiving': 1,
          'nthey': 1,
          'knowledge': 1,
          'wisdom': 1,
          'discerning': 1,
          'neven': 1,
          'result': 1,
          'giving': 1,
          'nwho': 1,
          'spake': 1,
          'moved': 1,
          'e': 1,
          'nby': 1,
          'nbut': 1,
          'also': 1,
          'caution': 1,
          'us': 1,
          'n': 1,
          'beloved': 1,
          'believe': 1,
          'every': 1,
          'try': 1,
          'whether': 1,
          'many': 1,
          'false': 1,
          'prophets': 1,
          'gone': 1,
          'world': 1,
          'n1': 1,
          '4': 1,
          'kjv': 1,
          'njoans': 1,
          'burned': 1,
          'stake': 1,
          'age': 1,
          '19': 1,
          'frenzy': 1,
          'mob': 1,
          'rule': 1,
          'blood': 1,
          'lust': 1,
          'inspiration': 1,
          'wrought': 1,
          'pain': 1,
          'suffering': 1,
          'followed': 1,
          'point': 1,
          'devilish': 1,
          'influence': 1,
          'rather': 1,
          'godly': 1,
          'nwhile': 1,
          'conviction': 1,
          'intense': 1,
          'believing': 1,
          'remains': 1,
          'admirable': 1,
          'quality': 1,
          'others': 1,
          'since': 1,
          'misled': 1,
          'master': 1,
          'deception': 1,
          'quite': 1,
          'effective': 1,
          'nshe': 1,
          'confused': 1,
          'whose': 1,
          'carrying': 1,
          'nneg': 1}),
 Counter({'dinosaurs': 4,
          'jurrasic': 3,
          'park': 3,
          'nit': 2,
          'office': 2,
          'good': 2,
          'two': 2,
          'dinos': 2,
          'attraction': 2,
          'n': 2,
          'island': 2,
          'move': 2,
          'idea': 2,
          'document': 2,
          'one': 2,
          'na': 2,
          'nits': 2,
          'scenes': 2,
          'way': 2,
          'nothing': 2,
          'possibly': 1,
          'years': 1,
          'anticipated': 1,
          'film': 1,
          'finally': 1,
          'arrives': 1,
          'uk': 1,
          'smashed': 1,
          'u': 1,
          'box': 1,
          'records': 1,
          'opening': 1,
          'weekend': 1,
          'doubt': 1,
          'nbut': 1,
          'nin': 1,
          'word': 1,
          'nill': 1,
          'elaborate': 1,
          'nthe': 1,
          'story': 1,
          'follows': 1,
          'napparently': 1,
          'islands': 1,
          'none': 1,
          'lived': 1,
          'untouched': 1,
          'mankind': 1,
          'tourist': 1,
          'failed': 1,
          'even': 1,
          'opened': 1,
          'see': 1,
          'nimgen': 1,
          'company': 1,
          'funded': 1,
          'want': 1,
          'reccover': 1,
          'losses': 1,
          'taking': 1,
          'new': 1,
          'san': 1,
          'diago': 1,
          'nrealizing': 1,
          'bad': 1,
          'proffessor': 1,
          'john': 1,
          'hammond': 1,
          'richard': 1,
          'attenborough': 1,
          'decides': 1,
          'send': 1,
          'team': 1,
          'rally': 1,
          'public': 1,
          'support': 1,
          'preserve': 1,
          'nenter': 1,
          'familiar': 1,
          'mumbling': 1,
          'man': 1,
          'jeff': 1,
          'goldblum': 1,
          'agrees': 1,
          'go': 1,
          'told': 1,
          'girlfriend': 1,
          'already': 1,
          'nso': 1,
          'basically': 1,
          'ntwo': 1,
          'teams': 1,
          'sent': 1,
          'catch': 1,
          'mainland': 1,
          'trying': 1,
          'forced': 1,
          'work': 1,
          'together': 1,
          'fighting': 1,
          'survival': 1,
          'firm': 1,
          'intentions': 1,
          'eating': 1,
          'fairly': 1,
          'however': 1,
          'let': 1,
          'slight': 1,
          'problem': 1,
          'crap': 1,
          'nover': 1,
          'hours': 1,
          'chase': 1,
          'gets': 1,
          'boring': 1,
          'quiclky': 1,
          'nadd': 1,
          'terrible': 1,
          'script': 1,
          'feeble': 1,
          'attempts': 1,
          'occasional': 1,
          'characterisation': 1,
          'end': 1,
          'disinterested': 1,
          'becomes': 1,
          'background': 1,
          'noise': 1,
          'mind': 1,
          'starts': 1,
          'concentrating': 1,
          'things': 1,
          'like': 1,
          'whats': 1,
          'tea': 1,
          'cut': 1,
          'lawn': 1,
          'later': 1,
          'yes': 1,
          'shame': 1,
          'really': 1,
          'spielberg': 1,
          'lowered': 1,
          'making': 1,
          'essentially': 1,
          'blatant': 1,
          'cash': 1,
          'adds': 1,
          'practically': 1,
          'far': 1,
          'superior': 1,
          'nwith': 1,
          'creative': 1,
          'genuinely': 1,
          'tense': 1,
          'fabulous': 1,
          'c': 1,
          'g': 1,
          'ndinosaurs': 1,
          'rexs': 1,
          'seen': 1,
          'believed': 1,
          'else': 1,
          'recommend': 1,
          'lost': 1,
          'world': 1,
          'dissapointing': 1,
          'sequel': 1,
          'indeed': 1,
          'nneg': 1}),
 Counter({'holy': 5,
          'man': 5,
          'murphy': 5,
          'good': 4,
          'g': 4,
          'tries': 4,
          'performance': 3,
          'goldblum': 3,
          'ricky': 3,
          'media': 3,
          'nthe': 3,
          'onscreen': 3,
          'eddie': 2,
          'nunfortunately': 2,
          'long': 2,
          'annoying': 2,
          'robert': 2,
          'career': 2,
          'wait': 2,
          'video': 2,
          'fastforward': 2,
          'dull': 2,
          'enjoying': 2,
          'moment': 2,
          'spiritual': 2,
          'hayman': 2,
          'kelly': 2,
          'preston': 2,
          'shopping': 2,
          'network': 2,
          'loggia': 2,
          'n': 2,
          'attempts': 2,
          'things': 2,
          'already': 2,
          'film': 2,
          'thats': 2,
          'right': 2,
          'love': 2,
          'hes': 2,
          'way': 2,
          'boasts': 1,
          'sweet': 1,
          'gentle': 1,
          'comic': 1,
          'unusually': 1,
          'subdued': 1,
          'moderately': 1,
          'funny': 1,
          'skits': 1,
          'get': 1,
          'stuff': 1,
          'sit': 1,
          'painfully': 1,
          'setup': 1,
          'loads': 1,
          'tedious': 1,
          'filler': 1,
          'interminable': 1,
          'shots': 1,
          'jeff': 1,
          'stammering': 1,
          'twitching': 1,
          'superfluous': 1,
          'romantic': 1,
          'subplot': 1,
          'quite': 1,
          'possibly': 1,
          'loggias': 1,
          'nif': 1,
          'ever': 1,
          'movie': 1,
          'screamed': 1,
          'parts': 1,
          'neddie': 1,
          'plays': 1,
          'robed': 1,
          'nomadic': 1,
          'pilgrim': 1,
          'wandering': 1,
          'land': 1,
          'spreading': 1,
          'message': 1,
          'na': 1,
          'chance': 1,
          'meeting': 1,
          'stressedout': 1,
          'executive': 1,
          'homeshopping': 1,
          'channel': 1,
          'kate': 1,
          'newell': 1,
          'nononsense': 1,
          'analyst': 1,
          'results': 1,
          'physical': 1,
          'injury': 1,
          'quicker': 1,
          'say': 1,
          'odd': 1,
          'couple': 1,
          'ends': 1,
          'rooming': 1,
          'extremely': 1,
          'leery': 1,
          'nafter': 1,
          'script': 1,
          'gymnastics': 1,
          'appears': 1,
          'live': 1,
          'air': 1,
          'buy': 1,
          'wreaking': 1,
          'havoc': 1,
          'cheesy': 1,
          'product': 1,
          'demonstrations': 1,
          'enraging': 1,
          'owner': 1,
          'mr': 1,
          'mcbainbridge': 1,
          'becoming': 1,
          'national': 1,
          'sensation': 1,
          'several': 1,
          'nit': 1,
          'satirize': 1,
          'home': 1,
          'networks': 1,
          'difficult': 1,
          'effectively': 1,
          'make': 1,
          'fun': 1,
          'something': 1,
          'selfparody': 1,
          'teach': 1,
          'us': 1,
          'collecting': 1,
          'material': 1,
          'possessions': 1,
          'merely': 1,
          'futile': 1,
          'attempt': 1,
          'fill': 1,
          'holes': 1,
          'hearts': 1,
          'common': 1,
          'knowledge': 1,
          'also': 1,
          'present': 1,
          'story': 1,
          'redemption': 1,
          'decide': 1,
          'whether': 1,
          'exploit': 1,
          'gs': 1,
          'achieve': 1,
          'financial': 1,
          'security': 1,
          'thing': 1,
          'expense': 1,
          'nanyone': 1,
          'want': 1,
          'place': 1,
          'wager': 1,
          'final': 1,
          'decision': 1,
          'one': 1,
          'genuine': 1,
          'asset': 1,
          'gives': 1,
          'charming': 1,
          'sharing': 1,
          'relevant': 1,
          'advice': 1,
          'around': 1,
          'beaming': 1,
          'million': 1,
          'dollar': 1,
          'smile': 1,
          'moments': 1,
          'nmurphy': 1,
          'delightful': 1,
          'takes': 1,
          'whenever': 1,
          'enough': 1,
          'njeff': 1,
          'gets': 1,
          'lions': 1,
          'share': 1,
          'screen': 1,
          'time': 1,
          'tired': 1,
          'storyline': 1,
          'weighs': 1,
          'proceedings': 1,
          'nas': 1,
          'potential': 1,
          'interest': 1,
          'brighten': 1,
          'transforms': 1,
          'allbusiness': 1,
          'shark': 1,
          'empathic': 1,
          'softy': 1,
          'far': 1,
          'quickly': 1,
          'abrupt': 1,
          'change': 1,
          'reeks': 1,
          'contrivance': 1,
          'principal': 1,
          'actor': 1,
          'wastes': 1,
          'talents': 1,
          'onenote': 1,
          'turn': 1,
          'ruthless': 1,
          'screaming': 1,
          'monster': 1,
          'nstructurally': 1,
          'unsound': 1,
          'appealing': 1,
          'isnt': 1,
          'ninstead': 1,
          'dropping': 1,
          'money': 1,
          'theater': 1,
          'trifle': 1,
          'hits': 1,
          'past': 1,
          'everything': 1,
          'except': 1,
          'scenes': 1,
          'ng': 1,
          'suggests': 1,
          'focus': 1,
          'best': 1,
          'nneg': 1}),
 Counter({'love': 6,
          'letter': 6,
          'movie': 6,
          'little': 5,
          'also': 5,
          'bookstore': 4,
          'people': 3,
          'guilty': 3,
          'nthe': 3,
          'characters': 3,
          'must': 3,
          'bad': 2,
          'time': 2,
          'way': 2,
          'sit': 2,
          'dont': 2,
          'nreally': 2,
          'plot': 2,
          'shows': 2,
          'town': 2,
          'everyone': 2,
          'owner': 2,
          'helen': 2,
          'capshaw': 2,
          'seen': 2,
          'tom': 2,
          'feels': 2,
          'nto': 2,
          'degeneres': 2,
          'nothing': 2,
          'isnt': 2,
          'interesting': 2,
          'various': 2,
          'nthis': 2,
          'good': 2,
          'either': 2,
          'nthere': 2,
          'nbut': 2,
          'far': 2,
          'failure': 2,
          'actually': 1,
          'dreamworks': 1,
          'decided': 1,
          'release': 1,
          'star': 1,
          'wars': 1,
          'episode': 1,
          'phantom': 1,
          'menace': 1,
          'less': 1,
          'dreadful': 1,
          'comedy': 1,
          'nand': 1,
          'really': 1,
          'feel': 1,
          'wishing': 1,
          'death': 1,
          'boxoffice': 1,
          'nnot': 1,
          'done': 1,
          'mysterious': 1,
          'unaddressed': 1,
          'small': 1,
          'causing': 1,
          'confusion': 1,
          'reads': 1,
          'center': 1,
          'ensuing': 1,
          'disaster': 1,
          'kate': 1,
          'main': 1,
          'nin': 1,
          'past': 1,
          'year': 1,
          'half': 1,
          'weve': 1,
          'life': 1,
          'beautiful': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          'upcoming': 1,
          'notting': 1,
          'hill': 1,
          'finds': 1,
          'couch': 1,
          'cushions': 1,
          'nshe': 1,
          'immediately': 1,
          'starts': 1,
          'testing': 1,
          'see': 1,
          'might': 1,
          'comes': 1,
          'incorrect': 1,
          'conclusion': 1,
          'author': 1,
          'note': 1,
          'young': 1,
          'employee': 1,
          'played': 1,
          'everett': 1,
          'scott': 1,
          'nhe': 1,
          'reading': 1,
          'assumes': 1,
          'wrote': 1,
          'nafter': 1,
          'fall': 1,
          'well': 1,
          'duh': 1,
          'nkate': 1,
          'getting': 1,
          'relationship': 1,
          'someone': 1,
          'twenty': 1,
          'years': 1,
          'younger': 1,
          'involved': 1,
          'fireman': 1,
          'selleck': 1,
          'add': 1,
          'turmoil': 1,
          'mother': 1,
          'blythe': 1,
          'danner': 1,
          'apparently': 1,
          'daughter': 1,
          '9': 1,
          'trusted': 1,
          'manager': 1,
          'deadpan': 1,
          'ellen': 1,
          'quits': 1,
          'nsupporting': 1,
          'arent': 1,
          'called': 1,
          'supporting': 1,
          'ntheir': 1,
          'purpose': 1,
          'move': 1,
          'along': 1,
          'theyre': 1,
          'supposed': 1,
          'give': 1,
          'storyline': 1,
          'backbone': 1,
          'exhibit': 1,
          'least': 1,
          'marginal': 1,
          'depth': 1,
          'nrarely': 1,
          'work': 1,
          'puts': 1,
          'protagonist': 1,
          'middle': 1,
          'surrounds': 1,
          'hackneyed': 1,
          'dull': 1,
          'cardboard': 1,
          'secondary': 1,
          'especially': 1,
          'core': 1,
          'protagonists': 1,
          'interactions': 1,
          'letters': 1,
          'damning': 1,
          'error': 1,
          'ncapshaws': 1,
          'character': 1,
          'present': 1,
          'recent': 1,
          'romantic': 1,
          'comedies': 1,
          'surround': 1,
          'underwritten': 1,
          'purely': 1,
          'onedimensional': 1,
          'nbecause': 1,
          'awkward': 1,
          'insincere': 1,
          'neven': 1,
          'worse': 1,
          'bore': 1,
          'ni': 1,
          'liked': 1,
          'else': 1,
          'painfully': 1,
          'fake': 1,
          'undermining': 1,
          'drama': 1,
          'sexual': 1,
          'tension': 1,
          'potential': 1,
          'exist': 1,
          'particularly': 1,
          'hilarious': 1,
          'besides': 1,
          'wisecracks': 1,
          'theres': 1,
          'even': 1,
          'amusing': 1,
          'completely': 1,
          'thoughtless': 1,
          'film': 1,
          'director': 1,
          'peter': 1,
          'hosun': 1,
          'chan': 1,
          'job': 1,
          'portraying': 1,
          'helens': 1,
          'yearnings': 1,
          'subtle': 1,
          'complexities': 1,
          'profound': 1,
          'common': 1,
          'theme': 1,
          'running': 1,
          'proceedings': 1,
          'thus': 1,
          'seems': 1,
          'thoughtfully': 1,
          'pointless': 1,
          'harmless': 1,
          'abomination': 1,
          'torturous': 1,
          'nawful': 1,
          'inane': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'nneg': 1}),
 Counter({'word': 4,
          'nathan': 4,
          'say': 3,
          'conrad': 3,
          'gang': 3,
          'koster': 3,
          'promise': 2,
          'murphy': 2,
          'dont': 2,
          'girl': 2,
          'interrupted': 2,
          'new': 2,
          'father': 2,
          'famke': 2,
          'janssen': 2,
          'sean': 2,
          'best': 2,
          'get': 2,
          'inside': 2,
          'like': 2,
          'film': 2,
          'use': 2,
          'big': 2,
          'surrounded': 1,
          'hype': 1,
          'high': 1,
          'hopes': 1,
          'overthetop': 1,
          'performance': 1,
          'cluelesss': 1,
          'brittany': 1,
          'looked': 1,
          'full': 1,
          'nhell': 1,
          'hear': 1,
          'ill': 1,
          'never': 1,
          'tell': 1,
          'whisper': 1,
          'tv': 1,
          'commercial': 1,
          'goose': 1,
          'bumps': 1,
          'run': 1,
          'spine': 1,
          'nalas': 1,
          'filled': 1,
          'little': 1,
          'disappointment': 1,
          'kooky': 1,
          'mix': 1,
          'ransom': 1,
          'michael': 1,
          'douglas': 1,
          'company': 1,
          'collecting': 1,
          'paycheck': 1,
          'plod': 1,
          'vapid': 1,
          'dull': 1,
          'kidnapping': 1,
          'thriller': 1,
          'ndouglas': 1,
          'stars': 1,
          'renowned': 1,
          'york': 1,
          'psychologist': 1,
          'devoted': 1,
          'jessie': 1,
          'skye': 1,
          'mccole': 1,
          'bartusiak': 1,
          'loving': 1,
          'husband': 1,
          'aggie': 1,
          'nafter': 1,
          'jewel': 1,
          'thieves': 1,
          'headed': 1,
          'beans': 1,
          'kidnaps': 1,
          'daughter': 1,
          'forced': 1,
          'extract': 1,
          'patient': 1,
          'catatonic': 1,
          'violent': 1,
          'elisabeth': 1,
          'burrows': 1,
          'location': 1,
          'hidden': 1,
          'bank': 1,
          'job': 1,
          'booty': 1,
          'hid': 1,
          'decade': 1,
          'ago': 1,
          'nbut': 1,
          'hardnosed': 1,
          'detective': 1,
          'sandra': 1,
          'cassidy': 1,
          'jennifer': 1,
          'esposito': 1,
          'j': 1,
          'lo': 1,
          'impression': 1,
          'tracking': 1,
          'hoodlums': 1,
          'stakes': 1,
          'raised': 1,
          'races': 1,
          'clock': 1,
          'crack': 1,
          'mystery': 1,
          'elisabeths': 1,
          'head': 1,
          'order': 1,
          'goods': 1,
          'nthe': 1,
          'catch': 1,
          'five': 1,
          'oclock': 1,
          'solve': 1,
          'puzzle': 1,
          'nwhoa': 1,
          'suspense': 1,
          'almost': 1,
          'much': 1,
          'ndont': 1,
          'loses': 1,
          'audience': 1,
          '15': 1,
          'minutes': 1,
          'nmurphy': 1,
          'looks': 1,
          'acts': 1,
          'linda': 1,
          'blair': 1,
          'exorcist': 1,
          'first': 1,
          'part': 1,
          'movie': 1,
          'turns': 1,
          'around': 1,
          'reprises': 1,
          'role': 1,
          'nand': 1,
          'real': 1,
          'crazy': 1,
          'found': 1,
          'director': 1,
          'gary': 1,
          'fleders': 1,
          'things': 1,
          'denver': 1,
          'youre': 1,
          'dead': 1,
          'staggering': 1,
          'flashback': 1,
          'sequences': 1,
          'noliver': 1,
          'platt': 1,
          'even': 1,
          'bean': 1,
          'decent': 1,
          'actors': 1,
          'stuff': 1,
          'given': 1,
          'bedridden': 1,
          'wife': 1,
          'fighting': 1,
          'token': 1,
          'black': 1,
          'guy': 1,
          'crutch': 1,
          'insulting': 1,
          'demeaning': 1,
          'nadditionally': 1,
          'surveillance': 1,
          'cameras': 1,
          'laptops': 1,
          'track': 1,
          'nathans': 1,
          'every': 1,
          'move': 1,
          'downright': 1,
          'unbelievable': 1,
          'nhow': 1,
          'excons': 1,
          'fresh': 1,
          'house': 1,
          'afford': 1,
          'equipment': 1,
          'ndespite': 1,
          'flaws': 1,
          'surprisingly': 1,
          'mainstream': 1,
          'youll': 1,
          'find': 1,
          'month': 1,
          'audiences': 1,
          'lap': 1,
          'namericans': 1,
          'love': 1,
          'lukewarm': 1,
          'halfbaked': 1,
          'thrillers': 1,
          'starring': 1,
          'names': 1,
          'accompanied': 1,
          'cheap': 1,
          'thrills': 1,
          'nsomeone': 1,
          'lithium': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'mr': 5,
          'nthe': 5,
          'magoo': 5,
          'said': 4,
          'version': 3,
          'nmagoo': 3,
          'cartoon': 3,
          'one': 3,
          'nmr': 3,
          'good': 3,
          'picture': 3,
          'age': 3,
          'funny': 2,
          'think': 2,
          'nielsen': 2,
          'runs': 2,
          'even': 2,
          'movies': 2,
          'looks': 2,
          'bad': 2,
          'home': 2,
          'alone': 2,
          '3': 2,
          'nhe': 2,
          'nmy': 2,
          '8': 2,
          'thought': 2,
          'really': 2,
          'nhis': 2,
          'friend': 2,
          'silly': 2,
          'concepts': 1,
          'seem': 1,
          'patently': 1,
          'hopeless': 1,
          'beginning': 1,
          'liveaction': 1,
          'prime': 1,
          'example': 1,
          'figure': 1,
          'bumbling': 1,
          'blind': 1,
          'man': 1,
          'quite': 1,
          'small': 1,
          'doses': 1,
          'within': 1,
          'confines': 1,
          'animated': 1,
          'images': 1,
          'nif': 1,
          'naked': 1,
          'gun': 1,
          'star': 1,
          'leslie': 1,
          'dubious': 1,
          'choice': 1,
          'play': 1,
          'role': 1,
          'short': 1,
          'guy': 1,
          'walls': 1,
          'right': 1,
          'astonishing': 1,
          'selection': 1,
          'nfor': 1,
          'director': 1,
          'tapped': 1,
          'hong': 1,
          'kongs': 1,
          'stanley': 1,
          'tong': 1,
          'whose': 1,
          'resume': 1,
          'consists': 1,
          'mainly': 1,
          'handful': 1,
          'featuring': 1,
          'martial': 1,
          'arts': 1,
          'expert': 1,
          'jackie': 1,
          'chan': 1,
          'story': 1,
          'large': 1,
          'stolen': 1,
          'ruby': 1,
          'woolworth': 1,
          'reject': 1,
          'gets': 1,
          'course': 1,
          'realize': 1,
          'nmayhem': 1,
          'ensues': 1,
          'guys': 1,
          'chase': 1,
          'frequently': 1,
          'oblivious': 1,
          'fact': 1,
          'anyone': 1,
          'chased': 1,
          'nlike': 1,
          'without': 1,
          'class': 1,
          'described': 1,
          'painfully': 1,
          'nfifteen': 1,
          'minutes': 1,
          'feels': 1,
          'like': 1,
          'eternity': 1,
          'humor': 1,
          'pathetically': 1,
          'lame': 1,
          'pacing': 1,
          'way': 1,
          'nwhen': 1,
          'stuck': 1,
          'theater': 1,
          'hour': 1,
          'half': 1,
          'watching': 1,
          'claims': 1,
          'motion': 1,
          'solace': 1,
          'provides': 1,
          'three': 1,
          'moments': 1,
          'begins': 1,
          'ends': 1,
          'classic': 1,
          'character': 1,
          'exudes': 1,
          'usual': 1,
          'charm': 1,
          'saving': 1,
          'grave': 1,
          'angus': 1,
          'sweet': 1,
          'little': 1,
          'bulldog': 1,
          'nangus': 1,
          'demonstrates': 1,
          'genuine': 1,
          'emotions': 1,
          'wider': 1,
          'acting': 1,
          'range': 1,
          'humans': 1,
          'nfinally': 1,
          'ending': 1,
          'credits': 1,
          'contain': 1,
          'outtakes': 1,
          'genuineness': 1,
          'spontaneity': 1,
          'badly': 1,
          'lacked': 1,
          'nrather': 1,
          'attempt': 1,
          'adapt': 1,
          'noncartoon': 1,
          'makes': 1,
          'strategic': 1,
          'mistake': 1,
          'trying': 1,
          'literally': 1,
          'human': 1,
          'trouble': 1,
          'sustaining': 1,
          'squinting': 1,
          'eyes': 1,
          'affected': 1,
          'voice': 1,
          'comes': 1,
          'awkwardly': 1,
          'unfunny': 1,
          'wife': 1,
          'managed': 1,
          'get': 1,
          'sleep': 1,
          'lucky': 1,
          'nhopefully': 1,
          'force': 1,
          'producers': 1,
          'harder': 1,
          'subjects': 1,
          'promise': 1,
          '1': 1,
          '37': 1,
          'nit': 1,
          'rated': 1,
          'pg': 1,
          'comic': 1,
          'violence': 1,
          'would': 1,
          'acceptable': 1,
          'ages': 1,
          'son': 1,
          'jeffrey': 1,
          'recommends': 1,
          'choose': 1,
          'want': 1,
          'action': 1,
          'liked': 1,
          'much': 1,
          'maxim': 1,
          '9': 1,
          'parts': 1,
          'make': 1,
          'sense': 1,
          'nickolas': 1,
          'hed': 1,
          'give': 1,
          '12': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'jeff': 4,
          'warren': 4,
          'film': 4,
          'also': 4,
          'amy': 3,
          'plot': 3,
          'k': 3,
          'enough': 3,
          'story': 3,
          'picture': 3,
          'nkurt': 2,
          'russell': 2,
          'na': 2,
          'walsh': 2,
          'nalthough': 2,
          'find': 2,
          'wise': 2,
          'far': 2,
          'character': 2,
          'although': 2,
          'pull': 2,
          'one': 2,
          'expression': 2,
          'angry': 2,
          'nthroughout': 2,
          'whole': 2,
          'looks': 2,
          'dorky': 2,
          'really': 2,
          'cast': 2,
          'directs': 2,
          'characters': 2,
          'breakdown': 1,
          'moderately': 1,
          'entertaining': 1,
          'underwhelming': 1,
          'thriller': 1,
          'kathleen': 1,
          'quinlan': 1,
          'play': 1,
          'couple': 1,
          'taylor': 1,
          'taking': 1,
          'scenic': 1,
          'route': 1,
          'california': 1,
          'redneck': 1,
          'country': 1,
          'nhowever': 1,
          'middle': 1,
          'nowhere': 1,
          'jeep': 1,
          'decides': 1,
          'break': 1,
          'leaving': 1,
          'stranded': 1,
          'friendly': 1,
          'truck': 1,
          'driver': 1,
          'offers': 1,
          'give': 1,
          'lift': 1,
          'town': 1,
          'rejects': 1,
          'offer': 1,
          'wants': 1,
          'stay': 1,
          'car': 1,
          'agrees': 1,
          'hops': 1,
          'warrens': 1,
          'lorry': 1,
          'promptly': 1,
          'disappears': 1,
          'njeff': 1,
          'wonders': 1,
          'hell': 1,
          'later': 1,
          'catches': 1,
          'says': 1,
          'never': 1,
          'seen': 1,
          'life': 1,
          'thickens': 1,
          'goes': 1,
          'chase': 1,
          'wife': 1,
          'comparisons': 1,
          'made': 1,
          'deliverance': 1,
          '1972': 1,
          'vanishing': 1,
          '1993': 1,
          'latter': 1,
          'two': 1,
          'superior': 1,
          'script': 1,
          'seemingly': 1,
          'pissed': 1,
          'nquinlan': 1,
          'looking': 1,
          'nj': 1,
          'sadly': 1,
          'recently': 1,
          'passed': 1,
          'away': 1,
          'fine': 1,
          'soon': 1,
          'kidnapper': 1,
          'actual': 1,
          'pretty': 1,
          'weak': 1,
          'menacing': 1,
          'supporting': 1,
          'best': 1,
          'aswell': 1,
          'rex': 1,
          'linn': 1,
          'doubting': 1,
          'sheriff': 1,
          'kidnappers': 1,
          'written': 1,
          'firsttimer': 1,
          'jonathan': 1,
          'mostow': 1,
          'surprisingly': 1,
          'familiar': 1,
          'sometimes': 1,
          'extraordinarily': 1,
          'stupid': 1,
          'nsome': 1,
          'things': 1,
          'movie': 1,
          'beyond': 1,
          'bounds': 1,
          'idiocy': 1,
          'nthere': 1,
          'flaws': 1,
          'complete': 1,
          'opposite': 1,
          'logical': 1,
          'presumably': 1,
          'keep': 1,
          'exciting': 1,
          'fact': 1,
          'isnt': 1,
          'strong': 1,
          'sustain': 1,
          'audiences': 1,
          'attention': 1,
          'moves': 1,
          'along': 1,
          'slowly': 1,
          'nit': 1,
          'almost': 1,
          'threatens': 1,
          'drop': 1,
          'dead': 1,
          'pick': 1,
          'towards': 1,
          'end': 1,
          'late': 1,
          'nmostow': 1,
          'action': 1,
          'sequences': 1,
          'well': 1,
          'however': 1,
          'doesnt': 1,
          'come': 1,
          'satisfying': 1,
          'conclusion': 1,
          'either': 1,
          'ending': 1,
          'tries': 1,
          'bleak': 1,
          'comes': 1,
          'annoying': 1,
          'nbreakdown': 1,
          'could': 1,
          'enjoyable': 1,
          'stronger': 1,
          'director': 1,
          'ninstead': 1,
          'turns': 1,
          'merely': 1,
          'average': 1,
          'missed': 1,
          'opportunity': 1,
          'noverall': 1,
          'rating': 1,
          'review': 1,
          'david': 1,
          'wilcock': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'nthe': 4,
          'godzilla': 4,
          'special': 4,
          'effects': 4,
          'right': 4,
          'film': 3,
          'degree': 3,
          'nand': 3,
          'ni': 3,
          'ugh': 2,
          'original': 2,
          'movies': 2,
          'cult': 2,
          'classic': 2,
          'certain': 2,
          'lizard': 2,
          'maintained': 2,
          'whatever': 2,
          'us': 2,
          'one': 2,
          'giant': 2,
          'scene': 2,
          'comes': 2,
          'drag': 2,
          'size': 2,
          'matter': 2,
          'sums': 1,
          'njust': 1,
          'somewhat': 1,
          'reviewing': 1,
          'previous': 1,
          'films': 1,
          'intelligence': 1,
          'reason': 1,
          'found': 1,
          'enviable': 1,
          'following': 1,
          'spite': 1,
          'bad': 1,
          'horrible': 1,
          'dubbing': 1,
          'man': 1,
          'suit': 1,
          'put': 1,
          'ndignity': 1,
          'nnot': 1,
          'quite': 1,
          'word': 1,
          'im': 1,
          'looking': 1,
          'nyou': 1,
          'understand': 1,
          '50': 1,
          'years': 1,
          'nleave': 1,
          'america': 1,
          'screw': 1,
          'whole': 1,
          'thing': 1,
          'nfrom': 1,
          'geniuses': 1,
          'brought': 1,
          'independece': 1,
          'day': 1,
          'arguably': 1,
          'worst': 1,
          'scifi': 1,
          'time': 1,
          'ruin': 1,
          'reputation': 1,
          'nwhile': 1,
          'bring': 1,
          'eyepopping': 1,
          'amaze': 1,
          'lost': 1,
          'center': 1,
          'storyline': 1,
          'nsumming': 1,
          'simple': 1,
          'nheck': 1,
          'sentence': 1,
          'attacks': 1,
          'city': 1,
          'bunch': 1,
          'nobodies': 1,
          'stop': 1,
          'nsimple': 1,
          'nmatthew': 1,
          'broderick': 1,
          'stumbles': 1,
          'lines': 1,
          'hard': 1,
          'picture': 1,
          'hank': 1,
          'azaria': 1,
          'role': 1,
          'besides': 1,
          'dogwalking': 1,
          'character': 1,
          'television': 1,
          'show': 1,
          'mad': 1,
          'dialogue': 1,
          'seems': 1,
          'improvized': 1,
          'almost': 1,
          'rehearsel': 1,
          'done': 1,
          'see': 1,
          'set': 1,
          'n': 1,
          'nwe': 1,
          'spent': 1,
          'money': 1,
          'making': 1,
          'big': 1,
          'weve': 1,
          'got': 1,
          'ta': 1,
          'get': 1,
          'summer': 1,
          'going': 1,
          'bomb': 1,
          'faces': 1,
          'nso': 1,
          'actors': 1,
          'say': 1,
          'ever': 1,
          'top': 1,
          'head': 1,
          'nmake': 1,
          'something': 1,
          'mkay': 1,
          'ngood': 1,
          'nroll': 1,
          'enough': 1,
          'keep': 1,
          'interested': 1,
          'viewing': 1,
          'cinemtography': 1,
          'welldone': 1,
          'black': 1,
          'umbrellas': 1,
          'mind': 1,
          'nstill': 1,
          'hour': 1,
          'become': 1,
          'antsy': 1,
          'wondering': 1,
          'long': 1,
          'laugh': 1,
          'slogan': 1,
          'think': 1,
          'cut': 1,
          'short': 1,
          'nit': 1,
          'read': 1,
          'nacting': 1,
          'nneg': 1}),
 Counter({'double': 5,
          'team': 5,
          'stavros': 5,
          'rodman': 4,
          'much': 4,
          'damme': 3,
          'never': 3,
          'movie': 3,
          'nand': 3,
          'quinn': 3,
          'yaz': 3,
          'whats': 3,
          'going': 3,
          'result': 2,
          'van': 2,
          'needs': 2,
          'another': 2,
          'bad': 2,
          'one': 2,
          'hes': 2,
          'pretty': 2,
          'role': 2,
          'work': 2,
          'kill': 2,
          'nquinn': 2,
          'tries': 2,
          'nbut': 2,
          'us': 2,
          'need': 2,
          'ripe': 1,
          'explosions': 1,
          'mass': 1,
          'death': 1,
          'really': 1,
          'weird': 1,
          'hairdos': 1,
          'tsui': 1,
          'harks': 1,
          'must': 1,
          'tipsy': 1,
          'hollywood': 1,
          'power': 1,
          'lunch': 1,
          'decided': 1,
          'jeanclaude': 1,
          'notch': 1,
          'moviebedpost': 1,
          'nba': 1,
          'superstar': 1,
          'dennis': 1,
          'acting': 1,
          'career': 1,
          'nactually': 1,
          'neithers': 1,
          'performance': 1,
          'nive': 1,
          'always': 1,
          'critic': 1,
          'defend': 1,
          'possesses': 1,
          'high': 1,
          'charisma': 1,
          'level': 1,
          'genre': 1,
          'stars': 1,
          'namely': 1,
          'steven': 1,
          'seagal': 1,
          'aim': 1,
          'made': 1,
          'exuberantly': 1,
          'witty': 1,
          'since': 1,
          '1994s': 1,
          'timecop': 1,
          'nwell': 1,
          'nhes': 1,
          'extremely': 1,
          'colorful': 1,
          'therefore': 1,
          'fits': 1,
          'even': 1,
          'excia': 1,
          'weapons': 1,
          'expert': 1,
          'nits': 1,
          'story': 1,
          'major': 1,
          'nvan': 1,
          'plays': 1,
          'counterterrorist': 1,
          'operative': 1,
          'jack': 1,
          'teams': 1,
          'arms': 1,
          'dealer': 1,
          'rub': 1,
          'deadly': 1,
          'gangster': 1,
          'mickey': 1,
          'rourke': 1,
          'beefy': 1,
          'weirdlooking': 1,
          'antwerp': 1,
          'amusement': 1,
          'park': 1,
          'job': 1,
          'botched': 1,
          'son': 1,
          'gets': 1,
          'killed': 1,
          'gunfire': 1,
          'taken': 1,
          'island': 1,
          'known': 1,
          'colony': 1,
          'think': 1,
          'tank': 1,
          'soldiers': 1,
          'valuable': 1,
          'dangerous': 1,
          'set': 1,
          'free': 1,
          'escapes': 1,
          'make': 1,
          'back': 1,
          'home': 1,
          'pregnant': 1,
          'wife': 1,
          'natacha': 1,
          'lindinger': 1,
          'revenge': 1,
          'kidnaps': 1,
          'nso': 1,
          'kickboxing': 1,
          'mercenary': 1,
          'looks': 1,
          'two': 1,
          'travel': 1,
          'rome': 1,
          'rescue': 1,
          'woman': 1,
          'save': 1,
          'world': 1,
          'whatever': 1,
          'else': 1,
          'screenplay': 1,
          'requires': 1,
          'nwith': 1,
          'crazy': 1,
          'often': 1,
          'eyepopping': 1,
          'camera': 1,
          'peter': 1,
          'pau': 1,
          'rodmans': 1,
          'lite': 1,
          'brite': 1,
          'locks': 1,
          'mildly': 1,
          'enjoyable': 1,
          'guilty': 1,
          'pleasure': 1,
          'happen': 1,
          'frame': 1,
          'leaves': 1,
          'exhausted': 1,
          'rather': 1,
          'exhilarated': 1,
          'nthe': 1,
          'numerous': 1,
          'action': 1,
          'scenes': 1,
          'loud': 1,
          'headacheinducing': 1,
          'frenetic': 1,
          'pacing': 1,
          'slows': 1,
          'enough': 1,
          'care': 1,
          'wacky': 1,
          'ntheres': 1,
          'whole': 1,
          'segment': 1,
          'devoted': 1,
          'netsurfing': 1,
          'monks': 1,
          'yet': 1,
          'figure': 1,
          'climax': 1,
          'finds': 1,
          'headtohead': 1,
          'tiger': 1,
          'roman': 1,
          'coliseum': 1,
          'circles': 1,
          'motorcycle': 1,
          'trying': 1,
          'avoid': 1,
          'running': 1,
          'land': 1,
          'mines': 1,
          'hold': 1,
          'quinns': 1,
          'baby': 1,
          'boy': 1,
          'whos': 1,
          'bomb': 1,
          'equipped': 1,
          'basket': 1,
          'watches': 1,
          'shirtless': 1,
          'bleachers': 1,
          'ndid': 1,
          'mention': 1,
          'strange': 1,
          'nwhen': 1,
          'comes': 1,
          'rarely': 1,
          'entertaining': 1,
          'formula': 1,
          'killathon': 1,
          'albeit': 1,
          'feels': 1,
          'indulge': 1,
          'gratuitous': 1,
          'profanity': 1,
          'nrodman': 1,
          'juices': 1,
          'things': 1,
          'blatantly': 1,
          'vibrant': 1,
          'screen': 1,
          'persona': 1,
          'though': 1,
          'leading': 1,
          'stunt': 1,
          'kicks': 1,
          'opponent': 1,
          'legs': 1,
          'didnt': 1,
          'tell': 1,
          'could': 1,
          'nneg': 1}),
 Counter({'virtual': 7,
          'reality': 5,
          'nthe': 4,
          'seduction': 4,
          'films': 4,
          'movie': 4,
          'one': 4,
          'paris': 3,
          'current': 3,
          'strange': 3,
          'days': 3,
          'could': 3,
          'plays': 3,
          'man': 2,
          'lover': 2,
          'home': 2,
          'unit': 2,
          'subject': 2,
          'due': 2,
          'far': 2,
          'film': 2,
          'movies': 2,
          'lovers': 2,
          'technology': 2,
          'rather': 2,
          'though': 2,
          'nthis': 2,
          'much': 2,
          'fact': 2,
          'ultimately': 2,
          'nvirtual': 2,
          'sitcom': 2,
          'character': 2,
          'interesting': 2,
          'isnt': 2,
          'either': 2,
          'laundry': 2,
          'watch': 2,
          'synopsis': 1,
          'whose': 1,
          'murdered': 1,
          'agrees': 1,
          'test': 1,
          'experimental': 1,
          'system': 1,
          'escapes': 1,
          'real': 1,
          'world': 1,
          'girlfriend': 1,
          'laura': 1,
          'becomes': 1,
          'addicted': 1,
          'design': 1,
          'flaw': 1,
          'recreates': 1,
          'dead': 1,
          'ncomments': 1,
          'executive': 1,
          'produced': 1,
          'roger': 1,
          'corman': 1,
          'lance': 1,
          'h': 1,
          'robbins': 1,
          'serves': 1,
          'cheaplymade': 1,
          'precursor': 1,
          'superior': 1,
          'nboth': 1,
          'deal': 1,
          'desperate': 1,
          'men': 1,
          'trouble': 1,
          'relating': 1,
          'ab': 1,
          'using': 1,
          'former': 1,
          'utilized': 1,
          'recorded': 1,
          'dreams': 1,
          'ninterestingly': 1,
          'also': 1,
          'take': 1,
          'place': 1,
          'couple': 1,
          'years': 1,
          'turn': 1,
          'new': 1,
          'millenium': 1,
          'uses': 1,
          'setting': 1,
          'effectively': 1,
          'exemplifies': 1,
          'problem': 1,
          'nits': 1,
          'bad': 1,
          'lowbudget': 1,
          'science': 1,
          'fiction': 1,
          'concerning': 1,
          'psychological': 1,
          'dangers': 1,
          'nunfortunately': 1,
          'done': 1,
          'since': 1,
          'better': 1,
          'leaves': 1,
          'scifi': 1,
          'fan': 1,
          'bored': 1,
          'many': 1,
          'faults': 1,
          'video': 1,
          'inexplicably': 1,
          'trailer': 1,
          'begins': 1,
          'script': 1,
          'explores': 1,
          'possibilities': 1,
          'interestingly': 1,
          'first': 1,
          'treatment': 1,
          'matter': 1,
          'gets': 1,
          'heavyhanded': 1,
          'wooden': 1,
          'progresses': 1,
          'nmany': 1,
          'important': 1,
          'scenes': 1,
          'seem': 1,
          'dark': 1,
          'lighting': 1,
          'improved': 1,
          'significantly': 1,
          'cast': 1,
          'collection': 1,
          'veteran': 1,
          'bmovie': 1,
          'actors': 1,
          'regulars': 1,
          'mediocre': 1,
          'job': 1,
          'roles': 1,
          'njeff': 1,
          'fahey': 1,
          'original': 1,
          'lawnmower': 1,
          'convincingly': 1,
          'unenergetically': 1,
          'lead': 1,
          'ncarrie': 1,
          'genzel': 1,
          'vr': 1,
          'ami': 1,
          'dolenz': 1,
          'love': 1,
          'interest': 1,
          'seems': 1,
          'like': 1,
          'attractive': 1,
          'caring': 1,
          'personality': 1,
          'doesnt': 1,
          'lend': 1,
          'credence': 1,
          'premise': 1,
          'nmeschach': 1,
          'taylor': 1,
          'popular': 1,
          'designing': 1,
          'women': 1,
          'adequately': 1,
          'scientist': 1,
          'working': 1,
          'project': 1,
          'performance': 1,
          'something': 1,
          'write': 1,
          'harmless': 1,
          'light': 1,
          'manual': 1,
          'labor': 1,
          'mind': 1,
          'background': 1,
          'nin': 1,
          'words': 1,
          'fold': 1,
          'glancing': 1,
          'every': 1,
          'boring': 1,
          'sit': 1,
          'surprisingly': 1,
          'violent': 1,
          'expects': 1,
          'bmovies': 1,
          'genre': 1,
          'still': 1,
          'adult': 1,
          'rrated': 1,
          'sexual': 1,
          'situations': 1,
          'suicide': 1,
          'attempt': 1,
          'turkey': 1,
          'awful': 1,
          'particularly': 1,
          'unique': 1,
          'ndont': 1,
          'seduced': 1,
          'watching': 1,
          'unless': 1,
          'youve': 1,
          'got': 1,
          'several': 1,
          'loads': 1,
          'nothing': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'every': 6,
          'film': 5,
          'time': 5,
          'fact': 4,
          'minutes': 4,
          'nbut': 4,
          'sam': 4,
          'even': 3,
          'one': 3,
          'campbell': 3,
          'richards': 3,
          'two': 3,
          'thru': 3,
          'things': 3,
          'twist': 3,
          'much': 3,
          'high': 3,
          'student': 3,
          'nthe': 3,
          'wash': 3,
          'comes': 3,
          'good': 3,
          'nin': 3,
          'couldve': 3,
          'yeah': 2,
          'starship': 2,
          'troopers': 2,
          'denise': 2,
          'plenty': 2,
          'plot': 2,
          'leave': 2,
          'least': 2,
          'school': 2,
          'counselor': 2,
          'lombardo': 2,
          'seems': 2,
          'particularly': 2,
          'kelly': 2,
          'effort': 2,
          'car': 2,
          'guidance': 2,
          'youll': 2,
          'youre': 2,
          'trial': 2,
          'story': 2,
          'bill': 2,
          'murray': 2,
          'nyes': 2,
          'could': 2,
          'twisted': 2,
          'realized': 2,
          'acting': 2,
          'fox': 2,
          'primetime': 2,
          'soap': 2,
          'thing': 2,
          'nand': 2,
          'last': 2,
          'years': 2,
          'actually': 2,
          'better': 2,
          'right': 2,
          'wild': 2,
          'ni': 2,
          'advertisements': 1,
          'didnt': 1,
          'try': 1,
          'conceal': 1,
          'hook': 1,
          'sex': 1,
          'nneve': 1,
          'getting': 1,
          'nok': 1,
          'nyeah': 1,
          'decent': 1,
          'erotica': 1,
          'thats': 1,
          'main': 1,
          'interest': 1,
          'theres': 1,
          'cheeziness': 1,
          'sit': 1,
          'exchange': 1,
          'nwild': 1,
          'lot': 1,
          'think': 1,
          'might': 1,
          'expect': 1,
          'however': 1,
          'nnearly': 1,
          'single': 1,
          'scene': 1,
          'huge': 1,
          'guaranteed': 1,
          'guessing': 1,
          'curious': 1,
          'see': 1,
          'next': 1,
          'turn': 1,
          'throughout': 1,
          'entire': 1,
          'fastpaced': 1,
          'razorsharp': 1,
          'turning': 1,
          'events': 1,
          'doesnt': 1,
          'enjoy': 1,
          'surprises': 1,
          'nwe': 1,
          'start': 1,
          'highclass': 1,
          'california': 1,
          'resembles': 1,
          'supermodel': 1,
          'making': 1,
          'nguidance': 1,
          'matt': 1,
          'dillon': 1,
          'catch': 1,
          'eye': 1,
          'van': 1,
          'ryan': 1,
          'daughter': 1,
          'locally': 1,
          'prestigious': 1,
          'family': 1,
          'whose': 1,
          'social': 1,
          'status': 1,
          'bank': 1,
          'accounts': 1,
          'nright': 1,
          'bat': 1,
          'using': 1,
          'asset': 1,
          'seduce': 1,
          'mr': 1,
          'fundraiser': 1,
          'opportune': 1,
          'counselors': 1,
          'jeep': 1,
          'white': 1,
          'clothes': 1,
          'take': 1,
          'precautions': 1,
          'insure': 1,
          'soaked': 1,
          'head': 1,
          'toe': 1,
          'done': 1,
          'non': 1,
          'weekend': 1,
          'kellys': 1,
          'attempts': 1,
          'seduction': 1,
          'fall': 1,
          'flat': 1,
          'concocts': 1,
          'tale': 1,
          'raped': 1,
          'day': 1,
          'nnaturally': 1,
          'thrown': 1,
          'state': 1,
          'panicked': 1,
          'shock': 1,
          'accusations': 1,
          'otherwise': 1,
          'unsubstantial': 1,
          'fabrications': 1,
          'soon': 1,
          'lead': 1,
          'criminal': 1,
          'lowclass': 1,
          'marijuana': 1,
          'smoking': 1,
          'name': 1,
          'suzie': 1,
          'toller': 1,
          'forth': 1,
          'near': 1,
          'identical': 1,
          'also': 1,
          'involving': 1,
          'trusted': 1,
          'npitting': 1,
          'communities': 1,
          'respected': 1,
          'names': 1,
          'authoritarians': 1,
          'must': 1,
          'prove': 1,
          'innocence': 1,
          'aid': 1,
          'makeshift': 1,
          'defense': 1,
          'attorney': 1,
          'ken': 1,
          'bowden': 1,
          'played': 1,
          'nsound': 1,
          'like': 1,
          'complete': 1,
          'alone': 1,
          'beginning': 1,
          'fifteen': 1,
          'twenty': 1,
          'nit': 1,
          'merely': 1,
          'used': 1,
          'launch': 1,
          'recent': 1,
          'nby': 1,
          'finishes': 1,
          'gone': 1,
          'imaginable': 1,
          'nunfortunately': 1,
          'going': 1,
          'given': 1,
          'enough': 1,
          'predicament': 1,
          'effectively': 1,
          'shocked': 1,
          'new': 1,
          'nthis': 1,
          'way': 1,
          'director': 1,
          'john': 1,
          'mcnaughton': 1,
          'fails': 1,
          'make': 1,
          'fun': 1,
          '113': 1,
          'fly': 1,
          'although': 1,
          'never': 1,
          'feels': 1,
          'underdeveloped': 1,
          'pretzel': 1,
          'storytelling': 1,
          'richly': 1,
          'slower': 1,
          'pace': 1,
          'taken': 1,
          'incredibly': 1,
          'reminiscent': 1,
          'operas': 1,
          'happens': 1,
          'hail': 1,
          'party': 1,
          'five': 1,
          'everyone': 1,
          'suffers': 1,
          'heavily': 1,
          'melodramatic': 1,
          'overtones': 1,
          'ndillon': 1,
          'charming': 1,
          'understated': 1,
          'role': 1,
          'gives': 1,
          'best': 1,
          'performance': 1,
          'murrays': 1,
          'surprising': 1,
          'appearance': 1,
          'adds': 1,
          'comedic': 1,
          'flare': 1,
          'whole': 1,
          'promoted': 1,
          'subtle': 1,
          'comedy': 1,
          'exact': 1,
          'would': 1,
          'give': 1,
          'grade': 1,
          'nthats': 1,
          'cheezy': 1,
          'aside': 1,
          'rest': 1,
          'offer': 1,
          'nothing': 1,
          'eyefulls': 1,
          'hands': 1,
          'wickedly': 1,
          'delightful': 1,
          'scrumptiously': 1,
          'thriller': 1,
          'instead': 1,
          'get': 1,
          'juvenile': 1,
          'overuses': 1,
          'profanity': 1,
          'laughable': 1,
          'displays': 1,
          'whats': 1,
          'people': 1,
          'passing': 1,
          'students': 1,
          'realize': 1,
          'hollywood': 1,
          'often': 1,
          'casts': 1,
          'older': 1,
          'actors': 1,
          'play': 1,
          'teenage': 1,
          'roles': 1,
          'wasnt': 1,
          'supposed': 1,
          'college': 1,
          'snicker': 1,
          'wont': 1,
          'lie': 1,
          'definitely': 1,
          'guilty': 1,
          'pleasure': 1,
          'nas': 1,
          'corny': 1,
          'got': 1,
          'interesting': 1,
          'aspects': 1,
          'deserve': 1,
          'b': 1,
          'want': 1,
          'admire': 1,
          'go': 1,
          'bit': 1,
          'campy': 1,
          'million': 1,
          'times': 1,
          'nof': 1,
          'course': 1,
          'seeing': 1,
          'breasts': 1,
          'important': 1,
          'goal': 1,
          'home': 1,
          'nperhaps': 1,
          'wildest': 1,
          'somebody': 1,
          'looked': 1,
          'thought': 1,
          'deserved': 1,
          'theaters': 1,
          'nneg': 1}),
 Counter({'chinese': 7,
          'gere': 6,
          'red': 5,
          'corner': 5,
          'films': 5,
          'way': 4,
          'richard': 4,
          'film': 4,
          'jack': 4,
          'many': 3,
          'nthis': 3,
          'actor': 3,
          'character': 3,
          'nif': 3,
          'look': 3,
          'moore': 3,
          'nit': 3,
          'shen': 3,
          'injustice': 2,
          'laws': 2,
          'nbut': 2,
          'truth': 2,
          'running': 2,
          'rooftops': 2,
          'search': 2,
          'american': 2,
          'talented': 2,
          'one': 2,
          'main': 2,
          'performance': 2,
          'work': 2,
          'nalthough': 2,
          'far': 2,
          'primal': 2,
          'fear': 2,
          'pretty': 2,
          'lawyer': 2,
          'guilty': 2,
          'steps': 2,
          'room': 2,
          'foreign': 2,
          'embassy': 2,
          'yuelin': 2,
          'charge': 2,
          'plot': 2,
          'scenes': 2,
          'see': 2,
          'place': 2,
          'would': 2,
          'recently': 1,
          'told': 1,
          'china': 1,
          'strong': 1,
          'protests': 1,
          'release': 1,
          'apparently': 1,
          'shows': 1,
          'ask': 1,
          'real': 1,
          'matter': 1,
          'critics': 1,
          'association': 1,
          'determined': 1,
          'punish': 1,
          'population': 1,
          'viewing': 1,
          'across': 1,
          'fellow': 1,
          'point': 1,
          'anyone': 1,
          'allows': 1,
          'bask': 1,
          'lessthansubtle': 1,
          'presence': 1,
          'insult': 1,
          'consider': 1,
          'rather': 1,
          'choice': 1,
          'responsibility': 1,
          'role': 1,
          'solely': 1,
          'person': 1,
          'must': 1,
          'give': 1,
          'faultless': 1,
          'order': 1,
          'really': 1,
          'geres': 1,
          'poorly': 1,
          'acted': 1,
          'perfect': 1,
          'forward': 1,
          'seeing': 1,
          'star': 1,
          'actors': 1,
          'reduce': 1,
          'need': 1,
          'carry': 1,
          'truly': 1,
          'belongs': 1,
          'reluctant': 1,
          'believe': 1,
          'sensational': 1,
          'edward': 1,
          'norton': 1,
          'jackal': 1,
          'bruce': 1,
          'willis': 1,
          'woman': 1,
          'delightful': 1,
          'julia': 1,
          'roberts': 1,
          'nin': 1,
          'plays': 1,
          'classy': 1,
          'personality': 1,
          'traits': 1,
          'martin': 1,
          'vail': 1,
          'bold': 1,
          'front': 1,
          'thinks': 1,
          'three': 1,
          'ahead': 1,
          'everybody': 1,
          'else': 1,
          'actually': 1,
          'two': 1,
          'behind': 1,
          'invulnerability': 1,
          'mental': 1,
          'physical': 1,
          'kind': 1,
          'portrayed': 1,
          'left': 1,
          'barracking': 1,
          'haul': 1,
          'sorry': 1,
          'ass': 1,
          'jail': 1,
          'doesnt': 1,
          'take': 1,
          'long': 1,
          'beginning': 1,
          'moores': 1,
          'charm': 1,
          'lady': 1,
          'time': 1,
          'bed': 1,
          'together': 1,
          'hotel': 1,
          'drunk': 1,
          'cheerful': 1,
          'nyet': 1,
          'instead': 1,
          'hangover': 1,
          'poor': 1,
          'finds': 1,
          'covered': 1,
          'blood': 1,
          'chick': 1,
          'dead': 1,
          'couch': 1,
          'nhe': 1,
          'arrested': 1,
          'hauled': 1,
          'prison': 1,
          'nhis': 1,
          'cell': 1,
          'food': 1,
          'rights': 1,
          'terrible': 1,
          'nnow': 1,
          'trapped': 1,
          'land': 1,
          'without': 1,
          'adequate': 1,
          'aid': 1,
          'bai': 1,
          'ling': 1,
          'defends': 1,
          'case': 1,
          'initially': 1,
          'pleading': 1,
          'murder': 1,
          'njack': 1,
          'argue': 1,
          'countries': 1,
          'different': 1,
          'stating': 1,
          'shoot': 1,
          'back': 1,
          'cost': 1,
          'bullet': 1,
          'family': 1,
          'nas': 1,
          'thickens': 1,
          'get': 1,
          'progressively': 1,
          'ridiculous': 1,
          'ranging': 1,
          'us': 1,
          'scooby': 1,
          'doo': 1,
          'ending': 1,
          'least': 1,
          'expected': 1,
          'butyouknewalong': 1,
          'criminal': 1,
          'discovered': 1,
          'nred': 1,
          'sneer': 1,
          'laugh': 1,
          'vomit': 1,
          'youre': 1,
          'minutes': 1,
          'nwhat': 1,
          'politically': 1,
          'taunt': 1,
          'thriller': 1,
          'little': 1,
          'pointless': 1,
          'expedition': 1,
          'stressed': 1,
          'act': 1,
          'say': 1,
          'moments': 1,
          'tense': 1,
          'court': 1,
          'shrewdly': 1,
          'created': 1,
          'telling': 1,
          'tale': 1,
          'government': 1,
          'corruption': 1,
          'amount': 1,
          'spoils': 1,
          'effect': 1,
          'first': 1,
          'perhaps': 1,
          'frustrating': 1,
          'watch': 1,
          'overall': 1,
          'concept': 1,
          'fairly': 1,
          'broadly': 1,
          'basic': 1,
          'idea': 1,
          'quite': 1,
          'tangible': 1,
          'upon': 1,
          'execution': 1,
          'diminutive': 1,
          'twists': 1,
          'developments': 1,
          'fail': 1,
          'impress': 1,
          'innovate': 1,
          'evidence': 1,
          'goes': 1,
          'missing': 1,
          'high': 1,
          'powered': 1,
          'officials': 1,
          'shielding': 1,
          'intolerable': 1,
          'love': 1,
          'angles': 1,
          'done': 1,
          'times': 1,
          'wasnt': 1,
          'bad': 1,
          'enough': 1,
          'corners': 1,
          'dialogue': 1,
          'purely': 1,
          'laughable': 1,
          'occasions': 1,
          'nshen': 1,
          'attempts': 1,
          'gain': 1,
          'sympathy': 1,
          'reciting': 1,
          'renaissance': 1,
          'destitute': 1,
          'relationship': 1,
          'deceased': 1,
          'father': 1,
          'whilst': 1,
          'eager': 1,
          'talk': 1,
          'musical': 1,
          'instruments': 1,
          'could': 1,
          'working': 1,
          'plan': 1,
          'free': 1,
          'ntaking': 1,
          'seriously': 1,
          'half': 1,
          'intends': 1,
          'benefited': 1,
          'help': 1,
          'valuable': 1,
          'supporting': 1,
          'cast': 1,
          'fault': 1,
          'bizarre': 1,
          'often': 1,
          'unfolding': 1,
          'story': 1,
          'isnt': 1,
          'meritorious': 1,
          'anyway': 1,
          'nwhilst': 1,
          'still': 1,
          'proves': 1,
          'takes': 1,
          'known': 1,
          'decent': 1,
          'think': 1,
          'twice': 1,
          'going': 1,
          'attempt': 1,
          'manage': 1,
          'serious': 1,
          'yet': 1,
          'hollow': 1,
          'drama': 1,
          'nmartin': 1,
          'vailwhere': 1,
          'nneg': 1}),
 Counter({'james': 6,
          'jesse': 5,
          'nthe': 5,
          'farrell': 4,
          'like': 3,
          'wild': 3,
          'american': 3,
          'gang': 3,
          'ago': 2,
          'westerns': 2,
          'best': 2,
          'century': 2,
          'gone': 2,
          'west': 2,
          'nand': 2,
          'unbearable': 2,
          'outlaws': 2,
          'courtesy': 2,
          'irish': 2,
          'hunka': 2,
          'colin': 2,
          'tigerland': 2,
          'left': 2,
          'us': 2,
          'war': 2,
          'missouri': 2,
          'railroad': 2,
          'thaddeus': 2,
          'rains': 2,
          'timothy': 2,
          'dalton': 2,
          'boys': 2,
          'railroads': 2,
          'banks': 2,
          'whos': 2,
          'accent': 2,
          'film': 2,
          'tales': 2,
          'long': 1,
          'men': 1,
          'names': 1,
          'peckinpah': 1,
          'ford': 1,
          'leone': 1,
          'eastwood': 1,
          'made': 1,
          'nreal': 1,
          'nthese': 1,
          'films': 1,
          'twentieth': 1,
          'nthose': 1,
          'days': 1,
          'nnow': 1,
          'crap': 1,
          'pass': 1,
          'western': 1,
          'record': 1,
          'improved': 1,
          'tale': 1,
          'noutlaws': 1,
          'yet': 1,
          'another': 1,
          'retelling': 1,
          'legend': 1,
          'bmovie': 1,
          'king': 1,
          'g': 1,
          'robinson': 1,
          'producer': 1,
          'classics': 1,
          'wrongfully': 1,
          'accused': 1,
          'chill': 1,
          'factor': 1,
          'ndelayed': 1,
          'since': 1,
          'spring': 1,
          'version': 1,
          'stars': 1,
          'burning': 1,
          'love': 1,
          'part': 1,
          'schumachers': 1,
          'badass': 1,
          'nalas': 1,
          'sense': 1,
          'character': 1,
          'ranch': 1,
          'leaving': 1,
          'cute': 1,
          'chicks': 1,
          'ali': 1,
          'larter': 1,
          'minus': 1,
          'whipped': 1,
          'cream': 1,
          'watch': 1,
          'spin': 1,
          'time': 1,
          'around': 1,
          'fresh': 1,
          'serving': 1,
          'southern': 1,
          'militiamen': 1,
          'civil': 1,
          'brother': 1,
          'frank': 1,
          'gabriel': 1,
          'macht': 1,
          'pal': 1,
          'cole': 1,
          'younger': 1,
          'scott': 1,
          'caan': 1,
          'lay': 1,
          'arms': 1,
          'head': 1,
          'home': 1,
          'tend': 1,
          'family': 1,
          'farms': 1,
          'ended': 1,
          'nbut': 1,
          'trouble': 1,
          'brewing': 1,
          'small': 1,
          'town': 1,
          'liberty': 1,
          'evil': 1,
          'baron': 1,
          'harris': 1,
          'yulin': 1,
          'cronies': 1,
          'rollin': 1,
          'parker': 1,
          'terry': 1,
          'oquinn': 1,
          'allan': 1,
          'pinkerton': 1,
          'demand': 1,
          'turn': 1,
          'lands': 1,
          'jameses': 1,
          'youngers': 1,
          'join': 1,
          'forces': 1,
          'fight': 1,
          'robbing': 1,
          'thus': 1,
          'cutting': 1,
          'financial': 1,
          'surplus': 1,
          'playing': 1,
          'robin': 1,
          'hood': 1,
          'local': 1,
          'people': 1,
          'nalong': 1,
          'way': 1,
          'squabble': 1,
          'cutest': 1,
          'popular': 1,
          'cowboy': 1,
          'ought': 1,
          'go': 1,
          'mtvs': 1,
          'total': 1,
          'request': 1,
          'live': 1,
          'nthey': 1,
          'rob': 1,
          'numerous': 1,
          'identical': 1,
          'interiors': 1,
          'always': 1,
          'kindest': 1,
          'hearts': 1,
          'strutting': 1,
          'grungy': 1,
          'dusters': 1,
          'moby': 1,
          'songs': 1,
          'play': 1,
          'background': 1,
          'witty': 1,
          'banter': 1,
          'share': 1,
          'could': 1,
          'plastered': 1,
          'within': 1,
          'hallmark': 1,
          'card': 1,
          'biggest': 1,
          'disappointment': 1,
          'lies': 1,
          'acting': 1,
          'nafter': 1,
          'great': 1,
          'job': 1,
          'walks': 1,
          'role': 1,
          'easier': 1,
          'nicolas': 1,
          'cage': 1,
          '60': 1,
          'seconds': 1,
          'rivals': 1,
          'richard': 1,
          'geres': 1,
          'jackal': 1,
          'ncombined': 1,
          'feeling': 1,
          'bonanza': 1,
          'teen': 1,
          'years': 1,
          'homogenized': 1,
          'production': 1,
          'toned': 1,
          'get': 1,
          'everpopular': 1,
          'pg13': 1,
          'rating': 1,
          'gives': 1,
          'invincible': 1,
          'quickly': 1,
          'grows': 1,
          'tiresome': 1,
          'boring': 1,
          'villains': 1,
          'spend': 1,
          'entire': 1,
          'proclaiming': 1,
          'everyone': 1,
          'hanged': 1,
          'sucking': 1,
          'energy': 1,
          'nnot': 1,
          'mention': 1,
          'real': 1,
          'story': 1,
          'bears': 1,
          'resemblance': 1,
          'plot': 1,
          'ninstead': 1,
          'movie': 1,
          'full': 1,
          'old': 1,
          'outrageous': 1,
          'went': 1,
          'style': 1,
          '5cent': 1,
          'magazines': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'wire': 7,
          'pamela': 7,
          'scenes': 4,
          'even': 4,
          'woman': 4,
          'like': 4,
          'year': 4,
          'words': 4,
          'nits': 4,
          'sure': 3,
          'babe': 3,
          'anderson': 3,
          'dont': 3,
          'pay': 3,
          'nude': 3,
          'barb': 3,
          'going': 3,
          'ni': 3,
          'tease': 3,
          'nbarb': 3,
          'one': 3,
          'nshe': 3,
          'never': 3,
          'think': 3,
          'action': 3,
          'experience': 2,
          'would': 2,
          'n': 2,
          'screen': 2,
          'see': 2,
          'cleavage': 2,
          'nand': 2,
          'money': 2,
          'seeing': 2,
          'pam': 2,
          'topless': 2,
          'wouldnt': 2,
          'right': 2,
          'fact': 2,
          'cant': 2,
          'us': 2,
          'times': 2,
          'tell': 2,
          'na': 2,
          'comic': 2,
          'book': 2,
          'probably': 2,
          'character': 2,
          'life': 2,
          'beauty': 2,
          'nthe': 2,
          'worst': 2,
          'free': 2,
          'strip': 2,
          'congressional': 2,
          'could': 2,
          'somehow': 2,
          'cora': 2,
          'didnt': 2,
          'name': 2,
          'bad': 2,
          'noseworthy': 2,
          'know': 2,
          'step': 2,
          'worthy': 2,
          'death': 2,
          'got': 2,
          'elements': 2,
          'movies': 2,
          'two': 2,
          'things': 2,
          'actually': 1,
          'im': 1,
          'fairly': 1,
          'flesh': 1,
          'torn': 1,
          'mutilated': 1,
          'barbed': 1,
          'positive': 1,
          'watching': 1,
          'baywatch': 1,
          'lee': 1,
          'proves': 1,
          'keep': 1,
          'doubleds': 1,
          'small': 1,
          'nat': 1,
          'least': 1,
          'viewers': 1,
          'lay': 1,
          'hopes': 1,
          'hate': 1,
          'burst': 1,
          'bubble': 1,
          'fullfledged': 1,
          'nyou': 1,
          'reading': 1,
          'review': 1,
          'known': 1,
          'go': 1,
          'back': 1,
          'time': 1,
          'reverse': 1,
          'mistake': 1,
          'warn': 1,
          'horny': 1,
          'teenage': 1,
          'boys': 1,
          'nthey': 1,
          'almost': 1,
          'quick': 1,
          'whether': 1,
          'youre': 1,
          'andersons': 1,
          'nipple': 1,
          'hallucination': 1,
          'sort': 1,
          'thing': 1,
          'adapted': 1,
          'interesting': 1,
          'looks': 1,
          'real': 1,
          'wearing': 1,
          'lowcut': 1,
          'leather': 1,
          'office': 1,
          'work': 1,
          'businesswoman': 1,
          'bondage': 1,
          'wear': 1,
          'unreal': 1,
          'body': 1,
          'proportions': 1,
          'nyes': 1,
          'mona': 1,
          'lisa': 1,
          'manmade': 1,
          'senses': 1,
          'definite': 1,
          'though': 1,
          'looking': 1,
          'unpleasant': 1,
          'nyoud': 1,
          'began': 1,
          'career': 1,
          'playboy': 1,
          'playmate': 1,
          'reservations': 1,
          'appearing': 1,
          'obvious': 1,
          'wasnt': 1,
          'pulling': 1,
          'sharon': 1,
          'stone': 1,
          'trying': 1,
          'make': 1,
          'people': 1,
          'attention': 1,
          'acting': 1,
          'skills': 1,
          'mean': 1,
          'shows': 1,
          'jewelers': 1,
          'convention': 1,
          'set': 1,
          '2017': 1,
          'says': 1,
          'say': 1,
          'namerica': 1,
          'second': 1,
          'civil': 1,
          'war': 1,
          'nightclub': 1,
          'owner': 1,
          'city': 1,
          'nation': 1,
          'silicone': 1,
          'valley': 1,
          'also': 1,
          'hires': 1,
          'bounty': 1,
          'hunter': 1,
          'price': 1,
          'posing': 1,
          'first': 1,
          'stripper': 1,
          'later': 1,
          'prostitute': 1,
          'nbut': 1,
          'call': 1,
          'hates': 1,
          'reminds': 1,
          'way': 1,
          'many': 1,
          'nimagine': 1,
          'trapeze': 1,
          'bar': 1,
          'hose': 1,
          'sprayed': 1,
          'referred': 1,
          'sexist': 1,
          'demeaning': 1,
          'term': 1,
          'liberated': 1,
          'shouldnt': 1,
          'hear': 1,
          'especially': 1,
          'since': 1,
          'talking': 1,
          'pig': 1,
          'success': 1,
          'plot': 1,
          'haha': 1,
          'revolves': 1,
          'around': 1,
          'pair': 1,
          'contact': 1,
          'lenses': 1,
          'allow': 1,
          'wearer': 1,
          'pass': 1,
          'directorates': 1,
          'retina': 1,
          'scanners': 1,
          'nin': 1,
          'characters': 1,
          'theyre': 1,
          'meets': 1,
          'eye': 1,
          'nreminds': 1,
          'transformers': 1,
          'cartoon': 1,
          'wished': 1,
          'transformed': 1,
          'something': 1,
          'decent': 1,
          'happened': 1,
          'nno': 1,
          'continued': 1,
          'path': 1,
          'lame': 1,
          'starring': 1,
          'vandamme': 1,
          'bigbusted': 1,
          'kickboxer': 1,
          'resistance': 1,
          'accomplices': 1,
          'exboyfriend': 1,
          'axel': 1,
          'tamuera': 1,
          'morrison': 1,
          'victoria': 1,
          'rowell': 1,
          'nthank': 1,
          'god': 1,
          'reef': 1,
          'none': 1,
          'enough': 1,
          'npamela': 1,
          'originally': 1,
          'doesnt': 1,
          'take': 1,
          'sides': 1,
          'giving': 1,
          'speech': 1,
          'shes': 1,
          'loyal': 1,
          'changes': 1,
          'mind': 1,
          'bastards': 1,
          'kill': 1,
          'blind': 1,
          'brother': 1,
          'jack': 1,
          'bon': 1,
          'jovi': 1,
          'always': 1,
          'video': 1,
          'fame': 1,
          'still': 1,
          'definitely': 1,
          'nose': 1,
          'isnt': 1,
          'sponge': 1,
          'npam': 1,
          'gets': 1,
          'ready': 1,
          'avenge': 1,
          'grabbing': 1,
          'armful': 1,
          'semiautomatic': 1,
          'weapons': 1,
          'strapping': 1,
          'ammunitions': 1,
          'belt': 1,
          'chest': 1,
          'rambo': 1,
          'bimbo': 1,
          'nmark': 1,
          'cinemax': 1,
          'network': 1,
          'directtovideo': 1,
          'releases': 1,
          'featured': 1,
          'hbos': 1,
          'bastard': 1,
          'cousin': 1,
          'cable': 1,
          'channel': 1,
          'id': 1,
          'watch': 1,
          'come': 1,
          'nontitillating': 1,
          'voyeurism': 1,
          'laughable': 1,
          'flashbacks': 1,
          'dialogue': 1,
          'cliches': 1,
          'wazzoo': 1,
          'ntheres': 1,
          'narrator': 1,
          'beginning': 1,
          'setting': 1,
          'premise': 1,
          'scroll': 1,
          'nsomeone': 1,
          'needs': 1,
          'wookie': 1,
          'aint': 1,
          'star': 1,
          'wars': 1,
          'nif': 1,
          'youve': 1,
          'seen': 1,
          'flick': 1,
          'past': 1,
          'fifteen': 1,
          'years': 1,
          'youll': 1,
          'recognize': 1,
          'plenty': 1,
          'lifted': 1,
          'obligatory': 1,
          'trucks': 1,
          'flipping': 1,
          'car': 1,
          'crashes': 1,
          'explosions': 1,
          'broken': 1,
          'glass': 1,
          'slowmotion': 1,
          'shots': 1,
          'bodies': 1,
          'falling': 1,
          'hundreds': 1,
          'feet': 1,
          'nthis': 1,
          'automaticpilot': 1,
          'anyone': 1,
          'write': 1,
          'direct': 1,
          'nneg': 1}),
 Counter({'deedles': 6,
          'nthe': 6,
          'deedle': 5,
          'park': 5,
          'part': 4,
          'meet': 4,
          'ranger': 4,
          'two': 3,
          'surf': 3,
          'wyoming': 3,
          'one': 3,
          'ninstead': 3,
          'nearly': 2,
          'interesting': 2,
          'nphil': 2,
          'sons': 2,
          'famous': 2,
          'several': 2,
          'brothers': 2,
          'unfortunately': 2,
          'problem': 2,
          'film': 2,
          'isnt': 2,
          'bad': 2,
          'way': 2,
          'finding': 2,
          'buddy': 1,
          'comedy': 1,
          'fishoutofwater': 1,
          'story': 1,
          'nature': 1,
          'tale': 1,
          'archetypes': 1,
          'nin': 1,
          'fact': 1,
          'invitation': 1,
          'ought': 1,
          'disregard': 1,
          'stew': 1,
          'paul': 1,
          'walker': 1,
          'steve': 1,
          'van': 1,
          'wormer': 1,
          'twin': 1,
          'millionaire': 1,
          'elton': 1,
          'eric': 1,
          'braeden': 1,
          'founder': 1,
          'enterprises': 1,
          'nelton': 1,
          'wants': 1,
          'perfect': 1,
          'heirs': 1,
          'fortune': 1,
          'instead': 1,
          'careless': 1,
          'hawaiian': 1,
          'bums': 1,
          'nto': 1,
          'set': 1,
          'straight': 1,
          'enrolls': 1,
          'strict': 1,
          'boot': 1,
          'camp': 1,
          'pair': 1,
          'inevitably': 1,
          'go': 1,
          'nafter': 1,
          'misadventures': 1,
          'duo': 1,
          'stunned': 1,
          'discover': 1,
          'theres': 1,
          'stumble': 1,
          'upon': 1,
          'routine': 1,
          'mistaken': 1,
          'identity': 1,
          'plot': 1,
          'nthey': 1,
          'arrive': 1,
          'yellowstone': 1,
          'national': 1,
          'believed': 1,
          'new': 1,
          'recruits': 1,
          'nrather': 1,
          'slinking': 1,
          'back': 1,
          'home': 1,
          'disappointing': 1,
          'dad': 1,
          'play': 1,
          'along': 1,
          'actually': 1,
          'motives': 1,
          'beautiful': 1,
          'jesse': 1,
          'nj': 1,
          'langer': 1,
          'happens': 1,
          'beloved': 1,
          'stepdaughter': 1,
          'overprotective': 1,
          'captain': 1,
          'douglas': 1,
          'pine': 1,
          'john': 1,
          'ashton': 1,
          'nyellowstone': 1,
          'nits': 1,
          'week': 1,
          'geyser': 1,
          'old': 1,
          'faithful': 1,
          'celebrates': 1,
          'billionth': 1,
          'birthday': 1,
          'overrun': 1,
          'prairie': 1,
          'dogs': 1,
          'nnot': 1,
          'thousands': 1,
          'assigned': 1,
          'eliminate': 1,
          'p': 1,
          'dog': 1,
          'menace': 1,
          'knowing': 1,
          'fiendish': 1,
          'plan': 1,
          'disgraced': 1,
          'former': 1,
          'head': 1,
          'frank': 1,
          'slater': 1,
          'dennis': 1,
          'hopper': 1,
          'arent': 1,
          'supposed': 1,
          'outandout': 1,
          'stupid': 1,
          'like': 1,
          'team': 1,
          'dumb': 1,
          'dumber': 1,
          'bill': 1,
          'ted': 1,
          'brains': 1,
          'operate': 1,
          'different': 1,
          'simpler': 1,
          'realm': 1,
          'na': 1,
          'accurate': 1,
          'comparison': 1,
          'would': 1,
          'carrot': 1,
          'top': 1,
          'chairman': 1,
          'board': 1,
          'resembles': 1,
          'hideous': 1,
          'ways': 1,
          'central': 1,
          'simply': 1,
          'funny': 1,
          'ntheres': 1,
          'moment': 1,
          'phil': 1,
          'utters': 1,
          'line': 1,
          'insert': 1,
          'laugh': 1,
          'sums': 1,
          'entire': 1,
          'experience': 1,
          'result': 1,
          'runshriekingfromthetheater': 1,
          'type': 1,
          'merely': 1,
          'excruciatingly': 1,
          'boring': 1,
          'sort': 1,
          'cast': 1,
          'seems': 1,
          'decent': 1,
          'theyre': 1,
          'never': 1,
          'asked': 1,
          'anything': 1,
          'remotely': 1,
          'inundates': 1,
          'audience': 1,
          'countless': 1,
          'shots': 1,
          'people': 1,
          'andor': 1,
          'cars': 1,
          'rolling': 1,
          'downhill': 1,
          'forest': 1,
          'constant': 1,
          'annoying': 1,
          'references': 1,
          'disney': 1,
          'films': 1,
          'nyoull': 1,
          'much': 1,
          'better': 1,
          'luck': 1,
          'good': 1,
          'spot': 1,
          'entertainment': 1,
          'nneg': 1}),
 Counter({'sandler': 4,
          'film': 4,
          'young': 2,
          'one': 2,
          'adam': 1,
          'isnt': 1,
          'known': 1,
          'appearing': 1,
          'deep': 1,
          'thoughtprovoking': 1,
          'films': 1,
          'hes': 1,
          'still': 1,
          'really': 1,
          'funny': 1,
          'guy': 1,
          'nmost': 1,
          'movies': 1,
          'successful': 1,
          'making': 1,
          'behind': 1,
          'let': 1,
          'best': 1,
          'without': 1,
          'stupid': 1,
          'plot': 1,
          'drown': 1,
          'nbig': 1,
          'daddy': 1,
          'first': 1,
          'story': 1,
          'seems': 1,
          'important': 1,
          'sandlers': 1,
          'comic': 1,
          'performance': 1,
          'miserable': 1,
          'failure': 1,
          'nsandler': 1,
          'plays': 1,
          'thirtysomething': 1,
          'loser': 1,
          'gets': 1,
          'attached': 1,
          'orphaned': 1,
          'boy': 1,
          'played': 1,
          'cole': 1,
          'dylan': 1,
          'sprouse': 1,
          'nas': 1,
          'might': 1,
          'expect': 1,
          'synopsis': 1,
          'director': 1,
          'dennis': 1,
          'dugan': 1,
          'resorts': 1,
          'usual': 1,
          'bag': 1,
          'manipulative': 1,
          'sentimental': 1,
          'sequences': 1,
          'including': 1,
          'repulsive': 1,
          'courtroom': 1,
          'battle': 1,
          'lot': 1,
          'teary': 1,
          'scenes': 1,
          'characters': 1,
          'say': 1,
          'goodbye': 1,
          'another': 1,
          'addition': 1,
          'theres': 1,
          'ridiculous': 1,
          'amount': 1,
          'disgusting': 1,
          'toilet': 1,
          'humor': 1,
          'urine': 1,
          'vomit': 1,
          'get': 1,
          'screen': 1,
          'time': 1,
          'ntheres': 1,
          'hilarious': 1,
          'running': 1,
          'joke': 1,
          'featuring': 1,
          'female': 1,
          'doctor': 1,
          'previously': 1,
          'worked': 1,
          'hooters': 1,
          'features': 1,
          'passable': 1,
          'performances': 1,
          'joey': 1,
          'lauren': 1,
          'adams': 1,
          'love': 1,
          'interest': 1,
          'two': 1,
          'boys': 1,
          'whole': 1,
          'trite': 1,
          'disappointingly': 1,
          'unfunny': 1,
          'nneg': 1}),
 Counter({'tomb': 6,
          'raider': 6,
          'action': 4,
          'lara': 4,
          'end': 3,
          'scene': 3,
          'croft': 3,
          'nthe': 3,
          'film': 3,
          'jolies': 3,
          'ever': 3,
          'movie': 2,
          'like': 2,
          'poorlystaged': 2,
          'sequence': 2,
          'boring': 2,
          'exposition': 2,
          'etc': 2,
          'angelina': 2,
          'lips': 2,
          'include': 2,
          'breasts': 2,
          'even': 2,
          'one': 2,
          'get': 2,
          'guy': 2,
          'shot': 2,
          'n': 2,
          'sets': 2,
          'come': 2,
          'monkey': 2,
          'warriors': 2,
          'life': 2,
          'planets': 2,
          'align': 2,
          'wall': 1,
          'collapses': 1,
          'near': 1,
          'nubile': 1,
          'warrior': 1,
          'nwith': 1,
          'face': 1,
          'floor': 1,
          'gazes': 1,
          'rubble': 1,
          'grins': 1,
          'abruptly': 1,
          'says': 1,
          'oh': 1,
          'car': 1,
          'keys': 1,
          'ni': 1,
          'mention': 1,
          'moment': 1,
          'whole': 1,
          'damned': 1,
          'production': 1,
          'made': 1,
          'smile': 1,
          'nbased': 1,
          'incredibly': 1,
          'popular': 1,
          'video': 1,
          'game': 1,
          'lousy': 1,
          'structure': 1,
          'goes': 1,
          'nbasically': 1,
          'exists': 1,
          'showcase': 1,
          'puffy': 1,
          'enhanced': 1,
          'tits': 1,
          'ncloseups': 1,
          'framed': 1,
          'ohsocarefully': 1,
          'million': 1,
          'dollar': 1,
          'bazooms': 1,
          'nrunning': 1,
          'scenes': 1,
          'highlight': 1,
          'bouncing': 1,
          'vintage': 1,
          'baywatch': 1,
          'fashion': 1,
          'ntheres': 1,
          'shower': 1,
          'offers': 1,
          'brief': 1,
          'side': 1,
          'view': 1,
          'nbut': 1,
          'filmmakers': 1,
          'inept': 1,
          'cant': 1,
          'flash': 1,
          'audience': 1,
          'correctly': 1,
          'extended': 1,
          'display': 1,
          'nudity': 1,
          'ready': 1,
          'nfor': 1,
          'particular': 1,
          'reason': 1,
          'muscular': 1,
          'supporting': 1,
          'character': 1,
          'strolls': 1,
          'around': 1,
          'naked': 1,
          '30': 1,
          'seconds': 1,
          'composed': 1,
          'barely': 1,
          'cover': 1,
          'package': 1,
          'la': 1,
          'austin': 1,
          'powers': 1,
          'nnow': 1,
          'enjoy': 1,
          'good': 1,
          'looking': 1,
          'male': 1,
          'body': 1,
          'much': 1,
          'next': 1,
          'gay': 1,
          'hell': 1,
          'beefcake': 1,
          'ta': 1,
          'flick': 1,
          'aimed': 1,
          'heterosexual': 1,
          'males': 1,
          'nof': 1,
          'course': 1,
          'else': 1,
          'expect': 1,
          'virtually': 1,
          'nothing': 1,
          'right': 1,
          'elaborate': 1,
          'set': 1,
          'pieces': 1,
          'renders': 1,
          'incomprehensible': 1,
          'needless': 1,
          'jump': 1,
          'cut': 1,
          'editing': 1,
          'promising': 1,
          'dual': 1,
          'bungee': 1,
          'cord': 1,
          'battle': 1,
          'ruined': 1,
          'excessive': 1,
          'cuts': 1,
          'nit': 1,
          'promises': 1,
          'series': 1,
          'exotic': 1,
          'locales': 1,
          'delivers': 1,
          'cavernous': 1,
          'grimy': 1,
          'matte': 1,
          'paintings': 1,
          'smoggy': 1,
          'skies': 1,
          'nthrow': 1,
          'bargain': 1,
          'basement': 1,
          'computer': 1,
          'graphics': 1,
          'ugliest': 1,
          'pike': 1,
          'many': 1,
          'moons': 1,
          'nintended': 1,
          'rousing': 1,
          'indiana': 1,
          'jones': 1,
          'style': 1,
          'adventure': 1,
          'lacks': 1,
          'sense': 1,
          'tension': 1,
          'low': 1,
          'point': 1,
          'comes': 1,
          'threatened': 1,
          'statues': 1,
          'giant': 1,
          'multiarmed': 1,
          'shiva': 1,
          'figure': 1,
          'courtesy': 1,
          'cgi': 1,
          'neasily': 1,
          'lamest': 1,
          'menaces': 1,
          'seen': 1,
          'creatures': 1,
          'move': 1,
          'snails': 1,
          'fall': 1,
          'apart': 1,
          'single': 1,
          'gun': 1,
          'nif': 1,
          'chased': 1,
          'monsters': 1,
          'pray': 1,
          'tells': 1,
          'story': 1,
          'sort': 1,
          'nonce': 1,
          'every': 1,
          '5': 1,
          '000': 1,
          'years': 1,
          'na': 1,
          'group': 1,
          'bad': 1,
          'men': 1,
          'find': 1,
          'two': 1,
          'halves': 1,
          'object': 1,
          'reassembled': 1,
          'give': 1,
          'control': 1,
          'time': 1,
          'nlaras': 1,
          'goal': 1,
          'stop': 1,
          'rescue': 1,
          'longmissing': 1,
          'poppa': 1,
          'jon': 1,
          'voight': 1,
          'real': 1,
          'dad': 1,
          'nnone': 1,
          'matters': 1,
          'though': 1,
          'stunning': 1,
          'gaps': 1,
          'internal': 1,
          'logic': 1,
          'assure': 1,
          'plot': 1,
          'lame': 1,
          'aspect': 1,
          'except': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'movie': 5,
          'american': 4,
          'perfekt': 4,
          'forster': 3,
          'ni': 3,
          'never': 3,
          'nthe': 3,
          'going': 3,
          'nand': 3,
          'immediately': 2,
          'nthis': 2,
          'n': 2,
          'nit': 2,
          'figure': 2,
          'point': 2,
          'plot': 2,
          'get': 2,
          'doesnt': 2,
          'plummer': 2,
          'road': 2,
          'characters': 2,
          'give': 2,
          'trying': 2,
          'nnothing': 2,
          'think': 2,
          'would': 2,
          'explanation': 2,
          'robert': 1,
          'found': 1,
          'famous': 1,
          'appearing': 1,
          'jackie': 1,
          'brown': 1,
          'signed': 1,
          'little': 1,
          'called': 1,
          'almost': 1,
          'two': 1,
          'years': 1,
          'ago': 1,
          'waited': 1,
          'patiently': 1,
          'released': 1,
          'nfinally': 1,
          'forgot': 1,
          'day': 1,
          'though': 1,
          'perusing': 1,
          'selection': 1,
          'local': 1,
          'video': 1,
          'store': 1,
          'stumbled': 1,
          'upon': 1,
          'guessed': 1,
          'rented': 1,
          'certain': 1,
          'amount': 1,
          'glee': 1,
          'rushed': 1,
          'home': 1,
          'view': 1,
          'nhaving': 1,
          'seen': 1,
          'understand': 1,
          'saw': 1,
          'theatrical': 1,
          'release': 1,
          'jumbled': 1,
          'mess': 1,
          'storyline': 1,
          'nonexistent': 1,
          'took': 1,
          'half': 1,
          'thing': 1,
          'really': 1,
          'knew': 1,
          'sure': 1,
          'introduce': 1,
          'sort': 1,
          'wants': 1,
          'quirkyness': 1,
          'socalled': 1,
          'charm': 1,
          'alone': 1,
          'work': 1,
          'nrobert': 1,
          'plays': 1,
          'psychiatrist': 1,
          'picks': 1,
          'amanda': 1,
          'head': 1,
          'together': 1,
          'nalong': 1,
          'way': 1,
          'discernable': 1,
          'destination': 1,
          'run': 1,
          'sorts': 1,
          'kooky': 1,
          'wacky': 1,
          'suppose': 1,
          'freewheeling': 1,
          'style': 1,
          'supposed': 1,
          'element': 1,
          'danger': 1,
          'excitment': 1,
          'make': 1,
          'sleepy': 1,
          'nim': 1,
          'new': 1,
          'things': 1,
          'within': 1,
          'realm': 1,
          'expense': 1,
          'coherence': 1,
          'makes': 1,
          'sense': 1,
          'actions': 1,
          'go': 1,
          'unexplained': 1,
          'even': 1,
          'theyre': 1,
          'truly': 1,
          'bizarre': 1,
          'nill': 1,
          'example': 1,
          'without': 1,
          'giving': 1,
          'much': 1,
          'away': 1,
          'ndavid': 1,
          'thewlis': 1,
          'part': 1,
          'drifting': 1,
          'conman': 1,
          'nat': 1,
          'one': 1,
          'midway': 1,
          'runs': 1,
          'car': 1,
          'nas': 1,
          'passes': 1,
          'see': 1,
          'face': 1,
          'covered': 1,
          'blood': 1,
          'ndo': 1,
          'happened': 1,
          'nyou': 1,
          'wouldnt': 1,
          'waste': 1,
          'time': 1,
          'gained': 1,
          'watching': 1,
          'except': 1,
          'maybe': 1,
          'migraine': 1,
          'rent': 1,
          'dont': 1,
          'bother': 1,
          'whats': 1,
          'hopes': 1,
          'everything': 1,
          'resolved': 1,
          'end': 1,
          'happen': 1,
          'given': 1,
          'misspelling': 1,
          'perfect': 1,
          'either': 1,
          'nneg': 1}),
 Counter({'n': 6,
          'movies': 4,
          'tomb': 4,
          'raider': 4,
          'dead': 4,
          'much': 4,
          'action': 4,
          'games': 3,
          'plot': 3,
          'triangle': 3,
          'jolie': 3,
          'father': 3,
          'would': 2,
          'make': 2,
          'video': 2,
          'hasnt': 2,
          'film': 2,
          'hope': 2,
          'mummy': 2,
          'nhowever': 2,
          'project': 2,
          'yet': 2,
          'nthe': 2,
          'ntheres': 2,
          'halves': 2,
          'ancient': 2,
          'world': 2,
          'nof': 2,
          'course': 2,
          'tombs': 2,
          'lara': 2,
          'jon': 2,
          'voight': 2,
          'dad': 2,
          'flick': 2,
          'acting': 2,
          'seems': 2,
          'british': 2,
          'jolies': 2,
          'ni': 2,
          'first': 2,
          'tv': 2,
          'prisoner': 2,
          'youd': 1,
          'think': 1,
          'awhile': 1,
          'hollywood': 1,
          'stop': 1,
          'trying': 1,
          'nit': 1,
          'worked': 1,
          'far': 1,
          'street': 1,
          'fighter': 1,
          'super': 1,
          'mario': 1,
          'brothers': 1,
          'wing': 1,
          'commander': 1,
          'mortal': 1,
          'kombat': 1,
          'nnot': 1,
          'watchable': 1,
          'bunch': 1,
          'nstill': 1,
          'held': 1,
          'nafter': 1,
          'premise': 1,
          'heavily': 1,
          'influenced': 1,
          'indiana': 1,
          'jones': 1,
          'trilogy': 1,
          'cinematic': 1,
          'elements': 1,
          'imbedded': 1,
          'concept': 1,
          'despite': 1,
          'potential': 1,
          'proves': 1,
          'another': 1,
          'bomb': 1,
          'convoluted': 1,
          'accumulation': 1,
          'nonsense': 1,
          'probably': 1,
          'borrowed': 1,
          'dozen': 1,
          'bad': 1,
          'onceever5000years': 1,
          'alignment': 1,
          'planets': 1,
          'coming': 1,
          'illuminati': 1,
          'find': 1,
          'controls': 1,
          'time': 1,
          'order': 1,
          'take': 1,
          'folks': 1,
          'divided': 1,
          'buried': 1,
          'opposite': 1,
          'sides': 1,
          'nour': 1,
          'heroine': 1,
          'lady': 1,
          'croft': 1,
          'angelina': 1,
          'finds': 1,
          'key': 1,
          'opens': 1,
          'relics': 1,
          'dug': 1,
          'nshe': 1,
          'figures': 1,
          'gets': 1,
          'bring': 1,
          'back': 1,
          'one': 1,
          'expecting': 1,
          'movie': 1,
          'anyway': 1,
          'nin': 1,
          'excuse': 1,
          'sequences': 1,
          'shows': 1,
          'little': 1,
          'style': 1,
          'originality': 1,
          'lots': 1,
          'shooting': 1,
          'kung': 1,
          'fu': 1,
          'fightin': 1,
          'none': 1,
          'progresses': 1,
          'beyond': 1,
          'level': 1,
          'cheap': 1,
          'directtocable': 1,
          'goofy': 1,
          'archeologist': 1,
          'summer': 1,
          'returns': 1,
          'better': 1,
          'flaws': 1,
          'creative': 1,
          'largescale': 1,
          'nsince': 1,
          'winning': 1,
          'academy': 1,
          'award': 1,
          'girl': 1,
          'interrupted': 1,
          'taken': 1,
          'projects': 1,
          'display': 1,
          'talents': 1,
          'interested': 1,
          'displaying': 1,
          'breasts': 1,
          'attention': 1,
          'drawn': 1,
          'shame': 1,
          'theres': 1,
          'oscar': 1,
          'best': 1,
          'performance': 1,
          'wonderbra': 1,
          'nwhile': 1,
          'dont': 1,
          'see': 1,
          'ability': 1,
          'exception': 1,
          'wonderful': 1,
          'uppercrust': 1,
          'accent': 1,
          'get': 1,
          'hint': 1,
          'less': 1,
          'savory': 1,
          'side': 1,
          'nconsidering': 1,
          'rumors': 1,
          'incest': 1,
          'hang': 1,
          'supposed': 1,
          'obsession': 1,
          'death': 1,
          'obsessed': 1,
          'resurrecting': 1,
          'uninterested': 1,
          'living': 1,
          'males': 1,
          'around': 1,
          'poor': 1,
          'choice': 1,
          'nhaving': 1,
          'real': 1,
          'life': 1,
          'play': 1,
          'makes': 1,
          'even': 1,
          'creepier': 1,
          'havent': 1,
          'decided': 1,
          'director': 1,
          'simon': 1,
          'west': 1,
          'nhis': 1,
          'feature': 1,
          'starstudded': 1,
          'disaster': 1,
          'con': 1,
          'air': 1,
          'opinion': 1,
          'improved': 1,
          'generals': 1,
          'daughter': 1,
          'thick': 1,
          'sultry': 1,
          'atmosphere': 1,
          'nnow': 1,
          'train': 1,
          'wreck': 1,
          'improves': 1,
          'next': 1,
          'big': 1,
          'screen': 1,
          'version': 1,
          'cult': 1,
          'series': 1,
          'nhollywood': 1,
          'already': 1,
          'screwed': 1,
          'avengers': 1,
          'represents': 1,
          'chance': 1,
          'redemption': 1,
          'way': 1,
          'speaking': 1,
          'red': 1,
          'dwarf': 1,
          'fans': 1,
          'look': 1,
          'chris': 1,
          'rimmer': 1,
          'barrie': 1,
          'major': 1,
          'role': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'vampires': 5,
          'carpenter': 4,
          'john': 3,
          'nthe': 3,
          'evil': 3,
          'last': 2,
          'vampirefilms': 2,
          'crow': 2,
          'james': 2,
          'woods': 2,
          'earth': 2,
          'lost': 2,
          'time': 2,
          'black': 2,
          'cross': 2,
          'nafter': 2,
          'films': 2,
          'cinematography': 2,
          'would': 2,
          'greatest': 2,
          'achievement': 2,
          'long': 2,
          'interesting': 2,
          'catholic': 2,
          'cool': 2,
          'good': 2,
          'cast': 2,
          'like': 2,
          'offers': 1,
          'plenty': 1,
          'blood': 1,
          'gore': 1,
          'beyond': 1,
          'nothing': 1,
          'njack': 1,
          'professional': 1,
          'vampire': 1,
          'slayer': 1,
          'secretly': 1,
          'working': 1,
          'vatican': 1,
          'nhis': 1,
          'mens': 1,
          'mission': 1,
          'clean': 1,
          'nthey': 1,
          'count': 1,
          'many': 1,
          'slaughtered': 1,
          'one': 1,
          'always': 1,
          'escaped': 1,
          'nvalek': 1,
          'thomas': 1,
          'ian': 1,
          'griffith': 1,
          'dark': 1,
          'messias': 1,
          'ruler': 1,
          'undead': 1,
          'older': 1,
          'nfor': 1,
          'eternity': 1,
          'searched': 1,
          'salvation': 1,
          'nwith': 1,
          'possesion': 1,
          'able': 1,
          'walk': 1,
          'sunlight': 1,
          'either': 1,
          'humans': 1,
          'dominate': 1,
          'ni': 1,
          'never': 1,
          'liked': 1,
          'style': 1,
          'seeing': 1,
          'opinions': 1,
          'changed': 1,
          'njohn': 1,
          'remains': 1,
          'nhowever': 1,
          'selfirony': 1,
          'humour': 1,
          'fascinating': 1,
          'say': 1,
          'nneither': 1,
          'synopses': 1,
          'carpenters': 1,
          'direction': 1,
          'original': 1,
          'nbut': 1,
          'things': 1,
          'directors': 1,
          'negative': 1,
          'view': 1,
          'church': 1,
          'instance': 1,
          'nat': 1,
          'end': 1,
          'becomes': 1,
          'clear': 1,
          'cardinal': 1,
          'alba': 1,
          'maximilian': 1,
          'schell': 1,
          'simply': 1,
          'used': 1,
          'team': 1,
          'find': 1,
          'valek': 1,
          'gain': 1,
          'eternal': 1,
          'life': 1,
          'notherwise': 1,
          'priests': 1,
          'shown': 1,
          'drinking': 1,
          'smoking': 1,
          'breaking': 1,
          'rool': 1,
          'celibacy': 1,
          'ncarpenter': 1,
          'created': 1,
          'atmosphere': 1,
          'nset': 1,
          'new': 1,
          'mexican': 1,
          'dessert': 1,
          'switches': 1,
          'bright': 1,
          'golden': 1,
          'sunrises': 1,
          'bloody': 1,
          'sundowns': 1,
          'symbolically': 1,
          'illustrating': 1,
          'light': 1,
          'darkness': 1,
          'nmore': 1,
          'anything': 1,
          'simple': 1,
          'illustration': 1,
          'shows': 1,
          'battle': 1,
          'gary': 1,
          'b': 1,
          'kibbe': 1,
          'probably': 1,
          'nmusic': 1,
          'composed': 1,
          'times': 1,
          'effective': 1,
          'special': 1,
          'effects': 1,
          'makeup': 1,
          'likewise': 1,
          'worth': 1,
          'notice': 1,
          'nwhen': 1,
          'comes': 1,
          'intellectual': 1,
          'casting': 1,
          'problem': 1,
          'everyone': 1,
          'scream': 1,
          'swing': 1,
          'axe': 1,
          'suprisingly': 1,
          'convincing': 1,
          'nhe': 1,
          'macho': 1,
          'dedicated': 1,
          'hunter': 1,
          'family': 1,
          'breed': 1,
          'nwoods': 1,
          'constantly': 1,
          'overacting': 1,
          'really': 1,
          'saves': 1,
          'falling': 1,
          'trap': 1,
          'serious': 1,
          'self': 1,
          'importance': 1,
          'ndaniel': 1,
          'baldwin': 1,
          'also': 1,
          'entertaining': 1,
          'crows': 1,
          'loyal': 1,
          'partner': 1,
          'members': 1,
          'struggling': 1,
          'nbecause': 1,
          'doesnt': 1,
          'take': 1,
          'seriously': 1,
          'stays': 1,
          'afloat': 1,
          'nstill': 1,
          'mediocre': 1,
          'experience': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'nit': 6,
          'something': 6,
          'like': 6,
          'could': 5,
          'dull': 5,
          'whos': 5,
          'interesting': 4,
          'bunch': 4,
          'teenagers': 4,
          'steve': 4,
          'gavin': 4,
          'hes': 4,
          'lot': 4,
          'theyre': 3,
          'next': 3,
          'actually': 3,
          'work': 3,
          'may': 3,
          'ni': 3,
          'needs': 3,
          'scary': 3,
          'get': 3,
          'nthe': 3,
          'characters': 3,
          'kid': 3,
          'dont': 3,
          'best': 3,
          'good': 3,
          'much': 3,
          'behavior': 2,
          'scream': 2,
          'films': 2,
          'nbut': 2,
          'flicks': 2,
          'well': 2,
          'less': 2,
          'starring': 2,
          'programmed': 2,
          'perfect': 2,
          'katie': 2,
          'holmes': 2,
          'dawsons': 2,
          'creek': 2,
          'angst': 2,
          'sounds': 2,
          'would': 2,
          'witty': 2,
          'things': 2,
          'movies': 2,
          'known': 2,
          'brilliant': 2,
          'another': 2,
          'need': 2,
          'teen': 2,
          'find': 2,
          'nits': 2,
          'sloppy': 2,
          'school': 2,
          'life': 2,
          'us': 2,
          'become': 2,
          'enough': 2,
          'introduces': 2,
          'two': 2,
          'clique': 2,
          'without': 2,
          'character': 2,
          'scene': 2,
          'ones': 2,
          'theres': 2,
          'even': 2,
          'happens': 2,
          'played': 2,
          'probably': 2,
          'works': 2,
          'creepy': 2,
          'nif': 2,
          'villain': 2,
          'come': 2,
          'minutes': 2,
          'im': 1,
          'sure': 1,
          'genius': 1,
          'came': 1,
          'idea': 1,
          'comparing': 1,
          'disturbing': 1,
          'nmaybe': 1,
          'horror': 1,
          'kinda': 1,
          'hot': 1,
          'young': 1,
          'stars': 1,
          'annoying': 1,
          'alternative': 1,
          'soundtrack': 1,
          'aimed': 1,
          'teenage': 1,
          'crowd': 1,
          'guess': 1,
          'includes': 1,
          'line': 1,
          'know': 1,
          'last': 1,
          'summer': 1,
          'soon': 1,
          'owes': 1,
          'halloween': 1,
          'kafka': 1,
          'orwell': 1,
          'book': 1,
          'makes': 1,
          'feature': 1,
          'nand': 1,
          'nthis': 1,
          'basically': 1,
          'rehash': 1,
          'stepford': 1,
          'wives': 1,
          'great': 1,
          '70s': 1,
          'never': 1,
          'saw': 1,
          'katherine': 1,
          'ross': 1,
          'dealing': 1,
          'ive': 1,
          'told': 1,
          'women': 1,
          'housewives': 1,
          'n': 1,
          'deals': 1,
          'deep': 1,
          'nsuckups': 1,
          'npreppies': 1,
          'least': 1,
          'scott': 1,
          'rosenberg': 1,
          'penmen': 1,
          'written': 1,
          'stuff': 1,
          'beautiful': 1,
          'girls': 1,
          'denver': 1,
          'youre': 1,
          'dead': 1,
          'con': 1,
          'air': 1,
          'pulled': 1,
          'right': 1,
          'amount': 1,
          'frights': 1,
          'satiric': 1,
          'wit': 1,
          'nalas': 1,
          'plumets': 1,
          'little': 1,
          'group': 1,
          'potential': 1,
          'blow': 1,
          'remember': 1,
          'called': 1,
          'white': 1,
          'mans': 1,
          'burden': 1,
          'dealt': 1,
          'reversal': 1,
          'blacks': 1,
          'whites': 1,
          'society': 1,
          'nothing': 1,
          'potentially': 1,
          'premise': 1,
          'nheres': 1,
          'one': 1,
          'satire': 1,
          'go': 1,
          'order': 1,
          'stage': 1,
          'fact': 1,
          'realize': 1,
          'gets': 1,
          'message': 1,
          'across': 1,
          'effortlessly': 1,
          'nnow': 1,
          'nwhich': 1,
          'doesnt': 1,
          'contrived': 1,
          'paints': 1,
          'bleak': 1,
          'portrait': 1,
          'high': 1,
          'nlets': 1,
          'lie': 1,
          'brings': 1,
          'monsters': 1,
          'disgustingly': 1,
          'icky': 1,
          'kissups': 1,
          'food': 1,
          'drives': 1,
          'hang': 1,
          '50s': 1,
          'diner': 1,
          'drinking': 1,
          'milk': 1,
          'shakes': 1,
          'ngives': 1,
          'cheap': 1,
          'twist': 1,
          'horny': 1,
          'homicidal': 1,
          'nisnt': 1,
          'cant': 1,
          'real': 1,
          'terror': 1,
          'town': 1,
          'die': 1,
          'three': 1,
          'different': 1,
          'beginning': 1,
          'considered': 1,
          'outsiders': 1,
          'yet': 1,
          'part': 1,
          'new': 1,
          'james': 1,
          'marsden': 1,
          'trouble': 1,
          'home': 1,
          'hasnt': 1,
          'gotten': 1,
          'brothers': 1,
          'ethan': 1,
          'embry': 1,
          'quick': 1,
          'flashes': 1,
          'recognize': 1,
          'suicide': 1,
          'renegade': 1,
          'girl': 1,
          'rachel': 1,
          'chief': 1,
          'personality': 1,
          'trait': 1,
          'prominent': 1,
          'nose': 1,
          'ring': 1,
          'far': 1,
          'nick': 1,
          'stahl': 1,
          'man': 1,
          'face': 1,
          'given': 1,
          'dimension': 1,
          'nin': 1,
          'every': 1,
          'single': 1,
          'nailing': 1,
          'fetishes': 1,
          'hangups': 1,
          'movie': 1,
          'satirical': 1,
          'rest': 1,
          'isnt': 1,
          'ngavin': 1,
          'suspects': 1,
          'awry': 1,
          'preppie': 1,
          'kids': 1,
          'blue': 1,
          'ribbons': 1,
          'tradition': 1,
          'conspirators': 1,
          'shows': 1,
          'hard': 1,
          'pure': 1,
          'evidence': 1,
          'treated': 1,
          'typical': 1,
          'raving': 1,
          'conspiracy': 1,
          'buff': 1,
          'nhere': 1,
          'case': 1,
          'idiot': 1,
          'plot': 1,
          'done': 1,
          'saved': 1,
          'dreary': 1,
          'gives': 1,
          'humor': 1,
          'halfinteresting': 1,
          'janitor': 1,
          'william': 1,
          'sadler': 1,
          'retarded': 1,
          'guy': 1,
          'seems': 1,
          'nreally': 1,
          'care': 1,
          'anyway': 1,
          'shouldnt': 1,
          'mention': 1,
          'directed': 1,
          'david': 1,
          'nutter': 1,
          'xfiles': 1,
          'tarnish': 1,
          'reputation': 1,
          'nlike': 1,
          'show': 1,
          'setting': 1,
          'weird': 1,
          'conspiracies': 1,
          'creating': 1,
          'general': 1,
          'feel': 1,
          'nmost': 1,
          'shot': 1,
          'night': 1,
          'dark': 1,
          'eerie': 1,
          'shadows': 1,
          'maximum': 1,
          'effect': 1,
          'coming': 1,
          'payoff': 1,
          'nhe': 1,
          'keeps': 1,
          'inside': 1,
          'journey': 1,
          'mental': 1,
          'institution': 1,
          'third': 1,
          'act': 1,
          'wonder': 1,
          'hell': 1,
          'think': 1,
          'proof': 1,
          'rotten': 1,
          'state': 1,
          'angstdom': 1,
          'nwhat': 1,
          'longer': 1,
          'colorful': 1,
          'creepier': 1,
          'guidance': 1,
          'counselor': 1,
          'bruce': 1,
          'greenwood': 1,
          'atom': 1,
          'egoyan': 1,
          'regular': 1,
          'obviously': 1,
          'trying': 1,
          'pay': 1,
          'rent': 1,
          'still': 1,
          'thinks': 1,
          'away': 1,
          'revealed': 1,
          'tougher': 1,
          'smarter': 1,
          'villainous': 1,
          'dense': 1,
          'couldnt': 1,
          'figure': 1,
          'going': 1,
          'way': 1,
          'late': 1,
          'information': 1,
          'couple': 1,
          'runs': 1,
          '80': 1,
          'nat': 1,
          'short': 1,
          'running': 1,
          'time': 1,
          'lame': 1,
          'boring': 1,
          'pretty': 1,
          'obvious': 1,
          'leaving': 1,
          'leaves': 1,
          'horribly': 1,
          'unsatisfied': 1,
          'taste': 1,
          'mouth': 1,
          'especially': 1,
          'mine': 1,
          'nneg': 1}),
 Counter({'death': 14,
          'pitt': 12,
          'joe': 8,
          'black': 8,
          'movie': 7,
          'meet': 6,
          'one': 6,
          'forlani': 6,
          'scene': 5,
          'angel': 5,
          'n': 5,
          'three': 4,
          'nthe': 4,
          'would': 4,
          'people': 4,
          'act': 4,
          'see': 4,
          'go': 4,
          'nhe': 4,
          'hopkins': 3,
          'around': 3,
          'daughter': 3,
          'nhopkins': 3,
          'nand': 3,
          'ni': 3,
          'hours': 3,
          'nits': 3,
          'claire': 3,
          'know': 3,
          'brad': 3,
          'take': 3,
          'long': 3,
          'looks': 3,
          'shoulder': 3,
          'get': 3,
          'doesnt': 3,
          'character': 3,
          'much': 3,
          'time': 3,
          'im': 3,
          'review': 2,
          'liked': 2,
          'nsir': 2,
          'anthony': 2,
          'media': 2,
          'family': 2,
          'played': 2,
          'planning': 2,
          'birthday': 2,
          'party': 2,
          'cakes': 2,
          'man': 2,
          'position': 2,
          'two': 2,
          'things': 2,
          'slow': 2,
          'course': 2,
          'characters': 2,
          'someone': 2,
          'thought': 2,
          'audience': 2,
          'plays': 2,
          'glamorous': 2,
          'nit': 2,
          'bad': 2,
          'retreating': 2,
          'happened': 2,
          'humor': 2,
          'encourage': 2,
          'given': 2,
          'name': 2,
          'others': 2,
          'world': 2,
          'hollywood': 2,
          'might': 2,
          'life': 2,
          'jungle': 2,
          'never': 2,
          'hes': 2,
          'especially': 2,
          'pretty': 2,
          'pitts': 2,
          'performance': 2,
          'nwhere': 2,
          'cage': 2,
          'situation': 2,
          'better': 2,
          'multimillionaire': 2,
          'sure': 2,
          'wonder': 2,
          'interest': 1,
          'generous': 1,
          'want': 1,
          'start': 1,
          'playing': 1,
          'superrich': 1,
          'mogul': 1,
          'gathered': 1,
          'dinner': 1,
          'nhis': 1,
          'oldest': 1,
          'marcia': 1,
          'gay': 1,
          'harden': 1,
          'millers': 1,
          'crossing': 1,
          'obsessively': 1,
          'sinfully': 1,
          'extravagant': 1,
          'presents': 1,
          'superbly': 1,
          'decorated': 1,
          'little': 1,
          'supposed': 1,
          'scale': 1,
          'models': 1,
          'big': 1,
          'cake': 1,
          'asks': 1,
          'pick': 1,
          'likes': 1,
          'frustrated': 1,
          'weight': 1,
          'whole': 1,
          'elaborate': 1,
          'affair': 1,
          'punts': 1,
          'nwhichever': 1,
          'like': 1,
          'dear': 1,
          'says': 1,
          'exactly': 1,
          'woman': 1,
          'cries': 1,
          'reasons': 1,
          'nfirst': 1,
          'looked': 1,
          'really': 1,
          'cool': 1,
          'nsecond': 1,
          'perhaps': 1,
          'acted': 1,
          'expect': 1,
          'nmeet': 1,
          'chockfull': 1,
          'odd': 1,
          'performances': 1,
          'discernible': 1,
          'reason': 1,
          'motion': 1,
          'boot': 1,
          'easy': 1,
          'watch': 1,
          'abundant': 1,
          'eye': 1,
          'candy': 1,
          'palatial': 1,
          'homes': 1,
          'beauteous': 1,
          'even': 1,
          'easier': 1,
          'sleep': 1,
          'right': 1,
          'row': 1,
          'managed': 1,
          'quite': 1,
          'nicely': 1,
          'difficult': 1,
          'part': 1,
          'understanding': 1,
          'motivations': 1,
          'appropriate': 1,
          'length': 1,
          'overwrought': 1,
          'mess': 1,
          'problems': 1,
          'comedy': 1,
          'ncase': 1,
          'point': 1,
          'everyone': 1,
          'nhowever': 1,
          'first': 1,
          'young': 1,
          'lawyer': 1,
          'coffee': 1,
          'shop': 1,
          'hitting': 1,
          'clear': 1,
          'whether': 1,
          'need': 1,
          'law': 1,
          'degree': 1,
          'become': 1,
          'makes': 1,
          'certain': 1,
          'kind': 1,
          'sense': 1,
          'shouldnt': 1,
          'observant': 1,
          'moviegoer': 1,
          'realize': 1,
          'happen': 1,
          'mr': 1,
          'indeed': 1,
          'hideously': 1,
          'prolonged': 1,
          'sequence': 1,
          'walks': 1,
          'road': 1,
          'without': 1,
          'looking': 1,
          'suddenly': 1,
          'gets': 1,
          'squished': 1,
          'nwell': 1,
          'howled': 1,
          'laughter': 1,
          'continued': 1,
          'laugh': 1,
          'every': 1,
          'comment': 1,
          'remotely': 1,
          'humorous': 1,
          'nso': 1,
          'think': 1,
          'sudden': 1,
          'violent': 1,
          'sarcastic': 1,
          'drawingroom': 1,
          'funny': 1,
          'immediately': 1,
          'nanyway': 1,
          'deceased': 1,
          'lawyers': 1,
          'body': 1,
          'worse': 1,
          'wear': 1,
          'massive': 1,
          'injuries': 1,
          'possessed': 1,
          'takes': 1,
          'role': 1,
          'idea': 1,
          'pen': 1,
          'disturb': 1,
          'wants': 1,
          'holiday': 1,
          'experience': 1,
          'nif': 1,
          'werent': 1,
          'interesting': 1,
          'metaphysical': 1,
          'discussion': 1,
          'since': 1,
          'fishoutofwater': 1,
          'george': 1,
          'crocodile': 1,
          'dundee': 1,
          'poor': 1,
          'schmuck': 1,
          'whos': 1,
          'wandered': 1,
          'outback': 1,
          'whatever': 1,
          'society': 1,
          'also': 1,
          'help': 1,
          'written': 1,
          'inconsistently': 1,
          'claims': 1,
          'vacation': 1,
          'anything': 1,
          'except': 1,
          'hang': 1,
          'seriously': 1,
          'attractive': 1,
          'try': 1,
          'travel': 1,
          'agent': 1,
          'book': 1,
          'speaks': 1,
          'halting': 1,
          'english': 1,
          'perfectly': 1,
          'fluent': 1,
          'jamaican': 1,
          'patois': 1,
          'knows': 1,
          'everything': 1,
          'nothing': 1,
          'menacing': 1,
          'charming': 1,
          'intriguing': 1,
          'told': 1,
          'mind': 1,
          'acting': 1,
          'picture': 1,
          'son': 1,
          'stand': 1,
          'look': 1,
          'keanu': 1,
          'reeves': 1,
          'impression': 1,
          'throughout': 1,
          'nive': 1,
          'used': 1,
          'phrase': 1,
          'deliberately': 1,
          'contrast': 1,
          'years': 1,
          'best': 1,
          'nicolas': 1,
          'cages': 1,
          'city': 1,
          'angels': 1,
          'cold': 1,
          'unfeeling': 1,
          'warm': 1,
          'empathetic': 1,
          'allows': 1,
          'genuinely': 1,
          'curious': 1,
          'nature': 1,
          'aloof': 1,
          'arrogant': 1,
          'ncage': 1,
          'struck': 1,
          'instant': 1,
          'chemical': 1,
          'sparks': 1,
          'costar': 1,
          'meg': 1,
          'ryan': 1,
          'chemistry': 1,
          'understandable': 1,
          'accept': 1,
          'notion': 1,
          'forlanis': 1,
          'shallow': 1,
          'cant': 1,
          'beyond': 1,
          'good': 1,
          'movies': 1,
          'top': 1,
          'actor': 1,
          'save': 1,
          'isnt': 1,
          'material': 1,
          'work': 1,
          'unfortunately': 1,
          'goodhearted': 1,
          'moguls': 1,
          'exist': 1,
          'wonders': 1,
          'made': 1,
          'hopkinss': 1,
          'realistically': 1,
          'evil': 1,
          'marked': 1,
          'due': 1,
          'ticker': 1,
          'steps': 1,
          'grants': 1,
          'extra': 1,
          'exchange': 1,
          'guide': 1,
          'nof': 1,
          'taps': 1,
          'nbut': 1,
          'similar': 1,
          'goes': 1,
          'office': 1,
          'major': 1,
          'subplot': 1,
          'revolves': 1,
          'control': 1,
          'corporation': 1,
          'nfans': 1,
          'corporate': 1,
          'intrigue': 1,
          'fascinated': 1,
          'stayed': 1,
          'awake': 1,
          'way': 1,
          'asking': 1,
          'nmovies': 1,
          'live': 1,
          'fullest': 1,
          'going': 1,
          'ngo': 1,
          'spend': 1,
          'volunteer': 1,
          'local': 1,
          'charity': 1,
          'heck': 1,
          'nap': 1,
          'ndont': 1,
          'move': 1,
          'closer': 1,
          'curtis': 1,
          'edmonds': 1,
          'children': 1,
          'ever': 1,
          'meddled': 1,
          'republican': 1,
          'lived': 1,
          'tell': 1,
          'sideshow': 1,
          'bob': 1,
          'nneg': 1}),
 Counter({'na': 11,
          'scott': 7,
          'murphy': 6,
          'korda': 5,
          'even': 5,
          'point': 5,
          'nthe': 4,
          'metro': 4,
          'michael': 4,
          'kevin': 4,
          'cop': 3,
          'personal': 3,
          'life': 3,
          'friend': 3,
          'new': 3,
          'partner': 3,
          'chase': 3,
          'san': 3,
          'nyawn': 3,
          'plot': 3,
          'film': 3,
          'veronica': 3,
          'taking': 3,
          'much': 3,
          'car': 3,
          'villain': 2,
          'scene': 2,
          'nan': 2,
          'explosion': 2,
          'action': 2,
          'films': 2,
          'ni': 2,
          'little': 2,
          'like': 2,
          'nwith': 2,
          'eddie': 2,
          'something': 2,
          'kind': 2,
          'makes': 2,
          'tedious': 2,
          'nmurphy': 2,
          'roper': 2,
          'francisco': 2,
          'police': 2,
          'department': 2,
          'job': 2,
          'ejogo': 2,
          'gambling': 2,
          'problem': 2,
          'well': 2,
          'wincott': 2,
          'case': 2,
          'nothing': 2,
          'may': 2,
          'first': 2,
          'big': 2,
          'minutes': 2,
          'behind': 2,
          'time': 2,
          'better': 2,
          'take': 2,
          'ground': 2,
          'actual': 2,
          'character': 2,
          'able': 2,
          'turned': 2,
          'still': 2,
          'carter': 2,
          'sent': 2,
          'rest': 2,
          'b': 2,
          'c': 2,
          'getting': 2,
          'troubled': 1,
          'ruthless': 1,
          '_dead_': 1,
          'quest': 1,
          'vengeance': 1,
          'romantic': 1,
          'interest': 1,
          '_in': 1,
          'francisco_': 1,
          'woman': 1,
          'peril': 1,
          'confrontation': 1,
          'end': 1,
          'preceding': 1,
          'approximately': 1,
          'twelve': 1,
          'thousand': 1,
          'six': 1,
          'one': 1,
          'happens': 1,
          'called': 1,
          'learned': 1,
          'expect': 1,
          'consequently': 1,
          'bored': 1,
          'often': 1,
          'genuinely': 1,
          'disappointed': 1,
          'board': 1,
          'however': 1,
          'hope': 1,
          'extra': 1,
          'spark': 1,
          'nwhen': 1,
          'watching': 1,
          'experience': 1,
          'know': 1,
          'terribly': 1,
          'wrong': 1,
          'stars': 1,
          'hostage': 1,
          'negotiator': 1,
          'exceedingly': 1,
          'good': 1,
          'considerably': 1,
          'less': 1,
          'successful': 1,
          'facing': 1,
          'unhappy': 1,
          'exgirlfriend': 1,
          'named': 1,
          'carmen': 1,
          'mountain': 1,
          'debt': 1,
          'nthen': 1,
          'professional': 1,
          'gets': 1,
          'jolt': 1,
          'colleague': 1,
          'art': 1,
          'evans': 1,
          'murdered': 1,
          'investigating': 1,
          'suspected': 1,
          'jewel': 1,
          'thief': 1,
          'nfinding': 1,
          'becomes': 1,
          'joins': 1,
          'mccall': 1,
          'rappaport': 1,
          'foil': 1,
          'attempted': 1,
          'heist': 1,
          'nbut': 1,
          'jail': 1,
          'continue': 1,
          'face': 1,
          'lifethreatening': 1,
          'danger': 1,
          'nmetro': 1,
          'title': 1,
          'wondering': 1,
          'means': 1,
          'absolutely': 1,
          'badly': 1,
          'put': 1,
          'together': 1,
          'casual': 1,
          'viewer': 1,
          'notice': 1,
          'miserable': 1,
          'pacing': 1,
          'stray': 1,
          'threads': 1,
          'nin': 1,
          'place': 1,
          'kordas': 1,
          'rage': 1,
          'discovered': 1,
          'make': 1,
          'score': 1,
          'rendered': 1,
          'completely': 1,
          'pointless': 1,
          'proceeds': 1,
          'hit': 1,
          'target': 1,
          'anyway': 1,
          'incidentally': 1,
          'screw': 1,
          'reference': 1,
          'payoffs': 1,
          'followed': 1,
          'conspicuous': 1,
          'decision': 1,
          'keep': 1,
          'couple': 1,
          'pointed': 1,
          'glances': 1,
          'dropped': 1,
          'abruptly': 1,
          'resolution': 1,
          'fortyfive': 1,
          'relationship': 1,
          'perfunctory': 1,
          'disappearing': 1,
          'entirely': 1,
          'bullet': 1,
          'yearn': 1,
          'bickering': 1,
          'buddies': 1,
          'nworst': 1,
          'structure': 1,
          'places': 1,
          'main': 1,
          'always': 1,
          'menacing': 1,
          'bars': 1,
          'far': 1,
          'long': 1,
          'leaving': 1,
          'lot': 1,
          'kill': 1,
          'reconciliation': 1,
          'nyou': 1,
          'cant': 1,
          'blame': 1,
          'unable': 1,
          'muster': 1,
          'enthusiasm': 1,
          'scenes': 1,
          'bland': 1,
          'leading': 1,
          'lady': 1,
          'known': 1,
          'role': 1,
          'nscott': 1,
          'exists': 1,
          'uncomfortable': 1,
          'middle': 1,
          'streetwise': 1,
          'fasttalker': 1,
          'built': 1,
          'career': 1,
          'threedimensional': 1,
          'never': 1,
          'reconcile': 1,
          'two': 1,
          'script': 1,
          'seems': 1,
          'doctored': 1,
          'bit': 1,
          'color': 1,
          'supposed': 1,
          'inability': 1,
          'form': 1,
          'relationships': 1,
          'cause': 1,
          'gags': 1,
          'rather': 1,
          'conflict': 1,
          'yet': 1,
          'comedy': 1,
          'work': 1,
          'nfor': 1,
          'walks': 1,
          'around': 1,
          'intense': 1,
          'frown': 1,
          '90': 1,
          'hear': 1,
          'trademark': 1,
          'laugh': 1,
          'stranded': 1,
          'solid': 1,
          'punch': 1,
          'lines': 1,
          'nearly': 1,
          'ones': 1,
          'bounce': 1,
          'fall': 1,
          'limply': 1,
          'suppose': 1,
          'give': 1,
          'director': 1,
          'thomas': 1,
          'credit': 1,
          'obligatory': 1,
          'want': 1,
          'bet': 1,
          'likelihood': 1,
          'seeing': 1,
          'soar': 1,
          'hill': 1,
          'interesting': 1,
          'things': 1,
          'nas': 1,
          'vehicles': 1,
          'flying': 1,
          'passengers': 1,
          'sprawling': 1,
          'runaway': 1,
          'cable': 1,
          'possible': 1,
          'least': 1,
          'moment': 1,
          'pleasure': 1,
          'goofy': 1,
          'spin': 1,
          'familiar': 1,
          'situation': 1,
          'ncarter': 1,
          'old': 1,
          'suspense': 1,
          'standby': 1,
          'medicine': 1,
          'cabinet': 1,
          'mirror': 1,
          'close': 1,
          'reveal': 1,
          'killer': 1,
          'standing': 1,
          'someone': 1,
          'using': 1,
          'defuse': 1,
          'tension': 1,
          '_twice_': 1,
          'fact': 1,
          'demonstrate': 1,
          'recognition': 1,
          'cliches': 1,
          'willingness': 1,
          'subvert': 1,
          'involvement': 1,
          'disaster': 1,
          'puzzling': 1,
          'plods': 1,
          'relentlessly': 1,
          'obviously': 1,
          'might': 1,
          'find': 1,
          'shouting': 1,
          'theyre': 1,
          'audience': 1,
          'signals': 1,
          'else': 1,
          'consequence': 1,
          'going': 1,
          'happen': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'children': 6,
          'corn': 6,
          'horrible': 6,
          'horror': 5,
          'nthe': 5,
          '666': 4,
          'issacs': 3,
          'return': 3,
          'worst': 3,
          'hannah': 3,
          'looking': 3,
          'john': 3,
          'nothing': 3,
          'movie': 2,
          'thats': 2,
          'worn': 2,
          'series': 2,
          'none': 2,
          'mother': 2,
          'daughter': 2,
          'franklin': 2,
          'nand': 2,
          'characters': 2,
          'seems': 2,
          'tim': 2,
          'sulka': 2,
          'one': 2,
          'truly': 1,
          'called': 1,
          'scares': 1,
          'suspense': 1,
          'even': 1,
          'eerie': 1,
          'elements': 1,
          'ni': 1,
          'think': 1,
          'wants': 1,
          'us': 1,
          'believe': 1,
          'sixth': 1,
          'installment': 1,
          'far': 1,
          'date': 1,
          'nunlike': 1,
          'five': 1,
          'chapters': 1,
          'confusing': 1,
          'brainless': 1,
          'thriller': 1,
          'takes': 1,
          'psychological': 1,
          'route': 1,
          'rather': 1,
          'slasher': 1,
          'either': 1,
          'way': 1,
          'movies': 1,
          'least': 1,
          'bit': 1,
          'scary': 1,
          'follows': 1,
          'natalie': 1,
          'ramsey': 1,
          'teen': 1,
          'gatlin': 1,
          'nebraska': 1,
          'eve': 1,
          '21st': 1,
          'birthday': 1,
          'nwhat': 1,
          'starts': 1,
          'desperate': 1,
          'search': 1,
          'long': 1,
          'lost': 1,
          'turns': 1,
          'story': 1,
          'first': 1,
          'roam': 1,
          'cornfields': 1,
          'adults': 1,
          'murder': 1,
          'nthats': 1,
          'understandable': 1,
          'learn': 1,
          'much': 1,
          'issac': 1,
          'led': 1,
          'previous': 1,
          'chapter': 1,
          'older': 1,
          'strange': 1,
          'man': 1,
          'fulfill': 1,
          'prophecy': 1,
          'supposed': 1,
          'make': 1,
          'sense': 1,
          'nreally': 1,
          'nfrom': 1,
          'start': 1,
          'unclear': 1,
          'going': 1,
          'developing': 1,
          'throwing': 1,
          'concrete': 1,
          'plot': 1,
          'details': 1,
          'across': 1,
          'table': 1,
          'constantly': 1,
          'introducing': 1,
          'new': 1,
          'without': 1,
          'personalities': 1,
          'slightest': 1,
          'hint': 1,
          'individuality': 1,
          'sub': 1,
          'plots': 1,
          'main': 1,
          'focus': 1,
          'runs': 1,
          'short': 1,
          '78': 1,
          'minutes': 1,
          'vicinity': 1,
          'two': 1,
          'hours': 1,
          'bleak': 1,
          'slow': 1,
          'pacing': 1,
          'makes': 1,
          'excruciatingly': 1,
          'boring': 1,
          'nplot': 1,
          'holes': 1,
          'everywhere': 1,
          'franklins': 1,
          'unbelievably': 1,
          'script': 1,
          'accomplished': 1,
          'clear': 1,
          'reaches': 1,
          'conclusion': 1,
          'neveryone': 1,
          'everything': 1,
          'involved': 1,
          'namely': 1,
          'writers': 1,
          'along': 1,
          'director': 1,
          'kari': 1,
          'skogland': 1,
          'crawl': 1,
          'rock': 1,
          'hope': 1,
          'sees': 1,
          'work': 1,
          'trash': 1,
          'bottom': 1,
          'line': 1,
          'nanother': 1,
          'attempt': 1,
          'revive': 1,
          'genre': 1,
          'falls': 1,
          'flat': 1,
          'whats': 1,
          'title': 1,
          'devil': 1,
          'whatsoever': 1,
          'nlets': 1,
          'pray': 1,
          'finale': 1,
          'current': 1,
          'films': 1,
          'years': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'arnold': 7,
          'devil': 6,
          'like': 6,
          'action': 5,
          'nits': 4,
          'world': 4,
          'movie': 4,
          'see': 4,
          'nthe': 4,
          'robin': 3,
          'ending': 3,
          'films': 2,
          'oneliners': 2,
          'seeing': 2,
          'especially': 2,
          'another': 2,
          'blockbuster': 2,
          'cant': 2,
          'even': 2,
          'tunney': 2,
          'one': 2,
          'man': 2,
          'help': 2,
          'nothing': 2,
          'let': 2,
          'right': 2,
          'better': 2,
          'enough': 2,
          'doesnt': 2,
          'seem': 2,
          'nit': 2,
          'wasnt': 2,
          'gave': 2,
          'changed': 2,
          'much': 2,
          'end': 2,
          'nthere': 2,
          'made': 2,
          'ni': 2,
          'least': 2,
          'budget': 2,
          'nwhen': 2,
          'youre': 2,
          'solid': 2,
          'schwarzenegger': 1,
          'icon': 1,
          'enthusiasts': 1,
          'since': 1,
          'late': 1,
          '80s': 1,
          'lately': 1,
          'sloppy': 1,
          'getting': 1,
          'worse': 1,
          'hard': 1,
          'mr': 1,
          'freeze': 1,
          'batman': 1,
          'says': 1,
          'tons': 1,
          'ice': 1,
          'jokes': 1,
          'hey': 1,
          'got': 1,
          '15': 1,
          'million': 1,
          'whats': 1,
          'matter': 1,
          'nonce': 1,
          'signed': 1,
          'expensive': 1,
          'compare': 1,
          'likes': 1,
          'terminator': 1,
          'series': 1,
          'true': 1,
          'lies': 1,
          'eraser': 1,
          'nin': 1,
          'called': 1,
          'dark': 1,
          'thriller': 1,
          'gabriel': 1,
          'byrne': 1,
          'come': 1,
          'upon': 1,
          'earth': 1,
          'impregnate': 1,
          'woman': 1,
          'happens': 1,
          'every': 1,
          '1000': 1,
          'years': 1,
          'basically': 1,
          'destroy': 1,
          'apparently': 1,
          'god': 1,
          'chosen': 1,
          'jericho': 1,
          'cane': 1,
          'nwith': 1,
          'trusty': 1,
          'sidekick': 1,
          'kevin': 1,
          'pollack': 1,
          'stop': 1,
          'take': 1,
          'nparts': 1,
          'actually': 1,
          'absurd': 1,
          'would': 1,
          'fit': 1,
          'dogma': 1,
          'nyes': 1,
          'weak': 1,
          'sleepy': 1,
          'hollow': 1,
          'makes': 1,
          'look': 1,
          '4': 1,
          'star': 1,
          'nanyway': 1,
          'definitely': 1,
          'type': 1,
          'nsure': 1,
          'us': 1,
          'chuckles': 1,
          'well': 1,
          'known': 1,
          'seemed': 1,
          'confused': 1,
          'character': 1,
          'going': 1,
          'understandable': 1,
          'according': 1,
          'sources': 1,
          'naside': 1,
          'form': 1,
          'still': 1,
          'walked': 1,
          'past': 1,
          'nim': 1,
          'sorry': 1,
          'say': 1,
          'maybe': 1,
          'days': 1,
          'nspeaking': 1,
          'hardly': 1,
          'explosions': 1,
          'fights': 1,
          'places': 1,
          'explode': 1,
          'kicking': 1,
          'butt': 1,
          'make': 1,
          'spiritual': 1,
          'undoubtedly': 1,
          'ruined': 1,
          'hoping': 1,
          'cool': 1,
          'else': 1,
          'occurred': 1,
          'also': 1,
          'dont': 1,
          'know': 1,
          'took': 1,
          'long': 1,
          'cost': 1,
          'really': 1,
          'super': 1,
          'affects': 1,
          'unless': 1,
          'consider': 1,
          'invisible': 1,
          '5': 1,
          'minutes': 1,
          'tops': 1,
          'worth': 1,
          'overpriced': 1,
          'gone': 1,
          'script': 1,
          'audiences': 1,
          'could': 1,
          'somewhat': 1,
          'entertained': 1,
          'instead': 1,
          'facing': 1,
          'boredom': 1,
          'pitiful': 1,
          'scripts': 1,
          'get': 1,
          'bought': 1,
          'ndo': 1,
          'read': 1,
          'things': 1,
          'anymore': 1,
          'sure': 1,
          'nthankfully': 1,
          'gabriels': 1,
          'performance': 1,
          'light': 1,
          'poor': 1,
          'walks': 1,
          'street': 1,
          'searching': 1,
          'feel': 1,
          'looked': 1,
          'guy': 1,
          'creepy': 1,
          'looking': 1,
          'anyway': 1,
          'glad': 1,
          'ndont': 1,
          'bother': 1,
          'expecting': 1,
          'flick': 1,
          'neither': 1,
          'suckered': 1,
          'due': 1,
          'strategic': 1,
          'marketing': 1,
          'campaign': 1,
          'nsave': 1,
          'money': 1,
          'entertaining': 1,
          'experience': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'film': 8,
          'waterboy': 6,
          'really': 5,
          'great': 5,
          'material': 5,
          'humor': 4,
          'ni': 4,
          'nthe': 4,
          'sandler': 4,
          'funny': 4,
          'neven': 4,
          'still': 3,
          'cant': 3,
          'brow': 3,
          'one': 3,
          'goofy': 3,
          'voice': 3,
          'playing': 3,
          'sandlers': 3,
          'get': 3,
          'nits': 3,
          'potential': 3,
          'football': 3,
          'deal': 3,
          'would': 3,
          'figure': 2,
          'go': 2,
          'dumb': 2,
          'love': 2,
          'thought': 2,
          'films': 2,
          'adolescent': 2,
          'problem': 2,
          'think': 2,
          'times': 2,
          'throughout': 2,
          'entire': 2,
          'movies': 2,
          'fact': 2,
          'could': 2,
          'nif': 2,
          'career': 2,
          'nsandler': 2,
          'plays': 2,
          'somewhat': 2,
          'mentally': 2,
          'team': 2,
          'coach': 2,
          'winkler': 2,
          'make': 2,
          'cast': 2,
          'bad': 2,
          'bates': 2,
          'people': 1,
          'went': 1,
          'droves': 1,
          'see': 1,
          'nnow': 1,
          'assuming': 1,
          'im': 1,
          'sort': 1,
          'high': 1,
          'snob': 1,
          'appreciate': 1,
          'little': 1,
          'let': 1,
          'say': 1,
          'cheap': 1,
          'theres': 1,
          'something': 1,
          'mary': 1,
          'funniest': 1,
          'ever': 1,
          'seen': 1,
          'certainly': 1,
          'best': 1,
          '1998': 1,
          'nlow': 1,
          'lot': 1,
          'fun': 1,
          'low': 1,
          'component': 1,
          'wanted': 1,
          'like': 1,
          'laughed': 1,
          'maybe': 1,
          '2': 1,
          '3': 1,
          'nactually': 1,
          'smiled': 1,
          'couple': 1,
          'top': 1,
          'nnot': 1,
          'record': 1,
          '90minute': 1,
          'adam': 1,
          'nthose': 1,
          'responsible': 1,
          'mess': 1,
          'seem': 1,
          'sheer': 1,
          'walks': 1,
          'around': 1,
          'using': 1,
          'substitute': 1,
          'actual': 1,
          'nnothing': 1,
          'truth': 1,
          'matter': 1,
          'idiot': 1,
          'started': 1,
          'nerves': 1,
          'points': 1,
          'shame': 1,
          'personally': 1,
          'believe': 1,
          'probably': 1,
          'talented': 1,
          'comedian': 1,
          'far': 1,
          'hasnt': 1,
          'able': 1,
          'find': 1,
          'right': 1,
          'showcase': 1,
          'talents': 1,
          'talent': 1,
          'making': 1,
          'voices': 1,
          'morons': 1,
          'guess': 1,
          'road': 1,
          'vast': 1,
          'majority': 1,
          'former': 1,
          'stars': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'nmost': 1,
          'happily': 1,
          'longer': 1,
          'entertainment': 1,
          'industry': 1,
          '31yearold': 1,
          'challenged': 1,
          'college': 1,
          'teams': 1,
          'disturbed': 1,
          'henry': 1,
          'realizes': 1,
          'pentup': 1,
          'rage': 1,
          'harnessed': 1,
          'properly': 1,
          'force': 1,
          'reckoned': 1,
          'field': 1,
          'nyou': 1,
          'rest': 1,
          'joins': 1,
          'lowly': 1,
          'becomes': 1,
          'star': 1,
          'nas': 1,
          'said': 1,
          'idea': 1,
          'decent': 1,
          'main': 1,
          'result': 1,
          'nall': 1,
          'good': 1,
          'hamstrung': 1,
          'lousy': 1,
          'annoying': 1,
          'enough': 1,
          'charisma': 1,
          'natural': 1,
          'comedic': 1,
          'ability': 1,
          'overcome': 1,
          'unfunny': 1,
          'character': 1,
          'found': 1,
          'rooting': 1,
          'nbut': 1,
          'supporting': 1,
          'feel': 1,
          'badly': 1,
          'bit': 1,
          'better': 1,
          'nfairuza': 1,
          'balk': 1,
          'leatherwearing': 1,
          'bikerchick': 1,
          'interest': 1,
          'job': 1,
          'sleazy': 1,
          'sexy': 1,
          'time': 1,
          'nwinkler': 1,
          'uses': 1,
          'coaching': 1,
          'dummies': 1,
          'style': 1,
          'book': 1,
          'help': 1,
          'games': 1,
          'real': 1,
          'standout': 1,
          'though': 1,
          'kathy': 1,
          'worst': 1,
          'treat': 1,
          'watch': 1,
          'role': 1,
          'overprotective': 1,
          'overbearing': 1,
          'mama': 1,
          'performances': 1,
          'absolutely': 1,
          'way': 1,
          'recommend': 1,
          'nalthough': 1,
          'distinct': 1,
          'impression': 1,
          'without': 1,
          'ranked': 1,
          'negative': 1,
          'numbers': 1,
          'nwhich': 1,
          'sad': 1,
          'put': 1,
          'finger': 1,
          'particular': 1,
          'element': 1,
          'single': 1,
          'cause': 1,
          'disaster': 1,
          'became': 1,
          'obvious': 1,
          'involved': 1,
          'specifically': 1,
          'actors': 1,
          'tried': 1,
          'hard': 1,
          'going': 1,
          '99': 1,
          'percent': 1,
          'jokes': 1,
          'fell': 1,
          'flat': 1,
          'nneg': 1}),
 Counter({'wrestling': 10,
          'bischoff': 6,
          'gordie': 5,
          'sinclair': 5,
          'wcw': 5,
          'film': 5,
          'vince': 5,
          'sean': 4,
          'king': 4,
          'eric': 4,
          'fans': 4,
          'nthe': 3,
          'like': 3,
          'two': 3,
          'world': 3,
          'nthey': 3,
          'movie': 3,
          'would': 3,
          'fan': 3,
          'one': 2,
          'best': 2,
          'caan': 2,
          'title': 2,
          'titus': 2,
          'role': 2,
          'president': 2,
          'darryl': 2,
          'back': 2,
          'payperview': 2,
          'promotion': 2,
          'ratings': 2,
          'federation': 2,
          'nhe': 2,
          'seen': 2,
          'knows': 2,
          'show': 2,
          'thinks': 2,
          'dumb': 2,
          'believe': 2,
          'take': 2,
          'consideration': 2,
          'nitro': 2,
          'ni': 2,
          'enough': 2,
          'years': 2,
          'comedy': 2,
          'probably': 2,
          'bret': 2,
          'hart': 2,
          'better': 2,
          'boggs': 1,
          'arquette': 1,
          'aptly': 1,
          'cast': 1,
          'moron': 1,
          'friend': 1,
          'dawkins': 1,
          'scott': 1,
          'son': 1,
          'james': 1,
          'reduced': 1,
          'garbage': 1,
          'losers': 1,
          'wyoming': 1,
          'jobs': 1,
          'girlfriends': 1,
          'look': 1,
          'championship': 1,
          'champion': 1,
          'jimmy': 1,
          'terribly': 1,
          'casted': 1,
          'oliver': 1,
          'platt': 1,
          'everything': 1,
          'finally': 1,
          'get': 1,
          'see': 1,
          'live': 1,
          'screwed': 1,
          'evil': 1,
          'ruthless': 1,
          'promoter': 1,
          'wasted': 1,
          'palitaliano': 1,
          'originally': 1,
          'meant': 1,
          'reallife': 1,
          'whose': 1,
          'name': 1,
          'written': 1,
          'ngordie': 1,
          'track': 1,
          'atlanta': 1,
          'discover': 1,
          'really': 1,
          'english': 1,
          'writers': 1,
          'created': 1,
          'drunken': 1,
          'ignorant': 1,
          'southerner': 1,
          'irritated': 1,
          'lunkheads': 1,
          'bob': 1,
          'newhart': 1,
          'larry': 1,
          'sneak': 1,
          'onto': 1,
          'tv': 1,
          'agrees': 1,
          'book': 1,
          'steel': 1,
          'cage': 1,
          'match': 1,
          'las': 1,
          'vegas': 1,
          'wcws': 1,
          'next': 1,
          'rival': 1,
          'diamond': 1,
          'dallas': 1,
          'page': 1,
          'nif': 1,
          'wins': 1,
          'gets': 1,
          'career': 1,
          'plus': 1,
          'million': 1,
          'dollars': 1,
          'nwcw': 1,
          'knowing': 1,
          'desperate': 1,
          'bad': 1,
          'writing': 1,
          'skyrocketing': 1,
          'thanks': 1,
          'far': 1,
          'superior': 1,
          'came': 1,
          'idea': 1,
          'hoping': 1,
          'save': 1,
          'fired': 1,
          'rehired': 1,
          'months': 1,
          'ago': 1,
          'time': 1,
          'hed': 1,
          'left': 1,
          'already': 1,
          'contracted': 1,
          'could': 1,
          'play': 1,
          'anybody': 1,
          'programming': 1,
          'actor': 1,
          'characters': 1,
          'exactly': 1,
          'young': 1,
          'pathetic': 1,
          'idiots': 1,
          'anything': 1,
          'put': 1,
          'front': 1,
          'real': 1,
          'nthat': 1,
          'doesnt': 1,
          'books': 1,
          'news': 1,
          'day': 1,
          'age': 1,
          'professional': 1,
          'isnt': 1,
          'unless': 1,
          'four': 1,
          'old': 1,
          'nthis': 1,
          '2000': 1,
          'know': 1,
          '1985': 1,
          'nbischoff': 1,
          'try': 1,
          'cover': 1,
          'criticism': 1,
          'saying': 1,
          'doubt': 1,
          'mind': 1,
          'dramatic': 1,
          'rockystyle': 1,
          'nprofessional': 1,
          'ridiculed': 1,
          'first': 1,
          'ten': 1,
          'portrayed': 1,
          'light': 1,
          'nanybody': 1,
          'documentary': 1,
          'shadows': 1,
          'documenting': 1,
          'wwf': 1,
          'owner': 1,
          'mcmahons': 1,
          'doublecrossing': 1,
          'realize': 1,
          'via': 1,
          'reviews': 1,
          'previews': 1,
          'ready': 1,
          'rumble': 1,
          'basically': 1,
          'ripoff': 1,
          'films': 1,
          'storyline': 1,
          'poor': 1,
          'mans': 1,
          'wayne': 1,
          'garth': 1,
          'thrown': 1,
          'comedic': 1,
          'affect': 1,
          'nyou': 1,
          'tell': 1,
          'supposed': 1,
          'poke': 1,
          'fun': 1,
          'selfrespecting': 1,
          'inspired': 1,
          'nall': 1,
          'aspects': 1,
          'needless': 1,
          'say': 1,
          'seriously': 1,
          'offended': 1,
          'nanother': 1,
          'thing': 1,
          'found': 1,
          'disturbing': 1,
          'romance': 1,
          'girl': 1,
          'sasha': 1,
          'lovely': 1,
          'rose': 1,
          'mcgowan': 1,
          'nwouldnt': 1,
          'easier': 1,
          'bring': 1,
          'something': 1,
          'new': 1,
          'relationship': 1,
          'rather': 1,
          'revealing': 1,
          'working': 1,
          'sinclairs': 1,
          'insistance': 1,
          'hate': 1,
          'cliche': 1,
          'made': 1,
          'everyone': 1,
          'cares': 1,
          'winning': 1,
          'wrestlers': 1,
          'dont': 1,
          'treat': 1,
          'morons': 1,
          'nso': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'nthe': 7,
          'twin': 6,
          'peaks': 6,
          'lynch': 3,
          'tv': 3,
          'series': 3,
          'laura': 3,
          'walk': 2,
          'david': 2,
          'theater': 2,
          'like': 2,
          'seen': 2,
          'plot': 2,
          'mention': 2,
          'murder': 2,
          'cooper': 2,
          'cant': 2,
          'palmer': 2,
          'james': 2,
          'nowhere': 2,
          'arrived': 1,
          'paris': 1,
          'june': 1,
          '1992': 1,
          'surprised': 1,
          'find': 1,
          'france': 1,
          'plastered': 1,
          'posters': 1,
          'fire': 1,
          'since': 1,
          'wasnt': 1,
          'scheduled': 1,
          'open': 1,
          'u': 1,
          'late': 1,
          'august': 1,
          'nhappily': 1,
          'filmthe': 1,
          'prequel': 1,
          'lynchs': 1,
          'cult': 1,
          'television': 1,
          'serieswas': 1,
          'playing': 1,
          'fancy': 1,
          'thx': 1,
          'nunfortunately': 1,
          'far': 1,
          'impressive': 1,
          'absolutely': 1,
          'stinks': 1,
          'much': 1,
          'french': 1,
          'lavatory': 1,
          'nworse': 1,
          'actually': 1,
          'nfire': 1,
          'directed': 1,
          'completely': 1,
          'incomprehensible': 1,
          'anyone': 1,
          'read': 1,
          'palmers': 1,
          'secret': 1,
          'diary': 1,
          'nfor': 1,
          'junkies': 1,
          'marginally': 1,
          'improved': 1,
          'jumbled': 1,
          'illogical': 1,
          'excruciatingly': 1,
          'sluggish': 1,
          'first': 1,
          '30': 1,
          'minutes': 1,
          'almost': 1,
          'nothing': 1,
          'main': 1,
          'story': 1,
          'line': 1,
          'feature': 1,
          'chris': 1,
          'isaak': 1,
          'kiefer': 1,
          'sutherland': 1,
          'fbi': 1,
          'agents': 1,
          'investigating': 1,
          'portland': 1,
          'oregon': 1,
          'stops': 1,
          'philadelphia': 1,
          'nonsensical': 1,
          'cameo': 1,
          'bowie': 1,
          'brief': 1,
          'appearance': 1,
          'kyle': 1,
          'maclachlan': 1,
          'dale': 1,
          'nlynch': 1,
          'drops': 1,
          'strand': 1,
          'altogether': 1,
          'abruptly': 1,
          'shifts': 1,
          'setting': 1,
          'washingtonone': 1,
          'year': 1,
          'later': 1,
          'nah': 1,
          'familiar': 1,
          'territory': 1,
          'think': 1,
          'angelo': 1,
          'badalamentis': 1,
          'distinctive': 1,
          'musical': 1,
          'score': 1,
          'chimes': 1,
          'nwrong': 1,
          'proves': 1,
          'really': 1,
          'go': 1,
          'home': 1,
          'least': 1,
          'nonly': 1,
          'quarter': 1,
          'characters': 1,
          'appear': 1,
          'leland': 1,
          'bobby': 1,
          'briggs': 1,
          'shelly': 1,
          'leo': 1,
          'log': 1,
          'lady': 1,
          'othersmostly': 1,
          'meaningless': 1,
          'cameos': 1,
          'rest': 1,
          'cast': 1,
          'consequently': 1,
          'fails': 1,
          'recreate': 1,
          'spirit': 1,
          'flavor': 1,
          'tvs': 1,
          'enigmatic': 1,
          'town': 1,
          'ncast': 1,
          'members': 1,
          'michael': 1,
          'ontkean': 1,
          'sherilyn': 1,
          'fenn': 1,
          'piper': 1,
          'laurie': 1,
          'richard': 1,
          'beymer': 1,
          'sorely': 1,
          'missed': 1,
          'lara': 1,
          'flynn': 1,
          'boyle': 1,
          'replaced': 1,
          'lackluster': 1,
          'moira': 1,
          'kelly': 1,
          'crucial': 1,
          'role': 1,
          'donna': 1,
          'concentrates': 1,
          'solely': 1,
          'sheryl': 1,
          'lee': 1,
          'suffers': 1,
          'drug': 1,
          'abuse': 1,
          'prostitution': 1,
          'incest': 1,
          'miserable': 1,
          'last': 1,
          'seven': 1,
          'days': 1,
          'earth': 1,
          'night': 1,
          'lauras': 1,
          'death': 1,
          'truly': 1,
          'terrifying': 1,
          'films': 1,
          'remotely': 1,
          'effective': 1,
          'sequence': 1,
          'nwe': 1,
          'finally': 1,
          'get': 1,
          'see': 1,
          'exactly': 1,
          'happened': 1,
          'jumped': 1,
          'motorcycle': 1,
          'ran': 1,
          'woods': 1,
          'lonely': 1,
          'traffic': 1,
          'light': 1,
          'middle': 1,
          'nher': 1,
          'unfolds': 1,
          'agent': 1,
          'reconstructed': 1,
          'gratifying': 1,
          'faithful': 1,
          'viewers': 1,
          'nbut': 1,
          'awfully': 1,
          'small': 1,
          'reward': 1,
          'sitting': 1,
          'painfully': 1,
          'awful': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'problems': 5,
          '4': 5,
          'mans': 5,
          'story': 4,
          'film': 4,
          'roro': 4,
          'family': 4,
          'two': 3,
          'like': 3,
          'sexual': 3,
          'lot': 3,
          '0': 3,
          'nit': 3,
          'park': 3,
          'fares': 3,
          'nroro': 3,
          'problem': 3,
          'situation': 2,
          'comedy': 2,
          'sweden': 2,
          'tells': 2,
          'friends': 2,
          'enhancers': 2,
          'jalla': 2,
          'custodians': 2,
          'love': 2,
          'lebanese': 2,
          'background': 2,
          'yasmin': 2,
          'want': 2,
          'get': 2,
          'nmans': 2,
          'go': 2,
          'way': 2,
          'plot': 2,
          'none': 2,
          'things': 2,
          'better': 2,
          'director': 2,
          'see': 2,
          'roros': 2,
          'life': 2,
          'scale': 2,
          'capsule': 1,
          'superlight': 1,
          'close': 1,
          'romantic': 1,
          'script': 1,
          'involves': 1,
          'formerly': 1,
          'taboo': 1,
          'subjects': 1,
          'erotic': 1,
          'toys': 1,
          'otherwise': 1,
          'writing': 1,
          'different': 1,
          'shown': 1,
          'free': 1,
          'television': 1,
          'characters': 1,
          'paperthin': 1,
          'interesting': 1,
          'ideas': 1,
          'purely': 1,
          'nonexistent': 1,
          'nthis': 1,
          'decrementlifeby90minutes': 1,
          'card': 1,
          'n': 1,
          'njalla': 1,
          'nis': 1,
          'basically': 1,
          'exuberant': 1,
          'tv': 1,
          'written': 1,
          'instead': 1,
          'wide': 1,
          'screen': 1,
          'finding': 1,
          'path': 1,
          'true': 1,
          'set': 1,
          'torkel': 1,
          'petersson': 1,
          'public': 1,
          'tightly': 1,
          'knit': 1,
          'control': 1,
          'closely': 1,
          'swede': 1,
          'much': 1,
          'liberal': 1,
          'nthey': 1,
          'spend': 1,
          'day': 1,
          'bushes': 1,
          'cleaning': 1,
          'dogs': 1,
          'girlfriends': 1,
          'nicknamed': 1,
          'seems': 1,
          'wants': 1,
          'arrange': 1,
          'marriage': 1,
          'nice': 1,
          'woman': 1,
          'laleh': 1,
          'pourkarim': 1,
          'already': 1,
          'lisa': 1,
          'tuva': 1,
          'novotny': 1,
          'nyasmin': 1,
          'likes': 1,
          'married': 1,
          'either': 1,
          'hand': 1,
          'impotence': 1,
          'worry': 1,
          'discuss': 1,
          'thinks': 1,
          'answer': 1,
          'purchase': 1,
          'one': 1,
          'catch': 1,
          'shy': 1,
          'buy': 1,
          'decide': 1,
          'give': 1,
          'time': 1,
          'telling': 1,
          'families': 1,
          'marry': 1,
          'plan': 1,
          'break': 1,
          'wedding': 1,
          'nnot': 1,
          'surprisingly': 1,
          'neither': 1,
          'finds': 1,
          'idea': 1,
          'works': 1,
          'quite': 1,
          'expected': 1,
          'turns': 1,
          'several': 1,
          'places': 1,
          'contrived': 1,
          'knows': 1,
          'fairly': 1,
          'quickly': 1,
          'going': 1,
          'work': 1,
          'happily': 1,
          'everybody': 1,
          'certain': 1,
          'contrivances': 1,
          'happen': 1,
          'nlebaneseborn': 1,
          'josef': 1,
          'wrote': 1,
          'directed': 1,
          'perhaps': 1,
          'writer': 1,
          'nwhen': 1,
          'start': 1,
          'slow': 1,
          'adds': 1,
          'throws': 1,
          'another': 1,
          'nfor': 1,
          'example': 1,
          'halfway': 1,
          'innocently': 1,
          'antagonizes': 1,
          'local': 1,
          'toughs': 1,
          'long': 1,
          'chase': 1,
          'added': 1,
          'ncharacterization': 1,
          'little': 1,
          'seem': 1,
          'whole': 1,
          'personality': 1,
          'beyond': 1,
          'fear': 1,
          'losing': 1,
          'biological': 1,
          'function': 1,
          'nwe': 1,
          'concerns': 1,
          'nthat': 1,
          'may': 1,
          'nwhile': 1,
          'entertaining': 1,
          'feel': 1,
          'got': 1,
          'anything': 1,
          'worthwhile': 1,
          'pass': 1,
          'hour': 1,
          'half': 1,
          'movies': 1,
          'entertainment': 1,
          'ni': 1,
          'rate': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'violet': 5,
          'nand': 4,
          'bar': 4,
          'goodman': 3,
          'since': 3,
          'remember': 2,
          'coyote': 2,
          'ugly': 2,
          'better': 2,
          'perado': 2,
          'bello': 2,
          'thing': 2,
          'get': 2,
          'start': 2,
          'rest': 2,
          'along': 2,
          'one': 2,
          'tries': 2,
          'na': 2,
          'gives': 2,
          'another': 2,
          'tom': 1,
          'cruise': 1,
          'brian': 1,
          'brown': 1,
          'rival': 1,
          'bartenders': 1,
          'juggling': 1,
          'bottles': 1,
          'booze': 1,
          'cocktail': 1,
          'nremember': 1,
          'stupid': 1,
          'looked': 1,
          'scantilyclad': 1,
          'dancers': 1,
          'flashdance': 1,
          'getting': 1,
          'doused': 1,
          'buckets': 1,
          'water': 1,
          'nwell': 1,
          'films': 1,
          'five': 1,
          'six': 1,
          'count': 1,
          'john': 1,
          'piper': 1,
          'maria': 1,
          'tyra': 1,
          'banks': 1,
          'melanie': 1,
          'lynskey': 1,
          'izabella': 1,
          'miko': 1,
          'absolut': 1,
          'spinning': 1,
          'jiggling': 1,
          'pouring': 1,
          'pitchers': 1,
          'perrier': 1,
          'seminaked': 1,
          'torsos': 1,
          'nno': 1,
          'doesnt': 1,
          'flip': 1,
          'jim': 1,
          'beams': 1,
          'wear': 1,
          'anything': 1,
          'particularly': 1,
          'risqu': 1,
          'film': 1,
          'gyrating': 1,
          'central': 1,
          'characters': 1,
          'love': 1,
          'interest': 1,
          'played': 1,
          'australian': 1,
          'actor': 1,
          'named': 1,
          'adam': 1,
          'garcia': 1,
          'proves': 1,
          'shimmying': 1,
          'nwhat': 1,
          'seems': 1,
          'started': 1,
          'life': 1,
          'victorias': 1,
          'secret': 1,
          'photo': 1,
          'shoot': 1,
          'quickly': 1,
          'deteriorates': 1,
          'heck': 1,
          'embarrassing': 1,
          'movie': 1,
          'nviolet': 1,
          'south': 1,
          'amboy': 1,
          'hopeful': 1,
          'make': 1,
          'big': 1,
          'songwriter': 1,
          'welder': 1,
          'new': 1,
          'jack': 1,
          'city': 1,
          'nas': 1,
          'come': 1,
          'shes': 1,
          'fobbed': 1,
          'music': 1,
          'producers': 1,
          'receptionists': 1,
          'scornful': 1,
          'apartment': 1,
          'robbed': 1,
          'hours': 1,
          'touching': 1,
          'chinatown': 1,
          'like': 1,
          'mother': 1,
          'gets': 1,
          'stage': 1,
          'fright': 1,
          'whenever': 1,
          'open': 1,
          'mike': 1,
          'night': 1,
          'nwhen': 1,
          'sees': 1,
          'trio': 1,
          'babealicious': 1,
          'barkeeps': 1,
          'thumbing': 1,
          'stack': 1,
          '20s': 1,
          'allnight': 1,
          'diner': 1,
          'simply': 1,
          'check': 1,
          'call': 1,
          'nlil': 1,
          'nononsense': 1,
          'owner': 1,
          'agrees': 1,
          'give': 1,
          'audition': 1,
          'blows': 1,
          'nstill': 1,
          'lil': 1,
          'chance': 1,
          'riot': 1,
          'breaks': 1,
          'riots': 1,
          'order': 1,
          'day': 1,
          'uglys': 1,
          'staff': 1,
          'relentless': 1,
          'flaunting': 1,
          'sexual': 1,
          'wares': 1,
          'flambeeing': 1,
          'soaking': 1,
          'patrons': 1,
          'diet': 1,
          'spritethis': 1,
          'certifiable': 1,
          'behavior': 1,
          'case': 1,
          'didnt': 1,
          'mention': 1,
          'successfully': 1,
          'subdues': 1,
          'crowd': 1,
          'singing': 1,
          'blondies': 1,
          'way': 1,
          'jukebox': 1,
          'nshes': 1,
          'hired': 1,
          'cured': 1,
          'little': 1,
          'episode': 1,
          'confidence': 1,
          'sing': 1,
          'amateur': 1,
          'talent': 1,
          'contest': 1,
          'dad': 1,
          'junk': 1,
          'foodeating': 1,
          'laundryimpaired': 1,
          'toll': 1,
          'collector': 1,
          'comes': 1,
          'see': 1,
          'proud': 1,
          'punch': 1,
          'nthe': 1,
          'end': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'office': 4,
          'plot': 4,
          'movie': 4,
          'judge': 3,
          'space': 3,
          'work': 3,
          'comedy': 2,
          'one': 2,
          'mistakes': 2,
          'amateur': 2,
          'make': 2,
          'workplace': 2,
          'series': 2,
          'rather': 2,
          'plan': 2,
          'downfall': 2,
          'boss': 2,
          'set': 2,
          'feature': 2,
          'evidence': 2,
          'peter': 2,
          'initech': 2,
          'confucius': 1,
          'said': 1,
          'governing': 1,
          'nation': 1,
          'like': 1,
          'cooking': 1,
          'small': 1,
          'fish': 1,
          'dont': 1,
          'overdo': 1,
          'nhis': 1,
          'maxim': 1,
          'might': 1,
          'easily': 1,
          'applied': 1,
          'writing': 1,
          'script': 1,
          'quantity': 1,
          'quality': 1,
          'worst': 1,
          'scribe': 1,
          'ngranted': 1,
          'mike': 1,
          'writerdirector': 1,
          'satire': 1,
          'isnt': 1,
          'exactly': 1,
          'infamous': 1,
          'mtv': 1,
          'beavis': 1,
          'butthead': 1,
          'pure': 1,
          'gold': 1,
          'network': 1,
          'nbut': 1,
          'unfailingly': 1,
          'manages': 1,
          'inexcusable': 1,
          'spreading': 1,
          'iffy': 1,
          'much': 1,
          'ground': 1,
          'iffiness': 1,
          'judges': 1,
          'group': 1,
          'coworkers': 1,
          'despicable': 1,
          'appeal': 1,
          'nin': 1,
          'fact': 1,
          'based': 1,
          'popularity': 1,
          'scott': 1,
          'adams': 1,
          'cartoon': 1,
          'dilbert': 1,
          'soon': 1,
          'television': 1,
          'satirical': 1,
          'view': 1,
          'american': 1,
          'hot': 1,
          'item': 1,
          'hollywood': 1,
          'nunfortunately': 1,
          'concept': 1,
          'lends': 1,
          'skitlength': 1,
          'sequences': 1,
          'would': 1,
          'home': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'fulllength': 1,
          'convincing': 1,
          'trailers': 1,
          'almost': 1,
          'movies': 1,
          'top': 1,
          'content': 1,
          'leaves': 1,
          'actual': 1,
          'picture': 1,
          'appearing': 1,
          'deflated': 1,
          'nother': 1,
          'spaces': 1,
          'failure': 1,
          'lack': 1,
          'good': 1,
          'jokes': 1,
          'marginally': 1,
          'funny': 1,
          'best': 1,
          'enough': 1,
          'get': 1,
          'packed': 1,
          'house': 1,
          'theatergoers': 1,
          'laugh': 1,
          'loud': 1,
          'material': 1,
          'onkey': 1,
          'older': 1,
          'demographic': 1,
          'used': 1,
          'targeting': 1,
          'could': 1,
          'partially': 1,
          'explain': 1,
          'nhowever': 1,
          'loaded': 1,
          'many': 1,
          'misfires': 1,
          'including': 1,
          'token': 1,
          'allow': 1,
          'excuse': 1,
          'centers': 1,
          'around': 1,
          'three': 1,
          'four': 1,
          'cubicled': 1,
          'engineers': 1,
          'headed': 1,
          'gibbons': 1,
          'ron': 1,
          'livingston': 1,
          'company': 1,
          'named': 1,
          'nafter': 1,
          'elaborately': 1,
          'establishes': 1,
          'miserable': 1,
          'working': 1,
          'conditions': 1,
          'introduces': 1,
          'us': 1,
          'two': 1,
          'consultants': 1,
          'john': 1,
          'c': 1,
          'mcginley': 1,
          'paul': 1,
          'willson': 1,
          'charge': 1,
          'downsizing': 1,
          'companys': 1,
          'payroll': 1,
          'nwhen': 1,
          'gang': 1,
          'learns': 1,
          'well': 1,
          'reason': 1,
          'behind': 1,
          'smooth': 1,
          'talking': 1,
          'bill': 1,
          'lumbergh': 1,
          'gary': 1,
          'cole': 1,
          'stock': 1,
          'go': 1,
          'creating': 1,
          'see': 1,
          'circumstances': 1,
          'follow': 1,
          'obviously': 1,
          'intended': 1,
          'hilarious': 1,
          'come': 1,
          'anything': 1,
          'na': 1,
          'sympathetic': 1,
          'cast': 1,
          'muddled': 1,
          'jennifer': 1,
          'anistonasloveinterest': 1,
          'subplot': 1,
          'keep': 1,
          'together': 1,
          'definitely': 1,
          'missable': 1,
          'lieu': 1,
          'something': 1,
          'intelligent': 1,
          'nneg': 1}),
 Counter({'irene': 11,
          'farrellys': 10,
          'nthe': 9,
          'brothers': 7,
          'film': 7,
          'like': 6,
          'entirely': 6,
          'mary': 6,
          'funny': 5,
          'carrey': 5,
          'doesnt': 5,
          'farrelly': 4,
          'personality': 4,
          'charlie': 4,
          'charlies': 4,
          'plot': 4,
          'work': 4,
          'n': 4,
          'pull': 4,
          'nothing': 4,
          'seemed': 3,
          'better': 3,
          'movie': 3,
          'nits': 3,
          'thing': 3,
          'even': 3,
          'new': 3,
          'would': 3,
          'course': 3,
          'people': 3,
          'comedy': 3,
          'one': 3,
          'isnt': 3,
          'ever': 3,
          'nthis': 3,
          'actions': 3,
          'humor': 3,
          'outrageous': 3,
          'way': 3,
          'made': 3,
          'nbut': 3,
          'still': 3,
          'dont': 3,
          'perfect': 2,
          'offensive': 2,
          'matter': 2,
          'make': 2,
          'guy': 2,
          'split': 2,
          'exactly': 2,
          'sort': 2,
          'something': 2,
          'mental': 2,
          'illness': 2,
          'throwing': 2,
          'wind': 2,
          'get': 2,
          'njim': 2,
          'neven': 2,
          'ill': 2,
          'condition': 2,
          'take': 2,
          'another': 2,
          'wrong': 2,
          'never': 2,
          'taking': 2,
          'hes': 2,
          'stop': 2,
          'runs': 2,
          'problem': 2,
          'kind': 2,
          'earlier': 2,
          'merely': 2,
          'gags': 2,
          'believe': 2,
          'unexpected': 2,
          'surprising': 2,
          'seems': 2,
          'really': 2,
          'manner': 2,
          'jokes': 2,
          'havent': 2,
          'adolescent': 2,
          'think': 2,
          'none': 2,
          'anything': 2,
          'involving': 2,
          'three': 2,
          'black': 2,
          'language': 2,
          'hasnt': 2,
          'supporting': 2,
          'character': 2,
          'script': 2,
          'roleshifting': 2,
          'whether': 2,
          'stuck': 2,
          'audiences': 2,
          'good': 2,
          'filmmakers': 2,
          'concept': 1,
          'nwhat': 1,
          'famous': 1,
          'writing': 1,
          'directing': 1,
          'comedies': 1,
          'subject': 1,
          'relish': 1,
          'poking': 1,
          'fun': 1,
          'serious': 1,
          'case': 1,
          'care': 1,
          'laugh': 1,
          'carreys': 1,
          'signed': 1,
          'national': 1,
          'alliance': 1,
          'mentally': 1,
          'helped': 1,
          'levying': 1,
          'complaints': 1,
          'opening': 1,
          'claiming': 1,
          'misrepresenting': 1,
          'labeling': 1,
          'incorrectly': 1,
          'schizophrenia': 1,
          'forth': 1,
          'nsuch': 1,
          'protest': 1,
          'add': 1,
          'fuel': 1,
          'fire': 1,
          'proving': 1,
          'couldnt': 1,
          'joke': 1,
          'helping': 1,
          'enlightened': 1,
          'viewers': 1,
          'yet': 1,
          'dose': 1,
          'brilliantly': 1,
          'subversive': 1,
          'nyes': 1,
          'went': 1,
          'lack': 1,
          'trying': 1,
          'utilize': 1,
          'highconcept': 1,
          'premise': 1,
          'plays': 1,
          'baileygaites': 1,
          'man': 1,
          'dumped': 1,
          'wife': 1,
          'midget': 1,
          'limo': 1,
          'driver': 1,
          'decides': 1,
          'bury': 1,
          'aggressive': 1,
          'feelings': 1,
          'deep': 1,
          'inside': 1,
          'release': 1,
          'means': 1,
          'neighbors': 1,
          'exploit': 1,
          'tooforgiving': 1,
          'nature': 1,
          'making': 1,
          'job': 1,
          'rhode': 1,
          'island': 1,
          'state': 1,
          'trooper': 1,
          'increasingly': 1,
          'difficult': 1,
          'nsoon': 1,
          'enough': 1,
          'repressed': 1,
          'aggression': 1,
          'manifests': 1,
          'second': 1,
          'independent': 1,
          'named': 1,
          'hank': 1,
          'deepvoiced': 1,
          'boorish': 1,
          'ogre': 1,
          'unafraid': 1,
          'assertive': 1,
          'predecessor': 1,
          'unable': 1,
          'muster': 1,
          'crashing': 1,
          'car': 1,
          'wall': 1,
          'barber': 1,
          'shop': 1,
          'insulted': 1,
          'holding': 1,
          'little': 1,
          'girls': 1,
          'head': 1,
          'underwater': 1,
          'refused': 1,
          'jumproping': 1,
          'street': 1,
          'nthen': 1,
          'things': 1,
          'start': 1,
          'getting': 1,
          'lost': 1,
          'complicated': 1,
          'attempted': 1,
          'tracks': 1,
          'nsome': 1,
          'suggested': 1,
          'brand': 1,
          'require': 1,
          'ntheyre': 1,
          'greatly': 1,
          'instrumental': 1,
          'building': 1,
          'rollicking': 1,
          'comic': 1,
          'energy': 1,
          'infused': 1,
          'last': 1,
          'effort': 1,
          '1996s': 1,
          'theres': 1,
          '1999s': 1,
          'outside': 1,
          'providence': 1,
          'technically': 1,
          'project': 1,
          'wasnt': 1,
          'contained': 1,
          'despite': 1,
          'newsmagazine': 1,
          'articles': 1,
          'rather': 1,
          'nin': 1,
          'managed': 1,
          'several': 1,
          'times': 1,
          'neat': 1,
          'sleightofhand': 1,
          'trick': 1,
          'theyd': 1,
          'thinking': 1,
          'story': 1,
          'going': 1,
          'reveal': 1,
          'real': 1,
          'direction': 1,
          'delightfully': 1,
          'fashion': 1,
          'contrast': 1,
          'folks': 1,
          'looked': 1,
          'saw': 1,
          'surface': 1,
          'grossness': 1,
          'missing': 1,
          'subtle': 1,
          'machinations': 1,
          'nhaving': 1,
          'produced': 1,
          'guys': 1,
          'bigger': 1,
          'disappointment': 1,
          'pile': 1,
          'shots': 1,
          'race': 1,
          'midgets': 1,
          'albinos': 1,
          'bathroom': 1,
          'come': 1,
          'fresh': 1,
          'comes': 1,
          'rote': 1,
          'bythenumbers': 1,
          'forced': 1,
          'drive': 1,
          'alleged': 1,
          'fugitive': 1,
          'p': 1,
          'waters': 1,
          'renee': 1,
          'zellweger': 1,
          'whos': 1,
          'trouble': 1,
          'anyone': 1,
          'knows': 1,
          'back': 1,
          'york': 1,
          'ending': 1,
          'thats': 1,
          'predictable': 1,
          'getgo': 1,
          'fall': 1,
          'love': 1,
          'nyeah': 1,
          'introduce': 1,
          'scores': 1,
          'different': 1,
          'characters': 1,
          'manage': 1,
          'already': 1,
          'expected': 1,
          'might': 1,
          'ncompared': 1,
          'curveballs': 1,
          'used': 1,
          'stuff': 1,
          'almost': 1,
          'softtossed': 1,
          'presenting': 1,
          'obvious': 1,
          'grossout': 1,
          'loses': 1,
          'shock': 1,
          'value': 1,
          'longer': 1,
          'gross': 1,
          'milked': 1,
          'effectiveness': 1,
          'dry': 1,
          'ntake': 1,
          'example': 1,
          'subplot': 1,
          'sons': 1,
          'anthony': 1,
          'anderson': 1,
          'mongo': 1,
          'brownlee': 1,
          'jerod': 1,
          'mixon': 1,
          'incongruity': 1,
          'burly': 1,
          'men': 1,
          'discussing': 1,
          'higher': 1,
          'math': 1,
          'ghetto': 1,
          'whitebread': 1,
          'mouthing': 1,
          'said': 1,
          'toopleasant': 1,
          'smile': 1,
          'face': 1,
          'end': 1,
          'theyre': 1,
          'schitck': 1,
          'elevated': 1,
          'funnier': 1,
          'level': 1,
          'dropped': 1,
          'either': 1,
          'nthats': 1,
          'bad': 1,
          'ceases': 1,
          'amusing': 1,
          'halfway': 1,
          'reeks': 1,
          'wasted': 1,
          'opportunities': 1,
          'nthere': 1,
          'ought': 1,
          'focus': 1,
          'react': 1,
          'deals': 1,
          'consequences': 1,
          'hanks': 1,
          'happen': 1,
          'nearly': 1,
          'every': 1,
          'learns': 1,
          'early': 1,
          'opportunity': 1,
          'surprised': 1,
          'throws': 1,
          'looks': 1,
          'patented': 1,
          'curve': 1,
          'scene': 1,
          'towards': 1,
          'midway': 1,
          'point': 1,
          'albino': 1,
          'companion': 1,
          'pick': 1,
          'called': 1,
          'appropriately': 1,
          'whitey': 1,
          'go': 1,
          'anywhere': 1,
          'instead': 1,
          'leaving': 1,
          'thread': 1,
          'twisting': 1,
          'awkwardly': 1,
          'tying': 1,
          'climax': 1,
          'gifted': 1,
          'comedian': 1,
          'physically': 1,
          'vocally': 1,
          'left': 1,
          'much': 1,
          'except': 1,
          'contort': 1,
          'similar': 1,
          'steve': 1,
          'martin': 1,
          'great': 1,
          'showcase': 1,
          'flexibility': 1,
          'splitsecond': 1,
          'terribly': 1,
          'ncarrey': 1,
          'stunts': 1,
          'expect': 1,
          'give': 1,
          'else': 1,
          'situations': 1,
          'must': 1,
          'perform': 1,
          'arent': 1,
          'set': 1,
          'meaningful': 1,
          'nperhaps': 1,
          'solace': 1,
          'fact': 1,
          'actors': 1,
          'fare': 1,
          'nzellwegers': 1,
          'strong': 1,
          'female': 1,
          'lead': 1,
          'may': 1,
          'part': 1,
          'fantasy': 1,
          'also': 1,
          'intelligent': 1,
          'strongwilled': 1,
          'nirene': 1,
          'particular': 1,
          'makes': 1,
          'clear': 1,
          'shes': 1,
          'ditzy': 1,
          'clever': 1,
          'neither': 1,
          'nas': 1,
          'gives': 1,
          'us': 1,
          'latch': 1,
          'onto': 1,
          'sane': 1,
          'person': 1,
          'nchris': 1,
          'cooper': 1,
          'playing': 1,
          'note': 1,
          'corrupt': 1,
          'fbi': 1,
          'agent': 1,
          'straightlaced': 1,
          'nhe': 1,
          'others': 1,
          'absolutely': 1,
          'nafter': 1,
          'viewing': 1,
          'shapeless': 1,
          'mess': 1,
          'eventually': 1,
          'dissolved': 1,
          'wondering': 1,
          'outsmarted': 1,
          'nmaybe': 1,
          'long': 1,
          'wise': 1,
          'shocked': 1,
          'find': 1,
          'ways': 1,
          'grown': 1,
          'attuned': 1,
          'style': 1,
          'nif': 1,
          'indeed': 1,
          'smart': 1,
          'theyll': 1,
          'rebound': 1,
          'fine': 1,
          'happens': 1,
          'though': 1,
          'consider': 1,
          'highcaliber': 1,
          'misfire': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'one': 7,
          'stupid': 5,
          'nand': 5,
          'nbut': 5,
          'get': 5,
          'cool': 5,
          'characters': 4,
          'time': 4,
          'disaster': 4,
          'part': 4,
          'cause': 3,
          'inane': 3,
          'fun': 3,
          'eccentric': 3,
          'god': 3,
          'volcano': 3,
          'good': 3,
          'cheadle': 3,
          'best': 3,
          'interesting': 3,
          'ni': 3,
          'see': 3,
          'watching': 3,
          'nhe': 3,
          'go': 3,
          'sight': 3,
          'theres': 2,
          'scene': 2,
          'first': 2,
          'goes': 2,
          'since': 2,
          'nits': 2,
          'like': 2,
          'greatest': 2,
          'earthquake': 2,
          'n': 2,
          'erupts': 2,
          'actors': 2,
          'lee': 2,
          'jones': 2,
          'great': 2,
          'gabys': 2,
          'dumb': 2,
          'nthey': 2,
          'magma': 2,
          'actually': 2,
          'sites': 2,
          'destroyed': 2,
          'films': 2,
          'toppled': 2,
          'really': 2,
          'lava': 2,
          'guy': 2,
          'could': 2,
          'throw': 2,
          'jump': 2,
          'nheres': 2,
          'nif': 2,
          'want': 2,
          'flick': 2,
          'somewhere': 1,
          'reads': 1,
          'book': 1,
          'screenwriting': 1,
          'made': 1,
          'easy': 1,
          'nthis': 1,
          'funny': 1,
          'funnier': 1,
          'totally': 1,
          'ironic': 1,
          'screenwriters': 1,
          'probably': 1,
          'read': 1,
          'outlined': 1,
          'wrote': 1,
          'took': 1,
          'subgenre': 1,
          'pic': 1,
          'hokey': 1,
          'forgot': 1,
          'parts': 1,
          'nyes': 1,
          'poseidon': 1,
          'adventure': 1,
          'crap': 1,
          'got': 1,
          'worst': 1,
          'movies': 1,
          'least': 1,
          'joke': 1,
          'charlton': 1,
          'heston': 1,
          'sleeping': 1,
          'genevieve': 1,
          'bujold': 1,
          'takes': 1,
          'semiintriguing': 1,
          'yet': 1,
          'stupendously': 1,
          'plot': 1,
          'knew': 1,
          'suddenly': 1,
          'errupts': 1,
          'fine': 1,
          'morning': 1,
          'later': 1,
          'stops': 1,
          'dare': 1,
          'say': 1,
          'nl': 1,
          'puts': 1,
          'stereotypical': 1,
          'ntheyre': 1,
          'ones': 1,
          'ntommy': 1,
          'oscar': 1,
          'winner': 1,
          'member': 1,
          'men': 1,
          'black': 1,
          'vote': 1,
          'coolest': 1,
          'movie': 1,
          'summer': 1,
          'nanne': 1,
          'heche': 1,
          'indy': 1,
          'actress': 1,
          'ndon': 1,
          'stole': 1,
          'disappointing': 1,
          'devil': 1,
          'blue': 1,
          'dress': 1,
          'denzels': 1,
          'feet': 1,
          'teenage': 1,
          'nothing': 1,
          'act': 1,
          'scream': 1,
          'whats': 1,
          'going': 1,
          'bless': 1,
          'theyre': 1,
          'lost': 1,
          'fake': 1,
          'gets': 1,
          'hes': 1,
          'ntheres': 1,
          'real': 1,
          'suspense': 1,
          'dont': 1,
          'care': 1,
          'anyone': 1,
          'rooting': 1,
          'character': 1,
          'killed': 1,
          'tommy': 1,
          'wouldnt': 1,
          'keep': 1,
          'saving': 1,
          'thirty': 1,
          'times': 1,
          'l': 1,
          'npart': 1,
          'whatever': 1,
          'nin': 1,
          'independence': 1,
          'day': 1,
          'judd': 1,
          'hirsch': 1,
          'white': 1,
          'house': 1,
          'empire': 1,
          'state': 1,
          'building': 1,
          'blown': 1,
          'aliens': 1,
          'nthat': 1,
          'nwatching': 1,
          'fakelooking': 1,
          'plow': 1,
          'street': 1,
          'nokay': 1,
          'devoid': 1,
          'merit': 1,
          'nas': 1,
          'already': 1,
          'stated': 1,
          'cast': 1,
          'moronic': 1,
          'looks': 1,
          'njohn': 1,
          'carrol': 1,
          'lynch': 1,
          'norm': 1,
          'fargo': 1,
          'subway': 1,
          'car': 1,
          'save': 1,
          'people': 1,
          'comes': 1,
          'surrounds': 1,
          'whos': 1,
          'wounded': 1,
          'make': 1,
          'still': 1,
          'survive': 1,
          'inanely': 1,
          'land': 1,
          'right': 1,
          'middle': 1,
          'melts': 1,
          'somehow': 1,
          'manages': 1,
          'man': 1,
          'safety': 1,
          'legs': 1,
          'melting': 1,
          'ncool': 1,
          'nno': 1,
          'logic': 1,
          'nthe': 1,
          'twice': 1,
          'reason': 1,
          'ends': 1,
          'arent': 1,
          'worried': 1,
          'eruting': 1,
          'home': 1,
          'homes': 1,
          'tell': 1,
          'truth': 1,
          'glad': 1,
          'didnt': 1,
          'hoping': 1,
          'eruption': 1,
          'ended': 1,
          'nmy': 1,
          'painful': 1,
          'sit': 1,
          'little': 1,
          '102': 1,
          'minute': 1,
          'long': 1,
          'havent': 1,
          'seen': 1,
          'dantes': 1,
          'peak': 1,
          'ive': 1,
          'heard': 1,
          'masterpiece': 1,
          'compared': 1,
          'thats': 1,
          'rent': 1,
          'towering': 1,
          'inferno': 1,
          'steve': 1,
          'mcqueen': 1,
          'paul': 1,
          'newman': 1,
          'schweppervescent': 1,
          'j': 1,
          'nsimpson': 1,
          'saves': 1,
          'cat': 1,
          'waste': 1,
          'boring': 1,
          'literally': 1,
          'almost': 1,
          'grossed': 1,
          'half': 1,
          'budget': 1,
          'warned': 1,
          'nneg': 1}),
 Counter({'tribe': 9,
          'krippendorfs': 5,
          'comedy': 5,
          'new': 5,
          'family': 4,
          'effort': 4,
          'film': 4,
          'make': 3,
          'way': 3,
          'miss': 3,
          'professor': 3,
          'krippendorf': 3,
          'discovery': 3,
          'must': 3,
          'overly': 3,
          'history': 3,
          'go': 3,
          'nits': 3,
          'parents': 2,
          'adult': 2,
          'approached': 2,
          'unbalanced': 2,
          'nthe': 2,
          'spent': 2,
          'two': 2,
          'years': 2,
          'key': 2,
          'grant': 2,
          'show': 2,
          'nwith': 2,
          'guinea': 2,
          'finds': 2,
          'lyonne': 2,
          'micelli': 2,
          'etc': 2,
          'sociological': 2,
          'books': 2,
          'lecture': 2,
          'something': 2,
          'structure': 2,
          'thru': 2,
          'highly': 2,
          'real': 2,
          'youve': 2,
          'got': 2,
          'man': 2,
          'meets': 2,
          'one': 2,
          'seems': 2,
          'jungle': 2,
          'merely': 2,
          'yettobereleased': 1,
          'marketed': 1,
          'buyer': 1,
          'beware': 1,
          'nthis': 1,
          'movie': 1,
          'cant': 1,
          'mind': 1,
          'nis': 1,
          'vulgar': 1,
          'references': 1,
          'male': 1,
          'female': 1,
          'bodies': 1,
          'menstruation': 1,
          'circumcision': 1,
          'sex': 1,
          'would': 1,
          'squirm': 1,
          'thought': 1,
          'child': 1,
          'next': 1,
          'immaturity': 1,
          'adolescents': 1,
          'appreciate': 1,
          'neither': 1,
          'word': 1,
          'stamp': 1,
          'hit': 1,
          'premise': 1,
          'catchy': 1,
          'widowed': 1,
          'anthropology': 1,
          'james': 1,
          'richard': 1,
          'dreyfuss': 1,
          'past': 1,
          'getting': 1,
          'death': 1,
          'wife': 1,
          'neglecting': 1,
          'research': 1,
          'squandering': 1,
          'money': 1,
          'personal': 1,
          'living': 1,
          'expenses': 1,
          'nnow': 1,
          'time': 1,
          'hes': 1,
          'achieved': 1,
          'absolutely': 1,
          'nothing': 1,
          'fabricated': 1,
          'tale': 1,
          'studying': 1,
          'previously': 1,
          'undiscovered': 1,
          'petitions': 1,
          'funds': 1,
          'hiding': 1,
          'fact': 1,
          'previous': 1,
          '100': 1,
          '000': 1,
          'trips': 1,
          'mcdonalds': 1,
          'nbut': 1,
          'becomes': 1,
          'latest': 1,
          'craze': 1,
          'among': 1,
          'colleagues': 1,
          'talk': 1,
          'create': 1,
          'aid': 1,
          'three': 1,
          'children': 1,
          'headstrong': 1,
          'teen': 1,
          'shelly': 1,
          'natasha': 1,
          'everyone': 1,
          'says': 1,
          'love': 1,
          'slightly': 1,
          'younger': 1,
          'mickey': 1,
          'gregory': 1,
          'smith': 1,
          'nineyearold': 1,
          'edmund': 1,
          'carl': 1,
          'michael': 1,
          'lindner': 1,
          'shelmikedmu': 1,
          'named': 1,
          'first': 1,
          'half': 1,
          'childs': 1,
          'name': 1,
          'born': 1,
          'videos': 1,
          'quickly': 1,
          'produced': 1,
          'backyard': 1,
          'passed': 1,
          'stunning': 1,
          'documentary': 1,
          'footage': 1,
          'newly': 1,
          'found': 1,
          'ndespite': 1,
          'professors': 1,
          'wishes': 1,
          'buzz': 1,
          'surrounding': 1,
          'grows': 1,
          'due': 1,
          'greatest': 1,
          'part': 1,
          'veronica': 1,
          'jenna': 1,
          'elfman': 1,
          'vivacious': 1,
          'voluptuous': 1,
          'anthropologist': 1,
          'barges': 1,
          'basically': 1,
          'deems': 1,
          'main': 1,
          'assistant': 1,
          'nhungry': 1,
          'recognition': 1,
          'sets': 1,
          'interviews': 1,
          'lectures': 1,
          'biggest': 1,
          'event': 1,
          'sure': 1,
          'fire': 1,
          'nkrippendorf': 1,
          'hand': 1,
          'seeing': 1,
          'jail': 1,
          'cell': 1,
          'corridor': 1,
          'come': 1,
          'impressive': 1,
          'unleash': 1,
          'mating': 1,
          'habits': 1,
          'domestic': 1,
          'fumbling': 1,
          'improvisation': 1,
          'often': 1,
          'quick': 1,
          'thinking': 1,
          'oldest': 1,
          'son': 1,
          'makes': 1,
          'creates': 1,
          'interest': 1,
          'unique': 1,
          'non': 1,
          'opposing': 1,
          'end': 1,
          'arch': 1,
          'rival': 1,
          'ruth': 1,
          'allen': 1,
          'lily': 1,
          'tomlin': 1,
          'arrogant': 1,
          'whose': 1,
          'jealousy': 1,
          'drives': 1,
          'mission': 1,
          'disprove': 1,
          'existance': 1,
          'nonexistent': 1,
          'cute': 1,
          'idea': 1,
          'subtle': 1,
          'mature': 1,
          'style': 1,
          'couldve': 1,
          'winner': 1,
          'nsadly': 1,
          'mostlymisfired': 1,
          'toilet': 1,
          'humor': 1,
          'comical': 1,
          'musical': 1,
          'score': 1,
          'bruce': 1,
          'broughton': 1,
          'sugar': 1,
          'coated': 1,
          'sentiments': 1,
          'ingredients': 1,
          'arent': 1,
          'right': 1,
          'tone': 1,
          'ncut': 1,
          'crap': 1,
          'add': 1,
          'razor': 1,
          'sharp': 1,
          'dialogue': 1,
          'witty': 1,
          'perceptions': 1,
          'good': 1,
          'start': 1,
          'nat': 1,
          'state': 1,
          'along': 1,
          'lines': 1,
          'medicine': 1,
          'mrs': 1,
          'ndoubtfire': 1,
          'dumb': 1,
          'dumber': 1,
          'thats': 1,
          'concoction': 1,
          'anyone': 1,
          'anxious': 1,
          'try': 1,
          'overall': 1,
          'product': 1,
          'forgettable': 1,
          'cup': 1,
          'average': 1,
          'laughoutloud': 1,
          'moments': 1,
          'great': 1,
          'big': 1,
          'gap': 1,
          'nmost': 1,
          'characters': 1,
          'surprisingly': 1,
          'twodimensional': 1,
          'exhibit': 1,
          'acting': 1,
          'greatly': 1,
          'unappreciated': 1,
          'ndirector': 1,
          'todd': 1,
          'holland': 1,
          'gone': 1,
          'making': 1,
          'wrong': 1,
          'ways': 1,
          'stuck': 1,
          'limbo': 1,
          'disney': 1,
          'fare': 1,
          '2': 1,
          'potentially': 1,
          'hilarious': 1,
          'fish': 1,
          'called': 1,
          'wanda': 1,
          'really': 1,
          'knocks': 1,
          'grade': 1,
          'brutal': 1,
          'drop': 1,
          'na': 1,
          'strong': 1,
          'warning': 1,
          'forget': 1,
          'impression': 1,
          'given': 1,
          'advertisements': 1,
          'want': 1,
          'take': 1,
          'kids': 1,
          'woman': 1,
          'asking': 1,
          'attractive': 1,
          'shes': 1,
          'holding': 1,
          'penis': 1,
          'nyes': 1,
          'put': 1,
          'bluntly': 1,
          'njust': 1,
          'warned': 1,
          'example': 1,
          'many': 1,
          'shocking': 1,
          'subjects': 1,
          'brought': 1,
          'others': 1,
          'might': 1,
          'tame': 1,
          'nneg': 1}),
 Counter({'mission': 9,
          'mars': 8,
          'space': 6,
          'nthe': 4,
          'de': 3,
          'palma': 3,
          'would': 3,
          'nafter': 3,
          'astronauts': 3,
          'luc': 3,
          'team': 3,
          'final': 3,
          'still': 2,
          'movie': 2,
          'digital': 2,
          'somehow': 2,
          'drama': 2,
          'nbut': 2,
          'one': 2,
          'sequence': 2,
          'colossal': 2,
          'takes': 2,
          'back': 2,
          'visual': 2,
          'nof': 2,
          'course': 2,
          'impossible': 2,
          'pull': 2,
          'although': 2,
          'snake': 2,
          'eyes': 2,
          'want': 2,
          'may': 2,
          'words': 2,
          'wouldnt': 2,
          'nsinise': 2,
          'wonderful': 2,
          'sure': 2,
          'nasa': 2,
          'mcconnell': 2,
          'wife': 2,
          'planet': 2,
          'probably': 2,
          'sand': 2,
          'tornado': 2,
          'robbins': 2,
          'nielsen': 2,
          'oconnell': 2,
          'secret': 2,
          'trip': 2,
          'months': 2,
          'quite': 2,
          'good': 2,
          'scenes': 2,
          'even': 2,
          'well': 2,
          'couple': 2,
          'hours': 1,
          'since': 1,
          'returned': 1,
          'much': 1,
          'anticipated': 1,
          'scifi': 1,
          'opus': 1,
          'detect': 1,
          'reek': 1,
          'moldy': 1,
          'cheddar': 1,
          'nwhy': 1,
          'shoddy': 1,
          'cheesefest': 1,
          'full': 1,
          'eye': 1,
          'candy': 1,
          'stapled': 1,
          'carelessly': 1,
          'onto': 1,
          'flimsy': 1,
          'screenplay': 1,
          'manages': 1,
          'leapfrog': 1,
          'great': 1,
          'promise': 1,
          'opera': 1,
          'instead': 1,
          'shooting': 1,
          'angle': 1,
          'feelgood': 1,
          'science': 1,
          'fiction': 1,
          'akin': 1,
          '2001': 1,
          'odyssey': 1,
          'ni': 1,
          'got': 1,
          'feeling': 1,
          'fellow': 1,
          'moviegoing': 1,
          'patrons': 1,
          'expecting': 1,
          'another': 1,
          'armageddon': 1,
          'certainly': 1,
          'isnt': 1,
          'large': 1,
          'action': 1,
          'disaster': 1,
          'nthis': 1,
          'supposedly': 1,
          'thoughtful': 1,
          'familyfriendly': 1,
          'flick': 1,
          'apocalyptic': 1,
          'excitement': 1,
          'seat': 1,
          'elegance': 1,
          'uplifting': 1,
          'drivel': 1,
          'nyou': 1,
          'warned': 1,
          'crafting': 1,
          'tightly': 1,
          'claustrophobic': 1,
          'see': 1,
          'apollo': 1,
          '13': 1,
          'excellent': 1,
          'example': 1,
          'directors': 1,
          'possess': 1,
          'skill': 1,
          'craftsmanship': 1,
          'without': 1,
          'seriously': 1,
          'scarring': 1,
          'reputation': 1,
          'nbrian': 1,
          'enough': 1,
          'directorial': 1,
          'expertise': 1,
          'wizardry': 1,
          'sleeve': 1,
          'nwhen': 1,
          'gets': 1,
          'hands': 1,
          'intelligent': 1,
          'systematically': 1,
          'practical': 1,
          'script': 1,
          'like': 1,
          'untouchables': 1,
          'director': 1,
          'ability': 1,
          'create': 1,
          'sound': 1,
          'technical': 1,
          'achievement': 1,
          'overly': 1,
          'indulgent': 1,
          'style': 1,
          'becomes': 1,
          'bothersome': 1,
          'occasionally': 1,
          'theres': 1,
          'also': 1,
          'inexcusable': 1,
          'string': 1,
          'crap': 1,
          'carried': 1,
          'name': 1,
          'including': 1,
          'notorious': 1,
          'bomb': 1,
          'bonfire': 1,
          'vanities': 1,
          'nall': 1,
          'makes': 1,
          'call': 1,
          'talented': 1,
          'hack': 1,
          'hollywood': 1,
          'nthat': 1,
          'term': 1,
          'harsh': 1,
          'judging': 1,
          'solely': 1,
          'perpetual': 1,
          'waste': 1,
          'talent': 1,
          'choice': 1,
          'slightly': 1,
          'less': 1,
          'lenient': 1,
          'nif': 1,
          'gary': 1,
          'sinise': 1,
          'touch': 1,
          '10foot': 1,
          'pole': 1,
          'actor': 1,
          'appearing': 1,
          'vomitinducing': 1,
          'sham': 1,
          'im': 1,
          'risk': 1,
          'embarrassment': 1,
          'third': 1,
          'collaboration': 1,
          'academy': 1,
          'awardwinner': 1,
          'plays': 1,
          'astronaut': 1,
          'jim': 1,
          'man': 1,
          'recently': 1,
          'lost': 1,
          'kim': 1,
          'delaney': 1,
          'apparently': 1,
          'psychologically': 1,
          'unfit': 1,
          'upcoming': 1,
          'shuttle': 1,
          'oops': 1,
          'forgot': 1,
          'mention': 1,
          'year': 1,
          '2020': 1,
          'barbecue': 1,
          'gettogether': 1,
          'cut': 1,
          'goddard': 1,
          'cheadle': 1,
          'already': 1,
          'taking': 1,
          'measurements': 1,
          'calculations': 1,
          'red': 1,
          'nsuddenly': 1,
          'towering': 1,
          'formation': 1,
          'rocks': 1,
          'soil': 1,
          'best': 1,
          'dubbed': 1,
          'appears': 1,
          'creates': 1,
          'whirlwind': 1,
          'suction': 1,
          'nfor': 1,
          'reason': 1,
          'stand': 1,
          'calmly': 1,
          'admire': 1,
          'lovely': 1,
          'piece': 1,
          'art': 1,
          'killed': 1,
          'within': 1,
          'seconds': 1,
          'expect': 1,
          'able': 1,
          'send': 1,
          'transmission': 1,
          'alive': 1,
          'nimmediately': 1,
          'second': 1,
          'consisting': 1,
          'husband': 1,
          'woody': 1,
          'terri': 1,
          'blake': 1,
          'tim': 1,
          'connie': 1,
          'phil': 1,
          'ohlmyer': 1,
          'jerry': 1,
          'dispatched': 1,
          'rescue': 1,
          'discover': 1,
          'mysterious': 1,
          'nlets': 1,
          'put': 1,
          'hold': 1,
          'discuss': 1,
          'nit': 1,
          'explained': 1,
          'whether': 1,
          'scientifically': 1,
          'accurate': 1,
          'roughly': 1,
          'six': 1,
          'nim': 1,
          'quartet': 1,
          'screenwriters': 1,
          'behind': 1,
          'm2m': 1,
          'didnt': 1,
          'capitalize': 1,
          'juicy': 1,
          'opportunity': 1,
          'creating': 1,
          'tension': 1,
          'claustrophobia': 1,
          'ninstead': 1,
          'join': 1,
          'days': 1,
          'aboard': 1,
          'ship': 1,
          'nwhat': 1,
          'happened': 1,
          'five': 1,
          'prior': 1,
          'ndid': 1,
          'play': 1,
          'cards': 1,
          'tell': 1,
          'dirty': 1,
          'jokes': 1,
          'nstill': 1,
          'nicely': 1,
          'tense': 1,
          'moments': 1,
          'maybe': 1,
          'timeframe': 1,
          'involving': 1,
          'fuel': 1,
          'leak': 1,
          'ndepalmas': 1,
          'direction': 1,
          'score': 1,
          'ennio': 1,
          'morricone': 1,
          'largely': 1,
          'inconsistent': 1,
          'organ': 1,
          'music': 1,
          'ncmon': 1,
          'ntheres': 1,
          'imaginative': 1,
          'ideas': 1,
          'landslide': 1,
          'cheese': 1,
          'sad': 1,
          'realization': 1,
          'causes': 1,
          'sigh': 1,
          'loud': 1,
          'nits': 1,
          'bummer': 1,
          'poorly': 1,
          'assembled': 1,
          'laughably': 1,
          'written': 1,
          'dubious': 1,
          'supremely': 1,
          'silly': 1,
          'finale': 1,
          'satisfy': 1,
          'dedicated': 1,
          'optimists': 1,
          'nas': 1,
          'mentioned': 1,
          'anyone': 1,
          'looking': 1,
          'disastermovie': 1,
          'carnage': 1,
          'going': 1,
          'feel': 1,
          'savagely': 1,
          'disappointed': 1,
          'nmaybe': 1,
          'cheated': 1,
          'unbelievably': 1,
          'hokey': 1,
          'shot': 1,
          'end': 1,
          'adding': 1,
          'insult': 1,
          'injury': 1,
          'audience': 1,
          'members': 1,
          'made': 1,
          'effort': 1,
          'boo': 1,
          'hiss': 1,
          'screen': 1,
          'nothers': 1,
          'muttered': 1,
          'obscenities': 1,
          'shaking': 1,
          'heads': 1,
          'disbelief': 1,
          'mumbling': 1,
          'jeez': 1,
          'sucked': 1,
          'nokay': 1,
          'suck': 1,
          'show': 1,
          'actors': 1,
          'sympathetic': 1,
          'mercy': 1,
          'pretty': 1,
          'sincere': 1,
          'effective': 1,
          'many': 1,
          'wholeheartedly': 1,
          'convince': 1,
          'loving': 1,
          'funnyman': 1,
          'lines': 1,
          'actually': 1,
          'amusing': 1,
          'intentionally': 1,
          'effects': 1,
          'accompanying': 1,
          'impressive': 1,
          'nso': 1,
          'golly': 1,
          'go': 1,
          'wrong': 1,
          'nlooking': 1,
          'appalling': 1,
          'experience': 1,
          'say': 1,
          'practically': 1,
          'every': 1,
          'conduit': 1,
          'crevasse': 1,
          'could': 1,
          'nwhile': 1,
          'watching': 1,
          'suggestion': 1,
          'immediately': 1,
          'abort': 1,
          'better': 1,
          'yet': 1,
          'dont': 1,
          'strap': 1,
          'liftoff': 1,
          'nneg': 1}),
 Counter({'alien': 13,
          'species': 6,
          'patrick': 6,
          'original': 5,
          'effects': 4,
          'time': 4,
          'nthe': 4,
          'one': 3,
          'back': 3,
          'sil': 3,
          'laura': 3,
          'eve': 3,
          'hes': 3,
          'also': 3,
          'nbut': 3,
          'medak': 3,
          'best': 3,
          'visual': 2,
          'big': 2,
          'writing': 2,
          'performances': 2,
          'nso': 2,
          'sequels': 2,
          'yet': 2,
          'nit': 2,
          'ii': 2,
          'something': 2,
          'door': 2,
          'left': 2,
          'open': 2,
          'quite': 2,
          'earth': 2,
          'body': 2,
          'im': 2,
          'installment': 2,
          'crew': 2,
          'returning': 2,
          'within': 2,
          'deadly': 2,
          'dna': 2,
          'lazard': 2,
          'created': 2,
          'films': 2,
          'like': 2,
          'sex': 2,
          'find': 2,
          'henstridge': 2,
          'another': 2,
          'presence': 2,
          'press': 2,
          'madsen': 2,
          'patricks': 2,
          'character': 2,
          'first': 2,
          'awful': 2,
          'director': 2,
          'brancato': 2,
          'already': 2,
          'much': 2,
          'originals': 2,
          'tongue': 2,
          'na': 2,
          'large': 2,
          'nat': 2,
          'shes': 2,
          'whitaker': 2,
          'featured': 2,
          'takes': 2,
          'film': 2,
          'rest': 2,
          'problem': 2,
          'worst': 2,
          'effort': 2,
          'despite': 1,
          'exceedingly': 1,
          'welldone': 1,
          '1995s': 1,
          'hunk': 1,
          'scifi': 1,
          'cheese': 1,
          'feeble': 1,
          'coming': 1,
          'bgrade': 1,
          'roots': 1,
          'stunning': 1,
          'ineptitude': 1,
          'terribly': 1,
          'surprising': 1,
          'would': 1,
          'difficult': 1,
          'people': 1,
          'behind': 1,
          'top': 1,
          'hokey': 1,
          'somehow': 1,
          'managed': 1,
          'fabricate': 1,
          'bad': 1,
          'even': 1,
          'worse': 1,
          'nsomething': 1,
          'clearly': 1,
          'amiss': 1,
          'sequel': 1,
          'speciesa': 1,
          'sewer': 1,
          'rat': 1,
          'becomes': 1,
          'eating': 1,
          'part': 1,
          'exploded': 1,
          'alienhuman': 1,
          'hybrid': 1,
          'silis': 1,
          'never': 1,
          'entered': 1,
          'perhaps': 1,
          'iiithough': 1,
          'giving': 1,
          'away': 1,
          'anything': 1,
          'say': 1,
          'fun': 1,
          'games': 1,
          'begin': 1,
          'threeperson': 1,
          'astronaut': 1,
          'mars': 1,
          'inadvertently': 1,
          'carries': 1,
          'soil': 1,
          'samples': 1,
          'eventually': 1,
          'infects': 1,
          'mission': 1,
          'captain': 1,
          'ross': 1,
          'justin': 1,
          'late': 1,
          'cbss': 1,
          'shortlived': 1,
          'soap': 1,
          'years': 1,
          'central': 1,
          'park': 1,
          'westcpw': 1,
          'nthis': 1,
          'identical': 1,
          'close': 1,
          'enough': 1,
          'upon': 1,
          'arrival': 1,
          'mating': 1,
          'crazy': 1,
          'engaging': 1,
          'bloody': 1,
          'every': 1,
          'woman': 1,
          'nmeanwhile': 1,
          'scientist': 1,
          'dr': 1,
          'baker': 1,
          'marg': 1,
          'helgenberger': 1,
          'clone': 1,
          'named': 1,
          'natasha': 1,
          'research': 1,
          'purposes': 1,
          'doesnt': 1,
          'take': 1,
          'long': 1,
          'sense': 1,
          'send': 1,
          'libido': 1,
          'hyperdrive': 1,
          'nits': 1,
          'former': 1,
          'partner': 1,
          'bounty': 1,
          'hunter': 1,
          'lennox': 1,
          'michael': 1,
          'returnee': 1,
          'uninfected': 1,
          'shipmate': 1,
          'dennis': 1,
          'gamble': 1,
          'mykelti': 1,
          'williamson': 1,
          'inheat': 1,
          'n': 1,
          'isnt': 1,
          'xfiles': 1,
          'goddammit': 1,
          'nexclaims': 1,
          'early': 1,
          'going': 1,
          'nin': 1,
          'terms': 1,
          'quality': 1,
          'absolutely': 1,
          'right': 1,
          'wrong': 1,
          'new': 1,
          'appears': 1,
          'otherworldly': 1,
          'oozing': 1,
          'sludge': 1,
          'causes': 1,
          'pupils': 1,
          'dilate': 1,
          'infected': 1,
          'nlooks': 1,
          'sounds': 1,
          'lot': 1,
          'xfiless': 1,
          'black': 1,
          'cancer': 1,
          'thats': 1,
          'source': 1,
          'peter': 1,
          'writer': 1,
          'chris': 1,
          'steal': 1,
          'nspecies': 1,
          'ripoff': 1,
          'makes': 1,
          'cribbing': 1,
          'blatant': 1,
          'roger': 1,
          'donaldson': 1,
          'nhuman': 1,
          'given': 1,
          'form': 1,
          'closely': 1,
          'resembles': 1,
          'eves': 1,
          'ironically': 1,
          'designed': 1,
          'designer': 1,
          'h': 1,
          'r': 1,
          'giger': 1,
          'hive': 1,
          'heros': 1,
          'douse': 1,
          'substance': 1,
          'fired': 1,
          'guns': 1,
          'naliens': 1,
          'sans': 1,
          'flamethrowers': 1,
          'far': 1,
          'thing': 1,
          'steve': 1,
          'johnsons': 1,
          'xfx': 1,
          'inc': 1,
          'keeps': 1,
          'highquality': 1,
          'tradition': 1,
          'alive': 1,
          'cheaplooking': 1,
          'lost': 1,
          'space': 1,
          'cgi': 1,
          'nafter': 1,
          'asset': 1,
          'fresh': 1,
          'nhowever': 1,
          'idea': 1,
          'exactly': 1,
          'point': 1,
          'called': 1,
          'play': 1,
          'empath': 1,
          'la': 1,
          'forest': 1,
          'duration': 1,
          'holed': 1,
          'glass': 1,
          'cell': 1,
          'nby': 1,
          'breakout': 1,
          'prominently': 1,
          'trailer': 1,
          'actually': 1,
          'place': 1,
          'well': 1,
          'home': 1,
          'stretch': 1,
          'treated': 1,
          'played': 1,
          'little': 1,
          'zest': 1,
          'none': 1,
          'horny': 1,
          'innocentatheart': 1,
          'sympathetic': 1,
          'comes': 1,
          'cocky': 1,
          'pretty': 1,
          'boy': 1,
          'control': 1,
          'cast': 1,
          'fails': 1,
          'add': 1,
          'faulted': 1,
          'nhelgenberger': 1,
          'go': 1,
          'motions': 1,
          'hampered': 1,
          'clich': 1,
          'development': 1,
          'somewhere': 1,
          'two': 1,
          'oncelinked': 1,
          'stopped': 1,
          'getting': 1,
          'along': 1,
          'nwilliamson': 1,
          'suffers': 1,
          'indignity': 1,
          'nhe': 1,
          'tries': 1,
          'enliven': 1,
          'token': 1,
          'africanamerican': 1,
          'role': 1,
          'anyone': 1,
          'recite': 1,
          'insulting': 1,
          'derivative': 1,
          'lines': 1,
          'gon': 1,
          'get': 1,
          'african': 1,
          'someones': 1,
          'ass': 1,
          'appear': 1,
          'ridiculous': 1,
          'iis': 1,
          'crime': 1,
          'thoroughly': 1,
          'uninteresting': 1,
          'piece': 1,
          'work': 1,
          'least': 1,
          'plenty': 1,
          'laugh': 1,
          'atunaccountably': 1,
          'otherwise': 1,
          'fine': 1,
          'actors': 1,
          'ben': 1,
          'kingsley': 1,
          'sight': 1,
          'helgenbergers': 1,
          'performing': 1,
          'fellatio': 1,
          'madsens': 1,
          'start': 1,
          'filmmakers': 1,
          'display': 1,
          'discernable': 1,
          'let': 1,
          'alone': 1,
          'misguided': 1,
          'required': 1,
          'reach': 1,
          'camp': 1,
          'level': 1,
          'nfor': 1,
          'blood': 1,
          'gore': 1,
          'nudity': 1,
          'thrown': 1,
          'simply': 1,
          'vapid': 1,
          'bore': 1,
          'nneg': 1}),
 Counter({'franciss': 8,
          'francis': 7,
          'movie': 6,
          'george': 5,
          'nthe': 4,
          'director': 3,
          'love': 3,
          'devil': 3,
          'nas': 3,
          'film': 3,
          'man': 3,
          'sex': 3,
          'nhe': 3,
          'n': 3,
          'marvelous': 2,
          'jacobi': 2,
          'tries': 2,
          'vain': 2,
          'never': 2,
          'nwhen': 2,
          'style': 2,
          'sound': 2,
          'camera': 2,
          'shots': 2,
          'heavy': 2,
          'filmed': 2,
          'much': 2,
          'interested': 2,
          'bed': 2,
          'bloody': 2,
          'complete': 2,
          'nwe': 2,
          'learn': 2,
          'little': 2,
          'nfranciss': 2,
          'sadomasochism': 2,
          'boxing': 2,
          'head': 2,
          'audience': 2,
          'one': 2,
          'optimistic': 2,
          'british': 1,
          'actor': 1,
          'derek': 1,
          'stars': 1,
          'writer': 1,
          'john': 1,
          'mayburys': 1,
          'popular': 1,
          'modern': 1,
          'artist': 1,
          'bacon': 1,
          'always': 1,
          'jacobis': 1,
          'acting': 1,
          'impeccable': 1,
          'hard': 1,
          'succeeds': 1,
          'unentertaining': 1,
          'opaque': 1,
          'convincingly': 1,
          'argues': 1,
          'played': 1,
          'completely': 1,
          'despicable': 1,
          'individual': 1,
          'provides': 1,
          'insight': 1,
          'work': 1,
          'motivation': 1,
          'attitude': 1,
          'interviewed': 1,
          'fawning': 1,
          'talk': 1,
          'show': 1,
          'host': 1,
          'calls': 1,
          'chance': 1,
          'brushstrokes': 1,
          'nstarting': 1,
          'burglary': 1,
          'flat': 1,
          'uses': 1,
          'loud': 1,
          'effects': 1,
          'like': 1,
          'lifted': 1,
          'cheap': 1,
          'horror': 1,
          'avantgarde': 1,
          'angles': 1,
          'lots': 1,
          'wideangle': 1,
          'closeups': 1,
          'distorted': 1,
          'coloredglass': 1,
          'reflections': 1,
          'filmmaking': 1,
          'substance': 1,
          'story': 1,
          'result': 1,
          'sterile': 1,
          'examination': 1,
          'lonely': 1,
          'ndaniel': 1,
          'craig': 1,
          'lifeless': 1,
          'performance': 1,
          'plays': 1,
          'burglar': 1,
          'boxer': 1,
          'dyer': 1,
          'lays': 1,
          'eyes': 1,
          'breakin': 1,
          'promises': 1,
          'call': 1,
          'police': 1,
          'hell': 1,
          'stay': 1,
          'stays': 1,
          'entire': 1,
          'respects': 1,
          'shares': 1,
          'thinks': 1,
          'paintings': 1,
          'use': 1,
          'presents': 1,
          'counterargument': 1,
          'nwriter': 1,
          'maybury': 1,
          'barely': 1,
          'outlines': 1,
          'character': 1,
          'rest': 1,
          'supporting': 1,
          'cast': 1,
          'remain': 1,
          'enigma': 1,
          'reason': 1,
          'liking': 1,
          'georges': 1,
          'amorality': 1,
          'innocence': 1,
          'shown': 1,
          'early': 1,
          'often': 1,
          'aperitif': 1,
          'reflects': 1,
          'way': 1,
          'watch': 1,
          'match': 1,
          'fighters': 1,
          'sliced': 1,
          'open': 1,
          'blow': 1,
          'cuts': 1,
          'gleeful': 1,
          'whose': 1,
          'soaked': 1,
          'flying': 1,
          'blood': 1,
          'nfrancis': 1,
          'appears': 1,
          'ecstasy': 1,
          'nanother': 1,
          'favorite': 1,
          'activities': 1,
          'viewing': 1,
          'old': 1,
          'movies': 1,
          'atrocities': 1,
          'carnage': 1,
          'mounts': 1,
          'witness': 1,
          'orgasmically': 1,
          'happy': 1,
          'nin': 1,
          'obsessively': 1,
          'shock': 1,
          'dream': 1,
          'sequence': 1,
          'portrays': 1,
          'family': 1,
          'car': 1,
          'accident': 1,
          'mind': 1,
          'slowly': 1,
          'examines': 1,
          'every': 1,
          'limb': 1,
          'mother': 1,
          'father': 1,
          'boy': 1,
          'nsometimes': 1,
          'script': 1,
          'throws': 1,
          'us': 1,
          'tidbits': 1,
          'wisdom': 1,
          'illuminate': 1,
          'merely': 1,
          'sounding': 1,
          'insightful': 1,
          'im': 1,
          'nature': 1,
          'nim': 1,
          'nothing': 1,
          'loneliness': 1,
          'true': 1,
          'companion': 1,
          'details': 1,
          'makeup': 1,
          'techniques': 1,
          'prefers': 1,
          'shoe': 1,
          'polish': 1,
          'hair': 1,
          'sink': 1,
          'cleaning': 1,
          'powder': 1,
          'teeth': 1,
          'nfull': 1,
          'metaphorical': 1,
          'interpretations': 1,
          'films': 1,
          'best': 1,
          'scene': 1,
          'occurs': 1,
          'late': 1,
          'night': 1,
          'get': 1,
          'go': 1,
          'bathroom': 1,
          'nmistaking': 1,
          'picture': 1,
          'toilet': 1,
          'genuine': 1,
          'article': 1,
          'urinates': 1,
          'crawls': 1,
          'back': 1,
          'contentedly': 1,
          'nlike': 1,
          'parody': 1,
          'bad': 1,
          'art': 1,
          'house': 1,
          'horrid': 1,
          'characters': 1,
          'bizarrely': 1,
          'confusingly': 1,
          'technique': 1,
          'storytelling': 1,
          'nby': 1,
          'end': 1,
          'hasnt': 1,
          'learned': 1,
          'could': 1,
          'threeminute': 1,
          'sketch': 1,
          'nlove': 1,
          'runs': 1,
          '1': 1,
          '30': 1,
          'rated': 1,
          'considered': 1,
          'nc17': 1,
          'violence': 1,
          'profanity': 1,
          'graphic': 1,
          'nudity': 1,
          'unacceptable': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'payback': 5,
          'gibson': 3,
          'get': 3,
          'every': 3,
          'would': 3,
          'like': 3,
          '1997s': 2,
          'takes': 2,
          'one': 2,
          'movie': 2,
          'violence': 2,
          'death': 2,
          'away': 2,
          'anyone': 2,
          'porter': 2,
          'back': 2,
          'dead': 2,
          'root': 2,
          'bad': 2,
          'guy': 2,
          'sure': 2,
          'character': 2,
          'appears': 2,
          'way': 2,
          'time': 2,
          'made': 2,
          'characters': 2,
          'didnt': 2,
          'stand': 2,
          'plays': 2,
          'since': 2,
          'role': 2,
          'least': 2,
          'took': 2,
          'part': 2,
          'film': 2,
          'though': 2,
          'even': 2,
          'could': 2,
          'brian': 1,
          'helgelands': 1,
          'inauspicious': 1,
          'directing': 1,
          'debut': 1,
          'coincidentally': 1,
          'previously': 1,
          'penned': 1,
          'awardwinning': 1,
          'screenplay': 1,
          'l': 1,
          'confidential': 1,
          'wildly': 1,
          'uneven': 1,
          'thoroughly': 1,
          'unpleasant': 1,
          'revenge': 1,
          'thriller': 1,
          'ideaa': 1,
          'nonstop': 1,
          'villainsand': 1,
          'runs': 1,
          'say': 1,
          'barely': 1,
          'manages': 1,
          'crawl': 1,
          'nmel': 1,
          'yet': 1,
          'another': 1,
          'disappointing': 1,
          'picture': 1,
          'conspiracy': 1,
          'theory': 1,
          'lethal': 1,
          'weapon': 1,
          '4': 1,
          'stars': 1,
          'reprehensible': 1,
          'villainhero': 1,
          'man': 1,
          'becomes': 1,
          'determined': 1,
          '50': 1,
          'share': 1,
          '140': 1,
          '000': 1,
          'stole': 1,
          'robbery': 1,
          'partnerincrime': 1,
          'gregg': 1,
          'henry': 1,
          'drugaddicted': 1,
          'wife': 1,
          'deborah': 1,
          'kara': 1,
          'unger': 1,
          'doublecross': 1,
          'shoot': 1,
          'leave': 1,
          'nporter': 1,
          'howevernot': 1,
          'long': 1,
          'shotas': 1,
          'quickly': 1,
          'rehabilitates': 1,
          'along': 1,
          'loyal': 1,
          'prositute': 1,
          'girlfriend': 1,
          'rosie': 1,
          'maria': 1,
          'bello': 1,
          'sets': 1,
          'make': 1,
          'everyone': 1,
          'involved': 1,
          'scam': 1,
          'pay': 1,
          'nthe': 1,
          'tagline': 1,
          'ready': 1,
          'enough': 1,
          'true': 1,
          'pretty': 1,
          'much': 1,
          'significant': 1,
          'crooked': 1,
          'ni': 1,
          'wouldnt': 1,
          'problem': 1,
          'offbeat': 1,
          'detail': 1,
          'painfully': 1,
          'thin': 1,
          'story': 1,
          'interest': 1,
          'wasnt': 1,
          'therefore': 1,
          'found': 1,
          'especially': 1,
          'laborious': 1,
          'investing': 1,
          'wide': 1,
          'array': 1,
          'absolutely': 1,
          'redeeming': 1,
          'qualities': 1,
          'whatsoever': 1,
          'nno': 1,
          'attempt': 1,
          'flesh': 1,
          'roles': 1,
          'threedimensional': 1,
          'vacant': 1,
          'signs': 1,
          'sort': 1,
          'humanity': 1,
          'njust': 1,
          'protagonist': 1,
          'played': 1,
          'mel': 1,
          'doesnt': 1,
          'mean': 1,
          'nquite': 1,
          'contrary': 1,
          'person': 1,
          'deserved': 1,
          'die': 1,
          'gory': 1,
          'although': 1,
          'anyway': 1,
          'spice': 1,
          'dull': 1,
          'proceedings': 1,
          'nsince': 1,
          'none': 1,
          'respectable': 1,
          'actors': 1,
          'actually': 1,
          'human': 1,
          'beings': 1,
          'play': 1,
          'performance': 1,
          'managed': 1,
          'nlucy': 1,
          'alexis': 1,
          'liu': 1,
          'v': 1,
          'ally': 1,
          'mcbeal': 1,
          'spicy': 1,
          'sm': 1,
          'dominatrix': 1,
          'brightens': 1,
          'scene': 1,
          'definite': 1,
          'flair': 1,
          'comedy': 1,
          'something': 1,
          'liked': 1,
          'seen': 1,
          'humor': 1,
          'fell': 1,
          'resounding': 1,
          'splat': 1,
          'nmeanwhile': 1,
          'perfectly': 1,
          'fine': 1,
          'sleepwalks': 1,
          'bit': 1,
          'challenging': 1,
          'nunger': 1,
          'impression': 1,
          'game': 1,
          'surprisingly': 1,
          'wasted': 1,
          'difficult': 1,
          'see': 1,
          'disappears': 1,
          'ten': 1,
          'minutes': 1,
          'two': 1,
          'purproses': 1,
          '1': 1,
          'high': 1,
          'heroin': 1,
          '2': 1,
          'key': 1,
          'early': 1,
          'flashback': 1,
          'nfinally': 1,
          'kris': 1,
          'kristofferson': 1,
          'throwaway': 1,
          'climax': 1,
          'unnecessary': 1,
          'plot': 1,
          'development': 1,
          'sticks': 1,
          'sore': 1,
          'thumb': 1,
          'tellingly': 1,
          'appear': 1,
          'original': 1,
          'cut': 1,
          'cast': 1,
          'extensive': 1,
          'reshoots': 1,
          'place': 1,
          'months': 1,
          'later': 1,
          'nlike': 1,
          'action': 1,
          'movies': 1,
          'star': 1,
          'often': 1,
          'licking': 1,
          'keeps': 1,
          'ticking': 1,
          'nin': 1,
          'course': 1,
          '102minute': 1,
          'running': 1,
          'shot': 1,
          'three': 1,
          'times': 1,
          'hit': 1,
          'van': 1,
          'beaten': 1,
          'feet': 1,
          'smashed': 1,
          'sledgehammer': 1,
          'nand': 1,
          'guess': 1,
          'nnot': 1,
          'survive': 1,
          'whole': 1,
          'ordeal': 1,
          'happygolucky': 1,
          'penultimate': 1,
          'sequence': 1,
          'still': 1,
          'walk': 1,
          'neven': 1,
          'looks': 1,
          'recently': 1,
          'substituted': 1,
          'punching': 1,
          'bag': 1,
          'n': 1,
          'entertaining': 1,
          'makers': 1,
          'hoped': 1,
          'graphic': 1,
          'carnage': 1,
          'goes': 1,
          'take': 1,
          'basically': 1,
          'left': 1,
          'blank': 1,
          'screen': 1,
          'nperhaps': 1,
          'director': 1,
          'helgeland': 1,
          'smart': 1,
          'consider': 1,
          'added': 1,
          'worthwhile': 1,
          'elements': 1,
          'fresh': 1,
          'storyline': 1,
          'remotely': 1,
          'around': 1,
          'hours': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'nthe': 7,
          'g': 7,
          'film': 7,
          'dont': 6,
          'people': 6,
          'like': 6,
          'feel': 5,
          'first': 5,
          'even': 5,
          'man': 5,
          'one': 4,
          'good': 4,
          'holy': 4,
          'plot': 3,
          'sales': 3,
          'ricky': 3,
          'work': 3,
          'murphy': 3,
          'makes': 3,
          'make': 3,
          'problem': 3,
          'theyve': 3,
          'bought': 3,
          'humor': 3,
          'theyre': 3,
          'something': 2,
          'must': 2,
          'goldblum': 2,
          'producer': 2,
          'home': 2,
          'new': 2,
          'boss': 2,
          'loggia': 2,
          'rickys': 2,
          'flat': 2,
          'problems': 2,
          'kate': 2,
          'preston': 2,
          'brought': 2,
          'great': 2,
          'eddie': 2,
          'simple': 2,
          'key': 2,
          'nsure': 2,
          'might': 2,
          'believe': 2,
          'allows': 2,
          'nbut': 2,
          'time': 2,
          'thing': 2,
          'move': 2,
          'place': 2,
          'nyou': 2,
          'seriously': 2,
          'never': 2,
          'think': 2,
          'comedy': 2,
          'n': 2,
          'script': 2,
          'actors': 2,
          'three': 2,
          'entire': 2,
          'nas': 2,
          'njust': 2,
          'surely': 2,
          'look': 2,
          'half': 2,
          'hour': 2,
          'pr': 2,
          'bad': 1,
          'ni': 1,
          'sitting': 1,
          'sheer': 1,
          'punishment': 1,
          'nheres': 1,
          'nricky': 1,
          'jeff': 1,
          'goodbuy': 1,
          'network': 1,
          '24hour': 1,
          'shopping': 1,
          'channels': 1,
          'robert': 1,
          'plans': 1,
          'behind': 1,
          'doesnt': 1,
          'turn': 1,
          'previous': 1,
          'months': 1,
          'numbers': 1,
          'around': 1,
          'add': 1,
          'also': 1,
          'kelly': 1,
          'ivy': 1,
          'league': 1,
          'wunderkind': 1,
          'nkate': 1,
          'get': 1,
          'along': 1,
          'ideas': 1,
          'meet': 1,
          'spiritualist': 1,
          'sees': 1,
          'positive': 1,
          'everything': 1,
          'nhis': 1,
          'soothing': 1,
          'voice': 1,
          'logic': 1,
          'quality': 1,
          'gbn': 1,
          'television': 1,
          'star': 1,
          'networks': 1,
          'success': 1,
          'flaw': 1,
          'told': 1,
          'guilty': 1,
          'buying': 1,
          'impulse': 1,
          'item': 1,
          'matter': 1,
          'wealthy': 1,
          'ill': 1,
          'talks': 1,
          'talk': 1,
          'hey': 1,
          'thats': 1,
          'nwhy': 1,
          'skyrocket': 1,
          'camera': 1,
          'nfar': 1,
          'trying': 1,
          'sell': 1,
          'product': 1,
          'instead': 1,
          'blathers': 1,
          'need': 1,
          'nsomeone': 1,
          'please': 1,
          'tell': 1,
          'supposed': 1,
          'merchandise': 1,
          'say': 1,
          'come': 1,
          'back': 1,
          'due': 1,
          'fact': 1,
          'round': 1,
          'inexplicable': 1,
          'im': 1,
          'convinced': 1,
          'filmmakers': 1,
          'mind': 1,
          'whole': 1,
          'therefore': 1,
          'undermined': 1,
          'point': 1,
          'credible': 1,
          'nanother': 1,
          'know': 1,
          'see': 1,
          'unreasonable': 1,
          'expect': 1,
          'nwhoa': 1,
          'partner': 1,
          'surprise': 1,
          'nholy': 1,
          'funny': 1,
          'nmurphy': 1,
          'asset': 1,
          'youd': 1,
          'remember': 1,
          'last': 1,
          'minute': 1,
          'save': 1,
          'best': 1,
          'defense': 1,
          'maybe': 1,
          'reigned': 1,
          'gives': 1,
          'almost': 1,
          'nothing': 1,
          'seems': 1,
          'though': 1,
          'director': 1,
          'stephen': 1,
          'herek': 1,
          'kept': 1,
          'toned': 1,
          'wouldnt': 1,
          'left': 1,
          'window': 1,
          'dressing': 1,
          'ntheres': 1,
          'moment': 1,
          'allowed': 1,
          'let': 1,
          'loose': 1,
          'lasts': 1,
          'shouted': 1,
          'words': 1,
          'seem': 1,
          'totally': 1,
          'result': 1,
          'npathetic': 1,
          'nin': 1,
          'jokes': 1,
          'picture': 1,
          'side': 1,
          'note': 1,
          'cameo': 1,
          'appearances': 1,
          'dan': 1,
          'marino': 1,
          'pitching': 1,
          'contraption': 1,
          'cook': 1,
          'car': 1,
          'engine': 1,
          'james': 1,
          'brown': 1,
          'introducing': 1,
          'medicalert': 1,
          'device': 1,
          'shouts': 1,
          'help': 1,
          'hardest': 1,
          'working': 1,
          'show': 1,
          'business': 1,
          'push': 1,
          'button': 1,
          'cause': 1,
          'personal': 1,
          'laughometer': 1,
          'rise': 1,
          'level': 1,
          'mild': 1,
          'bemusement': 1,
          'well': 1,
          'ask': 1,
          'convincing': 1,
          'performances': 1,
          'lack': 1,
          'nthink': 1,
          'buckwheat': 1,
          'njeff': 1,
          'disappoints': 1,
          'nkelly': 1,
          'nrobert': 1,
          'kind': 1,
          'role': 1,
          'virtually': 1,
          'typecast': 1,
          'cant': 1,
          'anything': 1,
          'part': 1,
          'making': 1,
          'nthey': 1,
          'lot': 1,
          'bored': 1,
          'audience': 1,
          'nso': 1,
          'absent': 1,
          'acting': 1,
          'siberian': 1,
          'steppes': 1,
          'na': 1,
          'drags': 1,
          'dropped': 1,
          'anchor': 1,
          'wait': 1,
          'slow': 1,
          'enough': 1,
          'screenplays': 1,
          'pacing': 1,
          'slower': 1,
          'nit': 1,
          'takes': 1,
          'establish': 1,
          'movies': 1,
          'premise': 1,
          'wades': 1,
          'tortuous': 1,
          'seemingly': 1,
          'mandatory': 1,
          'romance': 1,
          'subplot': 1,
          'involving': 1,
          'conniving': 1,
          'eric': 1,
          'mccormack': 1,
          'wants': 1,
          'discredit': 1,
          'take': 1,
          'job': 1,
          'nwhen': 1,
          'guys': 1,
          'plan': 1,
          'foiled': 1,
          'climaxes': 1,
          'treated': 1,
          'little': 1,
          'epilogue': 1,
          'go': 1,
          'right': 1,
          'nwrong': 1,
          'goes': 1,
          'another': 1,
          'ncontinental': 1,
          'drift': 1,
          'indy': 1,
          '500': 1,
          'compared': 1,
          'pace': 1,
          'number': 1,
          'exclaiming': 1,
          'awful': 1,
          'nthis': 1,
          'truly': 1,
          'pious': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'horror': 5,
          'movies': 4,
          'funny': 4,
          'something': 3,
          'parody': 3,
          'one': 3,
          'like': 3,
          'ni': 3,
          'im': 3,
          'movie': 3,
          'brothers': 3,
          '810': 3,
          'plot': 2,
          'going': 2,
          'parodies': 2,
          'work': 2,
          'nthe': 2,
          'laughs': 2,
          'gags': 2,
          'wink': 2,
          'took': 2,
          'seven': 2,
          'say': 2,
          'films': 2,
          'title': 2,
          'even': 2,
          'trying': 2,
          'see': 2,
          'head': 2,
          'nunfortunately': 2,
          'last': 2,
          'n': 2,
          'thats': 2,
          'nyou': 2,
          'joblo': 2,
          '1010': 2,
          'bunch': 1,
          'kids': 1,
          'haunted': 1,
          'house': 1,
          'playing': 1,
          'nonhorror': 1,
          'noh': 1,
          'yeah': 1,
          'theres': 1,
          'also': 1,
          'ghost': 1,
          'possessing': 1,
          'mansion': 1,
          'shit': 1,
          'trust': 1,
          'wont': 1,
          'care': 1,
          'much': 1,
          'ncritique': 1,
          'either': 1,
          'dont': 1,
          'doesnt': 1,
          'arent': 1,
          'pronounced': 1,
          'time': 1,
          'around': 1,
          'energy': 1,
          'level': 1,
          'characters': 1,
          'seem': 1,
          'motions': 1,
          'nits': 1,
          'hurry': 1,
          'finish': 1,
          'nand': 1,
          'scariest': 1,
          'part': 1,
          'ncheck': 1,
          'number': 1,
          'screenwriters': 1,
          'pen': 1,
          'puppy': 1,
          'people': 1,
          'write': 1,
          '82minutes': 1,
          'worth': 1,
          'fart': 1,
          'jokes': 1,
          'halfassed': 1,
          'stunts': 1,
          'spoofs': 1,
          'nnow': 1,
          'exactly': 1,
          'sure': 1,
          'writers': 1,
          'wrote': 1,
          'parts': 1,
          'separately': 1,
          'tossed': 1,
          'sketch': 1,
          'ideas': 1,
          'smoking': 1,
          'chronic': 1,
          'end': 1,
          'result': 1,
          'basically': 1,
          'plays': 1,
          'extended': 1,
          'skit': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'nthere': 1,
          'couple': 1,
          'oneliners': 1,
          'mostly': 1,
          'rehashed': 1,
          'onejoke': 1,
          'scenes': 1,
          'lot': 1,
          'dead': 1,
          'silence': 1,
          'lame': 1,
          'nadd': 1,
          'unoriginal': 1,
          'poster': 1,
          'got': 1,
          'ta': 1,
          'start': 1,
          'asking': 1,
          'anybody': 1,
          'website': 1,
          'isnt': 1,
          'yet': 1,
          'nwhat': 1,
          'f': 1,
          'however': 1,
          'give': 1,
          'james': 1,
          'woods': 1,
          'man': 1,
          'opens': 1,
          'funniest': 1,
          'exorcist': 1,
          'takeoff': 1,
          'miss': 1,
          'youve': 1,
          'missed': 1,
          'reason': 1,
          'flick': 1,
          'especially': 1,
          'liked': 1,
          'oneliner': 1,
          'walked': 1,
          'possessed': 1,
          'womans': 1,
          'turning': 1,
          'nvery': 1,
          'plummets': 1,
          'straight': 1,
          'dumb': 1,
          'many': 1,
          'teen': 1,
          'flicks': 1,
          'nothing': 1,
          'save': 1,
          'dance': 1,
          'dude': 1,
          'wheres': 1,
          'car': 1,
          'action': 1,
          'charlies': 1,
          'angels': 1,
          'mission': 1,
          'impossible': 1,
          '2': 1,
          'help': 1,
          'figure': 1,
          'nisnt': 1,
          'supposed': 1,
          'maybe': 1,
          'fing': 1,
          'nwell': 1,
          'sorry': 1,
          'lameass': 1,
          'script': 1,
          'wayans': 1,
          'known': 1,
          'better': 1,
          'look': 1,
          'towards': 1,
          'weinstein': 1,
          'money': 1,
          'instead': 1,
          'zucker': 1,
          'comedy': 1,
          'sequel': 1,
          'us': 1,
          'left': 1,
          'skeleton': 1,
          'mightve': 1,
          'worked': 1,
          'times': 1,
          'tightened': 1,
          'injected': 1,
          'solid': 1,
          'nbut': 1,
          'things': 1,
          'stand': 1,
          'doubt': 1,
          'mind': 1,
          'obvious': 1,
          'greed': 1,
          'capitalize': 1,
          'success': 1,
          'years': 1,
          'led': 1,
          'everyone': 1,
          'path': 1,
          'screw': 1,
          'hard': 1,
          'critically': 1,
          'speaking': 1,
          'course': 1,
          'ashamed': 1,
          'putting': 1,
          'enough': 1,
          'real': 1,
          'effort': 1,
          'chopjob': 1,
          'providing': 1,
          'fans': 1,
          'ultimate': 1,
          'talents': 1,
          'npooh': 1,
          'telling': 1,
          'em': 1,
          'nsheesh': 1,
          'nbtw': 1,
          'allotting': 1,
          'point': 1,
          'alone': 1,
          'actress': 1,
          'kathleen': 1,
          'robertson': 1,
          'whose': 1,
          'massive': 1,
          'breasts': 1,
          'skanky': 1,
          'gstring': 1,
          'chompin': 1,
          'bit': 1,
          'go': 1,
          'girl': 1,
          'neveryone': 1,
          'else': 1,
          'stay': 1,
          'nwheres': 1,
          'coming': 1,
          'nairplane': 1,
          'airplane': 1,
          'ii': 1,
          'galaxy': 1,
          'quest': 1,
          'hannibal': 1,
          '710': 1,
          'haunting': 1,
          '310': 1,
          'mafia': 1,
          '510': 1,
          'naked': 1,
          'gun': 1,
          'scary': 1,
          'top': 1,
          'secret': 1,
          '910': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'cartoon': 5,
          'nin': 5,
          'film': 5,
          'slapstick': 4,
          'puppies': 4,
          'dalmatians': 4,
          'daniels': 4,
          'animated': 3,
          'hughes': 3,
          'cruella': 3,
          'devil': 3,
          'quickly': 3,
          'dogs': 3,
          'like': 3,
          'bland': 3,
          'close': 3,
          'way': 2,
          'version': 2,
          'disney': 2,
          'john': 2,
          'home': 2,
          'alone': 2,
          'nwhen': 2,
          'original': 2,
          'give': 2,
          'another': 2,
          'pongo': 2,
          'human': 2,
          'pets': 2,
          'animal': 2,
          'distinct': 2,
          'heads': 2,
          'licking': 2,
          'cute': 2,
          'wonder': 2,
          'personality': 2,
          'little': 2,
          'richardson': 2,
          'icon': 2,
          'performance': 2,
          'long': 2,
          'n': 2,
          '101': 2,
          'enduring': 2,
          'better': 1,
          'nthats': 1,
          'bottom': 1,
          'line': 1,
          'disneys': 1,
          'incredibly': 1,
          'hyped': 1,
          'live': 1,
          'action': 1,
          '1961': 1,
          'feature': 1,
          'alliance': 1,
          'king': 1,
          'produced': 1,
          'frenetic': 1,
          'much': 1,
          'else': 1,
          'production': 1,
          'remake': 1,
          'announced': 1,
          'big': 1,
          'question': 1,
          'seemed': 1,
          'still': 1,
          'works': 1,
          'whats': 1,
          'point': 1,
          'answer': 1,
          'appears': 1,
          'excuse': 1,
          'yet': 1,
          'massive': 1,
          'merchandising': 1,
          'campaign': 1,
          'story': 1,
          'missed': 1,
          'childhood': 1,
          'simple': 1,
          'ntwo': 1,
          'perdy': 1,
          'fall': 1,
          'love': 1,
          'first': 1,
          'sight': 1,
          'nthey': 1,
          'drag': 1,
          'together': 1,
          'short': 1,
          'time': 1,
          'couples': 1,
          'marry': 1,
          'heavenly': 1,
          'matchups': 1,
          'turn': 1,
          'chaotic': 1,
          'perdys': 1,
          'newborn': 1,
          'pups': 1,
          'stolen': 1,
          'dognapping': 1,
          'engineered': 1,
          'evil': 1,
          'wants': 1,
          'pelts': 1,
          'neveryone': 1,
          'kingdom': 1,
          'joins': 1,
          'frantic': 1,
          'effort': 1,
          'save': 1,
          'movie': 1,
          'pooches': 1,
          'broad': 1,
          'range': 1,
          'facial': 1,
          'expressions': 1,
          'personalities': 1,
          'nwe': 1,
          'also': 1,
          'could': 1,
          'hear': 1,
          'talk': 1,
          'established': 1,
          'crucial': 1,
          'element': 1,
          'charm': 1,
          'view': 1,
          'humans': 1,
          'new': 1,
          'mute': 1,
          'expressionless': 1,
          'nhughes': 1,
          'attempts': 1,
          'character': 1,
          'repeated': 1,
          'shots': 1,
          'draping': 1,
          'faces': 1,
          'necks': 1,
          'nwhile': 1,
          'drew': 1,
          'desired': 1,
          'aww': 1,
          'theyre': 1,
          'reaction': 1,
          'audience': 1,
          'followed': 1,
          'several': 1,
          'people': 1,
          'whispering': 1,
          'kind': 1,
          'food': 1,
          'smeared': 1,
          'get': 1,
          'canines': 1,
          'lack': 1,
          'would': 1,
          'easier': 1,
          'take': 1,
          'beings': 1,
          'njoely': 1,
          'jeff': 1,
          'stunningly': 1,
          'lead': 1,
          'roles': 1,
          'previous': 1,
          'films': 1,
          'successfully': 1,
          'played': 1,
          'white': 1,
          'bread': 1,
          'persona': 1,
          'something': 1,
          'wild': 1,
          'revealed': 1,
          'rebellious': 1,
          'thrillseeker': 1,
          'beneath': 1,
          'neutral': 1,
          'demeanor': 1,
          'terms': 1,
          'endearment': 1,
          'hapless': 1,
          'appearance': 1,
          'masked': 1,
          'cold': 1,
          'manipulative': 1,
          'womanizer': 1,
          'nhere': 1,
          'consistently': 1,
          'images': 1,
          'even': 1,
          'stick': 1,
          'nglenn': 1,
          'however': 1,
          'problems': 1,
          'establishing': 1,
          'nas': 1,
          'villainous': 1,
          'tears': 1,
          'screen': 1,
          'deliciously': 1,
          'overthetop': 1,
          'nclose': 1,
          'matches': 1,
          'intensity': 1,
          'becoming': 1,
          'nwith': 1,
          'twotone': 1,
          'fright': 1,
          'wig': 1,
          'red': 1,
          'gloves': 1,
          'nails': 1,
          'attached': 1,
          'fingertips': 1,
          'garish': 1,
          'skin': 1,
          'outfits': 1,
          'stiletto': 1,
          'heels': 1,
          'bursts': 1,
          'scenes': 1,
          'force': 1,
          'nature': 1,
          'nshes': 1,
          'clearly': 1,
          'ball': 1,
          'playing': 1,
          'monstrous': 1,
          'wicked': 1,
          'glee': 1,
          'infectious': 1,
          'spits': 1,
          'lines': 1,
          'youve': 1,
          'battle': 1,
          'im': 1,
          'win': 1,
          'wardrobe': 1,
          'comes': 1,
          'briefly': 1,
          'life': 1,
          'crammed': 1,
          'typical': 1,
          'heavyhanded': 1,
          'approach': 1,
          'comedy': 1,
          'nafter': 1,
          'ingenuous': 1,
          'opening': 1,
          'showing': 1,
          'pongos': 1,
          'morning': 1,
          'routine': 1,
          'gets': 1,
          'prepared': 1,
          'day': 1,
          'tumbles': 1,
          'lame': 1,
          'pooch': 1,
          'drags': 1,
          'careening': 1,
          'trek': 1,
          'city': 1,
          'park': 1,
          'goes': 1,
          'keeps': 1,
          'laying': 1,
          'second': 1,
          'half': 1,
          'local': 1,
          'animals': 1,
          'team': 1,
          'rescue': 1,
          '99': 1,
          'nondescript': 1,
          'dalmatian': 1,
          'henchmen': 1,
          'tedious': 1,
          'clone': 1,
          'bad': 1,
          'guys': 1,
          'variety': 1,
          'sadistic': 1,
          'assaults': 1,
          'worthy': 1,
          'itchy': 1,
          'scratchy': 1,
          'including': 1,
          'thug': 1,
          'getting': 1,
          'testicles': 1,
          'fried': 1,
          'electric': 1,
          'fence': 1,
          'hoot': 1,
          'glenn': 1,
          'enough': 1,
          'warrant': 1,
          'third': 1,
          'rate': 1,
          'characters': 1,
          'unconvincing': 1,
          'animatronic': 1,
          'raccoons': 1,
          'highfiving': 1,
          'one': 1,
          'nrent': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'nbut': 5,
          'spawn': 4,
          'video': 4,
          'worst': 4,
          'year': 4,
          'even': 4,
          'movie': 4,
          'wasnt': 3,
          'effects': 3,
          'might': 3,
          'ni': 3,
          'one': 3,
          'n': 3,
          'makes': 3,
          'matter': 3,
          'somewhat': 2,
          'nin': 2,
          'fact': 2,
          'anyone': 2,
          'seen': 2,
          'get': 2,
          'see': 2,
          'catch': 2,
          'way': 2,
          'nit': 2,
          'means': 2,
          'top': 2,
          'films': 2,
          'bottom': 2,
          'reason': 2,
          'special': 2,
          'part': 2,
          'campy': 2,
          'neven': 2,
          'editing': 2,
          'seemed': 2,
          'something': 2,
          'quite': 2,
          'problem': 2,
          'movies': 2,
          'would': 2,
          'definitely': 2,
          'want': 2,
          'small': 2,
          'game': 2,
          'seeing': 2,
          'really': 2,
          'may': 1,
          'older': 1,
          'probably': 1,
          'hasnt': 1,
          'finally': 1,
          'managed': 1,
          'made': 1,
          'theaters': 1,
          'world': 1,
          'rentals': 1,
          'god': 1,
          'forbid': 1,
          'cassette': 1,
          'purchasing': 1,
          'isnt': 1,
          '5': 1,
          'manage': 1,
          'five': 1,
          'ten': 1,
          'simpler': 1,
          'terms': 1,
          'comes': 1,
          'number': 1,
          '6': 1,
          '1997': 1,
          'list': 1,
          'nthe': 1,
          'doesnt': 1,
          'come': 1,
          'lower': 1,
          'thanks': 1,
          'actually': 1,
          'best': 1,
          'nperformances': 1,
          'however': 1,
          'either': 1,
          'wooden': 1,
          'unforgivingly': 1,
          'shows': 1,
          'signs': 1,
          'attempting': 1,
          'avoid': 1,
          'campiness': 1,
          'boast': 1,
          'quality': 1,
          'dont': 1,
          'know': 1,
          'explain': 1,
          'exactly': 1,
          'choppy': 1,
          'nwell': 1,
          'annoyingly': 1,
          'unprofessional': 1,
          'njohn': 1,
          'leguizamo': 1,
          'almost': 1,
          'clown': 1,
          'nhe': 1,
          'character': 1,
          'provides': 1,
          'audience': 1,
          'laughs': 1,
          'honestly': 1,
          'called': 1,
          'intentional': 1,
          'main': 1,
          'found': 1,
          'wind': 1,
          'lists': 1,
          'plain': 1,
          'boring': 1,
          'wouldnt': 1,
          'say': 1,
          'climax': 1,
          'nsure': 1,
          'big': 1,
          'battle': 1,
          'scene': 1,
          'end': 1,
          'excitement': 1,
          'felt': 1,
          'nearing': 1,
          'conclusion': 1,
          'nnever': 1,
          'soon': 1,
          'conclude': 1,
          'simple': 1,
          'disappointing': 1,
          'though': 1,
          'shorter': 1,
          'ive': 1,
          'subject': 1,
          'sitting': 1,
          'thru': 1,
          'nlike': 1,
          'said': 1,
          'sense': 1,
          'pride': 1,
          'impressed': 1,
          'opening': 1,
          'sequence': 1,
          'long': 1,
          'didnt': 1,
          'allow': 1,
          'melodramatic': 1,
          'voiceover': 1,
          'lobotomizing': 1,
          'nand': 1,
          'batman': 1,
          'nothing': 1,
          'spectacular': 1,
          'visuals': 1,
          'spawns': 1,
          'outfit': 1,
          'created': 1,
          'got': 1,
          'tiresome': 1,
          'final': 1,
          'scenes': 1,
          'looked': 1,
          'bit': 1,
          'like': 1,
          'modern': 1,
          'nwho': 1,
          'knows': 1,
          'plan': 1,
          'beginning': 1,
          'nkeeping': 1,
          'mind': 1,
          'based': 1,
          'comic': 1,
          'book': 1,
          'approachable': 1,
          'amount': 1,
          'cheeziness': 1,
          'none': 1,
          'saving': 1,
          'graces': 1,
          'make': 1,
          'id': 1,
          'recommend': 1,
          'price': 1,
          'admission': 1,
          'nthis': 1,
          'young': 1,
          'children': 1,
          'shouldnt': 1,
          'teenagers': 1,
          'likely': 1,
          'find': 1,
          'appealing': 1,
          'nif': 1,
          'many': 1,
          'better': 1,
          'ones': 1,
          'tastes': 1,
          'ntrust': 1,
          'little': 1,
          'offer': 1,
          'avid': 1,
          'moviegoers': 1,
          'nneg': 1}),
 Counter({'league': 13,
          'baseball': 11,
          'major': 10,
          'njb': 8,
          'back': 7,
          'one': 7,
          'nwh': 7,
          'nhc': 6,
          'right': 5,
          'film': 4,
          'movie': 4,
          'low': 4,
          'minor': 4,
          'ball': 4,
          'gus': 4,
          'new': 3,
          'minors': 3,
          'jim': 3,
          '2': 3,
          'twins': 3,
          'game': 3,
          'field': 3,
          'warren': 3,
          'pitch': 3,
          'dorn': 3,
          'movies': 3,
          'even': 3,
          'foul': 3,
          'good': 3,
          'time': 3,
          'really': 3,
          'youre': 3,
          'play': 2,
          'man': 2,
          'james': 2,
          'berardinelli': 2,
          'top': 2,
          'booth': 2,
          'fresh': 2,
          'third': 2,
          'see': 2,
          'give': 2,
          'none': 2,
          'nits': 2,
          'ni': 2,
          'likely': 2,
          'real': 2,
          'nactually': 2,
          'action': 2,
          'involves': 2,
          'aaa': 2,
          'club': 2,
          'buzz': 2,
          'nhe': 2,
          'box': 2,
          'pitcher': 2,
          'needs': 2,
          'manager': 2,
          'team': 2,
          'two': 2,
          'played': 2,
          'cerrano': 2,
          'tanaka': 2,
          'already': 2,
          'theyre': 2,
          'nbut': 2,
          '1': 2,
          'first': 2,
          'nthe': 2,
          'humor': 2,
          'neven': 2,
          'heres': 2,
          'get': 2,
          'nthere': 2,
          'arent': 2,
          'natural': 2,
          'characters': 2,
          'better': 2,
          'miss': 2,
          'radio': 1,
          'broadcast': 1,
          'featuring': 1,
          'playby': 1,
          'harry': 1,
          'canary': 1,
          'color': 1,
          'whitey': 1,
          'hashbrown': 1,
          'special': 1,
          'guest': 1,
          'commentator': 1,
          'go': 1,
          '8th': 1,
          'joined': 1,
          'critic': 1,
          'whos': 1,
          'seeing': 1,
          'popular': 1,
          'saga': 1,
          'taking': 1,
          'lighter': 1,
          'look': 1,
          'majors': 1,
          'nnice': 1,
          'nas': 1,
          'big': 1,
          'fan': 1,
          'reviewer': 1,
          'us': 1,
          'scoop': 1,
          'flick': 1,
          'opinion': 1,
          'producers': 1,
          'stopped': 1,
          'ahead': 1,
          'nine': 1,
          'years': 1,
          'ago': 1,
          'entry': 1,
          'definitely': 1,
          'enough': 1,
          'im': 1,
          'surprised': 1,
          'anemic': 1,
          'showing': 1,
          'quality': 1,
          'latest': 1,
          'installment': 1,
          'earmarks': 1,
          'something': 1,
          'released': 1,
          'directtovideo': 1,
          'worse': 1,
          'mediocre': 1,
          'madefortv': 1,
          'feature': 1,
          'also': 1,
          'mention': 1,
          'wont': 1,
          'well': 1,
          'cleveland': 1,
          'nnow': 1,
          'indians': 1,
          'perennial': 1,
          'contenders': 1,
          'replaced': 1,
          'minnesota': 1,
          'cinematic': 1,
          'sadsacks': 1,
          'rather': 1,
          'actual': 1,
          'franchise': 1,
          'sorry': 1,
          'interrupt': 1,
          'still': 1,
          'playbyplay': 1,
          'nleading': 1,
          'inning': 1,
          'john': 1,
          'steps': 1,
          'batters': 1,
          'takes': 1,
          'kents': 1,
          'storys': 1,
          'strictly': 1,
          'nwhats': 1,
          'scott': 1,
          'bakula': 1,
          'guy': 1,
          'quantum': 1,
          'leap': 1,
          'plays': 1,
          'career': 1,
          'cantrell': 1,
          'nwhen': 1,
          'owner': 1,
          'roger': 1,
          'portrayed': 1,
          'corbin': 1,
          'bernsen': 1,
          'offers': 1,
          'job': 1,
          'faced': 1,
          'daunting': 1,
          'tasks': 1,
          'turn': 1,
          'around': 1,
          'groom': 1,
          'hot': 1,
          'prospect': 1,
          'downtown': 1,
          'anderson': 1,
          'walt': 1,
          'goggins': 1,
          'promotion': 1,
          'show': 1,
          'nwith': 1,
          'help': 1,
          'former': 1,
          'leaguers': 1,
          'pedro': 1,
          'dennis': 1,
          'haysbert': 1,
          'rube': 1,
          'baker': 1,
          'eric': 1,
          'bruskotter': 1,
          'isuro': 1,
          'takaaki': 1,
          'ishibashi': 1,
          'gets': 1,
          'track': 1,
          'nin': 1,
          'fact': 1,
          'successful': 1,
          'earns': 1,
          'enmity': 1,
          'jealous': 1,
          'bigleague': 1,
          'leonard': 1,
          'huff': 1,
          'overthetop': 1,
          'relish': 1,
          'ted': 1,
          'mcginley': 1,
          'nsoon': 1,
          'arranged': 1,
          'exhibition': 1,
          'pits': 1,
          'overachieving': 1,
          'group': 1,
          'huffs': 1,
          'overpaid': 1,
          'lastplace': 1,
          'bunch': 1,
          'guess': 1,
          'wins': 1,
          'results': 1,
          'suspense': 1,
          'watching': 1,
          'videotape': 1,
          'youve': 1,
          'seen': 1,
          'score': 1,
          'non': 1,
          'mockups': 1,
          'presented': 1,
          'much': 1,
          'flair': 1,
          'ntheyre': 1,
          'boring': 1,
          'lackluster': 1,
          'never': 1,
          'drama': 1,
          'tension': 1,
          'theyve': 1,
          'using': 1,
          'situations': 1,
          'generate': 1,
          'laughs': 1,
          'fouls': 1,
          'fastball': 1,
          'n1': 1,
          'lots': 1,
          'yuks': 1,
          'start': 1,
          'finish': 1,
          'enjoyed': 1,
          'reasonably': 1,
          'funny': 1,
          'nokay': 1,
          'lot': 1,
          'jokes': 1,
          'sophomoric': 1,
          'made': 1,
          'laugh': 1,
          'sequels': 1,
          'havent': 1,
          'stale': 1,
          'quotient': 1,
          'abysmally': 1,
          'bob': 1,
          'ueckers': 1,
          'oncesharp': 1,
          'oneliners': 1,
          'turned': 1,
          'lame': 1,
          'closest': 1,
          'comes': 1,
          'vaguely': 1,
          'amusing': 1,
          '11': 1,
          'nlooooooong': 1,
          'drive': 1,
          'fair': 1,
          'count': 1,
          'goes': 1,
          'least': 1,
          'details': 1,
          'correct': 1,
          'yes': 1,
          'glaring': 1,
          'errors': 1,
          'like': 1,
          'bestever': 1,
          'id': 1,
          'gladly': 1,
          'trade': 1,
          'technically': 1,
          'accurate': 1,
          'story': 1,
          'believable': 1,
          'little': 1,
          'genuine': 1,
          'nheck': 1,
          'naked': 1,
          'gun': 1,
          'comedy': 1,
          'nice': 1,
          'old': 1,
          'friends': 1,
          'isnt': 1,
          'nlike': 1,
          'depends': 1,
          'whether': 1,
          'care': 1,
          'anyone': 1,
          'assortment': 1,
          'cliched': 1,
          'oddballs': 1,
          'nyeah': 1,
          'voodoo': 1,
          'hitter': 1,
          'catcher': 1,
          'cant': 1,
          'throw': 1,
          'japanese': 1,
          'player': 1,
          'conceited': 1,
          'playerturnedowner': 1,
          'returned': 1,
          'cares': 1,
          'nthey': 1,
          'depth': 1,
          'nnotable': 1,
          'absences': 1,
          'include': 1,
          'tom': 1,
          'berengers': 1,
          'veteran': 1,
          'charlie': 1,
          'sheens': 1,
          'wild': 1,
          'thing': 1,
          'nwe': 1,
          'dont': 1,
          'though': 1,
          'breaking': 1,
          'outside': 1,
          'n2': 1,
          'saying': 1,
          'thats': 1,
          'nto': 1,
          'use': 1,
          'terminology': 1,
          'threepitch': 1,
          'strikeout': 1,
          'nif': 1,
          'looking': 1,
          'try': 1,
          'popping': 1,
          'dreams': 1,
          'bull': 1,
          'durham': 1,
          'vcr': 1,
          'oddlytimed': 1,
          'release': 1,
          'since': 1,
          'fans': 1,
          'spending': 1,
          'parks': 1,
          'theaters': 1,
          'seasons': 1,
          'underway': 1,
          'ndont': 1,
          'bother': 1,
          'wretched': 1,
          'waster': 1,
          'thanks': 1,
          'advice': 1,
          'welcome': 1,
          '22': 1,
          'nfouled': 1,
          'nhey': 1,
          'heads': 1,
          'noops': 1,
          'nsomebody': 1,
          'ice': 1,
          'may': 1,
          'deflecting': 1,
          'bad': 1,
          'learn': 1,
          'duck': 1,
          'balls': 1,
          'nodd': 1,
          'seemed': 1,
          'aim': 1,
          'almost': 1,
          'grudge': 1,
          'settle': 1,
          'nanyway': 1,
          'nneg': 1}),
 Counter({'harry': 11,
          'peak': 8,
          'nthe': 8,
          'one': 7,
          'dantes': 7,
          'eruption': 7,
          'movie': 6,
          'town': 6,
          'disaster': 5,
          'volcano': 5,
          'film': 5,
          'people': 5,
          'survey': 5,
          'nthere': 5,
          'going': 5,
          'two': 4,
          'even': 4,
          'u': 4,
          'geological': 4,
          'mayor': 4,
          'couple': 4,
          'frog': 4,
          'nin': 3,
          'better': 3,
          'scene': 3,
          'trying': 3,
          'water': 3,
          'doesnt': 3,
          'small': 3,
          'wando': 3,
          'members': 3,
          'nthey': 3,
          'harrys': 3,
          'nthis': 3,
          'well': 3,
          'nfor': 3,
          'team': 3,
          'nwhen': 3,
          'nif': 3,
          'caption': 3,
          'think': 3,
          'dont': 3,
          'cover': 2,
          'years': 2,
          'begins': 2,
          'volcanic': 2,
          'rocks': 2,
          'fall': 2,
          'nwe': 2,
          'see': 2,
          'nit': 2,
          'get': 2,
          'much': 2,
          'wife': 2,
          'na': 2,
          'sent': 2,
          'activity': 2,
          'second': 2,
          'nalthough': 2,
          'presence': 2,
          'man': 2,
          'next': 2,
          'city': 2,
          'would': 2,
          'amorous': 2,
          'turn': 2,
          'cooked': 2,
          'lava': 2,
          'leading': 2,
          'abrasive': 2,
          'motherinlaw': 2,
          'make': 2,
          'plot': 2,
          'elements': 2,
          'example': 2,
          'paul': 2,
          'situation': 2,
          'cause': 2,
          'best': 2,
          'got': 2,
          'n': 2,
          'recipe': 2,
          'acid': 2,
          'first': 2,
          'building': 2,
          'theres': 2,
          'suppose': 2,
          'signs': 2,
          'rushed': 2,
          'kissing': 2,
          'guy': 2,
          'way': 2,
          'usually': 2,
          'enough': 2,
          'real': 2,
          'time': 1,
          'take': 1,
          'nafter': 1,
          'hiatus': 1,
          'fifteen': 1,
          'come': 1,
          'back': 1,
          'renewed': 1,
          'zest': 1,
          'early': 1,
          '1997': 1,
          'less': 1,
          'three': 1,
          'movies': 1,
          'volcanoes': 1,
          'alone': 1,
          'television': 1,
          'theaters': 1,
          'heavy': 1,
          'competition': 1,
          'moviegoing': 1,
          'dollar': 1,
          'nof': 1,
          'heard': 1,
          'decided': 1,
          'check': 1,
          'released': 1,
          'video': 1,
          'slow': 1,
          'motion': 1,
          'third': 1,
          'world': 1,
          'country': 1,
          'evacuate': 1,
          'little': 1,
          'covered': 1,
          'ash': 1,
          'sulfuric': 1,
          'presume': 1,
          'nflaming': 1,
          'various': 1,
          'sizes': 1,
          'also': 1,
          'sky': 1,
          'crushing': 1,
          'homes': 1,
          'panicking': 1,
          'crying': 1,
          'horses': 1,
          'rearing': 1,
          'biblical': 1,
          'proportions': 1,
          'signified': 1,
          'us': 1,
          'person': 1,
          'dragging': 1,
          'cross': 1,
          'road': 1,
          'nsymbolism': 1,
          'blatant': 1,
          'learn': 1,
          'dalton': 1,
          'pierce': 1,
          'brosnan': 1,
          'volcanologist': 1,
          'occurred': 1,
          'nharry': 1,
          'survived': 1,
          'later': 1,
          'investigate': 1,
          'unusual': 1,
          'seismic': 1,
          'detected': 1,
          'near': 1,
          'washington': 1,
          'told': 1,
          'voted': 1,
          'desirable': 1,
          'place': 1,
          'live': 1,
          '20': 1,
          '000': 1,
          'readers': 1,
          'money': 1,
          'magazine': 1,
          'meets': 1,
          'rachel': 1,
          'single': 1,
          'mother': 1,
          'serves': 1,
          'proprietor': 1,
          'coffee': 1,
          'shop': 1,
          'seem': 1,
          'alarmed': 1,
          'determine': 1,
          'mountain': 1,
          'blow': 1,
          'council': 1,
          'afraid': 1,
          'scare': 1,
          'investor': 1,
          'pledged': 1,
          'put': 1,
          'millions': 1,
          'dollars': 1,
          'developing': 1,
          'rather': 1,
          'news': 1,
          'possible': 1,
          'stirrings': 1,
          'within': 1,
          'neighboring': 1,
          'dormant': 1,
          'swept': 1,
          'rug': 1,
          'nhowever': 1,
          'young': 1,
          'takes': 1,
          'skinnydip': 1,
          'local': 1,
          'hot': 1,
          'springs': 1,
          'bubbles': 1,
          'fissure': 1,
          'underneath': 1,
          'nthus': 1,
          'chain': 1,
          'events': 1,
          'inevitable': 1,
          'contains': 1,
          'number': 1,
          'cliches': 1,
          'nas': 1,
          'soon': 1,
          'doff': 1,
          'clothes': 1,
          'know': 1,
          'theyre': 1,
          'die': 1,
          'busybody': 1,
          'appearances': 1,
          'deathdefying': 1,
          'dog': 1,
          'ncountless': 1,
          'familiar': 1,
          'scenarios': 1,
          'serve': 1,
          'predictable': 1,
          'nwatching': 1,
          'able': 1,
          'anticipate': 1,
          'major': 1,
          'dialogue': 1,
          'nunfortunate': 1,
          'since': 1,
          'dialog': 1,
          'terrible': 1,
          'boss': 1,
          'charles': 1,
          'hallahan': 1,
          'join': 1,
          'assess': 1,
          'npaul': 1,
          'basically': 1,
          'tells': 1,
          'townsfolk': 1,
          'predictions': 1,
          'arent': 1,
          'alarm': 1,
          'causes': 1,
          'leave': 1,
          'fit': 1,
          'rage': 1,
          'day': 1,
          'ready': 1,
          'work': 1,
          'asks': 1,
          'stayed': 1,
          'says': 1,
          'grim': 1,
          'determination': 1,
          'towns': 1,
          'trouble': 1,
          'im': 1,
          'youve': 1,
          'neven': 1,
          'explain': 1,
          'need': 1,
          'jolt': 1,
          'residents': 1,
          'leaving': 1,
          'nhe': 1,
          'likens': 1,
          'jump': 1,
          'dropped': 1,
          'pot': 1,
          'boiling': 1,
          'cold': 1,
          'gradually': 1,
          'heated': 1,
          'however': 1,
          'wont': 1,
          'move': 1,
          'allow': 1,
          'soup': 1,
          'nasks': 1,
          'responds': 1,
          'ndantes': 1,
          'singular': 1,
          'talent': 1,
          'pointing': 1,
          'obvious': 1,
          'nour': 1,
          'heroes': 1,
          'boat': 1,
          'middle': 1,
          'lake': 1,
          'realizes': 1,
          'turned': 1,
          'nmayor': 1,
          'demonstrates': 1,
          'brilliant': 1,
          'powers': 1,
          'deduction': 1,
          'proclaiming': 1,
          'grave': 1,
          'tone': 1,
          'eats': 1,
          'metal': 1,
          'nthanks': 1,
          'tip': 1,
          'labeling': 1,
          'wouldnt': 1,
          'bad': 1,
          'werent': 1,
          'fact': 1,
          'right': 1,
          'sign': 1,
          'reads': 1,
          'large': 1,
          'letters': 1,
          'ni': 1,
          'cant': 1,
          'read': 1,
          'become': 1,
          'item': 1,
          'end': 1,
          'viewer': 1,
          'idea': 1,
          'severe': 1,
          'lack': 1,
          'chemistry': 1,
          'characters': 1,
          'relationship': 1,
          'seems': 1,
          'close': 1,
          'asking': 1,
          'want': 1,
          'kiss': 1,
          'nwere': 1,
          'attracted': 1,
          'sure': 1,
          'twice': 1,
          'crack': 1,
          'smile': 1,
          'whole': 1,
          'pull': 1,
          'roughyetdebonair': 1,
          'act': 1,
          'nwho': 1,
          'njames': 1,
          'bond': 1,
          'feels': 1,
          'similarly': 1,
          'several': 1,
          'warning': 1,
          'prior': 1,
          'lackluster': 1,
          'without': 1,
          'suspense': 1,
          'feel': 1,
          'anything': 1,
          'makes': 1,
          'crater': 1,
          'order': 1,
          'retrieve': 1,
          'remote': 1,
          'controlled': 1,
          'robot': 1,
          'tremor': 1,
          'occurs': 1,
          'ndoes': 1,
          'plunge': 1,
          'headlong': 1,
          'death': 1,
          'nis': 1,
          'engulfed': 1,
          'shoots': 1,
          'nno': 1,
          'break': 1,
          'leg': 1,
          'sole': 1,
          'purpose': 1,
          'seemed': 1,
          'set': 1,
          'subsequent': 1,
          'chopper': 1,
          'rescue': 1,
          'intended': 1,
          'dramatic': 1,
          'wasnt': 1,
          'none': 1,
          'thread': 1,
          'left': 1,
          'noticeably': 1,
          'hanging': 1,
          'investment': 1,
          'whos': 1,
          'greedy': 1,
          'possibility': 1,
          'eruptionfireearthquakeexplosiontsunamitornadometeorite': 1,
          'gets': 1,
          'killed': 1,
          'nits': 1,
          'okay': 1,
          'course': 1,
          'deserved': 1,
          'youre': 1,
          'unoriginal': 1,
          'might': 1,
          'go': 1,
          'councilmembers': 1,
          'concerned': 1,
          'really': 1,
          'try': 1,
          'hard': 1,
          'nmaybe': 1,
          'mayors': 1,
          'apparent': 1,
          'reason': 1,
          'snaps': 1,
          'positing': 1,
          'could': 1,
          'erupt': 1,
          'nperhaps': 1,
          'ancestors': 1,
          'invested': 1,
          'pompeii': 1,
          'estate': 1,
          'good': 1,
          'things': 1,
          'scenery': 1,
          'panoramic': 1,
          'shots': 1,
          'forests': 1,
          'lakes': 1,
          'mountains': 1,
          'absolutely': 1,
          'beautiful': 1,
          'special': 1,
          'effects': 1,
          'closest': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'pyroclastic': 1,
          'nbut': 1,
          'speak': 1,
          'parts': 1,
          'youd': 1,
          'probably': 1,
          'rewrite': 1,
          'script': 1,
          'nneg': 1}),
 Counter({'movie': 14,
          'nthe': 7,
          'character': 5,
          'really': 4,
          'way': 4,
          'one': 4,
          'role': 4,
          'tension': 4,
          'get': 4,
          'know': 3,
          'na': 3,
          'time': 3,
          'story': 3,
          'good': 3,
          'jackson': 3,
          'given': 3,
          'movies': 3,
          'scene': 3,
          'supposed': 3,
          'jacksons': 3,
          'nits': 3,
          'play': 2,
          'doesnt': 2,
          'anything': 2,
          'kill': 2,
          'easy': 2,
          'see': 2,
          'bullock': 2,
          'important': 2,
          'nit': 2,
          'ive': 2,
          'something': 2,
          'somehow': 2,
          'serious': 2,
          'totally': 2,
          'ni': 2,
          'generate': 2,
          'like': 2,
          'none': 2,
          'whole': 2,
          'tried': 2,
          'empty': 2,
          'little': 2,
          'theres': 2,
          'dilemma': 2,
          'matter': 2,
          'moral': 2,
          'saw': 2,
          'white': 2,
          'plot': 2,
          'two': 2,
          'empathy': 2,
          'makes': 2,
          'isnt': 2,
          'things': 2,
          'information': 2,
          'nhow': 2,
          'questions': 2,
          'writing': 2,
          'ultimately': 2,
          'capsule': 1,
          'hamhanded': 1,
          'overunderwritten': 1,
          'morality': 1,
          'masquerading': 1,
          'entertainment': 1,
          'muddled': 1,
          'even': 1,
          'advocating': 1,
          'hailed': 1,
          'best': 1,
          'grisham': 1,
          'adaptations': 1,
          'presents': 1,
          'strong': 1,
          'almost': 1,
          'rancorously': 1,
          'full': 1,
          'actors': 1,
          'samuel': 1,
          'l': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'sandra': 1,
          'kevin': 1,
          'spacey': 1,
          'charles': 1,
          'dutton': 1,
          'ostensibly': 1,
          'social': 1,
          'issue': 1,
          'tangling': 1,
          'however': 1,
          'reasons': 1,
          'listed': 1,
          'nright': 1,
          'beginning': 1,
          'deadset': 1,
          'stacking': 1,
          'deck': 1,
          'thoroughly': 1,
          'unrepentantly': 1,
          'possible': 1,
          'pair': 1,
          'redneck': 1,
          'whites': 1,
          'boozed': 1,
          'drugged': 1,
          'minds': 1,
          'kidnap': 1,
          'young': 1,
          'black': 1,
          'girl': 1,
          'abuse': 1,
          'rape': 1,
          'horribly': 1,
          'leave': 1,
          'dead': 1,
          'nafter': 1,
          'arrest': 1,
          'father': 1,
          'takes': 1,
          'assault': 1,
          'rifle': 1,
          'guns': 1,
          'trial': 1,
          'nmcconaughey': 1,
          'drafted': 1,
          'lawyer': 1,
          'rest': 1,
          'strangely': 1,
          'predictable': 1,
          'courtoom': 1,
          'dramatics': 1,
          'acting': 1,
          'quite': 1,
          'cast': 1,
          'nsandra': 1,
          'actress': 1,
          'looks': 1,
          'clueless': 1,
          'spaceys': 1,
          'accent': 1,
          'switches': 1,
          'random': 1,
          'hes': 1,
          'thankless': 1,
          'well': 1,
          'without': 1,
          'iota': 1,
          'depth': 1,
          'mcconaugheys': 1,
          'stamped': 1,
          'cardboard': 1,
          'back': 1,
          'cereal': 1,
          'box': 1,
          'memorable': 1,
          'donald': 1,
          'sutherlands': 1,
          'bit': 1,
          'part': 1,
          'always': 1,
          'consider': 1,
          'index': 1,
          'desperation': 1,
          'able': 1,
          'present': 1,
          'shocking': 1,
          'outlandish': 1,
          'events': 1,
          'ounce': 1,
          'impact': 1,
          'nthere': 1,
          'riot': 1,
          'outside': 1,
          'courtroom': 1,
          'created': 1,
          'incredible': 1,
          'winds': 1,
          'playing': 1,
          'textbook': 1,
          'exercise': 1,
          'deploy': 1,
          'nbecause': 1,
          'cant': 1,
          'genuine': 1,
          'artifically': 1,
          'inject': 1,
          'clumsy': 1,
          'plotting': 1,
          'ways': 1,
          'throwing': 1,
          'subplot': 1,
          'bunch': 1,
          'vicious': 1,
          'kkk': 1,
          'crossburners': 1,
          'tidied': 1,
          'neatly': 1,
          'borders': 1,
          'nihilistic': 1,
          'reminded': 1,
          'despicable': 1,
          'betrayed': 1,
          'tart': 1,
          'fundamentally': 1,
          'injecting': 1,
          'vile': 1,
          'graphic': 1,
          'acts': 1,
          'racism': 1,
          'attentiongetter': 1,
          'immolates': 1,
          'enormous': 1,
          'amount': 1,
          'potential': 1,
          'making': 1,
          'critical': 1,
          'mistakes': 1,
          'nfirst': 1,
          'hard': 1,
          'judge': 1,
          'nhes': 1,
          'selfadmittedly': 1,
          'guilty': 1,
          'sent': 1,
          'jail': 1,
          'crusade': 1,
          'old': 1,
          'court': 1,
          'land': 1,
          'would': 1,
          'convict': 1,
          'underlying': 1,
          'theme': 1,
          'never': 1,
          'developed': 1,
          'organic': 1,
          'component': 1,
          'sort': 1,
          'floats': 1,
          'around': 1,
          'top': 1,
          'grinds': 1,
          'away': 1,
          'furiously': 1,
          'mechanics': 1,
          'nanother': 1,
          'mistake': 1,
          'motivational': 1,
          'logic': 1,
          'thugs': 1,
          'arraigned': 1,
          'first': 1,
          'maybe': 1,
          'dismissed': 1,
          'lack': 1,
          'evidence': 1,
          'say': 1,
          'much': 1,
          'less': 1,
          'nim': 1,
          'probably': 1,
          'think': 1,
          'daughter': 1,
          'raped': 1,
          'automatically': 1,
          'feel': 1,
          'thats': 1,
          'precisely': 1,
          'kind': 1,
          'facile': 1,
          'thinking': 1,
          'real': 1,
          'justice': 1,
          'impossible': 1,
          'n': 1,
          'virgin': 1,
          'spring': 1,
          'note': 1,
          'nis': 1,
          'simply': 1,
          'insane': 1,
          'nthat': 1,
          'prospect': 1,
          'terribly': 1,
          'treatment': 1,
          'either': 1,
          'aggravating': 1,
          'coutroom': 1,
          'seem': 1,
          'law': 1,
          'works': 1,
          'lawyers': 1,
          'nmcconaugheys': 1,
          'slipup': 1,
          'late': 1,
          'witnesses': 1,
          'turns': 1,
          'convicted': 1,
          'capital': 1,
          'offense': 1,
          'prosecution': 1,
          'come': 1,
          'didnt': 1,
          'handled': 1,
          'symptomatic': 1,
          'dealing': 1,
          'complex': 1,
          'legal': 1,
          'cheap': 1,
          'screenwriterly': 1,
          'slambang': 1,
          'fashion': 1,
          'nthis': 1,
          'biggest': 1,
          'problem': 1,
          'case': 1,
          'frequently': 1,
          'interesting': 1,
          'despite': 1,
          'porcine': 1,
          'direction': 1,
          'characters': 1,
          'except': 1,
          'stupid': 1,
          'geareddown': 1,
          'inches': 1,
          'onwards': 1,
          'unremarkable': 1,
          'another': 1,
          'towards': 1,
          'contrived': 1,
          'ending': 1,
          'nat': 1,
          'half': 1,
          'hours': 1,
          'overlong': 1,
          'drastically': 1,
          'overwritten': 1,
          'endless': 1,
          'stuff': 1,
          'add': 1,
          'nothing': 1,
          'material': 1,
          'handwaving': 1,
          'closing': 1,
          'argument': 1,
          'also': 1,
          'sneaky': 1,
          'underhanded': 1,
          'underscored': 1,
          'suspicion': 1,
          'manipulative': 1,
          'unfair': 1,
          'make': 1,
          'day': 1,
          'kurosawas': 1,
          'phenomenal': 1,
          'rashomon': 1,
          'people': 1,
          'deal': 1,
          'truth': 1,
          'reality': 1,
          'dont': 1,
          'ponderous': 1,
          'seen': 1,
          'long': 1,
          'nneg': 1}),
 Counter({'deep': 5,
          'rising': 5,
          'nthe': 4,
          'movie': 3,
          'ship': 3,
          'monster': 3,
          'argonautica': 3,
          'even': 3,
          'cast': 3,
          'isnt': 3,
          'take': 2,
          'place': 2,
          'middle': 2,
          'story': 2,
          'part': 2,
          'films': 2,
          'movies': 2,
          'anaconda': 2,
          'titanic': 2,
          'known': 2,
          'stay': 2,
          'giant': 2,
          'sea': 2,
          'survivors': 2,
          'famke': 2,
          'janssen': 2,
          'na': 2,
          'finnegan': 2,
          'williams': 2,
          'bad': 2,
          'like': 2,
          'gets': 2,
          'alien': 2,
          'water': 2,
          'nand': 2,
          'enough': 2,
          'gives': 1,
          'sinking': 1,
          'feeling': 1,
          'literally': 1,
          'figuratively': 1,
          'cruise': 1,
          'slowly': 1,
          'immersed': 1,
          'ocean': 1,
          'squidlike': 1,
          'menace': 1,
          'unfolding': 1,
          'artificial': 1,
          'silly': 1,
          'almost': 1,
          'completely': 1,
          'derivative': 1,
          'countless': 1,
          'better': 1,
          'nwhile': 1,
          'dumb': 1,
          'least': 1,
          'decent': 1,
          'guilty': 1,
          'pleasures': 1,
          'example': 1,
          'schlocky': 1,
          'mountain': 1,
          'highs': 1,
          'last': 1,
          'springs': 1,
          'tongue': 1,
          'put': 1,
          'cheek': 1,
          'nfolks': 1,
          'month': 1,
          'new': 1,
          'year': 1,
          'already': 1,
          'heres': 1,
          'candidate': 1,
          'one': 1,
          'stinkiest': 1,
          'releases': 1,
          'nmost': 1,
          'action': 1,
          'takes': 1,
          'luxury': 1,
          'liner': 1,
          'maiden': 1,
          'voyage': 1,
          'uhoh': 1,
          'people': 1,
          'seen': 1,
          'maybe': 1,
          'theyd': 1,
          'home': 1,
          'attacked': 1,
          'tentacled': 1,
          'creature': 1,
          'slinky': 1,
          'jewel': 1,
          'thief': 1,
          'trilian': 1,
          'owner': 1,
          'canton': 1,
          'anthony': 1,
          'heald': 1,
          'crew': 1,
          'members': 1,
          'mercenary': 1,
          'team': 1,
          'lead': 1,
          'resourceful': 1,
          'captain': 1,
          'john': 1,
          'treat': 1,
          'board': 1,
          'looking': 1,
          'assistance': 1,
          'boat': 1,
          'breaks': 1,
          'nearby': 1,
          'nbut': 1,
          'search': 1,
          'uncovers': 1,
          'something': 1,
          'bloodsoaked': 1,
          'hungry': 1,
          'helpful': 1,
          'main': 1,
          'problem': 1,
          'overt': 1,
          'familiarity': 1,
          'makes': 1,
          'absolutely': 1,
          'attempt': 1,
          'differentiate': 1,
          'scifihorror': 1,
          'recent': 1,
          'memory': 1,
          'concept': 1,
          'leviathan': 1,
          'meets': 1,
          'dash': 1,
          'speed': 1,
          '2': 1,
          'thrown': 1,
          'good': 1,
          'nmeasure': 1,
          'nthis': 1,
          'equal': 1,
          'parts': 1,
          '20': 1,
          '000': 1,
          'leagues': 1,
          'relic': 1,
          'knows': 1,
          'open': 1,
          'doors': 1,
          'raptors': 1,
          'jurassic': 1,
          'park': 1,
          'expel': 1,
          'halfdigested': 1,
          'victim': 1,
          'neat': 1,
          'effect': 1,
          'admittedly': 1,
          'la': 1,
          'snake': 1,
          'nsome': 1,
          'attack': 1,
          'sequences': 1,
          'straight': 1,
          'jaws': 1,
          'scene': 1,
          'remaining': 1,
          'travel': 1,
          'escape': 1,
          'death': 1,
          'right': 1,
          'resurrection': 1,
          'ntheres': 1,
          'jet': 1,
          'ski': 1,
          'chase': 1,
          'hard': 1,
          'rain': 1,
          'list': 1,
          'goes': 1,
          'nwatching': 1,
          'battle': 1,
          'beast': 1,
          'murky': 1,
          'chore': 1,
          'none': 1,
          'welldeveloped': 1,
          'characters': 1,
          'seem': 1,
          'project': 1,
          'slightest': 1,
          'sense': 1,
          'fear': 1,
          'facing': 1,
          'enemy': 1,
          'nwilliams': 1,
          'affable': 1,
          'believable': 1,
          'nan': 1,
          'interesting': 1,
          'supporting': 1,
          'thoroughly': 1,
          'wasted': 1,
          'pretty': 1,
          'best': 1,
          'goldeneye': 1,
          'killer': 1,
          'thighs': 1,
          'trapped': 1,
          'forced': 1,
          'romantic': 1,
          'interest': 1,
          'kevin': 1,
          'j': 1,
          'oconnor': 1,
          'finnegans': 1,
          'mechanic': 1,
          'provides': 1,
          'comic': 1,
          'relief': 1,
          'screechy': 1,
          'manic': 1,
          'shtick': 1,
          'old': 1,
          'fast': 1,
          'ndjimon': 1,
          'honsou': 1,
          'received': 1,
          'raves': 1,
          'performance': 1,
          'noble': 1,
          'slave': 1,
          'decembers': 1,
          'amistad': 1,
          'pops': 1,
          'brief': 1,
          'nhe': 1,
          'needs': 1,
          'away': 1,
          'final': 1,
          'shot': 1,
          'groaner': 1,
          '11thhour': 1,
          'regurgitation': 1,
          'subplot': 1,
          'involving': 1,
          'onship': 1,
          'saboteur': 1,
          'nas': 1,
          'deserving': 1,
          'snack': 1,
          'foodfate': 1,
          'taunt': 1,
          'youre': 1,
          'really': 1,
          'asking': 1,
          'slow': 1,
          'stupid': 1,
          'slog': 1,
          'without': 1,
          'single': 1,
          'bright': 1,
          'spot': 1,
          'since': 1,
          'know': 1,
          'higher': 1,
          'casualty': 1,
          'rate': 1,
          'closer': 1,
          'end': 1,
          'rooting': 1,
          'overgrown': 1,
          'squid': 1,
          'swallow': 1,
          'whole': 1,
          'question': 1,
          'nneg': 1}),
 Counter({'mandingo': 16,
          'film': 9,
          'hammond': 9,
          'nthe': 7,
          'slavery': 6,
          'slave': 6,
          'mede': 6,
          'nhammond': 6,
          'blanche': 6,
          'movie': 5,
          'slaves': 5,
          'one': 4,
          'good': 4,
          'bed': 4,
          'see': 4,
          'films': 4,
          'black': 4,
          'two': 3,
          'trashy': 3,
          'although': 3,
          'mason': 3,
          'king': 3,
          'ken': 3,
          'never': 3,
          'susan': 3,
          'george': 3,
          'given': 3,
          'female': 3,
          'easy': 3,
          'sex': 3,
          'ellen': 3,
          'white': 3,
          'child': 3,
          'boiling': 3,
          'n': 3,
          'script': 3,
          'stereotyped': 3,
          'nature': 3,
          'seen': 2,
          'things': 2,
          'look': 2,
          'south': 2,
          'potboiler': 2,
          'trash': 2,
          'warren': 2,
          'perry': 2,
          'named': 2,
          'norton': 2,
          'simply': 2,
          'name': 2,
          'mandingos': 2,
          'fight': 2,
          'time': 2,
          'father': 2,
          'wench': 2,
          'racism': 2,
          'sensitive': 2,
          'finds': 2,
          'another': 2,
          'man': 2,
          'slept': 2,
          'fact': 2,
          'nso': 2,
          'birth': 2,
          'getting': 2,
          'pure': 2,
          'purpose': 2,
          'seems': 2,
          'many': 2,
          'would': 2,
          'southern': 2,
          'history': 2,
          'weak': 2,
          'notion': 2,
          'entire': 2,
          'based': 2,
          'owner': 2,
          'nthere': 2,
          'owners': 2,
          'human': 2,
          'number': 2,
          'behind': 2,
          '1966': 2,
          'movies': 2,
          'including': 2,
          'oscar': 2,
          'actors': 2,
          'na': 2,
          'talk': 2,
          'especially': 2,
          'credit': 2,
          'hollywood': 2,
          'might': 2,
          'worthwhile': 2,
          'potential': 2,
          'spielberg': 2,
          'traditionally': 1,
          'either': 1,
          'muchneeded': 1,
          'revisionist': 1,
          'words': 1,
          'critic': 1,
          'leonard': 1,
          'maltin': 1,
          'appeals': 1,
          'sm': 1,
          'crowd': 1,
          'nactually': 1,
          'think': 1,
          'strange': 1,
          'combination': 1,
          'fails': 1,
          'fronts': 1,
          'nits': 1,
          'drama': 1,
          'dramatic': 1,
          'story': 1,
          'takes': 1,
          'place': 1,
          'dilapidated': 1,
          'louisiana': 1,
          'plantation': 1,
          'run': 1,
          'crotchety': 1,
          'old': 1,
          'maxwell': 1,
          'james': 1,
          'son': 1,
          'none': 1,
          'day': 1,
          'new': 1,
          'orleans': 1,
          'comes': 1,
          'across': 1,
          'trader': 1,
          'selling': 1,
          'heavyweight': 1,
          'boxer': 1,
          'nalthough': 1,
          'explains': 1,
          'africans': 1,
          'come': 1,
          'region': 1,
          'upper': 1,
          'niger': 1,
          'river': 1,
          'valley': 1,
          'naccording': 1,
          'rolls': 1,
          'royce': 1,
          'african': 1,
          'pays': 1,
          'top': 1,
          'price': 1,
          'others': 1,
          'order': 1,
          'get': 1,
          'spends': 1,
          'training': 1,
          'fighter': 1,
          'money': 1,
          'brawls': 1,
          'nmeanwhile': 1,
          'married': 1,
          'cousin': 1,
          'wants': 1,
          'escape': 1,
          'family': 1,
          'pressure': 1,
          'produce': 1,
          'grandchild': 1,
          'however': 1,
          'happier': 1,
          'spending': 1,
          'nights': 1,
          'derogatory': 1,
          'used': 1,
          'masters': 1,
          'nit': 1,
          'quickly': 1,
          'apparent': 1,
          'despite': 1,
          'overt': 1,
          'love': 1,
          'girl': 1,
          'brenda': 1,
          'sykes': 1,
          'considers': 1,
          'tainted': 1,
          'goods': 1,
          'wedding': 1,
          'night': 1,
          'pleasured': 1,
          'nof': 1,
          'course': 1,
          'fine': 1,
          'hes': 1,
          'numerous': 1,
          'girls': 1,
          'wife': 1,
          'lady': 1,
          'wedlock': 1,
          'destroys': 1,
          'capacity': 1,
          'care': 1,
          'usually': 1,
          'left': 1,
          'lonely': 1,
          'sexstarved': 1,
          'sleeping': 1,
          'nblanche': 1,
          'gets': 1,
          'back': 1,
          'seducing': 1,
          'studly': 1,
          'bearing': 1,
          'stand': 1,
          'idea': 1,
          'halfblack': 1,
          'okay': 1,
          'pregnant': 1,
          'kills': 1,
          'letting': 1,
          'bleed': 1,
          'death': 1,
          'poisons': 1,
          'shoots': 1,
          'twice': 1,
          'shoulder': 1,
          'pushes': 1,
          'giant': 1,
          'cauldron': 1,
          'water': 1,
          'nyes': 1,
          'read': 1,
          'right': 1,
          'ends': 1,
          'revenge': 1,
          'alive': 1,
          'njudging': 1,
          'plot': 1,
          'sexploitation': 1,
          'main': 1,
          'blacks': 1,
          'whites': 1,
          'together': 1,
          'possible': 1,
          'slightest': 1,
          'commentary': 1,
          'mean': 1,
          '19th': 1,
          'century': 1,
          'society': 1,
          'nwhen': 1,
          'released': 1,
          '1975': 1,
          'still': 1,
          'bit': 1,
          'shocker': 1,
          'miscegenation': 1,
          'screen': 1,
          'graphic': 1,
          'detail': 1,
          'way': 1,
          'could': 1,
          'revise': 1,
          'cinematic': 1,
          'attracting': 1,
          'large': 1,
          'audiences': 1,
          'curious': 1,
          'voyeurs': 1,
          'ndramatically': 1,
          'unfocused': 1,
          'historically': 1,
          'mostly': 1,
          'confused': 1,
          'nif': 1,
          'judge': 1,
          'walk': 1,
          'away': 1,
          'system': 1,
          'american': 1,
          'sexuality': 1,
          'economics': 1,
          'nnot': 1,
          'working': 1,
          'except': 1,
          'house': 1,
          'servants': 1,
          'men': 1,
          'spend': 1,
          'sitting': 1,
          'around': 1,
          'sole': 1,
          'free': 1,
          'historical': 1,
          'basis': 1,
          'often': 1,
          'overwhelming': 1,
          'emphasis': 1,
          'aspect': 1,
          'gives': 1,
          'unpleasant': 1,
          'taste': 1,
          'cheap': 1,
          'flick': 1,
          'theres': 1,
          'plenty': 1,
          'violence': 1,
          'fights': 1,
          'vicious': 1,
          'beatings': 1,
          'shootings': 1,
          'aforementioned': 1,
          'sequence': 1,
          'thrown': 1,
          'measure': 1,
          'nsome': 1,
          'tried': 1,
          'write': 1,
          'blaxploitation': 1,
          'quicklymade': 1,
          'lowbudget': 1,
          'appealing': 1,
          'sensibilities': 1,
          'early': 1,
          'seventies': 1,
          'studiofinanced': 1,
          'paramount': 1,
          'pictures': 1,
          'produced': 1,
          'dino': 1,
          'de': 1,
          'laurentiis': 1,
          'grandiose': 1,
          'italian': 1,
          'producer': 1,
          'notorious': 1,
          'productions': 1,
          'bible': 1,
          'remake': 1,
          'kong': 1,
          '1976': 1,
          'illfated': 1,
          'dune': 1,
          '1984': 1,
          'director': 1,
          'richard': 1,
          'fleischer': 1,
          'veteran': 1,
          'best': 1,
          'known': 1,
          'several': 1,
          'special': 1,
          'effectsladen': 1,
          'action': 1,
          '20': 1,
          '000': 1,
          'leagues': 1,
          'sea': 1,
          '1954': 1,
          'fantastic': 1,
          'voyage': 1,
          'well': 1,
          'superior': 1,
          'suspense': 1,
          'narrow': 1,
          'margin': 1,
          '1952': 1,
          'supermarket': 1,
          'bestseller': 1,
          'ostott': 1,
          'subsequent': 1,
          'play': 1,
          'jack': 1,
          'kirkland': 1,
          'penned': 1,
          'norman': 1,
          'wexler': 1,
          'nominated': 1,
          'years': 1,
          'earlier': 1,
          'work': 1,
          'serpico': 1,
          'njames': 1,
          'wellknown': 1,
          'respected': 1,
          'already': 1,
          'three': 1,
          'nominations': 1,
          'belt': 1,
          'appeared': 1,
          'promising': 1,
          'career': 1,
          'bad': 1,
          'reasons': 1,
          'experienced': 1,
          'filmmakers': 1,
          'front': 1,
          'camera': 1,
          'lousy': 1,
          'job': 1,
          'nwexlers': 1,
          'poor': 1,
          'hokum': 1,
          'bordering': 1,
          'offensive': 1,
          'combines': 1,
          'slavetalk': 1,
          'yessuh': 1,
          'massuh': 1,
          'fer': 1,
          'whutre': 1,
          'gittin': 1,
          'outta': 1,
          'contemporary': 1,
          'militant': 1,
          'hang': 1,
          'gon': 1,
          'know': 1,
          'killed': 1,
          'brother': 1,
          'nfleischers': 1,
          'direction': 1,
          'clumsy': 1,
          'scenes': 1,
          'give': 1,
          'performances': 1,
          'whose': 1,
          'constant': 1,
          'shrieking': 1,
          'finally': 1,
          'becomes': 1,
          'laughable': 1,
          'nnevertheless': 1,
          'due': 1,
          'ndespite': 1,
          'exploitative': 1,
          'first': 1,
          'take': 1,
          'alternative': 1,
          'nuntil': 1,
          'kind': 1,
          'underlying': 1,
          'dealing': 1,
          'neven': 1,
          'classics': 1,
          'gone': 1,
          'wind': 1,
          '1939': 1,
          'inherently': 1,
          'racist': 1,
          'glossing': 1,
          'subject': 1,
          'matter': 1,
          'reassessed': 1,
          'showed': 1,
          'wasnt': 1,
          'beautiful': 1,
          'plantations': 1,
          'green': 1,
          'fields': 1,
          'pretty': 1,
          'sunsets': 1,
          'nbut': 1,
          'constantly': 1,
          'undermined': 1,
          'negligible': 1,
          'pointofview': 1,
          'claims': 1,
          'perspective': 1,
          'narrative': 1,
          'focus': 1,
          'soap': 1,
          'opera': 1,
          'tales': 1,
          'nwith': 1,
          'little': 1,
          'maturity': 1,
          'different': 1,
          'handling': 1,
          'effective': 1,
          'nwhile': 1,
          'portrays': 1,
          'aspects': 1,
          'deals': 1,
          'issues': 1,
          'brings': 1,
          'wexlers': 1,
          'refuses': 1,
          'move': 1,
          'beyond': 1,
          'surface': 1,
          'level': 1,
          'trashily': 1,
          'vicarious': 1,
          'viewing': 1,
          'great': 1,
          'deal': 1,
          'honestly': 1,
          'exploring': 1,
          'sexual': 1,
          'relationship': 1,
          'nsteven': 1,
          'touched': 1,
          'topic': 1,
          'schindlers': 1,
          'list': 1,
          '1993': 1,
          'looking': 1,
          'nazi': 1,
          'officer': 1,
          'writhing': 1,
          'inner': 1,
          'turmoil': 1,
          'feelings': 1,
          'jewish': 1,
          'maid': 1,
          'difference': 1,
          'dealt': 1,
          'situation': 1,
          'fair': 1,
          'unexploitive': 1,
          'manner': 1,
          'focused': 1,
          'inherent': 1,
          'dilemma': 1,
          'satisfied': 1,
          'show': 1,
          'skin': 1,
          'overshadows': 1,
          'social': 1,
          'accomplished': 1,
          'nneg': 1}),
 Counter({'film': 23,
          'show': 10,
          'world': 8,
          'really': 8,
          'scene': 8,
          'one': 8,
          'teen': 8,
          'nthe': 8,
          'kind': 8,
          'bad': 8,
          'nand': 7,
          'something': 7,
          'everything': 7,
          'make': 6,
          'wants': 6,
          'go': 6,
          'angst': 6,
          'amy': 6,
          'xavier': 6,
          'films': 6,
          'horrible': 5,
          'like': 5,
          'sex': 5,
          'people': 5,
          'nhe': 5,
          'dont': 5,
          'two': 4,
          'araki': 4,
          'teenagers': 4,
          'scenes': 4,
          'takes': 4,
          'place': 4,
          'know': 4,
          'n': 4,
          'doom': 4,
          'generation': 4,
          'would': 4,
          'scream': 4,
          'thing': 4,
          'get': 4,
          'theyre': 4,
          'nit': 3,
          'basically': 3,
          'example': 3,
          'another': 3,
          'says': 3,
          'man': 3,
          'cant': 3,
          'even': 3,
          'nits': 3,
          'angsty': 3,
          'teens': 3,
          'play': 3,
          'james': 3,
          'duval': 3,
          'kill': 3,
          'seen': 3,
          'doesnt': 3,
          'want': 3,
          'manner': 3,
          'reason': 3,
          'level': 3,
          'nheres': 3,
          'jordan': 3,
          'clerk': 3,
          'makes': 3,
          'say': 3,
          'head': 3,
          'ni': 3,
          'sick': 3,
          'violence': 3,
          'thinks': 3,
          'dead': 3,
          'still': 3,
          'peter': 3,
          'look': 3,
          'didnt': 3,
          'theres': 3,
          'dispondent': 3,
          'much': 3,
          'dialogue': 2,
          'taken': 2,
          'bit': 2,
          'protagonists': 2,
          'somewhere': 2,
          'gregg': 2,
          'cheap': 2,
          'gets': 2,
          'better': 2,
          'na': 2,
          'middle': 2,
          'oh': 2,
          'im': 2,
          'lines': 2,
          'life': 2,
          'guy': 2,
          'right': 2,
          'road': 2,
          'trip': 2,
          'also': 2,
          'har': 2,
          'blue': 2,
          'macgowan': 2,
          'white': 2,
          'day': 2,
          'red': 2,
          'jonathan': 2,
          'schaech': 2,
          'way': 2,
          'symbolism': 2,
          'nhuh': 2,
          'happen': 2,
          'weird': 2,
          'easy': 2,
          'nbut': 2,
          'forgets': 2,
          'surreal': 2,
          'real': 2,
          'food': 2,
          'stuff': 2,
          'mind': 2,
          'tells': 2,
          'put': 2,
          'fuck': 2,
          'note': 2,
          'shotgun': 2,
          'njordan': 2,
          'wallet': 2,
          'car': 2,
          'asks': 2,
          'nowhere': 2,
          'clean': 2,
          'hell': 2,
          'art': 2,
          'gory': 2,
          'today': 2,
          'long': 2,
          'taking': 2,
          'satirical': 2,
          'happens': 2,
          'watches': 2,
          'masturbates': 2,
          'semen': 2,
          'hand': 2,
          'trio': 2,
          'giant': 2,
          'could': 2,
          'probably': 2,
          'signed': 2,
          'actors': 2,
          'annoying': 2,
          'line': 2,
          'phase': 2,
          'experimenting': 2,
          'parents': 2,
          'express': 2,
          'graphic': 2,
          'nhow': 2,
          'hed': 2,
          'every': 2,
          'talented': 2,
          'worst': 2,
          'performance': 2,
          'slacker': 2,
          'least': 2,
          'song': 2,
          'almost': 1,
          'completely': 1,
          'context': 1,
          'jazzed': 1,
          'inept': 1,
          'spoken': 1,
          'serves': 1,
          'perfect': 1,
          'especially': 1,
          'realize': 1,
          'exchange': 1,
          'meant': 1,
          'seriously': 1,
          'nmr': 1,
          'imhavingamidlifecrisis': 1,
          'writer': 1,
          'director': 1,
          'important': 1,
          'feel': 1,
          'nby': 1,
          'surrealism': 1,
          'moronic': 1,
          'exchanges': 1,
          'noh': 1,
          'similar': 1,
          'said': 1,
          'dunno': 1,
          'fiftieth': 1,
          'counting': 1,
          'several': 1,
          'masturbation': 1,
          'nin': 1,
          'humping': 1,
          'away': 1,
          'top': 1,
          'along': 1,
          'ever': 1,
          'wonder': 1,
          'nsorry': 1,
          'foreplay': 1,
          'act': 1,
          'coitus': 1,
          'nof': 1,
          'course': 1,
          'expect': 1,
          'written': 1,
          'directed': 1,
          'spell': 1,
          'first': 1,
          'name': 1,
          'yes': 1,
          'joke': 1,
          'done': 1,
          'advertised': 1,
          'movie': 1,
          'around': 1,
          'killing': 1,
          'others': 1,
          'attack': 1,
          'slogans': 1,
          'fourletter': 1,
          'word': 1,
          'hardy': 1,
          'rose': 1,
          'later': 1,
          'buxom': 1,
          'tatum': 1,
          'jordon': 1,
          'randy': 1,
          'quaids': 1,
          'son': 1,
          'independence': 1,
          'pick': 1,
          'homicidal': 1,
          'maniac': 1,
          'lead': 1,
          'guitarist': 1,
          'nred': 1,
          'three': 1,
          'things': 1,
          'order': 1,
          '1': 1,
          '2': 1,
          'run': 1,
          '3': 1,
          'remix': 1,
          'bunch': 1,
          'far': 1,
          'superior': 1,
          'ngregg': 1,
          'obviously': 1,
          'rider': 1,
          'natural': 1,
          'born': 1,
          'killers': 1,
          'kalifornia': 1,
          'tries': 1,
          'borrow': 1,
          'elements': 1,
          'pop': 1,
          'culture': 1,
          'reference': 1,
          'guide': 1,
          'either': 1,
          'represented': 1,
          'dug': 1,
          'deep': 1,
          'subjects': 1,
          'brought': 1,
          'deeper': 1,
          'sole': 1,
          'deal': 1,
          'supposed': 1,
          'earlier': 1,
          'quicke': 1,
          'mart': 1,
          'type': 1,
          'namy': 1,
          'smoking': 1,
          'asian': 1,
          'love': 1,
          'racist': 1,
          'nshe': 1,
          'points': 1,
          'puts': 1,
          'reluctantly': 1,
          'hot': 1,
          'dogs': 1,
          'counter': 1,
          'cash': 1,
          'register': 1,
          'rings': 1,
          '6': 1,
          '66': 1,
          'stop': 1,
          'checks': 1,
          'left': 1,
          'well': 1,
          'brings': 1,
          'money': 1,
          'nthey': 1,
          'ready': 1,
          'ditched': 1,
          'pops': 1,
          'fights': 1,
          'ends': 1,
          'blowing': 1,
          'clerks': 1,
          'wound': 1,
          'shown': 1,
          'flying': 1,
          'air': 1,
          'lands': 1,
          'fryer': 1,
          'begins': 1,
          'object': 1,
          'gross': 1,
          'naraki': 1,
          'extreme': 1,
          'nwrong': 1,
          'resistance': 1,
          'gore': 1,
          'nwhen': 1,
          'george': 1,
          'romero': 1,
          'made': 1,
          'dawn': 1,
          'flick': 1,
          'control': 1,
          'able': 1,
          'nsame': 1,
          'goes': 1,
          'jacksons': 1,
          'disgustingly': 1,
          'alive': 1,
          'features': 1,
          '30': 1,
          'minute': 1,
          'fest': 1,
          'blood': 1,
          'guts': 1,
          'dismemberments': 1,
          'flesh': 1,
          'chewing': 1,
          'assorted': 1,
          'ending': 1,
          'lawn': 1,
          'mower': 1,
          'strapped': 1,
          'body': 1,
          'sorts': 1,
          'zombies': 1,
          'controled': 1,
          'purpose': 1,
          'sticks': 1,
          'else': 1,
          'couple': 1,
          'bath': 1,
          'tub': 1,
          'licks': 1,
          'window': 1,
          'falls': 1,
          'backwards': 1,
          'attacks': 1,
          'stabbed': 1,
          'crotch': 1,
          'sword': 1,
          'fast': 1,
          'employee': 1,
          'stalks': 1,
          'arm': 1,
          'shot': 1,
          'various': 1,
          'annoyances': 1,
          'nalso': 1,
          'million': 1,
          'camoes': 1,
          'wide': 1,
          'assortment': 1,
          'getting': 1,
          'otoole': 1,
          'helen': 1,
          'mirren': 1,
          'malcolm': 1,
          'macdowell': 1,
          'john': 1,
          'gielgud': 1,
          'caligula': 1,
          'npeople': 1,
          'indie': 1,
          'parker': 1,
          'posey': 1,
          'nicky': 1,
          'katt': 1,
          'alternative': 1,
          'rock': 1,
          'stars': 1,
          'skinny': 1,
          'puppy': 1,
          'perry': 1,
          'farrel': 1,
          'hollywood': 1,
          'madam': 1,
          'heidi': 1,
          'fleiss': 1,
          'christopher': 1,
          'brady': 1,
          'mcknight': 1,
          'amanda': 1,
          'bearse': 1,
          'margaret': 1,
          'cho': 1,
          'grace': 1,
          'screen': 1,
          'matter': 1,
          'seconds': 1,
          'disappear': 1,
          'return': 1,
          'main': 1,
          'plot': 1,
          'nwhy': 1,
          'nso': 1,
          'point': 1,
          'hey': 1,
          'fill': 1,
          'blank': 1,
          'nwow': 1,
          'ngimme': 1,
          'break': 1,
          'meaning': 1,
          'pretty': 1,
          'detect': 1,
          'precious': 1,
          'entities': 1,
          'collide': 1,
          'explosion': 1,
          'horrific': 1,
          'notherwise': 1,
          'defined': 1,
          'belief': 1,
          'teenager': 1,
          'nlook': 1,
          '19': 1,
          'years': 1,
          'old': 1,
          'went': 1,
          'brief': 1,
          'curiously': 1,
          'lasted': 1,
          'taste': 1,
          'nirvana': 1,
          'nive': 1,
          'since': 1,
          'moved': 1,
          'annoyingly': 1,
          'sophomoric': 1,
          'ignorant': 1,
          'dealing': 1,
          'serious': 1,
          'beating': 1,
          'wrong': 1,
          'horse': 1,
          'npart': 1,
          'testing': 1,
          'waters': 1,
          'whining': 1,
          'awful': 1,
          'purposely': 1,
          'feeling': 1,
          'nthis': 1,
          'characters': 1,
          'great': 1,
          'punished': 1,
          'try': 1,
          'defend': 1,
          'totally': 1,
          'overcome': 1,
          'fault': 1,
          'worlds': 1,
          'nwhat': 1,
          'need': 1,
          'reality': 1,
          'check': 1,
          'easily': 1,
          'harmed': 1,
          'part': 1,
          'learning': 1,
          'doomed': 1,
          'nothing': 1,
          'nhence': 1,
          'title': 1,
          'nnot': 1,
          'fallacy': 1,
          'intelligent': 1,
          'coherent': 1,
          'neverythings': 1,
          'overly': 1,
          'licking': 1,
          'talking': 1,
          'decapitated': 1,
          'constantly': 1,
          'back': 1,
          'issue': 1,
          'nif': 1,
          'competence': 1,
          'writing': 1,
          'direction': 1,
          'approach': 1,
          'problems': 1,
          'think': 1,
          'incompetent': 1,
          'single': 1,
          'possible': 1,
          'take': 1,
          'acting': 1,
          'nrose': 1,
          'nyes': 1,
          'proved': 1,
          'shes': 1,
          'christened': 1,
          'actresses': 1,
          'working': 1,
          'nher': 1,
          'entire': 1,
          'onenote': 1,
          'bitchy': 1,
          'cries': 1,
          'animal': 1,
          'forced': 1,
          'laughable': 1,
          'nequally': 1,
          'serial': 1,
          'killer': 1,
          'someone': 1,
          'remorse': 1,
          'emotions': 1,
          'cause': 1,
          'strain': 1,
          'nhis': 1,
          'granted': 1,
          'nlets': 1,
          'keanu': 1,
          'reeves': 1,
          'brando': 1,
          'stuttering': 1,
          'worse': 1,
          'deemed': 1,
          'actor': 1,
          'lots': 1,
          'got': 1,
          'youre': 1,
          'convinced': 1,
          'opens': 1,
          'club': 1,
          'playing': 1,
          'nine': 1,
          'inch': 1,
          'nails': 1,
          'banal': 1,
          'heresy': 1,
          'god': 1,
          'deadand': 1,
          'caresif': 1,
          'hellill': 1,
          'see': 1,
          'plays': 1,
          'strobe': 1,
          'lights': 1,
          'patrons': 1,
          'dancing': 1,
          'pans': 1,
          'standing': 1,
          'looking': 1,
          'closes': 1,
          'looks': 1,
          'camera': 1,
          'nno': 1,
          'explanation': 1,
          'necessary': 1,
          'finally': 1,
          'grow': 1,
          'nreally': 1,
          'nmove': 1,
          'basement': 1,
          'read': 1,
          'salinger': 1,
          'job': 1,
          'quit': 1,
          'nneg': 1}),
 Counter({'chester': 6,
          'team': 5,
          'doesnt': 4,
          'film': 4,
          'comedy': 3,
          'girls': 3,
          'soccer': 3,
          'even': 3,
          'reason': 3,
          'sports': 3,
          'dress': 3,
          'martha': 3,
          'bad': 3,
          'ladybugs': 2,
          'cross': 2,
          'dressing': 2,
          'dangerfield': 2,
          'nthis': 2,
          'play': 2,
          'like': 2,
          'sitcom': 2,
          'nhe': 2,
          'thinks': 2,
          'get': 2,
          'nwhat': 2,
          'know': 2,
          'seem': 2,
          'less': 2,
          'didnt': 2,
          'much': 2,
          'bess': 2,
          'matthew': 2,
          'girl': 2,
          'story': 2,
          'seen': 2,
          'going': 2,
          'typical': 1,
          'relies': 1,
          'three': 1,
          'supposed': 1,
          'guarantees': 1,
          'pathetic': 1,
          'beats': 1,
          'champs': 1,
          'presence': 1,
          'rodney': 1,
          'picture': 1,
          'children': 1,
          'aimed': 1,
          'nand': 1,
          'told': 1,
          '91minute': 1,
          'instead': 1,
          'feature': 1,
          'nrodney': 1,
          'stars': 1,
          'lee': 1,
          'total': 1,
          'schmuck': 1,
          'working': 1,
          'huge': 1,
          'corporation': 1,
          'obviously': 1,
          'lot': 1,
          'self': 1,
          'esteem': 1,
          'kiss': 1,
          'ahead': 1,
          'volunteering': 1,
          'coach': 1,
          'companys': 1,
          'shock': 1,
          'learn': 1,
          'assistant': 1,
          'julie': 1,
          'jackee': 1,
          'absolutely': 1,
          'nothing': 1,
          'game': 1,
          'players': 1,
          'ni': 1,
          'laugh': 1,
          'annoy': 1,
          'nchesters': 1,
          'fiancee': 1,
          'graff': 1,
          'got': 1,
          'promotion': 1,
          'addition': 1,
          'coaching': 1,
          'position': 1,
          'course': 1,
          'slacker': 1,
          'son': 1,
          'poorly': 1,
          'school': 1,
          'kicked': 1,
          'teams': 1,
          'njonathon': 1,
          'brandis': 1,
          'nice': 1,
          'surprise': 1,
          'agrees': 1,
          'named': 1,
          'help': 1,
          'probably': 1,
          'crush': 1,
          'plays': 1,
          'original': 1,
          'ideas': 1,
          'another': 1,
          'retread': 1,
          'underdog': 1,
          'mixed': 1,
          'nunfortunately': 1,
          'isnt': 1,
          'smart': 1,
          'enough': 1,
          'upon': 1,
          'drag': 1,
          'aspect': 1,
          'nin': 1,
          'fact': 1,
          'downplays': 1,
          'heavily': 1,
          'totally': 1,
          'unbelievable': 1,
          'ncould': 1,
          'obvious': 1,
          'boy': 1,
          'wears': 1,
          'wig': 1,
          'without': 1,
          'makeup': 1,
          'dont': 1,
          'give': 1,
          'falsies': 1,
          'nbrandis': 1,
          'bother': 1,
          'mimic': 1,
          'voice': 1,
          'either': 1,
          'nthen': 1,
          'pointless': 1,
          'scene': 1,
          'shop': 1,
          'nmartha': 1,
          'field': 1,
          'would': 1,
          'buy': 1,
          'njust': 1,
          'think': 1,
          'character': 1,
          'useful': 1,
          'disappears': 1,
          'wanders': 1,
          'aimlessly': 1,
          'looking': 1,
          'new': 1,
          'plot': 1,
          'pick': 1,
          'nwhen': 1,
          'discovers': 1,
          'whats': 1,
          'really': 1,
          'breaks': 1,
          'relationship': 1,
          'forgotten': 1,
          'focuses': 1,
          'tension': 1,
          'boss': 1,
          'couldve': 1,
          'cliche': 1,
          'feels': 1,
          'need': 1,
          'go': 1,
          'tangents': 1,
          'completely': 1,
          'unnecessary': 1,
          'ntheres': 1,
          'feel': 1,
          'especially': 1,
          'socalled': 1,
          'serious': 1,
          'moments': 1,
          'confusion': 1,
          'characters': 1,
          'nive': 1,
          'worse': 1,
          'movies': 1,
          'contained': 1,
          'sort': 1,
          'bizarre': 1,
          'charm': 1,
          'turns': 1,
          'sour': 1,
          'ndangerfield': 1,
          'finally': 1,
          'gets': 1,
          'respect': 1,
          'end': 1,
          'price': 1,
          'nneg': 1}),
 Counter({'really': 5,
          'scenes': 5,
          'nthe': 4,
          'bowling': 4,
          'farrelly': 3,
          'brothers': 3,
          'duo': 3,
          'dumb': 3,
          'thats': 3,
          'roy': 3,
          'hes': 3,
          'amish': 3,
          'angel': 3,
          'movie': 2,
          'stupid': 2,
          'comedy': 2,
          'best': 2,
          'kingpin': 2,
          'film': 2,
          'directed': 2,
          'something': 2,
          'mary': 2,
          'problem': 2,
          'bowler': 2,
          'top': 2,
          'however': 2,
          'runs': 2,
          'murray': 2,
          'well': 2,
          'hand': 2,
          'quite': 2,
          'course': 2,
          'kid': 2,
          'particularly': 2,
          'roys': 2,
          'way': 2,
          'hustler': 2,
          'wasnt': 2,
          'fact': 2,
          'funny': 2,
          'throw': 2,
          'ni': 2,
          'mean': 2,
          'bit': 2,
          'think': 2,
          'happy': 1,
          'bastards': 1,
          'quick': 1,
          'review': 1,
          'concept': 1,
          'enjoying': 1,
          'realized': 1,
          'keeping': 1,
          'nshift': 1,
          'gears': 1,
          'even': 1,
          'audience': 1,
          'thrown': 1,
          'miserably': 1,
          'control': 1,
          'nsadly': 1,
          'case': 1,
          'brought': 1,
          'us': 1,
          'theres': 1,
          'dumber': 1,
          'nsince': 1,
          'didnt': 1,
          'write': 1,
          'script': 1,
          'assume': 1,
          'part': 1,
          'story': 1,
          'seems': 1,
          'good': 1,
          'enough': 1,
          'pro': 1,
          '1970s': 1,
          'name': 1,
          'munson': 1,
          'woody': 1,
          'harrelson': 1,
          'sitting': 1,
          'world': 1,
          'nhis': 1,
          'popularity': 1,
          'gone': 1,
          'roof': 1,
          'getting': 1,
          'career': 1,
          'ground': 1,
          'nthen': 1,
          'ed': 1,
          'mccracken': 1,
          'bill': 1,
          'rival': 1,
          'hardly': 1,
          'real': 1,
          'consideration': 1,
          'anything': 1,
          'nthese': 1,
          'two': 1,
          'form': 1,
          'illtimed': 1,
          'relationship': 1,
          'involves': 1,
          'risky': 1,
          'betting': 1,
          'sees': 1,
          'coming': 1,
          'eds': 1,
          'abandoned': 1,
          'lose': 1,
          'ball': 1,
          'machine': 1,
          'nforward': 1,
          'seventeen': 1,
          'years': 1,
          'later': 1,
          'become': 1,
          'loser': 1,
          'complete': 1,
          'mechanical': 1,
          'tornup': 1,
          'car': 1,
          'occasional': 1,
          'knocking': 1,
          'uglyass': 1,
          'landlord': 1,
          'avoid': 1,
          'paying': 1,
          'rent': 1,
          'nhowever': 1,
          'finds': 1,
          'glimmer': 1,
          'hope': 1,
          'upon': 1,
          'visit': 1,
          'local': 1,
          'alley': 1,
          'named': 1,
          'ishmael': 1,
          'randy': 1,
          'quaid': 1,
          'arm': 1,
          'nwith': 1,
          'kids': 1,
          'help': 1,
          'figures': 1,
          'known': 1,
          'biggest': 1,
          'tournament': 1,
          'rapidly': 1,
          'approaching': 1,
          'reno': 1,
          'nevada': 1,
          'nof': 1,
          'needs': 1,
          'coaxing': 1,
          'consider': 1,
          'nthis': 1,
          'leads': 1,
          'comic': 1,
          'process': 1,
          'removing': 1,
          'horseshoes': 1,
          'milking': 1,
          'cow': 1,
          'nfinally': 1,
          'get': 1,
          'road': 1,
          'along': 1,
          'pick': 1,
          'additional': 1,
          'helper': 1,
          'beautiful': 1,
          'played': 1,
          'gorgeous': 1,
          'vanessa': 1,
          'main': 1,
          'nin': 1,
          'rather': 1,
          'hilarious': 1,
          'aformentioned': 1,
          'explanation': 1,
          'children': 1,
          'involving': 1,
          'cheese': 1,
          'grater': 1,
          'nbut': 1,
          'ntheres': 1,
          'couple': 1,
          'serious': 1,
          'entire': 1,
          'momentum': 1,
          'like': 1,
          'abuse': 1,
          'takes': 1,
          'exboyfriend': 1,
          'necessary': 1,
          'ncouldnt': 1,
          'handled': 1,
          'wackier': 1,
          'ethics': 1,
          'nparticularly': 1,
          'vehicle': 1,
          'hair': 1,
          'gel': 1,
          'easily': 1,
          'mistaken': 1,
          'nthat': 1,
          'ruined': 1,
          'bad': 1,
          'acting': 1,
          'notch': 1,
          'especially': 1,
          'worth': 1,
          'noting': 1,
          'nstill': 1,
          'youre': 1,
          'going': 1,
          'ok': 1,
          'nat': 1,
          'least': 1,
          'got': 1,
          'back': 1,
          'track': 1,
          'id': 1,
          'still': 1,
          'little': 1,
          'irked': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'costumes': 3,
          'potential': 3,
          'seemed': 2,
          'like': 2,
          'sets': 2,
          '60s': 2,
          'played': 2,
          'myers': 2,
          'humor': 2,
          'funniest': 2,
          'film': 2,
          'shagadellic': 1,
          'groovy': 1,
          'baby': 1,
          'n': 1,
          'smashing': 1,
          'nadorn': 1,
          '14': 1,
          'page': 1,
          'ad': 1,
          'tabbed': 1,
          '1': 1,
          'comedy': 1,
          'america': 1,
          'may': 1,
          '8th': 1,
          'ndid': 1,
          'attend': 1,
          'nat': 1,
          '87': 1,
          'minutes': 1,
          'overlong': 1,
          'snl': 1,
          'skit': 1,
          'steroids': 1,
          'length': 1,
          'unfunny': 1,
          'nyes': 1,
          'interesting': 1,
          'exaggeration': 1,
          'pop': 1,
          'frills': 1,
          'yes': 1,
          'concept': 1,
          'dealing': 1,
          'secret': 1,
          'agentpop': 1,
          'icon': 1,
          'awakened': 1,
          'cryogenic': 1,
          'slumber': 1,
          'battle': 1,
          'arch': 1,
          'enemy': 1,
          'dr': 1,
          'nevil': 1,
          'also': 1,
          'present': 1,
          'day': 1,
          'great': 1,
          'deal': 1,
          'nfun': 1,
          'scenery': 1,
          'make': 1,
          'lets': 1,
          'throw': 1,
          'hefty': 1,
          'dose': 1,
          'bathroom': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'good': 1,
          'bubbles': 1,
          'bathtub': 1,
          'joke': 1,
          'much': 1,
          'next': 1,
          'person': 1,
          'type': 1,
          'thing': 1,
          'waste': 1,
          'yuor': 1,
          'talent': 1,
          'money': 1,
          'nbut': 1,
          'way': 1,
          'things': 1,
          'work': 1,
          'days': 1,
          'business': 1,
          'call': 1,
          'people': 1,
          'believe': 1,
          'ni': 1,
          'give': 1,
          'stars': 1,
          'sadly': 1,
          'unmet': 1,
          'nneg': 1}),
 Counter({'may': 5,
          'come': 5,
          'film': 5,
          'dreams': 4,
          'robin': 3,
          'chris': 3,
          'get': 3,
          'nthe': 3,
          'help': 3,
          'emotion': 3,
          'williams': 2,
          'time': 2,
          'redeeming': 2,
          'incredible': 2,
          'effects': 2,
          'meets': 2,
          'great': 2,
          'kids': 2,
          'sadly': 2,
          'car': 2,
          'crash': 2,
          'worse': 2,
          'goes': 2,
          'heaven': 2,
          'gooding': 2,
          'jnr': 2,
          'cant': 2,
          'n': 2,
          'like': 2,
          'hell': 2,
          'traveller': 2,
          'von': 2,
          'sydow': 2,
          'novel': 2,
          'matheson': 2,
          'spielberg': 2,
          'never': 2,
          'movie': 2,
          'characters': 2,
          'face': 2,
          'performance': 2,
          'look': 2,
          'pretty': 2,
          'nothing': 2,
          'special': 2,
          'adds': 2,
          'best': 2,
          'performers': 2,
          'script': 2,
          'actors': 2,
          'music': 2,
          'scene': 2,
          'ninstead': 2,
          'theres': 2,
          'hopeless': 2,
          'ending': 2,
          'nbut': 2,
          '1998': 2,
          'without': 1,
          'beard': 1,
          'returns': 1,
          'drama': 1,
          'sloppy': 1,
          'sickly': 1,
          'sweet': 1,
          'fantasy': 1,
          'features': 1,
          'apart': 1,
          'nhe': 1,
          'plays': 1,
          'nielsen': 1,
          'annie': 1,
          'annabella': 1,
          'sciora': 1,
          'promptly': 1,
          'marries': 1,
          'nthey': 1,
          'two': 1,
          'die': 1,
          'njust': 1,
          'couldnt': 1,
          'gets': 1,
          'killed': 1,
          'guide': 1,
          'albert': 1,
          'nannie': 1,
          'take': 1,
          'grief': 1,
          'anymore': 1,
          'kills': 1,
          'sounding': 1,
          'good': 1,
          'fun': 1,
          'far': 1,
          'penalty': 1,
          'suicide': 1,
          'go': 1,
          'mission': 1,
          'try': 1,
          'rescue': 1,
          'using': 1,
          'max': 1,
          'nbased': 1,
          'twilight': 1,
          'zone': 1,
          'writer': 1,
          'richard': 1,
          'clunky': 1,
          'manufactured': 1,
          'material': 1,
          'doused': 1,
          'extra': 1,
          'load': 1,
          'sugar': 1,
          'nthis': 1,
          'made': 1,
          'neverything': 1,
          'wrong': 1,
          'performances': 1,
          'forced': 1,
          'audiences': 1,
          'fail': 1,
          'relate': 1,
          'nwilliams': 1,
          'puts': 1,
          'convincing': 1,
          'upset': 1,
          'thats': 1,
          'ntheres': 1,
          'behind': 1,
          'nscioras': 1,
          'lazy': 1,
          'bogs': 1,
          'whole': 1,
          'nshe': 1,
          'act': 1,
          'nmax': 1,
          'k': 1,
          'ncuba': 1,
          'thankfully': 1,
          'bounce': 1,
          'certainly': 1,
          'performer': 1,
          'nits': 1,
          'shame': 1,
          'character': 1,
          'flat': 1,
          '2d': 1,
          'offers': 1,
          'room': 1,
          'improvement': 1,
          'nall': 1,
          'work': 1,
          'soppy': 1,
          'tries': 1,
          'going': 1,
          'takes': 1,
          'ground': 1,
          'nthere': 1,
          '_some_': 1,
          'scenes': 1,
          'could': 1,
          'real': 1,
          'heartwarmers': 1,
          'faceless': 1,
          'dont': 1,
          'anything': 1,
          'nwhile': 1,
          'films': 1,
          'e': 1,
          'used': 1,
          'direction': 1,
          'pull': 1,
          'masterful': 1,
          'hearttugging': 1,
          'haphazard': 1,
          'expecting': 1,
          'automatically': 1,
          'rather': 1,
          'boring': 1,
          'nsure': 1,
          'michael': 1,
          'kamen': 1,
          'cinematography': 1,
          'isnt': 1,
          'bad': 1,
          'eduardo': 1,
          'serra': 1,
          'something': 1,
          'lacking': 1,
          'doesnt': 1,
          'filled': 1,
          'romantic': 1,
          'clich': 1,
          'dud': 1,
          'speeches': 1,
          'nrichard': 1,
          'write': 1,
          'awesome': 1,
          'science': 1,
          'fiction': 1,
          'stories': 1,
          'would': 1,
          'embarrassed': 1,
          'bargain': 1,
          'bin': 1,
          'let': 1,
          'alone': 1,
          'converted': 1,
          '70': 1,
          'million': 1,
          'vehicle': 1,
          'ndespite': 1,
          'set': 1,
          'mightily': 1,
          'depressing': 1,
          'rushes': 1,
          'happy': 1,
          'everything': 1,
          'sad': 1,
          'black': 1,
          'make': 1,
          'even': 1,
          'stupid': 1,
          'one': 1,
          'feature': 1,
          'failure': 1,
          'nheaven': 1,
          'truly': 1,
          'places': 1,
          'fit': 1,
          'perfectly': 1,
          'virtual': 1,
          'sets': 1,
          'despite': 1,
          'proves': 1,
          'biggest': 1,
          'disappointment': 1,
          'raising': 1,
          'questions': 1,
          'existence': 1,
          'raises': 1,
          'boredom': 1,
          'nsadly': 1,
          'recommend': 1,
          'give': 1,
          'miss': 1,
          'nbetter': 1,
          'luck': 1,
          'next': 1,
          'na': 1,
          'david': 1,
          'wilcock': 1,
          'review': 1,
          'know': 1,
          'norville': 1,
          'barnes': 1,
          'nneg': 1}),
 Counter({'one': 4,
          'fred': 4,
          'williams': 4,
          'astronaut': 4,
          'much': 4,
          'hes': 4,
          'program': 4,
          'even': 4,
          'kids': 4,
          'n': 3,
          'cant': 3,
          'space': 3,
          'nasa': 3,
          'first': 3,
          'thing': 3,
          'others': 2,
          'movie': 2,
          'take': 2,
          'simple': 2,
          'nfred': 2,
          'nas': 2,
          'mission': 2,
          'think': 2,
          'training': 2,
          'important': 2,
          'like': 2,
          'anything': 2,
          'another': 2,
          'kid': 2,
          'poor': 2,
          'role': 2,
          'would': 2,
          'might': 2,
          'less': 2,
          'example': 2,
          'something': 2,
          'make': 2,
          'admit': 2,
          'little': 2,
          'arent': 2,
          'enjoy': 2,
          'could': 2,
          'catch': 1,
          'phrase': 1,
          'disneys': 1,
          'rocket': 1,
          'man': 1,
          'spoken': 1,
          'z': 1,
          'randall': 1,
          'harland': 1,
          'bumbling': 1,
          'idiot': 1,
          'computer': 1,
          'programmer': 1,
          'turned': 1,
          'continuously': 1,
          'wreaks': 1,
          'havoc': 1,
          'everywhere': 1,
          'goes': 1,
          'wasnt': 1,
          'proclaims': 1,
          'aftermath': 1,
          'stupidity': 1,
          'brings': 1,
          'looks': 1,
          'disgust': 1,
          'nwell': 1,
          'comes': 1,
          'horrible': 1,
          'blame': 1,
          'sure': 1,
          'justify': 1,
          'tag': 1,
          'line': 1,
          'either': 1,
          'dreamed': 1,
          'travel': 1,
          'since': 1,
          'young': 1,
          'boy': 1,
          'turning': 1,
          'clothes': 1,
          'dryer': 1,
          'mock': 1,
          'shuttle': 1,
          'staring': 1,
          'wideeyed': 1,
          'poster': 1,
          'earth': 1,
          '30yearold': 1,
          'hasnt': 1,
          'grown': 1,
          'least': 1,
          'somewhat': 1,
          'closer': 1,
          'goal': 1,
          'designing': 1,
          'software': 1,
          'nwhen': 1,
          'upcoming': 1,
          'mars': 1,
          'becomes': 1,
          'injured': 1,
          'calls': 1,
          'person': 1,
          'knows': 1,
          'programming': 1,
          'inside': 1,
          'fill': 1,
          'void': 1,
          'nyes': 1,
          'although': 1,
          'obviously': 1,
          'klutzy': 1,
          'moron': 1,
          'doesnt': 1,
          'twice': 1,
          'throwing': 1,
          'rigorous': 1,
          'assist': 1,
          'events': 1,
          'time': 1,
          'ever': 1,
          'known': 1,
          'nfor': 1,
          'part': 1,
          'film': 1,
          'watch': 1,
          'takes': 1,
          'amusement': 1,
          'park': 1,
          'laughs': 1,
          'screams': 1,
          'never': 1,
          'breaks': 1,
          'sweat': 1,
          'views': 1,
          'preparation': 1,
          'childs': 1,
          'play': 1,
          'nhis': 1,
          'passive': 1,
          'approach': 1,
          'eventually': 1,
          'leads': 1,
          'many': 1,
          'recordbreaking': 1,
          'feats': 1,
          'dismay': 1,
          'cocky': 1,
          'counterpart': 1,
          'commander': 1,
          'captain': 1,
          'overbeck': 1,
          'william': 1,
          'sadler': 1,
          'held': 1,
          'records': 1,
          'noverbeck': 1,
          'regretfully': 1,
          'accompany': 1,
          'two': 1,
          'red': 1,
          'planet': 1,
          'julie': 1,
          'ford': 1,
          'stupids': 1,
          'jessica': 1,
          'lundy': 1,
          'chimpanzee': 1,
          'civilized': 1,
          'antagonizing': 1,
          'protagonist': 1,
          'nfrom': 1,
          'subjected': 1,
          'lame': 1,
          'gag': 1,
          'dealing': 1,
          'snot': 1,
          'laxatives': 1,
          'flatulence': 1,
          'nyou': 1,
          'know': 1,
          'standard': 1,
          'material': 1,
          'nalmost': 1,
          'sounding': 1,
          'james': 1,
          'stewart': 1,
          'impressionist': 1,
          'awful': 1,
          'starring': 1,
          'nwe': 1,
          'get': 1,
          'feeling': 1,
          'jerry': 1,
          'lewis': 1,
          'peewee': 1,
          'herman': 1,
          'related': 1,
          'produced': 1,
          'inbred': 1,
          'offspring': 1,
          'nwhile': 1,
          'annoying': 1,
          'actors': 1,
          'cater': 1,
          'zany': 1,
          'stupid': 1,
          'comedy': 1,
          'unlikeable': 1,
          'nto': 1,
          'say': 1,
          'understandably': 1,
          'jim': 1,
          'carrey': 1,
          'annoy': 1,
          'guy': 1,
          'funny': 1,
          'nwhy': 1,
          'nbecause': 1,
          'possesses': 1,
          'stupidness': 1,
          'needed': 1,
          'pull': 1,
          'performance': 1,
          'understated': 1,
          'boring': 1,
          'nclassic': 1,
          'comedic': 1,
          'dunces': 1,
          'generally': 1,
          'oblivious': 1,
          'idiocy': 1,
          'nstan': 1,
          'laurel': 1,
          'innocent': 1,
          'troublemaking': 1,
          'immediately': 1,
          'fond': 1,
          'npeter': 1,
          'sellers': 1,
          'inspector': 1,
          'clouseau': 1,
          'selfassured': 1,
          'confident': 1,
          'trip': 1,
          'humor': 1,
          'best': 1,
          'nwilliams': 1,
          'hand': 1,
          'garner': 1,
          'pity': 1,
          'needs': 1,
          'us': 1,
          'love': 1,
          'antiglory': 1,
          'rest': 1,
          'cast': 1,
          'including': 1,
          'bigger': 1,
          'names': 1,
          'smaller': 1,
          'roles': 1,
          'beau': 1,
          'bridges': 1,
          'shelley': 1,
          'duvall': 1,
          'nobody': 1,
          'worth': 1,
          'watching': 1,
          'whatsoever': 1,
          'nthis': 1,
          'fastfood': 1,
          'equivalent': 1,
          'cinema': 1,
          'massproduced': 1,
          'mediocre': 1,
          'priced': 1,
          'hard': 1,
          'stomach': 1,
          'ngiving': 1,
          'oneandahalf': 1,
          'stars': 1,
          'extremely': 1,
          'generous': 1,
          'ill': 1,
          'laughing': 1,
          'times': 1,
          'nthe': 1,
          'amazing': 1,
          'theater': 1,
          'packed': 1,
          'laughter': 1,
          'rarely': 1,
          'heard': 1,
          'children': 1,
          'ni': 1,
          'must': 1,
          'gave': 1,
          'respect': 1,
          'didnt': 1,
          'crack': 1,
          'every': 1,
          'nthen': 1,
          'maybe': 1,
          'asleep': 1,
          'nsome': 1,
          'people': 1,
          'critics': 1,
          'harsh': 1,
          'movies': 1,
          'claiming': 1,
          'adults': 1,
          'targeted': 1,
          'audience': 1,
          'therefore': 1,
          'meant': 1,
          'wont': 1,
          'nsadly': 1,
          'also': 1,
          'true': 1,
          'almost': 1,
          'presented': 1,
          'right': 1,
          'na': 1,
          'twohour': 1,
          'still': 1,
          'shot': 1,
          'dog': 1,
          'cartoonish': 1,
          'voice': 1,
          'entertain': 1,
          'lot': 1,
          'toddlers': 1,
          'artistic': 1,
          'beauty': 1,
          'beast': 1,
          'easily': 1,
          'nand': 1,
          'saying': 1,
          'parents': 1,
          'perspective': 1,
          'isnt': 1,
          'quite': 1,
          'theory': 1,
          'theyre': 1,
          'ones': 1,
          'films': 1,
          'place': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'heyst': 8,
          'jones': 6,
          'film': 6,
          'heysts': 5,
          'mr': 5,
          'victory': 4,
          'conrads': 4,
          'love': 4,
          'relationship': 4,
          'n': 4,
          'novel': 3,
          'alma': 3,
          'characterization': 3,
          'characters': 3,
          'detachment': 3,
          'much': 3,
          'conrad': 2,
          'arrival': 2,
          'sam': 2,
          'ricardo': 2,
          'rufus': 2,
          'sewell': 2,
          'come': 2,
          'nwhile': 2,
          'struggle': 2,
          'lost': 2,
          'character': 2,
          'left': 2,
          'human': 2,
          'involvement': 2,
          'one': 2,
          'hand': 2,
          'dafoes': 2,
          'end': 2,
          'supposed': 2,
          'philosophy': 2,
          'yet': 2,
          'two': 2,
          'true': 2,
          'almas': 2,
          'accent': 2,
          'schomberg': 2,
          'terror': 2,
          'plans': 2,
          'behind': 2,
          'nat': 2,
          'based': 1,
          'set': 1,
          '1914': 1,
          'joseph': 1,
          'spins': 1,
          'tale': 1,
          'pair': 1,
          'lovers': 1,
          'william': 1,
          'dafoe': 1,
          'irene': 1,
          'jacob': 1,
          'seek': 1,
          'refuge': 1,
          'isolated': 1,
          'island': 1,
          'nhowever': 1,
          'idyllic': 1,
          'world': 1,
          'begins': 1,
          'crumble': 1,
          'upon': 1,
          'neil': 1,
          'martin': 1,
          'servant': 1,
          'pedro': 1,
          'graziano': 1,
          'marcelli': 1,
          'steal': 1,
          'rumoured': 1,
          'plunder': 1,
          'largely': 1,
          'complex': 1,
          'sadly': 1,
          'transposes': 1,
          'lacklustre': 1,
          'leads': 1,
          'disappointing': 1,
          'nconrads': 1,
          'adheres': 1,
          'religiously': 1,
          'late': 1,
          'fathers': 1,
          'ways': 1,
          'isolation': 1,
          'nhis': 1,
          'ascetic': 1,
          'lifestyle': 1,
          'thrown': 1,
          'question': 1,
          'meets': 1,
          'helpless': 1,
          'orchestra': 1,
          'girl': 1,
          'charms': 1,
          'voice': 1,
          'embrace': 1,
          'solitude': 1,
          'however': 1,
          'mark': 1,
          'peploes': 1,
          'director': 1,
          'writer': 1,
          'diluted': 1,
          'version': 1,
          'nwithout': 1,
          'properly': 1,
          'establishing': 1,
          'crucial': 1,
          'details': 1,
          'main': 1,
          'shallow': 1,
          'treatment': 1,
          'internal': 1,
          'conflict': 1,
          'non': 1,
          'actualizing': 1,
          'subtext': 1,
          'mammoth': 1,
          'task': 1,
          'though': 1,
          'impossible': 1,
          'flat': 1,
          'acting': 1,
          'excused': 1,
          'attempt': 1,
          'stoicism': 1,
          'nin': 1,
          'witness': 1,
          'renounce': 1,
          'finally': 1,
          'understanding': 1,
          'another': 1,
          'final': 1,
          'transformation': 1,
          'perceptible': 1,
          'lacks': 1,
          'cathartic': 1,
          'revelation': 1,
          'undeniable': 1,
          'nits': 1,
          'absence': 1,
          'unforgivable': 1,
          'seems': 1,
          'concerned': 1,
          'moving': 1,
          'plot': 1,
          'along': 1,
          'said': 1,
          'complete': 1,
          'strangers': 1,
          'nalma': 1,
          'overcome': 1,
          'great': 1,
          'emotional': 1,
          'barriers': 1,
          'namely': 1,
          'underlying': 1,
          'grapples': 1,
          'ignorance': 1,
          'accounts': 1,
          'greatness': 1,
          'njacob': 1,
          'fairskinned': 1,
          'gentle': 1,
          'passionate': 1,
          'handles': 1,
          'role': 1,
          'precision': 1,
          'detailing': 1,
          'nuances': 1,
          'possible': 1,
          'nunfortunately': 1,
          'let': 1,
          'superficial': 1,
          'script': 1,
          'couples': 1,
          'develops': 1,
          'hastily': 1,
          'leaving': 1,
          'subtlety': 1,
          'effaced': 1,
          'replaced': 1,
          'blatant': 1,
          'showandtell': 1,
          'approach': 1,
          'nall': 1,
          'know': 1,
          'mostly': 1,
          'explained': 1,
          'lines': 1,
          'alone': 1,
          'nthis': 1,
          'unsatisfactory': 1,
          'turmoil': 1,
          'experienced': 1,
          'stem': 1,
          'buried': 1,
          'thoughts': 1,
          'emotions': 1,
          'sketchy': 1,
          'handling': 1,
          'stands': 1,
          'sorely': 1,
          'american': 1,
          'inappropriate': 1,
          'since': 1,
          'spent': 1,
          'life': 1,
          'london': 1,
          'jean': 1,
          'yanne': 1,
          'owner': 1,
          'hotel': 1,
          'neill': 1,
          'also': 1,
          'fall': 1,
          'short': 1,
          'meticulous': 1,
          'menacing': 1,
          'vindictive': 1,
          'portrayed': 1,
          'something': 1,
          'enigma': 1,
          'nsam': 1,
          'neils': 1,
          'caricature': 1,
          'slightly': 1,
          'stout': 1,
          'effeminate': 1,
          'softspoken': 1,
          'gentlemanatlarge': 1,
          'nullifies': 1,
          'effect': 1,
          'intended': 1,
          'describes': 1,
          'insolent': 1,
          'spectre': 1,
          'leave': 1,
          'hades': 1,
          'endowed': 1,
          'skin': 1,
          'bones': 1,
          'subtle': 1,
          'power': 1,
          'npoor': 1,
          'aside': 1,
          'kudos': 1,
          'goes': 1,
          'excellent': 1,
          'portrayal': 1,
          'secretary': 1,
          'reckless': 1,
          'ruffian': 1,
          'capable': 1,
          'murder': 1,
          'nsewell': 1,
          'cockney': 1,
          'large': 1,
          'expressive': 1,
          'green': 1,
          'eyes': 1,
          'becomes': 1,
          'unholy': 1,
          'trinity': 1,
          'masterminding': 1,
          'deceitful': 1,
          'back': 1,
          'time': 1,
          'entertained': 1,
          'foolhardiness': 1,
          'ndespite': 1,
          'authentic': 1,
          'setting': 1,
          'marvellous': 1,
          'cinematography': 1,
          'bruno': 1,
          'de': 1,
          'keyzer': 1,
          'images': 1,
          'us': 1,
          'savour': 1,
          'ended': 1,
          'nsourabaya': 1,
          'surrounding': 1,
          'islands': 1,
          'volcanoes': 1,
          'may': 1,
          'charm': 1,
          'mean': 1,
          'nothing': 1,
          'fails': 1,
          'capture': 1,
          'essence': 1,
          'epic': 1,
          'deserves': 1,
          'delicately': 1,
          'interwoven': 1,
          'complexities': 1,
          'story': 1,
          'inadequate': 1,
          'production': 1,
          'told': 1,
          'perhaps': 1,
          'teaching': 1,
          'na': 1,
          'hollow': 1,
          'indeed': 1,
          'flying': 1,
          'inkpots': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'video': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'good': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'mario': 3,
          'van': 3,
          'peebles': 3,
          'jewels': 2,
          'film': 2,
          'couple': 1,
          'criminals': 1,
          'loretta': 1,
          'devine': 1,
          'move': 1,
          'rich': 1,
          'familys': 1,
          'house': 1,
          'hopes': 1,
          'conning': 1,
          'nhowever': 1,
          'someone': 1,
          'else': 1,
          'steals': 1,
          'able': 1,
          'get': 1,
          'nwriter': 1,
          'delivers': 1,
          'clever': 1,
          'script': 1,
          'several': 1,
          'unexpected': 1,
          'plot': 1,
          'twists': 1,
          'director': 1,
          'undermines': 1,
          'high': 1,
          'points': 1,
          'haphazard': 1,
          'camera': 1,
          'work': 1,
          'editing': 1,
          'pacing': 1,
          'nit': 1,
          'felt': 1,
          'though': 1,
          'wrapping': 1,
          'hour': 1,
          'mark': 1,
          'alas': 1,
          'still': 1,
          '35': 1,
          'minutes': 1,
          'go': 1,
          'ndaniel': 1,
          'baldwin': 1,
          'cant': 1,
          'believe': 1,
          'im': 1,
          'type': 1,
          'gives': 1,
          'best': 1,
          'performance': 1,
          'outshining': 1,
          'talented': 1,
          'members': 1,
          'cast': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'ulrich': 6,
          'weapon': 5,
          'ice': 4,
          'gooding': 4,
          'elvis': 4,
          'nthey': 4,
          'chill': 3,
          'factor': 3,
          'speed': 3,
          'one': 3,
          'cream': 3,
          'jr': 3,
          'nthis': 3,
          'must': 3,
          'general': 3,
          'movie': 3,
          'action': 3,
          'like': 3,
          'truck': 2,
          'arlo': 2,
          'cuba': 2,
          'mason': 2,
          'fort': 2,
          'mcgruder': 2,
          '50': 2,
          'degrees': 2,
          'island': 2,
          'virtually': 2,
          'safety': 2,
          'brynner': 2,
          'years': 2,
          'good': 2,
          'selling': 2,
          'man': 2,
          'get': 2,
          'also': 2,
          'nto': 2,
          'put': 2,
          'seems': 2,
          'thats': 2,
          'dialogue': 2,
          'lot': 2,
          'example': 2,
          'every': 2,
          'walked': 2,
          'lines': 2,
          'much': 2,
          'exciting': 2,
          'im': 2,
          'character': 2,
          'could': 2,
          'carbon': 1,
          'copy': 1,
          'notable': 1,
          'exception': 1,
          'instead': 1,
          'speeding': 1,
          'bus': 1,
          'driven': 1,
          'skeet': 1,
          'instructed': 1,
          'dying': 1,
          'scientist': 1,
          'transport': 1,
          'deadly': 1,
          'chemical': 1,
          'military': 1,
          'base': 1,
          'name': 1,
          'particular': 1,
          'nicknamed': 1,
          'kept': 1,
          'temperature': 1,
          'else': 1,
          'shockwave': 1,
          'gooiffy': 1,
          'everything': 1,
          'mile': 1,
          'radius': 1,
          'nthat': 1,
          'would': 1,
          'pretty': 1,
          'nasty': 1,
          'power': 1,
          'revealed': 1,
          'opening': 1,
          'scene': 1,
          'dr': 1,
          'richard': 1,
          'long': 1,
          'david': 1,
          'paymer': 1,
          'conducts': 1,
          'test': 1,
          'isolated': 1,
          'tropical': 1,
          'nlong': 1,
          'accidentally': 1,
          'melts': 1,
          '18': 1,
          'soldiers': 1,
          'defoliates': 1,
          'entire': 1,
          'due': 1,
          'enormously': 1,
          'miscalculated': 1,
          'distance': 1,
          'commanding': 1,
          'officer': 1,
          'peter': 1,
          'firth': 1,
          'sentenced': 1,
          '10': 1,
          'prison': 1,
          'murder': 1,
          'troops': 1,
          'nupon': 1,
          'release': 1,
          'intent': 1,
          'tracking': 1,
          'doctor': 1,
          'snatching': 1,
          'highest': 1,
          'international': 1,
          'bidder': 1,
          'nprotecting': 1,
          'fate': 1,
          'world': 1,
          'drifting': 1,
          'hamburger': 1,
          'flipper': 1,
          'feisty': 1,
          'delivery': 1,
          'elude': 1,
          'brynners': 1,
          'men': 1,
          'nall': 1,
          'course': 1,
          'keep': 1,
          'proves': 1,
          'tricky': 1,
          'namong': 1,
          'wild': 1,
          'adventures': 1,
          'partake': 1,
          'trip': 1,
          'treecovered': 1,
          'mountainside': 1,
          'boat': 1,
          'fist': 1,
          'fight': 1,
          'top': 1,
          'moving': 1,
          'vehicle': 1,
          'crack': 1,
          'dozen': 1,
          'witty': 1,
          'retorts': 1,
          'supposed': 1,
          'find': 1,
          'amusing': 1,
          'simply': 1,
          'ill': 1,
          'use': 1,
          'clever': 1,
          'pun': 1,
          'ndirector': 1,
          'hugh': 1,
          'johnson': 1,
          'mixed': 1,
          'elements': 1,
          'broken': 1,
          'arrow': 1,
          'lethal': 1,
          'series': 1,
          'create': 1,
          'lifelessly': 1,
          'bland': 1,
          'cocktail': 1,
          'chase': 1,
          'nwhen': 1,
          'occasional': 1,
          'audience': 1,
          'oddly': 1,
          'detached': 1,
          'nperhaps': 1,
          'weve': 1,
          'already': 1,
          'waded': 1,
          'pool': 1,
          'clich': 1,
          'boring': 1,
          'material': 1,
          'used': 1,
          'spice': 1,
          'ntake': 1,
          'villains': 1,
          'typical': 1,
          'stereotypes': 1,
          'terrorist': 1,
          'ever': 1,
          'silver': 1,
          'screen': 1,
          'speak': 1,
          'recycled': 1,
          'profusely': 1,
          'next': 1,
          'divulge': 1,
          'important': 1,
          'plot': 1,
          'details': 1,
          'holding': 1,
          'enemies': 1,
          'gunpoint': 1,
          'act': 1,
          'predictable': 1,
          'ways': 1,
          'tagteam': 1,
          'sounds': 1,
          'nfrankly': 1,
          'sure': 1,
          'accept': 1,
          'ni': 1,
          'suppose': 1,
          'better': 1,
          'dressed': 1,
          'giant': 1,
          'hot': 1,
          'dog': 1,
          'jumbo': 1,
          'frankfurters': 1,
          'street': 1,
          'corner': 1,
          'ngooding': 1,
          'displays': 1,
          'single': 1,
          'emotion': 1,
          'frequently': 1,
          'display': 1,
          'gon': 1,
          'na': 1,
          'yo': 1,
          'ass': 1,
          'last': 1,
          'underwear': 1,
          'incessant': 1,
          'sputtering': 1,
          'oh': 1,
          'sh': 1,
          'played': 1,
          'jerry': 1,
          'maguire': 1,
          'gets': 1,
          'nbut': 1,
          'actor': 1,
          'dull': 1,
          'endlessly': 1,
          'monotonous': 1,
          'nat': 1,
          'least': 1,
          'hes': 1,
          'bit': 1,
          'captivating': 1,
          'films': 1,
          'worst': 1,
          'nothing': 1,
          'noticeable': 1,
          'enliven': 1,
          'supporting': 1,
          'cast': 1,
          'includes': 1,
          'personality': 1,
          'expect': 1,
          'pop': 1,
          'wasted': 1,
          'fair': 1,
          'brief': 1,
          'moments': 1,
          'serviceable': 1,
          'nand': 1,
          'chuckle': 1,
          'times': 1,
          'none': 1,
          'employee': 1,
          'darlenes': 1,
          'diner': 1,
          'counter': 1,
          'walks': 1,
          'door': 1,
          'nyou': 1,
          'place': 1,
          'asks': 1,
          'nyeah': 1,
          'says': 1,
          'call': 1,
          'darlene': 1,
          'nthese': 1,
          'little': 1,
          'tidbits': 1,
          'humor': 1,
          'mainly': 1,
          'welcome': 1,
          'weak': 1,
          'disappointing': 1,
          'wreckage': 1,
          'film': 1,
          'nas': 1,
          'clone': 1,
          'benefited': 1,
          'suspense': 1,
          'perhaps': 1,
          'god': 1,
          'forbid': 1,
          'even': 1,
          'decent': 1,
          'writing': 1,
          'nsadly': 1,
          'away': 1,
          'wondering': 1,
          'fun': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'mission': 7,
          'one': 7,
          'mars': 6,
          'character': 6,
          'like': 5,
          'sinise': 4,
          'robbins': 4,
          'movie': 4,
          'day': 4,
          'oconnell': 3,
          'time': 3,
          'wife': 3,
          'away': 3,
          'rescue': 3,
          'ever': 3,
          'would': 3,
          'films': 3,
          'better': 3,
          'music': 3,
          'worse': 3,
          'cheadle': 2,
          'jerry': 2,
          'kim': 2,
          'delaney': 2,
          'tim': 2,
          'thomas': 2,
          'first': 2,
          'astronaut': 2,
          'given': 2,
          'couple': 2,
          'crew': 2,
          'nwhat': 2,
          'planet': 2,
          'come': 2,
          'pepper': 2,
          'drink': 2,
          'product': 2,
          'placement': 2,
          'features': 2,
          'also': 2,
          'lifted': 2,
          'even': 2,
          'independence': 2,
          'space': 2,
          'sequence': 2,
          'rover': 2,
          'could': 2,
          'least': 2,
          'clich': 2,
          'another': 2,
          'usually': 2,
          'particularly': 2,
          'came': 2,
          'scenes': 2,
          'wont': 2,
          'extreme': 2,
          'emotional': 2,
          'response': 2,
          'supposed': 2,
          'save': 2,
          'people': 2,
          'warning': 1,
          'following': 1,
          'review': 1,
          'contains': 1,
          'spoilers': 1,
          'ncast': 1,
          'gary': 1,
          'connie': 1,
          'nielsen': 1,
          'elise': 1,
          'neal': 1,
          'jill': 1,
          'teed': 1,
          'jody': 1,
          'thompson': 1,
          'bill': 1,
          'timoney': 1,
          'written': 1,
          'jim': 1,
          'john': 1,
          'graham': 1,
          'yost': 1,
          'directed': 1,
          'brian': 1,
          'depalma': 1,
          'running': 1,
          '115': 1,
          'minutes': 1,
          'nthe': 1,
          'big': 1,
          'event': 1,
          '2000': 1,
          'turns': 1,
          'anything': 1,
          'ngary': 1,
          'stars': 1,
          'removed': 1,
          'maggie': 1,
          'becomes': 1,
          'ill': 1,
          'passes': 1,
          'ndon': 1,
          'along': 1,
          'russian': 1,
          'young': 1,
          'hotshot': 1,
          'nwhen': 1,
          'strange': 1,
          'whirlwind': 1,
          'shot': 1,
          'top': 1,
          'mountain': 1,
          'range': 1,
          'attacks': 1,
          'convince': 1,
          'superior': 1,
          'let': 1,
          'neilsen': 1,
          'perform': 1,
          'whatever': 1,
          'might': 1,
          'remaining': 1,
          'discover': 1,
          'surface': 1,
          'dramatically': 1,
          'change': 1,
          'lives': 1,
          'forever': 1,
          'although': 1,
          'watching': 1,
          'profoundly': 1,
          'affected': 1,
          'nbefore': 1,
          'saw': 1,
          'aware': 1,
          'promotional': 1,
          'campaign': 1,
          'dr': 1,
          'nevery': 1,
          'see': 1,
          'bottle': 1,
          'soft': 1,
          'logo': 1,
          'emblazoned': 1,
          'upon': 1,
          'nlittle': 1,
          'know': 1,
          'plot': 1,
          'taking': 1,
          'back': 1,
          'seat': 1,
          'several': 1,
          'products': 1,
          'ndr': 1,
          'saves': 1,
          'point': 1,
          'dream': 1,
          'sequenceflashback': 1,
          'shoving': 1,
          'mms': 1,
          'face': 1,
          'nthese': 1,
          'ridiculous': 1,
          'examples': 1,
          'scattered': 1,
          'throughout': 1,
          'nclich': 1,
          'order': 1,
          'ndialogue': 1,
          'motivations': 1,
          'directly': 1,
          'countless': 1,
          'science': 1,
          'fiction': 1,
          'done': 1,
          'style': 1,
          'premises': 1,
          'scifi': 1,
          'dont': 1,
          'nfilms': 1,
          '2001': 1,
          'odyssey': 1,
          'abyss': 1,
          'close': 1,
          'encounters': 1,
          'third': 1,
          'kind': 1,
          'blatantly': 1,
          'stolen': 1,
          'poorly': 1,
          'nthere': 1,
          'traveling': 1,
          'canyon': 1,
          'couldnt': 1,
          'help': 1,
          'whisper': 1,
          'utinni': 1,
          'wait': 1,
          'jawa': 1,
          'quickly': 1,
          'hide': 1,
          'rocks': 1,
          'get': 1,
          'glimpse': 1,
          'nthis': 1,
          'alltime': 1,
          'favorite': 1,
          'wanted': 1,
          'moment': 1,
          'gives': 1,
          'trinket': 1,
          'yet': 1,
          'established': 1,
          'constantly': 1,
          'made': 1,
          'fun': 1,
          'ends': 1,
          'getting': 1,
          'sappy': 1,
          'later': 1,
          'nscenes': 1,
          'always': 1,
          'bother': 1,
          'nowhere': 1,
          'regular': 1,
          'ridden': 1,
          'irritating': 1,
          'nennio': 1,
          'morricones': 1,
          'considered': 1,
          'best': 1,
          'stuff': 1,
          'projects': 1,
          'works': 1,
          'dreadfully': 1,
          'overbearing': 1,
          'nhis': 1,
          'sounds': 1,
          'straight': 1,
          'vincent': 1,
          'price': 1,
          'certain': 1,
          'nat': 1,
          'times': 1,
          'unbearably': 1,
          'overdramatic': 1,
          'none': 1,
          'involving': 1,
          'daring': 1,
          'spacewalk': 1,
          'cheesy': 1,
          'sting': 1,
          'discovered': 1,
          'grappling': 1,
          'hook': 1,
          'device': 1,
          'used': 1,
          'reach': 1,
          'intended': 1,
          'target': 1,
          'nmission': 1,
          'push': 1,
          'button': 1,
          'filmmaking': 1,
          'greatest': 1,
          'nevents': 1,
          'set': 1,
          'motion': 1,
          'obvious': 1,
          'anyone': 1,
          'seen': 1,
          'seem': 1,
          'evoke': 1,
          'audience': 1,
          'nwe': 1,
          'apparently': 1,
          'upset': 1,
          'removes': 1,
          'helmet': 1,
          'deep': 1,
          'kills': 1,
          'felt': 1,
          'boredom': 1,
          'coupled': 1,
          'twinge': 1,
          'disinterest': 1,
          'makes': 1,
          'fact': 1,
          'real': 1,
          'reason': 1,
          'needs': 1,
          'turn': 1,
          'popsicle': 1,
          'except': 1,
          'invoke': 1,
          'think': 1,
          'way': 1,
          'nasa': 1,
          'clowns': 1,
          'smarter': 1,
          'nduring': 1,
          'finale': 1,
          'finally': 1,
          'introduced': 1,
          'translucent': 1,
          'conehead': 1,
          'kittyfaced': 1,
          'aliens': 1,
          'ostensibly': 1,
          'sprung': 1,
          'presented': 1,
          'ridiculously': 1,
          'cartoonish': 1,
          'cgi': 1,
          'put': 1,
          'slightly': 1,
          'plane': 1,
          'crash': 1,
          'end': 1,
          'air': 1,
          'force': 1,
          'hell': 1,
          'spawn': 1,
          'na': 1,
          'brief': 1,
          'history': 1,
          'lesson': 1,
          'proffered': 1,
          'whisked': 1,
          'rest': 1,
          'late': 1,
          'proclaims': 1,
          'video': 1,
          'watches': 1,
          'early': 1,
          'chance': 1,
          'step': 1,
          'foot': 1,
          'else': 1,
          'nfrom': 1,
          'press': 1,
          'ive': 1,
          'seeing': 1,
          'receive': 1,
          'apparent': 1,
          'dying': 1,
          'quick': 1,
          'death': 1,
          'theater': 1,
          'nim': 1,
          'sure': 1,
          'weekend': 1,
          'two': 1,
          'huge': 1,
          'word': 1,
          'gets': 1,
          'stop': 1,
          'going': 1,
          'nlets': 1,
          'hope': 1,
          'upcoming': 1,
          'red': 1,
          'isnt': 1,
          'hurt': 1,
          'negativity': 1,
          'generating': 1,
          'nid': 1,
          'venture': 1,
          'say': 1,
          'waste': 1,
          'npg': 1,
          'nneg': 1}),
 Counter({'dead': 5,
          'films': 5,
          'nand': 5,
          'city': 4,
          'living': 4,
          'film': 4,
          'fulci': 4,
          'like': 3,
          'bad': 3,
          'nthe': 3,
          'day': 3,
          'dont': 3,
          'dialogue': 3,
          'mike': 2,
          'watson': 2,
          'someone': 2,
          'director': 2,
          'one': 2,
          'fabio': 2,
          'frizzi': 2,
          'things': 2,
          'large': 2,
          'direction': 2,
          'seance': 2,
          'medium': 2,
          'mccoll': 2,
          'town': 2,
          'dunwich': 2,
          'nfor': 2,
          'go': 2,
          'saints': 2,
          'coffin': 2,
          'next': 2,
          'various': 2,
          'nfulcis': 2,
          'actors': 2,
          'care': 2,
          'beyond': 2,
          'retrospective': 1,
          '1980': 1,
          'na': 1,
          'review': 1,
          'copyright': 1,
          '1997': 1,
          'ni': 1,
          'heard': 1,
          'describe': 1,
          'italian': 1,
          'schlock': 1,
          'horror': 1,
          'lucio': 1,
          'dimwitted': 1,
          'golly': 1,
          'words': 1,
          'fail': 1,
          'confronted': 1,
          'dog': 1,
          'nalthough': 1,
          'late': 1,
          'managed': 1,
          'rather': 1,
          'good': 1,
          'thrillers': 1,
          'career': 1,
          'ntwo': 1,
          'points': 1,
          'movies': 1,
          'favour': 1,
          'impressive': 1,
          'camerawork': 1,
          'sergio': 1,
          'salvati': 1,
          'occasionally': 1,
          'evocative': 1,
          'score': 1,
          'keep': 1,
          'falling': 1,
          'totally': 1,
          'abyss': 1,
          'failure': 1,
          'cinematic': 1,
          'failures': 1,
          'comes': 1,
          'writing': 1,
          'dumb': 1,
          'performances': 1,
          'lousy': 1,
          'story': 1,
          'starts': 1,
          'new': 1,
          'york': 1,
          'katherine': 1,
          'sees': 1,
          'vision': 1,
          'priest': 1,
          'hanging': 1,
          'massachusetts': 1,
          'reasons': 1,
          'wont': 1,
          'opens': 1,
          'gates': 1,
          'hell': 1,
          'must': 1,
          'closed': 1,
          'rise': 1,
          'walk': 1,
          'earth': 1,
          'apparently': 1,
          'dies': 1,
          'fright': 1,
          'awakens': 1,
          'graveyard': 1,
          'rescued': 1,
          'crusty': 1,
          'old': 1,
          'journalist': 1,
          'christopher': 1,
          'george': 1,
          'nthat': 1,
          'scene': 1,
          'howler': 1,
          'would': 1,
          'bust': 1,
          'open': 1,
          'pick': 1,
          'axe': 1,
          'know': 1,
          'alive': 1,
          'inside': 1,
          'cadavers': 1,
          'stuffed': 1,
          'drained': 1,
          'theyre': 1,
          'buried': 1,
          'nanyway': 1,
          'two': 1,
          'save': 1,
          'world': 1,
          'grisly': 1,
          'goingson': 1,
          'already': 1,
          'happening': 1,
          'approaches': 1,
          'graphic': 1,
          'gore': 1,
          'evidence': 1,
          'serves': 1,
          'highlight': 1,
          'flimsy': 1,
          'script': 1,
          'plodding': 1,
          'manner': 1,
          'speaking': 1,
          'unspeakable': 1,
          'nnot': 1,
          'quotable': 1,
          'sense': 1,
          'ed': 1,
          'wood': 1,
          'sheer': 1,
          'dullness': 1,
          'blatantly': 1,
          'obvious': 1,
          'lets': 1,
          'explain': 1,
          'plot': 1,
          'type': 1,
          'approach': 1,
          'nmccoll': 1,
          'doesnt': 1,
          'clue': 1,
          'character': 1,
          'deadly': 1,
          'serious': 1,
          'minute': 1,
          'frivolous': 1,
          'times': 1,
          'genuinely': 1,
          'hard': 1,
          'watch': 1,
          'geezer': 1,
          'name': 1,
          'escapes': 1,
          'plays': 1,
          'psychiatrist': 1,
          'becomes': 1,
          'even': 1,
          'harder': 1,
          'stomach': 1,
          'progresses': 1,
          'nchristopher': 1,
          'georges': 1,
          'performance': 1,
          'salvageable': 1,
          'gets': 1,
          'brains': 1,
          'ripped': 1,
          'end': 1,
          'zombie': 1,
          'nin': 1,
          'fact': 1,
          'anyone': 1,
          'though': 1,
          'hasnt': 1,
          'mattered': 1,
          'much': 1,
          'form': 1,
          'stylist': 1,
          'ideas': 1,
          'man': 1,
          'nas': 1,
          'idiosyncrasies': 1,
          'incredibly': 1,
          'silly': 1,
          'annoying': 1,
          'nhe': 1,
          'constantly': 1,
          'uses': 1,
          'extreme': 1,
          'closeups': 1,
          'peoples': 1,
          'eyes': 1,
          'ridiculous': 1,
          'technique': 1,
          'suggests': 1,
          'attempt': 1,
          'convey': 1,
          'emotion': 1,
          'arent': 1,
          'capable': 1,
          'despite': 1,
          'gruesome': 1,
          'violence': 1,
          'barely': 1,
          'manages': 1,
          'single': 1,
          'scare': 1,
          'entire': 1,
          'nlongtime': 1,
          'collaborator': 1,
          'talented': 1,
          'always': 1,
          'erratic': 1,
          'offers': 1,
          'patchy': 1,
          'soundtrack': 1,
          'veers': 1,
          'eerie': 1,
          'gothic': 1,
          'death': 1,
          'marches': 1,
          'woefully': 1,
          'inappropriate': 1,
          'electropop': 1,
          'thats': 1,
          'quite': 1,
          'frankly': 1,
          'embarrassing': 1,
          'period': 1,
          'may': 1,
          'flawed': 1,
          'house': 1,
          'cemetery': 1,
          'black': 1,
          'cat': 1,
          'nonetheless': 1,
          'inspiration': 1,
          'atmosphere': 1,
          'better': 1,
          'turkey': 1,
          'completists': 1,
          'nneg': 1}),
 Counter({'harry': 9,
          'palmetto': 6,
          'plot': 3,
          'dimwit': 2,
          'femme': 2,
          'nin': 2,
          'whos': 2,
          'la': 2,
          'shue': 2,
          'man': 2,
          'odette': 2,
          'sevigny': 2,
          'nas': 2,
          'hes': 2,
          'gets': 2,
          'horndog': 2,
          'kennel': 2,
          'could': 2,
          'film': 2,
          'noir': 2,
          'best': 2,
          'ndorff': 2,
          'script': 2,
          'know': 1,
          'shady': 1,
          'past': 1,
          'seduced': 1,
          'committing': 1,
          'crime': 1,
          'doublecrossed': 1,
          'fatal': 1,
          'barber': 1,
          'woody': 1,
          'harrelson': 1,
          'reporter': 1,
          'released': 1,
          'prison': 1,
          'framed': 1,
          'gangsters': 1,
          'corrupt': 1,
          'officials': 1,
          'investigating': 1,
          'nenter': 1,
          'rhea': 1,
          'malroux': 1,
          'elisabeth': 1,
          'sexy': 1,
          'young': 1,
          'wife': 1,
          'richest': 1,
          'florida': 1,
          'rolf': 1,
          'hoppe': 1,
          'nshe': 1,
          'stepdaughter': 1,
          'chlo': 1,
          'extort': 1,
          '500k': 1,
          'old': 1,
          'kidnap': 1,
          'nafter': 1,
          'groping': 1,
          'women': 1,
          'agrees': 1,
          'everyone': 1,
          'except': 1,
          'see': 1,
          'set': 1,
          'fall': 1,
          'guy': 1,
          'nsure': 1,
          'enough': 1,
          'long': 1,
          'dead': 1,
          'body': 1,
          'trunk': 1,
          'cops': 1,
          'tail': 1,
          'nhis': 1,
          'brotherinlaw': 1,
          'tom': 1,
          'wright': 1,
          'assistant': 1,
          'da': 1,
          'hired': 1,
          'press': 1,
          'liaison': 1,
          'case': 1,
          'front': 1,
          'row': 1,
          'seat': 1,
          'manhunt': 1,
          'get': 1,
          'watch': 1,
          'sweatliterally': 1,
          'nthere': 1,
          'several': 1,
          'twists': 1,
          'coursea': 1,
          'couple': 1,
          'even': 1,
          'took': 1,
          'surprise': 1,
          'napparently': 1,
          'every': 1,
          'woman': 1,
          'raving': 1,
          'theyre': 1,
          'like': 1,
          'bone': 1,
          'nshue': 1,
          'vamps': 1,
          'broadly': 1,
          'expected': 1,
          'tex': 1,
          'averys': 1,
          'wolf': 1,
          'show': 1,
          'nher': 1,
          'incredible': 1,
          'performance': 1,
          'leaving': 1,
          'las': 1,
          'vegas': 1,
          'seems': 1,
          'fluke': 1,
          'nhere': 1,
          'easily': 1,
          'mistaken': 1,
          'melanie': 1,
          'griffith': 1,
          'nshues': 1,
          'character': 1,
          'supposed': 1,
          'savvy': 1,
          'schemer': 1,
          'comes': 1,
          'brainless': 1,
          'bimbo': 1,
          'addition': 1,
          'includes': 1,
          'gina': 1,
          'gershon': 1,
          'filled': 1,
          'dimwitwithashadypast': 1,
          'role': 1,
          'bound': 1,
          'harrys': 1,
          'girlfriend': 1,
          'nina': 1,
          'jail': 1,
          'licks': 1,
          'face': 1,
          'theres': 1,
          'nthe': 1,
          'parts': 1,
          'overplayed': 1,
          'little': 1,
          'push': 1,
          'overthetop': 1,
          'parody': 1,
          'romeo': 1,
          'bleeding': 1,
          'watched': 1,
          '2am': 1,
          'showtime': 1,
          'love': 1,
          'scenes': 1,
          'seem': 1,
          'written': 1,
          'one': 1,
          'channels': 1,
          'soft': 1,
          'porn': 1,
          'programs': 1,
          'anyway': 1,
          'n': 1,
          'wellknown': 1,
          'director': 1,
          'volker': 1,
          'schl': 1,
          'known': 1,
          'adaptations': 1,
          'major': 1,
          'literary': 1,
          'works': 1,
          'especially': 1,
          'tin': 1,
          'drum': 1,
          'ni': 1,
          'suppose': 1,
          'must': 1,
          'drawn': 1,
          'plotbynumbers': 1,
          'admiration': 1,
          'classic': 1,
          'led': 1,
          'scorsese': 1,
          'remake': 1,
          'cape': 1,
          'fear': 1,
          'nschl': 1,
          'tries': 1,
          'hardhe': 1,
          'makes': 1,
          'interesting': 1,
          'motif': 1,
          'ubiquitous': 1,
          'bugsbut': 1,
          'nothing': 1,
          'freshen': 1,
          'stale': 1,
          'nneg': 1}),
 Counter({'like': 3,
          'nthe': 3,
          'armageddon': 3,
          'film': 3,
          'top': 2,
          'asteroid': 2,
          'comet': 2,
          'deep': 2,
          'impact': 2,
          'cometdisaster': 1,
          'flick': 1,
          'disaster': 1,
          'alright': 1,
          'ndirected': 1,
          'tony': 1,
          'scott': 1,
          'gun': 1,
          'tells': 1,
          'story': 1,
          'size': 1,
          'texas': 1,
          'caught': 1,
          'collision': 1,
          'course': 1,
          'earth': 1,
          'nand': 1,
          'thought': 1,
          'dinky': 1,
          'little': 1,
          'trouble': 1,
          'njeez': 1,
          'nafter': 1,
          'great': 1,
          'opening': 1,
          'american': 1,
          'spaceship': 1,
          'plus': 1,
          'city': 1,
          'new': 1,
          'york': 1,
          'completely': 1,
          'destroyed': 1,
          'shower': 1,
          'nasa': 1,
          'detects': 1,
          'said': 1,
          'go': 1,
          'frenzy': 1,
          'nthey': 1,
          'hire': 1,
          'worlds': 1,
          'best': 1,
          'oil': 1,
          'driller': 1,
          'bruce': 1,
          'willis': 1,
          'send': 1,
          'crew': 1,
          'space': 1,
          'fix': 1,
          'globel': 1,
          'problem': 1,
          'nthats': 1,
          'sending': 1,
          'mouse': 1,
          'cat': 1,
          'carrier': 1,
          'isnt': 1,
          'action': 1,
          'nonstop': 1,
          'ludicrous': 1,
          'words': 1,
          'sigh': 1,
          'hit': 1,
          'head': 1,
          'notebook': 1,
          'couple': 1,
          'times': 1,
          'ni': 1,
          'alone': 1,
          'nplus': 1,
          'see': 1,
          'wonderful': 1,
          'actor': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'waste': 1,
          'actors': 1,
          'talents': 1,
          'reel': 1,
          'show': 1,
          'bunch': 1,
          'snazzy': 1,
          'fx': 1,
          'shots': 1,
          'real': 1,
          'reason': 1,
          'making': 1,
          'somehow': 1,
          'outperform': 1,
          'nproducer': 1,
          'jerry': 1,
          'bruckheimer': 1,
          'fails': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'would': 8,
          'chris': 6,
          'story': 6,
          'nand': 6,
          'nthe': 5,
          'nso': 5,
          'dont': 5,
          'thoughts': 5,
          'question': 5,
          'like': 5,
          'special': 4,
          'effects': 4,
          'ni': 4,
          'nit': 4,
          'filmmakers': 4,
          'really': 4,
          'respect': 4,
          'still': 4,
          'eternity': 4,
          'williams': 3,
          'love': 3,
          'imagery': 3,
          'better': 3,
          'one': 3,
          'know': 3,
          'tell': 3,
          'life': 3,
          'far': 3,
          'wife': 3,
          'exist': 3,
          'due': 3,
          'heaven': 3,
          'annie': 3,
          'thats': 3,
          'fantasy': 3,
          'robin': 2,
          'said': 2,
          'dreams': 2,
          'may': 2,
          'come_': 2,
          'great': 2,
          'daring': 2,
          'thought': 2,
          'never': 2,
          'nits': 2,
          'idea': 2,
          'plot': 2,
          'questions': 2,
          'live': 2,
          'soundtrack': 2,
          'popular': 2,
          'care': 2,
          'afterlife': 2,
          'take': 2,
          'build': 2,
          'played': 2,
          'people': 2,
          'god': 2,
          'reality': 2,
          'time': 2,
          'ideas': 2,
          'n': 2,
          'perhaps': 2,
          'possible': 2,
          'commits': 2,
          'suicide': 2,
          'separated': 2,
          'important': 2,
          'good': 2,
          'deviate': 2,
          'rescue': 2,
          'run': 2,
          '_real_': 2,
          'physical': 2,
          'let': 2,
          'appear': 2,
          'real': 2,
          'enough': 2,
          'hang': 2,
          'got': 2,
          'late': 2,
          'yes': 2,
          'years': 1,
          'ago': 1,
          'made': 1,
          '_jumanji_': 1,
          'brilliant': 1,
          'achievement': 1,
          'travesty': 1,
          'nearly': 1,
          'every': 1,
          'level': 1,
          '_what': 1,
          'boring': 1,
          'illogical': 1,
          'weepiewannabe': 1,
          'left': 1,
          'senses': 1,
          'numb': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'breathtaking': 1,
          'pulsepounding': 1,
          'n_brazil_': 1,
          'personal': 1,
          'top': 1,
          'ten': 1,
          'n_the': 1,
          'city': 1,
          'lost': 1,
          'children_': 1,
          'outlandish': 1,
          'scenarios': 1,
          'even': 1,
          '_2001_': 1,
          '_last': 1,
          'year': 1,
          'marienbad_': 1,
          'minority': 1,
          'amidst': 1,
          'friends': 1,
          'n_what': 1,
          'aside': 1,
          'little': 1,
          'complement': 1,
          '_does_': 1,
          'fully': 1,
          'realized': 1,
          'lukewarm': 1,
          'insults': 1,
          'bigger': 1,
          'raises': 1,
          'rid': 1,
          'action': 1,
          'sequences': 1,
          'put': 1,
          'electronica': 1,
          'sell': 1,
          '_minds': 1,
          'eye_': 1,
          'videos': 1,
          'nrobin': 1,
          'plays': 1,
          'nielsen': 1,
          'dies': 1,
          'prematurelynot': 1,
          'chance': 1,
          'director': 1,
          'vincent': 1,
          'ward': 1,
          'screenwriter': 1,
          'ronald': 1,
          'bass': 1,
          'chosen': 1,
          'flashbacks': 1,
          'foreground': 1,
          'focus': 1,
          'experience': 1,
          'nbig': 1,
          'mistake': 1,
          'halfhour': 1,
          'needed': 1,
          'first': 1,
          'ala': 1,
          '_its': 1,
          'wonderful': 1,
          'life_': 1,
          'could': 1,
          'possibly': 1,
          'children': 1,
          'longsuffering': 1,
          'superbly': 1,
          'annabella': 1,
          'sciorra': 1,
          'ninstead': 1,
          'insult': 1,
          'intelligence': 1,
          'rushing': 1,
          'expecting': 1,
          'grow': 1,
          'depth': 1,
          'progresses': 1,
          'doesnt': 1,
          'learns': 1,
          'meet': 1,
          'b': 1,
          'c': 1,
          'nhmm': 1,
          'nill': 1,
          'grant': 1,
          'silly': 1,
          'giant': 1,
          'sake': 1,
          'narrative': 1,
          'meeting': 1,
          'part': 1,
          'irks': 1,
          'way': 1,
          'give': 1,
          'nthat': 1,
          'alternate': 1,
          'makes': 1,
          'sense': 1,
          'nread': 1,
          'nchris': 1,
          'nsince': 1,
          'suicides': 1,
          'go': 1,
          'hell': 1,
          'forever': 1,
          'ngood': 1,
          'thoughtprovoking': 1,
          '_loathe_': 1,
          'becomes': 1,
          'especially': 1,
          'underlying': 1,
          'premise': 1,
          'seriously': 1,
          '_really_': 1,
          'loathe': 1,
          'longer': 1,
          'logic': 1,
          'nhey': 1,
          'forget': 1,
          'nyour': 1,
          'nthey': 1,
          'world': 1,
          'according': 1,
          'newage': 1,
          'screenplay': 1,
          'conjure': 1,
          'positive': 1,
          'wild': 1,
          'two': 1,
          'happy': 1,
          'bliss': 1,
          'nbecause': 1,
          'movie': 1,
          'albert': 1,
          'angel': 1,
          'miscast': 1,
          'cuba': 1,
          'gooding': 1,
          'jr': 1,
          'says': 1,
          'bluntly': 1,
          'numm': 1,
          'nif': 1,
          'nsurely': 1,
          'eastern': 1,
          'meditation': 1,
          'specialist': 1,
          'able': 1,
          'happen': 1,
          'think': 1,
          'unimaginative': 1,
          'person': 1,
          'arent': 1,
          'big': 1,
          'sustain': 1,
          'well': 1,
          'subscribe': 1,
          'theology': 1,
          'nall': 1,
          'nanother': 1,
          'based': 1,
          'pause': 1,
          'spend': 1,
          'earth': 1,
          'reliving': 1,
          'favorite': 1,
          'memories': 1,
          'growing': 1,
          'nyouve': 1,
          'around': 1,
          'long': 1,
          'learn': 1,
          'freak': 1,
          'forcing': 1,
          'write': 1,
          'diary': 1,
          'imo': 1,
          'tacky': 1,
          'nthere': 1,
          'many': 1,
          'hundred': 1,
          'times': 1,
          'whats': 1,
          'unraveled': 1,
          'aforementioned': 1,
          'sidetracked': 1,
          'gimmicky': 1,
          'subplots': 1,
          'done': 1,
          'come': 1,
          'stale': 1,
          'nmost': 1,
          'insulting': 1,
          'subplot': 1,
          'differently': 1,
          'expects': 1,
          'finally': 1,
          'show': 1,
          'realizes': 1,
          'along': 1,
          'happens': 1,
          'runs': 1,
          'slow': 1,
          'motion': 1,
          'emotion': 1,
          'n_gag': 1,
          'spoon_': 1,
          'things': 1,
          'sciorras': 1,
          'effective': 1,
          'performance': 1,
          'rises': 1,
          'mundane': 1,
          'material': 1,
          'nplease': 1,
          'note': 1,
          'enjoyed': 1,
          'visuals': 1,
          'enjoy': 1,
          '_all_': 1,
          'images': 1,
          'looked': 1,
          'sandy': 1,
          'duncan': 1,
          'universe': 1,
          'everybody': 1,
          'floating': 1,
          'invisible': 1,
          'strings': 1,
          'sounds': 1,
          'joke': 1,
          'true': 1,
          'tried': 1,
          'block': 1,
          'dialogue': 1,
          'figure': 1,
          'music': 1,
          'best': 1,
          'work': 1,
          'alternative': 1,
          'nmy': 1,
          'vote': 1,
          'goes': 1,
          'rare': 1,
          'cd': 1,
          'called': 1,
          'say': 1,
          'die': 1,
          '1981': 1,
          'petra': 1,
          'christian': 1,
          'rock': 1,
          'group': 1,
          'pretty': 1,
          'song': 1,
          'annieshes': 1,
          'gone': 1,
          'away': 1,
          'goodtheres': 1,
          'much': 1,
          'wed': 1,
          'told': 1,
          'herand': 1,
          'wish': 1,
          'couldbut': 1,
          'nmelancholic': 1,
          'ndepressing': 1,
          'nbut': 1,
          'entertaining': 1,
          'case': 1,
          'straight': 1,
          'nsuicidebad': 1,
          'n_dont': 1,
          'it_': 1,
          'nno': 1,
          'nshouldnt': 1,
          'pay': 1,
          '7': 1,
          '50': 1,
          'hear': 1,
          'awful': 1,
          'schmaltzfest': 1,
          'nneg': 1}),
 Counter({'n': 13,
          'pig': 10,
          'babe': 8,
          'original': 6,
          'ni': 5,
          'story': 5,
          '2': 4,
          'film': 4,
          'must': 4,
          'scenes': 4,
          'didnt': 4,
          'nbut': 4,
          'nthis': 3,
          '_more_': 3,
          'mice': 3,
          'time': 3,
          'looking': 3,
          'city': 3,
          'hoggett': 3,
          'nthe': 3,
          'nbeing': 2,
          'limited': 2,
          'final': 2,
          'budget': 2,
          'money': 2,
          'made': 2,
          '1': 2,
          'even': 2,
          'sequels': 2,
          'fairy': 2,
          'tales': 2,
          'great': 2,
          'like': 2,
          'talking': 2,
          'animals': 2,
          'comedy': 2,
          'thats': 2,
          'cute': 2,
          'action': 2,
          'given': 2,
          'thatll': 2,
          'nthatll': 2,
          'limitations': 2,
          'cromwell': 2,
          'maybe': 2,
          'script': 2,
          'george': 2,
          'miller': 2,
          'dark': 2,
          'impressive': 2,
          'straight': 2,
          'happy': 2,
          'hes': 2,
          'neven': 2,
          'nno': 2,
          'overused': 2,
          'nand': 2,
          'wife': 2,
          'shes': 2,
          'nhave': 2,
          'embarrassment': 2,
          'scene': 2,
          'pit': 2,
          'bull': 2,
          'farm': 2,
          '_do_': 2,
          'farmer': 2,
          'singing': 2,
          'dog': 2,
          '_babe_': 1,
          'favorite': 1,
          'movie': 1,
          '1995': 1,
          'sleeper': 1,
          'hit': 1,
          'transcended': 1,
          'target': 1,
          'audience': 1,
          'surprise': 1,
          'commercial': 1,
          'critical': 1,
          'success': 1,
          'marketing': 1,
          'tieins': 1,
          'take': 1,
          'nthus': 1,
          'arrives': 1,
          'greater': 1,
          'nplush': 1,
          'dolls': 1,
          'vending': 1,
          'machines': 1,
          'hawking': 1,
          'tshirts': 1,
          'macys': 1,
          'thanksgiving': 1,
          'day': 1,
          'balloons': 1,
          'arrive': 1,
          'holiday': 1,
          'moneygrubbing': 1,
          'ntoo': 1,
          'late': 1,
          'sad': 1,
          'review': 1,
          'write': 1,
          '_not_': 1,
          'live': 1,
          'doesnt': 1,
          'come': 1,
          'fraction': 1,
          'shouldnt': 1,
          'expect': 1,
          'modern': 1,
          'match': 1,
          'predecessors': 1,
          'magic': 1,
          'tries': 1,
          'hard': 1,
          'loses': 1,
          'charm': 1,
          'nconsider': 1,
          'driver': 1,
          'applying': 1,
          'accelerator': 1,
          'intensity': 1,
          'unaware': 1,
          'car': 1,
          'neutral': 1,
          'nimagine': 1,
          '_scream_s': 1,
          'jamie': 1,
          'kennedy': 1,
          'explaining': 1,
          'rules': 1,
          'slapstick': 1,
          '3': 1,
          'songs': 1,
          'sing': 1,
          '4': 1,
          'keep': 1,
          'cards': 1,
          'break': 1,
          'though': 1,
          'gets': 1,
          'wise': 1,
          'sense': 1,
          'context': 1,
          'partition': 1,
          '5': 1,
          'however': 1,
          'illogical': 1,
          'conjure': 1,
          'pivotal': 1,
          'trademark': 1,
          'song': 1,
          'nobody': 1,
          'remembers': 1,
          'words': 1,
          'baaramewe': 1,
          'secret': 1,
          'code': 1,
          'nnow': 1,
          'throw': 1,
          'james': 1,
          'hot': 1,
          'commodity': 1,
          'set': 1,
          'approve': 1,
          'b': 1,
          'christine': 1,
          'cavanaugh': 1,
          'voice': 1,
          'demands': 1,
          '200': 1,
          '000paltry': 1,
          'considering': 1,
          '80': 1,
          'million': 1,
          'nout': 1,
          'ne': 1,
          'g': 1,
          'ndaily': 1,
          'comes': 1,
          'noticable': 1,
          'results': 1,
          'c': 1,
          'director': 1,
          'wellknown': 1,
          'futuristic': 1,
          'mad': 1,
          'max': 1,
          'films': 1,
          'twilight': 1,
          'zone': 1,
          'segment': 1,
          'kiddie': 1,
          'fare': 1,
          'direct': 1,
          '_andre_': 1,
          '94': 1,
          'special': 1,
          'effects': 1,
          '_but': 1,
          'limited_': 1,
          'nbabe': 1,
          'talks': 1,
          'single': 1,
          'shot': 1,
          'repeated': 1,
          'center': 1,
          'screen': 1,
          'camera': 1,
          'smirkregardless': 1,
          'whether': 1,
          'scared': 1,
          'tired': 1,
          'nseason': 1,
          'elements': 1,
          'find': 1,
          'screenwritingishell': 1,
          'bin': 1,
          'change': 1,
          'venue': 1,
          'big': 1,
          'praised': 1,
          'wildly': 1,
          'nexcuse': 1,
          '_home': 1,
          'alone_': 1,
          'several': 1,
          'years': 1,
          'ago': 1,
          'nhow': 1,
          'muppets': 1,
          '_the': 1,
          'bad': 1,
          'news': 1,
          'bears_': 1,
          'travelled': 1,
          'tokyo': 1,
          'nsorry': 1,
          'dice': 1,
          'nside': 1,
          'note': 1,
          'give': 1,
          'fairytale': 1,
          'look': 1,
          'crafted': 1,
          'fantastical': 1,
          'fantasyland': 1,
          'merges': 1,
          'landmarks': 1,
          'worlds': 1,
          'cities': 1,
          'yes': 1,
          '_is_': 1,
          'repeating': 1,
          'view': 1,
          'multiple': 1,
          'occasions': 1,
          'part': 1,
          '_remains': 1,
          'hotel_': 1,
          'ii': 1,
          'human': 1,
          'element': 1,
          'taken': 1,
          'boss': 1,
          'played': 1,
          'magda': 1,
          'szubanski': 1,
          'nstretch': 1,
          'nshes': 1,
          'lead': 1,
          'actresstype': 1,
          'funny': 1,
          'enough': 1,
          'physical': 1,
          'simply': 1,
          'embarrassing': 1,
          'pratfalls': 1,
          'arrested': 1,
          'falsely': 1,
          'drug': 1,
          'charges': 1,
          'accidentally': 1,
          'incite': 1,
          'riot': 1,
          'biker': 1,
          'dudes': 1,
          'scantily': 1,
          'clad': 1,
          'babes': 1,
          'bounce': 1,
          'around': 1,
          'bungee': 1,
          'cord': 1,
          'prestigious': 1,
          'benefit': 1,
          'dinner': 1,
          'hoping': 1,
          'little': 1,
          'smirk': 1,
          'felt': 1,
          'sorry': 1,
          'put': 1,
          'restraining': 1,
          'nature': 1,
          'violence': 1,
          'dangles': 1,
          'bridge': 1,
          'head': 1,
          'submerged': 1,
          'underwater': 1,
          'best': 1,
          'bit': 1,
          'macabre': 1,
          'brothers': 1,
          'grimm': 1,
          'demonstrated': 1,
          'problem': 1,
          'lack': 1,
          'thereof': 1,
          'n_babe_': 1,
          'sent': 1,
          'save': 1,
          'forgotten': 1,
          'goodnatured': 1,
          'midst': 1,
          'cynicism': 1,
          'environs': 1,
          'nice': 1,
          'rescue': 1,
          'aforementioned': 1,
          'actually': 1,
          'nwithout': 1,
          'giving': 1,
          'ending': 1,
          'away': 1,
          'saved': 1,
          'leftfield': 1,
          'quirk': 1,
          'nothing': 1,
          'nspeaking': 1,
          'pigpigpigpigpig': 1,
          'word': 1,
          'changed': 1,
          'expletive': 1,
          'al': 1,
          'pacino': 1,
          'could': 1,
          'watching': 1,
          '_scarface_': 1,
          'screenwriting': 1,
          'nfurther': 1,
          'explain': 1,
          'deep': 1,
          'gnaw': 1,
          'gut': 1,
          'many': 1,
          'accidents': 1,
          'happen': 1,
          'good': 1,
          'people': 1,
          'fantastically': 1,
          'elaborate': 1,
          'setups': 1,
          'nhad': 1,
          'cartoon': 1,
          'victim': 1,
          'equivalent': 1,
          'elmer': 1,
          'fudd': 1,
          'reaction': 1,
          'would': 1,
          'softened': 1,
          'nhis': 1,
          'nan': 1,
          'elderly': 1,
          'mickey': 1,
          'rooney': 1,
          'nmuch': 1,
          'irreverent': 1,
          'quick': 1,
          'nsplice': 1,
          'isnt': 1,
          'colossal': 1,
          'failure': 1,
          'glenne': 1,
          'headleys': 1,
          'schmoozy': 1,
          'chimpanzee': 1,
          'liked': 1,
          'pink': 1,
          'poodle': 1,
          'cart': 1,
          'momentarily': 1,
          'thinks': 1,
          'heaven': 1,
          'weird': 1,
          'guy': 1,
          'may': 1,
          'doublycast': 1,
          'airport': 1,
          'employee': 1,
          'judge': 1,
          'boredom': 1,
          'hackedup': 1,
          'nthem': 1,
          'chapter': 1,
          'partitions': 1,
          'proficient': 1,
          'acting': 1,
          'none': 1,
          'compensate': 1,
          'nlet': 1,
          'spoil': 1,
          'looks': 1,
          'proud': 1,
          'says': 1,
          'nthats': 1,
          'nhope': 1,
          'ruin': 1,
          'tell': 1,
          'heck': 1,
          'nneg': 1}),
 Counter({'nits': 6,
          'film': 4,
          'like': 4,
          'cast': 3,
          'galaxy': 3,
          'quest': 3,
          'nthe': 3,
          'bad': 3,
          'least': 3,
          'nwhen': 3,
          'creatures': 2,
          'story': 2,
          'begins': 2,
          'tim': 2,
          'allen': 2,
          'rickman': 2,
          'weaver': 2,
          'meet': 2,
          'fans': 2,
          'aliens': 2,
          'thermians': 2,
          'help': 2,
          'movie': 2,
          'really': 2,
          'star': 2,
          'trek': 2,
          'worse': 2,
          'ni': 2,
          'even': 2,
          'jokes': 2,
          'series': 2,
          'show': 2,
          'may': 2,
          'much': 2,
          'need': 2,
          'pretty': 2,
          'fine': 2,
          'well': 2,
          'cleavage': 2,
          'entertaining': 2,
          'nit': 2,
          'effects': 2,
          'first': 1,
          'intrigued': 1,
          'strange': 1,
          'odd': 1,
          'trailer': 1,
          'saw': 1,
          'nnow': 1,
          'view': 1,
          'completely': 1,
          'changed': 1,
          'time': 1,
          'embrace': 1,
          'impact': 1,
          'bumpy': 1,
          'ride': 1,
          'including': 1,
          'jason': 1,
          'nesmith': 1,
          'alexander': 1,
          'dane': 1,
          'alan': 1,
          'gwen': 1,
          'demarco': 1,
          'sigourney': 1,
          'signing': 1,
          'autographs': 1,
          'convention': 1,
          'nthey': 1,
          'dress': 1,
          'costumes': 1,
          'worship': 1,
          'ground': 1,
          'walk': 1,
          'group': 1,
          'called': 1,
          'believe': 1,
          'ultimate': 1,
          'saviors': 1,
          'dreaded': 1,
          'alien': 1,
          'colony': 1,
          'lead': 1,
          'sarris': 1,
          'robin': 1,
          'sachs': 1,
          'nof': 1,
          'course': 1,
          'unaware': 1,
          'actually': 1,
          'begin': 1,
          'performing': 1,
          'duties': 1,
          'ugly': 1,
          'nthus': 1,
          'long': 1,
          'adventure': 1,
          'save': 1,
          'plays': 1,
          'episode': 1,
          'fact': 1,
          'dont': 1,
          'think': 1,
          'trekkies': 1,
          'appreciate': 1,
          'weak': 1,
          'spoof': 1,
          'quite': 1,
          'frankly': 1,
          'funny': 1,
          'nall': 1,
          'basically': 1,
          'collected': 1,
          'observations': 1,
          'none': 1,
          'continuous': 1,
          'joke': 1,
          'involves': 1,
          'simple': 1,
          'crew': 1,
          'member': 1,
          'believes': 1,
          'die': 1,
          'space': 1,
          'extra': 1,
          'tv': 1,
          'ever': 1,
          'lives': 1,
          'proven': 1,
          'ncreative': 1,
          'seem': 1,
          'clever': 1,
          'idea': 1,
          'used': 1,
          'death': 1,
          'na': 1,
          'person': 1,
          'take': 1,
          'nwe': 1,
          'tortured': 1,
          'especially': 1,
          'pay': 1,
          'pitiful': 1,
          'expected': 1,
          'oscar': 1,
          'worthy': 1,
          'performance': 1,
          'form': 1,
          'laughs': 1,
          'would': 1,
          'helpful': 1,
          'nspeaking': 1,
          'acting': 1,
          '2': 1,
          'talents': 1,
          'wasted': 1,
          'nsigourney': 1,
          'worked': 1,
          'value': 1,
          'shows': 1,
          'disgraceful': 1,
          'nalan': 1,
          'however': 1,
          'lucky': 1,
          'nafter': 1,
          'last': 1,
          'hit': 1,
          'dogma': 1,
          'embarrasses': 1,
          'sloppy': 1,
          'mess': 1,
          'shame': 1,
          'see': 1,
          'talented': 1,
          'actors': 1,
          'actresses': 1,
          'throw': 1,
          'ability': 1,
          'away': 1,
          'couldnt': 1,
          'get': 1,
          'thankfully': 1,
          'nice': 1,
          'special': 1,
          'pop': 1,
          'nlike': 1,
          'many': 1,
          'big': 1,
          'blockbusters': 1,
          'armageddon': 1,
          'haunting': 1,
          'name': 1,
          'rely': 1,
          'heavily': 1,
          'boost': 1,
          'films': 1,
          'box': 1,
          'office': 1,
          'results': 1,
          'ntimes': 1,
          'works': 1,
          'unfortunately': 1,
          'shell': 1,
          'hard': 1,
          'earned': 1,
          'money': 1,
          'suffer': 1,
          'junk': 1,
          'stop': 1,
          'getting': 1,
          'tired': 1,
          'suckered': 1,
          'seeing': 1,
          'trash': 1,
          'look': 1,
          'dandy': 1,
          'nis': 1,
          'ask': 1,
          'nobviously': 1,
          'finally': 1,
          'ends': 1,
          'literally': 1,
          'crash': 1,
          'lands': 1,
          'naside': 1,
          'impressive': 1,
          'looking': 1,
          'industrial': 1,
          'light': 1,
          'magic': 1,
          'embarrassment': 1,
          'embarrassing': 1,
          'science': 1,
          'fiction': 1,
          'genre': 1,
          'bit': 1,
          'fun': 1,
          'place': 1,
          'belongs': 1,
          'infinity': 1,
          'beyond': 1,
          'nneg': 1}),
 Counter({'spawn': 5,
          'something': 3,
          'comic': 2,
          'book': 2,
          'make': 2,
          'dialogue': 2,
          'nspawn': 2,
          'assassin': 2,
          'named': 2,
          'simmons': 2,
          'left': 2,
          'movie': 2,
          'nbut': 2,
          'expected': 2,
          'death': 2,
          'nwhile': 2,
          'sequences': 2,
          'makers': 1,
          'created': 1,
          'almost': 1,
          'vacuous': 1,
          'summers': 1,
          'adaptation': 1,
          'batman': 1,
          'robin': 1,
          'nboth': 1,
          'films': 1,
          'mistake': 1,
          'adapting': 1,
          'screen': 1,
          'look': 1,
          'graphic': 1,
          'counterparts': 1,
          'also': 1,
          'monosyllabic': 1,
          'emptyheaded': 1,
          'character': 1,
          'motivations': 1,
          'nin': 1,
          'panelsized': 1,
          'morsels': 1,
          'implausible': 1,
          'plots': 1,
          'rambo': 1,
          'esque': 1,
          'often': 1,
          'overshadowed': 1,
          'artwork': 1,
          'thirty': 1,
          'foot': 1,
          'silver': 1,
          'screens': 1,
          'much': 1,
          'difficult': 1,
          'dismiss': 1,
          'shallowness': 1,
          'behind': 1,
          'pretty': 1,
          'pictures': 1,
          'ostensibly': 1,
          'white': 1,
          'framed': 1,
          'corporate': 1,
          'baddie': 1,
          'played': 1,
          'without': 1,
          'irony': 1,
          'sheen': 1,
          'set': 1,
          'fire': 1,
          'dead': 1,
          'nthough': 1,
          'skimps': 1,
          'next': 1,
          'plot': 1,
          'points': 1,
          'heres': 1,
          'could': 1,
          'determine': 1,
          'said': 1,
          'becomes': 1,
          'leader': 1,
          'satans': 1,
          'army': 1,
          'tutelage': 1,
          'flatulating': 1,
          'midget': 1,
          'clown': 1,
          'leguizamo': 1,
          'grating': 1,
          'always': 1,
          'nhe': 1,
          'renamed': 1,
          'reasons': 1,
          'unbeknownst': 1,
          'granted': 1,
          'really': 1,
          'cool': 1,
          'costume': 1,
          'enables': 1,
          'become': 1,
          'human': 1,
          'chameleon': 1,
          'spies': 1,
          'birthday': 1,
          'party': 1,
          'child': 1,
          'realizes': 1,
          'cant': 1,
          'evil': 1,
          'superdemon': 1,
          'hes': 1,
          'sets': 1,
          'avenging': 1,
          'untimely': 1,
          'ntypical': 1,
          'summer': 1,
          'blockbusters': 1,
          'effectsladen': 1,
          'ninety': 1,
          'minute': 1,
          'rock': 1,
          'video': 1,
          'visions': 1,
          'hell': 1,
          'laughably': 1,
          'crude': 1,
          'think': 1,
          'virtual': 1,
          'reality': 1,
          'lawnmower': 1,
          'man': 1,
          'spawns': 1,
          'prehensile': 1,
          'outfit': 1,
          'action': 1,
          'truly': 1,
          'behold': 1,
          'storytelling': 1,
          'completely': 1,
          'lacking': 1,
          'emotion': 1,
          'longs': 1,
          'wife': 1,
          'dont': 1,
          'single': 1,
          'scene': 1,
          'together': 1,
          'conflict': 1,
          'triumph': 1,
          'anybodys': 1,
          'guess': 1,
          'believability': 1,
          'nso': 1,
          'many': 1,
          'questions': 1,
          'unanswered': 1,
          'im': 1,
          'sure': 1,
          'wont': 1,
          'addressed': 1,
          'inevitable': 1,
          'sequel': 1,
          'last': 1,
          'years': 1,
          'crow': 1,
          'city': 1,
          'angels': 1,
          'suffered': 1,
          'similar': 1,
          'problems': 1,
          'narrative': 1,
          'lazy': 1,
          'somewhat': 1,
          'incoherent': 1,
          'atmosphere': 1,
          'spare': 1,
          'genuine': 1,
          'moments': 1,
          'hypnotic': 1,
          'power': 1,
          'inyourface': 1,
          'screaming': 1,
          'banshee': 1,
          'film': 1,
          'guys': 1,
          'know': 1,
          'graft': 1,
          'onto': 1,
          'celluloid': 1,
          'havent': 1,
          'faintest': 1,
          'idea': 1,
          'nneg': 1}),
 Counter({'n': 6,
          'one': 5,
          'sculptress': 5,
          'film': 4,
          'like': 4,
          'actor': 4,
          'release': 3,
          'dobie': 3,
          'nthe': 3,
          'wright': 3,
          'halloween': 2,
          'looking': 2,
          'right': 2,
          'way': 2,
          'easy': 2,
          'see': 2,
          'fahey': 2,
          'plays': 2,
          'shakespearean': 2,
          'lacking': 2,
          'hes': 2,
          'apartment': 2,
          'san': 2,
          'francisco': 2,
          'dobies': 2,
          'sarah': 2,
          'work': 2,
          'films': 2,
          'sarahs': 2,
          'manages': 2,
          'past': 2,
          'old': 2,
          'hollywood': 2,
          'even': 2,
          'phaedra': 1,
          'cinema': 1,
          'distributor': 1,
          'neverheardof': 1,
          'classics': 1,
          'soft': 1,
          'toilet': 1,
          'seats': 1,
          'trailer': 1,
          'movie': 1,
          'armed': 1,
          'boxer': 1,
          'vs': 1,
          'flying': 1,
          'guillotine': 1,
          'sneaked': 1,
          'latest': 1,
          'theaters': 1,
          'weekend': 1,
          'hoping': 1,
          'cash': 1,
          'handful': 1,
          'holidaygoers': 1,
          'good': 1,
          'scare': 1,
          'scary': 1,
          'proposition': 1,
          'producers': 1,
          'intended': 1,
          'nfrom': 1,
          'outset': 1,
          'larger': 1,
          'reputable': 1,
          'chains': 1,
          'arent': 1,
          'carrying': 1,
          'looks': 1,
          'straighttovideo': 1,
          'early': 1,
          '80s': 1,
          'thats': 1,
          'dusted': 1,
          'carefully': 1,
          'reissued': 1,
          'theatrical': 1,
          'format': 1,
          'nthat': 1,
          'staple': 1,
          'schlocky': 1,
          'zmovies': 1,
          'jeff': 1,
          'lawnmower': 1,
          'man': 1,
          'washedup': 1,
          'basic': 1,
          'people': 1,
          'skills': 1,
          'nwhen': 1,
          'reliving': 1,
          'glory': 1,
          'days': 1,
          'ramshackle': 1,
          'nob': 1,
          'hill': 1,
          'screaming': 1,
          'scotchinduced': 1,
          'hamlet': 1,
          'soliloquies': 1,
          'well': 1,
          'night': 1,
          'streets': 1,
          'stalking': 1,
          'loose': 1,
          'women': 1,
          'nfaheys': 1,
          'sizes': 1,
          'victims': 1,
          'actually': 1,
          'peep': 1,
          'show': 1,
          'performer': 1,
          'name': 1,
          'sylvie': 1,
          'dressed': 1,
          'guys': 1,
          'kraftwerk': 1,
          'approaches': 1,
          'ridiculous': 1,
          'attire': 1,
          'bavarian': 1,
          'count': 1,
          'replete': 1,
          'cane': 1,
          'dark': 1,
          'glasses': 1,
          'false': 1,
          'beard': 1,
          'time': 1,
          'castle': 1,
          'nsylvie': 1,
          'asks': 1,
          'seductively': 1,
          'flashes': 1,
          'bulging': 1,
          'contents': 1,
          'wallet': 1,
          'outside': 1,
          'coffee': 1,
          'shop': 1,
          'jah': 1,
          'nwith': 1,
          'ze': 1,
          'many': 1,
          'turrets': 1,
          'perplexing': 1,
          'reply': 1,
          'real': 1,
          'star': 1,
          'use': 1,
          'term': 1,
          'extremely': 1,
          'loosely': 1,
          'katie': 1,
          'title': 1,
          'nsarah': 1,
          'new': 1,
          'town': 1,
          'studying': 1,
          'prestigious': 1,
          'sf': 1,
          'art': 1,
          'institute': 1,
          'mentorship': 1,
          'genius': 1,
          'frenchman': 1,
          'played': 1,
          'beretwearing': 1,
          'patrick': 1,
          'bauchau': 1,
          'nthats': 1,
          'convenient': 1,
          'would': 1,
          'day': 1,
          'live': 1,
          'paris': 1,
          'wont': 1,
          'believe': 1,
          'final': 1,
          'shot': 1,
          'cheesy': 1,
          'eiffel': 1,
          'tower': 1,
          'backdrop': 1,
          'rosemarys': 1,
          'baby': 1,
          'inspired': 1,
          'imagery': 1,
          'nbauchaus': 1,
          'character': 1,
          'criticizes': 1,
          'publicly': 1,
          'clay': 1,
          'busts': 1,
          'keep': 1,
          'turning': 1,
          'gargoylesperhaps': 1,
          'shes': 1,
          'possessed': 1,
          'nby': 1,
          'incubus': 1,
          'still': 1,
          'talk': 1,
          'dinner': 1,
          'nwhereas': 1,
          'decent': 1,
          'english': 1,
          'accent': 1,
          'talents': 1,
          'pretty': 1,
          'much': 1,
          'end': 1,
          'non': 1,
          'side': 1,
          'wall': 1,
          'troubled': 1,
          'succinctly': 1,
          'summarized': 1,
          'scene': 1,
          'thumbs': 1,
          'scrapbook': 1,
          'newspaper': 1,
          'clippings': 1,
          'headings': 1,
          'delivers': 1,
          'stunning': 1,
          'macbeth': 1,
          'courted': 1,
          'studio': 1,
          'renounces': 1,
          'priesthood': 1,
          'prostitute': 1,
          'fingers': 1,
          'priest': 1,
          'sex': 1,
          'scandal': 1,
          'plot': 1,
          'could': 1,
          'easily': 1,
          'condensed': 1,
          'artist': 1,
          'moves': 1,
          'next': 1,
          'door': 1,
          'psychopath': 1,
          'yawns': 1,
          'ensue': 1,
          'nso': 1,
          'rants': 1,
          'raves': 1,
          'chips': 1,
          'away': 1,
          'large': 1,
          'blocks': 1,
          'granite': 1,
          'till': 1,
          'bedtimes': 1,
          'nlate': 1,
          'paths': 1,
          'finally': 1,
          'cross': 1,
          'mindnumbing': 1,
          'results': 1,
          'nnobody': 1,
          'else': 1,
          'complex': 1,
          'appears': 1,
          'mind': 1,
          'racket': 1,
          'dear': 1,
          'go': 1,
          'ballistic': 1,
          'bathtub': 1,
          'overflows': 1,
          'nno': 1,
          'dont': 1,
          'tub': 1,
          'matter': 1,
          'gore': 1,
          'quotient': 1,
          'virtually': 1,
          'nil': 1,
          'horror': 1,
          'surprisingly': 1,
          'thing': 1,
          'worth': 1,
          'writerdirector': 1,
          'ian': 1,
          'merrick': 1,
          'make': 1,
          'look': 1,
          'dreary': 1,
          'windswept': 1,
          'deserted': 1,
          'isnt': 1,
          'bad': 1,
          'enough': 1,
          'fun': 1,
          'nluckily': 1,
          'limited': 1,
          'made': 1,
          'avoid': 1,
          'nneg': 1}),
 Counter({'buster': 10,
          'cisco': 5,
          'melvin': 4,
          'partner': 4,
          'nand': 4,
          'trace': 4,
          'hong': 3,
          'movies': 3,
          'sequence': 3,
          'characters': 3,
          'storm': 3,
          'apartment': 3,
          'nthe': 3,
          'way': 3,
          'nishi': 3,
          'paris': 3,
          'plot': 2,
          'subplots': 2,
          'like': 2,
          'kong': 2,
          'havent': 2,
          'american': 2,
          'sight': 2,
          'gags': 2,
          'cut': 2,
          'nhowever': 2,
          'happens': 2,
          'go': 2,
          'big': 2,
          'hit': 2,
          'kidnapping': 2,
          'daughter': 2,
          'ciscos': 2,
          'melvins': 2,
          'investigation': 2,
          'know': 2,
          'call': 2,
          'nbut': 2,
          'nthere': 2,
          'made': 2,
          'video': 2,
          'movie': 1,
          'sadly': 1,
          'follows': 1,
          'kongrecipe': 1,
          'moviemaking': 1,
          'storytelling': 1,
          'letter': 1,
          'nthese': 1,
          'kinds': 1,
          'marked': 1,
          'eyeopening': 1,
          'introduces': 1,
          'us': 1,
          'main': 1,
          'lifeanddeath': 1,
          'become': 1,
          'involved': 1,
          'inclusion': 1,
          'host': 1,
          'inconsequential': 1,
          'ridiculous': 1,
          'sunglasswearing': 1,
          'henchmen': 1,
          'nthat': 1,
          'say': 1,
          'dont': 1,
          'influenced': 1,
          'however': 1,
          'quite': 1,
          'obvious': 1,
          'moviemakers': 1,
          'clue': 1,
          'filmgoer': 1,
          'needs': 1,
          'hiphoptalking': 1,
          'thugs': 1,
          'stupid': 1,
          'nobserve': 1,
          'opening': 1,
          'na': 1,
          'band': 1,
          'hitmen': 1,
          'led': 1,
          'mark': 1,
          'wahlberg': 1,
          'lou': 1,
          'diamond': 1,
          'phillips': 1,
          'nthey': 1,
          'waiting': 1,
          'power': 1,
          'help': 1,
          'infrared': 1,
          'goggles': 1,
          'unsure': 1,
          'cable': 1,
          'nhe': 1,
          'undecided': 1,
          'nthis': 1,
          '10': 1,
          'seconds': 1,
          'audience': 1,
          'finds': 1,
          'humor': 1,
          'foolishness': 1,
          'lights': 1,
          'suddenly': 1,
          'ncisco': 1,
          'surprised': 1,
          'says': 1,
          'whoa': 1,
          'lets': 1,
          'ngo': 1,
          'nicely': 1,
          'executed': 1,
          'title': 1,
          'refers': 1,
          'quarter': 1,
          'film': 1,
          'nneeding': 1,
          'cash': 1,
          'devises': 1,
          'plan': 1,
          'kidnap': 1,
          'china': 1,
          'chow': 1,
          'wealthy': 1,
          'japanese': 1,
          'industrialist': 1,
          'jiro': 1,
          'also': 1,
          'goddaughter': 1,
          'avery': 1,
          'brooks': 1,
          'boss': 1,
          'ninfuriated': 1,
          'insufferable': 1,
          'commands': 1,
          'uncover': 1,
          'mastermind': 1,
          'nduring': 1,
          'singles': 1,
          'ringleader': 1,
          'orders': 1,
          'capture': 1,
          'execution': 1,
          'nmelvin': 1,
          'must': 1,
          'find': 1,
          'stay': 1,
          'alive': 1,
          'nby': 1,
          'takes': 1,
          'place': 1,
          'nciscos': 1,
          'makes': 1,
          'ransom': 1,
          'phone': 1,
          'believing': 1,
          'traced': 1,
          'prevents': 1,
          'tracing': 1,
          'mr': 1,
          'nto': 1,
          'counter': 1,
          'doubt': 1,
          'interesting': 1,
          'world': 1,
          'live': 1,
          'lots': 1,
          'issues': 1,
          'wed': 1,
          'nhow': 1,
          'justify': 1,
          'profession': 1,
          'fiancee': 1,
          'nwhat': 1,
          'goes': 1,
          'among': 1,
          'clique': 1,
          'nwhy': 1,
          'odds': 1,
          'actually': 1,
          'lot': 1,
          'potential': 1,
          'material': 1,
          'could': 1,
          'explored': 1,
          'seems': 1,
          'effort': 1,
          'direction': 1,
          'instead': 1,
          'given': 1,
          'notsoengrossing': 1,
          'filled': 1,
          'oneliners': 1,
          'silly': 1,
          'extraneous': 1,
          'tomfoolery': 1,
          'even': 1,
          'mentioned': 1,
          'financees': 1,
          'visiting': 1,
          'parents': 1,
          'want': 1,
          'separate': 1,
          'mistress': 1,
          'pimplefaced': 1,
          'clerk': 1,
          'demanding': 1,
          'return': 1,
          'overdue': 1,
          'nif': 1,
          'signals': 1,
          'future': 1,
          'style': 1,
          'audiences': 1,
          'shoot': 1,
          'nneg': 1}),
 Counter({'bad': 4,
          'exorcist': 3,
          'sequel': 3,
          'like': 3,
          'one': 3,
          'demon': 3,
          'film': 3,
          'success': 2,
          'make': 2,
          'linda': 2,
          'blair': 2,
          'start': 2,
          'regan': 2,
          'figure': 2,
          'possess': 2,
          'good': 2,
          'really': 2,
          'anywhere': 2,
          'direction': 2,
          'fact': 2,
          'going': 2,
          'jumbled': 2,
          'huge': 1,
          '1973': 1,
          'inevitable': 1,
          'sadly': 1,
          'horror': 1,
          'fims': 1,
          'money': 1,
          'filmmakers': 1,
          'decided': 1,
          'ridiculous': 1,
          'makes': 1,
          'absolutely': 1,
          'sense': 1,
          'extremely': 1,
          'pointless': 1,
          'wasting': 1,
          'max': 1,
          'von': 1,
          'sydow': 1,
          'completely': 1,
          'nneedless': 1,
          'dumb': 1,
          'flopped': 1,
          'box': 1,
          'office': 1,
          'never': 1,
          'gained': 1,
          'much': 1,
          'though': 1,
          'voted': 1,
          'worst': 1,
          'sequels': 1,
          'time': 1,
          'agree': 1,
          'nto': 1,
          'story': 1,
          'four': 1,
          'years': 1,
          'later': 1,
          'tormented': 1,
          'memories': 1,
          'used': 1,
          'priest': 1,
          'played': 1,
          'richard': 1,
          'burton': 1,
          'trying': 1,
          'tried': 1,
          'somehow': 1,
          'wants': 1,
          'maybe': 1,
          'something': 1,
          'nnow': 1,
          'must': 1,
          'try': 1,
          'stop': 1,
          'taking': 1,
          'regans': 1,
          'body': 1,
          'late': 1,
          'nsome': 1,
          'things': 1,
          'ii': 1,
          'need': 1,
          'revive': 1,
          'character': 1,
          'terrible': 1,
          'brings': 1,
          'lull': 1,
          'places': 1,
          'seems': 1,
          'stops': 1,
          'place': 1,
          'doesnt': 1,
          'go': 1,
          'nlouise': 1,
          'fletcher': 1,
          'alright': 1,
          'worth': 1,
          'could': 1,
          'done': 1,
          'lot': 1,
          'better': 1,
          'nthe': 1,
          'john': 1,
          'boorman': 1,
          'confused': 1,
          'stylish': 1,
          'nature': 1,
          'couldnt': 1,
          'nin': 1,
          'idea': 1,
          'script': 1,
          'plot': 1,
          'ending': 1,
          'laugh': 1,
          'loud': 1,
          'hilariosly': 1,
          'nfor': 1,
          'fans': 1,
          'havent': 1,
          'seen': 1,
          'recommend': 1,
          'renting': 1,
          'ni': 1,
          'actually': 1,
          'gave': 1,
          'high': 1,
          'rating': 1,
          'worse': 1,
          'would': 1,
          'deserved': 1,
          'zero': 1,
          'pumpkins': 1,
          'went': 1,
          'easy': 1,
          'however': 1,
          'bit': 1,
          'nothing': 1,
          'else': 1,
          'nim': 1,
          'saying': 1,
          'dont': 1,
          'nbad': 1,
          'movie': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'part': 4,
          'movie': 3,
          '54': 3,
          'new': 3,
          'enough': 3,
          'shane': 3,
          'era': 2,
          'n54': 2,
          'story': 2,
          'york': 2,
          'studio': 2,
          'anybody': 2,
          'nhe': 2,
          'one': 2,
          'famous': 2,
          'dreams': 2,
          'moment': 2,
          'big': 2,
          'julie': 2,
          'nits': 2,
          'people': 1,
          'populate': 1,
          'shallow': 1,
          'selfabsorbed': 1,
          'selfindulgent': 1,
          'nin': 1,
          'words': 1,
          'perfectly': 1,
          'mirror': 1,
          'well': 1,
          'feature': 1,
          'depicts': 1,
          'wellpublicized': 1,
          'disco': 1,
          'inplace': 1,
          '70s': 1,
          'went': 1,
          'ogled': 1,
          'photographed': 1,
          'pampered': 1,
          'difficulty': 1,
          'written': 1,
          'directed': 1,
          'mark': 1,
          'christopher': 1,
          'script': 1,
          'takes': 1,
          'point': 1,
          'view': 1,
          'nchristopher': 1,
          'neither': 1,
          'condemns': 1,
          'glorifies': 1,
          'legendary': 1,
          'excesses': 1,
          '54s': 1,
          'hallmark': 1,
          'keeps': 1,
          'uninvolved': 1,
          'distance': 1,
          'thus': 1,
          'keeping': 1,
          'us': 1,
          'forming': 1,
          'emotional': 1,
          'attachment': 1,
          'protagonists': 1,
          'movies': 1,
          'main': 1,
          'asset': 1,
          'surprising': 1,
          'performance': 1,
          'mike': 1,
          'myers': 1,
          'steve': 1,
          'rubell': 1,
          'owner': 1,
          'nightspot': 1,
          'rebel': 1,
          'dreamer': 1,
          'shrewd': 1,
          'entrepreneur': 1,
          'nhes': 1,
          'smart': 1,
          'childlike': 1,
          'pander': 1,
          'desires': 1,
          'clientele': 1,
          'yet': 1,
          'stupid': 1,
          'brag': 1,
          'tv': 1,
          'hiding': 1,
          'profits': 1,
          'irs': 1,
          'nmyers': 1,
          'first': 1,
          'straight': 1,
          'character': 1,
          'turn': 1,
          'appealing': 1,
          'appalling': 1,
          'nat': 1,
          'try': 1,
          'pressure': 1,
          'male': 1,
          'employee': 1,
          'sexual': 1,
          'situation': 1,
          'next': 1,
          'apologize': 1,
          'bad': 1,
          'behavior': 1,
          'offer': 1,
          'young': 1,
          'man': 1,
          'handful': 1,
          'cash': 1,
          'told': 1,
          'oshea': 1,
          'ryan': 1,
          'phillippe': 1,
          'jersey': 1,
          'lad': 1,
          'crossing': 1,
          'river': 1,
          'apple': 1,
          'nshades': 1,
          'john': 1,
          'travoltas': 1,
          'brooklynbound': 1,
          'tony': 1,
          'saturday': 1,
          'night': 1,
          'fever': 1,
          'neventually': 1,
          'come': 1,
          'attracts': 1,
          'rubells': 1,
          'eye': 1,
          'admitted': 1,
          'promised': 1,
          'land': 1,
          'nhis': 1,
          'looks': 1,
          'get': 1,
          'job': 1,
          'busboy': 1,
          'later': 1,
          'promoted': 1,
          'prestigious': 1,
          'position': 1,
          'bartender': 1,
          'mixes': 1,
          'makes': 1,
          'drinks': 1,
          'rich': 1,
          'nshanes': 1,
          'dream': 1,
          'meet': 1,
          'soap': 1,
          'star': 1,
          'black': 1,
          'neve': 1,
          'campbell': 1,
          'fellow': 1,
          'garden': 1,
          'stater': 1,
          'nbut': 1,
          'characters': 1,
          'sketchily': 1,
          'drawn': 1,
          'even': 1,
          'hook': 1,
          'deal': 1,
          'chemistry': 1,
          'nonexistent': 1,
          'cold': 1,
          'uninvolving': 1,
          'strobe': 1,
          'lights': 1,
          'glitz': 1,
          'substance': 1,
          'sort': 1,
          'like': 1,
          'musical': 1,
          'covers': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'nthe': 7,
          'time': 5,
          'n': 4,
          'wedding': 4,
          'even': 3,
          'trailer': 3,
          'like': 3,
          'funny': 3,
          'brackett': 3,
          'played': 3,
          'movie': 3,
          'nkline': 3,
          'friends': 3,
          'gay': 3,
          'come': 3,
          'nit': 3,
          'gets': 3,
          'seemed': 3,
          'scene': 3,
          'ive': 2,
          'kline': 2,
          'great': 2,
          'hilarious': 2,
          'got': 2,
          'however': 2,
          'much': 2,
          'wife': 2,
          'name': 2,
          'began': 2,
          'teacher': 2,
          'nhe': 2,
          'poetry': 2,
          'famous': 2,
          'student': 2,
          'take': 2,
          'nthey': 2,
          'poetic': 2,
          'engaged': 2,
          'joan': 2,
          'three': 2,
          'years': 2,
          'says': 2,
          'live': 2,
          'town': 2,
          'begins': 2,
          'dont': 2,
          'nthere': 2,
          'tom': 2,
          'selleck': 2,
          'climax': 2,
          'saying': 2,
          'parents': 2,
          'klines': 2,
          'hes': 2,
          'pointless': 2,
          'found': 2,
          'action': 2,
          'always': 1,
          'kevin': 1,
          'fan': 1,
          'silverado': 1,
          'fish': 1,
          'called': 1,
          'wanda': 1,
          'pirates': 1,
          'penzance': 1,
          'hamlet': 1,
          'pbs': 1,
          'performances': 1,
          'minute': 1,
          'saw': 1,
          'resolved': 1,
          'see': 1,
          'nbesides': 1,
          'fact': 1,
          'starred': 1,
          'looked': 1,
          'ni': 1,
          'sucker': 1,
          'punched': 1,
          'extent': 1,
          'also': 1,
          'thought': 1,
          'wow': 1,
          'theres': 1,
          'stuff': 1,
          'must': 1,
          'ton': 1,
          'laughs': 1,
          'rest': 1,
          'oops': 1,
          'packed': 1,
          'headed': 1,
          'les': 1,
          'cinemas': 1,
          'del': 1,
          'diablo': 1,
          'local': 1,
          'multimultiplex': 1,
          'concerns': 1,
          'englishdrama': 1,
          'suburban': 1,
          'high': 1,
          'school': 1,
          'named': 1,
          'howard': 1,
          'loves': 1,
          'literary': 1,
          'works': 1,
          'class': 1,
          'interested': 1,
          'former': 1,
          'matt': 1,
          'dillon': 1,
          'id': 1,
          'put': 1,
          'wont': 1,
          'let': 1,
          'notes': 1,
          'forgotten': 1,
          'continually': 1,
          'interrupt': 1,
          'long': 1,
          'expositions': 1,
          'fawning': 1,
          'questions': 1,
          'nbrackett': 1,
          'another': 1,
          'cusack': 1,
          'finally': 1,
          'gotten': 1,
          'gumption': 1,
          'marry': 1,
          'becomes': 1,
          'big': 1,
          'question': 1,
          'mark': 1,
          'oscar': 1,
          'broadcast': 1,
          'homosexual': 1,
          'spends': 1,
          'first': 1,
          'twothirds': 1,
          'frantically': 1,
          'trying': 1,
          'convince': 1,
          'everyone': 1,
          'isnt': 1,
          'whole': 1,
          'examine': 1,
          'every': 1,
          'detail': 1,
          'life': 1,
          'identifying': 1,
          'things': 1,
          'confirm': 1,
          'sexual': 1,
          'preference': 1,
          'nhis': 1,
          'closest': 1,
          'help': 1,
          'matters': 1,
          'bringing': 1,
          'nothing': 1,
          'barbara': 1,
          'streisand': 1,
          'laserdiscs': 1,
          'stag': 1,
          'party': 1,
          'genuinely': 1,
          'hilarous': 1,
          'moments': 1,
          'one': 1,
          'involving': 1,
          'tape': 1,
          'geared': 1,
          'towards': 1,
          'helping': 1,
          'men': 1,
          'assert': 1,
          'masculinity': 1,
          'hounded': 1,
          'reporter': 1,
          'waxes': 1,
          'benefits': 1,
          'coming': 1,
          'best': 1,
          'exploit': 1,
          'situation': 1,
          'sleazy': 1,
          'tabloid': 1,
          'machinations': 1,
          'moves': 1,
          'along': 1,
          'fine': 1,
          'slowly': 1,
          'builds': 1,
          'stands': 1,
          'altar': 1,
          'asked': 1,
          'vows': 1,
          'nif': 1,
          'want': 1,
          'surprised': 1,
          'read': 1,
          'going': 1,
          'reveal': 1,
          'ending': 1,
          'instead': 1,
          'front': 1,
          'cameras': 1,
          'im': 1,
          'nthis': 1,
          'opinion': 1,
          'falls': 1,
          'apart': 1,
          'nmost': 1,
          'humor': 1,
          'insistence': 1,
          'straight': 1,
          'loving': 1,
          'senstivie': 1,
          'guy': 1,
          'dressing': 1,
          'well': 1,
          'occaisionally': 1,
          'acting': 1,
          'prissy': 1,
          'reminded': 1,
          'effeminate': 1,
          'heterosexual': 1,
          'sketch': 1,
          'saturday': 1,
          'night': 1,
          'sustainably': 1,
          'performance': 1,
          'made': 1,
          'doubly': 1,
          'nhowever': 1,
          'drags': 1,
          'attempted': 1,
          'quick': 1,
          'conclusion': 1,
          'serious': 1,
          'side': 1,
          'done': 1,
          'reconciles': 1,
          'turned': 1,
          'several': 1,
          'scenes': 1,
          'waste': 1,
          'mother': 1,
          'bar': 1,
          'nfinally': 1,
          'though': 1,
          'catholic': 1,
          'priest': 1,
          'condescending': 1,
          'preist': 1,
          'believe': 1,
          'man': 1,
          'consumated': 1,
          'relationship': 1,
          'proclaiming': 1,
          'third': 1,
          'person': 1,
          'chuckle': 1,
          'audience': 1,
          'distracted': 1,
          'tire': 1,
          'nby': 1,
          'gone': 1,
          'hoping': 1,
          'would': 1,
          'soon': 1,
          'review': 1,
          'noverall': 1,
          'quantify': 1,
          'say': 1,
          'rising': 1,
          'falling': 1,
          'nsee': 1,
          'economy': 1,
          'nneg': 1}),
 Counter({'blah': 3,
          'speed': 2,
          '2': 2,
          'batman': 2,
          'picture': 2,
          'one': 2,
          'nthe': 2,
          'gotham': 2,
          'city': 2,
          'oddly': 2,
          'month': 1,
          'ago': 1,
          'wrote': 1,
          'worst': 1,
          'film': 1,
          'ive': 1,
          'ever': 1,
          'reviewed': 1,
          'paper': 1,
          'ni': 1,
          'didnt': 1,
          'know': 1,
          'time': 1,
          'id': 1,
          'soon': 1,
          'encounter': 1,
          'despise': 1,
          'robin': 1,
          'overtaken': 1,
          'least': 1,
          'worthy': 1,
          'attention': 1,
          'summer': 1,
          'nas': 1,
          'directed': 1,
          'joel': 1,
          'schumacher': 1,
          'specializes': 1,
          'sequels': 1,
          'john': 1,
          'grisham': 1,
          'adaptations': 1,
          'isnt': 1,
          'good': 1,
          'either': 1,
          'b': 1,
          'r': 1,
          'long': 1,
          'excuse': 1,
          'taco': 1,
          'bell': 1,
          'promotion': 1,
          'plot': 1,
          'mr': 1,
          'freeze': 1,
          'poison': 1,
          'ivy': 1,
          'uma': 1,
          'thurman': 1,
          'planning': 1,
          'take': 1,
          'vorld': 1,
          'ineffective': 1,
          'schwarzenegger': 1,
          'states': 1,
          'weighted': 1,
          'repetitive': 1,
          'asides': 1,
          'nature': 1,
          'trust': 1,
          'partnership': 1,
          'nbut': 1,
          'morals': 1,
          'point': 1,
          'filmtopping': 1,
          'bloated': 1,
          'confusing': 1,
          'action': 1,
          'scene': 1,
          'next': 1,
          'garish': 1,
          'art': 1,
          'direction': 1,
          'overlit': 1,
          'cinematography': 1,
          'make': 1,
          'comparable': 1,
          'trashy': 1,
          'showgirls': 1,
          'nsince': 1,
          'become': 1,
          'giant': 1,
          'las': 1,
          'vegas': 1,
          'hotel': 1,
          'nonly': 1,
          'george': 1,
          'clooney': 1,
          'comes': 1,
          'top': 1,
          'underplays': 1,
          'nicely': 1,
          'pretends': 1,
          'like': 1,
          'hes': 1,
          'real': 1,
          'movie': 1,
          'nneg': 1}),
 Counter({'hush': 8,
          'helen': 7,
          'martha': 6,
          'lange': 4,
          'marthas': 3,
          'one': 3,
          'nthe': 3,
          'really': 3,
          'call': 2,
          'see': 2,
          'bad': 2,
          'stupidity': 2,
          'nits': 2,
          'paltrow': 2,
          'horse': 2,
          'kilronan': 2,
          'takes': 2,
          'nbut': 2,
          'much': 2,
          'shes': 2,
          'nif': 2,
          'theres': 2,
          'yells': 2,
          'people': 2,
          'like': 2,
          'ending': 2,
          'scene': 2,
          'stop': 1,
          'mom': 1,
          'kill': 1,
          'mommy': 1,
          'fearest': 1,
          'hand': 1,
          'robs': 1,
          'cradle': 1,
          'ncall': 1,
          'whatever': 1,
          'want': 1,
          'certainly': 1,
          'dont': 1,
          'unless': 1,
          'youre': 1,
          'desperate': 1,
          'need': 1,
          'movieinduced': 1,
          'chuckle': 1,
          'scores': 1,
          'many': 1,
          'unintentional': 1,
          'guffaws': 1,
          'almost': 1,
          'qualifies': 1,
          'guilty': 1,
          'pleasure': 1,
          'nchalk': 1,
          'losses': 1,
          'frequent': 1,
          'lapses': 1,
          'apparent': 1,
          'postproduction': 1,
          'tinkering': 1,
          'supposed': 1,
          'open': 1,
          'year': 1,
          'ago': 1,
          'latter': 1,
          'appears': 1,
          'given': 1,
          'sendoff': 1,
          'thats': 1,
          'downright': 1,
          'infuriating': 1,
          'laughable': 1,
          'onscreen': 1,
          'talent': 1,
          'including': 1,
          'pairing': 1,
          'gwyneth': 1,
          'jessica': 1,
          'nothing': 1,
          'laugh': 1,
          'npaltrow': 1,
          'johnathon': 1,
          'schaech': 1,
          'play': 1,
          'jackson': 1,
          'photogenic': 1,
          'new': 1,
          'york': 1,
          'couple': 1,
          'way': 1,
          'spend': 1,
          'christmas': 1,
          'vacation': 1,
          'wealthy': 1,
          'welltodo': 1,
          'familys': 1,
          'farmestate': 1,
          'njacksons': 1,
          'mother': 1,
          'runs': 1,
          'genteel': 1,
          'southern': 1,
          'hospitality': 1,
          'makes': 1,
          'feel': 1,
          'welcome': 1,
          'immediately': 1,
          'even': 1,
          'first': 1,
          'meeting': 1,
          'place': 1,
          'altogether': 1,
          'caught': 1,
          'redhanded': 1,
          'bedroom': 1,
          'romp': 1,
          'husbandtobe': 1,
          'seems': 1,
          'friendly': 1,
          'smile': 1,
          'masks': 1,
          'threatening': 1,
          'demeanor': 1,
          'youd': 1,
          'someone': 1,
          'loves': 1,
          'nmartha': 1,
          'eagerly': 1,
          'deviously': 1,
          'wants': 1,
          'grandchild': 1,
          'expendable': 1,
          'far': 1,
          'concerned': 1,
          'reason': 1,
          'catch': 1,
          'nshe': 1,
          'treats': 1,
          'pedestrian': 1,
          'screenplay': 1,
          'better': 1,
          'deserves': 1,
          'treated': 1,
          'injecting': 1,
          'poorly': 1,
          'written': 1,
          'though': 1,
          'may': 1,
          'little': 1,
          'empathy': 1,
          'level': 1,
          'psychoplaying': 1,
          'field': 1,
          'nwhen': 1,
          'delves': 1,
          'dark': 1,
          'side': 1,
          'predictable': 1,
          'cliches': 1,
          'chainsmoking': 1,
          'staring': 1,
          'mirrors': 1,
          'praying': 1,
          'confessional': 1,
          'priest': 1,
          'isnt': 1,
          'poking': 1,
          'hole': 1,
          'helens': 1,
          'diaphragm': 1,
          'shell': 1,
          'become': 1,
          'pregnant': 1,
          'abound': 1,
          'moderately': 1,
          'entertaining': 1,
          'junk': 1,
          'interesting': 1,
          'actress': 1,
          'watch': 1,
          'nveteran': 1,
          'performer': 1,
          'nina': 1,
          'foch': 1,
          'smart': 1,
          'tart': 1,
          'jacksons': 1,
          'wheelchairbound': 1,
          'paternal': 1,
          'grandmother': 1,
          'rest': 1,
          'cast': 1,
          'looks': 1,
          'ill': 1,
          'uncomfortable': 1,
          'especially': 1,
          'blame': 1,
          'character': 1,
          'relationships': 1,
          'hold': 1,
          'certain': 1,
          'amount': 1,
          'promise': 1,
          'least': 1,
          'psychological': 1,
          'impact': 1,
          'blown': 1,
          'water': 1,
          'sheer': 1,
          'nidiotic': 1,
          'situations': 1,
          'nearby': 1,
          'bolt': 1,
          'knock': 1,
          'compliment': 1,
          'idiotic': 1,
          'dialogue': 1,
          'yell': 1,
          'nhelen': 1,
          'back': 1,
          'film': 1,
          'form': 1,
          'shoddier': 1,
          'fill': 1,
          'blankfromhell': 1,
          'flicks': 1,
          'ever': 1,
          'made': 1,
          'nyou': 1,
          'great': 1,
          'deal': 1,
          'actions': 1,
          'lies': 1,
          'conception': 1,
          'known': 1,
          'woman': 1,
          'years': 1,
          'longer': 1,
          'never': 1,
          'figure': 1,
          'things': 1,
          'ndoes': 1,
          'nobody': 1,
          'communicate': 1,
          'read': 1,
          'newspaper': 1,
          'town': 1,
          'potential': 1,
          'victims': 1,
          'thought': 1,
          'acted': 1,
          'behaved': 1,
          'normal': 1,
          'would': 1,
          'short': 1,
          'movie': 1,
          'nand': 1,
          'climax': 1,
          'abruptly': 1,
          'come': 1,
          'starts': 1,
          'contractions': 1,
          'eating': 1,
          'pound': 1,
          'cake': 1,
          'spiked': 1,
          'laborinducing': 1,
          'drug': 1,
          'normally': 1,
          'used': 1,
          'horses': 1,
          'nafter': 1,
          'weird': 1,
          'chase': 1,
          'calmly': 1,
          'knits': 1,
          'rocking': 1,
          'chair': 1,
          'forcing': 1,
          'give': 1,
          'birth': 1,
          'bed': 1,
          'ni': 1,
          'wont': 1,
          'spoil': 1,
          'happens': 1,
          'next': 1,
          'except': 1,
          'say': 1,
          'contradictory': 1,
          'illogical': 1,
          'probably': 1,
          'since': 1,
          'im': 1,
          'doctor': 1,
          'medically': 1,
          'impossible': 1,
          'final': 1,
          'offers': 1,
          'closure': 1,
          'resolution': 1,
          'confrontation': 1,
          'whatsoever': 1,
          'dangling': 1,
          'amidst': 1,
          'silent': 1,
          'displeasure': 1,
          'nno': 1,
          'regardless': 1,
          'feelings': 1,
          'preceding': 1,
          'material': 1,
          'nperhaps': 1,
          'title': 1,
          'plea': 1,
          'silence': 1,
          'audiences': 1,
          'likely': 1,
          'bitter': 1,
          'word': 1,
          'mouth': 1,
          'exiting': 1,
          'theater': 1,
          'nneg': 1}),
 Counter({'white': 4,
          'black': 4,
          'hype': 3,
          'nthe': 3,
          'big': 2,
          'boxing': 2,
          'great': 2,
          'champ': 2,
          'vs': 2,
          'nhe': 2,
          'nas': 2,
          'spoof': 2,
          'though': 2,
          'enough': 2,
          'hudlin': 2,
          'busy': 1,
          'satire': 1,
          'surprisingly': 1,
          'paltry': 1,
          'punch': 1,
          'stars': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'shameless': 1,
          'promoter': 1,
          'whose': 1,
          'plan': 1,
          'boost': 1,
          'sagging': 1,
          'payperview': 1,
          'revenues': 1,
          'invent': 1,
          'contender': 1,
          'peter': 1,
          'berg': 1,
          'challenge': 1,
          'heavyweight': 1,
          'damon': 1,
          'wayans': 1,
          'n': 1,
          'logic': 1,
          'people': 1,
          'pay': 1,
          'see': 1,
          'may': 1,
          'right': 1,
          'absurdly': 1,
          'accurate': 1,
          'way': 1,
          'film': 1,
          'doesnt': 1,
          'give': 1,
          'us': 1,
          'reason': 1,
          'care': 1,
          'scathing': 1,
          'sports': 1,
          'unfunny': 1,
          'unfocused': 1,
          'times': 1,
          'plain': 1,
          'pointless': 1,
          'commentary': 1,
          'race': 1,
          'relations': 1,
          'even': 1,
          'less': 1,
          'effective': 1,
          'dialogue': 1,
          'best': 1,
          'mess': 1,
          'lines': 1,
          'like': 1,
          'jon': 1,
          'lovitz': 1,
          'exclaiming': 1,
          'make': 1,
          'caviar': 1,
          'fish': 1,
          'eggs': 1,
          'nwriters': 1,
          'tony': 1,
          'hendra': 1,
          'ron': 1,
          'shelton': 1,
          'also': 1,
          'good': 1,
          'street': 1,
          'slang': 1,
          'never': 1,
          'hear': 1,
          'script': 1,
          'isnt': 1,
          'strong': 1,
          'support': 1,
          'aggressive': 1,
          'camera': 1,
          'work': 1,
          'director': 1,
          'reginald': 1,
          'house': 1,
          'party': 1,
          'comes': 1,
          'across': 1,
          'absolute': 1,
          'overkill': 1,
          'almost': 1,
          'turns': 1,
          'around': 1,
          'end': 1,
          'match': 1,
          'attempts': 1,
          'extended': 1,
          'gag': 1,
          'rockconcert': 1,
          'proportions': 1,
          'nwith': 1,
          'costumed': 1,
          'dwarfs': 1,
          'gangsta': 1,
          'rappers': 1,
          'dressed': 1,
          'death': 1,
          'get': 1,
          'glimpse': 1,
          'shouldve': 1,
          'nneg': 1}),
 Counter({'bunz': 6,
          'know': 5,
          'call': 5,
          'film': 5,
          'nthe': 4,
          'booty': 4,
          'much': 4,
          'rushon': 4,
          'nikki': 4,
          'reason': 4,
          'use': 4,
          'doesnt': 3,
          'like': 3,
          'questions': 3,
          'wants': 3,
          'lysterine': 3,
          'two': 3,
          'get': 3,
          'nwhy': 3,
          'chinese': 3,
          'nthis': 3,
          'times': 2,
          'cant': 2,
          'review': 2,
          'nin': 2,
          'ni': 2,
          'commitment': 2,
          'nbunz': 2,
          'best': 2,
          'friend': 2,
          'totally': 2,
          'happen': 2,
          'nikkis': 2,
          'make': 2,
          'long': 2,
          'story': 2,
          'couples': 2,
          'safe': 2,
          'sex': 2,
          'condoms': 2,
          'store': 2,
          'better': 2,
          'nbooty': 2,
          'nthere': 2,
          'even': 2,
          'also': 2,
          'screenplay': 2,
          'bad': 2,
          'scene': 2,
          'characters': 2,
          'restaurant': 2,
          'goes': 2,
          'asked': 2,
          'learned': 2,
          'language': 2,
          'words': 2,
          'kungfu': 2,
          'films': 2,
          'nif': 2,
          'movies': 2,
          'would': 2,
          'unbelievable': 2,
          'funny': 2,
          'almost': 2,
          'seem': 2,
          'movie': 1,
          'laughed': 1,
          'pretty': 1,
          'hard': 1,
          'problem': 1,
          'remember': 1,
          'write': 1,
          'nthats': 1,
          'good': 1,
          'sign': 1,
          'jamie': 1,
          'foxx': 1,
          'character': 1,
          'really': 1,
          'describe': 1,
          'dont': 1,
          'likes': 1,
          'shoot': 1,
          'dice': 1,
          'sidewalk': 1,
          'relationships': 1,
          'calls': 1,
          'three': 1,
          'morning': 1,
          'named': 1,
          'tommy': 1,
          'davidson': 1,
          'seems': 1,
          'bunzs': 1,
          'direct': 1,
          'opposite': 1,
          'straight': 1,
          'narrow': 1,
          'currently': 1,
          'longterm': 1,
          'whole': 1,
          'seven': 1,
          'weeks': 1,
          'wow': 1,
          'nrushon': 1,
          'finally': 1,
          'sleep': 1,
          'girlfriend': 1,
          'tamala': 1,
          'jones': 1,
          'explained': 1,
          'going': 1,
          'double': 1,
          'date': 1,
          'vivica': 1,
          'fox': 1,
          'never': 1,
          'met': 1,
          'nto': 1,
          'short': 1,
          'pair': 1,
          'spend': 1,
          'rest': 1,
          'evening': 1,
          'attempts': 1,
          'deed': 1,
          'spoiled': 1,
          'obsession': 1,
          'nfirst': 1,
          'go': 1,
          'noh': 1,
          'latex': 1,
          'lambskin': 1,
          'nback': 1,
          'nnow': 1,
          'theyve': 1,
          'got': 1,
          'dental': 1,
          'dams': 1,
          'therell': 1,
          'foreplay': 1,
          'stopped': 1,
          'time': 1,
          'makes': 1,
          'demand': 1,
          'nnikki': 1,
          'phones': 1,
          'lives': 1,
          'across': 1,
          'hall': 1,
          'tells': 1,
          'shed': 1,
          'making': 1,
          'demands': 1,
          'ntalk': 1,
          'coitus': 1,
          'interruptus': 1,
          'whether': 1,
          'regular': 1,
          'comedy': 1,
          'one': 1,
          'overthetop': 1,
          'comedies': 1,
          'difference': 1,
          'latter': 1,
          'things': 1,
          'constantly': 1,
          'far': 1,
          'removed': 1,
          'reality': 1,
          'category': 1,
          'example': 1,
          'ace': 1,
          'ventura': 1,
          'private': 1,
          'eye': 1,
          'mild': 1,
          'side': 1,
          'airplane': 1,
          'nat': 1,
          'extreme': 1,
          'steps': 1,
          'shell': 1,
          'tries': 1,
          'status': 1,
          'often': 1,
          'quickly': 1,
          'retreats': 1,
          'safety': 1,
          'convention': 1,
          'nit': 1,
          'disappointing': 1,
          'worse': 1,
          'distracting': 1,
          'instances': 1,
          'takashi': 1,
          'bufford': 1,
          'bootsie': 1,
          'parker': 1,
          'real': 1,
          'names': 1,
          'ndoes': 1,
          'live': 1,
          'potential': 1,
          'jokes': 1,
          'left': 1,
          'unexploited': 1,
          'ruined': 1,
          'writing': 1,
          'nfor': 1,
          'instance': 1,
          'main': 1,
          'asian': 1,
          'gangster': 1,
          'speaks': 1,
          'fluent': 1,
          'cantonese': 1,
          'everyones': 1,
          'surprise': 1,
          'nhowever': 1,
          'explanation': 1,
          'started': 1,
          'picking': 1,
          'latenight': 1,
          'soon': 1,
          'gained': 1,
          'mastery': 1,
          'negated': 1,
          'ludicrousness': 1,
          'entire': 1,
          'hand': 1,
          'speak': 1,
          'simply': 1,
          'replied': 1,
          'moved': 1,
          'joke': 1,
          'effective': 1,
          'nby': 1,
          'explaining': 1,
          'point': 1,
          'trying': 1,
          'ridiculous': 1,
          'plausible': 1,
          'giving': 1,
          'viewers': 1,
          'enough': 1,
          'credit': 1,
          'inconsistency': 1,
          'uncertain': 1,
          'believability': 1,
          'unfortunately': 1,
          'raise': 1,
          'disparate': 1,
          'people': 1,
          'friends': 1,
          'fix': 1,
          'obsessed': 1,
          'apartment': 1,
          'nthese': 1,
          'answered': 1,
          'overlooked': 1,
          'sole': 1,
          'moving': 1,
          'plot': 1,
          'forward': 1,
          'na': 1,
          'noticeable': 1,
          'quality': 1,
          'prevalence': 1,
          'unnecessary': 1,
          'foul': 1,
          'nsome': 1,
          'lot': 1,
          'swear': 1,
          'justifiable': 1,
          'circumstances': 1,
          'employed': 1,
          'consistent': 1,
          'pattern': 1,
          'speech': 1,
          'nother': 1,
          'recent': 1,
          'jackie': 1,
          'brown': 1,
          'ways': 1,
          'parody': 1,
          'sticks': 1,
          'laughs': 1,
          'work': 1,
          'nthey': 1,
          'stick': 1,
          'sore': 1,
          'thumbs': 1,
          'nhalf': 1,
          'scenes': 1,
          'occur': 1,
          'holdup': 1,
          'convenience': 1,
          'trip': 1,
          'hospital': 1,
          'nothing': 1,
          'filler': 1,
          'surprising': 1,
          'considering': 1,
          'less': 1,
          'eighty': 1,
          'minutes': 1,
          'nits': 1,
          'core': 1,
          'isnt': 1,
          'since': 1,
          'comprised': 1,
          'sometimes': 1,
          'forgettable': 1,
          'dialog': 1,
          'refer': 1,
          'first': 1,
          'paragraph': 1,
          'nneg': 1}),
 Counter({'messenger': 10,
          'story': 6,
          'jeanne': 6,
          'joan': 5,
          'besson': 5,
          'jovovich': 5,
          'nthe': 5,
          'arc': 4,
          'epic': 4,
          'milla': 3,
          'historical': 3,
          'film': 3,
          'like': 3,
          'power': 3,
          'ntheres': 3,
          'classic': 2,
          'role': 2,
          'girl': 2,
          'god': 2,
          'heavenly': 2,
          'disjointed': 2,
          'overblown': 2,
          'merely': 2,
          'nbesson': 2,
          'work': 2,
          'actress': 2,
          'could': 2,
          'hesitant': 2,
          'looked': 2,
          'timeless': 2,
          'battle': 2,
          'bizarre': 2,
          'character': 2,
          'njovovich': 2,
          'little': 2,
          'visual': 2,
          'moments': 2,
          'charles': 2,
          'malkovich': 2,
          'time': 2,
          'presence': 2,
          'none': 2,
          'also': 2,
          '90s': 2,
          'seems': 2,
          'come': 2,
          'going': 2,
          'retelling': 1,
          'popular': 1,
          'trend': 1,
          'year': 1,
          'nearlier': 1,
          'may': 1,
          'leelee': 1,
          'sobieski': 1,
          'played': 1,
          'passionate': 1,
          'title': 1,
          'toprated': 1,
          'miniseries': 1,
          'debuted': 1,
          'cbs': 1,
          'nand': 1,
          'director': 1,
          'luc': 1,
          'delivered': 1,
          'version': 1,
          'sweeping': 1,
          'teenage': 1,
          'supposedly': 1,
          'sent': 1,
          'rescue': 1,
          'france': 1,
          'clutches': 1,
          'enemies': 1,
          'nstarring': 1,
          'predominantly': 1,
          'unconvincing': 1,
          'accused': 1,
          'witch': 1,
          'reenactment': 1,
          'prevails': 1,
          'bloated': 1,
          'mistreatment': 1,
          'famous': 1,
          'legend': 1,
          'whos': 1,
          'previous': 1,
          'includes': 1,
          'hyperactive': 1,
          'scifi': 1,
          'fifth': 1,
          'element': 1,
          'perhaps': 1,
          'entrusted': 1,
          'bit': 1,
          'much': 1,
          'faith': 1,
          'exwife': 1,
          'drowning': 1,
          'pool': 1,
          'inexperience': 1,
          'nat': 1,
          'first': 1,
          'reports': 1,
          'indicating': 1,
          'chosen': 1,
          'demanding': 1,
          'highly': 1,
          'doubtful': 1,
          'marginal': 1,
          'talent': 1,
          'carry': 1,
          'caliber': 1,
          'nafter': 1,
          'seeing': 1,
          'rousing': 1,
          'trailer': 1,
          'optimism': 1,
          'suddenly': 1,
          'skyrocketed': 1,
          'superb': 1,
          'nwith': 1,
          'hopeful': 1,
          'propulsion': 1,
          'stellar': 1,
          'performance': 1,
          'making': 1,
          'na': 1,
          'abandon': 1,
          'unique': 1,
          'flashy': 1,
          'style': 1,
          'behind': 1,
          'entirely': 1,
          'suited': 1,
          'demands': 1,
          'non': 1,
          'shoulders': 1,
          'bessons': 1,
          'choppy': 1,
          'unexciting': 1,
          'direction': 1,
          'dissipates': 1,
          'uninspiring': 1,
          'hodgepodge': 1,
          'poorly': 1,
          'executed': 1,
          'sequences': 1,
          'imagery': 1,
          'nthere': 1,
          'human': 1,
          'exploration': 1,
          'rambles': 1,
          'insight': 1,
          'visionary': 1,
          'objective': 1,
          'njovivichs': 1,
          'unsatisfying': 1,
          'portrayal': 1,
          'helps': 1,
          'lead': 1,
          'realization': 1,
          'sees': 1,
          'piece': 1,
          'spiritual': 1,
          'cardboard': 1,
          'nshe': 1,
          'another': 1,
          'special': 1,
          'effect': 1,
          'continuous': 1,
          'feast': 1,
          'isolated': 1,
          'sheer': 1,
          'mainly': 1,
          'looks': 1,
          'lost': 1,
          'nquite': 1,
          'frankly': 1,
          'dont': 1,
          'know': 1,
          'successfully': 1,
          'navigate': 1,
          'way': 1,
          'without': 1,
          'major': 1,
          'fumble': 1,
          'script': 1,
          'chockfull': 1,
          'laughable': 1,
          'dialogue': 1,
          'unfortunate': 1,
          'comedy': 1,
          'confronts': 1,
          'uncrowned': 1,
          'king': 1,
          'vii': 1,
          'john': 1,
          'informs': 1,
          'intentions': 1,
          'nfaye': 1,
          'dunaway': 1,
          'plays': 1,
          'overbearing': 1,
          'motherinlaw': 1,
          'dustin': 1,
          'hoffman': 1,
          'appears': 1,
          'twohours': 1,
          'dubbed': 1,
          'conscience': 1,
          'nall': 1,
          'three': 1,
          'actors': 1,
          'juggle': 1,
          'limited': 1,
          'screen': 1,
          'although': 1,
          'uncharacteristically': 1,
          'awful': 1,
          'scenes': 1,
          'extremely': 1,
          'bloody': 1,
          'jittery': 1,
          'camera': 1,
          'capture': 1,
          'excitement': 1,
          'finesse': 1,
          'something': 1,
          'braveheart': 1,
          'particularly': 1,
          'graphic': 1,
          'unsettling': 1,
          'scene': 1,
          'early': 1,
          'young': 1,
          'watches': 1,
          'horror': 1,
          'closet': 1,
          'older': 1,
          'sister': 1,
          'murdered': 1,
          'savagely': 1,
          'raped': 1,
          'bloodthirsty': 1,
          'english': 1,
          'soldier': 1,
          'neven': 1,
          'fellow': 1,
          'troopers': 1,
          'petrified': 1,
          'strictly': 1,
          'update': 1,
          'nalmost': 1,
          'gratuitous': 1,
          'use': 1,
          'fword': 1,
          'barrage': 1,
          'slang': 1,
          'terms': 1,
          'shes': 1,
          'nuts': 1,
          'nsprinkled': 1,
          'throughout': 1,
          'screenplay': 1,
          'ni': 1,
          'halfexpecting': 1,
          'invite': 1,
          'homeys': 1,
          'chill': 1,
          'crib': 1,
          'never': 1,
          'happened': 1,
          'familiar': 1,
          'humor': 1,
          'comes': 1,
          'even': 1,
          'remotely': 1,
          'close': 1,
          'functioning': 1,
          'properly': 1,
          'nit': 1,
          'terribly': 1,
          'misplaced': 1,
          'catastrophe': 1,
          'jumbled': 1,
          'almost': 1,
          'everything': 1,
          'musical': 1,
          'score': 1,
          'erric': 1,
          'serra': 1,
          'spectacular': 1,
          'set': 1,
          'production': 1,
          'designs': 1,
          'continuously': 1,
          'impressive': 1,
          'nif': 1,
          'excellence': 1,
          'striving': 1,
          'achieves': 1,
          'goal': 1,
          'nbut': 1,
          'dramatics': 1,
          'alive': 1,
          'closing': 1,
          'trial': 1,
          'found': 1,
          'guilty': 1,
          'burned': 1,
          'stake': 1,
          'nduring': 1,
          'relevance': 1,
          'dramatic': 1,
          'purpose': 1,
          'reaches': 1,
          'audience': 1,
          'albeit': 1,
          'faint': 1,
          'stream': 1,
          'light': 1,
          'provokes': 1,
          'meaning': 1,
          'nits': 1,
          'delayed': 1,
          'revive': 1,
          'lifeless': 1,
          'interpretation': 1,
          'always': 1,
          'concerned': 1,
          'wrong': 1,
          'aspects': 1,
          'unlikely': 1,
          'unwelcome': 1,
          'addition': 1,
          'hollywood': 1,
          'shelf': 1,
          'nanyone': 1,
          'searching': 1,
          'entertaining': 1,
          'painfully': 1,
          'slapped': 1,
          'confusing': 1,
          'ndespite': 1,
          'original': 1,
          'hopefulness': 1,
          'worry': 1,
          'thanking': 1,
          'academy': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'brother': 4,
          'violence': 3,
          'kitano': 3,
          'yakuza': 3,
          'family': 3,
          'would': 3,
          'nthe': 3,
          'nviolence': 2,
          'directed': 2,
          'first': 2,
          'film': 2,
          'dishonor': 2,
          'na': 2,
          'interesting': 2,
          'know': 2,
          'doesnt': 2,
          'much': 2,
          'nthere': 2,
          'back': 2,
          'rival': 2,
          'scenes': 2,
          'people': 2,
          'go': 2,
          'moments': 2,
          'also': 2,
          'combination': 2,
          'crime': 2,
          'get': 2,
          'great': 2,
          'bad': 1,
          'ugly': 1,
          'breeds': 1,
          'yet': 1,
          'nkids': 1,
          'dont': 1,
          'try': 1,
          'home': 1,
          'nthis': 1,
          'weighty': 1,
          'message': 1,
          'isnt': 1,
          'barrier': 1,
          'enjoying': 1,
          'certainly': 1,
          'largest': 1,
          'nwritten': 1,
          'starring': 1,
          'infamous': 1,
          'takeshi': 1,
          'kikujiro': 1,
          'sonatine': 1,
          'made': 1,
          'outside': 1,
          'familial': 1,
          'japan': 1,
          'bringing': 1,
          'tradition': 1,
          'los': 1,
          'angeles': 1,
          'n': 1,
          'translated': 1,
          'average': 1,
          'american': 1,
          'japanese': 1,
          'mafia': 1,
          'nif': 1,
          'piss': 1,
          'member': 1,
          'way': 1,
          'usual': 1,
          'punishment': 1,
          'public': 1,
          'display': 1,
          'selfmutilation': 1,
          'usually': 1,
          'resulting': 1,
          'loss': 1,
          'limbs': 1,
          'definition': 1,
          'anything': 1,
          'making': 1,
          'stupid': 1,
          'decision': 1,
          'leaving': 1,
          'another': 1,
          'nit': 1,
          'customs': 1,
          'come': 1,
          'nunfortunately': 1,
          'give': 1,
          'explanation': 1,
          'assuming': 1,
          'audience': 1,
          'aware': 1,
          'kitanos': 1,
          'earlier': 1,
          'work': 1,
          'several': 1,
          'shots': 1,
          'focus': 1,
          'specifically': 1,
          'detailed': 1,
          'tattoos': 1,
          'spread': 1,
          'across': 1,
          'entire': 1,
          'members': 1,
          'leading': 1,
          'assume': 1,
          'symbolic': 1,
          'something': 1,
          'never': 1,
          'nthen': 1,
          'theres': 1,
          'scene': 1,
          'man': 1,
          'kills': 1,
          'front': 1,
          'exchange': 1,
          'joining': 1,
          'ngranted': 1,
          'best': 1,
          'movie': 1,
          'make': 1,
          'lot': 1,
          'sense': 1,
          'ninstead': 1,
          'two': 1,
          'hours': 1,
          'basically': 1,
          'spent': 1,
          'watching': 1,
          'following': 1,
          'shoot': 1,
          'talk': 1,
          'tenplus': 1,
          'minutes': 1,
          'consistently': 1,
          'repetitive': 1,
          'discussion': 1,
          'territory': 1,
          'involuntarily': 1,
          'provokes': 1,
          'yawning': 1,
          'plot': 1,
          'details': 1,
          'thrown': 1,
          'identifiable': 1,
          'purpose': 1,
          'nall': 1,
          'sudden': 1,
          'yamamoto': 1,
          'girlfriend': 1,
          'nhe': 1,
          'barely': 1,
          'speaks': 1,
          'treats': 1,
          'like': 1,
          'crap': 1,
          'sends': 1,
          'away': 1,
          'nanother': 1,
          'missed': 1,
          'opportunity': 1,
          'considering': 1,
          'big': 1,
          'deal': 1,
          'bring': 1,
          'magic': 1,
          'united': 1,
          'states': 1,
          'cultures': 1,
          'rely': 1,
          'heavily': 1,
          'overused': 1,
          'stereotypes': 1,
          'nthough': 1,
          'slow': 1,
          'moving': 1,
          'good': 1,
          'elements': 1,
          'action': 1,
          'well': 1,
          'clearly': 1,
          'defined': 1,
          'watch': 1,
          'nsome': 1,
          'hinted': 1,
          'shown': 1,
          'produces': 1,
          'luscious': 1,
          'squirm': 1,
          'goes': 1,
          'see': 1,
          'films': 1,
          'actors': 1,
          'enticing': 1,
          'nshirases': 1,
          'masaya': 1,
          'kato': 1,
          'loud': 1,
          'sarcastic': 1,
          'coolness': 1,
          'set': 1,
          'yamamotos': 1,
          'quietly': 1,
          'threatening': 1,
          'attitude': 1,
          'truly': 1,
          'entertaining': 1,
          'ntheir': 1,
          'together': 1,
          'apart': 1,
          'steal': 1,
          'rest': 1,
          'show': 1,
          'nalso': 1,
          'credit': 1,
          'tackles': 1,
          'cause': 1,
          'effect': 1,
          'realism': 1,
          'life': 1,
          'easy': 1,
          'sucked': 1,
          'reward': 1,
          'quick': 1,
          'cash': 1,
          'nsure': 1,
          'rich': 1,
          'lose': 1,
          'easily': 1,
          'nits': 1,
          'moral': 1,
          'cast': 1,
          'substance': 1,
          'nneg': 1}),
 Counter({'nit': 8,
          'vampire': 8,
          'like': 6,
          'anime': 6,
          'hunter': 6,
          'really': 5,
          'see': 5,
          'blood': 5,
          'gory': 4,
          'vampires': 4,
          'film': 3,
          'gets': 3,
          'would': 3,
          'peasant': 3,
          'girl': 3,
          '17': 3,
          'year': 3,
          'old': 3,
          'think': 3,
          'genre': 2,
          'nif': 2,
          'made': 2,
          'live': 2,
          'gore': 2,
          'one': 2,
          'supposed': 2,
          'story': 2,
          'animation': 2,
          'seems': 2,
          'evil': 2,
          'local': 2,
          'get': 2,
          'look': 2,
          'guessed': 2,
          'shower': 2,
          'fighting': 2,
          'nof': 2,
          'course': 2,
          'bite': 2,
          'enough': 2,
          'nthe': 2,
          'bad': 2,
          'animated': 2,
          'clever': 2,
          'movie': 2,
          'defense': 2,
          'original': 2,
          'ni': 2,
          'understand': 2,
          'excuse': 2,
          'nothing': 1,
          'quite': 1,
          'nreally': 1,
          'truth': 1,
          'away': 1,
          'violence': 1,
          'without': 1,
          'word': 1,
          'said': 1,
          'media': 1,
          'nwith': 1,
          'common': 1,
          'shot': 1,
          'watching': 1,
          'body': 1,
          'getting': 1,
          'quickly': 1,
          'cut': 1,
          'two': 1,
          'rest': 1,
          'insides': 1,
          'falling': 1,
          'seconds': 1,
          'afterword': 1,
          'nthis': 1,
          'standard': 1,
          'practice': 1,
          'least': 1,
          'half': 1,
          'dozen': 1,
          'titles': 1,
          'seen': 1,
          'nvampire': 1,
          'ever': 1,
          'version': 1,
          'banned': 1,
          'several': 1,
          'countries': 1,
          'given': 1,
          'rating': 1,
          'somewhere': 1,
          'xxx': 1,
          'unique': 1,
          'animes': 1,
          'stand': 1,
          'complexity': 1,
          'characters': 1,
          'etc': 1,
          'disgusting': 1,
          'gruesome': 1,
          'overshadowed': 1,
          'little': 1,
          'distant': 1,
          'future': 1,
          'control': 1,
          'world': 1,
          'god': 1,
          'knows': 1,
          'police': 1,
          'force': 1,
          'seem': 1,
          'handle': 1,
          'movies': 1,
          'none': 1,
          'evening': 1,
          'blond': 1,
          'drawn': 1,
          'innocent': 1,
          'foreshadow': 1,
          'naked': 1,
          'early': 1,
          'rape': 1,
          'scene': 1,
          'forest': 1,
          'preserve': 1,
          'stumbles': 1,
          'onto': 1,
          'private': 1,
          'property': 1,
          'ten': 1,
          'thousand': 1,
          'insert': 1,
          'strom': 1,
          'thurmand': 1,
          'joke': 1,
          'never': 1,
          'put': 1,
          'trespassing': 1,
          'sign': 1,
          'yard': 1,
          'blame': 1,
          'upset': 1,
          'anyway': 1,
          'demands': 1,
          'retribution': 1,
          'nshe': 1,
          'obligatory': 1,
          'neck': 1,
          'places': 1,
          'elbow': 1,
          'well': 1,
          'good': 1,
          'doctors': 1,
          'draw': 1,
          'stray': 1,
          'sight': 1,
          'nto': 1,
          'fight': 1,
          'spell': 1,
          'enlists': 1,
          'help': 1,
          'mysteriously': 1,
          'tall': 1,
          'dark': 1,
          'handsome': 1,
          'name': 1,
          'torn': 1,
          'attracted': 1,
          'finding': 1,
          'reasons': 1,
          'talk': 1,
          'much': 1,
          'nyou': 1,
          'heroes': 1,
          'kinds': 1,
          'stories': 1,
          'brooder': 1,
          'sole': 1,
          'purpose': 1,
          'life': 1,
          'remain': 1,
          'silent': 1,
          'nwhen': 1,
          'speaks': 1,
          'cliches': 1,
          'nheroes': 1,
          'even': 1,
          'worse': 1,
          'nlater': 1,
          'storms': 1,
          'castle': 1,
          'meet': 1,
          'big': 1,
          'wants': 1,
          'marry': 1,
          'bored': 1,
          '10': 1,
          '000': 1,
          'years': 1,
          'living': 1,
          'insight': 1,
          'rush': 1,
          'save': 1,
          'time': 1,
          'nwill': 1,
          'intestines': 1,
          'spattering': 1,
          'every': 1,
          'place': 1,
          'imaginable': 1,
          'nin': 1,
          'focusing': 1,
          'rather': 1,
          'recycling': 1,
          'slicing': 1,
          'could': 1,
          'times': 1,
          'talking': 1,
          'hand': 1,
          'inspiration': 1,
          'skateboardrelated': 1,
          'logo': 1,
          'nand': 1,
          'best': 1,
          'fave': 1,
          'among': 1,
          'fans': 1,
          'watch': 1,
          'dripping': 1,
          'teeth': 1,
          'exploding': 1,
          'eye': 1,
          'sockets': 1,
          'horses': 1,
          'necks': 1,
          'importantly': 1,
          'violent': 1,
          'breasts': 1,
          'nwhy': 1,
          'nwhat': 1,
          'point': 1,
          'nmaybe': 1,
          'past': 1,
          'obsessive': 1,
          'mysogny': 1,
          'prude': 1,
          'warranted': 1,
          'puts': 1,
          'far': 1,
          'front': 1,
          'everything': 1,
          'else': 1,
          'lost': 1,
          'nis': 1,
          'neccesity': 1,
          'seeing': 1,
          'done': 1,
          'shock': 1,
          'tasteless': 1,
          'despicable': 1,
          'nneg': 1}),
 Counter({'bill': 5,
          'alice': 5,
          'hes': 4,
          'almost': 4,
          'many': 3,
          'kubrick': 3,
          'wide': 3,
          'shut': 3,
          'film': 3,
          'nthis': 3,
          'confused': 3,
          'nhe': 3,
          'director': 3,
          'little': 3,
          'eyes': 2,
          'nkubrick': 2,
          'kidman': 2,
          'one': 2,
          'long': 2,
          'story': 2,
          'nin': 2,
          'leaving': 2,
          'pollack': 2,
          'keitel': 2,
          'leigh': 2,
          'depth': 2,
          'nand': 2,
          'much': 2,
          'theres': 2,
          'blackandwhite': 2,
          'kubricks': 2,
          'doesnt': 2,
          'party': 2,
          'nbill': 2,
          'deal': 2,
          'feelings': 2,
          'bad': 2,
          'lauded': 1,
          'genius': 1,
          'stanley': 1,
          'commands': 1,
          'superlative': 1,
          'filmography': 1,
          'includes': 1,
          'criticallyacclaimed': 1,
          'films': 1,
          '2001': 1,
          'space': 1,
          'odyssey': 1,
          'clockwork': 1,
          'orange': 1,
          'lolita': 1,
          'dr': 1,
          'nstrangelove': 1,
          'learned': 1,
          'stop': 1,
          'worrying': 1,
          'love': 1,
          'bomb': 1,
          'nnow': 1,
          'sadly': 1,
          'added': 1,
          'impeccable': 1,
          'body': 1,
          'work': 1,
          'final': 1,
          'first': 1,
          'blot': 1,
          'nearflawless': 1,
          'copybook': 1,
          'alas': 1,
          'quit': 1,
          'ahead': 1,
          'muchpublicized': 1,
          'psychosexual': 1,
          'teaseathon': 1,
          'star': 1,
          'billing': 1,
          'reallife': 1,
          'marrieds': 1,
          'tom': 1,
          'cruise': 1,
          'nicole': 1,
          'nothing': 1,
          'twoandahalf': 1,
          'hours': 1,
          'boring': 1,
          'exercise': 1,
          'features': 1,
          'operating': 1,
          'talent': 1,
          'faithless': 1,
          'arthur': 1,
          'schnitzlers': 1,
          '1926': 1,
          'novella': 1,
          'dream': 1,
          'eroticism': 1,
          'nudity': 1,
          'intellectualism': 1,
          'talking': 1,
          'slowly': 1,
          'profundity': 1,
          'pretentiousness': 1,
          'addition': 1,
          'made': 1,
          'strange': 1,
          'casting': 1,
          'choices': 1,
          'sydney': 1,
          'accomplished': 1,
          'performers': 1,
          'harvey': 1,
          'jennifer': 1,
          'jason': 1,
          'npollack': 1,
          'boxoffice': 1,
          'hits': 1,
          'tootsie': 1,
          'africa': 1,
          'normally': 1,
          'solid': 1,
          'occasional': 1,
          'acting': 1,
          'stints': 1,
          'miserably': 1,
          'isnt': 1,
          'begin': 1,
          'nunhappily': 1,
          'likely': 1,
          'directors': 1,
          'cut': 1,
          'determine': 1,
          'whether': 1,
          'decision': 1,
          'exorcise': 1,
          'right': 1,
          'fact': 1,
          'exception': 1,
          'stark': 1,
          'credits': 1,
          'snatches': 1,
          'baroque': 1,
          'music': 1,
          'soundtrack': 1,
          'grainy': 1,
          'tracking': 1,
          'shots': 1,
          'lavishlydecorated': 1,
          'corridors': 1,
          'none': 1,
          'trademark': 1,
          'brilliance': 1,
          'nit': 1,
          'help': 1,
          'delivered': 1,
          'ridiculous': 1,
          'ncruise': 1,
          'bring': 1,
          'marital': 1,
          'torpor': 1,
          'project': 1,
          'play': 1,
          'welltodo': 1,
          'new': 1,
          'yorkers': 1,
          'harford': 1,
          'nhes': 1,
          'doctor': 1,
          'shes': 1,
          'unemployed': 1,
          'art': 1,
          'gallery': 1,
          'share': 1,
          'central': 1,
          'park': 1,
          'west': 1,
          'address': 1,
          'nat': 1,
          'opulent': 1,
          'hosted': 1,
          'friend': 1,
          'victor': 1,
          'ziegler': 1,
          'gets': 1,
          'tipsy': 1,
          'starts': 1,
          'dancing': 1,
          'jeremy': 1,
          'ironslike': 1,
          'hungarian': 1,
          'whos': 1,
          'singularly': 1,
          'determined': 1,
          'get': 1,
          'sack': 1,
          'seen': 1,
          'arminarm': 1,
          'couple': 1,
          'models': 1,
          'pulled': 1,
          'away': 1,
          'overdoser': 1,
          'nback': 1,
          'home': 1,
          'smoke': 1,
          'pot': 1,
          'alices': 1,
          'aggressive': 1,
          'jealousy': 1,
          'kicks': 1,
          'nas': 1,
          'retribution': 1,
          'confesses': 1,
          'husband': 1,
          'deep': 1,
          'naval': 1,
          'officer': 1,
          'eyeballed': 1,
          'hotel': 1,
          'stayed': 1,
          'hurtful': 1,
          'admission': 1,
          'sends': 1,
          'tailspin': 1,
          'pounds': 1,
          'streets': 1,
          'village': 1,
          'heavy': 1,
          'black': 1,
          'overcoat': 1,
          'struggling': 1,
          'images': 1,
          'grip': 1,
          'horny': 1,
          'midshipman': 1,
          'nits': 1,
          'way': 1,
          'nfor': 1,
          'revenge': 1,
          'sex': 1,
          'hooker': 1,
          'underage': 1,
          'girl': 1,
          'sees': 1,
          'costume': 1,
          'store': 1,
          'nthen': 1,
          'hookers': 1,
          'roommate': 1,
          'involved': 1,
          'overblown': 1,
          'rococo': 1,
          'orgy': 1,
          'old': 1,
          'college': 1,
          'chum': 1,
          'tips': 1,
          'mysterious': 1,
          'passwordprotected': 1,
          'everyone': 1,
          'wears': 1,
          'masks': 1,
          'women': 1,
          'incredible': 1,
          'e': 1,
          'naked': 1,
          'erotic': 1,
          'set': 1,
          'piece': 1,
          'cultish': 1,
          'bacchanal': 1,
          'complete': 1,
          'chanting': 1,
          'incense': 1,
          'lots': 1,
          'strategicallyplaced': 1,
          'partygoers': 1,
          'covering': 1,
          'dirty': 1,
          'might': 1,
          'impress': 1,
          'likes': 1,
          'hugh': 1,
          'hefner': 1,
          'lot': 1,
          'less': 1,
          'shocking': 1,
          'intended': 1,
          'nwhats': 1,
          'big': 1,
          'exactly': 1,
          'anything': 1,
          'throw': 1,
          'money': 1,
          'credentials': 1,
          'around': 1,
          'ever': 1,
          'lusted': 1,
          'heart': 1,
          'nwhoopdeedoo': 1,
          'nstill': 1,
          'make': 1,
          'agonizingly': 1,
          'slow': 1,
          'pacewas': 1,
          'notorious': 1,
          'multiple': 1,
          'takes': 1,
          'paying': 1,
          'hourly': 1,
          'rate': 1,
          'neven': 1,
          'geniuses': 1,
          'days': 1,
          'n': 1,
          'happens': 1,
          'day': 1,
          'unerotic': 1,
          'disappointing': 1,
          'altogether': 1,
          'pointless': 1,
          'end': 1,
          'otherwise': 1,
          'memorable': 1,
          'career': 1,
          'nneg': 1}),
 Counter({'excess': 7,
          'baggage': 7,
          'emily': 6,
          'vincent': 5,
          'clueless': 4,
          'two': 3,
          'story': 3,
          'nbut': 3,
          'back': 3,
          'many': 3,
          'turn': 2,
          'shes': 2,
          'film': 2,
          'together': 2,
          'locks': 2,
          'car': 2,
          'whos': 2,
          'annoys': 2,
          'way': 2,
          'course': 2,
          'get': 2,
          'situation': 2,
          'matters': 2,
          'even': 2,
          'aloof': 2,
          'suddenly': 2,
          'becomes': 2,
          'na': 2,
          'movie': 2,
          'comedy': 2,
          'seems': 2,
          'n': 2,
          'one': 2,
          'hand': 2,
          'starring': 1,
          'amy': 1,
          'heckerlings': 1,
          'summers': 1,
          'ago': 1,
          'alicia': 1,
          'silverstone': 1,
          'proved': 1,
          'wasnt': 1,
          'another': 1,
          'pretty': 1,
          'pouty': 1,
          'ingenue': 1,
          'showing': 1,
          'buoyant': 1,
          'comedic': 1,
          'craftiness': 1,
          'blew': 1,
          'previous': 1,
          'jobs': 1,
          'namely': 1,
          'stint': 1,
          'aerosmith': 1,
          'girl': 1,
          'silly': 1,
          'lethal': 1,
          'lolita': 1,
          'crush': 1,
          'water': 1,
          'nher': 1,
          'work': 1,
          'since': 1,
          '1995': 1,
          'gem': 1,
          'junes': 1,
          'batman': 1,
          'robin': 1,
          'overcame': 1,
          'underwritten': 1,
          'role': 1,
          'batgirl': 1,
          'nnow': 1,
          'star': 1,
          'producer': 1,
          'hopelessly': 1,
          'phony': 1,
          'demonstrates': 1,
          'illcomposed': 1,
          'drag': 1,
          'otherwise': 1,
          'solid': 1,
          'performer': 1,
          'level': 1,
          'nsilverstones': 1,
          'hope': 1,
          'stuck': 1,
          'billionaire': 1,
          'father': 1,
          'jack': 1,
          'thompson': 1,
          'neglects': 1,
          'emotionally': 1,
          'nin': 1,
          'outlandish': 1,
          'plan': 1,
          'gain': 1,
          'affection': 1,
          'fakes': 1,
          'kidnapping': 1,
          'uses': 1,
          'electronically': 1,
          'disguised': 1,
          'voice': 1,
          'call': 1,
          'dad': 1,
          'set': 1,
          'pricey': 1,
          'ransom': 1,
          'ties': 1,
          'legs': 1,
          'mouth': 1,
          'shut': 1,
          'duct': 1,
          'tape': 1,
          'trunk': 1,
          'bmw': 1,
          'police': 1,
          'rescue': 1,
          'professional': 1,
          'auto': 1,
          'thief': 1,
          'roche': 1,
          'benicio': 1,
          'del': 1,
          'toro': 1,
          'jimmies': 1,
          'hotwires': 1,
          'engine': 1,
          'makes': 1,
          'still': 1,
          'trapped': 1,
          'nwhen': 1,
          'discovers': 1,
          'dont': 1,
          'exactly': 1,
          'hit': 1,
          'advice': 1,
          'slimy': 1,
          'salesman': 1,
          'partner': 1,
          'harry': 1,
          'connick': 1,
          'jr': 1,
          'decides': 1,
          'drive': 1,
          'middle': 1,
          'nowhere': 1,
          'leave': 1,
          'nalong': 1,
          'whole': 1,
          'heap': 1,
          'trouble': 1,
          'come': 1,
          'realize': 1,
          'sticky': 1,
          'felonystudded': 1,
          'nit': 1,
          'doesnt': 1,
          'help': 1,
          'trailed': 1,
          'cops': 1,
          'crooks': 1,
          'shady': 1,
          'uncle': 1,
          'ray': 1,
          'christopher': 1,
          'walken': 1,
          'wise': 1,
          'nieces': 1,
          'ploys': 1,
          'attention': 1,
          'mafia': 1,
          'connections': 1,
          'nfor': 1,
          'least': 1,
          'halfhour': 1,
          'bounces': 1,
          'along': 1,
          'fast': 1,
          'efficiently': 1,
          'nduring': 1,
          'time': 1,
          'sport': 1,
          'engaging': 1,
          'personalities': 1,
          'well': 1,
          'nice': 1,
          'rolereversal': 1,
          'twist': 1,
          'awfully': 1,
          'aggressive': 1,
          'combative': 1,
          'victim': 1,
          'hes': 1,
          'quite': 1,
          'seemingly': 1,
          'vulnerable': 1,
          'captor': 1,
          'past': 1,
          'setup': 1,
          'uninvolving': 1,
          'tries': 1,
          'things': 1,
          'road': 1,
          'teen': 1,
          'mob': 1,
          'thriller': 1,
          'drama': 1,
          'family': 1,
          'relationships': 1,
          'name': 1,
          'cliche': 1,
          'likely': 1,
          'covers': 1,
          'territory': 1,
          'nof': 1,
          'romance': 1,
          'develops': 1,
          'leads': 1,
          'forced': 1,
          'thus': 1,
          'characterization': 1,
          'manipulated': 1,
          'cause': 1,
          'finally': 1,
          'happy': 1,
          'outcome': 1,
          'like': 1,
          'tummy': 1,
          'nemily': 1,
          'coos': 1,
          'point': 1,
          'nhuh': 1,
          'ndid': 1,
          'miss': 1,
          'something': 1,
          'nthe': 1,
          'hardedged': 1,
          'foulmouthed': 1,
          'grrrl': 1,
          'gone': 1,
          'replaced': 1,
          'pair': 1,
          'batting': 1,
          'googoo': 1,
          'eyes': 1,
          'nthen': 1,
          'weak': 1,
          'areas': 1,
          'personality': 1,
          'transplant': 1,
          'complete': 1,
          'surprise': 1,
          'supporting': 1,
          'cast': 1,
          'attempts': 1,
          'colorful': 1,
          'empty': 1,
          'secondary': 1,
          'roles': 1,
          'isnt': 1,
          'game': 1,
          'enough': 1,
          'use': 1,
          'therefore': 1,
          'overcrowded': 1,
          'nmotivations': 1,
          'keep': 1,
          'shifting': 1,
          'resulting': 1,
          'often': 1,
          'confusing': 1,
          'narrative': 1,
          'nscant': 1,
          'existing': 1,
          'background': 1,
          'confuses': 1,
          'worse': 1,
          'adds': 1,
          'growing': 1,
          'list': 1,
          'unanswered': 1,
          'questions': 1,
          'characters': 1,
          'much': 1,
          'plot': 1,
          'juggles': 1,
          'arm': 1,
          'behind': 1,
          'remaining': 1,
          'shaky': 1,
          'ni': 1,
          'loved': 1,
          'silverstones': 1,
          'pampered': 1,
          'beverly': 1,
          'hills': 1,
          'matchmaker': 1,
          'inspired': 1,
          'jane': 1,
          'austens': 1,
          'emma': 1,
          'nlooking': 1,
          'skill': 1,
          'displayed': 1,
          'simple': 1,
          'justify': 1,
          'high': 1,
          'expectation': 1,
          'enthusiasm': 1,
          'mustered': 1,
          'nsadly': 1,
          'however': 1,
          'nneg': 1}),
 Counter({'bats': 9,
          'town': 9,
          'bat': 9,
          'film': 9,
          'going': 6,
          'films': 5,
          'one': 4,
          'death': 4,
          'good': 4,
          'never': 4,
          'nthe': 4,
          'bob': 3,
          'gunton': 3,
          'animals': 3,
          'small': 3,
          'military': 3,
          'plot': 3,
          'meyer': 3,
          'sheriff': 3,
          'character': 3,
          'ni': 3,
          'say': 3,
          'would': 3,
          'bad': 3,
          'actual': 3,
          'could': 3,
          'movie': 3,
          'scenes': 3,
          'im': 2,
          'scientist': 2,
          'stop': 2,
          'genetically': 2,
          'altered': 2,
          'specialist': 2,
          'ndina': 2,
          'sheila': 2,
          'order': 2,
          'help': 2,
          'texas': 2,
          'local': 2,
          'diamond': 2,
          'phillips': 2,
          'official': 2,
          'nin': 2,
          'level': 2,
          'things': 2,
          'sit': 2,
          'nwhile': 2,
          'really': 2,
          'doubt': 2,
          'performance': 2,
          'reason': 2,
          'whats': 2,
          'even': 2,
          'though': 2,
          'creations': 2,
          'ever': 2,
          'little': 2,
          'entire': 2,
          'full': 2,
          'na': 2,
          'unit': 2,
          'nearly': 2,
          'get': 2,
          'puppets': 2,
          'shot': 2,
          'nthats': 1,
          'n': 1,
          'dr': 1,
          'alexander': 1,
          'mccabe': 1,
          'response': 1,
          'created': 1,
          'evil': 1,
          'nalright': 1,
          'folks': 1,
          'youve': 1,
          'heard': 1,
          'wreak': 1,
          'havoc': 1,
          'band': 1,
          'locals': 1,
          'assisted': 1,
          'particular': 1,
          'field': 1,
          'must': 1,
          'team': 1,
          'mutant': 1,
          'creatures': 1,
          'multiply': 1,
          'spread': 1,
          'across': 1,
          'earth': 1,
          'noh': 1,
          'yeah': 1,
          'way': 1,
          'bomb': 1,
          'well': 1,
          'running': 1,
          'short': 1,
          'time': 1,
          'nsound': 1,
          'familiar': 1,
          'nsuch': 1,
          'destination': 1,
          'release': 1,
          'stars': 1,
          'pulled': 1,
          'research': 1,
          'along': 1,
          'annoying': 1,
          'sidekick': 1,
          'played': 1,
          'irritating': 1,
          'deftness': 1,
          'leon': 1,
          'figure': 1,
          'citizens': 1,
          'chewed': 1,
          'recently': 1,
          'nwith': 1,
          'lou': 1,
          'cdc': 1,
          'carlos': 1,
          'jacott': 1,
          'discovers': 1,
          'indeed': 1,
          'guntons': 1,
          'aggressive': 1,
          'omnivorous': 1,
          'used': 1,
          'weapon': 1,
          'knew': 1,
          'exactly': 1,
          'getting': 1,
          'ntheres': 1,
          'frame': 1,
          'promotional': 1,
          'footage': 1,
          'seen': 1,
          'led': 1,
          'believe': 1,
          'respect': 1,
          'disappointed': 1,
          'nthis': 1,
          'reaches': 1,
          'transcends': 1,
          'borders': 1,
          'downright': 1,
          'insane': 1,
          'effects': 1,
          'awful': 1,
          'script': 1,
          'contrived': 1,
          'feature': 1,
          'laughing': 1,
          'supposed': 1,
          'taken': 1,
          'seriously': 1,
          'think': 1,
          'challenge': 1,
          'anyone': 1,
          'scene': 1,
          'stalks': 1,
          'baby': 1,
          'crib': 1,
          'another': 1,
          'terrorizes': 1,
          'patron': 1,
          'eating': 1,
          'diner': 1,
          'straight': 1,
          'face': 1,
          'nthankfully': 1,
          'performances': 1,
          'considering': 1,
          'material': 1,
          'actors': 1,
          'perform': 1,
          'always': 1,
          'highlight': 1,
          'johnny': 1,
          'mnemonic': 1,
          'dragonheart': 1,
          'starship': 1,
          'troopers': 1,
          'latter': 1,
          'batch': 1,
          'merit': 1,
          'exception': 1,
          'gets': 1,
          'impression': 1,
          'meyers': 1,
          'expert': 1,
          'reality': 1,
          'cares': 1,
          'either': 1,
          'nshe': 1,
          'gives': 1,
          'expected': 1,
          'plus': 1,
          'shes': 1,
          'nice': 1,
          'look': 1,
          'hour': 1,
          'half': 1,
          'nlou': 1,
          'also': 1,
          'serviceable': 1,
          'turned': 1,
          'eventual': 1,
          'hero': 1,
          'nalthough': 1,
          'first': 1,
          'meet': 1,
          'knows': 1,
          'later': 1,
          'suddenly': 1,
          'becomes': 1,
          'amazed': 1,
          'learn': 1,
          'cause': 1,
          'deaths': 1,
          'leons': 1,
          'nhe': 1,
          'relegated': 1,
          'sticking': 1,
          'around': 1,
          'ncharacter': 1,
          'proceeds': 1,
          'repeat': 1,
          'variations': 1,
          'line': 1,
          'majority': 1,
          'stays': 1,
          'nanyone': 1,
          'cant': 1,
          'immediately': 1,
          'tell': 1,
          'guy': 1,
          'patch': 1,
          'adams': 1,
          'countless': 1,
          'eventually': 1,
          'turn': 1,
          'gang': 1,
          'side': 1,
          'eminent': 1,
          'probably': 1,
          'surprised': 1,
          'highly': 1,
          'neven': 1,
          'hadnt': 1,
          'villain': 1,
          'every': 1,
          'hes': 1,
          'many': 1,
          'obvious': 1,
          'hints': 1,
          'given': 1,
          'indicate': 1,
          'devious': 1,
          'act': 1,
          'holds': 1,
          'shock': 1,
          'whatsoever': 1,
          'fact': 1,
          'welcome': 1,
          'finally': 1,
          'starts': 1,
          'moving': 1,
          'towards': 1,
          'finale': 1,
          'nif': 1,
          'doesnt': 1,
          'sound': 1,
          'ridiculous': 1,
          'yet': 1,
          'check': 1,
          'tidbits': 1,
          'multitude': 1,
          'inexplicably': 1,
          'disperses': 1,
          'police': 1,
          'officer': 1,
          'cocks': 1,
          'pistol': 1,
          'nan': 1,
          'disregards': 1,
          'doctors': 1,
          'orders': 1,
          'stay': 1,
          'indoors': 1,
          'curfew': 1,
          'instigated': 1,
          'causing': 1,
          'mass': 1,
          'hysteria': 1,
          'come': 1,
          'force': 1,
          'killing': 1,
          'several': 1,
          'townsfolk': 1,
          'government': 1,
          'blows': 1,
          'shelias': 1,
          'instructions': 1,
          'wait': 1,
          'dawn': 1,
          'install': 1,
          'cooling': 1,
          'cave': 1,
          'kill': 1,
          'pulling': 1,
          'night': 1,
          'job': 1,
          'resulting': 1,
          'cavern': 1,
          'feces': 1,
          'ignites': 1,
          'phosphorus': 1,
          'flare': 1,
          'lit': 1,
          'right': 1,
          'middle': 1,
          'nfinally': 1,
          'top': 1,
          'showing': 1,
          'nosferatu': 1,
          'single': 1,
          'screen': 1,
          'theater': 1,
          'reference': 1,
          'million': 1,
          'people': 1,
          '150': 1,
          'screens': 1,
          'lucky': 1,
          'kevin': 1,
          'smiths': 1,
          'dogma': 1,
          'laughable': 1,
          'part': 1,
          'comes': 1,
          'illconceived': 1,
          'attack': 1,
          'rapid': 1,
          'fire': 1,
          'editing': 1,
          'making': 1,
          'impossible': 1,
          'comprehend': 1,
          'called': 1,
          'upon': 1,
          'interact': 1,
          'live': 1,
          'actor': 1,
          'usually': 1,
          'lowkey': 1,
          'ntherefore': 1,
          'audience': 1,
          'loving': 1,
          'closeups': 1,
          'unrealistic': 1,
          'rubbery': 1,
          'committed': 1,
          'nbeing': 1,
          'able': 1,
          'see': 1,
          'puppeteers': 1,
          'arms': 1,
          'made': 1,
          'worse': 1,
          'nafter': 1,
          'still': 1,
          'decide': 1,
          'might': 1,
          'dont': 1,
          'havent': 1,
          'warned': 1,
          'ntrust': 1,
          'lot': 1,
          'fun': 1,
          'trash': 1,
          'wish': 1,
          'dina': 1,
          'cast': 1,
          'roles': 1,
          'least': 1,
          'choose': 1,
          'better': 1,
          'appear': 1,
          'nshes': 1,
          'definitely': 1,
          'talent': 1,
          'waste': 1,
          'like': 1,
          'nneg': 1}),
 Counter({'wonder': 3,
          'turns': 3,
          'stone': 2,
          'unexpected': 2,
          'someone': 2,
          'character': 2,
          'word': 1,
          'describe': 1,
          'sharon': 1,
          'nnot': 1,
          '_is_': 1,
          'rather': 1,
          'inconsistent': 1,
          'nshe': 1,
          'dynamic': 1,
          'screen': 1,
          'presence': 1,
          'basic': 1,
          'instinct': 1,
          'surprisingly': 1,
          'fine': 1,
          'acting': 1,
          'job': 1,
          'casino': 1,
          'possesses': 1,
          'neither': 1,
          'nstone': 1,
          'teams': 1,
          'private': 1,
          'school': 1,
          'headmasters': 1,
          'wife': 1,
          'isabelle': 1,
          'adjani': 1,
          'kill': 1,
          'adjanis': 1,
          'thoroughly': 1,
          'unlikable': 1,
          'husband': 1,
          'chazz': 1,
          'palminteri': 1,
          'nin': 1,
          'comedy': 1,
          'errors': 1,
          'twists': 1,
          'straight': 1,
          'hitchcock': 1,
          'homage': 1,
          'read': 1,
          'steal': 1,
          'saw': 1,
          'hes': 1,
          'dead': 1,
          'maybe': 1,
          'nkathy': 1,
          'bates': 1,
          'credible': 1,
          'unspectacular': 1,
          'performance': 1,
          'investigative': 1,
          'police': 1,
          'detective': 1,
          'nher': 1,
          'bit': 1,
          'dull': 1,
          'realistic': 1,
          'although': 1,
          'actions': 1,
          'end': 1,
          'puzzling': 1,
          'nadjani': 1,
          'satisfactory': 1,
          'timid': 1,
          'beaten': 1,
          'spouse': 1,
          'driven': 1,
          'desperation': 1,
          'nits': 1,
          'disappointment': 1,
          'among': 1,
          'actors': 1,
          'nhow': 1,
          'epitome': 1,
          'femme': 1,
          'fatale': 1,
          'previous': 1,
          'films': 1,
          'come': 1,
          'blank': 1,
          'one': 1,
          'ncostumed': 1,
          'skintight': 1,
          'clothes': 1,
          'looking': 1,
          'nose': 1,
          'everyone': 1,
          'would': 1,
          'want': 1,
          'avoid': 1,
          'boring': 1,
          'enticingly': 1,
          'dangerous': 1,
          'neven': 1,
          'threat': 1,
          'promise': 1,
          'lesbian': 1,
          'relationship': 1,
          'conspirators': 1,
          'half': 1,
          'played': 1,
          'non': 1,
          'positive': 1,
          'side': 1,
          'enough': 1,
          'plot': 1,
          'developments': 1,
          'keep': 1,
          'interest': 1,
          'alive': 1,
          'nthat': 1,
          'put': 1,
          'stones': 1,
          'cardboard': 1,
          'cutout': 1,
          'scenes': 1,
          'directly': 1,
          'lifted': 1,
          'hitchs': 1,
          'movies': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'kay': 4,
          'plots': 4,
          'hearts': 3,
          'never': 3,
          'dutch': 3,
          'characters': 3,
          'ndutch': 3,
          'sub': 3,
          'random': 2,
          'perfect': 2,
          'world': 2,
          'would': 2,
          'movie': 2,
          'nthe': 2,
          'two': 2,
          'little': 2,
          'nalthough': 2,
          'soon': 2,
          'seems': 2,
          'rather': 2,
          'primary': 2,
          'daughter': 2,
          'seem': 2,
          'hard': 2,
          'tagline': 1,
          'reads': 1,
          'met': 1,
          'nin': 1,
          'seen': 1,
          'biggest': 1,
          'flaw': 1,
          '20': 1,
          'minutes': 1,
          'chandler': 1,
          'kristin': 1,
          'scott': 1,
          'thomas': 1,
          'van': 1,
          'den': 1,
          'broeck': 1,
          'harrison': 1,
          'ford': 1,
          'major': 1,
          'alive': 1,
          'resulting': 1,
          'doubt': 1,
          'end': 1,
          'together': 1,
          'point': 1,
          'laborious': 1,
          'twohoursandthensome': 1,
          'production': 1,
          'sergeant': 1,
          'internal': 1,
          'affairs': 1,
          'district': 1,
          'columbia': 1,
          'police': 1,
          'department': 1,
          'nkay': 1,
          'congresswoman': 1,
          'new': 1,
          'hampshire': 1,
          'think': 1,
          'happily': 1,
          'married': 1,
          'spouses': 1,
          'cheating': 1,
          'behind': 1,
          'backs': 1,
          'widowed': 1,
          'plane': 1,
          'goes': 1,
          'carrying': 1,
          'partners': 1,
          'subsequently': 1,
          'discover': 1,
          'affair': 1,
          'rest': 1,
          'pointless': 1,
          'unrealistic': 1,
          'oftentimes': 1,
          'boring': 1,
          'story': 1,
          'researching': 1,
          'sexual': 1,
          'relationship': 1,
          'blind': 1,
          'getting': 1,
          'know': 1,
          'process': 1,
          'ntwo': 1,
          'help': 1,
          'already': 1,
          'problematic': 1,
          'trying': 1,
          'arrest': 1,
          'fellow': 1,
          'officer': 1,
          'task': 1,
          'ordinary': 1,
          'hollywood': 1,
          'fare': 1,
          'nall': 1,
          'great': 1,
          'stereotypes': 1,
          'get': 1,
          'pulled': 1,
          'including': 1,
          'personal': 1,
          'favorite': 1,
          'key': 1,
          'witness': 1,
          'makes': 1,
          'bail': 1,
          'murdered': 1,
          'thereafter': 1,
          'nkays': 1,
          'distraction': 1,
          'films': 1,
          'focus': 1,
          'campaign': 1,
          'reelection': 1,
          'attempts': 1,
          'shield': 1,
          '15': 1,
          'year': 1,
          'old': 1,
          'truth': 1,
          'father': 1,
          'put': 1,
          'pedestal': 1,
          'nthese': 1,
          'could': 1,
          'made': 1,
          'semiinteresting': 1,
          'points': 1,
          'afraid': 1,
          'explore': 1,
          'politics': 1,
          'motherdaughter': 1,
          'relations': 1,
          'depth': 1,
          'consequently': 1,
          'suffers': 1,
          'nrandom': 1,
          'live': 1,
          'shells': 1,
          'given': 1,
          'deal': 1,
          'anyone': 1,
          'nthere': 1,
          'plenty': 1,
          'opportunity': 1,
          'partner': 1,
          'close': 1,
          'friends': 1,
          'shies': 1,
          'away': 1,
          'exploring': 1,
          'relationships': 1,
          'nveteran': 1,
          'actor': 1,
          'director': 1,
          'sydney': 1,
          'pollack': 1,
          'critically': 1,
          'acclaimed': 1,
          'upandcomer': 1,
          'dylan': 1,
          'baker': 1,
          'cameo': 1,
          'roles': 1,
          'careful': 1,
          'blink': 1,
          'much': 1,
          'miss': 1,
          'nother': 1,
          'weak': 1,
          'plot': 1,
          'criticize': 1,
          'nhowever': 1,
          'also': 1,
          'compliment': 1,
          'nhad': 1,
          'taken': 1,
          'small': 1,
          'risks': 1,
          'fully': 1,
          'explored': 1,
          'extra': 1,
          'may': 1,
          'tasted': 1,
          'like': 1,
          'well': 1,
          'frosted': 1,
          'cake': 1,
          'dry': 1,
          'one': 1,
          'equates': 1,
          'nneg': 1}),
 Counter({'double': 6,
          'jeopardy': 6,
          'plot': 4,
          'nthe': 4,
          'libby': 4,
          'husband': 3,
          'like': 3,
          'dont': 3,
          'movie': 3,
          'details': 2,
          'although': 2,
          'thriller': 2,
          'nlibby': 2,
          'ashley': 2,
          'judd': 2,
          'none': 2,
          'night': 2,
          'nick': 2,
          'bruce': 2,
          'character': 2,
          'convicted': 2,
          'vital': 2,
          'nbut': 2,
          'douglas': 2,
          'two': 2,
          'scenes': 2,
          'jones': 2,
          'parole': 2,
          'officer': 2,
          'role': 2,
          'well': 2,
          'fugitive': 2,
          'njudd': 2,
          'nwhile': 2,
          'could': 2,
          'film': 2,
          'work': 2,
          'driving': 2,
          'stakes': 1,
          'high': 1,
          'nthink': 1,
          'rehash': 1,
          'sleeping': 1,
          'enemy': 1,
          'rearrange': 1,
          'gender': 1,
          'stalker': 1,
          'finished': 1,
          'product': 1,
          'able': 1,
          'maintain': 1,
          'viewers': 1,
          'attention': 1,
          'predictable': 1,
          'unexciting': 1,
          'idiotic': 1,
          'script': 1,
          'nalex': 1,
          'ill': 1,
          'take': 1,
          'homicide': 1,
          '400': 1,
          'parsons': 1,
          'happily': 1,
          'married': 1,
          'mom': 1,
          'leading': 1,
          'normal': 1,
          'life': 1,
          'greenwood': 1,
          'takes': 1,
          'romantic': 1,
          'escape': 1,
          'sailboat': 1,
          'awakens': 1,
          'middle': 1,
          'find': 1,
          'covered': 1,
          'blood': 1,
          'strangely': 1,
          'disappeared': 1,
          'nshe': 1,
          'follows': 1,
          'trail': 1,
          'bloody': 1,
          'footprints': 1,
          'deck': 1,
          'handles': 1,
          'fallen': 1,
          'knife': 1,
          'stupid': 1,
          'spotted': 1,
          'coast': 1,
          'guard': 1,
          'responding': 1,
          'distress': 1,
          'signal': 1,
          'sent': 1,
          'earlier': 1,
          'evening': 1,
          'nnick': 1,
          'presumed': 1,
          'dead': 1,
          'pleads': 1,
          'innocence': 1,
          'tried': 1,
          'murder': 1,
          'nnow': 1,
          'please': 1,
          'think': 1,
          'im': 1,
          'spoiling': 1,
          'informative': 1,
          'trailer': 1,
          'already': 1,
          'spilled': 1,
          'beans': 1,
          'nif': 1,
          'havent': 1,
          'seen': 1,
          'preview': 1,
          'read': 1,
          'seriously': 1,
          'inane': 1,
          'screenplay': 1,
          'weisberg': 1,
          'cook': 1,
          'elementary': 1,
          'average': 1,
          'viewer': 1,
          'three': 1,
          'steps': 1,
          'ahead': 1,
          'characters': 1,
          'nduring': 1,
          'anticipating': 1,
          'every': 1,
          'twist': 1,
          'surprise': 1,
          'eventually': 1,
          'popped': 1,
          'screen': 1,
          'ni': 1,
          'imagine': 1,
          'writers': 1,
          'presume': 1,
          'core': 1,
          'audience': 1,
          'naive': 1,
          'group': 1,
          'individuals': 1,
          'nmost': 1,
          'unfortunately': 1,
          'distracted': 1,
          'moronic': 1,
          'appreciate': 1,
          'positive': 1,
          'aspects': 1,
          'production': 1,
          'tommy': 1,
          'lee': 1,
          'plays': 1,
          'travis': 1,
          'lehman': 1,
          'given': 1,
          'tedious': 1,
          'task': 1,
          'watching': 1,
          'serves': 1,
          'sentence': 1,
          'prison': 1,
          'njones': 1,
          'always': 1,
          'wonderful': 1,
          'authority': 1,
          'figure': 1,
          'hes': 1,
          'certainly': 1,
          'familiar': 1,
          'sort': 1,
          'played': 1,
          'us': 1,
          'marshals': 1,
          'likable': 1,
          'heroin': 1,
          'gusto': 1,
          'also': 1,
          'chance': 1,
          'flex': 1,
          'acting': 1,
          'abilities': 1,
          'emotionally': 1,
          'unconvincing': 1,
          'actress': 1,
          'tremendously': 1,
          'fun': 1,
          'juvenile': 1,
          'perking': 1,
          'injection': 1,
          'antidepressant': 1,
          'actors': 1,
          'relationship': 1,
          'together': 1,
          'present': 1,
          'onetwo': 1,
          'punch': 1,
          'prevents': 1,
          'derailing': 1,
          'entirely': 1,
          'nand': 1,
          'back': 1,
          'behind': 1,
          'bars': 1,
          'learns': 1,
          'interesting': 1,
          'little': 1,
          'bit': 1,
          'information': 1,
          'person': 1,
          'cant': 1,
          'crime': 1,
          'twice': 1,
          'nthis': 1,
          'law': 1,
          'called': 1,
          'motive': 1,
          'hunting': 1,
          'nwho': 1,
          'may': 1,
          'still': 1,
          'alive': 1,
          'nyes': 1,
          'heard': 1,
          'right': 1,
          'degenerates': 1,
          'crosscountry': 1,
          'chase': 1,
          'everything': 1,
          'expect': 1,
          'happen': 1,
          'ndoes': 1,
          'final': 1,
          'redeemed': 1,
          'poorly': 1,
          'handled': 1,
          'director': 1,
          'beresford': 1,
          'whose': 1,
          'previous': 1,
          'centers': 1,
          'highly': 1,
          'around': 1,
          'drama': 1,
          'miss': 1,
          'daisy': 1,
          'paradise': 1,
          'road': 1,
          'nironically': 1,
          'elements': 1,
          'force': 1,
          'reunite': 1,
          'son': 1,
          'quite': 1,
          'nat': 1,
          'least': 1,
          'paced': 1,
          'enough': 1,
          'satisfy': 1,
          'diehard': 1,
          'fans': 1,
          'stars': 1,
          'nunfortunately': 1,
          'lacks': 1,
          'edge': 1,
          'sam': 1,
          'gerard': 1,
          'real': 1,
          'depth': 1,
          'skin': 1,
          'deep': 1,
          'welcome': 1,
          'considering': 1,
          'material': 1,
          'memorable': 1,
          'comic': 1,
          'moments': 1,
          'particular': 1,
          'hilarious': 1,
          'scene': 1,
          'wards': 1,
          'oncoming': 1,
          'male': 1,
          'explaining': 1,
          'check': 1,
          'nhmmm': 1,
          'nperhaps': 1,
          'would': 1,
          'made': 1,
          'good': 1,
          'comedy': 1,
          'nit': 1,
          'disappointing': 1,
          'makings': 1,
          'competent': 1,
          'action': 1,
          'nits': 1,
          'nicely': 1,
          'shot': 1,
          'choreographed': 1,
          'downtown': 1,
          'vancouver': 1,
          'entertain': 1,
          'arent': 1,
          'turned': 1,
          'woeful': 1,
          'storyline': 1,
          'n': 1,
          'tis': 1,
          'shame': 1,
          'adult': 1,
          'wouldnt': 1,
          'fool': 1,
          'children': 1,
          'nneg': 1}),
 Counter({'doug': 5,
          'melissa': 4,
          'girlfriend': 3,
          'like': 3,
          'suspenseful': 3,
          'nshe': 3,
          'one': 3,
          'likes': 2,
          'baseball': 2,
          'maliciously': 2,
          'revenge': 2,
          'thriller': 2,
          'dozens': 2,
          'etc': 2,
          'nmalicious': 2,
          'however': 2,
          'really': 2,
          'nthe': 2,
          'starts': 2,
          'film': 2,
          'try': 2,
          'seems': 2,
          'number': 2,
          'supposed': 2,
          'good': 2,
          'nat': 2,
          'times': 2,
          'isnt': 2,
          'synopsis': 1,
          'mentallydisturbed': 1,
          'woman': 1,
          'smoke': 1,
          'seduces': 1,
          'minorleague': 1,
          'player': 1,
          'study': 1,
          'anatomy': 1,
          'work': 1,
          'motorcycles': 1,
          'make': 1,
          'public': 1,
          'library': 1,
          'nwhen': 1,
          'decides': 1,
          'stop': 1,
          'seeing': 1,
          'takes': 1,
          'around': 1,
          'including': 1,
          'mother': 1,
          'cat': 1,
          'ncomments': 1,
          'malicious': 1,
          'suppose': 1,
          'acceptable': 1,
          'moview': 1,
          'cheap': 1,
          'bmovie': 1,
          'rips': 1,
          'spurnedpsycholoverwhowantsrevenge': 1,
          'films': 1,
          'fatal': 1,
          'attraction': 1,
          'hand': 1,
          'rocks': 1,
          'cradle': 1,
          'come': 1,
          'doesnt': 1,
          'provide': 1,
          'many': 1,
          'particularly': 1,
          'moments': 1,
          'plot': 1,
          'energetically': 1,
          'enough': 1,
          'main': 1,
          'characters': 1,
          'introduced': 1,
          'affair': 1,
          'begins': 1,
          'ends': 1,
          'pretty': 1,
          'early': 1,
          'nit': 1,
          'drag': 1,
          'unfortunately': 1,
          'nmelissa': 1,
          'obviously': 1,
          'take': 1,
          'always': 1,
          'happen': 1,
          'movies': 1,
          'unimaginative': 1,
          'ways': 1,
          'done': 1,
          'better': 1,
          'thrillers': 1,
          'drugs': 1,
          'someone': 1,
          'kills': 1,
          'family': 1,
          'pet': 1,
          'leaves': 1,
          'girlfriends': 1,
          'apartment': 1,
          'nand': 1,
          'course': 1,
          'stalks': 1,
          'see': 1,
          'shots': 1,
          'shes': 1,
          'spying': 1,
          'ni': 1,
          'wont': 1,
          'reveal': 1,
          'ludicrous': 1,
          'ending': 1,
          'turkey': 1,
          'warn': 1,
          'painfully': 1,
          'obvious': 1,
          'real': 1,
          'yawner': 1,
          'njohn': 1,
          'vernon': 1,
          'remarkably': 1,
          'job': 1,
          'playing': 1,
          'notsobright': 1,
          'jock': 1,
          'initially': 1,
          'gets': 1,
          'swept': 1,
          'away': 1,
          'scripts': 1,
          'faults': 1,
          'pass': 1,
          'character': 1,
          'premed': 1,
          'student': 1,
          'said': 1,
          'though': 1,
          'molly': 1,
          'ringwald': 1,
          'effectively': 1,
          'pull': 1,
          'obsessed': 1,
          'lover': 1,
          'routine': 1,
          'especially': 1,
          'silent': 1,
          'imgoingtostareyoudown': 1,
          'scenes': 1,
          'somehow': 1,
          'goofy': 1,
          'place': 1,
          'nin': 1,
          'particular': 1,
          'scene': 1,
          'guess': 1,
          'screeches': 1,
          'fk': 1,
          'bd': 1,
          'throws': 1,
          'phone': 1,
          'delivers': 1,
          'line': 1,
          'ridiculously': 1,
          'cant': 1,
          'help': 1,
          'laugh': 1,
          'certainly': 1,
          'worst': 1,
          'kind': 1,
          'video': 1,
          'racks': 1,
          'fat': 1,
          'turkies': 1,
          'genre': 1,
          'original': 1,
          'either': 1,
          'nfeel': 1,
          'free': 1,
          'treat': 1,
          'watch': 1,
          'something': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'nthe': 10,
          'film': 7,
          'message': 5,
          'bottle': 5,
          'theresa': 5,
          'also': 4,
          'nthis': 4,
          'one': 4,
          'simply': 4,
          'di': 3,
          'pego': 3,
          'costner': 3,
          'wrightpenn': 3,
          'newman': 3,
          'douglas': 3,
          'time': 3,
          'little': 3,
          'chicago': 3,
          'two': 3,
          'way': 3,
          'since': 3,
          'nmessage': 3,
          'romantic': 3,
          '1998': 3,
          'warner': 2,
          'brothers': 2,
          'gerald': 2,
          'novel': 2,
          'nicholas': 2,
          'sparks': 2,
          'kevin': 2,
          'robin': 2,
          'paul': 2,
          'illeana': 2,
          'robbie': 2,
          'coltrane': 2,
          'jesse': 2,
          'james': 2,
          'john': 2,
          'savage': 2,
          'overly': 2,
          'nthere': 2,
          'romances': 2,
          'nhowever': 2,
          'brings': 2,
          'us': 2,
          'romance': 2,
          'going': 2,
          'story': 2,
          'boring': 2,
          'tribune': 2,
          'recent': 2,
          'letter': 2,
          'written': 2,
          'woman': 2,
          'best': 2,
          'city': 2,
          'turns': 2,
          'garret': 2,
          'attractive': 2,
          'first': 2,
          'relationship': 2,
          'discovery': 2,
          'garrets': 2,
          'really': 2,
          'dead': 2,
          'played': 2,
          'na': 2,
          'horse': 2,
          'nthey': 2,
          'technical': 2,
          'enough': 2,
          'especially': 2,
          'characters': 2,
          'real': 2,
          'scene': 2,
          'look': 2,
          'times': 2,
          'rated': 1,
          'pg13': 1,
          'mild': 1,
          'violence': 1,
          'sexual': 1,
          'situations': 1,
          '132': 1,
          'minutes': 1,
          'ndirector': 1,
          'luis': 1,
          'mandoki': 1,
          'nscreenplay': 1,
          'ncast': 1,
          'nreview': 1,
          'geoff': 1,
          'berkshire': 1,
          'nim': 1,
          'cynical': 1,
          'guy': 1,
          'many': 1,
          'glossy': 1,
          'hollywood': 1,
          'carried': 1,
          'away': 1,
          'romanticism': 1,
          'years': 1,
          'limits': 1,
          'standards': 1,
          'subject': 1,
          'hand': 1,
          'big': 1,
          'ticket': 1,
          'unleashed': 1,
          'upon': 1,
          'movie': 1,
          'public': 1,
          'valentines': 1,
          'day': 1,
          'involves': 1,
          'reporter': 1,
          'osborne': 1,
          'dealing': 1,
          'divorce': 1,
          'trying': 1,
          'raise': 1,
          'young': 1,
          'son': 1,
          'jason': 1,
          'nduring': 1,
          'brief': 1,
          'stay': 1,
          'somewhere': 1,
          'new': 1,
          'england': 1,
          'finds': 1,
          'titular': 1,
          'morning': 1,
          'run': 1,
          'ocean': 1,
          'mystery': 1,
          'named': 1,
          'catherine': 1,
          'instantly': 1,
          'captivates': 1,
          'nupon': 1,
          'return': 1,
          'shares': 1,
          'friend': 1,
          'lina': 1,
          'boss': 1,
          'charlie': 1,
          'entire': 1,
          'newspaper': 1,
          'publishes': 1,
          'article': 1,
          'nit': 1,
          'grieving': 1,
          'widower': 1,
          'blake': 1,
          'travels': 1,
          'north': 1,
          'carolina': 1,
          'tracks': 1,
          'nhe': 1,
          'colorful': 1,
          'father': 1,
          'otherwise': 1,
          'perfectly': 1,
          'dull': 1,
          'obsessed': 1,
          'sailing': 1,
          'somehow': 1,
          'begin': 1,
          'awkward': 1,
          'courtship': 1,
          'nof': 1,
          'course': 1,
          'doesnt': 1,
          'tell': 1,
          'found': 1,
          'wants': 1,
          'rules': 1,
          'type': 1,
          'require': 1,
          'find': 1,
          'later': 1,
          'preferably': 1,
          'right': 1,
          'make': 1,
          'love': 1,
          'get': 1,
          'angry': 1,
          'threatened': 1,
          'discovered': 1,
          'noteworthy': 1,
          'events': 1,
          'happen': 1,
          'nearly': 1,
          'quarter': 1,
          'hour': 1,
          'running': 1,
          'ntheres': 1,
          'truly': 1,
          'lame': 1,
          'subplot': 1,
          'wifes': 1,
          'family': 1,
          'gets': 1,
          'bar': 1,
          'fight': 1,
          'brother': 1,
          'necessary': 1,
          'tearjerking': 1,
          'ending': 1,
          'fun': 1,
          'pass': 1,
          'take': 1,
          'bets': 1,
          'exactly': 1,
          'die': 1,
          'although': 1,
          'becomes': 1,
          'pretty': 1,
          'clear': 1,
          'second': 1,
          'reel': 1,
          'actual': 1,
          'death': 1,
          'sequence': 1,
          'ridiculously': 1,
          'forced': 1,
          'unintentionally': 1,
          'humorous': 1,
          'sequences': 1,
          'filmed': 1,
          'nwell': 1,
          'costners': 1,
          'postman': 1,
          '1997': 1,
          'slow': 1,
          'moving': 1,
          'nlast': 1,
          'year': 1,
          'audiences': 1,
          'offered': 1,
          'endurance': 1,
          'tests': 1,
          'whisperer': 1,
          'meet': 1,
          'joe': 1,
          'black': 1,
          'films': 1,
          'resemble': 1,
          'jerry': 1,
          'bruckheimer': 1,
          'productions': 1,
          'next': 1,
          'redeeming': 1,
          'qualities': 1,
          'form': 1,
          'quality': 1,
          'performances': 1,
          'stand': 1,
          'work': 1,
          'decent': 1,
          'cast': 1,
          'theyre': 1,
          'fighting': 1,
          'material': 1,
          'losing': 1,
          'badly': 1,
          'ncostner': 1,
          'likable': 1,
          'cheer': 1,
          'fail': 1,
          'generate': 1,
          'kind': 1,
          'chemistry': 1,
          'supporting': 1,
          'players': 1,
          'given': 1,
          'reliable': 1,
          'particularly': 1,
          'wasted': 1,
          'nold': 1,
          'pro': 1,
          'gives': 1,
          'occasionally': 1,
          'threatens': 1,
          'kick': 1,
          'life': 1,
          'confrontational': 1,
          'near': 1,
          'end': 1,
          'well': 1,
          'frequently': 1,
          'reminds': 1,
          'unexciting': 1,
          'lead': 1,
          'polished': 1,
          'side': 1,
          'sure': 1,
          'works': 1,
          'undercut': 1,
          'ngabriel': 1,
          'yared': 1,
          'previously': 1,
          'set': 1,
          'moods': 1,
          'english': 1,
          'patient': 1,
          '1996': 1,
          'angels': 1,
          'scores': 1,
          'overdoes': 1,
          'bit': 1,
          'ncaleb': 1,
          'deschanels': 1,
          'camera': 1,
          'makes': 1,
          'everything': 1,
          'beautiful': 1,
          'ndo': 1,
          'offices': 1,
          'need': 1,
          'heavenly': 1,
          'editing': 1,
          'steven': 1,
          'weisberg': 1,
          'troubling': 1,
          'considering': 1,
          'could': 1,
          'cut': 1,
          'messy': 1,
          'offender': 1,
          'screenwriter': 1,
          'nworking': 1,
          'selling': 1,
          'read': 1,
          'told': 1,
          'literary': 1,
          'level': 1,
          'bridges': 1,
          'madison': 1,
          'county': 1,
          'creates': 1,
          'uninspired': 1,
          'scripts': 1,
          'nits': 1,
          'strict': 1,
          'adherence': 1,
          'clich': 1,
          'mind': 1,
          'disasters': 1,
          'still': 1,
          'know': 1,
          'last': 1,
          'summer': 1,
          'isnt': 1,
          'original': 1,
          'dialogue': 1,
          'rarely': 1,
          'better': 1,
          'laughable': 1,
          'accentuated': 1,
          'excessively': 1,
          'long': 1,
          'pauses': 1,
          'every': 1,
          'character': 1,
          'takes': 1,
          'speaking': 1,
          'director': 1,
          'mandokis': 1,
          'man': 1,
          'loves': 1,
          '1994': 1,
          'solid': 1,
          'meg': 1,
          'ryanandy': 1,
          'garcia': 1,
          'nhes': 1,
          'motions': 1,
          'easily': 1,
          'worst': 1,
          'several': 1,
          'offerings': 1,
          'available': 1,
          'theaters': 1,
          'moment': 1,
          'vies': 1,
          'dreams': 1,
          'may': 1,
          'come': 1,
          'misguided': 1,
          'decade': 1,
          'nneg': 1}),
 Counter({'hanging': 8,
          'sisters': 5,
          'nthe': 4,
          'time': 4,
          'melodramatic': 3,
          'film': 3,
          'keaton': 3,
          'phone': 2,
          'side': 2,
          'like': 2,
          'opportunity': 2,
          'ryan': 2,
          'kudrow': 2,
          'career': 2,
          'matthau': 2,
          'ephron': 2,
          'two': 2,
          'nfor': 2,
          'conversations': 2,
          'character': 2,
          'development': 2,
          'annoying': 2,
          'minutes': 2,
          'everyone': 2,
          'issues': 2,
          'nbut': 2,
          'attempts': 2,
          'daughter': 2,
          'one': 2,
          'ngeorgia': 2,
          'chuckles': 2,
          'three': 2,
          'four': 2,
          'certainly': 2,
          'nits': 2,
          'disconnect': 1,
          'line': 1,
          'ndont': 1,
          'accept': 1,
          'charges': 1,
          'ndo': 1,
          'anything': 1,
          'avoid': 1,
          'wretched': 1,
          'sisterhood': 1,
          'dramedy': 1,
          'ni': 1,
          'figured': 1,
          'needed': 1,
          'get': 1,
          'touch': 1,
          'feminine': 1,
          'seemed': 1,
          'ideal': 1,
          'features': 1,
          'incredible': 1,
          'palate': 1,
          'female': 1,
          'talent': 1,
          'capability': 1,
          'behind': 1,
          'camera': 1,
          'brought': 1,
          'mind': 1,
          'sparkling': 1,
          'gems': 1,
          'sleepless': 1,
          'seattle': 1,
          'unsung': 1,
          'heroes': 1,
          'nmeg': 1,
          'diane': 1,
          'lisa': 1,
          'play': 1,
          'trio': 1,
          'separated': 1,
          'judgments': 1,
          'family': 1,
          'ties': 1,
          'must': 1,
          'reunite': 1,
          'father': 1,
          'walter': 1,
          'admitted': 1,
          'hospital': 1,
          'alzheimers': 1,
          'disease': 1,
          'nwhile': 1,
          'may': 1,
          'read': 1,
          'optimum': 1,
          'rekindle': 1,
          'relationship': 1,
          'reflect': 1,
          'poignancy': 1,
          'past': 1,
          'script': 1,
          'delia': 1,
          'nora': 1,
          'exasperating': 1,
          'shapeless': 1,
          'dreck': 1,
          'teeming': 1,
          'emotional': 1,
          'fakery': 1,
          'nhanging': 1,
          'overall': 1,
          'effect': 1,
          'telemarketer': 1,
          'pestering': 1,
          'hours': 1,
          'dont': 1,
          'option': 1,
          'title': 1,
          'suggests': 1,
          'first': 1,
          'halfhour': 1,
          'use': 1,
          'telephone': 1,
          'basis': 1,
          'nthis': 1,
          'ineffective': 1,
          'device': 1,
          'ncellphones': 1,
          'ring': 1,
          'every': 1,
          'five': 1,
          'hurriedly': 1,
          'rushes': 1,
          'along': 1,
          'leaving': 1,
          'marginal': 1,
          'frustrated': 1,
          'viewer': 1,
          'relate': 1,
          'problems': 1,
          'nif': 1,
          'apple': 1,
          'pie': 1,
          'felt': 1,
          'getting': 1,
          'mere': 1,
          'crust': 1,
          'story': 1,
          'ngranted': 1,
          'genuine': 1,
          'sincere': 1,
          'moments': 1,
          'help': 1,
          'establish': 1,
          'remainder': 1,
          'strained': 1,
          'emotions': 1,
          'nothing': 1,
          'inferior': 1,
          'dramatic': 1,
          'muck': 1,
          'outrageous': 1,
          'strategy': 1,
          'series': 1,
          'largely': 1,
          'unrealized': 1,
          'expected': 1,
          'exhibit': 1,
          'compassion': 1,
          'courtesy': 1,
          'toward': 1,
          'join': 1,
          'finale': 1,
          'nwe': 1,
          'able': 1,
          'identify': 1,
          'eve': 1,
          'open': 1,
          'caring': 1,
          'stayed': 1,
          'fathers': 1,
          'else': 1,
          'moved': 1,
          'forward': 1,
          'pursue': 1,
          'impending': 1,
          'eldest': 1,
          'celebrating': 1,
          'fifth': 1,
          'year': 1,
          'anniversary': 1,
          'magazine': 1,
          'called': 1,
          'nmaddy': 1,
          'soap': 1,
          'opera': 1,
          'actress': 1,
          'spends': 1,
          'either': 1,
          'contemplating': 1,
          'possible': 1,
          'path': 1,
          'stardom': 1,
          'nursing': 1,
          'dog': 1,
          'nryans': 1,
          'convincing': 1,
          'performance': 1,
          'diverting': 1,
          'cuteness': 1,
          'agreeable': 1,
          'aspects': 1,
          'nkudrow': 1,
          'delightfully': 1,
          'eccentric': 1,
          'offkilter': 1,
          'airhead': 1,
          'phoebe': 1,
          'friends': 1,
          'totally': 1,
          'wasted': 1,
          'nditto': 1,
          'serving': 1,
          'double': 1,
          'shift': 1,
          'costar': 1,
          'director': 1,
          'slot': 1,
          'difficult': 1,
          'priority': 1,
          'juggle': 1,
          'nher': 1,
          'frenzy': 1,
          'apparent': 1,
          'chick': 1,
          'flick': 1,
          'distressing': 1,
          'lack': 1,
          'reliable': 1,
          'reduced': 1,
          'chaotic': 1,
          'shtick': 1,
          'given': 1,
          'characters': 1,
          'situation': 1,
          'seems': 1,
          'depressing': 1,
          'amusing': 1,
          'neven': 1,
          'peak': 1,
          'form': 1,
          'humor': 1,
          'represented': 1,
          'matthaus': 1,
          'nasty': 1,
          'quips': 1,
          'ryans': 1,
          'eternal': 1,
          'battle': 1,
          'aforementioned': 1,
          'pooch': 1,
          'swallow': 1,
          'pill': 1,
          'nthat': 1,
          'accounts': 1,
          'expel': 1,
          'nmy': 1,
          'curiosity': 1,
          'suddenly': 1,
          'tweaked': 1,
          'discover': 1,
          'promising': 1,
          'starstudded': 1,
          'approach': 1,
          'could': 1,
          'turn': 1,
          'viciously': 1,
          'sour': 1,
          'really': 1,
          'mystery': 1,
          'predictable': 1,
          'filth': 1,
          'fault': 1,
          'actresses': 1,
          'npin': 1,
          'screenplay': 1,
          'clear': 1,
          'vital': 1,
          'spending': 1,
          'rest': 1,
          'running': 1,
          'flurry': 1,
          'far': 1,
          'cry': 1,
          'would': 1,
          'label': 1,
          'rewarding': 1,
          'experience': 1,
          'least': 1,
          'enjoyable': 1,
          'nuhuh': 1,
          'wrong': 1,
          'number': 1,
          'beginning': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'nexistenz': 4,
          'existenz': 4,
          'nthe': 3,
          'game': 3,
          'rather': 2,
          'opening': 2,
          'sequence': 2,
          'neoreality': 2,
          'reality': 2,
          'actually': 2,
          'new': 2,
          'games': 2,
          'n': 2,
          'leigh': 2,
          'ultimate': 2,
          'form': 2,
          'enjoy': 2,
          'assassination': 2,
          'attempt': 2,
          'law': 2,
          'anything': 2,
          'else': 2,
          'still': 2,
          'expected': 2,
          'videodrome': 2,
          'even': 2,
          'probably': 2,
          'looked': 2,
          'cronenberg': 2,
          'running': 1,
          'time': 1,
          'approximately': 1,
          '1hr': 1,
          '40mins': 1,
          'nreviewed': 1,
          'jack': 1,
          'choo': 1,
          'nrating': 1,
          'movie': 1,
          'starts': 1,
          'se7enish': 1,
          'cool': 1,
          'sets': 1,
          'mood': 1,
          'things': 1,
          'come': 1,
          'story': 1,
          'propels': 1,
          'audience': 1,
          'somewhat': 1,
          'close': 1,
          'conscious': 1,
          'laced': 1,
          'weird': 1,
          'tinges': 1,
          'blue': 1,
          'red': 1,
          'name': 1,
          'virtualreality': 1,
          'nsupposedly': 1,
          'vr': 1,
          'highly': 1,
          'popular': 1,
          'considered': 1,
          'legaldrug': 1,
          'creator': 1,
          'introduces': 1,
          'gameexperience': 1,
          'nplayers': 1,
          'required': 1,
          'bioports': 1,
          'embedded': 1,
          'spine': 1,
          'plugs': 1,
          'gamepod': 1,
          'order': 1,
          'immersive': 1,
          'experience': 1,
          'nduring': 1,
          'secretive': 1,
          'betatestingcumteaser': 1,
          'meeting': 1,
          'life': 1,
          'occurs': 1,
          'runs': 1,
          'fellow': 1,
          'bodyguard': 1,
          'realists': 1,
          'afraid': 1,
          'hell': 1,
          'lose': 1,
          'begin': 1,
          'play': 1,
          'requires': 1,
          'help': 1,
          'immerse': 1,
          'together': 1,
          'check': 1,
          'program': 1,
          'functioning': 1,
          'properly': 1,
          'nas': 1,
          'soon': 1,
          'discover': 1,
          'transported': 1,
          'realities': 1,
          'within': 1,
          'uncovering': 1,
          'initially': 1,
          'cronenberggore': 1,
          'neven': 1,
          'nowhere': 1,
          'near': 1,
          'cult': 1,
          'classics': 1,
          'scanners': 1,
          'nnot': 1,
          'half': 1,
          'suspenseful': 1,
          'commercially': 1,
          'successful': 1,
          'fly': 1,
          'upon': 1,
          '90s': 1,
          'version': 1,
          'poor': 1,
          'followup': 1,
          'nwhile': 1,
          'famed': 1,
          'films': 1,
          'penchant': 1,
          'gore': 1,
          'always': 1,
          'hit': 1,
          'right': 1,
          'note': 1,
          'theme': 1,
          'plot': 1,
          'nin': 1,
          'gory': 1,
          'sequences': 1,
          'attached': 1,
          'spirit': 1,
          'seem': 1,
          'act': 1,
          'overindulgence': 1,
          'njennifer': 1,
          'jason': 1,
          'jude': 1,
          'commendable': 1,
          'actors': 1,
          'aloof': 1,
          'missdirected': 1,
          'throughout': 1,
          'entire': 1,
          'scripting': 1,
          'acting': 1,
          'barely': 1,
          'pulls': 1,
          'bgrade': 1,
          'category': 1,
          'nit': 1,
          'obvious': 1,
          'worked': 1,
          'really': 1,
          'tightbudget': 1,
          'seems': 1,
          'handled': 1,
          'pretty': 1,
          'well': 1,
          'production': 1,
          'design': 1,
          'values': 1,
          'created': 1,
          'though': 1,
          'formed': 1,
          'considerable': 1,
          'portion': 1,
          'budget': 1,
          'nwhich': 1,
          'quite': 1,
          'good': 1,
          'predictable': 1,
          'cliched': 1,
          'times': 1,
          'n10': 1,
          'years': 1,
          'ago': 1,
          'would': 1,
          'another': 1,
          'classic': 1,
          'ncronenberg': 1,
          'fans': 1,
          'however': 1,
          'people': 1,
          'seeing': 1,
          'friends': 1,
          'getting': 1,
          'queasy': 1,
          'mutilation': 1,
          'give': 1,
          'miss': 1,
          'appreciation': 1,
          'offered': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'greg': 5,
          'nbut': 5,
          'see': 4,
          'china': 3,
          'could': 3,
          'comedy': 3,
          'nit': 3,
          'many': 3,
          'script': 3,
          'little': 3,
          'nthe': 3,
          '4': 3,
          'asked': 2,
          'america': 2,
          'ni': 2,
          'along': 2,
          'nhe': 2,
          'would': 2,
          'trying': 2,
          'new': 2,
          'parents': 2,
          'ngreg': 2,
          'stiller': 2,
          'love': 2,
          'byrnes': 2,
          'meet': 2,
          'beginning': 2,
          'robert': 2,
          'blythe': 2,
          'danner': 2,
          'game': 2,
          'oneupmanship': 2,
          'playing': 2,
          'situation': 2,
          'main': 2,
          'character': 2,
          'ncertainly': 2,
          'things': 2,
          'nthere': 2,
          'written': 2,
          'deeper': 2,
          'really': 2,
          'basic': 2,
          'score': 2,
          'music': 2,
          '0': 2,
          'scale': 2,
          '1982': 1,
          'turned': 1,
          'tables': 1,
          'national': 1,
          'guide': 1,
          'questions': 1,
          'guess': 1,
          'expecting': 1,
          'sort': 1,
          'political': 1,
          'question': 1,
          'ninstead': 1,
          'dumfounded': 1,
          'mind': 1,
          'n': 1,
          'wives': 1,
          'mothersinlaw': 1,
          'get': 1,
          'well': 1,
          'assured': 1,
          'certain': 1,
          'true': 1,
          'neven': 1,
          'people': 1,
          'seem': 1,
          'problems': 1,
          'relating': 1,
          'laws': 1,
          'nperhaps': 1,
          'lifes': 1,
          'difficult': 1,
          'relationships': 1,
          'arise': 1,
          'families': 1,
          'suddenly': 1,
          'artificially': 1,
          'joined': 1,
          'marriage': 1,
          'na': 1,
          'man': 1,
          'relate': 1,
          'prospective': 1,
          'inlaws': 1,
          'viceversa': 1,
          'basis': 1,
          'strong': 1,
          'nmeet': 1,
          'demonstrate': 1,
          'fact': 1,
          'however': 1,
          'focker': 1,
          'played': 1,
          'ben': 1,
          'dating': 1,
          'pam': 1,
          'teri': 1,
          'polo': 1,
          'ten': 1,
          'months': 1,
          'ready': 1,
          'propose': 1,
          'weekend': 1,
          'visit': 1,
          'debbies': 1,
          'family': 1,
          'attend': 1,
          'sisters': 1,
          'wedding': 1,
          'nfrom': 1,
          'relationship': 1,
          'awkward': 1,
          'jack': 1,
          'dina': 1,
          'deniro': 1,
          'nthrough': 1,
          'fault': 1,
          'airline': 1,
          'lost': 1,
          'gregs': 1,
          'luggage': 1,
          'nand': 1,
          'ask': 1,
          'borrow': 1,
          'clothing': 1,
          'nearly': 1,
          'always': 1,
          'onedown': 1,
          'nas': 1,
          'games': 1,
          'go': 1,
          'uncomfortable': 1,
          'uneasy': 1,
          'contributes': 1,
          'mistakes': 1,
          'makes': 1,
          'understand': 1,
          'league': 1,
          'perhaps': 1,
          'way': 1,
          'discover': 1,
          'unexpected': 1,
          'secrets': 1,
          'fatherinlaw': 1,
          'nthis': 1,
          'potential': 1,
          'tale': 1,
          'hit': 1,
          'audience': 1,
          'may': 1,
          'find': 1,
          'familiarone': 1,
          'done': 1,
          'overly': 1,
          'frequently': 1,
          'films': 1,
          'jim': 1,
          'herzfeld': 1,
          'john': 1,
          'hamburg': 1,
          'contrived': 1,
          'ntoo': 1,
          'coincidences': 1,
          'story': 1,
          'work': 1,
          'decide': 1,
          'incompetent': 1,
          'simply': 1,
          'unlucky': 1,
          'help': 1,
          'everything': 1,
          'wrong': 1,
          'possibly': 1,
          'even': 1,
          'right': 1,
          'nature': 1,
          'conspires': 1,
          'uneven': 1,
          'mix': 1,
          'slapstick': 1,
          'sequences': 1,
          'human': 1,
          'last': 1,
          'part': 1,
          'feels': 1,
          'awkwardly': 1,
          'reason': 1,
          'deniros': 1,
          'performance': 1,
          'ndeniro': 1,
          'plays': 1,
          'suspicious': 1,
          'fascistic': 1,
          'father': 1,
          'tightly': 1,
          'wound': 1,
          'threatening': 1,
          'judgmental': 1,
          'expressions': 1,
          'face': 1,
          'show': 1,
          'digs': 1,
          'insecurities': 1,
          'much': 1,
          'digging': 1,
          'nben': 1,
          'affable': 1,
          'presence': 1,
          'stretching': 1,
          'role': 1,
          'nebbish': 1,
          'bad': 1,
          'happen': 1,
          'nice': 1,
          'screen': 1,
          'conflict': 1,
          'decency': 1,
          'husband': 1,
          'given': 1,
          'nrandy': 1,
          'newman': 1,
          'playful': 1,
          'nin': 1,
          'first': 1,
          'seconds': 1,
          'something': 1,
          'creative': 1,
          'never': 1,
          'heard': 1,
          'lot': 1,
          'source': 1,
          'popular': 1,
          '1960s': 1,
          'npresumably': 1,
          'upper': 1,
          'class': 1,
          'listens': 1,
          'least': 1,
          'somebodys': 1,
          'imagination': 1,
          'nhumor': 1,
          'subjective': 1,
          'getting': 1,
          'favorable': 1,
          'comment': 1,
          'works': 1,
          'occasionally': 1,
          'rate': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'like': 6,
          'movie': 6,
          'nthe': 5,
          'funny': 4,
          'one': 4,
          'fab': 3,
          '4': 3,
          'nin': 3,
          'isnt': 3,
          'liz': 3,
          'bad': 3,
          'taste': 3,
          'reagan': 2,
          'high': 2,
          'makeup': 2,
          'ever': 2,
          'director': 2,
          'jawbreaker': 2,
          'teen': 2,
          'lines': 2,
          'princess': 2,
          'di': 2,
          '3': 2,
          'stick': 2,
          'mouth': 2,
          'body': 2,
          'trunk': 2,
          'nwhen': 2,
          'dead': 2,
          'nthey': 2,
          'make': 2,
          'look': 2,
          'hard': 2,
          'young': 2,
          'fern': 2,
          'mayo': 2,
          'learning': 2,
          'n': 2,
          'cover': 2,
          'made': 2,
          'question': 2,
          'number': 2,
          'detective': 2,
          'cruz': 2,
          'ni': 2,
          'ronald': 1,
          'four': 1,
          'stuckup': 1,
          'girls': 1,
          'played': 1,
          'rose': 1,
          'mcgowan': 1,
          'rebecca': 1,
          'gayheart': 1,
          'julie': 1,
          'benz': 1,
          'charlotte': 1,
          'roldan': 1,
          'overdress': 1,
          'posh': 1,
          'spice': 1,
          'wannabes': 1,
          'ntheir': 1,
          'daily': 1,
          'ritual': 1,
          'parade': 1,
          'school': 1,
          'halls': 1,
          'royalty': 1,
          'constant': 1,
          'reflex': 1,
          'action': 1,
          'grab': 1,
          'compacts': 1,
          'check': 1,
          'powder': 1,
          'cheeks': 1,
          'nunder': 1,
          'circumstances': 1,
          'let': 1,
          'seen': 1,
          'eating': 1,
          'public': 1,
          'writer': 1,
          'darren': 1,
          'steins': 1,
          'sounds': 1,
          'fact': 1,
          'nstein': 1,
          'taken': 1,
          'black': 1,
          'comedy': 1,
          'heathers': 1,
          'stripped': 1,
          'intelligence': 1,
          'wit': 1,
          'charm': 1,
          'nhis': 1,
          'actresses': 1,
          'toss': 1,
          'fast': 1,
          'dont': 1,
          'time': 1,
          'add': 1,
          'emotion': 1,
          'nand': 1,
          'female': 1,
          'characters': 1,
          'considerably': 1,
          'lipstick': 1,
          'brains': 1,
          'setup': 1,
          'referred': 1,
          'killed': 1,
          'prank': 1,
          'goes': 1,
          'wrong': 1,
          'reference': 1,
          'much': 1,
          'ngranted': 1,
          'sometimes': 1,
          'mere': 1,
          'presence': 1,
          'doesnt': 1,
          'guarantee': 1,
          'nlizs': 1,
          'girlfriends': 1,
          'literally': 1,
          'larger': 1,
          'golf': 1,
          'ball': 1,
          'tape': 1,
          'shut': 1,
          'bound': 1,
          'car': 1,
          'open': 1,
          'later': 1,
          'eventually': 1,
          'put': 1,
          'blue': 1,
          'bruised': 1,
          'sexual': 1,
          'position': 1,
          'victim': 1,
          'brutal': 1,
          'rape': 1,
          'nthese': 1,
          'realistic': 1,
          'disgusting': 1,
          'scenes': 1,
          'seminude': 1,
          'pornographic': 1,
          'feeling': 1,
          'forget': 1,
          'likely': 1,
          'turn': 1,
          'stomach': 1,
          'many': 1,
          'viewer': 1,
          'films': 1,
          'dialog': 1,
          'trite': 1,
          'none': 1,
          'nerdy': 1,
          'girl': 1,
          'introduces': 1,
          'name': 1,
          'hold': 1,
          'discovers': 1,
          'happened': 1,
          'offer': 1,
          'cant': 1,
          'refuse': 1,
          'cake': 1,
          'welcome': 1,
          'clan': 1,
          'parents': 1,
          'brag': 1,
          'parenting': 1,
          'skills': 1,
          'watching': 1,
          'oprah': 1,
          'teachers': 1,
          'fare': 1,
          'better': 1,
          'especially': 1,
          'ridiculous': 1,
          'given': 1,
          'miss': 1,
          'shayne': 1,
          'please': 1,
          'bosom': 1,
          'teacher': 1,
          'old': 1,
          'ugly': 1,
          'says': 1,
          'without': 1,
          'conviction': 1,
          'institution': 1,
          'brothel': 1,
          'nbesides': 1,
          'obvious': 1,
          'id': 1,
          'ask': 1,
          'nwhy': 1,
          'phone': 1,
          'start': 1,
          '555': 1,
          'going': 1,
          'rest': 1,
          'anyway': 1,
          'cameo': 1,
          'pam': 1,
          'grier': 1,
          'plays': 1,
          'vera': 1,
          'investigates': 1,
          'lizs': 1,
          'murder': 1,
          'nas': 1,
          'interrogates': 1,
          'people': 1,
          'stares': 1,
          'idiots': 1,
          'proving': 1,
          'gets': 1,
          'sure': 1,
          'nosed': 1,
          'see': 1,
          'shed': 1,
          'walk': 1,
          '5': 1,
          'minutes': 1,
          'youd': 1,
          'well': 1,
          'advised': 1,
          'happen': 1,
          'find': 1,
          'theater': 1,
          'showing': 1,
          'njawbreaker': 1,
          'runs': 1,
          '1': 1,
          '27': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'gore': 1,
          'profanity': 1,
          'sex': 1,
          'would': 1,
          'advise': 1,
          'everyone': 1,
          'avoid': 1,
          'teenagers': 1,
          'go': 1,
          'older': 1,
          'mature': 1,
          'nneg': 1}),
 Counter({'end': 5,
          'days': 5,
          'comes': 4,
          'even': 4,
          'new': 3,
          'nthe': 3,
          'devil': 3,
          'robin': 3,
          'satan': 3,
          'york': 3,
          'one': 3,
          'take': 3,
          'see': 3,
          'nand': 3,
          'like': 3,
          'noh': 3,
          'cane': 3,
          'daughter': 3,
          'well': 3,
          'wild': 2,
          '1999': 2,
          'big': 2,
          'audience': 2,
          'music': 2,
          'explosions': 2,
          'special': 2,
          'effects': 2,
          'decent': 2,
          'least': 2,
          'cant': 2,
          'narnold': 2,
          'turned': 2,
          'agent': 2,
          'something': 2,
          'kevin': 2,
          'pollak': 2,
          'character': 2,
          'gets': 2,
          'supernatural': 2,
          'gabriel': 2,
          'byrne': 2,
          'years': 2,
          'christine': 2,
          'tunney': 2,
          'chosen': 2,
          'guy': 2,
          'know': 2,
          'girl': 2,
          'meets': 2,
          'van': 2,
          'make': 2,
          'marlowes': 2,
          'implausibility': 2,
          'film': 2,
          'hes': 2,
          'nin': 2,
          'scares': 2,
          'might': 2,
          'better': 2,
          'get': 2,
          'thee': 2,
          'hollywood': 1,
          'never': 1,
          'fails': 1,
          'astound': 1,
          'nevery': 1,
          'time': 1,
          'think': 1,
          'cokedup': 1,
          'little': 1,
          'buggers': 1,
          'hit': 1,
          'rock': 1,
          'bottom': 1,
          'come': 1,
          'excavating': 1,
          'tool': 1,
          'ni': 1,
          'truly': 1,
          'convinced': 1,
          'west': 1,
          'marked': 1,
          'studio': 1,
          'filmmaking': 1,
          'hapless': 1,
          'along': 1,
          'prove': 1,
          'wrong': 1,
          'nthis': 1,
          'budget': 1,
          'brain': 1,
          'dead': 1,
          'apocalyptic': 1,
          'thriller': 1,
          'bludgeons': 1,
          'overwrought': 1,
          'grisly': 1,
          'violence': 1,
          'galore': 1,
          'lots': 1,
          'cheesy': 1,
          'result': 1,
          'nnothing': 1,
          'groans': 1,
          'yawns': 1,
          'neven': 1,
          'unable': 1,
          'produce': 1,
          'scare': 1,
          'festival': 1,
          'inept': 1,
          'nat': 1,
          'done': 1,
          'us': 1,
          'courtesy': 1,
          'badenoughtobegood': 1,
          'manage': 1,
          'nits': 1,
          'lousy': 1,
          'schwarzenegger': 1,
          'still': 1,
          'recovering': 1,
          'heart': 1,
          'problems': 1,
          'batman': 1,
          'plays': 1,
          'excop': 1,
          'security': 1,
          'bodyguard': 1,
          'nalong': 1,
          'obligatory': 1,
          'comic': 1,
          'relief': 1,
          'partner': 1,
          'impersonating': 1,
          'matthew': 1,
          'perrys': 1,
          'chandler': 1,
          'friends': 1,
          'involved': 1,
          'major': 1,
          'league': 1,
          'hoodoo': 1,
          'nit': 1,
          'seems': 1,
          'shot': 1,
          'world': 1,
          'domination': 1,
          'every': 1,
          'thousand': 1,
          'thought': 1,
          'hed': 1,
          'pulled': 1,
          'republican': 1,
          'landslide': 1,
          '94': 1,
          'nif': 1,
          'sex': 1,
          '20year': 1,
          'old': 1,
          'child': 1,
          'antichrist': 1,
          'brat': 1,
          'nah': 1,
          'deal': 1,
          'catches': 1,
          'eve': 1,
          'pass': 1,
          'halfway': 1,
          'house': 1,
          'unholy': 1,
          'union': 1,
          'must': 1,
          'place': 1,
          'december': 1,
          '31': 1,
          '999': 1,
          '666': 1,
          'upside': 1,
          '11': 1,
          'p': 1,
          'midnight': 1,
          'wonder': 1,
          'cranky': 1,
          'given': 1,
          'refuge': 1,
          'church': 1,
          'wont': 1,
          'sanctuary': 1,
          'nyou': 1,
          'kind': 1,
          'supermans': 1,
          'xray': 1,
          'vision': 1,
          'lead': 1,
          'walls': 1,
          'evil': 1,
          'na': 1,
          'group': 1,
          'guerrilla': 1,
          'catholic': 1,
          'priests': 1,
          'decide': 1,
          'best': 1,
          'way': 1,
          'stop': 1,
          'situation': 1,
          'killing': 1,
          'chooses': 1,
          'save': 1,
          'kick': 1,
          'hell': 1,
          'youll': 1,
          'pardon': 1,
          'expression': 1,
          'exploding': 1,
          'decisions': 1,
          'anguish': 1,
          'humanity': 1,
          'writing': 1,
          'nandrew': 1,
          'w': 1,
          'screenplay': 1,
          'ladles': 1,
          'upon': 1,
          'preposterous': 1,
          'otherworldly': 1,
          'histrionics': 1,
          'handling': 1,
          'jericho': 1,
          'schwarzeneggers': 1,
          'ncane': 1,
          'starts': 1,
          'la': 1,
          'mel': 1,
          'gibson': 1,
          'first': 1,
          'lethal': 1,
          'weapon': 1,
          'preparing': 1,
          'put': 1,
          'gun': 1,
          'mouth': 1,
          'due': 1,
          'ongoing': 1,
          'despondence': 1,
          'murder': 1,
          'wife': 1,
          'ntwenty': 1,
          'minutes': 1,
          'later': 1,
          'racing': 1,
          'bowels': 1,
          'city': 1,
          'deciphering': 1,
          'clues': 1,
          'sherlock': 1,
          'holmes': 1,
          'kreskin': 1,
          'would': 1,
          'find': 1,
          'baffling': 1,
          'nwhen': 1,
          'instantly': 1,
          'switches': 1,
          'terminator': 1,
          'father': 1,
          'figure': 1,
          'mode': 1,
          'young': 1,
          'woman': 1,
          'serving': 1,
          'surrogate': 1,
          'case': 1,
          'anyone': 1,
          'misses': 1,
          'connection': 1,
          'camera': 1,
          'close': 1,
          'christines': 1,
          'box': 1,
          'happens': 1,
          'identical': 1,
          'owned': 1,
          'canes': 1,
          'nsubtle': 1,
          'marlowe': 1,
          'subtle': 1,
          'nspeaking': 1,
          'cameras': 1,
          'director': 1,
          'peter': 1,
          'hyams': 1,
          'man': 1,
          'script': 1,
          'selfimportant': 1,
          'murky': 1,
          'annoying': 1,
          'nhyams': 1,
          'direction': 1,
          'shows': 1,
          'subtlety': 1,
          'gwar': 1,
          'video': 1,
          'running': 1,
          'gauntlet': 1,
          'ridiculous': 1,
          'action': 1,
          'set': 1,
          'pieces': 1,
          'punctuated': 1,
          'loads': 1,
          'neager': 1,
          'satisfy': 1,
          'arnolds': 1,
          'core': 1,
          'throws': 1,
          'pairs': 1,
          'breasts': 1,
          'nwhat': 1,
          'nhad': 1,
          'delivered': 1,
          'maintained': 1,
          'consistently': 1,
          'ominous': 1,
          'tone': 1,
          'bombastic': 1,
          'clich': 1,
          'tolerable': 1,
          'simply': 1,
          'flaccid': 1,
          'show': 1,
          'cast': 1,
          'ineffective': 1,
          'early': 1,
          'scenes': 1,
          'attempts': 1,
          'invest': 1,
          'beelzebub': 1,
          'panache': 1,
          'soon': 1,
          'turns': 1,
          'another': 1,
          'standard': 1,
          'issue': 1,
          'monster': 1,
          'nkevin': 1,
          'goes': 1,
          'quickly': 1,
          'bargain': 1,
          'basement': 1,
          'winona': 1,
          'ryder': 1,
          'arnold': 1,
          'actor': 1,
          'casper': 1,
          'dien': 1,
          'nthat': 1,
          'count': 1,
          'nway': 1,
          'back': 1,
          'aftermath': 1,
          'exorcist': 1,
          'omen': 1,
          'swill': 1,
          'passed': 1,
          'muster': 1,
          'bmovie': 1,
          'nbut': 1,
          'n': 1,
          'xfiles': 1,
          'buffy': 1,
          'vampire': 1,
          'slayer': 1,
          'deliver': 1,
          'real': 1,
          'weekly': 1,
          'basis': 1,
          'want': 1,
          'flip': 1,
          '700': 1,
          'club': 1,
          'gander': 1,
          'pat': 1,
          'robertsons': 1,
          'grinning': 1,
          'maw': 1,
          'nafter': 1,
          'enduring': 1,
          'say': 1,
          'behind': 1,
          'youre': 1,
          'nneg': 1}),
 Counter({'danes': 5,
          'anything': 3,
          'nbut': 3,
          'even': 3,
          'mod': 3,
          'squad': 3,
          'nthe': 3,
          'three': 3,
          'characters': 3,
          'played': 3,
          'ribisi': 3,
          'fare': 3,
          'remakes': 2,
          'tv': 2,
          'series': 2,
          'theres': 2,
          'way': 2,
          'effectively': 2,
          'well': 2,
          'intriguing': 2,
          'cinematic': 2,
          'experience': 2,
          'also': 2,
          'bad': 2,
          'remake': 2,
          'much': 2,
          'based': 2,
          'good': 2,
          'like': 2,
          'corrupt': 2,
          'go': 2,
          'various': 2,
          'become': 2,
          'undercover': 2,
          'cops': 2,
          'get': 2,
          'epps': 2,
          'character': 2,
          'slightly': 2,
          'scenes': 2,
          'lots': 2,
          'drug': 2,
          'movie': 2,
          'man': 2,
          'really': 2,
          'nepps': 2,
          'film': 2,
          'action': 2,
          'plot': 2,
          'longer': 2,
          'exciting': 2,
          'nclaire': 2,
          'could': 2,
          'may': 2,
          'call': 2,
          'little': 1,
          'updates': 1,
          'older': 1,
          'films': 1,
          'nif': 1,
          'believe': 1,
          'matter': 1,
          'great': 1,
          'revered': 1,
          'improved': 1,
          'upon': 1,
          'nthis': 1,
          'reason': 1,
          'responded': 1,
          'gus': 1,
          'van': 1,
          'sants': 1,
          'universally': 1,
          'panned': 1,
          'update': 1,
          'psycho': 1,
          'thought': 1,
          'onpar': 1,
          'original': 1,
          'big': 1,
          'problem': 1,
          'blatantly': 1,
          'nyou': 1,
          'see': 1,
          'point': 1,
          'least': 1,
          'iron': 1,
          'originals': 1,
          'flaws': 1,
          'bring': 1,
          'work': 1,
          'closer': 1,
          'greatness': 1,
          'perfection': 1,
          'source': 1,
          'material': 1,
          'isnt': 1,
          'begin': 1,
          'nthat': 1,
          'question': 1,
          'pondered': 1,
          'bland': 1,
          'actioner': 1,
          'nive': 1,
          'seen': 1,
          'couple': 1,
          'episodes': 1,
          'late': 1,
          '60s': 1,
          'honest': 1,
          'didnt': 1,
          'nit': 1,
          'concept': 1,
          'still': 1,
          'interesting': 1,
          'group': 1,
          'young': 1,
          'adults': 1,
          'early': 1,
          '20s': 1,
          'given': 1,
          'choice': 1,
          'either': 1,
          'jail': 1,
          'crimes': 1,
          'committed': 1,
          'helping': 1,
          'police': 1,
          'places': 1,
          'normally': 1,
          'wouldnt': 1,
          'able': 1,
          'access': 1,
          'nobviously': 1,
          '3': 1,
          'opt': 1,
          'latter': 1,
          'option': 1,
          'policemen': 1,
          'policewomen': 1,
          'main': 1,
          'claire': 1,
          'omar': 1,
          'giovanni': 1,
          'nof': 1,
          'real': 1,
          'nribisis': 1,
          'dumbass': 1,
          '20': 1,
          'year': 1,
          'old': 1,
          'exclusively': 1,
          'laughs': 1,
          'intelligent': 1,
          'one': 1,
          'used': 1,
          'create': 1,
          'chase': 1,
          'nwhen': 1,
          'squads': 1,
          'superviser': 1,
          'gets': 1,
          'killed': 1,
          'reputation': 1,
          'dirtied': 1,
          'death': 1,
          'sure': 1,
          'beloved': 1,
          'master': 1,
          'framed': 1,
          'investigate': 1,
          'discovering': 1,
          'expensive': 1,
          'whores': 1,
          'lucrative': 1,
          'operations': 1,
          'nall': 1,
          'kinds': 1,
          'stuff': 1,
          'times': 1,
          'comes': 1,
          'close': 1,
          'working': 1,
          'comedic': 1,
          'moments': 1,
          'nalthough': 1,
          'trite': 1,
          'actor': 1,
          'repeat': 1,
          'rather': 1,
          'amusing': 1,
          'script': 1,
          'gives': 1,
          'chance': 1,
          'straight': 1,
          'ribisis': 1,
          'clueless': 1,
          'spontaneity': 1,
          'rest': 1,
          'dull': 1,
          'boring': 1,
          'singularly': 1,
          'uninteresting': 1,
          'na': 1,
          'drugop': 1,
          'new': 1,
          'teenage': 1,
          'heroes': 1,
          'executed': 1,
          'nowhere': 1,
          'near': 1,
          'suspenseful': 1,
          'potential': 1,
          'buried': 1,
          'heaps': 1,
          'cliches': 1,
          'performance': 1,
          'restrained': 1,
          'nshe': 1,
          'tourdeforce': 1,
          'instead': 1,
          'director': 1,
          'scott': 1,
          'silver': 1,
          'puts': 1,
          'shackles': 1,
          'simply': 1,
          'allow': 1,
          'significant': 1,
          'role': 1,
          'better': 1,
          'expected': 1,
          'although': 1,
          'arent': 1,
          'nearly': 1,
          'rich': 1,
          'mindnumbing': 1,
          'marketing': 1,
          'teens': 1,
          'jump': 1,
          'nits': 1,
          'full': 1,
          'dialogue': 1,
          'concepts': 1,
          'make': 1,
          'sense': 1,
          'dealers': 1,
          'tango': 1,
          'guys': 1,
          'spare': 1,
          'time': 1,
          'nnothing': 1,
          'remotely': 1,
          'worth': 1,
          'paying': 1,
          'alluring': 1,
          'mainly': 1,
          'shes': 1,
          'got': 1,
          'horrible': 1,
          'hairdo': 1,
          'draw': 1,
          'nthere': 1,
          'however': 1,
          'cool': 1,
          'explosions': 1,
          'guns': 1,
          'chases': 1,
          'lure': 1,
          'viewer': 1,
          'thinking': 1,
          'thriller': 1,
          'sort': 1,
          'ndo': 1,
          'fooled': 1,
          'nsome': 1,
          'escapist': 1,
          'escapeasquicklyasyoucan': 1,
          'nneg': 1}),
 Counter({'commander': 8,
          'wing': 7,
          'like': 4,
          'nthe': 4,
          'n': 3,
          'video': 2,
          'game': 2,
          'feature': 2,
          'fighter': 2,
          'kind': 2,
          'minutes': 2,
          'one': 2,
          'roberts': 2,
          'original': 2,
          'prinze': 2,
          'way': 2,
          'new': 2,
          'dont': 2,
          'star': 2,
          'kilrathi': 2,
          'something': 2,
          'theyre': 2,
          'though': 2,
          'lillard': 2,
          'mediums': 1,
          'question': 1,
          'film': 1,
          'ever': 1,
          'respective': 1,
          'heretothere': 1,
          'transformation': 1,
          'achieved': 1,
          'ground': 1,
          'higher': 1,
          'noodleheaded': 1,
          'mediocrity': 1,
          'super': 1,
          'mario': 1,
          'bros': 1,
          'street': 1,
          'mortal': 1,
          'kombat': 1,
          'silly': 1,
          'stinkers': 1,
          'empty': 1,
          'execrable': 1,
          'joins': 1,
          'lowly': 1,
          'ranks': 1,
          'nenduring': 1,
          'spectacularly': 1,
          'bad': 1,
          'bit': 1,
          'scifi': 1,
          'easily': 1,
          'worst': 1,
          'watching': 1,
          'someone': 1,
          'futz': 1,
          'around': 1,
          '100': 1,
          'say': 1,
          'theres': 1,
          'little': 1,
          'fun': 1,
          'youre': 1,
          'holding': 1,
          'joystick': 1,
          'movie': 1,
          'missed': 1,
          'opportunity': 1,
          'director': 1,
          'chris': 1,
          'created': 1,
          'groundbreaking': 1,
          'pc': 1,
          'incarnation': 1,
          'back': 1,
          '1990': 1,
          'nhow': 1,
          'interactive': 1,
          'brainchild': 1,
          'revered': 1,
          'could': 1,
          'end': 1,
          'cinematic': 1,
          'pile': 1,
          'junk': 1,
          'helm': 1,
          'guy': 1,
          'headscratcher': 1,
          'story': 1,
          'credited': 1,
          'screenwriter': 1,
          'kevin': 1,
          'droney': 1,
          'clueless': 1,
          'chaos': 1,
          'melding': 1,
          'incoherent': 1,
          'narrative': 1,
          'unoriginal': 1,
          'ideas': 1,
          'nit': 1,
          'rips': 1,
          'finest': 1,
          'films': 1,
          'genre': 1,
          'top': 1,
          'gun': 1,
          'scene': 1,
          'even': 1,
          'spiffy': 1,
          'stereoscopic': 1,
          'freeze': 1,
          'gap': 1,
          'commercials': 1,
          'nset': 1,
          '2654': 1,
          'stars': 1,
          'freddie': 1,
          'jr': 1,
          'daredevil': 1,
          'cosmos': 1,
          'cowboy': 1,
          'hopes': 1,
          'great': 1,
          'pilot': 1,
          'father': 1,
          'nalong': 1,
          'plays': 1,
          'kissyface': 1,
          'stoic': 1,
          'superior': 1,
          'saffron': 1,
          'burrows': 1,
          'galaxy': 1,
          'hangout': 1,
          'hes': 1,
          'posted': 1,
          'comes': 1,
          'terms': 1,
          'bigots': 1,
          'resent': 1,
          'pilgrim': 1,
          'heritage': 1,
          'ask': 1,
          'goes': 1,
          'topsecret': 1,
          'mission': 1,
          'involving': 1,
          'jump': 1,
          'coordinates': 1,
          'death': 1,
          'plans': 1,
          'nasty': 1,
          'alien': 1,
          'race': 1,
          'known': 1,
          'ngiven': 1,
          'immensely': 1,
          'confusing': 1,
          'activity': 1,
          'hard': 1,
          'tell': 1,
          'non': 1,
          'hand': 1,
          'whats': 1,
          'easy': 1,
          'see': 1,
          'big': 1,
          'old': 1,
          'mess': 1,
          'lame': 1,
          'dialogue': 1,
          'strains': 1,
          'filled': 1,
          'lines': 1,
          'die': 1,
          'battle': 1,
          'stations': 1,
          'nand': 1,
          'repeated': 1,
          'frequently': 1,
          'unanswered': 1,
          'calls': 1,
          'medic': 1,
          'naction': 1,
          'sequences': 1,
          'fizzle': 1,
          'character': 1,
          'conflict': 1,
          'garners': 1,
          'unintentional': 1,
          'giggles': 1,
          'sole': 1,
          'source': 1,
          'suspense': 1,
          'creeps': 1,
          'look': 1,
          'kept': 1,
          'view': 1,
          'concluding': 1,
          '15': 1,
          'nimagine': 1,
          'bearded': 1,
          'siamese': 1,
          'cats': 1,
          'crossed': 1,
          '50s': 1,
          'roger': 1,
          'corman': 1,
          'cheapie': 1,
          'youve': 1,
          'got': 1,
          'good': 1,
          'idea': 1,
          'nlittle': 1,
          'technobabble': 1,
          'happens': 1,
          'hour': 1,
          'tries': 1,
          'much': 1,
          'appears': 1,
          'movies': 1,
          'show': 1,
          'signs': 1,
          'pulse': 1,
          'instead': 1,
          'provides': 1,
          'hilarious': 1,
          'touch': 1,
          'human': 1,
          'drama': 1,
          'culminating': 1,
          'use': 1,
          'bulldozer': 1,
          'probably': 1,
          'never': 1,
          'seen': 1,
          'space': 1,
          'camp': 1,
          'nmatthew': 1,
          'featured': 1,
          'prominently': 1,
          'said': 1,
          'sequence': 1,
          'cast': 1,
          'prinzes': 1,
          'hotshot': 1,
          'partner': 1,
          'two': 1,
          'fine': 1,
          'young': 1,
          'actors': 1,
          'recently': 1,
          'paired': 1,
          'hit': 1,
          'shes': 1,
          'fighting': 1,
          'otherworldly': 1,
          'evil': 1,
          'nrumor': 1,
          'slated': 1,
          'laterintheyear': 1,
          'release': 1,
          'bumped': 1,
          'capitalize': 1,
          'hot': 1,
          'casting': 1,
          'coup': 1,
          'well': 1,
          'premiere': 1,
          'wars': 1,
          'episode': 1,
          'trailer': 1,
          'nbut': 1,
          'audience': 1,
          'females': 1,
          'present': 1,
          'make': 1,
          'googoo': 1,
          'eyes': 1,
          'many': 1,
          'member': 1,
          'exited': 1,
          'muchballyhooed': 1,
          'sneak': 1,
          'peek': 1,
          'nsince': 1,
          'cineplexes': 1,
          'wont': 1,
          'granting': 1,
          'refunds': 1,
          'latter': 1,
          'contingency': 1,
          'might': 1,
          'rake': 1,
          'dough': 1,
          'warned': 1,
          'high': 1,
          'wears': 1,
          'soon': 1,
          'coming': 1,
          'attraction': 1,
          'gives': 1,
          'presentation': 1,
          'nneg': 1}),
 Counter({'films': 10,
          'nthe': 8,
          'suzie': 8,
          'man': 5,
          'cried': 5,
          'film': 5,
          'potter': 5,
          'almost': 3,
          'ricci': 3,
          'whose': 3,
          'character': 3,
          'lola': 3,
          'singer': 3,
          'everything': 3,
          'life': 3,
          'theres': 3,
          'time': 3,
          'note': 3,
          'much': 3,
          'amusing': 2,
          'actress': 2,
          'come': 2,
          'close': 2,
          'bold': 2,
          'heroine': 2,
          'historical': 2,
          'blanchett': 2,
          'quite': 2,
          'always': 2,
          'events': 2,
          'involving': 2,
          'nazis': 2,
          'go': 2,
          'forward': 2,
          'gypsy': 2,
          'core': 2,
          'isnt': 2,
          'skilled': 2,
          'enough': 2,
          'hardly': 2,
          'leave': 2,
          'one': 2,
          'action': 2,
          'meant': 2,
          'beginning': 2,
          'reaches': 2,
          'present': 2,
          'music': 2,
          'minute': 2,
          'opera': 2,
          'state': 2,
          'watch': 1,
          '21year': 1,
          'old': 1,
          'christina': 1,
          'get': 1,
          'drastically': 1,
          'overshadowed': 1,
          'sally': 1,
          'potters': 1,
          'followup': 1,
          '1997s': 1,
          'tango': 1,
          'lesson': 1,
          'geny': 1,
          'cold': 1,
          'stare': 1,
          'big': 1,
          'black': 1,
          'eyes': 1,
          'appeared': 1,
          'impressive': 1,
          'range': 1,
          'doesnt': 1,
          'even': 1,
          'set': 1,
          'backdrop': 1,
          'world': 1,
          'war': 1,
          '2': 1,
          'requires': 1,
          'nricci': 1,
          'shockingly': 1,
          'silent': 1,
          'blank': 1,
          'showing': 1,
          'occasional': 1,
          'smile': 1,
          'hint': 1,
          'concern': 1,
          'shares': 1,
          'scenes': 1,
          'astounding': 1,
          'cate': 1,
          'sight': 1,
          'behold': 1,
          'nblanchetts': 1,
          'paris': 1,
          'dwelling': 1,
          'dancer': 1,
          'befriends': 1,
          'aspiring': 1,
          'interesting': 1,
          'layered': 1,
          'lacks': 1,
          'ncostar': 1,
          'upcoming': 1,
          'lord': 1,
          'rings': 1,
          'trilogy': 1,
          'good': 1,
          'seven': 1,
          'inches': 1,
          'sports': 1,
          'twice': 1,
          'makeup': 1,
          'dons': 1,
          'flashy': 1,
          'wardrobe': 1,
          'inhabits': 1,
          'role': 1,
          'remarkably': 1,
          'fervor': 1,
          'makes': 1,
          'want': 1,
          'hold': 1,
          'screen': 1,
          'lead': 1,
          'rather': 1,
          'dull': 1,
          'companion': 1,
          'nimportant': 1,
          'hitler': 1,
          'scatter': 1,
          'across': 1,
          'landmarks': 1,
          'serve': 1,
          'little': 1,
          'conflict': 1,
          'nobviously': 1,
          'tables': 1,
          'turned': 1,
          'jewish': 1,
          'origin': 1,
          'unknown': 1,
          'among': 1,
          'parisian': 1,
          'colleagues': 1,
          'many': 1,
          'aspirations': 1,
          'none': 1,
          'full': 1,
          'circle': 1,
          'nthere': 1,
          'forced': 1,
          'messages': 1,
          'preaches': 1,
          'romance': 1,
          'fellow': 1,
          'target': 1,
          'hitlers': 1,
          'cesar': 1,
          'johnny': 1,
          'depp': 1,
          'like': 1,
          'barely': 1,
          'gets': 1,
          'speak': 1,
          'struggles': 1,
          'desires': 1,
          'things': 1,
          'wealth': 1,
          'men': 1,
          'devices': 1,
          'lies': 1,
          'suzies': 1,
          'desire': 1,
          'travel': 1,
          'america': 1,
          'father': 1,
          'journeyed': 1,
          'leaving': 1,
          'mother': 1,
          'years': 1,
          'ago': 1,
          'main': 1,
          'problem': 1,
          'tell': 1,
          'epicsized': 1,
          'story': 1,
          'periods': 1,
          'instability': 1,
          'conflicting': 1,
          'social': 1,
          'classes': 1,
          'prejudice': 1,
          'around': 1,
          'new': 1,
          'serving': 1,
          'writer': 1,
          'director': 1,
          'throws': 1,
          'inch': 1,
          'depth': 1,
          'found': 1,
          'nby': 1,
          'sighinducing': 1,
          'climax': 1,
          'hits': 1,
          'believability': 1,
          'complete': 1,
          'absence': 1,
          'focus': 1,
          'ready': 1,
          'theater': 1,
          'falling': 1,
          'weirdly': 1,
          'unsatisfying': 1,
          'unlikely': 1,
          'really': 1,
          'believe': 1,
          'could': 1,
          'happen': 1,
          'ncontrastingly': 1,
          'moving': 1,
          'final': 1,
          'scene': 1,
          'strikes': 1,
          'made': 1,
          'effective': 1,
          'ties': 1,
          'emotional': 1,
          'nalthough': 1,
          'apparent': 1,
          'cant': 1,
          'grasp': 1,
          'im': 1,
          'puzzled': 1,
          'first': 1,
          'place': 1,
          'nriccis': 1,
          'extended': 1,
          'flashback': 1,
          'quickly': 1,
          'drawn': 1,
          'ending': 1,
          'seen': 1,
          'way': 1,
          'relates': 1,
          'nso': 1,
          'spend': 1,
          'subplots': 1,
          'individuals': 1,
          'work': 1,
          'ensemble': 1,
          'riccis': 1,
          'constant': 1,
          'lack': 1,
          'flow': 1,
          'onenote': 1,
          'tone': 1,
          'depicts': 1,
          'somewhat': 1,
          'improved': 1,
          'upon': 1,
          'sacha': 1,
          'viernys': 1,
          'beautiful': 1,
          'cinematography': 1,
          'renders': 1,
          'various': 1,
          'locations': 1,
          'wonderfully': 1,
          'nalso': 1,
          'worthy': 1,
          'lindy': 1,
          'hemmings': 1,
          'costumes': 1,
          'help': 1,
          'depict': 1,
          'area': 1,
          'nicely': 1,
          'nand': 1,
          'nfrom': 1,
          'ninetyseven': 1,
          'moment': 1,
          'wavering': 1,
          'voice': 1,
          'rhythms': 1,
          'dont': 1,
          'undercut': 1,
          'notes': 1,
          'stricken': 1,
          'overwhelm': 1,
          'particularly': 1,
          'john': 1,
          'turturro': 1,
          'portraying': 1,
          'fictional': 1,
          'dante': 1,
          'dominio': 1,
          'money': 1,
          'reputation': 1,
          'catch': 1,
          'lolas': 1,
          'interest': 1,
          'accompany': 1,
          'oftentimes': 1,
          'perfect': 1,
          'chords': 1,
          'captured': 1,
          'undermine': 1,
          'characters': 1,
          'reinforce': 1,
          'npotter': 1,
          'obviously': 1,
          'cares': 1,
          'every': 1,
          'musical': 1,
          'unfortunately': 1,
          'effort': 1,
          'given': 1,
          'towards': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'n': 8,
          'bullock': 3,
          'summer': 3,
          'way': 3,
          'time': 3,
          'first': 3,
          'computer': 3,
          'less': 3,
          'thats': 3,
          'hes': 3,
          'high': 2,
          'thought': 2,
          'speed': 2,
          'cruise': 2,
          'bus': 2,
          'rigged': 2,
          'nthe': 2,
          'ocean': 2,
          'disgruntled': 2,
          'film': 2,
          'willem': 2,
          'dafoes': 2,
          'main': 2,
          'live': 2,
          'nso': 2,
          'course': 2,
          'one': 2,
          'boat': 2,
          'jason': 2,
          'patric': 2,
          'handful': 2,
          'also': 2,
          'slam': 2,
          'movie': 2,
          'far': 2,
          'motion': 2,
          'damn': 2,
          'camera': 2,
          'de': 2,
          'bont': 2,
          'even': 2,
          'hundred': 2,
          'two': 2,
          'big': 2,
          'nonsense': 2,
          'character': 2,
          'ships': 2,
          'step': 2,
          'sandra': 1,
          'heels': 1,
          'wielding': 1,
          'chainsaw': 1,
          'nyup': 1,
          'got': 1,
          'ta': 1,
          'njust': 1,
          'pointless': 1,
          'sequel': 1,
          'gone': 1,
          'franchise': 1,
          'films': 1,
          'directtovideo': 1,
          'releases': 1,
          'port': 1,
          'slams': 1,
          '2': 1,
          'control': 1,
          'gloriously': 1,
          'godawful': 1,
          'followup': 1,
          '1994': 1,
          'sleeper': 1,
          'explode': 1,
          'slowed': 1,
          'certain': 1,
          'gimmick': 1,
          'liner': 1,
          'well': 1,
          'crash': 1,
          'stuff': 1,
          'nsound': 1,
          'exciting': 1,
          'ndennis': 1,
          'hoppers': 1,
          'bomb': 1,
          'squader': 1,
          'villain': 1,
          'given': 1,
          'programmer': 1,
          'maniac': 1,
          'whose': 1,
          'beef': 1,
          'something': 1,
          'use': 1,
          'leeches': 1,
          'kid': 1,
          'selftreatment': 1,
          'copper': 1,
          'poison': 1,
          'ing': 1,
          'said': 1,
          'poisoning': 1,
          'induced': 1,
          'prolonged': 1,
          'exposure': 1,
          'electro': 1,
          'magnetic': 1,
          'fields': 1,
          'ncalling': 1,
          'dean': 1,
          'edell': 1,
          'overrides': 1,
          'boats': 1,
          'convinces': 1,
          'crew': 1,
          'abandon': 1,
          'ship': 1,
          'sends': 1,
          'remaining': 1,
          'passengers': 1,
          'couldnt': 1,
          'evacuate': 1,
          'col': 1,
          'lision': 1,
          'destiny': 1,
          'oddly': 1,
          'thinks': 1,
          'njump': 1,
          'back': 1,
          'nwith': 1,
          'keanu': 1,
          'reeves': 1,
          'electing': 1,
          'return': 1,
          'perhaps': 1,
          'read': 1,
          'script': 1,
          'job': 1,
          'john': 1,
          'mcclane': 1,
          'goes': 1,
          'sleepers': 1,
          'second': 1,
          'la': 1,
          'cop': 1,
          'swat': 1,
          'team': 1,
          'member': 1,
          'drivin': 1,
          'babe': 1,
          'annie': 1,
          'dated': 1,
          'odds': 1,
          'ntheyre': 1,
          'caribbean': 1,
          'pleasure': 1,
          'requisite': 1,
          'stock': 1,
          'characters': 1,
          'including': 1,
          'deaf': 1,
          'teenager': 1,
          'crush': 1,
          'hero': 1,
          'knows': 1,
          'sign': 1,
          'raptor': 1,
          'cool': 1,
          'move': 1,
          'nwait': 1,
          'till': 1,
          'see': 1,
          'feats': 1,
          'little': 1,
          'girl': 1,
          'stuck': 1,
          'shipboard': 1,
          'elevator': 1,
          'nbullock': 1,
          'pesky': 1,
          'perky': 1,
          'self': 1,
          'though': 1,
          'ends': 1,
          'screen': 1,
          'top': 1,
          'billing': 1,
          'suggests': 1,
          'paying': 1,
          'attention': 1,
          'bikini': 1,
          'tank': 1,
          'tops': 1,
          'probably': 1,
          'wont': 1,
          'complain': 1,
          'however': 1,
          'man': 1,
          'good': 1,
          'cause': 1,
          'stops': 1,
          'talk': 1,
          'slightly': 1,
          'monotone': 1,
          'predecessor': 1,
          'lol': 1,
          'line': 1,
          'ms': 1,
          'id': 1,
          'like': 1,
          'boogie': 1,
          'nof': 1,
          'nobody': 1,
          'front': 1,
          'embarrasses': 1,
          'quite': 1,
          'returning': 1,
          'director': 1,
          'jan': 1,
          'nhe': 1,
          'produced': 1,
          'mess': 1,
          'insulting': 1,
          'lax': 1,
          'standards': 1,
          'con': 1,
          'air': 1,
          'buddy': 1,
          'fathers': 1,
          'day': 1,
          'romy': 1,
          'michelles': 1,
          'school': 1,
          'reunion': 1,
          'murder': 1,
          '1600': 1,
          '8': 1,
          'heads': 1,
          'duffle': 1,
          'bag': 1,
          'anaconda': 1,
          'vegas': 1,
          'vacation': 1,
          'meet': 1,
          'wally': 1,
          'sparks': 1,
          'metro': 1,
          'bevery': 1,
          'hills': 1,
          'ninja': 1,
          'relic': 1,
          'forgiven': 1,
          'nworse': 1,
          'spent': 1,
          'mil': 1,
          'premise': 1,
          'doesnt': 1,
          'title': 1,
          'ntheres': 1,
          'sweatinducing': 1,
          'hours': 1,
          'shaky': 1,
          'handheld': 1,
          'work': 1,
          'crosscut': 1,
          'exteriors': 1,
          'leading': 1,
          'love': 1,
          'sideswipes': 1,
          'oil': 1,
          'tanker': 1,
          'plows': 1,
          'harbor': 1,
          'town': 1,
          'oh': 1,
          'weve': 1,
          'come': 1,
          'twenty': 1,
          'years': 1,
          'nremember': 1,
          'simple': 1,
          'fun': 1,
          'seeing': 1,
          'locomotive': 1,
          'smash': 1,
          'railway': 1,
          'station': 1,
          'silver': 1,
          'streak': 1,
          'nadmittedly': 1,
          'either': 1,
          'aforementioned': 1,
          'sequences': 1,
          'worth': 1,
          'price': 1,
          'admission': 1,
          'nits': 1,
          'rest': 1,
          'minutes': 1,
          'pure': 1,
          'nand': 1,
          'wonderful': 1,
          'ni': 1,
          'know': 1,
          'didnt': 1,
          'intend': 1,
          'done': 1,
          'thing': 1,
          'right': 1,
          'created': 1,
          'handsdown': 1,
          'funniest': 1,
          'year': 1,
          'allow': 1,
          'present': 1,
          'things': 1,
          'made': 1,
          'laugh': 1,
          'box': 1,
          'label': 1,
          'fiber': 1,
          'optic': 1,
          'converter': 1,
          'plain': 1,
          'english': 1,
          'wholesentence': 1,
          'instructions': 1,
          'entire': 1,
          'sequence': 1,
          'devoted': 1,
          'opening': 1,
          'fire': 1,
          'door': 1,
          'patrics': 1,
          'walks': 1,
          'onto': 1,
          'bridge': 1,
          'immediately': 1,
          'understands': 1,
          'everything': 1,
          'happening': 1,
          'navigator': 1,
          'speaks': 1,
          'scottish': 1,
          'accent': 1,
          'actually': 1,
          'gets': 1,
          'say': 1,
          'canna': 1,
          'override': 1,
          'amazing': 1,
          'armmounted': 1,
          'keyboard': 1,
          'living': 1,
          'breathing': 1,
          'adults': 1,
          'bullocks': 1,
          'mate': 1,
          'told': 1,
          'disconnect': 1,
          'trip': 1,
          'wire': 1,
          'pin': 1,
          'hand': 1,
          'grenade': 1,
          'nduh': 1,
          'wait': 1,
          'nscreams': 1,
          'intercom': 1,
          'yet': 1,
          'another': 1,
          'dog': 1,
          'peril': 1,
          'fishing': 1,
          'reel': 1,
          'npontoon': 1,
          'plane': 1,
          'nmemories': 1,
          'weekend': 1,
          'bernies': 1,
          'nneg': 1}),
 Counter({'mouse': 5,
          'hunt': 3,
          'nthis': 3,
          'nthe': 3,
          'worth': 3,
          'like': 2,
          'dreamworks': 2,
          'plot': 2,
          'overacting': 2,
          'slapstick': 2,
          'way': 2,
          'decent': 2,
          'two': 2,
          'brothers': 2,
          'lee': 2,
          'evens': 2,
          'run': 2,
          'seemingly': 2,
          'house': 2,
          'soon': 2,
          'happy': 2,
          'little': 2,
          'abode': 2,
          'wanting': 2,
          'increasingly': 2,
          'film': 2,
          'becomes': 2,
          'alone': 2,
          'makeshift': 2,
          'kind': 2,
          'films': 1,
          'get': 1,
          'theatres': 1,
          'nisnt': 1,
          'law': 1,
          'something': 1,
          'diabolical': 1,
          'load': 1,
          'claptrap': 1,
          'steven': 1,
          'speilbergs': 1,
          'studio': 1,
          'hollywood': 1,
          'family': 1,
          'fare': 1,
          'deadly': 1,
          'worst': 1,
          'nmouse': 1,
          'takes': 1,
          'bare': 1,
          'threads': 1,
          'tries': 1,
          'prop': 1,
          'flatout': 1,
          'stupid': 1,
          'makes': 1,
          'comedies': 1,
          'jingle': 1,
          'look': 1,
          'comparison': 1,
          'nwriter': 1,
          'adam': 1,
          'rifkin': 1,
          'director': 1,
          'gore': 1,
          'verbinski': 1,
          'names': 1,
          'chiefly': 1,
          'responsible': 1,
          'swill': 1,
          'concerns': 1,
          'nathan': 1,
          'lane': 1,
          'appalling': 1,
          'inherit': 1,
          'poorly': 1,
          'string': 1,
          'factory': 1,
          'worthless': 1,
          'eccentric': 1,
          'father': 1,
          'ndeciding': 1,
          'check': 1,
          'longabandoned': 1,
          'learn': 1,
          'fortune': 1,
          'set': 1,
          'selling': 1,
          'auction': 1,
          'highest': 1,
          'bidder': 1,
          'nbut': 1,
          'battling': 1,
          'every': 1,
          'turn': 1,
          'smart': 1,
          'rundown': 1,
          'stay': 1,
          'story': 1,
          'alternates': 1,
          'unfunny': 1,
          'scenes': 1,
          'bickering': 1,
          'inheritance': 1,
          'endless': 1,
          'action': 1,
          'sequences': 1,
          'take': 1,
          'determined': 1,
          'furry': 1,
          'foe': 1,
          'nwhatever': 1,
          'promise': 1,
          'starts': 1,
          'deteriorates': 1,
          'boring': 1,
          'dialogue': 1,
          'terrible': 1,
          'uninspired': 1,
          'sound': 1,
          'fury': 1,
          'signifying': 1,
          'nothing': 1,
          'script': 1,
          'unspeakably': 1,
          'bad': 1,
          'best': 1,
          'line': 1,
          'poor': 1,
          'utter': 1,
          'another': 1,
          'rodent': 1,
          'hate': 1,
          'noh': 1,
          'cringe': 1,
          'home': 1,
          'ten': 1,
          'times': 1,
          'worse': 1,
          'none': 1,
          'touching': 1,
          'scene': 1,
          'early': 1,
          'mentioning': 1,
          'nwe': 1,
          'follow': 1,
          'maze': 1,
          'walls': 1,
          'pipes': 1,
          'arrives': 1,
          'somewhere': 1,
          'wall': 1,
          'nhe': 1,
          'jumps': 1,
          'tiny': 1,
          'bed': 1,
          'pulls': 1,
          'sheet': 1,
          'snuggles': 1,
          'sleep': 1,
          'left': 1,
          'nits': 1,
          'magical': 1,
          'moment': 1,
          'otherwise': 1,
          'soulless': 1,
          'na': 1,
          'message': 1,
          'speilberg': 1,
          'want': 1,
          'associated': 1,
          'artistic': 1,
          'credibility': 1,
          'either': 1,
          'give': 1,
          'concerned': 1,
          'swift': 1,
          'kick': 1,
          'arse': 1,
          'hire': 1,
          'writers': 1,
          'directors': 1,
          'rubbish': 1,
          'nneg': 1}),
 Counter({'scream': 17,
          '3': 10,
          'nthe': 5,
          'ghostface': 4,
          '2': 4,
          'film': 3,
          'weary': 3,
          'next': 3,
          'stab': 3,
          'ghostfaces': 3,
          'craven': 3,
          'part': 3,
          'online': 2,
          'write': 2,
          'critics': 2,
          'difference': 2,
          'society': 2,
          'news': 2,
          'wed': 2,
          'cotton': 2,
          'killer': 2,
          'prescott': 2,
          'sidneys': 2,
          'car': 2,
          'n': 2,
          'pop': 2,
          'new': 2,
          'screams': 2,
          '3s': 2,
          'one': 2,
          'spring': 2,
          'arquette': 2,
          'hishertheir': 2,
          'isare': 2,
          'aside': 2,
          'theres': 2,
          'nwith': 2,
          'kruger': 2,
          'act': 2,
          'rule': 2,
          'kevin': 2,
          'silent': 2,
          'music': 2,
          'three': 2,
          'miramax': 1,
          'disinvited': 1,
          'media': 1,
          'press': 1,
          'screenings': 1,
          'nthey': 1,
          'ostensibly': 1,
          'feared': 1,
          'folks': 1,
          'like': 1,
          'would': 1,
          'spoilerfilled': 1,
          'reviews': 1,
          'post': 1,
          'prior': 1,
          'films': 1,
          'february': 1,
          '4th': 1,
          'release': 1,
          'dateunsound': 1,
          'reasoning': 1,
          'nyou': 1,
          'see': 1,
          'net': 1,
          'established': 1,
          'enough': 1,
          'sort': 1,
          'vip': 1,
          'list': 1,
          'professionalsmiramax': 1,
          'surely': 1,
          'knows': 1,
          'member': 1,
          'ofcs': 1,
          'type': 1,
          'fanboy': 1,
          'posts': 1,
          'spy': 1,
          'reports': 1,
          'aint': 1,
          'cool': 1,
          'nno': 1,
          'mini': 1,
          'major': 1,
          'afraid': 1,
          'let': 1,
          'bigger': 1,
          'cat': 1,
          'bag': 1,
          'whodunit': 1,
          'dismal': 1,
          'conclusion': 1,
          'beloved': 1,
          'writer': 1,
          'least': 1,
          'franchise': 1,
          'nsomething': 1,
          'smells': 1,
          'rotten': 1,
          'state': 1,
          'california': 1,
          'right': 1,
          'getgo': 1,
          'liev': 1,
          'schrieber': 1,
          'former': 1,
          'lover': 1,
          'wouldbe': 1,
          'maureen': 1,
          'mother': 1,
          'juggling': 1,
          'phone': 1,
          'calls': 1,
          'luxury': 1,
          'considered': 1,
          'danger': 1,
          'hosts': 1,
          'talk': 1,
          'show': 1,
          '100': 1,
          'clever': 1,
          'dated': 1,
          'jab': 1,
          'american': 1,
          'culture': 1,
          'nof': 1,
          'course': 1,
          'dials': 1,
          'memories': 1,
          'unbearably': 1,
          'suspenseful': 1,
          'prologue': 1,
          'mind': 1,
          'immediately': 1,
          'wonder': 1,
          'backseat': 1,
          'nthrilling': 1,
          'prospects': 1,
          'sure': 1,
          'actually': 1,
          'residence': 1,
          'waiting': 1,
          'cottons': 1,
          'girlfriend': 1,
          'kelly': 1,
          'rutheford': 1,
          'finishing': 1,
          'showering': 1,
          'nwhats': 1,
          'missing': 1,
          'sequence': 1,
          'indeed': 1,
          'remaining': 1,
          'frights': 1,
          'disappointingly': 1,
          'moment': 1,
          'ingenue': 1,
          'forced': 1,
          'hide': 1,
          'wardrobe': 1,
          'room': 1,
          'filled': 1,
          'costumes': 1,
          'might': 1,
          'life': 1,
          'elaborate': 1,
          'attenuated': 1,
          'payoff': 1,
          'nour': 1,
          'surviving': 1,
          'regulars': 1,
          'become': 1,
          'estranged': 1,
          'nsidney': 1,
          'campbell': 1,
          'living': 1,
          'paranoid': 1,
          'existence': 1,
          'electronic': 1,
          'gates': 1,
          'passwordprotected': 1,
          'locks': 1,
          'dewey': 1,
          'acts': 1,
          'technical': 1,
          'advisor': 1,
          'second': 1,
          'sequel': 1,
          '2s': 1,
          'moviewithinamovie': 1,
          'gale': 1,
          'weathers': 1,
          'cox': 1,
          'headlines': 1,
          'gossipy': 1,
          'program': 1,
          'nmurder': 1,
          'reunites': 1,
          'knifewielding': 1,
          'stalks': 1,
          'set': 1,
          'imitating': 1,
          'sadistic': 1,
          'screenplayand': 1,
          'personal': 1,
          'draft': 1,
          'climaxes': 1,
          'death': 1,
          'appeal': 1,
          'villainy': 1,
          'heshethey': 1,
          'could': 1,
          'boyfriend': 1,
          'classmate': 1,
          'door': 1,
          'neighbour': 1,
          'combination': 1,
          'people': 1,
          'nscream': 1,
          'first': 1,
          'kind': 1,
          'slasher': 1,
          'mystery': 1,
          'guessing': 1,
          'game': 1,
          'entailing': 1,
          'also': 1,
          'perpetrator': 1,
          'motive': 1,
          'nironic': 1,
          'selfreflection': 1,
          'parts': 1,
          'two': 1,
          'stand': 1,
          'crowd': 1,
          'includes': 1,
          'umpteen': 1,
          'friday': 1,
          '13th': 1,
          'halloween': 1,
          'flicks': 1,
          'last': 1,
          'articulate': 1,
          'human': 1,
          'beings': 1,
          'behind': 1,
          'iconic': 1,
          'costume': 1,
          'novelty': 1,
          'evermutating': 1,
          'identity': 1,
          'worn': 1,
          'character': 1,
          'remains': 1,
          'conceptually': 1,
          'potent': 1,
          'nconceptually': 1,
          'execution': 1,
          'master': 1,
          'plan': 1,
          'time': 1,
          'around': 1,
          'creaky': 1,
          'screenwriter': 1,
          'ehren': 1,
          'invented': 1,
          'mythology': 1,
          'world': 1,
          'sidney': 1,
          'far': 1,
          'afield': 1,
          'come': 1,
          'understand': 1,
          'movie': 1,
          'gets': 1,
          'silly': 1,
          'habit': 1,
          'saying': 1,
          'bets': 1,
          'nin': 1,
          'reference': 1,
          'rules': 1,
          'trilogys': 1,
          'third': 1,
          'breaking': 1,
          'cheating': 1,
          'departure': 1,
          'williamson': 1,
          'authored': 1,
          'previous': 1,
          'well': 1,
          'tidy': 1,
          'outline': 1,
          'reasons': 1,
          'incomprehensible': 1,
          'ignored': 1,
          'save': 1,
          'notion': 1,
          'needed': 1,
          'reined': 1,
          'tighter': 1,
          'wes': 1,
          'ncravens': 1,
          'direction': 1,
          'lazy': 1,
          'respects': 1,
          'nhow': 1,
          'else': 1,
          'explain': 1,
          'jay': 1,
          'bob': 1,
          'cameo': 1,
          'slacker': 1,
          'duo': 1,
          'smith': 1,
          'movies': 1,
          'akin': 1,
          'seeing': 1,
          'mickey': 1,
          'mouse': 1,
          'mulan': 1,
          'distracting': 1,
          'funny': 1,
          'nit': 1,
          'pains': 1,
          'comedy': 1,
          'generally': 1,
          'laughless': 1,
          'exception': 1,
          'welltimed': 1,
          'performances': 1,
          'josh': 1,
          'pais': 1,
          'police': 1,
          'detective': 1,
          'possessed': 1,
          'personality': 1,
          'persnickety': 1,
          'teacher': 1,
          'cravens': 1,
          'heart': 1,
          'jamie': 1,
          'kennedy': 1,
          'resurrecting': 1,
          'geek': 1,
          'randy': 1,
          'sendoff': 1,
          'denied': 1,
          'parker': 1,
          'posey': 1,
          'sheer': 1,
          'force': 1,
          'bactress': 1,
          'visuals': 1,
          'much': 1,
          'weaker': 1,
          'wellthe': 1,
          'occasional': 1,
          'sweeping': 1,
          'gesture': 1,
          'peter': 1,
          'demings': 1,
          'camera': 1,
          'pale': 1,
          'imitation': 1,
          'stalking': 1,
          'steadicam': 1,
          'gave': 1,
          'us': 1,
          'twice': 1,
          'wake': 1,
          'columbine': 1,
          'toned': 1,
          'violence': 1,
          'significantly': 1,
          '3why': 1,
          'sanctimony': 1,
          'still': 1,
          'readily': 1,
          'available': 1,
          'video': 1,
          'store': 1,
          'shelves': 1,
          'nfinally': 1,
          'marco': 1,
          'beltramis': 1,
          'cues': 1,
          'suspense': 1,
          'blatantlydo': 1,
          'recall': 1,
          'tense': 1,
          'chase': 1,
          'college': 1,
          'radio': 1,
          'station': 1,
          'mostly': 1,
          'nsting': 1,
          'notes': 1,
          'whole': 1,
          'lot': 1,
          'effective': 1,
          'nowhere': 1,
          'crescendos': 1,
          'incessantly': 1,
          'nervejangling': 1,
          'score': 1,
          'ni': 1,
          'look': 1,
          'coming': 1,
          'alternative': 1,
          'universe': 1,
          'place': 1,
          'birthed': 1,
          'godfather': 1,
          'iii': 1,
          'superman': 1,
          'iiiwoefully': 1,
          'synch': 1,
          'prequels': 1,
          'nightmare': 1,
          'instead': 1,
          'nightmarish': 1,
          'likely': 1,
          'put': 1,
          'horror': 1,
          'genre': 1,
          'back': 1,
          'mothballs': 1,
          'unintentionally': 1,
          'follows': 1,
          'unspoken': 1,
          'trilogy': 1,
          'must': 1,
          'disappoint': 1,
          'nneg': 1}),
 Counter({'200': 4,
          'big': 3,
          'cigarettes': 3,
          'love': 3,
          'rudd': 3,
          'two': 3,
          'best': 3,
          'good': 3,
          'new': 2,
          'would': 2,
          'nthe': 2,
          'yet': 2,
          'worth': 2,
          'better': 2,
          'includes': 2,
          'hot': 2,
          'gets': 2,
          'affleck': 2,
          'ben': 2,
          'plimpton': 2,
          'bad': 2,
          'many': 2,
          'backdrop': 1,
          'years': 1,
          'eve': 1,
          '1981': 1,
          'seem': 1,
          'lend': 1,
          'great': 1,
          'party': 1,
          'movie': 1,
          'decor': 1,
          'possibilities': 1,
          'endless': 1,
          'disco': 1,
          'balls': 1,
          'migrate': 1,
          'dark': 1,
          'corners': 1,
          'attic': 1,
          'hair': 1,
          'weight': 1,
          'aquanet': 1,
          'louder': 1,
          'fashion': 1,
          'look': 1,
          'nbut': 1,
          'despite': 1,
          'setting': 1,
          'details': 1,
          'soundtrack': 1,
          '40plus': 1,
          'irresistible': 1,
          'hits': 1,
          'early': 1,
          'days': 1,
          'decade': 1,
          'something': 1,
          'inherently': 1,
          'wrong': 1,
          'na': 1,
          'title': 1,
          'nostalgic': 1,
          'mess': 1,
          '50': 1,
          'missed': 1,
          'opportunities': 1,
          'nwhat': 1,
          'makes': 1,
          'retrocomedy': 1,
          'downer': 1,
          'nits': 1,
          'certainly': 1,
          'cast': 1,
          'enough': 1,
          'young': 1,
          'talent': 1,
          'several': 1,
          'movies': 1,
          'ntheres': 1,
          'courtney': 1,
          'cementing': 1,
          'reputation': 1,
          'serious': 1,
          'actress': 1,
          'christina': 1,
          'ricci': 1,
          'shouldabeennominated': 1,
          'turn': 1,
          'opposite': 1,
          'sex': 1,
          'paul': 1,
          'even': 1,
          'appealing': 1,
          'every': 1,
          'role': 1,
          'kate': 1,
          'hudson': 1,
          'inheriting': 1,
          'fine': 1,
          'acting': 1,
          'genes': 1,
          'mom': 1,
          'goldie': 1,
          'hawn': 1,
          'brothers': 1,
          'casey': 1,
          'things': 1,
          'hunting': 1,
          'nperhaps': 1,
          'question': 1,
          'drew': 1,
          'immensely': 1,
          'talented': 1,
          'actors': 1,
          'dreary': 1,
          'project': 1,
          'nmaybe': 1,
          'looked': 1,
          'paper': 1,
          'n': 1,
          'composed': 1,
          'series': 1,
          'vignettes': 1,
          'various': 1,
          'characters': 1,
          'make': 1,
          'way': 1,
          'yorks': 1,
          'festively': 1,
          'decorated': 1,
          'east': 1,
          'village': 1,
          'holiday': 1,
          'bash': 1,
          'thrown': 1,
          'jittery': 1,
          'bundle': 1,
          'nerves': 1,
          'named': 1,
          'monica': 1,
          'martha': 1,
          'dressed': 1,
          'cyndi': 1,
          'lauper': 1,
          'namong': 1,
          'potential': 1,
          'guests': 1,
          'likeable': 1,
          'cad': 1,
          'kevin': 1,
          'friend': 1,
          'lucy': 1,
          'busy': 1,
          'bickering': 1,
          'recent': 1,
          'breakup': 1,
          'clumsy': 1,
          'seemingly': 1,
          'charming': 1,
          'bartender': 1,
          'opens': 1,
          'mouth': 1,
          'spew': 1,
          'forth': 1,
          'pickup': 1,
          'lines': 1,
          'nmore': 1,
          'subplots': 1,
          '_many_': 1,
          'dot': 1,
          'picture': 1,
          'listed': 1,
          'ones': 1,
          'noting': 1,
          'positive': 1,
          'light': 1,
          'nall': 1,
          'story': 1,
          'tangents': 1,
          'frazzled': 1,
          'cokehead': 1,
          'trying': 1,
          'solve': 1,
          'rubicks': 1,
          'cube': 1,
          'nricci': 1,
          'gaby': 1,
          'hoffman': 1,
          'grate': 1,
          'ronkonkoma': 1,
          'gals': 1,
          'kind': 1,
          'trouble': 1,
          'pronouncing': 1,
          'hard': 1,
          'consonants': 1,
          'high': 1,
          'time': 1,
          'city': 1,
          'ninfamously': 1,
          'acerbic': 1,
          'comedienne': 1,
          'janeane': 1,
          'garofalo': 1,
          'wasted': 1,
          'amounts': 1,
          'severalscene': 1,
          'cameo': 1,
          'nhudson': 1,
          'prettyinpink': 1,
          'klutz': 1,
          'recently': 1,
          'devirginized': 1,
          'reprehensible': 1,
          'ladies': 1,
          'man': 1,
          'jay': 1,
          'mohr': 1,
          'trips': 1,
          'pukes': 1,
          'smeared': 1,
          'dog': 1,
          'poop': 1,
          'nare': 1,
          'laughing': 1,
          'film': 1,
          'boils': 1,
          'mixture': 1,
          'gaudy': 1,
          'latter': 1,
          'overtaking': 1,
          'former': 1,
          'ngame': 1,
          'performances': 1,
          'especially': 1,
          'almost': 1,
          'shot': 1,
          'bizarrely': 1,
          'colorful': 1,
          'parts': 1,
          'constantly': 1,
          'roving': 1,
          'focus': 1,
          'combination': 1,
          'mostly': 1,
          'sputters': 1,
          'crackle': 1,
          'ntoo': 1,
          'sidetracks': 1,
          'rate': 1,
          'uninteresting': 1,
          'little': 1,
          'payoff': 1,
          'lengthy': 1,
          'final': 1,
          'montage': 1,
          'find': 1,
          'performers': 1,
          'served': 1,
          'one': 1,
          'night': 1,
          'stands': 1,
          'nif': 1,
          'get': 1,
          'nicotine': 1,
          'patches': 1,
          'nneg': 1}),
 Counter({'film': 4,
          'premise': 2,
          'final': 2,
          'destination': 2,
          'friends': 2,
          'fate': 2,
          'nunfortunately': 2,
          'horror': 2,
          'death': 2,
          'nthe': 2,
          'characters': 2,
          'new': 1,
          'james': 1,
          'wong': 1,
          'alex': 1,
          'browning': 1,
          'protagonist': 1,
          'prevents': 1,
          'six': 1,
          'boarding': 1,
          'doomed': 1,
          'airplane': 1,
          'thereby': 1,
          'cheating': 1,
          'nhowever': 1,
          'easily': 1,
          'bested': 1,
          'alexs': 1,
          'soon': 1,
          'begin': 1,
          'dying': 1,
          'unusual': 1,
          'circumstances': 1,
          'nessentially': 1,
          'cleverway': 1,
          'make': 1,
          'slasherflick': 1,
          'without': 1,
          'slasher': 1,
          'practically': 1,
          'clever': 1,
          'thing': 1,
          'nas': 1,
          'far': 1,
          'teen': 1,
          'flicks': 1,
          'go': 1,
          'better': 1,
          'many': 1,
          'nthere': 1,
          'enough': 1,
          'shocking': 1,
          'graphic': 1,
          'gore': 1,
          'requisite': 1,
          'black': 1,
          'humor': 1,
          'provide': 1,
          'essential': 1,
          'roller': 1,
          'coaster': 1,
          'type': 1,
          'thrill': 1,
          'heart': 1,
          'average': 1,
          'flick': 1,
          'also': 1,
          'suffers': 1,
          'worst': 1,
          'characteristics': 1,
          'genre': 1,
          'relationships': 1,
          'main': 1,
          'tenuous': 1,
          'motivations': 1,
          'meaningless': 1,
          'except': 1,
          'excuse': 1,
          'setup': 1,
          'next': 1,
          'scene': 1,
          'two': 1,
          'break': 1,
          'funeral': 1,
          'home': 1,
          'view': 1,
          'body': 1,
          'recently': 1,
          'killed': 1,
          'friend': 1,
          'suppose': 1,
          'scary': 1,
          'dramatic': 1,
          'features': 1,
          'dumbest': 1,
          'dialogue': 1,
          'witnessed': 1,
          'nif': 1,
          'looking': 1,
          'saturday': 1,
          'night': 1,
          'thriller': 1,
          'scare': 1,
          'date': 1,
          'might': 1,
          'trick': 1,
          'nother': 1,
          'wait': 1,
          'goes': 1,
          'heavyrotation': 1,
          'cable': 1,
          'nneg': 1}),
 Counter({'patch': 22,
          'film': 11,
          'patients': 9,
          'nand': 8,
          'adams': 7,
          'scene': 6,
          'people': 6,
          'ni': 6,
          'real': 6,
          'way': 5,
          'every': 5,
          'bad': 5,
          'dont': 5,
          'hes': 5,
          'free': 5,
          'nbut': 5,
          'music': 5,
          'lot': 5,
          'doctors': 4,
          'going': 4,
          'nyou': 4,
          'wants': 4,
          'good': 4,
          'doesnt': 4,
          'like': 4,
          'doctor': 4,
          'nhe': 4,
          'medical': 4,
          'clinic': 4,
          'know': 4,
          'sad': 4,
          'patient': 4,
          'moved': 4,
          'see': 3,
          'themes': 3,
          'nthe': 3,
          'make': 3,
          'nin': 3,
          'even': 3,
          'goes': 3,
          'school': 3,
          'help': 3,
          'us': 3,
          'cry': 3,
          'really': 3,
          'drama': 3,
          'something': 3,
          'patchs': 3,
          'without': 3,
          'think': 3,
          'rules': 3,
          'words': 3,
          'center': 2,
          'courtroom': 2,
          'lively': 2,
          'audience': 2,
          'hard': 2,
          'someone': 2,
          'quality': 2,
          'picture': 2,
          'hate': 2,
          'days': 2,
          'later': 2,
          'superficial': 2,
          'beginning': 2,
          'cant': 2,
          'yet': 2,
          'probably': 2,
          'point': 2,
          'played': 2,
          'robin': 2,
          'williams': 2,
          'performance': 2,
          'human': 2,
          'mental': 2,
          'get': 2,
          'nso': 2,
          'great': 2,
          'actually': 2,
          'meets': 2,
          'potters': 2,
          'student': 2,
          'go': 2,
          'successful': 2,
          'middle': 2,
          'problem': 2,
          'may': 2,
          'seem': 2,
          'first': 2,
          'nwe': 2,
          'theres': 2,
          'dying': 2,
          'last': 2,
          'life': 2,
          'nreal': 2,
          'grow': 2,
          'forced': 2,
          'cheap': 2,
          'little': 2,
          'simplistic': 2,
          'studying': 2,
          'memorizing': 2,
          'facts': 2,
          'might': 2,
          'study': 2,
          'wont': 2,
          'death': 2,
          'understand': 2,
          'maybe': 2,
          'big': 2,
          'pay': 2,
          'character': 2,
          'phony': 2,
          'shouting': 2,
          'surrounded': 1,
          'giving': 1,
          'standing': 1,
          'ovation': 1,
          'strongworded': 1,
          'attack': 1,
          'group': 1,
          'stoic': 1,
          'nwhen': 1,
          'noticed': 1,
          'saw': 1,
          'reacting': 1,
          'realized': 1,
          'time': 1,
          'finding': 1,
          'agrees': 1,
          'revolted': 1,
          'beyond': 1,
          'boundaries': 1,
          'hated': 1,
          'movie': 1,
          'second': 1,
          'sat': 1,
          'watching': 1,
          'actively': 1,
          'simpering': 1,
          'nauseatingly': 1,
          'sentimental': 1,
          'images': 1,
          'forever': 1,
          'plaguing': 1,
          'memories': 1,
          'element': 1,
          'tom': 1,
          'shadyacs': 1,
          'shameless': 1,
          'direction': 1,
          'misguided': 1,
          'mishandled': 1,
          'screenplay': 1,
          'desperately': 1,
          'convey': 1,
          'badness': 1,
          'stupefying': 1,
          'nits': 1,
          'confounding': 1,
          'believe': 1,
          'based': 1,
          'man': 1,
          'undefeatable': 1,
          'indefatigable': 1,
          'insulting': 1,
          'pathos': 1,
          'sledgehammer': 1,
          'sympathy': 1,
          'wonder': 1,
          'commits': 1,
          'institution': 1,
          'want': 1,
          'kill': 1,
          'nwhile': 1,
          'notices': 1,
          'care': 1,
          'best': 1,
          'treat': 1,
          'beings': 1,
          'crusade': 1,
          'talks': 1,
          'truman': 1,
          'daniel': 1,
          'london': 1,
          'convinces': 1,
          'also': 1,
          'carin': 1,
          'fischer': 1,
          'monica': 1,
          'antimale': 1,
          'med': 1,
          'motions': 1,
          'nnaturally': 1,
          'dean': 1,
          'bob': 1,
          'gunton': 1,
          'hates': 1,
          'thwart': 1,
          'plans': 1,
          'though': 1,
          'gets': 1,
          'highest': 1,
          'scores': 1,
          'exams': 1,
          'decides': 1,
          'build': 1,
          'nowhere': 1,
          'friends': 1,
          'synopsis': 1,
          'easily': 1,
          'abhorrent': 1,
          '1998': 1,
          'non': 1,
          'level': 1,
          'particularly': 1,
          'wouldnt': 1,
          'say': 1,
          'cinematography': 1,
          'bothered': 1,
          'performances': 1,
          'exactly': 1,
          'shadyac': 1,
          'aiming': 1,
          'liked': 1,
          'wasted': 1,
          'fails': 1,
          'fundamentally': 1,
          'execution': 1,
          'nevery': 1,
          'swells': 1,
          'grand': 1,
          'emotional': 1,
          'maximum': 1,
          'volume': 1,
          'ntake': 1,
          'instance': 1,
          'shows': 1,
          'sitting': 1,
          'bus': 1,
          'supposed': 1,
          'nlater': 1,
          'makes': 1,
          'progress': 1,
          'helps': 1,
          'peter': 1,
          'coyote': 1,
          'enjoy': 1,
          'pushing': 1,
          'recklessly': 1,
          'halls': 1,
          'hospital': 1,
          'finally': 1,
          'dies': 1,
          'spoiler': 1,
          'alert': 1,
          'emotions': 1,
          'characterbased': 1,
          'happens': 1,
          'feel': 1,
          'ever': 1,
          'simply': 1,
          'vehicle': 1,
          'greatness': 1,
          'present': 1,
          'nthats': 1,
          'nit': 1,
          'tear': 1,
          'imaginable': 1,
          'wringing': 1,
          'tired': 1,
          'overbearing': 1,
          'sentimentality': 1,
          'neven': 1,
          'scenes': 1,
          'impact': 1,
          'overall': 1,
          'drowning': 1,
          'marc': 1,
          'shaimans': 1,
          'sickening': 1,
          'musical': 1,
          'score': 1,
          'nsentimentality': 1,
          'indeed': 1,
          'halfbaked': 1,
          'aces': 1,
          'tests': 1,
          'effectively': 1,
          'cheating': 1,
          'become': 1,
          'n': 1,
          'third': 1,
          'year': 1,
          'bursts': 1,
          'three': 1,
          'seconds': 1,
          'nwell': 1,
          'fact': 1,
          'need': 1,
          'learn': 1,
          'treating': 1,
          'nnot': 1,
          'everyone': 1,
          'capability': 1,
          'effort': 1,
          'nmost': 1,
          'toe': 1,
          'finger': 1,
          'preventing': 1,
          'noh': 1,
          'wait': 1,
          'almost': 1,
          'forgot': 1,
          'prevent': 1,
          'improve': 1,
          'nyes': 1,
          'nthat': 1,
          'true': 1,
          'nwhat': 1,
          'never': 1,
          'seemed': 1,
          'possibility': 1,
          'idea': 1,
          'talk': 1,
          'nfollow': 1,
          'nbah': 1,
          'nwho': 1,
          'needs': 1,
          'nonly': 1,
          'uptight': 1,
          'follow': 1,
          'saviors': 1,
          'ones': 1,
          'running': 1,
          'around': 1,
          'hospitals': 1,
          'red': 1,
          'spheres': 1,
          'faces': 1,
          'sporting': 1,
          'baggy': 1,
          'yellow': 1,
          'pants': 1,
          'issue': 1,
          'find': 1,
          'shockingly': 1,
          'frighteningly': 1,
          'idealistic': 1,
          'na': 1,
          'forest': 1,
          'nwhere': 1,
          'taken': 1,
          'helped': 1,
          'nfor': 1,
          'nhow': 1,
          'transported': 1,
          'nwill': 1,
          'emergency': 1,
          'room': 1,
          'ask': 1,
          'give': 1,
          'token': 1,
          'attempts': 1,
          'question': 1,
          'motives': 1,
          'another': 1,
          'asks': 1,
          'addition': 1,
          'bit': 1,
          'meaningless': 1,
          'blather': 1,
          'hmos': 1,
          'insurance': 1,
          'certainly': 1,
          'explore': 1,
          'challenge': 1,
          'ideas': 1,
          'meaningful': 1,
          'extent': 1,
          'nreader': 1,
          'please': 1,
          'making': 1,
          'kind': 1,
          'judgment': 1,
          'nothing': 1,
          'nif': 1,
          'beliefs': 1,
          'mirror': 1,
          'intelligent': 1,
          'discussion': 1,
          'regardless': 1,
          'believes': 1,
          'put': 1,
          'forth': 1,
          'obligatory': 1,
          'lunch': 1,
          'halfway': 1,
          'esophagus': 1,
          'nactually': 1,
          'shouts': 1,
          'helping': 1,
          'tell': 1,
          'profoundly': 1,
          'negative': 1,
          'reminded': 1,
          'cinematic': 1,
          'experience': 1,
          'npatch': 1,
          'cheapest': 1,
          'nneg': 1}),
 Counter({'eddie': 7,
          'movie': 6,
          'knicks': 5,
          'players': 5,
          'nba': 4,
          'neddie': 4,
          'bad': 4,
          'new': 4,
          'nthe': 4,
          'one': 3,
          'nits': 3,
          'basketball': 3,
          'well': 3,
          'eventually': 3,
          'get': 3,
          'script': 3,
          'york': 3,
          'fan': 3,
          'team': 3,
          'coach': 3,
          'actual': 3,
          'make': 3,
          'actors': 3,
          'like': 3,
          'lines': 3,
          'though': 3,
          'isnt': 3,
          'cant': 2,
          'miss': 2,
          'cameo': 2,
          'ill': 2,
          'right': 2,
          'publicity': 2,
          'sort': 2,
          'comedy': 2,
          'see': 2,
          'least': 2,
          'required': 2,
          'plot': 2,
          'makes': 2,
          'every': 2,
          'decision': 2,
          'goldberg': 2,
          'frank': 2,
          'langella': 2,
          'surprise': 2,
          'big': 2,
          'teams': 2,
          'nthose': 2,
          'usually': 2,
          'involve': 2,
          'kids': 2,
          'sound': 2,
          'comedic': 2,
          'reason': 2,
          'premise': 2,
          'look': 2,
          'punch': 2,
          'nperhaps': 2,
          'film': 2,
          'donald': 2,
          'trump': 2,
          'mayor': 2,
          'letterman': 2,
          'mujibur': 2,
          'sirajul': 2,
          'hey': 2,
          'great': 1,
          'idea': 1,
          'nsee': 1,
          'ive': 1,
          'got': 1,
          'coolio': 1,
          'song': 1,
          'soundtrack': 1,
          'fifty': 1,
          'athletes': 1,
          'celebrities': 1,
          'appearances': 1,
          'professional': 1,
          'release': 1,
          'around': 1,
          'finals': 1,
          'guarantee': 1,
          'added': 1,
          'nas': 1,
          'actually': 1,
          'ni': 1,
          'figure': 1,
          'throw': 1,
          'halfdozen': 1,
          'writers': 1,
          'take': 1,
          'best': 1,
          'whatever': 1,
          'come': 1,
          'nmaybe': 1,
          'put': 1,
          'gender': 1,
          'spin': 1,
          'women': 1,
          'phenomenally': 1,
          'lazy': 1,
          'films': 1,
          'infuriates': 1,
          'kind': 1,
          'ntwister': 1,
          'inane': 1,
          'might': 1,
          'creative': 1,
          'technicians': 1,
          'mission': 1,
          'impossible': 1,
          'overwrought': 1,
          'involved': 1,
          'genuine': 1,
          'effort': 1,
          'sits': 1,
          'hawking': 1,
          'formula': 1,
          'story': 1,
          'without': 1,
          'laughs': 1,
          'possible': 1,
          'nwhoopi': 1,
          'plays': 1,
          'franklin': 1,
          'limo': 1,
          'driver': 1,
          'diehard': 1,
          'suffering': 1,
          'dismal': 1,
          'season': 1,
          'beloved': 1,
          'ncoach': 1,
          'john': 1,
          'bailey': 1,
          'dennis': 1,
          'farina': 1,
          'lost': 1,
          'control': 1,
          'overpaid': 1,
          'prima': 1,
          'donnas': 1,
          'losses': 1,
          'beginning': 1,
          'mount': 1,
          'dwindling': 1,
          'attendance': 1,
          'inspires': 1,
          'owner': 1,
          'wild': 1,
          'bill': 1,
          'burgess': 1,
          'try': 1,
          'stunt': 1,
          'lucky': 1,
          'honorary': 1,
          'winner': 1,
          'becomes': 1,
          'favorite': 1,
          'continue': 1,
          'lose': 1,
          'sassy': 1,
          'tricks': 1,
          'sleeve': 1,
          'inspire': 1,
          'troops': 1,
          'nincidentally': 1,
          'start': 1,
          'winning': 1,
          'nplease': 1,
          'raise': 1,
          'hand': 1,
          'comes': 1,
          'shock': 1,
          'invite': 1,
          'allnight': 1,
          'marathon': 1,
          'news': 1,
          'bears': 1,
          'major': 1,
          'league': 1,
          'angels': 1,
          'outfield': 1,
          'mighty': 1,
          'ducks': 1,
          'green': 1,
          'cool': 1,
          'runnings': 1,
          'little': 1,
          'giants': 1,
          'nawful': 1,
          'sports': 1,
          'comedies': 1,
          'miraculous': 1,
          'turnarounds': 1,
          'funnier': 1,
          'screw': 1,
          'theyre': 1,
          'sympathetic': 1,
          '_dont_': 1,
          'lead': 1,
          'roles': 1,
          'another': 1,
          'generally': 1,
          'developed': 1,
          'comic': 1,
          'timing': 1,
          'cast': 1,
          'misguided': 1,
          'easier': 1,
          'nthis': 1,
          'finds': 1,
          'greg': 1,
          'ostertag': 1,
          'dwayne': 1,
          'schintzius': 1,
          'rick': 1,
          'fox': 1,
          'malik': 1,
          'sealy': 1,
          'delivering': 1,
          'reading': 1,
          'first': 1,
          'time': 1,
          'bazooka': 1,
          'wrapper': 1,
          'sacramento': 1,
          'kings': 1,
          'center': 1,
          'olden': 1,
          'polynice': 1,
          'nice': 1,
          'moment': 1,
          'describing': 1,
          'black': 1,
          'hole': 1,
          'fellow': 1,
          'didnt': 1,
          'matter': 1,
          'anyone': 1,
          'whole': 1,
          'casting': 1,
          'gimmick': 1,
          'nsteve': 1,
          'rash': 1,
          'directs': 1,
          'spiritless': 1,
          'waving': 1,
          'flag': 1,
          'surrender': 1,
          'screaming': 1,
          'dont': 1,
          'blame': 1,
          'work': 1,
          'patently': 1,
          'obvious': 1,
          'appearance': 1,
          'trips': 1,
          'namong': 1,
          'notables': 1,
          'lend': 1,
          'faces': 1,
          'travesty': 1,
          'rudolph': 1,
          'giulianni': 1,
          'former': 1,
          'ed': 1,
          'koch': 1,
          'david': 1,
          'regulars': 1,
          'rahman': 1,
          'islam': 1,
          'espn': 1,
          'broadcaster': 1,
          'chris': 1,
          'berman': 1,
          'announcer': 1,
          'marv': 1,
          'albert': 1,
          'dozens': 1,
          'several': 1,
          'arenas': 1,
          'nand': 1,
          'real': 1,
          'jokes': 1,
          'nnothing': 1,
          'individuals': 1,
          'say': 1,
          'funny': 1,
          'supposed': 1,
          'laughing': 1,
          'simply': 1,
          'notice': 1,
          'difficult': 1,
          'decide': 1,
          'whether': 1,
          'shamelessly': 1,
          'lacking': 1,
          'imagination': 1,
          'even': 1,
          'cliches': 1,
          'clicheridden': 1,
          'genre': 1,
          'eddies': 1,
          'antagonist': 1,
          'early': 1,
          'reappears': 1,
          'end': 1,
          'given': 1,
          'chance': 1,
          'villain': 1,
          'desperately': 1,
          'needs': 1,
          'nneither': 1,
          'none': 1,
          'athleteactors': 1,
          'ability': 1,
          'give': 1,
          'whoopi': 1,
          'anything': 1,
          'play': 1,
          'nthat': 1,
          'leaves': 1,
          'streetwise': 1,
          'thang': 1,
          'routine': 1,
          'character': 1,
          'sharp': 1,
          'help': 1,
          'formulaic': 1,
          'feel': 1,
          'cheated': 1,
          'offended': 1,
          'someone': 1,
          'came': 1,
          'poster': 1,
          'marketing': 1,
          'plan': 1,
          'attach': 1,
          'nerve': 1,
          'believe': 1,
          'going': 1,
          'nneg': 1}),
 Counter({'club': 7,
          'film': 6,
          'fight': 5,
          'films': 4,
          'nbut': 4,
          'world': 4,
          'ni': 3,
          'much': 3,
          'truly': 3,
          'make': 3,
          'game': 3,
          'tyler': 3,
          'get': 3,
          'good': 3,
          'social': 3,
          'politics': 3,
          'would': 2,
          'must': 2,
          'befuddled': 2,
          'things': 2,
          'nnow': 2,
          'sometimes': 2,
          'later': 2,
          'years': 2,
          'nperhaps': 2,
          'nfight': 2,
          'brilliant': 2,
          'right': 2,
          'throughout': 2,
          'media': 2,
          'norton': 2,
          'jack': 2,
          'pitt': 2,
          'begin': 2,
          'say': 2,
          'fincher': 2,
          'se7en': 2,
          'put': 2,
          'filmmakers': 2,
          'means': 2,
          'woven': 2,
          'interoffice': 2,
          'n': 2,
          'nall': 2,
          'nnot': 2,
          'point': 2,
          'bizarre': 2,
          'likely': 2,
          'think': 2,
          'reasonable': 1,
          'human': 1,
          'admit': 1,
          'occasionally': 1,
          'certain': 1,
          'favorite': 1,
          'panned': 1,
          'critics': 1,
          'achieve': 1,
          'critical': 1,
          'success': 1,
          'ten': 1,
          'twenty': 1,
          'way': 1,
          'ahead': 1,
          'time': 1,
          'new': 1,
          'complex': 1,
          'allowing': 1,
          'sink': 1,
          'appreciate': 1,
          'understand': 1,
          'either': 1,
          'garbage': 1,
          'least': 1,
          'lean': 1,
          'toward': 1,
          'former': 1,
          'nmaybe': 1,
          'subconsciously': 1,
          'affected': 1,
          'word': 1,
          'mouth': 1,
          'slowly': 1,
          'leaking': 1,
          'weeks': 1,
          'pure': 1,
          'gold': 1,
          'sure': 1,
          'see': 1,
          'nedward': 1,
          'plays': 1,
          'field': 1,
          'examiner': 1,
          'major': 1,
          'automobile': 1,
          'manufacturer': 1,
          'nhis': 1,
          'insomnia': 1,
          'coupled': 1,
          'compulsive': 1,
          'desires': 1,
          'fill': 1,
          'ikea': 1,
          'furniture': 1,
          'complete': 1,
          'loser': 1,
          'life': 1,
          'worldly': 1,
          'possessions': 1,
          'blown': 1,
          '15th': 1,
          'story': 1,
          'window': 1,
          'seeks': 1,
          'comfort': 1,
          'stranger': 1,
          'met': 1,
          'flight': 1,
          'home': 1,
          'nonce': 1,
          'sucked': 1,
          'literally': 1,
          'nthey': 1,
          'organization': 1,
          'based': 1,
          'brutal': 1,
          'bloody': 1,
          'fistfights': 1,
          'signify': 1,
          'nothing': 1,
          'provide': 1,
          'join': 1,
          'sense': 1,
          'belonging': 1,
          'nas': 1,
          'grows': 1,
          'control': 1,
          'take': 1,
          'cult': 1,
          'status': 1,
          'beginning': 1,
          'one': 1,
          'future': 1,
          'soldier': 1,
          'proves': 1,
          'worth': 1,
          'standing': 1,
          'still': 1,
          'outside': 1,
          'house': 1,
          'three': 1,
          'days': 1,
          'dare': 1,
          'even': 1,
          'bring': 1,
          'last': 1,
          'quarter': 1,
          'since': 1,
          'contains': 1,
          'twist': 1,
          'explains': 1,
          'pointless': 1,
          'journey': 1,
          'nsuffice': 1,
          'disappointed': 1,
          'previous': 1,
          'two': 1,
          'slim': 1,
          'category': 1,
          'young': 1,
          'next': 1,
          'generation': 1,
          'nthis': 1,
          'imply': 1,
          'longer': 1,
          'genius': 1,
          'capable': 1,
          'bringing': 1,
          'masterpieces': 1,
          'table': 1,
          'allowed': 1,
          'unique': 1,
          'talent': 1,
          'extraordinary': 1,
          'vision': 1,
          'distorted': 1,
          'silly': 1,
          'digital': 1,
          'experiments': 1,
          'selfreferencing': 1,
          'elements': 1,
          'talking': 1,
          'audience': 1,
          'seeing': 1,
          'telling': 1,
          'little': 1,
          'blips': 1,
          'hand': 1,
          'corner': 1,
          'signifiers': 1,
          'projectionist': 1,
          'changing': 1,
          'reels': 1,
          'slightly': 1,
          'altered': 1,
          'recurring': 1,
          'line': 1,
          'flashback': 1,
          'humor': 1,
          'coarsely': 1,
          'texture': 1,
          'overextended': 1,
          'plot': 1,
          'lines': 1,
          'obviously': 1,
          'trying': 1,
          'various': 1,
          'comments': 1,
          'state': 1,
          'today': 1,
          'nadvertisements': 1,
          'corporations': 1,
          'name': 1,
          'addressed': 1,
          'though': 1,
          'suspiciously': 1,
          'absent': 1,
          'institutions': 1,
          'referenced': 1,
          'play': 1,
          'important': 1,
          'role': 1,
          'nhow': 1,
          'nwell': 1,
          'kinda': 1,
          'tell': 1,
          'really': 1,
          'finger': 1,
          'nto': 1,
          'starbucks': 1,
          'barnes': 1,
          'noble': 1,
          'taking': 1,
          'respective': 1,
          'markets': 1,
          'kicking': 1,
          'small': 1,
          'business': 1,
          'owner': 1,
          'big': 1,
          'news': 1,
          'nis': 1,
          'bad': 1,
          'nprobably': 1,
          'room': 1,
          'commentary': 1,
          'nwe': 1,
          'know': 1,
          'nso': 1,
          'nthe': 1,
          'seems': 1,
          'desperate': 1,
          'number': 1,
          'points': 1,
          'figure': 1,
          'saw': 1,
          'satire': 1,
          'strange': 1,
          'techniques': 1,
          'bleak': 1,
          'visual': 1,
          'design': 1,
          'fine': 1,
          'acting': 1,
          'carter': 1,
          'neven': 1,
          'meatloaf': 1,
          'nwhen': 1,
          'end': 1,
          'filled': 1,
          'questions': 1,
          'many': 1,
          'wanted': 1,
          'ask': 1,
          'give': 1,
          'different': 1,
          'answer': 1,
          'want': 1,
          'mean': 1,
          'gives': 1,
          'stuff': 1,
          'unappealing': 1,
          'nsure': 1,
          'shock': 1,
          'value': 1,
          'significantly': 1,
          'stronger': 1,
          'nneg': 1}),
 Counter({'batman': 7,
          'ni': 7,
          'film': 6,
          'really': 6,
          'like': 4,
          'much': 4,
          'films': 4,
          'clooney': 2,
          'say': 2,
          'couple': 2,
          'miss': 2,
          'would': 2,
          'first': 2,
          'bit': 2,
          'dark': 2,
          'mean': 2,
          'fun': 2,
          'everyone': 2,
          'reason': 2,
          'staring': 1,
          'george': 1,
          'arnold': 1,
          'schwarzenegger': 1,
          'chris': 1,
          'odonnell': 1,
          'uma': 1,
          'thurman': 1,
          'alicia': 1,
          'silverstone': 1,
          'nwell': 1,
          'start': 1,
          'id': 1,
          'things': 1,
          'nfirst': 1,
          'michael': 1,
          'keaton': 1,
          'tim': 1,
          'burton': 1,
          'prefer': 1,
          'think': 1,
          'last': 1,
          'two': 1,
          'dallas': 1,
          'dream': 1,
          'sequence': 1,
          'nnot': 1,
          'even': 1,
          'star': 1,
          'though': 1,
          'damn': 1,
          'close': 1,
          'anyway': 1,
          'nin': 1,
          'forever': 1,
          'robin': 1,
          'hes': 1,
          'almost': 1,
          'pushed': 1,
          'player': 1,
          'cant': 1,
          'regardless': 1,
          'better': 1,
          'kilmer': 1,
          'good': 1,
          'nhes': 1,
          'given': 1,
          'next': 1,
          'nothing': 1,
          'might': 1,
          'well': 1,
          'wouldnt': 1,
          'made': 1,
          'difference': 1,
          'nnow': 1,
          'joel': 1,
          'schumacher': 1,
          'said': 1,
          'refuses': 1,
          'bend': 1,
          'masses': 1,
          'hated': 1,
          'cheered': 1,
          'return': 1,
          'buton': 1,
          'wont': 1,
          'make': 1,
          'brooding': 1,
          'nfine': 1,
          'granted': 1,
          'returns': 1,
          'awsome': 1,
          'sometimes': 1,
          'nyet': 1,
          'bright': 1,
          'neon': 1,
          'campy': 1,
          'style': 1,
          'killing': 1,
          'anything': 1,
          'series': 1,
          'meant': 1,
          'nim': 1,
          'usually': 1,
          'easy': 1,
          'loved': 1,
          'con': 1,
          'air': 1,
          'critics': 1,
          'slammed': 1,
          'ngranted': 1,
          'paper': 1,
          'thin': 1,
          'cliche': 1,
          'ridden': 1,
          'except': 1,
          'one': 1,
          'thing': 1,
          'nthere': 1,
          'virtually': 1,
          'couldnt': 1,
          'cared': 1,
          'less': 1,
          'nitll': 1,
          'thrill': 1,
          'little': 1,
          'ones': 1,
          'theres': 1,
          'violence': 1,
          'none': 1,
          'comes': 1,
          'fine': 1,
          'end': 1,
          'old': 1,
          'tv': 1,
          'shows': 1,
          'ends': 1,
          'laughing': 1,
          'nschwarzenegger': 1,
          'awful': 1,
          'bad': 1,
          'nand': 1,
          'coming': 1,
          'regular': 1,
          'fan': 1,
          'work': 1,
          'love': 1,
          'movies': 1,
          'time': 1,
          'basic': 1,
          'never': 1,
          'says': 1,
          'nhe': 1,
          'talks': 1,
          'often': 1,
          'movie': 1,
          'prefered': 1,
          'seen': 1,
          'patric': 1,
          'stewart': 1,
          'roll': 1,
          'believe': 1,
          'truely': 1,
          'care': 1,
          'least': 1,
          'someone': 1,
          'liked': 1,
          'alfred': 1,
          'behind': 1,
          'cheap': 1,
          'shot': 1,
          'nneg': 1}),
 Counter({'tribe': 8,
          'nthe': 6,
          'krippendorfs': 5,
          'dreyfuss': 3,
          'level': 3,
          'like': 3,
          'krippendorf': 3,
          'professor': 3,
          'college': 3,
          'much': 3,
          'quality': 2,
          'everyone': 2,
          'else': 2,
          'occasionally': 2,
          'movies': 2,
          'kind': 2,
          'never': 2,
          'film': 2,
          'school': 2,
          'nkrippendorfs': 2,
          'three': 2,
          'viewers': 2,
          'character': 2,
          'james': 2,
          'little': 2,
          'wife': 2,
          'lost': 2,
          'new': 2,
          'children': 2,
          'natasha': 2,
          'lyonne': 2,
          'see': 2,
          'jenna': 2,
          'elfman': 2,
          'shelmikedmu': 2,
          'one': 2,
          'lily': 2,
          'tomlin': 2,
          'television': 2,
          'quickly': 2,
          'even': 1,
          'though': 1,
          'utmost': 1,
          'respect': 1,
          'richard': 1,
          'actor': 1,
          'presence': 1,
          'motion': 1,
          'picture': 1,
          'guarantee': 1,
          'particular': 1,
          'nlike': 1,
          'bills': 1,
          'pay': 1,
          'accepts': 1,
          'big': 1,
          'paychecks': 1,
          'prominent': 1,
          'roles': 1,
          'bad': 1,
          'nconsequently': 1,
          'career': 1,
          'highlights': 1,
          'include': 1,
          'jaws': 1,
          'close': 1,
          'encounters': 1,
          'third': 1,
          'stakeout': 1,
          'tin': 1,
          'men': 1,
          'resume': 1,
          'dotted': 1,
          'titles': 1,
          'moon': 1,
          'parador': 1,
          'let': 1,
          'ride': 1,
          'nlet': 1,
          'start': 1,
          'saying': 1,
          'funny': 1,
          'although': 1,
          'riotously': 1,
          'thats': 1,
          'asset': 1,
          'best': 1,
          'word': 1,
          'describe': 1,
          'asinine': 1,
          'target': 1,
          'audience': 1,
          'would': 1,
          'appear': 1,
          'recent': 1,
          'nursery': 1,
          'graduates': 1,
          'numerous': 1,
          'sexual': 1,
          'innuendoes': 1,
          'aimed': 1,
          'someone': 1,
          'going': 1,
          'puberty': 1,
          'tries': 1,
          'zany': 1,
          'offthewall': 1,
          'comedy': 1,
          'makers': 1,
          'forgotten': 1,
          'important': 1,
          'rules': 1,
          'first': 1,
          'minimal': 1,
          'plot': 1,
          'credibility': 1,
          'exist': 1,
          'second': 1,
          'able': 1,
          'identify': 1,
          'least': 1,
          'care': 1,
          'two': 1,
          'nfinally': 1,
          'importantly': 1,
          '5': 1,
          'jokes': 1,
          'work': 1,
          'nonce': 1,
          'upon': 1,
          'time': 1,
          'respected': 1,
          'anthropology': 1,
          'bounderby': 1,
          'nhe': 1,
          'obtained': 1,
          'grant': 1,
          'seek': 1,
          'somewhere': 1,
          'wilds': 1,
          'guinea': 1,
          'goal': 1,
          'accomplished': 1,
          'nshortly': 1,
          'return': 1,
          'failed': 1,
          'trip': 1,
          'died': 1,
          'left': 1,
          'herculean': 1,
          'task': 1,
          'raising': 1,
          'shelly': 1,
          'mickey': 1,
          'gregory': 1,
          'smith': 1,
          'edmund': 1,
          'carl': 1,
          'michael': 1,
          'linder': 1,
          'nnow': 1,
          'year': 1,
          'later': 1,
          'wants': 1,
          'results': 1,
          'money': 1,
          'gave': 1,
          'spent': 1,
          'research': 1,
          'things': 1,
          'family': 1,
          'send': 1,
          'member': 1,
          'faculty': 1,
          'veronica': 1,
          'micelli': 1,
          'inform': 1,
          'scheduled': 1,
          'give': 1,
          'lecture': 1,
          'findings': 1,
          'nwhen': 1,
          'arrives': 1,
          'momentous': 1,
          'event': 1,
          'rather': 1,
          'telling': 1,
          'truth': 1,
          'risking': 1,
          'sent': 1,
          'jail': 1,
          'misappropriating': 1,
          'funds': 1,
          'fabricates': 1,
          'tale': 1,
          'mythical': 1,
          'nto': 1,
          'provide': 1,
          'video': 1,
          'footage': 1,
          'films': 1,
          'dressed': 1,
          'native': 1,
          'garb': 1,
          'nsoon': 1,
          'surprise': 1,
          'national': 1,
          'phenomenon': 1,
          'nbut': 1,
          'disaffected': 1,
          'determined': 1,
          'prove': 1,
          'fraud': 1,
          'way': 1,
          'works': 1,
          'assume': 1,
          'characters': 1,
          'mention': 1,
          'dumber': 1,
          'dirt': 1,
          'nunfortunately': 1,
          'impossible': 1,
          'sympathize': 1,
          'bunch': 1,
          'putzes': 1,
          'ndirector': 1,
          'todd': 1,
          'holland': 1,
          'completely': 1,
          'fails': 1,
          'develop': 1,
          'something': 1,
          'substantial': 1,
          'device': 1,
          'implement': 1,
          'various': 1,
          'dubious': 1,
          'gags': 1,
          'nmeanwhile': 1,
          'attempts': 1,
          'satirizing': 1,
          'shallowness': 1,
          'american': 1,
          'culture': 1,
          'e': 1,
          'easily': 1,
          'public': 1,
          'fooled': 1,
          'jumping': 1,
          'bandwagon': 1,
          'latest': 1,
          'trend': 1,
          'come': 1,
          'across': 1,
          'feeble': 1,
          'derivative': 1,
          'acting': 1,
          'underwhelming': 1,
          'ndreyfuss': 1,
          'definitely': 1,
          'given': 1,
          'role': 1,
          'nalongside': 1,
          'spunky': 1,
          'costar': 1,
          'tvs': 1,
          'dharma': 1,
          'greg': 1,
          'radiates': 1,
          'perkiness': 1,
          'nthis': 1,
          'fine': 1,
          '22minute': 1,
          'program': 1,
          'becomes': 1,
          'irritating': 1,
          'arena': 1,
          'featurelength': 1,
          'movie': 1,
          'nno': 1,
          'supporting': 1,
          'cast': 1,
          'david': 1,
          'ogden': 1,
          'stiers': 1,
          'woody': 1,
          'allens': 1,
          'daughter': 1,
          'says': 1,
          'love': 1,
          'excels': 1,
          'ni': 1,
          'know': 1,
          'trouble': 1,
          'half': 1,
          'length': 1,
          'titanic': 1,
          'seems': 1,
          'longer': 1,
          'nmost': 1,
          'comes': 1,
          'screen': 1,
          'generic': 1,
          'sitcom': 1,
          'material': 1,
          'slop': 1,
          'people': 1,
          'absorb': 1,
          'dozing': 1,
          'favorite': 1,
          'easy': 1,
          'chair': 1,
          'front': 1,
          'set': 1,
          'nif': 1,
          'theres': 1,
          'upside': 1,
          'dont': 1,
          'boxoffice': 1,
          'support': 1,
          'developing': 1,
          'lame': 1,
          'illmarketed': 1,
          'miscue': 1,
          'become': 1,
          'extinct': 1,
          'nneg': 1}),
 Counter({'elfont': 5,
          'kaplan': 5,
          'hardly': 4,
          'wait': 4,
          'teenagers': 3,
          'characters': 3,
          'funny': 3,
          'movies': 2,
          'teenage': 2,
          'one': 2,
          'reason': 2,
          'however': 2,
          'say': 2,
          'ncant': 2,
          'attend': 2,
          'kenny': 2,
          'william': 2,
          'got': 2,
          'sex': 2,
          'could': 2,
          'cant': 2,
          'forced': 2,
          'humour': 2,
          'nfor': 2,
          'culture': 1,
          'rarely': 1,
          'prove': 1,
          'either': 1,
          'interesting': 1,
          'entertaining': 1,
          'convincing': 1,
          'fundamental': 1,
          'made': 1,
          'adults': 1,
          'noccasionally': 1,
          'films': 1,
          'like': 1,
          'anything': 1,
          'dazed': 1,
          'confused': 1,
          'breakfast': 1,
          'club': 1,
          'break': 1,
          'mold': 1,
          'offer': 1,
          'genuine': 1,
          'insight': 1,
          'lives': 1,
          'bizarre': 1,
          'creatures': 1,
          'surround': 1,
          'us': 1,
          'called': 1,
          'ninstead': 1,
          'writingdirecting': 1,
          'team': 1,
          'harry': 1,
          'deborah': 1,
          'manages': 1,
          'take': 1,
          'every': 1,
          'clich': 1,
          'found': 1,
          'genre': 1,
          'strip': 1,
          'completely': 1,
          'perception': 1,
          'intelligence': 1,
          'wit': 1,
          'turn': 1,
          'nauseating': 1,
          'cinematic': 1,
          'experiences': 1,
          'ever': 1,
          'subjected': 1,
          'follows': 1,
          'group': 1,
          'house': 1,
          'party': 1,
          'night': 1,
          'high': 1,
          'school': 1,
          'graduation': 1,
          'nthe': 1,
          'main': 1,
          'perfected': 1,
          'stereotypes': 1,
          'analysis': 1,
          'needs': 1,
          'provided': 1,
          'perfectly': 1,
          'understand': 1,
          'theres': 1,
          'average': 1,
          'male': 1,
          'protagonist': 1,
          'preston': 1,
          'ethan': 1,
          'embry': 1,
          'prom': 1,
          'queen': 1,
          'cheerleader': 1,
          'amanda': 1,
          'jennifer': 1,
          'lovehewitt': 1,
          'football': 1,
          'star': 1,
          'mike': 1,
          'peter': 1,
          'facinelli': 1,
          'white': 1,
          'rapper': 1,
          'wannabe': 1,
          'seth': 1,
          'green': 1,
          'computer': 1,
          'geek': 1,
          'charlie': 1,
          'korsmo': 1,
          'brainy': 1,
          'outsider': 1,
          'denise': 1,
          'lauren': 1,
          'ambrose': 1,
          'ni': 1,
          'couldnt': 1,
          'stand': 1,
          'nwhether': 1,
          'getting': 1,
          'drunk': 1,
          'signing': 1,
          'along': 1,
          'heavy': 1,
          'metal': 1,
          'songs': 1,
          'proclaiming': 1,
          'yo': 1,
          'ta': 1,
          'tonight': 1,
          'nall': 1,
          'think': 1,
          'possibly': 1,
          'managed': 1,
          'con': 1,
          'columbia': 1,
          'pictures': 1,
          'ten': 1,
          'million': 1,
          'dollars': 1,
          'fund': 1,
          'film': 1,
          'napparently': 1,
          'supposed': 1,
          'comedy': 1,
          'tends': 1,
          'fail': 1,
          'respect': 1,
          'fact': 1,
          'nin': 1,
          'honesty': 1,
          'employers': 1,
          'remedial': 1,
          'classes': 1,
          'nand': 1,
          'mean': 1,
          'nthey': 1,
          'strapped': 1,
          'chair': 1,
          'eyes': 1,
          'wedged': 1,
          'open': 1,
          'similar': 1,
          'fashion': 1,
          'alex': 1,
          'clockwork': 1,
          'orange': 1,
          'nthis': 1,
          'desperately': 1,
          'need': 1,
          'educated': 1,
          'concept': 1,
          'instance': 1,
          'features': 1,
          'foreign': 1,
          'exchange': 1,
          'student': 1,
          'instructed': 1,
          'repeat': 1,
          'absurd': 1,
          'statements': 1,
          'machine': 1,
          'believe': 1,
          'character': 1,
          'repeats': 1,
          'enough': 1,
          'eventually': 1,
          'nif': 1,
          'recognise': 1,
          'irony': 1,
          'actually': 1,
          'paid': 1,
          'making': 1,
          'junk': 1,
          'thats': 1,
          'nneg': 1}),
 Counter({'like': 14,
          'james': 6,
          'phillippe': 6,
          'one': 6,
          'suspects': 6,
          'way': 5,
          'bad': 5,
          'character': 5,
          'caan': 5,
          'good': 4,
          'much': 4,
          'nbut': 4,
          'even': 4,
          'usual': 4,
          'movie': 4,
          'gun': 3,
          'performance': 3,
          'know': 3,
          'john': 3,
          'though': 3,
          'seems': 3,
          'nits': 3,
          'ass': 3,
          'plot': 3,
          'well': 3,
          'del': 3,
          'torro': 3,
          'us': 3,
          'nthe': 3,
          'feels': 3,
          'characters': 3,
          'scene': 3,
          'twist': 3,
          'never': 3,
          'lines': 3,
          'role': 3,
          'surprises': 2,
          'ones': 2,
          'actor': 2,
          'last': 2,
          'bit': 2,
          'growth': 2,
          'film': 2,
          'around': 2,
          'nit': 2,
          'dramatic': 2,
          'could': 2,
          'point': 2,
          'look': 2,
          'pretty': 2,
          'day': 2,
          'sound': 2,
          'see': 2,
          'tough': 2,
          'nunlike': 2,
          'approach': 2,
          'benicio': 2,
          'two': 2,
          'lot': 2,
          'juliette': 2,
          'lewis': 2,
          'man': 2,
          'shoot': 2,
          'many': 2,
          'diggs': 2,
          'katt': 2,
          'mcquarrie': 2,
          'crime': 2,
          'movies': 2,
          'seen': 2,
          'limey': 2,
          'without': 2,
          'code': 2,
          'seemed': 2,
          'rather': 2,
          'thing': 2,
          'life': 2,
          'neven': 2,
          'didnt': 2,
          'astonishing': 2,
          'ending': 2,
          'dirty': 2,
          'little': 2,
          'shattering': 2,
          'reason': 2,
          'overplotted': 2,
          'better': 2,
          'guy': 2,
          'give': 2,
          'weak': 2,
          'brief': 2,
          'bargain': 2,
          'basement': 2,
          'woo': 2,
          'brimming': 1,
          'none': 1,
          'ryan': 1,
          'phillippes': 1,
          'surprisingly': 1,
          'halfway': 1,
          'decent': 1,
          'nafter': 1,
          'gained': 1,
          'attention': 1,
          'posing': 1,
          'preening': 1,
          'teen': 1,
          'swill': 1,
          'summer': 1,
          'hinted': 1,
          'years': 1,
          'cruel': 1,
          'intentions': 1,
          'amusingly': 1,
          'contemptuous': 1,
          'malkovich': 1,
          'meets': 1,
          'spader': 1,
          'acting': 1,
          'faltered': 1,
          'third': 1,
          'act': 1,
          'mark': 1,
          'precisely': 1,
          'screenplay': 1,
          'made': 1,
          'grow': 1,
          'heart': 1,
          'presumably': 1,
          'appeal': 1,
          'training': 1,
          'bra': 1,
          'wearing': 1,
          'fans': 1,
          'start': 1,
          'bellyaching': 1,
          'hed': 1,
          'fallen': 1,
          'target': 1,
          'shift': 1,
          'neither': 1,
          'films': 1,
          'director': 1,
          'negotiate': 1,
          'trying': 1,
          'shouldnt': 1,
          'overlooked': 1,
          'probably': 1,
          'praised': 1,
          'seeing': 1,
          'really': 1,
          'isnt': 1,
          'required': 1,
          'nhere': 1,
          'procured': 1,
          'five': 1,
          'beard': 1,
          'hair': 1,
          'askew': 1,
          'affect': 1,
          'altered': 1,
          'something': 1,
          'cagney': 1,
          'glory': 1,
          'believe': 1,
          'boy': 1,
          'hard': 1,
          'actually': 1,
          'helps': 1,
          'illusion': 1,
          'ben': 1,
          'afflecks': 1,
          'puppy': 1,
          'dog': 1,
          'reindeer': 1,
          'games': 1,
          'believable': 1,
          'nas': 1,
          'thats': 1,
          'great': 1,
          'play': 1,
          'moronic': 1,
          'remotely': 1,
          'likeable': 1,
          'criminals': 1,
          'introduced': 1,
          'parking': 1,
          'rave': 1,
          'stupidly': 1,
          'pick': 1,
          'fight': 1,
          'twenty': 1,
          'people': 1,
          'hatch': 1,
          'scheme': 1,
          'kidnap': 1,
          'surrogate': 1,
          'mother': 1,
          'overhearing': 1,
          'shes': 1,
          'carrying': 1,
          'baby': 1,
          'painter': 1,
          'scott': 1,
          'wilson': 1,
          'connected': 1,
          'wealthy': 1,
          'kidnapping': 1,
          'devolves': 1,
          'laborious': 1,
          'damage': 1,
          'done': 1,
          'killed': 1,
          'antiheroes': 1,
          'escape': 1,
          'woman': 1,
          'aging': 1,
          'hit': 1,
          'scheming': 1,
          'bodyguards': 1,
          'taye': 1,
          'nicky': 1,
          'remain': 1,
          'pursuit': 1,
          'ndirected': 1,
          'christopher': 1,
          'screenwriter': 1,
          'oscar': 1,
          'work': 1,
          'overrated': 1,
          'piece': 1,
          'noir': 1,
          'circles': 1,
          'included': 1,
          'hodgepodge': 1,
          'thriller': 1,
          'motifs': 1,
          'oozes': 1,
          'eye': 1,
          'rolling': 1,
          'familiarity': 1,
          'phillipe': 1,
          'doesnt': 1,
          'seem': 1,
          'growing': 1,
          'fills': 1,
          'flick': 1,
          'sprawling': 1,
          'labyrinth': 1,
          'snatched': 1,
          'ive': 1,
          'worse': 1,
          'lacks': 1,
          'fresh': 1,
          'soderbergh': 1,
          'sight': 1,
          'clich': 1,
          'spewed': 1,
          'picture': 1,
          'tries': 1,
          'desperately': 1,
          'hip': 1,
          'gritty': 1,
          'bothering': 1,
          'notice': 1,
          'common': 1,
          'features': 1,
          'living': 1,
          'picked': 1,
          'sam': 1,
          'peckinpah': 1,
          '101': 1,
          'resembling': 1,
          'attempts': 1,
          'emotional': 1,
          'weight': 1,
          'feel': 1,
          'strained': 1,
          'preposterous': 1,
          'enemies': 1,
          'stop': 1,
          'tracks': 1,
          'cup': 1,
          'coffee': 1,
          'pontificate': 1,
          'philosophy': 1,
          'etc': 1,
          'first': 1,
          'appeared': 1,
          'heat': 1,
          'self': 1,
          'consciously': 1,
          'nusual': 1,
          'also': 1,
          'featured': 1,
          'bunch': 1,
          'low': 1,
          'lives': 1,
          'live': 1,
          'learned': 1,
          'worked': 1,
          'degree': 1,
          'nnowadays': 1,
          'per': 1,
          'de': 1,
          'rigeur': 1,
          'mind': 1,
          'deems': 1,
          'transpired': 1,
          'completely': 1,
          'inconsequential': 1,
          'nthus': 1,
          'nearly': 1,
          'every': 1,
          'comes': 1,
          'least': 1,
          'secret': 1,
          'amateurishly': 1,
          'projected': 1,
          'appear': 1,
          'ironic': 1,
          'end': 1,
          'nothing': 1,
          'earth': 1,
          'admit': 1,
          'coming': 1,
          'smiled': 1,
          'nhowever': 1,
          'exactly': 1,
          'interrogation': 1,
          'scenes': 1,
          'palminteri': 1,
          'spacey': 1,
          'faux': 1,
          'huffing': 1,
          'puffing': 1,
          'rhythm': 1,
          'substance': 1,
          'often': 1,
          'dull': 1,
          'interesting': 1,
          'distinctive': 1,
          'style': 1,
          'script': 1,
          'would': 1,
          'stuff': 1,
          'involves': 1,
          'fine': 1,
          'job': 1,
          'odd': 1,
          'place': 1,
          'thinks': 1,
          'karma': 1,
          'justice': 1,
          'satisfaction': 1,
          'clever': 1,
          'nat': 1,
          'laments': 1,
          'need': 1,
          'ultimate': 1,
          'monkey': 1,
          'line': 1,
          'inexplicable': 1,
          'might': 1,
          'said': 1,
          'love': 1,
          'hippo': 1,
          'nive': 1,
          'porno': 1,
          'dialogue': 1,
          'nand': 1,
          'rarely': 1,
          'porn': 1,
          'offered': 1,
          'talented': 1,
          'cast': 1,
          'mean': 1,
          'compare': 1,
          'ron': 1,
          'jeremy': 1,
          'ncaan': 1,
          'slips': 1,
          'seeming': 1,
          'ease': 1,
          'kind': 1,
          'softspoken': 1,
          'coma': 1,
          'manages': 1,
          'depth': 1,
          'weariness': 1,
          'nbenicio': 1,
          'always': 1,
          'welcome': 1,
          'plays': 1,
          'fairly': 1,
          'straight': 1,
          'another': 1,
          'oddball': 1,
          'creation': 1,
          'gave': 1,
          'excess': 1,
          'baggage': 1,
          'adopting': 1,
          'brad': 1,
          'pittesque': 1,
          'quizzical': 1,
          'pout': 1,
          'go': 1,
          'along': 1,
          'heavy': 1,
          'swaggering': 1,
          'nspeaking': 1,
          'pitt': 1,
          'ex': 1,
          'link': 1,
          'either': 1,
          'shouting': 1,
          'ear': 1,
          'shrillness': 1,
          'waddling': 1,
          'silly': 1,
          'goose': 1,
          'nnicky': 1,
          'brilliant': 1,
          'wasted': 1,
          'hes': 1,
          'kept': 1,
          'cold': 1,
          'presence': 1,
          'ntaye': 1,
          'similar': 1,
          'function': 1,
          'cool': 1,
          'ever': 1,
          'helluva': 1,
          'death': 1,
          'nfor': 1,
          'part': 1,
          'incessantly': 1,
          'talky': 1,
          'hippos': 1,
          'transpires': 1,
          'since': 1,
          'simplistic': 1,
          'pawns': 1,
          'vaguely': 1,
          'tarantinoish': 1,
          'truth': 1,
          'consequences': 1,
          'nm': 1,
          'leaping': 1,
          'stupid': 1,
          'rant': 1,
          'faggots': 1,
          'migrating': 1,
          'los': 1,
          'angeles': 1,
          'nyou': 1,
          'routine': 1,
          'final': 1,
          'pure': 1,
          'interchangeable': 1,
          'guys': 1,
          'lining': 1,
          'shot': 1,
          'shots': 1,
          'sure': 1,
          'crack': 1,
          'thunder': 1,
          'njust': 1,
          'watching': 1,
          'old': 1,
          'harry': 1,
          'cable': 1,
          'stunned': 1,
          'hear': 1,
          'elephant': 1,
          'gruntlike': 1,
          'emanated': 1,
          'harrys': 1,
          'fetishized': 1,
          'smith': 1,
          'wesson': 1,
          'noh': 1,
          'far': 1,
          'weve': 1,
          'come': 1,
          'nneg': 1}),
 Counter({'forward': 10,
          'film': 9,
          'pay': 7,
          'nthe': 7,
          'one': 7,
          'like': 6,
          'movie': 5,
          'though': 5,
          'make': 5,
          'films': 4,
          'even': 4,
          'place': 4,
          'picture': 4,
          'hunt': 4,
          'good': 4,
          'seems': 4,
          'actually': 4,
          'feel': 4,
          'little': 4,
          'could': 4,
          'academy': 4,
          'critics': 3,
          'may': 3,
          'isnt': 3,
          'audience': 3,
          'teacher': 3,
          'spacey': 3,
          'course': 3,
          'world': 3,
          'osmet': 3,
          'mother': 3,
          'helen': 3,
          'npay': 3,
          'would': 3,
          'leder': 3,
          'made': 3,
          'oscar': 3,
          'scene': 3,
          'performance': 3,
          'said': 3,
          'two': 3,
          'seemingly': 2,
          'patch': 2,
          'adams': 2,
          'neven': 2,
          'nthese': 2,
          'message': 2,
          'bad': 2,
          'heart': 2,
          'right': 2,
          'still': 2,
          'guarded': 2,
          'trevor': 2,
          'haley': 2,
          'joel': 2,
          'alcoholic': 2,
          'deed': 2,
          'three': 2,
          'others': 2,
          'jay': 2,
          'mohr': 2,
          'apparently': 2,
          'cynicism': 2,
          'nits': 2,
          'mimi': 2,
          'way': 2,
          'wasnt': 2,
          'character': 2,
          'black': 2,
          'coming': 2,
          'guilty': 2,
          'clich': 2,
          'flick': 2,
          'scenes': 2,
          'dopey': 2,
          'better': 2,
          'emotional': 2,
          'deglamed': 2,
          'trailer': 2,
          'hunts': 2,
          'feels': 2,
          'get': 2,
          'award': 2,
          'nin': 2,
          'mouth': 2,
          'hand': 2,
          'really': 2,
          'actors': 2,
          'children': 2,
          'first': 2,
          'impact': 2,
          'earths': 2,
          'complete': 2,
          'attack': 1,
          'wellintentioned': 1,
          'recently': 1,
          'opinions': 1,
          'often': 1,
          'greeted': 1,
          'backlash': 1,
          'angry': 1,
          'emails': 1,
          'sometimes': 1,
          'mock': 1,
          'death': 1,
          'threats': 1,
          'suppose': 1,
          'shamelessly': 1,
          'manipulated': 1,
          'entertainment': 1,
          'politicians': 1,
          'ntend': 1,
          'dismiss': 1,
          'heartless': 1,
          'cynics': 1,
          'occasionally': 1,
          'dumping': 1,
          'goodhearted': 1,
          'praising': 1,
          'filth': 1,
          'pulp': 1,
          'fiction': 1,
          'fill': 1,
          'derogatory': 1,
          'term': 1,
          'comfortable': 1,
          'tend': 1,
          'forget': 1,
          'job': 1,
          'review': 1,
          'however': 1,
          'sweet': 1,
          'endearing': 1,
          'nthusly': 1,
          'doctor': 1,
          'cares': 1,
          'patients': 1,
          'calculated': 1,
          'piece': 1,
          'brazen': 1,
          'exploitation': 1,
          'nsimilarly': 1,
          'doubt': 1,
          'stay': 1,
          'tuned': 1,
          'explanation': 1,
          'forthcoming': 1,
          'unpleasantly': 1,
          'maudlin': 1,
          'mess': 1,
          'emotionally': 1,
          '5th': 1,
          'grade': 1,
          'history': 1,
          'somewhat': 1,
          'similarly': 1,
          'kevin': 1,
          'burn': 1,
          'scared': 1,
          'face': 1,
          'equally': 1,
          'singed': 1,
          'attitude': 1,
          'gives': 1,
          'class': 1,
          'impossible': 1,
          'assignment': 1,
          'thing': 1,
          'semester': 1,
          'change': 1,
          'n12': 1,
          'year': 1,
          'old': 1,
          'disneyfied': 1,
          'gooder': 1,
          'takes': 1,
          'care': 1,
          'comes': 1,
          'notion': 1,
          'entails': 1,
          'person': 1,
          'call': 1,
          'uber': 1,
          'favor': 1,
          'telling': 1,
          'long': 1,
          'living': 1,
          'frank': 1,
          'capra': 1,
          'nmeanwhile': 1,
          'parallel': 1,
          'story': 1,
          'weasely': 1,
          'reporter': 1,
          'tracks': 1,
          'movement': 1,
          'begun': 1,
          'grow': 1,
          'odd': 1,
          'ideas': 1,
          'tone': 1,
          'certain': 1,
          'points': 1,
          'hurls': 1,
          'smattering': 1,
          'unnecessary': 1,
          'us': 1,
          'appropriate': 1,
          'antidote': 1,
          'unrelenting': 1,
          'sappiness': 1,
          'core': 1,
          'director': 1,
          'didnt': 1,
          'confidence': 1,
          'intended': 1,
          'compromised': 1,
          'fear': 1,
          'gutsy': 1,
          'enough': 1,
          'earn': 1,
          'acclaim': 1,
          'clearly': 1,
          'nso': 1,
          'adds': 1,
          'grit': 1,
          'child': 1,
          'molester': 1,
          'propositions': 1,
          'homeless': 1,
          'man': 1,
          'returns': 1,
          'heroin': 1,
          'saved': 1,
          'knifed': 1,
          'etc': 1,
          'shallow': 1,
          'incorporated': 1,
          'proceedings': 1,
          'quite': 1,
          'sure': 1,
          'ready': 1,
          'buy': 1,
          'utopian': 1,
          'blather': 1,
          'offers': 1,
          'crowd': 1,
          'pleasing': 1,
          'elements': 1,
          'general': 1,
          'audiences': 1,
          'mohrs': 1,
          'umpteenth': 1,
          'variation': 1,
          'waspy': 1,
          'sleazeball': 1,
          'angie': 1,
          'dickinsons': 1,
          'earthy': 1,
          'bag': 1,
          'woman': 1,
          'jivetalking': 1,
          'hoodlum': 1,
          'gold': 1,
          'heals': 1,
          'godlike': 1,
          'inmate': 1,
          'embodied': 1,
          'gabriel': 1,
          'casseus': 1,
          'bedazzled': 1,
          'beginnings': 1,
          'brand': 1,
          'new': 1,
          'white': 1,
          'liberal': 1,
          'nhurray': 1,
          'hollywood': 1,
          'calls': 1,
          'nigga': 1,
          'says': 1,
          'things': 1,
          'nleave': 1,
          'happily': 1,
          'include': 1,
          'minstrel': 1,
          'act': 1,
          'enjoyment': 1,
          'n': 1,
          'maybe': 1,
          'spikes': 1,
          'misguided': 1,
          'belong': 1,
          'comedy': 1,
          'aspirations': 1,
          'rather': 1,
          'irritatingly': 1,
          'saccharine': 1,
          'drama': 1,
          'youll': 1,
          'find': 1,
          'trapped': 1,
          'heed': 1,
          'warnings': 1,
          'nwhile': 1,
          'filmmakers': 1,
          'stressed': 1,
          'interviews': 1,
          'hope': 1,
          'final': 1,
          'product': 1,
          'oily': 1,
          'cynical': 1,
          'politician': 1,
          'contemptuously': 1,
          'reciting': 1,
          'cookie': 1,
          'fortune': 1,
          'slogans': 1,
          'hopeful': 1,
          'looks': 1,
          'tailor': 1,
          'consideration': 1,
          'main': 1,
          'players': 1,
          'previous': 1,
          'winners': 1,
          'nominees': 1,
          'given': 1,
          'big': 1,
          'practically': 1,
          'variations': 1,
          'lauded': 1,
          'turns': 1,
          'none': 1,
          'slightly': 1,
          'means': 1,
          'fashion': 1,
          'victim': 1,
          'look': 1,
          'somewhere': 1,
          'goth': 1,
          'queen': 1,
          'park': 1,
          'mama': 1,
          'hair': 1,
          'also': 1,
          'natty': 1,
          'badly': 1,
          'bleached': 1,
          'verbally': 1,
          'castigates': 1,
          'gets': 1,
          'clip': 1,
          'nspacey': 1,
          'responds': 1,
          'cultured': 1,
          'monotone': 1,
          'straight': 1,
          'low': 1,
          'key': 1,
          'american': 1,
          'beauty': 1,
          'nmaybe': 1,
          'actor': 1,
          'least': 1,
          'self': 1,
          'consciously': 1,
          'irritating': 1,
          'hes': 1,
          'emoting': 1,
          'somehow': 1,
          'shielded': 1,
          'wry': 1,
          'indifference': 1,
          'usually': 1,
          'talented': 1,
          'worst': 1,
          'offender': 1,
          'atrocious': 1,
          'touched': 1,
          'angel': 1,
          'moment': 1,
          'slaps': 1,
          'immediately': 1,
          'covering': 1,
          'stroke': 1,
          'begins': 1,
          'convulsing': 1,
          'dry': 1,
          'heaving': 1,
          'im': 1,
          'making': 1,
          'scurries': 1,
          'kitchen': 1,
          'tearing': 1,
          'apart': 1,
          'frenzied': 1,
          'search': 1,
          'alcohol': 1,
          'hokey': 1,
          'nearly': 1,
          'construed': 1,
          'parody': 1,
          'hackneyed': 1,
          'tv': 1,
          'blowups': 1,
          'theatrical': 1,
          'especially': 1,
          'pathetic': 1,
          'plea': 1,
          'another': 1,
          'dubious': 1,
          'distinction': 1,
          'used': 1,
          'argument': 1,
          'shouldnt': 1,
          'awards': 1,
          'unknowingly': 1,
          'affirms': 1,
          'oscars': 1,
          'transform': 1,
          'nuanced': 1,
          'talent': 1,
          'overwrought': 1,
          'expressionists': 1,
          'osemt': 1,
          'wunderkind': 1,
          'nominated': 1,
          'unforced': 1,
          'sixth': 1,
          'sense': 1,
          'divisive': 1,
          'expressions': 1,
          'inflections': 1,
          'nhis': 1,
          'acting': 1,
          'become': 1,
          'broader': 1,
          'less': 1,
          'intimate': 1,
          'munchkins': 1,
          'thoughts': 1,
          'boy': 1,
          'outta': 1,
          'floor': 1,
          'em': 1,
          'nnaturally': 1,
          'play': 1,
          'onlyinthemovies': 1,
          'martyrfigure': 1,
          'cleans': 1,
          'lectures': 1,
          'ills': 1,
          'drinking': 1,
          'fixes': 1,
          'date': 1,
          'intellectual': 1,
          'nnever': 1,
          'mind': 1,
          'couldnt': 1,
          'dissimilar': 1,
          'trash': 1,
          'dennis': 1,
          'millerey': 1,
          'intellectuals': 1,
          'hides': 1,
          'insecurities': 1,
          'behind': 1,
          'vast': 1,
          'vocabulary': 1,
          'nnevertheless': 1,
          'nudnik': 1,
          'goes': 1,
          'bring': 1,
          'pair': 1,
          'together': 1,
          'recalls': 1,
          'parent': 1,
          'trapish': 1,
          'cornball': 1,
          'antics': 1,
          'nbut': 1,
          'oh': 1,
          'love': 1,
          'bright': 1,
          'articulate': 1,
          'selfsacrificing': 1,
          'pick': 1,
          'adults': 1,
          'bootstraps': 1,
          'guide': 1,
          'life': 1,
          'ntheyre': 1,
          'adorable': 1,
          'nof': 1,
          'blame': 1,
          'cant': 1,
          'hoisted': 1,
          'onto': 1,
          'exception': 1,
          'kid': 1,
          'probably': 1,
          'known': 1,
          'instead': 1,
          'brunt': 1,
          'passed': 1,
          'directed': 1,
          'thrilling': 1,
          'episodes': 1,
          'er': 1,
          'went': 1,
          'awful': 1,
          'genre': 1,
          'row': 1,
          'peacemaker': 1,
          'witless': 1,
          'postcold': 1,
          'war': 1,
          'george': 1,
          'clooney': 1,
          'vehicle': 1,
          'deep': 1,
          '1998': 1,
          'squander': 1,
          'premise': 1,
          'possible': 1,
          'demise': 1,
          'crazed': 1,
          'meteorite': 1,
          'sunk': 1,
          'reliance': 1,
          'absence': 1,
          'kind': 1,
          'involvement': 1,
          'aided': 1,
          'ending': 1,
          'centered': 1,
          'around': 1,
          'diffusing': 1,
          'ticking': 1,
          'time': 1,
          'bomb': 1,
          'digital': 1,
          'read': 1,
          'present': 1,
          'invisible': 1,
          'ndeep': 1,
          'common': 1,
          'treats': 1,
          'impending': 1,
          'destruction': 1,
          'awfully': 1,
          'simplistic': 1,
          'terms': 1,
          'completely': 1,
          'ignoring': 1,
          'havoc': 1,
          'obviously': 1,
          'take': 1,
          'believed': 1,
          'planet': 1,
          'goner': 1,
          'within': 1,
          'days': 1,
          'full': 1,
          'inspirational': 1,
          'speeches': 1,
          'people': 1,
          'nothing': 1,
          'sappy': 1,
          'score': 1,
          'swelled': 1,
          'appear': 1,
          'profoundly': 1,
          'touching': 1,
          'continues': 1,
          'vein': 1,
          'intermittent': 1,
          'dollops': 1,
          'seeming': 1,
          'almost': 1,
          'rebuttal': 1,
          'see': 1,
          'na': 1,
          'might': 1,
          'think': 1,
          'saying': 1,
          'nno': 1,
          'horribly': 1,
          'confused': 1,
          'nneg': 1}),
 Counter({'movie': 12,
          'see': 7,
          'nit': 7,
          'bad': 6,
          'succeed': 6,
          'love': 5,
          'troopers': 4,
          'want': 4,
          'nthe': 4,
          'go': 4,
          'got': 4,
          'one': 3,
          'movies': 3,
          'even': 3,
          'ni': 3,
          'free': 3,
          'could': 3,
          'still': 3,
          'characters': 3,
          'agony': 3,
          'torture': 3,
          'dont': 3,
          'people': 3,
          'nbut': 3,
          'nso': 3,
          'like': 3,
          'near': 3,
          'really': 3,
          'resurrection': 3,
          'alien': 3,
          'starship': 2,
          'worst': 2,
          'long': 2,
          'film': 2,
          'years': 2,
          'nthis': 2,
          'money': 2,
          'nif': 2,
          'ahead': 2,
          'scenes': 2,
          'interest': 2,
          'sex': 2,
          'nthey': 2,
          'hour': 2,
          'audience': 2,
          'bugs': 2,
          'though': 2,
          'okay': 2,
          'nunfortunately': 2,
          'ncue': 2,
          'nthen': 2,
          'batman': 2,
          'robin': 2,
          'nwell': 2,
          'action': 2,
          'away': 2,
          'better': 2,
          'written': 2,
          'feels': 2,
          'whole': 2,
          'thing': 2,
          'children': 2,
          'anywhere': 2,
          'nof': 2,
          'course': 2,
          'recommend': 2,
          'everyone': 2,
          'itll': 2,
          'know': 2,
          '30': 2,
          'seconds': 2,
          'possibly': 2,
          'seen': 2,
          'best': 2,
          'begin': 1,
          'nokay': 1,
          'hit': 1,
          'theaters': 1,
          'time': 1,
          'nin': 1,
          'fact': 1,
          'might': 1,
          'major': 1,
          'release': 1,
          'come': 1,
          'decade': 1,
          'beyond': 1,
          'belief': 1,
          'would': 1,
          'suggest': 1,
          'paying': 1,
          'ntheres': 1,
          'good': 1,
          'chance': 1,
          'youll': 1,
          'regret': 1,
          'walk': 1,
          'ngo': 1,
          'right': 1,
          'starts': 1,
          'cheesy': 1,
          '90210': 1,
          'set': 1,
          'future': 1,
          'world': 1,
          'buenos': 1,
          'aires': 1,
          'nhere': 1,
          'meet': 1,
          'group': 1,
          'horrendously': 1,
          'actors': 1,
          'actresses': 1,
          'playing': 1,
          'obnoxious': 1,
          'easyto': 1,
          'despise': 1,
          'withapassion': 1,
          'triangles': 1,
          'rectangles': 1,
          'hexagons': 1,
          'screwing': 1,
          'life': 1,
          'nbefore': 1,
          'join': 1,
          'military': 1,
          'primarily': 1,
          'youngsters': 1,
          'joined': 1,
          'train': 1,
          'strut': 1,
          'around': 1,
          'nude': 1,
          'reason': 1,
          'whatsoever': 1,
          'nafter': 1,
          'making': 1,
          'scream': 1,
          'start': 1,
          'fighting': 1,
          'big': 1,
          'look': 1,
          'nice': 1,
          'design': 1,
          'fights': 1,
          'boring': 1,
          'since': 1,
          'dead': 1,
          'anyway': 1,
          'die': 1,
          'n': 1,
          'cares': 1,
          'ends': 1,
          'runs': 1,
          'cars': 1,
          'vomits': 1,
          'pavement': 1,
          'attempts': 1,
          'drive': 1,
          'home': 1,
          'cant': 1,
          'think': 1,
          'straight': 1,
          'pay': 1,
          'attention': 1,
          'road': 1,
          'many': 1,
          'ugly': 1,
          'car': 1,
          'wrecks': 1,
          'nyou': 1,
          'remember': 1,
          'kicked': 1,
          'sorry': 1,
          'butt': 1,
          'nstarship': 1,
          'drama': 1,
          'war': 1,
          'comedy': 1,
          'satire': 1,
          'parody': 1,
          'succeeds': 1,
          'horrible': 1,
          'nterrible': 1,
          'ngutwrenchingly': 1,
          'wanted': 1,
          'run': 1,
          'every': 1,
          'minute': 1,
          'paid': 1,
          'owed': 1,
          'others': 1,
          'stayed': 1,
          'never': 1,
          'nfrequently': 1,
          'impossible': 1,
          'worse': 1,
          'acted': 1,
          'directed': 1,
          'basically': 1,
          'mental': 1,
          'maturity': 1,
          'level': 1,
          'willy': 1,
          '4': 1,
          'threeyearolds': 1,
          'enjoy': 1,
          'nexcept': 1,
          'ridiculously': 1,
          'gratuitous': 1,
          'blood': 1,
          'gore': 1,
          'pointless': 1,
          'nudity': 1,
          'nits': 1,
          'little': 1,
          'definitely': 1,
          'ndont': 1,
          'nverhoevens': 1,
          'streak': 1,
          'going': 1,
          'nhis': 1,
          'last': 1,
          'showgirls': 1,
          'nhe': 1,
          'seems': 1,
          'trying': 1,
          'get': 1,
          'finally': 1,
          'stop': 1,
          'coming': 1,
          'nshowgirls': 1,
          'failure': 1,
          'appears': 1,
          'lucky': 1,
          'make': 1,
          'budget': 1,
          'grosswise': 1,
          'nis': 1,
          'ntroopers': 1,
          'four': 1,
          'five': 1,
          'lines': 1,
          'dialougeshort': 1,
          'humorous': 1,
          'actually': 1,
          'funny': 1,
          'mostly': 1,
          'ncommercials': 1,
          'pop': 1,
          'throughout': 1,
          'story': 1,
          'promoting': 1,
          'joys': 1,
          'joining': 1,
          'adds': 1,
          'entertainment': 1,
          '59': 1,
          'minutes': 1,
          'miserable': 1,
          'nim': 1,
          'totally': 1,
          'confused': 1,
          'way': 1,
          'enjoying': 1,
          'admit': 1,
          'youre': 1,
          'willing': 1,
          'put': 1,
          'decide': 1,
          'hate': 1,
          'anyone': 1,
          'hey': 1,
          'nfeel': 1,
          'give': 1,
          'shot': 1,
          'saving': 1,
          'souls': 1,
          'guess': 1,
          'nalien': 1,
          'comes': 1,
          'november': 1,
          '26th': 1,
          'already': 1,
          'read': 1,
          'script': 1,
          'assure': 1,
          'blow': 1,
          'pretty': 1,
          'much': 1,
          'nthough': 1,
          'opinion': 1,
          'reasonably': 1,
          'split': 1,
          'difficult': 1,
          'find': 1,
          'someone': 1,
          'wont': 1,
          'theyve': 1,
          'intense': 1,
          'least': 1,
          'warfare': 1,
          'thats': 1,
          'played': 1,
          'intelligently': 1,
          'seriously': 1,
          'nplease': 1,
          'avoid': 1,
          'nneg': 1}),
 Counter({'wedding': 9,
          'film': 7,
          'singer': 6,
          '80s': 5,
          'sandler': 4,
          'one': 4,
          'julia': 4,
          'nhes': 3,
          'plot': 3,
          'nthe': 3,
          'nice': 3,
          'best': 3,
          'man': 3,
          'adam': 2,
          'nostalgia': 2,
          'nadam': 2,
          'guy': 2,
          'robbie': 2,
          'reception': 2,
          'hall': 2,
          'classic': 2,
          'leaves': 2,
          'glenn': 2,
          'love': 2,
          'attempts': 2,
          'nas': 2,
          'last': 2,
          'songs': 2,
          'result': 2,
          'get': 2,
          'see': 2,
          'nwhile': 2,
          'least': 2,
          'rival': 2,
          'hand': 2,
          'simply': 2,
          'hes': 2,
          'work': 2,
          'actually': 2,
          'turns': 1,
          'charm': 1,
          'latest': 1,
          'romantic': 1,
          'comedy': 1,
          'nunfortunately': 1,
          'also': 1,
          'effect': 1,
          'softening': 1,
          'edge': 1,
          'nowhere': 1,
          'near': 1,
          'peak': 1,
          'happy': 1,
          'gilmore': 1,
          'much': 1,
          'certainly': 1,
          'helped': 1,
          'rather': 1,
          'frail': 1,
          'year': 1,
          '1985': 1,
          'letting': 1,
          'whole': 1,
          'obsess': 1,
          'titular': 1,
          'entertains': 1,
          'local': 1,
          'belting': 1,
          'interpretations': 1,
          'hits': 1,
          'nrobbies': 1,
          'life': 1,
          'thrown': 1,
          'turmoil': 1,
          'fiancee': 1,
          'linda': 1,
          'angela': 1,
          'featherstone': 1,
          'altar': 1,
          'nhowever': 1,
          'things': 1,
          'looking': 1,
          'meets': 1,
          'drew': 1,
          'barrymore': 1,
          'waitress': 1,
          'nshes': 1,
          'perfect': 1,
          'woman': 1,
          'small': 1,
          'flaw': 1,
          'shes': 1,
          'engaged': 1,
          'married': 1,
          'slick': 1,
          'junk': 1,
          'bond': 1,
          'king': 1,
          'matthew': 1,
          'glave': 1,
          'nso': 1,
          'deals': 1,
          'slow': 1,
          'realization': 1,
          'stop': 1,
          'far': 1,
          'plots': 1,
          'go': 1,
          'pretty': 1,
          'thin': 1,
          'tired': 1,
          'nto': 1,
          'fill': 1,
          'gaps': 1,
          'delivers': 1,
          'heaping': 1,
          'spoonfuls': 1,
          '1980s': 1,
          'nfrom': 1,
          'boy': 1,
          'george': 1,
          'michael': 1,
          'jackson': 1,
          'miami': 1,
          'vice': 1,
          'dallas': 1,
          'first': 1,
          'cds': 1,
          'rubiks': 1,
          'cubes': 1,
          'revels': 1,
          'minutiae': 1,
          'nand': 1,
          'theres': 1,
          'music': 1,
          'nlearning': 1,
          'lesson': 1,
          'successful': 1,
          'soundtracks': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'romy': 1,
          'micheles': 1,
          'high': 1,
          'school': 1,
          'reunion': 1,
          'packs': 1,
          'running': 1,
          'time': 1,
          'allow': 1,
          'maybe': 1,
          'lyric': 1,
          'half': 1,
          'almost': 1,
          'bright': 1,
          'gleam': 1,
          'record': 1,
          'executives': 1,
          'eyes': 1,
          'vols': 1,
          'n2': 1,
          '3': 1,
          '4': 1,
          'nonstop': 1,
          'riffs': 1,
          'incredibly': 1,
          'tiring': 1,
          'distract': 1,
          'nat': 1,
          'years': 1,
          'friends': 1,
          'stirred': 1,
          'standard': 1,
          'keep': 1,
          'true': 1,
          'marrying': 1,
          'someone': 1,
          'else': 1,
          'making': 1,
          'person': 1,
          'nhere': 1,
          'lowly': 1,
          'rat': 1,
          'never': 1,
          'saw': 1,
          'nbarrymore': 1,
          'charming': 1,
          'nwhich': 1,
          'us': 1,
          'persona': 1,
          'fades': 1,
          'little': 1,
          'breakdown': 1,
          'stage': 1,
          'nwhen': 1,
          'full': 1,
          'niceguy': 1,
          'mode': 1,
          'pathetic': 1,
          'endearing': 1,
          'boasts': 1,
          'several': 1,
          'cameos': 1,
          'notably': 1,
          'steve': 1,
          'buscemi': 1,
          'jon': 1,
          'lovitz': 1,
          'nbut': 1,
          'none': 1,
          'well': 1,
          'nbuscemis': 1,
          'role': 1,
          'drunken': 1,
          'fails': 1,
          'humorous': 1,
          'nlovitz': 1,
          'makes': 1,
          'long': 1,
          'good': 1,
          'old': 1,
          'days': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'funny': 1,
          'cameo': 1,
          'appeal': 1,
          'guest': 1,
          'appearance': 1,
          'rocker': 1,
          'films': 1,
          'finale': 1,
          'surprisingly': 1,
          'plotrelated': 1,
          'scenes': 1,
          'works': 1,
          'still': 1,
          'become': 1,
          'dependable': 1,
          'leading': 1,
          'change': 1,
          'image': 1,
          'end': 1,
          'net': 1,
          'gain': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'nthe': 8,
          'blair': 5,
          'witch': 5,
          'lost': 5,
          'like': 4,
          'lot': 4,
          'get': 4,
          'woods': 4,
          'project': 3,
          'three': 3,
          'students': 3,
          'footage': 3,
          'nalthough': 3,
          'shouting': 3,
          'fact': 3,
          'one': 2,
          'biggest': 2,
          'nhowever': 2,
          'although': 2,
          'made': 2,
          'good': 2,
          'camcorder': 2,
          'events': 2,
          'quickly': 2,
          'interesting': 2,
          'actors': 2,
          'still': 2,
          'sound': 2,
          'eventually': 2,
          'matches': 2,
          'nthere': 2,
          'back': 2,
          'audience': 2,
          'parts': 2,
          'minutes': 2,
          'scares': 2,
          'sometimes': 2,
          'well': 2,
          'ni': 2,
          'really': 2,
          'fear': 2,
          'heather': 2,
          'also': 2,
          'could': 2,
          'idea': 2,
          'deliver': 2,
          'scenes': 2,
          'arriving': 1,
          'barrage': 1,
          'hype': 1,
          'box': 1,
          'office': 1,
          'success': 1,
          'year': 1,
          'golden': 1,
          'child': 1,
          'money': 1,
          'ndonahue': 1,
          'williams': 1,
          'leonard': 1,
          'play': 1,
          'set': 1,
          'make': 1,
          'documentary': 1,
          'myth': 1,
          'recorded': 1,
          'means': 1,
          'grainy': 1,
          'woozy': 1,
          'camera': 1,
          'angles': 1,
          'start': 1,
          'normal': 1,
          'weird': 1,
          'pretty': 1,
          'threesome': 1,
          'argue': 1,
          'journey': 1,
          'goes': 1,
          'premise': 1,
          'amounts': 1,
          'nothing': 1,
          'missed': 1,
          'opportunity': 1,
          'mistake': 1,
          'makes': 1,
          'let': 1,
          'mediocre': 1,
          'chance': 1,
          'improvise': 1,
          'nmost': 1,
          'dialogue': 1,
          'adlibbed': 1,
          'manages': 1,
          'poor': 1,
          'bmovie': 1,
          'script': 1,
          'degenerates': 1,
          'fword': 1,
          'included': 1,
          'breaks': 1,
          'arguments': 1,
          'creepy': 1,
          'occur': 1,
          'swearing': 1,
          'gets': 1,
          'tiresome': 1,
          'nif': 1,
          'wanted': 1,
          'see': 1,
          'people': 1,
          'shout': 1,
          'swear': 1,
          'id': 1,
          'go': 1,
          'scout': 1,
          'camp': 1,
          'nbut': 1,
          'meant': 1,
          'entertainment': 1,
          'factor': 1,
          'im': 1,
          'quite': 1,
          'sure': 1,
          'supernatural': 1,
          'actually': 1,
          'especially': 1,
          'close': 1,
          'attention': 1,
          'paid': 1,
          'story': 1,
          'developing': 1,
          'first': 1,
          'twenty': 1,
          'nwith': 1,
          'music': 1,
          'budget': 1,
          'work': 1,
          'depend': 1,
          'natural': 1,
          'psychological': 1,
          'delivered': 1,
          'never': 1,
          'felt': 1,
          'truly': 1,
          'scared': 1,
          'part': 1,
          'small': 1,
          'sense': 1,
          'underlying': 1,
          'throughout': 1,
          'irritating': 1,
          'reverts': 1,
          'saying': 1,
          'f': 1,
          'ck': 1,
          'na': 1,
          'mike': 1,
          'giggling': 1,
          'loony': 1,
          'ntheres': 1,
          'niggling': 1,
          'student': 1,
          'filmmakers': 1,
          'stupid': 1,
          'things': 1,
          'main': 1,
          'problem': 1,
          'even': 1,
          'though': 1,
          'hapless': 1,
          'bunch': 1,
          'killed': 1,
          'moment': 1,
          'hopelessly': 1,
          'insists': 1,
          'filming': 1,
          'gives': 1,
          'half': 1,
          'hearted': 1,
          'reason': 1,
          'want': 1,
          'isnt': 1,
          'convincing': 1,
          'nalso': 1,
          'survive': 1,
          'following': 1,
          'large': 1,
          'river': 1,
          'flowing': 1,
          'civilisation': 1,
          'amateur': 1,
          'obviously': 1,
          'staged': 1,
          'heathers': 1,
          'apology': 1,
          'major': 1,
          'end': 1,
          'fails': 1,
          'suppose': 1,
          'youve': 1,
          'camping': 1,
          'may': 1,
          'chills': 1,
          'use': 1,
          '99': 1,
          'paying': 1,
          'havent': 1,
          'napart': 1,
          'final': 1,
          'mind': 1,
          'boggingly': 1,
          'unscary': 1,
          'hideously': 1,
          'dull': 1,
          'spook': 1,
          'short': 1,
          'far': 1,
          'horror': 1,
          'movie': 1,
          'probably': 1,
          'achieve': 1,
          'amount': 1,
          'provide': 1,
          'executed': 1,
          'enough': 1,
          'fun': 1,
          'scary': 1,
          'cinema': 1,
          'experience': 1,
          'nits': 1,
          'worrying': 1,
          'website': 1,
          'http': 1,
          'www': 1,
          'blairwitch': 1,
          'com': 1,
          'n': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'film': 8,
          'generals': 6,
          'good': 6,
          'get': 6,
          'scene': 5,
          'west': 5,
          'story': 5,
          'movie': 5,
          'even': 5,
          'detail': 4,
          'whole': 4,
          'daughter': 4,
          'little': 4,
          'brenner': 4,
          'time': 4,
          'ni': 4,
          'army': 3,
          'action': 3,
          'salute': 3,
          'rendered': 3,
          'work': 3,
          'officer': 3,
          'comes': 3,
          'man': 3,
          'beginning': 3,
          'see': 3,
          'hard': 3,
          'like': 3,
          'one': 3,
          'arms': 3,
          'sunhill': 3,
          'entire': 3,
          'theme': 3,
          'ever': 3,
          'couple': 3,
          'information': 3,
          'characters': 3,
          'colonel': 3,
          'seem': 3,
          'utilizes': 2,
          'known': 2,
          'field': 2,
          'covers': 2,
          'saluting': 2,
          'section': 2,
          'military': 2,
          'presence': 2,
          'superior': 2,
          'six': 2,
          'paces': 2,
          'nin': 2,
          'nit': 2,
          'looked': 2,
          'wasnt': 2,
          'right': 2,
          'go': 2,
          'style': 2,
          'fact': 2,
          'would': 2,
          'serve': 2,
          'rest': 2,
          'director': 2,
          'simon': 2,
          'atmosphere': 2,
          'flash': 2,
          'characterization': 2,
          'also': 2,
          'nwhat': 2,
          'isnt': 2,
          'minutes': 2,
          'john': 2,
          'travolta': 2,
          'investigation': 2,
          'illegal': 2,
          'buyer': 2,
          'hes': 2,
          'later': 2,
          'say': 2,
          'nbrenner': 2,
          'new': 2,
          'campbell': 2,
          'nhe': 2,
          'investigator': 2,
          'stowe': 2,
          'murder': 2,
          'want': 2,
          'gives': 2,
          'nno': 2,
          'us': 2,
          'music': 2,
          'doesnt': 2,
          'attention': 2,
          'ninstead': 2,
          'another': 2,
          'ive': 2,
          'across': 2,
          'james': 2,
          'actors': 2,
          'scenes': 2,
          'na': 2,
          'wests': 2,
          'playing': 2,
          'kind': 2,
          'based': 2,
          'brennan': 2,
          'letting': 2,
          'car': 2,
          'drive': 2,
          'u': 1,
          'number': 1,
          'books': 1,
          'manuals': 1,
          'stipulate': 1,
          'specific': 1,
          'way': 1,
          'almost': 1,
          'every': 1,
          'imaginable': 1,
          'must': 1,
          'done': 1,
          'none': 1,
          'particular': 1,
          'manual': 1,
          'fm': 1,
          '225': 1,
          'among': 1,
          'things': 1,
          'practice': 1,
          'nunder': 1,
          'subsection': 1,
          'highestranking': 1,
          'individual': 1,
          'present': 1,
          'within': 1,
          'dropped': 1,
          'passes': 1,
          'event': 1,
          'woman': 1,
          'charge': 1,
          'rather': 1,
          'group': 1,
          'nalmost': 1,
          'motorcade': 1,
          'passing': 1,
          'neveryone': 1,
          'salutes': 1,
          'impressive': 1,
          'nthat': 1,
          'bit': 1,
          'showed': 1,
          'someone': 1,
          'either': 1,
          'didnt': 1,
          'appropriate': 1,
          'research': 1,
          'made': 1,
          'conscious': 1,
          'decision': 1,
          'substance': 1,
          'metaphor': 1,
          'picture': 1,
          'seems': 1,
          'tried': 1,
          'craft': 1,
          'forgot': 1,
          'coherent': 1,
          'crucial': 1,
          'results': 1,
          'looks': 1,
          'first': 1,
          'fifteen': 1,
          'example': 1,
          'npaul': 1,
          'agent': 1,
          'armys': 1,
          'criminal': 1,
          'division': 1,
          'undercover': 1,
          'georgia': 1,
          'base': 1,
          'investigate': 1,
          'sale': 1,
          'nprior': 1,
          'transaction': 1,
          'gets': 1,
          'whiff': 1,
          'unscrupulous': 1,
          'supply': 1,
          'sergeant': 1,
          'supposed': 1,
          'night': 1,
          'attempts': 1,
          'kill': 1,
          'shooting': 1,
          'houseboat': 1,
          'living': 1,
          'nso': 1,
          'ensues': 1,
          'cat': 1,
          'mouse': 1,
          'sequence': 1,
          'ends': 1,
          'certain': 1,
          'raiders': 1,
          'lost': 1,
          'ark': 1,
          'well': 1,
          'involves': 1,
          'propellers': 1,
          'receives': 1,
          'orders': 1,
          'commanding': 1,
          'captain': 1,
          'elisabeth': 1,
          'leslie': 1,
          'stefanson': 1,
          'found': 1,
          'naked': 1,
          'bound': 1,
          'dead': 1,
          'bases': 1,
          'training': 1,
          'ranges': 1,
          'teamed': 1,
          'rape': 1,
          'sarah': 1,
          'madeleine': 1,
          'uncover': 1,
          'truth': 1,
          'peculiarly': 1,
          'gruesome': 1,
          'know': 1,
          'necessary': 1,
          'insight': 1,
          'cocky': 1,
          'ndoes': 1,
          'subplot': 1,
          'turn': 1,
          'add': 1,
          'extra': 1,
          'running': 1,
          'answer': 1,
          'cool': 1,
          'presents': 1,
          'imagery': 1,
          'deep': 1,
          'south': 1,
          'thick': 1,
          'trees': 1,
          'dirt': 1,
          'roads': 1,
          'sultry': 1,
          'colors': 1,
          'water': 1,
          'backed': 1,
          'bayouesque': 1,
          'nnice': 1,
          'immersion': 1,
          'setting': 1,
          'soon': 1,
          'matter': 1,
          'films': 1,
          'plot': 1,
          'shifts': 1,
          'mood': 1,
          'paid': 1,
          'location': 1,
          'altered': 1,
          'fit': 1,
          'generic': 1,
          'thriller': 1,
          'ndid': 1,
          'filmmakers': 1,
          'start': 1,
          'thinking': 1,
          'making': 1,
          'different': 1,
          'creating': 1,
          'cohesive': 1,
          'atmospheric': 1,
          'distraction': 1,
          'followed': 1,
          'thought': 1,
          'show': 1,
          'countryside': 1,
          'examples': 1,
          'illustrate': 1,
          'inconsistency': 1,
          'problem': 1,
          'nas': 1,
          'already': 1,
          'mentioned': 1,
          'jibe': 1,
          'adds': 1,
          'difficulty': 1,
          'respect': 1,
          'authority': 1,
          'suddenly': 1,
          'snaps': 1,
          'general': 1,
          'cromwell': 1,
          'utters': 1,
          'corniest': 1,
          'yes': 1,
          'sir': 1,
          'heard': 1,
          'delivers': 1,
          'emotioncharged': 1,
          'monologue': 1,
          'catch': 1,
          'person': 1,
          'killed': 1,
          'though': 1,
          'totally': 1,
          'flippant': 1,
          'thing': 1,
          'previous': 1,
          'nsunhill': 1,
          'initially': 1,
          'professional': 1,
          'blatantly': 1,
          'methods': 1,
          'obtain': 1,
          'revels': 1,
          'ingenuity': 1,
          'nboth': 1,
          'protagonists': 1,
          'behind': 1,
          'personalities': 1,
          'place': 1,
          'cases': 1,
          'simply': 1,
          'unappealing': 1,
          'could': 1,
          'imagine': 1,
          'filming': 1,
          'shoot': 1,
          'take': 1,
          'aside': 1,
          'tell': 1,
          'lets': 1,
          'although': 1,
          'normally': 1,
          'overact': 1,
          'nan': 1,
          'worse': 1,
          'offender': 1,
          'clarence': 1,
          'williams': 1,
          'iii': 1,
          'aide': 1,
          'fowler': 1,
          'swear': 1,
          'guy': 1,
          'says': 1,
          'lines': 1,
          'position': 1,
          'far': 1,
          'cry': 1,
          'days': 1,
          'linc': 1,
          'mod': 1,
          'squad': 1,
          'cant': 1,
          'help': 1,
          'think': 1,
          'acting': 1,
          'direction': 1,
          'side': 1,
          'including': 1,
          'point': 1,
          'psychologist': 1,
          'beasly': 1,
          'young': 1,
          'female': 1,
          'private': 1,
          'ariyan': 1,
          'johnson': 1,
          'make': 1,
          'nearly': 1,
          'impossible': 1,
          'bear': 1,
          'two': 1,
          'escaped': 1,
          'influence': 1,
          'woods': 1,
          'provides': 1,
          'performance': 1,
          'moore': 1,
          'elisabeths': 1,
          'mentor': 1,
          'psychological': 1,
          'operations': 1,
          'unit': 1,
          'timothy': 1,
          'hutton': 1,
          'kent': 1,
          'police': 1,
          'nwoods': 1,
          'relishes': 1,
          'role': 1,
          'whose': 1,
          'job': 1,
          'peoples': 1,
          'minds': 1,
          'without': 1,
          'taking': 1,
          'top': 1,
          'nhutton': 1,
          'hangs': 1,
          'around': 1,
          'least': 1,
          'overacting': 1,
          'havent': 1,
          'read': 1,
          'nelson': 1,
          'demille': 1,
          'novel': 1,
          'ill': 1,
          'bet': 1,
          'dollars': 1,
          'better': 1,
          'book': 1,
          'form': 1,
          'version': 1,
          'got': 1,
          'come': 1,
          'nothing': 1,
          'except': 1,
          'fill': 1,
          'space': 1,
          'provide': 1,
          'bits': 1,
          'neither': 1,
          'mean': 1,
          'anything': 1,
          'terms': 1,
          'advancing': 1,
          'reveal': 1,
          'significance': 1,
          'finished': 1,
          'nevery': 1,
          'presented': 1,
          'aspect': 1,
          'case': 1,
          'momentous': 1,
          'discovery': 1,
          'used': 1,
          'investigators': 1,
          'conclusions': 1,
          'drawn': 1,
          'tremendous': 1,
          'leaps': 1,
          'faith': 1,
          'wonder': 1,
          'successful': 1,
          'investigations': 1,
          'facts': 1,
          'lucky': 1,
          'guesses': 1,
          'instead': 1,
          'saved': 1,
          'bringing': 1,
          'play': 1,
          'game': 1,
          'twenty': 1,
          'questions': 1,
          'suspects': 1,
          'guess': 1,
          'killer': 1,
          'nwouldve': 1,
          'half': 1,
          'hour': 1,
          'finishes': 1,
          'sort': 1,
          'bookend': 1,
          'featuring': 1,
          'southern': 1,
          'scenery': 1,
          'nliterally': 1,
          'closing': 1,
          'credits': 1,
          'nthey': 1,
          'happy': 1,
          'nmaybe': 1,
          'driving': 1,
          'away': 1,
          'nneg': 1}),
 Counter({'daughter': 6,
          'nthe': 6,
          'generals': 5,
          'movie': 5,
          'thriller': 3,
          'plot': 3,
          'predictable': 3,
          'travolta': 3,
          'officer': 3,
          'nin': 2,
          'case': 2,
          'certain': 2,
          'nbut': 2,
          'like': 2,
          'involving': 2,
          'enough': 2,
          'one': 2,
          'moment': 2,
          'brenner': 2,
          'another': 2,
          'female': 2,
          'nit': 2,
          'james': 2,
          'cromwell': 2,
          'begin': 2,
          'nwith': 2,
          'stowe': 2,
          'woods': 2,
          'commanding': 2,
          'secrets': 2,
          'comes': 2,
          'many': 2,
          'scenes': 2,
          'cast': 2,
          'west': 2,
          'action': 2,
          'show': 2,
          'could': 2,
          'nfrom': 2,
          'doesnt': 2,
          'much': 2,
          'dont': 1,
          'appreciate': 1,
          'manipulates': 1,
          'viewer': 1,
          'thinking': 1,
          'interesting': 1,
          'fact': 1,
          'ludicrous': 1,
          'capable': 1,
          'intriguing': 1,
          'point': 1,
          'juncture': 1,
          'story': 1,
          'begins': 1,
          'fall': 1,
          'apart': 1,
          'crumbling': 1,
          'cookie': 1,
          'nthis': 1,
          'summer': 1,
          'sporadically': 1,
          'unfortunately': 1,
          'compensate': 1,
          'detailed': 1,
          'flaws': 1,
          'nget': 1,
          'past': 1,
          'early': 1,
          'john': 1,
          'exercises': 1,
          'southern': 1,
          'accent': 1,
          'youre': 1,
          'likely': 1,
          'survive': 1,
          'entire': 1,
          'ntravolta': 1,
          'plays': 1,
          'criminal': 1,
          'investigations': 1,
          'divisions': 1,
          'paul': 1,
          'whos': 1,
          'working': 1,
          'undercover': 1,
          'military': 1,
          'base': 1,
          'situation': 1,
          'arises': 1,
          'apparent': 1,
          'rape': 1,
          'murder': 1,
          'young': 1,
          'leslie': 1,
          'stefanson': 1,
          'turns': 1,
          'victim': 1,
          'general': 1,
          'joe': 1,
          'campbell': 1,
          'nlet': 1,
          'investigation': 1,
          'assistance': 1,
          'fellow': 1,
          'cid': 1,
          'investigator': 1,
          'sarah': 1,
          'sunhill': 1,
          'played': 1,
          'rather': 1,
          'onthesidelines': 1,
          'madeleine': 1,
          'uncovers': 1,
          'appears': 1,
          'intricate': 1,
          'bizarre': 1,
          'homicide': 1,
          'nthings': 1,
          'get': 1,
          'marginally': 1,
          'engrossing': 1,
          'meet': 1,
          'colonel': 1,
          'moore': 1,
          'former': 1,
          'deceased': 1,
          'sleeve': 1,
          'nwoods': 1,
          'submits': 1,
          'scenestealing': 1,
          'performance': 1,
          'oozes': 1,
          'authority': 1,
          'surrounded': 1,
          'clouds': 1,
          'smoke': 1,
          'emitted': 1,
          'cigar': 1,
          'echoes': 1,
          'supporting': 1,
          'role': 1,
          'true': 1,
          'crime': 1,
          'duked': 1,
          'clint': 1,
          'eastwood': 1,
          'enjoyably': 1,
          'profane': 1,
          'verbal': 1,
          'exchanges': 1,
          'makes': 1,
          'every': 1,
          'believable': 1,
          'nhere': 1,
          'though': 1,
          'intense': 1,
          'dialogue': 1,
          'care': 1,
          'confrontations': 1,
          'two': 1,
          'send': 1,
          'mindful': 1,
          'knowing': 1,
          'glares': 1,
          'across': 1,
          'room': 1,
          'nthere': 1,
          'veteran': 1,
          'performs': 1,
          'splendidly': 1,
          'pressure': 1,
          'circumstances': 1,
          'tie': 1,
          'meetings': 1,
          'together': 1,
          'difficult': 1,
          'absorb': 1,
          'ndirector': 1,
          'simon': 1,
          'con': 1,
          'air': 1,
          'shows': 1,
          'watchful': 1,
          'eye': 1,
          'delivering': 1,
          'stylish': 1,
          'looking': 1,
          'fails': 1,
          'miserably': 1,
          'intellectual': 1,
          'part': 1,
          'often': 1,
          'unexciting': 1,
          'mess': 1,
          'help': 1,
          'matters': 1,
          'virtually': 1,
          'actionless': 1,
          'dragging': 1,
          'heels': 1,
          'way': 1,
          'mindnumbing': 1,
          'snails': 1,
          'pace': 1,
          'na': 1,
          'brief': 1,
          'marvelously': 1,
          'handled': 1,
          'editing': 1,
          'department': 1,
          'delivered': 1,
          'proficient': 1,
          'package': 1,
          'director': 1,
          'great': 1,
          'job': 1,
          'staging': 1,
          'explosions': 1,
          'miraculous': 1,
          'stunts': 1,
          'suggest': 1,
          'stick': 1,
          'mindless': 1,
          'riproaring': 1,
          'features': 1,
          'attempt': 1,
          'avoid': 1,
          'future': 1,
          'projects': 1,
          'nstill': 1,
          'certainly': 1,
          'without': 1,
          'merits': 1,
          'acting': 1,
          'good': 1,
          'majority': 1,
          'experienced': 1,
          'performances': 1,
          'range': 1,
          'electric': 1,
          'stiffasaboard': 1,
          'real': 1,
          'talents': 1,
          'nmadeleine': 1,
          'manages': 1,
          'hold': 1,
          'lead': 1,
          'actionthriller': 1,
          'pull': 1,
          'sufficiently': 1,
          'none': 1,
          'problems': 1,
          'execution': 1,
          'minute': 1,
          'doubts': 1,
          'identity': 1,
          'killer': 1,
          'question': 1,
          'script': 1,
          'even': 1,
          'unwillingly': 1,
          'points': 1,
          'us': 1,
          'using': 1,
          'familiar': 1,
          'techniques': 1,
          'hide': 1,
          'guilt': 1,
          'unmasking': 1,
          'toward': 1,
          'end': 1,
          'fairness': 1,
          'weve': 1,
          'seen': 1,
          'devices': 1,
          'used': 1,
          'put': 1,
          'greater': 1,
          'effect': 1,
          'films': 1,
          'behind': 1,
          'girls': 1,
          'mysterious': 1,
          'death': 1,
          'explained': 1,
          'gradually': 1,
          'resolution': 1,
          'tunneled': 1,
          'malarkey': 1,
          'feels': 1,
          'unnecessary': 1,
          'surprisingly': 1,
          'silly': 1,
          'terrible': 1,
          'sustain': 1,
          'viewers': 1,
          'attention': 1,
          'span': 1,
          'period': 1,
          'time': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'nthe': 9,
          'one': 6,
          'characters': 6,
          'macdonald': 6,
          'jokes': 6,
          'norm': 5,
          'like': 4,
          'sam': 4,
          'mitch': 4,
          'dont': 4,
          'nand': 4,
          'nbut': 3,
          'critic': 3,
          'plot': 3,
          'n': 3,
          'fan': 3,
          'comedy': 3,
          'rich': 3,
          'businessman': 3,
          'care': 3,
          'crude': 3,
          'ntheres': 3,
          'core': 3,
          'get': 3,
          'every': 3,
          'opera': 2,
          'goes': 2,
          'thinking': 2,
          'performance': 2,
          'nthis': 2,
          'laughing': 2,
          'sketch': 2,
          'nits': 2,
          '50000': 2,
          'doctor': 2,
          'give': 2,
          'father': 2,
          'revenge': 2,
          'played': 2,
          'seems': 2,
          'building': 2,
          'night': 2,
          'new': 2,
          'guy': 2,
          'way': 2,
          'nheres': 2,
          'sex': 2,
          'thats': 2,
          'ni': 2,
          'joke': 2,
          'tells': 2,
          'construction': 2,
          'gambling': 2,
          'says': 2,
          'used': 2,
          'least': 2,
          'isnt': 2,
          'mean': 2,
          'attitude': 2,
          'doesnt': 2,
          'point': 1,
          'staging': 1,
          'completely': 1,
          'wrong': 1,
          'member': 1,
          'crowd': 1,
          'stands': 1,
          'cheers': 1,
          'planned': 1,
          'applauding': 1,
          'efforts': 1,
          'nthats': 1,
          'dirty': 1,
          'work': 1,
          'nutshell': 1,
          'na': 1,
          'different': 1,
          'kind': 1,
          'easily': 1,
          'review': 1,
          'analyzes': 1,
          'structure': 1,
          'acting': 1,
          'ntells': 1,
          'terrible': 1,
          'rolling': 1,
          'floor': 1,
          'plays': 1,
          'hbo': 1,
          'note': 1,
          'concept': 1,
          'nmitch': 1,
          'need': 1,
          'order': 1,
          'bribe': 1,
          'heart': 1,
          'transplant': 1,
          'needy': 1,
          'patients': 1,
          'nrealizing': 1,
          'good': 1,
          'plots': 1,
          'open': 1,
          'hire': 1,
          'business': 1,
          'eventually': 1,
          'running': 1,
          'afoul': 1,
          'christopher': 1,
          'roles': 1,
          'happy': 1,
          'gilmore': 1,
          'veronicas': 1,
          'closet': 1,
          'typcast': 1,
          'role': 1,
          'sends': 1,
          'destroy': 1,
          'learns': 1,
          'home': 1,
          'girlfriends': 1,
          'grandmother': 1,
          'thus': 1,
          'leading': 1,
          'grand': 1,
          'opening': 1,
          'house': 1,
          'nfirst': 1,
          'standard': 1,
          'poor': 1,
          'vs': 1,
          'evil': 1,
          'device': 1,
          'main': 1,
          'character': 1,
          'meets': 1,
          'girl': 1,
          'dreams': 1,
          'along': 1,
          'catch': 1,
          'nnone': 1,
          'sympathetic': 1,
          'ntheyre': 1,
          'selfish': 1,
          'jerks': 1,
          'hurt': 1,
          'attempts': 1,
          'whatever': 1,
          'want': 1,
          'juvenile': 1,
          'appealing': 1,
          'worst': 1,
          'elements': 1,
          'people': 1,
          'prostitutes': 1,
          'homeless': 1,
          'beastiality': 1,
          'anal': 1,
          'even': 1,
          'subplot': 1,
          'developed': 1,
          'make': 1,
          'infidelity': 1,
          'incest': 1,
          'loved': 1,
          'watching': 1,
          'huge': 1,
          'macdonalds': 1,
          'sarcastic': 1,
          'tothepoint': 1,
          'saturday': 1,
          'live': 1,
          'hour': 1,
          'half': 1,
          'nnorm': 1,
          'takes': 1,
          'strips': 1,
          'dry': 1,
          'wit': 1,
          'nlike': 1,
          'scene': 1,
          'friend': 1,
          'learning': 1,
          'ropes': 1,
          'job': 1,
          'foreman': 1,
          'basics': 1,
          'understand': 1,
          'nhow': 1,
          'nby': 1,
          'admiting': 1,
          'lied': 1,
          'resumes': 1,
          'know': 1,
          'thing': 1,
          'surprise': 1,
          'fired': 1,
          'incredibly': 1,
          'meanspirited': 1,
          'whos': 1,
          'loud': 1,
          'obnoxious': 1,
          'addicted': 1,
          'chevy': 1,
          'chase': 1,
          'fathers': 1,
          'condition': 1,
          'saying': 1,
          'man': 1,
          'id': 1,
          'put': 1,
          'lot': 1,
          'money': 1,
          'death': 1,
          'cole': 1,
          'always': 1,
          'dog': 1,
          'spunky': 1,
          'knows': 1,
          'theres': 1,
          'destroying': 1,
          'ponder': 1,
          'actions': 1,
          'would': 1,
          'ruin': 1,
          'lives': 1,
          'residents': 1,
          'bad': 1,
          'executed': 1,
          'set': 1,
          'see': 1,
          'punchline': 1,
          'coming': 1,
          'spot': 1,
          'profanity': 1,
          'could': 1,
          'nat': 1,
          'film': 1,
          'honest': 1,
          'makes': 1,
          'mistake': 1,
          'anything': 1,
          'idiotic': 1,
          'dull': 1,
          'predictable': 1,
          'youre': 1,
          'youll': 1,
          'love': 1,
          'nif': 1,
          'stupid': 1,
          'movies': 1,
          'probably': 1,
          'wont': 1,
          'nso': 1,
          'seeing': 1,
          'tune': 1,
          'mindset': 1,
          'prepare': 1,
          'slew': 1,
          'humor': 1,
          'gay': 1,
          'animal': 1,
          'prison': 1,
          'rape': 1,
          'uncaring': 1,
          'last': 1,
          'chris': 1,
          'farley': 1,
          '8': 1,
          'couldnt': 1,
          'stop': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'nthe': 4,
          'austin': 3,
          'movie': 3,
          'sex': 3,
          'jokes': 3,
          'ni': 3,
          'comic': 3,
          'generation': 3,
          'blah': 3,
          'new': 2,
          'powers': 2,
          'tradition': 2,
          'anything': 2,
          'get': 2,
          'high': 2,
          'humor': 2,
          'sight': 2,
          'gags': 2,
          'nand': 2,
          'go': 2,
          'like': 2,
          'nbut': 2,
          'films': 2,
          'many': 2,
          'least': 2,
          'material': 2,
          'director': 2,
          'us': 2,
          'nothing': 2,
          'continues': 1,
          'begun': 1,
          'eighties': 1,
          'nproduce': 1,
          'something': 1,
          'school': 1,
          'junior': 1,
          'kids': 1,
          'theater': 1,
          'buy': 1,
          'soda': 1,
          'popcorn': 1,
          'senior': 1,
          'citizens': 1,
          'usual': 1,
          'hallmarks': 1,
          'filmmaking': 1,
          'ngross': 1,
          'silly': 1,
          'strong': 1,
          'contender': 1,
          'current': 1,
          'race': 1,
          'cruder': 1,
          'grosser': 1,
          'outrageous': 1,
          'last': 1,
          'nwhat': 1,
          'however': 1,
          'funny': 1,
          'plot': 1,
          'centers': 1,
          'around': 1,
          'return': 1,
          'dr': 1,
          'evil': 1,
          'goes': 1,
          'back': 1,
          'time': 1,
          'steal': 1,
          'mojo': 1,
          'liquid': 1,
          'red': 1,
          'stuff': 1,
          'extracted': 1,
          'austins': 1,
          'pelvis': 1,
          'gives': 1,
          'sexual': 1,
          'prowess': 1,
          'charisma': 1,
          'defeat': 1,
          'enemies': 1,
          'naustin': 1,
          'must': 1,
          'returns': 1,
          'swinging': 1,
          'sixties': 1,
          'free': 1,
          'love': 1,
          'sexy': 1,
          'secret': 1,
          'agents': 1,
          'heyday': 1,
          'almost': 1,
          'avoided': 1,
          'original': 1,
          'premise': 1,
          'sounded': 1,
          'excellent': 1,
          'vehicle': 1,
          'received': 1,
          'good': 1,
          'reviews': 1,
          'wish': 1,
          'stuck': 1,
          'first': 1,
          'impression': 1,
          'nmyers': 1,
          'trying': 1,
          'jerry': 1,
          'lewis': 1,
          'talent': 1,
          'actor': 1,
          'working': 1,
          'much': 1,
          'falls': 1,
          'short': 1,
          'resembling': 1,
          'genius': 1,
          'nthis': 1,
          'tries': 1,
          'carry': 1,
          'day': 1,
          'drinking': 1,
          'distilled': 1,
          'feces': 1,
          'fivehundredpound': 1,
          'fat': 1,
          'mans': 1,
          'butt': 1,
          'crack': 1,
          'barrage': 1,
          'aimed': 1,
          'level': 1,
          'average': 1,
          '15': 1,
          'year': 1,
          'old': 1,
          'nafter': 1,
          'scenes': 1,
          'one': 1,
          'wonder': 1,
          'gross': 1,
          'next': 1,
          'audiences': 1,
          'attention': 1,
          'direction': 1,
          'also': 1,
          'helps': 1,
          'achieve': 1,
          'low': 1,
          'point': 1,
          'cinematic': 1,
          'nfor': 1,
          'part': 1,
          'felt': 1,
          'watching': 1,
          'saturday': 1,
          'morning': 1,
          'chalderns': 1,
          'live': 1,
          'action': 1,
          'tv': 1,
          'show': 1,
          'nthere': 1,
          'sense': 1,
          'timing': 1,
          'subtlety': 1,
          'throws': 1,
          'giving': 1,
          'except': 1,
          'hope': 1,
          'anyone': 1,
          'camera': 1,
          'could': 1,
          'sure': 1,
          'appeal': 1,
          '22': 1,
          'crowd': 1,
          'ones': 1,
          'yet': 1,
          'discover': 1,
          'literacy': 1,
          'ncertainly': 1,
          'directed': 1,
          'towards': 1,
          'prefers': 1,
          'everything': 1,
          'described': 1,
          'face': 1,
          'kick': 1,
          'teeth': 1,
          'take': 1,
          'prisoners': 1,
          'actionverb': 1,
          'nif': 1,
          'see': 1,
          'find': 1,
          'youre': 1,
          'laughing': 1,
          'wrong': 1,
          'nit': 1,
          'means': 1,
          'grew': 1,
          'since': 1,
          'seventh': 1,
          'grade': 1,
          'nneg': 1}),
 Counter({'nthe': 10,
          '54': 7,
          'like': 7,
          'film': 5,
          'studio': 4,
          'nhe': 4,
          'rubell': 4,
          'n': 3,
          'seems': 3,
          'new': 3,
          'performance': 3,
          'half': 3,
          'would': 2,
          'brought': 2,
          'almost': 2,
          'shane': 2,
          'phillippe': 2,
          'york': 2,
          'attractive': 2,
          'steve': 2,
          'mike': 2,
          'myers': 2,
          'becomes': 2,
          'nyou': 2,
          'isnt': 2,
          'nothing': 2,
          'perpetually': 2,
          'show': 2,
          'much': 2,
          'audience': 2,
          'people': 2,
          'two': 2,
          'introduced': 2,
          'sure': 2,
          'quarter': 2,
          'eighty': 2,
          'year': 2,
          'old': 2,
          'high': 2,
          'john': 2,
          'best': 2,
          'meyer': 2,
          'cambell': 2,
          'give': 2,
          'added': 2,
          'subplots': 2,
          'forced': 2,
          'flowed': 2,
          'sum': 1,
          'entire': 1,
          'one': 1,
          'sentence': 1,
          'watch': 1,
          'vh1': 1,
          'documentary': 1,
          'instead': 1,
          'someone': 1,
          'william': 1,
          'faulkner': 1,
          '1978': 1,
          'got': 1,
          'really': 1,
          'drunk': 1,
          'told': 1,
          'write': 1,
          'dumbed': 1,
          'released': 1,
          'public': 1,
          'na': 1,
          'sloppy': 1,
          'version': 1,
          'stream': 1,
          'conciousness': 1,
          'spirals': 1,
          'oblivion': 1,
          'illusion': 1,
          'sex': 1,
          'drugs': 1,
          'disco': 1,
          'narrator': 1,
          'oshae': 1,
          'ryan': 1,
          'works': 1,
          'grease': 1,
          'monkey': 1,
          'jersey': 1,
          'course': 1,
          'whim': 1,
          'decides': 1,
          'go': 1,
          'try': 1,
          'get': 1,
          'nphillippe': 1,
          'gives': 1,
          'passable': 1,
          'could': 1,
          'made': 1,
          'young': 1,
          'actor': 1,
          'six': 1,
          'pack': 1,
          'stomach': 1,
          'let': 1,
          'rubbell': 1,
          'infamous': 1,
          'coowner': 1,
          'eventually': 1,
          'bus': 1,
          'boy': 1,
          'bartender': 1,
          'expected': 1,
          'didnt': 1,
          'nthere': 1,
          'builds': 1,
          'climax': 1,
          'apt': 1,
          'word': 1,
          'lands': 1,
          'thud': 1,
          'glitz': 1,
          'club': 1,
          'semiclothed': 1,
          'patrons': 1,
          'used': 1,
          'attempt': 1,
          'glamour': 1,
          'nfor': 1,
          'target': 1,
          'college': 1,
          'age': 1,
          'early': 1,
          'thirties': 1,
          'attempts': 1,
          'celebrities': 1,
          'mixing': 1,
          'normal': 1,
          'nthis': 1,
          'even': 1,
          'fails': 1,
          'since': 1,
          'celebs': 1,
          'truly': 1,
          'andy': 1,
          'warhol': 1,
          'truman': 1,
          'capote': 1,
          'hasnt': 1,
          'heard': 1,
          'another': 1,
          'know': 1,
          'names': 1,
          'knew': 1,
          'already': 1,
          'humor': 1,
          'call': 1,
          'built': 1,
          'woman': 1,
          'getting': 1,
          '70s': 1,
          'references': 1,
          'travolta': 1,
          'olivia': 1,
          'newton': 1,
          'making': 1,
          'us': 1,
          'laugh': 1,
          'stupid': 1,
          'back': 1,
          'given': 1,
          'sexually': 1,
          'ambivlaent': 1,
          'play': 1,
          'better': 1,
          'still': 1,
          'alive': 1,
          'looks': 1,
          'sounds': 1,
          'giving': 1,
          'subdued': 1,
          'nostalgic': 1,
          'needed': 1,
          'nit': 1,
          'reminds': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'character': 1,
          'linda': 1,
          'richmond': 1,
          'coffee': 1,
          'talk': 1,
          'sans': 1,
          'dress': 1,
          'wig': 1,
          'supporting': 1,
          'cast': 1,
          'salma': 1,
          'hayek': 1,
          'breckin': 1,
          'neve': 1,
          'lead': 1,
          'absolutely': 1,
          'nowhere': 1,
          'romance': 1,
          'soap': 1,
          'opera': 1,
          'star': 1,
          'completely': 1,
          'implausable': 1,
          'share': 1,
          'screen': 1,
          'time': 1,
          'shots': 1,
          'hooked': 1,
          'amphetimenes': 1,
          'nhayeks': 1,
          'wannabe': 1,
          'singer': 1,
          'extremely': 1,
          'husband': 1,
          'greg': 1,
          'stands': 1,
          'oshaes': 1,
          'surrogate': 1,
          'friend': 1,
          'seemed': 1,
          'seem': 1,
          'make': 1,
          'hour': 1,
          'long': 1,
          'noverall': 1,
          'tried': 1,
          'view': 1,
          'brashness': 1,
          'place': 1,
          'crack': 1,
          'heroin': 1,
          'wine': 1,
          'never': 1,
          'leads': 1,
          'anything': 1,
          'obserable': 1,
          'point': 1,
          'covers': 1,
          'lack': 1,
          'real': 1,
          'plot': 1,
          'veil': 1,
          'beautiful': 1,
          'nin': 1,
          'truth': 1,
          'reminded': 1,
          'eighies': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'instinct': 7,
          'hes': 7,
          'tarzan': 6,
          'man': 6,
          'film': 6,
          'prison': 6,
          'hopkins': 5,
          'caulder': 5,
          'gorillas': 5,
          'evil': 5,
          'really': 4,
          'like': 4,
          'old': 4,
          'good': 4,
          'one': 4,
          'powell': 4,
          'two': 4,
          'interesting': 4,
          'guard': 4,
          'would': 3,
          'way': 3,
          'ni': 3,
          'acting': 3,
          'actors': 3,
          'make': 3,
          'patch': 3,
          'adams': 3,
          'us': 3,
          'case': 3,
          'life': 3,
          'years': 3,
          'work': 3,
          'playing': 3,
          'warden': 3,
          'subplot': 3,
          'daughter': 3,
          'nif': 3,
          'movie': 3,
          'films': 2,
          'movies': 2,
          'neven': 2,
          'comparison': 2,
          'isnt': 2,
          'hate': 2,
          'recognize': 2,
          'beyond': 2,
          'involved': 2,
          'also': 2,
          'director': 2,
          'jr': 2,
          'psychiatrist': 2,
          'supervision': 2,
          'thinks': 2,
          'anthropologist': 2,
          'living': 2,
          'africa': 2,
          'caulders': 2,
          'together': 2,
          'central': 2,
          'idea': 2,
          'spent': 2,
          'wild': 2,
          'di': 2,
          'pego': 2,
          'seems': 2,
          'time': 2,
          'entire': 2,
          'characters': 2,
          'live': 2,
          'means': 2,
          'subplots': 2,
          'thats': 2,
          'obvious': 2,
          'theres': 2,
          'depth': 2,
          'know': 1,
          'never': 1,
          'wondered': 1,
          'nwhile': 1,
          'watching': 1,
          'couldnt': 1,
          'help': 1,
          'acknowledge': 1,
          'carelessly': 1,
          'rehashes': 1,
          'wellexplored': 1,
          'themes': 1,
          'earlier': 1,
          'beside': 1,
          'nits': 1,
          'painfully': 1,
          'idealistic': 1,
          'manipulative': 1,
          'silly': 1,
          'didnt': 1,
          'simply': 1,
          'impossible': 1,
          'starring': 1,
          'anthony': 1,
          'furthermore': 1,
          'quite': 1,
          'nbut': 1,
          'subjective': 1,
          'admiration': 1,
          'reasons': 1,
          'wanting': 1,
          'pretty': 1,
          'clear': 1,
          'could': 1,
          'massive': 1,
          'script': 1,
          'overhaul': 1,
          'less': 1,
          'interested': 1,
          'imitating': 1,
          'nthings': 1,
          'start': 1,
          'predictable': 1,
          'jon': 1,
          'turtletaub': 1,
          'introduces': 1,
          'hero': 1,
          'theo': 1,
          'cuba': 1,
          'gooding': 1,
          'ambitious': 1,
          'young': 1,
          'experienced': 1,
          'donald': 1,
          'sutherland': 1,
          'ncaulder': 1,
          'soon': 1,
          'finds': 1,
          'famous': 1,
          'subject': 1,
          'ethan': 1,
          'among': 1,
          'past': 1,
          'npowell': 1,
          'charged': 1,
          'brutal': 1,
          'murders': 1,
          'several': 1,
          'men': 1,
          'job': 1,
          'find': 1,
          'mentally': 1,
          'competent': 1,
          'enough': 1,
          'stand': 1,
          'trial': 1,
          'nthrough': 1,
          'series': 1,
          'short': 1,
          'sessions': 1,
          'tries': 1,
          'put': 1,
          'complex': 1,
          'psyche': 1,
          'though': 1,
          'version': 1,
          'much': 1,
          'rather': 1,
          'nas': 1,
          'said': 1,
          'captivating': 1,
          'every': 1,
          'second': 1,
          'screen': 1,
          'convincing': 1,
          'actually': 1,
          'family': 1,
          'character': 1,
          'likes': 1,
          'makes': 1,
          'subtleties': 1,
          'speech': 1,
          'action': 1,
          'ngooding': 1,
          'strong': 1,
          'opposite': 1,
          'intelligent': 1,
          'flawed': 1,
          'individual': 1,
          'screenplay': 1,
          'written': 1,
          'gerald': 1,
          'suggested': 1,
          'novel': 1,
          'daniel': 1,
          'quinn': 1,
          'gives': 1,
          'background': 1,
          'information': 1,
          'point': 1,
          'friends': 1,
          'obsessed': 1,
          'nnonetheless': 1,
          'essentially': 1,
          'list': 1,
          'things': 1,
          'nunfortunately': 1,
          'filmmaking': 1,
          'inept': 1,
          'mangle': 1,
          'effect': 1,
          'even': 1,
          'best': 1,
          'nturtletaub': 1,
          'guilty': 1,
          'instincts': 1,
          'artistic': 1,
          'failure': 1,
          'dumbest': 1,
          'clicheridden': 1,
          'environment': 1,
          'brainless': 1,
          'nfirst': 1,
          'wants': 1,
          'stop': 1,
          'progress': 1,
          'cost': 1,
          'taking': 1,
          'fine': 1,
          'ntheres': 1,
          'played': 1,
          'john': 1,
          'ashton': 1,
          'enjoy': 1,
          'mercilessly': 1,
          'beating': 1,
          'upon': 1,
          'psychotics': 1,
          'instrumental': 1,
          'helping': 1,
          'story': 1,
          'along': 1,
          'conclusion': 1,
          'nthen': 1,
          'maura': 1,
          'tierney': 1,
          'must': 1,
          'look': 1,
          'upset': 1,
          'lot': 1,
          'deranged': 1,
          'stuff': 1,
          'sounds': 1,
          'familiar': 1,
          'theyre': 1,
          'devices': 1,
          'used': 1,
          'reused': 1,
          'countless': 1,
          'doctor': 1,
          'unlike': 1,
          'offensive': 1,
          'caricatures': 1,
          'mental': 1,
          'patients': 1,
          'lack': 1,
          'similar': 1,
          'portrayals': 1,
          'flew': 1,
          'cuckoos': 1,
          'nest': 1,
          'nashtons': 1,
          'pales': 1,
          'clancy': 1,
          'browns': 1,
          'shawshank': 1,
          'redemption': 1,
          'nhopkins': 1,
          'performance': 1,
          'undoubtedly': 1,
          'remind': 1,
          'audiences': 1,
          'turn': 1,
          'silence': 1,
          'lambs': 1,
          'nand': 1,
          'whole': 1,
          'thing': 1,
          'little': 1,
          'bit': 1,
          'nperhaps': 1,
          'irritates': 1,
          'halfhearted': 1,
          'attempt': 1,
          'philosophical': 1,
          'message': 1,
          'brings': 1,
          'back': 1,
          'subtle': 1,
          'humans': 1,
          'takers': 1,
          'expand': 1,
          'kill': 1,
          'sympathize': 1,
          'compelling': 1,
          'nthis': 1,
          'kind': 1,
          'stupid': 1,
          'big': 1,
          'group': 1,
          'psychotic': 1,
          'inmates': 1,
          'rise': 1,
          'forces': 1,
          'oppressing': 1,
          'tearing': 1,
          'cards': 1,
          'nwhat': 1,
          'left': 1,
          'cutting': 1,
          'room': 1,
          'floor': 1,
          'thirtyminute': 1,
          'far': 1,
          'superior': 1,
          'twohour': 1,
          'watched': 1,
          'today': 1,
          'developed': 1,
          'premise': 1,
          'something': 1,
          'doesnt': 1,
          'rely': 1,
          'strength': 1,
          'nneg': 1}),
 Counter({'joe': 6,
          'effects': 6,
          'young': 5,
          'mighty': 4,
          'remake': 4,
          'kong': 4,
          'predictable': 4,
          'gorilla': 3,
          'theres': 3,
          'king': 3,
          'also': 3,
          'world': 3,
          'disneys': 2,
          'bill': 2,
          'see': 2,
          'one': 2,
          'clich': 2,
          'unnecessary': 2,
          'story': 2,
          'years': 2,
          'ready': 2,
          'beast': 2,
          'nthe': 2,
          'baker': 2,
          'computer': 2,
          'nwhile': 2,
          'including': 2,
          'films': 2,
          'finale': 1,
          '15foot': 1,
          'tall': 1,
          '2000pound': 1,
          'holds': 1,
          'frightened': 1,
          'boy': 1,
          'clutches': 1,
          'topples': 1,
          'crippled': 1,
          'ferris': 1,
          'wheel': 1,
          'plummets': 1,
          'ground': 1,
          'nupon': 1,
          'impact': 1,
          'rugged': 1,
          'everyman': 1,
          'perennial': 1,
          'dogooder': 1,
          'paxton': 1,
          'rushes': 1,
          'containing': 1,
          'emotional': 1,
          'crowd': 1,
          'earnest': 1,
          'move': 1,
          'along': 1,
          'folks': 1,
          'nothing': 1,
          'nok': 1,
          'arent': 1,
          'exactly': 1,
          'words': 1,
          'uses': 1,
          'probably': 1,
          'uttered': 1,
          'mother': 1,
          'monster': 1,
          'movies': 1,
          'n1949s': 1,
          'update': 1,
          'classic': 1,
          'creature': 1,
          'feature': 1,
          'based': 1,
          'merian': 1,
          'c': 1,
          'coopers': 1,
          'original': 1,
          '16': 1,
          'appeared': 1,
          'new': 1,
          'take': 1,
          'beauty': 1,
          'fable': 1,
          'nnow': 1,
          '49': 1,
          'later': 1,
          'least': 1,
          'according': 1,
          'way': 1,
          'thinking': 1,
          'nnot': 1,
          'onlyand': 1,
          'mean': 1,
          'onlyreason': 1,
          '1998': 1,
          'version': 1,
          'special': 1,
          'nand': 1,
          'unfortunately': 1,
          'run': 1,
          'hot': 1,
          'cold': 1,
          'ntodays': 1,
          'designed': 1,
          'produced': 1,
          'specialeffects': 1,
          'whiz': 1,
          'rick': 1,
          'wowing': 1,
          'audiences': 1,
          'stateoftheart': 1,
          'makeup': 1,
          'since': 1,
          '1971s': 1,
          'schlock': 1,
          'incidentally': 1,
          'featured': 1,
          'bakerenhanced': 1,
          'njoe': 1,
          'combination': 1,
          'animatronic': 1,
          'graphics': 1,
          'old': 1,
          'standard': 1,
          'man': 1,
          'monkey': 1,
          'suit': 1,
          'occasional': 1,
          'flashes': 1,
          'brilliancebakers': 1,
          'lot': 1,
          'practice': 1,
          'simian': 1,
          'gorillas': 1,
          'mist': 1,
          'greystoke': 1,
          'legend': 1,
          'tarzan': 1,
          'lord': 1,
          'apes': 1,
          '1976': 1,
          'surprising': 1,
          'cheesiness': 1,
          'none': 1,
          'embarrassing': 1,
          'moments': 1,
          'paxtons': 1,
          'band': 1,
          'african': 1,
          'trackers': 1,
          'first': 1,
          'encounter': 1,
          'pursue': 1,
          'largerthanlife': 1,
          'primate': 1,
          'scene': 1,
          'unashamedly': 1,
          'ripped': 1,
          'lost': 1,
          'jurassic': 1,
          'park': 1,
          'npaxton': 1,
          'jubilantly': 1,
          'extols': 1,
          'beasts': 1,
          'majestic': 1,
          'gait': 1,
          'exact': 1,
          'moment': 1,
          'driving': 1,
          'stutter': 1,
          'halt': 1,
          'nalso': 1,
          'producers': 1,
          'wanted': 1,
          'us': 1,
          'focus': 1,
          'attentions': 1,
          'titular': 1,
          'ape': 1,
          'shouldnt': 1,
          'paraded': 1,
          'female': 1,
          'lead': 1,
          'charlize': 1,
          'theron': 1,
          'trial': 1,
          'error': 1,
          'around': 1,
          'seeminglyendless': 1,
          'wardrobe': 1,
          'spaghettistrapped': 1,
          'tops': 1,
          'neven': 1,
          'seems': 1,
          'distracted': 1,
          'times': 1,
          'film': 1,
          'piles': 1,
          'like': 1,
          'tomorrow': 1,
          'plot': 1,
          'anthrozoologists': 1,
          'ship': 1,
          'gigantic': 1,
          'l': 1,
          'urban': 1,
          'havoc': 1,
          'inevitably': 1,
          'wrought': 1,
          'villain': 1,
          'lithuanian': 1,
          'think': 1,
          'overheard': 1,
          'someplace': 1,
          'love': 1,
          'charlizesurprise': 1,
          'denouement': 1,
          'twas': 1,
          'boxoffice': 1,
          'receipts': 1,
          'killed': 1,
          'nkids': 1,
          'raised': 1,
          'men': 1,
          'black': 1,
          'nonmonkey': 1,
          'going': 1,
          'find': 1,
          'ron': 1,
          'tremors': 1,
          'underwoods': 1,
          'outing': 1,
          'little': 1,
          'lame': 1,
          'comparison': 1,
          'certainly': 1,
          'better': 1,
          '1978s': 1,
          'lives': 1,
          'lousy': 1,
          'sequel': 1,
          'particularly': 1,
          'good': 1,
          'proves': 1,
          'keep': 1,
          'falling': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'much': 5,
          'harry': 4,
          'noir': 3,
          'youre': 3,
          'florida': 2,
          'palmetto': 2,
          'nits': 2,
          'slow': 2,
          'harrelson': 2,
          'things': 2,
          'shue': 2,
          'sevigny': 2,
          'gets': 2,
          'seem': 2,
          'even': 2,
          'plot': 2,
          'twists': 2,
          'whole': 2,
          'end': 2,
          'nsome': 2,
          'example': 2,
          'type': 2,
          'movie': 2,
          'attempt': 1,
          'fails': 1,
          'fundamental': 1,
          'levels': 1,
          'moving': 1,
          'uninvolving': 1,
          'plain': 1,
          'uninteresting': 1,
          'nharry': 1,
          'barber': 1,
          'woody': 1,
          'exnewspaper': 1,
          'man': 1,
          'jail': 1,
          'framed': 1,
          'crime': 1,
          'nhis': 1,
          'luck': 1,
          'hasnt': 1,
          'best': 1,
          'looking': 1,
          'mysterious': 1,
          'woman': 1,
          'rhea': 1,
          'malroux': 1,
          'elisabeth': 1,
          'approaches': 1,
          'proposition': 1,
          'nshe': 1,
          'wants': 1,
          'help': 1,
          'stepdaughter': 1,
          'odette': 1,
          'chloe': 1,
          'pull': 1,
          'fake': 1,
          'kidnapping': 1,
          'scheme': 1,
          'get': 1,
          '500': 1,
          '000': 1,
          'stingy': 1,
          'rich': 1,
          'husband': 1,
          'felix': 1,
          'rolf': 1,
          'hoppe': 1,
          'nat': 1,
          'first': 1,
          'expected': 1,
          'provide': 1,
          'threatening': 1,
          'voice': 1,
          'phone': 1,
          'collect': 1,
          'money': 1,
          'keep': 1,
          '10': 1,
          'nbut': 1,
          'deed': 1,
          'carried': 1,
          'caught': 1,
          'ensuing': 1,
          'storm': 1,
          'npalmetto': 1,
          'pulls': 1,
          'stops': 1,
          'achieve': 1,
          'effect': 1,
          'never': 1,
          'quite': 1,
          'comes': 1,
          'together': 1,
          'got': 1,
          'sultry': 1,
          'heat': 1,
          'seductive': 1,
          'women': 1,
          'curvier': 1,
          'thing': 1,
          'smells': 1,
          'paintbynumbers': 1,
          'nsure': 1,
          'right': 1,
          'ingredients': 1,
          'result': 1,
          'artificial': 1,
          'na': 1,
          'lot': 1,
          'problems': 1,
          'lie': 1,
          'script': 1,
          'though': 1,
          'providing': 1,
          'genuine': 1,
          'surprises': 1,
          'packed': 1,
          'full': 1,
          'leaden': 1,
          'dialogue': 1,
          'bland': 1,
          'situations': 1,
          'neven': 1,
          'dont': 1,
          'flow': 1,
          'well': 1,
          'rest': 1,
          'story': 1,
          'come': 1,
          'far': 1,
          'afield': 1,
          'seemingly': 1,
          'make': 1,
          'sense': 1,
          'writer': 1,
          'needed': 1,
          'twist': 1,
          'harrys': 1,
          'spontaneous': 1,
          'job': 1,
          'offer': 1,
          'typewriter': 1,
          'situation': 1,
          'nthe': 1,
          'characters': 1,
          'mostly': 1,
          'lifeless': 1,
          'played': 1,
          'nwoody': 1,
          'plays': 1,
          'imbecilic': 1,
          'thickheadedness': 1,
          'hard': 1,
          'picture': 1,
          'exjournalist': 1,
          'nelisabeth': 1,
          'vamps': 1,
          'doesnt': 1,
          'add': 1,
          'anything': 1,
          'special': 1,
          'role': 1,
          'nchloe': 1,
          'gives': 1,
          'terrible': 1,
          'performance': 1,
          'trying': 1,
          'sexy': 1,
          '17year': 1,
          'old': 1,
          'leaves': 1,
          'bad': 1,
          'taste': 1,
          'mouth': 1,
          'supporting': 1,
          'cast': 1,
          'notably': 1,
          'gina': 1,
          'gershon': 1,
          'michael': 1,
          'rapaport': 1,
          'give': 1,
          'stronger': 1,
          'meaningless': 1,
          'performances': 1,
          'nand': 1,
          'top': 1,
          'pacing': 1,
          'nas': 1,
          'grinds': 1,
          'halt': 1,
          'given': 1,
          'time': 1,
          'wonder': 1,
          'wasting': 1,
          'watching': 1,
          'nif': 1,
          'mood': 1,
          'youd': 1,
          'better': 1,
          'going': 1,
          'renting': 1,
          'classic': 1,
          'nneg': 1}),
 Counter({'ned': 9,
          'kelly': 9,
          'film': 6,
          'police': 5,
          'see': 3,
          'nthe': 3,
          'better': 3,
          'neds': 3,
          'british': 3,
          'nwhen': 3,
          'gang': 3,
          'brothers': 3,
          'kellys': 3,
          'want': 2,
          'jagger': 2,
          'australian': 2,
          'nbut': 2,
          'goes': 2,
          'nthis': 2,
          'nin': 2,
          'revenge': 2,
          'begins': 2,
          'outback': 2,
          'justice': 2,
          'horses': 2,
          'go': 2,
          'poor': 2,
          'train': 2,
          'much': 2,
          'worth': 1,
          'seeing': 1,
          'mick': 1,
          'looks': 1,
          'like': 1,
          'sporting': 1,
          'abe': 1,
          'lincoln': 1,
          'beard': 1,
          'rock': 1,
          'roller': 1,
          'asked': 1,
          'carry': 1,
          'action': 1,
          'antihero': 1,
          'legend': 1,
          'nkelly': 1,
          'socalled': 1,
          'robin': 1,
          'hood': 1,
          'aussies': 1,
          'fails': 1,
          'convincing': 1,
          'opinion': 1,
          'suited': 1,
          'play': 1,
          'gene': 1,
          'opens': 1,
          'bw': 1,
          'prologue': 1,
          'bravely': 1,
          'going': 1,
          'execution': 1,
          'nthen': 1,
          'technicolor': 1,
          'seen': 1,
          'flashback': 1,
          'coming': 1,
          'home': 1,
          'jail': 1,
          '3year': 1,
          'sentence': 1,
          'mom': 1,
          'reacquaint': 1,
          'large': 1,
          'family': 1,
          'scene': 1,
          'set': 1,
          '1871': 1,
          'background': 1,
          'hear': 1,
          'booming': 1,
          'voice': 1,
          'waylon': 1,
          'jennings': 1,
          'sings': 1,
          'shel': 1,
          'silversteins': 1,
          'lyrics': 1,
          'tells': 1,
          'hatred': 1,
          'rule': 1,
          'hope': 1,
          'ireland': 1,
          'republic': 1,
          'nned': 1,
          'says': 1,
          'debt': 1,
          'must': 1,
          'paid': 1,
          'nas': 1,
          'hears': 1,
          'voices': 1,
          'dead': 1,
          'father': 1,
          'classdivided': 1,
          'country': 1,
          'conscience': 1,
          'telling': 1,
          'get': 1,
          'nso': 1,
          'romp': 1,
          'australias': 1,
          'seeking': 1,
          'wrongs': 1,
          'people': 1,
          'suffered': 1,
          'nhe': 1,
          'stealing': 1,
          'complaining': 1,
          'unfair': 1,
          'tax': 1,
          'law': 1,
          'stray': 1,
          'favors': 1,
          'rich': 1,
          'landowners': 1,
          'hes': 1,
          '20': 1,
          'forms': 1,
          'causing': 1,
          'hide': 1,
          'rest': 1,
          'life': 1,
          'put': 1,
          'price': 1,
          'head': 1,
          'two': 1,
          'thousand': 1,
          'pounds': 1,
          'mother': 1,
          'clarissa': 1,
          'kaye': 1,
          'jailed': 1,
          'false': 1,
          'charge': 1,
          'abetting': 1,
          'criminals': 1,
          'sentenced': 1,
          '35': 1,
          'years': 1,
          'offers': 1,
          'surrender': 1,
          'exchange': 1,
          'mothers': 1,
          'freedom': 1,
          'authorities': 1,
          'refuse': 1,
          'robbing': 1,
          'rampage': 1,
          'burning': 1,
          'mortgages': 1,
          'found': 1,
          'postal': 1,
          'vaults': 1,
          'murdering': 1,
          'soldiers': 1,
          'nrampaging': 1,
          'gather': 1,
          'sympathy': 1,
          'among': 1,
          'lower': 1,
          'classes': 1,
          'dont': 1,
          'trust': 1,
          'traps': 1,
          'nspoiler': 1,
          'follow': 1,
          'next': 1,
          'paragraph': 1,
          'climax': 1,
          'plan': 1,
          'ambush': 1,
          'someone': 1,
          'trusted': 1,
          'tips': 1,
          'trapped': 1,
          'saloon': 1,
          'captured': 1,
          'nneds': 1,
          'commit': 1,
          'suicide': 1,
          'rather': 1,
          'taken': 1,
          'alive': 1,
          'escapes': 1,
          'heroically': 1,
          'become': 1,
          'decoys': 1,
          'flat': 1,
          'presentation': 1,
          'hardly': 1,
          'touching': 1,
          'emotional': 1,
          'button': 1,
          'fuss': 1,
          'call': 1,
          'njagger': 1,
          'didnt': 1,
          'prayer': 1,
          'succeeding': 1,
          'dry': 1,
          'script': 1,
          'offered': 1,
          'ian': 1,
          'jones': 1,
          'tony': 1,
          'richardson': 1,
          'story': 1,
          'failed': 1,
          'focus': 1,
          'australia': 1,
          'seemingly': 1,
          'nunder': 1,
          'richardsons': 1,
          'lackluster': 1,
          'direction': 1,
          'seemed': 1,
          'proclaim': 1,
          'innocence': 1,
          'vow': 1,
          'soon': 1,
          'became': 1,
          'shrill': 1,
          'cry': 1,
          'nif': 1,
          'catch': 1,
          'mad': 1,
          'dog': 1,
          'morgan': 1,
          '76': 1,
          'truer': 1,
          'daring': 1,
          'version': 1,
          'dennis': 1,
          'hopper': 1,
          'giving': 1,
          'characterization': 1,
          'madness': 1,
          'something': 1,
          'could': 1,
          'hohum': 1,
          'manner': 1,
          'nneg': 1}),
 Counter({'nit': 7,
          'fails': 5,
          'movie': 3,
          'ni': 3,
          'get': 2,
          'making': 2,
          'would': 2,
          'premise': 2,
          'suceeds': 2,
          'laughing': 2,
          'sight': 2,
          'trying': 2,
          'funny': 2,
          'stupid': 2,
          'best': 2,
          'make': 2,
          'people': 2,
          'go': 2,
          'insane': 2,
          'think': 1,
          'responsible': 1,
          'citizens': 1,
          'together': 1,
          'stop': 1,
          'jim': 1,
          'carrey': 1,
          'another': 1,
          'nhes': 1,
          'changing': 1,
          'cinema': 1,
          'know': 1,
          'itand': 1,
          'worst': 1,
          'willingly': 1,
          'rewatch': 1,
          'batman': 1,
          'robin': 1,
          'rather': 1,
          'sit': 1,
          'miserable': 1,
          'collection': 1,
          'filmic': 1,
          'momentsprologues': 1,
          'epilogues': 1,
          'etc': 1,
          'lawyer': 1,
          'cant': 1,
          'lie': 1,
          'day': 1,
          'nho': 1,
          'ho': 1,
          'nnormally': 1,
          'made': 1,
          'terriblemr': 1,
          'ncarrey': 1,
          'unwatchable': 1,
          'laughed': 1,
          'onceand': 1,
          'everyone': 1,
          'else': 1,
          'ngrinding': 1,
          'doesnt': 1,
          'begin': 1,
          'describe': 1,
          'pounds': 1,
          'head': 1,
          'forcefully': 1,
          'unstoppably': 1,
          'normal': 1,
          'person': 1,
          'leave': 1,
          'feeling': 1,
          'sick': 1,
          'nwhen': 1,
          'melodramaticbut': 1,
          'annoying': 1,
          'sappy': 1,
          'nat': 1,
          'nthis': 1,
          'intended': 1,
          'laugh': 1,
          'yes': 1,
          'voted': 1,
          'picture': 1,
          'time': 1,
          'sound': 1,
          'nbut': 1,
          'every': 1,
          'possible': 1,
          'level': 1,
          'insightful': 1,
          'suspensful': 1,
          'fun': 1,
          'nthey': 1,
          'pay': 1,
          'see': 1,
          'one': 1,
          'levelit': 1,
          'makes': 1,
          'want': 1,
          'ground': 1,
          'start': 1,
          'thanking': 1,
          'orson': 1,
          'welles': 1,
          'lived': 1,
          'nif': 1,
          'intention': 1,
          'coming': 1,
          'alive': 1,
          'please': 1,
          'sure': 1,
          'overly': 1,
          'fond': 1,
          'boob': 1,
          'fart': 1,
          'pimple': 1,
          'fat': 1,
          'jokesotherwise': 1,
          'nyes': 1,
          'literally': 1,
          'nstark': 1,
          'raving': 1,
          'mad': 1,
          'boring': 1,
          'melodramatic': 1,
          'end': 1,
          'ugly': 1,
          'reccemond': 1,
          'strongly': 1,
          'nto': 1,
          'ed': 1,
          'wood': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'given': 8,
          'city': 7,
          'noir': 6,
          'plot': 6,
          'nthe': 6,
          'go': 4,
          'get': 4,
          'man': 4,
          'us': 4,
          'anything': 4,
          'dark': 3,
          'ni': 3,
          'film': 3,
          'doesnt': 3,
          'way': 3,
          'back': 3,
          'dont': 3,
          'fedoras': 3,
          'without': 3,
          'life': 3,
          'would': 3,
          'long': 3,
          'getting': 3,
          'nits': 3,
          'like': 3,
          'around': 3,
          'nwere': 3,
          'aliens': 3,
          'thing': 2,
          'good': 2,
          'say': 2,
          'want': 2,
          'see': 2,
          'hurt': 2,
          'real': 2,
          'new': 2,
          'critics': 2,
          'feel': 2,
          'worked': 2,
          'hard': 2,
          'stunning': 2,
          'care': 2,
          'sense': 2,
          'reason': 2,
          'sewell': 2,
          'doctor': 2,
          'well': 2,
          'bit': 2,
          'going': 2,
          'first': 2,
          'casablanca': 2,
          'thats': 2,
          'make': 2,
          'powers': 2,
          'yet': 2,
          'moments': 2,
          'nowhere': 2,
          'playing': 2,
          'isnt': 2,
          'one': 2,
          'remember': 2,
          'tall': 2,
          'bald': 2,
          'remind': 2,
          'theyre': 2,
          'evil': 2,
          'breathy': 2,
          'two': 2,
          'ndark': 2,
          'intricately': 2,
          'best': 1,
          'fact': 1,
          'made': 1,
          'l': 1,
          'confidential': 1,
          'rent': 1,
          'body': 1,
          'heat': 1,
          'william': 1,
          'even': 1,
          'god': 1,
          'help': 1,
          'palmetto': 1,
          'nalex': 1,
          'proyass': 1,
          'screams': 1,
          'atmosphere': 1,
          'screamed': 1,
          'theater': 1,
          'nnew': 1,
          'line': 1,
          'cinema': 1,
          'spent': 1,
          'millions': 1,
          'dollars': 1,
          'creating': 1,
          'expressionistic': 1,
          'visuals': 1,
          'paying': 1,
          'actors': 1,
          'paid': 1,
          '4': 1,
          '25': 1,
          'matinee': 1,
          'screening': 1,
          'money': 1,
          'either': 1,
          'nyoull': 1,
          'hear': 1,
          'lot': 1,
          'look': 1,
          'admit': 1,
          'cinematographers': 1,
          'costume': 1,
          'designers': 1,
          'set': 1,
          'artists': 1,
          'cgi': 1,
          'graphics': 1,
          'geeks': 1,
          'create': 1,
          'nightmarish': 1,
          'future': 1,
          'world': 1,
          'always': 1,
          'late': 1,
          'night': 1,
          '1948': 1,
          'complete': 1,
          'rotary': 1,
          'phones': 1,
          'automats': 1,
          'nive': 1,
          'got': 1,
          'news': 1,
          'fellows': 1,
          'visually': 1,
          'looks': 1,
          'wasted': 1,
          'time': 1,
          'mine': 1,
          'working': 1,
          'clear': 1,
          'direction': 1,
          'wanted': 1,
          'soul': 1,
          'starts': 1,
          'ohsopromising': 1,
          'njohn': 1,
          'murdoch': 1,
          'rufus': 1,
          'lying': 1,
          'bathtub': 1,
          'sort': 1,
          'seedy': 1,
          'hotel': 1,
          'boarded': 1,
          'ago': 1,
          'nthere': 1,
          'dead': 1,
          'mutilated': 1,
          'prostitute': 1,
          'room': 1,
          'surprise': 1,
          'lost': 1,
          'memory': 1,
          'phone': 1,
          'rings': 1,
          'sinistersounding': 1,
          'claiming': 1,
          'telling': 1,
          'flee': 1,
          'nall': 1,
          'right': 1,
          'nwrong': 1,
          'napparently': 1,
          'someone': 1,
          'decided': 1,
          'audience': 1,
          'dim': 1,
          'figure': 1,
          'intricacies': 1,
          'n': 1,
          'popular': 1,
          'assumption': 1,
          'hollywood': 1,
          'nso': 1,
          'actual': 1,
          'beginning': 1,
          'running': 1,
          'rather': 1,
          'voiceover': 1,
          'narration': 1,
          'aforementioned': 1,
          'keifer': 1,
          'sutherland': 1,
          'explaining': 1,
          'exactly': 1,
          'responsible': 1,
          'though': 1,
          'sam': 1,
          'piano': 1,
          'player': 1,
          'told': 1,
          'rick': 1,
          'ilsa': 1,
          'paris': 1,
          'three': 1,
          'minutes': 1,
          'nno': 1,
          'wait': 1,
          'fair': 1,
          'watching': 1,
          'plotline': 1,
          'show': 1,
          'know': 1,
          'really': 1,
          'offscreen': 1,
          'narrator': 1,
          'explain': 1,
          'gilligan': 1,
          'wont': 1,
          'island': 1,
          'episode': 1,
          'nfrom': 1,
          'coherence': 1,
          'goes': 1,
          'faster': 1,
          'insert': 1,
          'monica': 1,
          'lewinsky': 1,
          'joke': 1,
          'characters': 1,
          'wander': 1,
          'aimlessly': 1,
          'bump': 1,
          'apparent': 1,
          'moves': 1,
          'nwhat': 1,
          'left': 1,
          'string': 1,
          'unanswered': 1,
          'questions': 1,
          'unlimited': 1,
          'omnipotent': 1,
          'forget': 1,
          'use': 1,
          'critical': 1,
          'killed': 1,
          'hero': 1,
          'tune': 1,
          'uses': 1,
          'convenient': 1,
          'whole': 1,
          'list': 1,
          'loose': 1,
          'ends': 1,
          'nusually': 1,
          'actor': 1,
          'underwritten': 1,
          'part': 1,
          'much': 1,
          'nin': 1,
          'nsewell': 1,
          'impossible': 1,
          'role': 1,
          'plays': 1,
          'num': 1,
          'na': 1,
          'pastyfaced': 1,
          'wear': 1,
          'black': 1,
          'cloaks': 1,
          'theres': 1,
          'child': 1,
          'alien': 1,
          'straight': 1,
          'anne': 1,
          'rice': 1,
          'novel': 1,
          'nsutherland': 1,
          'saddled': 1,
          'limp': 1,
          'twitchy': 1,
          'eye': 1,
          'accent': 1,
          'hes': 1,
          'league': 1,
          'nto': 1,
          'credit': 1,
          'boasts': 1,
          'impressive': 1,
          'bits': 1,
          'casting': 1,
          'nwilliam': 1,
          'perfectly': 1,
          'cast': 1,
          'worldweary': 1,
          'inspector': 1,
          'charged': 1,
          'catching': 1,
          'murdering': 1,
          'prostitutes': 1,
          'njennifer': 1,
          'connelly': 1,
          'sewells': 1,
          'love': 1,
          'interest': 1,
          'alltoobrief': 1,
          'screen': 1,
          'lounge': 1,
          'singer': 1,
          'turns': 1,
          'sexiest': 1,
          'performace': 1,
          'side': 1,
          'jessica': 1,
          'rabbit': 1,
          'nbut': 1,
          'instead': 1,
          'dogged': 1,
          'policeman': 1,
          'femme': 1,
          'fatale': 1,
          'central': 1,
          'treatment': 1,
          'script': 1,
          'selfrespecting': 1,
          'almost': 1,
          'tangiential': 1,
          'problem': 1,
          'bad': 1,
          'science': 1,
          'fiction': 1,
          'pretending': 1,
          'essence': 1,
          'proyas': 1,
          'seems': 1,
          'beleive': 1,
          'dialogue': 1,
          'snapbrim': 1,
          'villains': 1,
          'peter': 1,
          'lorre': 1,
          'curl': 1,
          'corner': 1,
          'intrigue': 1,
          'moral': 1,
          'ambiguity': 1,
          'suspense': 1,
          'else': 1,
          'keeps': 1,
          'coming': 1,
          'classics': 1,
          'carved': 1,
          'door': 1,
          'kate': 1,
          'winslet': 1,
          'floats': 1,
          'titanic': 1,
          'exceptionlly': 1,
          'wellmade': 1,
          'designed': 1,
          'piece': 1,
          'flotsam': 1,
          'sailing': 1,
          'middle': 1,
          'ocean': 1,
          'nneg': 1}),
 Counter({'help': 5,
          'movie': 3,
          'good': 3,
          'least': 3,
          'always': 2,
          'first': 2,
          'howie': 2,
          'action': 2,
          'bad': 2,
          'could': 2,
          'isnt': 2,
          'film': 2,
          'parachutes': 2,
          'forest': 2,
          'ground': 2,
          'nin': 2,
          'scott': 2,
          'glenn': 2,
          'plays': 2,
          'get': 2,
          'blaze': 2,
          'escape': 2,
          'canadian': 2,
          'pretty': 2,
          'amis': 2,
          'hostage': 2,
          'nlongs': 2,
          'talents': 2,
          'much': 2,
          'nthe': 2,
          'doesnt': 2,
          'cold': 2,
          'case': 2,
          'interesting': 2,
          'think': 2,
          'careful': 1,
          'official': 1,
          'studio': 1,
          'release': 1,
          'gate': 1,
          'year': 1,
          'ntheyre': 1,
          'obviously': 1,
          'films': 1,
          'studios': 1,
          'great': 1,
          'hopes': 1,
          'missed': 1,
          'deadline': 1,
          'academy': 1,
          'award': 1,
          'eligibility': 1,
          'big': 1,
          'boxoffice': 1,
          'holiday': 1,
          'season': 1,
          'ncombine': 1,
          'longs': 1,
          'starring': 1,
          'role': 1,
          'youve': 1,
          'got': 1,
          'doozy': 1,
          'nhowie': 1,
          'stars': 1,
          'ace': 1,
          'smokejumper': 1,
          'firefighter': 1,
          'fires': 1,
          'unreachable': 1,
          'slightly': 1,
          'contrived': 1,
          'opening': 1,
          'scenes': 1,
          'witness': 1,
          'heroism': 1,
          'mentor': 1,
          'played': 1,
          'attempt': 1,
          'rescue': 1,
          'small': 1,
          'girl': 1,
          'dog': 1,
          'oncoming': 1,
          'fire': 1,
          'nwilliam': 1,
          'forsythe': 1,
          'guy': 1,
          'mass': 1,
          'murderer': 1,
          'several': 1,
          'million': 1,
          'dollars': 1,
          'tucked': 1,
          'away': 1,
          'fund': 1,
          'jailbreak': 1,
          'nhe': 1,
          'five': 1,
          'convict': 1,
          'cohorts': 1,
          'manages': 1,
          'selected': 1,
          'firefighting': 1,
          'duty': 1,
          'woodland': 1,
          'happens': 1,
          'ignite': 1,
          'nearby': 1,
          'nhis': 1,
          'plan': 1,
          'bets': 1,
          'lot': 1,
          'laxity': 1,
          'guards': 1,
          'since': 1,
          'must': 1,
          'luck': 1,
          'nsoon': 1,
          'nowescaped': 1,
          'convicts': 1,
          'masquerading': 1,
          'firefighters': 1,
          'nwhy': 1,
          'nwho': 1,
          'knows': 1,
          'eh': 1,
          'nalong': 1,
          'way': 1,
          'pick': 1,
          'birdwatcher': 1,
          'suzy': 1,
          'nenter': 1,
          'long': 1,
          'nhes': 1,
          'called': 1,
          'fight': 1,
          'spots': 1,
          'group': 1,
          'pounders': 1,
          'apparently': 1,
          'lost': 1,
          'nwhen': 1,
          'discovers': 1,
          'true': 1,
          'identity': 1,
          'thing': 1,
          'standing': 1,
          'hope': 1,
          'acting': 1,
          'say': 1,
          'steven': 1,
          'seagal': 1,
          'nalthough': 1,
          'delivery': 1,
          'mostly': 1,
          'flat': 1,
          'wooden': 1,
          'hes': 1,
          'likeable': 1,
          'hero': 1,
          'hints': 1,
          'may': 1,
          'better': 1,
          'script': 1,
          'however': 1,
          'nall': 1,
          'often': 1,
          'veers': 1,
          'realm': 1,
          'unintentionally': 1,
          'funny': 1,
          'dialogue': 1,
          'strictly': 1,
          'bmovie': 1,
          'material': 1,
          'plotting': 1,
          'relies': 1,
          'heavily': 1,
          'coincidences': 1,
          'believable': 1,
          'costars': 1,
          'mixed': 1,
          'bag': 1,
          'nat': 1,
          'theyre': 1,
          'comfortable': 1,
          'respective': 1,
          'roles': 1,
          'nforsythe': 1,
          'scenerychewing': 1,
          'villain': 1,
          'enjoyable': 1,
          'watch': 1,
          'even': 1,
          'seem': 1,
          'stretching': 1,
          'definitely': 1,
          'nsuzy': 1,
          'peril': 1,
          'well': 1,
          'given': 1,
          'nsome': 1,
          'nature': 1,
          'wildfire': 1,
          'shots': 1,
          'many': 1,
          'rather': 1,
          'bland': 1,
          'nyoud': 1,
          'director': 1,
          'dean': 1,
          'semler': 1,
          'former': 1,
          'cinematographer': 1,
          'would': 1,
          'produce': 1,
          'visuals': 1,
          'nthats': 1,
          'ntheres': 1,
          'lack': 1,
          'originality': 1,
          'nearly': 1,
          'sequences': 1,
          'weve': 1,
          'nseen': 1,
          'stuff': 1,
          'nits': 1,
          'auspicious': 1,
          'start': 1,
          '1998': 1,
          'worse': 1,
          'back': 1,
          '1996s': 1,
          'debut': 1,
          'biodome': 1,
          'nhowever': 1,
          'month': 1,
          'oscarcaliber': 1,
          'pictures': 1,
          'like': 1,
          'firestorm': 1,
          'gives': 1,
          'perspective': 1,
          'movies': 1,
          'really': 1,
          'fact': 1,
          'theres': 1,
          'chance': 1,
          'still': 1,
          'playing': 1,
          'near': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'diedre': 8,
          'ex': 7,
          'david': 6,
          'time': 6,
          'like': 6,
          'nthe': 5,
          'wife': 4,
          'shes': 4,
          'son': 4,
          'ni': 4,
          'however': 4,
          'one': 4,
          'many': 4,
          'though': 4,
          'kills': 4,
          'film': 4,
          'ndiedre': 3,
          'davids': 3,
          'new': 3,
          'molly': 3,
          'bad': 3,
          'turkey': 3,
          'humor': 3,
          'two': 3,
          'type': 3,
          '000': 3,
          'come': 3,
          'nmolly': 3,
          'woman': 3,
          'nif': 3,
          'audience': 3,
          'character': 3,
          'apartment': 3,
          'groan': 3,
          'synopsis': 2,
          'chainsmoking': 2,
          'first': 2,
          'easily': 2,
          'believing': 2,
          'child': 2,
          'psychologist': 2,
          'michael': 2,
          'murders': 2,
          'people': 2,
          'three': 2,
          'stars': 2,
          'another': 2,
          'nim': 2,
          'films': 2,
          'use': 2,
          'storyline': 2,
          'cliches': 2,
          'doesnt': 2,
          'theyre': 2,
          'turn': 2,
          'hammy': 2,
          'performances': 2,
          'dialogue': 2,
          'said': 2,
          'plot': 2,
          'viewer': 2,
          'accept': 2,
          'example': 2,
          'scene': 2,
          'specifically': 2,
          'never': 2,
          'every': 2,
          'spend': 2,
          'cant': 2,
          'probably': 2,
          'better': 2,
          'necessarily': 2,
          'lines': 2,
          'thats': 2,
          'wishes': 2,
          'spy': 2,
          'sorry': 2,
          'therapist': 2,
          'n': 2,
          'movies': 2,
          'watching': 2,
          'nin': 2,
          'ending': 2,
          'across': 2,
          'crazy': 2,
          'easilyangered': 1,
          'architect': 1,
          'encounters': 1,
          'homicidal': 1,
          'five': 1,
          'years': 1,
          'divorce': 1,
          'cons': 1,
          'notsobright': 1,
          'influence': 1,
          'quicktempered': 1,
          'bunch': 1,
          'ncomments': 1,
          'havent': 1,
          'seen': 1,
          'magnitude': 1,
          'quite': 1,
          'kept': 1,
          'vacillating': 1,
          'giving': 1,
          'star': 1,
          'sheer': 1,
          'awfulness': 1,
          'campy': 1,
          'ultimately': 1,
          'decided': 1,
          'split': 1,
          'difference': 1,
          'give': 1,
          'nas': 1,
          'summarized': 1,
          'briefly': 1,
          'yet': 1,
          'spurnedpsycholovergetsherrevenge': 1,
          'sure': 1,
          'produced': 1,
          'since': 1,
          'fatal': 1,
          'attraction': 1,
          'tired': 1,
          'seems': 1,
          '10': 1,
          'following': 1,
          'standard': 1,
          'thriller': 1,
          'subgenre': 1,
          'differs': 1,
          'slightly': 1,
          'norm': 1,
          'least': 1,
          'take': 1,
          'seriously': 1,
          'duds': 1,
          'malicious': 1,
          'stalked': 1,
          'examples': 1,
          'mind': 1,
          'nthose': 1,
          'involved': 1,
          'realize': 1,
          'apparently': 1,
          'compliment': 1,
          'ludicrous': 1,
          'contained': 1,
          'within': 1,
          'script': 1,
          'exs': 1,
          'incorporates': 1,
          'predominant': 1,
          'nature': 1,
          'overwrought': 1,
          'unbelievable': 1,
          'must': 1,
          'logic': 1,
          'operate': 1,
          'realm': 1,
          'without': 1,
          'ever': 1,
          'worry': 1,
          'police': 1,
          'investigations': 1,
          'bright': 1,
          'enough': 1,
          'leave': 1,
          'fingerprints': 1,
          'crime': 1,
          'ndavid': 1,
          'incredibly': 1,
          'difficult': 1,
          'understanding': 1,
          'emotional': 1,
          'problems': 1,
          'inability': 1,
          'control': 1,
          'anger': 1,
          'nthough': 1,
          'smokes': 1,
          'tomorrow': 1,
          'blows': 1,
          'minute': 1,
          'connection': 1,
          'made': 1,
          'swayed': 1,
          'allows': 1,
          'demented': 1,
          'ntime': 1,
          'things': 1,
          'add': 1,
          'fact': 1,
          'definately': 1,
          'hand': 1,
          'appreciate': 1,
          'campiness': 1,
          'hell': 1,
          'much': 1,
          'dont': 1,
          'mean': 1,
          'suggest': 1,
          'memorable': 1,
          'exercise': 1,
          'camp': 1,
          'neven': 1,
          'viewed': 1,
          'itssobaditsgood': 1,
          'angle': 1,
          'isnt': 1,
          'successful': 1,
          'moments': 1,
          'almost': 1,
          'involve': 1,
          'yancy': 1,
          'butler': 1,
          'psychotic': 1,
          'nick': 1,
          'mancuso': 1,
          'nthese': 1,
          'actors': 1,
          'decidedly': 1,
          'oftentimes': 1,
          'elicit': 1,
          'chuckles': 1,
          'truly': 1,
          'awful': 1,
          'written': 1,
          'help': 1,
          'along': 1,
          'nbutler': 1,
          'gets': 1,
          'larger': 1,
          'portion': 1,
          'someone': 1,
          'punchline': 1,
          'unbelievably': 1,
          'inane': 1,
          'nwhen': 1,
          'tenant': 1,
          'whacks': 1,
          'elderly': 1,
          'lady': 1,
          'crowbar': 1,
          'states': 1,
          'im': 1,
          'lease': 1,
          'terminated': 1,
          'takes': 1,
          'ridiculous': 1,
          'diedres': 1,
          'recommitted': 1,
          'decides': 1,
          'visit': 1,
          'alone': 1,
          'realizing': 1,
          'course': 1,
          'ntherapists': 1,
          'typically': 1,
          'catatonically': 1,
          'braindead': 1,
          'nhaving': 1,
          'successfully': 1,
          'snuffed': 1,
          'looks': 1,
          'body': 1,
          'says': 1,
          'always': 1,
          'end': 1,
          'session': 1,
          'dr': 1,
          'jones': 1,
          'noh': 1,
          'right': 1,
          'nthis': 1,
          'passes': 1,
          'laugh': 1,
          'suggests': 1,
          'believe': 1,
          'crap': 1,
          'although': 1,
          'nnick': 1,
          'mancusos': 1,
          'nervouswreck': 1,
          'cheesy': 1,
          'butlers': 1,
          'delivers': 1,
          'ridiculously': 1,
          'overdone': 1,
          'performance': 1,
          'provides': 1,
          'comic': 1,
          'relief': 1,
          'drags': 1,
          'cigarette': 1,
          'instance': 1,
          'best': 1,
          'scenes': 1,
          'tries': 1,
          'explain': 1,
          'lawyer': 1,
          'creep': 1,
          'exwife': 1,
          'exaggerated': 1,
          'exasperation': 1,
          'nearly': 1,
          'shouts': 1,
          'cuckoobird': 1,
          'trust': 1,
          'funny': 1,
          'context': 1,
          'nand': 1,
          'continues': 1,
          'painfully': 1,
          'obvious': 1,
          'conclusion': 1,
          'wont': 1,
          'reveal': 1,
          'anyone': 1,
          'remotely': 1,
          'familiar': 1,
          'thrillers': 1,
          'could': 1,
          'guess': 1,
          'review': 1,
          'say': 1,
          'biggest': 1,
          'fire': 1,
          'hazards': 1,
          'appearing': 1,
          'recently': 1,
          'cabin': 1,
          'becomes': 1,
          'engulfed': 1,
          'flames': 1,
          'approximately': 1,
          'seconds': 1,
          'point': 1,
          'notsobrilliantly': 1,
          'observes': 1,
          'discovering': 1,
          'moved': 1,
          'familys': 1,
          'upon': 1,
          'nyoud': 1,
          'pretty': 1,
          'youd': 1,
          'rented': 1,
          'nid': 1,
          'avoid': 1,
          'unless': 1,
          'tv': 1,
          'may': 1,
          'want': 1,
          'watch': 1,
          'punchlines': 1,
          'stupid': 1,
          'feel': 1,
          'good': 1,
          'didnt': 1,
          'money': 1,
          'renting': 1,
          'nneg': 1}),
 Counter({'film': 12,
          'first': 7,
          'blues': 6,
          'music': 6,
          'original': 6,
          'band': 6,
          'brothers': 4,
          'movie': 4,
          'packed': 3,
          'sequel': 3,
          'john': 3,
          'nthe': 3,
          'new': 3,
          'characters': 3,
          'theres': 3,
          'time': 3,
          'role': 3,
          'country': 3,
          'much': 3,
          'comedy': 2,
          'nit': 2,
          'belushis': 2,
          'eighteen': 2,
          'years': 2,
          'finally': 2,
          'nunfortunately': 2,
          'one': 2,
          'nelwood': 2,
          'aykroyd': 2,
          'getting': 2,
          'nas': 2,
          'mother': 2,
          'stigmata': 2,
          'njohn': 2,
          'although': 2,
          'fill': 2,
          'morton': 2,
          'cab': 2,
          'mighty': 2,
          'mack': 2,
          'goodman': 2,
          'bonifant': 2,
          'orphan': 2,
          'elwood': 2,
          'police': 2,
          'nin': 2,
          'plot': 2,
          'performance': 2,
          'like': 2,
          'ntheres': 2,
          'even': 2,
          'reverend': 2,
          'cleophus': 2,
          'prison': 2,
          'appearance': 2,
          'stars': 2,
          'yet': 2,
          'character': 2,
          'nand': 2,
          'wonderful': 1,
          'hilarious': 1,
          'good': 1,
          'cried': 1,
          'untimely': 1,
          'death': 1,
          'seemed': 1,
          'eliminate': 1,
          'idea': 1,
          'nhowever': 1,
          'passed': 1,
          'long': 1,
          'dormant': 1,
          'emerged': 1,
          'worthy': 1,
          'starts': 1,
          'exactly': 1,
          'ended': 1,
          'dan': 1,
          'jail': 1,
          'brother': 1,
          'jake': 1,
          'recently': 1,
          'died': 1,
          'visits': 1,
          'mary': 1,
          'kathleen': 1,
          'freeman': 1,
          'sets': 1,
          'back': 1,
          'together': 1,
          'absence': 1,
          'leaves': 1,
          'terrible': 1,
          'hole': 1,
          'three': 1,
          'created': 1,
          'void': 1,
          'still': 1,
          'noticeable': 1,
          'nfirst': 1,
          'cabel': 1,
          'joe': 1,
          'illegitimate': 1,
          'son': 1,
          'elwoods': 1,
          'stepfather': 1,
          'played': 1,
          'calloway': 1,
          'ncabel': 1,
          'reluctant': 1,
          'join': 1,
          'destiny': 1,
          'spends': 1,
          'illinois': 1,
          'sheriff': 1,
          'chasing': 1,
          'nnext': 1,
          'bartender': 1,
          'becomes': 1,
          'lead': 1,
          'singer': 1,
          'nfinally': 1,
          'buster': 1,
          'j': 1,
          'nevan': 1,
          'ten': 1,
          'year': 1,
          'old': 1,
          'tags': 1,
          'along': 1,
          'eventually': 1,
          'joins': 1,
          'plotting': 1,
          'hardly': 1,
          'nseems': 1,
          'almost': 1,
          'clone': 1,
          'go': 1,
          'reluctantly': 1,
          'retrieve': 1,
          'member': 1,
          'travel': 1,
          'pursued': 1,
          'perform': 1,
          'several': 1,
          'odd': 1,
          'stops': 1,
          'reach': 1,
          'big': 1,
          'concert': 1,
          'finale': 1,
          'neonazis': 1,
          'random': 1,
          'element': 1,
          'around': 1,
          'russian': 1,
          'mafia': 1,
          'militia': 1,
          'group': 1,
          'fact': 1,
          'duplication': 1,
          'ridiculously': 1,
          'complete': 1,
          'certain': 1,
          'scenes': 1,
          'practically': 1,
          'identical': 1,
          'nremember': 1,
          'classic': 1,
          'bobs': 1,
          'types': 1,
          'western': 1,
          'nwell': 1,
          'fair': 1,
          'expected': 1,
          'play': 1,
          'bluegrass': 1,
          'massive': 1,
          'car': 1,
          'pileup': 1,
          'gag': 1,
          'falls': 1,
          'completely': 1,
          'flat': 1,
          'exact': 1,
          'replica': 1,
          'conversion': 1,
          'scene': 1,
          'church': 1,
          'james': 1,
          'brown': 1,
          'nthere': 1,
          'plenty': 1,
          'recurring': 1,
          'addition': 1,
          'aretha': 1,
          'franklin': 1,
          'reprises': 1,
          'mrs': 1,
          'murphy': 1,
          'nfrank': 1,
          'oz': 1,
          'guard': 1,
          'makes': 1,
          'warden': 1,
          'dont': 1,
          'live': 1,
          'legacy': 1,
          'naykroyd': 1,
          'loquacious': 1,
          'flatter': 1,
          'barely': 1,
          'njoe': 1,
          'deepest': 1,
          'terribly': 1,
          'interesting': 1,
          'whats': 1,
          'deal': 1,
          'plays': 1,
          'desperate': 1,
          'gimmick': 1,
          'doesnt': 1,
          'mesh': 1,
          'rest': 1,
          'nat': 1,
          'least': 1,
          'isnt': 1,
          'precocious': 1,
          'could': 1,
          'nbut': 1,
          'true': 1,
          'star': 1,
          'saving': 1,
          'grace': 1,
          'ending': 1,
          'credits': 1,
          'nalthough': 1,
          'brilliant': 1,
          'mergers': 1,
          'song': 1,
          'originals': 1,
          'rawhidestand': 1,
          'man': 1,
          'medley': 1,
          'enjoyable': 1,
          'nto': 1,
          'top': 1,
          'gills': 1,
          'cameo': 1,
          'musician': 1,
          'appearances': 1,
          'nb': 1,
          'b': 1,
          'king': 1,
          'traveler': 1,
          'eric': 1,
          'clapton': 1,
          'travis': 1,
          'tritt': 1,
          'wilson': 1,
          'pickett': 1,
          'erykah': 1,
          'badu': 1,
          'bo': 1,
          'diddley': 1,
          'steve': 1,
          'winwood': 1,
          'sampling': 1,
          'multitude': 1,
          'make': 1,
          'pauses': 1,
          'allow': 1,
          'familiar': 1,
          'nif': 1,
          'simply': 1,
          'copying': 1,
          'wasnt': 1,
          'bad': 1,
          'enough': 1,
          'writers': 1,
          'landis': 1,
          'dumb': 1,
          'removing': 1,
          'memorable': 1,
          'replacing': 1,
          'flashy': 1,
          'unbelievable': 1,
          'magical': 1,
          'gimmicks': 1,
          'nits': 1,
          'shame': 1,
          'nbuy': 1,
          'soundtrack': 1,
          'avoid': 1,
          'nbetter': 1,
          'rewatch': 1,
          'youll': 1,
          'nhave': 1,
          'better': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'actors': 8,
          'nthe': 6,
          'science': 5,
          'fiction': 5,
          'novel': 4,
          'good': 4,
          'really': 4,
          'alien': 4,
          'team': 4,
          'effects': 4,
          'crichton': 3,
          'adaptation': 3,
          'nit': 3,
          'much': 3,
          '4': 3,
          'michael': 2,
          'long': 2,
          'profitable': 2,
          'make': 2,
          'bigbudget': 2,
          'sphere': 2,
          'better': 2,
          'little': 2,
          'makes': 2,
          'dustin': 2,
          'hoffman': 2,
          'samuel': 2,
          'l': 2,
          'jackson': 2,
          'sharon': 2,
          'stone': 2,
          'less': 2,
          'plan': 2,
          'investigate': 2,
          'spacecraft': 2,
          'pacific': 2,
          'spaceship': 2,
          'performances': 2,
          'levinson': 2,
          'rather': 2,
          'special': 2,
          'could': 2,
          'requires': 2,
          'seems': 2,
          'get': 2,
          'nlevinson': 2,
          'price': 2,
          'spectaculars': 2,
          'secondtier': 2,
          'firsttier': 2,
          '0': 2,
          'scale': 2,
          'career': 1,
          'writing': 1,
          'novels': 1,
          'many': 1,
          'nso': 1,
          'logic': 1,
          'industry': 1,
          'way': 1,
          'would': 1,
          'another': 1,
          'ncongo': 1,
          'failed': 1,
          'afraid': 1,
          'probably': 1,
          'going': 1,
          'fare': 1,
          'whole': 1,
          'lot': 1,
          'okay': 1,
          'even': 1,
          'expensive': 1,
          'one': 1,
          'hundred': 1,
          'million': 1,
          'dollars': 1,
          '133': 1,
          'minutes': 1,
          'terrific': 1,
          'cast': 1,
          'including': 1,
          'original': 1,
          'exciting': 1,
          'nseveral': 1,
          'years': 1,
          'ago': 1,
          'dr': 1,
          'norman': 1,
          'goodman': 1,
          'played': 1,
          'asked': 1,
          'write': 1,
          'set': 1,
          'procedures': 1,
          'government': 1,
          'follow': 1,
          'entity': 1,
          'actually': 1,
          'encountered': 1,
          'wrote': 1,
          'semiserious': 1,
          'explicitly': 1,
          'define': 1,
          'experts': 1,
          'nnow': 1,
          'assembled': 1,
          'mysterious': 1,
          'leader': 1,
          'named': 1,
          'barnes': 1,
          'peter': 1,
          'coyote': 1,
          'study': 1,
          'almost': 1,
          'half': 1,
          'mile': 1,
          'length': 1,
          'apparently': 1,
          'dropped': 1,
          'ocean': 1,
          'early': 1,
          '1700s': 1,
          'nsuddenly': 1,
          'normans': 1,
          'serious': 1,
          'procedure': 1,
          'become': 1,
          'action': 1,
          'dealing': 1,
          'real': 1,
          'nincluded': 1,
          'mathematician': 1,
          'harry': 1,
          'adams': 1,
          'biologist': 1,
          'beth': 1,
          'halperin': 1,
          'astrophysicist': 1,
          'ted': 1,
          'fielding': 1,
          'liev': 1,
          'schreiber': 1,
          'ntogether': 1,
          'travel': 1,
          'deep': 1,
          'understand': 1,
          'secrets': 1,
          'none': 1,
          'major': 1,
          'secret': 1,
          'meaning': 1,
          'huge': 1,
          'goldtoned': 1,
          'liquid': 1,
          'metal': 1,
          'heart': 1,
          'nwhat': 1,
          'disappointing': 1,
          'effective': 1,
          'ndirector': 1,
          'barry': 1,
          'best': 1,
          'problem': 1,
          'making': 1,
          'intriguing': 1,
          'effect': 1,
          'shows': 1,
          'outline': 1,
          'radar': 1,
          'screen': 1,
          'technique': 1,
          'suggest': 1,
          'show': 1,
          'let': 1,
          'viewers': 1,
          'imagination': 1,
          'carry': 1,
          'robert': 1,
          'wise': 1,
          'haunting': 1,
          'nthat': 1,
          'reasonable': 1,
          'approach': 1,
          'lowbudget': 1,
          'nbut': 1,
          'creating': 1,
          'atmosphere': 1,
          'manage': 1,
          'muster': 1,
          'give': 1,
          'compelling': 1,
          'simply': 1,
          'put': 1,
          'dont': 1,
          'nhoffmans': 1,
          'acting': 1,
          'muted': 1,
          'njackson': 1,
          'laid': 1,
          'back': 1,
          'nwe': 1,
          'feel': 1,
          'characters': 1,
          'inside': 1,
          'heads': 1,
          'paid': 1,
          'big': 1,
          'bucks': 1,
          'performance': 1,
          'nand': 1,
          'queen': 1,
          'latifah': 1,
          'minor': 1,
          'functionary': 1,
          'expedition': 1,
          'anybodys': 1,
          'guess': 1,
          'ncast': 1,
          'unknowns': 1,
          'delivered': 1,
          'emotional': 1,
          'impact': 1,
          'fraction': 1,
          'nlook': 1,
          'powerful': 1,
          'like': 1,
          'moderate': 1,
          'nmost': 1,
          'days': 1,
          'tries': 1,
          'never': 1,
          'exchange': 1,
          'pay': 1,
          'viewer': 1,
          'nperhaps': 1,
          'scifi': 1,
          'medium': 1,
          'result': 1,
          'gets': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'pie': 5,
          '2': 5,
          'nit': 4,
          'american': 3,
          'laughs': 3,
          'nbut': 3,
          'upon': 3,
          'sequel': 3,
          'original': 3,
          'women': 3,
          'nthe': 3,
          'built': 2,
          'adolescent': 2,
          'humor': 2,
          'along': 2,
          'quartet': 2,
          'jim': 2,
          'oz': 2,
          'thomas': 2,
          'year': 2,
          'first': 2,
          'college': 2,
          'nothing': 2,
          'two': 2,
          'young': 2,
          'film': 2,
          'sex': 2,
          'still': 2,
          'involving': 2,
          'namerican': 2,
          'filled': 1,
          'mostly': 1,
          'cheap': 1,
          'ones': 1,
          'primarily': 1,
          'sexual': 1,
          'degradation': 1,
          'fit': 1,
          'locker': 1,
          'room': 1,
          'movie': 1,
          'theater': 1,
          'nim': 1,
          'prude': 1,
          'admit': 1,
          'laughing': 1,
          'everyone': 1,
          'else': 1,
          'preview': 1,
          'screening': 1,
          '1999': 1,
          'hit': 1,
          'comedy': 1,
          'discomfort': 1,
          'embarrassment': 1,
          'intrinsic': 1,
          'within': 1,
          'story': 1,
          'nwhat': 1,
          'separates': 1,
          'predecessor': 1,
          'heart': 1,
          'nof': 1,
          'noted': 1,
          'warm': 1,
          'pleasant': 1,
          'outing': 1,
          'travails': 1,
          'growing': 1,
          'nwell': 1,
          'chums': 1,
          'jason': 1,
          'biggs': 1,
          'chris': 1,
          'klein': 1,
          'kevin': 1,
          'ian': 1,
          'nicholas': 1,
          'finch': 1,
          'eddie': 1,
          'kaye': 1,
          'grown': 1,
          'nat': 1,
          'least': 1,
          'older': 1,
          'dont': 1,
          'seem': 1,
          'wiser': 1,
          'nfresh': 1,
          'obnoxious': 1,
          'stifler': 1,
          'seann': 1,
          'william': 1,
          'scott': 1,
          'rent': 1,
          'summer': 1,
          'house': 1,
          'lake': 1,
          'order': 1,
          'attract': 1,
          'girls': 1,
          'attempt': 1,
          'score': 1,
          'nas': 1,
          'usual': 1,
          'goes': 1,
          'right': 1,
          'last': 1,
          'reel': 1,
          'left': 1,
          'five': 1,
          'guys': 1,
          'spending': 1,
          'nearly': 1,
          'hours': 1,
          'drooling': 1,
          'various': 1,
          'nand': 1,
          'rather': 1,
          'degrading': 1,
          'nfor': 1,
          'part': 1,
          'shown': 1,
          'individuals': 1,
          'nthey': 1,
          'potential': 1,
          'recipients': 1,
          'overactive': 1,
          'raging': 1,
          'hormones': 1,
          'telling': 1,
          'normal': 1,
          'couple': 1,
          'heather': 1,
          'mena': 1,
          'suvari': 1,
          'spend': 1,
          'bulk': 1,
          'trying': 1,
          'phone': 1,
          'shes': 1,
          'overseas': 1,
          'exchange': 1,
          'student': 1,
          'program': 1,
          'ndespite': 1,
          'klutzy': 1,
          'awkward': 1,
          'unsure': 1,
          'around': 1,
          'opposite': 1,
          'nmost': 1,
          'pratfalls': 1,
          'humiliations': 1,
          'heaped': 1,
          'including': 1,
          'painful': 1,
          'episode': 1,
          'instant': 1,
          'gluelike': 1,
          'substance': 1,
          'nalso': 1,
          'uncomfortable': 1,
          'watch': 1,
          'sequence': 1,
          'three': 1,
          'lads': 1,
          'roommates': 1,
          'boys': 1,
          'suspect': 1,
          'lesbians': 1,
          'offensive': 1,
          'plays': 1,
          'outdated': 1,
          'stereotypes': 1,
          'generate': 1,
          'despite': 1,
          'raunchy': 1,
          'moments': 1,
          'innocent': 1,
          'charm': 1,
          'cynical': 1,
          'knows': 1,
          'predominantly': 1,
          'male': 1,
          'audience': 1,
          'members': 1,
          'want': 1,
          'unabashedly': 1,
          'gives': 1,
          'many': 1,
          'mentions': 1,
          'finchs': 1,
          'encounter': 1,
          'stiflers': 1,
          'mom': 1,
          'becomes': 1,
          'tiresome': 1,
          'running': 1,
          'gag': 1,
          'throughout': 1,
          'eugene': 1,
          'levys': 1,
          'return': 1,
          'jims': 1,
          'wellmeaning': 1,
          'tryingtobehip': 1,
          'dad': 1,
          'performer': 1,
          'actually': 1,
          'given': 1,
          'new': 1,
          'fresh': 1,
          'material': 1,
          'alyson': 1,
          'hannigan': 1,
          'michelle': 1,
          'band': 1,
          'geek': 1,
          'nin': 1,
          'imbues': 1,
          'character': 1,
          'vulnerability': 1,
          'wisdom': 1,
          'maturity': 1,
          'presold': 1,
          'commodity': 1,
          'earn': 1,
          'several': 1,
          'million': 1,
          'box': 1,
          'office': 1,
          'shame': 1,
          'though': 1,
          'rush': 1,
          'rake': 1,
          'bucks': 1,
          'screenwriter': 1,
          'adam': 1,
          'herz': 1,
          'also': 1,
          'penned': 1,
          'could': 1,
          'set': 1,
          'sights': 1,
          'higher': 1,
          'funny': 1,
          'comedown': 1,
          'well': 1,
          'letdown': 1,
          'nneg': 1}),
 Counter({'snake': 14,
          'film': 6,
          'anaconda': 6,
          'characters': 6,
          'movie': 5,
          'nin': 5,
          'crew': 4,
          'dont': 4,
          'get': 4,
          'scene': 4,
          'see': 4,
          'maybe': 3,
          'cale': 3,
          'find': 3,
          'sarone': 3,
          'know': 3,
          'seems': 3,
          'must': 3,
          'everyone': 3,
          'else': 3,
          'monster': 3,
          'real': 3,
          'one': 3,
          'showdown': 3,
          'actually': 3,
          'us': 3,
          'big': 2,
          'eats': 2,
          'would': 2,
          'ended': 2,
          'along': 2,
          'flores': 2,
          'voight': 2,
          'capture': 2,
          'nto': 2,
          'since': 2,
          'nif': 2,
          'good': 2,
          'reason': 2,
          'nat': 2,
          'relationship': 2,
          'fact': 2,
          'back': 2,
          'nthis': 2,
          'sense': 2,
          'nhowever': 2,
          'better': 2,
          'bad': 2,
          'hard': 2,
          'supposed': 2,
          'really': 2,
          'hes': 2,
          'nno': 2,
          'theres': 2,
          'snakes': 2,
          'films': 2,
          'early': 2,
          'like': 2,
          'something': 2,
          'danger': 2,
          'saw': 2,
          'decoy': 2,
          'waiting': 2,
          'make': 2,
          'well': 1,
          'going': 1,
          'expect': 1,
          'nits': 1,
          'people': 1,
          'nthats': 1,
          'thinking': 1,
          'viewed': 1,
          'enjoyed': 1,
          'ninstead': 1,
          'wishing': 1,
          'giant': 1,
          'come': 1,
          'eat': 1,
          'nanaconda': 1,
          'documentary': 1,
          'sailing': 1,
          'south': 1,
          'american': 1,
          'river': 1,
          'nled': 1,
          'anthropologists': 1,
          'dr': 1,
          'steven': 1,
          'eric': 1,
          'stolz': 1,
          'terri': 1,
          'jennifer': 1,
          'lopez': 1,
          'attempting': 1,
          'locate': 1,
          'lost': 1,
          'tribe': 1,
          'natives': 1,
          'nalong': 1,
          'way': 1,
          'poacher': 1,
          'paul': 1,
          'jon': 1,
          'become': 1,
          'unwillingly': 1,
          'embroiled': 1,
          'quest': 1,
          'elusive': 1,
          'simply': 1,
          'say': 1,
          'worlds': 1,
          'largest': 1,
          'wouldnt': 1,
          'justice': 1,
          'least': 1,
          'two': 1,
          'feet': 1,
          'wide': 1,
          'isnt': 1,
          'avoid': 1,
          'picking': 1,
          'hitchhikers': 1,
          'beginning': 1,
          'kind': 1,
          'past': 1,
          'less': 1,
          'ni': 1,
          'expected': 1,
          'play': 1,
          'key': 1,
          'part': 1,
          'somewhere': 1,
          'line': 1,
          'setup': 1,
          'nothing': 1,
          'ncale': 1,
          'chokes': 1,
          'deadly': 1,
          'wasp': 1,
          'ask': 1,
          'happens': 1,
          'put': 1,
          'action': 1,
          'relegated': 1,
          'person': 1,
          'rest': 1,
          'civilization': 1,
          'medical': 1,
          'help': 1,
          'minimally': 1,
          'helps': 1,
          'add': 1,
          'urgency': 1,
          'plot': 1,
          'goal': 1,
          'comes': 1,
          'direct': 1,
          'conflict': 1,
          'sarones': 1,
          'plan': 1,
          'negated': 1,
          'halfway': 1,
          'event': 1,
          'still': 1,
          'results': 1,
          'zero': 1,
          'payoff': 1,
          'angle': 1,
          'nmost': 1,
          'either': 1,
          'annoying': 1,
          'stupid': 1,
          'theyre': 1,
          'nsince': 1,
          'description': 1,
          'applies': 1,
          'except': 1,
          'someone': 1,
          'root': 1,
          'nyoure': 1,
          'guys': 1,
          'end': 1,
          'cheering': 1,
          'smarter': 1,
          'dumb': 1,
          'times': 1,
          'almost': 1,
          'found': 1,
          'rooting': 1,
          'nthere': 1,
          'standout': 1,
          'performances': 1,
          'neveryone': 1,
          'reciting': 1,
          'lines': 1,
          'written': 1,
          'stock': 1,
          'neven': 1,
          'appears': 1,
          'best': 1,
          'impression': 1,
          'christopher': 1,
          'walken': 1,
          'matter': 1,
          'movies': 1,
          'star': 1,
          'anyway': 1,
          'scenes': 1,
          'computer': 1,
          'generated': 1,
          'effects': 1,
          'decent': 1,
          'job': 1,
          'making': 1,
          'look': 1,
          'realism': 1,
          'thrown': 1,
          'pretty': 1,
          'unrealistic': 1,
          'occurrences': 1,
          'nsometimes': 1,
          'example': 1,
          'moves': 1,
          'fast': 1,
          'nit': 1,
          'catches': 1,
          'guy': 1,
          'jumping': 1,
          'waterfall': 1,
          'crying': 1,
          'loud': 1,
          'nthen': 1,
          'another': 1,
          'skin': 1,
          'drawn': 1,
          'tightly': 1,
          'prey': 1,
          'victims': 1,
          'pained': 1,
          'expression': 1,
          'within': 1,
          'belly': 1,
          'nabsolutely': 1,
          'ridiculous': 1,
          'na': 1,
          'testimony': 1,
          'direction': 1,
          'inclusion': 1,
          'dangerous': 1,
          'mighty': 1,
          'totally': 1,
          'unrelated': 1,
          'anything': 1,
          'witness': 1,
          'winning': 1,
          'panther': 1,
          'nthe': 1,
          'wraps': 1,
          'around': 1,
          'powerful': 1,
          'feline': 1,
          'stuffed': 1,
          'animal': 1,
          'squeezes': 1,
          'panthers': 1,
          'eyeballs': 1,
          'pops': 1,
          'neeeewwwww': 1,
          'nabove': 1,
          'beyond': 1,
          'sick': 1,
          'factor': 1,
          'however': 1,
          'surprised': 1,
          'showed': 1,
          'face': 1,
          'quarter': 1,
          'even': 1,
          'passed': 1,
          'mystery': 1,
          'surrounding': 1,
          'maintained': 1,
          'reacting': 1,
          'fear': 1,
          'audience': 1,
          'experience': 1,
          'feeling': 1,
          'show': 1,
          'let': 1,
          'therefore': 1,
          'allow': 1,
          'used': 1,
          'pivotal': 1,
          'moment': 1,
          'man': 1,
          'beast': 1,
          'climactic': 1,
          'case': 1,
          'ends': 1,
          'letdown': 1,
          'nwhen': 1,
          'first': 1,
          'time': 1,
          'decided': 1,
          'give': 1,
          'benefit': 1,
          'doubt': 1,
          'assume': 1,
          'wasnt': 1,
          'bigger': 1,
          'appearance': 1,
          'thought': 1,
          'safe': 1,
          'luck': 1,
          'nokay': 1,
          'debut': 1,
          'nneg': 1}),
 Counter({'film': 1,
          'extraordinarily': 1,
          'horrendous': 1,
          'im': 1,
          'going': 1,
          'waste': 1,
          'words': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'anaconda': 6,
          'movie': 5,
          'crew': 5,
          'snake': 4,
          'stoltz': 4,
          'voight': 4,
          'documentary': 3,
          'n': 3,
          'monster': 3,
          'like': 3,
          'clown': 3,
          'nthe': 3,
          'giant': 3,
          'special': 3,
          'look': 3,
          'nbut': 3,
          'one': 3,
          'around': 3,
          'lopez': 2,
          'says': 2,
          'would': 2,
          'break': 2,
          'lousy': 2,
          'nits': 2,
          'manage': 2,
          'way': 2,
          'jackinthebox': 2,
          'mildly': 2,
          'effects': 2,
          'appear': 2,
          'shots': 2,
          'phony': 2,
          'scenes': 2,
          'shot': 2,
          'character': 2,
          'really': 2,
          'time': 2,
          'story': 2,
          'eric': 2,
          'river': 2,
          'shirishama': 2,
          'members': 2,
          'jon': 2,
          'throw': 2,
          'away': 2,
          'point': 2,
          'jaws': 2,
          'cube': 2,
          'horror': 2,
          'midway': 1,
          'filmmaker': 1,
          'terri': 1,
          'flores': 1,
          'jennifer': 1,
          'turns': 1,
          'coworker': 1,
          'thought': 1,
          'first': 1,
          'big': 1,
          'ninstead': 1,
          'turned': 1,
          'disaster': 1,
          'ntruer': 1,
          'words': 1,
          'never': 1,
          'spoken': 1,
          'suspense': 1,
          'utterly': 1,
          'predictable': 1,
          'mess': 1,
          'drum': 1,
          'scares': 1,
          'elementary': 1,
          'nas': 1,
          'turn': 1,
          'crank': 1,
          'youre': 1,
          'totally': 1,
          'aware': 1,
          'damn': 1,
          'going': 1,
          'pop': 1,
          'somehow': 1,
          'still': 1,
          'startling': 1,
          'happens': 1,
          'main': 1,
          'difference': 1,
          'realistic': 1,
          'boasts': 1,
          'worst': 1,
          'onscreen': 1,
          'years': 1,
          'nanimatronic': 1,
          'cringe': 1,
          'inducing': 1,
          'robots': 1,
          'youve': 1,
          'endured': 1,
          'disney': 1,
          'world': 1,
          'computer': 1,
          'animated': 1,
          'truly': 1,
          'expand': 1,
          'meaning': 1,
          'word': 1,
          'lame': 1,
          'nin': 1,
          'tries': 1,
          'flee': 1,
          'diving': 1,
          'tree': 1,
          'near': 1,
          'waterfall': 1,
          'springs': 1,
          'loops': 1,
          'hapless': 1,
          'victim': 1,
          'mid': 1,
          'air': 1,
          'scene': 1,
          'done': 1,
          'well': 1,
          'jaw': 1,
          'dropper': 1,
          'nhere': 1,
          'horribly': 1,
          'bad': 1,
          'digital': 1,
          'less': 1,
          'convincing': 1,
          'saturday': 1,
          'morning': 1,
          'cartoon': 1,
          'nwhats': 1,
          'amazing': 1,
          'filmmakers': 1,
          'proud': 1,
          'dreadful': 1,
          'actually': 1,
          'included': 1,
          'promotional': 1,
          'trailers': 1,
          'enough': 1,
          'snakes': 1,
          'nnow': 1,
          'talk': 1,
          'nheroic': 1,
          'pale': 1,
          'anthropologist': 1,
          'leads': 1,
          'brazilian': 1,
          'search': 1,
          'indians': 1,
          'legendary': 1,
          'tribe': 1,
          'supposedly': 1,
          'lives': 1,
          'boondocks': 1,
          'rain': 1,
          'forest': 1,
          'nstoltz': 1,
          'tells': 1,
          'pray': 1,
          'didnt': 1,
          'forget': 1,
          'bug': 1,
          'spray': 1,
          'napparently': 1,
          'female': 1,
          'bathed': 1,
          'stuff': 1,
          'spend': 1,
          'wearing': 1,
          'skimpy': 1,
          'tops': 1,
          'short': 1,
          'shorts': 1,
          'ill': 1,
          'effect': 1,
          'nalong': 1,
          'group': 1,
          'rescues': 1,
          'whackedout': 1,
          'lapsed': 1,
          'priest': 1,
          'claims': 1,
          'know': 1,
          'find': 1,
          'nwithin': 1,
          'minutes': 1,
          'plans': 1,
          'follow': 1,
          'tributary': 1,
          'land': 1,
          'creepiness': 1,
          'nfrom': 1,
          'hodgepodge': 1,
          'ripped': 1,
          'dead': 1,
          'calm': 1,
          'none': 1,
          'oddest': 1,
          'structural': 1,
          'points': 1,
          'handling': 1,
          'nearly': 1,
          'gets': 1,
          'knocked': 1,
          'coma': 1,
          'insect': 1,
          'spends': 1,
          'virtually': 1,
          'rest': 1,
          'unconscious': 1,
          'nso': 1,
          'hire': 1,
          'actor': 1,
          'caliber': 1,
          'amounts': 1,
          'cameo': 1,
          'appearance': 1,
          'nalso': 1,
          'generally': 1,
          'selects': 1,
          'roles': 1,
          'great': 1,
          'care': 1,
          'agree': 1,
          'crap': 1,
          'nah': 1,
          'mysteries': 1,
          'hollywood': 1,
          'remaining': 1,
          'basically': 1,
          'food': 1,
          'waiting': 1,
          'happen': 1,
          'njonathan': 1,
          'hyde': 1,
          'diverting': 1,
          'pompous': 1,
          'englishman': 1,
          'hired': 1,
          'narrate': 1,
          'ice': 1,
          'rise': 1,
          'cardboard': 1,
          'characters': 1,
          'nlopez': 1,
          'starred': 1,
          'selena': 1,
          'enormously': 1,
          'appealing': 1,
          'performer': 1,
          'possessing': 1,
          'vibrancy': 1,
          'makes': 1,
          'even': 1,
          'trite': 1,
          'lines': 1,
          'seem': 1,
          'credible': 1,
          'nice': 1,
          'charisma': 1,
          'ability': 1,
          'macho': 1,
          'adult': 1,
          'frightened': 1,
          'boy': 1,
          'simultaneously': 1,
          'ntheres': 1,
          'also': 1,
          'twinkle': 1,
          'eyes': 1,
          'hes': 1,
          'gently': 1,
          'mocking': 1,
          'toughguy': 1,
          'posturing': 1,
          'centers': 1,
          'outrageously': 1,
          'hammy': 1,
          'performance': 1,
          'nobsessed': 1,
          'capturing': 1,
          'anacondas': 1,
          'plays': 1,
          'villain': 1,
          'thick': 1,
          'accent': 1,
          'series': 1,
          'leers': 1,
          'hisses': 1,
          'spouting': 1,
          'kind': 1,
          'dialogue': 1,
          'usually': 1,
          'heard': 1,
          'episodes': 1,
          'jonny': 1,
          'quest': 1,
          'nat': 1,
          'looms': 1,
          'perfect': 1,
          'killing': 1,
          'machine': 1,
          'nit': 1,
          'strikes': 1,
          'wraps': 1,
          'holds': 1,
          'tighter': 1,
          'true': 1,
          'love': 1,
          'nand': 1,
          'get': 1,
          'privilege': 1,
          'hearing': 1,
          'bones': 1,
          'power': 1,
          'embrace': 1,
          'causes': 1,
          'veins': 1,
          'explode': 1,
          'moment': 1,
          'highcamp': 1,
          'almost': 1,
          'made': 1,
          'tolerable': 1,
          'nalmost': 1,
          'nfans': 1,
          'genre': 1,
          'may': 1,
          'tempted': 1,
          'check': 1,
          'ndont': 1,
          'nthere': 1,
          'lots': 1,
          'films': 1,
          'scheduled': 1,
          'release': 1,
          'summer': 1,
          'including': 1,
          'another': 1,
          'alien': 1,
          'sequel': 1,
          'nwait': 1,
          'rent': 1,
          'meantime': 1,
          'dont': 1,
          'money': 1,
          'drivel': 1,
          'nneg': 1}),
 Counter({'n': 5,
          'wedding': 3,
          'singer': 3,
          'nthe': 3,
          'nostalgia': 2,
          'seems': 2,
          'nand': 2,
          'robbie': 2,
          'adam': 2,
          'sandler': 2,
          'julia': 2,
          'robbies': 2,
          'fiance': 2,
          'billy': 2,
          'idol': 2,
          'supposed': 2,
          'notice': 2,
          '70s': 1,
          'didnt': 1,
          'make': 1,
          'feel': 1,
          'old': 1,
          '80s': 1,
          'bound': 1,
          'none': 1,
          'latter': 1,
          'set': 1,
          'written': 1,
          'someone': 1,
          'experience': 1,
          '1980s': 1,
          'directly': 1,
          'read': 1,
          'article': 1,
          'parade': 1,
          'magazine': 1,
          'wacky': 1,
          'fashions': 1,
          'music': 1,
          'references': 1,
          'aplenty': 1,
          'celebrities': 1,
          'signs': 1,
          'times': 1,
          'tediouslyand': 1,
          'obviouslyinserted': 1,
          'didntwedressfunnybackthen': 1,
          'chuckle': 1,
          'plot': 1,
          'standard': 1,
          'romantic': 1,
          'comedy': 1,
          'nothing': 1,
          'original': 1,
          'drew': 1,
          'barrymore': 1,
          'waits': 1,
          'tables': 1,
          'weddings': 1,
          'nboth': 1,
          'engaged': 1,
          'however': 1,
          'angela': 1,
          'featherstone': 1,
          'dumps': 1,
          'altar': 1,
          'julias': 1,
          'matthew': 1,
          'glave': 1,
          'skirtchasing': 1,
          'speculator': 1,
          'junk': 1,
          'bonds': 1,
          'nrobbie': 1,
          'go': 1,
          'expected': 1,
          'upsanddowns': 1,
          'realize': 1,
          'meant': 1,
          'together': 1,
          'nill': 1,
          'fess': 1,
          'upive': 1,
          'never': 1,
          'found': 1,
          'funny': 1,
          'nwhatever': 1,
          'appeal': 1,
          'ive': 1,
          'missed': 1,
          'comedians': 1,
          'dont': 1,
          'get': 1,
          'include': 1,
          'pauly': 1,
          'shore': 1,
          'pee': 1,
          'wee': 1,
          'hermanmake': 1,
          'judgments': 1,
          'stupidity': 1,
          'artificiality': 1,
          'whole': 1,
          'project': 1,
          'summarized': 1,
          'cameo': 1,
          'nidol': 1,
          'looks': 1,
          'like': 1,
          'hell': 1,
          'ravages': 1,
          'lifestyle': 1,
          'barely': 1,
          'concealed': 1,
          'thick': 1,
          'makeup': 1,
          'nhes': 1,
          'mocked': 1,
          'photo': 1,
          'younger': 1,
          'self': 1,
          'rolling': 1,
          'stone': 1,
          'cover': 1,
          'scene': 1,
          'nwere': 1,
          'silly': 1,
          'suddenly': 1,
          'appears': 1,
          'play': 1,
          'fairy': 1,
          'godmother': 1,
          'nother': 1,
          'cameos': 1,
          'steve': 1,
          'buscemi': 1,
          'jon': 1,
          'lovitz': 1,
          'provide': 1,
          'real': 1,
          'laughs': 1,
          'movie': 1,
          'nlovitz': 1,
          'especially': 1,
          'good': 1,
          'playing': 1,
          'rival': 1,
          'plotting': 1,
          'mania': 1,
          'bond': 1,
          'villain': 1,
          'take': 1,
          'advantage': 1,
          'postbreakup': 1,
          'depression': 1,
          'nneg': 1}),
 Counter({'sex': 5,
          'thanksgiving': 4,
          'daniel': 3,
          'time': 3,
          'us': 3,
          'rich': 2,
          'family': 2,
          'mansion': 2,
          'basement': 2,
          'shoot': 2,
          'else': 2,
          'one': 2,
          'nfor': 2,
          'however': 2,
          'milano': 2,
          'like': 2,
          'icet': 2,
          'nthis': 2,
          'alyssa': 2,
          'nit': 2,
          'people': 2,
          'synopsis': 1,
          'nice': 1,
          'girl': 1,
          'susanne': 1,
          'boyfriend': 1,
          'car': 1,
          'visits': 1,
          'daniels': 1,
          'middle': 1,
          'nowhere': 1,
          'nsusanne': 1,
          'must': 1,
          'decide': 1,
          'hide': 1,
          'evil': 1,
          'art': 1,
          'thieves': 1,
          'everyone': 1,
          'steal': 1,
          'paintings': 1,
          'nbrace': 1,
          'painfully': 1,
          'obvious': 1,
          'surprise': 1,
          'endings': 1,
          'ncomments': 1,
          'loved': 1,
          'ones': 1,
          'enjoy': 1,
          'good': 1,
          'homecooked': 1,
          'meal': 1,
          'makers': 1,
          'body': 1,
          'count': 1,
          'multiple': 1,
          'murders': 1,
          'violence': 1,
          'profanity': 1,
          'dysfunction': 1,
          'nboy': 1,
          'feel': 1,
          'better': 1,
          'sat': 1,
          'crap': 1,
          'nalyssa': 1,
          'former': 1,
          'child': 1,
          'star': 1,
          'whos': 1,
          'boss': 1,
          'matures': 1,
          'madeforvideo': 1,
          'sludge': 1,
          'movie': 1,
          'nsomeone': 1,
          'somewhere': 1,
          'thought': 1,
          'itd': 1,
          'great': 1,
          'idea': 1,
          'pair': 1,
          'rapper': 1,
          'since': 1,
          'gueststarred': 1,
          'madeforthescifichannel': 1,
          'series': 1,
          'welcome': 1,
          'paradox': 1,
          'isnt': 1,
          'exactly': 1,
          'winning': 1,
          'combination': 1,
          'noutside': 1,
          'permanently': 1,
          'ruining': 1,
          'holiday': 1,
          'may': 1,
          'said': 1,
          'turkey': 1,
          'nwell': 1,
          'teaches': 1,
          'beautiful': 1,
          'attractive': 1,
          'women': 1,
          'look': 1,
          'strikingly': 1,
          'fall': 1,
          'love': 1,
          'nerds': 1,
          'drive': 1,
          'long': 1,
          'winding': 1,
          'roads': 1,
          'eyes': 1,
          'closed': 1,
          'complain': 1,
          'english': 1,
          'teachers': 1,
          'presents': 1,
          'heartwarming': 1,
          'dinner': 1,
          'attended': 1,
          'alcoholic': 1,
          'stuckup': 1,
          'white': 1,
          'waited': 1,
          'black': 1,
          'servants': 1,
          'shows': 1,
          'old': 1,
          'guys': 1,
          'try': 1,
          'laugh': 1,
          'sit': 1,
          'around': 1,
          'talk': 1,
          'appeal': 1,
          'postmodernism': 1,
          'free': 1,
          'nand': 1,
          'proves': 1,
          'parents': 1,
          'dozen': 1,
          'guests': 1,
          'notice': 1,
          'nbefore': 1,
          'go': 1,
          'young': 1,
          'male': 1,
          'reading': 1,
          'hopes': 1,
          'seeing': 1,
          'naked': 1,
          'forget': 1,
          'nthe': 1,
          'filmmakers': 1,
          'cleverly': 1,
          'simulated': 1,
          'scenes': 1,
          'manner': 1,
          'makes': 1,
          'sure': 1,
          'dont': 1,
          'see': 1,
          'milanos': 1,
          'attributes': 1,
          'nthey': 1,
          'inexplicably': 1,
          'throw': 1,
          'scene': 1,
          'whistles': 1,
          'jingle': 1,
          'bells': 1,
          'killing': 1,
          'whatever': 1,
          'thats': 1,
          'worth': 1,
          'film': 1,
          'originally': 1,
          'titled': 1,
          'utopia': 1,
          'nperhaps': 1,
          'renamed': 1,
          'hell': 1,
          'navoid': 1,
          'clunker': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'funny': 4,
          'time': 4,
          'isnt': 4,
          'sure': 3,
          'review': 3,
          'one': 3,
          'wcw': 3,
          'plot': 3,
          'actors': 3,
          'going': 3,
          'quite': 2,
          'nwell': 2,
          'sat': 2,
          'wondering': 2,
          '107': 2,
          'like': 2,
          'forever': 2,
          'fact': 2,
          'could': 2,
          'unfunniest': 2,
          'movie': 2,
          'long': 2,
          'ready': 2,
          'rumble': 2,
          'david': 2,
          'scott': 2,
          'king': 2,
          'films': 2,
          'sadly': 2,
          'script': 2,
          'much': 2,
          'nim': 2,
          'anything': 2,
          'well': 1,
          'lets': 1,
          'see': 1,
          'im': 1,
          'nnot': 1,
          'based': 1,
          'laughter': 1,
          'factor': 1,
          'yeah': 1,
          'nok': 1,
          'laughed': 1,
          'warranted': 1,
          '12': 1,
          'star': 1,
          'seat': 1,
          'pos': 1,
          'would': 1,
          'running': 1,
          'minutes': 1,
          'seemed': 1,
          'nin': 1,
          'ive': 1,
          'seen': 1,
          'nlet': 1,
          'first': 1,
          'say': 1,
          'huge': 1,
          'disappointment': 1,
          'nlong': 1,
          'wrestling': 1,
          'lovers': 1,
          'dream': 1,
          'making': 1,
          'watching': 1,
          'jimmy': 1,
          'wrestle': 1,
          'nthat': 1,
          'hero': 1,
          'course': 1,
          'kicked': 1,
          'thickens': 1,
          'lol': 1,
          'two': 1,
          'wish': 1,
          'rescue': 1,
          'put': 1,
          'back': 1,
          'easily': 1,
          'tampered': 1,
          'many': 1,
          'people': 1,
          'get': 1,
          'davids': 1,
          'father': 1,
          'wants': 1,
          'become': 1,
          'police': 1,
          'officer': 1,
          'loser': 1,
          'help': 1,
          'clean': 1,
          'johnny': 1,
          'spots': 1,
          'nwhat': 1,
          'eh': 1,
          'n': 1,
          'tries': 1,
          'fails': 1,
          'miserably': 1,
          'everything': 1,
          'imcomprehinsable': 1,
          'even': 1,
          'trailer': 1,
          'wasnt': 1,
          'nthe': 1,
          'dull': 1,
          'awful': 1,
          'really': 1,
          'nannoying': 1,
          'great': 1,
          'given': 1,
          'lame': 1,
          'directed': 1,
          'childish': 1,
          'manner': 1,
          'wonder': 1,
          'hollywood': 1,
          'ever': 1,
          'gon': 1,
          'na': 1,
          'make': 1,
          'good': 1,
          'days': 1,
          'nthis': 1,
          'nonly': 1,
          'big': 1,
          'laugh': 1,
          'hilarious': 1,
          'ni': 1,
          'chair': 1,
          'nminute': 1,
          'comedy': 1,
          'went': 1,
          'saved': 1,
          'total': 1,
          'waste': 1,
          'believe': 1,
          'nreviewed': 1,
          'brandon': 1,
          'herring': 1,
          '42900': 1,
          'reviews': 1,
          'please': 1,
          'visit': 1,
          'central': 1,
          'http': 1,
          'www': 1,
          'geocities': 1,
          'commoviefan983moviereviewcentral': 1,
          'html': 1,
          'nneg': 1}),
 Counter({'vacation': 15,
          'movie': 15,
          'nthe': 7,
          'would': 7,
          'like': 7,
          'series': 7,
          'nvegas': 6,
          'first': 6,
          'years': 5,
          'national': 5,
          'good': 5,
          'two': 5,
          'griswold': 4,
          'vegas': 4,
          'isnt': 4,
          'one': 4,
          'movies': 4,
          'well': 4,
          'film': 4,
          'nif': 4,
          'directed': 4,
          'us': 3,
          'family': 3,
          'griswolds': 3,
          'time': 3,
          'ellen': 3,
          'audrey': 3,
          'find': 3,
          'nthere': 3,
          'much': 3,
          'comes': 3,
          'really': 3,
          'skit': 3,
          'couple': 3,
          'far': 3,
          'doesnt': 3,
          'even': 3,
          'lampoons': 3,
          'didnt': 3,
          'lampoon': 2,
          'new': 2,
          'nin': 2,
          'nwe': 2,
          'shared': 2,
          'wild': 2,
          'went': 2,
          'four': 2,
          'christmas': 2,
          'clark': 2,
          'basically': 2,
          'nclark': 2,
          'idea': 2,
          'kids': 2,
          'rusty': 2,
          'around': 2,
          'make': 2,
          'minutes': 2,
          'cousin': 2,
          'times': 2,
          'plot': 2,
          'ways': 2,
          'know': 2,
          'seems': 2,
          'example': 2,
          'fast': 2,
          'fit': 2,
          'either': 2,
          'gambling': 2,
          'fun': 2,
          'simple': 2,
          'fact': 2,
          'funny': 2,
          'plays': 2,
          'nhe': 2,
          'character': 2,
          'quite': 2,
          'never': 2,
          'credits': 2,
          '1': 2,
          'three': 2,
          'close': 2,
          'actually': 2,
          'pretty': 2,
          'things': 2,
          'title': 2,
          'reasons': 2,
          'look': 2,
          'another': 2,
          'makes': 2,
          'obvious': 2,
          'films': 2,
          'john': 2,
          'hughes': 2,
          'behind': 2,
          'including': 2,
          'day': 2,
          'guy': 2,
          'nthis': 2,
          'also': 2,
          'hits': 2,
          'madefortv': 2,
          'direct': 2,
          'loved': 2,
          '14': 1,
          'ago': 1,
          'introduced': 1,
          '1983': 1,
          'embarked': 1,
          'crosscountry': 1,
          'journey': 1,
          'destination': 1,
          'wally': 1,
          'world': 1,
          'worldrenowned': 1,
          'theme': 1,
          'park': 1,
          'california': 1,
          'laughed': 1,
          'heads': 1,
          'crazy': 1,
          'mishaps': 1,
          'endured': 1,
          'ntwo': 1,
          'later': 1,
          'watched': 1,
          'europe': 1,
          'nnow': 1,
          'eight': 1,
          'passed': 1,
          'laughs': 1,
          'done': 1,
          'die': 1,
          'ntheyve': 1,
          'cremated': 1,
          'brings': 1,
          'back': 1,
          'chevy': 1,
          'chase': 1,
          'intentioned': 1,
          'illfated': 1,
          'father': 1,
          'premise': 1,
          'wonderful': 1,
          'take': 1,
          'bonding': 1,
          'las': 1,
          'nhis': 1,
          'wife': 1,
          'beverly': 1,
          'dangelo': 1,
          'teenage': 1,
          'always': 1,
          'played': 1,
          'different': 1,
          'actors': 1,
          'ethan': 1,
          'embry': 1,
          'marisol': 1,
          'nichols': 1,
          'respectively': 1,
          'join': 1,
          'soon': 1,
          'sin': 1,
          'city': 1,
          'casinos': 1,
          'backdrop': 1,
          'ninety': 1,
          'slapstick': 1,
          'nof': 1,
          'course': 1,
          'wouldnt': 1,
          'complete': 1,
          'without': 1,
          'ole': 1,
          'eddie': 1,
          'reprised': 1,
          'randy': 1,
          'quaid': 1,
          'misfit': 1,
          'showing': 1,
          'wrong': 1,
          'right': 1,
          'nits': 1,
          'define': 1,
          'real': 1,
          'term': 1,
          'running': 1,
          'gag': 1,
          'hours': 1,
          'therefore': 1,
          'coming': 1,
          'hour': 1,
          'second': 1,
          'comprised': 1,
          'twenty': 1,
          'shorter': 1,
          'skits': 1,
          'lasting': 1,
          'five': 1,
          'na': 1,
          'latter': 1,
          'last': 1,
          'black': 1,
          'sheep': 1,
          'problem': 1,
          'format': 1,
          'becomes': 1,
          'old': 1,
          'mold': 1,
          'cases': 1,
          'generally': 1,
          'thin': 1,
          'used': 1,
          'shameless': 1,
          'filler': 1,
          'scenes': 1,
          'simply': 1,
          'add': 1,
          'convenience': 1,
          'gags': 1,
          'e': 1,
          'nhave': 1,
          'joke': 1,
          'nsuch': 1,
          'case': 1,
          'miniplots': 1,
          'gets': 1,
          'fever': 1,
          'begins': 1,
          'spending': 1,
          'money': 1,
          'verge': 1,
          'affair': 1,
          'wayne': 1,
          'newton': 1,
          'fake': 1,
          'id': 1,
          'using': 1,
          'advantage': 1,
          'desperate': 1,
          'winds': 1,
          'joining': 1,
          'vickie': 1,
          'shae': 1,
          'dlyn': 1,
          'exotic': 1,
          'dancer': 1,
          'nat': 1,
          'chuckling': 1,
          'heartily': 1,
          'little': 1,
          'jokes': 1,
          'got': 1,
          'rolling': 1,
          'interest': 1,
          'suddenly': 1,
          'stopped': 1,
          'nchase': 1,
          'made': 1,
          'ndangelo': 1,
          'honest': 1,
          'impressive': 1,
          'show': 1,
          'signs': 1,
          'redemption': 1,
          'nas': 1,
          'word': 1,
          'blah': 1,
          'mind': 1,
          'prove': 1,
          'anybody': 1,
          'play': 1,
          'characters': 1,
          'reason': 1,
          'nothing': 1,
          'ntheyre': 1,
          'generic': 1,
          'youll': 1,
          'expect': 1,
          'read': 1,
          'girl': 1,
          'differs': 1,
          'laugh': 1,
          'factor': 1,
          'nyes': 1,
          'true': 1,
          'others': 1,
          'doofy': 1,
          'set': 1,
          'negatively': 1,
          'apart': 1,
          'nfirst': 1,
          'leave': 1,
          'heading': 1,
          'ni': 1,
          'couldnt': 1,
          'maybe': 1,
          'want': 1,
          'associated': 1,
          'lame': 1,
          'nthats': 1,
          'saying': 1,
          'lot': 1,
          'especially': 1,
          'else': 1,
          'company': 1,
          'proudly': 1,
          'presented': 1,
          'loaded': 1,
          'weapon': 1,
          'pcu': 1,
          'etc': 1,
          'expected': 1,
          'hit': 1,
          'assume': 1,
          'theyd': 1,
          'proud': 1,
          'tack': 1,
          'notorious': 1,
          'header': 1,
          'guess': 1,
          'sucking': 1,
          'difference': 1,
          'impact': 1,
          'written': 1,
          'talented': 1,
          'writer': 1,
          'several': 1,
          'popular': 1,
          '80s': 1,
          'mr': 1,
          'nmom': 1,
          'sixteen': 1,
          'candles': 1,
          'breakfast': 1,
          'club': 1,
          'weird': 1,
          'science': 1,
          'pink': 1,
          'ferris': 1,
          'buellers': 1,
          'planes': 1,
          'trains': 1,
          'automobiles': 1,
          'uncle': 1,
          'buck': 1,
          'nwowzers': 1,
          'nwhat': 1,
          'r': 1,
          'sum': 1,
          'nlooking': 1,
          'names': 1,
          'youd': 1,
          'think': 1,
          'wrote': 1,
          'everything': 1,
          'stands': 1,
          'icon': 1,
          '1980s': 1,
          'nwell': 1,
          'thats': 1,
          'brought': 1,
          '90s': 1,
          'home': 1,
          'alone': 1,
          'remake': 1,
          '101': 1,
          'dalmatians': 1,
          'dennis': 1,
          'menace': 1,
          'current': 1,
          'flubber': 1,
          'however': 1,
          'loss': 1,
          'script': 1,
          'hands': 1,
          'elisa': 1,
          'bell': 1,
          'whose': 1,
          'thus': 1,
          'include': 1,
          'work': 1,
          'better': 1,
          'sequel': 1,
          'sounds': 1,
          'nrevenge': 1,
          'nerds': 1,
          'third': 1,
          'fourth': 1,
          'installments': 1,
          'television': 1,
          'seemed': 1,
          'fox': 1,
          'network': 1,
          '2': 1,
          '00': 1,
          'nsunday': 1,
          'morning': 1,
          'silver': 1,
          'screen': 1,
          'major': 1,
          'motion': 1,
          'picture': 1,
          'place': 1,
          'nstephen': 1,
          'kesslers': 1,
          'jejune': 1,
          'direction': 1,
          'help': 1,
          'tvmovieish': 1,
          'neach': 1,
          'consecutive': 1,
          'suffered': 1,
          'drop': 1,
          'directing': 1,
          'power': 1,
          'started': 1,
          'harold': 1,
          'ramis': 1,
          'caddyshack': 1,
          'groundhog': 1,
          'cowriting': 1,
          'ghostbusters': 1,
          'nnot': 1,
          'bad': 1,
          'nthen': 1,
          'european': 1,
          'amy': 1,
          'heckerling': 1,
          'go': 1,
          'whos': 1,
          'talking': 1,
          'clueless': 1,
          'already': 1,
          'infamous': 1,
          'ridgemont': 1,
          'high': 1,
          'nlastly': 1,
          'jeremiah': 1,
          'chechik': 1,
          'charming': 1,
          'benny': 1,
          'joon': 1,
          'nkessler': 1,
          'belt': 1,
          'short': 1,
          'birch': 1,
          'street': 1,
          'gym': 1,
          'received': 1,
          'oscar': 1,
          'nomination': 1,
          '1992': 1,
          'ngranted': 1,
          'attempt': 1,
          'feature': 1,
          'length': 1,
          'allow': 1,
          'amateurish': 1,
          'quality': 1,
          'instead': 1,
          'get': 1,
          'straight': 1,
          'text': 1,
          'book': 1,
          'boring': 1,
          'bland': 1,
          'deeply': 1,
          'unoriginal': 1,
          'still': 1,
          'anything': 1,
          'worth': 1,
          'seeing': 1,
          'dont': 1,
          'ruin': 1,
          'impressions': 1,
          'indulging': 1,
          'tragic': 1,
          'cinema': 1,
          'ala': 1,
          'carte': 1,
          'need': 1,
          'confirm': 1,
          'nneg': 1}),
 Counter({'macleane': 6,
          'movie': 5,
          'little': 5,
          'nthe': 5,
          'film': 5,
          'plunkett': 4,
          'would': 4,
          'miller': 4,
          'nalthough': 4,
          'ridley': 3,
          'tony': 3,
          'nothing': 3,
          'disappointment': 3,
          'character': 3,
          'update': 3,
          'directing': 2,
          'scott': 2,
          'nif': 2,
          'ncarlyle': 2,
          'carlyle': 2,
          'wants': 2,
          'make': 2,
          'two': 2,
          'tyler': 2,
          'mr': 2,
          'chance': 2,
          'stott': 2,
          'nplunkett': 2,
          'theres': 2,
          'enough': 2,
          'although': 2,
          'sets': 2,
          'costumes': 2,
          'development': 2,
          'story': 2,
          'mess': 2,
          'bad': 2,
          'music': 2,
          'video': 2,
          'period': 2,
          'drama': 2,
          'f': 2,
          'mtv': 2,
          'recommend': 2,
          'marks': 1,
          'debut': 1,
          'jake': 1,
          'brother': 1,
          'nnaturally': 1,
          'got': 1,
          'worried': 1,
          'nwould': 1,
          'jakes': 1,
          'talent': 1,
          'inherited': 1,
          'thoughtful': 1,
          'suspensor': 1,
          'action': 1,
          'thrown': 1,
          'wham': 1,
          'bang': 1,
          'drivel': 1,
          'nunfortunately': 1,
          'latter': 1,
          'true': 1,
          'worthless': 1,
          'picture': 1,
          'charm': 1,
          'titular': 1,
          'highwaymen': 1,
          'poor': 1,
          'unruly': 1,
          'captain': 1,
          'james': 1,
          'clean': 1,
          'cut': 1,
          'gentleman': 1,
          'nas': 1,
          'tagline': 1,
          'clearly': 1,
          'known': 1,
          'rob': 1,
          'rich': 1,
          'else': 1,
          'basically': 1,
          'follows': 1,
          'rowdy': 1,
          'hold': 1,
          'ups': 1,
          'stage': 1,
          'along': 1,
          'romantic': 1,
          'interludes': 1,
          'lady': 1,
          'rebecca': 1,
          'nhot': 1,
          'tails': 1,
          'ken': 1,
          'see': 1,
          'dead': 1,
          'annoying': 1,
          'serves': 1,
          'purpose': 1,
          'undoubtedly': 1,
          'slick': 1,
          'fast': 1,
          'paced': 1,
          'merit': 1,
          'contained': 1,
          'fun': 1,
          'foul': 1,
          'mouthed': 1,
          'pair': 1,
          'characters': 1,
          'criminally': 1,
          'undeveloped': 1,
          'nit': 1,
          'appears': 1,
          'much': 1,
          'money': 1,
          'spent': 1,
          'expensive': 1,
          'looking': 1,
          'script': 1,
          'five': 1,
          'screenwriters': 1,
          'three': 1,
          'credited': 1,
          'produced': 1,
          'still': 1,
          'born': 1,
          'nalso': 1,
          'major': 1,
          'events': 1,
          'cash': 1,
          'finding': 1,
          'really': 1,
          'rushed': 1,
          'barely': 1,
          'happened': 1,
          'bit': 1,
          'frankly': 1,
          'performances': 1,
          'arent': 1,
          'typical': 1,
          'lads': 1,
          'liv': 1,
          'huge': 1,
          'love': 1,
          'interest': 1,
          'nher': 1,
          'irritable': 1,
          'stilted': 1,
          'performance': 1,
          'sticks': 1,
          'like': 1,
          'sore': 1,
          'thumb': 1,
          'quite': 1,
          'unsure': 1,
          'accent': 1,
          'trying': 1,
          'put': 1,
          'nshe': 1,
          'looks': 1,
          'nice': 1,
          'though': 1,
          'nmore': 1,
          'interesting': 1,
          'alan': 1,
          'cummings': 1,
          'campy': 1,
          'lord': 1,
          'rochester': 1,
          'amounts': 1,
          'dimensional': 1,
          'comedy': 1,
          'gay': 1,
          'hams': 1,
          'well': 1,
          'nken': 1,
          'suitably': 1,
          'evil': 1,
          'flat': 1,
          'ni': 1,
          'didnt': 1,
          'particularly': 1,
          'care': 1,
          'predictable': 1,
          'death': 1,
          'sequence': 1,
          'arrived': 1,
          'writing': 1,
          'minor': 1,
          'success': 1,
          'acting': 1,
          'certainly': 1,
          'look': 1,
          'lavish': 1,
          'good': 1,
          'wonderful': 1,
          'nbut': 1,
          'production': 1,
          'design': 1,
          'alone': 1,
          'cant': 1,
          'save': 1,
          'especially': 1,
          'njake': 1,
          'suited': 1,
          'rather': 1,
          'failed': 1,
          'seems': 1,
          'fact': 1,
          'everyone': 1,
          'must': 1,
          'talk': 1,
          'dirty': 1,
          'ck': 1,
          'stand': 1,
          'cking': 1,
          'deliver': 1,
          'splattered': 1,
          'place': 1,
          'editing': 1,
          'direction': 1,
          'flash': 1,
          'end': 1,
          'decidedly': 1,
          'empty': 1,
          'massive': 1,
          'somewhat': 1,
          'enjoyable': 1,
          'parts': 1,
          'light': 1,
          'could': 1,
          'float': 1,
          'screen': 1,
          'wasnt': 1,
          'images': 1,
          'reel': 1,
          'ntheres': 1,
          'thought': 1,
          'plot': 1,
          'series': 1,
          'manic': 1,
          'edits': 1,
          'quirky': 1,
          'camera': 1,
          'angles': 1,
          'appeal': 1,
          'genxers': 1,
          'great': 1,
          'idea': 1,
          'generation': 1,
          'execution': 1,
          'awful': 1,
          'likely': 1,
          'bore': 1,
          'excite': 1,
          'nsloppy': 1,
          'occasionally': 1,
          'puttingly': 1,
          'tasteless': 1,
          'hard': 1,
          'easy': 1,
          'overlong': 1,
          'ngive': 1,
          'miss': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'johnny': 5,
          'could': 5,
          'script': 4,
          'nthe': 4,
          'future': 4,
          'one': 3,
          'another': 3,
          'data': 3,
          'head': 3,
          'work': 3,
          'yakuza': 3,
          'movies': 3,
          'course': 3,
          'thats': 3,
          'newark': 3,
          'doesnt': 3,
          'like': 3,
          'would': 3,
          'short': 2,
          'story': 2,
          'awesomely': 2,
          'bad': 2,
          'thing': 2,
          'fail': 2,
          'terrible': 2,
          'way': 2,
          'make': 2,
          'new': 2,
          'whole': 2,
          'details': 2,
          'theres': 2,
          'come': 2,
          'mind': 2,
          'johnnys': 2,
          'look': 2,
          'fun': 2,
          'capsule': 1,
          'silly': 1,
          'inane': 1,
          'adaptation': 1,
          'gibsons': 1,
          'nowhere': 1,
          'sight': 1,
          'ngibsons': 1,
          'adds': 1,
          'insult': 1,
          'injury': 1,
          'njohnny': 1,
          'mnemonic': 1,
          'ni': 1,
          'say': 1,
          'entirely': 1,
          'completely': 1,
          'even': 1,
          'chances': 1,
          'camp': 1,
          'value': 1,
          'sabotaged': 1,
          'nkeanur': 1,
          'reeves': 1,
          'stars': 1,
          'information': 1,
          'courier': 1,
          'carry': 1,
          'dozens': 1,
          'gigabytes': 1,
          'nhe': 1,
          'given': 1,
          'last': 1,
          'job': 1,
          'whenever': 1,
          'hear': 1,
          'words': 1,
          'run': 1,
          'involves': 1,
          'shoving': 1,
          'much': 1,
          'cranium': 1,
          'lethal': 1,
          'none': 1,
          'neater': 1,
          'touches': 1,
          'brings': 1,
          'arrangement': 1,
          'ditching': 1,
          'childhood': 1,
          'memories': 1,
          'followed': 1,
          'token': 1,
          'fashion': 1,
          'nfor': 1,
          'trouble': 1,
          'gets': 1,
          'chased': 1,
          'seem': 1,
          'guys': 1,
          'hightech': 1,
          'thrillers': 1,
          'nwhats': 1,
          'funny': 1,
          'watch': 1,
          'gangster': 1,
          'made': 1,
          'japan': 1,
          'gobs': 1,
          'genuine': 1,
          'behavior': 1,
          'ethics': 1,
          'room': 1,
          'simply': 1,
          'used': 1,
          'point': 1,
          'guns': 1,
          'wave': 1,
          'swords': 1,
          'flaunt': 1,
          'tattoos': 1,
          'grimace': 1,
          'menacingly': 1,
          'n': 1,
          'go': 1,
          'gangsters': 1,
          'criminals': 1,
          'many': 1,
          'ethnicities': 1,
          'gotten': 1,
          'thoughtful': 1,
          'examinations': 1,
          'bound': 1,
          'honor': 1,
          'sugar': 1,
          'hill': 1,
          'american': 1,
          'asians': 1,
          'remain': 1,
          'perpetually': 1,
          'stereotyped': 1,
          'nbut': 1,
          'essay': 1,
          'nanyway': 1,
          'runs': 1,
          'eventually': 1,
          'winds': 1,
          'nwhy': 1,
          'nmaybe': 1,
          'cheaper': 1,
          'fake': 1,
          'york': 1,
          'nthere': 1,
          'meets': 1,
          'assortment': 1,
          'odd': 1,
          'characters': 1,
          'icet': 1,
          'dolph': 1,
          'lundgren': 1,
          'henry': 1,
          'rollins': 1,
          'play': 1,
          'gallery': 1,
          'weirdos': 1,
          'deals': 1,
          'depth': 1,
          'pieces': 1,
          'furniture': 1,
          'nit': 1,
          'turns': 1,
          'else': 1,
          'save': 1,
          'lot': 1,
          'people': 1,
          'wants': 1,
          'kill': 1,
          'nhandled': 1,
          'right': 1,
          'absorbing': 1,
          'manages': 1,
          'mangle': 1,
          'chance': 1,
          'real': 1,
          'sympathy': 1,
          'every': 1,
          'opportunity': 1,
          'feel': 1,
          'phoned': 1,
          'better': 1,
          'blade': 1,
          'runner': 1,
          'brazil': 1,
          'neverything': 1,
          'looks': 1,
          'rundown': 1,
          'scummy': 1,
          'everyone': 1,
          'dresses': 1,
          'theyre': 1,
          'punk': 1,
          'rockers': 1,
          'videophones': 1,
          'commonplace': 1,
          'nsnore': 1,
          'really': 1,
          'interesting': 1,
          'flourish': 1,
          'extended': 1,
          'depiction': 1,
          'internet': 1,
          'might': 1,
          'complete': 1,
          'vr': 1,
          'goggles': 1,
          'feedback': 1,
          'gloves': 1,
          'kept': 1,
          'thinking': 1,
          'relatively': 1,
          'untechnical': 1,
          'fellow': 1,
          'think': 1,
          'behave': 1,
          'na': 1,
          'hacker': 1,
          'caliber': 1,
          'blasting': 1,
          'away': 1,
          'commandline': 1,
          'function': 1,
          'instead': 1,
          'wasting': 1,
          'time': 1,
          'twiddling': 1,
          'holograms': 1,
          'cinematic': 1,
          'nwhatever': 1,
          'nwhat': 1,
          'went': 1,
          'wrong': 1,
          'ngibson': 1,
          'wrote': 1,
          'screenplay': 1,
          'guess': 1,
          'part': 1,
          'problem': 1,
          'works': 1,
          'nhis': 1,
          'ear': 1,
          'dialogue': 1,
          'plot': 1,
          'advance': 1,
          'convulses': 1,
          'nfrom': 1,
          'probably': 1,
          'downhill': 1,
          'nrenting': 1,
          'sort': 1,
          'pointless': 1,
          'kicking': 1,
          'wounded': 1,
          'dog': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'hit': 7,
          'action': 7,
          'nthe': 7,
          'comedy': 6,
          'big': 5,
          'nits': 5,
          'paris': 5,
          'n': 4,
          'melvin': 4,
          'work': 4,
          'turns': 4,
          'though': 3,
          'never': 3,
          'watch': 3,
          'way': 3,
          'nit': 3,
          'lot': 3,
          'good': 3,
          'doesnt': 3,
          'nthey': 3,
          'go': 3,
          'nothing': 3,
          'fun': 3,
          'one': 3,
          'like': 3,
          'cisco': 3,
          'interesting': 2,
          'awfulness': 2,
          'disaster': 2,
          'entertaining': 2,
          'fails': 2,
          'know': 2,
          'wong': 2,
          'seem': 2,
          'hitman': 2,
          'bit': 2,
          'make': 2,
          'ntheyre': 2,
          'guys': 2,
          'around': 2,
          'man': 2,
          'named': 2,
          'rich': 2,
          'powerful': 2,
          'girl': 2,
          'keiko': 2,
          'bad': 2,
          'story': 2,
          'certainly': 2,
          'really': 2,
          'true': 2,
          'films': 2,
          'also': 2,
          'bullets': 2,
          'makes': 2,
          'nthen': 2,
          'back': 2,
          'scene': 2,
          'letter': 2,
          'kidnapped': 2,
          'nand': 2,
          'scenes': 2,
          'goofy': 2,
          'tone': 2,
          'men': 2,
          'funny': 2,
          'people': 2,
          'npeople': 2,
          'didnt': 1,
          'hate': 1,
          'even': 1,
          'stupefyingly': 1,
          'terrible': 1,
          'nfor': 1,
          'entirety': 1,
          'running': 1,
          'time': 1,
          'eyes': 1,
          'attached': 1,
          'screen': 1,
          'got': 1,
          'bored': 1,
          'ni': 1,
          'found': 1,
          'unique': 1,
          'confused': 1,
          'witness': 1,
          'thirty': 1,
          'car': 1,
          'pileup': 1,
          'freeway': 1,
          'spaghetti': 1,
          'bowl': 1,
          'nas': 1,
          'narrative': 1,
          'pure': 1,
          'garbage': 1,
          'truly': 1,
          'deciding': 1,
          'genre': 1,
          'constantly': 1,
          'crossing': 1,
          'kinds': 1,
          'boundaries': 1,
          'reminded': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'similar': 1,
          'ways': 1,
          'fine': 1,
          'mix': 1,
          'genres': 1,
          'makers': 1,
          'theyre': 1,
          'nunfortunately': 1,
          'writer': 1,
          'ben': 1,
          'ramsey': 1,
          'director': 1,
          'kirk': 1,
          'dont': 1,
          'handle': 1,
          'material': 1,
          'result': 1,
          'wants': 1,
          'biggest': 1,
          'problem': 1,
          'amalgamation': 1,
          'case': 1,
          'absurd': 1,
          'place': 1,
          'nbut': 1,
          'sure': 1,
          'fascinating': 1,
          'failure': 1,
          'nmarky': 1,
          'ner': 1,
          'mark': 1,
          'wahlberg': 1,
          'stars': 1,
          'surley': 1,
          'nhes': 1,
          'apparently': 1,
          'although': 1,
          'tactics': 1,
          'rambunctious': 1,
          'snipe': 1,
          'clean': 1,
          'killshe': 1,
          'kicks': 1,
          'door': 1,
          'shoots': 1,
          'everything': 1,
          'nhe': 1,
          'works': 1,
          'hitmencisco': 1,
          'lou': 1,
          'diamond': 1,
          'phillips': 1,
          'crunch': 1,
          'bokeem': 1,
          'woodbine': 1,
          'vinnie': 1,
          'antonio': 1,
          'sabbato': 1,
          'jr': 1,
          'nice': 1,
          'bunch': 1,
          'muscular': 1,
          'stand': 1,
          'locker': 1,
          'room': 1,
          'working': 1,
          'compare': 1,
          'masturbation': 1,
          'sex': 1,
          'avery': 1,
          'brooks': 1,
          'constant': 1,
          'need': 1,
          'four': 1,
          'sloppy': 1,
          'hitmen': 1,
          'important': 1,
          'beyond': 1,
          'boss': 1,
          'course': 1,
          'plot': 1,
          'comes': 1,
          'decide': 1,
          'kidnap': 1,
          'young': 1,
          'japanese': 1,
          'china': 1,
          'chow': 1,
          'father': 1,
          'nwhen': 1,
          'ngoddaughter': 1,
          'standard': 1,
          'stuff': 1,
          'new': 1,
          'particularly': 1,
          'offensive': 1,
          'slightest': 1,
          'compelling': 1,
          'nclearly': 1,
          'major': 1,
          'selling': 1,
          'point': 1,
          'john': 1,
          'wootype': 1,
          'mixed': 1,
          'hip': 1,
          'sequences': 1,
          'resemble': 1,
          'recent': 1,
          'idea': 1,
          'faceoff': 1,
          'replacement': 1,
          'killers': 1,
          'far': 1,
          'superior': 1,
          'nthere': 1,
          'stunts': 1,
          'opening': 1,
          'sequence': 1,
          'two': 1,
          'partners': 1,
          'going': 1,
          'kill': 1,
          'guy': 1,
          'use': 1,
          'night': 1,
          'vision': 1,
          'goggles': 1,
          'handguns': 1,
          'nmelvin': 1,
          'breakdancing': 1,
          'uses': 1,
          'talent': 1,
          'avoid': 1,
          'knives': 1,
          'nlike': 1,
          'said': 1,
          'boring': 1,
          'disasters': 1,
          'arent': 1,
          'nwhat': 1,
          'genreshifting': 1,
          'madness': 1,
          'seems': 1,
          'start': 1,
          'quirkybutrealistic': 1,
          'seen': 1,
          'transporting': 1,
          'bags': 1,
          'human': 1,
          'remains': 1,
          'soon': 1,
          'first': 1,
          'music': 1,
          'video': 1,
          'bodies': 1,
          'flying': 1,
          'everywhere': 1,
          'somewhere': 1,
          'nkeiko': 1,
          'spunky': 1,
          'little': 1,
          'amusing': 1,
          'forced': 1,
          'read': 1,
          'loud': 1,
          'indicating': 1,
          'littered': 1,
          'grammatical': 1,
          'errors': 1,
          'skew': 1,
          'meaning': 1,
          'words': 1,
          'alone': 1,
          'applies': 1,
          'serious': 1,
          'none': 1,
          'irritating': 1,
          'moments': 1,
          'ordering': 1,
          'come': 1,
          'office': 1,
          'learns': 1,
          'gets': 1,
          'standing': 1,
          'knew': 1,
          'let': 1,
          'telling': 1,
          'find': 1,
          'perpetrator': 1,
          'played': 1,
          'laughs': 1,
          'isnt': 1,
          'since': 1,
          'quite': 1,
          'tries': 1,
          'fall': 1,
          'nthis': 1,
          'fly': 1,
          'fifteen': 1,
          'feet': 1,
          'backwards': 1,
          'shot': 1,
          'handgun': 1,
          'ncars': 1,
          'land': 1,
          'tree': 1,
          'branches': 1,
          'supported': 1,
          'ncharacters': 1,
          'betray': 1,
          'without': 1,
          'second': 1,
          'thought': 1,
          'ngrenades': 1,
          'thrown': 1,
          'tight': 1,
          'places': 1,
          'jump': 1,
          'tall': 1,
          'buildings': 1,
          'survive': 1,
          'outrun': 1,
          'tumbling': 1,
          'cars': 1,
          'get': 1,
          'falling': 1,
          'objects': 1,
          'small': 1,
          'fractions': 1,
          'seconds': 1,
          'nmost': 1,
          'frustrating': 1,
          'definition': 1,
          'anything': 1,
          'subtle': 1,
          'quiet': 1,
          'skilled': 1,
          'individuals': 1,
          'socially': 1,
          'depraved': 1,
          'militia': 1,
          'extensive': 1,
          'collection': 1,
          'firearms': 1,
          'garage': 1,
          'including': 1,
          'missile': 1,
          'launchers': 1,
          'handheld': 1,
          'machineguns': 1,
          'characters': 1,
          'trait': 1,
          'distinguishes': 1,
          'rest': 1,
          'obviously': 1,
          'deep': 1,
          'acting': 1,
          'kind': 1,
          'thoughwahlberg': 1,
          'actor': 1,
          'innocuous': 1,
          'presence': 1,
          'charming': 1,
          'silly': 1,
          'sort': 1,
          'nphillips': 1,
          'psychotic': 1,
          'character': 1,
          'christina': 1,
          'applegate': 1,
          'plays': 1,
          'melvins': 1,
          'fianc': 1,
          'e': 1,
          'convincingly': 1,
          'airheaded': 1,
          'unknowingly': 1,
          'spoofs': 1,
          'trying': 1,
          'funniest': 1,
          'parts': 1,
          'supplied': 1,
          'actors': 1,
          'numerous': 1,
          'failed': 1,
          'attempts': 1,
          'sight': 1,
          'gags': 1,
          'oneliners': 1,
          'believe': 1,
          'unrealistic': 1,
          'completely': 1,
          'unintentional': 1,
          'ndespite': 1,
          'must': 1,
          'reiterate': 1,
          'entertainment': 1,
          'value': 1,
          'nyou': 1,
          'cherish': 1,
          'nif': 1,
          'embrace': 1,
          'catastrophe': 1,
          'might': 1,
          'enjoy': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'nhowever': 4,
          'lynch': 3,
          'b': 3,
          'grade': 3,
          'action': 3,
          'madsen': 3,
          'richard': 2,
          'role': 2,
          'montana': 2,
          'gio': 2,
          'played': 2,
          'rosie': 2,
          'vela': 2,
          'forgettable': 2,
          'features': 1,
          'chief': 1,
          'villain': 1,
          'know': 1,
          'expect': 1,
          'nothing': 1,
          'movie': 1,
          'since': 1,
          'also': 1,
          'featured': 1,
          'michael': 1,
          'capable': 1,
          'character': 1,
          'actor': 1,
          'time': 1,
          'protagonist': 1,
          'author': 1,
          'review': 1,
          'decided': 1,
          'give': 1,
          'benefit': 1,
          'doubt': 1,
          'first': 1,
          'scenes': 1,
          'show': 1,
          'clear': 1,
          'credentials': 1,
          'plays': 1,
          'tough': 1,
          'policeman': 1,
          'raids': 1,
          'drug': 1,
          'warehouse': 1,
          'make': 1,
          'life': 1,
          'miserable': 1,
          'local': 1,
          'crime': 1,
          'lord': 1,
          'mario': 1,
          'raid': 1,
          'partially': 1,
          'successful': 1,
          'getting': 1,
          'rap': 1,
          'nso': 1,
          'begins': 1,
          'private': 1,
          'war': 1,
          'trying': 1,
          'penetrate': 1,
          'organisation': 1,
          'pretending': 1,
          'corrupt': 1,
          'nin': 1,
          'process': 1,
          'meets': 1,
          'gios': 1,
          'mistress': 1,
          'gina': 1,
          'zamora': 1,
          'starts': 1,
          'relationship': 1,
          'nalthough': 1,
          'doesnt': 1,
          'stink': 1,
          'like': 1,
          'many': 1,
          'similar': 1,
          'films': 1,
          'inside': 1,
          'edge': 1,
          'mostly': 1,
          'routine': 1,
          'nnobody': 1,
          'actually': 1,
          'puts': 1,
          'much': 1,
          'effort': 1,
          'including': 1,
          'especially': 1,
          'case': 1,
          'uninspired': 1,
          'screenwriter': 1,
          'william': 1,
          'tannen': 1,
          'director': 1,
          'warren': 1,
          'clarke': 1,
          'nthe': 1,
          'element': 1,
          'presence': 1,
          'former': 1,
          'supermodel': 1,
          'apart': 1,
          'showing': 1,
          'impressive': 1,
          'looks': 1,
          'shows': 1,
          'singing': 1,
          'talent': 1,
          'isnt': 1,
          'reason': 1,
          'enough': 1,
          'viewers': 1,
          'spend': 1,
          'hour': 1,
          'half': 1,
          'watching': 1,
          'would': 1,
          'likelihood': 1,
          'forget': 1,
          'next': 1,
          'day': 1,
          'nneg': 1}),
 Counter({'board': 5,
          'carrot': 5,
          'edison': 5,
          'npredictably': 4,
          'movie': 3,
          'top': 3,
          'nchairman': 3,
          'plot': 3,
          'say': 3,
          'job': 3,
          'nthe': 3,
          'debut': 2,
          'dollar': 2,
          'chairman': 2,
          'known': 2,
          'lead': 2,
          'role': 2,
          'tops': 2,
          'least': 2,
          'named': 2,
          'surfer': 2,
          'past': 2,
          'soon': 2,
          'armand': 2,
          'mcmillan': 2,
          'old': 2,
          'man': 2,
          'absolutely': 2,
          'whose': 2,
          'thornesmith': 2,
          'nothing': 2,
          'give': 2,
          'meyer': 2,
          'septien': 2,
          'one': 2,
          'bad': 2,
          'every': 2,
          'deserves': 2,
          'warning': 1,
          'signs': 1,
          'terrible': 1,
          'nmaking': 1,
          'theater': 1,
          'nlocally': 1,
          'nhaving': 1,
          'annoying': 1,
          'prop': 1,
          'comic': 1,
          'scott': 1,
          'thompson': 1,
          'better': 1,
          'nhow': 1,
          'overly': 1,
          'exhausted': 1,
          'paper': 1,
          'thin': 1,
          'approached': 1,
          'utter': 1,
          'incompetence': 1,
          'ndid': 1,
          'somebody': 1,
          'nthats': 1,
          'right': 1,
          'long': 1,
          'dreaded': 1,
          'major': 1,
          'motion': 1,
          'picture': 1,
          'starring': 1,
          'poking': 1,
          'handful': 1,
          'theaters': 1,
          'across': 1,
          'country': 1,
          'stars': 1,
          'obnoxious': 1,
          'wannabezany': 1,
          'king': 1,
          'redheaded': 1,
          'standup': 1,
          'comics': 1,
          'lazy': 1,
          'creative': 1,
          'inventive': 1,
          'uneventful': 1,
          'generation': 1,
          'x': 1,
          'er': 1,
          'nliving': 1,
          'pair': 1,
          'dudes': 1,
          'small': 1,
          'rented': 1,
          'house': 1,
          'bounces': 1,
          'always': 1,
          'squandering': 1,
          'away': 1,
          'money': 1,
          'eccentric': 1,
          'inventions': 1,
          'ignoring': 1,
          'crucial': 1,
          'responsibilities': 1,
          'rent': 1,
          'nthis': 1,
          'crabby': 1,
          'landlady': 1,
          'ms': 1,
          'krubavitch': 1,
          'estelle': 1,
          'harris': 1,
          'best': 1,
          'george': 1,
          'constanzas': 1,
          'mother': 1,
          'seinfeld': 1,
          'threatening': 1,
          'eviction': 1,
          'due': 1,
          'expenses': 1,
          'arent': 1,
          'furnished': 1,
          'post': 1,
          'haste': 1,
          'nas': 1,
          'luck': 1,
          'would': 1,
          'meets': 1,
          'jack': 1,
          'warden': 1,
          'dude': 1,
          'happens': 1,
          'president': 1,
          'multimillion': 1,
          'industries': 1,
          'nsharing': 1,
          'passion': 1,
          'riding': 1,
          'waves': 1,
          'deeply': 1,
          'impacted': 1,
          'young': 1,
          'inventors': 1,
          'notebook': 1,
          'dreams': 1,
          'ideas': 1,
          'dies': 1,
          'afterward': 1,
          'learns': 1,
          'benefactor': 1,
          'armands': 1,
          'acquires': 1,
          'entire': 1,
          'corporation': 1,
          'maintain': 1,
          'productivity': 1,
          'knowledge': 1,
          'business': 1,
          'world': 1,
          'bitter': 1,
          'nephew': 1,
          'larry': 1,
          'miller': 1,
          'lesser': 1,
          'inheritance': 1,
          'fuels': 1,
          'resentment': 1,
          'elaborate': 1,
          'sabotage': 1,
          'attractive': 1,
          'employee': 1,
          'courtney': 1,
          'initial': 1,
          'repulsion': 1,
          'transform': 1,
          'love': 1,
          'doofy': 1,
          'protagonist': 1,
          'knows': 1,
          'fight': 1,
          'odds': 1,
          'company': 1,
          'profitable': 1,
          'successful': 1,
          'turnaround': 1,
          'ever': 1,
          'ran': 1,
          'things': 1,
          'common': 1,
          'sense': 1,
          'greed': 1,
          'nits': 1,
          'though': 1,
          'writers': 1,
          'turi': 1,
          'al': 1,
          'alex': 1,
          'zamm': 1,
          'also': 1,
          'wrote': 1,
          'leprechaun': 1,
          '2': 1,
          'together': 1,
          'npulled': 1,
          'hat': 1,
          'worked': 1,
          'jokes': 1,
          'surprises': 1,
          'developments': 1,
          'run': 1,
          'predictable': 1,
          'path': 1,
          'may': 1,
          'signature': 1,
          'brazen': 1,
          'red': 1,
          'hairdo': 1,
          'sets': 1,
          'apart': 1,
          'myriad': 1,
          'similar': 1,
          'films': 1,
          'na': 1,
          'speaks': 1,
          'nwhats': 1,
          'left': 1,
          'element': 1,
          'possesses': 1,
          'shameful': 1,
          'retread': 1,
          'movies': 1,
          'script': 1,
          '100': 1,
          'recycled': 1,
          'direction': 1,
          'hokey': 1,
          'acting': 1,
          'horrible': 1,
          'nit': 1,
          'seems': 1,
          'take': 1,
          'seriously': 1,
          'accomplishment': 1,
          'surely': 1,
          'medal': 1,
          'honor': 1,
          'nshe': 1,
          'certainly': 1,
          'went': 1,
          'beyond': 1,
          'call': 1,
          'duty': 1,
          'kiss': 1,
          'n': 1,
          'barf': 1,
          'bag': 1,
          'please': 1,
          'nmovies': 1,
          'like': 1,
          'audience': 1,
          'ponder': 1,
          'many': 1,
          'synonyms': 1,
          'really': 1,
          'without': 1,
          'doubt': 1,
          'way': 1,
          'wont': 1,
          'end': 1,
          'everybodys': 1,
          'bottom': 1,
          'ten': 1,
          'year': 1,
          'list': 1,
          'lucky': 1,
          'enough': 1,
          'never': 1,
          'seen': 1,
          'njust': 1,
          'cant': 1,
          'miss': 1,
          'outlandish': 1,
          'fiery': 1,
          'mane': 1,
          'dont': 1,
          'skimp': 1,
          'avoiding': 1,
          'abhorrent': 1,
          'feature': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'wood': 5,
          'dont': 4,
          'woke': 4,
          'early': 4,
          'day': 4,
          'died': 4,
          'film': 4,
          'nthe': 4,
          'ed': 4,
          'ni': 4,
          'around': 4,
          'minutes': 3,
          'comedy': 3,
          'bad': 3,
          'nit': 3,
          'made': 3,
          'look': 2,
          'looking': 2,
          'surrealistic': 2,
          'dialogue': 2,
          'nits': 2,
          'weird': 2,
          'ever': 2,
          'style': 2,
          '20': 2,
          'reason': 2,
          'script': 2,
          'plan': 2,
          '9': 2,
          'films': 2,
          'good': 2,
          'really': 2,
          'zane': 2,
          'money': 2,
          'nhe': 2,
          'upon': 2,
          'people': 2,
          'think': 2,
          'either': 2,
          'would': 2,
          'short': 2,
          'seem': 2,
          'already': 2,
          'went': 2,
          'wrong': 2,
          'make': 2,
          'making': 2,
          'thrown': 2,
          'makes': 2,
          'head': 2,
          'spin': 2,
          'ren': 1,
          'magritte': 1,
          'painting': 1,
          'search': 1,
          'deeper': 1,
          'meaning': 1,
          'nyou': 1,
          'likewise': 1,
          '88': 1,
          'straight': 1,
          'nsurrealist': 1,
          'works': 1,
          'notable': 1,
          'quirks': 1,
          'fun': 1,
          'quirk': 1,
          'hour': 1,
          'half': 1,
          'exhausting': 1,
          'nthat': 1,
          'experience': 1,
          'hyperactive': 1,
          'silent': 1,
          'movie': 1,
          'lots': 1,
          'atmospheric': 1,
          'music': 1,
          'occasional': 1,
          'screams': 1,
          'sound': 1,
          'effects': 1,
          'nobody': 1,
          'utters': 1,
          'audible': 1,
          'word': 1,
          'nthough': 1,
          'distinctive': 1,
          'unique': 1,
          'wore': 1,
          'thin': 1,
          'progressed': 1,
          'watching': 1,
          'became': 1,
          'chore': 1,
          'got': 1,
          'filmed': 1,
          'written': 1,
          'pseudolegendary': 1,
          'man': 1,
          'behind': 1,
          'classics': 1,
          'outer': 1,
          'space': 1,
          'night': 1,
          'ghouls': 1,
          'joke': 1,
          'course': 1,
          'theyre': 1,
          'humorous': 1,
          'inanity': 1,
          'become': 1,
          'hits': 1,
          'unfortunatly': 1,
          'stars': 1,
          'billy': 1,
          'titanic': 1,
          'dangerous': 1,
          'lunatic': 1,
          'overpowers': 1,
          'nurse': 1,
          'escapes': 1,
          'mental': 1,
          'hospital': 1,
          'proceeds': 1,
          'wonder': 1,
          'stealing': 1,
          'car': 1,
          'clothes': 1,
          'load': 1,
          'nour': 1,
          'thief': 1,
          'reaches': 1,
          'cemetery': 1,
          'witnesses': 1,
          'bizarre': 1,
          'ritual': 1,
          'falls': 1,
          'asleep': 1,
          'finds': 1,
          'literally': 1,
          'hole': 1,
          'gone': 1,
          'nfor': 1,
          'whatever': 1,
          'bent': 1,
          'getting': 1,
          'hardunearned': 1,
          'cash': 1,
          'back': 1,
          'considering': 1,
          'easily': 1,
          'stole': 1,
          'first': 1,
          'time': 1,
          'didnt': 1,
          'go': 1,
          'steal': 1,
          'comes': 1,
          'list': 1,
          'mysterious': 1,
          'ceremony': 1,
          'commences': 1,
          'seek': 1,
          'kill': 1,
          'director': 1,
          'aris': 1,
          'iliopulos': 1,
          'realized': 1,
          'glorious': 1,
          'minute': 1,
          'subject': 1,
          'nunfortunately': 1,
          'twenty': 1,
          'worth': 1,
          'material': 1,
          'stretched': 1,
          'four': 1,
          'times': 1,
          'length': 1,
          'simply': 1,
          'overstays': 1,
          'dubious': 1,
          'welcome': 1,
          'grabbed': 1,
          'attention': 1,
          'beginning': 1,
          'gradually': 1,
          'lost': 1,
          'point': 1,
          'halfway': 1,
          'weary': 1,
          'might': 1,
          'odd': 1,
          'furiously': 1,
          'paced': 1,
          'tedious': 1,
          'surprise': 1,
          'wear': 1,
          'consider': 1,
          'repetitive': 1,
          'guess': 1,
          'though': 1,
          'could': 1,
          'fooled': 1,
          'nunlike': 1,
          'tries': 1,
          'funny': 1,
          'fails': 1,
          'instead': 1,
          'way': 1,
          'ntheres': 1,
          'nothing': 1,
          'inherently': 1,
          'fact': 1,
          'sense': 1,
          'someone': 1,
          'unintentional': 1,
          'comedies': 1,
          'take': 1,
          'stab': 1,
          'real': 1,
          'nwhether': 1,
          'actually': 1,
          'well': 1,
          'never': 1,
          'know': 1,
          'case': 1,
          'failure': 1,
          'njonathan': 1,
          'taylor': 1,
          'thomas': 1,
          'christina': 1,
          'ricci': 1,
          'summer': 1,
          'phoenix': 1,
          'john': 1,
          'ritter': 1,
          'others': 1,
          'show': 1,
          'pointless': 1,
          'cameos': 1,
          'nricci': 1,
          'example': 1,
          'plays': 1,
          'prostitute': 1,
          'nher': 1,
          'role': 1,
          'consists': 1,
          'dancing': 1,
          'motel': 1,
          'room': 1,
          'nthomas': 1,
          'astonished': 1,
          'onlooker': 1,
          'woman': 1,
          'gets': 1,
          'cliff': 1,
          'nwas': 1,
          'home': 1,
          'improvement': 1,
          'teen': 1,
          'heartthrob': 1,
          'desperate': 1,
          'work': 1,
          'nzane': 1,
          'meanwhile': 1,
          'occupies': 1,
          'faces': 1,
          'camera': 1,
          'called': 1,
          'run': 1,
          'wildly': 1,
          'beat': 1,
          'nlack': 1,
          'ultimate': 1,
          'caricature': 1,
          'carnival': 1,
          'sideshow': 1,
          'climax': 1,
          'manages': 1,
          'demonstrate': 1,
          'everything': 1,
          'nobudget': 1,
          'production': 1,
          'desperately': 1,
          'unfunny': 1,
          'thinks': 1,
          'funniest': 1,
          'thing': 1,
          'since': 1,
          'spontaneously': 1,
          'confusing': 1,
          'enough': 1,
          'twice': 1,
          'fast': 1,
          'direction': 1,
          'hope': 1,
          'another': 1,
          'screenplay': 1,
          'fitting': 1,
          'sendoff': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov': 1,
          '137': 1,
          'nneg': 1}),
 Counter({'two': 7,
          'film': 5,
          'movie': 4,
          'get': 4,
          'club': 4,
          'brothers': 4,
          'ni': 3,
          'see': 3,
          'night': 3,
          'roxbury': 3,
          'doug': 3,
          'well': 2,
          'ideas': 2,
          'decided': 2,
          'nbut': 2,
          'say': 2,
          'nthe': 2,
          'one': 2,
          'worth': 2,
          'greatest': 2,
          'seem': 2,
          'way': 2,
          'friend': 2,
          'ntheir': 2,
          'nand': 2,
          'take': 2,
          'ever': 2,
          'check': 1,
          'score': 1,
          'card': 1,
          'ive': 1,
          'done': 1,
          'holiday': 1,
          'weekend': 1,
          'reads': 1,
          'good': 1,
          '0': 1,
          'dumb': 1,
          '1': 1,
          'dont': 1,
          'know': 1,
          'thinking': 1,
          'watch': 1,
          'defense': 1,
          'someone': 1,
          'else': 1,
          'urged': 1,
          'im': 1,
          'talking': 1,
          'offerings': 1,
          'based': 1,
          'saturday': 1,
          'live': 1,
          'skit': 1,
          'nwayne': 1,
          'garth': 1,
          'nrather': 1,
          'meet': 1,
          'steve': 1,
          'butabi': 1,
          'actors': 1,
          'names': 1,
          'mentioning': 1,
          'eternal': 1,
          'partyers': 1,
          'whose': 1,
          'ambitions': 1,
          'life': 1,
          'finding': 1,
          'hottest': 1,
          'city': 1,
          'ndriving': 1,
          'dads': 1,
          'bmw': 1,
          'donning': 1,
          'metallic': 1,
          'disco': 1,
          'suits': 1,
          'right': 1,
          'miami': 1,
          'vice': 1,
          'try': 1,
          'bribe': 1,
          'bouncer': 1,
          'nhave': 1,
          'met': 1,
          'washington': 1,
          'roosevelt': 1,
          'confidently': 1,
          'pull': 1,
          'spare': 1,
          'pocket': 1,
          'change': 1,
          'second': 1,
          'ambition': 1,
          'seems': 1,
          'oozing': 1,
          'many': 1,
          'silly': 1,
          'pickup': 1,
          'lines': 1,
          'humanly': 1,
          'possible': 1,
          'order': 1,
          'start': 1,
          'conversation': 1,
          'girl': 1,
          'let': 1,
          'label': 1,
          'njust': 1,
          'thought': 1,
          'made': 1,
          'heaven': 1,
          'says': 1,
          'like': 1,
          'losers': 1,
          'fail': 1,
          'either': 1,
          'much': 1,
          'nhowever': 1,
          'fate': 1,
          'would': 1,
          'accidental': 1,
          'meeting': 1,
          'whateverhappenedto': 1,
          'richard': 1,
          'grieco': 1,
          'gives': 1,
          'allimportant': 1,
          'ticket': 1,
          'sad': 1,
          'lives': 1,
          'whole': 1,
          'new': 1,
          'direction': 1,
          'nthey': 1,
          'make': 1,
          'important': 1,
          'contact': 1,
          'owner': 1,
          'believes': 1,
          'uncanny': 1,
          'insight': 1,
          'scene': 1,
          'mistaken': 1,
          'rich': 1,
          'swingers': 1,
          'voluptuous': 1,
          'young': 1,
          'women': 1,
          'newfound': 1,
          'popularity': 1,
          'impress': 1,
          'father': 1,
          'plans': 1,
          'unfortunate': 1,
          'thing': 1,
          'onejoke': 1,
          'joke': 1,
          'nactually': 1,
          'theres': 1,
          '10': 1,
          'mintues': 1,
          'tolerable': 1,
          'stuff': 1,
          'nalas': 1,
          'long': 1,
          'tv': 1,
          'short': 1,
          'featurelength': 1,
          'nthus': 1,
          'isnt': 1,
          'enough': 1,
          'material': 1,
          'sustain': 1,
          '83minute': 1,
          'ntheres': 1,
          'plot': 1,
          'found': 1,
          'everything': 1,
          'culminate': 1,
          'opportunity': 1,
          'execute': 1,
          'trademark': 1,
          'move': 1,
          'snapping': 1,
          'heads': 1,
          'unison': 1,
          'funky': 1,
          'beat': 1,
          'haddaways': 1,
          'europop': 1,
          'song': 1,
          'love': 1,
          'amazed': 1,
          'none': 1,
          'suffered': 1,
          'whiplash': 1,
          'nto': 1,
          'time': 1,
          'subplot': 1,
          'involving': 1,
          'daughter': 1,
          'businessman': 1,
          'next': 1,
          'door': 1,
          'wants': 1,
          'marry': 1,
          'nthis': 1,
          'creates': 1,
          'friction': 1,
          'unlikely': 1,
          'pairing': 1,
          'also': 1,
          'agitate': 1,
          'audience': 1,
          'members': 1,
          'nshes': 1,
          'educated': 1,
          'forebearing': 1,
          'witch': 1,
          'nmeanwhile': 1,
          'complete': 1,
          'loser': 1,
          'nhow': 1,
          'together': 1,
          'suppose': 1,
          'figure': 1,
          'answer': 1,
          'question': 1,
          'ill': 1,
          'figured': 1,
          'go': 1,
          'nif': 1,
          'youre': 1,
          'looking': 1,
          'entertainment': 1,
          'wont': 1,
          'find': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'malick': 3,
          'great': 3,
          'narration': 3,
          'terrence': 2,
          'made': 2,
          'war': 2,
          'nick': 2,
          'nolte': 2,
          'nthe': 2,
          'best': 2,
          'koteas': 2,
          'could': 2,
          'truly': 2,
          'story': 2,
          'version': 2,
          'excellent': 1,
          '90': 1,
          'minute': 1,
          'adaptation': 1,
          'james': 1,
          'jones': 1,
          'world': 1,
          'ii': 1,
          'novel': 1,
          'nunfortunately': 1,
          'buried': 1,
          'within': 1,
          'overlong': 1,
          'overreaching': 1,
          '3hour': 1,
          'long': 1,
          'pseudoepic': 1,
          'nthis': 1,
          'shame': 1,
          'features': 1,
          'outstanding': 1,
          'performance': 1,
          'scene': 1,
          'noltes': 1,
          'character': 1,
          'lt': 1,
          'col': 1,
          'tall': 1,
          'forced': 1,
          'deal': 1,
          'direct': 1,
          'refusal': 1,
          'capt': 1,
          'staros': 1,
          'elias': 1,
          'execute': 1,
          'order': 1,
          'nnoltes': 1,
          'reaction': 1,
          'transformation': 1,
          'may': 1,
          'work': 1,
          'career': 1,
          'nhad': 1,
          'concentrated': 1,
          'performances': 1,
          'well': 1,
          'sean': 1,
          'penn': 1,
          'woody': 1,
          'harrelson': 1,
          'john': 1,
          'cusack': 1,
          'ninstead': 1,
          'saddled': 1,
          'plodding': 1,
          'pacing': 1,
          'unnecessary': 1,
          'flashbacks': 1,
          'voiceover': 1,
          'designed': 1,
          'telegraph': 1,
          'philosophical': 1,
          'underpinnings': 1,
          'especially': 1,
          'annoying': 1,
          'much': 1,
          'sounded': 1,
          'like': 1,
          'bad': 1,
          'high': 1,
          'school': 1,
          'poetry': 1,
          'nwith': 1,
          'lot': 1,
          'editing': 1,
          'core': 1,
          'transformed': 1,
          'classic': 1,
          'nhopefully': 1,
          'dvd': 1,
          'feature': 1,
          'options': 1,
          'suppress': 1,
          'perhaps': 1,
          'even': 1,
          'provide': 1,
          'alternate': 1,
          'shorter': 1,
          'ni': 1,
          'give': 1,
          'nneg': 1}),
 Counter({'special': 5,
          'effects': 4,
          'great': 4,
          'n': 4,
          'dont': 4,
          'away': 4,
          'hes': 4,
          'ni': 3,
          'much': 3,
          'little': 3,
          'voices': 3,
          'nits': 3,
          'may': 3,
          'nthe': 2,
          'film': 2,
          'came': 2,
          'dolittle': 2,
          'eddie': 2,
          'murphy': 2,
          'character': 2,
          'comic': 2,
          'actors': 2,
          'supply': 2,
          'nthey': 2,
          'possibly': 2,
          'ncant': 2,
          'miss': 2,
          'nafter': 2,
          'three': 2,
          'let': 2,
          'movie': 2,
          'director': 2,
          'script': 2,
          'e': 2,
          'thomas': 2,
          'cast': 2,
          'less': 2,
          'get': 2,
          'voice': 2,
          'nearly': 2,
          'certain': 2,
          'theres': 2,
          'mouth': 2,
          'illsynched': 2,
          'timing': 2,
          'nthis': 2,
          'comedies': 2,
          'nhere': 2,
          'animals': 2,
          'far': 2,
          'back': 2,
          'given': 2,
          'years': 2,
          'jokes': 2,
          'butt': 2,
          'cried': 1,
          '_babe_': 1,
          'admit': 1,
          'story': 1,
          'dialogue': 1,
          'woven': 1,
          'together': 1,
          'delicately': 1,
          'successfully': 1,
          'mind': 1,
          'lost': 1,
          'track': 1,
          'childrens': 1,
          'yes': 1,
          'got': 1,
          'overly': 1,
          'sentimental': 1,
          'nsuch': 1,
          'friend': 1,
          'power': 1,
          'cinema': 1,
          'nwhen': 1,
          'word': 1,
          'using': 1,
          'newly': 1,
          'developed': 1,
          'fx': 1,
          'doctor': 1,
          'update': 1,
          'plays': 1,
          'title': 1,
          'many': 1,
          'anticipation': 1,
          'rose': 1,
          'expectations': 1,
          'cant': 1,
          'drop': 1,
          'ball': 1,
          'one': 1,
          'missed': 1,
          'nwhat': 1,
          'went': 1,
          'wrong': 1,
          'thought': 1,
          'general': 1,
          'rules': 1,
          '1': 1,
          'television': 1,
          'actressturnedcomedy': 1,
          'near': 1,
          'urbanite': 1,
          'penny': 1,
          'marshalls': 1,
          'dreadful': 1,
          'preachers': 1,
          'wife': 1,
          'nbetty': 1,
          'worked': 1,
          'wonders': 1,
          'brady': 1,
          'bunch': 1,
          'sitcomairiness': 1,
          'doesnt': 1,
          'quite': 1,
          'work': 1,
          'lifted': 1,
          'generic': 1,
          'sitcom': 1,
          'iced': 1,
          'light': 1,
          'doses': 1,
          'modern': 1,
          'rb': 1,
          'ntake': 1,
          'black': 1,
          'take': 1,
          'atrocious': 1,
          'soundtrack': 1,
          'residue': 1,
          'mid80s': 1,
          'kirk': 1,
          'cameron': 1,
          'show': 1,
          '2': 1,
          'greater': 1,
          'individual': 1,
          'castmember': 1,
          'con': 1,
          'air': 1,
          'nit': 1,
          'jenna': 1,
          'elfman': 1,
          'garry': 1,
          'schandling': 1,
          'john': 1,
          'leguizimo': 1,
          'ellen': 1,
          'degeneres': 1,
          'gilbert': 1,
          'godfried': 1,
          'lineup': 1,
          'nothing': 1,
          'improvise': 1,
          'underdeveloped': 1,
          'stereotyped': 1,
          'characters': 1,
          'onelineatatime': 1,
          'even': 1,
          'worse': 1,
          'sometimes': 1,
          'unrecognizable': 1,
          'satisfaction': 1,
          'linking': 1,
          'comedian': 1,
          'credits': 1,
          'nnow': 1,
          'treatment': 1,
          'albert': 1,
          'brooks': 1,
          'brings': 1,
          'dignity': 1,
          'every': 1,
          'project': 1,
          'scenes': 1,
          'depressed': 1,
          'tiger': 1,
          'resonate': 1,
          'poignancy': 1,
          'nnorm': 1,
          'mcdonald': 1,
          'fares': 1,
          'well': 1,
          'stray': 1,
          'dog': 1,
          'learns': 1,
          'bond': 1,
          'nbut': 1,
          'humor': 1,
          'nthat': 1,
          'rests': 1,
          'shoulders': 1,
          'chris': 1,
          'rock': 1,
          'sorely': 1,
          'miscast': 1,
          'unfunny': 1,
          'wiseass': 1,
          'guinea': 1,
          'pig': 1,
          'neven': 1,
          '3': 1,
          'technicians': 1,
          'walk': 1,
          'ntheres': 1,
          'thats': 1,
          'mandatory': 1,
          'comedy': 1,
          'nto': 1,
          'usurped': 1,
          'brilliancy': 1,
          'computer': 1,
          'generated': 1,
          'mouths': 1,
          'lifelike': 1,
          'creations': 1,
          'jim': 1,
          'hensons': 1,
          'creature': 1,
          'shop': 1,
          'travesty': 1,
          'say': 1,
          'filled': 1,
          'muppet': 1,
          'movies': 1,
          'arent': 1,
          'welltimed': 1,
          'laughfests': 1,
          'right': 1,
          'betty': 1,
          'clearly': 1,
          'head': 1,
          'wish': 1,
          'could': 1,
          'commend': 1,
          'theyre': 1,
          'merely': 1,
          'average': 1,
          'ncount': 1,
          'number': 1,
          'times': 1,
          'turned': 1,
          'camera': 1,
          'notice': 1,
          'babe': 1,
          'look': 1,
          'whos': 1,
          'barking': 1,
          'clone': 1,
          'nyou': 1,
          'wondering': 1,
          'fare': 1,
          'nwell': 1,
          'exceptional': 1,
          'nutty': 1,
          'professor': 1,
          'doubt': 1,
          'come': 1,
          'tied': 1,
          'straight': 1,
          'man': 1,
          'exceptions': 1,
          'fears': 1,
          'going': 1,
          'crazy': 1,
          'cry': 1,
          'smarterthanyoud': 1,
          'expect': 1,
          'routine': 1,
          'adept': 1,
          'unfortunate': 1,
          'richard': 1,
          'pryor': 1,
          'ten': 1,
          'ago': 1,
          'making': 1,
          'lame': 1,
          'without': 1,
          'bite': 1,
          'early': 1,
          'whats': 1,
          'left': 1,
          'nbutt': 1,
          'na': 1,
          '_lot_': 1,
          'guess': 1,
          'kids': 1,
          'funny': 1,
          'stonefaced': 1,
          'nif': 1,
          'lesson': 1,
          'telling': 1,
          'us': 1,
          'feelings': 1,
          'care': 1,
          'way': 1,
          'nneg': 1}),
 Counter({'didnt': 4,
          'pretty': 4,
          'much': 4,
          'nice': 4,
          'berenger': 3,
          'panama': 3,
          'beginning': 3,
          'nbut': 3,
          'many': 3,
          'action': 3,
          'real': 3,
          'nit': 3,
          'sniper': 2,
          'nthis': 2,
          'film': 2,
          'played': 2,
          'seemed': 2,
          'get': 2,
          'character': 2,
          'seems': 2,
          'acting': 2,
          'think': 2,
          'good': 2,
          'situations': 2,
          'hero': 2,
          'nand': 2,
          'far': 2,
          'heroics': 2,
          'photography': 2,
          'used': 2,
          'saw': 1,
          'advanced': 1,
          'screening': 1,
          'movie': 1,
          'last': 1,
          'night': 1,
          'say': 1,
          'wasnt': 1,
          'impressed': 1,
          'expert': 1,
          'marine': 1,
          'tom': 1,
          'teamed': 1,
          'hotshotyoungnoexperienceneverkilledaman': 1,
          'new': 1,
          'partner': 1,
          'take': 1,
          'drugkingpins': 1,
          'military': 1,
          'strong': 1,
          'men': 1,
          'nsound': 1,
          'cliche': 1,
          'nthats': 1,
          'nbilly': 1,
          'zane': 1,
          'memphis': 1,
          'belle': 1,
          'rookie': 1,
          'never': 1,
          'handle': 1,
          'nhe': 1,
          'contrary': 1,
          'pigheaded': 1,
          'wanted': 1,
          'smack': 1,
          'nthen': 1,
          'goes': 1,
          'crazy': 1,
          'pressure': 1,
          'immediately': 1,
          'snap': 1,
          'nim': 1,
          'sure': 1,
          'blame': 1,
          'lie': 1,
          'directing': 1,
          'editing': 1,
          'scriptwriting': 1,
          'come': 1,
          'together': 1,
          'ni': 1,
          'actor': 1,
          'looked': 1,
          'great': 1,
          'part': 1,
          'covered': 1,
          'camo': 1,
          'face': 1,
          'painted': 1,
          'stalking': 1,
          'jungle': 1,
          'highpower': 1,
          'rifle': 1,
          'given': 1,
          'bad': 1,
          'dialogue': 1,
          'react': 1,
          'logically': 1,
          'nthere': 1,
          'little': 1,
          'logical': 1,
          'development': 1,
          'characters': 1,
          'nmy': 1,
          'biggest': 1,
          'problem': 1,
          'tendency': 1,
          'put': 1,
          'two': 1,
          'snipers': 1,
          'inchesfromdeath': 1,
          'possible': 1,
          'nthey': 1,
          'began': 1,
          'resemble': 1,
          'g': 1,
          'joes': 1,
          'greatest': 1,
          'american': 1,
          'course': 1,
          'almost': 1,
          'supernatural': 1,
          'accuracy': 1,
          'guns': 1,
          'called': 1,
          'upon': 1,
          'close': 1,
          'calls': 1,
          'nnow': 1,
          'lot': 1,
          'movies': 1,
          'stamped': 1,
          'mold': 1,
          'fact': 1,
          'thats': 1,
          'made': 1,
          'die': 1,
          'hard': 1,
          'fun': 1,
          'superhero': 1,
          'avenger': 1,
          'type': 1,
          'nso': 1,
          'enjoy': 1,
          'fit': 1,
          'tension': 1,
          'built': 1,
          'earlier': 1,
          'scenes': 1,
          'life': 1,
          'feel': 1,
          'covert': 1,
          'operations': 1,
          'na': 1,
          'word': 1,
          'must': 1,
          'said': 1,
          'camera': 1,
          'work': 1,
          'nthe': 1,
          'jungles': 1,
          'standins': 1,
          'case': 1,
          'formed': 1,
          'picturesque': 1,
          'background': 1,
          'drama': 1,
          'speeding': 1,
          'bullets': 1,
          'captured': 1,
          'using': 1,
          'trick': 1,
          'nmany': 1,
          'seen': 1,
          'slowed': 1,
          'bulletcam': 1,
          'following': 1,
          'projectile': 1,
          'target': 1,
          'well': 1,
          'show': 1,
          'feverish': 1,
          'nightmares': 1,
          'gets': 1,
          'remembering': 1,
          'moment': 1,
          'kill': 1,
          'dramatic': 1,
          'flashback': 1,
          'director': 1,
          'liked': 1,
          'technique': 1,
          'started': 1,
          'inserting': 1,
          'shots': 1,
          'pardon': 1,
          'pun': 1,
          'time': 1,
          'silly': 1,
          'nall': 1,
          'dog': 1,
          'atmosphere': 1,
          'plot': 1,
          'lame': 1,
          'form': 1,
          'cohesive': 1,
          'whole': 1,
          'thisclosefromdeath': 1,
          'nneg': 1}),
 Counter({'movie': 3,
          'nand': 3,
          'dragon': 2,
          'n': 2,
          'draco': 2,
          'minutes': 2,
          'light': 2,
          'quaid': 2,
          'thewlis': 2,
          'king': 2,
          'upon': 2,
          'nthe': 2,
          'fringe': 2,
          'much': 2,
          '18foothigh': 1,
          '43footlong': 1,
          'computergenerated': 1,
          'co': 1,
          'star': 1,
          'strictlybythenumbers': 1,
          'sword': 1,
          'sorcery': 1,
          'flick': 1,
          'nas': 1,
          'voiced': 1,
          'sean': 1,
          'connery': 1,
          'surprisingly': 1,
          'expressive': 1,
          'creation': 1,
          'welldeserving': 1,
          '23': 1,
          'screen': 1,
          'time': 1,
          'nhe': 1,
          'walks': 1,
          'talks': 1,
          'flies': 1,
          'fries': 1,
          'even': 1,
          'fakes': 1,
          'death': 1,
          'help': 1,
          '96': 1,
          'computeraided': 1,
          'animators': 1,
          'ntoo': 1,
          'bad': 1,
          'ilm': 1,
          'industrial': 1,
          'magic': 1,
          'couldnt': 1,
          'spare': 1,
          'special': 1,
          'effects': 1,
          'dragonhearts': 1,
          'human': 1,
          'costars': 1,
          'na': 1,
          'bearded': 1,
          'black': 1,
          'hole': 1,
          'exists': 1,
          'dennis': 1,
          'nhes': 1,
          'neartotal': 1,
          'loss': 1,
          'growls': 1,
          'glumly': 1,
          'role': 1,
          'disillusioned': 1,
          'knight': 1,
          'ndavid': 1,
          'evil': 1,
          'high': 1,
          'hiss': 1,
          'factor': 1,
          'hf': 1,
          'though': 1,
          'hes': 1,
          'mumbling': 1,
          'oddity': 1,
          'anything': 1,
          'else': 1,
          'noh': 1,
          'theres': 1,
          'redhead': 1,
          '90s': 1,
          'wig': 1,
          'runs': 1,
          'around': 1,
          'either': 1,
          'screaming': 1,
          'scowling': 1,
          'depending': 1,
          'particular': 1,
          'scene': 1,
          'playing': 1,
          'woman': 1,
          'peril': 1,
          'put': 1,
          'peasant': 1,
          'flourishes': 1,
          'include': 1,
          'pete': 1,
          'postlethwaite': 1,
          'wandering': 1,
          'monk': 1,
          'literary': 1,
          'ambitions': 1,
          'julie': 1,
          'christie': 1,
          'good': 1,
          'queen': 1,
          'mother': 1,
          'band': 1,
          'mercenaries': 1,
          'appear': 1,
          'dressed': 1,
          'ye': 1,
          'olde': 1,
          'heavymetal': 1,
          'concert': 1,
          'believe': 1,
          'speaking': 1,
          'spirit': 1,
          'arthur': 1,
          'nbring': 1,
          'dead': 1,
          'nunfortunately': 1,
          'add': 1,
          'together': 1,
          'bits': 1,
          'sum': 1,
          'total': 1,
          'amounts': 1,
          'zero': 1,
          'ndragonheart': 1,
          'well': 1,
          'little': 1,
          'ndirector': 1,
          'rob': 1,
          'cohen': 1,
          'bruce': 1,
          'lee': 1,
          'story': 1,
          'made': 1,
          'big': 1,
          'expensive': 1,
          'ambitiously': 1,
          'plotted': 1,
          'murky': 1,
          'predictable': 1,
          'overscored': 1,
          'selfimportant': 1,
          'list': 1,
          'goes': 1,
          'must': 1,
          'ask': 1,
          'screenwriter': 1,
          'charles': 1,
          'edward': 1,
          'pogue': 1,
          'intend': 1,
          'every': 1,
          'character': 1,
          'stabbed': 1,
          'lanced': 1,
          'sliced': 1,
          'least': 1,
          'nkeep': 1,
          'man': 1,
          'away': 1,
          'knife': 1,
          'drawer': 1,
          'last': 1,
          'five': 1,
          'worst': 1,
          'silly': 1,
          'celestial': 1,
          'nonsense': 1,
          'would': 1,
          'laughed': 1,
          'planetarium': 1,
          'show': 1,
          'less': 1,
          'summer': 1,
          'nsave': 1,
          'money': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'league': 7,
          'nthe': 5,
          'twins': 5,
          'major': 4,
          'team': 4,
          'ii': 3,
          'first': 3,
          'around': 3,
          'cast': 3,
          'gus': 3,
          'even': 3,
          'n': 3,
          'back': 2,
          'minors': 2,
          'contradiction': 2,
          'minor': 2,
          'third': 2,
          'bernsen': 2,
          'cerrano': 2,
          'tanaka': 2,
          'lend': 2,
          'enterprise': 2,
          'buzz': 2,
          'ntheres': 2,
          'old': 2,
          'ngus': 2,
          'leonard': 2,
          '1989s': 1,
          'delightful': 1,
          'surprise': 1,
          'ni': 1,
          'didnt': 1,
          'expect': 1,
          'much': 1,
          'decided': 1,
          'watch': 1,
          'cable': 1,
          'proved': 1,
          'fresh': 1,
          'funny': 1,
          'nhowever': 1,
          'appeal': 1,
          'freshness': 1,
          'sequels': 1,
          'virtually': 1,
          'guaranteed': 1,
          'stale': 1,
          'nthats': 1,
          'certainly': 1,
          'true': 1,
          'recent': 1,
          'entry': 1,
          'title': 1,
          'course': 1,
          'nshouldnt': 1,
          'nthat': 1,
          'suggests': 1,
          'lengths': 1,
          'writerdirector': 1,
          'john': 1,
          'warren': 1,
          'gone': 1,
          'squeeze': 1,
          'formula': 1,
          'established': 1,
          'noriginal': 1,
          'stars': 1,
          'charlie': 1,
          'sheen': 1,
          'tom': 1,
          'berenger': 1,
          'returned': 1,
          'leaving': 1,
          'corbin': 1,
          'original': 1,
          'headliner': 1,
          'make': 1,
          'veterans': 1,
          'return': 1,
          'dennis': 1,
          'haysbert': 1,
          'voodooinspired': 1,
          'batter': 1,
          'takaaki': 1,
          'ishibashi': 1,
          'introduced': 1,
          'seem': 1,
          'legitimacy': 1,
          'returning': 1,
          'member': 1,
          'produces': 1,
          'laughs': 1,
          'bob': 1,
          'uecker': 1,
          'radio': 1,
          'announcer': 1,
          'harry': 1,
          'doyle': 1,
          'inexplicably': 1,
          'broadcasting': 1,
          'games': 1,
          'far': 1,
          'home': 1,
          'turf': 1,
          'protagonist': 1,
          'time': 1,
          'retiring': 1,
          'pitcher': 1,
          'cantrell': 1,
          'scott': 1,
          'bakula': 1,
          'hired': 1,
          'minnesota': 1,
          'owner': 1,
          'roger': 1,
          'dorn': 1,
          'manage': 1,
          'aaa': 1,
          'nyou': 1,
          'write': 1,
          'finds': 1,
          'group': 1,
          'misfits': 1,
          'need': 1,
          'learn': 1,
          'play': 1,
          'together': 1,
          'order': 1,
          'win': 1,
          'future': 1,
          'superstar': 1,
          'whose': 1,
          'ego': 1,
          'keeps': 1,
          'growing': 1,
          'walton': 1,
          'goggins': 1,
          'exballet': 1,
          'dancer': 1,
          'kenneth': 1,
          'johnson': 1,
          'brokendown': 1,
          'timer': 1,
          'thom': 1,
          'barry': 1,
          'twin': 1,
          'outfielders': 1,
          'named': 1,
          'juan': 1,
          'difilippo': 1,
          'triplets': 1,
          'couple': 1,
          'pitchers': 1,
          'throwing': 1,
          'problems': 1,
          'judson': 1,
          'mills': 1,
          'peter': 1,
          'mackenzie': 1,
          'nalong': 1,
          'way': 1,
          'picks': 1,
          'supposedly': 1,
          'teammate': 1,
          'though': 1,
          'wasnt': 1,
          'either': 1,
          'preceding': 1,
          'films': 1,
          'nsum': 1,
          'total': 1,
          'none': 1,
          'entire': 1,
          'artificial': 1,
          'ready': 1,
          'hollywood': 1,
          'majors': 1,
          'antagonist': 1,
          'manager': 1,
          'huff': 1,
          'ted': 1,
          'mcginley': 1,
          'nleonard': 1,
          'slimy': 1,
          'sniveling': 1,
          'little': 1,
          'egotist': 1,
          'lazy': 1,
          'spoiled': 1,
          'full': 1,
          'watching': 1,
          'wondered': 1,
          'reallife': 1,
          'would': 1,
          'caricatured': 1,
          'manner': 1,
          'challenges': 1,
          'match': 1,
          'vs': 1,
          'wan': 1,
          'na': 1,
          'guess': 1,
          'wins': 1,
          'reason': 1,
          'exist': 1,
          'hardly': 1,
          'laugh': 1,
          'weak': 1,
          'left': 1,
          'room': 1,
          'one': 1,
          'sequel': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'harmon': 7,
          'lesbos': 7,
          'nthe': 6,
          'n': 5,
          'jeff': 5,
          'b': 5,
          'april': 5,
          'musical': 5,
          'isle': 5,
          'homosexual': 5,
          'like': 5,
          'smith': 4,
          'sheridan': 4,
          'lesbian': 4,
          'get': 4,
          'dick': 4,
          'im': 4,
          'trying': 4,
          'good': 4,
          'danica': 3,
          'michael': 3,
          'running': 3,
          'pfferpot': 3,
          'lance': 3,
          'ms': 3,
          'make': 3,
          'movie': 3,
          'society': 3,
          'one': 3,
          'ni': 3,
          'could': 3,
          'visuals': 3,
          'end': 3,
          'harsh': 2,
          'expect': 2,
          'kristen': 2,
          'holly': 2,
          'alex': 2,
          'boling': 2,
          'dotson': 2,
          'janet': 2,
          'krajeski': 2,
          'time': 2,
          'minutes': 2,
          'blatz': 2,
          'lover': 2,
          'nisle': 2,
          'offensive': 2,
          'small': 2,
          'town': 2,
          'bumfuck': 2,
          'married': 2,
          'dickson': 2,
          'nwhen': 2,
          'home': 2,
          'ninstead': 2,
          'new': 2,
          'parents': 2,
          'give': 2,
          'nmr': 2,
          'decide': 2,
          'help': 2,
          'dr': 2,
          'colon': 2,
          'also': 2,
          'nin': 2,
          'well': 2,
          'character': 2,
          'send': 2,
          'bomb': 2,
          'circuitry': 2,
          'way': 2,
          'thanks': 2,
          'work': 2,
          'back': 2,
          'nim': 2,
          'people': 2,
          'going': 2,
          'ever': 2,
          'number': 2,
          'nif': 2,
          'point': 2,
          'elements': 2,
          'presented': 2,
          'nas': 2,
          'dont': 2,
          'mind': 2,
          'enough': 2,
          'accepted': 2,
          'free': 2,
          'wish': 2,
          'particular': 2,
          'arent': 2,
          'think': 2,
          'little': 2,
          'portion': 2,
          'songs': 2,
          'disturbing': 2,
          'decent': 2,
          'pretty': 2,
          'singing': 2,
          'voice': 2,
          'rock': 2,
          '1': 2,
          'means': 2,
          'gladiator': 2,
          'following': 1,
          'review': 1,
          'contains': 1,
          'language': 1,
          'nbut': 1,
          'clicked': 1,
          'title': 1,
          'ncast': 1,
          'sonya': 1,
          'hensley': 1,
          'sabrina': 1,
          'lu': 1,
          'dionysius': 1,
          'burbano': 1,
          'calvin': 1,
          'grant': 1,
          'written': 1,
          'directed': 1,
          '97': 1,
          'thought': 1,
          'losing': 1,
          'makes': 1,
          'vomity': 1,
          'inside': 1,
          'balinski': 1,
          'laments': 1,
          'fact': 1,
          'received': 1,
          'telegram': 1,
          'exfiance': 1,
          'incredibly': 1,
          'comedy': 1,
          'resident': 1,
          'arkansas': 1,
          'high': 1,
          'school': 1,
          'sweetheart': 1,
          'football': 1,
          'hero': 1,
          'gets': 1,
          'extreme': 1,
          'cold': 1,
          'feet': 1,
          'runs': 1,
          'sticks': 1,
          'gun': 1,
          'mouth': 1,
          'pulls': 1,
          'trigger': 1,
          'killing': 1,
          'magically': 1,
          'transported': 1,
          'mirror': 1,
          'alternate': 1,
          'dimension': 1,
          'lesbians': 1,
          'rule': 1,
          'men': 1,
          'allowed': 1,
          'except': 1,
          'toilet': 1,
          'cleanerslave': 1,
          'napril': 1,
          'loves': 1,
          'friends': 1,
          'ready': 1,
          'director': 1,
          'need': 1,
          'medical': 1,
          'enlist': 1,
          'aid': 1,
          'sigmoid': 1,
          'claims': 1,
          'cure': 1,
          'homosexuality': 1,
          'actuality': 1,
          'begins': 1,
          'special': 1,
          'treatment': 1,
          'unbeknownst': 1,
          'turns': 1,
          'dicks': 1,
          'demand': 1,
          'return': 1,
          'decides': 1,
          'take': 1,
          'matters': 1,
          'hands': 1,
          'attack': 1,
          'rambostyle': 1,
          'leveling': 1,
          'place': 1,
          'falls': 1,
          'love': 1,
          'two': 1,
          'along': 1,
          'note': 1,
          'filmmaker': 1,
          'asides': 1,
          'camera': 1,
          'followed': 1,
          'silence': 1,
          'assuming': 1,
          'inserted': 1,
          'purpose': 1,
          'waiting': 1,
          'laughter': 1,
          'audience': 1,
          'subsided': 1,
          'naprils': 1,
          'feeling': 1,
          'recourse': 1,
          'call': 1,
          'favor': 1,
          'president': 1,
          'clinton': 1,
          'nuclear': 1,
          'whose': 1,
          'inexplicably': 1,
          'made': 1,
          'performer': 1,
          'dud': 1,
          'rewire': 1,
          'washington': 1,
          'c': 1,
          'destroying': 1,
          'daughter': 1,
          'instead': 1,
          'join': 1,
          'alternative': 1,
          'sexual': 1,
          'practices': 1,
          'sure': 1,
          'writerdirectorcostar': 1,
          'purposely': 1,
          'offend': 1,
          'believes': 1,
          'ideas': 1,
          'presents': 1,
          'cheap': 1,
          'laughs': 1,
          'neither': 1,
          'manages': 1,
          'present': 1,
          'material': 1,
          'seen': 1,
          'opens': 1,
          'preacher': 1,
          'africanamerican': 1,
          'child': 1,
          'later': 1,
          'moves': 1,
          'hanging': 1,
          'jackson': 1,
          'impersonator': 1,
          'ku': 1,
          'klux': 1,
          'klan': 1,
          'jaunty': 1,
          'preceded': 1,
          'remarks': 1,
          'gays': 1,
          'straights': 1,
          'finally': 1,
          'able': 1,
          'put': 1,
          'differences': 1,
          'behind': 1,
          'together': 1,
          'hate': 1,
          'others': 1,
          'jews': 1,
          'merely': 1,
          'idiotic': 1,
          'apologize': 1,
          'mean': 1,
          'spiritedly': 1,
          'cant': 1,
          'feel': 1,
          'serious': 1,
          'intent': 1,
          'entire': 1,
          'central': 1,
          'theme': 1,
          'afraid': 1,
          'tried': 1,
          'keep': 1,
          'open': 1,
          'watching': 1,
          'prevalent': 1,
          'tastes': 1,
          'nit': 1,
          'hard': 1,
          'watch': 1,
          'bash': 1,
          'races': 1,
          'sexes': 1,
          'without': 1,
          'preaching': 1,
          'virtues': 1,
          'nhow': 1,
          'guilty': 1,
          'nonacceptance': 1,
          'prone': 1,
          'judging': 1,
          'anyone': 1,
          'believe': 1,
          'explore': 1,
          'whatever': 1,
          'avenues': 1,
          'scornful': 1,
          'eye': 1,
          'force': 1,
          'rhetoric': 1,
          'throat': 1,
          'show': 1,
          'respect': 1,
          'preferences': 1,
          'nagain': 1,
          'maybe': 1,
          'missing': 1,
          'satirical': 1,
          'handled': 1,
          'tactfully': 1,
          'far': 1,
          'comedies': 1,
          'go': 1,
          'trey': 1,
          'parker': 1,
          'matt': 1,
          'stone': 1,
          'maddeningly': 1,
          'catchy': 1,
          'ndespite': 1,
          'mom': 1,
          'apple': 1,
          'pie': 1,
          'stuck': 1,
          'rest': 1,
          'day': 1,
          'nspeaking': 1,
          'wedding': 1,
          'bells': 1,
          'aint': 1,
          'ringing': 1,
          'song': 1,
          'accompanying': 1,
          'spousal': 1,
          'abuse': 1,
          'harrowing': 1,
          'displaying': 1,
          'touted': 1,
          'press': 1,
          'release': 1,
          'particularly': 1,
          'popular': 1,
          'due': 1,
          'stellar': 1,
          'nits': 1,
          'mainly': 1,
          'excellent': 1,
          'vocals': 1,
          'rating': 1,
          'based': 1,
          'performers': 1,
          'save': 1,
          'rosie': 1,
          'odonnell': 1,
          'performance': 1,
          'given': 1,
          'inherent': 1,
          'problem': 1,
          'leaves': 1,
          'desired': 1,
          'none': 1,
          'lowest': 1,
          'points': 1,
          'experienced': 1,
          'filmgoing': 1,
          'life': 1,
          'strained': 1,
          'lackluster': 1,
          'vocal': 1,
          'job': 1,
          'ends': 1,
          'twenty': 1,
          'credits': 1,
          'actually': 1,
          'roll': 1,
          'remainder': 1,
          'padded': 1,
          'included': 1,
          'ridiculously': 1,
          'antinukes': 1,
          'message': 1,
          'tacked': 1,
          'reason': 1,
          'feature': 1,
          'length': 1,
          'nonce': 1,
          'reprise': 1,
          'reached': 1,
          'felt': 1,
          'story': 1,
          'already': 1,
          'wrapped': 1,
          'nwhy': 1,
          'needlessly': 1,
          'stretched': 1,
          'past': 1,
          'obvious': 1,
          'available': 1,
          'videocassette': 1,
          'www': 1,
          'indieunderground': 1,
          'com': 1,
          'transfer': 1,
          'clean': 1,
          'detail': 1,
          'wrinkled': 1,
          'cloth': 1,
          'paint': 1,
          'backdrops': 1,
          'readily': 1,
          'apparent': 1,
          'letterboxed': 1,
          'approximately': 1,
          '85': 1,
          'many': 1,
          'respects': 1,
          'incredible': 1,
          'cult': 1,
          'potential': 1,
          'rocky': 1,
          'horror': 1,
          'millennium': 1,
          'nthis': 1,
          'cup': 1,
          'tea': 1,
          'know': 1,
          'enjoy': 1,
          'might': 1,
          'seek': 1,
          'hand': 1,
          'cleansing': 1,
          'palette': 1,
          'action': 1,
          'nwait': 1,
          'films': 1,
          'considered': 1,
          'noh': 1,
          'never': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'lynch': 6,
          'helena': 5,
          'movie': 4,
          'nthe': 4,
          'one': 3,
          'role': 3,
          'cavanaugh': 3,
          'fenn': 3,
          'characters': 3,
          'end': 3,
          'remembered': 2,
          'boxing': 2,
          'peaks': 2,
          'twisted': 2,
          'also': 2,
          'result': 2,
          'quickly': 2,
          'nick': 2,
          'played': 2,
          'sands': 2,
          'talented': 2,
          'sherilyn': 2,
          'beautiful': 2,
          'takes': 2,
          'order': 2,
          'cavanaughs': 2,
          'looks': 2,
          'supposed': 2,
          'even': 2,
          'actors': 2,
          'either': 2,
          'unnecessary': 2,
          'subplots': 2,
          'indicator': 1,
          'badness': 1,
          'hype': 1,
          'nsuch': 1,
          'case': 1,
          '1993': 1,
          'directorial': 1,
          'debut': 1,
          'jennifer': 1,
          'chambers': 1,
          'daughter': 1,
          'great': 1,
          'david': 1,
          'nmade': 1,
          'dying': 1,
          'years': 1,
          'posttwin': 1,
          'craze': 1,
          'among': 1,
          'snobs': 1,
          'hyped': 1,
          'another': 1,
          'warped': 1,
          'masterpiece': 1,
          'clan': 1,
          'nkim': 1,
          'basinger': 1,
          'provided': 1,
          'extra': 1,
          'publicity': 1,
          'quitting': 1,
          'lead': 1,
          'sued': 1,
          'breech': 1,
          'contract': 1,
          'nbut': 1,
          'extremely': 1,
          'disappointing': 1,
          'sank': 1,
          'welldeserved': 1,
          'oblivion': 1,
          'protagonist': 1,
          'julian': 1,
          'surgeon': 1,
          'getting': 1,
          'obsessed': 1,
          'woman': 1,
          'ditched': 1,
          'brief': 1,
          'affair': 1,
          'ncavanaugh': 1,
          'stalks': 1,
          'uses': 1,
          'every': 1,
          'opportunity': 1,
          'pathetic': 1,
          'attempts': 1,
          'reestablish': 1,
          'relationship': 1,
          'nduring': 1,
          'occasions': 1,
          'hit': 1,
          'car': 1,
          'personal': 1,
          'physician': 1,
          'way': 1,
          'nafter': 1,
          'wakes': 1,
          'discovers': 1,
          'prisoner': 1,
          'stylish': 1,
          'residence': 1,
          'amputated': 1,
          'legs': 1,
          'prevent': 1,
          'escaping': 1,
          'nshe': 1,
          'still': 1,
          'trying': 1,
          'escape': 1,
          'arms': 1,
          'napart': 1,
          'casting': 1,
          'audrey': 1,
          'horne': 1,
          'twin': 1,
          'small': 1,
          'cameo': 1,
          'wild': 1,
          'heart': 1,
          'use': 1,
          'perverse': 1,
          'fantasies': 1,
          'ms': 1,
          'hasnt': 1,
          'got': 1,
          'anything': 1,
          'common': 1,
          'works': 1,
          'directors': 1,
          'father': 1,
          'ndespite': 1,
          'rather': 1,
          'bizarre': 1,
          'subject': 1,
          'style': 1,
          'conventional': 1,
          'setting': 1,
          'light': 1,
          'quite': 1,
          'sterile': 1,
          'artificial': 1,
          'dark': 1,
          'sexual': 1,
          'fantasy': 1,
          'portray': 1,
          'njennifer': 1,
          'obviously': 1,
          'lacks': 1,
          'talents': 1,
          'directing': 1,
          'becomes': 1,
          'painfully': 1,
          'obvious': 1,
          'scenes': 1,
          'erotic': 1,
          'banal': 1,
          'artificiality': 1,
          'bellow': 1,
          'standards': 1,
          'playboy': 1,
          'videos': 1,
          'arent': 1,
          'good': 1,
          'njulian': 1,
          'terribly': 1,
          'miscast': 1,
          'emotionally': 1,
          'disturbed': 1,
          'man': 1,
          'best': 1,
          'plays': 1,
          'charismatic': 1,
          'protagonists': 1,
          'villains': 1,
          'neurotic': 1,
          'doesnt': 1,
          'suit': 1,
          'nbill': 1,
          'paxton': 1,
          'better': 1,
          'presence': 1,
          'wasted': 1,
          'forgettable': 1,
          'subplot': 1,
          'dealing': 1,
          'helenas': 1,
          'boyfriend': 1,
          'nsherilyn': 1,
          'contributed': 1,
          'mostly': 1,
          'greater': 1,
          'effort': 1,
          'acting': 1,
          'couldnt': 1,
          'help': 1,
          'screenplay': 1,
          'hand': 1,
          'awful': 1,
          'least': 1,
          'someone': 1,
          'made': 1,
          'bestseller': 1,
          'laura': 1,
          'palmers': 1,
          'diary': 1,
          'events': 1,
          'implausible': 1,
          'come': 1,
          'go': 1,
          'without': 1,
          'purpose': 1,
          'many': 1,
          'slow': 1,
          'add': 1,
          'total': 1,
          'confusion': 1,
          'none': 1,
          'involves': 1,
          'character': 1,
          'regular': 1,
          'girlfriend': 1,
          'betsy': 1,
          'clarke': 1,
          'twist': 1,
          'although': 1,
          'unpredictable': 1,
          'unbelievable': 1,
          'viewers': 1,
          'stomach': 1,
          'endure': 1,
          'entire': 1,
          'would': 1,
          'feel': 1,
          'cheated': 1,
          'nall': 1,
          'disorganised': 1,
          'quasiartistic': 1,
          'mess': 1,
          'nothing': 1,
          'wiser': 1,
          'decisions': 1,
          'kim': 1,
          'basingers': 1,
          'career': 1,
          'nneg': 1}),
 Counter({'film': 19,
          'godzilla': 16,
          'new': 13,
          'nthe': 13,
          'york': 12,
          'one': 8,
          'dr': 7,
          'would': 6,
          'beast': 6,
          'eggs': 5,
          'tatopoulos': 5,
          'could': 5,
          'plot': 4,
          'fish': 4,
          'military': 4,
          'two': 4,
          'monster': 4,
          'french': 4,
          'ni': 4,
          'cant': 4,
          'nif': 3,
          'without': 3,
          'amount': 3,
          'n': 3,
          'nuclear': 3,
          'iguanas': 3,
          'nwell': 3,
          'creature': 3,
          'nin': 3,
          'place': 3,
          'subway': 3,
          'system': 3,
          'face': 3,
          'good': 3,
          'almost': 3,
          'characters': 3,
          'mr': 3,
          'else': 3,
          'cold': 3,
          'bridge': 3,
          'tall': 3,
          'nothing': 3,
          'go': 3,
          'lets': 2,
          'quickly': 2,
          'nbut': 2,
          'doubt': 2,
          'major': 2,
          'devlin': 2,
          'emmerich': 2,
          'nno': 2,
          'hype': 2,
          'footage': 2,
          'tests': 2,
          'nwe': 2,
          'introduced': 2,
          'japanese': 2,
          'ship': 2,
          'tuna': 2,
          'eliminate': 2,
          'state': 2,
          'thing': 2,
          'nick': 2,
          'broderick': 2,
          'taken': 2,
          'effects': 2,
          'nhe': 2,
          'local': 2,
          'u': 2,
          'time': 2,
          'jamaica': 2,
          'ships': 2,
          'finally': 2,
          'makes': 2,
          'mayor': 2,
          'comes': 2,
          'city': 2,
          'picture': 2,
          'starts': 2,
          'decided': 2,
          'big': 2,
          'home': 2,
          'even': 2,
          'though': 2,
          'test': 2,
          'say': 2,
          'back': 2,
          'dead': 2,
          'yet': 2,
          'neverything': 2,
          'holes': 2,
          'next': 2,
          'audrey': 2,
          'timmonds': 2,
          'take': 2,
          'got': 2,
          'ugly': 2,
          'little': 2,
          'nnew': 2,
          'color': 2,
          'carries': 2,
          'gray': 2,
          'standing': 2,
          'giant': 2,
          'footprint': 2,
          'comparison': 2,
          'steel': 2,
          'brooklyn': 2,
          'suspension': 2,
          'carry': 2,
          'hundred': 2,
          'feet': 2,
          'ngodzilla': 2,
          'helicopters': 2,
          'made': 2,
          'maneuver': 2,
          'foot': 2,
          'park': 2,
          'less': 2,
          'yorkers': 2,
          'make': 2,
          'none': 2,
          'youve': 2,
          'seen': 2,
          'get': 1,
          'possible': 1,
          'possibility': 1,
          'receive': 1,
          'refund': 1,
          'review': 1,
          'forthcoming': 1,
          'loudest': 1,
          'longest': 1,
          'ultimately': 1,
          'amateurishly': 1,
          'written': 1,
          'ever': 1,
          'released': 1,
          'studio': 1,
          'nproducer': 1,
          'dean': 1,
          'director': 1,
          'roland': 1,
          'ashamed': 1,
          'penance': 1,
          'forced': 1,
          'return': 1,
          'school': 1,
          'watch': 1,
          'last': 1,
          'year': 1,
          'merienbad': 1,
          'grasp': 1,
          'idea': 1,
          'content': 1,
          'money': 1,
          'hide': 1,
          'fact': 1,
          'filmmakers': 1,
          '90s': 1,
          'equivalent': 1,
          'william': 1,
          'beaudine': 1,
          'billy': 1,
          'kid': 1,
          'vs': 1,
          'ndracula': 1,
          'opens': 1,
          'stock': 1,
          'bikini': 1,
          'atoll': 1,
          'interspersed': 1,
          'playfully': 1,
          'swimming': 1,
          'nuzzling': 1,
          'crew': 1,
          'canning': 1,
          'questionable': 1,
          'enterprise': 1,
          'considering': 1,
          'processing': 1,
          'supposed': 1,
          'supervised': 1,
          'netting': 1,
          'dolphins': 1,
          'attacked': 1,
          'sunk': 1,
          'unseen': 1,
          'nlater': 1,
          'group': 1,
          'frenchmen': 1,
          'led': 1,
          'philippe': 1,
          'roache': 1,
          'jean': 1,
          'reno': 1,
          'interview': 1,
          'sole': 1,
          'survivor': 1,
          'shock': 1,
          'man': 1,
          'utter': 1,
          'word': 1,
          'gojira': 1,
          'name': 1,
          'famed': 1,
          'matthew': 1,
          'moniker': 1,
          'obviously': 1,
          'designer': 1,
          'currently': 1,
          'studying': 1,
          'chernobyl': 1,
          'disaster': 1,
          'earthworm': 1,
          'population': 1,
          'immediately': 1,
          'drafted': 1,
          'panama': 1,
          'shown': 1,
          'huge': 1,
          'footprints': 1,
          'short': 1,
          'another': 1,
          'fishing': 1,
          'boat': 1,
          'loaded': 1,
          'canned': 1,
          'korea': 1,
          'reason': 1,
          'found': 1,
          'grounded': 1,
          'seems': 1,
          'whatever': 1,
          'eating': 1,
          'headed': 1,
          'nwhen': 1,
          'appears': 1,
          'tears': 1,
          'building': 1,
          'stomps': 1,
          'couple': 1,
          'trucks': 1,
          'life': 1,
          'hell': 1,
          'incumbent': 1,
          'ebert': 1,
          'thumbs': 1,
          'tatopouloss': 1,
          'help': 1,
          'tons': 1,
          'fresh': 1,
          'dumped': 1,
          'middle': 1,
          'lure': 1,
          'hiding': 1,
          'nit': 1,
          'crashing': 1,
          'streets': 1,
          'cute': 1,
          'snaps': 1,
          'beasts': 1,
          'eats': 1,
          'shooting': 1,
          'chase': 1,
          'army': 1,
          'causing': 1,
          '90': 1,
          'ensuing': 1,
          'damage': 1,
          'nworking': 1,
          'hunch': 1,
          'come': 1,
          'apple': 1,
          'totopoulos': 1,
          'buys': 1,
          'pregnancy': 1,
          'kits': 1,
          'drugstore': 1,
          'chosen': 1,
          'remain': 1,
          'open': 1,
          'evacuated': 1,
          'proves': 1,
          'hermaphrodite': 1,
          'pregnant': 1,
          'nneedless': 1,
          'believes': 1,
          'doctor': 1,
          'discovery': 1,
          'must': 1,
          'join': 1,
          'renegade': 1,
          'secret': 1,
          'service': 1,
          'agents': 1,
          'find': 1,
          'monsters': 1,
          'nesting': 1,
          'site': 1,
          'destroy': 1,
          'letting': 1,
          'populous': 1,
          'isnt': 1,
          'sincerely': 1,
          'hope': 1,
          'ive': 1,
          'completely': 1,
          'spoiled': 1,
          'interest': 1,
          'anyone': 1,
          'might': 1,
          'seeing': 1,
          'gave': 1,
          'away': 1,
          'relevant': 1,
          'spare': 1,
          'courageous': 1,
          'foolish': 1,
          'enough': 1,
          'drop': 1,
          'hours': 1,
          'wage': 1,
          'tripe': 1,
          'reeks': 1,
          'bad': 1,
          'piles': 1,
          'rotting': 1,
          'used': 1,
          'trap': 1,
          'script': 1,
          'clear': 1,
          'full': 1,
          'non': 1,
          'sure': 1,
          'recipient': 1,
          'years': 1,
          'razzie': 1,
          'award': 1,
          'dialogue': 1,
          'maria': 1,
          'pitillo': 1,
          'estranged': 1,
          'girlfriend': 1,
          'adolescent': 1,
          'teenagers': 1,
          'giggle': 1,
          'disbelief': 1,
          'happened': 1,
          'screening': 1,
          'witnessed': 1,
          'enjoyably': 1,
          'campy': 1,
          'didnt': 1,
          'damn': 1,
          'seriously': 1,
          'end': 1,
          'commentary': 1,
          'humanities': 1,
          'foibles': 1,
          'nature': 1,
          'reference': 1,
          'sort': 1,
          'retaliation': 1,
          'mankind': 1,
          'dummy': 1,
          'knocked': 1,
          'immigrants': 1,
          'let': 1,
          'pay': 1,
          'bleak': 1,
          'looking': 1,
          'ntaking': 1,
          'night': 1,
          'rain': 1,
          'storm': 1,
          'movie': 1,
          'depth': 1,
          'dark': 1,
          'never': 1,
          'looked': 1,
          'inhospitable': 1,
          'since': 1,
          'death': 1,
          'wish': 1,
          'attempt': 1,
          'give': 1,
          'bright': 1,
          'red': 1,
          'umbrella': 1,
          'unique': 1,
          'everyone': 1,
          'standard': 1,
          'issue': 1,
          'moment': 1,
          'composition': 1,
          'brief': 1,
          'scenes': 1,
          'finds': 1,
          'scene': 1,
          'nicely': 1,
          'photographed': 1,
          'poorly': 1,
          'set': 1,
          'nyou': 1,
          'know': 1,
          'outset': 1,
          'nfor': 1,
          'scientist': 1,
          'poor': 1,
          'observation': 1,
          'nlets': 1,
          'look': 1,
          'interesting': 1,
          'activity': 1,
          'becoming': 1,
          'popular': 1,
          'kevin': 1,
          'bacon': 1,
          'game': 1,
          'n1': 1,
          'affect': 1,
          'clutch': 1,
          'iguana': 1,
          'fuse': 1,
          'n2': 1,
          'blooded': 1,
          'choose': 1,
          'climate': 1,
          'nest': 1,
          'dont': 1,
          'think': 1,
          'habit': 1,
          'migrating': 1,
          'n3': 1,
          'crawl': 1,
          'slice': 1,
          'submarine': 1,
          'half': 1,
          'unable': 1,
          'extricate': 1,
          'thin': 1,
          'cable': 1,
          'n4': 1,
          'existence': 1,
          'need': 1,
          'cables': 1,
          'n5': 1,
          'belly': 1,
          'radioactive': 1,
          'mutations': 1,
          'surely': 1,
          'wondrous': 1,
          'creatures': 1,
          'note': 1,
          'egg': 1,
          '10': 1,
          'wide': 1,
          '1': 1,
          '000': 1,
          'n6': 1,
          'crush': 1,
          'eat': 1,
          'cabs': 1,
          'stronger': 1,
          'n7': 1,
          'bullets': 1,
          'torpedoes': 1,
          'missiles': 1,
          'catch': 1,
          'n8': 1,
          'taxis': 1,
          'n9': 1,
          'burrow': 1,
          'tear': 1,
          'avenue': 1,
          'tunnel': 1,
          'n10': 1,
          'mutated': 1,
          'nmaybe': 1,
          'hermit': 1,
          'crab': 1,
          'sequel': 1,
          'n11': 1,
          'galapagos': 1,
          'actually': 1,
          'live': 1,
          'polynesian': 1,
          'islands': 1,
          'n12': 1,
          'brought': 1,
          'going': 1,
          'listen': 1,
          'anyway': 1,
          'n13': 1,
          'evacuate': 1,
          'island': 1,
          'day': 1,
          'convince': 1,
          'jersey': 1,
          'n14': 1,
          'television': 1,
          'stations': 1,
          'use': 1,
          'vhs': 1,
          'tape': 1,
          'filming': 1,
          'broadcasting': 1,
          'hate': 1,
          'beta': 1,
          'cam': 1,
          'serve': 1,
          'seem': 1,
          'enjoyable': 1,
          'ndont': 1,
          'fooled': 1,
          'matter': 1,
          'episode': 1,
          'americas': 1,
          'funniest': 1,
          'videos': 1,
          'performances': 1,
          'singularly': 1,
          'bland': 1,
          'nnot': 1,
          'performance': 1,
          'belays': 1,
          'awe': 1,
          'fear': 1,
          'terror': 1,
          'midst': 1,
          'onslaught': 1,
          'stop': 1,
          'discuss': 1,
          'lack': 1,
          'coffee': 1,
          'failed': 1,
          'relationships': 1,
          'career': 1,
          'choices': 1,
          'common': 1,
          'occurrence': 1,
          'doesnt': 1,
          'bowel': 1,
          'movement': 1,
          'believable': 1,
          'part': 1,
          'okay': 1,
          'design': 1,
          'funky': 1,
          'memorable': 1,
          'mind': 1,
          'redirection': 1,
          'remove': 1,
          'familiar': 1,
          'trademark': 1,
          'namely': 1,
          'atomic': 1,
          'breath': 1,
          'nnow': 1,
          'quite': 1,
          'fathom': 1,
          'call': 1,
          'trait': 1,
          'na': 1,
          'superman': 1,
          'ability': 1,
          'fly': 1,
          'nthere': 1,
          'much': 1,
          'wrong': 1,
          'really': 1,
          'recall': 1,
          'anything': 1,
          'recently': 1,
          'left': 1,
          'hearted': 1,
          'except': 1,
          'divorce': 1,
          'nany': 1,
          'ton': 1,
          'lizard': 1,
          'slipping': 1,
          'gum': 1,
          'balls': 1,
          'envisioned': 1,
          'influence': 1,
          'prozac': 1,
          'addition': 1,
          'baby': 1,
          'raptors': 1,
          'ah': 1,
          'meant': 1,
          'godzillas': 1,
          'direct': 1,
          'rip': 1,
          'jurassic': 1,
          'films': 1,
          'suspense': 1,
          'tension': 1,
          'nsuffice': 1,
          'brain': 1,
          'motion': 1,
          'decade': 1,
          'nthis': 1,
          'needed': 1,
          'nwith': 1,
          'current': 1,
          'level': 1,
          'writing': 1,
          'directing': 1,
          'succeeds': 1,
          'trailers': 1,
          'best': 1,
          'parts': 1,
          'nmy': 1,
          'suggestion': 1,
          'e': 1,
          'always': 1,
          'selling': 1,
          'shoes': 1,
          'rocky': 1,
          'horror': 1,
          'nonly': 1,
          'funny': 1,
          'nneg': 1}),
 Counter({'harrys': 8,
          'allen': 7,
          'harry': 7,
          'story': 6,
          'one': 5,
          'nharry': 5,
          'real': 5,
          'life': 4,
          'nthe': 4,
          'character': 4,
          'film': 4,
          'block': 3,
          'wants': 3,
          'stylistic': 3,
          'time': 3,
          'books': 3,
          'fragments': 3,
          'fictional': 3,
          'characters': 3,
          'also': 3,
          'friend': 3,
          'less': 2,
          'comedy': 2,
          'different': 2,
          'work': 2,
          'better': 2,
          'ndeconstructing': 2,
          'goes': 2,
          'viewer': 2,
          'gives': 2,
          'writing': 2,
          'told': 2,
          'device': 2,
          'scenes': 2,
          'cuts': 2,
          'show': 2,
          'something': 2,
          'nas': 2,
          'puts': 2,
          'friends': 2,
          'playing': 2,
          'frustrating': 2,
          'even': 2,
          'bringing': 2,
          'nit': 2,
          'keep': 2,
          'nif': 2,
          'another': 2,
          'seen': 2,
          'blurry': 2,
          'touches': 2,
          'audience': 2,
          'worth': 2,
          'us': 2,
          'old': 2,
          'find': 2,
          'go': 2,
          'someone': 2,
          'commit': 2,
          'fay': 2,
          'larry': 2,
          'would': 2,
          'like': 2,
          'son': 2,
          'prostitute': 2,
          'cookie': 2,
          'lot': 2,
          'nthat': 2,
          'scale': 2,
          '4': 2,
          'woody': 1,
          'successful': 1,
          'artistdirectors': 1,
          'hollywood': 1,
          'becoming': 1,
          'reliable': 1,
          'filmmaker': 1,
          'nin': 1,
          'early': 1,
          'years': 1,
          'filmmaking': 1,
          'mastered': 1,
          'simple': 1,
          'nfrom': 1,
          'went': 1,
          'second': 1,
          'phase': 1,
          'took': 1,
          'risks': 1,
          'experimenting': 1,
          'approaches': 1,
          'styles': 1,
          'nsome': 1,
          'others': 1,
          'nzelig': 1,
          'crimes': 1,
          'misdemeanors': 1,
          'creative': 1,
          'intelligent': 1,
          'artist': 1,
          'extreme': 1,
          'bizarre': 1,
          'experiment': 1,
          'demanding': 1,
          'back': 1,
          'two': 1,
          'drives': 1,
          'nhe': 1,
          'sex': 1,
          'many': 1,
          'women': 1,
          'possible': 1,
          'makes': 1,
          'mess': 1,
          'lovers': 1,
          'retreat': 1,
          'static': 1,
          'highly': 1,
          'unsympathetic': 1,
          'number': 1,
          'often': 1,
          'clumsy': 1,
          'experiments': 1,
          'nperhaps': 1,
          'irritating': 1,
          'express': 1,
          'disjointedness': 1,
          'editing': 1,
          'putting': 1,
          'middle': 1,
          'missing': 1,
          'edited': 1,
          'writer': 1,
          'thinnest': 1,
          'disguises': 1,
          'dramatizes': 1,
          'incidents': 1,
          'supposed': 1,
          'line': 1,
          'actors': 1,
          'people': 1,
          'nthese': 1,
          'lack': 1,
          'completion': 1,
          'track': 1,
          'straight': 1,
          'doppelganger': 1,
          'person': 1,
          'sounds': 1,
          'complicated': 1,
          'nthen': 1,
          'stories': 1,
          'actor': 1,
          'seems': 1,
          'peculiar': 1,
          'property': 1,
          'gone': 1,
          'focus': 1,
          'image': 1,
          'sees': 1,
          'metaphor': 1,
          'condition': 1,
          'short': 1,
          'create': 1,
          'sufficient': 1,
          'confusion': 1,
          'chronological': 1,
          'order': 1,
          'giving': 1,
          'decoding': 1,
          'could': 1,
          'excusable': 1,
          'nbut': 1,
          'give': 1,
          'portrait': 1,
          'selfish': 1,
          'manipulator': 1,
          'effort': 1,
          'understand': 1,
          'set': 1,
          'college': 1,
          'expelled': 1,
          'attended': 1,
          'honor': 1,
          'lifetime': 1,
          'achievement': 1,
          'searching': 1,
          'among': 1,
          'njust': 1,
          'unwilling': 1,
          'relationship': 1,
          'anyone': 1,
          'suddenly': 1,
          'needs': 1,
          'support': 1,
          'else': 1,
          'unclear': 1,
          'tries': 1,
          'current': 1,
          'girl': 1,
          'elizabeth': 1,
          'shue': 1,
          'marry': 1,
          'billy': 1,
          'crystal': 1,
          'nblock': 1,
          'hilly': 1,
          'eric': 1,
          'lloyd': 1,
          'accompany': 1,
          'hillys': 1,
          'mother': 1,
          'previously': 1,
          'first': 1,
          'psychiatrist': 1,
          'recently': 1,
          'wife': 1,
          'refuses': 1,
          'let': 1,
          'see': 1,
          'father': 1,
          'nanother': 1,
          'richard': 1,
          'bob': 1,
          'balaban': 1,
          'health': 1,
          'problems': 1,
          'considers': 1,
          'hazel': 1,
          'goodman': 1,
          'interesting': 1,
          'introduce': 1,
          'likable': 1,
          'soon': 1,
          'mighty': 1,
          'aphrodite': 1,
          'considerably': 1,
          'differentblack': 1,
          'brighter': 1,
          'mira': 1,
          'sorvinos': 1,
          'previous': 1,
          'nwhile': 1,
          'sequences': 1,
          'never': 1,
          'complete': 1,
          'elaborate': 1,
          'quite': 1,
          'funny': 1,
          'centerpiece': 1,
          'journey': 1,
          'hell': 1,
          'sort': 1,
          'orpheus': 1,
          'rescuing': 1,
          'clutches': 1,
          'devil': 1,
          'looks': 1,
          'left': 1,
          'uncompleted': 1,
          'perhaps': 1,
          'unwillingness': 1,
          'telling': 1,
          'linchpin': 1,
          'needed': 1,
          'tie': 1,
          'together': 1,
          'quirks': 1,
          'central': 1,
          'changes': 1,
          'care': 1,
          'patently': 1,
          'creates': 1,
          'around': 1,
          'acerbic': 1,
          'eyes': 1,
          'nallen': 1,
          'much': 1,
          'deconstructing': 1,
          'ni': 1,
          'rate': 1,
          '3': 1,
          '0': 1,
          '10': 1,
          '1': 1,
          'nneg': 1}),
 Counter({'awake': 4,
          'best': 4,
          'film': 3,
          'audience': 3,
          'wide': 3,
          'better': 3,
          'first': 3,
          'nit': 3,
          'kids': 3,
          'might': 3,
          'nthe': 3,
          'childrens': 2,
          'god': 2,
          'joshua': 2,
          'grandfather': 2,
          'quest': 2,
          'nhe': 2,
          'religious': 2,
          'delany': 2,
          'leary': 2,
          'favorite': 2,
          'teacher': 2,
          'odonnell': 2,
          'journey': 2,
          'year': 2,
          'friend': 2,
          'crush': 2,
          'serious': 2,
          'seem': 2,
          'see': 2,
          'questions': 2,
          'delivers': 2,
          'answer': 2,
          'nostalgic': 2,
          'movie': 2,
          'flashbacks': 2,
          'joshuas': 2,
          'relationship': 2,
          'would': 2,
          'heres': 1,
          'rarity': 1,
          'attempts': 1,
          'tackle': 1,
          'weighty': 1,
          'subject': 1,
          'ndone': 1,
          'well': 1,
          'could': 1,
          'gem': 1,
          'among': 1,
          'wasteland': 1,
          'modern': 1,
          'cinema': 1,
          'nunfortunately': 1,
          'isnt': 1,
          'nwith': 1,
          'jumbled': 1,
          'messages': 1,
          'unclear': 1,
          'left': 1,
          'asleep': 1,
          'nfifth': 1,
          'grader': 1,
          'beal': 1,
          'joseph': 1,
          'cross': 1,
          'middle': 1,
          'moral': 1,
          'crisis': 1,
          'nhis': 1,
          'beloved': 1,
          'robert': 1,
          'loggia': 1,
          'died': 1,
          'begun': 1,
          'wants': 1,
          'find': 1,
          'discover': 1,
          'bad': 1,
          'things': 1,
          'happen': 1,
          'nthis': 1,
          'slightly': 1,
          'disturbing': 1,
          'parents': 1,
          'dana': 1,
          'denis': 1,
          'cope': 1,
          'son': 1,
          'explores': 1,
          'different': 1,
          'faiths': 1,
          'nat': 1,
          'catholic': 1,
          'school': 1,
          'sister': 1,
          'terry': 1,
          'rosie': 1,
          'tries': 1,
          'give': 1,
          'guidance': 1,
          'must': 1,
          'make': 1,
          'nmeanwhile': 1,
          'momentous': 1,
          'life': 1,
          'several': 1,
          'adventures': 1,
          'daredevil': 1,
          'dave': 1,
          'timothy': 1,
          'reifsnyder': 1,
          'gets': 1,
          'begins': 1,
          'wake': 1,
          'world': 1,
          'around': 1,
          'spiritual': 1,
          'somewhat': 1,
          'confusing': 1,
          'real': 1,
          'expected': 1,
          'non': 1,
          'surface': 1,
          'appears': 1,
          'nhowever': 1,
          'deals': 1,
          'issues': 1,
          'likely': 1,
          'boring': 1,
          'todays': 1,
          'instantgratification': 1,
          'nand': 1,
          'heartening': 1,
          'someone': 1,
          'trying': 1,
          'produce': 1,
          'something': 1,
          'thoughtful': 1,
          'kidvid': 1,
          'asks': 1,
          'cheap': 1,
          'gimmick': 1,
          'nif': 1,
          'bit': 1,
          'meat': 1,
          'story': 1,
          'adults': 1,
          'bent': 1,
          'get': 1,
          'kick': 1,
          'actors': 1,
          'created': 1,
          'great': 1,
          'cast': 1,
          'wasted': 1,
          'roles': 1,
          'amount': 1,
          'little': 1,
          'cameos': 1,
          'elements': 1,
          'etc': 1,
          'done': 1,
          'much': 1,
          'movies': 1,
          'actually': 1,
          'like': 1,
          'filler': 1,
          'films': 1,
          'strongest': 1,
          'scenes': 1,
          'touching': 1,
          'depicting': 1,
          'nthey': 1,
          'show': 1,
          'depth': 1,
          'present': 1,
          'anywhere': 1,
          'else': 1,
          'nmaybe': 1,
          'instead': 1,
          'playing': 1,
          'set': 1,
          'entirely': 1,
          'last': 1,
          'grandpa': 1,
          'certainly': 1,
          'entertaining': 1,
          'nwide': 1,
          'described': 1,
          'failed': 1,
          'experiment': 1,
          'starts': 1,
          'noble': 1,
          'aspirations': 1,
          'never': 1,
          'promise': 1,
          'nparents': 1,
          'take': 1,
          'children': 1,
          'one': 1,
          'ought': 1,
          'prepared': 1,
          'tough': 1,
          'arent': 1,
          'bored': 1,
          'death': 1,
          'nneg': 1}),
 Counter({'brasco': 7,
          'donnie': 6,
          'gangster': 5,
          'nthe': 5,
          'movie': 4,
          'pistone': 4,
          'wiseguy': 4,
          'family': 4,
          'way': 4,
          'style': 3,
          'pacinos': 3,
          'ndonnie': 3,
          'could': 3,
          'true': 2,
          'nbut': 2,
          'picture': 2,
          'life': 2,
          'americas': 2,
          'crime': 2,
          'much': 2,
          'films': 2,
          'trade': 2,
          'flicks': 2,
          'lefty': 2,
          'pacino': 2,
          'troubles': 2,
          'little': 2,
          'pistones': 2,
          'gangsterflick': 2,
          'subplot': 2,
          'never': 2,
          'drama': 2,
          'us': 2,
          'presence': 2,
          'brascos': 2,
          'take': 2,
          'obvious': 2,
          'themes': 2,
          'explored': 2,
          'bloody': 2,
          'isnt': 2,
          'expect': 2,
          'action': 2,
          'ndepp': 2,
          'makers': 2,
          'theres': 1,
          'reason': 1,
          'doubt': 1,
          'based': 1,
          'opening': 1,
          'credits': 1,
          'proclaim': 1,
          'story': 1,
          'accurate': 1,
          'mean': 1,
          'streets': 1,
          'cinematic': 1,
          'depictions': 1,
          'organised': 1,
          'stronger': 1,
          'basis': 1,
          'reality': 1,
          'would': 1,
          'previously': 1,
          'thought': 1,
          'nfor': 1,
          'outset': 1,
          'group': 1,
          'hoods': 1,
          'jocularly': 1,
          'differing': 1,
          'opinions': 1,
          'merits': 1,
          'various': 1,
          'automobiles': 1,
          'unlike': 1,
          'number': 1,
          'lowlifes': 1,
          'recently': 1,
          'gave': 1,
          'madonna': 1,
          'song': 1,
          'close': 1,
          'reading': 1,
          'resembles': 1,
          'passingly': 1,
          'believed': 1,
          'works': 1,
          'fiction': 1,
          'nour': 1,
          'eponymous': 1,
          'hero': 1,
          'johnny': 1,
          'depp': 1,
          'cheap': 1,
          'crook': 1,
          'first': 1,
          'appears': 1,
          'nbrasco': 1,
          'joseph': 1,
          'undercover': 1,
          'fbi': 1,
          'agent': 1,
          'task': 1,
          'chummingup': 1,
          'al': 1,
          'seasoned': 1,
          'hood': 1,
          'tutors': 1,
          'art': 1,
          'nregrettably': 1,
          'learns': 1,
          'lessons': 1,
          'well': 1,
          'nhis': 1,
          'concern': 1,
          'burdened': 1,
          'heroin': 1,
          'addicted': 1,
          'son': 1,
          'exacerbates': 1,
          'children': 1,
          'resent': 1,
          'lengthy': 1,
          'absences': 1,
          'wife': 1,
          'fears': 1,
          'husbands': 1,
          'persona': 1,
          'becoming': 1,
          'convincing': 1,
          'ntrue': 1,
          'focus': 1,
          'deviate': 1,
          'typical': 1,
          'formula': 1,
          'rises': 1,
          'television': 1,
          'origins': 1,
          'unhappy': 1,
          'couple': 1,
          'predictable': 1,
          'lines': 1,
          'engage': 1,
          'drawnout': 1,
          'domestic': 1,
          'squabbles': 1,
          'including': 1,
          'illadvised': 1,
          'marriage': 1,
          'guidance': 1,
          'routine': 1,
          'slow': 1,
          'film': 1,
          'unnecessarily': 1,
          'biggest': 1,
          'problem': 1,
          'however': 1,
          'attitude': 1,
          'lacks': 1,
          'flair': 1,
          'many': 1,
          'predecessors': 1,
          'awkward': 1,
          'use': 1,
          'occasional': 1,
          'disco': 1,
          'tune': 1,
          'momentarily': 1,
          'reminds': 1,
          '70s': 1,
          'consistent': 1,
          'blindingly': 1,
          'tacky': 1,
          'loved': 1,
          'fluoro': 1,
          'coloured': 1,
          'suits': 1,
          'scorces': 1,
          'costume': 1,
          'casino': 1,
          'nmore': 1,
          'importantly': 1,
          'triggers': 1,
          'memories': 1,
          'earlier': 1,
          'triumphs': 1,
          'similar': 1,
          'territory': 1,
          'covered': 1,
          'far': 1,
          'effectively': 1,
          'american': 1,
          'values': 1,
          'instance': 1,
          'feeble': 1,
          'nlefty': 1,
          'rambles': 1,
          'dreams': 1,
          'material': 1,
          'betterment': 1,
          'accompaniment': 1,
          'grating': 1,
          'inspirational': 1,
          'music': 1,
          'ninexplicably': 1,
          'leftys': 1,
          'horatio': 1,
          'alger': 1,
          'inspired': 1,
          'gush': 1,
          'supposed': 1,
          'move': 1,
          'nit': 1,
          'doesnt': 1,
          'dealt': 1,
          'saccharine': 1,
          'manner': 1,
          'njust': 1,
          'think': 1,
          'minute': 1,
          'godfather': 1,
          'movies': 1,
          'scarface': 1,
          'nin': 1,
          'pictures': 1,
          'dedication': 1,
          'peculiar': 1,
          'hypercapitalism': 1,
          'twisted': 1,
          'confronting': 1,
          'dogged': 1,
          'application': 1,
          'macho': 1,
          'procedure': 1,
          'meant': 1,
          'relations': 1,
          'friends': 1,
          'intriguingly': 1,
          'dark': 1,
          'neither': 1,
          'spared': 1,
          'retribution': 1,
          'breaching': 1,
          'regulations': 1,
          'tawdry': 1,
          'therefore': 1,
          'repetition': 1,
          'familiar': 1,
          'shameless': 1,
          'sanitises': 1,
          'n': 1,
          'oh': 1,
          'forgot': 1,
          'mention': 1,
          'script': 1,
          'also': 1,
          'sports': 1,
          'startling': 1,
          'pipstones': 1,
          'superiors': 1,
          'obstructive': 1,
          'incompetents': 1,
          'infuriated': 1,
          'constant': 1,
          'insubordination': 1,
          'damn': 1,
          'mcbain': 1,
          'ni': 1,
          'hear': 1,
          'springfield': 1,
          'nso': 1,
          'cliched': 1,
          'nbig': 1,
          'deal': 1,
          'nwell': 1,
          'quality': 1,
          'sequences': 1,
          'bravado': 1,
          'performances': 1,
          'abundance': 1,
          'going': 1,
          'decent': 1,
          'example': 1,
          'genre': 1,
          'fails': 1,
          'counts': 1,
          'scenes': 1,
          'rise': 1,
          'ordinary': 1,
          'depps': 1,
          'woeful': 1,
          'performance': 1,
          'tends': 1,
          'smother': 1,
          'goodwork': 1,
          'comrades': 1,
          'nadmittedly': 1,
          'nothing': 1,
          'new': 1,
          'michael': 1,
          'madsen': 1,
          'sonny': 1,
          'simply': 1,
          'smirks': 1,
          'like': 1,
          'slightly': 1,
          'subdued': 1,
          'mr': 1,
          'white': 1,
          'possess': 1,
          'unmistakable': 1,
          'sly': 1,
          'charm': 1,
          'usually': 1,
          'exhibits': 1,
          'bit': 1,
          'class': 1,
          'regrettably': 1,
          'one': 1,
          'betters': 1,
          'must': 1,
          'left': 1,
          'starstruck': 1,
          'completely': 1,
          'hellbent': 1,
          'mimicking': 1,
          'wellearned': 1,
          'high': 1,
          'consequences': 1,
          'painful': 1,
          'watch': 1,
          'nits': 1,
          'exaggeration': 1,
          'say': 1,
          'credibility': 1,
          'seriously': 1,
          'strained': 1,
          'sight': 1,
          'familys': 1,
          'uncanny': 1,
          'ability': 1,
          'keep': 1,
          'straight': 1,
          'face': 1,
          'front': 1,
          'breadwinners': 1,
          'phony': 1,
          'brooklyn': 1,
          'accent': 1,
          'nperhaps': 1,
          'pity': 1,
          'nmaybe': 1,
          'scrupulous': 1,
          'adherence': 1,
          'pinpoint': 1,
          'accuracy': 1,
          'demanded': 1,
          'tiered': 1,
          'dialogue': 1,
          'scenarios': 1,
          'weakly': 1,
          'reminiscent': 1,
          'classic': 1,
          'nif': 1,
          'indeed': 1,
          'case': 1,
          'surely': 1,
          'fascinating': 1,
          'possibility': 1,
          'underworld': 1,
          'committed': 1,
          'emulating': 1,
          'albeit': 1,
          'heavily': 1,
          'attenuated': 1,
          'form': 1,
          'namesakes': 1,
          'poignantly': 1,
          'played': 1,
          'simple': 1,
          'cop': 1,
          'becomes': 1,
          'hideous': 1,
          'parody': 1,
          'forced': 1,
          'mimic': 1,
          'bigscreen': 1,
          'greats': 1,
          'nwho': 1,
          'knows': 1,
          'insights': 1,
          'criminal': 1,
          'psyche': 1,
          'arisen': 1,
          'perhaps': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'action': 5,
          'foley': 5,
          'years': 4,
          'beverly': 4,
          'hills': 4,
          'popular': 3,
          'murphy': 3,
          'nin': 3,
          '1984': 3,
          'time': 3,
          'de': 3,
          'hollywood': 2,
          'among': 2,
          'used': 2,
          'movie': 2,
          'whose': 2,
          'nthe': 2,
          'characters': 2,
          'first': 2,
          'decade': 2,
          'comedy': 2,
          'third': 2,
          'landis': 2,
          'another': 2,
          'neddie': 2,
          'detroit': 2,
          'policeman': 2,
          'wald': 2,
          'turns': 2,
          'wonderland': 2,
          'los': 2,
          'angeles': 2,
          'would': 2,
          'provided': 2,
          'simply': 2,
          'guys': 2,
          'belongs': 2,
          'sometimes': 2,
          'end': 2,
          'days': 1,
          'lack': 1,
          'originality': 1,
          'reflects': 1,
          'deluge': 1,
          'remakes': 1,
          'nbut': 1,
          'ago': 1,
          'wes': 1,
          'craven': 1,
          'publicly': 1,
          'made': 1,
          'fun': 1,
          'practice': 1,
          'sequels': 1,
          'producers': 1,
          'nsequels': 1,
          'also': 1,
          'directors': 1,
          'stars': 1,
          'careers': 1,
          'went': 1,
          'south': 1,
          'way': 1,
          'regain': 1,
          'popularity': 1,
          'prestige': 1,
          'thought': 1,
          'use': 1,
          'formulas': 1,
          'story': 1,
          'lines': 1,
          'brought': 1,
          'success': 1,
          'place': 1,
          'none': 1,
          'celebrity': 1,
          'eddie': 1,
          'black': 1,
          'comedian': 1,
          '1980s': 1,
          'career': 1,
          'big': 1,
          'decline': 1,
          'part': 1,
          'order': 1,
          'return': 1,
          'spotlight': 1,
          'chose': 1,
          'resurrect': 1,
          'franchise': 1,
          'created': 1,
          'cop': 1,
          'already': 1,
          'spawned': 1,
          'sequel': 1,
          '1987': 1,
          'nseven': 1,
          'later': 1,
          'instalment': 1,
          'directorial': 1,
          'service': 1,
          'john': 1,
          'fading': 1,
          'star': 1,
          'successfully': 1,
          'collaborated': 1,
          'twice': 1,
          'trading': 1,
          'places': 1,
          'coming': 1,
          'america': 1,
          'nthis': 1,
          'however': 1,
          'wasnt': 1,
          'charm': 1,
          'iii': 1,
          'failure': 1,
          'wait': 1,
          'real': 1,
          'comeback': 1,
          'plays': 1,
          'axel': 1,
          'fasttalking': 1,
          'streetwise': 1,
          'raids': 1,
          'illegal': 1,
          'chop': 1,
          'shop': 1,
          'routine': 1,
          'police': 1,
          'ends': 1,
          'tragedy': 1,
          'criminals': 1,
          'kill': 1,
          'foleys': 1,
          'boss': 1,
          'ndetermined': 1,
          'bring': 1,
          'killers': 1,
          'justice': 1,
          'realises': 1,
          'leader': 1,
          'ellis': 1,
          'timothy': 1,
          'carhart': 1,
          'nwhen': 1,
          'happens': 1,
          'security': 1,
          'chief': 1,
          'theme': 1,
          'park': 1,
          'goes': 1,
          'back': 1,
          'nthere': 1,
          'help': 1,
          'old': 1,
          'friend': 1,
          'local': 1,
          'rosewood': 1,
          'judge': 1,
          'rheinhold': 1,
          'clash': 1,
          'money': 1,
          'counterfeit': 1,
          'ring': 1,
          'nten': 1,
          'passed': 1,
          'since': 1,
          'original': 1,
          'times': 1,
          'definitely': 1,
          'different': 1,
          'contrast': 1,
          'blue': 1,
          'collar': 1,
          'yuppie': 1,
          'lot': 1,
          'gags': 1,
          'doesnt': 1,
          'work': 1,
          'nscreenwriter': 1,
          'steven': 1,
          'e': 1,
          'souza': 1,
          'provides': 1,
          'conflict': 1,
          'childish': 1,
          'sillyness': 1,
          'good': 1,
          'businesslike': 1,
          'professionalism': 1,
          'bad': 1,
          'nsince': 1,
          'former': 1,
          'character': 1,
          'watch': 1,
          'language': 1,
          'tone': 1,
          'general': 1,
          'infantile': 1,
          'nunfortunately': 1,
          'still': 1,
          'genre': 1,
          'much': 1,
          'violence': 1,
          'little': 1,
          'children': 1,
          'nnice': 1,
          'example': 1,
          'humorous': 1,
          'scene': 1,
          'beginning': 1,
          'standard': 1,
          'ramboesque': 1,
          'bloodbath': 1,
          'nunlike': 1,
          'donner': 1,
          'lethal': 1,
          'weapon': 1,
          'series': 1,
          'cant': 1,
          'balance': 1,
          'regular': 1,
          'result': 1,
          'fails': 1,
          'aspects': 1,
          'naction': 1,
          'scenes': 1,
          'interesting': 1,
          'spectacular': 1,
          'scenery': 1,
          'fascinating': 1,
          'humour': 1,
          'hand': 1,
          'falls': 1,
          'flat': 1,
          'nto': 1,
          'make': 1,
          'even': 1,
          'worse': 1,
          'minor': 1,
          'gets': 1,
          'unnecessary': 1,
          'irritating': 1,
          'overexposure': 1,
          'especially': 1,
          'art': 1,
          'expert': 1,
          'turned': 1,
          'arms': 1,
          'dealer': 1,
          'played': 1,
          'bronson': 1,
          'pinchot': 1,
          'although': 1,
          'entertainment': 1,
          'viewers': 1,
          'least': 1,
          'critical': 1,
          'ones': 1,
          'probably': 1,
          'happy': 1,
          'know': 1,
          'arent': 1,
          'plans': 1,
          'iv': 1,
          'nneg': 1}),
 Counter({'death': 10,
          'nit': 7,
          'joe': 6,
          'film': 6,
          'time': 5,
          'one': 4,
          'pitt': 4,
          'like': 4,
          'story': 4,
          'human': 4,
          'form': 4,
          'forlani': 3,
          'nthe': 3,
          'voice': 3,
          'bills': 3,
          'falls': 3,
          'love': 3,
          'difficult': 3,
          'black': 2,
          'probably': 2,
          'cinematography': 2,
          'cast': 2,
          'us': 2,
          'nat': 2,
          'ridiculous': 2,
          'experience': 2,
          'elegant': 2,
          'direction': 2,
          'youll': 2,
          'something': 2,
          'hour': 2,
          'actors': 2,
          'anthony': 2,
          'hopkins': 2,
          'brad': 2,
          'claire': 2,
          'script': 2,
          'motion': 2,
          'picture': 2,
          'eternity': 2,
          'soap': 2,
          'opera': 2,
          'play': 2,
          'takes': 2,
          'bill': 2,
          'lives': 2,
          'life': 2,
          'business': 2,
          'introduces': 2,
          'nbut': 2,
          'come': 2,
          'nbills': 2,
          'serious': 2,
          'wouldnt': 2,
          'say': 2,
          'take': 2,
          'nto': 2,
          'performances': 2,
          'scent': 2,
          'woman': 2,
          'looks': 2,
          'complete': 2,
          'seems': 2,
          'earthly': 2,
          'matters': 2,
          'would': 2,
          'nin': 2,
          'never': 1,
          'confused': 1,
          'watching': 1,
          'movie': 1,
          'n': 1,
          'meet': 1,
          'visually': 1,
          'satisfying': 1,
          'films': 1,
          'year': 1,
          'music': 1,
          'dazzle': 1,
          'boring': 1,
          'hat': 1,
          'season': 1,
          'first': 1,
          'marvel': 1,
          'graceful': 1,
          'sensual': 1,
          'musical': 1,
          'score': 1,
          'nthen': 1,
          'wait': 1,
          'happen': 1,
          'half': 1,
          'finally': 1,
          'understand': 1,
          'whats': 1,
          'going': 1,
          'wonder': 1,
          'simply': 1,
          'silly': 1,
          'unresolved': 1,
          'artificially': 1,
          'stretched': 1,
          'three': 1,
          'long': 1,
          'feels': 1,
          'nmost': 1,
          'pompous': 1,
          'filled': 1,
          'empty': 1,
          'dialogue': 1,
          'deliver': 1,
          'high': 1,
          'pitched': 1,
          'meaningful': 1,
          'winks': 1,
          'based': 1,
          'alberto': 1,
          'caesellas': 1,
          'holiday': 1,
          'concentrates': 1,
          'around': 1,
          'fulfilled': 1,
          'successful': 1,
          'man': 1,
          'sometimes': 1,
          'wakes': 1,
          'middle': 1,
          'night': 1,
          'hears': 1,
          'saying': 1,
          'yes': 1,
          'nsoon': 1,
          'meets': 1,
          'young': 1,
          'gentlemen': 1,
          'plans': 1,
          'simple': 1,
          'mortals': 1,
          'find': 1,
          'means': 1,
          'alive': 1,
          'nour': 1,
          'chosen': 1,
          'deaths': 1,
          'guide': 1,
          'exchange': 1,
          'gets': 1,
          'nbill': 1,
          'immediately': 1,
          'becomes': 1,
          'center': 1,
          'everyones': 1,
          'attention': 1,
          'partners': 1,
          'speculate': 1,
          'constantly': 1,
          'side': 1,
          'house': 1,
          'resides': 1,
          'office': 1,
          'nthat': 1,
          'however': 1,
          'youngest': 1,
          'daughter': 1,
          'susan': 1,
          'mysterious': 1,
          'stranger': 1,
          'nthis': 1,
          'relationship': 1,
          'bound': 1,
          'consequences': 1,
          'fair': 1,
          'didnt': 1,
          'interesting': 1,
          'moments': 1,
          'scene': 1,
          'invited': 1,
          'join': 1,
          'family': 1,
          'dinner': 1,
          'nwhen': 1,
          'starts': 1,
          'enjoying': 1,
          'peanut': 1,
          'butter': 1,
          'later': 1,
          'somewhat': 1,
          'different': 1,
          'obvious': 1,
          'structure': 1,
          'nits': 1,
          'thing': 1,
          'fun': 1,
          'earth': 1,
          'create': 1,
          'another': 1,
          'nfour': 1,
          'screenwriters': 1,
          'worked': 1,
          'lacks': 1,
          'drive': 1,
          'logic': 1,
          'overlong': 1,
          'primitive': 1,
          'pass': 1,
          'non': 1,
          'hand': 1,
          'demonstrates': 1,
          'incredible': 1,
          'decent': 1,
          'martin': 1,
          'brest': 1,
          'nhopkins': 1,
          'great': 1,
          'role': 1,
          'matter': 1,
          'shallow': 1,
          'hollow': 1,
          'nhis': 1,
          'talent': 1,
          'charisma': 1,
          'needed': 1,
          'else': 1,
          'since': 1,
          'actually': 1,
          'saves': 1,
          'embarrassment': 1,
          'got': 1,
          'roles': 1,
          'recent': 1,
          'nhow': 1,
          'associated': 1,
          'nthey': 1,
          'creatures': 1,
          'phenomenas': 1,
          'nsaying': 1,
          'suggest': 1,
          'nhandling': 1,
          'task': 1,
          'incredibly': 1,
          'deserves': 1,
          'credit': 1,
          'work': 1,
          'nspeaking': 1,
          'calm': 1,
          'soft': 1,
          'portraying': 1,
          'lonely': 1,
          'distant': 1,
          'powerful': 1,
          'guy': 1,
          'unfamiliar': 1,
          'practical': 1,
          'nhe': 1,
          'acts': 1,
          'angel': 1,
          'rather': 1,
          'demon': 1,
          'redeyed': 1,
          'executioner': 1,
          'nclaire': 1,
          'others': 1,
          'also': 1,
          'fine': 1,
          'stretching': 1,
          'stereotypical': 1,
          'characters': 1,
          'limits': 1,
          'nunfortunately': 1,
          'enough': 1,
          'rescue': 1,
          'self': 1,
          'inflicted': 1,
          'misery': 1,
          'words': 1,
          'expected': 1,
          'director': 1,
          'could': 1,
          'better': 1,
          'crew': 1,
          'end': 1,
          'intensively': 1,
          'working': 1,
          'ravishingly': 1,
          'looking': 1,
          'nneg': 1}),
 Counter({'nthe': 3,
          'lemmon': 2,
          'garner': 2,
          'dan': 2,
          'first': 2,
          'nfor': 2,
          'n': 2,
          'us': 2,
          'movie': 2,
          'mens': 2,
          'crap': 1,
          'honestly': 1,
          'older': 1,
          'american': 1,
          'audience': 1,
          'going': 1,
          'able': 1,
          'resist': 1,
          'seeing': 1,
          'jack': 1,
          'james': 1,
          'bicker': 1,
          'ing': 1,
          'expresidents': 1,
          'nespecially': 1,
          'supporting': 1,
          'players': 1,
          'clude': 1,
          'aykroyd': 1,
          'current': 1,
          'commander': 1,
          'chief': 1,
          'lauren': 1,
          'bacall': 1,
          'former': 1,
          'lady': 1,
          'john': 1,
          'heard': 1,
          'quayleish': 1,
          'vice': 1,
          'president': 1,
          'nyup': 1,
          'youre': 1,
          'talkin': 1,
          'presold': 1,
          'property': 1,
          'warner': 1,
          'brothers': 1,
          'perfect': 1,
          'fit': 1,
          'nowritual': 1,
          'grumpy': 1,
          'old': 1,
          'men': 1,
          'holiday': 1,
          'slot': 1,
          'nondiscriminating': 1,
          'viewer': 1,
          'fellow': 1,
          'americans': 1,
          'fine': 1,
          'raw': 1,
          'star': 1,
          'power': 1,
          'alone': 1,
          'audiences': 1,
          'applauding': 1,
          'atrocious': 1,
          'political': 1,
          'thriller': 1,
          'roadcomedy': 1,
          'mine': 1,
          'heaven': 1,
          'help': 1,
          'rest': 1,
          'immediately': 1,
          'tiresome': 1,
          'tone': 1,
          'terrible': 1,
          'banter': 1,
          'worse': 1,
          'nforget': 1,
          'wit': 1,
          'merely': 1,
          'exchange': 1,
          'profanities': 1,
          'anyone': 1,
          'counted': 1,
          'number': 1,
          'penis': 1,
          'references': 1,
          'nsure': 1,
          'bits': 1,
          'absurdly': 1,
          'funny': 1,
          'including': 1,
          'room': 1,
          'macarena': 1,
          'joke': 1,
          'appearance': 1,
          'elvis': 1,
          'impersonator': 1,
          'trainload': 1,
          'tarheels': 1,
          'dorothy': 1,
          'marching': 1,
          'band': 1,
          'performing': 1,
          'rainbow': 1,
          'gay': 1,
          'march': 1,
          'get': 1,
          'though': 1,
          'submit': 1,
          'one': 1,
          'offensively': 1,
          'overbearing': 1,
          'musical': 1,
          'scores': 1,
          'time': 1,
          'njudas': 1,
          'priest': 1,
          'single': 1,
          'moment': 1,
          'silence': 1,
          'film': 1,
          'neven': 1,
          'dialogue': 1,
          'gets': 1,
          'drowned': 1,
          'nwhat': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'bookseller': 11,
          'film': 9,
          'man': 9,
          'young': 8,
          'one': 7,
          'nthe': 7,
          'nightclub': 6,
          'older': 6,
          'keep': 5,
          'cool': 5,
          'get': 5,
          'us': 5,
          'hand': 5,
          'nalthough': 5,
          'half': 5,
          'owner': 5,
          'nthere': 4,
          'films': 3,
          'good': 3,
          'time': 3,
          'movie': 3,
          'tries': 3,
          'order': 3,
          'made': 3,
          'ying': 3,
          'could': 3,
          'see': 3,
          'woman': 3,
          'scene': 3,
          'would': 3,
          'revenge': 3,
          'chinese': 2,
          'zhang': 2,
          'hawaii': 2,
          'festival': 2,
          'around': 2,
          'well': 2,
          'theater': 2,
          'nthey': 2,
          'humor': 2,
          'attempts': 2,
          'wasnt': 2,
          'getting': 2,
          'china': 2,
          'funny': 2,
          'producer': 2,
          'interpreter': 2,
          'print': 2,
          'bad': 2,
          'also': 2,
          'give': 2,
          'say': 2,
          'camera': 2,
          'case': 2,
          'way': 2,
          'seems': 2,
          'since': 2,
          'thing': 2,
          'audience': 2,
          'headache': 2,
          'left': 2,
          'first': 2,
          'back': 2,
          'course': 2,
          'nin': 2,
          'laptop': 2,
          'computer': 2,
          'use': 2,
          'logic': 2,
          'sympathy': 2,
          'nice': 2,
          'interaction': 2,
          'na': 2,
          'hour': 2,
          'point': 2,
          'enough': 2,
          'directed': 1,
          'semiaccomplished': 1,
          'filmmaker': 1,
          'yimou': 1,
          'kickoff': 1,
          'years': 1,
          'international': 1,
          'non': 1,
          'day': 1,
          'premiered': 1,
          'lines': 1,
          'eager': 1,
          'moviegoers': 1,
          'stretched': 1,
          'block': 1,
          'anticipants': 1,
          'queued': 1,
          'advance': 1,
          'seat': 1,
          'need': 1,
          'wasted': 1,
          'billed': 1,
          'comedy': 1,
          'surprisingly': 1,
          'bereft': 1,
          'noticeable': 1,
          'laughs': 1,
          'actually': 1,
          'click': 1,
          'ni': 1,
          'wondered': 1,
          'jokes': 1,
          'im': 1,
          'unfortunately': 1,
          'conclusion': 1,
          'lack': 1,
          'couldnt': 1,
          'attributed': 1,
          'cultural': 1,
          'barrier': 1,
          'either': 1,
          'nkeep': 1,
          'isnt': 1,
          'prelude': 1,
          'visit': 1,
          'cools': 1,
          'help': 1,
          'regaled': 1,
          'assistant': 1,
          'carried': 1,
          'plane': 1,
          'assistants': 1,
          'luggage': 1,
          'lost': 1,
          'ntoo': 1,
          'story': 1,
          'got': 1,
          'big': 1,
          'laugh': 1,
          'nqu': 1,
          'female': 1,
          'lead': 1,
          'comments': 1,
          'nhowever': 1,
          'whereas': 1,
          'politely': 1,
          'regular': 1,
          'pauses': 1,
          'dialog': 1,
          'bring': 1,
          'speed': 1,
          'ms': 1,
          'saw': 1,
          'fit': 1,
          'everything': 1,
          'fastpaced': 1,
          'incredibly': 1,
          'long': 1,
          'tirade': 1,
          'nit': 1,
          'dizzying': 1,
          'foreshadowing': 1,
          'nyou': 1,
          'filmed': 1,
          'almost': 1,
          'totally': 1,
          'handheld': 1,
          'shakes': 1,
          'nat': 1,
          'least': 1,
          'thats': 1,
          'constantly': 1,
          'moving': 1,
          'ncinema': 1,
          'verite': 1,
          'panning': 1,
          'shaking': 1,
          'another': 1,
          'might': 1,
          'consider': 1,
          'form': 1,
          'helps': 1,
          'viewer': 1,
          'idea': 1,
          'anarchic': 1,
          'state': 1,
          'youth': 1,
          'slowly': 1,
          'growing': 1,
          'found': 1,
          'thoroughly': 1,
          'distracting': 1,
          'quite': 1,
          'annoying': 1,
          'nheadache': 1,
          'said': 1,
          'wen': 1,
          'jiang': 1,
          'qu': 1,
          'used': 1,
          'romantically': 1,
          'involved': 1,
          'grew': 1,
          'tired': 1,
          'relationship': 1,
          'mans': 1,
          'plan': 1,
          'win': 1,
          'nof': 1,
          'doesnt': 1,
          'want': 1,
          'friend': 1,
          'rough': 1,
          'bit': 1,
          'fight': 1,
          'grabs': 1,
          'belonging': 1,
          'bystander': 1,
          'fend': 1,
          'attacker': 1,
          'ends': 1,
          'smashing': 1,
          'lamppost': 1,
          'nwe': 1,
          'later': 1,
          'find': 1,
          'belongs': 1,
          'wishes': 1,
          'damaged': 1,
          'replaced': 1,
          'twisted': 1,
          'seek': 1,
          'baotian': 1,
          'li': 1,
          'recoup': 1,
          'losses': 1,
          'sense': 1,
          'womans': 1,
          'behavior': 1,
          'cold': 1,
          'minute': 1,
          'caring': 1,
          'next': 1,
          'feel': 1,
          'character': 1,
          'better': 1,
          'without': 1,
          'second': 1,
          'causes': 1,
          'lose': 1,
          'lot': 1,
          'obsessed': 1,
          'chopping': 1,
          'owners': 1,
          'beating': 1,
          'took': 1,
          'offers': 1,
          'nwhile': 1,
          'blinded': 1,
          'thirst': 1,
          'voice': 1,
          'reason': 1,
          'rationalize': 1,
          'situation': 1,
          'nhis': 1,
          'quest': 1,
          'end': 1,
          'dispute': 1,
          'peacefully': 1,
          'equitably': 1,
          'identify': 1,
          'frustrating': 1,
          'talking': 1,
          'brick': 1,
          'wall': 1,
          'friendship': 1,
          'develops': 1,
          'two': 1,
          'men': 1,
          'occurs': 1,
          'late': 1,
          'appreciate': 1,
          'length': 1,
          'contains': 1,
          'extraneous': 1,
          'material': 1,
          'whole': 1,
          'plot': 1,
          'taken': 1,
          'dont': 1,
          'midpoint': 1,
          'mistaken': 1,
          'identity': 1,
          'device': 1,
          'served': 1,
          'conflict': 1,
          'saved': 1,
          'booksellers': 1,
          'boring': 1,
          'pursuit': 1,
          'nbut': 1,
          'shortened': 1,
          'less': 1,
          'things': 1,
          'right': 1,
          'nas': 1,
          'mentioned': 1,
          'generally': 1,
          'pretty': 1,
          'grows': 1,
          'tiresome': 1,
          'reasoning': 1,
          'unreasonable': 1,
          'exercise': 1,
          'represents': 1,
          'differences': 1,
          'thinking': 1,
          'generations': 1,
          'example': 1,
          'quotes': 1,
          'confucius': 1,
          'across': 1,
          'claims': 1,
          'quote': 1,
          'misinterpreted': 1,
          'means': 1,
          'something': 1,
          'entirely': 1,
          'different': 1,
          'nalso': 1,
          'effective': 1,
          'sets': 1,
          'tension': 1,
          'within': 1,
          'ready': 1,
          'cut': 1,
          'unwitting': 1,
          'counting': 1,
          'money': 1,
          'slapping': 1,
          'bundle': 1,
          'currency': 1,
          'table': 1,
          'nwith': 1,
          'every': 1,
          'shot': 1,
          'hardly': 1,
          'stand': 1,
          'interminable': 1,
          'wait': 1,
          'going': 1,
          'pull': 1,
          'cleaver': 1,
          'exact': 1,
          'nunfortunately': 1,
          'crumbs': 1,
          'overcome': 1,
          'rest': 1,
          'shortcomings': 1,
          'werent': 1,
          'prevent': 1,
          'lingering': 1,
          'nneg': 1}),
 Counter({'rugrats': 10,
          'movie': 10,
          'film': 6,
          'children': 5,
          'nthe': 3,
          'worst': 3,
          'n': 3,
          'nas': 3,
          'things': 3,
          'nfor': 3,
          'animated': 2,
          'looked': 2,
          'antz': 2,
          'good': 2,
          'group': 2,
          'babies': 2,
          'threeyearold': 2,
          'tommy': 2,
          'pickles': 2,
          'dill': 2,
          'take': 2,
          'along': 2,
          'lost': 2,
          'judging': 2,
          'could': 2,
          'family': 2,
          'course': 2,
          'may': 2,
          'kids': 2,
          'even': 2,
          'picture': 2,
          'although': 1,
          'viewer': 1,
          'television': 1,
          'series': 1,
          'went': 1,
          'first': 1,
          'feature': 1,
          'positive': 1,
          'attitude': 1,
          'trailer': 1,
          'cute': 1,
          'enough': 1,
          'nafter': 1,
          'seeing': 1,
          'think': 1,
          'words': 1,
          'recent': 1,
          'review': 1,
          'stated': 1,
          'type': 1,
          'since': 1,
          '1995s': 1,
          'pebble': 1,
          'penguin': 1,
          'bit': 1,
          'premature': 1,
          'bottomofthebarrel': 1,
          'childrens': 1,
          'fare': 1,
          'starts': 1,
          'make': 1,
          'look': 1,
          'comparison': 1,
          'show': 1,
          'little': 1,
          'friends': 1,
          'ranging': 1,
          'head': 1,
          'e': 1,
          'g': 1,
          'ndaily': 1,
          'becomes': 1,
          'distraught': 1,
          'mother': 1,
          'newborn': 1,
          'baby': 1,
          'named': 1,
          'get': 1,
          'ndill': 1,
          'hardeeharhar': 1,
          'informed': 1,
          'cousin': 1,
          'anjelica': 1,
          'cheryl': 1,
          'chase': 1,
          'new': 1,
          'always': 1,
          'attention': 1,
          'away': 1,
          'nwhen': 1,
          'chuckie': 1,
          'twins': 1,
          'lil': 1,
          'phil': 1,
          'suggest': 1,
          'taking': 1,
          'back': 1,
          'hospital': 1,
          'goes': 1,
          'way': 1,
          'crash': 1,
          'forest': 1,
          'become': 1,
          'running': 1,
          'wolves': 1,
          'circus': 1,
          'monkeys': 1,
          'among': 1,
          'idea': 1,
          'woods': 1,
          'potentially': 1,
          'fun': 1,
          'many': 1,
          'different': 1,
          'done': 1,
          'story': 1,
          'nso': 1,
          'writers': 1,
          'choose': 1,
          'nwhy': 1,
          'set': 1,
          'protracted': 1,
          'cliched': 1,
          'scene': 1,
          'almost': 1,
          'go': 1,
          'waterfall': 1,
          'youngest': 1,
          'ages': 1,
          '37': 1,
          'well': 1,
          'entertain': 1,
          'audience': 1,
          'saw': 1,
          'nof': 1,
          'around': 1,
          'older': 1,
          'parents': 1,
          'desperately': 1,
          'struggling': 1,
          'stay': 1,
          'awake': 1,
          'included': 1,
          'adult': 1,
          'piece': 1,
          'garbage': 1,
          'plotline': 1,
          'unoriginal': 1,
          'writing': 1,
          'absolutely': 1,
          'wit': 1,
          'charm': 1,
          'nthere': 1,
          'isnt': 1,
          'one': 1,
          'laugh': 1,
          'excitement': 1,
          'nif': 1,
          'anything': 1,
          'marginally': 1,
          'bright': 1,
          'animation': 1,
          'style': 1,
          'especially': 1,
          'unfortunate': 1,
          'wasnt': 1,
          'service': 1,
          'quality': 1,
          'doa': 1,
          'start': 1,
          'ni': 1,
          'worthwhile': 1,
          'sometimes': 1,
          'comes': 1,
          'simply': 1,
          'awful': 1,
          'said': 1,
          'young': 1,
          'like': 1,
          'deserve': 1,
          'better': 1,
          'adults': 1,
          'nearly': 1,
          'unbearable': 1,
          'excruciating': 1,
          'chore': 1,
          'sit': 1,
          'year': 1,
          'deeply': 1,
          'hated': 1,
          'boring': 1,
          'nparents': 1,
          'favor': 1,
          'see': 1,
          'rerelease': 1,
          'wizard': 1,
          'oz': 1,
          'nthat': 1,
          'contains': 1,
          'great': 1,
          'deal': 1,
          'magic': 1,
          'wonder': 1,
          'two': 1,
          'completely': 1,
          'missing': 1,
          'nneg': 1}),
 Counter({'macleane': 7,
          'rebecca': 5,
          'nthe': 4,
          'plunkett': 3,
          'film': 3,
          'two': 3,
          'scott': 3,
          'going': 3,
          'mtv': 2,
          'ni': 2,
          'movie': 2,
          'dont': 2,
          'together': 2,
          'involves': 2,
          'way': 2,
          'make': 2,
          'money': 2,
          'america': 2,
          'nhe': 2,
          'love': 2,
          'shots': 2,
          'scenes': 2,
          'even': 2,
          'lack': 2,
          'us': 2,
          'barely': 2,
          'seconds': 2,
          'style': 2,
          'kinetic': 2,
          'period': 1,
          'piece': 1,
          'mired': 1,
          'modern': 1,
          'pretentions': 1,
          'nothing': 1,
          'approach': 1,
          'filmmaking': 1,
          'used': 1,
          'properly': 1,
          'save': 1,
          'see': 1,
          'stigmata': 1,
          'ruins': 1,
          'one': 1,
          'making': 1,
          'muddled': 1,
          'incoherent': 1,
          'mess': 1,
          'potentially': 1,
          'interesting': 1,
          'premise': 1,
          'nthere': 1,
          'certain': 1,
          'genres': 1,
          'go': 1,
          'opens': 1,
          'sequence': 1,
          'still': 1,
          'understand': 1,
          'nit': 1,
          'sort': 1,
          'prison': 1,
          'outbreak': 1,
          'robbery': 1,
          'gem': 1,
          'keeps': 1,
          'eaten': 1,
          'nin': 1,
          'case': 1,
          'caper': 1,
          'whatever': 1,
          'may': 1,
          'brings': 1,
          'robert': 1,
          'carlyle': 1,
          'johnny': 1,
          'lee': 1,
          'miller': 1,
          'respectively': 1,
          'happygolucky': 1,
          'brits': 1,
          'living': 1,
          'nthey': 1,
          'pact': 1,
          'steal': 1,
          'rich': 1,
          'give': 1,
          'earn': 1,
          'enough': 1,
          'buy': 1,
          'ticket': 1,
          'ntheir': 1,
          'first': 1,
          'heist': 1,
          'young': 1,
          'debutante': 1,
          'named': 1,
          'lady': 1,
          'liv': 1,
          'tyler': 1,
          'woman': 1,
          'especially': 1,
          'friendly': 1,
          'party': 1,
          'earlier': 1,
          'nhis': 1,
          'decorum': 1,
          'stripping': 1,
          'valuables': 1,
          'earns': 1,
          'crooks': 1,
          'name': 1,
          'gentleman': 1,
          'highwaymen': 1,
          'nlady': 1,
          'also': 1,
          'happens': 1,
          'niece': 1,
          'lord': 1,
          'chief': 1,
          'justice': 1,
          'glaringly': 1,
          'arrogant': 1,
          'man': 1,
          'nearing': 1,
          'end': 1,
          'political': 1,
          'career': 1,
          'demands': 1,
          'robbers': 1,
          'caught': 1,
          'punished': 1,
          'immediately': 1,
          'leaving': 1,
          'job': 1,
          'hands': 1,
          'devious': 1,
          'chance': 1,
          'ken': 1,
          'stott': 1,
          'things': 1,
          'mind': 1,
          'catching': 1,
          'criminals': 1,
          'nmeanwhile': 1,
          'falls': 1,
          'infuriating': 1,
          'businesslike': 1,
          'doesnt': 1,
          'want': 1,
          'plans': 1,
          'foiled': 1,
          'partners': 1,
          'mindless': 1,
          'romantic': 1,
          'travails': 1,
          'ndirector': 1,
          'jake': 1,
          'son': 1,
          'ridley': 1,
          'alien': 1,
          'blade': 1,
          'runner': 1,
          'fathers': 1,
          'knack': 1,
          'setting': 1,
          'atmospheric': 1,
          'none': 1,
          'skill': 1,
          'actually': 1,
          'moving': 1,
          'camera': 1,
          'nmost': 1,
          'action': 1,
          'filmed': 1,
          'rapid': 1,
          'jerky': 1,
          'impossible': 1,
          'comprehend': 1,
          'whats': 1,
          'camerawork': 1,
          'nauseating': 1,
          'purposefully': 1,
          'dizzying': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'due': 1,
          'fluidity': 1,
          'ninstead': 1,
          'utilizing': 1,
          'panning': 1,
          'impress': 1,
          'upon': 1,
          'scope': 1,
          'events': 1,
          'uses': 1,
          'attentiondeficitdisorder': 1,
          'edits': 1,
          'ever': 1,
          'holds': 1,
          'shot': 1,
          'ten': 1,
          'faster': 1,
          'seems': 1,
          'like': 1,
          'couple': 1,
          'frames': 1,
          'cut': 1,
          'weird': 1,
          'almost': 1,
          'defiant': 1,
          'dialogue': 1,
          'conversations': 1,
          'lasting': 1,
          'say': 1,
          '20': 1,
          'undermines': 1,
          'character': 1,
          'definition': 1,
          'protagonists': 1,
          'come': 1,
          'ciphers': 1,
          'rather': 1,
          'characters': 1,
          'affair': 1,
          'different': 1,
          'emotionless': 1,
          'unrealistic': 1,
          'nwhen': 1,
          'script': 1,
          'calls': 1,
          'decide': 1,
          'meet': 1,
          'lover': 1,
          'reason': 1,
          'believe': 1,
          'would': 1,
          'worth': 1,
          'abandon': 1,
          'goal': 1,
          'speak': 1,
          'throughout': 1,
          'nplunkett': 1,
          'wants': 1,
          'desperately': 1,
          'triumph': 1,
          'substance': 1,
          'since': 1,
          'quite': 1,
          'frankly': 1,
          'blows': 1,
          'hope': 1,
          'succeeding': 1,
          'level': 1,
          'wanted': 1,
          'appreciate': 1,
          'basis': 1,
          'admittedly': 1,
          'pace': 1,
          'couldnt': 1,
          'gave': 1,
          'headache': 1,
          'nneg': 1}),
 Counter({'dora': 9,
          'paul': 6,
          'n': 6,
          'heckerling': 5,
          'loser': 3,
          'shes': 3,
          'become': 3,
          'pauls': 3,
          'films': 2,
          'heckerlings': 2,
          'nwhen': 2,
          'big': 2,
          'fast': 2,
          'times': 2,
          'ever': 2,
          'girl': 2,
          'goth': 2,
          'losers': 2,
          'women': 2,
          'drugged': 2,
          'alcott': 2,
          'love': 2,
          'girls': 2,
          'got': 2,
          'aside': 2,
          'nheckerling': 2,
          'lot': 2,
          'review': 1,
          'contains': 1,
          'spoilers': 1,
          'director': 1,
          'amy': 1,
          'latest': 1,
          'seesaws': 1,
          'unpleasant': 1,
          'artificial': 1,
          'sometimes': 1,
          'tackles': 1,
          'issues': 1,
          'abortion': 1,
          'ridgemont': 1,
          'high': 1,
          'impossible': 1,
          'tell': 1,
          'whether': 1,
          'matteroffact': 1,
          'glib': 1,
          'carry': 1,
          'almost': 1,
          'documentary': 1,
          'starkness': 1,
          'whatever': 1,
          'case': 1,
          'continually': 1,
          'refuses': 1,
          'comment': 1,
          'politically': 1,
          'nsuch': 1,
          'sitcom': 1,
          'tendency': 1,
          'work': 1,
          'jeopardize': 1,
          'innocence': 1,
          'characters': 1,
          'hit': 1,
          'reset': 1,
          'button': 1,
          'nthis': 1,
          'fear': 1,
          'drama': 1,
          'soured': 1,
          'look': 1,
          'whos': 1,
          'talking': 1,
          'clueless': 1,
          'ms': 1,
          'also': 1,
          'demonstrates': 1,
          'first': 1,
          'time': 1,
          'zero': 1,
          'affinity': 1,
          'milieu': 1,
          'nhas': 1,
          'anyone': 1,
          'instance': 1,
          'met': 1,
          'stylistic': 1,
          'vein': 1,
          'mena': 1,
          'suvaris': 1,
          'nattired': 1,
          'black': 1,
          'thrift': 1,
          'eye': 1,
          'shadow': 1,
          'smeared': 1,
          'racoon': 1,
          'chic': 1,
          'bangy': 1,
          'red': 1,
          'hair': 1,
          'barely': 1,
          'contained': 1,
          'girlish': 1,
          'clips': 1,
          'accepts': 1,
          'label': 1,
          'selfrespecting': 1,
          'admitted': 1,
          'digging': 1,
          'geriatric': 1,
          'rockers': 1,
          'everclear': 1,
          'willingly': 1,
          'went': 1,
          'anywhere': 1,
          'sixpackwielding': 1,
          'fratboy': 1,
          'stranger': 1,
          'nthe': 1,
          'mechanics': 1,
          'tired': 1,
          'old': 1,
          'introvertboyfallsforextrovertgirl': 1,
          'plot': 1,
          'drive': 1,
          'protagonists': 1,
          'cultural': 1,
          'nonspecificity': 1,
          'even': 1,
          'less': 1,
          'stereotypes': 1,
          'nthey': 1,
          'walking': 1,
          'wardrobes': 1,
          'nsmalltown': 1,
          'transplant': 1,
          'strangely': 1,
          'static': 1,
          'jason': 1,
          'biggs': 1,
          'eponymous': 1,
          'hero': 1,
          'always': 1,
          'wears': 1,
          'woolly': 1,
          'hunters': 1,
          'cap': 1,
          'flaps': 1,
          'covering': 1,
          'ears': 1,
          'beneath': 1,
          'rests': 1,
          'parted': 1,
          'moptop': 1,
          'couldnt': 1,
          'scream': 1,
          'shemp': 1,
          'lame': 1,
          'stooge': 1,
          'wig': 1,
          'louder': 1,
          'nhe': 1,
          'three': 1,
          'smuglooking': 1,
          'roommates': 1,
          'onedimensional': 1,
          'trio': 1,
          'supposed': 1,
          'brothers': 1,
          'share': 1,
          'similar': 1,
          'facial': 1,
          'features': 1,
          'including': 1,
          'especially': 1,
          'mouths': 1,
          'fashion': 1,
          'sense': 1,
          'incomprehensibly': 1,
          'glam': 1,
          'nthough': 1,
          'theyre': 1,
          'overtly': 1,
          'transvestites': 1,
          'seems': 1,
          'equating': 1,
          'flamboyance': 1,
          'villainy': 1,
          'cruising': 1,
          'dormies': 1,
          'conspire': 1,
          'evict': 1,
          'regularly': 1,
          'molest': 1,
          'ndora': 1,
          'ignorantly': 1,
          'downs': 1,
          'one': 1,
          'date': 1,
          'rape': 1,
          'potions': 1,
          'nunfortunately': 1,
          'either': 1,
          'studio': 1,
          'cowardly': 1,
          'admit': 1,
          'subsequently': 1,
          'violated': 1,
          'rescues': 1,
          'said': 1,
          'narcotic': 1,
          'scare': 1,
          'learns': 1,
          'dating': 1,
          'unctuous': 1,
          'european': 1,
          'lit': 1,
          'professor': 1,
          'edward': 1,
          'superb': 1,
          'greg': 1,
          'kinnear': 1,
          'nalthough': 1,
          'already': 1,
          'point': 1,
          'bound': 1,
          'happen': 1,
          'pretty': 1,
          'address': 1,
          'name': 1,
          'gets': 1,
          'altruistic': 1,
          'pretends': 1,
          'flowers': 1,
          'bought': 1,
          'actually': 1,
          'nshes': 1,
          'thrilled': 1,
          'nevertheless': 1,
          'spends': 1,
          'days': 1,
          'recuperate': 1,
          'two': 1,
          'bond': 1,
          'emergency': 1,
          'kitten': 1,
          'surgery': 1,
          'broadway': 1,
          'play': 1,
          'cabaret': 1,
          'head': 1,
          'starting': 1,
          'back': 1,
          'nonfriendly': 1,
          'way': 1,
          'decides': 1,
          'alcotts': 1,
          'livein': 1,
          'girlfriend': 1,
          'ncue': 1,
          'precious': 1,
          'hommage': 1,
          'graduate': 1,
          'shots': 1,
          'drifting': 1,
          'around': 1,
          'berkeleyer': 1,
          'simon': 1,
          'garfunkels': 1,
          'parsley': 1,
          'sage': 1,
          'rosemary': 1,
          'thyme': 1,
          'never': 1,
          'allowed': 1,
          'another': 1,
          'motion': 1,
          'picture': 1,
          'common': 1,
          'nora': 1,
          'youve': 1,
          'mail': 1,
          'ephron': 1,
          'prominent': 1,
          'chick': 1,
          'directing': 1,
          'comedies': 1,
          'today': 1,
          'neither': 1,
          'use': 1,
          'strongwilled': 1,
          'nmen': 1,
          'continue': 1,
          'trod': 1,
          'bitter': 1,
          'end': 1,
          'final': 1,
          'scene': 1,
          'gives': 1,
          'smooch': 1,
          'blurts': 1,
          'feelings': 1,
          'amounts': 1,
          'creepy': 1,
          'ultimatum': 1,
          'ultimately': 1,
          'shrugs': 1,
          'willmere': 1,
          'hours': 1,
          'hints': 1,
          'poisoned': 1,
          'cheerily': 1,
          'redecorating': 1,
          'apartment': 1,
          'laissezfaire': 1,
          'issue': 1,
          'general': 1,
          'reserves': 1,
          'comeuppance': 1,
          'wouldbe': 1,
          'rapists': 1,
          'jokey': 1,
          'epilogue': 1,
          'titles': 1,
          'ngoth': 1,
          'veneer': 1,
          'awful': 1,
          'behave': 1,
          'erratically': 1,
          'enough': 1,
          'angry': 1,
          'young': 1,
          'dude': 1,
          'filmmakers': 1,
          'make': 1,
          'movies': 1,
          'misses': 1,
          'shot': 1,
          'transform': 1,
          'role': 1,
          'model': 1,
          'arcs': 1,
          'may': 1,
          'social': 1,
          'responsibility': 1,
          'privilege': 1,
          'would': 1,
          'taken': 1,
          'advantage': 1,
          'shoes': 1,
          'consider': 1,
          'sole': 1,
          'female': 1,
          'principal': 1,
          'nnot': 1,
          'worth': 1,
          'contemplating': 1,
          'seriouslygod': 1,
          'knows': 1,
          'didnt': 1,
          'nthat': 1,
          'hallmark': 1,
          'firstrun': 1,
          'dvd': 1,
          'booksaboutmovies': 1,
          'reviews': 1,
          'plus': 1,
          'contests': 1,
          'proverbial': 1,
          'nvisit': 1,
          'film': 1,
          'freak': 1,
          'central': 1,
          'http': 1,
          'filmfreakcentral': 1,
          'net': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'new': 4,
          'york': 4,
          'movie': 4,
          'acting': 4,
          'film': 3,
          'french': 3,
          'nalso': 3,
          'nbut': 3,
          'script': 3,
          'ha': 3,
          'finally': 2,
          'screen': 2,
          'beast': 2,
          'broderick': 2,
          'looks': 2,
          'nand': 2,
          'godzilla': 2,
          'non': 2,
          'summer': 2,
          'movies': 2,
          'nbroderick': 2,
          'pretty': 2,
          'useless': 2,
          'humour': 2,
          'day': 2,
          'reno': 2,
          'save': 2,
          'little': 2,
          'par': 2,
          'never': 2,
          'thats': 2,
          'seem': 2,
          'destruction': 2,
          'lot': 2,
          'fish': 2,
          'running': 2,
          'ebert': 2,
          'mayor': 2,
          'impressive': 2,
          'although': 2,
          'aswell': 2,
          'cant': 2,
          'ending': 2,
          'fantastically': 1,
          'hyped': 1,
          'godzila': 1,
          'lumbers': 1,
          'onto': 1,
          'big': 1,
          'opens': 1,
          'footage': 1,
          'nuclear': 1,
          'testing': 1,
          'polynesian': 1,
          'islands': 1,
          'attack': 1,
          'boat': 1,
          'join': 1,
          'dr': 1,
          'nick': 1,
          'tatopoulos': 1,
          'looking': 1,
          '17': 1,
          'years': 1,
          'old': 1,
          'research': 1,
          'chernobyl': 1,
          'nsome': 1,
          'shady': 1,
          'u': 1,
          'government': 1,
          'guys': 1,
          'appear': 1,
          'ask': 1,
          'come': 1,
          'island': 1,
          'massive': 1,
          'footprints': 1,
          'like': 1,
          'giant': 1,
          'lizard': 1,
          'whats': 1,
          'heading': 1,
          'ngulp': 1,
          'nalthough': 1,
          'stop': 1,
          'roller': 1,
          'coaster': 1,
          'ride': 1,
          'points': 1,
          'something': 1,
          'curiously': 1,
          'uninvolving': 1,
          'unexciting': 1,
          'main': 1,
          'faults': 1,
          'lie': 1,
          'writing': 1,
          'common': 1,
          'problems': 1,
          'blockbuster': 1,
          'hero': 1,
          'tough': 1,
          'guy': 1,
          'image': 1,
          'nwhile': 1,
          'emmerichs': 1,
          'previous': 1,
          'flick': 1,
          'independence': 1,
          '1996': 1,
          'wisecracks': 1,
          'action': 1,
          'jeff': 1,
          'goldblum': 1,
          'smith': 1,
          'neither': 1,
          'maria': 1,
          'pitillo': 1,
          'brodericks': 1,
          'former': 1,
          'girlfriend': 1,
          'chronic': 1,
          'disability': 1,
          'nshes': 1,
          'incapable': 1,
          'showing': 1,
          'emotion': 1,
          'speaks': 1,
          'every': 1,
          'line': 1,
          'way': 1,
          'basically': 1,
          'shes': 1,
          'total': 1,
          'crap': 1,
          'nits': 1,
          'actor': 1,
          'jean': 1,
          'indeed': 1,
          'turning': 1,
          'campy': 1,
          'performance': 1,
          'secret': 1,
          'agent': 1,
          'nshame': 1,
          'time': 1,
          'overlong': 1,
          'nhank': 1,
          'azaria': 1,
          'also': 1,
          'turns': 1,
          'crazy': 1,
          'cameraman': 1,
          'named': 1,
          'animal': 1,
          'adds': 1,
          'life': 1,
          'picture': 1,
          'making': 1,
          'appearance': 1,
          'harry': 1,
          'shearer': 1,
          'probably': 1,
          'best': 1,
          'know': 1,
          'voices': 1,
          'simpsons': 1,
          'slimy': 1,
          'news': 1,
          'reporter': 1,
          'k': 1,
          'nwell': 1,
          'either': 1,
          'nemmerich': 1,
          'screenwriting': 1,
          'pal': 1,
          'dean': 1,
          'devlin': 1,
          'caught': 1,
          'city': 1,
          'forgot': 1,
          'write': 1,
          'dialogue': 1,
          'banal': 1,
          'utters': 1,
          'character': 1,
          'development': 1,
          'existent': 1,
          'plays': 1,
          'typical': 1,
          'frenchman': 1,
          'croissant': 1,
          'forever': 1,
          'remains': 1,
          'geeky': 1,
          'scientist': 1,
          'seriously': 1,
          'lacking': 1,
          'sense': 1,
          'jokes': 1,
          'uttered': 1,
          'pathetic': 1,
          'theres': 1,
          'hilarious': 1,
          'gag': 1,
          'siskel': 1,
          'n': 1,
          'assistant': 1,
          'called': 1,
          'gene': 1,
          'nha': 1,
          'plot': 1,
          'dire': 1,
          'end': 1,
          'rips': 1,
          'jurassic': 1,
          'park': 1,
          '1993': 1,
          'lots': 1,
          'baby': 1,
          'godzillas': 1,
          'e': 1,
          'nvelicorapters': 1,
          'around': 1,
          'nright': 1,
          'suck': 1,
          'special': 1,
          'effects': 1,
          'nthankfully': 1,
          'theyre': 1,
          'quite': 1,
          'good': 1,
          'ngodzilla': 1,
          'piece': 1,
          'cgi': 1,
          'dont': 1,
          'see': 1,
          'much': 1,
          'dark': 1,
          'well': 1,
          'done': 1,
          'hugely': 1,
          'disappointing': 1,
          'boring': 1,
          'goes': 1,
          'far': 1,
          'long': 1,
          'decide': 1,
          'course': 1,
          'leaves': 1,
          'possibility': 1,
          'sequel': 1,
          'nlets': 1,
          'hope': 1,
          'one': 1,
          'arrives': 1,
          'nneg': 1}),
 Counter({'evolution': 4,
          'ghostbusters': 4,
          'find': 4,
          'one': 3,
          'nthe': 3,
          'ira': 3,
          'harry': 3,
          'jones': 3,
          'take': 3,
          'time': 3,
          'whole': 3,
          'scott': 3,
          'comic': 3,
          'movie': 2,
          'plus': 2,
          'none': 2,
          'meteor': 2,
          'david': 2,
          'duchovny': 2,
          'orlando': 2,
          'organisms': 2,
          'took': 2,
          'years': 2,
          'doesnt': 2,
          'government': 2,
          'area': 2,
          'movies': 2,
          'julianne': 2,
          'moore': 2,
          'center': 2,
          'seann': 2,
          'william': 2,
          'also': 2,
          'seems': 2,
          'really': 2,
          'funny': 2,
          'offers': 2,
          'much': 2,
          'trip': 2,
          'scene': 2,
          'alien': 2,
          'make': 2,
          'side': 2,
          'comedic': 2,
          'talent': 2,
          'comedy': 2,
          'njones': 2,
          'cast': 2,
          'concepts': 1,
          'often': 1,
          'pitched': 1,
          'producers': 1,
          'mathematical': 1,
          'formulas': 1,
          'involving': 1,
          'successful': 1,
          'films': 1,
          'past': 1,
          'nso': 1,
          'undoubtedly': 1,
          'day': 1,
          'someone': 1,
          'said': 1,
          'nits': 1,
          'men': 1,
          'black': 1,
          'tremors': 1,
          'nand': 1,
          'nsum': 1,
          'total': 1,
          'alienbusting': 1,
          'begins': 1,
          'lands': 1,
          'glen': 1,
          'canyon': 1,
          'arizona': 1,
          'ncommunity': 1,
          'college': 1,
          'science': 1,
          'profs': 1,
          'kane': 1,
          'block': 1,
          'samples': 1,
          'discover': 1,
          'onecelled': 1,
          'inside': 1,
          'evolving': 1,
          'rapidly': 1,
          'hours': 1,
          'millions': 1,
          'life': 1,
          'earth': 1,
          'njust': 1,
          'wondering': 1,
          'hey': 1,
          'usually': 1,
          'come': 1,
          'came': 1,
          'leader': 1,
          'pack': 1,
          'gen': 1,
          'woodman': 1,
          'ted': 1,
          'levine': 1,
          'turns': 1,
          'old': 1,
          'nemesis': 1,
          'iras': 1,
          'blocked': 1,
          'research': 1,
          'nmeanwhile': 1,
          'continue': 1,
          'grow': 1,
          'large': 1,
          'enough': 1,
          'start': 1,
          'attacking': 1,
          'people': 1,
          'nby': 1,
          'gained': 1,
          'friend': 1,
          'dr': 1,
          'allison': 1,
          'reed': 1,
          'disease': 1,
          'control': 1,
          'na': 1,
          'country': 1,
          'club': 1,
          'poolboy': 1,
          'wayne': 1,
          'green': 1,
          'attached': 1,
          'merry': 1,
          'band': 1,
          'nbut': 1,
          'means': 1,
          'stop': 1,
          'aliens': 1,
          'ndirector': 1,
          'ivan': 1,
          'reitman': 1,
          'revisiting': 1,
          'biggest': 1,
          'hit': 1,
          '1984s': 1,
          'falls': 1,
          'miserably': 1,
          'short': 1,
          'reason': 1,
          'readily': 1,
          'apparent': 1,
          'n': 1,
          'three': 1,
          'guys': 1,
          'scientists': 1,
          'bill': 1,
          'murray': 1,
          'dan': 1,
          'aykroyd': 1,
          'harold': 1,
          'ramis': 1,
          'guy': 1,
          'adlib': 1,
          'milk': 1,
          'potential': 1,
          'lines': 1,
          'prove': 1,
          'useless': 1,
          'anyone': 1,
          'elses': 1,
          'hands': 1,
          'nfor': 1,
          'good': 1,
          'measure': 1,
          'talents': 1,
          'rick': 1,
          'moranis': 1,
          'funnier': 1,
          'american': 1,
          'pie': 1,
          'road': 1,
          'nscott': 1,
          'amusing': 1,
          'sings': 1,
          'beautiful': 1,
          'dragonlike': 1,
          'draw': 1,
          'trap': 1,
          'nother': 1,
          'unable': 1,
          'thin': 1,
          'material': 1,
          'writers': 1,
          'gave': 1,
          'nan': 1,
          'actor': 1,
          'search': 1,
          'forte': 1,
          'looked': 1,
          'gritty': 1,
          'action': 1,
          'hero': 1,
          'playing': 1,
          'god': 1,
          'romantic': 1,
          'return': 1,
          'nnow': 1,
          'wants': 1,
          'wacky': 1,
          'nlook': 1,
          'back': 1,
          'tv': 1,
          'five': 1,
          'nanother': 1,
          'sad': 1,
          'case': 1,
          'needs': 1,
          'selective': 1,
          'accepts': 1,
          'nshes': 1,
          'talented': 1,
          'actress': 1,
          'impressive': 1,
          'list': 1,
          'credits': 1,
          'award': 1,
          'nominations': 1,
          'trying': 1,
          'slapstick': 1,
          'nher': 1,
          'character': 1,
          'tendency': 1,
          'bump': 1,
          'things': 1,
          'trait': 1,
          'comes': 1,
          'pathetic': 1,
          'plea': 1,
          'laughs': 1,
          'sole': 1,
          'saving': 1,
          'grace': 1,
          'film': 1,
          'nhes': 1,
          'funniest': 1,
          'bug': 1,
          'invades': 1,
          'harrys': 1,
          'body': 1,
          'pulled': 1,
          'ass': 1,
          'member': 1,
          'ball': 1,
          'run': 1,
          'cant': 1,
          'carry': 1,
          'nhe': 1,
          'found': 1,
          'similar': 1,
          'situation': 1,
          'replacements': 1,
          'ensemble': 1,
          'eventually': 1,
          'project': 1,
          'major': 1,
          'star': 1,
          'isnt': 1,
          'nneg': 1}),
 Counter({'action': 8,
          'film': 8,
          'one': 7,
          'girl': 6,
          'arnold': 5,
          'end': 5,
          'jericho': 5,
          'movie': 5,
          'nin': 4,
          'days': 4,
          'trying': 4,
          'devil': 4,
          'plays': 4,
          'nthe': 4,
          'nhe': 3,
          'made': 3,
          'script': 3,
          'make': 3,
          'unforgettable': 3,
          'baby': 3,
          'everyone': 3,
          'character': 3,
          'scene': 3,
          'boy': 3,
          'impossible': 2,
          'films': 2,
          'tell': 2,
          'good': 2,
          'attempt': 2,
          'series': 2,
          'nis': 2,
          'stars': 2,
          'give': 2,
          'another': 2,
          'performance': 2,
          'like': 2,
          'past': 2,
          'terminator': 2,
          '2': 2,
          'true': 2,
          'n': 2,
          'satans': 2,
          'director': 2,
          'thing': 2,
          'narnold': 2,
          'cane': 2,
          'finds': 2,
          'kill': 2,
          'gabriel': 2,
          'byrne': 2,
          'longer': 2,
          'njericho': 2,
          'feels': 2,
          'wife': 2,
          'daughter': 2,
          'killed': 2,
          'cliched': 2,
          'high': 2,
          'nchoir': 2,
          'nyou': 2,
          'two': 2,
          'memorable': 2,
          'performances': 2,
          'exception': 2,
          'fun': 2,
          'whole': 2,
          'power': 2,
          'actors': 2,
          'pollak': 2,
          'funny': 2,
          'tunney': 2,
          'audience': 2,
          'job': 2,
          'terrible': 2,
          'nthis': 2,
          'well': 1,
          'completed': 1,
          'seemingly': 1,
          'task': 1,
          'three': 1,
          'consecutive': 1,
          'unsatisfactory': 1,
          'domain': 1,
          'owns': 1,
          'surprising': 1,
          'goliath': 1,
          'star': 1,
          'bad': 1,
          'neraser': 1,
          'back': 1,
          '1996': 1,
          'confused': 1,
          'sense': 1,
          'nbatman': 1,
          'robin': 1,
          '1997': 1,
          'black': 1,
          'sheep': 1,
          'batman': 1,
          'ridiculous': 1,
          'acting': 1,
          'idiotic': 1,
          'scenes': 1,
          'painfully': 1,
          'flashy': 1,
          'costumes': 1,
          'nnow': 1,
          '1999': 1,
          'third': 1,
          'strike': 1,
          'tough': 1,
          'bat': 1,
          'powerful': 1,
          'longlived': 1,
          'career': 1,
          'nwill': 1,
          'ever': 1,
          'us': 1,
          'classic': 1,
          'judgement': 1,
          'day': 1,
          'predator': 1,
          'great': 1,
          'guilty': 1,
          'pleasure': 1,
          'commando': 1,
          'red': 1,
          'sonja': 1,
          'lies': 1,
          'nit': 1,
          'doesnt': 1,
          'look': 1,
          'way': 1,
          'begins': 1,
          'birth': 1,
          '1979': 1,
          'inexorably': 1,
          'due': 1,
          'formation': 1,
          'night': 1,
          'carrier': 1,
          'hour': 1,
          'new': 1,
          'years': 1,
          '2000': 1,
          'nfortunately': 1,
          'movies': 1,
          'sake': 1,
          'grows': 1,
          'resides': 1,
          'manhattan': 1,
          'skyscrapers': 1,
          'subway': 1,
          'trains': 1,
          'dark': 1,
          'tunnels': 1,
          'myriad': 1,
          'inept': 1,
          'nypd': 1,
          'officers': 1,
          'nits': 1,
          'dream': 1,
          'come': 1,
          'given': 1,
          'tons': 1,
          'cool': 1,
          'stuff': 1,
          'blow': 1,
          'nimagine': 1,
          'lived': 1,
          'anytown': 1,
          'usa': 1,
          'destroy': 1,
          'dairy': 1,
          'queen': 1,
          'post': 1,
          'office': 1,
          'schwarzenegger': 1,
          'boring': 1,
          'events': 1,
          'middle': 1,
          'religious': 1,
          'battle': 1,
          'church': 1,
          'hide': 1,
          'cases': 1,
          'satan': 1,
          'pregnant': 1,
          'nif': 1,
          'successful': 1,
          'world': 1,
          'exist': 1,
          'know': 1,
          'duty': 1,
          'protect': 1,
          '1': 1,
          'faith': 1,
          'responsible': 1,
          'bythenumbers': 1,
          'hero': 1,
          'right': 1,
          'name': 1,
          'fittingly': 1,
          'shouts': 1,
          'cops': 1,
          'priests': 1,
          'truly': 1,
          'hilarious': 1,
          'supposed': 1,
          'ultimate': 1,
          'dramatic': 1,
          'point': 1,
          'screams': 1,
          'choir': 1,
          'nthose': 1,
          'lines': 1,
          'marked': 1,
          'points': 1,
          'na': 1,
          'still': 1,
          'enjoyable': 1,
          'supporting': 1,
          'cast': 1,
          'effective': 1,
          'main': 1,
          'actor': 1,
          'fails': 1,
          'contain': 1,
          'nbyrne': 1,
          'playing': 1,
          'man': 1,
          'manifestation': 1,
          'seems': 1,
          'wonderfully': 1,
          'manipulative': 1,
          'villain': 1,
          'control': 1,
          'time': 1,
          'annoying': 1,
          'however': 1,
          'human': 1,
          'simple': 1,
          'punch': 1,
          'face': 1,
          'yet': 1,
          'seriously': 1,
          'hurt': 1,
          'ni': 1,
          'count': 1,
          'number': 1,
          'times': 1,
          'could': 1,
          'taken': 1,
          'custody': 1,
          'weak': 1,
          'unconvincing': 1,
          'nkevin': 1,
          'partner': 1,
          'close': 1,
          'friend': 1,
          'supposedly': 1,
          'every': 1,
          'problem': 1,
          'deliver': 1,
          'line': 1,
          'nrobin': 1,
          'chosen': 1,
          'mother': 1,
          'extreme': 1,
          'annoyance': 1,
          'nshe': 1,
          'gets': 1,
          'sympathy': 1,
          'characters': 1,
          'except': 1,
          'pretends': 1,
          'viewers': 1,
          'unnecessary': 1,
          'walks': 1,
          'room': 1,
          'takes': 1,
          'top': 1,
          'blame': 1,
          'entirely': 1,
          'able': 1,
          'predict': 1,
          'happen': 1,
          'minutes': 1,
          'little': 1,
          'prediction': 1,
          'game': 1,
          'sit': 1,
          'nonsense': 1,
          'last': 1,
          'special': 1,
          'effects': 1,
          'used': 1,
          'try': 1,
          'entertain': 1,
          'nbut': 1,
          'without': 1,
          'done': 1,
          'successfully': 1,
          'would': 1,
          'gotten': 1,
          'c': 1,
          'stood': 1,
          'front': 1,
          'camera': 1,
          'shouted': 1,
          'nfor': 1,
          'hours': 1,
          'nneg': 1}),
 Counter({'trek': 6,
          'would': 5,
          'enterprise': 5,
          'series': 4,
          'film': 4,
          'one': 4,
          'star': 4,
          'nits': 4,
          'crew': 4,
          'doesnt': 4,
          'new': 4,
          'cast': 4,
          'ni': 3,
          'original': 3,
          'get': 3,
          'data': 3,
          'generations': 3,
          'may': 3,
          'shatner': 3,
          'nexus': 3,
          'stewart': 3,
          'think': 3,
          'chip': 3,
          'screen': 3,
          'like': 3,
          'moment': 3,
          'whether': 2,
          'considered': 2,
          'even': 2,
          'nhowever': 2,
          'away': 2,
          'high': 2,
          'writing': 2,
          'characters': 2,
          'century': 2,
          'captain': 2,
          'james': 2,
          'kirk': 2,
          'william': 2,
          'nno': 2,
          'distress': 2,
          'energy': 2,
          'soran': 2,
          'malcolm': 2,
          'mcdowell': 2,
          'back': 2,
          'years': 2,
          'picard': 2,
          'patrick': 2,
          'plot': 2,
          'really': 2,
          'friends': 2,
          'story': 2,
          'nbut': 2,
          'spiner': 2,
          'major': 2,
          'emotions': 2,
          'point': 2,
          'hes': 2,
          'theyre': 2,
          'little': 2,
          'part': 2,
          'time': 2,
          'turn': 2,
          'need': 2,
          'trekker': 1,
          'probably': 1,
          'depends': 1,
          'ask': 1,
          'fan': 1,
          'recently': 1,
          'retired': 1,
          'followup': 1,
          'well': 1,
          'numbered': 1,
          'entries': 1,
          'never': 1,
          'folks': 1,
          'store': 1,
          'minutiae': 1,
          'debates': 1,
          'relative': 1,
          'merits': 1,
          'spock': 1,
          'vs': 1,
          'nsomewhere': 1,
          'along': 1,
          'line': 1,
          'began': 1,
          'seem': 1,
          'directed': 1,
          'latter': 1,
          'category': 1,
          'natural': 1,
          'conclusion': 1,
          'direction': 1,
          'production': 1,
          'values': 1,
          'frequently': 1,
          'appalling': 1,
          'instead': 1,
          'script': 1,
          'collection': 1,
          'references': 1,
          'injokes': 1,
          'illdefined': 1,
          'ngenerations': 1,
          'opens': 1,
          'late': 1,
          '23rd': 1,
          'members': 1,
          'including': 1,
          'present': 1,
          'christening': 1,
          'latest': 1,
          'ship': 1,
          'bear': 1,
          'name': 1,
          'sooner': 1,
          'maiden': 1,
          'voyage': 1,
          'signal': 1,
          'brings': 1,
          'mysterious': 1,
          'ribbon': 1,
          'namong': 1,
          'rescued': 1,
          'longlived': 1,
          'alien': 1,
          'dr': 1,
          'nonetoopleased': 1,
          'real': 1,
          'world': 1,
          'nseventyeight': 1,
          'later': 1,
          'still': 1,
          'trying': 1,
          'encounters': 1,
          'led': 1,
          'jeanluc': 1,
          'nsorans': 1,
          'plan': 1,
          'involves': 1,
          'destroying': 1,
          'inhabited': 1,
          'planet': 1,
          'hope': 1,
          'saving': 1,
          '230': 1,
          'million': 1,
          'people': 1,
          'historic': 1,
          'meeting': 1,
          'two': 1,
          'captains': 1,
          'dont': 1,
          'insult': 1,
          'fans': 1,
          'suggest': 1,
          'certain': 1,
          'extent': 1,
          'particulars': 1,
          'important': 1,
          'elements': 1,
          'chance': 1,
          'visit': 1,
          'old': 1,
          'involved': 1,
          'truly': 1,
          'interesting': 1,
          'gravy': 1,
          'interpretation': 1,
          'assumes': 1,
          'characterization': 1,
          'consistent': 1,
          'happen': 1,
          'ndata': 1,
          'brent': 1,
          'particularly': 1,
          'victimized': 1,
          'sloppy': 1,
          'nin': 1,
          'films': 1,
          'subplot': 1,
          'decides': 1,
          'use': 1,
          'give': 1,
          'human': 1,
          'possession': 1,
          'year': 1,
          'nwhat': 1,
          'motivation': 1,
          'taking': 1,
          'drastic': 1,
          'perhaps': 1,
          'dangerous': 1,
          'step': 1,
          'nhe': 1,
          'joke': 1,
          'nonce': 1,
          'place': 1,
          'gets': 1,
          'lot': 1,
          'fun': 1,
          'datas': 1,
          'longer': 1,
          'know': 1,
          'nif': 1,
          'rest': 1,
          'next': 1,
          'generation': 1,
          'fares': 1,
          'better': 1,
          'simply': 1,
          'window': 1,
          'dressing': 1,
          'isnt': 1,
          'cowboy': 1,
          'politician': 1,
          'sharing': 1,
          'nthe': 1,
          'huge': 1,
          'surprise': 1,
          'blows': 1,
          'nperhaps': 1,
          'knows': 1,
          'last': 1,
          'goround': 1,
          'made': 1,
          'legend': 1,
          'looks': 1,
          'life': 1,
          'hand': 1,
          'borders': 1,
          'deferrential': 1,
          'saddled': 1,
          'lackluster': 1,
          'motivations': 1,
          'everyone': 1,
          'else': 1,
          'nstewarts': 1,
          'edginess': 1,
          'indicative': 1,
          'bad': 1,
          'sign': 1,
          'paramounts': 1,
          'hopes': 1,
          'kind': 1,
          'franchise': 1,
          'clearly': 1,
          'ready': 1,
          'big': 1,
          'players': 1,
          'nby': 1,
          'contrast': 1,
          'prologue': 1,
          'features': 1,
          'scotty': 1,
          'doohan': 1,
          'chekhov': 1,
          'walter': 1,
          'koenig': 1,
          'highlight': 1,
          'nthese': 1,
          'become': 1,
          'popular': 1,
          'mythology': 1,
          'take': 1,
          'nonly': 1,
          'thirty': 1,
          'history': 1,
          'create': 1,
          'thats': 1,
          'nit': 1,
          'certainly': 1,
          'help': 1,
          'stuck': 1,
          'convoluted': 1,
          'badly': 1,
          'constructed': 1,
          'leave': 1,
          'trail': 1,
          'bread': 1,
          'crumbs': 1,
          'find': 1,
          'way': 1,
          'also': 1,
          'loaded': 1,
          'gags': 1,
          'aimed': 1,
          'familiar': 1,
          'enough': 1,
          'shared': 1,
          'nudge': 1,
          'recognition': 1,
          'wonder': 1,
          'anyone': 1,
          'coming': 1,
          'cold': 1,
          'universe': 1,
          'anything': 1,
          'baffled': 1,
          'bored': 1,
          'going': 1,
          'nand': 1,
          'waste': 1,
          'could': 1,
          'great': 1,
          'monomanical': 1,
          'villain': 1,
          'given': 1,
          'much': 1,
          'compelling': 1,
          'reason': 1,
          'obsession': 1,
          'nthere': 1,
          'plenty': 1,
          'details': 1,
          'scientific': 1,
          'continuity': 1,
          'pick': 1,
          'ignore': 1,
          'flaws': 1,
          'make': 1,
          'recommendation': 1,
          'seatbelts': 1,
          'nnot': 1,
          'although': 1,
          'youd': 1,
          '24th': 1,
          'space': 1,
          'travel': 1,
          'wouldnt': 1,
          'involve': 1,
          'rolling': 1,
          'around': 1,
          'floor': 1,
          'battle': 1,
          'audience': 1,
          'might': 1,
          'nthis': 1,
          'journey': 1,
          'bumpy': 1,
          'ride': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          '2': 6,
          'original': 5,
          'nscary': 4,
          'sequel': 3,
          'scary': 3,
          'haunted': 3,
          'wayans': 2,
          'dont': 2,
          'spoof': 2,
          'nthe': 2,
          'teen': 2,
          'slasher': 2,
          'takenoprisoners': 2,
          'lame': 2,
          'features': 2,
          'weak': 2,
          'really': 2,
          'stuck': 1,
          'promise': 1,
          'emblazoned': 1,
          'movies': 1,
          'poster': 1,
          'nowhere': 1,
          'near': 1,
          'funny': 1,
          'predecessor': 1,
          'brothers': 1,
          'shawn': 1,
          'marlon': 1,
          'writing': 1,
          'keenen': 1,
          'ivory': 1,
          'behind': 1,
          'camera': 1,
          'try': 1,
          'nwhat': 1,
          'defeats': 1,
          'genre': 1,
          'chosen': 1,
          'first': 1,
          'outrageous': 1,
          'lowbrow': 1,
          'savage': 1,
          'satire': 1,
          'flicks': 1,
          'scream': 1,
          'know': 1,
          'last': 1,
          'summer': 1,
          'succeeded': 1,
          'attitude': 1,
          'toward': 1,
          'type': 1,
          'film': 1,
          'vogue': 1,
          'familiar': 1,
          'popular': 1,
          'nin': 1,
          'filmmakers': 1,
          'take': 1,
          'houseghost': 1,
          'story': 1,
          'format': 1,
          'look': 1,
          'grosses': 1,
          'recent': 1,
          'offerings': 1,
          'respective': 1,
          'remakes': 1,
          'haunting': 1,
          'house': 1,
          'hill': 1,
          'draw': 1,
          'audiences': 1,
          'enter': 1,
          'cultural': 1,
          'psyche': 1,
          'various': 1,
          'series': 1,
          'start': 1,
          'promising': 1,
          'wonderful': 1,
          'exorcist': 1,
          'featuring': 1,
          'james': 1,
          'wood': 1,
          'max': 1,
          'von': 1,
          'sydow': 1,
          'role': 1,
          'veronica': 1,
          'cartwright': 1,
          'lampooning': 1,
          'ellen': 1,
          'burstyn': 1,
          'nof': 1,
          'course': 1,
          'split': 1,
          'pea': 1,
          'soup': 1,
          'punch': 1,
          'line': 1,
          'overabundant': 1,
          'amount': 1,
          'offers': 1,
          'hope': 1,
          'rest': 1,
          'tasteless': 1,
          'excessive': 1,
          'nbut': 1,
          'precredit': 1,
          'sequence': 1,
          'nothing': 1,
          'main': 1,
          'action': 1,
          'cast': 1,
          'members': 1,
          'signing': 1,
          'spend': 1,
          'weekend': 1,
          'creepy': 1,
          'mansion': 1,
          'part': 1,
          'university': 1,
          'class': 1,
          'project': 1,
          'nsome': 1,
          'jokes': 1,
          'scatological': 1,
          'offensive': 1,
          'lack': 1,
          'bite': 1,
          'raised': 1,
          'heights': 1,
          'burlesque': 1,
          'merely': 1,
          'lurches': 1,
          'one': 1,
          'sendup': 1,
          'another': 1,
          'offering': 1,
          'spoofs': 1,
          'nike': 1,
          'shoe': 1,
          'ad': 1,
          'everyone': 1,
          'acrobatics': 1,
          'basketball': 1,
          'films': 1,
          'lies': 1,
          'beneath': 1,
          'hannibal': 1,
          'faired': 1,
          'adequately': 1,
          'box': 1,
          'office': 1,
          'john': 1,
          'woos': 1,
          'mission': 1,
          'impossible': 1,
          'charlies': 1,
          'angels': 1,
          'nit': 1,
          'team': 1,
          'writers': 1,
          'least': 1,
          'seven': 1,
          'credited': 1,
          'threw': 1,
          'ideas': 1,
          'blender': 1,
          'hoped': 1,
          'theyd': 1,
          'coalesce': 1,
          'nthey': 1,
          'nwhile': 1,
          'pace': 1,
          'left': 1,
          'breathless': 1,
          'moves': 1,
          'speed': 1,
          '18wheeler': 1,
          'carrying': 1,
          'two': 1,
          'tons': 1,
          'concrete': 1,
          'steep': 1,
          'mountain': 1,
          'road': 1,
          'nyou': 1,
          'almost': 1,
          'hear': 1,
          'reels': 1,
          'panting': 1,
          'tries': 1,
          'hard': 1,
          'live': 1,
          'falls': 1,
          'short': 1,
          'nits': 1,
          'dissatisfying': 1,
          'spectacle': 1,
          'sister': 1,
          'good': 1,
          'aspect': 1,
          'disappointing': 1,
          'nneg': 1}),
 Counter({'warriors': 6,
          'viking': 5,
          'vikings': 4,
          'battle': 4,
          'film': 4,
          'ahmed': 4,
          'nthey': 4,
          '13th': 3,
          'battles': 3,
          'would': 3,
          'place': 3,
          'greatest': 3,
          'group': 3,
          '12': 3,
          'nthe': 3,
          'bears': 2,
          'night': 2,
          'warrior': 2,
          'strength': 2,
          'eventually': 2,
          'come': 2,
          'village': 2,
          'proud': 2,
          'arrogance': 2,
          'nbut': 2,
          'arrives': 2,
          'leader': 2,
          'evil': 2,
          'land': 2,
          'needed': 2,
          'nan': 2,
          'one': 2,
          'look': 2,
          'becomes': 2,
          'lives': 2,
          'size': 2,
          'dog': 2,
          'fight': 2,
          'nhe': 2,
          'nit': 2,
          'heads': 2,
          'entire': 2,
          'subplot': 2,
          'nhowever': 2,
          'v': 1,
          'nno': 1,
          'isnt': 1,
          'lineup': 1,
          'monday': 1,
          'football': 1,
          'nrather': 1,
          'two': 1,
          'opposing': 1,
          'forces': 1,
          'death': 1,
          'dramatically': 1,
          'flat': 1,
          'gratuitously': 1,
          'gory': 1,
          'nbased': 1,
          'michael': 1,
          'crichtons': 1,
          'book': 1,
          'eaters': 1,
          'dead': 1,
          'saga': 1,
          'tries': 1,
          'evoke': 1,
          'mysticism': 1,
          'fabled': 1,
          'norsemen': 1,
          'glorious': 1,
          'fought': 1,
          'ntheir': 1,
          'honor': 1,
          'etch': 1,
          'history': 1,
          'among': 1,
          'ever': 1,
          'picked': 1,
          'sword': 1,
          'nluckily': 1,
          'however': 1,
          'warring': 1,
          'abilities': 1,
          'clumsy': 1,
          'nantonio': 1,
          'bandaras': 1,
          'travelling': 1,
          'ambassador': 1,
          'naccompanied': 1,
          'friend': 1,
          'omar': 1,
          'shariff': 1,
          'cameo': 1,
          'across': 1,
          'small': 1,
          'nwe': 1,
          'see': 1,
          'extremely': 1,
          'whose': 1,
          'fortitude': 1,
          'laugh': 1,
          'heartily': 1,
          'revel': 1,
          'sing': 1,
          'songs': 1,
          'festivities': 1,
          'halted': 1,
          'messenger': 1,
          'boy': 1,
          'tell': 1,
          'great': 1,
          'threatening': 1,
          'nhelp': 1,
          'quickly': 1,
          'elderly': 1,
          'fortunetelling': 1,
          'witch': 1,
          'nafter': 1,
          'brief': 1,
          'incantation': 1,
          'proclaims': 1,
          'norse': 1,
          'blood': 1,
          'ensure': 1,
          'victory': 1,
          'npersonally': 1,
          'always': 1,
          'wonder': 1,
          'people': 1,
          'believe': 1,
          'oracles': 1,
          'haggardly': 1,
          'brink': 1,
          'insanity': 1,
          'nnonetheless': 1,
          'men': 1,
          'eagerly': 1,
          'accept': 1,
          'pivotal': 1,
          'sets': 1,
          'nof': 1,
          'course': 1,
          'ride': 1,
          'target': 1,
          'fun': 1,
          'burly': 1,
          'ably': 1,
          'shows': 1,
          'rather': 1,
          'able': 1,
          'overcome': 1,
          'skills': 1,
          'enough': 1,
          'defeat': 1,
          'whatever': 1,
          'menacing': 1,
          'countryside': 1,
          'promising': 1,
          'nthese': 1,
          'creatures': 1,
          'resembling': 1,
          'strong': 1,
          'high': 1,
          'morale': 1,
          'fearless': 1,
          'display': 1,
          'desire': 1,
          'decapitating': 1,
          'enemies': 1,
          'attack': 1,
          'hundreds': 1,
          'next': 1,
          'strike': 1,
          'soon': 1,
          'prepare': 1,
          'defenses': 1,
          'pray': 1,
          'gods': 1,
          'ready': 1,
          'sacrifice': 1,
          'n': 1,
          'good': 1,
          'way': 1,
          'die': 1,
          'says': 1,
          'fallen': 1,
          'ndespite': 1,
          'largerthanlife': 1,
          'sequences': 1,
          'unmoved': 1,
          'experience': 1,
          'nat': 1,
          'many': 1,
          'points': 1,
          'even': 1,
          'confused': 1,
          'nfor': 1,
          'example': 1,
          'somewhere': 1,
          'middle': 1,
          'creeps': 1,
          'involving': 1,
          'prince': 1,
          'threatened': 1,
          'seems': 1,
          'agenda': 1,
          'elevate': 1,
          'greater': 1,
          'power': 1,
          'crisis': 1,
          'never': 1,
          'fully': 1,
          'materializes': 1,
          'left': 1,
          'scratching': 1,
          'purpose': 1,
          'inclusion': 1,
          'nthere': 1,
          'questions': 1,
          'real': 1,
          'problem': 1,
          'story': 1,
          'little': 1,
          'offered': 1,
          'characters': 1,
          'love': 1,
          'hate': 1,
          'charisma': 1,
          'banderass': 1,
          'role': 1,
          'completely': 1,
          'underwritten': 1,
          'unclear': 1,
          'makes': 1,
          'special': 1,
          'rewrite': 1,
          'character': 1,
          'order': 1,
          'nalso': 1,
          'much': 1,
          'action': 1,
          'takes': 1,
          'torrential': 1,
          'downpours': 1,
          'made': 1,
          'difficult': 1,
          'follow': 1,
          'ni': 1,
          'preferred': 1,
          'time': 1,
          'looking': 1,
          'culture': 1,
          'beliefs': 1,
          'shaped': 1,
          'decision': 1,
          'enemy': 1,
          'nas': 1,
          'stands': 1,
          'manages': 1,
          'confusion': 1,
          'intensity': 1,
          'make': 1,
          'thor': 1,
          'cry': 1,
          'nneg': 1}),
 Counter({'carrey': 4,
          'look': 4,
          'like': 3,
          'level': 3,
          'movie': 3,
          'jim': 2,
          'ace': 2,
          'ventura': 2,
          'means': 2,
          'terms': 2,
          'merit': 2,
          'lack': 2,
          'humor': 2,
          'anyone': 2,
          'consciousness': 2,
          'nif': 2,
          'civilization': 2,
          'film': 2,
          'say': 2,
          'jerry': 2,
          'lewis': 2,
          'apparently': 1,
          'crap': 1,
          'calls': 1,
          'answers': 1,
          'nhere': 1,
          'mugging': 1,
          'countless': 1,
          'unfunny': 1,
          'ways': 1,
          'fifth': 1,
          'time': 1,
          'second': 1,
          'goaround': 1,
          'role': 1,
          'pet': 1,
          'detective': 1,
          'nthat': 1,
          'talking': 1,
          'asscracks': 1,
          'penis': 1,
          'jokes': 1,
          'cries': 1,
          'alllllllllllrighty': 1,
          'nit': 1,
          'adds': 1,
          'sequel': 1,
          'makes': 1,
          'original': 1,
          'resemble': 1,
          'schindlers': 1,
          'list': 1,
          'dramatic': 1,
          'ngranted': 1,
          'laughs': 1,
          'amid': 1,
          'constant': 1,
          'barrage': 1,
          'preschool': 1,
          'appreciates': 1,
          'good': 1,
          'comedy': 1,
          'bang': 1,
          'head': 1,
          'wall': 1,
          'ten': 1,
          'times': 1,
          'every': 1,
          'minor': 1,
          'chuckle': 1,
          'nits': 1,
          'painful': 1,
          'experience': 1,
          'brain': 1,
          'nace': 1,
          'distraught': 1,
          'accidentally': 1,
          'dropping': 1,
          'racoon': 1,
          'canyon': 1,
          'parody': 1,
          'opening': 1,
          'scene': 1,
          'sylvester': 1,
          'stallones': 1,
          'cliffhanger': 1,
          'person': 1,
          'make': 1,
          'stallone': 1,
          'college': 1,
          'professor': 1,
          'intellect': 1,
          'decides': 1,
          'retire': 1,
          'mountains': 1,
          'tibet': 1,
          'gain': 1,
          'higher': 1,
          'case': 1,
          'nbut': 1,
          'pulled': 1,
          'retirement': 1,
          'tune': 1,
          '20': 1,
          '000': 1,
          'retrieve': 1,
          'sacred': 1,
          'white': 1,
          'bat': 1,
          'african': 1,
          'tribe': 1,
          'nwhy': 1,
          'africa': 1,
          'nso': 1,
          'disguise': 1,
          'nude': 1,
          'inside': 1,
          'fake': 1,
          'rhino': 1,
          'later': 1,
          'climb': 1,
          'rear': 1,
          'end': 1,
          'tourist': 1,
          'family': 1,
          'watches': 1,
          'rhinos': 1,
          'give': 1,
          'birth': 1,
          'seems': 1,
          'heehaw': 1,
          'see': 1,
          'claim': 1,
          'place': 1,
          'human': 1,
          'rest': 1,
          'us': 1,
          'nobviously': 1,
          'quite': 1,
          'nonmembers': 1,
          'made': 1,
          'first': 1,
          'use': 1,
          'word': 1,
          'filmed': 1,
          'theres': 1,
          'artistic': 1,
          'huge': 1,
          'success': 1,
          'nin': 1,
          'fact': 1,
          'career': 1,
          'decline': 1,
          'intelligence': 1,
          'culture': 1,
          'nyou': 1,
          'may': 1,
          'andrew': 1,
          'nhe': 1,
          'born': 1,
          'negative': 1,
          'q': 1,
          'nand': 1,
          'popular': 1,
          'thirty': 1,
          'years': 1,
          'ago': 1,
          'nmaybe': 1,
          'still': 1,
          'notch': 1,
          'two': 1,
          'comedic': 1,
          'ladder': 1,
          'never': 1,
          'actually': 1,
          'impression': 1,
          'rabid': 1,
          'bulldog': 1,
          'biting': 1,
          'mans': 1,
          'testicles': 1,
          'nlewis': 1,
          'least': 1,
          'dignity': 1,
          'save': 1,
          'performance': 1,
          'company': 1,
          'came': 1,
          'nneg': 1}),
 Counter({'deep': 12,
          'skin': 10,
          'edwards': 6,
          'zach': 6,
          'drinking': 4,
          'wife': 4,
          'nif': 4,
          'drink': 4,
          'one': 3,
          'better': 3,
          'watch': 3,
          'comedy': 3,
          'never': 3,
          'arrested': 3,
          'dont': 2,
          'nskin': 2,
          'ritter': 2,
          'problem': 2,
          'women': 2,
          'see': 2,
          'goes': 2,
          'every': 2,
          'zachs': 2,
          'alex': 2,
          'mistress': 2,
          'nlike': 2,
          'nin': 2,
          'get': 2,
          'sex': 2,
          'mercedes': 2,
          'makes': 2,
          'characters': 2,
          'nzach': 2,
          'jack': 2,
          'bit': 2,
          'crashes': 2,
          'role': 2,
          'reed': 2,
          'nthe': 2,
          'film': 2,
          'nzachs': 2,
          'give': 2,
          'serious': 2,
          'gets': 2,
          'clean': 2,
          'making': 2,
          'favorite': 1,
          'songs': 1,
          'stranglers': 1,
          'includes': 1,
          'lyric': 1,
          'youd': 1,
          'nid': 1,
          'like': 1,
          'extend': 1,
          'warning': 1,
          'whatever': 1,
          'tedious': 1,
          'uneven': 1,
          'written': 1,
          'directed': 1,
          'blake': 1,
          'njohn': 1,
          'stars': 1,
          'dried': 1,
          'writer': 1,
          'insatiable': 1,
          'womanizer': 1,
          'bigtime': 1,
          'ni': 1,
          'saw': 1,
          'man': 1,
          'loved': 1,
          'wonder': 1,
          'whether': 1,
          'remake': 1,
          'nyou': 1,
          'put': 1,
          'mildly': 1,
          'bed': 1,
          'woman': 1,
          'meets': 1,
          'nas': 1,
          'movie': 1,
          'opens': 1,
          'catches': 1,
          'also': 1,
          'hairdresser': 1,
          'sensible': 1,
          'kicks': 1,
          'house': 1,
          'divorces': 1,
          'response': 1,
          'spiritual': 1,
          'journey': 1,
          'womanizing': 1,
          'psychotherapy': 1,
          'selfdiscovery': 1,
          'youre': 1,
          'turned': 1,
          'idea': 1,
          'watching': 1,
          'crash': 1,
          'sing': 1,
          'horrendously': 1,
          'piano': 1,
          'right': 1,
          'alley': 1,
          'fatal': 1,
          'mistake': 1,
          'inflicting': 1,
          'us': 1,
          'unbelievable': 1,
          'unsympathetic': 1,
          'rich': 1,
          '80s': 1,
          'l': 1,
          'version': 1,
          'ritters': 1,
          'tripper': 1,
          'character': 1,
          'threes': 1,
          'company': 1,
          'clumsy': 1,
          'inept': 1,
          'hes': 1,
          'type': 1,
          'guy': 1,
          'whose': 1,
          'bad': 1,
          'aim': 1,
          'accidently': 1,
          'squirt': 1,
          'breath': 1,
          'freshener': 1,
          'eye': 1,
          'supposed': 1,
          'charming': 1,
          'charismatic': 1,
          'failed': 1,
          'even': 1,
          'redeeming': 1,
          'virtue': 1,
          'nconsequently': 1,
          'felt': 1,
          'least': 1,
          'sympathy': 1,
          'pity': 1,
          'philandering': 1,
          'alcoholic': 1,
          'moments': 1,
          'crisis': 1,
          'fact': 1,
          'exwifes': 1,
          'wedding': 1,
          'desperate': 1,
          'attempt': 1,
          'stop': 1,
          'remarrying': 1,
          'actually': 1,
          'rooted': 1,
          'go': 1,
          'ceremony': 1,
          'nto': 1,
          'add': 1,
          'insult': 1,
          'injury': 1,
          'gives': 1,
          'large': 1,
          'supporting': 1,
          'cast': 1,
          'nothing': 1,
          'stereotypes': 1,
          'work': 1,
          'nfor': 1,
          'instance': 1,
          'vincent': 1,
          'gardenias': 1,
          'talents': 1,
          'wasted': 1,
          'fatherly': 1,
          'bartender': 1,
          'nof': 1,
          'filmand': 1,
          'manyalyson': 1,
          'alone': 1,
          'stands': 1,
          'brings': 1,
          'intelligence': 1,
          'sensitivity': 1,
          'nbecause': 1,
          'care': 1,
          'slightest': 1,
          'anyone': 1,
          'films': 1,
          'feeble': 1,
          'attempts': 1,
          'drama': 1,
          'inevitably': 1,
          'fail': 1,
          'doesnt': 1,
          'fare': 1,
          'much': 1,
          'nmost': 1,
          'jokes': 1,
          'dumb': 1,
          'predictable': 1,
          'sitcomish': 1,
          'nabout': 1,
          'ten': 1,
          'minutes': 1,
          'however': 1,
          'manage': 1,
          'come': 1,
          'good': 1,
          'line': 1,
          'novel': 1,
          'sightgag': 1,
          'effective': 1,
          'involves': 1,
          'pair': 1,
          'dueling': 1,
          'condoms': 1,
          'noverall': 1,
          'laughs': 1,
          'infrequent': 1,
          'shallow': 1,
          'stay': 1,
          'afloat': 1,
          'nmy': 1,
          'final': 1,
          'criticism': 1,
          'lies': 1,
          'glamorous': 1,
          'depiction': 1,
          'alcohol': 1,
          'alcoholism': 1,
          'excessive': 1,
          'clearly': 1,
          'ruining': 1,
          'life': 1,
          'nevertheless': 1,
          'seems': 1,
          'pleasure': 1,
          'pain': 1,
          'binges': 1,
          'truly': 1,
          'lasting': 1,
          'consequences': 1,
          'new': 1,
          'lawyer': 1,
          'bails': 1,
          'jail': 1,
          'leaves': 1,
          'eventually': 1,
          'decide': 1,
          'second': 1,
          'chance': 1,
          'hell': 1,
          'act': 1,
          'tone': 1,
          'wrong': 1,
          'treats': 1,
          'issue': 1,
          'far': 1,
          'lightly': 1,
          'joke': 1,
          'joking': 1,
          'matter': 1,
          'nperhaps': 1,
          'studied': 1,
          'dudley': 1,
          'moore': 1,
          'arthur': 1,
          'yet': 1,
          'michael': 1,
          'keaton': 1,
          'sober': 1,
          'nneg': 1}),
 Counter({'eddie': 9,
          'maureen': 4,
          'eddies': 4,
          'nshe': 4,
          'two': 3,
          'joey': 3,
          'life': 3,
          'really': 2,
          'gets': 2,
          'good': 2,
          'penn': 2,
          'wife': 2,
          'nmaureen': 2,
          'relationship': 2,
          'love': 2,
          'ntheir': 2,
          'new': 2,
          'lows': 2,
          'next': 2,
          'high': 2,
          'father': 2,
          'nduring': 2,
          'kiefer': 2,
          'insists': 2,
          'institution': 2,
          'find': 2,
          'gone': 2,
          'mere': 2,
          'shell': 2,
          'movie': 1,
          'dysfunctional': 1,
          'families': 1,
          'never': 1,
          'ground': 1,
          'despite': 1,
          'performances': 1,
          'basically': 1,
          'competent': 1,
          'cast': 1,
          'neddie': 1,
          'sean': 1,
          'robin': 1,
          'wright': 1,
          'notsohappily': 1,
          'married': 1,
          'couple': 1,
          'luck': 1,
          'nliving': 1,
          'rented': 1,
          'rooms': 1,
          'seedier': 1,
          'part': 1,
          'unnamed': 1,
          'city': 1,
          'spend': 1,
          'little': 1,
          'income': 1,
          'local': 1,
          'bar': 1,
          'owned': 1,
          'shorty': 1,
          'stanton': 1,
          'best': 1,
          'friend': 1,
          'georgie': 1,
          'mazar': 1,
          'share': 1,
          'odd': 1,
          'marked': 1,
          'frequent': 1,
          'disappearances': 1,
          'non': 1,
          'return': 1,
          'promises': 1,
          'world': 1,
          'professes': 1,
          'undying': 1,
          'manic': 1,
          'reunions': 1,
          'soon': 1,
          'lead': 1,
          'disappears': 1,
          'nlike': 1,
          'junky': 1,
          'craving': 1,
          'suffers': 1,
          'reach': 1,
          'complicated': 1,
          'maureens': 1,
          'pregnancy': 1,
          'wants': 1,
          'baby': 1,
          'deep': 1,
          'seems': 1,
          'sense': 1,
          'inevitability': 1,
          'losing': 1,
          'latter': 1,
          'one': 1,
          'absences': 1,
          'attacked': 1,
          'neighbor': 1,
          'drunk': 1,
          'cooperation': 1,
          'intimacy': 1,
          'leaves': 1,
          'badly': 1,
          'bruised': 1,
          'fear': 1,
          'might': 1,
          'lies': 1,
          'happens': 1,
          'ensure': 1,
          'harm': 1,
          'come': 1,
          'result': 1,
          'inevitable': 1,
          'rage': 1,
          'nhe': 1,
          'lashes': 1,
          'expects': 1,
          'ends': 1,
          'believes': 1,
          '3': 1,
          'months': 1,
          'reality': 1,
          '10': 1,
          'years': 1,
          'decade': 1,
          'divorces': 1,
          'remarries': 1,
          'solid': 1,
          'reliable': 1,
          'individual': 1,
          'travolta': 1,
          'small': 1,
          'role': 1,
          'nher': 1,
          'falls': 1,
          'apart': 1,
          'released': 1,
          'comes': 1,
          'njoey': 1,
          'bringing': 1,
          'home': 1,
          'making': 1,
          'choose': 1,
          'husband': 1,
          'children': 1,
          'stability': 1,
          'makes': 1,
          'living': 1,
          'drives': 1,
          'cadillac': 1,
          'live': 1,
          'large': 1,
          'house': 1,
          'suburbs': 1,
          'previous': 1,
          'chooses': 1,
          'past': 1,
          'sacrifices': 1,
          'old': 1,
          'giving': 1,
          'daughter': 1,
          'nbut': 1,
          'knew': 1,
          'replaced': 1,
          'man': 1,
          'automaton': 1,
          'woman': 1,
          'whatever': 1,
          'therapy': 1,
          'treatment': 1,
          'given': 1,
          'along': 1,
          'nperhaps': 1,
          'need': 1,
          'happiness': 1,
          'maybe': 1,
          'lack': 1,
          'sadness': 1,
          'together': 1,
          'movies': 1,
          'denouement': 1,
          'convincing': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'nperhaps': 5,
          'nthe': 4,
          'richards': 3,
          'seinfeld': 2,
          'tv': 2,
          'daniels': 2,
          'lawyer': 2,
          'charles': 2,
          'film': 2,
          'two': 2,
          'try': 2,
          'wasnt': 2,
          'funny': 2,
          'acting': 2,
          'good': 2,
          'waste': 2,
          'time': 2,
          'non': 2,
          'side': 2,
          'theron': 2,
          'ncharlize': 2,
          'career': 2,
          'nshe': 2,
          'la': 2,
          'michael': 1,
          'leaves': 1,
          'spot': 1,
          'kramer': 1,
          'infamous': 1,
          'sitcom': 1,
          'stint': 1,
          'lanky': 1,
          'goofy': 1,
          'best': 1,
          'friend': 1,
          'jeff': 1,
          'character': 1,
          'illfated': 1,
          'unfunny': 1,
          'comedy': 1,
          'nplot': 1,
          'richard': 1,
          'actor': 1,
          'take': 1,
          'place': 1,
          'real': 1,
          'court': 1,
          'case': 1,
          'left': 1,
          'unintelligible': 1,
          'night': 1,
          'heavy': 1,
          'drinking': 1,
          'bachelor': 1,
          'party': 1,
          'follows': 1,
          'antics': 1,
          'men': 1,
          'get': 1,
          'away': 1,
          'tomfoolery': 1,
          'ncritique': 1,
          'make': 1,
          'laugh': 1,
          'tired': 1,
          'watched': 1,
          'seen': 1,
          'perform': 1,
          'schtick': 1,
          'thousand': 1,
          'times': 1,
          'nabsolutely': 1,
          'lack': 1,
          'humour': 1,
          'issue': 1,
          'either': 1,
          'attempts': 1,
          'weave': 1,
          'couple': 1,
          'love': 1,
          'stories': 1,
          'vision': 1,
          'unfortunately': 1,
          'also': 1,
          'lacking': 1,
          'conviction': 1,
          'believability': 1,
          'credibility': 1,
          'nthey': 1,
          'contrived': 1,
          'appear': 1,
          'placed': 1,
          'story': 1,
          'convenience': 1,
          'sake': 1,
          'actors': 1,
          'adequate': 1,
          'enough': 1,
          'roles': 1,
          'problem': 1,
          'didnt': 1,
          'lie': 1,
          'ni': 1,
          'wish': 1,
          'could': 1,
          'find': 1,
          'one': 1,
          'reason': 1,
          'see': 1,
          'cant': 1,
          'nunless': 1,
          'course': 1,
          'need': 1,
          'something': 1,
          'playing': 1,
          'set': 1,
          'around': 1,
          'house': 1,
          'noverall': 1,
          'stinks': 1,
          'charlize': 1,
          'darn': 1,
          'cute': 1,
          'longer': 1,
          '90': 1,
          'minutes': 1,
          'bad': 1,
          'interesting': 1,
          'enjoyable': 1,
          'way': 1,
          'possible': 1,
          'na': 1,
          'person': 1,
          'wouldnt': 1,
          'even': 1,
          'enjoy': 1,
          'nachos': 1,
          'watching': 1,
          'emptiness': 1,
          'nplease': 1,
          'skip': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'jonathan': 1,
          'lynn': 1,
          'earned': 1,
          'degree': 1,
          'law': 1,
          'cambridge': 1,
          'becoming': 1,
          'actordirector': 1,
          'grew': 1,
          'farm': 1,
          'outside': 1,
          'benoni': 1,
          'south': 1,
          'africa': 1,
          'child': 1,
          'nat': 1,
          'age': 1,
          '18': 1,
          'mother': 1,
          'made': 1,
          'go': 1,
          'los': 1,
          'angeles': 1,
          'industry': 1,
          'came': 1,
          'without': 1,
          'knowing': 1,
          'anyone': 1,
          'city': 1,
          'weeks': 1,
          'standing': 1,
          'line': 1,
          'hollywood': 1,
          'boulevard': 1,
          'agent': 1,
          'gave': 1,
          'card': 1,
          'nafter': 1,
          'eight': 1,
          'months': 1,
          'got': 1,
          'first': 1,
          'part': 1,
          'nsince': 1,
          'taken': 1,
          'lessons': 1,
          'skyrocketed': 1,
          'specifically': 1,
          'devils': 1,
          'advocate': 1,
          '810': 1,
          'narrowly': 1,
          'beat': 1,
          'elizabeth': 1,
          'berkley': 1,
          'lead': 1,
          'role': 1,
          'showgirls': 1,
          'quoted': 1,
          'saying': 1,
          'like': 1,
          'guardian': 1,
          'angel': 1,
          'nneg': 1}),
 Counter({'chan': 4,
          'scenes': 4,
          'chans': 4,
          'jackie': 3,
          'plot': 3,
          'nthe': 3,
          'get': 3,
          'brothers': 3,
          'twin': 2,
          'dragons': 2,
          'action': 2,
          'forget': 2,
          'even': 2,
          'movies': 2,
          'films': 2,
          'little': 2,
          'sequences': 2,
          'together': 2,
          'case': 2,
          'movie': 2,
          'good': 2,
          'love': 2,
          'yet': 2,
          'seem': 2,
          'mind': 2,
          'brother': 2,
          'final': 2,
          'fight': 2,
          'white': 2,
          'marsh': 2,
          'kicks': 1,
          'way': 1,
          'van': 1,
          'damme': 1,
          'territory': 1,
          'embarrassingly': 1,
          'bland': 1,
          'comedy': 1,
          'mistaken': 1,
          'identities': 1,
          'nchan': 1,
          'plays': 1,
          'separatedatbirths': 1,
          'boomer': 1,
          'john': 1,
          'whose': 1,
          'drastically': 1,
          'different': 1,
          'paths': 1,
          'naw': 1,
          'description': 1,
          'worth': 1,
          'space': 1,
          'nbut': 1,
          'lets': 1,
          'face': 1,
          'nno': 1,
          'one': 1,
          'goes': 1,
          'anyway': 1,
          'nothing': 1,
          'happens': 1,
          'always': 1,
          'glue': 1,
          'thriftily': 1,
          'spread': 1,
          'hold': 1,
          'nin': 1,
          'however': 1,
          'tiresome': 1,
          'plotdriving': 1,
          'fritter': 1,
          'away': 1,
          'much': 1,
          'almost': 1,
          'want': 1,
          'shout': 1,
          'risk': 1,
          'demeaning': 1,
          'artistic': 1,
          'value': 1,
          'cinema': 1,
          'part': 1,
          'already': 1,
          'nmost': 1,
          'film': 1,
          'devoted': 1,
          'showing': 1,
          'efforts': 1,
          'hide': 1,
          'others': 1,
          'existence': 1,
          'acquaintances': 1,
          'nwhy': 1,
          'necessary': 1,
          'satisfactorily': 1,
          'explained': 1,
          'neither': 1,
          'lot': 1,
          'aspects': 1,
          'twins': 1,
          'interests': 1,
          'demure': 1,
          'clubsinger': 1,
          'barbara': 1,
          'chanfilm': 1,
          'regular': 1,
          'maggie': 1,
          'cheung': 1,
          'lusty': 1,
          'bridehopeful': 1,
          'tammy': 1,
          'nina': 1,
          'li': 1,
          'chi': 1,
          'disoriented': 1,
          'brouhaha': 1,
          'strangely': 1,
          'sure': 1,
          'describing': 1,
          'boys': 1,
          'bumbling': 1,
          'antics': 1,
          'stretched': 1,
          'thin': 1,
          'stop': 1,
          'caring': 1,
          'supposed': 1,
          'given': 1,
          'shot': 1,
          'several': 1,
          'shots': 1,
          'fact': 1,
          'makeup': 1,
          'hair': 1,
          'people': 1,
          'neven': 1,
          'socornyitsfunny': 1,
          'humor': 1,
          'offkilter': 1,
          'outing': 1,
          'nsome': 1,
          'gags': 1,
          'carefully': 1,
          'innocuous': 1,
          'theyre': 1,
          'annoying': 1,
          'na': 1,
          'point': 1,
          'whenever': 1,
          'anyone': 1,
          'sees': 1,
          'fall': 1,
          'ground': 1,
          'dead': 1,
          'faint': 1,
          'nare': 1,
          'laughing': 1,
          'nas': 1,
          'usual': 1,
          'showdown': 1,
          'jewel': 1,
          'tour': 1,
          'de': 1,
          'force': 1,
          'display': 1,
          'agility': 1,
          'grace': 1,
          'nnever': 1,
          'clear': 1,
          'end': 1,
          'fighting': 1,
          'suited': 1,
          'bad': 1,
          'guys': 1,
          'inside': 1,
          'automobile': 1,
          'crashtesting': 1,
          'facility': 1,
          'nits': 1,
          'fun': 1,
          'late': 1,
          'nperhaps': 1,
          'next': 1,
          'collection': 1,
          'last': 1,
          'nthey': 1,
          'could': 1,
          'call': 1,
          'everybody': 1,
          'would': 1,
          'go': 1,
          'home': 1,
          'happy': 1,
          'nreviewed': 1,
          'april': 1,
          '14': 1,
          '1999': 1,
          'loews': 1,
          'theaters': 1,
          'md': 1,
          'nneg': 1}),
 Counter({'brenner': 7,
          'generals': 5,
          'daughter': 5,
          'nits': 4,
          'case': 4,
          'campbell': 4,
          'film': 3,
          'much': 3,
          'lines': 3,
          'captain': 3,
          'sexual': 3,
          'enough': 3,
          'two': 3,
          'scene': 3,
          'stupid': 2,
          'dialogue': 2,
          'nthe': 2,
          'ever': 2,
          'even': 2,
          'face': 2,
          'hero': 2,
          'investigator': 2,
          'criminal': 2,
          'investigation': 2,
          'georgia': 2,
          'james': 2,
          'hours': 2,
          'make': 2,
          'longer': 2,
          'wink': 2,
          'turn': 2,
          'campbells': 2,
          'smart': 2,
          'one': 2,
          'provides': 2,
          'script': 2,
          'probably': 1,
          'cleverest': 1,
          'well': 1,
          'see': 1,
          'year': 1,
          'perhaps': 1,
          'stupidest': 1,
          'clever': 1,
          'confusing': 1,
          'critic': 1,
          'knuckleheaded': 1,
          'plotting': 1,
          'ostentatious': 1,
          'direction': 1,
          'shares': 1,
          'screen': 1,
          'snappy': 1,
          'crisp': 1,
          'character': 1,
          'interaction': 1,
          'nthat': 1,
          'however': 1,
          'happens': 1,
          'legendary': 1,
          'screenwriter': 1,
          'william': 1,
          'goldman': 1,
          'takes': 1,
          'pass': 1,
          'otherwise': 1,
          'brutally': 1,
          'predictable': 1,
          'conspiracy': 1,
          'thriller': 1,
          'punchedup': 1,
          'punch': 1,
          'verge': 1,
          'convincing': 1,
          'brain': 1,
          'head': 1,
          'remaining': 1,
          '75': 1,
          'narrative': 1,
          'punches': 1,
          'lack': 1,
          'common': 1,
          'sense': 1,
          'nour': 1,
          'warrant': 1,
          'officer': 1,
          'paul': 1,
          'brash': 1,
          'u': 1,
          'armys': 1,
          'division': 1,
          'nhis': 1,
          'latest': 1,
          'murder': 1,
          'elisabeth': 1,
          'leslie': 1,
          'stefanson': 1,
          'base': 1,
          'victim': 1,
          'found': 1,
          'tied': 1,
          'ground': 1,
          'apparent': 1,
          'assault': 1,
          'strangulation': 1,
          'ncomplicating': 1,
          'fact': 1,
          'capt': 1,
          'general': 1,
          'joe': 1,
          'cromwell': 1,
          'war': 1,
          'potential': 1,
          'vicepresidential': 1,
          'nominee': 1,
          'ngeneral': 1,
          'wants': 1,
          'keep': 1,
          'press': 1,
          'gives': 1,
          '36': 1,
          'fbi': 1,
          'steps': 1,
          'nteamed': 1,
          'rape': 1,
          'sarah': 1,
          'sunhill': 1,
          'madeleine': 1,
          'stowe': 1,
          'coincidentally': 1,
          'romantic': 1,
          'relationship': 1,
          'begins': 1,
          'uncovering': 1,
          'dark': 1,
          'secrets': 1,
          'late': 1,
          'captains': 1,
          'past': 1,
          'sordid': 1,
          'nif': 1,
          'sordidness': 1,
          'worst': 1,
          'daughters': 1,
          'problems': 1,
          'nscenes': 1,
          'degredation': 1,
          'linger': 1,
          'necessary': 1,
          'negligible': 1,
          'dramatic': 1,
          'value': 1,
          'overwhelmed': 1,
          'filteredlight': 1,
          'sleaze': 1,
          'ndirector': 1,
          'simon': 1,
          'west': 1,
          'likely': 1,
          'thinks': 1,
          'hes': 1,
          'covered': 1,
          'juxtaposing': 1,
          'images': 1,
          'violence': 1,
          'sweet': 1,
          'flowers': 1,
          'prove': 1,
          'dependent': 1,
          'visual': 1,
          'cliches': 1,
          'films': 1,
          'fatal': 1,
          'flaw': 1,
          'trend': 1,
          'continues': 1,
          'taking': 1,
          'storys': 1,
          'virtues': 1,
          'slapping': 1,
          'coat': 1,
          'moronproof': 1,
          'obviousness': 1,
          'ncharacters': 1,
          'may': 1,
          'villains': 1,
          'photographed': 1,
          'ominous': 1,
          'shadow': 1,
          'cutaway': 1,
          'inserts': 1,
          'stillliving': 1,
          'corpse': 1,
          'uncovered': 1,
          'insure': 1,
          'fiveminute': 1,
          'attention': 1,
          'spans': 1,
          'nwest': 1,
          'cant': 1,
          'help': 1,
          'overdirecting': 1,
          'every': 1,
          'minute': 1,
          'nhe': 1,
          'turns': 1,
          'footage': 1,
          'shown': 1,
          'cnn': 1,
          'excuse': 1,
          'slowfade': 1,
          'edits': 1,
          'nbubbling': 1,
          'overcooked': 1,
          'stew': 1,
          'tasty': 1,
          'distract': 1,
          'smell': 1,
          'slickest': 1,
          'finds': 1,
          'squaring': 1,
          'mentor': 1,
          'psychological': 1,
          'warfare': 1,
          'expert': 1,
          'named': 1,
          'moore': 1,
          'woods': 1,
          'ntheres': 1,
          'something': 1,
          'invigorating': 1,
          'watching': 1,
          'actors': 1,
          'playing': 1,
          'characters': 1,
          'firing': 1,
          'honesty': 1,
          'another': 1,
          'nindeed': 1,
          'travolta': 1,
          'gets': 1,
          'sink': 1,
          'teeth': 1,
          'dozens': 1,
          'choice': 1,
          'based': 1,
          'delight': 1,
          'provoking': 1,
          'authority': 1,
          'figures': 1,
          'local': 1,
          'sheriff': 1,
          'county': 1,
          'shouldnt': 1,
          'nightsticking': 1,
          'colored': 1,
          'folk': 1,
          'neven': 1,
          'lame': 1,
          'device': 1,
          'sunhills': 1,
          'history': 1,
          'winning': 1,
          'zingers': 1,
          'ngoldmans': 1,
          'serve': 1,
          'bigger': 1,
          'laugh': 1,
          'youll': 1,
          'find': 1,
          'socalled': 1,
          'comedies': 1,
          'ndialogue': 1,
          'unfortunately': 1,
          'isnt': 1,
          'quality': 1,
          'difficult': 1,
          'take': 1,
          'movie': 1,
          'seriously': 1,
          'investigators': 1,
          'solve': 1,
          'sooner': 1,
          'idiotic': 1,
          'inability': 1,
          'recognize': 1,
          'nature': 1,
          'crime': 1,
          'lucky': 1,
          'last': 1,
          'occasions': 1,
          'catches': 1,
          'vital': 1,
          'piece': 1,
          'evidence': 1,
          'corner': 1,
          'eye': 1,
          'nby': 1,
          'time': 1,
          'wanders': 1,
          'towards': 1,
          'overwrought': 1,
          'psychointherain': 1,
          'finale': 1,
          'wests': 1,
          'heavy': 1,
          'hand': 1,
          'obliterated': 1,
          'made': 1,
          'occasionally': 1,
          'fun': 1,
          'silly': 1,
          'pretentious': 1,
          'filmmaking': 1,
          'least': 1,
          'giggle': 1,
          'five': 1,
          'ngoldman': 1,
          'tear': 1,
          '15': 1,
          'decent': 1,
          'pages': 1,
          'standup': 1,
          'routine': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'cradle': 5,
          'play': 5,
          'rock': 4,
          'robbins': 4,
          'theater': 4,
          'nthe': 3,
          'story': 3,
          'like': 3,
          'nice': 3,
          'john': 3,
          'cusack': 3,
          'latest': 2,
          'tim': 2,
          'may': 2,
          'gets': 2,
          'many': 2,
          'subplots': 2,
          'true': 2,
          'federal': 2,
          'wants': 2,
          'together': 2,
          'even': 2,
          'seemed': 2,
          'main': 2,
          'seeing': 2,
          'except': 2,
          'least': 2,
          'ntheres': 2,
          'emily': 2,
          'watson': 2,
          'another': 2,
          'involving': 2,
          'actors': 2,
          'moments': 2,
          'direction': 2,
          'effort': 1,
          'directoractor': 1,
          'nwhile': 1,
          'oscar': 1,
          'worthy': 1,
          'back': 1,
          '1995': 1,
          'dead': 1,
          'man': 1,
          'walking': 1,
          'little': 1,
          'overconfident': 1,
          'sloppy': 1,
          'confusing': 1,
          'filled': 1,
          'ill': 1,
          'try': 1,
          'best': 1,
          'explain': 1,
          'simply': 1,
          'possible': 1,
          'based': 1,
          'mostly': 1,
          '1930s': 1,
          'produced': 1,
          'apparently': 1,
          'offensive': 1,
          'government': 1,
          'shuts': 1,
          'nits': 1,
          'time': 1,
          'depression': 1,
          'entertain': 1,
          'cheer': 1,
          'jobs': 1,
          'poor': 1,
          'nbetween': 1,
          'conflict': 1,
          'lies': 1,
          'seems': 1,
          '10': 1,
          'work': 1,
          'associated': 1,
          'nalso': 1,
          'along': 1,
          'way': 1,
          'messages': 1,
          'mashed': 1,
          'create': 1,
          'overwhelming': 1,
          'experience': 1,
          'ntim': 1,
          'keeps': 1,
          'piling': 1,
          'political': 1,
          'views': 1,
          'characters': 1,
          'give': 1,
          'cases': 1,
          'walk': 1,
          'nfor': 1,
          'achievement': 1,
          'friendly': 1,
          'get': 1,
          'slightly': 1,
          'sophisticated': 1,
          'dialogue': 1,
          'fancy': 1,
          'outfits': 1,
          'ni': 1,
          'thought': 1,
          'reason': 1,
          'would': 1,
          'outstanding': 1,
          'cast': 1,
          'unfortunately': 1,
          'uninteresting': 1,
          'nlet': 1,
          'recap': 1,
          'important': 1,
          'character': 1,
          'please': 1,
          'bear': 1,
          'especially': 1,
          'considering': 1,
          'nill': 1,
          'begin': 1,
          'involved': 1,
          'orson': 1,
          'welles': 1,
          'angus': 1,
          'macfadyen': 1,
          'course': 1,
          'director': 1,
          'producer': 1,
          'houseman': 1,
          'cary': 1,
          'elwes': 1,
          'marc': 1,
          'blitzstein': 1,
          'hank': 1,
          'azaria': 1,
          'writer': 1,
          'woman': 1,
          'break': 1,
          'playing': 1,
          'part': 1,
          'noutside': 1,
          'theres': 1,
          'ventriloquist': 1,
          'bill': 1,
          'murray': 1,
          'relationship': 1,
          'clerk': 1,
          'joan': 1,
          'subplot': 1,
          'painter': 1,
          'diego': 1,
          'rivera': 1,
          'ruben': 1,
          'blades': 1,
          'whos': 1,
          'unhappy': 1,
          'painting': 1,
          'destroyed': 1,
          'nelson': 1,
          'rockefeller': 1,
          'feels': 1,
          'outrage': 1,
          'actresses': 1,
          'stories': 1,
          'susan': 1,
          'sarandon': 1,
          'philip': 1,
          'baker': 1,
          'hall': 1,
          'name': 1,
          'mentioned': 1,
          'significant': 1,
          'nanyway': 1,
          'talented': 1,
          'hollywood': 1,
          'stars': 1,
          'completely': 1,
          'wasted': 1,
          'great': 1,
          'job': 1,
          'one': 1,
          'personal': 1,
          'favorite': 1,
          'always': 1,
          'delivers': 1,
          'thick': 1,
          'thin': 1,
          'nnow': 1,
          'although': 1,
          'weak': 1,
          'say': 1,
          'subjects': 1,
          'overblown': 1,
          'nsure': 1,
          'free': 1,
          'speech': 1,
          'segment': 1,
          'feature': 1,
          'becomes': 1,
          'repetitive': 1,
          'whole': 1,
          'basically': 1,
          'nothing': 1,
          'headache': 1,
          'non': 1,
          'brighter': 1,
          'side': 1,
          'masterful': 1,
          'nhis': 1,
          'camera': 1,
          'reminiscent': 1,
          'works': 1,
          'paul': 1,
          'thomas': 1,
          'andersons': 1,
          'magnolia': 1,
          'smoother': 1,
          'opinion': 1,
          'cant': 1,
          'make': 1,
          'movie': 1,
          'much': 1,
          'better': 1,
          'nalthough': 1,
          'theyre': 1,
          'stays': 1,
          'title': 1,
          'rocked': 1,
          'far': 1,
          'tipped': 1,
          'nneg': 1}),
 Counter({'movie': 18,
          'nthe': 7,
          'richard': 5,
          'things': 5,
          'plot': 5,
          'character': 5,
          'story': 5,
          'cast': 5,
          'get': 4,
          'nthis': 4,
          'cinematography': 4,
          'think': 4,
          'better': 4,
          'leonardo': 3,
          'beach': 3,
          'fran': 3,
          'oise': 3,
          'seems': 3,
          'ni': 3,
          'dont': 3,
          'anyone': 3,
          'go': 3,
          'actually': 3,
          'little': 3,
          'see': 3,
          'like': 3,
          'much': 3,
          'dicaprio': 2,
          'sets': 2,
          'thailand': 2,
          'nthere': 2,
          'secret': 2,
          'nrichard': 2,
          'three': 2,
          'half': 2,
          'two': 2,
          'thirds': 2,
          'aside': 2,
          'novel': 2,
          'beauty': 2,
          'part': 2,
          'nbut': 2,
          'many': 2,
          'quite': 2,
          'lacking': 2,
          'along': 2,
          'said': 2,
          'nnow': 2,
          'pretty': 2,
          'good': 2,
          'nothing': 2,
          'something': 2,
          'make': 2,
          'sense': 2,
          'hoping': 2,
          'made': 2,
          'development': 2,
          'attempt': 2,
          'fails': 2,
          'would': 2,
          'well': 2,
          'fact': 2,
          'international': 2,
          'used': 2,
          'global': 2,
          'liked': 2,
          'disillusioned': 1,
          'trying': 1,
          'find': 1,
          'spice': 1,
          'life': 1,
          'meets': 1,
          'crazed': 1,
          'man': 1,
          'name': 1,
          'daffy': 1,
          'robert': 1,
          'carlyle': 1,
          'gives': 1,
          'map': 1,
          'utopia': 1,
          'commits': 1,
          'suicide': 1,
          'neighbors': 1,
          'hotel': 1,
          'tienne': 1,
          'guillaume': 1,
          'canet': 1,
          'virginie': 1,
          'ledoyen': 1,
          'nonce': 1,
          'discover': 1,
          'society': 1,
          'existing': 1,
          'falls': 1,
          'covers': 1,
          'romantic': 1,
          'element': 1,
          'solely': 1,
          'creation': 1,
          'hollywood': 1,
          'hold': 1,
          'original': 1,
          'general': 1,
          'breathtaking': 1,
          'argue': 1,
          'visually': 1,
          'stunning': 1,
          'wrong': 1,
          'darius': 1,
          'khondji': 1,
          'totally': 1,
          'outdone': 1,
          'nthough': 1,
          'script': 1,
          'interpretation': 1,
          'moves': 1,
          'decent': 1,
          'pace': 1,
          'abouts': 1,
          'great': 1,
          'potential': 1,
          'travelers': 1,
          'island': 1,
          'turn': 1,
          'yes': 1,
          'folks': 1,
          'spectacular': 1,
          'still': 1,
          'promise': 1,
          'start': 1,
          'degenerate': 1,
          'becomes': 1,
          'almost': 1,
          'unwatchable': 1,
          'even': 1,
          'video': 1,
          'game': 1,
          'style': 1,
          'sequence': 1,
          'borders': 1,
          'disgusting': 1,
          'doesnt': 1,
          'looks': 1,
          'dumb': 1,
          'opinion': 1,
          'peoples': 1,
          'rant': 1,
          'ive': 1,
          'abundantly': 1,
          'clear': 1,
          'seriously': 1,
          'uneven': 1,
          'pacing': 1,
          'blame': 1,
          'par': 1,
          'either': 1,
          'found': 1,
          'spoiled': 1,
          'child': 1,
          'nalthough': 1,
          'feeble': 1,
          'whole': 1,
          'profound': 1,
          'leos': 1,
          'comes': 1,
          'wannabe': 1,
          'philosopher': 1,
          'underdeveloped': 1,
          'apparent': 1,
          'reason': 1,
          'granted': 1,
          'people': 1,
          'included': 1,
          'know': 1,
          'fairly': 1,
          'random': 1,
          'ever': 1,
          'sort': 1,
          'next': 1,
          'point': 1,
          'really': 1,
          'interesting': 1,
          'characters': 1,
          'simply': 1,
          'developed': 1,
          'enough': 1,
          'obviously': 1,
          'obsessed': 1,
          'early': 1,
          'stages': 1,
          'yet': 1,
          'line': 1,
          'sure': 1,
          'contributes': 1,
          'movies': 1,
          'lack': 1,
          'core': 1,
          'unfocused': 1,
          'shall': 1,
          'move': 1,
          'onto': 1,
          'cynics': 1,
          'acting': 1,
          'passable': 1,
          'least': 1,
          'role': 1,
          'nmind': 1,
          'rest': 1,
          'reasonably': 1,
          'sized': 1,
          'roles': 1,
          'equally': 1,
          'nwhich': 1,
          'begs': 1,
          'question': 1,
          'paid': 1,
          'n': 1,
          'topic': 1,
          'wont': 1,
          'american': 1,
          'horrible': 1,
          'flavor': 1,
          'added': 1,
          'feel': 1,
          'bearable': 1,
          'nnot': 1,
          'mention': 1,
          'set': 1,
          'makes': 1,
          'nwhen': 1,
          'done': 1,
          'gaping': 1,
          'inadequacies': 1,
          'unforgivable': 1,
          'recommend': 1,
          'lot': 1,
          'sheer': 1,
          'nas': 1,
          'tries': 1,
          'philosophical': 1,
          'nif': 1,
          'end': 1,
          'going': 1,
          'forewarned': 1,
          'shortcomings': 1,
          'nneg': 1}),
 Counter({'nick': 12,
          'kate': 11,
          'movie': 8,
          'would': 5,
          'wedding': 5,
          'enough': 5,
          'aniston': 4,
          'company': 4,
          'kevin': 4,
          'ni': 4,
          'jennifer': 3,
          'problems': 3,
          'nit': 3,
          'nshe': 3,
          'nher': 3,
          'first': 3,
          'go': 3,
          'plan': 3,
          'nthe': 3,
          'sam': 3,
          'time': 3,
          'made': 3,
          'sense': 3,
          'away': 3,
          'appears': 2,
          'mercer': 2,
          'status': 2,
          'well': 2,
          'make': 2,
          'jay': 2,
          'meets': 2,
          'gets': 2,
          'nkates': 2,
          'darcy': 2,
          'illeana': 2,
          'nkate': 2,
          'results': 2,
          'pursues': 2,
          'consists': 2,
          'nat': 2,
          'break': 2,
          'new': 2,
          'really': 2,
          'nafter': 2,
          'interested': 2,
          'like': 2,
          'olympia': 2,
          'nthere': 2,
          'scene': 2,
          'actually': 2,
          'one': 2,
          'dont': 2,
          'think': 2,
          'job': 2,
          'formula': 2,
          'movies': 2,
          'best': 2,
          'friends': 2,
          'ending': 2,
          'perfect': 2,
          'couple': 2,
          'everything': 2,
          'throw': 2,
          'even': 2,
          'liked': 2,
          'congregation': 2,
          'strangers': 2,
          'twentyeight': 1,
          'year': 1,
          'old': 1,
          'happy': 1,
          'slow': 1,
          'progression': 1,
          'ladder': 1,
          'love': 1,
          'life': 1,
          'apparently': 1,
          'leaves': 1,
          'something': 1,
          'desired': 1,
          'learns': 1,
          'related': 1,
          'owner': 1,
          'advertising': 1,
          'agency': 1,
          'mr': 1,
          'dunn': 1,
          'explains': 1,
          'single': 1,
          'bode': 1,
          'freedom': 1,
          'likely': 1,
          'leave': 1,
          'taking': 1,
          'clients': 1,
          'na': 1,
          'solution': 1,
          'presents': 1,
          'mohr': 1,
          'videographer': 1,
          'coincidence': 1,
          'photographed': 1,
          'boss': 1,
          'douglas': 1,
          'uses': 1,
          'photograph': 1,
          'fabricate': 1,
          'engagement': 1,
          'repulsed': 1,
          'idea': 1,
          'getting': 1,
          'immediate': 1,
          'positive': 1,
          'task': 1,
          'convince': 1,
          'along': 1,
          'actual': 1,
          'pretending': 1,
          'fianc': 1,
          'dinner': 1,
          'kates': 1,
          'bosses': 1,
          'provoke': 1,
          'fight': 1,
          'propose': 1,
          'nhe': 1,
          'accepts': 1,
          'brings': 1,
          'unexpected': 1,
          'areas': 1,
          'office': 1,
          'bad': 1,
          'boy': 1,
          'bacon': 1,
          'wouldnt': 1,
          'give': 1,
          'day': 1,
          'nnow': 1,
          'engaged': 1,
          'affair': 1,
          'destroy': 1,
          'good': 1,
          'girl': 1,
          'image': 1,
          'hence': 1,
          'sams': 1,
          'sudden': 1,
          'interest': 1,
          'nthings': 1,
          'start': 1,
          'fall': 1,
          'apart': 1,
          'becomes': 1,
          'apparent': 1,
          'likes': 1,
          'wish': 1,
          'provoking': 1,
          'oblige': 1,
          'continue': 1,
          'longer': 1,
          'available': 1,
          'maybe': 1,
          'reconciliation': 1,
          'force': 1,
          'admit': 1,
          'lies': 1,
          'employer': 1,
          'nadding': 1,
          'mess': 1,
          'constant': 1,
          'prying': 1,
          'mother': 1,
          'dukakis': 1,
          'wants': 1,
          'get': 1,
          'married': 1,
          'settle': 1,
          'waist': 1,
          'wearing': 1,
          'bra': 1,
          'chuckle': 1,
          'wears': 1,
          'cleavage': 1,
          'satisfy': 1,
          'russ': 1,
          'meyer': 1,
          'nits': 1,
          'director': 1,
          'said': 1,
          'know': 1,
          'story': 1,
          'formulaic': 1,
          'performances': 1,
          'arent': 1,
          'great': 1,
          'heck': 1,
          'lets': 1,
          'show': 1,
          'jennifers': 1,
          'assets': 1,
          'often': 1,
          'uncovered': 1,
          'humanly': 1,
          'possible': 1,
          'keep': 1,
          'pg': 1,
          'rating': 1,
          'nquite': 1,
          'frankly': 1,
          'insulting': 1,
          'competent': 1,
          'actress': 1,
          'carry': 1,
          'decent': 1,
          'ed': 1,
          'burns': 1,
          'shes': 1,
          'smaller': 1,
          'supporting': 1,
          'role': 1,
          'doesnt': 1,
          'deliver': 1,
          'goods': 1,
          'effectively': 1,
          'performance': 1,
          'convincing': 1,
          'nunfortunately': 1,
          'far': 1,
          'romantic': 1,
          'comedies': 1,
          'adds': 1,
          'nothing': 1,
          'standard': 1,
          'types': 1,
          'film': 1,
          'similar': 1,
          'leading': 1,
          'female': 1,
          'character': 1,
          'quite': 1,
          'vindictive': 1,
          'due': 1,
          'actions': 1,
          'sympathy': 1,
          'things': 1,
          'awry': 1,
          'didnt': 1,
          'care': 1,
          'quickly': 1,
          'puts': 1,
          'nicks': 1,
          'profession': 1,
          'explaining': 1,
          'videotaping': 1,
          'weddings': 1,
          'wasnt': 1,
          'glamorous': 1,
          'coworkers': 1,
          'least': 1,
          'changed': 1,
          'bit': 1,
          'somewhat': 1,
          'surprise': 1,
          'nno': 1,
          'luck': 1,
          'picture': 1,
          'nevery': 1,
          'plot': 1,
          'occurrence': 1,
          'spotted': 1,
          'mile': 1,
          'including': 1,
          'done': 1,
          'prove': 1,
          'loyalty': 1,
          'blindly': 1,
          'sure': 1,
          'talk': 1,
          'let': 1,
          'alone': 1,
          'consider': 1,
          'relationship': 1,
          'nwas': 1,
          'quitting': 1,
          'prerequisite': 1,
          'making': 1,
          'amends': 1,
          'nthrow': 1,
          'fact': 1,
          'spent': 1,
          'together': 1,
          'warrant': 1,
          'rash': 1,
          'decision': 1,
          'believe': 1,
          'intensely': 1,
          'willing': 1,
          'career': 1,
          'doubt': 1,
          'nand': 1,
          'entire': 1,
          'feels': 1,
          'necessary': 1,
          'stop': 1,
          'stare': 1,
          'nare': 1,
          'mass': 1,
          'groups': 1,
          'people': 1,
          'simultaneously': 1,
          'total': 1,
          'nwell': 1,
          'guess': 1,
          'extras': 1,
          'two': 1,
          'lead': 1,
          'stars': 1,
          'npicture': 1,
          'directed': 1,
          'glenn': 1,
          'gordon': 1,
          'caron': 1,
          'nmohr': 1,
          'nbacon': 1,
          'ndunn': 1,
          'ndouglas': 1,
          'rita': 1,
          'ndukakis': 1,
          'nwritten': 1,
          'randy': 1,
          'turgeon': 1,
          'february': 1,
          '26': 1,
          '1998': 1,
          'nvisit': 1,
          'reviews': 1,
          'nwww': 1,
          'xtdl': 1,
          'comcanran': 1,
          'nneg': 1}),
 Counter({'ni': 8,
          'nthe': 7,
          'bad': 7,
          'demons': 6,
          'movie': 5,
          'film': 5,
          'blood': 5,
          'good': 5,
          'story': 4,
          'guy': 4,
          'really': 4,
          'wife': 4,
          'get': 4,
          'dumb': 4,
          'acting': 4,
          'one': 3,
          'scumball': 3,
          'nhe': 3,
          'getting': 3,
          'starts': 3,
          'attic': 3,
          'apart': 3,
          'three': 3,
          'nthey': 3,
          'organ': 3,
          'screwed': 3,
          'nshe': 3,
          'thing': 3,
          'nit': 3,
          'gets': 3,
          'back': 3,
          'skin': 3,
          'see': 3,
          'nthis': 3,
          'n': 3,
          'rating': 3,
          '4': 3,
          'review': 2,
          'dont': 2,
          'would': 2,
          'slasher': 2,
          'even': 2,
          'type': 2,
          'wrong': 2,
          'difference': 2,
          'chinese': 2,
          'puzzle': 2,
          'takes': 2,
          'somehow': 2,
          'appear': 2,
          'theyre': 2,
          'cleanup': 2,
          'however': 2,
          'guys': 2,
          'brother': 2,
          'scumballs': 2,
          'around': 2,
          'hubby': 2,
          'grows': 2,
          'nscumball': 2,
          'doesnt': 2,
          'ends': 2,
          'like': 2,
          'nwho': 2,
          'frank': 2,
          'two': 2,
          'meathooks': 2,
          'fun': 2,
          'rats': 2,
          'daughter': 2,
          'something': 2,
          'quite': 2,
          'long': 2,
          'best': 2,
          'na': 2,
          'far': 2,
          'horror': 2,
          'contains': 1,
          'spoilers': 1,
          'believe': 1,
          'say': 1,
          'anything': 1,
          'cant': 1,
          'guess': 1,
          '10': 1,
          'minutes': 1,
          'go': 1,
          'high': 1,
          'expectations': 1,
          'exposed': 1,
          'media': 1,
          'reports': 1,
          'signify': 1,
          'departure': 1,
          'flicks': 1,
          'sort': 1,
          'expected': 1,
          'another': 1,
          'exorcist': 1,
          'shining': 1,
          'put': 1,
          'aside': 1,
          'general': 1,
          'rule': 1,
          'seeing': 1,
          'nboy': 1,
          'nanother': 1,
          'garbage': 1,
          'flick': 1,
          'ask': 1,
          'nwell': 1,
          'buys': 1,
          'arab': 1,
          'souk': 1,
          'home': 1,
          'past': 1,
          'customs': 1,
          'fiddling': 1,
          'nlo': 1,
          'behold': 1,
          'start': 1,
          'taking': 1,
          'meat': 1,
          'hooks': 1,
          'nwhen': 1,
          'finished': 1,
          'gizzards': 1,
          'hanging': 1,
          'ceiling': 1,
          'botch': 1,
          'job': 1,
          'manage': 1,
          'leave': 1,
          'heart': 1,
          'gland': 1,
          'didnt': 1,
          'recognize': 1,
          'floorboard': 1,
          'brothers': 1,
          'door': 1,
          'soon': 1,
          'decide': 1,
          'move': 1,
          'throw': 1,
          'away': 1,
          'belongings': 1,
          'set': 1,
          'house': 1,
          'nturns': 1,
          'bit': 1,
          'nympho': 1,
          'right': 1,
          'marriage': 1,
          'wild': 1,
          'hallucinations': 1,
          'nlater': 1,
          'spills': 1,
          'floorboards': 1,
          'slowmo': 1,
          'special': 1,
          'effects': 1,
          'buckets': 1,
          'hitting': 1,
          'groundall': 1,
          'tiny': 1,
          'cut': 1,
          'hand': 1,
          'nsaid': 1,
          'eagerly': 1,
          'sucked': 1,
          'requires': 1,
          'yet': 1,
          'order': 1,
          'complete': 1,
          'regeneration': 1,
          'ugly': 1,
          'establishes': 1,
          'mind': 1,
          'contact': 1,
          'agrees': 1,
          'help': 1,
          'wants': 1,
          'nso': 1,
          'helps': 1,
          'kill': 1,
          'businessmen': 1,
          'time': 1,
          'gradually': 1,
          'strength': 1,
          'organs': 1,
          'nproblem': 1,
          'four': 1,
          'corpses': 1,
          'still': 1,
          'finally': 1,
          'though': 1,
          'strangely': 1,
          'enough': 1,
          'looking': 1,
          'nguess': 1,
          'couldnt': 1,
          'original': 1,
          'actor': 1,
          'knows': 1,
          'whose': 1,
          'name': 1,
          'nice': 1,
          'describes': 1,
          'torture': 1,
          'fondly': 1,
          'ultimate': 1,
          'pleasure': 1,
          'pain': 1,
          'since': 1,
          'level': 1,
          'nsomehow': 1,
          'torn': 1,
          '90': 1,
          'fish': 1,
          'lot': 1,
          'cower': 1,
          'corner': 1,
          'fear': 1,
          'nfor': 1,
          'reason': 1,
          'crucifies': 1,
          'carves': 1,
          'third': 1,
          'nymphos': 1,
          'horsing': 1,
          'nanyway': 1,
          'hubbys': 1,
          'course': 1,
          'wifes': 1,
          'suspect': 1,
          'sees': 1,
          'going': 1,
          'johns': 1,
          'ensuing': 1,
          'screams': 1,
          'bimbo': 1,
          'meets': 1,
          'impressed': 1,
          'manages': 1,
          'escape': 1,
          'brings': 1,
          'nat': 1,
          'rate': 1,
          'pissed': 1,
          'normally': 1,
          'meticulous': 1,
          'boils': 1,
          'trying': 1,
          'correct': 1,
          'mistake': 1,
          'bimbos': 1,
          'take': 1,
          'care': 1,
          'also': 1,
          'banishes': 1,
          'hell': 1,
          'oblivion': 1,
          'sure': 1,
          'nnot': 1,
          'shabby': 1,
          'someone': 1,
          'singledigit': 1,
          'iq': 1,
          'basically': 1,
          'jinn': 1,
          'awful': 1,
          'nawful': 1,
          'focus': 1,
          'photography': 1,
          'many': 1,
          'scenes': 1,
          'penetrated': 1,
          'unrealistic': 1,
          'looks': 1,
          'latex': 1,
          'ncontinuity': 1,
          'cares': 1,
          'nacting': 1,
          'terrible': 1,
          'nscript': 1,
          'nhorrible': 1,
          'nsounds': 1,
          'canned': 1,
          'nunrealistic': 1,
          'nstory': 1,
          'soso': 1,
          'impact': 1,
          'lost': 1,
          'think': 1,
          'rat': 1,
          'never': 1,
          'seen': 1,
          'look': 1,
          'afraid': 1,
          'nominated': 1,
          'award': 1,
          'nreally': 1,
          'envelope': 1,
          'furry': 1,
          'rodent': 1,
          'please': 1,
          'generous': 1,
          '110': 1,
          'system': 1,
          'accurate': 1,
          'people': 1,
          'audience': 1,
          'laughing': 1,
          'chortling': 1,
          'crummy': 1,
          'dialog': 1,
          'turning': 1,
          'next': 1,
          'rocky': 1,
          'picture': 1,
          'show': 1,
          'npeople': 1,
          'fed': 1,
          'yelling': 1,
          'warnings': 1,
          'characters': 1,
          'screen': 1,
          'nhad': 1,
          'ndumb': 1,
          'embarrassed': 1,
          'spent': 1,
          'money': 1,
          'goes': 1,
          'without': 1,
          'saying': 1,
          'disagree': 1,
          'reviews': 1,
          'board': 1,
          'attempt': 1,
          'nlots': 1,
          'slime': 1,
          'reddyed': 1,
          'corn': 1,
          'syrup': 1,
          'constitute': 1,
          'opinion': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'film': 6,
          'urban': 5,
          'movie': 4,
          'legends': 4,
          'final': 3,
          'another': 3,
          'like': 3,
          'scary': 3,
          'films': 3,
          'told': 3,
          'find': 3,
          'bad': 2,
          'theatre': 2,
          'columbia': 2,
          'tristar': 2,
          'enough': 2,
          'installment': 2,
          'us': 2,
          'cut': 2,
          'nthis': 2,
          'scream': 2,
          'pointless': 2,
          'movies': 2,
          'morrison': 2,
          'best': 2,
          'production': 2,
          'takes': 2,
          'hitchcock': 2,
          'amy': 2,
          'killer': 2,
          'stupid': 2,
          'slasher': 2,
          'nit': 2,
          'nin': 2,
          'fact': 2,
          'keeping': 2,
          'face': 2,
          'times': 2,
          'tried': 2,
          'laughing': 2,
          'nits': 2,
          'thing': 2,
          'many': 2,
          'genre': 2,
          'since': 2,
          'ottman': 2,
          'achievement': 2,
          'already': 2,
          'ever': 1,
          'heard': 1,
          'made': 1,
          'guy': 1,
          'run': 1,
          'screaming': 1,
          'nobviously': 1,
          'producers': 1,
          'think': 1,
          'suffered': 1,
          'first': 1,
          'finish': 1,
          'utterly': 1,
          'released': 1,
          'feature': 1,
          'consisting': 1,
          'merely': 1,
          'recycled': 1,
          'materials': 1,
          'ripoffs': 1,
          'time': 1,
          'namy': 1,
          'jennifer': 1,
          'student': 1,
          'attending': 1,
          'school': 1,
          'filled': 1,
          'uninspired': 1,
          'students': 1,
          'clue': 1,
          'nbut': 1,
          'reaches': 1,
          'halfway': 1,
          'mark': 1,
          'semester': 1,
          'prestigious': 1,
          'universitys': 1,
          'program': 1,
          'years': 1,
          'thesis': 1,
          'coveted': 1,
          'prize': 1,
          'virtual': 1,
          'oneway': 1,
          'ticket': 1,
          'hollywood': 1,
          'success': 1,
          'chance': 1,
          'encounter': 1,
          'campus': 1,
          'security': 1,
          'guard': 1,
          'reese': 1,
          'loretta': 1,
          'devine': 1,
          'whose': 1,
          'tale': 1,
          'series': 1,
          'murders': 1,
          'based': 1,
          'university': 1,
          'inspires': 1,
          'try': 1,
          'hand': 1,
          'fictional': 1,
          'thriller': 1,
          'organized': 1,
          'along': 1,
          'similar': 1,
          'lines': 1,
          'nsoon': 1,
          'fake': 1,
          'real': 1,
          'blood': 1,
          'starts': 1,
          'flow': 1,
          'chased': 1,
          'around': 1,
          'cast': 1,
          'crew': 1,
          'get': 1,
          'slain': 1,
          'nis': 1,
          'culprit': 1,
          'original': 1,
          'murderer': 1,
          'random': 1,
          'psycho': 1,
          'na': 1,
          'member': 1,
          'faculty': 1,
          'competitors': 1,
          'something': 1,
          'even': 1,
          'going': 1,
          'tiring': 1,
          'teen': 1,
          'flicks': 1,
          'neither': 1,
          'funny': 1,
          'interesting': 1,
          'simply': 1,
          'lacks': 1,
          'ability': 1,
          'story': 1,
          'entertain': 1,
          'nthe': 1,
          'body': 1,
          'counts': 1,
          'screams': 1,
          'continue': 1,
          'grow': 1,
          'weak': 1,
          'level': 1,
          'intelligence': 1,
          'sinks': 1,
          'rapidly': 1,
          'watching': 1,
          'watched': 1,
          'impossible': 1,
          'serious': 1,
          'nseveral': 1,
          'prevent': 1,
          'without': 1,
          'succeeding': 1,
          'nand': 1,
          'realized': 1,
          'practically': 1,
          'whole': 1,
          'revelation': 1,
          'century': 1,
          'nhow': 1,
          'must': 1,
          'tolerate': 1,
          'clich': 1,
          'haunted': 1,
          'birth': 1,
          'masked': 1,
          'killers': 1,
          'developed': 1,
          'allergy': 1,
          'nthey': 1,
          'meaningless': 1,
          'predictable': 1,
          'soulless': 1,
          'existence': 1,
          'nhowever': 1,
          'director': 1,
          'john': 1,
          'manages': 1,
          'make': 1,
          'worst': 1,
          'achievements': 1,
          'godforsaken': 1,
          'nwhat': 1,
          'done': 1,
          'sense': 1,
          'redemption': 1,
          'past': 1,
          'failures': 1,
          'irony': 1,
          'seriously': 1,
          'nfor': 1,
          'reason': 1,
          'alone': 1,
          'worth': 1,
          'look': 1,
          'realize': 1,
          'tough': 1,
          'comparisons': 1,
          'dig': 1,
          'ancient': 1,
          'history': 1,
          'would': 1,
          'match': 1,
          'intellect': 1,
          'neven': 1,
          'lost': 1,
          'space': 1,
          'mission': 1,
          'mars': 1,
          'seem': 1,
          'spectacular': 1,
          'shadow': 1,
          'nwe': 1,
          'seen': 1,
          'waste': 1,
          'nime': 1,
          'resources': 1,
          'showgirls': 1,
          '1995': 1,
          'nno': 1,
          'matter': 1,
          'hard': 1,
          'positive': 1,
          'elements': 1,
          'called': 1,
          'came': 1,
          'nothing': 1,
          'except': 1,
          'way': 1,
          'dressed': 1,
          'nhere': 1,
          'feel': 1,
          'compliment': 1,
          'costume': 1,
          'designers': 1,
          'trysha': 1,
          'bakker': 1,
          'mariesylvie': 1,
          'deveu': 1,
          'wisely': 1,
          'replaced': 1,
          'well': 1,
          'known': 1,
          'screammask': 1,
          'elegant': 1,
          'fencing': 1,
          'mask': 1,
          'njennifer': 1,
          'stir': 1,
          'echoes': 1,
          'right': 1,
          'actors': 1,
          'straight': 1,
          'pronouncing': 1,
          'words': 1,
          'script': 1,
          'terrifying': 1,
          'exception': 1,
          'screenplay': 1,
          'portray': 1,
          'schools': 1,
          'nif': 1,
          'graduates': 1,
          'directors': 1,
          'future': 1,
          'hollywoods': 1,
          'golden': 1,
          'days': 1,
          'nrumors': 1,
          'spreading': 1,
          'internet': 1,
          'developing': 1,
          'third': 1,
          'nlets': 1,
          'hope': 1,
          'pray': 1,
          'legend': 1,
          'nneg': 1}),
 Counter({'nthe': 11,
          'hole': 8,
          'man': 5,
          'woman': 5,
          'virus': 4,
          'movie': 4,
          'nothing': 4,
          'yang': 3,
          'tsai': 3,
          'people': 3,
          'bright': 3,
          'nthis': 3,
          'background': 3,
          'life': 3,
          'apartment': 3,
          'say': 3,
          'songs': 2,
          'grace': 2,
          'chan': 2,
          'us': 2,
          'lee': 2,
          'kangsheng': 2,
          'kueimei': 2,
          'mingliang': 2,
          'millenium': 2,
          'city': 2,
          'quarantined': 2,
          'onset': 2,
          'like': 2,
          'water': 2,
          'time': 2,
          'quick': 2,
          'dark': 2,
          'ninstead': 2,
          'one': 2,
          'lives': 2,
          'womans': 2,
          'living': 2,
          'room': 2,
          'opening': 2,
          'characters': 2,
          'around': 2,
          'film': 2,
          'long': 2,
          'noodles': 2,
          'perhaps': 2,
          'series': 2,
          'fantasies': 2,
          'book': 2,
          'movies': 2,
          'alienation': 2,
          'nif': 2,
          'challenge': 2,
          'grateful': 1,
          'comfort': 1,
          'nstarring': 1,
          'directed': 1,
          'written': 1,
          'pingying': 1,
          'cinematography': 1,
          'liao': 1,
          'pengjung': 1,
          'ntaiwan': 1,
          '241299': 1,
          'approaches': 1,
          'nan': 1,
          'incessant': 1,
          'downpour': 1,
          'batters': 1,
          'unnamed': 1,
          'nsectors': 1,
          'sealed': 1,
          'due': 1,
          'mysterious': 1,
          'causes': 1,
          'act': 1,
          'insects': 1,
          'crawl': 1,
          'fours': 1,
          'hide': 1,
          'lights': 1,
          'huddle': 1,
          'damp': 1,
          'corners': 1,
          'supply': 1,
          'zones': 1,
          'cut': 1,
          'weeks': 1,
          'nresidents': 1,
          'advised': 1,
          'evacuate': 1,
          'area': 1,
          'asap': 1,
          'premisekafka': 1,
          'way': 1,
          'cronenbergis': 1,
          'could': 1,
          'great': 1,
          'sadly': 1,
          'ends': 1,
          'waste': 1,
          'good': 1,
          'ideas': 1,
          'sketch': 1,
          'suggests': 1,
          'absurd': 1,
          'hallucinatory': 1,
          'nearfuture': 1,
          'parable': 1,
          'late': 1,
          '20th': 1,
          'century': 1,
          'execution': 1,
          'however': 1,
          'evacuation': 1,
          'visual': 1,
          'possiblities': 1,
          'deluge': 1,
          'relegated': 1,
          'focuses': 1,
          'livesfor': 1,
          'want': 1,
          'better': 1,
          'wordof': 1,
          'live': 1,
          'building': 1,
          'personalities': 1,
          'entire': 1,
          'taks': 1,
          'place': 1,
          'settings': 1,
          'uniformly': 1,
          'ugly': 1,
          'sterile': 1,
          'charmless': 1,
          'rooms': 1,
          'corridors': 1,
          'postindustrial': 1,
          'complex': 1,
          'photographed': 1,
          'look': 1,
          'dim': 1,
          'dingy': 1,
          'possible': 1,
          'nits': 1,
          'vivid': 1,
          'setting': 1,
          'unappealing': 1,
          'especially': 1,
          'monotonous': 1,
          'hiss': 1,
          'falling': 1,
          'rain': 1,
          'gurgle': 1,
          'drainage': 1,
          'pipes': 1,
          'directly': 1,
          'none': 1,
          'day': 1,
          'repairman': 1,
          'investigating': 1,
          'leak': 1,
          'leaves': 1,
          'small': 1,
          'floor': 1,
          'mans': 1,
          'ceiling': 1,
          'holesymbol': 1,
          'solitary': 1,
          'lonely': 1,
          'compartmented': 1,
          'livesallows': 1,
          'interact': 1,
          'unusual': 1,
          'mostly': 1,
          'nonverbal': 1,
          'ways': 1,
          'nexample': 1,
          'suffering': 1,
          'assumeeverything': 1,
          'obscure': 1,
          'vomits': 1,
          'wandering': 1,
          'accidentally': 1,
          'puts': 1,
          'hand': 1,
          'vomit': 1,
          'cleans': 1,
          'passes': 1,
          'meaningful': 1,
          'communication': 1,
          'nand': 1,
          'romance': 1,
          'dead': 1,
          'nmuch': 1,
          'even': 1,
          'focus': 1,
          'interactions': 1,
          'nthere': 1,
          'almost': 1,
          'dialogue': 1,
          'learn': 1,
          'next': 1,
          'nthey': 1,
          'ciphers': 1,
          'treated': 1,
          'takes': 1,
          'witness': 1,
          'miserable': 1,
          'watch': 1,
          'instance': 1,
          'boils': 1,
          'pours': 1,
          'onto': 1,
          'eats': 1,
          'n': 1,
          'fascinating': 1,
          'sounds': 1,
          'noffered': 1,
          'counterpointor': 1,
          'reliefto': 1,
          'dreary': 1,
          'sequences': 1,
          'musical': 1,
          'numbers': 1,
          'lipsynchs': 1,
          'pop': 1,
          'popular': 1,
          'im': 1,
          'told': 1,
          '1950s': 1,
          'china': 1,
          'nshe': 1,
          'prances': 1,
          'grimy': 1,
          'hallways': 1,
          'grungy': 1,
          'stairwells': 1,
          'incronguously': 1,
          'lit': 1,
          'cheerfully': 1,
          'spotlights': 1,
          'nsometimes': 1,
          'joined': 1,
          'nthese': 1,
          'scenes': 1,
          'presumably': 1,
          'intended': 1,
          'fanciful': 1,
          'sharply': 1,
          'contrasting': 1,
          'dreariness': 1,
          'reality': 1,
          'fail': 1,
          'nwhen': 1,
          'dance': 1,
          'seems': 1,
          'halfhearted': 1,
          'listless': 1,
          'nastaire': 1,
          'rogers': 1,
          'neven': 1,
          'imagination': 1,
          'numb': 1,
          'weary': 1,
          'boring': 1,
          'part': 1,
          'collection': 1,
          '2000': 1,
          'group': 1,
          'films': 1,
          'commissioned': 1,
          'french': 1,
          'tv': 1,
          'station': 1,
          'la': 1,
          'sept': 1,
          'arte': 1,
          'subject': 1,
          'nothers': 1,
          'include': 1,
          'canadas': 1,
          'last': 1,
          'night': 1,
          'brazils': 1,
          'midnight': 1,
          'american': 1,
          'hal': 1,
          'hartleys': 1,
          'seen': 1,
          'infinitely': 1,
          'superior': 1,
          'taiwanese': 1,
          'entry': 1,
          'nwitty': 1,
          'energetic': 1,
          'humane': 1,
          'makes': 1,
          'seem': 1,
          'ahem': 1,
          'empty': 1,
          'namerican': 1,
          'try': 1,
          'disguise': 1,
          'lack': 1,
          'content': 1,
          'flashy': 1,
          'movements': 1,
          'cuts': 1,
          'superficial': 1,
          'emotions': 1,
          'nforeign': 1,
          'point': 1,
          'camera': 1,
          'something': 1,
          'minimal': 1,
          'interest': 1,
          'unbelievably': 1,
          'periods': 1,
          'call': 1,
          'art': 1,
          'selfevidently': 1,
          'director': 1,
          'wants': 1,
          'audience': 1,
          'share': 1,
          'succeeds': 1,
          'nperhaps': 1,
          'dares': 1,
          'enjoy': 1,
          'despite': 1,
          'best': 1,
          'attempts': 1,
          'ensure': 1,
          'dont': 1,
          'wasnt': 1,
          'nneg': 1}),
 Counter({'lawrence': 6,
          'martin': 5,
          'big': 5,
          'woman': 5,
          'fat': 4,
          'coma': 4,
          'put': 3,
          'nyou': 3,
          'plays': 3,
          'naughty': 3,
          'nthe': 3,
          'momma': 3,
          'nfat': 3,
          'happens': 2,
          'suit': 2,
          'life': 2,
          'get': 2,
          'mommas': 2,
          'house': 2,
          'fbi': 2,
          'man': 2,
          'jail': 2,
          'movie': 2,
          'large': 2,
          'nand': 2,
          'comedy': 2,
          'one': 2,
          'even': 2,
          'board': 2,
          'work': 2,
          'real': 1,
          'comedian': 1,
          'thought': 1,
          'getting': 1,
          'numerous': 1,
          'layers': 1,
          'heavy': 1,
          'clothing': 1,
          'went': 1,
          'jogging': 1,
          '100': 1,
          'degree': 1,
          'heat': 1,
          'ending': 1,
          'nso': 1,
          'movies': 1,
          'audience': 1,
          'nin': 1,
          'agent': 1,
          'whos': 1,
          'master': 1,
          'disguises': 1,
          'nwhen': 1,
          'escapes': 1,
          'seeks': 1,
          'former': 1,
          'girlfriend': 1,
          'sexy': 1,
          'nia': 1,
          'long': 1,
          'thing': 1,
          'worth': 1,
          'looking': 1,
          'flees': 1,
          'georgia': 1,
          'stay': 1,
          'rather': 1,
          'southern': 1,
          'aunt': 1,
          'ella': 1,
          'mitchell': 1,
          'follows': 1,
          'order': 1,
          'recover': 1,
          'sum': 1,
          'money': 1,
          'stolen': 1,
          'bank': 1,
          'robbery': 1,
          'sent': 1,
          'nhowever': 1,
          'called': 1,
          'away': 1,
          'emergency': 1,
          'nsensing': 1,
          'could': 1,
          'lose': 1,
          'chance': 1,
          'capture': 1,
          'criminal': 1,
          'goes': 1,
          'undercover': 1,
          'let': 1,
          'begin': 1,
          'nbig': 1,
          'definition': 1,
          'gimmick': 1,
          'ever': 1,
          'plot': 1,
          'basically': 1,
          'summed': 1,
          'dresses': 1,
          'description': 1,
          'wordy': 1,
          'see': 1,
          'script': 1,
          'plotted': 1,
          'chalkboard': 1,
          'lawrencefat': 1,
          'middle': 1,
          'circle': 1,
          'around': 1,
          'sorts': 1,
          'clich': 1,
          'humorous': 1,
          'situations': 1,
          'pointing': 1,
          'basketball': 1,
          'takes': 1,
          'dump': 1,
          'kung': 1,
          'fu': 1,
          'nwell': 1,
          'left': 1,
          'nmovie': 1,
          'critic': 1,
          'slips': 1,
          'npaul': 1,
          'giamatti': 1,
          'private': 1,
          'parts': 1,
          'negotiator': 1,
          'lawrences': 1,
          'partner': 1,
          'much': 1,
          'enjoy': 1,
          'cant': 1,
          'inject': 1,
          'lifeless': 1,
          'nhell': 1,
          'greatest': 1,
          'performers': 1,
          'planet': 1,
          'couldnt': 1,
          'make': 1,
          'material': 1,
          'nits': 1,
          'awful': 1,
          'nneg': 1}),
 Counter({'food': 5,
          'simply': 4,
          'irresistible': 4,
          'gellar': 4,
          'film': 4,
          'got': 4,
          'like': 3,
          'sarah': 3,
          'michelle': 3,
          'amanda': 3,
          'restaurant': 3,
          'crab': 3,
          'certainly': 3,
          'characters': 3,
          'romantic': 2,
          'often': 2,
          'time': 2,
          'runs': 2,
          'struggling': 2,
          'man': 2,
          'tom': 2,
          'sean': 2,
          'patrick': 2,
          'flanery': 2,
          'somehow': 2,
          'good': 2,
          'nand': 2,
          'magical': 2,
          'really': 2,
          'minutes': 2,
          'scenes': 2,
          'movie': 2,
          'nthe': 2,
          'point': 2,
          'scene': 2,
          'checked': 2,
          'blatantly': 1,
          'borrowing': 1,
          'elements': 1,
          '1993s': 1,
          'water': 1,
          'chocolate': 1,
          '1991s': 1,
          'butchers': 1,
          'wife': 1,
          'attempts': 1,
          'whimsical': 1,
          'comedy': 1,
          'comes': 1,
          'laughable': 1,
          'leaving': 1,
          'wonder': 1,
          'rising': 1,
          'star': 1,
          'v': 1,
          'buffy': 1,
          'vampire': 1,
          'slayer': 1,
          'would': 1,
          'choose': 1,
          'obviously': 1,
          'inept': 1,
          'project': 1,
          'waste': 1,
          'nthings': 1,
          'get': 1,
          'bad': 1,
          'start': 1,
          'right': 1,
          'onset': 1,
          'young': 1,
          'woman': 1,
          'late': 1,
          'familys': 1,
          'new': 1,
          'york': 1,
          'mystery': 1,
          'forces': 1,
          'bushel': 1,
          'crabs': 1,
          'vansihes': 1,
          'thin': 1,
          'air': 1,
          'nwhile': 1,
          'shopping': 1,
          'also': 1,
          'meets': 1,
          'charming': 1,
          'handsome': 1,
          'happens': 1,
          'planning': 1,
          'ritzy': 1,
          'department': 1,
          'store': 1,
          'works': 1,
          'later': 1,
          'decides': 1,
          'drop': 1,
          'dive': 1,
          'called': 1,
          'southern': 1,
          'cross': 1,
          'lunch': 1,
          'makes': 1,
          'delicious': 1,
          'dish': 1,
          'even': 1,
          'though': 1,
          'known': 1,
          'chef': 1,
          'nsuddenly': 1,
          'finds': 1,
          'edge': 1,
          'foreclosure': 1,
          'rejuvenate': 1,
          'life': 1,
          'customer': 1,
          'begin': 1,
          'swarm': 1,
          'strangely': 1,
          'causes': 1,
          'everyone': 1,
          'immediate': 1,
          'jubilation': 1,
          'hits': 1,
          'mouths': 1,
          'nare': 1,
          'destined': 1,
          'together': 1,
          'truly': 1,
          'exactly': 1,
          'going': 1,
          'making': 1,
          'ndoes': 1,
          'anything': 1,
          'pesky': 1,
          'sits': 1,
          'shelf': 1,
          'kitchen': 1,
          'assisting': 1,
          'preparation': 1,
          'n': 1,
          'ridiculous': 1,
          'plain': 1,
          'goofy': 1,
          'fantasy': 1,
          'thats': 1,
          'flimsy': 1,
          'slice': 1,
          'bologna': 1,
          'nit': 1,
          'takes': 1,
          'one': 1,
          'jokethat': 1,
          'people': 1,
          'eat': 1,
          'taken': 1,
          'aback': 1,
          'unusual': 1,
          'waysand': 1,
          'recycles': 1,
          'reached': 1,
          'appropriate': 1,
          'running': 1,
          '95': 1,
          'nadd': 1,
          'music': 1,
          'montage': 1,
          'every': 1,
          'ten': 1,
          'actually': 1,
          'best': 1,
          'tells': 1,
          'something': 1,
          'youve': 1,
          'utterly': 1,
          'empty': 1,
          'necessarily': 1,
          'boring': 1,
          'excursion': 1,
          'cast': 1,
          'fairly': 1,
          'supporting': 1,
          'interesting': 1,
          'npatricia': 1,
          'clarkson': 1,
          '1998s': 1,
          'high': 1,
          'art': 1,
          'played': 1,
          'druggedout': 1,
          'lesbian': 1,
          'standout': 1,
          'toms': 1,
          'colleague': 1,
          'thankfully': 1,
          'given': 1,
          'funny': 1,
          'lines': 1,
          'dialogue': 1,
          'nalso': 1,
          'note': 1,
          'larry': 1,
          'gilliard': 1,
          'jr': 1,
          'amandas': 1,
          'cooking': 1,
          'assistant': 1,
          'buddy': 1,
          'allowed': 1,
          'create': 1,
          'seemingly': 1,
          'full': 1,
          'character': 1,
          'handful': 1,
          'nof': 1,
          'main': 1,
          'stars': 1,
          'fine': 1,
          'look': 1,
          'shes': 1,
          'unmistakably': 1,
          'clumsy': 1,
          'material': 1,
          'plans': 1,
          'keeping': 1,
          'career': 1,
          'future': 1,
          'pick': 1,
          'better': 1,
          'projects': 1,
          'bottom': 1,
          'line': 1,
          'exact': 1,
          'opposite': 1,
          'deprophesized': 1,
          'title': 1,
          'began': 1,
          'float': 1,
          'midair': 1,
          'unamusing': 1,
          'plot': 1,
          'device': 1,
          'repeated': 1,
          'stupid': 1,
          'last': 1,
          'mind': 1,
          'romance': 1,
          'nwhen': 1,
          'think': 1,
          'hindsight': 1,
          'first': 1,
          'action': 1,
          'crawl': 1,
          'tables': 1,
          'looking': 1,
          'runaway': 1,
          'mechanical': 1,
          'nnow': 1,
          'id': 1,
          'call': 1,
          'nneg': 1}),
 Counter({'alien': 15,
          'film': 9,
          'one': 9,
          'ripley': 5,
          'resurrection': 4,
          '3': 3,
          'ni': 3,
          'nso': 3,
          'bag': 3,
          'lollies': 3,
          'scene': 3,
          'even': 2,
          'seen': 2,
          'aliens': 2,
          'means': 2,
          'take': 2,
          'worth': 2,
          'much': 2,
          'plot': 2,
          'minutes': 2,
          'every': 2,
          'attempts': 2,
          'inside': 2,
          'nin': 2,
          'two': 2,
          'able': 2,
          'someone': 2,
          'well': 2,
          'would': 2,
          'little': 2,
          'youre': 2,
          'bad': 2,
          'really': 2,
          'good': 2,
          'putting': 2,
          'way': 2,
          'gore': 2,
          'hand': 2,
          'case': 2,
          'movie': 2,
          'turned': 2,
          'wont': 1,
          'pretend': 1,
          'films': 1,
          'saw': 1,
          'glimpses': 1,
          'fragments': 1,
          'actually': 1,
          'sat': 1,
          'watched': 1,
          'opinion': 1,
          'unbiased': 1,
          'impartial': 1,
          'perspective': 1,
          'large': 1,
          'munching': 1,
          'hard': 1,
          'days': 1,
          'work': 1,
          'didnt': 1,
          'dislike': 1,
          'awful': 1,
          'acting': 1,
          'average': 1,
          'special': 1,
          'effects': 1,
          'got': 1,
          'tiresome': 1,
          '5': 1,
          'painful': 1,
          'viewing': 1,
          'also': 1,
          'fact': 1,
          'tedious': 1,
          'ingredient': 1,
          'thrown': 1,
          'give': 1,
          'pointless': 1,
          'dribble': 1,
          'meaning': 1,
          'nsigourney': 1,
          'weaver': 1,
          'whos': 1,
          'role': 1,
          'earned': 1,
          'academy': 1,
          'award': 1,
          'nomination': 1,
          'plays': 1,
          'character': 1,
          'died': 1,
          'fighting': 1,
          'extraterrestrial': 1,
          'scum': 1,
          '200': 1,
          'years': 1,
          'later': 1,
          'scientists': 1,
          'use': 1,
          'sample': 1,
          'blood': 1,
          'found': 1,
          'site': 1,
          'death': 1,
          'recreate': 1,
          'including': 1,
          'stuck': 1,
          'time': 1,
          'remove': 1,
          'body': 1,
          'separate': 1,
          'yet': 1,
          'completely': 1,
          'human': 1,
          'possessing': 1,
          'strange': 1,
          'amounts': 1,
          'strength': 1,
          'withhold': 1,
          'greater': 1,
          'pain': 1,
          'normal': 1,
          'nim': 1,
          'sure': 1,
          'explain': 1,
          'exactly': 1,
          'ignore': 1,
          'move': 1,
          'nwhy': 1,
          'ask': 1,
          'recreated': 1,
          'nwell': 1,
          'smart': 1,
          'lab': 1,
          'researchers': 1,
          'believed': 1,
          'discover': 1,
          'many': 1,
          'advancements': 1,
          'science': 1,
          'studying': 1,
          'creature': 1,
          'nthese': 1,
          'people': 1,
          'said': 1,
          'could': 1,
          'control': 1,
          'danger': 1,
          'research': 1,
          'nthey': 1,
          'yawn': 1,
          'wrong': 1,
          'nit': 1,
          'doesnt': 1,
          'genius': 1,
          'figure': 1,
          'rest': 1,
          'continuous': 1,
          'cat': 1,
          'mouse': 1,
          'chase': 1,
          'humans': 1,
          'die': 1,
          'open': 1,
          'mouths': 1,
          'possible': 1,
          'occasion': 1,
          'show': 1,
          'frightfully': 1,
          'scary': 1,
          'unflossed': 1,
          'teeth': 1,
          'ntheres': 1,
          'saying': 1,
          'goes': 1,
          'something': 1,
          'like': 1,
          'going': 1,
          'make': 1,
          'plenty': 1,
          'disappointing': 1,
          'underachieving': 1,
          'movies': 1,
          'ones': 1,
          'bother': 1,
          'nalien': 1,
          'example': 1,
          'gets': 1,
          'nose': 1,
          'discouraging': 1,
          'experience': 1,
          'nthere': 1,
          'describe': 1,
          'australian': 1,
          'rating': 1,
          'given': 1,
          'unnecessary': 1,
          'repulsive': 1,
          'distract': 1,
          'us': 1,
          'wanderingbutnotgoinganywhere': 1,
          'stomach': 1,
          'churned': 1,
          'witnessed': 1,
          'mawkish': 1,
          'looking': 1,
          'put': 1,
          'characters': 1,
          'head': 1,
          'literally': 1,
          'ripped': 1,
          'face': 1,
          'nanother': 1,
          'featured': 1,
          'sticking': 1,
          'knife': 1,
          'impress': 1,
          'talking': 1,
          'nfair': 1,
          'enough': 1,
          'horror': 1,
          'bared': 1,
          'significance': 1,
          'story': 1,
          'unfortunately': 1,
          'sort': 1,
          'bizarre': 1,
          'inexcusable': 1,
          'nif': 1,
          'think': 1,
          'im': 1,
          'struggling': 1,
          'find': 1,
          'aspect': 1,
          'thought': 1,
          'right': 1,
          'none': 1,
          'exciting': 1,
          'credit': 1,
          'part': 1,
          'remotely': 1,
          'seeing': 1,
          'chases': 1,
          'men': 1,
          'cripple': 1,
          'tall': 1,
          'ladder': 1,
          'interesting': 1,
          'results': 1,
          'nbut': 1,
          'course': 1,
          'thrilling': 1,
          'problem': 1,
          'returning': 1,
          'pathetically': 1,
          'low': 1,
          'standard': 1,
          'ends': 1,
          'crashing': 1,
          'shores': 1,
          'dullness': 1,
          'often': 1,
          'japanese': 1,
          'kamikaze': 1,
          'jet': 1,
          'fighters': 1,
          'fall': 1,
          'skis': 1,
          'liners': 1,
          'come': 1,
          'earth': 1,
          'man': 1,
          'shit': 1,
          'hole': 1,
          'primary': 1,
          'mans': 1,
          'strategic': 1,
          'attack': 1,
          'bounce': 1,
          'bullets': 1,
          'walls': 1,
          'hit': 1,
          'opponent': 1,
          'wonder': 1,
          'clumsy': 1,
          'noh': 1,
          'wondering': 1,
          'less': 1,
          'enjoy': 1,
          'eat': 1,
          'gone': 1,
          '15': 1,
          'however': 1,
          'empty': 1,
          'still': 1,
          'long': 1,
          'ahead': 1,
          'nneg': 1}),
 Counter({'pearl': 4,
          'harbor': 4,
          'big': 3,
          'rafe': 2,
          'join': 2,
          'love': 2,
          'japanese': 2,
          'attack': 2,
          'movies': 2,
          'nit': 2,
          'attempt': 2,
          'setting': 2,
          'one': 2,
          'war': 2,
          'viewers': 2,
          'synopsis': 1,
          'lifelong': 1,
          'friends': 1,
          'affleck': 1,
          'danny': 1,
          'hartnett': 1,
          'us': 1,
          'air': 1,
          'force': 1,
          'stationed': 1,
          'hawaii': 1,
          'nrafe': 1,
          'goes': 1,
          'england': 1,
          'fight': 1,
          'alongside': 1,
          'british': 1,
          'pilots': 1,
          'seemingly': 1,
          'killed': 1,
          'action': 1,
          'ndanny': 1,
          'falls': 1,
          'rafes': 1,
          'girlfriend': 1,
          'evelyn': 1,
          'beckinsale': 1,
          'survives': 1,
          'returns': 1,
          'confront': 1,
          'former': 1,
          'friend': 1,
          'nmeanwhile': 1,
          'sneak': 1,
          'imminent': 1,
          'nreview': 1,
          'perfect': 1,
          'example': 1,
          'product': 1,
          'rather': 1,
          'art': 1,
          'little': 1,
          'crasslycalculated': 1,
          'woo': 1,
          'masses': 1,
          'enticing': 1,
          'stars': 1,
          'effects': 1,
          'heart': 1,
          'difficult': 1,
          'criticise': 1,
          'actors': 1,
          'everything': 1,
          'movie': 1,
          'demands': 1,
          'nsadly': 1,
          'amounts': 1,
          'barely': 1,
          'reciting': 1,
          'dialogue': 1,
          'sheer': 1,
          'banality': 1,
          'makes': 1,
          'eager': 1,
          'see': 1,
          'script': 1,
          'randall': 1,
          'wallace': 1,
          'wrote': 1,
          'right': 1,
          'hand': 1,
          'time': 1,
          'writing': 1,
          'left': 1,
          'nthe': 1,
          'plot': 1,
          'pure': 1,
          'cliche': 1,
          'wartime': 1,
          'simply': 1,
          'convenient': 1,
          'backdrop': 1,
          'nthere': 1,
          'genuine': 1,
          'exploration': 1,
          'meant': 1,
          'united': 1,
          'states': 1,
          'insight': 1,
          'vital': 1,
          'role': 1,
          'inciting': 1,
          'country': 1,
          'world': 1,
          'ii': 1,
          'ninstead': 1,
          'assemblyline': 1,
          'triangle': 1,
          'empty': 1,
          'patriotic': 1,
          'rhetoric': 1,
          'laughable': 1,
          'placate': 1,
          'via': 1,
          'inclusion': 1,
          'reticent': 1,
          'imperial': 1,
          'commanders': 1,
          'intones': 1,
          'fear': 1,
          'done': 1,
          'awaken': 1,
          'sleeping': 1,
          'giant': 1,
          'nearly': 1,
          'fell': 1,
          'seat': 1,
          'nto': 1,
          'credit': 1,
          'include': 1,
          'fantastic': 1,
          'portrayal': 1,
          'exciting': 1,
          'dizzying': 1,
          'hour': 1,
          'plunges': 1,
          'nif': 1,
          'remaining': 1,
          'two': 1,
          'hours': 1,
          'crafted': 1,
          'skill': 1,
          'perhaps': 1,
          'memorial': 1,
          'day': 1,
          'nonevent': 1,
          'would': 1,
          'worth': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'arkin': 7,
          'film': 4,
          'morse': 4,
          'would': 3,
          'teacher': 3,
          'doesnt': 3,
          'like': 2,
          'outset': 2,
          'two': 2,
          'characters': 2,
          'st': 2,
          'nelsewhere': 2,
          'ni': 2,
          'nif': 2,
          'plays': 2,
          'somewhat': 2,
          'good': 2,
          'basketball': 2,
          'drifter': 2,
          'friendship': 2,
          'morses': 2,
          'major': 2,
          'dialogue': 2,
          'sure': 2,
          'admire': 2,
          'arkins': 2,
          'woman': 2,
          'nit': 2,
          'begins': 2,
          'attentions': 2,
          'realize': 2,
          'almost': 2,
          'nthe': 2,
          'least': 2,
          'shallow': 2,
          'make': 2,
          'inclined': 1,
          'main': 1,
          'involved': 1,
          'fine': 1,
          'television': 1,
          'drama': 1,
          'several': 1,
          'years': 1,
          'understood': 1,
          'directorscreenwriter': 1,
          'written': 1,
          'show': 1,
          'occasion': 1,
          'also': 1,
          'sorry': 1,
          'report': 1,
          'results': 1,
          'expectations': 1,
          'satisfactory': 1,
          'list': 1,
          'reason': 1,
          'nbut': 1,
          'getting': 1,
          'ahead': 1,
          'besides': 1,
          'immediately': 1,
          'clear': 1,
          'many': 1,
          'problems': 1,
          'nadam': 1,
          'gradeschool': 1,
          'sardonic': 1,
          'cynical': 1,
          'abrasive': 1,
          'nhe': 1,
          'spends': 1,
          'lunches': 1,
          'playing': 1,
          'nearby': 1,
          'court': 1,
          'none': 1,
          'day': 1,
          'meets': 1,
          'david': 1,
          'jack': 1,
          'morrison': 1,
          'park': 1,
          'inveigles': 1,
          'game': 1,
          'oneonone': 1,
          'nmorse': 1,
          'turns': 1,
          'slowly': 1,
          'develops': 1,
          'respective': 1,
          'professions': 1,
          'progress': 1,
          'screenarkins': 1,
          'teaching': 1,
          'selling': 1,
          'paper': 1,
          'flowers': 1,
          'passing': 1,
          'motorists': 1,
          'nso': 1,
          'far': 1,
          'complaint': 1,
          'lack': 1,
          'constant': 1,
          'intrusion': 1,
          'musical': 1,
          'soundtrack': 1,
          'ngood': 1,
          'music': 1,
          'replace': 1,
          'setting': 1,
          'mood': 1,
          'telling': 1,
          'storyit': 1,
          'makes': 1,
          'minimalistic': 1,
          'technique': 1,
          'rarely': 1,
          'nsuddenly': 1,
          'interrupted': 1,
          'introduction': 1,
          'fellow': 1,
          'long': 1,
          'admired': 1,
          'afar': 1,
          'reticent': 1,
          'approach': 1,
          'appears': 1,
          'enjoys': 1,
          'isnt': 1,
          'itshe': 1,
          'knows': 1,
          'nothing': 1,
          'past': 1,
          'causes': 1,
          'friction': 1,
          'everyone': 1,
          'else': 1,
          'nuntil': 1,
          'vague': 1,
          'dissatisfaction': 1,
          'conclusion': 1,
          'evolve': 1,
          'fullfledged': 1,
          'failure': 1,
          'appeared': 1,
          'fairly': 1,
          'didnt': 1,
          'final': 1,
          'scene': 1,
          'reveals': 1,
          'trying': 1,
          'jealous': 1,
          'nsomehow': 1,
          'made': 1,
          'appear': 1,
          'fault': 1,
          'left': 1,
          'feeling': 1,
          'somehow': 1,
          'victorious': 1,
          'hes': 1,
          'gotten': 1,
          'find': 1,
          'girlfriend': 1,
          'nfrankly': 1,
          'dropping': 1,
          'spot': 1,
          'seemed': 1,
          'civilized': 1,
          'action': 1,
          'could': 1,
          'punching': 1,
          'mouth': 1,
          'nafter': 1,
          'childish': 1,
          'confrontation': 1,
          'end': 1,
          'seems': 1,
          'natural': 1,
          'summarize': 1,
          'gripe': 1,
          'story': 1,
          'spread': 1,
          'thin': 1,
          'creates': 1,
          'semilikable': 1,
          'suddenly': 1,
          'jerks': 1,
          '16yearolds': 1,
          'last': 1,
          'moment': 1,
          'might': 1,
          'truetolife': 1,
          'people': 1,
          'mean': 1,
          'dont': 1,
          'n': 1,
          'navoid': 1,
          'nneg': 1}),
 Counter({'martian': 7,
          'favourite': 5,
          'movie': 5,
          'character': 4,
          'like': 3,
          'entertainment': 3,
          'films': 3,
          '1994': 3,
          'one': 3,
          'money': 3,
          'never': 3,
          'nice': 3,
          'guy': 3,
          'performance': 3,
          'film': 3,
          'comedy': 3,
          'sidekick': 3,
          'funny': 3,
          'toilet': 3,
          'movies': 2,
          'lost': 2,
          'comes': 2,
          'eye': 2,
          'neven': 2,
          'ever': 2,
          'disney': 2,
          'nchristopher': 2,
          'lloyd': 2,
          'plays': 2,
          'v': 2,
          'tim': 2,
          'ohara': 2,
          'daniels': 2,
          'soon': 2,
          'fix': 2,
          'spaceship': 2,
          'zoot': 2,
          'try': 2,
          'good': 2,
          'doesnt': 2,
          'special': 2,
          'seen': 2,
          'staple': 2,
          'role': 2,
          'every': 2,
          'nanother': 2,
          'unfunny': 2,
          'dud': 2,
          'even': 2,
          'nits': 2,
          'humour': 2,
          'characters': 2,
          'gag': 2,
          'fact': 2,
          'men': 2,
          'work': 2,
          'end': 2,
          'love': 1,
          'ni': 1,
          'really': 1,
          'nevery': 1,
          'time': 1,
          'watch': 1,
          'great': 1,
          'goodfellas': 1,
          '1990': 1,
          'raiders': 1,
          'ark': 1,
          '1981': 1,
          'tear': 1,
          'due': 1,
          'awesome': 1,
          'talent': 1,
          'skill': 1,
          'display': 1,
          'lower': 1,
          'grade': 1,
          'naked': 1,
          'gun': 1,
          '33': 1,
          '13': 1,
          'ghostbusters': 1,
          'ii': 1,
          '1988': 1,
          'exactly': 1,
          'brilliantly': 1,
          'well': 1,
          'made': 1,
          'certainly': 1,
          'waste': 1,
          'celluloid': 1,
          'present': 1,
          'value': 1,
          'nthen': 1,
          'theres': 1,
          'exact': 1,
          'opposite': 1,
          'hurried': 1,
          'poorly': 1,
          'written': 1,
          'acted': 1,
          'goal': 1,
          'make': 1,
          'ndisney': 1,
          'since': 1,
          'lion': 1,
          'king': 1,
          'magic': 1,
          'touch': 1,
          'dross': 1,
          'shows': 1,
          'far': 1,
          'sunk': 1,
          'crash': 1,
          'lands': 1,
          'front': 1,
          'reporters': 1,
          'car': 1,
          'finds': 1,
          'home': 1,
          'trying': 1,
          'recover': 1,
          'nalong': 1,
          'spacesuit': 1,
          'voiced': 1,
          'wayne': 1,
          'knight': 1,
          'must': 1,
          'explodes': 1,
          'also': 1,
          'stop': 1,
          'identity': 1,
          'revealed': 1,
          'public': 1,
          'firstly': 1,
          'later': 1,
          'rival': 1,
          'presenter': 1,
          'brace': 1,
          'channing': 1,
          'hurley': 1,
          'calling': 1,
          'tims': 1,
          'uncle': 1,
          'martin': 1,
          'nlaughter': 1,
          'supposed': 1,
          'arise': 1,
          'comical': 1,
          'events': 1,
          'nmany': 1,
          'bad': 1,
          'intentions': 1,
          'appear': 1,
          'provide': 1,
          'nfilled': 1,
          'brim': 1,
          'wham': 1,
          'bang': 1,
          'effects': 1,
          'offers': 1,
          'little': 1,
          'candy': 1,
          'mugs': 1,
          'way': 1,
          'entire': 1,
          'ive': 1,
          'man': 1,
          'pull': 1,
          'face': 1,
          '93': 1,
          'minutes': 1,
          'njeff': 1,
          'useless': 1,
          'nhis': 1,
          'incredibly': 1,
          'lazy': 1,
          'although': 1,
          'paperthin': 1,
          'deserve': 1,
          'gives': 1,
          'ndarryl': 1,
          'hannah': 1,
          'looks': 1,
          'pretty': 1,
          'somewhat': 1,
          'erm': 1,
          'limited': 1,
          'nhurley': 1,
          'mistakes': 1,
          'acting': 1,
          'shouting': 1,
          'looking': 1,
          'twit': 1,
          'wins': 1,
          'david': 1,
          'wilcock': 1,
          'award': 1,
          'irritating': 1,
          'godawful': 1,
          'moving': 1,
          'picture': 1,
          'nway': 1,
          'go': 1,
          'liz': 1,
          'nfor': 1,
          'supporting': 1,
          'cast': 1,
          'manage': 1,
          'assemble': 1,
          'actor': 1,
          'going': 1,
          'ah': 1,
          'er': 1,
          'nbefore': 1,
          'finally': 1,
          'giving': 1,
          'switching': 1,
          'major': 1,
          'setback': 1,
          'nunfortunately': 1,
          'writers': 1,
          'sherri': 1,
          'stoner': 1,
          'deanna': 1,
          'oliver': 1,
          'anyone': 1,
          'cares': 1,
          'forget': 1,
          'needs': 1,
          'ninstead': 1,
          'deliver': 1,
          'martians': 1,
          'deeply': 1,
          'nalthough': 1,
          'meant': 1,
          'manic': 1,
          'doubt': 1,
          'line': 1,
          'neck': 1,
          'na': 1,
          'real': 1,
          'ncitizen': 1,
          'kane': 1,
          'delivers': 1,
          'laughs': 1,
          'minute': 1,
          'hell': 1,
          'spawn': 1,
          'piece': 1,
          'polyester': 1,
          'kids': 1,
          'audience': 1,
          'insulted': 1,
          'child': 1,
          'bothered': 1,
          'smirk': 1,
          'effect': 1,
          'though': 1,
          'problems': 1,
          'gags': 1,
          'rather': 1,
          'lack': 1,
          'nmy': 1,
          'reaches': 1,
          'new': 1,
          'level': 1,
          'goes': 1,
          'past': 1,
          'bowl': 1,
          'pipe': 1,
          'sewer': 1,
          'nnow': 1,
          'dumb': 1,
          'dumber': 1,
          'humorously': 1,
          'showed': 1,
          'nbut': 1,
          'farting': 1,
          'belching': 1,
          'almost': 1,
          'getting': 1,
          'crapped': 1,
          'literally': 1,
          'amusing': 1,
          'insulting': 1,
          'ntheres': 1,
          'right': 1,
          'credits': 1,
          'appears': 1,
          'wrote': 1,
          'tragically': 1,
          'died': 1,
          'twin': 1,
          'continued': 1,
          'neither': 1,
          'hoping': 1,
          'easy': 1,
          'please': 1,
          'six': 1,
          'year': 1,
          'olds': 1,
          'wouldnt': 1,
          'mind': 1,
          'beaten': 1,
          'stakes': 1,
          'nyes': 1,
          'nyowza': 1,
          'nthe': 1,
          'lot': 1,
          'pumped': 1,
          'actually': 1,
          'got': 1,
          'people': 1,
          'agree': 1,
          'depresses': 1,
          'nthere': 1,
          'thousands': 1,
          'brilliant': 1,
          'cant': 1,
          'get': 1,
          'distribution': 1,
          'yet': 1,
          'trash': 1,
          'gets': 1,
          'released': 1,
          'nationwide': 1,
          'ease': 1,
          'nthankfully': 1,
          'makes': 1,
          'two': 1,
          'lead': 1,
          'near': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'earthquake': 5,
          'big': 5,
          'little': 5,
          'cares': 5,
          'disaster': 4,
          'one': 4,
          'theres': 4,
          'nwho': 4,
          'whos': 3,
          'thing': 3,
          'gives': 3,
          'gardner': 3,
          'bujold': 3,
          'bit': 3,
          'wires': 3,
          'ntheres': 3,
          'movie': 2,
          'films': 2,
          'thats': 2,
          'really': 2,
          'n': 2,
          'theatre': 2,
          'us': 2,
          'characters': 2,
          'brings': 2,
          'single': 2,
          'reason': 2,
          'dont': 2,
          'care': 2,
          'nthe': 2,
          'heston': 2,
          'made': 2,
          'married': 2,
          'genieveve': 2,
          'weirdest': 2,
          'subplot': 2,
          'richard': 2,
          'roundtree': 2,
          'stunt': 2,
          'goes': 2,
          'gets': 2,
          'nin': 2,
          'people': 2,
          'adventure': 2,
          'walter': 2,
          'letdown': 2,
          'none': 2,
          'crumbling': 2,
          'falls': 2,
          'needed': 2,
          'whole': 2,
          'although': 2,
          'kid': 2,
          'nbut': 2,
          'finale': 2,
          'ended': 2,
          'nand': 2,
          'looked': 1,
          'internet': 1,
          'database': 1,
          'awards': 1,
          'section': 1,
          'found': 1,
          'nominated': 1,
          'golden': 1,
          'globe': 1,
          'best': 1,
          'picture': 1,
          'drama': 1,
          'nanyone': 1,
          'seen': 1,
          'back': 1,
          'worst': 1,
          'great': 1,
          'saying': 1,
          'lot': 1,
          'basically': 1,
          'notable': 1,
          'originally': 1,
          'included': 1,
          'shook': 1,
          'occured': 1,
          'non': 1,
          'video': 1,
          'bland': 1,
          'slowmoving': 1,
          'bunch': 1,
          'different': 1,
          'requisite': 1,
          'together': 1,
          'struggle': 1,
          'nwhile': 1,
          'worked': 1,
          'say': 1,
          'towering': 1,
          'inferno': 1,
          'doesnt': 1,
          'charlton': 1,
          'many': 1,
          'crap': 1,
          '70s': 1,
          'including': 1,
          'skyjacked': 1,
          'classic': 1,
          'soylent': 1,
          'green': 1,
          'rich': 1,
          'man': 1,
          'ava': 1,
          'affair': 1,
          'young': 1,
          'mom': 1,
          'renegade': 1,
          'police': 1,
          'officer': 1,
          'suspension': 1,
          'george': 1,
          'kennedy': 1,
          'least': 1,
          'humored': 1,
          'performance': 1,
          'second': 1,
          'motorcycle': 1,
          'stuntman': 1,
          'right': 1,
          'shaft': 1,
          'whose': 1,
          'track': 1,
          'upside': 1,
          'yea': 1,
          'snore': 1,
          'military': 1,
          'manbag': 1,
          'boy': 1,
          'grocery': 1,
          'store': 1,
          'buxom': 1,
          'victoria': 1,
          'principal': 1,
          'eventually': 1,
          'vengeance': 1,
          'guys': 1,
          'fun': 1,
          'hair': 1,
          'smaller': 1,
          'subplots': 1,
          'pointless': 1,
          'flying': 1,
          'l': 1,
          'city': 1,
          'way': 1,
          'playing': 1,
          'cards': 1,
          'boring': 1,
          'nonacting': 1,
          'husband': 1,
          'think': 1,
          'go': 1,
          'nowhere': 1,
          'nguess': 1,
          'interested': 1,
          'final': 1,
          'frames': 1,
          'bujolds': 1,
          'moron': 1,
          'son': 1,
          'muchneeded': 1,
          'comedy': 1,
          'matthau': 1,
          'billed': 1,
          'mutha': 1,
          'laugh': 1,
          'wild': 1,
          'drunkard': 1,
          'moment': 1,
          'dance': 1,
          'critical': 1,
          'time': 1,
          'nas': 1,
          'actual': 1,
          'rather': 1,
          'full': 1,
          'hour': 1,
          'charactersetups': 1,
          'interesting': 1,
          '10': 1,
          'minutes': 1,
          'shaking': 1,
          'house': 1,
          'almost': 1,
          'narrowly': 1,
          'missing': 1,
          'nthis': 1,
          'theatreshaking': 1,
          'wake': 1,
          'everybody': 1,
          'bored': 1,
          'suspense': 1,
          'following': 1,
          'quake': 1,
          'tries': 1,
          'highrise': 1,
          'office': 1,
          'building': 1,
          'movement': 1,
          'injured': 1,
          'alltoo': 1,
          'suspenseful': 1,
          'hestongardnerbujold': 1,
          'love': 1,
          'triangle': 1,
          'basic': 1,
          'flipofthecoin': 1,
          'real': 1,
          'neven': 1,
          'volcano': 1,
          'nicely': 1,
          'sucked': 1,
          'nnot': 1,
          'hokey': 1,
          'character': 1,
          'dies': 1,
          'choses': 1,
          'would': 1,
          'chosen': 1,
          'mainly': 1,
          'basis': 1,
          'actually': 1,
          'act': 1,
          'makes': 1,
          'money': 1,
          'stupid': 1,
          'idiot': 1,
          'death': 1,
          'plane': 1,
          'spiel': 1,
          'nif': 1,
          'anything': 1,
          'worth': 1,
          'viewing': 1,
          'glen': 1,
          'glenda': 1,
          'nis': 1,
          'ni': 1,
          'mean': 1,
          'laughed': 1,
          'bio': 1,
          'dome': 1,
          'another': 1,
          'story': 1,
          'review': 1,
          'short': 1,
          'pics': 1,
          'bad': 1,
          'name': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'films': 5,
          'nthe': 5,
          'monster': 4,
          'film': 4,
          'good': 3,
          'part': 3,
          'boat': 3,
          'however': 3,
          'may': 3,
          'nand': 3,
          'thieves': 3,
          'argonauticus': 3,
          'creature': 3,
          'deep': 3,
          'would': 3,
          'rules': 3,
          'many': 2,
          'alien': 2,
          'aliens': 2,
          'nso': 2,
          'end': 2,
          'n': 2,
          'particularly': 2,
          'nperhaps': 2,
          'simply': 2,
          'easy': 2,
          'ndeep': 2,
          'rising': 2,
          'way': 2,
          'ntreat': 2,
          'williams': 2,
          'crew': 2,
          'time': 2,
          'far': 2,
          'passengers': 2,
          'wes': 2,
          'studi': 2,
          'high': 2,
          'nwhy': 2,
          'nbut': 2,
          'something': 2,
          'else': 2,
          'ship': 2,
          'killed': 2,
          'anthony': 2,
          'heald': 2,
          'famke': 2,
          'janssen': 2,
          'happens': 2,
          'might': 2,
          'nits': 2,
          'get': 2,
          'interesting': 2,
          'characters': 2,
          'seem': 2,
          'first': 2,
          'although': 2,
          'bit': 2,
          'set': 2,
          'nit': 2,
          'scenes': 2,
          'risings': 2,
          'formula': 1,
          'simple': 1,
          'ntrap': 1,
          'varied': 1,
          'group': 1,
          'people': 1,
          'isolated': 1,
          'location': 1,
          'pop': 1,
          'seemingly': 1,
          'unstoppable': 1,
          'kill': 1,
          'nthese': 1,
          'successful': 1,
          'ingredients': 1,
          'thing': 1,
          'tremors': 1,
          'name': 1,
          'following': 1,
          'recipe': 1,
          'pathetically': 1,
          'bad': 1,
          'see': 1,
          'relic': 1,
          'putrid': 1,
          'example': 1,
          'forget': 1,
          'necessary': 1,
          'binding': 1,
          'ingredient': 1,
          'effort': 1,
          'ideas': 1,
          'meets': 1,
          'two': 1,
          'requirements': 1,
          'enough': 1,
          'salvage': 1,
          'finnegan': 1,
          'leader': 1,
          'small': 1,
          'hire': 1,
          'services': 1,
          'activity': 1,
          'nquestions': 1,
          'asked': 1,
          'nthis': 1,
          'gone': 1,
          'ntheir': 1,
          'led': 1,
          'ominous': 1,
          'type': 1,
          'multinational': 1,
          'terrorist': 1,
          'squads': 1,
          'usually': 1,
          'seen': 1,
          'die': 1,
          'hard': 1,
          'cargo': 1,
          'lets': 1,
          'njust': 1,
          'say': 1,
          'explosive': 1,
          'potential': 1,
          'nwhat': 1,
          'target': 1,
          'course': 1,
          'tech': 1,
          'luxury': 1,
          'cruise': 1,
          'yacht': 1,
          'maiden': 1,
          'voyage': 1,
          'hunting': 1,
          'nancient': 1,
          'deadly': 1,
          'nby': 1,
          'arrive': 1,
          'nearly': 1,
          'everyone': 1,
          'board': 1,
          'senses': 1,
          'fresh': 1,
          'meat': 1,
          'mercenary': 1,
          'joining': 1,
          'forces': 1,
          'surviving': 1,
          'including': 1,
          'owner': 1,
          'canton': 1,
          'thief': 1,
          'less': 1,
          'lofty': 1,
          'goals': 1,
          'trillian': 1,
          'terror': 1,
          'gets': 1,
          'pick': 1,
          'nfortunately': 1,
          'particular': 1,
          'band': 1,
          'criminals': 1,
          'dumbest': 1,
          'world': 1,
          'offer': 1,
          'indulge': 1,
          'petty': 1,
          'squabbling': 1,
          'watch': 1,
          'friends': 1,
          'become': 1,
          'fish': 1,
          'food': 1,
          'nif': 1,
          'theres': 1,
          'clarion': 1,
          'call': 1,
          'unity': 1,
          'dont': 1,
          'know': 1,
          'pretty': 1,
          'guess': 1,
          'nthere': 1,
          'surprises': 1,
          'last': 1,
          'nfor': 1,
          'watery': 1,
          'tentacles': 1,
          'acting': 1,
          'audiences': 1,
          'impulses': 1,
          'rid': 1,
          'boring': 1,
          'wonder': 1,
          'filmmakers': 1,
          'extended': 1,
          'djimon': 1,
          'hounsous': 1,
          'life': 1,
          'knew': 1,
          'released': 1,
          'soon': 1,
          'acclaim': 1,
          'amistad': 1,
          'passable': 1,
          'hero': 1,
          'best': 1,
          'julia': 1,
          'roberts': 1,
          'impersonation': 1,
          'slimy': 1,
          'little': 1,
          'rest': 1,
          'company': 1,
          'stand': 1,
          'biggest': 1,
          'treat': 1,
          'pantucci': 1,
          'kevin': 1,
          'j': 1,
          'oconnors': 1,
          'whining': 1,
          'engineboy': 1,
          'finnegans': 1,
          'employ': 1,
          'nhis': 1,
          'constant': 1,
          'quips': 1,
          'overwritten': 1,
          'manage': 1,
          'capture': 1,
          'vein': 1,
          'nerveaddled': 1,
          'humor': 1,
          'bill': 1,
          'paxton': 1,
          'delivered': 1,
          'hudson': 1,
          'todd': 1,
          'graff': 1,
          'hippie': 1,
          'abyss': 1,
          'matter': 1,
          'stock': 1,
          'comicrelief': 1,
          'character': 1,
          'almost': 1,
          'makes': 1,
          'tired': 1,
          'clone': 1,
          'bearable': 1,
          'nas': 1,
          'goes': 1,
          'cgi': 1,
          'done': 1,
          'well': 1,
          'logical': 1,
          'consistency': 1,
          'nthink': 1,
          'back': 1,
          'great': 1,
          'even': 1,
          'movie': 1,
          'monsters': 1,
          'nthey': 1,
          'could': 1,
          'npart': 1,
          'joy': 1,
          'slowly': 1,
          'discovering': 1,
          'along': 1,
          'heroes': 1,
          'tentacle': 1,
          'doesnt': 1,
          'merely': 1,
          'eats': 1,
          'drinks': 1,
          'case': 1,
          'rhyme': 1,
          'reason': 1,
          'order': 1,
          'never': 1,
          'explains': 1,
          'attacked': 1,
          'place': 1,
          'action': 1,
          'decent': 1,
          'noteworthy': 1,
          'definitely': 1,
          'suffer': 1,
          'proximity': 1,
          'titanic': 1,
          'peril': 1,
          'water': 1,
          'pale': 1,
          'next': 1,
          'camerons': 1,
          'really': 1,
          'blame': 1,
          'nunfortunately': 1,
          'efforts': 1,
          'par': 1,
          'speed': 1,
          '2': 1,
          'non': 1,
          'plus': 1,
          'side': 1,
          'closing': 1,
          'image': 1,
          'shows': 1,
          'promise': 1,
          'potentially': 1,
          'unlikely': 1,
          'sequel': 1,
          'youd': 1,
          'better': 1,
          'waiting': 1,
          'nneg': 1}),
 Counter({'films': 2,
          'one': 2,
          'characters': 2,
          'thirteenth': 1,
          'floor': 1,
          'bland': 1,
          'obligatory': 1,
          'exercise': 1,
          'genre': 1,
          'filmmaking': 1,
          'nif': 1,
          'hadnt': 1,
          'recently': 1,
          'watched': 1,
          'matrix': 1,
          'open': 1,
          'eyes': 1,
          'similar': 1,
          'far': 1,
          'superior': 1,
          'might': 1,
          'little': 1,
          'nicer': 1,
          'picture': 1,
          'ncraig': 1,
          'bierko': 1,
          'makes': 1,
          'adequate': 1,
          'hero': 1,
          'douglas': 1,
          'hall': 1,
          'rich': 1,
          'cocreator': 1,
          'perfect': 1,
          'human': 1,
          'world': 1,
          'simulation': 1,
          'suddenly': 1,
          'blamed': 1,
          'murder': 1,
          'boss': 1,
          'armin': 1,
          'muellerstahl': 1,
          'neverything': 1,
          'subtle': 1,
          'smart': 1,
          'previously': 1,
          'mentioned': 1,
          'battered': 1,
          'heads': 1,
          'stare': 1,
          'maddeninglylong': 1,
          'periods': 1,
          'time': 1,
          'refuse': 1,
          'communicate': 1,
          'realistic': 1,
          'level': 1,
          'nthe': 1,
          'acting': 1,
          'okay': 1,
          'film': 1,
          'suffers': 1,
          'every': 1,
          'logical': 1,
          'flaw': 1,
          'could': 1,
          'think': 1,
          'features': 1,
          'script': 1,
          'copenned': 1,
          'director': 1,
          'josef': 1,
          'rusnak': 1,
          'loaded': 1,
          'cliches': 1,
          'stock': 1,
          'nthere': 1,
          'individual': 1,
          'scenes': 1,
          'ideas': 1,
          'work': 1,
          'like': 1,
          'thought': 1,
          'sentient': 1,
          'computer': 1,
          'program': 1,
          'none': 1,
          'strengths': 1,
          'recognized': 1,
          'meaningful': 1,
          'degree': 1,
          'nproducer': 1,
          'roland': 1,
          'emmerich': 1,
          'based': 1,
          'previous': 1,
          'directorial': 1,
          'efforts': 1,
          'seems': 1,
          'hellbent': 1,
          'bringing': 1,
          'us': 1,
          'ultimate': 1,
          'standard': 1,
          'mediocre': 1,
          'sciencefiction': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'max': 9,
          'sammy': 8,
          'giant': 6,
          'ni': 5,
          'scenes': 5,
          'muresan': 4,
          'would': 4,
          'could': 4,
          'point': 3,
          'scene': 3,
          'believe': 3,
          'found': 3,
          'like': 3,
          'sammys': 3,
          'story': 3,
          'funny': 2,
          'movie': 2,
          'romania': 2,
          'ends': 2,
          'nand': 2,
          'played': 2,
          'gheorghe': 2,
          'two': 2,
          'times': 2,
          'particularly': 2,
          'enjoyed': 2,
          'right': 2,
          'nat': 2,
          'understand': 2,
          'first': 2,
          'required': 2,
          'time': 2,
          'characters': 2,
          'new': 2,
          'york': 2,
          'desperate': 2,
          'wife': 2,
          'character': 2,
          'quite': 2,
          'nthis': 2,
          'seagal': 2,
          'role': 2,
          'rather': 2,
          'audience': 2,
          'supposed': 2,
          'someone': 2,
          'cast': 2,
          'guy': 2,
          'nin': 2,
          'final': 2,
          'transformation': 2,
          'plot': 2,
          'points': 2,
          'lillianna': 2,
          'justify': 2,
          'illness': 2,
          'focus': 2,
          'maxs': 2,
          'end': 2,
          'begins': 1,
          'monologue': 1,
          'thats': 1,
          'distinctive': 1,
          'princess': 1,
          'bride': 1,
          'medieval': 1,
          'fairytaleinthe': 1,
          '90s': 1,
          'feel': 1,
          'pleasantly': 1,
          'surprised': 1,
          'sharp': 1,
          'comedy': 1,
          'occurring': 1,
          'set': 1,
          'talent': 1,
          'agent': 1,
          'billy': 1,
          'crystal': 1,
          'visiting': 1,
          'client': 1,
          'monastery': 1,
          'mysteriously': 1,
          'saved': 1,
          'accidentally': 1,
          'plunges': 1,
          'car': 1,
          'stream': 1,
          'meets': 1,
          'mysterious': 1,
          'savior': 1,
          'magic': 1,
          'air': 1,
          'albeit': 1,
          'bit': 1,
          'goofy': 1,
          'loved': 1,
          'every': 1,
          'minute': 1,
          'nthe': 1,
          'course': 1,
          'plays': 1,
          'size': 1,
          'difference': 1,
          'almost': 1,
          'swear': 1,
          'must': 1,
          'special': 1,
          'effects': 1,
          'shot': 1,
          'dangling': 1,
          'legs': 1,
          'maxsized': 1,
          'chair': 1,
          'face': 1,
          'enormous': 1,
          'table': 1,
          'eat': 1,
          'oversized': 1,
          'bowls': 1,
          'spoons': 1,
          'also': 1,
          'liked': 1,
          'jere': 1,
          'burns': 1,
          'tvs': 1,
          'something': 1,
          'performance': 1,
          'director': 1,
          'primary': 1,
          'flaw': 1,
          'incredibly': 1,
          'hard': 1,
          'fastpaced': 1,
          'nit': 1,
          'unfortunate': 1,
          'script': 1,
          'speak': 1,
          'quickly': 1,
          'gate': 1,
          'continued': 1,
          'became': 1,
          'accustomed': 1,
          'speech': 1,
          'nhowever': 1,
          'becomes': 1,
          'coherent': 1,
          'head': 1,
          'takes': 1,
          'dive': 1,
          'noff': 1,
          'high': 1,
          'board': 1,
          'nsuddenly': 1,
          'expected': 1,
          'dowhateverittakes': 1,
          'slime': 1,
          'ball': 1,
          'nup': 1,
          'pursuing': 1,
          'interests': 1,
          'sure': 1,
          'didnt': 1,
          'come': 1,
          'jerk': 1,
          'nif': 1,
          'never': 1,
          'lighthearted': 1,
          'magical': 1,
          'nbut': 1,
          'introduced': 1,
          'neglected': 1,
          'son': 1,
          'enough': 1,
          'involve': 1,
          'disturbing': 1,
          'vs': 1,
          'midgets': 1,
          'wrestling': 1,
          'match': 1,
          'unpleasant': 1,
          'jarring': 1,
          'within': 1,
          'framework': 1,
          'nindeed': 1,
          'many': 1,
          'stuck': 1,
          'incorrectly': 1,
          'placed': 1,
          'puzzle': 1,
          'pieces': 1,
          'includes': 1,
          'featuring': 1,
          'steven': 1,
          'gets': 1,
          'big': 1,
          'hollywood': 1,
          'filming': 1,
          'las': 1,
          'vegas': 1,
          'nwhile': 1,
          'seeing': 1,
          'poke': 1,
          'fun': 1,
          'appeared': 1,
          'exist': 1,
          'solely': 1,
          'participation': 1,
          'demanded': 1,
          'take': 1,
          'huge': 1,
          'leap': 1,
          'win': 1,
          'based': 1,
          'quotations': 1,
          'shakespeare': 1,
          'thinking': 1,
          'nthen': 1,
          'realized': 1,
          'watching': 1,
          'third': 1,
          'undergoes': 1,
          'another': 1,
          'unbridled': 1,
          'sentimentality': 1,
          'nnote': 1,
          'major': 1,
          'revealed': 1,
          'paragraph': 1,
          'nmax': 1,
          'went': 1,
          'america': 1,
          'promised': 1,
          'reunited': 1,
          'childhood': 1,
          'love': 1,
          'hasnt': 1,
          'seen': 1,
          'since': 1,
          'normalsized': 1,
          'kid': 1,
          'nher': 1,
          'refusal': 1,
          'see': 1,
          'unbeknownst': 1,
          'leads': 1,
          'us': 1,
          'awkward': 1,
          'means': 1,
          'serena': 1,
          'nicely': 1,
          'kathleen': 1,
          'quinlan': 1,
          'poses': 1,
          'offensive': 1,
          'nnot': 1,
          'rely': 1,
          'deception': 1,
          'induce': 1,
          'warm': 1,
          'fuzzy': 1,
          'feelings': 1,
          'reduced': 1,
          'pity': 1,
          'coddle': 1,
          'thought': 1,
          'undeserved': 1,
          'think': 1,
          'handled': 1,
          'truth': 1,
          'gratuitous': 1,
          'nlate': 1,
          'learn': 1,
          'fact': 1,
          'giants': 1,
          'heart': 1,
          'condition': 1,
          'shortens': 1,
          'lives': 1,
          'considerably': 1,
          'enlightening': 1,
          'revelation': 1,
          'seemingly': 1,
          'presents': 1,
          'caring': 1,
          'sensitive': 1,
          'hey': 1,
          'great': 1,
          'dad': 1,
          'husband': 1,
          'nmy': 1,
          'suffers': 1,
          'poorly': 1,
          'constructed': 1,
          'line': 1,
          'undeveloped': 1,
          'whose': 1,
          'actions': 1,
          'determined': 1,
          'internal': 1,
          'persuasions': 1,
          'na': 1,
          'stronger': 1,
          'room': 1,
          'growth': 1,
          'might': 1,
          'possible': 1,
          'struggle': 1,
          'accepted': 1,
          'movies': 1,
          'instead': 1,
          'struggles': 1,
          'get': 1,
          'money': 1,
          'become': 1,
          'better': 1,
          'person': 1,
          'scenario': 1,
          'integral': 1,
          'part': 1,
          'motivator': 1,
          'nsentiment': 1,
          'emotion': 1,
          'followed': 1,
          'naturally': 1,
          'ninstead': 1,
          'apparently': 1,
          'allowed': 1,
          'ncrystal': 1,
          'give': 1,
          'adequate': 1,
          'enjoyable': 1,
          'performances': 1,
          'left': 1,
          'feeling': 1,
          'id': 1,
          'fed': 1,
          'gruel': 1,
          'spoon': 1,
          'nneg': 1}),
 Counter({'action': 7,
          'nthe': 6,
          'musketeer': 5,
          'may': 5,
          'like': 5,
          'hong': 4,
          'kong': 4,
          'character': 4,
          'nit': 4,
          'one': 4,
          'dumas': 3,
          'time': 3,
          'characters': 3,
          'well': 3,
          'dartagnan': 3,
          'bad': 3,
          'horse': 3,
          'makes': 3,
          'looks': 3,
          'queen': 3,
          'dartagnans': 3,
          'director': 2,
          'hyams': 2,
          'dont': 2,
          'money': 2,
          'effort': 2,
          'work': 2,
          'crouching': 2,
          'tiger': 2,
          'hidden': 2,
          'dragon': 2,
          'result': 2,
          'three': 2,
          'musketeers': 2,
          'utilized': 2,
          'flick': 2,
          'little': 2,
          'material': 2,
          'matrix': 2,
          'two': 2,
          'good': 2,
          'helped': 2,
          'plays': 2,
          'febre': 2,
          'players': 2,
          'could': 2,
          'goes': 2,
          'wire': 2,
          'used': 2,
          'alexandre': 1,
          'meets': 1,
          'newcomer': 1,
          'justin': 1,
          'chambers': 1,
          'reprising': 1,
          'oftplayed': 1,
          'dashing': 1,
          'swordsman': 1,
          'dartagnon': 1,
          'peter': 1,
          'adventure': 1,
          'nfor': 1,
          'reason': 1,
          'figure': 1,
          'later': 1,
          'know': 1,
          'put': 1,
          'making': 1,
          'someone': 1,
          'clever': 1,
          'idea': 1,
          'combining': 1,
          'story': 1,
          'current': 1,
          'enamor': 1,
          'imports': 1,
          'films': 1,
          'xinxin': 1,
          'xiong': 1,
          'upon': 1,
          'china': 1,
          'yuen': 1,
          'wooping': 1,
          'mix': 1,
          'genres': 1,
          'mesh': 1,
          'nelements': 1,
          'ritz': 1,
          'brothersstyle': 1,
          'comedy': 1,
          'remember': 1,
          'comedic': 1,
          'troupe': 1,
          '1939': 1,
          'man': 1,
          'name': 1,
          'fistful': 1,
          'dollars': 1,
          'demands': 1,
          'guys': 1,
          'apologize': 1,
          'direct': 1,
          'ref': 1,
          'clint': 1,
          'eastwood': 1,
          'spaghetti': 1,
          'western': 1,
          'choreography': 1,
          'original': 1,
          'script': 1,
          'gene': 1,
          'quintano': 1,
          'bears': 1,
          'resemblance': 1,
          'source': 1,
          'contemporary': 1,
          'grab': 1,
          'crowd': 1,
          'nalexandre': 1,
          'rolling': 1,
          'grave': 1,
          'knows': 1,
          'done': 1,
          'classic': 1,
          'oeuvre': 1,
          'real': 1,
          'problem': 1,
          'lies': 1,
          'casting': 1,
          'lead': 1,
          'romantically': 1,
          'intertwined': 1,
          'francesca': 1,
          'mena': 1,
          'suvari': 1,
          'nchambers': 1,
          'boyishly': 1,
          'handsome': 1,
          'la': 1,
          'chris': 1,
          'odonnell': 1,
          'lacks': 1,
          'onscreen': 1,
          'charisma': 1,
          'nsuvari': 1,
          'doeeyed': 1,
          'pretty': 1,
          'chambermaid': 1,
          'ear': 1,
          'chemistry': 1,
          'command': 1,
          'screen': 1,
          'nif': 1,
          'invest': 1,
          'acting': 1,
          'lessons': 1,
          'nstronger': 1,
          'performers': 1,
          'raise': 1,
          'bar': 1,
          'supporting': 1,
          'cast': 1,
          'surface': 1,
          'impressive': 1,
          'ncatherine': 1,
          'denueve': 1,
          'france': 1,
          'lends': 1,
          'air': 1,
          'royalty': 1,
          'dignity': 1,
          'humor': 1,
          'especially': 1,
          'mentor': 1,
          'planchet': 1,
          'jeanpierre': 1,
          'castaldi': 1,
          'reminds': 1,
          'andre': 1,
          'giant': 1,
          'princess': 1,
          'bride': 1,
          'nstephen': 1,
          'rea': 1,
          'part': 1,
          'conniving': 1,
          'usurper': 1,
          'cardinal': 1,
          'richelieu': 1,
          'given': 1,
          'help': 1,
          'flesh': 1,
          'ntim': 1,
          'roth': 1,
          'kind': 1,
          'guy': 1,
          'love': 1,
          'hate': 1,
          'cardinals': 1,
          'chief': 1,
          'henchman': 1,
          'nhe': 1,
          'simon': 1,
          'legree': 1,
          'look': 1,
          'boy': 1,
          'scout': 1,
          'rest': 1,
          'particularly': 1,
          'aramis': 1,
          'nick': 1,
          'moran': 1,
          'lock': 1,
          'stock': 1,
          'smoking': 1,
          'barrels': 1,
          'porthos': 1,
          'steve': 1,
          'spiers': 1,
          'athos': 1,
          'jan': 1,
          'gregor': 1,
          'kremp': 1,
          'background': 1,
          'fodder': 1,
          'whose': 1,
          'role': 1,
          'come': 1,
          'aid': 1,
          'needed': 1,
          'npeter': 1,
          'double': 1,
          'duty': 1,
          'cinematography': 1,
          'stretched': 1,
          'na': 1,
          'stronger': 1,
          'hand': 1,
          'helm': 1,
          'mediocre': 1,
          'performances': 1,
          'leads': 1,
          'better': 1,
          'veteran': 1,
          'thesps': 1,
          'nphotography': 1,
          'straightforward': 1,
          'fare': 1,
          'appropriate': 1,
          'motions': 1,
          'takes': 1,
          'tavern': 1,
          'full': 1,
          'thugs': 1,
          'bests': 1,
          'singlehanded': 1,
          'fights': 1,
          'gang': 1,
          'febres': 1,
          'henchmen': 1,
          'aboard': 1,
          'speeding': 1,
          'coach': 1,
          'protect': 1,
          'obligatory': 1,
          'branches': 1,
          'hanging': 1,
          'road': 1,
          'lifelong': 1,
          'enemy': 1,
          'murdered': 1,
          'folks': 1,
          'years': 1,
          'routine': 1,
          'stuff': 1,
          'renowned': 1,
          'developed': 1,
          'masters': 1,
          'artificial': 1,
          'effect': 1,
          'leap': 1,
          'defying': 1,
          'gravity': 1,
          'walls': 1,
          'works': 1,
          'scifi': 1,
          'film': 1,
          'classical': 1,
          'fantasy': 1,
          'calls': 1,
          'attention': 1,
          'nat': 1,
          'point': 1,
          'swear': 1,
          'saw': 1,
          'stunt': 1,
          'make': 1,
          'believer': 1,
          'disappointed': 1,
          'nwith': 1,
          'run': 1,
          '106': 1,
          'minutes': 1,
          '80': 1,
          'give': 1,
          'nneg': 1}),
 Counter({'batman': 10,
          'movie': 4,
          'nnot': 3,
          'first': 3,
          'would': 3,
          'robin': 3,
          'freeze': 3,
          'nmr': 3,
          'might': 3,
          'poison': 3,
          'ivy': 3,
          'world': 3,
          'n': 3,
          'think': 2,
          'maybe': 2,
          'two': 2,
          'one': 2,
          'goes': 2,
          'installment': 2,
          'example': 2,
          'scene': 2,
          'museum': 2,
          'schwarzenegger': 2,
          'diamond': 2,
          'thugs': 2,
          'hockey': 2,
          'ni': 2,
          'three': 2,
          'movies': 2,
          'actually': 2,
          'seems': 2,
          'road': 2,
          'fire': 2,
          'gotham': 2,
          'city': 2,
          'place': 2,
          'plot': 2,
          'nas': 2,
          'villains': 2,
          'story': 2,
          'us': 2,
          'ever': 2,
          'makes': 2,
          'time': 1,
          'series': 1,
          'put': 1,
          'rest': 1,
          'films': 1,
          'unsettling': 1,
          'insight': 1,
          'really': 1,
          'take': 1,
          'someone': 1,
          'make': 1,
          'superhero': 1,
          'abandoned': 1,
          'throws': 1,
          'lingering': 1,
          'realism': 1,
          'window': 1,
          'allout': 1,
          'camp': 1,
          'traces': 1,
          'selfmocking': 1,
          'restraint': 1,
          'relatively': 1,
          'lighthearted': 1,
          'third': 1,
          'nlet': 1,
          'give': 1,
          'george': 1,
          'clooney': 1,
          'chris': 1,
          'odonnell': 1,
          'summoned': 1,
          'literally': 1,
          'turned': 1,
          'ice': 1,
          'mr': 1,
          'arnold': 1,
          'attempt': 1,
          'steal': 1,
          'freezes': 1,
          'armed': 1,
          'none': 1,
          'sticks': 1,
          'problem': 1,
          'heroes': 1,
          'automatic': 1,
          'skates': 1,
          'shoot': 1,
          'shoes': 1,
          'point': 1,
          'manages': 1,
          'get': 1,
          'hold': 1,
          'stick': 1,
          'grabs': 1,
          'stickhandles': 1,
          'expected': 1,
          'airplanestyle': 1,
          'farce': 1,
          'dont': 1,
          'thats': 1,
          'supposed': 1,
          'nafter': 1,
          'previous': 1,
          'fairly': 1,
          'realistic': 1,
          'standards': 1,
          'superheroaction': 1,
          'genre': 1,
          'kept': 1,
          'corny': 1,
          'deathdefying': 1,
          'stunts': 1,
          'minimum': 1,
          'playing': 1,
          'obligatory': 1,
          'cheesiness': 1,
          'least': 1,
          'amount': 1,
          'irony': 1,
          'list': 1,
          'nrobin': 1,
          'holds': 1,
          'onto': 1,
          'outside': 1,
          'flying': 1,
          'rocket': 1,
          'ship': 1,
          '30': 1,
          '000': 1,
          'feet': 1,
          'high': 1,
          'atmosphere': 1,
          'climbing': 1,
          'door': 1,
          'save': 1,
          'uma': 1,
          'thurman': 1,
          'leap': 1,
          'skyscraper': 1,
          'survive': 1,
          'landing': 1,
          'small': 1,
          'pond': 1,
          'na': 1,
          'dominating': 1,
          'mad': 1,
          'scientist': 1,
          'lives': 1,
          'fortress': 1,
          'stolen': 1,
          'old': 1,
          'heman': 1,
          'cartoons': 1,
          'nmy': 1,
          'favorite': 1,
          'batgirl': 1,
          'alicia': 1,
          'silverstone': 1,
          'gets': 1,
          'race': 1,
          'motorcycle': 1,
          'come': 1,
          'clever': 1,
          'notion': 1,
          'dousing': 1,
          'gasoline': 1,
          'setting': 1,
          'distract': 1,
          'bad': 1,
          'wouldnt': 1,
          'police': 1,
          'nnotice': 1,
          'knew': 1,
          'crazy': 1,
          'anarchic': 1,
          'nit': 1,
          'also': 1,
          'creators': 1,
          'obeying': 1,
          'unwritten': 1,
          'rule': 1,
          'main': 1,
          'characters': 1,
          'lines': 1,
          'successive': 1,
          'protagonists': 1,
          'werent': 1,
          'enough': 1,
          'weighs': 1,
          'underdeveloped': 1,
          'side': 1,
          'failing': 1,
          'health': 1,
          'bruce': 1,
          'waynes': 1,
          'butler': 1,
          'alfred': 1,
          'michael': 1,
          'gough': 1,
          'seemed': 1,
          'poignant': 1,
          'wasnt': 1,
          'surrounded': 1,
          'much': 1,
          'silliness': 1,
          'well': 1,
          'several': 1,
          'scenes': 1,
          'elle': 1,
          'macpherson': 1,
          'bruces': 1,
          'girlfriend': 1,
          'serve': 1,
          'purpose': 1,
          'remind': 1,
          'nall': 1,
          'semiexcusable': 1,
          'interesting': 1,
          'entertaining': 1,
          'isnt': 1,
          'nin': 1,
          'fact': 1,
          'kind': 1,
          'boring': 1,
          'pale': 1,
          'comparison': 1,
          'past': 1,
          'baddies': 1,
          'jack': 1,
          'nicholsons': 1,
          'joker': 1,
          'danny': 1,
          'devitos': 1,
          'penguin': 1,
          'ntheir': 1,
          'evil': 1,
          'predictable': 1,
          'pronounces': 1,
          'words': 1,
          'today': 1,
          'tomorrow': 1,
          'lamebrained': 1,
          'didnt': 1,
          'occur': 1,
          'freezing': 1,
          'entire': 1,
          'kill': 1,
          'precious': 1,
          'plants': 1,
          'nand': 1,
          'robins': 1,
          'constant': 1,
          'challenging': 1,
          'mostly': 1,
          'look': 1,
          'bullheaded': 1,
          'stupid': 1,
          'wonder': 1,
          'taken': 1,
          'partner': 1,
          'nstrip': 1,
          'away': 1,
          'stars': 1,
          'fancy': 1,
          'set': 1,
          'design': 1,
          'status': 1,
          'another': 1,
          'barely': 1,
          'passable': 1,
          'summer': 1,
          'action': 1,
          'flick': 1,
          'nneg': 1}),
 Counter({'sagemiller': 6,
          'movie': 5,
          'cassie': 5,
          'sean': 4,
          'one': 4,
          'nand': 4,
          'get': 4,
          'survivors': 3,
          'dushku': 3,
          'matt': 3,
          'movies': 3,
          'character': 3,
          'nthe': 3,
          'opinion': 2,
          'explanation': 2,
          'soul': 2,
          'im': 2,
          'full': 2,
          'four': 2,
          'friends': 2,
          'bring': 2,
          'dating': 2,
          'wes': 2,
          'bentley': 2,
          'affleck': 2,
          'party': 2,
          'nas': 2,
          'visions': 2,
          'material': 2,
          'nwhen': 2,
          'ncarpenters': 2,
          'camera': 2,
          'recently': 2,
          'nthis': 2,
          'lamest': 2,
          'second': 2,
          'main': 2,
          'film': 2,
          'even': 2,
          'together': 2,
          'shower': 2,
          'getting': 2,
          'covered': 2,
          'paint': 2,
          'nwhy': 2,
          'clothes': 2,
          'would': 2,
          'see': 2,
          'reviewers': 1,
          'important': 1,
          'task': 1,
          'offer': 1,
          'nbut': 1,
          'critical': 1,
          'rage': 1,
          'review': 1,
          'liable': 1,
          'turn': 1,
          'venomous': 1,
          'uncontrollable': 1,
          'rant': 1,
          'obligations': 1,
          'damned': 1,
          'nhowever': 1,
          'protocol': 1,
          'forces': 1,
          'otherwise': 1,
          'nsoul': 1,
          'tells': 1,
          'story': 1,
          'collegebound': 1,
          'cassandra': 1,
          'melissa': 1,
          'sweet': 1,
          'innocent': 1,
          'nparty': 1,
          'girl': 1,
          'annabel': 1,
          'eliza': 1,
          'worldweary': 1,
          'harvard': 1,
          'student': 1,
          'nmatt': 1,
          'still': 1,
          'feelings': 1,
          'casey': 1,
          'ndriving': 1,
          'back': 1,
          'creepy': 1,
          'gothic': 1,
          'quartet': 1,
          'gets': 1,
          'horrific': 1,
          'car': 1,
          'crash': 1,
          'nsean': 1,
          'dies': 1,
          'leaving': 1,
          'crestfallen': 1,
          'guilty': 1,
          'made': 1,
          'worse': 1,
          'saw': 1,
          'kiss': 1,
          'minutes': 1,
          'revealed': 1,
          'love': 1,
          'mopes': 1,
          'classes': 1,
          'sees': 1,
          'ghost': 1,
          'place': 1,
          'urging': 1,
          'follow': 1,
          'nalong': 1,
          'plagued': 1,
          'ghastly': 1,
          'also': 1,
          'followed': 1,
          'thugs': 1,
          'strange': 1,
          'nannabel': 1,
          'try': 1,
          'calming': 1,
          'shares': 1,
          'casss': 1,
          'nshe': 1,
          'figure': 1,
          'purgatory': 1,
          'nrarely': 1,
          'seen': 1,
          'director': 1,
          'thoroughly': 1,
          'mishandle': 1,
          'nin': 1,
          'directorial': 1,
          'debut': 1,
          'steve': 1,
          'carpenter': 1,
          'nothing': 1,
          'provoke': 1,
          'audience': 1,
          'feeling': 1,
          'emotion': 1,
          'camerawork': 1,
          'isnt': 1,
          'pedestrian': 1,
          'clich': 1,
          'need': 1,
          'closeups': 1,
          'following': 1,
          'behind': 1,
          'drain': 1,
          'anticipation': 1,
          'nwe': 1,
          'already': 1,
          'know': 1,
          'look': 1,
          'surprised': 1,
          'sense': 1,
          'scary': 1,
          'atmosphere': 1,
          'done': 1,
          'well': 1,
          'others': 1,
          'nowhere': 1,
          'found': 1,
          'script': 1,
          'relies': 1,
          'random': 1,
          'twists': 1,
          'turns': 1,
          'minimum': 1,
          'logic': 1,
          'loads': 1,
          'laziness': 1,
          'ending': 1,
          'features': 1,
          'providing': 1,
          'plot': 1,
          'another': 1,
          'screenwriting': 1,
          'devices': 1,
          'around': 1,
          'device': 1,
          'course': 1,
          'oh': 1,
          'dream': 1,
          'resolution': 1,
          'guess': 1,
          'nnot': 1,
          'body': 1,
          'constantly': 1,
          'running': 1,
          'fear': 1,
          'nervous': 1,
          'breakdown': 1,
          'anything': 1,
          'worthwhile': 1,
          'nsince': 1,
          'theres': 1,
          'captivating': 1,
          'dialogue': 1,
          'chemistry': 1,
          'exists': 1,
          'anywhere': 1,
          'nthats': 1,
          'huge': 1,
          'problem': 1,
          'since': 1,
          'characters': 1,
          'supposed': 1,
          'couples': 1,
          'ncarpenter': 1,
          'cant': 1,
          'smutty': 1,
          'scenes': 1,
          'right': 1,
          'becoming': 1,
          'prevalent': 1,
          'pg13': 1,
          'like': 1,
          'recut': 1,
          'r': 1,
          'rating': 1,
          'kids': 1,
          'seats': 1,
          'ned': 1,
          'dance': 1,
          'club': 1,
          'rarely': 1,
          'shows': 1,
          'shot': 1,
          'never': 1,
          'keeps': 1,
          'longer': 1,
          'relating': 1,
          'michael': 1,
          'baystyle': 1,
          'quick': 1,
          'cuts': 1,
          'take': 1,
          'theyre': 1,
          'fully': 1,
          'clothed': 1,
          'nregardless': 1,
          'sexiness': 1,
          'scene': 1,
          'undercut': 1,
          'stupidity': 1,
          'wouldnt': 1,
          'wash': 1,
          'sink': 1,
          'washing': 1,
          'machine': 1,
          'nwhat': 1,
          'werent': 1,
          'latex': 1,
          'cast': 1,
          'better': 1,
          'future': 1,
          'wise': 1,
          'leave': 1,
          'resumes': 1,
          'ni': 1,
          'felt': 1,
          'sorry': 1,
          'ive': 1,
          'liked': 1,
          'great': 1,
          'american': 1,
          'beauty': 1,
          'ndushku': 1,
          'possesses': 1,
          'alluring': 1,
          'femme': 1,
          'fetale': 1,
          'quality': 1,
          'got': 1,
          'stop': 1,
          'taking': 1,
          'roles': 1,
          'belonging': 1,
          'rose': 1,
          'mcgowan': 1,
          'star': 1,
          'aforementioned': 1,
          'want': 1,
          'plays': 1,
          'person': 1,
          'object': 1,
          'gawking': 1,
          'luke': 1,
          'wilsons': 1,
          'role': 1,
          'priest': 1,
          'nat': 1,
          'least': 1,
          'hes': 1,
          'anderson': 1,
          'nbottom': 1,
          'line': 1,
          'awful': 1,
          'feel': 1,
          'compelled': 1,
          'knock': 1,
          'doors': 1,
          'warn': 1,
          'people': 1,
          'nneg': 1}),
 Counter({'ben': 7,
          'analyze': 6,
          'crystal': 6,
          'de': 5,
          'niro': 5,
          'film': 5,
          'paul': 5,
          'first': 4,
          'time': 4,
          'even': 4,
          'mostly': 4,
          'director': 3,
          'billy': 3,
          'lisa': 3,
          'ramis': 3,
          'gets': 3,
          'one': 3,
          'last': 3,
          'two': 3,
          'kudrows': 3,
          'cast': 2,
          'could': 2,
          'kudrow': 2,
          'opposite': 2,
          'sex': 2,
          'well': 2,
          'funny': 2,
          'running': 2,
          'away': 2,
          'think': 2,
          'finally': 2,
          'life': 2,
          'get': 2,
          'girlfriend': 2,
          'laura': 2,
          'little': 2,
          'mob': 2,
          'mafia': 2,
          'vitti': 2,
          'robert': 2,
          'help': 2,
          'wedding': 2,
          'become': 2,
          'n': 2,
          'thought': 2,
          'writers': 2,
          'comic': 2,
          'movie': 2,
          'nothing': 2,
          'support': 2,
          'work': 2,
          'supporting': 2,
          'characters': 2,
          'role': 2,
          'fellow': 2,
          'aniston': 2,
          'place': 2,
          'character': 2,
          'scene': 2,
          'reading': 1,
          'new': 1,
          'mobster': 1,
          'comedy': 1,
          'asked': 1,
          'miss': 1,
          'nrobert': 1,
          'taxi': 1,
          'driver': 1,
          'raging': 1,
          'bull': 1,
          'city': 1,
          'slickers': 1,
          'harold': 1,
          'national': 1,
          'lampoons': 1,
          'vacation': 1,
          'nthese': 1,
          'usually': 1,
          'reliable': 1,
          'filmmakers': 1,
          'okay': 1,
          'sizable': 1,
          'slump': 1,
          'lately': 1,
          'tellingly': 1,
          'halfhour': 1,
          'nunfortunately': 1,
          'ticked': 1,
          'began': 1,
          'thirty': 1,
          'minutes': 1,
          'unbeknownst': 1,
          'rewound': 1,
          'replayed': 1,
          'another': 1,
          'twoandahalf': 1,
          'times': 1,
          'nthe': 1,
          'obtained': 1,
          'clever': 1,
          'premise': 1,
          'idea': 1,
          'progressively': 1,
          'becomes': 1,
          'repetitive': 1,
          'stopped': 1,
          'enjoying': 1,
          'caring': 1,
          'happening': 1,
          'screen': 1,
          'nmiddleaged': 1,
          'psychoanalyst': 1,
          'sobels': 1,
          'going': 1,
          'nalthough': 1,
          'never': 1,
          'gotten': 1,
          'along': 1,
          'uncaring': 1,
          'parents': 1,
          'especially': 1,
          'father': 1,
          'also': 1,
          'psychiatrist': 1,
          'easygoing': 1,
          'teenage': 1,
          'son': 1,
          'kyle': 1,
          'sabihy': 1,
          'travel': 1,
          'miami': 1,
          'married': 1,
          'tv': 1,
          'news': 1,
          'reporter': 1,
          'nin': 1,
          'flash': 1,
          'however': 1,
          'suddenly': 1,
          'sees': 1,
          'plans': 1,
          'ruined': 1,
          'accidentally': 1,
          'hits': 1,
          'car': 1,
          'subsequently': 1,
          'paid': 1,
          'visit': 1,
          'famed': 1,
          'guy': 1,
          'desperately': 1,
          'wants': 1,
          'counseling': 1,
          'though': 1,
          'wont': 1,
          'admit': 1,
          'anxiety': 1,
          'attacks': 1,
          'nben': 1,
          'tries': 1,
          'back': 1,
          'plot': 1,
          'complicated': 1,
          'follows': 1,
          'ends': 1,
          'man': 1,
          'dropping': 1,
          'eight': 1,
          'stories': 1,
          'death': 1,
          'nit': 1,
          'seems': 1,
          'matter': 1,
          'go': 1,
          'involved': 1,
          'bens': 1,
          'potentially': 1,
          'happy': 1,
          'danger': 1,
          'laughs': 1,
          'sprinkled': 1,
          'throughout': 1,
          'half': 1,
          'always': 1,
          'nagging': 1,
          'peter': 1,
          'tolan': 1,
          'kenneth': 1,
          'lonergan': 1,
          'done': 1,
          'joke': 1,
          'lightly': 1,
          'spoofing': 1,
          'serious': 1,
          'past': 1,
          'roles': 1,
          'terrorizing': 1,
          'becoming': 1,
          'buddies': 1,
          'tiresomely': 1,
          'recycled': 1,
          'duration': 1,
          '106minute': 1,
          'nadmittedly': 1,
          'cant': 1,
          'remember': 1,
          'use': 1,
          'adjective': 1,
          'describe': 1,
          'topform': 1,
          'whole': 1,
          'weighed': 1,
          'directly': 1,
          'shoulders': 1,
          'else': 1,
          'including': 1,
          'substantial': 1,
          'plotline': 1,
          'nsince': 1,
          'bills': 1,
          'three': 1,
          'youd': 1,
          'would': 1,
          'able': 1,
          'together': 1,
          'fix': 1,
          'noticably': 1,
          'large': 1,
          'flaws': 1,
          'must': 1,
          'autopilot': 1,
          'none': 1,
          'disappointing': 1,
          'wasted': 1,
          'opportunities': 1,
          'way': 1,
          'deals': 1,
          'next': 1,
          'arent': 1,
          'given': 1,
          'multidimensional': 1,
          'attempt': 1,
          'develop': 1,
          'ncoming': 1,
          'oscarcaliber': 1,
          'years': 1,
          'best': 1,
          'films': 1,
          'clockwatchers': 1,
          'throwaway': 1,
          'incredible': 1,
          'step': 1,
          'nsure': 1,
          'friend': 1,
          'jennifer': 1,
          'thing': 1,
          'weeks': 1,
          'ago': 1,
          'office': 1,
          'space': 1,
          'least': 1,
          'got': 1,
          'spend': 1,
          'nkudrow': 1,
          'meanwhile': 1,
          'stands': 1,
          'around': 1,
          'doubt': 1,
          'wondering': 1,
          'agreed': 1,
          'appear': 1,
          'nchazz': 1,
          'palminteri': 1,
          'rival': 1,
          'gangster': 1,
          'primo': 1,
          'fares': 1,
          'worse': 1,
          'plays': 1,
          'like': 1,
          'afterthought': 1,
          'actual': 1,
          'nfinally': 1,
          'molly': 1,
          'shannon': 1,
          'rising': 1,
          'star': 1,
          'member': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'rousingly': 1,
          'hilarious': 1,
          'onescene': 1,
          'cameo': 1,
          'right': 1,
          'beginning': 1,
          'crystals': 1,
          'patients': 1,
          'completely': 1,
          'disappears': 1,
          'ntoo': 1,
          'bad': 1,
          'considering': 1,
          'actors': 1,
          'surely': 1,
          'proven': 1,
          'abilities': 1,
          'nonce': 1,
          'approached': 1,
          'second': 1,
          'leaving': 1,
          'standing': 1,
          'alone': 1,
          'altar': 1,
          'thoroughly': 1,
          'annoyed': 1,
          'story': 1,
          'gone': 1,
          'lost': 1,
          'respect': 1,
          'supposed': 1,
          'sympathize': 1,
          'nafterwards': 1,
          'climactic': 1,
          'posing': 1,
          'boss': 1,
          'depressed': 1,
          'became': 1,
          'real': 1,
          'laughfree': 1,
          'deadzone': 1,
          'losing': 1,
          'remaining': 1,
          'punches': 1,
          'proves': 1,
          'talent': 1,
          'certainly': 1,
          'written': 1,
          'material': 1,
          'isnt': 1,
          'level': 1,
          'virtually': 1,
          'left': 1,
          'vacuum': 1,
          'thin': 1,
          'air': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'rules': 7,
          'nthe': 7,
          'nit': 5,
          'hodges': 4,
          'childers': 4,
          'story': 4,
          'men': 4,
          'u': 4,
          'plot': 4,
          'director': 4,
          'middle': 3,
          'east': 3,
          'stories': 3,
          'nthis': 3,
          'jones': 3,
          'life': 3,
          'nchilders': 3,
          'yemen': 3,
          'simply': 3,
          'questions': 3,
          'result': 3,
          'arab': 3,
          'ni': 3,
          'silly': 3,
          'charges': 3,
          'objectivity': 3,
          'find': 3,
          'guilty': 3,
          'events': 2,
          'hollywood': 2,
          'get': 2,
          'telling': 2,
          'marine': 2,
          'jackson': 2,
          'nthey': 2,
          'side': 2,
          'unarmed': 2,
          'war': 2,
          'make': 2,
          'ben': 2,
          'fire': 2,
          'crowd': 2,
          'yemeni': 2,
          'immediately': 2,
          'accused': 2,
          'murder': 2,
          'civilians': 2,
          'engagement': 2,
          'stereotypical': 2,
          'obvious': 2,
          'something': 2,
          'accusations': 2,
          'ends': 2,
          'even': 2,
          'happens': 2,
          'good': 2,
          'breaking': 2,
          'racism': 2,
          'william': 2,
          'friedklin': 2,
          'filmmaking': 2,
          'lack': 2,
          'order': 2,
          'na': 2,
          'lot': 2,
          'one': 2,
          'could': 2,
          'offensive': 2,
          'nmany': 2,
          'never': 2,
          'nothing': 2,
          'neither': 2,
          'producers': 2,
          'screenwriter': 2,
          'namericas': 2,
          'think': 2,
          'nthough': 2,
          'scenes': 2,
          'absolutely': 2,
          'great': 2,
          'outside': 2,
          'actors': 2,
          'like': 2,
          'including': 2,
          'time': 2,
          'non': 2,
          'see': 1,
          'terrible': 1,
          'unfold': 1,
          'eyes': 1,
          'moment': 1,
          'doesnt': 1,
          'loose': 1,
          'oppertunity': 1,
          'involved': 1,
          'expressing': 1,
          'opinions': 1,
          'centers': 1,
          'relationship': 1,
          'forged': 1,
          'throughout': 1,
          'adult': 1,
          'lifetimes': 1,
          'two': 1,
          'colonels': 1,
          'hays': 1,
          'tommy': 1,
          'lee': 1,
          'terry': 1,
          'samuel': 1,
          'l': 1,
          'fought': 1,
          'vietnam': 1,
          'saved': 1,
          'shooting': 1,
          'pow': 1,
          'nthats': 1,
          'understandable': 1,
          'anyway': 1,
          'specific': 1,
          'circumstances': 1,
          'ncertainly': 1,
          'complaining': 1,
          'nyears': 1,
          'pass': 1,
          'nhodges': 1,
          'whose': 1,
          'wounds': 1,
          'unfit': 1,
          'action': 1,
          'gets': 1,
          'law': 1,
          'degree': 1,
          'becomes': 1,
          'lawyer': 1,
          'respected': 1,
          'muchdecorated': 1,
          'hero': 1,
          'served': 1,
          'country': 1,
          'sould': 1,
          'nbecause': 1,
          'excellent': 1,
          'record': 1,
          'sent': 1,
          'rescue': 1,
          'american': 1,
          'ambassador': 1,
          'kingsley': 1,
          'cowering': 1,
          'embassy': 1,
          'assault': 1,
          'violent': 1,
          'demonstrators': 1,
          'snipers': 1,
          'blasting': 1,
          'rooftops': 1,
          'evacuate': 1,
          'family': 1,
          'protect': 1,
          'command': 1,
          'nafter': 1,
          'three': 1,
          'marines': 1,
          'die': 1,
          'colonel': 1,
          'thinks': 1,
          'sees': 1,
          'ground': 1,
          'orders': 1,
          'troops': 1,
          'shoot': 1,
          'firing': 1,
          'nmore': 1,
          '80': 1,
          'women': 1,
          'children': 1,
          'mowed': 1,
          'ordering': 1,
          'nhe': 1,
          'persuades': 1,
          'old': 1,
          'friend': 1,
          'represent': 1,
          'courtroom': 1,
          'drama': 1,
          'occupies': 1,
          'second': 1,
          'half': 1,
          'ndid': 1,
          'violate': 1,
          'authorized': 1,
          'military': 1,
          'answers': 1,
          'inconsistent': 1,
          'raises': 1,
          'sorts': 1,
          '83': 1,
          'innocent': 1,
          'greater': 1,
          'simple': 1,
          'trial': 1,
          'leaders': 1,
          'nwhere': 1,
          'n': 1,
          'without': 1,
          'interesting': 1,
          'international': 1,
          'arena': 1,
          'way': 1,
          'akin': 1,
          'films': 1,
          'already': 1,
          'morality': 1,
          'ethics': 1,
          'nthese': 1,
          'pretty': 1,
          'heavy': 1,
          'also': 1,
          'unfair': 1,
          'nwhat': 1,
          'truly': 1,
          'broke': 1,
          'decent': 1,
          'none': 1,
          'earliest': 1,
          'apparent': 1,
          'problems': 1,
          'credibility': 1,
          'entire': 1,
          'operation': 1,
          'may': 1,
          'remind': 1,
          'us': 1,
          'right': 1,
          'overdone': 1,
          'contrived': 1,
          'unrealistic': 1,
          'chain': 1,
          'happen': 1,
          'particular': 1,
          'manner': 1,
          'proceed': 1,
          'cheesy': 1,
          'possibly': 1,
          'accept': 1,
          'reality': 1,
          'nthat': 1,
          'precisely': 1,
          'completely': 1,
          'unobjective': 1,
          'started': 1,
          'finished': 1,
          'asked': 1,
          'answered': 1,
          'parallels': 1,
          'referring': 1,
          'seems': 1,
          'minds': 1,
          'contents': 1,
          'nis': 1,
          'mentality': 1,
          'foreign': 1,
          'policies': 1,
          'role': 1,
          'world': 1,
          'ncorruption': 1,
          'higher': 1,
          'circles': 1,
          'goes': 1,
          'consists': 1,
          'countless': 1,
          'definable': 1,
          'tries': 1,
          'everything': 1,
          'everyone': 1,
          'ironic': 1,
          'friedkins': 1,
          'probably': 1,
          'acclaimed': 1,
          'exorcist': 1,
          'became': 1,
          'rather': 1,
          'effective': 1,
          'nin': 1,
          'case': 1,
          'strong': 1,
          'many': 1,
          'possibilities': 1,
          'several': 1,
          'bare': 1,
          'mark': 1,
          'professionalism': 1,
          'impressive': 1,
          'battle': 1,
          'latest': 1,
          'engage': 1,
          'believe': 1,
          'depended': 1,
          'scripts': 1,
          'talented': 1,
          'succeed': 1,
          'nits': 1,
          'therefore': 1,
          'catastrophe': 1,
          'characters': 1,
          'feel': 1,
          'designed': 1,
          'unreal': 1,
          'merely': 1,
          'shadows': 1,
          'conflict': 1,
          'neven': 1,
          'save': 1,
          'going': 1,
          'act': 1,
          'admirably': 1,
          'performances': 1,
          'script': 1,
          'boast': 1,
          'roles': 1,
          'play': 1,
          'blindfolded': 1,
          'hand': 1,
          'back': 1,
          'njackson': 1,
          'gray': 1,
          'uninteresting': 1,
          'rest': 1,
          'cast': 1,
          'kingsly': 1,
          'blair': 1,
          'underwood': 1,
          'guy': 1,
          'pearce': 1,
          'waiting': 1,
          'paychecks': 1,
          'come': 1,
          'verdict': 1,
          'complete': 1,
          'reasonable': 1,
          'nbut': 1,
          'inconclusive': 1,
          'often': 1,
          'lacks': 1,
          'everywhere': 1,
          'concerning': 1,
          'population': 1,
          'must': 1,
          'admit': 1,
          'dangerously': 1,
          'near': 1,
          'line': 1,
          'racially': 1,
          'stephen': 1,
          'gaghan': 1,
          'went': 1,
          'bit': 1,
          'far': 1,
          'portraying': 1,
          'people': 1,
          'almost': 1,
          'badguys': 1,
          'sad': 1,
          'since': 1,
          'crucial': 1,
          'lose': 1,
          'proclaim': 1,
          'truth': 1,
          'nhowever': 1,
          'necessary': 1,
          'remember': 1,
          'muslim': 1,
          'terrorists': 1,
          'responsible': 1,
          'terrorist': 1,
          'activity': 1,
          'united': 1,
          'states': 1,
          'nand': 1,
          'coincidence': 1,
          'residents': 1,
          'constant': 1,
          'maximum': 1,
          'alert': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'nthe': 6,
          'fuller': 4,
          'border': 4,
          'texas': 4,
          'nits': 4,
          'brothers': 4,
          'store': 4,
          'place': 4,
          'story': 3,
          'richie': 3,
          'gecko': 3,
          'hostage': 3,
          'films': 3,
          'way': 3,
          'one': 3,
          'bank': 3,
          'get': 3,
          'dusk': 2,
          'dawn': 2,
          'rodriguez': 2,
          'quentin': 2,
          'tarantino': 2,
          'clooney': 2,
          'seth': 2,
          'lewis': 2,
          'kate': 2,
          'keitel': 2,
          'jacob': 2,
          'liu': 2,
          'scott': 2,
          'hayek': 2,
          'santanico': 2,
          'pandemonium': 2,
          'sex': 2,
          'cheech': 2,
          'ranger': 2,
          'non': 2,
          'fun': 2,
          'done': 2,
          'vampires': 2,
          'psychopath': 2,
          'killer': 2,
          'also': 2,
          'nthey': 2,
          'liquor': 2,
          'killed': 2,
          'motel': 2,
          'meet': 2,
          'carlos': 2,
          'take': 2,
          'car': 2,
          'father': 2,
          'vampire': 2,
          'killings': 2,
          'script': 2,
          'till': 1,
          'directoreditor': 1,
          'robert': 1,
          'screenwriters': 1,
          'tarantinorobert': 1,
          'kurtzman': 1,
          'cinematographer': 1,
          'guillermo': 1,
          'navarro': 1,
          'cast': 1,
          'george': 1,
          'juliette': 1,
          'harvey': 1,
          'ernest': 1,
          'salma': 1,
          'tom': 1,
          'savini': 1,
          'machine': 1,
          'fred': 1,
          'williamson': 1,
          'frost': 1,
          'marin': 1,
          'guardchet': 1,
          'pussycarlos': 1,
          'michael': 1,
          'parks': 1,
          'brenda': 1,
          'hillhouse': 1,
          'gloria': 1,
          'runtime': 1,
          '108': 1,
          'dimension': 1,
          '1996': 1,
          'nreviewed': 1,
          'dennis': 1,
          'schwartz': 1,
          'love': 1,
          'hate': 1,
          'ni': 1,
          'simply': 1,
          'hated': 1,
          'menu': 1,
          'violent': 1,
          'feast': 1,
          'served': 1,
          'charm': 1,
          'tongueandcheek': 1,
          'manner': 1,
          'serial': 1,
          'killerhorror': 1,
          'farce': 1,
          'nonstop': 1,
          'overthetop': 1,
          'action': 1,
          'sleaze': 1,
          'involving': 1,
          'decapitations': 1,
          'biker': 1,
          'fights': 1,
          'extended': 1,
          'gun': 1,
          'play': 1,
          'array': 1,
          'gore': 1,
          'seen': 1,
          'believed': 1,
          'na': 1,
          'regales': 1,
          'vulgarity': 1,
          'campiness': 1,
          'bloodandgore': 1,
          'goes': 1,
          'gloss': 1,
          'clich': 1,
          'conventional': 1,
          'bfilms': 1,
          'geared': 1,
          'cult': 1,
          'crowd': 1,
          'make': 1,
          'mark': 1,
          'plot': 1,
          'involves': 1,
          'two': 1,
          'older': 1,
          'professional': 1,
          'robber': 1,
          'perverted': 1,
          'kills': 1,
          'pleasure': 1,
          'rapist': 1,
          'escape': 1,
          'jail': 1,
          'go': 1,
          'killing': 1,
          'spree': 1,
          'wichita': 1,
          'flee': 1,
          'small': 1,
          'town': 1,
          'robbed': 1,
          'number': 1,
          'cops': 1,
          'taken': 1,
          'middleaged': 1,
          'teller': 1,
          'nin': 1,
          'kill': 1,
          'clerk': 1,
          'burn': 1,
          'nstopping': 1,
          'flophouse': 1,
          'rapes': 1,
          'slaughters': 1,
          'nthese': 1,
          'scenes': 1,
          'eye': 1,
          'comedy': 1,
          'parody': 1,
          'thats': 1,
          'possible': 1,
          'tv': 1,
          'news': 1,
          'says': 1,
          '16': 1,
          'far': 1,
          'rangers': 1,
          'plan': 1,
          'mexico': 1,
          'give': 1,
          'sanctuary': 1,
          'thirty': 1,
          'percent': 1,
          'illegal': 1,
          'nwith': 1,
          'road': 1,
          'blocks': 1,
          'searches': 1,
          'commandeer': 1,
          'motor': 1,
          'home': 1,
          'vacationing': 1,
          'family': 1,
          'stopped': 1,
          'could': 1,
          'sleep': 1,
          'real': 1,
          'bed': 1,
          'nthere': 1,
          'resigned': 1,
          'minister': 1,
          'lost': 1,
          'faith': 1,
          'ever': 1,
          'since': 1,
          'wife': 1,
          'died': 1,
          'accident': 1,
          'sexy': 1,
          '20yearold': 1,
          'innocent': 1,
          'daughter': 1,
          'shy': 1,
          'brother': 1,
          'explained': 1,
          'happens': 1,
          'chinese': 1,
          'really': 1,
          'becomes': 1,
          'bizarre': 1,
          'across': 1,
          'ready': 1,
          'barwhorehouse': 1,
          'truckers': 1,
          'bikers': 1,
          'called': 1,
          'titty': 1,
          'twister': 1,
          'open': 1,
          'thus': 1,
          'title': 1,
          'nheres': 1,
          'chance': 1,
          'throw': 1,
          'convention': 1,
          'window': 1,
          'absurd': 1,
          'turns': 1,
          'hangout': 1,
          'nit': 1,
          'sells': 1,
          'patrons': 1,
          'exotic': 1,
          'stripper': 1,
          'alluring': 1,
          'strip': 1,
          'turning': 1,
          'hostages': 1,
          'fight': 1,
          'keep': 1,
          'coming': 1,
          'become': 1,
          'staple': 1,
          'nthis': 1,
          'supposedly': 1,
          'clever': 1,
          'nothing': 1,
          'turn': 1,
          'though': 1,
          'funny': 1,
          'moments': 1,
          'dripping': 1,
          'special': 1,
          'effects': 1,
          'spent': 1,
          'finding': 1,
          'novel': 1,
          'ways': 1,
          'showcase': 1,
          'nill': 1,
          'pass': 1,
          'style': 1,
          'characters': 1,
          'empty': 1,
          'easy': 1,
          'forget': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'film': 8,
          'didnt': 6,
          'get': 5,
          'hedwig': 5,
          'whole': 5,
          'ni': 5,
          'also': 4,
          'musical': 4,
          'much': 4,
          'films': 4,
          '810': 4,
          'boy': 3,
          'sex': 3,
          'states': 3,
          'point': 3,
          'hisher': 3,
          'really': 3,
          'man': 3,
          'nbut': 3,
          'audience': 3,
          'many': 3,
          'nwhat': 3,
          'funny': 3,
          'loves': 2,
          'american': 2,
          'music': 2,
          'first': 2,
          'confused': 2,
          'turns': 2,
          'star': 2,
          'isnt': 2,
          'together': 2,
          'band': 2,
          'via': 2,
          'nthis': 2,
          'story': 2,
          'john': 2,
          'cameron': 2,
          'mitchell': 2,
          'n': 2,
          'sexuality': 2,
          'guess': 2,
          'expecting': 2,
          'nthe': 2,
          'somewhat': 2,
          'personally': 2,
          'left': 2,
          'definitely': 2,
          'show': 2,
          'even': 2,
          'elements': 2,
          'likely': 2,
          'characters': 2,
          'care': 2,
          'atmosphere': 2,
          'either': 2,
          'like': 2,
          'said': 2,
          'nall': 2,
          'questions': 2,
          'happened': 2,
          'main': 2,
          'see': 2,
          'enjoyed': 2,
          'hand': 2,
          'joblo': 2,
          '510': 2,
          'plot': 1,
          'little': 1,
          'born': 1,
          'east': 1,
          'germany': 1,
          'named': 1,
          'hansel': 1,
          'none': 1,
          'day': 1,
          'gets': 1,
          'opportunity': 1,
          'meet': 1,
          'marry': 1,
          'g': 1,
          'must': 1,
          'change': 1,
          'enter': 1,
          'nonce': 1,
          'married': 1,
          'two': 1,
          'move': 1,
          'quickly': 1,
          'thereafter': 1,
          'divorce': 1,
          'nat': 1,
          'starts': 1,
          'writing': 1,
          'meets': 1,
          'another': 1,
          'soon': 1,
          'nthat': 1,
          'back': 1,
          'long': 1,
          'puts': 1,
          'tours': 1,
          'seafood': 1,
          'restaurants': 1,
          'life': 1,
          'told': 1,
          'flashbacks': 1,
          'numbers': 1,
          'ncritique': 1,
          'artsyfartsy': 1,
          'great': 1,
          'songs': 1,
          'superb': 1,
          'performance': 1,
          'doesnt': 1,
          'come': 1,
          'overthetop': 1,
          'symbolism': 1,
          'incoherence': 1,
          'pretension': 1,
          'retain': 1,
          'interest': 1,
          'way': 1,
          'nin': 1,
          'fact': 1,
          'realistic': 1,
          'articulate': 1,
          'behindthescenes': 1,
          'look': 1,
          'rise': 1,
          'rock': 1,
          'roll': 1,
          'ambiguous': 1,
          'overly': 1,
          'poetic': 1,
          'incomprehensible': 1,
          'struggle': 1,
          'identity': 1,
          'person': 1,
          'planet': 1,
          'former': 1,
          'going': 1,
          'interesting': 1,
          'never': 1,
          'able': 1,
          'involve': 1,
          'basic': 1,
          'symbolic': 1,
          'incongruent': 1,
          'nature': 1,
          'feeling': 1,
          'cold': 1,
          'distant': 1,
          'tuned': 1,
          'certain': 1,
          'type': 1,
          'nchances': 1,
          'fan': 1,
          'wall': 1,
          'rocky': 1,
          'horror': 1,
          'picture': 1,
          'priscilla': 1,
          'queen': 1,
          'desert': 1,
          'tangled': 1,
          'strike': 1,
          'fancy': 1,
          'ask': 1,
          'sing': 1,
          'along': 1,
          'provide': 1,
          'lyrics': 1,
          'song': 1,
          'onscreen': 1,
          'nwell': 1,
          'dont': 1,
          'mightve': 1,
          'looked': 1,
          'literally': 1,
          'earlier': 1,
          'enough': 1,
          'delve': 1,
          'butterfly': 1,
          'represents': 1,
          'freedom': 1,
          'nside': 1,
          'things': 1,
          'know': 1,
          'unanswered': 1,
          'make': 1,
          'feel': 1,
          'fulfilled': 1,
          'hedwigs': 1,
          'relationship': 1,
          'member': 1,
          'beard': 1,
          'tommy': 1,
          'gnosis': 1,
          'end': 1,
          'actual': 1,
          'sequence': 1,
          'fantasy': 1,
          'ever': 1,
          'lawsuit': 1,
          'nand': 1,
          'part': 1,
          'interested': 1,
          'nif': 1,
          'idea': 1,
          'behind': 1,
          'character': 1,
          'uncover': 1,
          'thats': 1,
          'one': 1,
          'thing': 1,
          'relationships': 1,
          'situations': 1,
          'presented': 1,
          'wanted': 1,
          'resolution': 1,
          'pieces': 1,
          'well': 1,
          'humor': 1,
          'tickle': 1,
          'bone': 1,
          'nthen': 1,
          'ive': 1,
          'seen': 1,
          'arthouse': 1,
          'theatres': 1,
          'patrons': 1,
          'rolling': 1,
          'aisles': 1,
          'laughter': 1,
          'tiny': 1,
          'bit': 1,
          'whimsy': 1,
          'screen': 1,
          'nsome': 1,
          'better': 1,
          'added': 1,
          'plant': 1,
          'called': 1,
          'marijuana': 1,
          'certainly': 1,
          'ingrains': 1,
          'within': 1,
          'nifty': 1,
          'visual': 1,
          'order': 1,
          'jazz': 1,
          'experience': 1,
          'sober': 1,
          'coherent': 1,
          'transsexual': 1,
          'twist': 1,
          'leave': 1,
          'theater': 1,
          'satisfied': 1,
          'came': 1,
          'watched': 1,
          'existential': 1,
          'caught': 1,
          'lifestyle': 1,
          'wrapped': 1,
          'metaphors': 1,
          'dramatics': 1,
          'answers': 1,
          'props': 1,
          'lead': 1,
          'wrote': 1,
          'directed': 1,
          'created': 1,
          'play': 1,
          'based': 1,
          'tunes': 1,
          'anyone': 1,
          'digs': 1,
          'pistols': 1,
          'david': 1,
          'bowie': 1,
          '70s': 1,
          'glamrock': 1,
          'scene': 1,
          'nnote': 1,
          'btw': 1,
          'seems': 1,
          'though': 1,
          'pretty': 1,
          'every': 1,
          'single': 1,
          'mainstream': 1,
          'critic': 1,
          'united': 1,
          'loved': 1,
          'top': 1,
          'bottom': 1,
          'thought': 1,
          'boot': 1,
          'might': 1,
          'want': 1,
          'take': 1,
          'consideration': 1,
          'reason': 1,
          'started': 1,
          'dinky': 1,
          'website': 1,
          'place': 1,
          'would': 1,
          'sometimes': 1,
          'uniformly': 1,
          'applauded': 1,
          'official': 1,
          'critics': 1,
          'regular': 1,
          'wouldnt': 1,
          'fuss': 1,
          'perfect': 1,
          'example': 1,
          'continue': 1,
          'write': 1,
          'reviews': 1,
          'nwheres': 1,
          'coming': 1,
          'nmoulin': 1,
          'rouge': 1,
          'grease': 1,
          'everyone': 1,
          'says': 1,
          'love': 1,
          'opposite': 1,
          'dancer': 1,
          'dark': 1,
          'brother': 1,
          'art': 1,
          'thou': 1,
          '710': 1,
          'labours': 1,
          'lost': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'girl': 4,
          '8mm': 3,
          'films': 3,
          'cage': 3,
          'nhe': 3,
          'bizarre': 3,
          'welles': 3,
          'man': 3,
          'film': 3,
          'devil': 3,
          'nthis': 3,
          'schumacher': 3,
          'going': 2,
          'disturbing': 2,
          'portrait': 2,
          'underworld': 2,
          'snuff': 2,
          'violence': 2,
          'lot': 2,
          'well': 2,
          'seems': 2,
          'performance': 2,
          'ncage': 2,
          'home': 2,
          'wife': 2,
          'take': 2,
          'nhis': 2,
          'pornography': 2,
          'masked': 2,
          'murdered': 2,
          'nwelles': 2,
          'begins': 2,
          'deeper': 2,
          'becomes': 2,
          'played': 2,
          'goes': 2,
          'nalthough': 2,
          'director': 2,
          'joel': 2,
          'movie': 2,
          'soon': 2,
          'start': 2,
          'flop': 2,
          'enlighten': 1,
          'day': 1,
          'nits': 1,
          'dark': 1,
          'grimy': 1,
          'filled': 1,
          'excessive': 1,
          'nnot': 1,
          'need': 1,
          'stomach': 1,
          'make': 1,
          'bloated': 1,
          'mess': 1,
          'youll': 1,
          'require': 1,
          'patience': 1,
          'nnicolas': 1,
          'quite': 1,
          'bit': 1,
          'overacting': 1,
          'late': 1,
          'wore': 1,
          'getup': 1,
          'yelling': 1,
          'terminally': 1,
          'awful': 1,
          'snake': 1,
          'eyes': 1,
          'attempts': 1,
          'relate': 1,
          'someone': 1,
          'completely': 1,
          'losing': 1,
          'grip': 1,
          'reality': 1,
          'plays': 1,
          'private': 1,
          'investigator': 1,
          'tom': 1,
          'praised': 1,
          'secrecy': 1,
          'reliability': 1,
          'nat': 1,
          'family': 1,
          'catherine': 1,
          'keener': 1,
          'small': 1,
          'daughter': 1,
          'care': 1,
          'new': 1,
          'assignment': 1,
          'one': 1,
          'formally': 1,
          'deceased': 1,
          'millionaire': 1,
          'hired': 1,
          'solve': 1,
          'mystery': 1,
          'regarding': 1,
          'found': 1,
          'husbands': 1,
          'safe': 1,
          'appears': 1,
          'kind': 1,
          'cheap': 1,
          'involving': 1,
          'teenage': 1,
          'brutally': 1,
          'course': 1,
          'burrow': 1,
          'uncover': 1,
          'truth': 1,
          'nand': 1,
          'involved': 1,
          'case': 1,
          'gets': 1,
          'head': 1,
          'hires': 1,
          'adult': 1,
          'book': 1,
          'store': 1,
          'clerk': 1,
          'named': 1,
          'max': 1,
          'california': 1,
          'joaquin': 1,
          'phoenix': 1,
          'guide': 1,
          'ugly': 1,
          'nmax': 1,
          'knows': 1,
          'getting': 1,
          'explains': 1,
          'dance': 1,
          'dont': 1,
          'change': 1,
          'changes': 1,
          'nthese': 1,
          'turn': 1,
          'wise': 1,
          'words': 1,
          'n8mm': 1,
          'premise': 1,
          'begs': 1,
          'better': 1,
          'execution': 1,
          'setup': 1,
          'slick': 1,
          'uncovers': 1,
          'identity': 1,
          'travels': 1,
          'hollywood': 1,
          'locate': 1,
          'everything': 1,
          'awry': 1,
          'succeeds': 1,
          'frightening': 1,
          'us': 1,
          'grotesque': 1,
          'real': 1,
          'world': 1,
          'forgot': 1,
          'inject': 1,
          'interest': 1,
          'excitement': 1,
          'formula': 1,
          'neverything': 1,
          'dull': 1,
          'lifeless': 1,
          'repelling': 1,
          'viewer': 1,
          'like': 1,
          'effect': 1,
          'bug': 1,
          'spray': 1,
          'insects': 1,
          'enormous': 1,
          'potential': 1,
          'third': 1,
          'act': 1,
          'total': 1,
          'bust': 1,
          'leaving': 1,
          'intrigued': 1,
          'audiences': 1,
          'baffling': 1,
          'state': 1,
          'extreme': 1,
          'disappointment': 1,
          'proceedings': 1,
          'spiral': 1,
          'control': 1,
          'sole': 1,
          'flame': 1,
          'energy': 1,
          'actually': 1,
          'believable': 1,
          'directors': 1,
          'demands': 1,
          'weigh': 1,
          'heavily': 1,
          'shoulder': 1,
          'stumbling': 1,
          'along': 1,
          'desperation': 1,
          'nstill': 1,
          'youve': 1,
          'got': 1,
          'give': 1,
          'credit': 1,
          'holding': 1,
          'project': 1,
          'together': 1,
          'long': 1,
          'easy': 1,
          'feat': 1,
          'consider': 1,
          'problems': 1,
          'hand': 1,
          'trail': 1,
          'leads': 1,
          'filmmaker': 1,
          'convincingly': 1,
          'peter': 1,
          'stormare': 1,
          'notorious': 1,
          'hardesthitting': 1,
          'industry': 1,
          'edge': 1,
          'serial': 1,
          'killerlike': 1,
          'phase': 1,
          'must': 1,
          'revenge': 1,
          'innocent': 1,
          'tracks': 1,
          'responsible': 1,
          'killing': 1,
          'chris': 1,
          'bauer': 1,
          'bloody': 1,
          'brawl': 1,
          'local': 1,
          'cemetery': 1,
          'fight': 1,
          'sequence': 1,
          'would': 1,
          'look': 1,
          'schwarzenegger': 1,
          'nwritten': 1,
          'andrew': 1,
          'kevin': 1,
          'walker': 1,
          'dissipates': 1,
          'poor': 1,
          'mans': 1,
          'seven': 1,
          'little': 1,
          'effectiveness': 1,
          'made': 1,
          'latter': 1,
          'chilling': 1,
          'masterpiece': 1,
          'nfurthermore': 1,
          'become': 1,
          'recently': 1,
          'experienced': 1,
          'major': 1,
          'drought': 1,
          'slumming': 1,
          'depths': 1,
          'dismal': 1,
          'batman': 1,
          'robin': 1,
          'anyone': 1,
          'putrid': 1,
          'thriller': 1,
          'certainly': 1,
          'revive': 1,
          'career': 1,
          'perhaps': 1,
          'exploring': 1,
          'lighter': 1,
          'side': 1,
          'nneg': 1}),
 Counter({'park': 6,
          'jurassic': 4,
          'one': 3,
          'lost': 3,
          'world': 3,
          'original': 2,
          'grant': 2,
          'neill': 2,
          'macy': 2,
          'leoni': 2,
          'island': 2,
          'dinosaurs': 2,
          'iii': 2,
          'nthe': 2,
          'first': 2,
          'film': 2,
          'characters': 2,
          'nat': 2,
          'least': 2,
          'movie': 2,
          'even': 2,
          'synopsis': 1,
          'survivor': 1,
          'alan': 1,
          'tricked': 1,
          'paul': 1,
          'amanda': 1,
          'kirby': 1,
          'leading': 1,
          'expedition': 1,
          'overrun': 1,
          'dinosaur': 1,
          'rescue': 1,
          'stranded': 1,
          'son': 1,
          'ngrants': 1,
          'team': 1,
          'picked': 1,
          'encounter': 1,
          'new': 1,
          'familiar': 1,
          'grows': 1,
          'realise': 1,
          'breeds': 1,
          'intelligent': 1,
          'previously': 1,
          'thought': 1,
          'nreview': 1,
          'reason': 1,
          'better': 1,
          'immediate': 1,
          'predecessor': 1,
          'latter': 1,
          'wasted': 1,
          '129': 1,
          'minutes': 1,
          'life': 1,
          'former': 1,
          '94': 1,
          'marvellous': 1,
          'full': 1,
          'aweinspiring': 1,
          'sights': 1,
          'interesting': 1,
          'genuine': 1,
          'thrills': 1,
          'nits': 1,
          'two': 1,
          'successors': 1,
          'pale': 1,
          'imitations': 1,
          'amounting': 1,
          'hundredmilliondollar': 1,
          'bgrade': 1,
          'horror': 1,
          'movies': 1,
          'third': 1,
          'entry': 1,
          'realises': 1,
          'whereas': 1,
          'tried': 1,
          'justify': 1,
          'existence': 1,
          'ludicrous': 1,
          'overextended': 1,
          'plot': 1,
          'simply': 1,
          'sticks': 1,
          'bunch': 1,
          'lets': 1,
          'mayhem': 1,
          'begin': 1,
          'nthere': 1,
          'desperate': 1,
          'sense': 1,
          'deja': 1,
          'vu': 1,
          'presiding': 1,
          'computeranimated': 1,
          'dinos': 1,
          'longer': 1,
          'novel': 1,
          'exciting': 1,
          'firsttime': 1,
          'presence': 1,
          'aerial': 1,
          'lizards': 1,
          'scarcely': 1,
          'improves': 1,
          'situation': 1,
          'nremember': 1,
          'wondrous': 1,
          'trolley': 1,
          'ride': 1,
          'nnothing': 1,
          'rehash': 1,
          'comes': 1,
          'close': 1,
          'nadd': 1,
          'execrable': 1,
          'dialogue': 1,
          'screenwriters': 1,
          'buchman': 1,
          'payne': 1,
          'taylor': 1,
          'phonedin': 1,
          'performances': 1,
          'normally': 1,
          'capable': 1,
          'difficult': 1,
          'recommend': 1,
          'anyone': 1,
          'dino': 1,
          'enthusiasts': 1,
          'makes': 1,
          'effort': 1,
          'retain': 1,
          'dignity': 1,
          'character': 1,
          'much': 1,
          'less': 1,
          'gore': 1,
          'making': 1,
          'installment': 1,
          'suitable': 1,
          'children': 1,
          'nneg': 1}),
 Counter({'whole': 6,
          'nine': 6,
          'yards': 6,
          'comedy': 6,
          'one': 5,
          'oz': 5,
          'time': 4,
          'sophie': 4,
          'film': 4,
          'movies': 4,
          'around': 3,
          'perry': 3,
          'tulip': 3,
          'willis': 3,
          'killer': 3,
          'jimmys': 3,
          'peet': 3,
          'got': 3,
          'far': 3,
          'actors': 3,
          'characters': 2,
          'lynns': 2,
          'mob': 2,
          '1999s': 2,
          'ever': 2,
          'written': 2,
          'nwhen': 2,
          'character': 2,
          'plot': 2,
          'nin': 2,
          'might': 2,
          'say': 2,
          'every': 2,
          'minutes': 2,
          'matthew': 2,
          'quebec': 2,
          'rosanna': 2,
          'arquette': 2,
          'discover': 2,
          'jimmy': 2,
          'tudeski': 2,
          'bruce': 2,
          'contract': 2,
          'know': 2,
          'friend': 2,
          'cynthia': 2,
          'natasha': 2,
          'henstridge': 2,
          'next': 2,
          'jill': 2,
          'set': 2,
          'jills': 2,
          'movie': 2,
          'n': 2,
          'cast': 2,
          'two': 2,
          'clear': 2,
          'screenplay': 2,
          'become': 2,
          'na': 2,
          'three': 2,
          'limited': 2,
          'better': 2,
          'solely': 2,
          'purpose': 2,
          'jonathan': 1,
          'yet': 1,
          'another': 1,
          'endless': 1,
          'recent': 1,
          'string': 1,
          'comedies': 1,
          'analyze': 1,
          'mickey': 1,
          'blue': 1,
          'eyes': 1,
          '2000s': 1,
          'gun': 1,
          'shy': 1,
          'rarely': 1,
          'real': 1,
          'people': 1,
          'merely': 1,
          'onedimensional': 1,
          'caricatures': 1,
          'added': 1,
          'layer': 1,
          'personalities': 1,
          'revealed': 1,
          'service': 1,
          'development': 1,
          'naturally': 1,
          'offer': 1,
          'instinctive': 1,
          'characterizations': 1,
          'accommodate': 1,
          'convoluted': 1,
          'lightweight': 1,
          'required': 1,
          'perfectly': 1,
          'realized': 1,
          'figures': 1,
          'long': 1,
          'get': 1,
          'job': 1,
          'done': 1,
          'nunfortunately': 1,
          'work': 1,
          'least': 1,
          'succeed': 1,
          'funny': 1,
          'laughometer': 1,
          'available': 1,
          'id': 1,
          'guess': 1,
          'briefly': 1,
          'ascended': 1,
          '2': 1,
          '5': 1,
          'nsuffice': 1,
          'works': 1,
          'well': 1,
          'brokendown': 1,
          'lawnmower': 1,
          'backyard': 1,
          'giggle': 1,
          'surprisingly': 1,
          'arises': 1,
          'twenty': 1,
          'thirty': 1,
          'sheer': 1,
          'luck': 1,
          'nnicholas': 1,
          'oseransky': 1,
          'amateur': 1,
          'dentist': 1,
          'living': 1,
          'quiet': 1,
          'suburbs': 1,
          'ntrapped': 1,
          'hateful': 1,
          'marriage': 1,
          'conniving': 1,
          'delightfully': 1,
          'hamming': 1,
          'clearly': 1,
          'artificial': 1,
          'frenchcanadian': 1,
          'accent': 1,
          'day': 1,
          'sees': 1,
          'someone': 1,
          'moving': 1,
          'house': 1,
          'nextdoor': 1,
          'nwalking': 1,
          'greet': 1,
          'horrified': 1,
          'former': 1,
          'mafia': 1,
          'released': 1,
          'prison': 1,
          'nonce': 1,
          'getting': 1,
          'becoming': 1,
          'comfortable': 1,
          'identity': 1,
          'means': 1,
          'possible': 1,
          'hitman': 1,
          'away': 1,
          'scheme': 1,
          'sends': 1,
          'chicago': 1,
          'cash': 1,
          'informing': 1,
          'old': 1,
          'boss': 1,
          'kevin': 1,
          'pollak': 1,
          'whereabouts': 1,
          'process': 1,
          'falls': 1,
          'love': 1,
          'wife': 1,
          'held': 1,
          'hostage': 1,
          'nupon': 1,
          'return': 1,
          'contrivance': 1,
          'ozs': 1,
          'dental': 1,
          'assistant': 1,
          'amanda': 1,
          'overjoyed': 1,
          'lives': 1,
          'beside': 1,
          'forces': 1,
          'meeting': 1,
          'since': 1,
          'dream': 1,
          'life': 1,
          'turns': 1,
          'nhave': 1,
          'nbecause': 1,
          'nmuch': 1,
          'much': 1,
          'nand': 1,
          'without': 1,
          'credits': 1,
          'little': 1,
          '90': 1,
          'feels': 1,
          'like': 1,
          'hour': 1,
          'ultimately': 1,
          'unsatisfying': 1,
          'emptyheaded': 1,
          'excursion': 1,
          'wellworn': 1,
          'terrain': 1,
          'already': 1,
          'superior': 1,
          'pictures': 1,
          'nhow': 1,
          'respectable': 1,
          'caught': 1,
          'cliched': 1,
          'deficient': 1,
          'remains': 1,
          'mystery': 1,
          'unless': 1,
          'thought': 1,
          'aspire': 1,
          'match': 1,
          'congenial': 1,
          'screwball': 1,
          'zaniness': 1,
          'director': 1,
          '1985': 1,
          'classic': 1,
          'clue': 1,
          'ngoing': 1,
          'theater': 1,
          'preliminary': 1,
          'comparisons': 1,
          'unavoidable': 1,
          'twentyminute': 1,
          'mark': 1,
          'chuckled': 1,
          'laughed': 1,
          'nary': 1,
          'single': 1,
          'production': 1,
          'serious': 1,
          'trouble': 1,
          'nsince': 1,
          'entire': 1,
          'running': 1,
          'depends': 1,
          'mechanisms': 1,
          'inauspiciously': 1,
          'mitchell': 1,
          'kapner': 1,
          'collapses': 1,
          'failing': 1,
          'bit': 1,
          'inevitable': 1,
          'dead': 1,
          'zone': 1,
          'way': 1,
          'substance': 1,
          'frequently': 1,
          'entertainment': 1,
          'value': 1,
          'neither': 1,
          'facetious': 1,
          'aside': 1,
          'subplot': 1,
          'shocking': 1,
          'eagerness': 1,
          'professional': 1,
          'hitwoman': 1,
          'inventive': 1,
          'often': 1,
          'lies': 1,
          'spinning': 1,
          'drearily': 1,
          'projector': 1,
          'never': 1,
          'igniting': 1,
          'sort': 1,
          'spark': 1,
          'select': 1,
          'material': 1,
          'others': 1,
          'make': 1,
          'impact': 1,
          'non': 1,
          'mediocre': 1,
          'side': 1,
          'actually': 1,
          'playing': 1,
          'central': 1,
          'nperry': 1,
          'innocuously': 1,
          'enjoyable': 1,
          'tvs': 1,
          'friends': 1,
          'plays': 1,
          'exact': 1,
          'sitcomstyle': 1,
          '1997s': 1,
          'fools': 1,
          'rush': 1,
          'tango': 1,
          'crushing': 1,
          'bore': 1,
          'nmeanwhile': 1,
          'makes': 1,
          'impression': 1,
          'guise': 1,
          'oftentimes': 1,
          'disappears': 1,
          'background': 1,
          'ntheir': 1,
          'female': 1,
          'counterparts': 1,
          'fare': 1,
          'noticeably': 1,
          'nbest': 1,
          'radiant': 1,
          'exploitative': 1,
          'species': 1,
          'adds': 1,
          'unanticipated': 1,
          'depth': 1,
          'emotion': 1,
          'nhenstridge': 1,
          'talent': 1,
          'sure': 1,
          'break': 1,
          'countless': 1,
          'throwaway': 1,
          'roles': 1,
          'first': 1,
          'must': 1,
          'fire': 1,
          'agent': 1,
          'namanda': 1,
          'lot': 1,
          'fun': 1,
          'quirkily': 1,
          'straightforward': 1,
          'giddy': 1,
          'seems': 1,
          'art': 1,
          'comedic': 1,
          'payoff': 1,
          'even': 1,
          'thus': 1,
          'strived': 1,
          'career': 1,
          'based': 1,
          'nit': 1,
          'bad': 1,
          'unnecessarily': 1,
          'asked': 1,
          'disrobe': 1,
          'climactic': 1,
          'scene': 1,
          'obvious': 1,
          'sole': 1,
          'show': 1,
          'breasts': 1,
          'nfinally': 1,
          'awful': 1,
          'something': 1,
          'tells': 1,
          'overacting': 1,
          'aids': 1,
          'brightening': 1,
          'screen': 1,
          'nalso': 1,
          'popping': 1,
          'michael': 1,
          'clarke': 1,
          'duncan': 1,
          'fresh': 1,
          'oscar': 1,
          'nomination': 1,
          'role': 1,
          'green': 1,
          'mile': 1,
          'largely': 1,
          'built': 1,
          'fellow': 1,
          'frankie': 1,
          'figs': 1,
          'eventually': 1,
          'sputters': 1,
          'underwhelming': 1,
          'conclusion': 1,
          'left': 1,
          'pondering': 1,
          'greenlit': 1,
          'great': 1,
          'deal': 1,
          'type': 1,
          'made': 1,
          'past': 1,
          'nothing': 1,
          'duplication': 1,
          'films': 1,
          'point': 1,
          'nwithout': 1,
          'passable': 1,
          'notable': 1,
          'technical': 1,
          'accomplishments': 1,
          'rests': 1,
          'presumed': 1,
          'charm': 1,
          'half': 1,
          'charming': 1,
          'nnow': 1,
          'tell': 1,
          'nneg': 1}),
 Counter({'dying': 4,
          'film': 4,
          'much': 4,
          'one': 4,
          'past': 4,
          'men': 3,
          'regrets': 3,
          'nthe': 3,
          'movie': 3,
          'time': 3,
          'us': 3,
          'take': 2,
          'old': 2,
          'sins': 2,
          'character': 2,
          'keep': 2,
          'anderson': 2,
          'boogie': 2,
          'nights': 2,
          'stories': 2,
          'nearl': 2,
          'cancer': 2,
          'nhis': 2,
          'wife': 2,
          'cheated': 2,
          'jimmy': 2,
          'also': 2,
          'quiz': 2,
          'stanley': 2,
          'donnie': 2,
          'nothing': 2,
          'even': 2,
          'nthis': 2,
          'frogs': 2,
          'seem': 2,
          'may': 2,
          'frog': 2,
          'change': 2,
          'done': 2,
          'forgiveness': 2,
          'thy': 2,
          'spiritual': 2,
          'two': 1,
          'lifetime': 1,
          'house': 1,
          'full': 1,
          'thoroughly': 1,
          'despicable': 1,
          'man': 1,
          'enough': 1,
          'lies': 1,
          'insecurities': 1,
          'defects': 1,
          'team': 1,
          'psychiatrists': 1,
          'gainfully': 1,
          'employed': 1,
          'add': 1,
          'inexplicable': 1,
          'meteorological': 1,
          'amphibianbased': 1,
          'phenomenon': 1,
          'summed': 1,
          'magnolia': 1,
          'newest': 1,
          'paul': 1,
          'thomas': 1,
          'tells': 1,
          'multiple': 1,
          'weaving': 1,
          'together': 1,
          'overlapping': 1,
          'course': 1,
          'three': 1,
          'hour': 1,
          'running': 1,
          'nwould': 1,
          'worth': 1,
          'telling': 1,
          'partridge': 1,
          'jason': 1,
          'robards': 1,
          'thousand': 1,
          'acres': 1,
          'nbedridden': 1,
          'pain': 1,
          'obvious': 1,
          'growing': 1,
          'short': 1,
          'younger': 1,
          'played': 1,
          'julianne': 1,
          'moore': 1,
          'ideal': 1,
          'husband': 1,
          'surprised': 1,
          'find': 1,
          'struggling': 1,
          'impending': 1,
          'death': 1,
          'nhaving': 1,
          'married': 1,
          'money': 1,
          'discovers': 1,
          'actually': 1,
          'fallen': 1,
          'love': 1,
          'guy': 1,
          'lied': 1,
          'first': 1,
          'estranging': 1,
          'son': 1,
          'tom': 1,
          'cruise': 1,
          'eyes': 1,
          'wide': 1,
          'shut': 1,
          'misogynist': 1,
          'selfhelp': 1,
          'guru': 1,
          'teaches': 1,
          'seduce': 1,
          'destroy': 1,
          'sexual': 1,
          'vulgar': 1,
          'perspective': 1,
          'malefemale': 1,
          'relationships': 1,
          'overthetop': 1,
          'utterly': 1,
          'unbelievable': 1,
          'nmeanwhile': 1,
          'gator': 1,
          'philip': 1,
          'baker': 1,
          'hall': 1,
          'insider': 1,
          'nnot': 1,
          'physically': 1,
          'incapacitated': 1,
          'earl': 1,
          'still': 1,
          'able': 1,
          'perform': 1,
          'duties': 1,
          'lovable': 1,
          'host': 1,
          'longrunning': 1,
          'show': 1,
          'pits': 1,
          'adults': 1,
          'children': 1,
          'current': 1,
          'whizquizkid': 1,
          'spector': 1,
          'jeremy': 1,
          'blackman': 1,
          'debut': 1,
          'tired': 1,
          'pressure': 1,
          'performing': 1,
          'willing': 1,
          'call': 1,
          'quits': 1,
          'non': 1,
          'hand': 1,
          'kid': 1,
          'smith': 1,
          'william': 1,
          'macy': 1,
          'mystery': 1,
          'would': 1,
          'like': 1,
          'return': 1,
          'spotlight': 1,
          'somebody': 1,
          'pathetic': 1,
          'life': 1,
          'souring': 1,
          'longer': 1,
          'capitalize': 1,
          'brief': 1,
          '15': 1,
          'minutes': 1,
          'fame': 1,
          'eager': 1,
          'relinquish': 1,
          'njimmy': 1,
          'family': 1,
          'crisis': 1,
          'drugaddict': 1,
          'daughter': 1,
          'melora': 1,
          'walters': 1,
          'refuses': 1,
          'anything': 1,
          'reasons': 1,
          'disclosed': 1,
          'end': 1,
          'ngrabbing': 1,
          'last': 1,
          'attempt': 1,
          'happiness': 1,
          'reaches': 1,
          'softhearted': 1,
          'cop': 1,
          'john': 1,
          'c': 1,
          'reilly': 1,
          'never': 1,
          'kissed': 1,
          'tries': 1,
          'push': 1,
          'away': 1,
          'deems': 1,
          'worthy': 1,
          'affection': 1,
          'dysfunctional': 1,
          'group': 1,
          'carries': 1,
          'seems': 1,
          'interminable': 1,
          'twothirds': 1,
          'nand': 1,
          'gets': 1,
          'worse': 1,
          'literally': 1,
          'raining': 1,
          'nyes': 1,
          'nassuming': 1,
          'intended': 1,
          'deusexmachina': 1,
          'device': 1,
          'ineffective': 1,
          'doesnt': 1,
          'faze': 1,
          'characters': 1,
          'noh': 1,
          'step': 1,
          'gingerly': 1,
          'around': 1,
          'splattered': 1,
          'corpses': 1,
          'littering': 1,
          'streets': 1,
          'otherwise': 1,
          'shower': 1,
          'didnt': 1,
          'behavior': 1,
          'pattern': 1,
          'living': 1,
          'nthere': 1,
          'simply': 1,
          'going': 1,
          'distasteful': 1,
          'watch': 1,
          'nmr': 1,
          'obscures': 1,
          'incorporating': 1,
          'loud': 1,
          'intrusive': 1,
          'sound': 1,
          'track': 1,
          'often': 1,
          'drowned': 1,
          'dialogue': 1,
          'apparently': 1,
          'rapped': 1,
          'significant': 1,
          'clue': 1,
          'plot': 1,
          'development': 1,
          'completely': 1,
          'unintelligble': 1,
          'heavy': 1,
          'handed': 1,
          'segment': 1,
          'historical': 1,
          'occurances': 1,
          'containing': 1,
          'ironic': 1,
          'twists': 1,
          'set': 1,
          'absolutely': 1,
          'none': 1,
          'recurring': 1,
          'themes': 1,
          'found': 1,
          'line': 1,
          'quotes': 1,
          'absolute': 1,
          'lie': 1,
          'ngod': 1,
          'business': 1,
          'nin': 1,
          'fact': 1,
          'humbly': 1,
          'ask': 1,
          'repent': 1,
          'offending': 1,
          'mindset': 1,
          'gods': 1,
          'word': 1,
          'says': 1,
          'forgives': 1,
          'forgets': 1,
          'n': 1,
          'blotteth': 1,
          'transgressions': 1,
          'mine': 1,
          'sake': 1,
          'remember': 1,
          'nisaiah': 1,
          '43': 1,
          '25': 1,
          'kjv': 1,
          'keeps': 1,
          'bringing': 1,
          'unrighteous': 1,
          'wants': 1,
          'state': 1,
          'condemnation': 1,
          'ndont': 1,
          'let': 1,
          'nnext': 1,
          'adversary': 1,
          'reminds': 1,
          'great': 1,
          'pleasure': 1,
          'reminding': 1,
          'future': 1,
          'nhe': 1,
          'hates': 1,
          'nneg': 1}),
 Counter({'made': 6,
          'know': 6,
          'original': 5,
          'last': 5,
          'still': 5,
          'julie': 5,
          'sequel': 5,
          'summer': 4,
          'like': 4,
          'nit': 4,
          'horror': 3,
          'films': 3,
          'starting': 3,
          'movies': 3,
          'scream': 3,
          'film': 3,
          'characters': 3,
          'one': 3,
          'ben': 3,
          'fisherman': 3,
          'people': 3,
          'movie': 3,
          'every': 3,
          'returns': 2,
          'slasher': 2,
          'urban': 2,
          'legend': 2,
          'exact': 2,
          'suspense': 2,
          'since': 2,
          'willis': 2,
          'friends': 2,
          'nsince': 2,
          'although': 2,
          'nwhen': 2,
          'karla': 2,
          'brandy': 2,
          'also': 2,
          'boyfriend': 2,
          'open': 2,
          'fan': 2,
          'nwhile': 2,
          'story': 2,
          'speak': 2,
          'ideas': 2,
          'minutes': 2,
          'nalso': 2,
          'character': 2,
          'died': 2,
          'come': 2,
          'first': 2,
          'everyone': 2,
          'much': 1,
          'sweet': 1,
          'nafter': 1,
          'smart': 1,
          'exploitative': 1,
          '80s': 1,
          '1996s': 1,
          'followed': 1,
          '2': 1,
          'bound': 1,
          'sooner': 1,
          'late': 1,
          'perfect': 1,
          'example': 1,
          'reason': 1,
          'temporarily': 1,
          'burned': 1,
          'reached': 1,
          'lowestcommondenominator': 1,
          'filmmaking': 1,
          'favoring': 1,
          'nonstop': 1,
          'deaths': 1,
          'gore': 1,
          'trading': 1,
          'fleshed': 1,
          'likable': 1,
          'onedimensional': 1,
          'nitwits': 1,
          'exactly': 1,
          'year': 1,
          'james': 1,
          'jennifer': 1,
          'love': 1,
          'hewitt': 1,
          'suffered': 1,
          'ordeal': 1,
          'terrorized': 1,
          'psychopathic': 1,
          'accidentally': 1,
          'hit': 1,
          'middle': 1,
          'road': 1,
          'thinking': 1,
          'dead': 1,
          'dumped': 1,
          'ocean': 1,
          'relocated': 1,
          'boston': 1,
          'university': 1,
          'often': 1,
          'paranoid': 1,
          'haunted': 1,
          'bad': 1,
          'dreams': 1,
          'able': 1,
          'put': 1,
          'life': 1,
          'back': 1,
          'together': 1,
          'julies': 1,
          'friend': 1,
          'called': 1,
          'radio': 1,
          'station': 1,
          'answers': 1,
          'correctly': 1,
          'capital': 1,
          'brazil': 1,
          'wins': 1,
          'vacation': 1,
          'bahamas': 1,
          'four': 1,
          'includes': 1,
          'karlas': 1,
          'horny': 1,
          'tyrell': 1,
          'mekhi': 1,
          'phifer': 1,
          'matthew': 1,
          'settle': 1,
          'sets': 1,
          'ray': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'returning': 1,
          'doesnt': 1,
          'show': 1,
          'reach': 1,
          'secluded': 1,
          'island': 1,
          'discover': 1,
          'day': 1,
          'season': 1,
          'stranded': 1,
          '4th': 1,
          'july': 1,
          'weekend': 1,
          'employees': 1,
          'fend': 1,
          'violent': 1,
          'storm': 1,
          'headed': 1,
          'nof': 1,
          'course': 1,
          'workers': 1,
          'arent': 1,
          'ones': 1,
          'murderous': 1,
          'dressed': 1,
          'garb': 1,
          'seek': 1,
          'revenge': 1,
          'sad': 1,
          'state': 1,
          'affairs': 1,
          'ni': 1,
          'big': 1,
          'especially': 1,
          'disheartening': 1,
          'find': 1,
          'ikwydls': 1,
          'almost': 1,
          'replica': 1,
          'friday': 1,
          '13th': 1,
          'focused': 1,
          'well': 1,
          'genuinely': 1,
          'suspenseful': 1,
          'moments': 1,
          'thanks': 1,
          'screenplay': 1,
          'kevin': 1,
          'williamson': 1,
          'didnt': 1,
          'return': 1,
          'write': 1,
          'shows': 1,
          'nhas': 1,
          'vacuous': 1,
          'filmmakers': 1,
          'forced': 1,
          'murder': 1,
          'occur': 1,
          'five': 1,
          'keep': 1,
          'audience': 1,
          'interested': 1,
          'gone': 1,
          'signs': 1,
          'development': 1,
          'single': 1,
          'got': 1,
          'left': 1,
          'stare': 1,
          'screen': 1,
          'indifferent': 1,
          'going': 1,
          'cared': 1,
          'fates': 1,
          'difference': 1,
          'lived': 1,
          'nthey': 1,
          'paperthin': 1,
          'pointless': 1,
          'except': 1,
          'become': 1,
          'victims': 1,
          'lethal': 1,
          'hook': 1,
          'nanother': 1,
          'element': 1,
          'memorable': 1,
          'superbly': 1,
          'crafted': 1,
          'setpieces': 1,
          'store': 1,
          'sequence': 1,
          'sarah': 1,
          'michelle': 1,
          'gellar': 1,
          'none': 1,
          'close': 1,
          'moment': 1,
          'many': 1,
          'killed': 1,
          'couple': 1,
          'scares': 1,
          'evaporated': 1,
          'faster': 1,
          'salt': 1,
          'water': 1,
          'note': 1,
          'mystery': 1,
          'second': 1,
          'killer': 1,
          'accomplice': 1,
          'obvious': 1,
          'frame': 1,
          'couldnt': 1,
          'even': 1,
          'fun': 1,
          'figures': 1,
          'get': 1,
          'recognition': 1,
          'would': 1,
          'along': 1,
          'ruin': 1,
          'else': 1,
          'nmaybe': 1,
          'realized': 1,
          'order': 1,
          'make': 1,
          'good': 1,
          'must': 1,
          'screenplayor': 1,
          'least': 1,
          'isnt': 1,
          'black': 1,
          'hole': 1,
          'thoughts': 1,
          'nthe': 1,
          'ending': 1,
          'inevitably': 1,
          'leaves': 1,
          'door': 1,
          'wide': 1,
          'third': 1,
          'part': 1,
          'judging': 1,
          'amazingly': 1,
          'lackluster': 1,
          'involved': 1,
          'quit': 1,
          'ahead': 1,
          'nneg': 1}),
 Counter({'pokemon': 9,
          'movie': 9,
          'film': 5,
          'good': 5,
          'fact': 4,
          'even': 4,
          'one': 4,
          'first': 4,
          'bad': 4,
          'much': 4,
          'animation': 4,
          'wasnt': 3,
          'big': 3,
          'nthe': 3,
          'end': 2,
          'really': 2,
          'nin': 2,
          'million': 2,
          'opening': 2,
          'almost': 2,
          'great': 2,
          'plot': 2,
          'ash': 2,
          'best': 2,
          'go': 2,
          'friends': 2,
          'neven': 2,
          'thin': 2,
          'nothing': 2,
          'thing': 2,
          'colors': 2,
          'titles': 2,
          'lame': 2,
          'like': 2,
          'still': 2,
          'better': 2,
          'around': 1,
          '1998': 1,
          'japanese': 1,
          'cartoon': 1,
          'came': 1,
          'usa': 1,
          'television': 1,
          'many': 1,
          'people': 1,
          'knew': 1,
          '1999': 1,
          'hit': 1,
          'kids': 1,
          'adults': 1,
          'alike': 1,
          'became': 1,
          'biggest': 1,
          'franchises': 1,
          'merchandise': 1,
          'seller': 1,
          'time': 1,
          'spawned': 1,
          'screen': 1,
          'adventure': 1,
          'nit': 1,
          'grossed': 1,
          '31': 1,
          'weekend': 1,
          'went': 1,
          'make': 1,
          '90': 1,
          'nfans': 1,
          'thought': 1,
          'second': 1,
          'craze': 1,
          '2000': 1,
          'far': 1,
          'inferior': 1,
          'original': 1,
          'animated': 1,
          'nfirst': 1,
          'isnt': 1,
          'guy': 1,
          'trying': 1,
          'destroy': 1,
          'ancient': 1,
          'never': 1,
          'seen': 1,
          'lugia': 1,
          'except': 1,
          'kethcum': 1,
          'worlds': 1,
          'trainer': 1,
          'must': 1,
          'try': 1,
          'stop': 1,
          'destroys': 1,
          'forever': 1,
          'nwell': 1,
          'course': 1,
          'followed': 1,
          'misty': 1,
          'brock': 1,
          'gary': 1,
          'pikachu': 1,
          'squirtle': 1,
          'charizard': 1,
          'usual': 1,
          'though': 1,
          'definately': 1,
          'enjoyable': 1,
          'wellmade': 1,
          'actual': 1,
          'storyline': 1,
          'nthis': 1,
          'new': 1,
          'however': 1,
          'garbage': 1,
          'storywise': 1,
          'comes': 1,
          'plush': 1,
          'ncompared': 1,
          'awfully': 1,
          'bland': 1,
          'tries': 1,
          'work': 1,
          'fails': 1,
          'miserably': 1,
          'every': 1,
          'corner': 1,
          'characters': 1,
          '1dimensional': 1,
          'story': 1,
          'chicken': 1,
          'broth': 1,
          'writing': 1,
          'called': 1,
          'action': 1,
          'scenes': 1,
          'extremely': 1,
          'falls': 1,
          'gets': 1,
          'chance': 1,
          'voices': 1,
          'arent': 1,
          'feels': 1,
          'stars': 1,
          'dont': 1,
          'want': 1,
          'tell': 1,
          'extremel': 1,
          'nwhich': 1,
          'certainly': 1,
          'going': 1,
          'although': 1,
          'disney': 1,
          'standards': 1,
          'interesting': 1,
          'cgis': 1,
          'colorful': 1,
          'jump': 1,
          'fast': 1,
          'seem': 1,
          'nicely': 1,
          'put': 1,
          'nwhy': 1,
          'got': 1,
          'treatment': 1,
          'question': 1,
          'answered': 1,
          'hopefully': 1,
          '3': 1,
          'next': 1,
          'year': 1,
          'trash': 1,
          'nfor': 1,
          'watch': 1,
          'nits': 1,
          'nneg': 1}),
 Counter({'stone': 3,
          'life': 3,
          'trys': 2,
          'allen': 2,
          'story': 2,
          'one': 2,
          'z': 2,
          'film': 2,
          'even': 2,
          'bugs': 2,
          'stupid': 1,
          'little': 1,
          'movie': 1,
          'clever': 1,
          'sophisticated': 1,
          'yet': 1,
          'bit': 1,
          'hard': 1,
          'nwith': 1,
          'voices': 1,
          'woody': 1,
          'gene': 1,
          'hackman': 1,
          'jennifer': 1,
          'lopez': 1,
          'sylvester': 1,
          'stallone': 1,
          'sharon': 1,
          'computeranimated': 1,
          'yakfest': 1,
          'think': 1,
          'toy': 1,
          '1996': 1,
          'filled': 1,
          'used': 1,
          'merchandising': 1,
          'anteaters': 1,
          'nthe': 1,
          'main': 1,
          'independence': 1,
          'worker': 1,
          'named': 1,
          'nhe': 1,
          'wants': 1,
          'digging': 1,
          'away': 1,
          'underground': 1,
          'colony': 1,
          'nwhen': 1,
          'finds': 1,
          'insectopia': 1,
          'mythical': 1,
          'place': 1,
          'insects': 1,
          'run': 1,
          'free': 1,
          'along': 1,
          'colonys': 1,
          'princess': 1,
          'journey': 1,
          'world': 1,
          'find': 1,
          'meaning': 1,
          'nabout': 1,
          '15': 1,
          'minutes': 1,
          'picture': 1,
          'began': 1,
          'wonder': 1,
          'point': 1,
          'nhalfway': 1,
          'still': 1,
          'didnt': 1,
          'answer': 1,
          'nby': 1,
          'end': 1,
          'credits': 1,
          'gave': 1,
          'ran': 1,
          'nantz': 1,
          'mindless': 1,
          'mess': 1,
          'poor': 1,
          'writing': 1,
          'poorer': 1,
          'voiceovers': 1,
          'nallen': 1,
          'nonchalant': 1,
          'would': 1,
          'guessed': 1,
          'hadnt': 1,
          'seen': 1,
          'mighty': 1,
          'basic': 1,
          'instinct': 1,
          'cant': 1,
          'act': 1,
          'cartoon': 1,
          'nthis': 1,
          'unfunny': 1,
          'extremely': 1,
          'dull': 1,
          'nhey': 1,
          'may': 1,
          'good': 1,
          'time': 1,
          'antz': 1,
          'nneg': 1}),
 Counter({'godzilla': 16,
          'one': 6,
          'nthe': 6,
          'n': 6,
          'nhe': 5,
          'new': 4,
          'made': 4,
          'film': 4,
          'nhis': 4,
          'first': 3,
          'three': 3,
          'nand': 3,
          'ni': 3,
          'good': 3,
          'makes': 3,
          'look': 3,
          'never': 3,
          'jurassic': 3,
          'park': 3,
          'films': 3,
          'would': 3,
          'city': 3,
          'name': 3,
          'know': 3,
          'become': 2,
          'long': 2,
          'creature': 2,
          'attack': 2,
          'pacific': 2,
          'islands': 2,
          'seen': 2,
          'broderick': 2,
          'u': 2,
          'military': 2,
          'year': 2,
          'boy': 2,
          'use': 2,
          'supposed': 2,
          'really': 2,
          'refuse': 2,
          'said': 2,
          'emmerich': 2,
          'needs': 2,
          'like': 2,
          'american': 2,
          'give': 2,
          'holds': 2,
          'anyone': 2,
          'size': 2,
          'looking': 2,
          'stop': 2,
          'na': 2,
          'ever': 2,
          'strikes': 2,
          'york': 2,
          'mayor': 2,
          'ebert': 2,
          'ngodzilla': 2,
          'run': 2,
          'raptors': 2,
          'running': 2,
          'oh': 2,
          'island': 2,
          'fish': 2,
          'thing': 2,
          'hollywood': 2,
          'youd': 2,
          'nat': 2,
          'zucker': 2,
          'jokes': 2,
          'nbut': 2,
          'nuclear': 1,
          'freak': 1,
          'lizard': 1,
          'mutated': 1,
          'years': 1,
          'species': 1,
          'foot': 1,
          'bus': 1,
          'claw': 1,
          'sign': 1,
          'nthis': 1,
          'aquatic': 1,
          'tore': 1,
          'ship': 1,
          'carried': 1,
          'dozens': 1,
          'japanese': 1,
          'men': 1,
          'none': 1,
          'survived': 1,
          'nonly': 1,
          'left': 1,
          'recount': 1,
          'terror': 1,
          'merely': 1,
          'able': 1,
          'repeat': 1,
          'words': 1,
          'introduces': 1,
          'us': 1,
          'matthew': 1,
          'biologist': 1,
          'studying': 1,
          'fascinating': 1,
          'growth': 1,
          'chernobyl': 1,
          'earthworms': 1,
          'theyre': 1,
          '17': 1,
          'larger': 1,
          'used': 1,
          'proclaims': 1,
          'pulls': 1,
          'project': 1,
          'assigns': 1,
          'figure': 1,
          'find': 1,
          'suck': 1,
          'hate': 1,
          'word': 1,
          'review': 1,
          'something': 1,
          'inform': 1,
          'audience': 1,
          'need': 1,
          'drive': 1,
          'home': 1,
          'explitives': 1,
          'nit': 1,
          'unbelieveable': 1,
          'producers': 1,
          'movie': 1,
          'saw': 1,
          'final': 1,
          'cut': 1,
          'ok': 1,
          'nits': 1,
          'great': 1,
          'nlets': 1,
          'show': 1,
          'puppy': 1,
          'nroland': 1,
          'horse': 1,
          'whipping': 1,
          'latest': 1,
          'piece': 1,
          'trash': 1,
          'id4': 1,
          'masterpiece': 1,
          'modern': 1,
          'cinema': 1,
          'steven': 1,
          'spielberg': 1,
          'team': 1,
          'talentchallenged': 1,
          'imbeciles': 1,
          'clue': 1,
          'nlet': 1,
          'examples': 1,
          'terrible': 1,
          'attempt': 1,
          'filmmaking': 1,
          'plan': 1,
          'giving': 1,
          'things': 1,
          'away': 1,
          'nbelive': 1,
          'surprises': 1,
          'iq': 1,
          'higher': 1,
          'shoe': 1,
          'nworries': 1,
          'nhowever': 1,
          'time': 1,
          'thrill': 1,
          'let': 1,
          'favor': 1,
          'means': 1,
          'reading': 1,
          'next': 1,
          'num': 1,
          'map': 1,
          'handy': 1,
          'nb': 1,
          'heavy': 1,
          'set': 1,
          'individual': 1,
          'parted': 1,
          'gray': 1,
          'hair': 1,
          'thick': 1,
          'glasses': 1,
          'assistant': 1,
          'named': 1,
          'gene': 1,
          'ngene': 1,
          'gives': 1,
          'thumbs': 1,
          'end': 1,
          'couldnt': 1,
          'make': 1,
          'tried': 1,
          'folks': 1,
          'nc': 1,
          'stay': 1,
          'nok': 1,
          'torpedoes': 1,
          'nhank': 1,
          'azaria': 1,
          'babies': 1,
          'nd': 1,
          'upon': 1,
          'realization': 1,
          'disappeared': 1,
          'rampant': 1,
          'decides': 1,
          'might': 1,
          'hiding': 1,
          'building': 1,
          'ne': 1,
          'yeah': 1,
          'go': 1,
          'way': 1,
          'e': 1,
          'manhattan': 1,
          'nmanhattan': 1,
          'approximately': 1,
          'san': 1,
          'francisco': 1,
          'million': 1,
          'people': 1,
          'nthey': 1,
          'evactuate': 1,
          'jersey': 1,
          'day': 1,
          'nno': 1,
          'problem': 1,
          'nf': 1,
          'early': 1,
          'bait': 1,
          'likes': 1,
          'atlantic': 1,
          'ocean': 1,
          'steps': 1,
          'east': 1,
          'pile': 1,
          'whole': 1,
          'bunch': 1,
          'grouper': 1,
          'fifth': 1,
          '57th': 1,
          'nhes': 1,
          'gon': 1,
          'come': 1,
          'ng': 1,
          'nill': 1,
          'list': 1,
          'nalphabet': 1,
          'isnt': 1,
          'big': 1,
          'enough': 1,
          'anyway': 1,
          'dialogue': 1,
          'wonder': 1,
          'producer': 1,
          'dean': 1,
          'devlin': 1,
          'five': 1,
          'old': 1,
          'rewrite': 1,
          'kid': 1,
          'must': 1,
          'nmaria': 1,
          'pitillo': 1,
          'starring': 1,
          'potential': 1,
          'blockbuster': 1,
          'nbad': 1,
          'move': 1,
          'maria': 1,
          'nacting': 1,
          'doesnt': 1,
          'get': 1,
          'much': 1,
          'worse': 1,
          'turn': 1,
          'brodericks': 1,
          'exflame': 1,
          'nmatthew': 1,
          'actor': 1,
          'chance': 1,
          'njean': 1,
          'reno': 1,
          'pick': 1,
          'bit': 1,
          'carefully': 1,
          'times': 1,
          'seems': 1,
          'headed': 1,
          'toward': 1,
          'abrahams': 1,
          'airplane': 1,
          'naked': 1,
          'gun': 1,
          'indeed': 1,
          'bad': 1,
          'think': 1,
          'filmmakers': 1,
          'fun': 1,
          'take': 1,
          'seriously': 1,
          'nhow': 1,
          'dare': 1,
          'better': 1,
          'thrown': 1,
          'visual': 1,
          'sight': 1,
          'gags': 1,
          'fart': 1,
          'least': 1,
          'laugh': 1,
          'neach': 1,
          'every': 1,
          'character': 1,
          'beyond': 1,
          'stupid': 1,
          'pulling': 1,
          'beast': 1,
          'kill': 1,
          'nemmerich': 1,
          'though': 1,
          'ive': 1,
          'idea': 1,
          'intentional': 1,
          'sympathize': 1,
          'attackers': 1,
          'damn': 1,
          'dumb': 1,
          'felt': 1,
          'sorry': 1,
          'pelted': 1,
          'bullets': 1,
          'missles': 1,
          'feel': 1,
          'even': 1,
          'sorrier': 1,
          'famous': 1,
          'always': 1,
          'attatched': 1,
          'worst': 1,
          'produced': 1,
          'nneg': 1}),
 Counter({'bugs': 8,
          'life': 7,
          'film': 5,
          'story': 5,
          'last': 4,
          'animated': 3,
          'two': 3,
          'n': 3,
          'toy': 3,
          'year': 3,
          'nthe': 3,
          'films': 3,
          'movie': 2,
          'considering': 2,
          'insect': 2,
          'antz': 2,
          'ni': 2,
          'yet': 2,
          'best': 2,
          '1995s': 2,
          'even': 2,
          'nflik': 2,
          'david': 2,
          'ant': 2,
          'many': 2,
          'hopper': 2,
          'one': 2,
          'thing': 2,
          'without': 2,
          'characters': 2,
          'disney': 2,
          'christmas': 2,
          'recent': 1,
          'debacles': 1,
          'rugrats': 1,
          'seriously': 1,
          'raising': 1,
          'highly': 1,
          'negative': 1,
          'rating': 1,
          'dreamworks': 1,
          'october': 1,
          'hated': 1,
          'much': 1,
          'better': 1,
          'latest': 1,
          'excursions': 1,
          'second': 1,
          'months': 1,
          'hoped': 1,
          'done': 1,
          'wonderful': 1,
          'style': 1,
          'pixars': 1,
          'way': 1,
          'remotely': 1,
          'match': 1,
          'foley': 1,
          'along': 1,
          'comrades': 1,
          'job': 1,
          'every': 1,
          'gathering': 1,
          'seasonal': 1,
          'harvest': 1,
          'give': 1,
          'half': 1,
          'away': 1,
          'dominating': 1,
          'grasshoppers': 1,
          'led': 1,
          'kevin': 1,
          'spacey': 1,
          'however': 1,
          'feels': 1,
          'alone': 1,
          'unwanted': 1,
          'world': 1,
          'especially': 1,
          'accidentally': 1,
          'loses': 1,
          'food': 1,
          'ants': 1,
          'threated': 1,
          'gather': 1,
          'whole': 1,
          'seasons': 1,
          'load': 1,
          'time': 1,
          'summer': 1,
          'leaf': 1,
          'falls': 1,
          'trees': 1,
          'nbanished': 1,
          'island': 1,
          'flik': 1,
          'leaves': 1,
          'colony': 1,
          'search': 1,
          'strong': 1,
          'reinforcement': 1,
          'help': 1,
          'misunderstanding': 1,
          'returns': 1,
          'handful': 1,
          'helpless': 1,
          'circus': 1,
          'including': 1,
          'walking': 1,
          'stick': 1,
          'hyde': 1,
          'pierce': 1,
          'dung': 1,
          'beetle': 1,
          'brad': 1,
          'garrett': 1,
          'gypsy': 1,
          'moth': 1,
          'madeline': 1,
          'kahn': 1,
          'male': 1,
          'ladybug': 1,
          'denis': 1,
          'leary': 1,
          'caterpillar': 1,
          'joe': 1,
          'ranft': 1,
          'going': 1,
          'nonly': 1,
          'nwith': 1,
          'glorious': 1,
          'bright': 1,
          'colors': 1,
          'computergenerated': 1,
          'animation': 1,
          'spectacle': 1,
          'look': 1,
          'unfortunately': 1,
          'lifeless': 1,
          'unamusing': 1,
          'contraption': 1,
          'flair': 1,
          'excitement': 1,
          'assortment': 1,
          'either': 1,
          'unlikable': 1,
          'dull': 1,
          'insects': 1,
          'charm': 1,
          'personality': 1,
          'stand': 1,
          'around': 1,
          'recite': 1,
          'arbitrary': 1,
          'thoroughly': 1,
          'unfunny': 1,
          'oneliners': 1,
          'thin': 1,
          'also': 1,
          'stretched': 1,
          'nearly': 1,
          'unbearable': 1,
          '94': 1,
          'minutes': 1,
          'often': 1,
          'felt': 1,
          'ran': 1,
          'ideas': 1,
          'throughout': 1,
          'made': 1,
          'pointless': 1,
          'scenes': 1,
          'pass': 1,
          'timefiller': 1,
          'nafter': 1,
          'giving': 1,
          'scathing': 1,
          'reviews': 1,
          'beginning': 1,
          'think': 1,
          'simply': 1,
          'outgrown': 1,
          'realized': 1,
          'still': 1,
          'adore': 1,
          'almost': 1,
          'older': 1,
          'newer': 1,
          'ones': 1,
          '1989s': 1,
          'little': 1,
          'mermaid': 1,
          '1991s': 1,
          'beauty': 1,
          'beast': 1,
          '1993s': 1,
          'nightmare': 1,
          'yes': 1,
          'nmaybe': 1,
          'bad': 1,
          'childrens': 1,
          'hopefully': 1,
          'upcoming': 1,
          'prince': 1,
          'egypt': 1,
          'disappointment': 1,
          'nas': 1,
          'enjoy': 1,
          'anything': 1,
          'nnot': 1,
          'voiceover': 1,
          'work': 1,
          'far': 1,
          'lively': 1,
          'goes': 1,
          'another': 1,
          'failure': 1,
          'sad': 1,
          'state': 1,
          'affairs': 1,
          'years': 1,
          'minor': 1,
          'jonathan': 1,
          'taylor': 1,
          'thomas': 1,
          'picture': 1,
          'ill': 1,
          'home': 1,
          'nneg': 1}),
 Counter({'van': 8,
          'action': 8,
          'damme': 7,
          'like': 4,
          'plot': 4,
          'time': 3,
          'nthe': 3,
          'movie': 3,
          'nand': 3,
          'nknock': 3,
          'even': 3,
          'nit': 3,
          'camera': 3,
          'ni': 3,
          'upon': 2,
          'hollywood': 2,
          'mindless': 2,
          'films': 2,
          'watching': 2,
          'become': 2,
          'enjoy': 2,
          'counterfeit': 2,
          'jeans': 2,
          'working': 2,
          'annoying': 2,
          'mole': 2,
          'nim': 2,
          'next': 2,
          'really': 2,
          'weapons': 2,
          'nhe': 2,
          'stoops': 2,
          'low': 2,
          'nif': 2,
          'knock': 2,
          'ridiculous': 2,
          'could': 2,
          'rather': 2,
          'us': 2,
          'suppose': 2,
          'much': 2,
          'say': 2,
          'har': 2,
          'jeanclaude': 1,
          'decent': 1,
          'hero': 1,
          'muscles': 1,
          'brussels': 1,
          'bursted': 1,
          'market': 1,
          'adventure': 1,
          'boasting': 1,
          'spectacular': 1,
          'martialarts': 1,
          'ability': 1,
          'nsome': 1,
          'excursions': 1,
          'fun': 1,
          'nbut': 1,
          'seems': 1,
          'painful': 1,
          'chore': 1,
          'rewards': 1,
          'virtually': 1,
          'guaranteed': 1,
          'helping': 1,
          'mindnumbing': 1,
          'goes': 1,
          'sour': 1,
          'left': 1,
          'nill': 1,
          'explain': 1,
          'pair': 1,
          'salesmen': 1,
          'office': 1,
          'hong': 1,
          'kong': 1,
          'nmarcus': 1,
          'ray': 1,
          'babemagnet': 1,
          'stylish': 1,
          'dresser': 1,
          'heads': 1,
          'company': 1,
          'weasel': 1,
          'partner': 1,
          'rob': 1,
          'schneider': 1,
          'nthey': 1,
          'part': 1,
          'involving': 1,
          'microbombs': 1,
          'implanted': 1,
          'seemingly': 1,
          'business': 1,
          'going': 1,
          'reveal': 1,
          'everything': 1,
          'paragraph': 1,
          'want': 1,
          'review': 1,
          'devoid': 1,
          'spoilers': 1,
          'skip': 1,
          'onto': 1,
          'one': 1,
          'quite': 1,
          'sure': 1,
          'gives': 1,
          'crap': 1,
          'ill': 1,
          'issue': 1,
          'warning': 1,
          'anyhow': 1,
          'ntommy': 1,
          'cia': 1,
          'nhis': 1,
          'boss': 1,
          'hammy': 1,
          'flat': 1,
          'paul': 1,
          'sorvino': 1,
          'wants': 1,
          'cause': 1,
          'carnage': 1,
          'tiny': 1,
          'immensely': 1,
          'powerful': 1,
          'super': 1,
          'put': 1,
          'childrens': 1,
          'toys': 1,
          'thought': 1,
          'outline': 1,
          'sounded': 1,
          'intriguing': 1,
          'probably': 1,
          'think': 1,
          'setup': 1,
          'couldnt': 1,
          'fill': 1,
          'five': 1,
          'minutes': 1,
          'screen': 1,
          'without': 1,
          'causing': 1,
          'roll': 1,
          'laughing': 1,
          'might': 1,
          'cup': 1,
          'tea': 1,
          'sucks': 1,
          'levels': 1,
          'individuals': 1,
          'conjure': 1,
          'horrific': 1,
          'nightmares': 1,
          'amazes': 1,
          'far': 1,
          'producers': 1,
          'go': 1,
          'sell': 1,
          'something': 1,
          'simply': 1,
          'star': 1,
          'pathetic': 1,
          'garbage': 1,
          'strung': 1,
          'together': 1,
          'inane': 1,
          'sequences': 1,
          'baffle': 1,
          'mind': 1,
          'performances': 1,
          'wooden': 1,
          'use': 1,
          'row': 1,
          'canoe': 1,
          'absolute': 1,
          'catastrophe': 1,
          'ndirector': 1,
          'tsui': 1,
          'hark': 1,
          'teamed': 1,
          'superior': 1,
          'still': 1,
          'lamebrained': 1,
          'double': 1,
          'team': 1,
          'helm': 1,
          'would': 1,
          'attempt': 1,
          'dazzle': 1,
          'fantastic': 1,
          'angles': 1,
          'engage': 1,
          'enjoyed': 1,
          'work': 1,
          'incessant': 1,
          'desperation': 1,
          'made': 1,
          'nauseous': 1,
          'picture': 1,
          'freezes': 1,
          'middle': 1,
          'sequence': 1,
          'speeds': 1,
          'altered': 1,
          'consistently': 1,
          'tricks': 1,
          'mostly': 1,
          'apply': 1,
          'traveling': 1,
          'gun': 1,
          'barrels': 1,
          'fired': 1,
          'sounds': 1,
          'cool': 1,
          'ntrust': 1,
          'isnt': 1,
          'nas': 1,
          'scars': 1,
          'terrible': 1,
          'nsure': 1,
          'lots': 1,
          'fancy': 1,
          'kickboxing': 1,
          'moves': 1,
          'dodges': 1,
          'giant': 1,
          'crates': 1,
          'greatest': 1,
          'ease': 1,
          'looks': 1,
          'hes': 1,
          'bad': 1,
          'impersonation': 1,
          'jackie': 1,
          'chan': 1,
          'performance': 1,
          'stiff': 1,
          'tired': 1,
          'hate': 1,
          'perhaps': 1,
          'mr': 1,
          'give': 1,
          'day': 1,
          'job': 1,
          'nits': 1,
          'test': 1,
          'endurance': 1,
          'theres': 1,
          'enjoyment': 1,
          'derived': 1,
          'schneiders': 1,
          'character': 1,
          'extremely': 1,
          'provides': 1,
          'better': 1,
          'moments': 1,
          'beautiful': 1,
          'lela': 1,
          'rochon': 1,
          'nhopefully': 1,
          'grabbed': 1,
          'paycheck': 1,
          'fled': 1,
          'premises': 1,
          'olympic': 1,
          'sprinter': 1,
          'doesnt': 1,
          'stand': 1,
          'strong': 1,
          'entertaining': 1,
          'film': 1,
          'handful': 1,
          'dammes': 1,
          'others': 1,
          'nno': 1,
          'embarrassment': 1,
          'entire': 1,
          'genre': 1,
          'modern': 1,
          'filmmaking': 1,
          'considering': 1,
          'stooped': 1,
          'late': 1,
          'department': 1,
          'certainly': 1,
          'saying': 1,
          'nnote': 1,
          'self': 1,
          'avoid': 1,
          'universal': 1,
          'soldier': 1,
          '2': 1,
          'return': 1,
          'release': 1,
          'august': 1,
          '99': 1,
          'nneg': 1}),
 Counter({'film': 4,
          'museum': 3,
          'movie': 3,
          'relic': 2,
          'scream': 2,
          'creature': 2,
          'goes': 2,
          'even': 2,
          'quite': 2,
          'hard': 2,
          'miller': 2,
          'oscar': 2,
          'scene': 2,
          'horror': 2,
          'cliches': 2,
          'one': 2,
          'stall': 2,
          'runs': 2,
          'year': 1,
          'barely': 1,
          'week': 1,
          'old': 1,
          'already': 1,
          'candidate': 1,
          'worst': 1,
          '1997the': 1,
          'wouldbe': 1,
          'chiller': 1,
          'thats': 1,
          'successful': 1,
          'making': 1,
          'audience': 1,
          'laugh': 1,
          'nin': 1,
          'ridiculous': 1,
          'uberhack': 1,
          'peter': 1,
          'hyams': 1,
          'whose': 1,
          'last': 1,
          'two': 1,
          'pictures': 1,
          'dreadful': 1,
          'jeanclaude': 1,
          'van': 1,
          'damme': 1,
          'vehicles': 1,
          'feeds': 1,
          'hypothalamuses': 1,
          'hypothalamii': 1,
          'humans': 1,
          'animals': 1,
          'killing': 1,
          'spree': 1,
          'chicago': 1,
          'nhow': 1,
          'come': 1,
          'existence': 1,
          'feed': 1,
          'hormones': 1,
          'nthe': 1,
          'scientific': 1,
          'explanation': 1,
          'cooked': 1,
          'fouryes': 1,
          'fourcredited': 1,
          'screenwriters': 1,
          'amy': 1,
          'holden': 1,
          'jones': 1,
          'john': 1,
          'raffo': 1,
          'rick': 1,
          'jaffa': 1,
          'amanda': 1,
          'silver': 1,
          'takes': 1,
          'suspension': 1,
          'disbelief': 1,
          'new': 1,
          'heights': 1,
          'monster': 1,
          'standards': 1,
          'nbut': 1,
          'cockamamie': 1,
          'science': 1,
          'isnt': 1,
          'swallow': 1,
          'casting': 1,
          'clueless': 1,
          'penelope': 1,
          'ann': 1,
          'brilliant': 1,
          'molecular': 1,
          'biologist': 1,
          'specializes': 1,
          'evolutionary': 1,
          'genetics': 1,
          'nmiller': 1,
          'acts': 1,
          'wants': 1,
          'nomination': 1,
          'turning': 1,
          'every': 1,
          'requires': 1,
          'slightest': 1,
          'display': 1,
          'emotion': 1,
          'overblown': 1,
          'clip': 1,
          'complete': 1,
          'piercing': 1,
          'wails': 1,
          'glycerine': 1,
          'tears': 1,
          'ngive': 1,
          'penelopeits': 1,
          '_monster_movie_': 1,
          'non': 1,
          'flip': 1,
          'side': 1,
          'tom': 1,
          'sizemore': 1,
          'phones': 1,
          'performance': 1,
          'police': 1,
          'lieutenant': 1,
          'role': 1,
          'thankless': 1,
          'imagine': 1,
          'played': 1,
          'effectively': 1,
          'nits': 1,
          'funny': 1,
          'see': 1,
          'indulge': 1,
          'straightest': 1,
          'faces': 1,
          'cheesy': 1,
          'wes': 1,
          'craven': 1,
          'lampooned': 1,
          'well': 1,
          'recently': 1,
          'nfor': 1,
          'example': 1,
          'early': 1,
          'security': 1,
          'guard': 1,
          'bathroom': 1,
          'late': 1,
          'night': 1,
          'nok': 1,
          'know': 1,
          'whats': 1,
          'coming': 1,
          'didnt': 1,
          'need': 1,
          'confirmation': 1,
          'pulls': 1,
          'joint': 1,
          'starts': 1,
          'puffing': 1,
          'away': 1,
          'neveryone': 1,
          'knows': 1,
          'happens': 1,
          'people': 1,
          'drugs': 1,
          'scary': 1,
          'nand': 1,
          'later': 1,
          'frantically': 1,
          'exhibit': 1,
          'hears': 1,
          'suspicious': 1,
          'heavy': 1,
          'breathing': 1,
          'ndoes': 1,
          'make': 1,
          'beeline': 1,
          'front': 1,
          'door': 1,
          'nof': 1,
          'course': 1,
          'notshe': 1,
          'ladies': 1,
          'room': 1,
          'cowers': 1,
          'nwith': 1,
          'fitting': 1,
          'films': 1,
          'climax': 1,
          'offers': 1,
          'perhaps': 1,
          'overused': 1,
          'recent': 1,
          'someone': 1,
          'outrunning': 1,
          'fireball': 1,
          'nif': 1,
          'truly': 1,
          'next': 1,
          'evolution': 1,
          'terror': 1,
          'poster': 1,
          'states': 1,
          'filmand': 1,
          'humanityis': 1,
          'worse': 1,
          'shape': 1,
          'thought': 1,
          'nneg': 1}),
 Counter({'two': 3,
          'play': 2,
          'game': 2,
          'success': 2,
          'romantic': 2,
          'shante': 2,
          'smith': 2,
          'robinson': 2,
          'man': 2,
          'rules': 2,
          'love': 2,
          'brown': 2,
          'day': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'screen': 1,
          'gems': 1,
          'nsince': 1,
          'waiting': 1,
          'exhale': 1,
          'several': 1,
          'comedies': 1,
          'africanamerican': 1,
          'professionals': 1,
          'nthis': 1,
          'female': 1,
          'revenge': 1,
          'fantasy': 1,
          'vivica': 1,
          'fox': 1,
          'plays': 1,
          'stunning': 1,
          'ad': 1,
          'exec': 1,
          'seems': 1,
          'reached': 1,
          'pinnacle': 1,
          'mansion': 1,
          'sporty': 1,
          'car': 1,
          'idyllic': 1,
          'relationship': 1,
          'hunky': 1,
          'hotshot': 1,
          'lawyer': 1,
          'morris': 1,
          'chestnut': 1,
          'nshes': 1,
          'point': 1,
          'life': 1,
          'dispenses': 1,
          'advice': 1,
          'grateful': 1,
          'girlfriends': 1,
          'monique': 1,
          'wendy': 1,
          'racquel': 1,
          'tamala': 1,
          'jones': 1,
          'n': 1,
          'messes': 1,
          'matter': 1,
          'small': 1,
          'smugly': 1,
          'decrees': 1,
          'yuh': 1,
          'gots': 1,
          'punish': 1,
          'nso': 1,
          'catches': 1,
          'hot': 1,
          'dancing': 1,
          'bar': 1,
          'smart': 1,
          'sexy': 1,
          'rival': 1,
          'gabrielle': 1,
          'union': 1,
          'devises': 1,
          'version': 1,
          '10day': 1,
          'tough': 1,
          'emotionally': 1,
          'punishing': 1,
          'plan': 1,
          'get': 1,
          'back': 1,
          'nunfortunately': 1,
          'writerdirector': 1,
          'mark': 1,
          'player': 1,
          'breaks': 1,
          'cardinal': 1,
          'rule': 1,
          'comedy': 1,
          'like': 1,
          'protagonist': 1,
          'shrill': 1,
          'selfcongratulatory': 1,
          'smirking': 1,
          'superficial': 1,
          'spiteful': 1,
          'shrew': 1,
          'doesnt': 1,
          'realize': 1,
          'rational': 1,
          'always': 1,
          'applied': 1,
          'nhaving': 1,
          'talk': 1,
          'directly': 1,
          'camera': 1,
          'gets': 1,
          'stale': 1,
          'quickly': 1,
          'one': 1,
          'titlecard': 1,
          'device': 1,
          'underscores': 1,
          'tedium': 1,
          'ncomic': 1,
          'anthony': 1,
          'anderson': 1,
          'scores': 1,
          'chestnuts': 1,
          'boisterous': 1,
          'bestfriend': 1,
          'singer': 1,
          'bobby': 1,
          'cameo': 1,
          'scuzzy': 1,
          'mechanic': 1,
          'whos': 1,
          'given': 1,
          'smooth': 1,
          'makeover': 1,
          'ms': 1,
          'nbut': 1,
          'outtakes': 1,
          'closing': 1,
          'credits': 1,
          'contain': 1,
          'humor': 1,
          'film': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'smarmy': 1,
          'slick': 1,
          '4': 1,
          'filled': 1,
          'misogynistic': 1,
          'attitude': 1,
          'blatant': 1,
          'product': 1,
          'placements': 1,
          'cocacola': 1,
          'miller': 1,
          'genuine': 1,
          'draft': 1,
          'little': 1,
          'else': 1,
          'nin': 1,
          'rrated': 1,
          'explicit': 1,
          'sexual': 1,
          'language': 1,
          'pseudohip': 1,
          'battle': 1,
          'sexes': 1,
          'audience': 1,
          'loses': 1,
          'nneg': 1}),
 Counter({'n': 3,
          'carey': 3,
          'glitter': 2,
          'mariah': 2,
          'nshe': 2,
          'got': 2,
          'says': 2,
          'max': 2,
          'beesley': 2,
          'director': 2,
          'wear': 2,
          'audience': 2,
          'ms': 2,
          '1': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          '20th': 1,
          'centuryfox': 1,
          'ntheres': 1,
          'less': 1,
          'meets': 1,
          'eye': 1,
          'put': 1,
          'way': 1,
          'thought': 1,
          'madonna': 1,
          'awful': 1,
          'shanghai': 1,
          'surprise': 1,
          'careys': 1,
          'worse': 1,
          'reworking': 1,
          'star': 1,
          'born': 1,
          'plays': 1,
          'billie': 1,
          'frank': 1,
          'despite': 1,
          'abandoned': 1,
          'singeralcoholic': 1,
          'mother': 1,
          'valerie': 1,
          'pettiford': 1,
          'believes': 1,
          'shes': 1,
          'destined': 1,
          'greatness': 1,
          'everyone': 1,
          'tells': 1,
          'youve': 1,
          'amazing': 1,
          'gift': 1,
          'ta': 1,
          'use': 1,
          'roommate': 1,
          'voice': 1,
          'incredible': 1,
          'another': 1,
          'singer': 1,
          'aint': 1,
          'never': 1,
          'met': 1,
          'anyone': 1,
          'like': 1,
          'proclaims': 1,
          'julian': 1,
          'dice': 1,
          'black': 1,
          'hot': 1,
          'new': 1,
          'york': 1,
          'dj': 1,
          'becomes': 1,
          'svengalilike': 1,
          'producerlover': 1,
          'nproblem': 1,
          'signature': 1,
          'song': 1,
          'didnt': 1,
          'mean': 1,
          'turn': 1,
          'wretched': 1,
          'nand': 1,
          'fumes': 1,
          'filming': 1,
          'first': 1,
          'music': 1,
          'video': 1,
          'wants': 1,
          'exploit': 1,
          'bikini': 1,
          'bursts': 1,
          'laughter': 1,
          'nexploit': 1,
          'chooses': 1,
          'little': 1,
          'law': 1,
          'allow': 1,
          'ncome': 1,
          'nwriter': 1,
          'kate': 1,
          'laniers': 1,
          'script': 1,
          'fatuous': 1,
          'vondie': 1,
          'curtishall': 1,
          'doesnt': 1,
          'clue': 1,
          'handle': 1,
          'glitzy': 1,
          'pop': 1,
          'diva': 1,
          'result': 1,
          'incompetence': 1,
          'whisperyvoiced': 1,
          'seems': 1,
          'embarrassed': 1,
          'onscreen': 1,
          'almost': 1,
          'cringes': 1,
          'camera': 1,
          'comes': 1,
          'closeup': 1,
          'pursing': 1,
          'lips': 1,
          'averting': 1,
          'glassy': 1,
          'eyes': 1,
          'ntalented': 1,
          'british': 1,
          'musician': 1,
          'appears': 1,
          'equally': 1,
          'inept': 1,
          'cinematographer': 1,
          'geoffrey': 1,
          'simpson': 1,
          'pans': 1,
          'around': 1,
          'manhattan': 1,
          'skyline': 1,
          'theres': 1,
          'audible': 1,
          'groan': 1,
          'twin': 1,
          'towers': 1,
          'world': 1,
          'trade': 1,
          'center': 1,
          'come': 1,
          'view': 1,
          'nperhaps': 1,
          'one': 1,
          'reasons': 1,
          'suffered': 1,
          'highlypublicized': 1,
          'nervous': 1,
          'breakdown': 1,
          'summer': 1,
          'saw': 1,
          'preview': 1,
          'clunker': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '10': 1,
          'pathetic': 1,
          'nright': 1,
          'tops': 1,
          'list': 1,
          'worst': 1,
          '2001': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'like': 5,
          'seem': 4,
          'father': 4,
          'show': 4,
          'eve': 4,
          'three': 3,
          'neve': 3,
          'lou': 3,
          'hollywood': 3,
          'life': 3,
          'sisters': 3,
          'georgia': 3,
          'maddy': 3,
          'business': 3,
          'n': 3,
          'nthe': 3,
          'selfish': 3,
          'mother': 3,
          'hanging': 2,
          'daughters': 2,
          'movie': 2,
          'scenes': 2,
          'nso': 2,
          'collaborated': 2,
          'wife': 2,
          'writing': 2,
          'film': 2,
          'senile': 2,
          'diane': 2,
          'keaton': 2,
          'lisa': 2,
          'devoted': 2,
          'events': 2,
          'ntheres': 2,
          'king': 2,
          'material': 2,
          'ephron': 2,
          'house': 2,
          'looks': 2,
          'magazine': 2,
          'credit': 2,
          'enough': 2,
          'young': 2,
          'everyone': 2,
          'family': 2,
          'emotionally': 2,
          'distant': 2,
          'better': 2,
          'leachman': 2,
          'ads': 1,
          'make': 1,
          'upbeat': 1,
          'comedy': 1,
          'rascally': 1,
          'nanyone': 1,
          'went': 1,
          'expecting': 1,
          'left': 1,
          'disappointed': 1,
          'nall': 1,
          'movies': 1,
          'funny': 1,
          'included': 1,
          'ad': 1,
          'get': 1,
          'marks': 1,
          'meg': 1,
          'ryan': 1,
          'put': 1,
          'mozell': 1,
          'walter': 1,
          'matthau': 1,
          'hospital': 1,
          'nonce': 1,
          'upon': 1,
          'time': 1,
          'screenwriter': 1,
          'nowestranged': 1,
          'nhis': 1,
          'great': 1,
          'moment': 1,
          'john': 1,
          'wayne': 1,
          'gave': 1,
          'giant': 1,
          'bulletshaped': 1,
          'trophy': 1,
          'nnow': 1,
          'deteriorating': 1,
          'rapidly': 1,
          'tries': 1,
          'convince': 1,
          'kudrow': 1,
          'dying': 1,
          'needs': 1,
          'nboth': 1,
          'slow': 1,
          'concern': 1,
          'stands': 1,
          'vigil': 1,
          'constantly': 1,
          'asks': 1,
          'favorite': 1,
          'daughter': 1,
          'running': 1,
          'planning': 1,
          'special': 1,
          'caring': 1,
          'son': 1,
          'jesse': 1,
          'james': 1,
          'comic': 1,
          'relief': 1,
          'comes': 1,
          'also': 1,
          'drops': 1,
          'ailing': 1,
          'st': 1,
          'bernard': 1,
          'care': 1,
          'tension': 1,
          'builds': 1,
          'finally': 1,
          'room': 1,
          'eves': 1,
          'keynote': 1,
          'speaker': 1,
          'superficial': 1,
          'resemblance': 1,
          'shakespeares': 1,
          'lear': 1,
          'saint': 1,
          'two': 1,
          'bitches': 1,
          'apparently': 1,
          'drawn': 1,
          'nsister': 1,
          'screenwriters': 1,
          'delia': 1,
          'nora': 1,
          'parents': 1,
          'successful': 1,
          'team': 1,
          'nhenry': 1,
          'phoebe': 1,
          '17': 1,
          'screenplays': 1,
          'including': 1,
          'desk': 1,
          'set': 1,
          'theres': 1,
          'delias': 1,
          'novel': 1,
          'basis': 1,
          'dedicated': 1,
          'henry': 1,
          'nsurprisingly': 1,
          'script': 1,
          'thin': 1,
          'anorexics': 1,
          'wet': 1,
          'dream': 1,
          'virtue': 1,
          'semiautobiographical': 1,
          'project': 1,
          'would': 1,
          'wealth': 1,
          'available': 1,
          'nyet': 1,
          'ephrons': 1,
          'provide': 1,
          'barest': 1,
          'minimum': 1,
          'information': 1,
          'characters': 1,
          'nalso': 1,
          'spaces': 1,
          'inhabit': 1,
          'artificial': 1,
          'lives': 1,
          'layout': 1,
          'matter': 1,
          'putupon': 1,
          'cant': 1,
          'feel': 1,
          'sorry': 1,
          'anyone': 1,
          'whose': 1,
          'pristine': 1,
          'given': 1,
          'day': 1,
          'ngeorgia': 1,
          'famous': 1,
          'editor': 1,
          'brief': 1,
          'chats': 1,
          'cell': 1,
          'phone': 1,
          'photo': 1,
          'spread': 1,
          'profile': 1,
          'nwhen': 1,
          'first': 1,
          'meet': 1,
          'shes': 1,
          'fishing': 1,
          'picturesque': 1,
          'mountain': 1,
          'stream': 1,
          'ni': 1,
          'expected': 1,
          'see': 1,
          'cinematography': 1,
          'vanity': 1,
          'fair': 1,
          'nand': 1,
          'yes': 1,
          'literally': 1,
          'old': 1,
          'kudrows': 1,
          'nto': 1,
          'though': 1,
          'pull': 1,
          'redeeming': 1,
          'aspect': 1,
          'core': 1,
          'truth': 1,
          'siblings': 1,
          'always': 1,
          'else': 1,
          'relies': 1,
          'freeing': 1,
          'others': 1,
          'nmy': 1,
          'reliable': 1,
          'child': 1,
          'worse': 1,
          'brother': 1,
          'role': 1,
          'mine': 1,
          'may': 1,
          'fulfilling': 1,
          'lot': 1,
          'less': 1,
          'work': 1,
          'nif': 1,
          'nothing': 1,
          'watch': 1,
          'look': 1,
          'powerful': 1,
          'cameo': 1,
          'cloris': 1,
          'pat': 1,
          'nin': 1,
          'devastating': 1,
          'scene': 1,
          'discovers': 1,
          'doesnt': 1,
          'love': 1,
          'nalthough': 1,
          'best': 1,
          'known': 1,
          'comedies': 1,
          'frankenstein': 1,
          'mary': 1,
          'tyler': 1,
          'moore': 1,
          'performance': 1,
          'reminded': 1,
          'considerable': 1,
          'dramatic': 1,
          'talent': 1,
          'displayed': 1,
          'last': 1,
          'picture': 1,
          'nbottom': 1,
          'line': 1,
          'involved': 1,
          'lived': 1,
          'long': 1,
          'dont': 1,
          'recognize': 1,
          'real': 1,
          'anymore': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'batman': 9,
          'bad': 7,
          'scenes': 7,
          'schumacher': 6,
          'robin': 5,
          'even': 5,
          'crap': 4,
          'dialogue': 4,
          'mr': 4,
          'freeze': 4,
          'seems': 4,
          'nand': 4,
          'nthe': 4,
          'nwhy': 4,
          'way': 3,
          'nit': 3,
          'made': 3,
          'nbut': 3,
          'much': 3,
          'nothing': 3,
          'arnold': 3,
          'lines': 3,
          'series': 3,
          'go': 3,
          'freezes': 3,
          'hundreds': 3,
          'worst': 2,
          'movie': 2,
          'since': 2,
          'jingle': 2,
          'man': 2,
          'worse': 2,
          'nnot': 2,
          'ever': 2,
          'nthere': 2,
          'wife': 2,
          'instead': 2,
          'sense': 2,
          'given': 2,
          'doesnt': 2,
          'make': 2,
          'get': 2,
          'good': 2,
          'ivy': 2,
          'shes': 2,
          'moment': 2,
          'wonder': 2,
          'silverstone': 2,
          'batgirl': 2,
          'looking': 2,
          'alfred': 2,
          'appearance': 2,
          'fights': 2,
          'never': 2,
          'big': 2,
          'know': 2,
          'stupidity': 2,
          'become': 2,
          'characters': 2,
          'lair': 2,
          'save': 2,
          'enough': 2,
          'along': 2,
          'ni': 2,
          'feet': 2,
          'another': 2,
          'comic': 2,
          'book': 2,
          'take': 2,
          'hand': 2,
          'could': 2,
          'unbearable': 2,
          'idiocy': 2,
          'ive': 1,
          'seen': 1,
          'walked': 1,
          'toast': 1,
          'baked': 1,
          'oven': 1,
          'fueled': 1,
          'nnothing': 1,
          'works': 1,
          'expected': 1,
          'joel': 1,
          'one': 1,
          'watchable': 1,
          'entire': 1,
          'career': 1,
          'cousins': 1,
          'nheres': 1,
          'admits': 1,
          'hes': 1,
          'medicore': 1,
          'director': 1,
          'rather': 1,
          'charmingly': 1,
          'selfeffacing': 1,
          'statement': 1,
          'truth': 1,
          'told': 1,
          'mediocre': 1,
          'scorn': 1,
          'heaped': 1,
          'though': 1,
          'akiva': 1,
          'goldsman': 1,
          'allowed': 1,
          'write': 1,
          'plot': 1,
          'anywhere': 1,
          'unrelentingly': 1,
          'shallow': 1,
          'preposterous': 1,
          'boring': 1,
          'nthey': 1,
          'set': 1,
          'tragic': 1,
          'figure': 1,
          'trying': 1,
          'cure': 1,
          'cryogenically': 1,
          'frozen': 1,
          'completely': 1,
          'sabotage': 1,
          'character': 1,
          'giving': 1,
          'lamest': 1,
          'oneliners': 1,
          'turns': 1,
          'stock': 1,
          'maniacal': 1,
          'villain': 1,
          'thoroughly': 1,
          'enjoys': 1,
          'villainy': 1,
          'brooding': 1,
          'scientist': 1,
          'spent': 1,
          'life': 1,
          'bringing': 1,
          'brink': 1,
          'death': 1,
          'thats': 1,
          'par': 1,
          'course': 1,
          'makes': 1,
          'including': 1,
          'half': 1,
          'schwarzeneggers': 1,
          'nas': 1,
          'spit': 1,
          'nthis': 1,
          'problem': 1,
          'austrian': 1,
          'accent': 1,
          'getting': 1,
          'thicker': 1,
          'unintelligible': 1,
          'days': 1,
          'pass': 1,
          'npersonally': 1,
          'think': 1,
          'pull': 1,
          'directors': 1,
          'retake': 1,
          'understandable': 1,
          'ncompare': 1,
          'terminator': 1,
          'load': 1,
          'nonsense': 1,
          'streams': 1,
          'forth': 1,
          'napparently': 1,
          'james': 1,
          'cameron': 1,
          'knows': 1,
          'competent': 1,
          'performance': 1,
          'numa': 1,
          'thurman': 1,
          'resembling': 1,
          'either': 1,
          'nher': 1,
          'poison': 1,
          'vamps': 1,
          'around': 1,
          'terribly': 1,
          'chewing': 1,
          'scenery': 1,
          'left': 1,
          'right': 1,
          'pamela': 1,
          'isley': 1,
          'marred': 1,
          'subsnl': 1,
          'standard': 1,
          'acting': 1,
          'reading': 1,
          'cue': 1,
          'cards': 1,
          'laugh': 1,
          'ngiven': 1,
          'script': 1,
          'didnt': 1,
          'happen': 1,
          'frequently': 1,
          'redeeming': 1,
          'feature': 1,
          'george': 1,
          'clooney': 1,
          'chris': 1,
          'odonnell': 1,
          'alicia': 1,
          'nmichael': 1,
          'gough': 1,
          'eerily': 1,
          'sickly': 1,
          'conceit': 1,
          'illness': 1,
          'prompted': 1,
          'cadaverous': 1,
          'nin': 1,
          'fact': 1,
          'something': 1,
          'unsettling': 1,
          'accomplished': 1,
          'without': 1,
          'makeup': 1,
          'tricks': 1,
          'documentary': 1,
          'dying': 1,
          'nunfortunately': 1,
          'every': 1,
          'scene': 1,
          'alfreds': 1,
          'sickness': 1,
          'bungled': 1,
          'incompetence': 1,
          'absolutely': 1,
          'emotional': 1,
          'resonance': 1,
          'motions': 1,
          'losing': 1,
          'whatever': 1,
          'impact': 1,
          'supposed': 1,
          'impart': 1,
          'rife': 1,
          'poorly': 1,
          'choreographed': 1,
          'give': 1,
          'battle': 1,
          'theres': 1,
          'bunch': 1,
          'people': 1,
          'melee': 1,
          'decided': 1,
          'focus': 1,
          'foot': 1,
          'fist': 1,
          'ntheres': 1,
          'awe': 1,
          'mayhem': 1,
          'interesting': 1,
          'part': 1,
          'battles': 1,
          'freezing': 1,
          'effects': 1,
          'impressive': 1,
          'probably': 1,
          'expensive': 1,
          'neven': 1,
          'full': 1,
          'camp': 1,
          'unwatchable': 1,
          'hockey': 1,
          'team': 1,
          'hell': 1,
          'tv': 1,
          'got': 1,
          'stupid': 1,
          'least': 1,
          'grand': 1,
          'scale': 1,
          'showcases': 1,
          'nfrustrating': 1,
          'various': 1,
          'supporting': 1,
          'walk': 1,
          'say': 1,
          'nblink': 1,
          'youll': 1,
          'miss': 1,
          'elle': 1,
          'macpherson': 1,
          'julie': 1,
          'madison': 1,
          'vivica': 1,
          'fox': 1,
          'vamp': 1,
          'two': 1,
          'pat': 1,
          'hingle': 1,
          'ineffectual': 1,
          'commissioner': 1,
          'gordan': 1,
          'almost': 1,
          'like': 1,
          'effort': 1,
          'costs': 1,
          'vendela': 1,
          'kirsebom': 1,
          'mrs': 1,
          'fries': 1,
          'isnt': 1,
          'filmed': 1,
          'well': 1,
          'look': 1,
          'trust': 1,
          'quite': 1,
          'attractive': 1,
          'outside': 1,
          'dreck': 1,
          'werent': 1,
          'limp': 1,
          'direction': 1,
          'performances': 1,
          'fight': 1,
          'inconsistencies': 1,
          'illogic': 1,
          'galore': 1,
          'nitpicky': 1,
          'ask': 1,
          'cable': 1,
          'stored': 1,
          'batarangs': 1,
          'arms': 1,
          'arent': 1,
          'ripped': 1,
          'sockets': 1,
          'accomplish': 1,
          'onearmed': 1,
          'batarang': 1,
          'falling': 1,
          'holding': 1,
          'person': 1,
          'less': 1,
          'moisture': 1,
          'comes': 1,
          'weapon': 1,
          'creates': 1,
          'tons': 1,
          'ice': 1,
          'nthats': 1,
          'traditional': 1,
          'stuff': 1,
          'spring': 1,
          'trap': 1,
          'public': 1,
          'charity': 1,
          'event': 1,
          'endanger': 1,
          'lives': 1,
          'bystanders': 1,
          'switch': 1,
          'clearly': 1,
          'marked': 1,
          'heat': 1,
          'countless': 1,
          'bumbling': 1,
          'police': 1,
          'officers': 1,
          'try': 1,
          'encourage': 1,
          'far': 1,
          'suit': 1,
          '10': 1,
          'minutes': 1,
          'bicker': 1,
          'leaving': 1,
          'batcave': 1,
          'response': 1,
          'emergency': 1,
          'established': 1,
          'early': 1,
          'using': 1,
          'pheromones': 1,
          'dont': 1,
          'wear': 1,
          'masks': 1,
          'filter': 1,
          'n': 1,
          'braindead': 1,
          'pointless': 1,
          'garish': 1,
          'loud': 1,
          'still': 1,
          'reign': 1,
          'year': 1,
          'time': 1,
          '1998': 1,
          'rolls': 1,
          'nnote': 1,
          'warner': 1,
          'bros': 1,
          'youre': 1,
          'going': 1,
          'please': 1,
          'replace': 1,
          'nearly': 1,
          'anyone': 1,
          'nbecause': 1,
          'actually': 1,
          'nwhat': 1,
          'understand': 1,
          'automatically': 1,
          'equal': 1,
          'true': 1,
          'equation': 1,
          'nneg': 1}),
 Counter({'gadget': 5,
          'something': 4,
          'film': 4,
          'movie': 4,
          'would': 3,
          'ni': 3,
          'memories': 2,
          'one': 2,
          'mind': 2,
          'watching': 2,
          'version': 2,
          'tune': 2,
          'claw': 2,
          'nostalgia': 2,
          'even': 2,
          'least': 2,
          'new': 2,
          'series': 2,
          'feeling': 2,
          'disney': 2,
          'enough': 2,
          'god': 2,
          'left': 2,
          'else': 2,
          'character': 2,
          'ponder': 1,
          'childhood': 1,
          'past': 1,
          'things': 1,
          'always': 1,
          'springs': 1,
          'immediately': 1,
          'inspector': 1,
          'tv': 1,
          'show': 1,
          'older': 1,
          'brother': 1,
          'ntruth': 1,
          'told': 1,
          'rabid': 1,
          'fanatics': 1,
          'cowboys': 1,
          'indians': 1,
          'chasing': 1,
          'around': 1,
          'coffee': 1,
          'table': 1,
          'theme': 1,
          'alternating': 1,
          'get': 1,
          'stuck': 1,
          'playing': 1,
          'part': 1,
          'dr': 1,
          'inspectors': 1,
          'arch': 1,
          'nemesis': 1,
          'never': 1,
          'biggie': 1,
          'cant': 1,
          'help': 1,
          'fond': 1,
          'like': 1,
          'nsometimes': 1,
          'find': 1,
          '4am': 1,
          'reruns': 1,
          'favorite': 1,
          'episodes': 1,
          'trying': 1,
          'recapture': 1,
          'sense': 1,
          'wonder': 1,
          'felt': 1,
          'kid': 1,
          'nat': 1,
          'expecting': 1,
          'classic': 1,
          'television': 1,
          'kind': 1,
          'similar': 1,
          'effect': 1,
          'ndespite': 1,
          'horrid': 1,
          'may': 1,
          'simple': 1,
          'task': 1,
          'rekindling': 1,
          'slight': 1,
          'pretty': 1,
          'tough': 1,
          'screw': 1,
          'nso': 1,
          'back': 1,
          'sat': 1,
          'minimum': 1,
          'expectations': 1,
          'deliver': 1,
          'lets': 1,
          'face': 1,
          'exactly': 1,
          'good': 1,
          'liveaction': 1,
          'really': 1,
          'wise': 1,
          'steer': 1,
          'clear': 1,
          'likes': 1,
          'mr': 1,
          'magoo': 1,
          'george': 1,
          'jungle': 1,
          'two': 1,
          'previous': 1,
          'adaptations': 1,
          'wish': 1,
          'sharp': 1,
          'skip': 1,
          'well': 1,
          'nrarely': 1,
          'utter': 1,
          'emptiness': 1,
          'nas': 1,
          'everyone': 1,
          'getting': 1,
          'exit': 1,
          'screening': 1,
          'room': 1,
          'completed': 1,
          'assault': 1,
          'mankind': 1,
          'sitting': 1,
          'absolutely': 1,
          'speechless': 1,
          'totally': 1,
          'dumbfounded': 1,
          'seen': 1,
          'ncan': 1,
          'awful': 1,
          'truly': 1,
          'exist': 1,
          'evolved': 1,
          'world': 1,
          'nright': 1,
          'beginning': 1,
          'knew': 1,
          'trouble': 1,
          'nin': 1,
          'opening': 1,
          'scenes': 1,
          'introduced': 1,
          'sole': 1,
          'purpose': 1,
          'simply': 1,
          'serve': 1,
          'reallife': 1,
          'duplicates': 1,
          'cartoon': 1,
          'clones': 1,
          'nwhen': 1,
          'referring': 1,
          'people': 1,
          'almost': 1,
          'yell': 1,
          'fear': 1,
          'audience': 1,
          'catch': 1,
          'certain': 1,
          'supposed': 1,
          'oh': 1,
          'hi': 1,
          'penny': 1,
          'nis': 1,
          'brain': 1,
          'ncreating': 1,
          'onedimensional': 1,
          'replicas': 1,
          'thing': 1,
          'mere': 1,
          'names': 1,
          'take': 1,
          'place': 1,
          'quite': 1,
          'another': 1,
          'nthe': 1,
          'plot': 1,
          'shall': 1,
          'call': 1,
          'stays': 1,
          'fairly': 1,
          'original': 1,
          'nmatthew': 1,
          'broderick': 1,
          'stars': 1,
          'john': 1,
          'brown': 1,
          'creative': 1,
          'na': 1,
          'security': 1,
          'guard': 1,
          'horribly': 1,
          'injured': 1,
          'pack': 1,
          'ruthless': 1,
          'businessmen': 1,
          'headed': 1,
          'scolex': 1,
          'rupert': 1,
          'everett': 1,
          'love': 1,
          'transformed': 1,
          'unfortunate': 1,
          'chain': 1,
          'events': 1,
          'nbrown': 1,
          'rescued': 1,
          'used': 1,
          'prototype': 1,
          'lawenforcement': 1,
          'technology': 1,
          'wherein': 1,
          'hes': 1,
          'joined': 1,
          'various': 1,
          'machine': 1,
          'parts': 1,
          'nifty': 1,
          'gadgets': 1,
          'form': 1,
          'drumroll': 1,
          'please': 1,
          'ninspector': 1,
          'nfrom': 1,
          'becomes': 1,
          'hodgepodge': 1,
          'stupid': 1,
          'dialog': 1,
          'confusing': 1,
          'situations': 1,
          'although': 1,
          'fair': 1,
          'confusion': 1,
          'could': 1,
          'caused': 1,
          'virtual': 1,
          'concussion': 1,
          'inflicting': 1,
          'upon': 1,
          'fragile': 1,
          'ntheres': 1,
          'evil': 1,
          'taking': 1,
          'city': 1,
          'first': 1,
          'crime': 1,
          'must': 1,
          'swiping': 1,
          'matt': 1,
          'dillons': 1,
          'dentures': 1,
          'theres': 1,
          'mary': 1,
          'ends': 1,
          'bunch': 1,
          'postcredit': 1,
          'nonsense': 1,
          'cameo': 1,
          'adams': 1,
          'nto': 1,
          'honest': 1,
          'wasnt': 1,
          'much': 1,
          'paying': 1,
          'attention': 1,
          'treats': 1,
          'glad': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'like': 4,
          'bad': 4,
          'impostors': 3,
          'films': 3,
          'movie': 3,
          'actors': 3,
          'everyone': 3,
          'didnt': 2,
          'one': 2,
          'two': 2,
          'stanley': 2,
          'tucci': 2,
          'picture': 2,
          'almost': 2,
          'never': 2,
          'plays': 2,
          'oliver': 2,
          'platt': 2,
          'cast': 2,
          'acting': 2,
          'allen': 2,
          'steve': 2,
          'alfred': 2,
          'molina': 2,
          'n': 2,
          'nwith': 2,
          'little': 2,
          'arthur': 2,
          'end': 2,
          'script': 2,
          'good': 2,
          'would': 2,
          'nit': 2,
          'perhaps': 1,
          'much': 1,
          'going': 1,
          'wouldnt': 1,
          'tremendous': 1,
          'disappointment': 1,
          'nwritten': 1,
          'directed': 1,
          'produced': 1,
          'stars': 1,
          'whose': 1,
          'last': 1,
          'indie': 1,
          'smash': 1,
          'hit': 1,
          'big': 1,
          'night': 1,
          'catches': 1,
          'fire': 1,
          'nsputtering': 1,
          'twoday': 1,
          'old': 1,
          'campfire': 1,
          'story': 1,
          'adlib': 1,
          'sketch': 1,
          'polished': 1,
          'completed': 1,
          'star': 1,
          'hilarious': 1,
          'senators': 1,
          'aide': 1,
          'bulworth': 1,
          'bloated': 1,
          'supporting': 1,
          'veritable': 1,
          'cornucopia': 1,
          'talent': 1,
          'including': 1,
          'woody': 1,
          'buscemi': 1,
          'hope': 1,
          'davis': 1,
          'campbell': 1,
          'scott': 1,
          'lili': 1,
          'taylor': 1,
          'tony': 1,
          'shalhoub': 1,
          'nall': 1,
          'wasted': 1,
          'save': 1,
          'theatrical': 1,
          'director': 1,
          'stares': 1,
          'disbelief': 1,
          'eyes': 1,
          'audience': 1,
          'easily': 1,
          'identify': 1,
          'allens': 1,
          'sentiments': 1,
          'exception': 1,
          'single': 1,
          'original': 1,
          'joke': 1,
          'involving': 1,
          'mirrorimaged': 1,
          'subtitles': 1,
          'engenders': 1,
          'genuine': 1,
          'laughter': 1,
          'stale': 1,
          'humor': 1,
          'embarrassingly': 1,
          'find': 1,
          'laughing': 1,
          'sporadically': 1,
          'rather': 1,
          'plot': 1,
          'involves': 1,
          'starving': 1,
          'maurice': 1,
          'accidentally': 1,
          'cruise': 1,
          'ship': 1,
          'nin': 1,
          'order': 1,
          'escape': 1,
          'angry': 1,
          'shakespearean': 1,
          'actor': 1,
          'chasing': 1,
          'dress': 1,
          'ships': 1,
          'stewards': 1,
          'overthetop': 1,
          'subtlety': 1,
          'sledgehammer': 1,
          'nwhen': 1,
          'leads': 1,
          'hide': 1,
          'pursuers': 1,
          'covers': 1,
          'maurices': 1,
          'mouth': 1,
          'suffers': 1,
          'unending': 1,
          'sneeze': 1,
          'nat': 1,
          'times': 1,
          'typical': 1,
          'zany': 1,
          'comedy': 1,
          'routine': 1,
          'chases': 1,
          'else': 1,
          'darting': 1,
          'staterooms': 1,
          'chapters': 1,
          'introduced': 1,
          'placards': 1,
          'vaudeville': 1,
          'stage': 1,
          'clear': 1,
          'wants': 1,
          'taken': 1,
          'farce': 1,
          'press': 1,
          'notes': 1,
          'describes': 1,
          'came': 1,
          'set': 1,
          'remarked': 1,
          'time': 1,
          'ntoo': 1,
          'werent': 1,
          'concerned': 1,
          'audiences': 1,
          'potential': 1,
          'enjoyment': 1,
          'jokes': 1,
          'frequently': 1,
          'framed': 1,
          'silence': 1,
          'fall': 1,
          'stones': 1,
          'intensity': 1,
          'hear': 1,
          'hitting': 1,
          'ground': 1,
          'none': 1,
          'wonders': 1,
          'anyone': 1,
          'ever': 1,
          'viewed': 1,
          'dailies': 1,
          'nsurely': 1,
          'realized': 1,
          'leaden': 1,
          'results': 1,
          'producing': 1,
          'tricky': 1,
          'play': 1,
          'ones': 1,
          'couldnt': 1,
          'pull': 1,
          'given': 1,
          'show': 1,
          'fella': 1,
          'buscemis': 1,
          'character': 1,
          'says': 1,
          'towards': 1,
          'mystery': 1,
          'give': 1,
          'beginning': 1,
          'nthere': 1,
          'must': 1,
          'better': 1,
          'somewhere': 1,
          'wonderful': 1,
          'runs': 1,
          '1': 1,
          '42': 1,
          'rated': 1,
          'r': 1,
          'profanity': 1,
          'fine': 1,
          'kids': 1,
          'around': 1,
          '12': 1,
          'nneg': 1}),
 Counter({'carry': 5,
          'movie': 5,
          'kenneth': 4,
          'emmannuelle': 4,
          'film': 4,
          'bed': 3,
          'williams': 3,
          'given': 3,
          'script': 3,
          'new': 2,
          'production': 2,
          'suzanne': 2,
          'danielle': 2,
          'emile': 2,
          'ambassador': 2,
          'seems': 2,
          'rumours': 2,
          'talk': 2,
          'television': 2,
          'set': 2,
          'theodore': 2,
          'valentine': 2,
          'larry': 2,
          'dann': 2,
          'nhowever': 2,
          'little': 2,
          'worst': 2,
          'nit': 2,
          'embarassing': 2,
          'jokes': 2,
          'mrs': 2,
          'parts': 2,
          'douglas': 2,
          'joan': 2,
          'sims': 2,
          'connor': 2,
          'leyland': 2,
          'peter': 2,
          'butterworth': 2,
          'four': 2,
          'scene': 2,
          'awful': 2,
          'poor': 2,
          'last': 1,
          'discount': 1,
          'columbus': 1,
          'made': 1,
          'company': 1,
          'nbased': 1,
          'central': 1,
          'london': 1,
          'attempts': 1,
          'emmanuelle': 1,
          'prevert': 1,
          'husband': 1,
          'french': 1,
          'nwhen': 1,
          'unwilling': 1,
          'permission': 1,
          'anyone': 1,
          'likes': 1,
          'prime': 1,
          'minister': 1,
          'u': 1,
          'nher': 1,
          'antics': 1,
          'get': 1,
          'trouble': 1,
          'british': 1,
          'press': 1,
          'spread': 1,
          'front': 1,
          'pages': 1,
          'nshe': 1,
          'invited': 1,
          'record': 1,
          'straight': 1,
          'confirms': 1,
          'instead': 1,
          'nmeanwhile': 1,
          'love': 1,
          'chance': 1,
          'encounter': 1,
          'toilet': 1,
          'concorde': 1,
          'determined': 1,
          'marry': 1,
          'interested': 1,
          'restoring': 1,
          'husbands': 1,
          'ardour': 1,
          'difficult': 1,
          'emiles': 1,
          'accident': 1,
          'church': 1,
          'spire': 1,
          'nthis': 1,
          'second': 1,
          'england': 1,
          'see': 1,
          'remaining': 1,
          'regulars': 1,
          'struggle': 1,
          'diabolical': 1,
          'lance': 1,
          'peters': 1,
          'try': 1,
          'pull': 1,
          'crude': 1,
          'tasteless': 1,
          'written': 1,
          'nnewcomers': 1,
          'beryl': 1,
          'reid': 1,
          'mildly': 1,
          'funny': 1,
          'excruciatingly': 1,
          'bad': 1,
          'nkenneth': 1,
          'appears': 1,
          'scenes': 1,
          'lacklustre': 1,
          'performance': 1,
          'warranted': 1,
          'nthe': 1,
          'small': 1,
          'jack': 1,
          'lyons': 1,
          'butler': 1,
          'dangle': 1,
          'chauffeur': 1,
          'richmond': 1,
          'worthless': 1,
          'nin': 1,
          'fact': 1,
          'surplus': 1,
          'requirements': 1,
          'humourous': 1,
          'amourous': 1,
          'escapades': 1,
          'nan': 1,
          'terrible': 1,
          'collection': 1,
          'values': 1,
          'especially': 1,
          'takes': 1,
          'clothes': 1,
          'st': 1,
          'james': 1,
          'palace': 1,
          'ludicrous': 1,
          'cringeworthy': 1,
          'musical': 1,
          'score': 1,
          'nonexistent': 1,
          'plot': 1,
          'storyline': 1,
          'nits': 1,
          'succession': 1,
          'pieces': 1,
          'next': 1,
          'njack': 1,
          'annoying': 1,
          'boring': 1,
          'wasted': 1,
          'put': 1,
          'performances': 1,
          'na': 1,
          'complete': 1,
          'waste': 1,
          'time': 1,
          'trying': 1,
          'catch': 1,
          'sexually': 1,
          'permissive': 1,
          'seventies': 1,
          'certificate': 1,
          '15': 1,
          '1978': 1,
          'interest': 1,
          'kind': 1,
          'flopped': 1,
          'box': 1,
          'office': 1,
          'premiere': 1,
          'uk': 1,
          'terrestrial': 1,
          'april': 1,
          '1998': 1,
          'navoid': 1,
          'costs': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'dwayne': 6,
          'nthe': 5,
          'dwaynes': 5,
          'film': 5,
          'see': 3,
          'nolte': 3,
          'midland': 3,
          'city': 3,
          'nnot': 3,
          'hes': 3,
          'nwith': 3,
          '_breakfast_of_champions_': 2,
          'would': 2,
          'novel': 2,
          'sight': 2,
          'thats': 2,
          'things': 2,
          'also': 2,
          'appears': 2,
          'nhis': 2,
          'goes': 2,
          'doesnt': 2,
          'trout': 2,
          'often': 2,
          'rudolph': 2,
          'point': 2,
          'make': 2,
          'called': 2,
          'ever': 2,
          'audience': 2,
          'youre': 1,
          'debating': 1,
          'whether': 1,
          'ask': 1,
          'simple': 1,
          'question': 1,
          'want': 1,
          'nick': 1,
          'lingerie': 1,
          'people': 1,
          'get': 1,
          'much': 1,
          'enjoyment': 1,
          'alan': 1,
          'rudolphs': 1,
          'chaotic': 1,
          'adaptation': 1,
          'kurt': 1,
          'vonnegut': 1,
          'crosssection': 1,
          'population': 1,
          'unhealthy': 1,
          'urge': 1,
          'unpleasant': 1,
          'neveryone': 1,
          'elseand': 1,
          'im': 1,
          'hoping': 1,
          'peoplewould': 1,
          'wise': 1,
          'steer': 1,
          'clear': 1,
          'excrutiatingly': 1,
          'unfunny': 1,
          'mess': 1,
          'nactually': 1,
          'though': 1,
          'high': 1,
          'heels': 1,
          'amusing': 1,
          'muddle': 1,
          'focuses': 1,
          'hoover': 1,
          'bruce': 1,
          'willis': 1,
          'owner': 1,
          'hoovers': 1,
          'exit': 1,
          '11': 1,
          'motor': 1,
          'village': 1,
          'huge': 1,
          'success': 1,
          'businessman': 1,
          'something': 1,
          'celebrity': 1,
          'face': 1,
          'made': 1,
          'recognizable': 1,
          'ongoing': 1,
          'series': 1,
          'television': 1,
          'commercials': 1,
          'nice': 1,
          'home': 1,
          'family': 1,
          'boot': 1,
          'ingredients': 1,
          'happyyet': 1,
          'wife': 1,
          'celia': 1,
          'barbara': 1,
          'hershey': 1,
          'perpetually': 1,
          'pillinduced': 1,
          'haze': 1,
          'son': 1,
          'george': 1,
          'lukas': 1,
          'haas': 1,
          'flamboyant': 1,
          'lounge': 1,
          'singer': 1,
          'stage': 1,
          'name': 1,
          'bunny': 1,
          'environmental': 1,
          'protection': 1,
          'agency': 1,
          'ass': 1,
          'building': 1,
          'development': 1,
          'project': 1,
          'nits': 1,
          'enough': 1,
          'send': 1,
          'nervous': 1,
          'breakdownthat': 1,
          'succeed': 1,
          'blowing': 1,
          'brains': 1,
          'first': 1,
          'nmeanwhile': 1,
          'host': 1,
          'fine': 1,
          'arts': 1,
          'festival': 1,
          'guest': 1,
          'honor': 1,
          'kilgore': 1,
          'albert': 1,
          'finney': 1,
          'writer': 1,
          'far': 1,
          'renowned': 1,
          'author': 1,
          'festivals': 1,
          'organizer': 1,
          'buck': 1,
          'henry': 1,
          'led': 1,
          'believein': 1,
          'fact': 1,
          'penniless': 1,
          'hack': 1,
          'writes': 1,
          'secondrate': 1,
          'scifi': 1,
          'porn': 1,
          'magazines': 1,
          'trek': 1,
          'spiritual': 1,
          'journey': 1,
          'reaches': 1,
          'apex': 1,
          'meeting': 1,
          'reason': 1,
          'thinks': 1,
          'hold': 1,
          'lifes': 1,
          'answers': 1,
          'already': 1,
          'longer': 1,
          'plot': 1,
          'synopsis': 1,
          'usually': 1,
          'give': 1,
          'reviews': 1,
          'ironically': 1,
          'barely': 1,
          'scratched': 1,
          'surface': 1,
          'ni': 1,
          'havent': 1,
          'yet': 1,
          'mentioned': 1,
          'wayne': 1,
          'hoobler': 1,
          'omar': 1,
          'epps': 1,
          'excon': 1,
          'obsessive': 1,
          'admiration': 1,
          'similarlynamed': 1,
          'nthen': 1,
          'theres': 1,
          'matter': 1,
          'francine': 1,
          'glenne': 1,
          'headly': 1,
          'devoted': 1,
          'secretary': 1,
          'mention': 1,
          'employee': 1,
          'old': 1,
          'friend': 1,
          'harry': 1,
          'lesabre': 1,
          'secret': 1,
          'penchant': 1,
          'crossdressing': 1,
          'nand': 1,
          'essentially': 1,
          'story': 1,
          'distracting': 1,
          'tangents': 1,
          'eccentric': 1,
          'peripheral': 1,
          'players': 1,
          'wonders': 1,
          'nrudolph': 1,
          'arrive': 1,
          'later': 1,
          'blunted': 1,
          'obscured': 1,
          'hyperactive': 1,
          'approach': 1,
          'material': 1,
          'surreal': 1,
          'visual': 1,
          'style': 1,
          'complete': 1,
          'printed': 1,
          'words': 1,
          'flying': 1,
          'air': 1,
          'ears': 1,
          'obviously': 1,
          'meant': 1,
          'convey': 1,
          'sense': 1,
          'madness': 1,
          'bludgeoning': 1,
          'nature': 1,
          'likely': 1,
          'viewers': 1,
          'mad': 1,
          'actors': 1,
          'act': 1,
          'accordingly': 1,
          'resulting': 1,
          'worst': 1,
          'overdone': 1,
          'work': 1,
          'turned': 1,
          'nwillis': 1,
          'fares': 1,
          'best': 1,
          'allbut': 1,
          'frozen': 1,
          'expression': 1,
          'befuddled': 1,
          'bewilderment': 1,
          'mirrors': 1,
          'aggressively': 1,
          'outrageous': 1,
          'atmosphere': 1,
          'nearly': 1,
          'running': 1,
          'time': 1,
          'comes': 1,
          'shock': 1,
          'suddenly': 1,
          'turn': 1,
          'serious': 1,
          'tries': 1,
          'statement': 1,
          'nunlike': 1,
          '_american_beauty_': 1,
          '_breakfast_': 1,
          'resembles': 1,
          'ways': 1,
          'great': 1,
          'detriment': 1,
          'isnt': 1,
          'palpably': 1,
          'earnest': 1,
          'undercurrent': 1,
          'prepare': 1,
          'big': 1,
          'shift': 1,
          'nas': 1,
          'cartoony': 1,
          'characters': 1,
          'fail': 1,
          'win': 1,
          'sympathy': 1,
          'needs': 1,
          'earned': 1,
          'attempts': 1,
          'avail': 1,
          'reach': 1,
          'profundity': 1,
          'deserve': 1,
          'nvonneguts': 1,
          'original': 1,
          'considered': 1,
          'classic': 1,
          'unfilmablethe': 1,
          'said': 1,
          'hunter': 1,
          'thompsons': 1,
          '_fear_and_loathing_in_las_vegas_': 1,
          'disastrously': 1,
          'committed': 1,
          'last': 1,
          'year': 1,
          'terry': 1,
          'gilliam': 1,
          'similar': 1,
          'failure': 1,
          'hollywood': 1,
          'learn': 1,
          'books': 1,
          'labeled': 1,
          'unfilmable': 1,
          'inevitably': 1,
          'results': 1,
          'unwatchable': 1,
          'nlikely': 1,
          'nneg': 1}),
 Counter({'virgin': 5,
          'suicides': 5,
          'suicide': 4,
          'film': 4,
          'movie': 3,
          'nthe': 3,
          'lisbon': 3,
          'doesnt': 3,
          'pointless': 2,
          'know': 2,
          'nso': 2,
          'lives': 2,
          'youngest': 2,
          'people': 2,
          'say': 2,
          'nwell': 2,
          'scene': 2,
          'daughter': 2,
          'girls': 2,
          'family': 2,
          'come': 2,
          'nis': 2,
          'way': 2,
          'would': 2,
          'well': 2,
          'role': 2,
          'eddie': 2,
          'cruisers': 2,
          'since': 2,
          'feeling': 2,
          'nwith': 2,
          'business': 2,
          'share': 2,
          'everyone': 1,
          'whats': 1,
          'like': 1,
          'nyou': 1,
          'guessed': 1,
          'npointless': 1,
          'focuses': 1,
          'five': 1,
          'sisters': 1,
          'perspective': 1,
          'teenage': 1,
          'boys': 1,
          'fascinated': 1,
          'nwhen': 1,
          'sister': 1,
          'commits': 1,
          'sets': 1,
          'motion': 1,
          'series': 1,
          'events': 1,
          'change': 1,
          'many': 1,
          'forever': 1,
          'nthats': 1,
          'press': 1,
          'materials': 1,
          'probably': 1,
          'nnow': 1,
          'heres': 1,
          'huge': 1,
          'waste': 1,
          'time': 1,
          'nboring': 1,
          'arty': 1,
          'pretentious': 1,
          'junk': 1,
          'entertaining': 1,
          'committing': 1,
          'lost': 1,
          'early': 1,
          'immediately': 1,
          'following': 1,
          'younger': 1,
          'jumps': 1,
          'death': 1,
          'bedroom': 1,
          'window': 1,
          'father': 1,
          'james': 1,
          'woods': 1,
          'holds': 1,
          'lifeless': 1,
          'body': 1,
          'arms': 1,
          'horrified': 1,
          'looks': 1,
          'nthen': 1,
          'ends': 1,
          'lawn': 1,
          'sprinklers': 1,
          'joke': 1,
          'supposed': 1,
          'amusing': 1,
          'nfrom': 1,
          'failed': 1,
          'draw': 1,
          'back': 1,
          'nperformances': 1,
          'saving': 1,
          'grace': 1,
          'nwoods': 1,
          'plays': 1,
          'character': 1,
          'actually': 1,
          'interest': 1,
          'came': 1,
          'onscreen': 1,
          'performance': 1,
          'kirsten': 1,
          'dunst': 1,
          'next': 1,
          'lux': 1,
          'worth': 1,
          'mentioning': 1,
          'ndunst': 1,
          'potential': 1,
          'big': 1,
          'star': 1,
          'chooses': 1,
          'projects': 1,
          'nand': 1,
          'awful': 1,
          'manages': 1,
          'away': 1,
          'virtually': 1,
          'unscathed': 1,
          'nthere': 1,
          'also': 1,
          'cameos': 1,
          'frustrate': 1,
          'audience': 1,
          'leave': 1,
          'wanting': 1,
          'nas': 1,
          'result': 1,
          'seem': 1,
          'rather': 1,
          'although': 1,
          'theres': 1,
          'brief': 1,
          'given': 1,
          'michael': 1,
          'pare': 1,
          'turns': 1,
          'best': 1,
          'nperhaps': 1,
          'worked': 1,
          'story': 1,
          'told': 1,
          'point': 1,
          'view': 1,
          'little': 1,
          'access': 1,
          'main': 1,
          'characters': 1,
          'nwe': 1,
          'never': 1,
          'get': 1,
          'significant': 1,
          'insight': 1,
          'might': 1,
          'theyre': 1,
          'nall': 1,
          'really': 1,
          'mrs': 1,
          'kathleen': 1,
          'turner': 1,
          'strict': 1,
          'keeps': 1,
          'short': 1,
          'leash': 1,
          'nwhat': 1,
          'mother': 1,
          'nits': 1,
          'certainly': 1,
          'reason': 1,
          'commit': 1,
          'godfather': 1,
          'part': 1,
          'iii': 1,
          'sofia': 1,
          'coppola': 1,
          'proved': 1,
          'front': 1,
          'camera': 1,
          'proves': 1,
          'behind': 1,
          'either': 1,
          'nhaving': 1,
          'connections': 1,
          'entitle': 1,
          'allowed': 1,
          'make': 1,
          'movies': 1,
          'attention': 1,
          'directors': 1,
          'nstop': 1,
          'letting': 1,
          'daughters': 1,
          'pout': 1,
          'industry': 1,
          'njust': 1,
          'dna': 1,
          'mean': 1,
          'talent': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'nthe': 20,
          'film': 13,
          'mars': 10,
          'mission': 8,
          'team': 6,
          'space': 5,
          'luc': 5,
          'jim': 4,
          'nbut': 4,
          'planet': 4,
          'almost': 4,
          'ship': 4,
          'science': 3,
          'fiction': 3,
          'tales': 3,
          'scifi': 3,
          'ideas': 3,
          'surface': 3,
          'martian': 3,
          'nand': 3,
          'characters': 3,
          'good': 3,
          'look': 3,
          'one': 3,
          'character': 3,
          'scenes': 3,
          'sequence': 3,
          'minutes': 3,
          'genre': 2,
          'deal': 2,
          'struggle': 2,
          'strange': 2,
          'land': 2,
          'robert': 2,
          'worth': 2,
          'message': 2,
          'since': 2,
          'films': 2,
          'thought': 2,
          'crafted': 2,
          'national': 2,
          'enquirer': 2,
          'phil': 2,
          'ohlmyer': 2,
          'jerry': 2,
          'oconnell': 2,
          'tim': 2,
          'robbins': 2,
          'wife': 2,
          'cheadle': 2,
          'consoles': 2,
          'sinise': 2,
          'men': 2,
          'fine': 2,
          'still': 2,
          'set': 2,
          'red': 2,
          'investigate': 2,
          'famed': 2,
          'face': 2,
          'na': 2,
          'rock': 2,
          'earth': 2,
          'second': 2,
          'world': 2,
          'come': 2,
          'play': 2,
          'heroes': 2,
          'question': 2,
          'news': 2,
          'plot': 2,
          'becomes': 2,
          '2001': 2,
          'odyssey': 2,
          'sequences': 2,
          'wonderfully': 2,
          'much': 2,
          'like': 2,
          'comic': 2,
          'meteorite': 2,
          'shower': 2,
          'rescue': 2,
          'score': 2,
          'extravagant': 2,
          'opening': 2,
          'another': 2,
          'design': 2,
          'visual': 2,
          'effects': 2,
          'something': 2,
          'ndirector': 2,
          'de': 2,
          'palma': 2,
          'might': 2,
          'realm': 1,
          'always': 1,
          'allegory': 1,
          'political': 1,
          'moral': 1,
          'sensibilities': 1,
          'best': 1,
          'mankinds': 1,
          'survival': 1,
          'knowledge': 1,
          'nsuch': 1,
          'popular': 1,
          'noteworthy': 1,
          'tomes': 1,
          'stranger': 1,
          'heinlein': 1,
          'childhoods': 1,
          'end': 1,
          'arthur': 1,
          'c': 1,
          'clarke': 1,
          'man': 1,
          'high': 1,
          'castle': 1,
          'androids': 1,
          'dream': 1,
          'electric': 1,
          'sheep': 1,
          'philip': 1,
          'k': 1,
          'dick': 1,
          'mans': 1,
          'need': 1,
          'identity': 1,
          'self': 1,
          'nhollywood': 1,
          'regularly': 1,
          'adapted': 1,
          'milieu': 1,
          'beginnings': 1,
          'nmost': 1,
          'created': 1,
          'fancy': 1,
          'pulp': 1,
          'escapism': 1,
          'achieved': 1,
          'nit': 1,
          'really': 1,
          'wasnt': 1,
          'producer': 1,
          'george': 1,
          'pal': 1,
          'took': 1,
          'charge': 1,
          'heinleins': 1,
          'novel': 1,
          'rocketship': 1,
          'galileo': 1,
          'destination': 1,
          'moon': 1,
          'commonly': 1,
          'referred': 1,
          'came': 1,
          'nfrom': 1,
          'diverse': 1,
          'filmmakers': 1,
          'roger': 1,
          'corman': 1,
          'stanley': 1,
          'kubrick': 1,
          'sought': 1,
          'express': 1,
          'medium': 1,
          'nwith': 1,
          'release': 1,
          'touchstone': 1,
          'pictures': 1,
          'unabashedly': 1,
          'nonchalant': 1,
          'read': 1,
          'globe': 1,
          'opens': 1,
          'summer': 1,
          'barbecue': 1,
          'woos': 1,
          'young': 1,
          'female': 1,
          'glory': 1,
          'upcoming': 1,
          'nwoody': 1,
          'blake': 1,
          'terri': 1,
          'connie': 1,
          'nielsen': 1,
          'commit': 1,
          'coming': 1,
          'authority': 1,
          'goddard': 1,
          'son': 1,
          'nentering': 1,
          'party': 1,
          'mcconnell': 1,
          'gary': 1,
          'gave': 1,
          'command': 1,
          'due': 1,
          'untimely': 1,
          'death': 1,
          'maggie': 1,
          'kim': 1,
          'delaney': 1,
          'nluc': 1,
          'woodys': 1,
          'assistance': 1,
          'three': 1,
          'friends': 1,
          'carry': 1,
          'bond': 1,
          'trust': 1,
          'caring': 1,
          'longs': 1,
          'foot': 1,
          'earnest': 1,
          'cydonia': 1,
          'region': 1,
          'nthey': 1,
          'send': 1,
          'rover': 1,
          'area': 1,
          'discover': 1,
          'seems': 1,
          'water': 1,
          'ice': 1,
          'ngoing': 1,
          'approach': 1,
          'noise': 1,
          'emanates': 1,
          'nas': 1,
          'tries': 1,
          'scan': 1,
          'radar': 1,
          'violent': 1,
          'wind': 1,
          'storm': 1,
          'erupts': 1,
          'creating': 1,
          'vortex': 1,
          'kills': 1,
          'members': 1,
          'save': 1,
          'nback': 1,
          'station': 1,
          'orbiting': 1,
          'woody': 1,
          'receive': 1,
          'information': 1,
          'landing': 1,
          'missing': 1,
          'nlucs': 1,
          'interference': 1,
          'laden': 1,
          'emergency': 1,
          'urges': 1,
          'two': 1,
          'attempt': 1,
          'hopes': 1,
          'rescuing': 1,
          'previous': 1,
          'journey': 1,
          'fraught': 1,
          'danger': 1,
          'nmeteorite': 1,
          'showers': 1,
          'explosions': 1,
          'rescues': 1,
          'intrepid': 1,
          'make': 1,
          'way': 1,
          'planets': 1,
          'big': 1,
          'ever': 1,
          'intelligent': 1,
          'life': 1,
          'relationship': 1,
          'us': 1,
          'nnow': 1,
          'bad': 1,
          'entire': 1,
          'based': 1,
          'wholeheartedly': 1,
          'outdated': 1,
          'preposterous': 1,
          'type': 1,
          'civilization': 1,
          'tripe': 1,
          'centerpiece': 1,
          'revealing': 1,
          'harebrained': 1,
          'pabulum': 1,
          'screen': 1,
          'witnessed': 1,
          'nborrowing': 1,
          'robinson': 1,
          'crusoe': 1,
          '1964': 1,
          'quatermass': 1,
          'pit': 1,
          '1967': 1,
          'even': 1,
          'mario': 1,
          'bavas': 1,
          'vampires': 1,
          'terrore': 1,
          'nello': 1,
          'spazio': 1,
          '1965': 1,
          'hodgepodge': 1,
          'dont': 1,
          'add': 1,
          'satisfying': 1,
          'whole': 1,
          'nwhile': 1,
          'handled': 1,
          'executed': 1,
          'remains': 1,
          'flat': 1,
          'uninvolving': 1,
          'nso': 1,
          'time': 1,
          'giving': 1,
          'establishing': 1,
          'lead': 1,
          'use': 1,
          'performances': 1,
          'workmen': 1,
          'carrying': 1,
          'sort': 1,
          'real': 1,
          'chemistry': 1,
          'ngary': 1,
          'wasted': 1,
          'role': 1,
          'requires': 1,
          'experiencing': 1,
          'sleep': 1,
          'depravation': 1,
          'mistaken': 1,
          'idea': 1,
          'part': 1,
          'relief': 1,
          'painful': 1,
          'excuse': 1,
          'less': 1,
          'said': 1,
          'called': 1,
          'home': 1,
          'performance': 1,
          'better': 1,
          'nhes': 1,
          'fun': 1,
          'give': 1,
          'damn': 1,
          'script': 1,
          'lapses': 1,
          'namely': 1,
          'discovering': 1,
          'several': 1,
          'breaches': 1,
          'hull': 1,
          'caused': 1,
          'thinks': 1,
          'checking': 1,
          'fuel': 1,
          'tanks': 1,
          'remainder': 1,
          'damage': 1,
          'nthis': 1,
          'course': 1,
          'leads': 1,
          'abandon': 1,
          'nalso': 1,
          'sacrifices': 1,
          'takes': 1,
          'religious': 1,
          'demeanor': 1,
          'completely': 1,
          'odds': 1,
          'situation': 1,
          'biggest': 1,
          'offence': 1,
          'horrid': 1,
          'intrusive': 1,
          'ennio': 1,
          'morricone': 1,
          'nsubtlety': 1,
          'nonexistent': 1,
          'nin': 1,
          'fact': 1,
          'music': 1,
          'dialogue': 1,
          'drowned': 1,
          'works': 1,
          'protracted': 1,
          'pacing': 1,
          'leisurely': 1,
          'nafter': 1,
          'introduction': 1,
          'lasts': 1,
          'full': 1,
          '22': 1,
          'finally': 1,
          'dropped': 1,
          'onto': 1,
          'nthen': 1,
          'long': 1,
          'pause': 1,
          'development': 1,
          'including': 1,
          'elaborate': 1,
          'dance': 1,
          'zero': 1,
          'gravity': 1,
          'could': 1,
          'lose': 1,
          '30': 1,
          'actually': 1,
          'gain': 1,
          'momentum': 1,
          'nthere': 1,
          'many': 1,
          'talking': 1,
          'heads': 1,
          'discussing': 1,
          'already': 1,
          'know': 1,
          'going': 1,
          'happen': 1,
          'drags': 1,
          'dead': 1,
          'stop': 1,
          'absolutely': 1,
          'sumptuous': 1,
          'vistas': 1,
          'majestic': 1,
          'awe': 1,
          'inspiring': 1,
          'numerous': 1,
          'spacecraft': 1,
          'suits': 1,
          'expertly': 1,
          'drafted': 1,
          'level': 1,
          'realism': 1,
          'hasnt': 1,
          'seen': 1,
          'stunning': 1,
          'walk': 1,
          'visualization': 1,
          'evolution': 1,
          'fault': 1,
          'martians': 1,
          'plastic': 1,
          'model': 1,
          'kit': 1,
          'stages': 1,
          'creative': 1,
          'alone': 1,
          'seemingly': 1,
          'uninterrupted': 1,
          'cut': 1,
          'lasting': 1,
          '15': 1,
          'homage': 1,
          'hitchcocks': 1,
          'rope': 1,
          'introduced': 1,
          'nscenes': 1,
          'rotating': 1,
          'centrifuge': 1,
          'amazing': 1,
          'execution': 1,
          'nagging': 1,
          'final': 1,
          'explanation': 1,
          'sturm': 1,
          'und': 1,
          'drang': 1,
          'nsadly': 1,
          'brian': 1,
          'production': 1,
          'arresting': 1,
          'strip': 1,
          'denouncement': 1,
          'ruin': 1,
          'return': 1,
          'adventurous': 1,
          'provoking': 1,
          'disappointing': 1,
          'entertain': 1,
          'settle': 1,
          'visuals': 1,
          'nneg': 1}),
 Counter({'lost': 7,
          'space': 6,
          'like': 5,
          'film': 4,
          'hopkins': 4,
          'nthey': 4,
          'one': 4,
          'effects': 4,
          'convention': 3,
          'oldman': 3,
          'made': 3,
          'nbut': 3,
          'goldsman': 3,
          'ship': 3,
          'shot': 3,
          'blawp': 3,
          'line': 2,
          'presentation': 2,
          'inperson': 2,
          'rogers': 2,
          'leblanc': 2,
          'chabert': 2,
          'johnson': 2,
          'even': 2,
          'time': 2,
          'years': 2,
          'nyou': 2,
          'find': 2,
          'series': 2,
          'see': 2,
          'narrative': 2,
          'looking': 2,
          'judy': 2,
          'penny': 2,
          'solo': 2,
          'every': 2,
          'becomes': 2,
          'nthe': 2,
          'look': 2,
          'nin': 2,
          'composite': 2,
          'shots': 2,
          'much': 2,
          'back': 1,
          'february': 1,
          'monthly': 1,
          'los': 1,
          'angeles': 1,
          'comic': 1,
          'book': 1,
          'science': 1,
          'fiction': 1,
          'new': 1,
          'cinema': 1,
          'put': 1,
          'lavish': 1,
          'bigscreen': 1,
          'update': 1,
          'cult': 1,
          '1960s': 1,
          'scifi': 1,
          'tv': 1,
          'show': 1,
          'complete': 1,
          'appearances': 1,
          'cast': 1,
          'members': 1,
          'mimi': 1,
          'matt': 1,
          'lacey': 1,
          'jack': 1,
          'gary': 1,
          'nthat': 1,
          'set': 1,
          'warning': 1,
          'alarmsthe': 1,
          'last': 1,
          'extravagant': 1,
          'took': 1,
          'place': 1,
          'nearly': 1,
          'five': 1,
          'ago': 1,
          'none': 1,
          'arnold': 1,
          'schwarzenegger': 1,
          'cameo': 1,
          'peddle': 1,
          'nlast': 1,
          'action': 1,
          'hero': 1,
          'millions': 1,
          'others': 1,
          'bought': 1,
          'hype': 1,
          'got': 1,
          'nif': 1,
          'gotten': 1,
          'lostliterallyon': 1,
          'way': 1,
          'theatre': 1,
          'spared': 1,
          'tedium': 1,
          'sloppily': 1,
          'slappedtogether': 1,
          'blockbuster': 1,
          'wannabe': 1,
          'may': 1,
          'wondering': 1,
          'director': 1,
          'stephen': 1,
          'screenwriter': 1,
          'akiva': 1,
          'nat': 1,
          'claimed': 1,
          'rabid': 1,
          'fan': 1,
          'original': 1,
          'television': 1,
          'really': 1,
          'case': 1,
          'id': 1,
          'hate': 1,
          'concepts': 1,
          'mild': 1,
          'interest': 1,
          'nto': 1,
          'say': 1,
          'script': 1,
          'lacks': 1,
          'cohesion': 1,
          'imply': 1,
          'begin': 1,
          'withwhich': 1,
          'certainly': 1,
          'nafter': 1,
          'setup': 1,
          'robinson': 1,
          'familyfather': 1,
          'john': 1,
          'william': 1,
          'hurt': 1,
          'sounding': 1,
          'spaced': 1,
          'interviews': 1,
          'mother': 1,
          'maureen': 1,
          'wasted': 1,
          'daughters': 1,
          'heather': 1,
          'graham': 1,
          'ditto': 1,
          'heavily': 1,
          'madeup': 1,
          'junior': 1,
          'version': 1,
          'neve': 1,
          'campbell': 1,
          'wild': 1,
          'things': 1,
          'son': 1,
          'young': 1,
          'newcomer': 1,
          'making': 1,
          'best': 1,
          'pilot': 1,
          'west': 1,
          'bad': 1,
          'han': 1,
          'impression': 1,
          'sabotaged': 1,
          'evil': 1,
          'stowaway': 1,
          'dr': 1,
          'smith': 1,
          'watereddown': 1,
          'stilllively': 1,
          'cashing': 1,
          'paycheck': 1,
          'loving': 1,
          'minute': 1,
          'scripts': 1,
          'stream': 1,
          'events': 1,
          'fragmented': 1,
          'random': 1,
          'seems': 1,
          'goes': 1,
          'alongand': 1,
          'little': 1,
          'make': 1,
          'go': 1,
          'slightest': 1,
          'bit': 1,
          'interesting': 1,
          'encounter': 1,
          'another': 1,
          'board': 1,
          'nalien': 1,
          'spiders': 1,
          'attack': 1,
          'return': 1,
          'explodes': 1,
          'land': 1,
          'deserted': 1,
          'planet': 1,
          'nand': 1,
          'nan': 1,
          'attempt': 1,
          'plot': 1,
          'involving': 1,
          'travel': 1,
          'occurs': 1,
          'third': 1,
          'act': 1,
          'doesnt': 1,
          'seem': 1,
          'understand': 1,
          'rules': 1,
          'come': 1,
          'using': 1,
          'story': 1,
          'device': 1,
          'characters': 1,
          'past': 1,
          'self': 1,
          'dies': 1,
          'future': 1,
          'incarnation': 1,
          'inexplicably': 1,
          'lives': 1,
          'spaces': 1,
          'aceinthehole': 1,
          'manages': 1,
          'botch': 1,
          'nfor': 1,
          'bigbudget': 1,
          'visual': 1,
          'incredibly': 1,
          'shoddy': 1,
          'background': 1,
          'could': 1,
          'blue': 1,
          'outline': 1,
          'around': 1,
          'various': 1,
          'digital': 1,
          'battle': 1,
          'scenes': 1,
          'ndigital': 1,
          'nothing': 1,
          'jawdroppingly': 1,
          'unconvincing': 1,
          'monkeylike': 1,
          'creature': 1,
          'pennys': 1,
          'pet': 1,
          'nentirely': 1,
          'computergenerated': 1,
          'inch': 1,
          'showing': 1,
          'looks': 1,
          'lifted': 1,
          'directly': 1,
          'sony': 1,
          'playstation': 1,
          'game': 1,
          'napparently': 1,
          'thought': 1,
          'tried': 1,
          'desperately': 1,
          'hide': 1,
          'else': 1,
          'explain': 1,
          'graininess': 1,
          'blawps': 1,
          'human': 1,
          'actors': 1,
          'seams': 1,
          'obvious': 1,
          'severely': 1,
          'visually': 1,
          'impaired': 1,
          'distracted': 1,
          'grainy': 1,
          'immediately': 1,
          'followed': 1,
          'crystalclear': 1,
          'reaction': 1,
          'nnew': 1,
          'hoping': 1,
          'become': 1,
          'big': 1,
          'franchise': 1,
          'longrunning': 1,
          'star': 1,
          'trek': 1,
          'cash': 1,
          'cow': 1,
          'paramount': 1,
          'ni': 1,
          'dont': 1,
          'think': 1,
          'movie': 1,
          'likely': 1,
          'live': 1,
          'obscure': 1,
          'answer': 1,
          'trivia': 1,
          'question': 1,
          'ended': 1,
          'titanics': 1,
          '15week': 1,
          'reign': 1,
          'top': 1,
          'weekend': 1,
          'box': 1,
          'office': 1,
          'nneg': 1}),
 Counter({'burns': 10,
          'back': 6,
          'film': 6,
          'looking': 5,
          'one': 5,
          'characters': 4,
          'would': 4,
          'time': 3,
          'movie': 3,
          'two': 3,
          'life': 3,
          'little': 3,
          'nno': 3,
          'three': 3,
          'nthe': 3,
          'years': 3,
          'claudia': 3,
          'long': 2,
          'new': 2,
          'minutes': 2,
          'edward': 2,
          'storyline': 2,
          'anyone': 2,
          'spent': 2,
          'ending': 2,
          'case': 2,
          'entire': 2,
          'nand': 2,
          'far': 2,
          'charlie': 2,
          'girlfriend': 2,
          'lauren': 2,
          'holly': 2,
          'charlies': 2,
          'mike': 2,
          'bon': 2,
          'jovi': 2,
          'even': 2,
          'theyre': 2,
          'nso': 2,
          'especially': 2,
          'nthey': 2,
          'claudias': 2,
          'shes': 2,
          'brothers': 2,
          'like': 2,
          'working': 1,
          'title': 1,
          'nothing': 1,
          'rarely': 1,
          'apt': 1,
          'name': 1,
          'motion': 1,
          'picture': 1,
          'neven': 1,
          'though': 1,
          'clocks': 1,
          'relatively': 1,
          'skinny': 1,
          '96': 1,
          'seems': 1,
          'run': 1,
          'enough': 1,
          'engulf': 1,
          'titanics': 1,
          'nwriterdirector': 1,
          'trotted': 1,
          'hackneyed': 1,
          'trajectory': 1,
          'instantly': 1,
          'recognizable': 1,
          'hasnt': 1,
          'seclusion': 1,
          'ninstead': 1,
          'tweaking': 1,
          'formula': 1,
          'invigorate': 1,
          'proceedings': 1,
          'content': 1,
          'allow': 1,
          'ramble': 1,
          'aimlessly': 1,
          'towards': 1,
          'irritatingly': 1,
          'predictable': 1,
          'conclusion': 1,
          'offering': 1,
          'precious': 1,
          'momentary': 1,
          'pleasures': 1,
          'along': 1,
          'way': 1,
          'dominated': 1,
          'dislikable': 1,
          'whose': 1,
          'constant': 1,
          'presence': 1,
          'screen': 1,
          'painful': 1,
          'appropriate': 1,
          'triple': 1,
          'suicide': 1,
          'sooner': 1,
          'better': 1,
          'nalas': 1,
          'thats': 1,
          'stick': 1,
          'length': 1,
          'forced': 1,
          'endure': 1,
          'prolonged': 1,
          'company': 1,
          'wretched': 1,
          'trio': 1,
          'depress': 1,
          'audiences': 1,
          'shot': 1,
          'cold': 1,
          'rainy': 1,
          'days': 1,
          'gray': 1,
          'york': 1,
          'state': 1,
          'beach': 1,
          'town': 1,
          'npeeks': 1,
          'sunshine': 1,
          'wonder': 1,
          'miserable': 1,
          'nfirst': 1,
          'generation': 1,
          'x': 1,
          'slacker': 1,
          'abandoned': 1,
          'ago': 1,
          'abortion': 1,
          'bumming': 1,
          'around': 1,
          'california': 1,
          'deciding': 1,
          'come': 1,
          'home': 1,
          'nthat': 1,
          'picking': 1,
          'pieces': 1,
          'following': 1,
          'departure': 1,
          'moved': 1,
          'shacking': 1,
          'old': 1,
          'school': 1,
          'buddies': 1,
          'jon': 1,
          'comfortable': 1,
          'relationship': 1,
          'apparent': 1,
          'blind': 1,
          'person': 1,
          'right': 1,
          'nclaudia': 1,
          'spice': 1,
          'wants': 1,
          'settle': 1,
          'children': 1,
          'nthen': 1,
          'reenters': 1,
          'mix': 1,
          'end': 1,
          'nwho': 1,
          'cares': 1,
          'goes': 1,
          'extraordinary': 1,
          'lengths': 1,
          'make': 1,
          'sure': 1,
          'interested': 1,
          'outcome': 1,
          'romantic': 1,
          'triangle': 1,
          'finds': 1,
          'happiness': 1,
          'dont': 1,
          'deserve': 1,
          'anyway': 1,
          'wasting': 1,
          '90': 1,
          'arent': 1,
          'real': 1,
          'people': 1,
          'writers': 1,
          'construct': 1,
          'stumbling': 1,
          'tooobvious': 1,
          'know': 1,
          'well': 1,
          'given': 1,
          'audience': 1,
          'credit': 1,
          'presented': 1,
          'plot': 1,
          'least': 1,
          'offered': 1,
          'surprise': 1,
          'nanother': 1,
          'frustrating': 1,
          'thing': 1,
          'populated': 1,
          'group': 1,
          'potentiallyinteresting': 1,
          'supporting': 1,
          'nblythe': 1,
          'danner': 1,
          'solid': 1,
          'housebound': 1,
          'mother': 1,
          'connie': 1,
          'britton': 1,
          'suitably': 1,
          'highstrung': 1,
          'neurotic': 1,
          'sister': 1,
          'jennifer': 1,
          'esposito': 1,
          'eyecatching': 1,
          'bartender': 1,
          'search': 1,
          'romance': 1,
          'nsadly': 1,
          'get': 1,
          'quick': 1,
          'glimpses': 1,
          'lives': 1,
          'although': 1,
          'intriguing': 1,
          'story': 1,
          'chosen': 1,
          'tell': 1,
          'nnone': 1,
          'lead': 1,
          'performers': 1,
          'going': 1,
          'wow': 1,
          'critics': 1,
          'thespian': 1,
          'attributes': 1,
          'nedward': 1,
          'pushing': 1,
          'edge': 1,
          'limited': 1,
          'range': 1,
          'njon': 1,
          'shows': 1,
          'acting': 1,
          'ability': 1,
          'might': 1,
          'reasonably': 1,
          'expect': 1,
          'singer': 1,
          'branching': 1,
          'different': 1,
          'career': 1,
          'could': 1,
          'still': 1,
          'use': 1,
          'polish': 1,
          'worst': 1,
          'presents': 1,
          'completely': 1,
          'bland': 1,
          'nas': 1,
          'portrayed': 1,
          'hardly': 1,
          'kind': 1,
          'woman': 1,
          'inspire': 1,
          'moments': 1,
          'interest': 1,
          'mention': 1,
          'undying': 1,
          'love': 1,
          'nburns': 1,
          'ex': 1,
          'monumentally': 1,
          'untalented': 1,
          'maxine': 1,
          'bahns': 1,
          'hardpressed': 1,
          'less': 1,
          'inspired': 1,
          'job': 1,
          'nwhen': 1,
          'released': 1,
          'mcmullen': 1,
          'revered': 1,
          'wunderkind': 1,
          '1995': 1,
          'sundance': 1,
          'festival': 1,
          'robert': 1,
          'redford': 1,
          'apparently': 1,
          'stuck': 1,
          'aging': 1,
          'actordirector': 1,
          'executive': 1,
          'produced': 1,
          'mess': 1,
          'ntwo': 1,
          'films': 1,
          'short': 1,
          'later': 1,
          'luster': 1,
          'faded': 1,
          'nsome': 1,
          'makers': 1,
          'good': 1,
          'nwith': 1,
          'toback': 1,
          'duds': 1,
          'follow': 1,
          'delightful': 1,
          'beginning': 1,
          'look': 1,
          'member': 1,
          'undistinguished': 1,
          'club': 1,
          'nneg': 1}),
 Counter({'one': 8,
          'carter': 7,
          'movie': 5,
          'get': 5,
          'know': 5,
          'characters': 5,
          'really': 4,
          'could': 4,
          'nthe': 4,
          'like': 4,
          'good': 3,
          'bad': 3,
          'ni': 3,
          'nyou': 3,
          'plot': 3,
          'didnt': 3,
          'another': 3,
          'would': 3,
          'every': 3,
          'dont': 3,
          'job': 2,
          'film': 2,
          'feel': 2,
          'tell': 2,
          'n': 2,
          'car': 2,
          'character': 2,
          'running': 2,
          'chase': 2,
          'jack': 2,
          'brother': 2,
          'cliche': 2,
          'pretty': 2,
          'scenes': 2,
          'doesnt': 2,
          'story': 2,
          'carters': 2,
          'richies': 2,
          'something': 2,
          'involving': 2,
          'way': 2,
          'screenplay': 2,
          'nearly': 2,
          'scene': 2,
          'since': 2,
          'everything': 2,
          'critic': 1,
          'see': 1,
          'write': 1,
          'review': 1,
          'tells': 1,
          'kind': 1,
          'embarrassed': 1,
          'admit': 1,
          'seen': 1,
          'cant': 1,
          'although': 1,
          'go': 1,
          'falls': 1,
          'category': 1,
          'movies': 1,
          'continue': 1,
          'made': 1,
          'reasons': 1,
          'unknown': 1,
          'anyone': 1,
          'outside': 1,
          'hollywood': 1,
          'executive': 1,
          'board': 1,
          'room': 1,
          'might': 1,
          'call': 1,
          'steven': 1,
          'seagalmickey': 1,
          'rourkejeanclaude': 1,
          'van': 1,
          'dammewesley': 1,
          'snipes': 1,
          'school': 1,
          'mediocre': 1,
          'actioncrime': 1,
          'thrillers': 1,
          'potboilers': 1,
          'heavy': 1,
          'fistfights': 1,
          'shootouts': 1,
          'chases': 1,
          'light': 1,
          'development': 1,
          'nthey': 1,
          'stories': 1,
          'socalled': 1,
          'hero': 1,
          'keeps': 1,
          'connection': 1,
          'antagonists': 1,
          'without': 1,
          'reason': 1,
          'give': 1,
          'protagonist': 1,
          'someone': 1,
          'fight': 1,
          'shoot': 1,
          'nsylvester': 1,
          'stallone': 1,
          'stars': 1,
          'las': 1,
          'vegasbased': 1,
          'mob': 1,
          'enforcer': 1,
          'returns': 1,
          'home': 1,
          'brothers': 1,
          'funeral': 1,
          'nhe': 1,
          'believes': 1,
          'richie': 1,
          'taken': 1,
          'die': 1,
          'dwi': 1,
          'accident': 1,
          'ncarters': 1,
          'badasses': 1,
          'ever': 1,
          'captured': 1,
          'celluloid': 1,
          'nhis': 1,
          'face': 1,
          'alone': 1,
          'intimidating': 1,
          'theres': 1,
          'quite': 1,
          'leans': 1,
          'regular': 1,
          'citizens': 1,
          'criminal': 1,
          'lowlives': 1,
          'simply': 1,
          'staring': 1,
          'speaking': 1,
          'confidence': 1,
          'ramboontestosteronetherapy': 1,
          'voice': 1,
          'nstallones': 1,
          'performance': 1,
          'forced': 1,
          'unnatural': 1,
          'realize': 1,
          'hes': 1,
          'mocking': 1,
          'actual': 1,
          'involves': 1,
          'investigation': 1,
          'death': 1,
          'nhes': 1,
          'town': 1,
          'thats': 1,
          'somehow': 1,
          'local': 1,
          'top': 1,
          'dogs': 1,
          'well': 1,
          'nmickey': 1,
          'rourke': 1,
          'costars': 1,
          'sort': 1,
          'crime': 1,
          'boss': 1,
          'porno': 1,
          'web': 1,
          'site': 1,
          'blackmailing': 1,
          'young': 1,
          'internet': 1,
          'tycoon': 1,
          'played': 1,
          'alan': 1,
          'cummings': 1,
          'looking': 1,
          'acting': 1,
          'lot': 1,
          'pee': 1,
          'wee': 1,
          'herman': 1,
          'ntheres': 1,
          'also': 1,
          'mistress': 1,
          'secret': 1,
          'cdrom': 1,
          'convicting': 1,
          'disturbing': 1,
          'evidence': 1,
          'terrible': 1,
          'stillliving': 1,
          'relatives': 1,
          'nim': 1,
          'rolling': 1,
          'eyes': 1,
          'thinking': 1,
          'trying': 1,
          'critique': 1,
          'remotely': 1,
          'comprehendible': 1,
          'rip': 1,
          'shreds': 1,
          'plus': 1,
          'direction': 1,
          'editing': 1,
          'production': 1,
          'values': 1,
          'require': 1,
          'discussion': 1,
          'order': 1,
          'explain': 1,
          'put': 1,
          'spoliers': 1,
          'reviews': 1,
          'either': 1,
          'intentionally': 1,
          'accidentally': 1,
          'nyes': 1,
          'complicated': 1,
          'complex': 1,
          'nand': 1,
          'whats': 1,
          'worse': 1,
          'intricate': 1,
          'make': 1,
          'seem': 1,
          'smart': 1,
          'usual': 1,
          'suspects': 1,
          'example': 1,
          'opposite': 1,
          'feeling': 1,
          'whoever': 1,
          'wrote': 1,
          'script': 1,
          'short': 1,
          'intervals': 1,
          'spaced': 1,
          'far': 1,
          'apart': 1,
          'probably': 1,
          'remember': 1,
          'already': 1,
          'happened': 1,
          'figure': 1,
          'lead': 1,
          'next': 1,
          'major': 1,
          'points': 1,
          'work': 1,
          'towards': 1,
          'climax': 1,
          'nall': 1,
          'need': 1,
          'tracking': 1,
          'scumbag': 1,
          'supposed': 1,
          'witness': 1,
          'asking': 1,
          'getting': 1,
          'information': 1,
          'realizing': 1,
          'wasnt': 1,
          'complete': 1,
          'idiot': 1,
          'figured': 1,
          'first': 1,
          'five': 1,
          'minutes': 1,
          'nalthough': 1,
          'supporting': 1,
          'equally': 1,
          'stupid': 1,
          'comes': 1,
          'back': 1,
          'haunt': 1,
          'violent': 1,
          'nmaking': 1,
          'entirely': 1,
          'criminals': 1,
          'necessarily': 1,
          'mean': 1,
          'unlikable': 1,
          'cutout': 1,
          'nmel': 1,
          'gibson': 1,
          'starred': 1,
          'payback': 1,
          'years': 1,
          'ago': 1,
          'unlike': 1,
          'couldnt': 1,
          'help': 1,
          'even': 1,
          'though': 1,
          'guy': 1,
          'nso': 1,
          'ultimately': 1,
          'fails': 1,
          'much': 1,
          'selling': 1,
          'point': 1,
          'ncarter': 1,
          'likable': 1,
          'care': 1,
          'gets': 1,
          'revenge': 1,
          'action': 1,
          'sequences': 1,
          'exciting': 1,
          'original': 1,
          'enemies': 1,
          'massive': 1,
          'conspiracy': 1,
          'threatening': 1,
          'cmon': 1,
          'whos': 1,
          'going': 1,
          'win': 1,
          'brawl': 1,
          'shootout': 1,
          'nin': 1,
          'end': 1,
          'satisfied': 1,
          'results': 1,
          'filmmakers': 1,
          'unoriginal': 1,
          'possible': 1,
          'city': 1,
          'never': 1,
          'mentioned': 1,
          'name': 1,
          'assume': 1,
          'seattle': 1,
          'cars': 1,
          'washington': 1,
          'license': 1,
          'plates': 1,
          'always': 1,
          'raining': 1,
          'nneg': 1}),
 Counter({'ace': 9,
          'ventura': 8,
          'first': 6,
          'carrey': 5,
          'movie': 4,
          'one': 4,
          'carreys': 4,
          'funny': 4,
          'dumb': 2,
          'even': 2,
          'people': 2,
          '2': 2,
          'find': 2,
          'annoying': 2,
          'nthe': 2,
          'detective': 2,
          'save': 2,
          'disappointed': 2,
          'may': 2,
          'original': 2,
          'nbut': 2,
          'made': 2,
          'definitely': 2,
          'ive': 1,
          'got': 1,
          'admit': 1,
          'nim': 1,
          'huge': 1,
          'jim': 1,
          'fan': 1,
          'ni': 1,
          'loved': 1,
          'well': 1,
          'mask': 1,
          'dumberand': 1,
          'batman': 1,
          'forever': 1,
          'pretty': 1,
          'awful': 1,
          'come': 1,
          'looking': 1,
          'reasonably': 1,
          'good': 1,
          'nuntil': 1,
          'saw': 1,
          'idea': 1,
          'could': 1,
          'guy': 1,
          'nsadly': 1,
          'shows': 1,
          'irritating': 1,
          'ncarrey': 1,
          'goes': 1,
          'schtick': 1,
          'went': 1,
          'time': 1,
          'longer': 1,
          'funnyit': 1,
          'rehash': 1,
          'many': 1,
          'jokes': 1,
          'used': 1,
          'plot': 1,
          'sees': 1,
          'pet': 1,
          'retiring': 1,
          'failing': 1,
          'raccoon': 1,
          'reasonable': 1,
          'cliffhanger': 1,
          'spoof': 1,
          'nsoon': 1,
          'called': 1,
          'retirement': 1,
          'bat': 1,
          'kidnapped': 1,
          'returned': 1,
          'four': 1,
          'days': 1,
          'cause': 1,
          'two': 1,
          'warring': 1,
          'african': 1,
          'tribes': 1,
          'destroy': 1,
          'nonce': 1,
          'day': 1,
          'using': 1,
          'uncanny': 1,
          'skills': 1,
          'nthose': 1,
          'restrained': 1,
          'roles': 1,
          'films': 1,
          'following': 1,
          'glad': 1,
          'see': 1,
          'overacting': 1,
          'best': 1,
          'ability': 1,
          'fact': 1,
          'sequel': 1,
          'doesnt': 1,
          'capture': 1,
          'feel': 1,
          'benefited': 1,
          'looked': 1,
          'constant': 1,
          'hypedup': 1,
          'improv': 1,
          'sequences': 1,
          'hysterically': 1,
          'nhere': 1,
          'however': 1,
          'tighter': 1,
          'script': 1,
          'reminiscent': 1,
          'old': 1,
          'disney': 1,
          'telemovies': 1,
          'takes': 1,
          'improvised': 1,
          'material': 1,
          'shamelessly': 1,
          'recycles': 1,
          'new': 1,
          'giving': 1,
          'little': 1,
          'chance': 1,
          'improvise': 1,
          'ninstead': 1,
          'extremely': 1,
          'manner': 1,
          'reduced': 1,
          'walking': 1,
          'around': 1,
          'stupidly': 1,
          'biggest': 1,
          'problems': 1,
          'character': 1,
          'nin': 1,
          'always': 1,
          'cool': 1,
          'step': 1,
          'ahead': 1,
          'every': 1,
          'elseperfect': 1,
          'offthewall': 1,
          'approach': 1,
          'look': 1,
          'lot': 1,
          'stupider': 1,
          'often': 1,
          'straight': 1,
          'guya': 1,
          'role': 1,
          'style': 1,
          'nthere': 1,
          'moments': 1,
          'far': 1,
          'nthey': 1,
          'also': 1,
          'nowhere': 1,
          'near': 1,
          'anything': 1,
          'dumber': 1,
          'nneg': 1}),
 Counter({'cruise': 14,
          'woo': 10,
          'one': 9,
          'nthe': 9,
          'plot': 7,
          'way': 6,
          'gun': 6,
          'film': 6,
          'action': 5,
          'see': 5,
          'john': 4,
          'face': 4,
          'kind': 4,
          'bad': 4,
          'really': 4,
          'eyes': 4,
          'ni': 4,
          'character': 4,
          'hes': 4,
          'turns': 4,
          'director': 3,
          'hero': 3,
          'bear': 3,
          'us': 3,
          'give': 3,
          'much': 3,
          'mo': 3,
          'set': 3,
          'guys': 3,
          'seem': 3,
          'tom': 3,
          'cruises': 3,
          'cool': 3,
          'nearly': 3,
          'ethan': 3,
          'hunt': 3,
          'newton': 3,
          'nin': 3,
          'even': 3,
          'mi2': 3,
          'first': 3,
          'less': 3,
          'every': 3,
          'moment': 3,
          'mission': 2,
          'hard': 2,
          'made': 2,
          'charming': 2,
          'drop': 2,
          'kick': 2,
          'villains': 2,
          'nsadly': 2,
          'picture': 2,
          'progresses': 2,
          'product': 2,
          'begins': 2,
          'long': 2,
          'episode': 2,
          'good': 2,
          'nwhat': 2,
          'nmi2': 2,
          'initial': 2,
          'flash': 2,
          'soon': 2,
          'something': 2,
          'slo': 2,
          'pieces': 2,
          'leap': 2,
          'firing': 2,
          'though': 2,
          'sequence': 2,
          'ever': 2,
          'climbing': 2,
          'could': 2,
          'become': 2,
          'summer': 2,
          'movie': 2,
          'gravity': 2,
          'defying': 2,
          'effects': 2,
          'story': 2,
          'nits': 2,
          'course': 2,
          'never': 2,
          'make': 2,
          'eye': 2,
          'ncruise': 2,
          'meet': 2,
          '1': 2,
          'two': 2,
          'attractive': 2,
          'camera': 2,
          'scene': 2,
          'little': 2,
          'video': 2,
          'style': 2,
          'smoke': 2,
          'mirrors': 2,
          'particular': 2,
          'half': 2,
          'nhes': 2,
          'im': 2,
          'battle': 2,
          'fight': 2,
          'isnt': 2,
          'nothing': 2,
          'sure': 2,
          'gunfight': 2,
          'woos': 2,
          'like': 2,
          'directly': 2,
          'mid': 2,
          'air': 2,
          'guy': 2,
          'hug': 2,
          'twenty': 1,
          'minutes': 1,
          'impossible': 1,
          '2': 1,
          'killer': 1,
          'boiled': 1,
          'appears': 1,
          'exciting': 1,
          'elegant': 1,
          'spy': 1,
          'thriller': 1,
          'post': 1,
          'millennium': 1,
          'james': 1,
          'bond': 1,
          'adventure': 1,
          'strapping': 1,
          'american': 1,
          'read': 1,
          'unsophisticated': 1,
          'willing': 1,
          'fox': 1,
          'final': 1,
          'closer': 1,
          'resemblance': 1,
          'souped': 1,
          'twohour': 1,
          'magyuver': 1,
          'nand': 1,
          'particularly': 1,
          'went': 1,
          'wrong': 1,
          'flashily': 1,
          'enough': 1,
          'leading': 1,
          'believe': 1,
          'itll': 1,
          'gives': 1,
          'digresses': 1,
          'presumably': 1,
          'unintentional': 1,
          'parody': 1,
          'posturing': 1,
          'countless': 1,
          'wherein': 1,
          'deliberately': 1,
          'die': 1,
          'car': 1,
          'chase': 1,
          'lovers': 1,
          'nyah': 1,
          'nordoffhall': 1,
          'thandie': 1,
          'works': 1,
          'trademark': 1,
          'magic': 1,
          'hypnotic': 1,
          'completely': 1,
          'inexplicable': 1,
          'slows': 1,
          'languid': 1,
          'semistall': 1,
          'stunning': 1,
          'opponent': 1,
          'stare': 1,
          'others': 1,
          'come': 1,
          'hither': 1,
          'sexuality': 1,
          'respective': 1,
          'cars': 1,
          'smash': 1,
          'spin': 1,
          'accordance': 1,
          'coming': 1,
          'close': 1,
          'toppling': 1,
          'neighboring': 1,
          'cliff': 1,
          'nprior': 1,
          'famed': 1,
          'trailer': 1,
          'opener': 1,
          'steep': 1,
          'mountain': 1,
          'sans': 1,
          'scaffolding': 1,
          'leaping': 1,
          'jagged': 1,
          'rock': 1,
          'formation': 1,
          'another': 1,
          'nwhy': 1,
          'havent': 1,
          'foggiest': 1,
          'doubt': 1,
          'provide': 1,
          'logical': 1,
          'reply': 1,
          'nwith': 1,
          'slave': 1,
          'machine': 1,
          'jettisons': 1,
          'logic': 1,
          'possible': 1,
          'spies': 1,
          'adrenaline': 1,
          'junkies': 1,
          'mountains': 1,
          'crashing': 1,
          'means': 1,
          'get': 1,
          'explored': 1,
          'scenes': 1,
          'ive': 1,
          'described': 1,
          'included': 1,
          'titillate': 1,
          'insight': 1,
          'ngod': 1,
          'forbid': 1,
          'nwoo': 1,
          'certainly': 1,
          'knows': 1,
          'piece': 1,
          'energetic': 1,
          'remain': 1,
          'individual': 1,
          'connecting': 1,
          'form': 1,
          'anything': 1,
          'splices': 1,
          'beer': 1,
          'commerciallike': 1,
          'visuals': 1,
          'nstill': 1,
          'terms': 1,
          'crackerjack': 1,
          'candy': 1,
          'opening': 1,
          'cherish': 1,
          'vigorous': 1,
          'flamenco': 1,
          'dance': 1,
          'featuring': 1,
          'several': 1,
          'welcome': 1,
          'devices': 1,
          'graceful': 1,
          'slow': 1,
          'artistry': 1,
          'synchronized': 1,
          'movement': 1,
          'juxtaposed': 1,
          'stage': 1,
          'romance': 1,
          'individuals': 1,
          'discovering': 1,
          'nbetween': 1,
          'frantic': 1,
          'dancing': 1,
          'trains': 1,
          'sensuous': 1,
          'contact': 1,
          'top': 1,
          'bon': 1,
          'jovi': 1,
          'music': 1,
          'circa': 1,
          '1988': 1,
          'yet': 1,
          'soul': 1,
          'casts': 1,
          'bit': 1,
          'spell': 1,
          'nsure': 1,
          'happens': 1,
          'talented': 1,
          'maestro': 1,
          'behind': 1,
          'nthandie': 1,
          'later': 1,
          'bathtub': 1,
          'thats': 1,
          'playfully': 1,
          'jennifer': 1,
          'lopez': 1,
          'george': 1,
          'cloony': 1,
          'trunk': 1,
          'meeting': 1,
          'sight': 1,
          'nthey': 1,
          'flirt': 1,
          'exchange': 1,
          'obvious': 1,
          'double': 1,
          'entendres': 1,
          'nnewton': 1,
          'bats': 1,
          'flirtatiously': 1,
          'grins': 1,
          'slyly': 1,
          'drastically': 1,
          'altered': 1,
          'since': 1,
          'nhere': 1,
          'plays': 1,
          'hip': 1,
          'sexual': 1,
          'dynamo': 1,
          'square': 1,
          'jawed': 1,
          'robot': 1,
          'impersonated': 1,
          'part': 1,
          'dashing': 1,
          'precisely': 1,
          'role': 1,
          'want': 1,
          'watching': 1,
          'sleep': 1,
          'walk': 1,
          'wide': 1,
          'shut': 1,
          'might': 1,
          'longest': 1,
          'red': 1,
          'show': 1,
          'diaries': 1,
          'committed': 1,
          'blustered': 1,
          'magnolia': 1,
          'quite': 1,
          'possibly': 1,
          'overrated': 1,
          'performance': 1,
          '90s': 1,
          'man': 1,
          'ncharm': 1,
          'slomo': 1,
          'closeups': 1,
          'preening': 1,
          'mug': 1,
          'falls': 1,
          'apart': 1,
          'level': 1,
          'repetitious': 1,
          'third': 1,
          'act': 1,
          'essentially': 1,
          'hour': 1,
          'wont': 1,
          'stop': 1,
          'whole': 1,
          'thing': 1,
          'commences': 1,
          'utterly': 1,
          'generic': 1,
          'unheard': 1,
          'alas': 1,
          'couldve': 1,
          'staged': 1,
          'anyone': 1,
          'renny': 1,
          'harlin': 1,
          'joseph': 1,
          'merhi': 1,
          'excepting': 1,
          'symbolic': 1,
          'pigeons': 1,
          'find': 1,
          'nweve': 1,
          'seen': 1,
          'slide': 1,
          'across': 1,
          'floor': 1,
          'hand': 1,
          'nit': 1,
          'done': 1,
          'differently': 1,
          'pure': 1,
          'target': 1,
          'broken': 1,
          'arrow': 1,
          'theatrics': 1,
          'propel': 1,
          'apparent': 1,
          'need': 1,
          'hair': 1,
          'whips': 1,
          'stylishly': 1,
          'wind': 1,
          'empty': 1,
          'actor': 1,
          'used': 1,
          'boyish': 1,
          'appeal': 1,
          'chiseled': 1,
          'looks': 1,
          'smiles': 1,
          'narcissistically': 1,
          'literally': 1,
          'nwhen': 1,
          'beaming': 1,
          'away': 1,
          'staring': 1,
          'lens': 1,
          'cold': 1,
          'trying': 1,
          'look': 1,
          'mad': 1,
          'hell': 1,
          'editing': 1,
          'seriously': 1,
          'undermines': 1,
          'effort': 1,
          'nhe': 1,
          'fetishizes': 1,
          'angular': 1,
          'glee': 1,
          'naked': 1,
          'spoof': 1,
          'expected': 1,
          'peel': 1,
          'facemask': 1,
          'reveal': 1,
          'austin': 1,
          'powers': 1,
          'classic': 1,
          'struts': 1,
          'past': 1,
          'fiery': 1,
          'doorway': 1,
          'glaring': 1,
          'baddies': 1,
          'within': 1,
          'frame': 1,
          'pinup': 1,
          'boy': 1,
          'angel': 1,
          'death': 1,
          'daring': 1,
          'escape': 1,
          'reckless': 1,
          'motorcycle': 1,
          'attack': 1,
          'angle': 1,
          'kill': 1,
          'mass': 1,
          'suicide': 1,
          'ritual': 1,
          'dumb': 1,
          'bastard': 1,
          'jumps': 1,
          'bike': 1,
          'toting': 1,
          'basically': 1,
          'inviting': 1,
          'handsome': 1,
          'shoot': 1,
          'lead': 1,
          'played': 1,
          'appropriately': 1,
          'british': 1,
          'dougray': 1,
          'scott': 1,
          'mentally': 1,
          'deficient': 1,
          'game': 1,
          'chicken': 1,
          'motorcycles': 1,
          'nthough': 1,
          'instead': 1,
          'jumping': 1,
          'side': 1,
          'last': 1,
          'grown': 1,
          'men': 1,
          'giving': 1,
          'fly': 1,
          'hundred': 1,
          'feet': 1,
          'still': 1,
          'position': 1,
          'land': 1,
          'beach': 1,
          'begin': 1,
          'manoemano': 1,
          'fist': 1,
          'ends': 1,
          'pulling': 1,
          'thought': 1,
          'dead': 1,
          'nnot': 1,
          'worry': 1,
          'takes': 1,
          'care': 1,
          'problem': 1,
          'without': 1,
          'breaking': 1,
          'sweat': 1,
          'nyou': 1,
          'may': 1,
          'noticed': 1,
          'opted': 1,
          'describe': 1,
          'iota': 1,
          'mi2s': 1,
          'nmy': 1,
          'reasoning': 1,
          'simple': 1,
          'would': 1,
          'absolutely': 1,
          'concern': 1,
          'hurtling': 1,
          'forth': 1,
          'next': 1,
          'special': 1,
          'effect': 1,
          'wasnt': 1,
          'kidding': 1,
          'told': 1,
          'friend': 1,
          'mine': 1,
          'average': 1,
          'aerosmith': 1,
          'nnobody': 1,
          'go': 1,
          'theyll': 1,
          'surely': 1,
          'regret': 1,
          'nas': 1,
          'movies': 1,
          'evolve': 1,
          'devolve': 1,
          'increasingly': 1,
          'whittled': 1,
          'mi': 1,
          'seemed': 1,
          'built': 1,
          'around': 1,
          'brian': 1,
          'de': 1,
          'palmas': 1,
          'films': 1,
          'stylistic': 1,
          'flourishes': 1,
          'serves': 1,
          'intermittent': 1,
          'breather': 1,
          'nonstop': 1,
          'masturbatory': 1,
          'pandemonium': 1,
          'irrelevant': 1,
          'sense': 1,
          'nall': 1,
          'ultimately': 1,
          'matters': 1,
          'pesky': 1,
          'nneg': 1}),
 Counter({'rather': 4,
          'nthe': 4,
          'plot': 4,
          'film': 3,
          'two': 3,
          'romantic': 3,
          'reviewers': 2,
          'films': 2,
          'hard': 2,
          'time': 2,
          'happens': 2,
          'overwhelming': 2,
          'end': 2,
          'feelings': 2,
          'happen': 2,
          'trouble': 2,
          'author': 2,
          'impression': 2,
          'wasnt': 2,
          'real': 2,
          'movie': 2,
          'show': 2,
          'probably': 2,
          'old': 2,
          'nick': 2,
          'nolte': 2,
          'young': 2,
          'julia': 2,
          'roberts': 2,
          'soon': 2,
          'pairing': 2,
          'screwball': 2,
          'director': 2,
          'fails': 2,
          'every': 1,
          'faced': 1,
          'properly': 1,
          'reviewed': 1,
          'nmost': 1,
          'leave': 1,
          'impact': 1,
          'either': 1,
          'good': 1,
          'bad': 1,
          'must': 1,
          'work': 1,
          'express': 1,
          'thoughts': 1,
          'nbut': 1,
          'sometimes': 1,
          'trivial': 1,
          'reasons': 1,
          'ni': 1,
          'love': 1,
          'happened': 1,
          'one': 1,
          'occasions': 1,
          'review': 1,
          'left': 1,
          'contrary': 1,
          'hardly': 1,
          'since': 1,
          'keeping': 1,
          'awake': 1,
          'watching': 1,
          'nwhich': 1,
          'surprise': 1,
          'day': 1,
          'theatre': 1,
          'full': 1,
          'close': 1,
          'sound': 1,
          'speakers': 1,
          'late': 1,
          'didnt': 1,
          'lack': 1,
          'sleep': 1,
          'nsuch': 1,
          'things': 1,
          'rarely': 1,
          'many': 1,
          'years': 1,
          'closest': 1,
          'thing': 1,
          'solution': 1,
          'mystery': 1,
          'quality': 1,
          'revolves': 1,
          'around': 1,
          'rival': 1,
          'chicago': 1,
          'reporters': 1,
          'peter': 1,
          'brackett': 1,
          'aspiring': 1,
          'sabrina': 1,
          'peterson': 1,
          'ntwo': 1,
          'assigned': 1,
          'cover': 1,
          'train': 1,
          'collision': 1,
          'nas': 1,
          'meet': 1,
          'start': 1,
          'scooping': 1,
          'process': 1,
          'discover': 1,
          'sinister': 1,
          'involving': 1,
          'cancerogenic': 1,
          'milk': 1,
          'also': 1,
          'secondary': 1,
          'raison': 1,
          'tre': 1,
          'reminiscent': 1,
          'classical': 1,
          'comedies': 1,
          'starring': 1,
          'spencer': 1,
          'tracy': 1,
          'katharine': 1,
          'hepburn': 1,
          'nmovie': 1,
          'screenwriter': 1,
          'charles': 1,
          'shyer': 1,
          'experiences': 1,
          'turning': 1,
          'spirit': 1,
          'modern': 1,
          'setting': 1,
          'father': 1,
          'bride': 1,
          'tries': 1,
          'nhowever': 1,
          'although': 1,
          'chemistry': 1,
          'stops': 1,
          'arouse': 1,
          'interest': 1,
          'nit': 1,
          'due': 1,
          'poorly': 1,
          'executed': 1,
          'genre': 1,
          'mix': 1,
          'collides': 1,
          'lighthearted': 1,
          'comedy': 1,
          'uninteresting': 1,
          'suitable': 1,
          'pure': 1,
          'action': 1,
          'thrillers': 1,
          'nshyer': 1,
          'make': 1,
          'proper': 1,
          'transition': 1,
          'areas': 1,
          'making': 1,
          'story': 1,
          'cliched': 1,
          'predictable': 1,
          'result': 1,
          'forgettable': 1,
          'effort': 1,
          'convinced': 1,
          'watch': 1,
          'nill': 1,
          'give': 1,
          'benefit': 1,
          'doubt': 1,
          'though': 1,
          'nneg': 1}),
 Counter({'jane': 6,
          'city': 5,
          'africa': 5,
          'tarzan': 4,
          'lost': 4,
          'movie': 4,
          'like': 4,
          'nthe': 4,
          'bad': 4,
          'film': 4,
          'special': 4,
          'effects': 4,
          'march': 3,
          'away': 3,
          'acting': 3,
          'better': 3,
          'looked': 3,
          'two': 2,
          'really': 2,
          'figured': 2,
          'plot': 2,
          'ntarzan': 2,
          'casper': 2,
          'van': 2,
          'dien': 2,
          'jungle': 2,
          'nhe': 2,
          'n': 2,
          'actually': 2,
          'old': 2,
          'guys': 2,
          'course': 2,
          'ape': 2,
          'wasnt': 2,
          'scenery': 2,
          'nbut': 2,
          'story': 2,
          'nothing': 2,
          'good': 1,
          'things': 1,
          'say': 1,
          'follows': 1,
          'cute': 1,
          'thankfully': 1,
          '90': 1,
          'minutes': 1,
          'length': 1,
          'nif': 1,
          'havent': 1,
          'already': 1,
          'didnt': 1,
          'much': 1,
          'boring': 1,
          'contrived': 1,
          'extreme': 1,
          'left': 1,
          'living': 1,
          'civilized': 1,
          'society': 1,
          'days': 1,
          'impending': 1,
          'marriage': 1,
          'played': 1,
          'aptly': 1,
          'named': 1,
          'nback': 1,
          'former': 1,
          'home': 1,
          'group': 1,
          'looters': 1,
          'found': 1,
          'key': 1,
          'locating': 1,
          'mind': 1,
          'never': 1,
          'wanted': 1,
          'find': 1,
          'nanyway': 1,
          'tarzans': 1,
          'friend': 1,
          'appears': 1,
          'vision': 1,
          'realizes': 1,
          'must': 1,
          'return': 1,
          'help': 1,
          'stop': 1,
          'finding': 1,
          'leaves': 1,
          'first': 1,
          'mistake': 1,
          'opinion': 1,
          'travels': 1,
          'nof': 1,
          'hot': 1,
          'mans': 1,
          'heals': 1,
          'reunited': 1,
          'battle': 1,
          'nsound': 1,
          'dumb': 1,
          'explanation': 1,
          'nits': 1,
          'improvement': 1,
          'real': 1,
          'thing': 1,
          'plain': 1,
          'awful': 1,
          'nim': 1,
          'quite': 1,
          'sure': 1,
          'njane': 1,
          'heck': 1,
          'lot': 1,
          'least': 1,
          'easy': 1,
          'eyes': 1,
          'ncompounding': 1,
          'fact': 1,
          'many': 1,
          'places': 1,
          'dialogue': 1,
          'obviously': 1,
          'rerecorded': 1,
          'ive': 1,
          'seen': 1,
          'dubbing': 1,
          'bruce': 1,
          'lee': 1,
          'movies': 1,
          'nadded': 1,
          'sound': 1,
          'problems': 1,
          'cinematography': 1,
          'nthis': 1,
          'filled': 1,
          'beautiful': 1,
          'african': 1,
          'panoramic': 1,
          'shots': 1,
          'overexposed': 1,
          'nquite': 1,
          'frankly': 1,
          'think': 1,
          'could': 1,
          'probably': 1,
          'job': 1,
          'capturing': 1,
          'beauty': 1,
          'camcorder': 1,
          'bunch': 1,
          'professional': 1,
          'equipment': 1,
          'nthen': 1,
          'nyou': 1,
          'doubt': 1,
          'asking': 1,
          'nyes': 1,
          'friends': 1,
          'writers': 1,
          'injected': 1,
          'place': 1,
          'supernatural': 1,
          'elements': 1,
          'nprobably': 1,
          'sake': 1,
          'using': 1,
          'cgi': 1,
          'since': 1,
          'hurt': 1,
          'nin': 1,
          'parts': 1,
          'werent': 1,
          'little': 1,
          'hokey': 1,
          'side': 1,
          'nexcept': 1,
          'got': 1,
          'ridiculous': 1,
          'climax': 1,
          'grand': 1,
          'finales': 1,
          'went': 1,
          'right': 1,
          'toilet': 1,
          'point': 1,
          'nit': 1,
          'almost': 1,
          'run': 1,
          'money': 1,
          'nthese': 1,
          'noticeably': 1,
          'lower': 1,
          'quality': 1,
          'rest': 1,
          'something': 1,
          'amateur': 1,
          'video': 1,
          'production': 1,
          'ni': 1,
          'took': 1,
          'one': 1,
          'lesson': 1,
          'watching': 1,
          'men': 1,
          'bones': 1,
          'morph': 1,
          'skeletal': 1,
          'warriors': 1,
          'dont': 1,
          'mix': 1,
          'nstay': 1,
          'far': 1,
          'version': 1,
          'nneg': 1}),
 Counter({'film': 4,
          'nthe': 3,
          'dvd': 3,
          '1': 3,
          'group': 2,
          'stranded': 2,
          'last': 2,
          'stop': 2,
          'beach': 2,
          'full': 2,
          'bank': 2,
          'choice': 2,
          'enough': 2,
          'performance': 2,
          'sterling': 2,
          'usual': 2,
          'extra': 2,
          'features': 2,
          'original': 2,
          'dolby': 2,
          'surround': 2,
          'sound': 2,
          'cast': 2,
          'crew': 2,
          'silly': 1,
          'performances': 1,
          'huge': 1,
          'gaps': 1,
          'logic': 1,
          'mar': 1,
          'otherwise': 1,
          'interesting': 1,
          'tale': 1,
          'eclectic': 1,
          'people': 1,
          'cafe': 1,
          'motel': 1,
          'due': 1,
          'heavy': 1,
          'snowfall': 1,
          'none': 1,
          'colorado': 1,
          'state': 1,
          'highway': 1,
          'patrolman': 1,
          'adam': 1,
          'discovers': 1,
          'murder': 1,
          'scene': 1,
          'bag': 1,
          'cash': 1,
          'recent': 1,
          'robbery': 1,
          'nsomeone': 1,
          'amongst': 1,
          'strangers': 1,
          'robber': 1,
          'murderer': 1,
          'person': 1,
          'multiple': 1,
          'criminals': 1,
          'nadam': 1,
          'unfortunately': 1,
          'wrong': 1,
          'lead': 1,
          'nhe': 1,
          'doesnt': 1,
          'play': 1,
          'role': 1,
          'seriousness': 1,
          'believable': 1,
          'goofiness': 1,
          'funny': 1,
          'nhis': 1,
          'stuck': 1,
          'somewhere': 1,
          'middle': 1,
          'really': 1,
          'needed': 1,
          'one': 1,
          'side': 1,
          'nrose': 1,
          'mcgowan': 1,
          'cold': 1,
          'unpleasant': 1,
          'eye': 1,
          'always': 1,
          'jurgen': 1,
          'prochnow': 1,
          'nwhat': 1,
          'earth': 1,
          'nbest': 1,
          'comes': 1,
          'william': 1,
          'taylor': 1,
          'cheesy': 1,
          'yet': 1,
          'still': 1,
          'somehow': 1,
          'cool': 1,
          'confident': 1,
          'wayne': 1,
          'newton': 1,
          'drifter': 1,
          'type': 1,
          'available': 1,
          'home': 1,
          'entertainment': 1,
          'nas': 1,
          'theyve': 1,
          'filled': 1,
          'disc': 1,
          'contains': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          '2': 1,
          '0': 1,
          '5': 1,
          'digital': 1,
          'length': 1,
          'audio': 1,
          'commentary': 1,
          'track': 1,
          'director': 1,
          'mark': 1,
          'malone': 1,
          'interviews': 1,
          'trailer': 1,
          'biographies': 1,
          'might': 1,
          'greatest': 1,
          'sterlings': 1,
          'effort': 1,
          'adding': 1,
          'decent': 1,
          'keeping': 1,
          'price': 1,
          'affordable': 1,
          'suggested': 1,
          'retail': 1,
          '19': 1,
          '95': 1,
          'makes': 1,
          'worth': 1,
          'money': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'earth': 5,
          'effects': 4,
          'bad': 3,
          'say': 3,
          'looks': 3,
          'fact': 3,
          'quite': 3,
          'nthe': 3,
          'terrible': 3,
          'psychlo': 3,
          'played': 3,
          'battlefield': 2,
          'never': 2,
          'interested': 2,
          'really': 2,
          'watch': 2,
          'worst': 2,
          'direction': 2,
          'great': 2,
          'films': 2,
          'times': 2,
          'sound': 2,
          'acting': 2,
          'makeup': 2,
          'aliens': 2,
          'planet': 2,
          'destined': 2,
          'end': 2,
          'course': 2,
          'barry': 2,
          'pepper': 2,
          'green': 2,
          'go': 2,
          'terl': 2,
          'like': 2,
          'good': 2,
          'looking': 2,
          'nin': 2,
          'part': 2,
          'entire': 2,
          'movie': 2,
          'time': 2,
          'new': 2,
          'went': 1,
          'saw': 1,
          'right': 1,
          'called': 1,
          'previews': 1,
          'terribly': 1,
          'book': 1,
          'find': 1,
          'scientology': 1,
          'interesting': 1,
          'reading': 1,
          'advanced': 1,
          'reviews': 1,
          'weird': 1,
          'urge': 1,
          'nwell': 1,
          'let': 1,
          'first': 1,
          'far': 1,
          'view': 1,
          'safe': 1,
          'might': 1,
          'ever': 1,
          'seen': 1,
          'yes': 1,
          'even': 1,
          'worse': 1,
          'mr': 1,
          'magoo': 1,
          'blue': 1,
          'face': 1,
          'jaws': 1,
          'revenge': 1,
          'nroger': 1,
          'christianson': 1,
          'whos': 1,
          'credits': 1,
          'include': 1,
          'set': 1,
          'art': 1,
          'alien': 1,
          'star': 1,
          'wars': 1,
          'directs': 1,
          'amateurism': 1,
          'feels': 1,
          'sounds': 1,
          'dumb': 1,
          'depressing': 1,
          'look': 1,
          'dark': 1,
          'drabby': 1,
          'bright': 1,
          'happy': 1,
          'surround': 1,
          'ive': 1,
          'heard': 1,
          'nothing': 1,
          'dialogue': 1,
          'poor': 1,
          'hideous': 1,
          'nheres': 1,
          'socalled': 1,
          'plot': 1,
          '3000': 1,
          'man': 1,
          'endangered': 1,
          'species': 1,
          'named': 1,
          'nwonder': 1,
          'invading': 1,
          'put': 1,
          'mananimals': 1,
          'destroy': 1,
          'typical': 1,
          'hero': 1,
          'small': 1,
          'role': 1,
          '1999s': 1,
          'mile': 1,
          'save': 1,
          'none': 1,
          'thing': 1,
          'chief': 1,
          'security': 1,
          'frankly': 1,
          'john': 1,
          'travolta': 1,
          'dreadlocks': 1,
          'big': 1,
          'head': 1,
          'eyes': 1,
          'doesnt': 1,
          'work': 1,
          'nof': 1,
          'sidekick': 1,
          'lol': 1,
          'nforest': 1,
          'whitaker': 1,
          'deformed': 1,
          'werewolf': 1,
          'kind': 1,
          'nour': 1,
          'friendly': 1,
          'human': 1,
          'johnny': 1,
          'well': 1,
          'long': 1,
          'scraggly': 1,
          'hair': 1,
          'nim': 1,
          'sure': 1,
          'explain': 1,
          'badness': 1,
          'except': 1,
          'neverything': 1,
          'imcomprehinsable': 1,
          'way': 1,
          'arent': 1,
          'phony': 1,
          'special': 1,
          'everything': 1,
          'faulted': 1,
          'dont': 1,
          'remember': 1,
          'one': 1,
          'enjoying': 1,
          'liked': 1,
          'enjoyed': 1,
          'nthroughout': 1,
          '127': 1,
          'minute': 1,
          'running': 1,
          'dying': 1,
          'constantly': 1,
          'hoping': 1,
          'maybe': 1,
          'projectioner': 1,
          'would': 1,
          'blow': 1,
          'bulb': 1,
          'something': 1,
          'sadly': 1,
          'didnt': 1,
          'nmy': 1,
          'advice': 1,
          'hollywood': 1,
          'get': 1,
          'scripts': 1,
          'classes': 1,
          'better': 1,
          'directors': 1,
          'damnit': 1,
          'make': 1,
          'american': 1,
          'beauty': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'see': 4,
          'madonna': 3,
          'evita': 3,
          'nnow': 3,
          'wonderful': 3,
          'price': 2,
          'film': 2,
          'admit': 2,
          'almost': 2,
          'nthe': 2,
          'story': 2,
          'eva': 2,
          'duarte': 2,
          'thats': 2,
          'goes': 2,
          'argentina': 2,
          'nthey': 2,
          'understood': 2,
          'ni': 2,
          'going': 2,
          'right': 2,
          'nas': 2,
          'nbut': 2,
          'chance': 2,
          'grade': 2,
          'big': 2,
          'fan': 2,
          'youre': 2,
          'pay': 2,
          'critic': 2,
          'phil': 1,
          'curtolo': 1,
          'antonio': 1,
          'banderas': 1,
          'jonathan': 1,
          'alan': 1,
          'parker': 1,
          'music': 1,
          'andrew': 1,
          'lloyd': 1,
          'weber': 1,
          'lyrics': 1,
          'tim': 1,
          'rice': 1,
          'trailer': 1,
          'rockoperaturnedmajor': 1,
          'motion': 1,
          'picture': 1,
          'breathtaking': 1,
          'soundtrack': 1,
          'listen': 1,
          'nso': 1,
          'wouldnt': 1,
          'nsimple': 1,
          'little': 1,
          '2': 1,
          'hours': 1,
          'constant': 1,
          'singing': 1,
          'drive': 1,
          'insane': 1,
          'full': 1,
          'drama': 1,
          'trapped': 1,
          'inside': 1,
          'notes': 1,
          'chords': 1,
          'nshe': 1,
          'orphaned': 1,
          'child': 1,
          'ends': 1,
          'becoming': 1,
          'hooker': 1,
          'field': 1,
          'acting': 1,
          'finally': 1,
          'meets': 1,
          'juan': 1,
          'peron': 1,
          'soontobe': 1,
          'first': 1,
          'president': 1,
          'fall': 1,
          'love': 1,
          'eventually': 1,
          'marry': 1,
          'nsounds': 1,
          'pretty': 1,
          'good': 1,
          'doesnt': 1,
          'nwell': 1,
          'gets': 1,
          'better': 1,
          'rainbow': 1,
          'tour': 1,
          'across': 1,
          'europe': 1,
          'trying': 1,
          'win': 1,
          'respect': 1,
          'neva': 1,
          'lady': 1,
          'nhowever': 1,
          'dramapacked': 1,
          'moments': 1,
          'never': 1,
          'actors': 1,
          'actresses': 1,
          'sang': 1,
          'fast': 1,
          'went': 1,
          'theater': 1,
          '4': 1,
          'magic': 1,
          'cinemas': 1,
          'attitude': 1,
          'terribly': 1,
          'boring': 1,
          'left': 1,
          'happy': 1,
          'thing': 1,
          'kept': 1,
          'awake': 1,
          'loud': 1,
          'bangs': 1,
          'drums': 1,
          'strums': 1,
          'guitar': 1,
          'nalthough': 1,
          'come': 1,
          'dull': 1,
          'beautiful': 1,
          'cinematography': 1,
          'eyecatching': 1,
          'madonnas': 1,
          'performance': 1,
          'spiritual': 1,
          'leader': 1,
          'would': 1,
          'definitely': 1,
          'oscarcontender': 1,
          'spoken': 1,
          'single': 1,
          'line': 1,
          'taken': 1,
          'away': 1,
          'stubbornness': 1,
          'making': 1,
          'exact': 1,
          'replica': 1,
          'broadway': 1,
          'musical': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'dont': 1,
          'look': 1,
          'musicals': 1,
          'screen': 1,
          'nif': 1,
          'want': 1,
          'lot': 1,
          'cheaper': 1,
          '5': 1,
          '200': 1,
          'plus': 1,
          'play': 1,
          'nall': 1,
          'review': 1,
          'contains': 1,
          'opinion': 1,
          'set': 1,
          'even': 1,
          'saw': 1,
          'may': 1,
          'saying': 1,
          'kind': 1,
          'nand': 1,
          'given': 1,
          '17year': 1,
          'old': 1,
          'quentin': 1,
          'tarantino': 1,
          'way': 1,
          'hard': 1,
          'n': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'menace': 4,
          'like': 4,
          'sw': 4,
          'lucas': 3,
          'phantom': 3,
          'ni': 3,
          'nwith': 2,
          'star': 2,
          'wars': 2,
          'films': 2,
          'head': 2,
          'toy': 2,
          'new': 2,
          'product': 2,
          'nthe': 2,
          'money': 2,
          'rather': 2,
          'movie': 2,
          'never': 1,
          'seen': 1,
          'man': 1,
          'love': 1,
          'george': 1,
          'overt': 1,
          'success': 1,
          'three': 1,
          'original': 1,
          'become': 1,
          'necessarily': 1,
          'filmmaker': 1,
          'cheeze': 1,
          'huge': 1,
          'company': 1,
          'shelve': 1,
          'nonly': 1,
          'made': 1,
          '115': 1,
          'million': 1,
          'every': 1,
          'kid': 1,
          'wants': 1,
          'expensive': 1,
          'toys': 1,
          'falls': 1,
          'apart': 1,
          'within': 1,
          'hour': 1,
          'playing': 1,
          'question': 1,
          'episode': 1,
          '1': 1,
          'jeez': 1,
          'pure': 1,
          'simple': 1,
          'baby': 1,
          'nno': 1,
          'right': 1,
          'mind': 1,
          'would': 1,
          'create': 1,
          'fiasco': 1,
          'knew': 1,
          'wouldnt': 1,
          'make': 1,
          'ton': 1,
          'fourth': 1,
          'week': 1,
          'release': 1,
          'come': 1,
          'franchise': 1,
          'stranger': 1,
          'since': 1,
          'absolutely': 1,
          'idea': 1,
          'movies': 1,
          'popular': 1,
          'find': 1,
          'boring': 1,
          'full': 1,
          'nothing': 1,
          'eye': 1,
          'candy': 1,
          'nphantom': 1,
          'first': 1,
          'minus': 1,
          '10': 1,
          'nnothing': 1,
          'whole': 1,
          'concept': 1,
          'remotely': 1,
          'enjoyable': 1,
          'neven': 1,
          'special': 1,
          'effects': 1,
          'seem': 1,
          'bland': 1,
          'story': 1,
          'mindless': 1,
          'mess': 1,
          'nacting': 1,
          'wooden': 1,
          'action': 1,
          'sequences': 1,
          'something': 1,
          'video': 1,
          'game': 1,
          'nsw': 1,
          'worst': 1,
          'year': 1,
          'far': 1,
          'title': 1,
          'e1': 1,
          'tpm': 1,
          'big': 1,
          'shoulders': 1,
          'thought': 1,
          'chris': 1,
          'carter': 1,
          'releasing': 1,
          'xfiles': 1,
          'although': 1,
          'adaptation': 1,
          'excellent': 1,
          'way': 1,
          'spend': 1,
          'two': 1,
          'hours': 1,
          'npm': 1,
          'long': 1,
          'headache': 1,
          'nneg': 1}),
 Counter({'movie': 16,
          'story': 7,
          'well': 5,
          'interesting': 5,
          'enough': 5,
          'played': 5,
          'nthe': 4,
          'character': 4,
          'one': 3,
          'quite': 3,
          'acting': 3,
          'found': 3,
          'good': 3,
          'didnt': 3,
          'touch': 3,
          'horse': 2,
          'comes': 2,
          'haunt': 2,
          'coverup': 2,
          'much': 2,
          'say': 2,
          'boring': 2,
          'slow': 2,
          'aside': 2,
          'sharon': 2,
          'stone': 2,
          'end': 2,
          'utilized': 2,
          'catherine': 2,
          'keener': 2,
          'merits': 2,
          'pacing': 2,
          'nall': 2,
          'part': 2,
          'comment': 2,
          'see': 2,
          'director': 2,
          'flavor': 2,
          'opinion': 2,
          'think': 2,
          'subject': 2,
          'wouldnt': 2,
          'make': 2,
          'wasnt': 2,
          'ni': 2,
          'even': 2,
          'fanatic': 2,
          'affluent': 1,
          'breeders': 1,
          'past': 1,
          'ages': 1,
          'old': 1,
          'blackmail': 1,
          'back': 1,
          'hands': 1,
          'accomplices': 1,
          'nthats': 1,
          'pretty': 1,
          'essence': 1,
          'becomes': 1,
          'times': 1,
          'nthat': 1,
          'presented': 1,
          'probably': 1,
          'close': 1,
          'representative': 1,
          'source': 1,
          'particular': 1,
          'development': 1,
          'also': 1,
          'alas': 1,
          'simply': 1,
          'hold': 1,
          'interest': 1,
          'get': 1,
          'na': 1,
          'things': 1,
          'sit': 1,
          'example': 1,
          'original': 1,
          'scam': 1,
          'heavily': 1,
          'involved': 1,
          'yet': 1,
          'relatively': 1,
          'small': 1,
          'role': 1,
          'seems': 1,
          'along': 1,
          'better': 1,
          'non': 1,
          'flip': 1,
          'side': 1,
          'thought': 1,
          'developed': 1,
          'helped': 1,
          'lot': 1,
          'characters': 1,
          'lacked': 1,
          'nas': 1,
          'far': 1,
          'casting': 1,
          'concerned': 1,
          'choices': 1,
          'nick': 1,
          'nolte': 1,
          'jeff': 1,
          'bridges': 1,
          'great': 1,
          'people': 1,
          'acted': 1,
          'parts': 1,
          'admirably': 1,
          'directing': 1,
          'something': 1,
          'long': 1,
          'actually': 1,
          'add': 1,
          'distinctive': 1,
          'occasions': 1,
          'nmatthew': 1,
          'warchus': 1,
          'added': 1,
          'spin': 1,
          'tackled': 1,
          'able': 1,
          'look': 1,
          'horseracing': 1,
          'nthere': 1,
          'certain': 1,
          'direction': 1,
          'reason': 1,
          'flaw': 1,
          'matter': 1,
          'kind': 1,
          'flavoring': 1,
          'directorial': 1,
          'certainly': 1,
          'hope': 1,
          'makes': 1,
          'movies': 1,
          'show': 1,
          'promise': 1,
          'dont': 1,
          'like': 1,
          'evolve': 1,
          'captivating': 1,
          'simpatico': 1,
          'enjoyable': 1,
          'watch': 1,
          'nalthough': 1,
          'going': 1,
          'find': 1,
          'though': 1,
          'style': 1,
          'used': 1,
          'compliment': 1,
          'recommend': 1,
          'anyone': 1,
          'racing': 1,
          'likely': 1,
          'enjoy': 1,
          'nneg': 1}),
 Counter({'book': 7,
          'written': 4,
          'duke': 4,
          'movie': 4,
          'one': 4,
          'characters': 4,
          'thompsons': 3,
          'fear': 3,
          'loathing': 3,
          'las': 3,
          'vegas': 3,
          'nthe': 3,
          'drug': 3,
          'use': 3,
          'still': 3,
          'dr': 3,
          'raoul': 3,
          'nhunter': 2,
          'also': 2,
          'form': 2,
          'known': 2,
          'gonzo': 2,
          'hunter': 2,
          'thomspon': 2,
          'nand': 2,
          'problem': 2,
          'although': 2,
          'adventures': 2,
          'around': 2,
          'ndespite': 2,
          'name': 2,
          'get': 2,
          'johnny': 2,
          'personalities': 2,
          'depp': 2,
          'samoan': 2,
          'lawyer': 2,
          'stoned': 2,
          'set': 2,
          'good': 2,
          'fullyloaded': 1,
          'entertainment': 1,
          'review': 1,
          'website': 1,
          'coming': 1,
          'soon': 1,
          '1971': 1,
          'already': 1,
          'american': 1,
          'classic': 1,
          'merely': 1,
          'unadulterated': 1,
          'journey': 1,
          'postpsychedelia': 1,
          '1960s': 1,
          'ushered': 1,
          'new': 1,
          'journalism': 1,
          'nsoon': 1,
          'became': 1,
          'basis': 1,
          'character': 1,
          'doonesbury': 1,
          'uncle': 1,
          'nalthough': 1,
          'favorites': 1,
          'agree': 1,
          'assessment': 1,
          'novel': 1,
          'unfilmable': 1,
          'main': 1,
          'detailing': 1,
          'wild': 1,
          'trippedout': 1,
          'road': 1,
          'nit': 1,
          'edited': 1,
          'thomspons': 1,
          'relatively': 1,
          'sober': 1,
          'home': 1,
          'nso': 1,
          'depicts': 1,
          'told': 1,
          'sense': 1,
          'aloofness': 1,
          'humor': 1,
          'narrator': 1,
          'always': 1,
          'drugged': 1,
          'grip': 1,
          'reality': 1,
          'tell': 1,
          'journalistic': 1,
          'ability': 1,
          'going': 1,
          'nnot': 1,
          'changes': 1,
          'minor': 1,
          'scene': 1,
          'dropped': 1,
          'exact': 1,
          'duplicate': 1,
          'terms': 1,
          'dialouge': 1,
          'nunfortunately': 1,
          'annoying': 1,
          'depps': 1,
          'plays': 1,
          'thompson': 1,
          'excessive': 1,
          'narration': 1,
          'vivid': 1,
          'played': 1,
          '2d': 1,
          'characers': 1,
          'screen': 1,
          'alias': 1,
          'riding': 1,
          'companion': 1,
          'benicio': 1,
          'del': 1,
          'toro': 1,
          'large': 1,
          'emotions': 1,
          'save': 1,
          'film': 1,
          'faithful': 1,
          'plot': 1,
          'sent': 1,
          'sports': 1,
          'illustrated': 1,
          'cover': 1,
          'mint': 1,
          '400': 1,
          'takes': 1,
          'along': 1,
          'car': 1,
          'trunk': 1,
          'full': 1,
          'drugs': 1,
          'nfrom': 1,
          'another': 1,
          'happens': 1,
          'including': 1,
          'scenes': 1,
          'high': 1,
          'acid': 1,
          'watches': 1,
          'people': 1,
          'bar': 1,
          'turn': 1,
          'literally': 1,
          'lounge': 1,
          'lizards': 1,
          'nwhile': 1,
          'moments': 1,
          'almost': 1,
          'unwatchable': 1,
          'parts': 1,
          'especially': 1,
          'towards': 1,
          'end': 1,
          'lot': 1,
          'celebrity': 1,
          'cameos': 1,
          'stars': 1,
          'never': 1,
          'ground': 1,
          'decoration': 1,
          'costumes': 1,
          'great': 1,
          'probably': 1,
          'deserve': 1,
          'oscar': 1,
          'nomination': 1,
          'nhowever': 1,
          'know': 1,
          'sets': 1,
          'effects': 1,
          'make': 1,
          'quite': 1,
          'frankly': 1,
          'nneg': 1}),
 Counter({'drug': 8,
          'movie': 5,
          'story': 5,
          'go': 4,
          'nin': 3,
          'three': 3,
          'nthe': 3,
          'stories': 3,
          'time': 3,
          'deals': 3,
          'people': 3,
          'liman': 2,
          'director': 2,
          'viewers': 2,
          'points': 2,
          'audience': 2,
          'fails': 2,
          'come': 2,
          'much': 2,
          'thread': 2,
          'deal': 2,
          'ronna': 2,
          'polley': 2,
          'askew': 2,
          'vegas': 2,
          'mohr': 2,
          'wolf': 2,
          'n': 2,
          'fact': 2,
          'movies': 2,
          'far': 2,
          'like': 2,
          'dont': 2,
          'success': 2,
          'almost': 2,
          'common': 2,
          'night': 2,
          'filmmakers': 1,
          'use': 1,
          'manner': 1,
          'tricks': 1,
          'flesh': 1,
          'brighten': 1,
          'dull': 1,
          'dreary': 1,
          'overused': 1,
          'idea': 1,
          'ndoug': 1,
          'swingers': 1,
          'ultrahip': 1,
          'severely': 1,
          'dark': 1,
          'comedy': 1,
          'example': 1,
          'filmmaker': 1,
          'latest': 1,
          'gives': 1,
          'raucous': 1,
          'neonlit': 1,
          'backdrop': 1,
          'cinematographer': 1,
          'druginfested': 1,
          'path': 1,
          'misadventure': 1,
          'nbut': 1,
          'parallel': 1,
          'structure': 1,
          'multitiered': 1,
          'connect': 1,
          'level': 1,
          'bringing': 1,
          'worth': 1,
          'efforts': 1,
          'nil': 1,
          'value': 1,
          'nhis': 1,
          'produced': 1,
          'anthologystyle': 1,
          'telling': 1,
          'multiple': 1,
          'view': 1,
          'author': 1,
          'might': 1,
          'write': 1,
          'serial': 1,
          'novel': 1,
          'nconsistent': 1,
          'ethic': 1,
          'screenwriter': 1,
          'john': 1,
          'august': 1,
          'provide': 1,
          'bit': 1,
          'overlap': 1,
          'beginning': 1,
          'narrative': 1,
          'insert': 1,
          'brief': 1,
          'connections': 1,
          'narratives': 1,
          'laces': 1,
          'together': 1,
          'events': 1,
          'thereafter': 1,
          'checkout': 1,
          'clerk': 1,
          'sarah': 1,
          'looking': 1,
          'score': 1,
          'rent': 1,
          'money': 1,
          'turning': 1,
          'trafficking': 1,
          'b': 1,
          'regular': 1,
          'dealer': 1,
          'simon': 1,
          'desmond': 1,
          'gone': 1,
          'las': 1,
          'giving': 1,
          'opportunity': 1,
          'c': 1,
          'gay': 1,
          'soap': 1,
          'actors': 1,
          'zack': 1,
          'jay': 1,
          'adam': 1,
          'scott': 1,
          'working': 1,
          'undercover': 1,
          'police': 1,
          'bust': 1,
          'said': 1,
          'nneither': 1,
          'substance': 1,
          'feel': 1,
          'campfire': 1,
          'albeit': 1,
          'rather': 1,
          'strange': 1,
          'one': 1,
          'could': 1,
          'told': 1,
          'five': 1,
          'ten': 1,
          'minutes': 1,
          'originally': 1,
          'short': 1,
          'film': 1,
          'entitled': 1,
          'x': 1,
          'expanded': 1,
          'feature': 1,
          'length': 1,
          'early': 1,
          'april': 1,
          'release': 1,
          'date': 1,
          'mistimed': 1,
          'capitalize': 1,
          'christmas': 1,
          'setting': 1,
          'los': 1,
          'angeleslas': 1,
          'nightlife': 1,
          'something': 1,
          'mainstream': 1,
          'theatergoers': 1,
          'attach': 1,
          'characters': 1,
          'shallow': 1,
          'point': 1,
          'prerequisite': 1,
          'performances': 1,
          'littleknown': 1,
          'players': 1,
          'taye': 1,
          'diggs': 1,
          'help': 1,
          'hurt': 1,
          'roles': 1,
          'even': 1,
          'bigger': 1,
          'names': 1,
          'katie': 1,
          'holmes': 1,
          'enough': 1,
          'make': 1,
          'substantial': 1,
          'nalthough': 1,
          'thats': 1,
          'expected': 1,
          'lack': 1,
          'continuous': 1,
          'screen': 1,
          'picture': 1,
          'binds': 1,
          'ngo': 1,
          'doesnt': 1,
          'suffers': 1,
          'nas': 1,
          'teen': 1,
          'concerned': 1,
          'represents': 1,
          'absolute': 1,
          'bottom': 1,
          'constant': 1,
          'stream': 1,
          'indecipherable': 1,
          'light': 1,
          'sound': 1,
          'mean': 1,
          'nothing': 1,
          'without': 1,
          'sort': 1,
          'theme': 1,
          'following': 1,
          'count': 1,
          'themes': 1,
          'attempting': 1,
          'romantic': 1,
          'interludes': 1,
          'dealers': 1,
          'resorting': 1,
          'alterior': 1,
          'motives': 1,
          'involved': 1,
          'stumbling': 1,
          'nat': 1,
          'times': 1,
          'humor': 1,
          'sickly': 1,
          'funny': 1,
          'low': 1,
          'watchable': 1,
          'majority': 1,
          'running': 1,
          'best': 1,
          'left': 1,
          'teens': 1,
          'blockbuster': 1,
          'saturday': 1,
          'nneg': 1}),
 Counter({'story': 5,
          'get': 4,
          'make': 4,
          'enola': 4,
          'film': 3,
          'plot': 3,
          'nhe': 3,
          'completely': 3,
          'mariner': 3,
          'good': 3,
          'people': 3,
          'long': 3,
          'sorry': 2,
          'waterworld': 2,
          'supposedly': 2,
          'made': 2,
          'also': 2,
          'one': 2,
          'really': 2,
          'movie': 2,
          'together': 2,
          'costner': 2,
          'covered': 2,
          'water': 2,
          'hes': 2,
          'sorts': 2,
          'us': 2,
          'child': 2,
          'prodigy': 2,
          'primitive': 2,
          'technology': 2,
          'nit': 2,
          'doesnt': 2,
          'like': 2,
          'airplanes': 2,
          'things': 2,
          'nthere': 2,
          'never': 2,
          'time': 2,
          'nthe': 2,
          'tattoo': 2,
          'dryland': 2,
          'stupid': 2,
          'action': 2,
          'boring': 2,
          'plain': 2,
          'hopper': 2,
          'adventure': 2,
          'original': 2,
          'rips': 2,
          'feel': 1,
          'financial': 1,
          'backers': 1,
          'expensive': 1,
          'ever': 1,
          '172': 1,
          'million': 1,
          'stupidest': 1,
          'boy': 1,
          'ripped': 1,
          'nin': 1,
          'fact': 1,
          'amusement': 1,
          'park': 1,
          'ride': 1,
          'nits': 1,
          'even': 1,
          'another': 1,
          'case': 1,
          'cliches': 1,
          'strung': 1,
          'well': 1,
          'something': 1,
          'thats': 1,
          'painful': 1,
          'watch': 1,
          'relishes': 1,
          'flaws': 1,
          'nkevin': 1,
          'stars': 1,
          'man': 1,
          'kind': 1,
          'mutant': 1,
          'half': 1,
          'manhalf': 1,
          'fish': 1,
          'explorermariner': 1,
          'alternate': 1,
          'earth': 1,
          'polar': 1,
          'ice': 1,
          'caps': 1,
          'melted': 1,
          'nhes': 1,
          'referred': 1,
          'meaner': 1,
          'would': 1,
          'appropriate': 1,
          'title': 1,
          'cold': 1,
          'rigid': 1,
          'strict': 1,
          'supposed': 1,
          'guy': 1,
          'docks': 1,
          'small': 1,
          'floating': 1,
          'village': 1,
          'trades': 1,
          'dirt': 1,
          'money': 1,
          'introduces': 1,
          'important': 1,
          'characters': 1,
          'nfirst': 1,
          'meet': 1,
          'villains': 1,
          'soontobe': 1,
          'heroine': 1,
          'wacky': 1,
          'inventor': 1,
          'group': 1,
          'somehow': 1,
          'today': 1,
          'lowtech': 1,
          'tools': 1,
          'used': 1,
          'pirates': 1,
          'vikings': 1,
          'nimmediately': 1,
          'films': 1,
          'biggest': 1,
          'flaw': 1,
          'apparent': 1,
          'highly': 1,
          'advanced': 1,
          'seem': 1,
          'anyone': 1,
          'read': 1,
          'yet': 1,
          'skidoos': 1,
          'nhow': 1,
          'powered': 1,
          'nand': 1,
          'couldnt': 1,
          'keep': 1,
          'flying': 1,
          'reached': 1,
          'dry': 1,
          'land': 1,
          'nalso': 1,
          'planet': 1,
          'materials': 1,
          'nim': 1,
          'im': 1,
          'checking': 1,
          'brain': 1,
          'door': 1,
          'going': 1,
          'movies': 1,
          'elements': 1,
          'go': 1,
          'unnoticed': 1,
          'draw': 1,
          'attention': 1,
          'away': 1,
          'confuse': 1,
          'potential': 1,
          'pirate': 1,
          'set': 1,
          'medieval': 1,
          'times': 1,
          'modern': 1,
          'mix': 1,
          'two': 1,
          'sense': 1,
          'isnt': 1,
          'much': 1,
          'moves': 1,
          'quickly': 1,
          'takes': 1,
          'explain': 1,
          'anything': 1,
          'thing': 1,
          'learn': 1,
          'mojorino': 1,
          'back': 1,
          'map': 1,
          'nwho': 1,
          'put': 1,
          'come': 1,
          'taken': 1,
          'figure': 1,
          'nwe': 1,
          'answer': 1,
          'whoever': 1,
          'girl': 1,
          'victor': 1,
          'reach': 1,
          'nto': 1,
          'bad': 1,
          'short': 1,
          'escapes': 1,
          'woman': 1,
          'named': 1,
          'helen': 1,
          'tripplehorn': 1,
          'nthey': 1,
          'sail': 1,
          'encountering': 1,
          'strange': 1,
          'process': 1,
          'fight': 1,
          'smokers': 1,
          'lead': 1,
          'idiot': 1,
          'villain': 1,
          'deacon': 1,
          'kidnaps': 1,
          'becomes': 1,
          'overly': 1,
          'grand': 1,
          'taking': 1,
          'army': 1,
          'goons': 1,
          'rescuing': 1,
          'bringing': 1,
          'salvation': 1,
          'neven': 1,
          'special': 1,
          'effects': 1,
          'nnot': 1,
          'single': 1,
          'character': 1,
          'likable': 1,
          'therefore': 1,
          'neither': 1,
          'ndennis': 1,
          'jack': 1,
          'nicholsons': 1,
          'joker': 1,
          'nstill': 1,
          'professionally': 1,
          'production': 1,
          'design': 1,
          'idea': 1,
          'substance': 1,
          'ni': 1,
          'hope': 1,
          'dont': 1,
          'sequel': 1,
          'nneg': 1}),
 Counter({'nthis': 5,
          'battlefield': 4,
          'earth': 4,
          'nthe': 4,
          'terl': 4,
          'nbut': 4,
          'film': 4,
          'nit': 3,
          'one': 3,
          'story': 3,
          'nin': 3,
          'called': 3,
          'mining': 3,
          'psychlo': 3,
          'audience': 3,
          'told': 2,
          'theres': 2,
          'films': 2,
          'go': 2,
          'scifi': 2,
          'species': 2,
          'aliens': 2,
          'mine': 2,
          'rest': 2,
          'tall': 2,
          'power': 2,
          'star': 2,
          'movie': 2,
          'nhe': 2,
          'home': 2,
          'planet': 2,
          'slaves': 2,
          'leader': 2,
          'machine': 2,
          'also': 2,
          'made': 2,
          'would': 2,
          'travolta': 2,
          'scientologist': 2,
          'subliminal': 2,
          'message': 2,
          'watch': 1,
          'wallow': 1,
          'misery': 1,
          'ludicrously': 1,
          'conceived': 1,
          'efforts': 1,
          'recent': 1,
          'history': 1,
          'clumsily': 1,
          'insipid': 1,
          'dialogue': 1,
          'shallow': 1,
          'characterizations': 1,
          'ugly': 1,
          'scene': 1,
          'transitions': 1,
          'evidence': 1,
          'dramatic': 1,
          'arc': 1,
          'headacheinducing': 1,
          'sound': 1,
          'effects': 1,
          'resolution': 1,
          'completely': 1,
          'implausible': 1,
          'nworse': 1,
          'promise': 1,
          'sequel': 1,
          'nwhy': 1,
          'nsave': 1,
          'money': 1,
          'nsome': 1,
          'quickly': 1,
          'video': 1,
          'however': 1,
          'straight': 1,
          'channels': 1,
          'mystery': 1,
          'science': 1,
          'theatre': 1,
          'year': 1,
          '3000': 1,
          'man': 1,
          'become': 1,
          'endangered': 1,
          'nmost': 1,
          'humanity': 1,
          'mananimals': 1,
          'destroyed': 1,
          'generations': 1,
          'ago': 1,
          'battle': 1,
          'race': 1,
          'plundering': 1,
          'psychlos': 1,
          'nsurvivors': 1,
          'either': 1,
          'taken': 1,
          'shelter': 1,
          'caves': 1,
          'enslaved': 1,
          'earths': 1,
          'resources': 1,
          'lives': 1,
          'menacing': 1,
          'looking': 1,
          'humanoid': 1,
          'stand': 1,
          'ninefeet': 1,
          'resemble': 1,
          'inbred': 1,
          'klingons': 1,
          'ndimwitted': 1,
          'culture': 1,
          'predicated': 1,
          'extortion': 1,
          'getting': 1,
          'leverage': 1,
          'ntravolta': 1,
          'leverageusing': 1,
          'plays': 1,
          'conniving': 1,
          'security': 1,
          'chief': 1,
          'oversees': 1,
          'facility': 1,
          'nmuch': 1,
          'spent': 1,
          'showing': 1,
          'us': 1,
          'examples': 1,
          'terls': 1,
          'petty': 1,
          'machinations': 1,
          'routinely': 1,
          'employs': 1,
          'deception': 1,
          'punctuates': 1,
          'statements': 1,
          'maniacal': 1,
          'laughter': 1,
          'thing': 1,
          'certain': 1,
          'hates': 1,
          'stationed': 1,
          'nwhen': 1,
          'informs': 1,
          'spending': 1,
          'life': 1,
          'begins': 1,
          'devise': 1,
          'latest': 1,
          'plan': 1,
          'select': 1,
          'group': 1,
          'secretly': 1,
          'gold': 1,
          'ore': 1,
          'site': 1,
          'nits': 1,
          'clear': 1,
          'benefits': 1,
          'except': 1,
          'makes': 1,
          'richer': 1,
          'place': 1,
          'use': 1,
          'scrappy': 1,
          'jonnie': 1,
          'goodboy': 1,
          'tyler': 1,
          'barry': 1,
          'peppers': 1,
          'selected': 1,
          'slave': 1,
          'groups': 1,
          'na': 1,
          'knowledge': 1,
          'gives': 1,
          'knowhow': 1,
          'teaches': 1,
          'things': 1,
          'language': 1,
          'principles': 1,
          'founding': 1,
          'fathers': 1,
          'euclidean': 1,
          'geometry': 1,
          'location': 1,
          'fort': 1,
          'knox': 1,
          'enlightenment': 1,
          'doesnt': 1,
          'prepare': 1,
          'assignment': 1,
          'prepares': 1,
          'organize': 1,
          'stage': 1,
          'massive': 1,
          'revolt': 1,
          'captors': 1,
          'nwere': 1,
          'going': 1,
          'blow': 1,
          'world': 1,
          'says': 1,
          'first': 1,
          'need': 1,
          'supplies': 1,
          'days': 1,
          'comrades': 1,
          'evolve': 1,
          'cave': 1,
          'dwelling': 1,
          'loincloth': 1,
          'wearing': 1,
          'rat': 1,
          'eating': 1,
          'fighter': 1,
          'pilots': 1,
          'nuclear': 1,
          'weapons': 1,
          'experts': 1,
          'nby': 1,
          'laughing': 1,
          'maniacally': 1,
          'media': 1,
          'working': 1,
          'overtime': 1,
          'let': 1,
          'public': 1,
          'know': 1,
          'john': 1,
          'travoltas': 1,
          'labor': 1,
          'love': 1,
          'piece': 1,
          'drivel': 1,
          'nnumerous': 1,
          'journals': 1,
          'illconceived': 1,
          'idea': 1,
          'stemming': 1,
          'blind': 1,
          'hubris': 1,
          'arrogance': 1,
          'poor': 1,
          'planning': 1,
          'nand': 1,
          'watching': 1,
          'youll': 1,
          'wholeheartedly': 1,
          'agree': 1,
          'terrible': 1,
          'illogically': 1,
          'constructed': 1,
          'tediously': 1,
          'acted': 1,
          'frequently': 1,
          'begs': 1,
          'question': 1,
          'ever': 1,
          'nat': 1,
          'price': 1,
          'tag': 1,
          '90': 1,
          'million': 1,
          'remembered': 1,
          'gigantic': 1,
          'folly': 1,
          'assuredly': 1,
          'becoming': 1,
          'avengers': 1,
          'summer': 1,
          'nboth': 1,
          'unforgivable': 1,
          'promises': 1,
          'suffer': 1,
          'speedy': 1,
          'fate': 1,
          'subsequent': 1,
          'indignity': 1,
          'addition': 1,
          'universally': 1,
          'pejorative': 1,
          'reviews': 1,
          'another': 1,
          'bizarre': 1,
          'element': 1,
          'saga': 1,
          'never': 1,
          'decade': 1,
          'trying': 1,
          'persuade': 1,
          'studios': 1,
          'bring': 1,
          'big': 1,
          'screen': 1,
          'controversy': 1,
          'based': 1,
          '1982': 1,
          'novel': 1,
          'l': 1,
          'ron': 1,
          'hubbard': 1,
          'religions': 1,
          'late': 1,
          'founder': 1,
          'led': 1,
          'believe': 1,
          'amount': 1,
          'dogma': 1,
          'laden': 1,
          'messages': 1,
          'poorly': 1,
          'otherwise': 1,
          'totally': 1,
          'undetectable': 1,
          'nif': 1,
          'got': 1,
          'anything': 1,
          'unlike': 1,
          'nlike': 1,
          'felt': 1,
          'imprisoned': 1,
          'dreaded': 1,
          'situation': 1,
          'looked': 1,
          'opportunity': 1,
          'leave': 1,
          'ncould': 1,
          'scientology': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'like': 8,
          'presence': 7,
          'nthe': 7,
          'one': 6,
          'abraham': 6,
          'new': 5,
          'realm': 5,
          'would': 5,
          'see': 5,
          'two': 5,
          'dana': 4,
          'nwhen': 4,
          'ice': 4,
          'images': 4,
          'sequence': 4,
          'starts': 4,
          'priest': 3,
          'chicken': 3,
          'angela': 3,
          'looks': 3,
          'evil': 3,
          'dimension': 3,
          'angels': 3,
          'demons': 3,
          'likes': 3,
          'five': 3,
          'recent': 3,
          'alison': 3,
          'amblyn': 3,
          'also': 3,
          'take': 3,
          'show': 3,
          'humans': 3,
          'minutes': 3,
          'get': 3,
          'credits': 3,
          'music': 3,
          'cast': 3,
          'decent': 3,
          'people': 3,
          'cant': 2,
          'fried': 2,
          'zimmerly': 2,
          'named': 2,
          'nfor': 2,
          'human': 2,
          'friends': 2,
          'something': 2,
          'presences': 2,
          'ramona': 2,
          'midgett': 2,
          'follow': 2,
          'six': 2,
          'away': 2,
          'allow': 2,
          'lost': 2,
          'job': 2,
          'killed': 2,
          'decided': 2,
          'master': 2,
          'true': 2,
          'allowed': 2,
          'able': 2,
          'nas': 2,
          'worst': 2,
          'nif': 2,
          'theres': 2,
          'pretentious': 2,
          'arty': 2,
          'sun': 2,
          'following': 2,
          'life': 2,
          'almost': 2,
          'strange': 2,
          'shots': 2,
          'time': 2,
          'opening': 2,
          'video': 2,
          'industrial': 2,
          'random': 2,
          'run': 2,
          'entire': 2,
          'song': 2,
          'doesnt': 2,
          'nat': 2,
          'least': 2,
          'pretty': 2,
          'powers': 2,
          'front': 2,
          'though': 2,
          'inbred': 2,
          'naked': 2,
          'exactly': 2,
          'ni': 2,
          'walks': 2,
          'large': 2,
          'platter': 2,
          'either': 2,
          'creature': 2,
          'covered': 2,
          'nudity': 2,
          'nbesides': 2,
          'body': 2,
          'www': 2,
          'bmovie': 2,
          'com': 2,
          'available': 2,
          'called': 2,
          'set': 2,
          'director': 2,
          'nits': 1,
          'mine': 1,
          'n': 1,
          'twisted': 1,
          'charles': 1,
          'huevelman': 1,
          'hordes': 1,
          'tasty': 1,
          'uninterested': 1,
          'nan': 1,
          'appropriately': 1,
          'dj': 1,
          'vivona': 1,
          'rules': 1,
          'alternate': 1,
          'neither': 1,
          'touch': 1,
          'kicks': 1,
          'trick': 1,
          'rounding': 1,
          'sent': 1,
          'systematically': 1,
          'slaughtered': 1,
          'goes': 1,
          'wrong': 1,
          'victims': 1,
          'escapes': 1,
          'alerted': 1,
          'existence': 1,
          'feel': 1,
          'threat': 1,
          'needs': 1,
          'stopped': 1,
          'nthey': 1,
          'enlist': 1,
          'help': 1,
          'suicide': 1,
          'victim': 1,
          'return': 1,
          'flesh': 1,
          'enlistees': 1,
          'wall': 1,
          'surrounds': 1,
          'netherrealm': 1,
          'nher': 1,
          'mission': 1,
          'melt': 1,
          'barrier': 1,
          'access': 1,
          'reminding': 1,
          'ancient': 1,
          'court': 1,
          'jester': 1,
          'king': 1,
          'queen': 1,
          'kings': 1,
          'sorcerer': 1,
          'wing': 1,
          'apprentice': 1,
          'nduring': 1,
          'downtime': 1,
          'unemployment': 1,
          'create': 1,
          'sorcery': 1,
          'torture': 1,
          'ruled': 1,
          'nabraham': 1,
          'wished': 1,
          'asked': 1,
          'devotion': 1,
          'wizard': 1,
          'murdering': 1,
          'love': 1,
          'nin': 1,
          'pursue': 1,
          'sport': 1,
          'hunting': 1,
          'destroying': 1,
          'brought': 1,
          'nafter': 1,
          'murder': 1,
          'become': 1,
          'stronger': 1,
          'power': 1,
          'surpassed': 1,
          'amblyns': 1,
          'nbecause': 1,
          'screwup': 1,
          'escape': 1,
          'destroy': 1,
          'control': 1,
          'quests': 1,
          'find': 1,
          'errors': 1,
          'ways': 1,
          'hapless': 1,
          'live': 1,
          'nightmares': 1,
          'brutally': 1,
          'murdered': 1,
          'thing': 1,
          'stand': 1,
          'sake': 1,
          'nfilms': 1,
          'eraserhead': 1,
          'begotten': 1,
          'examples': 1,
          'added': 1,
          'list': 1,
          'nthis': 1,
          'essentially': 1,
          '80': 1,
          'minute': 1,
          'stalkandslash': 1,
          'dantes': 1,
          'inferno': 1,
          'idea': 1,
          'hell': 1,
          'corresponds': 1,
          'lived': 1,
          'plots': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          '3': 1,
          '6': 1,
          'intercut': 1,
          '40': 1,
          'supposedly': 1,
          'haunting': 1,
          'many': 1,
          'serve': 1,
          'confuse': 1,
          'plot': 1,
          'arent': 1,
          'bizarre': 1,
          'floating': 1,
          'past': 1,
          'screen': 1,
          'pointless': 1,
          'suicidal': 1,
          'staring': 1,
          'breakfast': 1,
          'contemplating': 1,
          'whether': 1,
          'answer': 1,
          'phone': 1,
          'ncompelling': 1,
          'ultimately': 1,
          'designed': 1,
          'unknown': 1,
          'band': 1,
          'featuring': 1,
          'various': 1,
          'interspersed': 1,
          'length': 1,
          'actual': 1,
          'listing': 1,
          'credit': 1,
          'information': 1,
          'pop': 1,
          'near': 1,
          'end': 1,
          'began': 1,
          'thought': 1,
          'vcr': 1,
          'accidentally': 1,
          'cut': 1,
          'interstitial': 1,
          'mtv2': 1,
          'found': 1,
          'way': 1,
          'tv': 1,
          'made': 1,
          'mostly': 1,
          'hard': 1,
          'rock': 1,
          'even': 1,
          'features': 1,
          'beginning': 1,
          'established': 1,
          'possesses': 1,
          'supernatural': 1,
          'shooting': 1,
          'bullets': 1,
          'palms': 1,
          'hands': 1,
          'decapitating': 1,
          'waving': 1,
          'hand': 1,
          'talks': 1,
          'darth': 1,
          'vader': 1,
          'clone': 1,
          'without': 1,
          'heavy': 1,
          'breathing': 1,
          'reason': 1,
          'delegates': 1,
          'main': 1,
          'stalkings': 1,
          'seems': 1,
          'supporting': 1,
          'deliverance': 1,
          'none': 1,
          'overalled': 1,
          'cretin': 1,
          'handles': 1,
          'gravedigging': 1,
          'chop': 1,
          'peoples': 1,
          'heads': 1,
          'shovel': 1,
          'father': 1,
          'dwight': 1,
          'spurgin': 1,
          'children': 1,
          'mark': 1,
          'kettler': 1,
          'jennifer': 1,
          'poirrierwallace': 1,
          'care': 1,
          'young': 1,
          'woman': 1,
          'transformed': 1,
          'half': 1,
          'doghalf': 1,
          'mix': 1,
          'shotgun': 1,
          'course': 1,
          'big': 1,
          'truck': 1,
          'driving': 1,
          'guy': 1,
          'tie': 1,
          'back': 1,
          'vehicle': 1,
          'drag': 1,
          'across': 1,
          'stone': 1,
          'roads': 1,
          'pouring': 1,
          'salt': 1,
          'wounds': 1,
          'nwhy': 1,
          'want': 1,
          'give': 1,
          'responsibilities': 1,
          'bunch': 1,
          'rednecks': 1,
          'cool': 1,
          'nand': 1,
          'fellow': 1,
          'screws': 1,
          'buddies': 1,
          'round': 1,
          'complete': 1,
          'number': 1,
          'required': 1,
          'enter': 1,
          'barely': 1,
          'together': 1,
          'given': 1,
          'moment': 1,
          'ridiculous': 1,
          'segment': 1,
          'comes': 1,
          'right': 1,
          'aforementioned': 1,
          'draggingsalting': 1,
          'character': 1,
          'question': 1,
          'zimmely': 1,
          'turn': 1,
          'standing': 1,
          'movie': 1,
          'theater': 1,
          'seated': 1,
          'na': 1,
          'holding': 1,
          'dirty': 1,
          'leashes': 1,
          'sits': 1,
          'next': 1,
          'nhe': 1,
          'picks': 1,
          'enjoy': 1,
          'taunting': 1,
          'interest': 1,
          'whatsoever': 1,
          'leave': 1,
          'chides': 1,
          'going': 1,
          'performance': 1,
          'gwar': 1,
          'terry': 1,
          'gilliam': 1,
          'animation': 1,
          'monty': 1,
          'python': 1,
          'come': 1,
          'makes': 1,
          'wants': 1,
          'crucified': 1,
          'clap': 1,
          'annoyingly': 1,
          'continues': 1,
          'rest': 1,
          'takes': 1,
          'finally': 1,
          'catches': 1,
          'stabs': 1,
          'giant': 1,
          'eyeball': 1,
          'slimy': 1,
          'glop': 1,
          'spurts': 1,
          'ruptured': 1,
          'organ': 1,
          'box': 1,
          'claims': 1,
          'horrifying': 1,
          'nature': 1,
          'motion': 1,
          'picture': 1,
          'parental': 1,
          'discretion': 1,
          'advised': 1,
          'persons': 1,
          'age': 1,
          '18': 1,
          'ncontains': 1,
          'graphic': 1,
          'violence': 1,
          'nwhile': 1,
          'certainly': 1,
          'seem': 1,
          'much': 1,
          'amounts': 1,
          'loving': 1,
          'close': 1,
          'spurting': 1,
          'neck': 1,
          'stump': 1,
          'semigraphic': 1,
          'selfsurgery': 1,
          'scene': 1,
          'instances': 1,
          'head': 1,
          'trauma': 1,
          'melting': 1,
          'gore': 1,
          'spraying': 1,
          'blood': 1,
          'bloody': 1,
          'wound': 1,
          'variety': 1,
          'sparse': 1,
          'far': 1,
          'attractive': 1,
          'member': 1,
          'bruised': 1,
          'torn': 1,
          'bloodied': 1,
          'dragging': 1,
          'incident': 1,
          'nice': 1,
          'released': 1,
          'vhs': 1,
          'nit': 1,
          'presented': 1,
          'fullframe': 1,
          'transfer': 1,
          'shot': 1,
          'good': 1,
          'deal': 1,
          '8mm': 1,
          'soundtrack': 1,
          'makingof': 1,
          'thin': 1,
          'havent': 1,
          'opportunity': 1,
          'documentary': 1,
          'actually': 1,
          'interested': 1,
          'filmed': 1,
          'eric': 1,
          'stanze': 1,
          'similar': 1,
          'cult': 1,
          'savage': 1,
          'harvest': 1,
          'conducted': 1,
          'atmosphere': 1,
          'nneg': 1}),
 Counter({'wrestling': 8,
          'rumble': 6,
          'ready': 5,
          'something': 4,
          'king': 4,
          'comedy': 3,
          'jokes': 3,
          'like': 3,
          'even': 3,
          'professional': 3,
          'nbut': 3,
          'sean': 3,
          'wcw': 3,
          'nitro': 3,
          'gordie': 3,
          'wrestler': 2,
          'calling': 2,
          'raw': 2,
          'sewage': 2,
          'fact': 2,
          'champion': 2,
          'thing': 2,
          'hair': 2,
          'theres': 2,
          'dedicated': 2,
          'robbins': 2,
          'humor': 2,
          'memories': 2,
          'ngordie': 2,
          'david': 2,
          'take': 2,
          'nby': 2,
          'particularly': 2,
          'platt': 2,
          'fans': 2,
          'lot': 2,
          'lowbrow': 2,
          'ni': 2,
          'nthe': 2,
          'action': 2,
          'ring': 2,
          'brings': 2,
          'one': 2,
          'wrestlers': 2,
          'blow': 2,
          'arquettes': 2,
          '80year': 1,
          'old': 1,
          'woman': 1,
          'jumps': 1,
          'enthusiastically': 1,
          'couch': 1,
          'wearing': 1,
          'tightfitting': 1,
          'leather': 1,
          'cheers': 1,
          'favorite': 1,
          'tv': 1,
          'opponent': 1,
          'pumpbitch': 1,
          'ntwo': 1,
          'men': 1,
          'messily': 1,
          'eat': 1,
          'fast': 1,
          'food': 1,
          'septic': 1,
          'truck': 1,
          'leaks': 1,
          'directly': 1,
          'behind': 1,
          'nand': 1,
          'roughly': 1,
          '17': 1,
          'people': 1,
          'booted': 1,
          'crotch': 1,
          'nwelcome': 1,
          'njudging': 1,
          'pottymouth': 1,
          'adam': 1,
          'sandler': 1,
          'reigning': 1,
          'boxoffice': 1,
          'realize': 1,
          'albeit': 1,
          'shaking': 1,
          'head': 1,
          'yes': 1,
          'audience': 1,
          'sort': 1,
          'nladies': 1,
          'gentlemen': 1,
          'weep': 1,
          'society': 1,
          'nmind': 1,
          'executed': 1,
          'style': 1,
          'comic': 1,
          'ingenuity': 1,
          'alarming': 1,
          'bodily': 1,
          'fluid': 1,
          'mistaken': 1,
          'gel': 1,
          'mary': 1,
          'laxativeinduced': 1,
          'attack': 1,
          'explosive': 1,
          'diarrhea': 1,
          'dumb': 1,
          'dumber': 1,
          'extremely': 1,
          'funny': 1,
          'nunfortunately': 1,
          'helmed': 1,
          'farrelly': 1,
          'brothers': 1,
          'bolstered': 1,
          'script': 1,
          'accommodates': 1,
          'viewer': 1,
          'anything': 1,
          'remotely': 1,
          'clever': 1,
          'inspired': 1,
          'nready': 1,
          'built': 1,
          'around': 1,
          'fanbase': 1,
          'nwhich': 1,
          'sounded': 1,
          'fine': 1,
          'concept': 1,
          'goofball': 1,
          'director': 1,
          'brian': 1,
          'screenwriter': 1,
          'steven': 1,
          'brill': 1,
          'handcuff': 1,
          'limited': 1,
          'stampede': 1,
          'asinine': 1,
          'humdrum': 1,
          'bathroom': 1,
          'basically': 1,
          'manage': 1,
          'evoke': 1,
          'pauly': 1,
          'shore': 1,
          'bio': 1,
          'dome': 1,
          'boggs': 1,
          'arquette': 1,
          'dawkins': 1,
          'scott': 1,
          'caan': 1,
          'pride': 1,
          'hardcore': 1,
          'fanatics': 1,
          'day': 1,
          'transport': 1,
          'night': 1,
          'monday': 1,
          'pay': 1,
          'homage': 1,
          'personal': 1,
          'hero': 1,
          'savior': 1,
          'jimmy': 1,
          'oliver': 1,
          'undisputed': 1,
          'leader': 1,
          'community': 1,
          'nwith': 1,
          'two': 1,
          'tickets': 1,
          'upcoming': 1,
          'performance': 1,
          'psyched': 1,
          'witnessing': 1,
          'defend': 1,
          'title': 1,
          'firsthand': 1,
          'unscrupulous': 1,
          'boxing': 1,
          'kingpin': 1,
          'titus': 1,
          'sinclair': 1,
          'joe': 1,
          'pantoliano': 1,
          'sporting': 1,
          'long': 1,
          'cowboy': 1,
          'boots': 1,
          'plans': 1,
          'nsinclair': 1,
          'plotting': 1,
          'diamond': 1,
          'dallas': 1,
          'page': 1,
          'playing': 1,
          'pummel': 1,
          'tarp': 1,
          'thereby': 1,
          'dethroning': 1,
          'dignified': 1,
          'embarrassing': 1,
          'front': 1,
          'bewildered': 1,
          'auditorium': 1,
          'full': 1,
          'shocked': 1,
          'rioting': 1,
          'madly': 1,
          'arguing': 1,
          'isnt': 1,
          'payper': 1,
          'view': 1,
          'event': 1,
          'nthey': 1,
          'upon': 1,
          'track': 1,
          'supply': 1,
          'encouragement': 1,
          'essential': 1,
          'fallen': 1,
          'idol': 1,
          'make': 1,
          'comeback': 1,
          'attempt': 1,
          'nalong': 1,
          'way': 1,
          'expect': 1,
          'sh': 1,
          'well': 1,
          'nyou': 1,
          'may': 1,
          'find': 1,
          'rasslin': 1,
          'aficionado': 1,
          'b': 1,
          'fan': 1,
          'lowest': 1,
          'comedies': 1,
          'welcome': 1,
          'open': 1,
          'arms': 1,
          'fresh': 1,
          'resourceful': 1,
          'nrumble': 1,
          'nothing': 1,
          'sloppy': 1,
          'frightfully': 1,
          'unfunny': 1,
          'swamp': 1,
          'land': 1,
          'misbegotten': 1,
          'retardation': 1,
          'first': 1,
          'halfhour': 1,
          'ultimate': 1,
          'test': 1,
          'patience': 1,
          'nluckily': 1,
          'simpleminded': 1,
          'events': 1,
          'pick': 1,
          'steam': 1,
          'wellchoreographed': 1,
          'ndirector': 1,
          'showed': 1,
          'knack': 1,
          'capturing': 1,
          'brutality': 1,
          'excitement': 1,
          'football': 1,
          'varsity': 1,
          'blues': 1,
          'work': 1,
          'violence': 1,
          'excessive': 1,
          'nhaving': 1,
          'fake': 1,
          'soap': 1,
          'opera': 1,
          'turn': 1,
          'bloody': 1,
          'skirmish': 1,
          'back': 1,
          'unfortunate': 1,
          'owen': 1,
          'harts': 1,
          'tragic': 1,
          'accident': 1,
          'last': 1,
          'year': 1,
          'especially': 1,
          'characters': 1,
          'dive': 1,
          'cage': 1,
          'match': 1,
          'nthis': 1,
          'want': 1,
          'reminiscent': 1,
          'noutside': 1,
          'lewd': 1,
          'puerile': 1,
          'sight': 1,
          'gags': 1,
          'bring': 1,
          'new': 1,
          'meaning': 1,
          'term': 1,
          'scattershot': 1,
          'dialogue': 1,
          'fluctuates': 1,
          'vulgarity': 1,
          'scale': 1,
          '1': 1,
          '10': 1,
          'brills': 1,
          'extensive': 1,
          'vocabulary': 1,
          'ranging': 1,
          'diddly': 1,
          'boob': 1,
          'final': 1,
          'tally': 1,
          'chuckled': 1,
          'times': 1,
          'groaned': 1,
          'indulged': 1,
          'spirited': 1,
          'belly': 1,
          'laugh': 1,
          'involving': 1,
          'martin': 1,
          'landau': 1,
          'geriatric': 1,
          'coach': 1,
          'fights': 1,
          'pretty': 1,
          'impressively': 1,
          '105': 1,
          'ncastingwise': 1,
          'odd': 1,
          'duck': 1,
          'noliver': 1,
          'figure': 1,
          'nhes': 1,
          'perhaps': 1,
          'bit': 1,
          'chunky': 1,
          'fellow': 1,
          'acknowledge': 1,
          'fatty': 1,
          'dampens': 1,
          'suppose': 1,
          'nrose': 1,
          'mcgowan': 1,
          'fully': 1,
          'disposable': 1,
          'sultry': 1,
          'cheerleader': 1,
          'nirtoest': 1,
          'girls': 1,
          'proclaims': 1,
          'extra': 1,
          'pep': 1,
          'added': 1,
          'appearances': 1,
          'goldberg': 1,
          'macho': 1,
          'man': 1,
          'randy': 1,
          'savage': 1,
          'sting': 1,
          'among': 1,
          'others': 1,
          'nwcw': 1,
          'sure': 1,
          'appreciate': 1,
          'nothers': 1,
          'nwell': 1,
          'wont': 1,
          'found': 1,
          'merit': 1,
          'bountiful': 1,
          'energy': 1,
          'finishing': 1,
          'nahhh': 1,
          'npraise': 1,
          'film': 1,
          'discovered': 1,
          'annoying': 1,
          'att': 1,
          'television': 1,
          'commercials': 1,
          'nnow': 1,
          'low': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'nthe': 5,
          'like': 3,
          'theater': 2,
          'best': 2,
          'sheedy': 2,
          'henrikson': 2,
          'nsheedy': 2,
          'emax': 2,
          'finds': 2,
          'unleashes': 2,
          'dog': 2,
          'max': 2,
          'animal': 2,
          'take': 2,
          'upon': 2,
          'offers': 2,
          'etc': 2,
          'special': 2,
          'effects': 2,
          'rare': 1,
          'treat': 1,
          'quality': 1,
          'horror': 1,
          'released': 1,
          'nand': 1,
          'unfortunately': 1,
          'mans': 1,
          'friend': 1,
          'well': 1,
          'waiting': 1,
          'longer': 1,
          'stars': 1,
          'ally': 1,
          'lance': 1,
          'tale': 1,
          'biogenetics': 1,
          'gone': 1,
          'wrong': 1,
          'plays': 1,
          'nosy': 1,
          'reporter': 1,
          'whose': 1,
          'need': 1,
          'good': 1,
          'story': 1,
          'provokes': 1,
          'snoop': 1,
          'inside': 1,
          'poorly': 1,
          'guarded': 1,
          'million': 1,
          'dollar': 1,
          'biolab': 1,
          'effortlessly': 1,
          'intruding': 1,
          'result': 1,
          'experimental': 1,
          'wonder': 1,
          'named': 1,
          'german': 1,
          'shepherd': 1,
          'genetic': 1,
          'recombination': 1,
          'allowing': 1,
          'swallow': 1,
          'snake': 1,
          'camouflage': 1,
          'chameleon': 1,
          'climb': 1,
          'trees': 1,
          'leopard': 1,
          'attack': 1,
          'strength': 1,
          'tiger': 1,
          'nmax': 1,
          'takes': 1,
          'liking': 1,
          'protecting': 1,
          'cruel': 1,
          'technological': 1,
          'realm': 1,
          'owned': 1,
          'nwell': 1,
          'doesnt': 1,
          'long': 1,
          'hormonally': 1,
          'unstable': 1,
          'biohazard': 1,
          'jowls': 1,
          'unsuspecting': 1,
          'suburban': 1,
          'landscape': 1,
          'juicy': 1,
          'leg': 1,
          'mailman': 1,
          'boring': 1,
          'nonpresence': 1,
          'screen': 1,
          'tripping': 1,
          'enormous': 1,
          'plot': 1,
          'chasms': 1,
          'neglected': 1,
          'writerdirector': 1,
          'apologize': 1,
          'lack': 1,
          'credits': 1,
          'ni': 1,
          'suppose': 1,
          'eager': 1,
          'leave': 1,
          'rush': 1,
          'forgot': 1,
          'note': 1,
          'director': 1,
          'writer': 1,
          'producer': 1,
          'nhenrikson': 1,
          'offered': 1,
          'relief': 1,
          'contrived': 1,
          'narration': 1,
          'script': 1,
          'giving': 1,
          'character': 1,
          'much': 1,
          'development': 1,
          'could': 1,
          'considering': 1,
          'flat': 1,
          'dialogue': 1,
          'plaguing': 1,
          'movie': 1,
          'depends': 1,
          'ability': 1,
          'impress': 1,
          'audience': 1,
          'presents': 1,
          'growl': 1,
          'open': 1,
          'door': 1,
          'handles': 1,
          'paw': 1,
          'sit': 1,
          'roll': 1,
          'play': 1,
          'dead': 1,
          'sick': 1,
          'rest': 1,
          'poor': 1,
          'found': 1,
          'offensive': 1,
          'attains': 1,
          'submediocrity': 1,
          'unambitious': 1,
          'nhorror': 1,
          'fans': 1,
          'might': 1,
          'find': 1,
          'cujo': 1,
          'better': 1,
          'bite': 1,
          'nneg': 1}),
 Counter({'joe': 18,
          'meg': 9,
          'ryan': 9,
          'island': 7,
          'volcano': 6,
          'one': 6,
          'movie': 6,
          'boat': 6,
          'nthe': 5,
          'nbut': 4,
          'also': 4,
          'thing': 3,
          'go': 3,
          'nit': 3,
          'cast': 3,
          'tom': 3,
          'hanks': 3,
          'nthis': 3,
          'like': 3,
          'njoe': 3,
          'brain': 3,
          'cloud': 3,
          'natives': 3,
          'nby': 3,
          'goes': 3,
          'nthey': 3,
          'soda': 3,
          'really': 2,
          'made': 2,
          'would': 2,
          'roles': 2,
          'stupid': 2,
          'sequence': 2,
          'office': 2,
          'na': 2,
          'takes': 2,
          'job': 2,
          'doctor': 2,
          'months': 2,
          'nwhen': 2,
          'meets': 2,
          'graynamore': 2,
          'ngraynamore': 2,
          'tells': 2,
          'get': 2,
          'trip': 2,
          'everything': 2,
          'day': 2,
          'graynamores': 2,
          'daughters': 2,
          'gets': 2,
          'another': 2,
          'nand': 2,
          'sail': 2,
          'orange': 2,
          'cheap': 2,
          'shark': 2,
          'luggage': 2,
          'versus': 1,
          'worse': 1,
          'movies': 1,
          'recent': 1,
          'memory': 1,
          'strangest': 1,
          'think': 1,
          'nothing': 1,
          'wrong': 1,
          'solid': 1,
          'lead': 1,
          'never': 1,
          'judge': 1,
          'nif': 1,
          'good': 1,
          'vs': 1,
          'plot': 1,
          'original': 1,
          'nunfortunately': 1,
          'incredibly': 1,
          'begins': 1,
          'going': 1,
          'work': 1,
          'opening': 1,
          'boring': 1,
          'slow': 1,
          'shows': 1,
          'walking': 1,
          'way': 1,
          'wait': 1,
          'long': 1,
          'line': 1,
          'passing': 1,
          'strange': 1,
          'slightly': 1,
          'depressing': 1,
          'scenery': 1,
          'obnoxious': 1,
          'lighting': 1,
          'take': 1,
          '2': 1,
          'minutes': 1,
          'nhere': 1,
          '5': 1,
          'obvious': 1,
          'hates': 1,
          'nat': 1,
          'coworkers': 1,
          'noddly': 1,
          'enough': 1,
          'plays': 1,
          '3': 1,
          'different': 1,
          'leaves': 1,
          'doctors': 1,
          'appointment': 1,
          'nhis': 1,
          'informs': 1,
          'means': 1,
          'die': 1,
          'nso': 1,
          'nquit': 1,
          'course': 1,
          'arrives': 1,
          'home': 1,
          'old': 1,
          'man': 1,
          'named': 1,
          'lloyd': 1,
          'bridges': 1,
          'order': 1,
          'important': 1,
          'mineral': 1,
          'company': 1,
          'need': 1,
          'someone': 1,
          'sacrifice': 1,
          'please': 1,
          'fire': 1,
          'god': 1,
          'startling': 1,
          'coincidence': 1,
          'time': 1,
          'reaches': 1,
          'almost': 1,
          'dead': 1,
          'anyway': 1,
          'agrees': 1,
          'gives': 1,
          'credit': 1,
          'card': 1,
          'buy': 1,
          'needs': 1,
          'great': 1,
          'adventure': 1,
          'date': 1,
          'coworker': 1,
          'nshe': 1,
          'surprise': 1,
          'nexcept': 1,
          'looks': 1,
          'hippyish': 1,
          'dinner': 1,
          'next': 1,
          'driven': 1,
          'lady': 1,
          'sails': 1,
          'wonder': 1,
          'wonders': 1,
          'played': 1,
          'nas': 1,
          'craving': 1,
          'nafter': 1,
          'talking': 1,
          'scenes': 1,
          'deduce': 1,
          'went': 1,
          'plently': 1,
          'special': 1,
          'effects': 1,
          'voyage': 1,
          'fishing': 1,
          'catches': 1,
          'hammerhead': 1,
          'gag': 1,
          'pulled': 1,
          'many': 1,
          'times': 1,
          'top': 1,
          'obviously': 1,
          'rubber': 1,
          'fake': 1,
          'none': 1,
          'night': 1,
          'storm': 1,
          'cheaplooking': 1,
          'lightning': 1,
          'bolt': 1,
          'strikes': 1,
          'overboard': 1,
          'nfortunately': 1,
          'manage': 1,
          'find': 1,
          'brought': 1,
          'pure': 1,
          'luck': 1,
          'nsince': 1,
          'wear': 1,
          'cans': 1,
          'attire': 1,
          'nstupid': 1,
          'n': 1,
          'leaps': 1,
          'fed': 1,
          'nright': 1,
          'jumps': 1,
          'pleads': 1,
          'decides': 1,
          'loves': 1,
          'nnow': 1,
          'end': 1,
          'unfortunately': 1,
          'cheesy': 1,
          'ending': 1,
          'bug': 1,
          'comes': 1,
          'blows': 1,
          'couple': 1,
          'ocean': 1,
          'land': 1,
          'joes': 1,
          'float': 1,
          'part': 1,
          'watch': 1,
          'lava': 1,
          'pouring': 1,
          'towards': 1,
          'villagers': 1,
          'ni': 1,
          'give': 1,
          'nsee': 1,
          'youre': 1,
          'film': 1,
          'buff': 1,
          'enjoys': 1,
          'bad': 1,
          'every': 1,
          'nneg': 1}),
 Counter({'n': 5,
          'willis': 4,
          'funny': 4,
          'career': 4,
          'perrys': 4,
          'perry': 3,
          'whole': 3,
          'nine': 3,
          'yards': 3,
          'characters': 3,
          'unflattering': 3,
          'natasha': 2,
          'henstridge': 2,
          'matthew': 2,
          'made': 2,
          'married': 2,
          'nif': 2,
          'comedy': 2,
          'simply': 2,
          'certainly': 2,
          'film': 2,
          'much': 2,
          'type': 2,
          'next': 2,
          'doesnt': 2,
          'offensive': 2,
          'might': 2,
          'sight': 2,
          'films': 2,
          'nwhen': 2,
          'wonder': 2,
          'arquette': 2,
          'plays': 2,
          'bruce': 2,
          'gentle': 1,
          'urges': 1,
          'havent': 1,
          'love': 1,
          'five': 1,
          'years': 1,
          'neither': 1,
          'rebuts': 1,
          'im': 1,
          'jonathan': 1,
          'lynns': 1,
          'latest': 1,
          'relied': 1,
          'jokes': 1,
          'caliberand': 1,
          'triesthen': 1,
          'itd': 1,
          'innocuous': 1,
          'rather': 1,
          'obvious': 1,
          'little': 1,
          'ninstead': 1,
          'failings': 1,
          'go': 1,
          'deeper': 1,
          'nfirst': 1,
          'hasnt': 1,
          'enough': 1,
          'tough': 1,
          'wiseguy': 1,
          'intimidates': 1,
          'timid': 1,
          'wise': 1,
          'guy': 1,
          'genre': 1,
          'want': 1,
          'make': 1,
          'pretty': 1,
          'penny': 1,
          'two': 1,
          'hollywood': 1,
          'nowadays': 1,
          'write': 1,
          'pairs': 1,
          'robert': 1,
          'de': 1,
          'nirojames': 1,
          'caanbruce': 1,
          'billy': 1,
          'crystalhugh': 1,
          'grantmatthew': 1,
          'wait': 1,
          'royalties': 1,
          'roll': 1,
          'nwhos': 1,
          'njack': 1,
          'nicholson': 1,
          'martin': 1,
          'short': 1,
          'nit': 1,
          'particularly': 1,
          'borderline': 1,
          'noffensive': 1,
          'way': 1,
          'continues': 1,
          'trend': 1,
          'poking': 1,
          'fun': 1,
          'criminals': 1,
          'wouldnt': 1,
          'think': 1,
          'twice': 1,
          'pushing': 1,
          'motherinlaw': 1,
          'brooklyn': 1,
          'bridge': 1,
          'feet': 1,
          'encased': 1,
          'concrete': 1,
          'nthat': 1,
          'sound': 1,
          'like': 1,
          'gag': 1,
          'problem': 1,
          'long': 1,
          'since': 1,
          'lost': 1,
          'fact': 1,
          'taking': 1,
          'human': 1,
          'life': 1,
          'isnt': 1,
          'begin': 1,
          'corpse': 1,
          'placed': 1,
          'car': 1,
          'doused': 1,
          'gasoline': 1,
          'set': 1,
          'ablaze': 1,
          'referred': 1,
          'barbecue': 1,
          'makes': 1,
          'playing': 1,
          'killing': 1,
          'laughs': 1,
          'going': 1,
          'end': 1,
          'also': 1,
          'three': 1,
          'central': 1,
          'female': 1,
          'portrayed': 1,
          'nothing': 1,
          'sex': 1,
          'objects': 1,
          'nrosanna': 1,
          'slutty': 1,
          'chainsmoking': 1,
          'french': 1,
          'canadian': 1,
          'whos': 1,
          'nonetoosuccessful': 1,
          'dentist': 1,
          'nits': 1,
          'role': 1,
          'outfitsand': 1,
          'situationsinto': 1,
          'thrust': 1,
          'nthen': 1,
          'theres': 1,
          'species': 1,
          'ii': 1,
          'welltodo': 1,
          'wife': 1,
          'contract': 1,
          'killer': 1,
          'nshe': 1,
          'gets': 1,
          'involved': 1,
          'character': 1,
          'comes': 1,
          'chicago': 1,
          'hoping': 1,
          'negotiate': 1,
          'finders': 1,
          'fee': 1,
          'mob': 1,
          'boss': 1,
          'yanni': 1,
          'gogolack': 1,
          'kevin': 1,
          'pollack': 1,
          'transposing': 1,
          'vs': 1,
          'ws': 1,
          'jimmy': 1,
          'tulip': 1,
          'tudeski': 1,
          'moves': 1,
          'door': 1,
          'nhenstridge': 1,
          'hitting': 1,
          'likely': 1,
          'demi': 1,
          'getting': 1,
          'back': 1,
          'together': 1,
          'nperry': 1,
          'charm': 1,
          'physical': 1,
          'attributes': 1,
          'traditional': 1,
          'leading': 1,
          'man': 1,
          'especially': 1,
          'closeup': 1,
          'nmost': 1,
          'objectified': 1,
          'bunch': 1,
          'amanda': 1,
          'peet': 1,
          'turns': 1,
          'sexuallyripe': 1,
          'performance': 1,
          'dental': 1,
          'assistant': 1,
          'transpires': 1,
          'questionable': 1,
          'goals': 1,
          'npeets': 1,
          'gratuitous': 1,
          'nude': 1,
          'scene': 1,
          'proves': 1,
          'low': 1,
          'movie': 1,
          'stoop': 1,
          'keep': 1,
          'audience': 1,
          'dropping': 1,
          'cousin': 1,
          'vinny': 1,
          'highpoint': 1,
          'directorial': 1,
          'including': 1,
          'forgettable': 1,
          'clue': 1,
          'greedy': 1,
          'sgt': 1,
          'nbilko': 1,
          'lynn': 1,
          'chose': 1,
          'wrong': 1,
          'path': 1,
          'nperrys': 1,
          'pratfalling': 1,
          'goofiness': 1,
          'coupled': 1,
          'likable': 1,
          'hardness': 1,
          'could': 1,
          'potential': 1,
          'script': 1,
          'work': 1,
          'director': 1,
          'seems': 1,
          'watching': 1,
          'wings': 1,
          'run': 1,
          'gas': 1,
          'quickly': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'flubber': 8,
          'like': 6,
          'disney': 5,
          'really': 5,
          'absent': 4,
          'minded': 4,
          'college': 4,
          'hes': 4,
          'jungle': 4,
          'something': 4,
          'enough': 3,
          'else': 3,
          'could': 3,
          'great': 3,
          'n': 3,
          'probably': 3,
          'professor': 3,
          'played': 3,
          'flying': 3,
          'plot': 3,
          'forgotten': 3,
          'wedding': 3,
          'times': 3,
          'philips': 3,
          'bad': 3,
          'even': 3,
          'films': 3,
          'second': 2,
          'remake': 2,
          'adaptation': 2,
          'hysterically': 2,
          'kind': 2,
          'entertaining': 2,
          'nwhat': 2,
          'magic': 2,
          'instead': 2,
          'dead': 2,
          'water': 2,
          'know': 2,
          'saw': 2,
          'nthe': 2,
          'new': 2,
          'one': 2,
          'basic': 2,
          'elaborate': 2,
          'make': 2,
          'worse': 2,
          'around': 2,
          'philip': 2,
          'robin': 2,
          'williams': 2,
          'lots': 2,
          'sadly': 2,
          'nin': 2,
          'sara': 2,
          'shape': 2,
          'nphilip': 2,
          'save': 2,
          'hoenicker': 2,
          'ha': 2,
          'cause': 2,
          'subplot': 2,
          'attempts': 2,
          'whos': 2,
          'good': 2,
          'nand': 2,
          'another': 2,
          'nwhats': 2,
          'pathetic': 2,
          'need': 2,
          'right': 2,
          'essentially': 2,
          'distribution': 2,
          'general': 2,
          '2': 2,
          'much': 2,
          'little': 2,
          'laugh': 2,
          'ni': 2,
          'think': 2,
          'respectable': 2,
          'man': 2,
          'brilliant': 2,
          'actor': 2,
          'live': 2,
          'action': 2,
          'best': 1,
          'example': 1,
          'take': 1,
          'life': 1,
          'distributed': 1,
          'nits': 1,
          'may': 1,
          'slightly': 1,
          'tiny': 1,
          'kids': 1,
          'anyone': 1,
          'feel': 1,
          'left': 1,
          'boring': 1,
          'slow': 1,
          'incredibly': 1,
          'lifeless': 1,
          'cinematic': 1,
          'shame': 1,
          'nhypothetically': 1,
          'mean': 1,
          'classic': 1,
          'never': 1,
          'well': 1,
          'fred': 1,
          'mcmurray': 1,
          'created': 1,
          'erratic': 1,
          'substance': 1,
          'known': 1,
          'rubber': 1,
          'keeps': 1,
          'appears': 1,
          'added': 1,
          'lot': 1,
          'absentmindedness': 1,
          'part': 1,
          'proffessor': 1,
          'villains': 1,
          'several': 1,
          'showstopping': 1,
          'moments': 1,
          'big': 1,
          'rumba': 1,
          'setups': 1,
          'none': 1,
          'better': 1,
          'revolves': 1,
          'brainerd': 1,
          'creates': 1,
          'inventions': 1,
          'fact': 1,
          'colleges': 1,
          'president': 1,
          'jean': 1,
          'reynolds': 1,
          'indie': 1,
          'actress': 1,
          'marcia': 1,
          'gay': 1,
          'harden': 1,
          'two': 1,
          'forgets': 1,
          'beginning': 1,
          'ndoesnt': 1,
          'warrant': 1,
          'mental': 1,
          'treatment': 1,
          'nanyway': 1,
          'day': 1,
          'third': 1,
          'invents': 1,
          'bounces': 1,
          'everything': 1,
          'super': 1,
          'ball': 1,
          'speed': 1,
          'also': 1,
          'change': 1,
          'aliens': 1,
          'form': 1,
          'abyss': 1,
          'believes': 1,
          'invention': 1,
          'fully': 1,
          'realized': 1,
          'threat': 1,
          'shut': 1,
          'millionaire': 1,
          'tycoonvillain': 1,
          'chester': 1,
          'raymond': 1,
          'j': 1,
          'barry': 1,
          'ironically': 1,
          'brat': 1,
          'son': 1,
          'wheaton': 1,
          'thought': 1,
          'goes': 1,
          'nthrough': 1,
          'twist': 1,
          'hoenickers': 1,
          'goons': 1,
          'named': 1,
          'smith': 1,
          'wesson': 1,
          'sense': 1,
          'humor': 1,
          'clancy': 1,
          'brown': 1,
          'ted': 1,
          'levine': 1,
          'needed': 1,
          'pay': 1,
          'check': 1,
          'discover': 1,
          'hard': 1,
          'way': 1,
          'try': 1,
          'steal': 1,
          'wants': 1,
          'evil': 1,
          'na': 1,
          'involves': 1,
          'win': 1,
          'back': 1,
          'angry': 1,
          'reason': 1,
          'seduced': 1,
          'basically': 1,
          'belloq': 1,
          'wilson': 1,
          'croft': 1,
          'christopher': 1,
          'mcdonald': 1,
          'playing': 1,
          'suaveyetunsuave': 1,
          'asswhole': 1,
          'daytimer': 1,
          'robot': 1,
          'weebo': 1,
          'voiced': 1,
          'oneandonly': 1,
          'jodi': 1,
          'benson': 1,
          'falls': 1,
          'love': 1,
          'nyuckityyuck': 1,
          'dull': 1,
          'nyou': 1,
          'dont': 1,
          'cynical': 1,
          'student': 1,
          'able': 1,
          'see': 1,
          'long': 1,
          'line': 1,
          'cheap': 1,
          'making': 1,
          'quick': 1,
          'buck': 1,
          'become': 1,
          'puff': 1,
          'daddy': 1,
          'industry': 1,
          'halfassedly': 1,
          'remixing': 1,
          'classics': 1,
          'nonclassics': 1,
          'public': 1,
          'eats': 1,
          'nearlier': 1,
          '97': 1,
          'released': 1,
          'awful': 1,
          'french': 1,
          'un': 1,
          'indien': 1,
          'dans': 1,
          'la': 1,
          'ville': 1,
          'yeah': 1,
          'improved': 1,
          'original': 1,
          'ndisneys': 1,
          'warner': 1,
          'brothers': 1,
          'creatively': 1,
          'rush': 1,
          'ship': 1,
          'give': 1,
          'thing': 1,
          'called': 1,
          'nsuch': 1,
          'scenes': 1,
          'dancing': 1,
          'car': 1,
          'basketball': 1,
          'team': 1,
          'pretty': 1,
          'sucks': 1,
          'thanks': 1,
          'carefully': 1,
          'placed': 1,
          'ending': 1,
          'fail': 1,
          'amaze': 1,
          'delight': 1,
          'people': 1,
          'sat': 1,
          'entire': 1,
          'stone': 1,
          'faced': 1,
          'chuckling': 1,
          'perhaps': 1,
          'twice': 1,
          'shaking': 1,
          'head': 1,
          'jokes': 1,
          'nwho': 1,
          'scene': 1,
          'enters': 1,
          'wrong': 1,
          'classroom': 1,
          'starts': 1,
          'teaching': 1,
          'chemistry': 1,
          'ndidnt': 1,
          'nit': 1,
          'doesnt': 1,
          'help': 1,
          'protagonist': 1,
          'unfunny': 1,
          'lovable': 1,
          'professory': 1,
          'dumb': 1,
          'nwilliams': 1,
          'comic': 1,
          'okay': 1,
          'given': 1,
          'occasionally': 1,
          'get': 1,
          'hyper': 1,
          'act': 1,
          'sad': 1,
          'nthose': 1,
          'nbut': 1,
          'supposed': 1,
          'thrice': 1,
          'nmaybe': 1,
          'funny': 1,
          'andor': 1,
          '60s': 1,
          'usually': 1,
          'enjoy': 1,
          'animated': 1,
          'recent': 1,
          'hercules': 1,
          'lackluster': 1,
          'theyve': 1,
          'worst': 1,
          'last': 1,
          'year': 1,
          'nperhaps': 1,
          'create': 1,
          'nget': 1,
          'writers': 1,
          'write': 1,
          'thats': 1,
          'universally': 1,
          'nfilms': 1,
          'parent': 1,
          'trap': 1,
          'mary': 1,
          'poppins': 1,
          'latter': 1,
          'case': 1,
          'mix': 1,
          'still': 1,
          'watch': 1,
          'theyre': 1,
          'written': 1,
          'magical': 1,
          'children': 1,
          'fun': 1,
          'adults': 1,
          'torturous': 1,
          'taking': 1,
          'child': 1,
          'insults': 1,
          'annoys': 1,
          'every': 1,
          'turn': 1,
          'god': 1,
          'couldnt': 1,
          'done': 1,
          'edie': 1,
          'mcclurg': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'window': 5,
          'going': 4,
          'nhe': 4,
          'away': 4,
          'road': 4,
          'nthe': 4,
          'would': 4,
          'main': 3,
          'even': 3,
          'far': 3,
          'texas': 3,
          'chainsaw': 3,
          'massacre': 3,
          'next': 3,
          'generation': 3,
          'family': 3,
          'one': 3,
          'little': 3,
          'start': 2,
          'review': 2,
          'hypothetical': 2,
          'question': 2,
          'say': 2,
          'driver': 2,
          'unconscious': 2,
          'go': 2,
          'get': 2,
          'help': 2,
          'youre': 2,
          'see': 2,
          'victim': 2,
          'na': 2,
          'comes': 2,
          'truck': 2,
          'ndo': 2,
          'run': 2,
          'staying': 2,
          'answered': 2,
          'film': 2,
          'really': 2,
          'remake': 2,
          'original': 2,
          'ntheres': 2,
          'scene': 2,
          'nowhere': 2,
          'leatherface': 2,
          'nin': 2,
          'wheel': 2,
          'people': 2,
          'stunt': 2,
          'double': 2,
          'many': 2,
          'fact': 2,
          'instead': 2,
          'shows': 2,
          'contains': 2,
          'im': 1,
          'nlets': 1,
          'youve': 1,
          'car': 1,
          'accident': 1,
          'vehicle': 1,
          'nyour': 1,
          'friends': 1,
          'left': 1,
          'waiting': 1,
          'wakes': 1,
          'towtruck': 1,
          'along': 1,
          'hops': 1,
          'whats': 1,
          'proceeds': 1,
          'kill': 1,
          'snapping': 1,
          'neck': 1,
          'screaming': 1,
          'life': 1,
          'nb': 1,
          'fast': 1,
          'stay': 1,
          'madman': 1,
          'starts': 1,
          'following': 1,
          'stop': 1,
          'catch': 1,
          'breath': 1,
          'try': 1,
          'negotiate': 1,
          'psycho': 1,
          'fails': 1,
          'running': 1,
          'nif': 1,
          'intelligent': 1,
          'screenwriter': 1,
          'likely': 1,
          'hate': 1,
          'nhowever': 1,
          'b': 1,
          'prepare': 1,
          'enjoy': 1,
          'made': 1,
          'idiots': 1,
          'like': 1,
          'mind': 1,
          'n': 1,
          'called': 1,
          'sequel': 1,
          'changes': 1,
          'essentially': 1,
          'infamous': 1,
          'meathook': 1,
          'recreated': 1,
          'story': 1,
          'opens': 1,
          'four': 1,
          'teenagers': 1,
          'hitting': 1,
          'night': 1,
          'prom': 1,
          'somehow': 1,
          'ending': 1,
          'middle': 1,
          'nneedless': 1,
          'soon': 1,
          'encounter': 1,
          'nutty': 1,
          'nmuch': 1,
          'carnage': 1,
          'ensues': 1,
          'nto': 1,
          'call': 1,
          'inept': 1,
          'putting': 1,
          'mildly': 1,
          'addition': 1,
          'laughably': 1,
          'idiotic': 1,
          'situation': 1,
          'mentioned': 1,
          'moment': 1,
          'towards': 1,
          'end': 1,
          'baddies': 1,
          'killed': 1,
          'airplane': 1,
          'literally': 1,
          'nit': 1,
          'swoops': 1,
          'kills': 1,
          'nno': 1,
          'explantion': 1,
          'given': 1,
          'flying': 1,
          'heshe': 1,
          'around': 1,
          'killing': 1,
          'planes': 1,
          'dialogue': 1,
          'atrocious': 1,
          'nzellwegger': 1,
          'kidnapped': 1,
          'early': 1,
          'keeps': 1,
          'trying': 1,
          'normal': 1,
          'conversations': 1,
          'nwhen': 1,
          'surrounded': 1,
          'maniacs': 1,
          'wielding': 1,
          'chainsaws': 1,
          'dead': 1,
          'corpses': 1,
          'think': 1,
          'rationality': 1,
          'nspeaking': 1,
          'zellwegger': 1,
          'jumps': 1,
          'napparently': 1,
          'trouble': 1,
          'visibly': 1,
          'gets': 1,
          'stuck': 1,
          'director': 1,
          'quickly': 1,
          'cuts': 1,
          'wide': 1,
          'shot': 1,
          'doesnt': 1,
          'caught': 1,
          'nthis': 1,
          'glaring': 1,
          'inconsistencies': 1,
          'nthere': 1,
          'name': 1,
          'several': 1,
          'pages': 1,
          'long': 1,
          'reason': 1,
          'giving': 1,
          'star': 1,
          'stars': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'plays': 1,
          'member': 1,
          'hydraulic': 1,
          'leg': 1,
          'homemade': 1,
          'might': 1,
          'add': 1,
          'completely': 1,
          'overthetop': 1,
          'cant': 1,
          'amazed': 1,
          'performance': 1,
          'obviously': 1,
          'lot': 1,
          'fun': 1,
          'part': 1,
          'makes': 1,
          'jack': 1,
          'nicholsons': 1,
          'portrayal': 1,
          'psychotic': 1,
          'inn': 1,
          'keeper': 1,
          'shining': 1,
          'look': 1,
          'restrained': 1,
          'comparison': 1,
          'nfor': 1,
          'horror': 1,
          'surprisingly': 1,
          'gore': 1,
          'none': 1,
          'blood': 1,
          'thats': 1,
          'goes': 1,
          'nwhich': 1,
          'leads': 1,
          'believe': 1,
          'budget': 1,
          'must': 1,
          'astonishingly': 1,
          'low': 1,
          'neverything': 1,
          'looks': 1,
          'cheap': 1,
          'sets': 1,
          'costumes': 1,
          'nespecially': 1,
          'nonce': 1,
          'frightening': 1,
          'nightmare': 1,
          'inducing': 1,
          'hes': 1,
          'terrifying': 1,
          'dame': 1,
          'edna': 1,
          'favor': 1,
          'take': 1,
          'pass': 1,
          'ncheck': 1,
          'superior': 1,
          'nneg': 1}),
 Counter({'session': 3,
          '9': 3,
          'danvers': 3,
          'one': 3,
          'nthe': 3,
          'films': 2,
          'hospital': 2,
          'structure': 2,
          'time': 2,
          'anderson': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'usa': 1,
          'nsometimes': 1,
          'get': 1,
          'bargained': 1,
          'like': 1,
          'bostonbased': 1,
          'hazmat': 1,
          'elimination': 1,
          'run': 1,
          'scottish': 1,
          'actor': 1,
          'peter': 1,
          'mullan': 1,
          'trusty': 1,
          'assistant': 1,
          'david': 1,
          'caruso': 1,
          'assures': 1,
          'town': 1,
          'engineer': 1,
          'paul': 1,
          'guilifoyle': 1,
          'remove': 1,
          'insidious': 1,
          'asbestos': 1,
          'fibers': 1,
          'victorian': 1,
          'facility': 1,
          'week': 1,
          'nerected': 1,
          '1871': 1,
          'deserted': 1,
          'decomposing': 1,
          'since': 1,
          '1985': 1,
          'mental': 1,
          'malevolent': 1,
          'locations': 1,
          'ever': 1,
          'chosen': 1,
          'film': 1,
          'massive': 1,
          'labyrinth': 1,
          'rubblestrewn': 1,
          'corridors': 1,
          'collapsing': 1,
          'floors': 1,
          'stagnant': 1,
          'pools': 1,
          'water': 1,
          'isolation': 1,
          'cells': 1,
          'ominous': 1,
          'surgical': 1,
          'chambers': 1,
          'experimental': 1,
          'prefrontal': 1,
          'lobotomies': 1,
          'performed': 1,
          'task': 1,
          'seems': 1,
          'impossible': 1,
          'within': 1,
          'frame': 1,
          'nand': 1,
          'member': 1,
          'inexperienced': 1,
          'crew': 1,
          'stephan': 1,
          'gevedon': 1,
          'brandon': 1,
          'sexton': 1,
          'iii': 1,
          'josh': 1,
          'lucas': 1,
          'coping': 1,
          'personal': 1,
          'demons': 1,
          'minds': 1,
          'seem': 1,
          'affected': 1,
          'grim': 1,
          'areas': 1,
          'theyre': 1,
          'working': 1,
          'title': 1,
          'derived': 1,
          'salvaged': 1,
          'reeltoreel': 1,
          'audiorecorded': 1,
          'sessions': 1,
          'involving': 1,
          'demonic': 1,
          'possession': 1,
          'young': 1,
          'woman': 1,
          'suffering': 1,
          'multiple': 1,
          'personalities': 1,
          'nby': 1,
          'occurs': 1,
          'dreadful': 1,
          'disasters': 1,
          'nfilmmaker': 1,
          'brad': 1,
          'obviously': 1,
          'envisioned': 1,
          'gruesome': 1,
          'chainsawmassacretype': 1,
          'ghost': 1,
          'story': 1,
          'script': 1,
          'lacks': 1,
          'isnt': 1,
          'particularly': 1,
          'scary': 1,
          'conclusion': 1,
          'ludicrous': 1,
          'convincing': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'dark': 1,
          'gloomy': 1,
          '4': 1,
          'silly': 1,
          'nfirst': 1,
          'thought': 1,
          'original': 1,
          'name': 1,
          'lunatic': 1,
          'asylum': 1,
          'bore': 1,
          'reference': 1,
          'mrs': 1,
          'creepy': 1,
          'housekeeper': 1,
          'played': 1,
          'judith': 1,
          'alfred': 1,
          'hitchcocks': 1,
          'truly': 1,
          'terrifying': 1,
          'rebecca': 1,
          'also': 1,
          'involved': 1,
          'cavernous': 1,
          'mansion': 1,
          'called': 1,
          'manderley': 1,
          'nneg': 1}),
 Counter({'switchback': 5,
          'olmstead': 5,
          'one': 5,
          'quaid': 4,
          'stuart': 4,
          'good': 4,
          'lacrosse': 4,
          'time': 3,
          'two': 3,
          'leto': 3,
          'glover': 3,
          'work': 3,
          'determined': 3,
          'man': 3,
          'like': 3,
          'film': 3,
          'dennis': 2,
          'star': 2,
          'first': 2,
          'story': 2,
          'nthe': 2,
          'amarillo': 2,
          'texas': 2,
          'sheriff': 2,
          'r': 2,
          'lee': 2,
          'ermey': 2,
          'place': 2,
          'struggle': 2,
          'becomes': 2,
          'grimly': 2,
          'fbi': 2,
          'agent': 2,
          'nlacrosse': 2,
          'killer': 2,
          'tracking': 2,
          'reason': 2,
          'knows': 2,
          'killers': 2,
          'game': 2,
          'tell': 2,
          'hes': 2,
          'na': 2,
          'character': 2,
          'looks': 2,
          'nits': 2,
          'would': 2,
          'early': 2,
          'far': 2,
          'stale': 2,
          'predictable': 2,
          'willing': 2,
          'away': 2,
          'ostensible': 1,
          'makes': 1,
          'appearance': 1,
          '22minute': 1,
          'mark': 1,
          'may': 1,
          'find': 1,
          'wondering': 1,
          'bothered': 1,
          'nafter': 1,
          'writerdirector': 1,
          'jeb': 1,
          'already': 1,
          'set': 1,
          'fairly': 1,
          'promising': 1,
          'pair': 1,
          'parallel': 1,
          'lines': 1,
          'finds': 1,
          'buck': 1,
          'facing': 1,
          'hotlycontested': 1,
          'election': 1,
          'battle': 1,
          'brutal': 1,
          'double': 1,
          'homicide': 1,
          'discovered': 1,
          'motel': 1,
          'jurisdiction': 1,
          'nas': 1,
          'begins': 1,
          'investigation': 1,
          'also': 1,
          'meet': 1,
          'men': 1,
          'come': 1,
          'prime': 1,
          'suspects': 1,
          'nlane': 1,
          'dixon': 1,
          'jared': 1,
          'enigmatic': 1,
          'young': 1,
          'hitchhiker': 1,
          'bob': 1,
          'goodall': 1,
          'danny': 1,
          'jovial': 1,
          'motorist': 1,
          'offers': 1,
          'lane': 1,
          'ride': 1,
          'utah': 1,
          'destination': 1,
          'nall': 1,
          'necessary': 1,
          'conflicts': 1,
          'seem': 1,
          'internal': 1,
          'clash': 1,
          'politics': 1,
          'police': 1,
          'external': 1,
          'travelers': 1,
          'eventually': 1,
          'villain': 1,
          'others': 1,
          'protagonist': 1,
          'nbut': 1,
          'shows': 1,
          'frank': 1,
          'certain': 1,
          'murders': 1,
          'serial': 1,
          'nearly': 1,
          'years': 1,
          'nhes': 1,
          'supposed': 1,
          'according': 1,
          'bureau': 1,
          'theyve': 1,
          'got': 1,
          'important': 1,
          'believing': 1,
          'otherwise': 1,
          'ntwo': 1,
          'months': 1,
          'earlier': 1,
          'lacrosses': 1,
          'son': 1,
          'kidnapped': 1,
          'boy': 1,
          'yet': 1,
          'turn': 1,
          'anywhere': 1,
          'still': 1,
          'somewhere': 1,
          'trying': 1,
          'continue': 1,
          'nit': 1,
          'wouldnt': 1,
          'fair': 1,
          'reduce': 1,
          'everything': 1,
          'thats': 1,
          'wrong': 1,
          'quaids': 1,
          'presence': 1,
          'pretty': 1,
          'start': 1,
          'ntheres': 1,
          'feels': 1,
          'intruder': 1,
          'narrative': 1,
          'instead': 1,
          'vital': 1,
          'center': 1,
          'dramatic': 1,
          'actor': 1,
          'possesses': 1,
          'exactly': 1,
          'facial': 1,
          'expression': 1,
          'vocal': 1,
          'intonation': 1,
          'nwe': 1,
          'face': 1,
          'perpetual': 1,
          'tightjawed': 1,
          'sourpuss': 1,
          'pucker': 1,
          'grim': 1,
          'every': 1,
          'word': 1,
          'comes': 1,
          'eastwoodesque': 1,
          'rasp': 1,
          'flexible': 1,
          'performer': 1,
          'might': 1,
          'given': 1,
          'weight': 1,
          'pulling': 1,
          'audience': 1,
          'haunted': 1,
          'intensity': 1,
          'making': 1,
          '_his_': 1,
          'nquaid': 1,
          'merely': 1,
          'annoyed': 1,
          'slightly': 1,
          'constipated': 1,
          'tough': 1,
          'become': 1,
          'emotionally': 1,
          'invested': 1,
          'characters': 1,
          'turmoil': 1,
          'really': 1,
          'needs': 1,
          'big': 1,
          'bowl': 1,
          'bran': 1,
          'flakes': 1,
          'neven': 1,
          'without': 1,
          'doesnt': 1,
          'appear': 1,
          'stayed': 1,
          'course': 1,
          'scenes': 1,
          'lively': 1,
          'energy': 1,
          'building': 1,
          'curiosity': 1,
          'taciturn': 1,
          'kid': 1,
          'gregarious': 1,
          'benefactor': 1,
          'real': 1,
          'threat': 1,
          'nunfortunately': 1,
          'tips': 1,
          'hand': 1,
          'pitch': 1,
          'individual': 1,
          'performances': 1,
          'facts': 1,
          'chooses': 1,
          'reveal': 1,
          'nonce': 1,
          'mystery': 1,
          'identity': 1,
          'dispatched': 1,
          'interaction': 1,
          'nin': 1,
          'fact': 1,
          'describes': 1,
          'direction': 1,
          'takes': 1,
          'general': 1,
          'falling': 1,
          'back': 1,
          'fartoocommon': 1,
          'hollywood': 1,
          'devices': 1,
          'cats': 1,
          'jumping': 1,
          'nowhere': 1,
          'climactic': 1,
          'fistfight': 1,
          'board': 1,
          'freight': 1,
          'train': 1,
          'edgy': 1,
          'law': 1,
          'enforcement': 1,
          'agents': 1,
          'bad': 1,
          'wasnt': 1,
          'spend': 1,
          'interesting': 1,
          'appealing': 1,
          'nplayed': 1,
          'atypical': 1,
          'restraint': 1,
          'wonderful': 1,
          'unconventional': 1,
          'hero': 1,
          'seems': 1,
          'genuinely': 1,
          'comfortable': 1,
          'accepting': 1,
          'consequences': 1,
          'acting': 1,
          'convictions': 1,
          'focusing': 1,
          'signaled': 1,
          'filmmaker': 1,
          'take': 1,
          'risks': 1,
          'casting': 1,
          'storytelling': 1,
          'ninstead': 1,
          'places': 1,
          'trust': 1,
          'name': 1,
          'cant': 1,
          'carry': 1,
          'material': 1,
          'nmaybe': 1,
          'next': 1,
          'hell': 1,
          'throw': 1,
          'crucial': 1,
          'page': 1,
          'script': 1,
          'wanders': 1,
          'onto': 1,
          'scene': 1,
          'muck': 1,
          'perfectly': 1,
          'nneg': 1}),
 Counter({'arraki': 6,
          'doom': 4,
          'generation': 4,
          'film': 4,
          'tv': 4,
          'nthe': 3,
          'doesnt': 3,
          'make': 3,
          'lassez': 3,
          'nmaybe': 3,
          'ever': 2,
          'see': 2,
          'teen': 2,
          'cameos': 2,
          'wanted': 2,
          'chance': 2,
          'ni': 2,
          'guy': 2,
          'character': 2,
          'dark': 2,
          'movie': 2,
          'around': 2,
          'star': 2,
          'nhe': 2,
          'care': 2,
          'time': 2,
          'performance': 2,
          'better': 2,
          'like': 2,
          'us': 2,
          'im': 2,
          'nif': 2,
          'prefer': 2,
          'gregg': 1,
          'arakis': 1,
          'possibly': 1,
          'worst': 1,
          'made': 1,
          'nso': 1,
          'latest': 1,
          'bisexual': 1,
          'angst': 1,
          'opus': 1,
          'nfirst': 1,
          'reviews': 1,
          'fairly': 1,
          'positive': 1,
          'nalso': 1,
          'cast': 1,
          'consisting': 1,
          'dozens': 1,
          'washed': 1,
          'ex': 1,
          'stars': 1,
          'including': 1,
          'christopher': 1,
          'knight': 1,
          'eve': 1,
          'plumb': 1,
          'shannen': 1,
          'doherty': 1,
          'david': 1,
          'leisure': 1,
          'promising': 1,
          'nlast': 1,
          'give': 1,
          'one': 1,
          'mean': 1,
          'cant': 1,
          'untalented': 1,
          'answer': 1,
          'question': 1,
          'three': 1,
          'letters': 1,
          'long': 1,
          'nnowhere': 1,
          'follows': 1,
          'wild': 1,
          'odd': 1,
          'journey': 1,
          'los': 1,
          'angeles': 1,
          'nsince': 1,
          'know': 1,
          'anything': 1,
          'coherent': 1,
          'hard': 1,
          'describe': 1,
          'plot': 1,
          'nlets': 1,
          'say': 1,
          'spends': 1,
          'bulk': 1,
          'whining': 1,
          'girlfriend': 1,
          'wont': 1,
          'commitment': 1,
          'jealous': 1,
          'sleeps': 1,
          'guys': 1,
          'girls': 1,
          'remotely': 1,
          'compelling': 1,
          'storyline': 1,
          'involves': 1,
          'sarah': 1,
          'encounter': 1,
          'famous': 1,
          'turns': 1,
          'nice': 1,
          'fame': 1,
          'wishes': 1,
          'could': 1,
          'walk': 1,
          'street': 1,
          'without': 1,
          'mobbed': 1,
          'fans': 1,
          'nthis': 1,
          'story': 1,
          'shocking': 1,
          'twist': 1,
          'tragic': 1,
          'end': 1,
          'coming': 1,
          'nit': 1,
          'first': 1,
          'felt': 1,
          'compassion': 1,
          'created': 1,
          'attributed': 1,
          'appealing': 1,
          'thought': 1,
          'maybe': 1,
          'improving': 1,
          'craft': 1,
          'works': 1,
          'camera': 1,
          'especially': 1,
          'early': 1,
          'scenes': 1,
          'nhalfway': 1,
          'didnt': 1,
          'necessarily': 1,
          'find': 1,
          'enjoying': 1,
          'seemed': 1,
          'considerable': 1,
          'improvement': 1,
          'nthen': 1,
          'went': 1,
          'loses': 1,
          'sensibility': 1,
          'introduces': 1,
          'exploding': 1,
          'heads': 1,
          'twisted': 1,
          'sex': 1,
          'games': 1,
          'alien': 1,
          'abductions': 1,
          'nits': 1,
          'sad': 1,
          'almost': 1,
          'actually': 1,
          'decent': 1,
          'material': 1,
          'ruined': 1,
          'usual': 1,
          'face': 1,
          'renegade': 1,
          'maverick': 1,
          'filmmaker': 1,
          'look': 1,
          'attitude': 1,
          'performances': 1,
          'generally': 1,
          'isnt': 1,
          'saying': 1,
          'much': 1,
          'nat': 1,
          'least': 1,
          'dont': 1,
          'suffer': 1,
          'jonathan': 1,
          'hideous': 1,
          'man': 1,
          'america': 1,
          'schaech': 1,
          'nwe': 1,
          'however': 1,
          'treated': 1,
          'another': 1,
          'round': 1,
          'james': 1,
          'wooden': 1,
          'keanu': 1,
          'duval': 1,
          'nsarah': 1,
          'gives': 1,
          'best': 1,
          'kathleen': 1,
          'robertson': 1,
          'formerly': 1,
          '90210': 1,
          'arrakis': 1,
          'wife': 1,
          'rachel': 1,
          'true': 1,
          'talented': 1,
          'actresses': 1,
          'caught': 1,
          'mess': 1,
          'nof': 1,
          'john': 1,
          'ritter': 1,
          'interesting': 1,
          'deranged': 1,
          'right': 1,
          'wing': 1,
          'evangelist': 1,
          'nowhere': 1,
          'way': 1,
          'would': 1,
          'assassinated': 1,
          'receive': 1,
          'constant': 1,
          'physical': 1,
          'torture': 1,
          'greg': 1,
          'want': 1,
          'characters': 1,
          'wants': 1,
          'laugh': 1,
          'fun': 1,
          'try': 1,
          'piss': 1,
          'successful': 1,
          'nneg': 1}),
 Counter({'film': 12,
          'one': 8,
          'school': 7,
          'even': 6,
          'nits': 6,
          'behavior': 5,
          'nthe': 5,
          'good': 5,
          'make': 5,
          'high': 5,
          'story': 4,
          'like': 4,
          'steve': 4,
          'title': 3,
          'go': 3,
          'seems': 3,
          'thought': 3,
          'sequence': 3,
          'ndisturbing': 3,
          'interesting': 3,
          'small': 3,
          'town': 3,
          'nhe': 3,
          'last': 3,
          'social': 3,
          'group': 3,
          'jocks': 3,
          'actually': 3,
          'things': 3,
          'sense': 3,
          'rosenberg': 3,
          'script': 3,
          'films': 3,
          'never': 3,
          'scene': 3,
          'scenes': 3,
          'write': 2,
          'short': 2,
          'think': 2,
          'nit': 2,
          'ni': 2,
          'surprised': 2,
          'got': 2,
          'opening': 2,
          'credits': 2,
          'picture': 2,
          'began': 2,
          'course': 2,
          'starts': 2,
          'ends': 2,
          'violence': 2,
          'suspense': 2,
          'disaster': 2,
          'uninspired': 2,
          'time': 2,
          'played': 2,
          'brother': 2,
          'learn': 2,
          'new': 2,
          'nmarsden': 2,
          'reject': 2,
          'gavin': 2,
          'holmes': 2,
          'nso': 2,
          'something': 2,
          'explained': 2,
          'comes': 2,
          'however': 2,
          'complete': 2,
          'take': 2,
          'pretty': 2,
          'also': 2,
          'lot': 2,
          'nthere': 2,
          'element': 2,
          'see': 2,
          'happening': 2,
          'explains': 2,
          'get': 2,
          'greenwood': 2,
          'way': 2,
          'bad': 2,
          'cafeteria': 2,
          'points': 2,
          'forced': 2,
          'talent': 2,
          'isnt': 2,
          'wreck': 2,
          'would': 2,
          'sometimes': 1,
          'decide': 1,
          'poem': 1,
          'first': 1,
          'subject': 1,
          'makers': 1,
          'disturbing': 1,
          'similar': 1,
          'train': 1,
          'came': 1,
          'wouldnt': 1,
          'couple': 1,
          'guys': 1,
          'together': 1,
          'created': 1,
          'someone': 1,
          'saw': 1,
          'made': 1,
          'along': 1,
          'ominous': 1,
          'original': 1,
          'engrossed': 1,
          'nof': 1,
          'attention': 1,
          'dwindled': 1,
          'shortly': 1,
          'many': 1,
          'thrillers': 1,
          'laughably': 1,
          'ridiculous': 1,
          'teen': 1,
          'horror': 1,
          'sex': 1,
          'evil': 1,
          'speak': 1,
          'listless': 1,
          'barely': 1,
          'misses': 1,
          'onestardom': 1,
          'sequences': 1,
          'mercifully': 1,
          'running': 1,
          'terrific': 1,
          'set': 1,
          'nour': 1,
          'main': 1,
          'man': 1,
          'fellow': 1,
          'named': 1,
          'clark': 1,
          'blandly': 1,
          'jimmy': 1,
          'marsden': 1,
          'moves': 1,
          'family': 1,
          'tragically': 1,
          'shoots': 1,
          'nsteve': 1,
          'upset': 1,
          'untimely': 1,
          'death': 1,
          'strange': 1,
          'homevideo': 1,
          'nightmares': 1,
          'occasionally': 1,
          'big': 1,
          'trial': 1,
          'fit': 1,
          'friends': 1,
          'looks': 1,
          'stereotypical': 1,
          'jock': 1,
          'detail': 1,
          'poor': 1,
          'casting': 1,
          'choice': 1,
          'nas': 1,
          'falls': 1,
          'pretentious': 1,
          'dopesmoking': 1,
          'philosophers': 1,
          'nick': 1,
          'stahl': 1,
          'rachel': 1,
          'katie': 1,
          'ngavin': 1,
          'informs': 1,
          'local': 1,
          'known': 1,
          'blue': 1,
          'ribboners': 1,
          'bunch': 1,
          'zombies': 1,
          'assimilating': 1,
          'members': 1,
          'sporadically': 1,
          'killing': 1,
          'innocent': 1,
          'people': 1,
          'mismatched': 1,
          'protagonists': 1,
          '1': 1,
          'solve': 1,
          'mystery': 1,
          '2': 1,
          'nby': 1,
          'end': 1,
          'happened': 1,
          'still': 1,
          'doesnt': 1,
          'written': 1,
          'scott': 1,
          'nive': 1,
          'seen': 1,
          'name': 1,
          'around': 1,
          'recently': 1,
          'toucheruppers': 1,
          'armageddon': 1,
          'imagine': 1,
          'part': 1,
          'knows': 1,
          'hes': 1,
          'screenwriting': 1,
          'lapse': 1,
          'judgement': 1,
          'idea': 1,
          'decided': 1,
          'nevil': 1,
          'common': 1,
          'phantoms': 1,
          'dismal': 1,
          'failure': 1,
          'takes': 1,
          'skill': 1,
          'formula': 1,
          'work': 1,
          'nrosenbergs': 1,
          'mess': 1,
          'lacking': 1,
          'basic': 1,
          'attempts': 1,
          'characterization': 1,
          'nand': 1,
          'makes': 1,
          'purpose': 1,
          'finally': 1,
          'supposed': 1,
          'surprise': 1,
          'exactly': 1,
          'nthey': 1,
          'strapped': 1,
          'chairs': 1,
          'microchip': 1,
          'inserted': 1,
          'eyes': 1,
          'poof': 1,
          'become': 1,
          'sexcrazed': 1,
          'superviolent': 1,
          'machinelike': 1,
          'creatures': 1,
          'doctor': 1,
          'responsible': 1,
          'dr': 1,
          'caldicott': 1,
          'bruce': 1,
          'must': 1,
          'nuts': 1,
          'thinking': 1,
          'kind': 1,
          'step': 1,
          'behave': 1,
          'perhaps': 1,
          'realistic': 1,
          'nmuch': 1,
          'writing': 1,
          'simply': 1,
          'intuition': 1,
          'kids': 1,
          'act': 1,
          'nin': 1,
          'terrible': 1,
          'cliques': 1,
          'pointing': 1,
          'nup': 1,
          'front': 1,
          'say': 1,
          'four': 1,
          'years': 1,
          'eat': 1,
          'nthat': 1,
          'aside': 1,
          'various': 1,
          'groups': 1,
          'general': 1,
          'uninteresting': 1,
          'poorlyshown': 1,
          'nfor': 1,
          'instance': 1,
          'nerds': 1,
          'wearing': 1,
          'glasses': 1,
          'playing': 1,
          'laptops': 1,
          'obvious': 1,
          'cliche': 1,
          'cant': 1,
          'believe': 1,
          'bothered': 1,
          'nmost': 1,
          'dialogue': 1,
          'says': 1,
          'bite': 1,
          'nanymore': 1,
          'none': 1,
          'degree': 1,
          'wit': 1,
          'nthis': 1,
          'inspired': 1,
          'flop': 1,
          'momentum': 1,
          'energy': 1,
          'blame': 1,
          'placed': 1,
          'director': 1,
          'david': 1,
          'nutter': 1,
          'apparently': 1,
          'likes': 1,
          'dry': 1,
          'nhorror': 1,
          'least': 1,
          'exploit': 1,
          'shockingly': 1,
          'timid': 1,
          'though': 1,
          'trip': 1,
          'insane': 1,
          'asylum': 1,
          'heroes': 1,
          'bother': 1,
          'liked': 1,
          'janitor': 1,
          'character': 1,
          'william': 1,
          'sadler': 1,
          'lines': 1,
          'surprisingly': 1,
          'thoughtprovoking': 1,
          'acting': 1,
          'largely': 1,
          'waste': 1,
          'said': 1,
          'bland': 1,
          'particularly': 1,
          'nbruce': 1,
          'shamelessly': 1,
          'wasted': 1,
          'nstahl': 1,
          'show': 1,
          'direction': 1,
          'enough': 1,
          'hone': 1,
          'skills': 1,
          'stahls': 1,
          'performance': 1,
          'parody': 1,
          'potheads': 1,
          'nnone': 1,
          'characters': 1,
          'expand': 1,
          'beyond': 1,
          'dimension': 1,
          'frankly': 1,
          'watching': 1,
          'cardboard': 1,
          'cutouts': 1,
          'human': 1,
          'beings': 1,
          'run': 1,
          'hallways': 1,
          'screaming': 1,
          'cool': 1,
          'started': 1,
          'shooting': 1,
          'nim': 1,
          'producers': 1,
          'read': 1,
          'money': 1,
          'box': 1,
          'office': 1,
          'boring': 1,
          'blatantly': 1,
          'awful': 1,
          'lump': 1,
          'sure': 1,
          'nicely': 1,
          'regression': 1,
          'total': 1,
          'absurdity': 1,
          'consistent': 1,
          'outright': 1,
          'laughable': 1,
          'advice': 1,
          'appreciate': 1,
          'credit': 1,
          'pray': 1,
          'nneg': 1}),
 Counter({'crow': 6,
          'lee': 5,
          'n': 4,
          'better': 4,
          'book': 3,
          'brandon': 3,
          'hudson': 3,
          'good': 3,
          'film': 3,
          'nthe': 3,
          'one': 3,
          'films': 3,
          'david': 2,
          'comic': 2,
          'ernie': 2,
          'michael': 2,
          'wincott': 2,
          'patrick': 2,
          'rochelle': 2,
          'davis': 2,
          'polito': 2,
          'like': 2,
          'police': 2,
          'death': 2,
          'ndespite': 2,
          'lees': 2,
          'known': 2,
          'draven': 2,
          'also': 2,
          'whose': 2,
          'even': 2,
          'gunshot': 2,
          'batman': 2,
          'nbut': 2,
          'seem': 2,
          'darkman': 2,
          'though': 2,
          'well': 2,
          'makes': 2,
          'written': 1,
          'j': 1,
          'schow': 1,
          'john': 1,
          'shirley': 1,
          'based': 1,
          'series': 1,
          'strip': 1,
          'james': 1,
          'obarr': 1,
          'ncast': 1,
          'kelly': 1,
          'jon': 1,
          'nmpaa': 1,
          'rating': 1,
          'r': 1,
          'presumably': 1,
          'rape': 1,
          'language': 1,
          'violence': 1,
          'nrunning': 1,
          'time': 1,
          '100': 1,
          'minutes': 1,
          'looks': 1,
          'zigged': 1,
          'shouldve': 1,
          'zagged': 1,
          'officer': 1,
          'commenting': 1,
          'suspicious': 1,
          'ncomic': 1,
          'translations': 1,
          'notorious': 1,
          'tricky': 1,
          'anyone': 1,
          'doublebill': 1,
          'punisher': 1,
          'captain': 1,
          'america': 1,
          'proves': 1,
          'exception': 1,
          'gross': 1,
          'intentions': 1,
          'final': 1,
          'doesnt': 1,
          'fly': 1,
          'high': 1,
          'story': 1,
          'opens': 1,
          'halloween': 1,
          'eve': 1,
          'devils': 1,
          'night': 1,
          'nwilmingtonasdetroit': 1,
          'flames': 1,
          'tending': 1,
          'least': 1,
          'murder': 1,
          'young': 1,
          'rockmusicianturnedpavementartist': 1,
          'eric': 1,
          'found': 1,
          'sidewalk': 1,
          'sixstories': 1,
          'apartment': 1,
          'thrown': 1,
          'cops': 1,
          'upstairs': 1,
          'administering': 1,
          'aid': 1,
          'fiance': 1,
          'assaulted': 1,
          'raped': 1,
          'necessarily': 1,
          'order': 1,
          'nshe': 1,
          'dies': 1,
          'perps': 1,
          'nescape': 1,
          'exactly': 1,
          'year': 1,
          'later': 1,
          'rises': 1,
          'grave': 1,
          'wreak': 1,
          'revenge': 1,
          'nsound': 1,
          'familiar': 1,
          'nunlike': 1,
          'charles': 1,
          'bronson': 1,
          'superpower': 1,
          'involves': 1,
          'inability': 1,
          'refrain': 1,
          'filming': 1,
          'wish': 1,
          'sequels': 1,
          'character': 1,
          'supernatural': 1,
          'strength': 1,
          'amazing': 1,
          'agility': 1,
          'reheal': 1,
          'wounds': 1,
          'faster': 1,
          'robert': 1,
          'terminator': 1,
          '2': 1,
          'side': 1,
          'presumable': 1,
          'source': 1,
          'powers': 1,
          'related': 1,
          'narration': 1,
          'nwearing': 1,
          'appears': 1,
          'alice': 1,
          'coopers': 1,
          'leftover': 1,
          'makeup': 1,
          'plopped': 1,
          'underlit': 1,
          'urban': 1,
          'landscape': 1,
          'obviously': 1,
          'modeled': 1,
          'blade': 1,
          'runner': 1,
          'number': 1,
          'redlit': 1,
          'rainsoaked': 1,
          'streets': 1,
          'compensate': 1,
          'cheap': 1,
          'fx': 1,
          'make': 1,
          'closer': 1,
          'glaring': 1,
          'miniatures': 1,
          'show': 1,
          'video': 1,
          'na': 1,
          'nod': 1,
          'insult': 1,
          'sam': 1,
          'raimi': 1,
          'alex': 1,
          'proyas': 1,
          'cant': 1,
          'decent': 1,
          'action': 1,
          'scene': 1,
          'save': 1,
          'life': 1,
          'nhis': 1,
          'two': 1,
          'best': 1,
          'setpieces': 1,
          'banzai': 1,
          'boardroom': 1,
          'butchery': 1,
          'cool': 1,
          'church': 1,
          'roof': 1,
          'sword': 1,
          'fight': 1,
          'undercut': 1,
          'awful': 1,
          'editing': 1,
          'dov': 1,
          'hoenig': 1,
          'scott': 1,
          'smith': 1,
          'nblame': 1,
          'said': 1,
          'editors': 1,
          'frightful': 1,
          'flashbacks': 1,
          'pace': 1,
          'quick': 1,
          'thank': 1,
          'god': 1,
          'every': 1,
          'goodideaturnedbad': 1,
          'begins': 1,
          'cast': 1,
          'nernie': 1,
          'choice': 1,
          'friendly': 1,
          'policeman': 1,
          'gets': 1,
          'funnier': 1,
          'lines': 1,
          'nnewcomer': 1,
          'narrator': 1,
          'dravens': 1,
          'scrappy': 1,
          'ward': 1,
          'njon': 1,
          'small': 1,
          'succulent': 1,
          'role': 1,
          'pungent': 1,
          'pawnbroker': 1,
          'nand': 1,
          'distinct': 1,
          'impression': 1,
          'longhaired': 1,
          'mr': 1,
          'big': 1,
          'collection': 1,
          'ancientswords': 1,
          'walked': 1,
          'trailer': 1,
          'highlander': 1,
          'iii': 1,
          'nthere': 1,
          'nfinally': 1,
          'theres': 1,
          'son': 1,
          'bruce': 1,
          '28yearold': 1,
          'risingstar': 1,
          'fatally': 1,
          'shot': 1,
          'shooting': 1,
          'nlee': 1,
          'four': 1,
          'name': 1,
          'kung': 1,
          'fu': 1,
          'movie': 1,
          'laser': 1,
          'mission': 1,
          'showdown': 1,
          'little': 1,
          'toyko': 1,
          'rapid': 1,
          'fire': 1,
          'wouldve': 1,
          'nice': 1,
          'feather': 1,
          'belt': 1,
          'thats': 1,
          'ntheres': 1,
          'nothing': 1,
          'great': 1,
          'performance': 1,
          'owes': 1,
          'much': 1,
          'presence': 1,
          'ability': 1,
          'nwhen': 1,
          'echo': 1,
          'finally': 1,
          'fades': 1,
          'watching': 1,
          'prove': 1,
          'less': 1,
          'remarkable': 1,
          'experience': 1,
          'healthy': 1,
          'dose': 1,
          'humor': 1,
          'surprising': 1,
          'sincerity': 1,
          'still': 1,
          'couple': 1,
          'notches': 1,
          'straighttovideo': 1,
          'brethren': 1,
          'nfor': 1,
          'maybe': 1,
          'appropriate': 1,
          'eulogy': 1,
          'actor': 1,
          'could': 1,
          'get': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'know': 9,
          'ni': 9,
          'hewitt': 9,
          'horror': 8,
          'still': 7,
          'last': 6,
          'brandy': 6,
          'audience': 6,
          'summer': 5,
          'slasher': 5,
          'scream': 5,
          'scenes': 5,
          'like': 5,
          'around': 4,
          'however': 4,
          'original': 4,
          'nthis': 4,
          'one': 4,
          'movie': 4,
          'films': 4,
          'characters': 4,
          'theater': 4,
          'huge': 3,
          'tv': 3,
          'n': 3,
          'actresses': 3,
          'campbell': 3,
          'love': 3,
          'sequel': 3,
          'young': 3,
          'annoying': 3,
          'time': 3,
          'seem': 3,
          'knows': 3,
          'scene': 3,
          'julie': 2,
          'nightmares': 2,
          'ben': 2,
          'willis': 2,
          'karla': 2,
          'wins': 2,
          'trip': 2,
          'bahamas': 2,
          'hook': 2,
          'may': 2,
          'party': 2,
          'five': 2,
          'seems': 2,
          'teen': 2,
          'genre': 2,
          'star': 2,
          'nso': 2,
          'jennifer': 2,
          'nthough': 2,
          'released': 2,
          'enough': 2,
          'nshe': 2,
          'many': 2,
          'character': 2,
          'yet': 2,
          'another': 2,
          'get': 2,
          'two': 2,
          'makes': 2,
          'works': 2,
          'heavily': 2,
          'lots': 2,
          'nthe': 2,
          'secondary': 2,
          'supposed': 2,
          'guy': 2,
          'uncomfortable': 2,
          'watch': 2,
          'go': 2,
          'thats': 2,
          'really': 2,
          'talk': 2,
          'revealing': 2,
          'nhewitt': 2,
          'saw': 2,
          'bad': 2,
          'several': 2,
          'sitting': 2,
          'wouldnt': 2,
          'act': 2,
          'synopsis': 1,
          'sullen': 1,
          'james': 1,
          'haunted': 1,
          'killer': 1,
          'perks': 1,
          'new': 1,
          'best': 1,
          'friend': 1,
          'wilson': 1,
          'four': 1,
          'narriving': 1,
          'start': 1,
          'hurricane': 1,
          'season': 1,
          'run': 1,
          'tight': 1,
          'clothing': 1,
          'realize': 1,
          'theyve': 1,
          'walked': 1,
          'trap': 1,
          'set': 1,
          'rainslickered': 1,
          'hand': 1,
          'ncomments': 1,
          'showing': 1,
          'pop': 1,
          'culture': 1,
          'illiteracy': 1,
          'never': 1,
          'seen': 1,
          'episode': 1,
          'fox': 1,
          'series': 1,
          'vaguely': 1,
          'aware': 1,
          'shows': 1,
          'premise': 1,
          'knowledge': 1,
          'comes': 1,
          'brief': 1,
          'commercials': 1,
          'halfpaid': 1,
          'attention': 1,
          'watching': 1,
          'tube': 1,
          'starting': 1,
          'ground': 1,
          'nneve': 1,
          'queen': 1,
          '90s': 1,
          '2': 1,
          'craft': 1,
          'regular': 1,
          'show': 1,
          'nlo': 1,
          'behold': 1,
          'following': 1,
          'footsteps': 1,
          'franchise': 1,
          'line': 1,
          'year': 1,
          'watchable': 1,
          'insipid': 1,
          'looking': 1,
          'theaters': 1,
          'glowing': 1,
          'red': 1,
          'exit': 1,
          'sign': 1,
          'longingly': 1,
          'throughout': 1,
          'njennifer': 1,
          'goodlooking': 1,
          'leading': 1,
          'lady': 1,
          'unlike': 1,
          'neve': 1,
          'struggles': 1,
          'acting': 1,
          'isnt': 1,
          'convincing': 1,
          'wasnt': 1,
          'either': 1,
          'puts': 1,
          'males': 1,
          'including': 1,
          'paradoxical': 1,
          'quandary': 1,
          'shes': 1,
          'attractive': 1,
          'spoiled': 1,
          'valley': 1,
          'girltype': 1,
          'tries': 1,
          'play': 1,
          'extreme': 1,
          'ruins': 1,
          'emphasize': 1,
          'exploitatively': 1,
          'figure': 1,
          'nadd': 1,
          'mix': 1,
          'equally': 1,
          'pleasant': 1,
          'irritating': 1,
          'rising': 1,
          'frustrated': 1,
          'male': 1,
          'nive': 1,
          'spent': 1,
          'much': 1,
          'reason': 1,
          'though': 1,
          'cashing': 1,
          'success': 1,
          'ultimately': 1,
          'serves': 1,
          'vehicle': 1,
          'nnothing': 1,
          'else': 1,
          'interesting': 1,
          'fact': 1,
          'recent': 1,
          'soso': 1,
          'urban': 1,
          'legend': 1,
          'john': 1,
          'carpenters': 1,
          'vampires': 1,
          'stunning': 1,
          'high': 1,
          'art': 1,
          'relies': 1,
          'tired': 1,
          'cliches': 1,
          'isolated': 1,
          'location': 1,
          'storm': 1,
          'parentless': 1,
          'teenagers': 1,
          'false': 1,
          'alarm': 1,
          'bluelighted': 1,
          'darkness': 1,
          'garbed': 1,
          'walks': 1,
          'background': 1,
          'without': 1,
          'seeing': 1,
          'knives': 1,
          'sharp': 1,
          'instruments': 1,
          'lying': 1,
          'everywhere': 1,
          'etc': 1,
          'picture': 1,
          'entire': 1,
          'introduced': 1,
          'going': 1,
          'receive': 1,
          'business': 1,
          'end': 1,
          'killers': 1,
          'nthey': 1,
          'well': 1,
          'targets': 1,
          'painted': 1,
          'nlike': 1,
          'numerous': 1,
          'knockoffs': 1,
          'serve': 1,
          'comic': 1,
          'relief': 1,
          'nunfortunately': 1,
          'arent': 1,
          'funny': 1,
          'nin': 1,
          'particular': 1,
          'chainweedsmoking': 1,
          'obnoxiously': 1,
          'certainly': 1,
          'doesnt': 1,
          'die': 1,
          'soon': 1,
          'death': 1,
          'way': 1,
          'relatively': 1,
          'violent': 1,
          'theatrically': 1,
          'nseveral': 1,
          'reminded': 1,
          'sickening': 1,
          'gore': 1,
          'hellraiser': 1,
          'bloodline': 1,
          'truly': 1,
          'sadistic': 1,
          'help': 1,
          'humor': 1,
          'shooting': 1,
          'nand': 1,
          'deal': 1,
          'particularly': 1,
          'intelligent': 1,
          'got': 1,
          'silly': 1,
          'slashers': 1,
          'mainstream': 1,
          'ncome': 1,
          'looks': 1,
          'gortons': 1,
          'fisherman': 1,
          'gruff': 1,
          'voice': 1,
          'sound': 1,
          'disney': 1,
          'pirate': 1,
          'lightninglit': 1,
          'appearances': 1,
          'ellicited': 1,
          'muchneeded': 1,
          'laughter': 1,
          'appearance': 1,
          'borders': 1,
          'absurd': 1,
          'saying': 1,
          'something': 1,
          'left': 1,
          'nboth': 1,
          'prance': 1,
          'tightfitting': 1,
          'outfits': 1,
          'various': 1,
          'states': 1,
          'undress': 1,
          'neither': 1,
          'ever': 1,
          'actually': 1,
          'nude': 1,
          'postshower': 1,
          'thin': 1,
          'bathrobe': 1,
          'quite': 1,
          'titillating': 1,
          'alone': 1,
          'made': 1,
          'onestar': 1,
          'turkey': 1,
          'earn': 1,
          'stars': 1,
          'rating': 1,
          'system': 1,
          'notherwise': 1,
          'grate': 1,
          'nerves': 1,
          'nearly': 1,
          'instance': 1,
          'jump': 1,
          'screech': 1,
          'forever': 1,
          'needed': 1,
          'extrastrength': 1,
          'tylenol': 1,
          'part': 1,
          'noh': 1,
          'conclusion': 1,
          'repetitive': 1,
          'npeople': 1,
          'predict': 1,
          'ending': 1,
          'least': 1,
          '5': 1,
          'minutes': 1,
          'happens': 1,
          'nboring': 1,
          'brother': 1,
          'local': 1,
          'downtown': 1,
          'nadmission': 1,
          'dollar': 1,
          'wednesdays': 1,
          'often': 1,
          'see': 1,
          'movies': 1,
          'days': 1,
          'ridicule': 1,
          'nits': 1,
          'usually': 1,
          'fun': 1,
          'thing': 1,
          'along': 1,
          'rest': 1,
          'dont': 1,
          'mind': 1,
          'participating': 1,
          'mass': 1,
          'mystery': 1,
          'science': 1,
          '3000': 1,
          'type': 1,
          'viewing': 1,
          'produced': 1,
          'lengthy': 1,
          'silences': 1,
          'underscoring': 1,
          'nif': 1,
          'werent': 1,
          'main': 1,
          'wardrobes': 1,
          'id': 1,
          'hard': 1,
          'lame': 1,
          'cant': 1,
          'imagine': 1,
          'trying': 1,
          'video': 1,
          '10': 1,
          'times': 1,
          'better': 1,
          'rely': 1,
          'participation': 1,
          'recommend': 1,
          'people': 1,
          'unless': 1,
          'theyre': 1,
          'fanatics': 1,
          'fans': 1,
          'read': 1,
          'website': 1,
          'somewhere': 1,
          'already': 1,
          'nwhat': 1,
          'depressing': 1,
          'thought': 1,
          'apparently': 1,
          'needs': 1,
          'spend': 1,
          'figuring': 1,
          'nrated': 1,
          'r': 1,
          'contains': 1,
          'violence': 1,
          'gory': 1,
          'couple': 1,
          'nubile': 1,
          'horny': 1,
          'teenagersthough': 1,
          'sex': 1,
          'always': 1,
          'thwarted': 1,
          'nid': 1,
          'say': 1,
          'unsuitable': 1,
          'kids': 1,
          'teens': 1,
          'problem': 1,
          'especially': 1,
          'since': 1,
          'obviously': 1,
          'compose': 1,
          'target': 1,
          'nneg': 1}),
 Counter({'film': 15,
          'winner': 12,
          'would': 7,
          'nit': 6,
          'mr': 5,
          'nthe': 4,
          'philip': 4,
          'nto': 3,
          'entirely': 3,
          'upon': 3,
          'philips': 3,
          'one': 3,
          'alex': 2,
          'wouldbe': 2,
          'tedious': 2,
          'characters': 2,
          'appears': 2,
          'fact': 2,
          'remotely': 2,
          'essentially': 2,
          'donofrio': 2,
          'gift': 2,
          'virtually': 2,
          'talent': 2,
          'fortunes': 2,
          'taking': 2,
          'becomes': 2,
          'advantage': 2,
          'demornay': 2,
          'johnny': 2,
          'madsen': 2,
          'also': 2,
          'whaley': 2,
          'every': 2,
          'casino': 2,
          'lindo': 2,
          'could': 2,
          'even': 2,
          'done': 2,
          'cox': 2,
          'credit': 2,
          'thing': 2,
          'note': 1,
          'may': 1,
          'consider': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'assess': 1,
          'coxs': 1,
          'loser': 1,
          'indolent': 1,
          'derisive': 1,
          'glib': 1,
          'dismissive': 1,
          'accurate': 1,
          'nrarely': 1,
          'seen': 1,
          'excruciatingly': 1,
          'annoying': 1,
          'comedy': 1,
          'quickly': 1,
          'proves': 1,
          'unfunny': 1,
          'unengaging': 1,
          'attempts': 1,
          'fresh': 1,
          'quirky': 1,
          'utilising': 1,
          'myriad': 1,
          'colourful': 1,
          'weave': 1,
          'absurd': 1,
          'tale': 1,
          'overlook': 1,
          'nobody': 1,
          'interesting': 1,
          'preposterous': 1,
          'set': 1,
          'las': 1,
          'vegas': 1,
          'focus': 1,
          'vincent': 1,
          'aloof': 1,
          'naive': 1,
          'young': 1,
          'man': 1,
          'blessed': 1,
          'odd': 1,
          'luck': 1,
          'lose': 1,
          'tables': 1,
          'ndespite': 1,
          'prodigious': 1,
          'perpetually': 1,
          'mournful': 1,
          'quite': 1,
          'indifferent': 1,
          'gambling': 1,
          'neither': 1,
          'joy': 1,
          'winnings': 1,
          'foresight': 1,
          'mask': 1,
          'abilities': 1,
          'nconsequently': 1,
          'easy': 1,
          'target': 1,
          'ride': 1,
          'coattails': 1,
          'take': 1,
          'nlouise': 1,
          'rebecca': 1,
          'sultry': 1,
          'lounge': 1,
          'singer': 1,
          'insinuates': 1,
          'life': 1,
          'purpose': 1,
          'swindling': 1,
          'estranged': 1,
          'brother': 1,
          'conveniently': 1,
          'louises': 1,
          'exbeau': 1,
          'michael': 1,
          'arrives': 1,
          'scene': 1,
          'n': 1,
          'add': 1,
          'colour': 1,
          'happens': 1,
          'toting': 1,
          'fathers': 1,
          'corpse': 1,
          'sans': 1,
          'hand': 1,
          'nmeanwhile': 1,
          'befriended': 1,
          'trio': 1,
          'lowrent': 1,
          'opportunists': 1,
          'frank': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'richard': 1,
          'edson': 1,
          'intention': 1,
          'new': 1,
          'buddys': 1,
          'dice': 1,
          'nserenely': 1,
          'overlooking': 1,
          'chaos': 1,
          'behind': 1,
          'scenes': 1,
          'owner': 1,
          'delroy': 1,
          'probably': 1,
          'giving': 1,
          'away': 1,
          'much': 1,
          'reveal': 1,
          'role': 1,
          'alluded': 1,
          'end': 1,
          'flashy': 1,
          'sequence': 1,
          'martin': 1,
          'scorseses': 1,
          'details': 1,
          'organization': 1,
          'hierarchy': 1,
          'casinos': 1,
          'operations': 1,
          'eye': 1,
          'sky': 1,
          'maddening': 1,
          'endure': 1,
          'whose': 1,
          'central': 1,
          'protagonist': 1,
          'oblivious': 1,
          'ongoing': 1,
          'blatant': 1,
          'manipulation': 1,
          'fortunately': 1,
          'case': 1,
          'sadsack': 1,
          'hero': 1,
          'sap': 1,
          'sympathetic': 1,
          'compelling': 1,
          'impossible': 1,
          'root': 1,
          'care': 1,
          'fate': 1,
          'swindlers': 1,
          'drawn': 1,
          'ludicrous': 1,
          'transparent': 1,
          'buffoons': 1,
          'unimaginative': 1,
          'uninteresting': 1,
          'schemes': 1,
          'watches': 1,
          'complete': 1,
          'sense': 1,
          'disinterest': 1,
          'shame': 1,
          'features': 1,
          'talented': 1,
          'cast': 1,
          'underrated': 1,
          'gifted': 1,
          'actor': 1,
          'huge': 1,
          'range': 1,
          'remarkable': 1,
          'screen': 1,
          'presence': 1,
          'infiltrates': 1,
          'ms': 1,
          'good': 1,
          'work': 1,
          'past': 1,
          'nnone': 1,
          'actors': 1,
          'top': 1,
          'form': 1,
          'wont': 1,
          'likely': 1,
          'prized': 1,
          'addition': 1,
          'respective': 1,
          'resumes': 1,
          'ndirector': 1,
          'wendy': 1,
          'riss': 1,
          'screenplay': 1,
          'point': 1,
          'feels': 1,
          'like': 1,
          'adaptation': 1,
          'stage': 1,
          'play': 1,
          'startled': 1,
          'learn': 1,
          'based': 1,
          'nwhile': 1,
          'wellpaced': 1,
          'meander': 1,
          'nearimpossible': 1,
          'task': 1,
          'matter': 1,
          'director': 1,
          'comes': 1,
          'mind': 1,
          'overcome': 1,
          'films': 1,
          'widespread': 1,
          'shortcomings': 1,
          'plot': 1,
          'characterization': 1,
          'understanding': 1,
          'chosen': 1,
          'distance': 1,
          'project': 1,
          'acknowledgement': 1,
          'deficiencies': 1,
          'ni': 1,
          'caught': 1,
          'world': 1,
          'premiere': 1,
          'toronto': 1,
          'international': 1,
          'festival': 1,
          'september': 1,
          '1996': 1,
          'fairness': 1,
          'possible': 1,
          'extensively': 1,
          'revamped': 1,
          'since': 1,
          'due': 1,
          'lacklustre': 1,
          'audience': 1,
          'reaction': 1,
          'generated': 1,
          'walkouts': 1,
          'others': 1,
          'screened': 1,
          'honest': 1,
          'though': 1,
          'couldnt': 1,
          'begin': 1,
          'isolate': 1,
          'improve': 1,
          'assume': 1,
          'throwing': 1,
          'whole': 1,
          'starting': 1,
          'question': 1,
          'apparently': 1,
          'played': 1,
          'cable': 1,
          'television': 1,
          'united': 1,
          'states': 1,
          'beginning': 1,
          'limited': 1,
          'theatrical': 1,
          'release': 1,
          'time': 1,
          'writing': 1,
          'nice': 1,
          'upbeat': 1,
          'score': 1,
          'pray': 1,
          'rain': 1,
          'honestly': 1,
          'facetious': 1,
          'state': 1,
          'treasured': 1,
          'screening': 1,
          'bag': 1,
          'popcorn': 1,
          'munching': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'schumacher': 11,
          'doesnt': 10,
          'nthe': 8,
          'good': 8,
          'welles': 8,
          '8mm': 7,
          'like': 6,
          'films': 6,
          'see': 6,
          'money': 6,
          'nhe': 6,
          'snuff': 5,
          'right': 5,
          'make': 5,
          'bad': 5,
          'dont': 5,
          'violent': 4,
          'time': 4,
          'even': 4,
          'joel': 4,
          'movie': 4,
          'think': 4,
          'young': 4,
          'girl': 4,
          'sick': 4,
          'movies': 4,
          'making': 4,
          'vigilante': 4,
          'batman': 4,
          'much': 4,
          'walker': 4,
          'script': 4,
          'trash': 3,
          'nwell': 3,
          'one': 3,
          'acting': 3,
          'far': 3,
          'nits': 3,
          'watch': 3,
          'didnt': 3,
          'ha': 3,
          'cage': 3,
          'find': 3,
          'would': 3,
          'better': 3,
          'want': 3,
          'ahead': 3,
          'nthis': 3,
          'nit': 3,
          'kill': 3,
          'us': 3,
          'believe': 3,
          'look': 3,
          'ever': 3,
          'world': 2,
          'garbage': 2,
          'hollywood': 2,
          'ntheres': 2,
          'interested': 2,
          'nno': 2,
          'going': 2,
          'watching': 2,
          'filmmaking': 2,
          'technical': 2,
          'stands': 2,
          'nbut': 2,
          'nlike': 2,
          'moments': 2,
          'crap': 2,
          'pay': 2,
          'nwhy': 2,
          'review': 2,
          'crud': 2,
          'ni': 2,
          'know': 2,
          'around': 2,
          'na': 2,
          'woman': 2,
          'try': 2,
          'murdered': 2,
          'really': 2,
          'dead': 2,
          'without': 2,
          'nsee': 2,
          'end': 2,
          'nhowever': 2,
          'often': 2,
          'thought': 2,
          'industry': 2,
          'ill': 2,
          'clues': 2,
          'porn': 2,
          'way': 2,
          'nafter': 2,
          'skip': 2,
          'peter': 2,
          'stormare': 2,
          'away': 2,
          'mind': 2,
          'get': 2,
          'se7en': 2,
          'restraint': 2,
          'im': 2,
          'gets': 2,
          'rather': 2,
          'andrew': 2,
          'kevin': 2,
          'directors': 2,
          'must': 2,
          'supposed': 2,
          'go': 2,
          'need': 2,
          'nis': 2,
          'though': 2,
          'nif': 2,
          'action': 2,
          'wells': 2,
          'daughter': 2,
          'whose': 2,
          'indeed': 2,
          'depraved': 2,
          'nyes': 2,
          'mr': 2,
          'said': 2,
          'whats': 1,
          'extremely': 1,
          'pornographyie': 1,
          'known': 1,
          'nnothing': 1,
          'nwhats': 1,
          'chronicling': 1,
          'pornography': 1,
          'nothing': 1,
          'nso': 1,
          'reason': 1,
          'average': 1,
          'sane': 1,
          'moviegoer': 1,
          'topic': 1,
          'enrich': 1,
          'life': 1,
          'material': 1,
          'lack': 1,
          'quality': 1,
          'consider': 1,
          'star': 1,
          'writer': 1,
          'supporting': 1,
          'castall': 1,
          'reputable': 1,
          'brand': 1,
          'unlikable': 1,
          'strikes': 1,
          'paul': 1,
          'schrader': 1,
          'theyre': 1,
          'nbetween': 1,
          'nbasically': 1,
          'picture': 1,
          'walk': 1,
          'wouldnt': 1,
          'thorough': 1,
          'thoroughly': 1,
          'nheres': 1,
          'spend': 1,
          'dog': 1,
          'food': 1,
          'gum': 1,
          'instead': 1,
          'nfirst': 1,
          'thingif': 1,
          'heed': 1,
          'advice': 1,
          'understand': 1,
          'youre': 1,
          'paying': 1,
          'easy': 1,
          'details': 1,
          'story': 1,
          'beforehand': 1,
          'least': 1,
          'ignorance': 1,
          'help': 1,
          'others': 1,
          'plot': 1,
          'revolves': 1,
          'tom': 1,
          'nicolas': 1,
          'surveillance': 1,
          'expert': 1,
          'private': 1,
          'investigator': 1,
          'rich': 1,
          'old': 1,
          'discovers': 1,
          'late': 1,
          'husbands': 1,
          'safe': 1,
          'nshe': 1,
          'calls': 1,
          'hires': 1,
          'appears': 1,
          'nshes': 1,
          'horrified': 1,
          'husband': 1,
          'owned': 1,
          'course': 1,
          'wants': 1,
          'snoop': 1,
          'police': 1,
          'interference': 1,
          'nfamilyman': 1,
          'agrees': 1,
          'judgement': 1,
          'concrete': 1,
          'leads': 1,
          'cringing': 1,
          'grimacing': 1,
          'sight': 1,
          'grotesque': 1,
          'murder': 1,
          'nlet': 1,
          'backtrack': 1,
          'moment': 1,
          'pornos': 1,
          'twistpeople': 1,
          'tortured': 1,
          'ways': 1,
          'deaths': 1,
          'staged': 1,
          'cases': 1,
          'special': 1,
          'effects': 1,
          'difference': 1,
          'nvery': 1,
          'people': 1,
          'enjoy': 1,
          'top': 1,
          'dollar': 1,
          'hardtofind': 1,
          'makes': 1,
          'throw': 1,
          'computer': 1,
          'window': 1,
          'stop': 1,
          'swallow': 1,
          'bile': 1,
          'move': 1,
          'nwelles': 1,
          'follows': 1,
          'nyoud': 1,
          'hes': 1,
          'sherlock': 1,
          'holmes': 1,
          'drop': 1,
          'easily': 1,
          'comes': 1,
          'across': 1,
          'smut': 1,
          'clerk': 1,
          'max': 1,
          'joaquin': 1,
          'phoenix': 1,
          'knows': 1,
          'everyone': 1,
          'everything': 1,
          'underground': 1,
          'business': 1,
          'sleaze': 1,
          'lot': 1,
          'digging': 1,
          'bribing': 1,
          'finds': 1,
          'men': 1,
          'responsible': 1,
          'nskip': 1,
          'nled': 1,
          'dino': 1,
          'velvet': 1,
          'uncharacteristically': 1,
          'terrible': 1,
          'performance': 1,
          'startorturer': 1,
          'machine': 1,
          'christopher': 1,
          'bauer': 1,
          'big': 1,
          'showdown': 1,
          'death': 1,
          'mayhem': 1,
          'ensue': 1,
          'unfortunately': 1,
          'heroes': 1,
          'dobecome': 1,
          'draw': 1,
          'keeps': 1,
          '700': 1,
          'miles': 1,
          'close': 1,
          'possible': 1,
          'focuses': 1,
          'grime': 1,
          'behaviour': 1,
          'ie': 1,
          'n': 1,
          'takes': 1,
          'large': 1,
          'measure': 1,
          'none': 1,
          'larger': 1,
          'amount': 1,
          'talent': 1,
          'little': 1,
          'nby': 1,
          'jabs': 1,
          'referring': 1,
          'stylish': 1,
          'destruction': 1,
          'franchise': 1,
          'immensely': 1,
          'overrated': 1,
          'disappointment': 1,
          'nfor': 1,
          'guy': 1,
          'studio': 1,
          'track': 1,
          'record': 1,
          'unparalleled': 1,
          'screenwriter': 1,
          'director': 1,
          'hypnotically': 1,
          'disgusting': 1,
          'subject': 1,
          'matter': 1,
          'nwriter': 1,
          'recapture': 1,
          'smarts': 1,
          'fascinating': 1,
          'authored': 1,
          '95s': 1,
          'twisted': 1,
          'thriller': 1,
          'ndirector': 1,
          'innate': 1,
          'ability': 1,
          'things': 1,
          'capable': 1,
          'believed': 1,
          'hitchcock': 1,
          'espoused': 1,
          'theory': 1,
          'frightening': 1,
          'especially': 1,
          'scene': 1,
          'gratuitous': 1,
          'joels': 1,
          'middle': 1,
          'name': 1,
          'flaunting': 1,
          'hardcore': 1,
          'act': 1,
          'sex': 1,
          'showing': 1,
          'plenty': 1,
          'tactful': 1,
          'enough': 1,
          'unpleasantness': 1,
          'leave': 1,
          'imagination': 1,
          'manipulating': 1,
          'hurt': 1,
          'girls': 1,
          'audience': 1,
          'side': 1,
          'murderous': 1,
          'characters': 1,
          'yet': 1,
          'subtlety': 1,
          'ncraft': 1,
          'ncase': 1,
          'point': 1,
          'shot': 1,
          'christian': 1,
          'fellowship': 1,
          'bus': 1,
          'ndrives': 1,
          'reveal': 1,
          'villains': 1,
          'nsubtlety': 1,
          'ndoes': 1,
          'stupid': 1,
          'held': 1,
          'hand': 1,
          'comprehend': 1,
          'contrasting': 1,
          'imagery': 1,
          'nwho': 1,
          'root': 1,
          'mess': 1,
          'anybody': 1,
          'fault': 1,
          'actors': 1,
          'sign': 1,
          'nnicolas': 1,
          'oscarwinner': 1,
          'cryin': 1,
          'loud': 1,
          'claims': 1,
          'challenge': 1,
          'artistic': 1,
          'merit': 1,
          'smoking': 1,
          'dropped': 1,
          'veranda': 1,
          'nwhat': 1,
          'moviea': 1,
          'whispering': 1,
          'charisma': 1,
          'pointed': 1,
          'ears': 1,
          'nvillainous': 1,
          'five': 1,
          'steps': 1,
          'past': 1,
          'hammy': 1,
          'nand': 1,
          'james': 1,
          'gandolfini': 1,
          'solid': 1,
          'concerned': 1,
          'father': 1,
          'civil': 1,
          'guess': 1,
          'ol': 1,
          'nic': 1,
          'pete': 1,
          'jim': 1,
          'promised': 1,
          'mountain': 1,
          'ntheyre': 1,
          'suckers': 1,
          'care': 1,
          'nthere': 1,
          'albeit': 1,
          'brief': 1,
          'ones': 1,
          'rises': 1,
          'wasteland': 1,
          'ncatherine': 1,
          'keener': 1,
          'although': 1,
          'quick': 1,
          'threaten': 1,
          'divorce': 1,
          'mrs': 1,
          'nbaby': 1,
          'cindy': 1,
          'obviously': 1,
          'cute': 1,
          'devout': 1,
          'love': 1,
          'sweet': 1,
          'mother': 1,
          'amy': 1,
          'norton': 1,
          'infamous': 1,
          'dealing': 1,
          'uncertain': 1,
          'loss': 1,
          'runaway': 1,
          'appropriate': 1,
          'bluetoned': 1,
          'washedout': 1,
          'payback': 1,
          'editing': 1,
          'okay': 1,
          'scenes': 1,
          'dialogue': 1,
          'times': 1,
          'rough': 1,
          'nduring': 1,
          'conversations': 1,
          'closeups': 1,
          'wide': 1,
          'shots': 1,
          'cut': 1,
          'well': 1,
          'editted': 1,
          'someone': 1,
          'instincts': 1,
          'arent': 1,
          'timing': 1,
          'halfsecond': 1,
          'nsuch': 1,
          'error': 1,
          'nspeaking': 1,
          'standing': 1,
          'misleading': 1,
          'trailers': 1,
          'noccasionally': 1,
          'yes': 1,
          'tv': 1,
          'seeing': 1,
          'may': 1,
          'kind': 1,
          'positive': 1,
          'almost': 1,
          'glimpsing': 1,
          'dirty': 1,
          'motive': 1,
          'theyve': 1,
          'done': 1,
          'swell': 1,
          'job': 1,
          'nitll': 1,
          'long': 1,
          'give': 1,
          'another': 1,
          'chanceunless': 1,
          'lose': 1,
          'become': 1,
          'seriously': 1,
          'today': 1,
          'ask': 1,
          'preach': 1,
          'society': 1,
          'worried': 1,
          'nim': 1,
          'sure': 1,
          'somewhere': 1,
          'theres': 1,
          'pretty': 1,
          'mean': 1,
          'tells': 1,
          'screwedup': 1,
          'folks': 1,
          'proverbial': 1,
          'monster': 1,
          'expect': 1,
          'nyou': 1,
          '1995': 1,
          'nmove': 1,
          'serves': 1,
          'purpose': 1,
          'entertain': 1,
          'teach': 1,
          'anything': 1,
          'statement': 1,
          'beyond': 1,
          'obvious': 1,
          'stuff': 1,
          'approach': 1,
          'nonly': 1,
          'awakens': 1,
          'authorities': 1,
          'abolish': 1,
          'types': 1,
          'horrors': 1,
          'someting': 1,
          'truly': 1,
          'worthwhile': 1,
          'nthats': 1,
          'likely': 1,
          'happen': 1,
          'scummy': 1,
          'waste': 1,
          'norson': 1,
          'years': 1,
          'ago': 1,
          'tribute': 1,
          'ngood': 1,
          'producers': 1,
          'listened': 1,
          'told': 1,
          'bury': 1,
          'deep': 1,
          'hole': 1,
          'never': 1,
          'made': 1,
          'nnow': 1,
          'excuse': 1,
          'forget': 1,
          'saw': 1,
          'nuseless': 1,
          'triviajoel': 1,
          'loves': 1,
          'theme': 1,
          'used': 1,
          'forever': 1,
          'robin': 1,
          'falling': 1,
          'rumoured': 1,
          'play': 1,
          'breakfast': 1,
          'table': 1,
          'tomorrow': 1,
          'nneg': 1}),
 Counter({'plays': 8,
          'uninteresting': 7,
          'blonde': 6,
          'film': 5,
          'real': 5,
          'really': 4,
          'nthe': 4,
          'soap': 4,
          'nshe': 3,
          'collars': 2,
          'cuffs': 2,
          'match': 2,
          'supposedly': 2,
          'operas': 2,
          'business': 2,
          'nit': 2,
          'dicillo': 2,
          'modine': 2,
          'joe': 2,
          'agent': 2,
          'take': 2,
          'thats': 2,
          'acting': 2,
          'keener': 2,
          'nbut': 2,
          'madonna': 2,
          'video': 2,
          'one': 2,
          'interesting': 2,
          'single': 2,
          'whos': 2,
          'entire': 2,
          'bob': 2,
          'nwhy': 2,
          'james': 1,
          'bond': 1,
          'diamonds': 1,
          'forever': 1,
          'tiffany': 1,
          'case': 1,
          'asks': 1,
          '007': 1,
          'whether': 1,
          'prefers': 1,
          'brunettes': 1,
          'redheads': 1,
          'nbonds': 1,
          'response': 1,
          'doesnt': 1,
          'matter': 1,
          'long': 1,
          'nwell': 1,
          'dont': 1,
          'nwhat': 1,
          'might': 1,
          'sounded': 1,
          'good': 1,
          'paper': 1,
          'ends': 1,
          'largely': 1,
          'unfunny': 1,
          'meandering': 1,
          'comedy': 1,
          'screen': 1,
          'satire': 1,
          'superficiality': 1,
          'modeling': 1,
          'wafer': 1,
          'thin': 1,
          'like': 1,
          'ally': 1,
          'mcbeal': 1,
          'episode': 1,
          'dragged': 1,
          'nth': 1,
          'degree': 1,
          'replete': 1,
          'unnecessary': 1,
          'fantasy': 1,
          'sequences': 1,
          'nwriterdirector': 1,
          'tom': 1,
          'manages': 1,
          'material': 1,
          'poking': 1,
          'fun': 1,
          'daytime': 1,
          'dramas': 1,
          'fresh': 1,
          'idea': 1,
          'isnt': 1,
          'surprise': 1,
          'talented': 1,
          'could': 1,
          'make': 1,
          'familiar': 1,
          'terrain': 1,
          'dreary': 1,
          'nmatthew': 1,
          'struggling': 1,
          'actor': 1,
          'waiting': 1,
          'tables': 1,
          'order': 1,
          'pay': 1,
          'rent': 1,
          'nhes': 1,
          '35': 1,
          'credits': 1,
          'since': 1,
          'hes': 1,
          'proud': 1,
          'roles': 1,
          'commercials': 1,
          'n': 1,
          'tells': 1,
          'girlfriend': 1,
          'six': 1,
          'years': 1,
          'mary': 1,
          'catherine': 1,
          'bickers': 1,
          'constantly': 1,
          'sex': 1,
          'need': 1,
          'money': 1,
          'finally': 1,
          'agrees': 1,
          'part': 1,
          'starring': 1,
          'lookalike': 1,
          'played': 1,
          'elizabeth': 1,
          'berkley': 1,
          'still': 1,
          'trying': 1,
          'jumpstart': 1,
          'career': 1,
          'showgirls': 1,
          'nthis': 1,
          'points': 1,
          'artificial': 1,
          'whole': 1,
          'supposes': 1,
          'ndicillo': 1,
          'referred': 1,
          'offkilter': 1,
          'combination': 1,
          'sorts': 1,
          'stuff': 1,
          'wanders': 1,
          'place': 1,
          'without': 1,
          'getting': 1,
          'anywhere': 1,
          'remarkably': 1,
          'kilter': 1,
          'perhaps': 1,
          'exception': 1,
          'alwayslikable': 1,
          'afraid': 1,
          'stand': 1,
          'around': 1,
          'unattractive': 1,
          'bathing': 1,
          'suit': 1,
          'surrounded': 1,
          'hunks': 1,
          'cast': 1,
          'vague': 1,
          'ncatherine': 1,
          'appeared': 1,
          'dicillos': 1,
          'previous': 1,
          'three': 1,
          'films': 1,
          'including': 1,
          'brilliant': 1,
          'living': 1,
          'oblivion': 1,
          'annoying': 1,
          'nlook': 1,
          'closely': 1,
          'cant': 1,
          'act': 1,
          'nher': 1,
          'reactions': 1,
          'wrong': 1,
          'almost': 1,
          'always': 1,
          'sync': 1,
          'costars': 1,
          'reacts': 1,
          'soon': 1,
          'late': 1,
          'lines': 1,
          'situations': 1,
          'moves': 1,
          'eyes': 1,
          'mouth': 1,
          'far': 1,
          'much': 1,
          'frowns': 1,
          'yells': 1,
          'babblesshe': 1,
          'blows': 1,
          'chunks': 1,
          'nmaxwell': 1,
          'caulfield': 1,
          'joes': 1,
          'actorwaiter': 1,
          'buddy': 1,
          'obsessed': 1,
          'dating': 1,
          'natural': 1,
          'nbobs': 1,
          'personality': 1,
          'mention': 1,
          'caulfields': 1,
          'ability': 1,
          'parallels': 1,
          'character': 1,
          'opera': 1,
          'passion': 1,
          'crest': 1,
          'stiff': 1,
          'nmaybe': 1,
          'point': 1,
          'ndaryl': 1,
          'hannah': 1,
          'dim': 1,
          'title': 1,
          'dish': 1,
          'beds': 1,
          'offcamera': 1,
          'nhannah': 1,
          'looks': 1,
          'fifty': 1,
          'movie': 1,
          'shes': 1,
          '37': 1,
          'nalmost': 1,
          'women': 1,
          'wear': 1,
          'tops': 1,
          'show': 1,
          'nipples': 1,
          'nmarlo': 1,
          'thomas': 1,
          'fashion': 1,
          'photographer': 1,
          'nkathleen': 1,
          'turner': 1,
          'talent': 1,
          'nbuck': 1,
          'henry': 1,
          'shrink': 1,
          'nchristopher': 1,
          'lloyd': 1,
          'caterer': 1,
          'nand': 1,
          'best': 1,
          'parts': 1,
          'beginning': 1,
          'end': 1,
          'brief': 1,
          'scenes': 1,
          'elderly': 1,
          'woman': 1,
          'losing': 1,
          'finding': 1,
          'dog': 1,
          'ntheres': 1,
          'depth': 1,
          'sincerity': 1,
          'closeup': 1,
          'expressive': 1,
          'face': 1,
          'nwhile': 1,
          'contrast': 1,
          'meant': 1,
          'highlight': 1,
          'shallowness': 1,
          'characters': 1,
          'lives': 1,
          'thing': 1,
          'makes': 1,
          'shallow': 1,
          'superficial': 1,
          'funny': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'armageddon': 7,
          'impact': 6,
          'harry': 6,
          'meteor': 5,
          'movies': 4,
          'see': 4,
          'n': 4,
          'probably': 3,
          'team': 3,
          'deep': 3,
          'people': 3,
          'j': 3,
          'grace': 3,
          'nif': 3,
          'plot': 2,
          'graph': 2,
          'hollywood': 2,
          'line': 2,
          'michael': 2,
          'rock': 2,
          'better': 2,
          'much': 2,
          'like': 2,
          'earth': 2,
          'didnt': 2,
          '18': 2,
          'days': 2,
          'ndeep': 2,
          'size': 2,
          'new': 2,
          'idea': 2,
          'drill': 2,
          'sounds': 2,
          'bruce': 2,
          'willis': 2,
          'tagline': 2,
          'harrys': 2,
          '2': 2,
          'space': 2,
          'relationship': 2,
          'nand': 2,
          'daughter': 2,
          'place': 2,
          'movie': 2,
          'human': 2,
          'proves': 2,
          'nothing': 2,
          'still': 2,
          'know': 2,
          'screen': 2,
          'music': 2,
          'even': 2,
          'believe': 2,
          'makers': 2,
          'please': 2,
          'worth': 2,
          'time': 2,
          'year': 1,
          'movieplotridiculity': 1,
          'youll': 1,
          'constant': 1,
          'gradient': 1,
          'bayjerry': 1,
          'bruckheimer': 1,
          'made': 1,
          'last': 1,
          '4': 1,
          'years': 1,
          'would': 1,
          'exponential': 1,
          'growth': 1,
          'started': 1,
          'smith': 1,
          'vehicle': 1,
          'bad': 1,
          'boys': 1,
          '2hr': 1,
          'long': 1,
          'actionmusicvideo': 1,
          'nevertheless': 1,
          'entertaining': 1,
          'nthen': 1,
          'came': 1,
          'audiences': 1,
          'flocked': 1,
          'nicholas': 1,
          'cage': 1,
          'sean': 1,
          'connery': 1,
          'terrorizing': 1,
          'general': 1,
          'fighting': 1,
          'stupid': 1,
          'cause': 1,
          'nconair': 1,
          'ridiculousy': 1,
          'dumb': 1,
          'premise': 1,
          'fun': 1,
          'moments': 1,
          'forget': 1,
          'nursery': 1,
          'rhyme': 1,
          'sang': 1,
          'psycho': 1,
          'killer': 1,
          'played': 1,
          'steve': 1,
          'buscemi': 1,
          'nwhile': 1,
          'worked': 1,
          'something': 1,
          'coverup': 1,
          'dirt': 1,
          'nvery': 1,
          'heading': 1,
          'towards': 1,
          'realize': 1,
          'settled': 1,
          'modest': 1,
          'large': 1,
          'city': 1,
          'york': 1,
          'bigger': 1,
          'well': 1,
          'nabout': 1,
          'texas': 1,
          'kinda': 1,
          'whould': 1,
          'knock': 1,
          'orbit': 1,
          'panic': 1,
          'sighting': 1,
          'spurs': 1,
          'landing': 1,
          'nuke': 1,
          'familiar': 1,
          'job': 1,
          'stamper': 1,
          'oildriller': 1,
          'extraordinaire': 1,
          'machomisfits': 1,
          'nursing': 1,
          'aint': 1,
          'nothin': 1,
          'planet': 1,
          'cant': 1,
          'nin': 1,
          'group': 1,
          'split': 1,
          'teams': 1,
          'trained': 1,
          'deepspace': 1,
          'flight': 1,
          'finally': 1,
          'blasted': 1,
          'special': 1,
          'drilling': 1,
          'vehicles': 1,
          'shuttles': 1,
          'main': 1,
          'drama': 1,
          'formed': 1,
          'within': 1,
          'nto': 1,
          'give': 1,
          'nworks': 1,
          'loves': 1,
          'problem': 1,
          'hates': 1,
          'hanging': 1,
          'around': 1,
          'scruffy': 1,
          'grunt': 1,
          'rest': 1,
          'life': 1,
          'nso': 1,
          'struts': 1,
          'position': 1,
          'unable': 1,
          'take': 1,
          'sides': 1,
          'remains': 1,
          'seated': 1,
          'nasa': 1,
          'control': 1,
          'tower': 1,
          'crying': 1,
          '80': 1,
          'elements': 1,
          'tries': 1,
          'inject': 1,
          'excuse': 1,
          'slowmos': 1,
          'goldtinted': 1,
          'photography': 1,
          'anguish': 1,
          'world': 1,
          'potrayed': 1,
          'scenes': 1,
          'praying': 1,
          'running': 1,
          'lives': 1,
          'sitting': 1,
          'staring': 1,
          'sky': 1,
          'fine': 1,
          'right': 1,
          'ni': 1,
          'looks': 1,
          'staged': 1,
          'ask': 1,
          'whats': 1,
          'difference': 1,
          'rb': 1,
          'video': 1,
          'nyoud': 1,
          'said': 1,
          'nnot': 1,
          'surprising': 1,
          'since': 1,
          'bay': 1,
          'child': 1,
          'industry': 1,
          'actually': 1,
          'managed': 1,
          'transpose': 1,
          'mtv': 1,
          'skills': 1,
          'successfully': 1,
          'nhis': 1,
          'foray': 1,
          'doesnt': 1,
          'stop': 1,
          'nwell': 1,
          'theres': 1,
          'really': 1,
          'sum': 1,
          'stockaitkenwaterman': 1,
          'projected': 1,
          'artform': 1,
          'ridiculity': 1,
          'beyond': 1,
          'plane': 1,
          'believability': 1,
          'accept': 1,
          'ridiculous': 1,
          'aspects': 1,
          'thing': 1,
          'decided': 1,
          'shroud': 1,
          'myth': 1,
          'fantasy': 1,
          'purely': 1,
          'believable': 1,
          'tale': 1,
          'suffering': 1,
          'coming': 1,
          'terms': 1,
          'ones': 1,
          'problems': 1,
          'ultimately': 1,
          'brought': 1,
          'ashes': 1,
          'initially': 1,
          'put': 1,
          'overcrowded': 1,
          'loud': 1,
          'messy': 1,
          'preposterously': 1,
          'manipulative': 1,
          'waste': 1,
          'money': 1,
          'deserves': 1,
          'remain': 1,
          'pile': 1,
          'ash': 1,
          '20': 1,
          'planned': 1,
          'watched': 1,
          'liv': 1,
          'tyler': 1,
          'catch': 1,
          'finishes': 1,
          'run': 1,
          'may': 1,
          'watching': 1,
          'longlong': 1,
          'bring': 1,
          'earplugs': 1,
          'aspirins': 1,
          'vertigo': 1,
          'nexpect': 1,
          'lds': 1,
          'retail': 1,
          's19': 1,
          '90': 1,
          'carrefour': 1,
          'come': 1,
          'release': 1,
          'ngee': 1,
          'thats': 1,
          'nneg': 1}),
 Counter({'films': 6,
          'mommie': 5,
          'dearest': 5,
          'crawford': 4,
          'daughter': 4,
          'office': 3,
          'performance': 3,
          'see': 3,
          'joan': 3,
          'nin': 3,
          'late': 3,
          'dunaways': 3,
          'christina': 3,
          'doesnt': 3,
          'tina': 2,
          'axe': 2,
          'back': 2,
          'paramount': 2,
          'soon': 2,
          'problem': 2,
          'hands': 2,
          'box': 2,
          'two': 2,
          'times': 2,
          'events': 2,
          'outrageous': 2,
          'camp': 2,
          'series': 2,
          'life': 2,
          'nthe': 2,
          'film': 2,
          'kids': 2,
          'thats': 2,
          'writers': 2,
          'perrys': 2,
          'home': 2,
          'nand': 2,
          'piece': 2,
          'proceeds': 2,
          'like': 2,
          'wire': 2,
          'hangers': 2,
          'noh': 2,
          'another': 2,
          'classic': 2,
          'great': 2,
          'fetch': 1,
          'na': 1,
          'favourite': 1,
          'book': 1,
          'mine': 1,
          'called': 1,
          'golden': 1,
          'turkey': 1,
          'awards': 1,
          'relates': 1,
          'story': 1,
          'unleashed': 1,
          'upon': 1,
          'unsuspecting': 1,
          'audiences': 1,
          '1981': 1,
          'realised': 1,
          'nit': 1,
          'wasnt': 1,
          'disappointing': 1,
          'nindeed': 1,
          'coming': 1,
          'years': 1,
          'people': 1,
          'would': 1,
          'going': 1,
          'three': 1,
          'even': 1,
          'six': 1,
          'nno': 1,
          'main': 1,
          'intended': 1,
          'serious': 1,
          'biopic': 1,
          'screen': 1,
          'queen': 1,
          'turning': 1,
          'laugh': 1,
          'riot': 1,
          'year': 1,
          'desperate': 1,
          'attempt': 1,
          'capitalise': 1,
          'unexpected': 1,
          'turn': 1,
          'publicity': 1,
          'hacks': 1,
          'dreamed': 1,
          'print': 1,
          'advertisements': 1,
          'screaming': 1,
          'biggest': 1,
          'nexecutives': 1,
          'appalled': 1,
          'ads': 1,
          'withdrawn': 1,
          'nmommie': 1,
          'already': 1,
          'cementing': 1,
          'place': 1,
          'cinema': 1,
          'history': 1,
          'nunfortunately': 1,
          'faye': 1,
          'energetic': 1,
          'ridiculously': 1,
          'overthetop': 1,
          'redeeming': 1,
          'feature': 1,
          'nbased': 1,
          'crawfords': 1,
          'trashy': 1,
          'biography': 1,
          'chronicles': 1,
          'mainly': 1,
          'private': 1,
          'moviestar': 1,
          'mother': 1,
          'nif': 1,
          'believe': 1,
          'movie': 1,
          'racked': 1,
          'obsession': 1,
          'lonliness': 1,
          'child': 1,
          'abuse': 1,
          'rampant': 1,
          'egomania': 1,
          'begins': 1,
          'adopting': 1,
          'children': 1,
          'concludes': 1,
          'lawyer': 1,
          'grownup': 1,
          'son': 1,
          'find': 1,
          'left': 1,
          'mothers': 1,
          'njoan': 1,
          'always': 1,
          'wanted': 1,
          'able': 1,
          'fend': 1,
          'nbut': 1,
          'thread': 1,
          'narrative': 1,
          'manages': 1,
          'survive': 1,
          'end': 1,
          'script': 1,
          'laboured': 1,
          'four': 1,
          'bad': 1,
          'sign': 1,
          'poorly': 1,
          'connected': 1,
          'episodes': 1,
          'builds': 1,
          'little': 1,
          'dramatic': 1,
          'momentum': 1,
          'nfrank': 1,
          'direction': 1,
          'competent': 1,
          'bitchy': 1,
          'lines': 1,
          'aside': 1,
          'dialogue': 1,
          'flat': 1,
          'uninvolving': 1,
          'fairness': 1,
          'second': 1,
          'half': 1,
          'ditches': 1,
          'cartoon': 1,
          'hysterics': 1,
          'develop': 1,
          'degree': 1,
          'empathy': 1,
          'characters': 1,
          'nwhen': 1,
          'adult': 1,
          'moves': 1,
          'modest': 1,
          'dwelling': 1,
          'visits': 1,
          'keeps': 1,
          'touch': 1,
          'helping': 1,
          'financially': 1,
          'encouraging': 1,
          'christinas': 1,
          'acting': 1,
          'career': 1,
          'ambitions': 1,
          'ncrawford': 1,
          'seem': 1,
          'care': 1,
          'sense': 1,
          'emotional': 1,
          'distance': 1,
          'feel': 1,
          'pain': 1,
          'nyou': 1,
          'also': 1,
          'get': 1,
          'glimpses': 1,
          'could': 1,
          'better': 1,
          'nah': 1,
          'delicious': 1,
          'campery': 1,
          'often': 1,
          'nhaving': 1,
          'sacked': 1,
          'studio': 1,
          'run': 1,
          'duds': 1,
          'storms': 1,
          'night': 1,
          'go': 1,
          'ballistic': 1,
          'garden': 1,
          'nshe': 1,
          'maid': 1,
          'drag': 1,
          'bed': 1,
          'come': 1,
          'clean': 1,
          'mess': 1,
          'shes': 1,
          'making': 1,
          'nspotting': 1,
          'young': 1,
          'tree': 1,
          'look': 1,
          'turns': 1,
          'trembling': 1,
          'utters': 1,
          'immortal': 1,
          'line': 1,
          'nfetch': 1,
          'nwith': 1,
          'enthusiastically': 1,
          'dismember': 1,
          'poor': 1,
          'sapling': 1,
          'scene': 1,
          'realises': 1,
          'daughters': 1,
          'clothes': 1,
          'hanging': 1,
          'coat': 1,
          'dear': 1,
          'nsounds': 1,
          'perfect': 1,
          'excuse': 1,
          'temper': 1,
          'tantrum': 1,
          'nthis': 1,
          'time': 1,
          'gives': 1,
          'horrible': 1,
          'beating': 1,
          'delivering': 1,
          'outburst': 1,
          'ever': 1,
          'later': 1,
          'board': 1,
          'husbands': 1,
          'company': 1,
          'pepsi': 1,
          'cola': 1,
          'tries': 1,
          'divest': 1,
          'directorship': 1,
          'displays': 1,
          'superb': 1,
          'grasp': 1,
          'business': 1,
          'etiquette': 1,
          'jumping': 1,
          'feet': 1,
          'roaring': 1,
          'dont': 1,
          'fuck': 1,
          'fellas': 1,
          'joy': 1,
          'nsomething': 1,
          'youre': 1,
          'cup': 1,
          'tea': 1,
          'much': 1,
          'recommend': 1,
          'nbetter': 1,
          'real': 1,
          'women': 1,
          '1939': 1,
          'mildred': 1,
          'pierce': 1,
          '1945': 1,
          'whatever': 1,
          'happened': 1,
          'baby': 1,
          'jane': 1,
          '1962': 1,
          'ngreat': 1,
          'distinguished': 1,
          'performances': 1,
          'far': 1,
          'eloquent': 1,
          'testament': 1,
          'woman': 1,
          'frank': 1,
          'shrieking': 1,
          'tabloid': 1,
          'froth': 1,
          'nneg': 1}),
 Counter({'phil': 3,
          'movie': 3,
          'almost': 3,
          'problem': 2,
          'author': 2,
          'werewolfism': 2,
          'enough': 2,
          'nand': 2,
          'fangs': 2,
          'film': 2,
          'nas': 2,
          'plays': 2,
          'husband': 2,
          'sex': 2,
          'nthe': 2,
          'blonde': 2,
          'radmar': 1,
          'jao': 1,
          'hairy': 1,
          'nhis': 1,
          'beard': 1,
          'growing': 1,
          'rapidly': 1,
          'shave': 1,
          'every': 1,
          'hour': 1,
          'nhe': 1,
          'recently': 1,
          'met': 1,
          'nonfiction': 1,
          'book': 1,
          'lycanthropy': 1,
          'also': 1,
          'referred': 1,
          'believes': 1,
          'become': 1,
          'werewolf': 1,
          'nusing': 1,
          'chains': 1,
          'handcuffs': 1,
          'hit': 1,
          'sadomasochists': 1,
          'convention': 1,
          'ties': 1,
          'night': 1,
          'lest': 1,
          'urges': 1,
          'overcome': 1,
          'one': 1,
          'many': 1,
          'quirky': 1,
          'characters': 1,
          'inhabit': 1,
          'shopping': 1,
          'nmade': 1,
          'pittance': 1,
          'features': 1,
          'exclusively': 1,
          'asianamerican': 1,
          'cast': 1,
          'directed': 1,
          'quentin': 1,
          'lee': 1,
          'justin': 1,
          'lin': 1,
          'amateurishly': 1,
          'bad': 1,
          'could': 1,
          'parody': 1,
          'indie': 1,
          'films': 1,
          'njeanne': 1,
          'chin': 1,
          'katherine': 1,
          'meek': 1,
          'softspoken': 1,
          'wife': 1,
          'worries': 1,
          'unhappy': 1,
          'giving': 1,
          'nwe': 1,
          'know': 1,
          'endless': 1,
          'scenes': 1,
          'confessing': 1,
          'sins': 1,
          'real': 1,
          'imagined': 1,
          'therapist': 1,
          'jim': 1,
          'clint': 1,
          'jung': 1,
          'muscle': 1,
          'man': 1,
          'macho': 1,
          'crudeness': 1,
          'picture': 1,
          'filled': 1,
          'stereotypes': 1,
          'ntheres': 1,
          'mysterious': 1,
          'loudmouthed': 1,
          'waitress': 1,
          'big': 1,
          'platinum': 1,
          'wig': 1,
          'brags': 1,
          'everyone': 1,
          'meets': 1,
          'shes': 1,
          'lesbian': 1,
          'nshe': 1,
          'spends': 1,
          'putting': 1,
          'moves': 1,
          'favorite': 1,
          'customer': 1,
          'gay': 1,
          'guy': 1,
          'lone': 1,
          'white': 1,
          'major': 1,
          'role': 1,
          'wildly': 1,
          'unkempt': 1,
          'orangey': 1,
          'curly': 1,
          'hair': 1,
          'nfrom': 1,
          'opening': 1,
          'scene': 1,
          'attempted': 1,
          'rape': 1,
          'knifepoint': 1,
          'easy': 1,
          'guess': 1,
          'ending': 1,
          'twist': 1,
          'script': 1,
          'rarely': 1,
          'anything': 1,
          'offer': 1,
          'story': 1,
          'minimally': 1,
          'developed': 1,
          'feels': 1,
          'like': 1,
          'actors': 1,
          'adlibbing': 1,
          'none': 1,
          'hope': 1,
          'directors': 1,
          'next': 1,
          'substance': 1,
          'credible': 1,
          'acting': 1,
          'nshopping': 1,
          'runs': 1,
          '1': 1,
          '30': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'profanity': 1,
          'would': 1,
          'fine': 1,
          'older': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'one': 6,
          'movie': 6,
          'nit': 4,
          'drab': 4,
          'known': 4,
          'lawrence': 3,
          'kasdan': 3,
          'right': 3,
          'lost': 3,
          'ark': 3,
          'back': 3,
          '810': 3,
          'nand': 3,
          'nhe': 3,
          'problems': 3,
          'patients': 3,
          'drama': 3,
          'boring': 3,
          'extremely': 3,
          'good': 3,
          'actor': 3,
          'part': 3,
          'actually': 3,
          'different': 3,
          'also': 3,
          'played': 3,
          'writerdirector': 2,
          'thats': 2,
          'cowrote': 2,
          'raiders': 2,
          '910': 2,
          '8': 2,
          '510': 2,
          'nnow': 2,
          'looks': 2,
          'guess': 2,
          'past': 2,
          'away': 2,
          'small': 2,
          'psychologist': 2,
          'comedy': 2,
          'ni': 2,
          'say': 2,
          'would': 2,
          'think': 2,
          'us': 2,
          'witty': 2,
          'nthis': 2,
          'sucks': 2,
          'uninteresting': 2,
          'left': 2,
          'best': 2,
          'trying': 2,
          'name': 2,
          'made': 2,
          'day': 2,
          'four': 2,
          'shallow': 2,
          'help': 2,
          'loren': 2,
          'dean': 2,
          'like': 2,
          'even': 2,
          'dry': 2,
          'watching': 2,
          'least': 2,
          'real': 2,
          'fans': 2,
          'see': 2,
          'person': 2,
          'scene': 2,
          'lee': 2,
          'skateboarding': 2,
          'company': 2,
          'actress': 2,
          'plays': 2,
          'born': 2,
          'hand': 1,
          'penning': 1,
          'biggest': 1,
          'successes': 1,
          '1980s': 1,
          'nyes': 1,
          'empire': 1,
          'strikes': 1,
          'return': 1,
          'jedi': 1,
          'though': 1,
          'decided': 1,
          'test': 1,
          'skills': 1,
          'mediocre': 1,
          'screenwriting': 1,
          'bland': 1,
          'directing': 1,
          'succeeds': 1,
          'nplot': 1,
          'man': 1,
          'shady': 1,
          'regrettable': 1,
          'decides': 1,
          'run': 1,
          'american': 1,
          'town': 1,
          'pretends': 1,
          'licensed': 1,
          'openarmed': 1,
          'swarm': 1,
          'people': 1,
          'isnt': 1,
          'long': 1,
          'befriends': 1,
          'smalltown': 1,
          'billionaire': 1,
          'folks': 1,
          'become': 1,
          'suspicious': 1,
          'falls': 1,
          'ncritique': 1,
          'front': 1,
          'trailer': 1,
          'secures': 1,
          'base': 1,
          'humor': 1,
          'unfortunately': 1,
          'serious': 1,
          'seriously': 1,
          'flawed': 1,
          'ask': 1,
          'digress': 1,
          'offers': 1,
          'couple': 1,
          'quips': 1,
          'keep': 1,
          'awake': 1,
          'overall': 1,
          'sits': 1,
          'review': 1,
          'slow': 1,
          'starred': 1,
          'protagonist': 1,
          'unbelievable': 1,
          'included': 1,
          'dull': 1,
          'whose': 1,
          'indifferent': 1,
          'pissed': 1,
          'worst': 1,
          'certified': 1,
          'many': 1,
          'predictable': 1,
          'ending': 1,
          'idea': 1,
          'accomplish': 1,
          'picture': 1,
          'whatever': 1,
          'nmissed': 1,
          'nanyone': 1,
          'without': 1,
          'could': 1,
          'never': 1,
          'generic': 1,
          'puffpiece': 1,
          'might': 1,
          'described': 1,
          'predictably': 1,
          'digestible': 1,
          'nits': 1,
          'wonder': 1,
          'studio': 1,
          'sell': 1,
          'bored': 1,
          'cohort': 1,
          'sleep': 1,
          'nive': 1,
          'given': 1,
          'points': 1,
          'yet': 1,
          'distinguishable': 1,
          'marks': 1,
          'nfirst': 1,
          'couldnt': 1,
          'much': 1,
          'lead': 1,
          'looked': 1,
          'young': 1,
          'charles': 1,
          'grodin': 1,
          'acted': 1,
          'save': 1,
          'sardonic': 1,
          'wit': 1,
          'kept': 1,
          'interested': 1,
          'nnumber': 1,
          'two': 1,
          'really': 1,
          'seemed': 1,
          'geared': 1,
          'way': 1,
          'well': 1,
          'quite': 1,
          'titshots': 1,
          'high': 1,
          'school': 1,
          'god': 1,
          'cant': 1,
          'get': 1,
          'enough': 1,
          'aimless': 1,
          'three': 1,
          'surprised': 1,
          'ted': 1,
          'dansons': 1,
          'cameo': 1,
          'yes': 1,
          'always': 1,
          'sam': 1,
          'malone': 1,
          'na': 1,
          'asshole': 1,
          'nonetheless': 1,
          'nif': 1,
          'ever': 1,
          'rent': 1,
          'promise': 1,
          'wont': 1,
          'throw': 1,
          'hardearned': 1,
          'money': 1,
          'theaters': 1,
          'nwait': 1,
          'pretty': 1,
          'nother': 1,
          'neven': 1,
          'jason': 1,
          'personal': 1,
          'favorite': 1,
          'mine': 1,
          'lame': 1,
          'dialogue': 1,
          'phoniest': 1,
          'romances': 1,
          'hit': 1,
          'big': 1,
          'screen': 1,
          'nwell': 1,
          'finally': 1,
          'came': 1,
          'noh': 1,
          'yeah': 1,
          'fourth': 1,
          'point': 1,
          'rating': 1,
          'nanyway': 1,
          'enjoy': 1,
          'babble': 1,
          'nfilms': 1,
          'bag': 1,
          'notherwise': 1,
          'skip': 1,
          'analyze': 1,
          'ntheres': 1,
          'great': 1,
          'shrink': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'threes': 1,
          'alert': 1,
          'nterri': 1,
          'tv': 1,
          'show': 1,
          'priscilla': 1,
          'barnes': 1,
          'pivotal': 1,
          'landlady': 1,
          'nthe': 1,
          'fantasy': 1,
          'sequence': 1,
          'feature': 1,
          'cleavage': 1,
          'stay': 1,
          'tuned': 1,
          'kids': 1,
          'nalso': 1,
          'note': 1,
          'named': 1,
          'penthouse': 1,
          'pet': 1,
          'month': 1,
          'march': 1,
          '1976': 1,
          'nshe': 1,
          'joann': 1,
          'nshes': 1,
          'originally': 1,
          'jersey': 1,
          'nwho': 1,
          'hell': 1,
          'dude': 1,
          'mumford': 1,
          'nyou': 1,
          'got': 1,
          'know': 1,
          'las': 1,
          'vegas': 1,
          '1969': 1,
          'character': 1,
          'billy': 1,
          'bathgate': 1,
          '1991': 1,
          'njason': 1,
          'state': 1,
          'california': 1,
          'year': 1,
          '1971': 1,
          'professional': 1,
          'skateboarder': 1,
          'acting': 1,
          'career': 1,
          'took': 1,
          'mallrats': 1,
          '610': 1,
          'owns': 1,
          'called': 1,
          'stereo': 1,
          'manufacturing': 1,
          'corp': 1,
          'hes': 1,
          'every': 1,
          'kevin': 1,
          'smith': 1,
          'except': 1,
          'clerks': 1,
          'nlisten': 1,
          'closely': 1,
          'hear': 1,
          'pharmacist': 1,
          'ballooning': 1,
          'formerly': 1,
          'pruit': 1,
          'taylor': 1,
          'vince': 1,
          'make': 1,
          'reference': 1,
          'obviously': 1,
          'injoke': 1,
          'considering': 1,
          'nkasdan': 1,
          'dr': 1,
          'green': 1,
          '1997s': 1,
          'gets': 1,
          'nted': 1,
          'danson': 1,
          'role': 1,
          'lawyer': 1,
          'peter': 1,
          'lowenstein': 1,
          'kasdans': 1,
          '1981': 1,
          'directorial': 1,
          'debut': 1,
          'body': 1,
          'heat': 1,
          'starring': 1,
          'sexy': 1,
          'kathleen': 1,
          'turner': 1,
          'william': 1,
          'hurt': 1,
          'nneg': 1}),
 Counter({'porter': 5,
          'nthe': 4,
          'n': 3,
          'movie': 3,
          'payback': 2,
          'dead': 2,
          'porters': 2,
          'back': 2,
          'without': 2,
          '000': 2,
          'like': 2,
          'millionaire': 2,
          'film': 2,
          'mel': 2,
          'us': 2,
          'npayback': 2,
          'nanonymous': 2,
          'villain': 2,
          'nmel': 2,
          'bello': 2,
          'character': 2,
          'look': 2,
          'conventions': 2,
          'etc': 2,
          'ladies': 1,
          'gentlemen': 1,
          'expensive': 1,
          'episode': 1,
          'equalizer': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'ngibson': 1,
          'plays': 1,
          'burglar': 1,
          'shot': 1,
          'left': 1,
          'wife': 1,
          'deborah': 1,
          'kara': 1,
          'unger': 1,
          'alltoobrief': 1,
          'cameo': 1,
          'partner': 1,
          'henry': 1,
          'successful': 1,
          'heist': 1,
          'nas': 1,
          'morgue': 1,
          'attendant': 1,
          'sets': 1,
          'removing': 1,
          'bullets': 1,
          'miraculously': 1,
          'springs': 1,
          'life': 1,
          'nhe': 1,
          'makes': 1,
          'mission': 1,
          'walking': 1,
          'man': 1,
          'conscience': 1,
          'exact': 1,
          'revenge': 1,
          'screwed': 1,
          'reclaim': 1,
          'share': 1,
          'loot': 1,
          'running': 1,
          'gag': 1,
          'demands': 1,
          '70': 1,
          'everybody': 1,
          'mishears': 1,
          'assumes': 1,
          'hes': 1,
          'entire': 1,
          '130': 1,
          'haul': 1,
          'nin': 1,
          'travels': 1,
          'travails': 1,
          'encounters': 1,
          'several': 1,
          'onenamed': 1,
          'villainous': 1,
          'cretins': 1,
          'fairfax': 1,
          'james': 1,
          'coburn': 1,
          'whitehaired': 1,
          'thief': 1,
          'carter': 1,
          'kristofferson': 1,
          'brownhaired': 1,
          'thiefthe': 1,
          'kingpin': 1,
          'obligatory': 1,
          'operation': 1,
          'nhelgelands': 1,
          'recut': 1,
          'producer': 1,
          'devoid': 1,
          'imperative': 1,
          'dime': 1,
          'store': 1,
          'charm': 1,
          'novelty': 1,
          'seeing': 1,
          'big': 1,
          'star': 1,
          'mercilessly': 1,
          'dispatching': 1,
          'criminals': 1,
          'wears': 1,
          'quickly': 1,
          'bad': 1,
          'guys': 1,
          'differentiated': 1,
          'coifs': 1,
          'b': 1,
          'mels': 1,
          'schtick': 1,
          'doesnt': 1,
          'evolve': 1,
          'act': 1,
          'onehes': 1,
          'terminator': 1,
          'stranded': 1,
          'plot': 1,
          'scifi': 1,
          'hook': 1,
          'keep': 1,
          'interested': 1,
          'initial': 1,
          'sadistic': 1,
          'thrill': 1,
          'gone': 1,
          'called': 1,
          'playback': 1,
          '102minute': 1,
          'loop': 1,
          'short': 1,
          'sequence': 1,
          'want': 1,
          'money': 1,
          'shoots': 1,
          'gun': 1,
          'dies': 1,
          'meets': 1,
          'hooker': 1,
          'friend': 1,
          'nsecond': 1,
          'verse': 1,
          'first': 1,
          'nits': 1,
          'singlemindedness': 1,
          'robs': 1,
          'snap': 1,
          'crackle': 1,
          'pop': 1,
          'already': 1,
          'died': 1,
          'nothing': 1,
          'lose': 1,
          'much': 1,
          'gain': 1,
          'lacks': 1,
          'danger': 1,
          'thing': 1,
          'jeopardy': 1,
          'putting': 1,
          'audience': 1,
          'sleep': 1,
          'gritty': 1,
          'metallic': 1,
          'also': 1,
          'becomes': 1,
          'monotonous': 1,
          'cinematography': 1,
          'would': 1,
          'appropriate': 1,
          'one': 1,
          'bleak': 1,
          'urban': 1,
          'psychodramas': 1,
          'come': 1,
          'england': 1,
          'every': 1,
          'couple': 1,
          'months': 1,
          'director': 1,
          'photography': 1,
          'ericson': 1,
          'core': 1,
          'fired': 1,
          'early': 1,
          'lighting': 1,
          'vavavavoom': 1,
          'permanant': 1,
          'midnight': 1,
          'potato': 1,
          'gregg': 1,
          'allman': 1,
          'wig': 1,
          'nto': 1,
          'analyze': 1,
          'mediocrity': 1,
          'grant': 1,
          'far': 1,
          'attention': 1,
          'deserves': 1,
          'nperhaps': 1,
          'someone': 1,
          'experienced': 1,
          'antagonistsasprotagonists': 1,
          'tarantinolook': 1,
          'similar': 1,
          'heroless': 1,
          'botchedrobbery': 1,
          'tale': 1,
          'reservoir': 1,
          'dogscould': 1,
          'pulled': 1,
          'material': 1,
          'loose': 1,
          'remake': 1,
          'john': 1,
          'boormans': 1,
          'point': 1,
          'blank': 1,
          'presents': 1,
          'pulp': 1,
          'fiction': 1,
          'women': 1,
          'femme': 1,
          'fatales': 1,
          'even': 1,
          'cops': 1,
          'crosses': 1,
          'cheesy': 1,
          'tv': 1,
          'crime': 1,
          'melodramas': 1,
          'death': 1,
          'never': 1,
          'cards': 1,
          'main': 1,
          'transcends': 1,
          'neither': 1,
          'nneg': 1}),
 Counter({'one': 10,
          'good': 7,
          'nthe': 6,
          'bad': 5,
          'movie': 4,
          'guys': 4,
          'fight': 4,
          'really': 4,
          'mortal': 3,
          'film': 3,
          'evil': 3,
          'rayden': 3,
          'nhow': 3,
          'get': 3,
          'fast': 3,
          'jax': 3,
          'medical': 3,
          'ntheres': 3,
          'toward': 3,
          'shows': 2,
          'movies': 2,
          'guess': 2,
          'video': 2,
          'nwhy': 2,
          'kombat': 2,
          'annihilation': 2,
          'fighting': 2,
          'effects': 2,
          'acting': 2,
          'plot': 2,
          'portal': 2,
          'outworld': 2,
          'allowing': 2,
          'kahn': 2,
          'thompson': 2,
          'human': 2,
          'liu': 2,
          'kang': 2,
          'shou': 2,
          'must': 2,
          'take': 2,
          'catch': 2,
          'katana': 2,
          'whos': 2,
          'side': 2,
          'love': 2,
          'another': 2,
          'knew': 2,
          'would': 2,
          'keep': 2,
          'since': 2,
          'seriously': 2,
          'nyou': 2,
          'metal': 2,
          'nas': 2,
          'says': 2,
          'moving': 2,
          'sonya': 2,
          'williams': 2,
          'tvs': 2,
          'research': 2,
          'facility': 2,
          'oahu': 2,
          'sign': 2,
          'ni': 2,
          'first': 2,
          'ndo': 2,
          'land': 2,
          'nno': 2,
          'apparently': 2,
          'could': 2,
          'point': 2,
          'scenes': 2,
          'pretty': 2,
          'although': 2,
          'tell': 2,
          'mud': 2,
          'thing': 2,
          'youve': 1,
          'run': 1,
          'old': 1,
          'tv': 1,
          'turn': 1,
          'try': 1,
          'games': 1,
          'go': 1,
          'see': 1,
          'quest': 1,
          'seek': 1,
          'answer': 1,
          'query': 1,
          'may': 1,
          'prove': 1,
          'better': 1,
          'saw': 1,
          'nthis': 1,
          'bunch': 1,
          'yelling': 1,
          'special': 1,
          'set': 1,
          'oppressive': 1,
          'techno': 1,
          'music': 1,
          'soundtrack': 1,
          'fairly': 1,
          'simple': 1,
          'opened': 1,
          'world': 1,
          'forces': 1,
          'commanded': 1,
          'shao': 1,
          'brian': 1,
          'wreak': 1,
          'havoc': 1,
          'attempt': 1,
          'destroy': 1,
          'humanity': 1,
          'led': 1,
          'sorcerer': 1,
          'james': 1,
          'remar': 1,
          'robin': 1,
          'fate': 1,
          'worlds': 1,
          'determined': 1,
          'nheres': 1,
          'reunite': 1,
          'princess': 1,
          'talia': 1,
          'soto': 1,
          'resurrected': 1,
          'mother': 1,
          'queen': 1,
          'sindel': 1,
          'musetta': 1,
          'vander': 1,
          'close': 1,
          'ensure': 1,
          'humanitys': 1,
          'safety': 1,
          'generation': 1,
          'supposed': 1,
          'work': 1,
          'still': 1,
          'idea': 1,
          'liked': 1,
          'katanas': 1,
          'line': 1,
          'us': 1,
          'together': 1,
          'captain': 1,
          'tennille': 1,
          'song': 1,
          'ran': 1,
          'head': 1,
          'got': 1,
          'laugh': 1,
          'nthere': 1,
          'stupid': 1,
          'things': 1,
          'ntake': 1,
          'example': 1,
          'transportation': 1,
          'system': 1,
          'utilizes': 1,
          'inner': 1,
          'winds': 1,
          'generated': 1,
          'earths': 1,
          'magma': 1,
          'flows': 1,
          'ball': 1,
          'transports': 1,
          'underground': 1,
          'tunnels': 1,
          'nwhat': 1,
          'nlater': 1,
          'blade': 1,
          'sandra': 1,
          'hess': 1,
          'goes': 1,
          'find': 1,
          'lynn': 1,
          'red': 1,
          'otherwise': 1,
          'known': 1,
          'saber': 1,
          'american': 1,
          'gladiators': 1,
          'island': 1,
          'know': 1,
          'went': 1,
          'facilitys': 1,
          'perimeter': 1,
          'fence': 1,
          'reads': 1,
          'hawaii': 1,
          'nremember': 1,
          'caption': 1,
          'actual': 1,
          'location': 1,
          'researchers': 1,
          'forgetting': 1,
          'lot': 1,
          'major': 1,
          'flipping': 1,
          'action': 1,
          'encounter': 1,
          'swiftly': 1,
          'arching': 1,
          'though': 1,
          'air': 1,
          'immediately': 1,
          'ndoes': 1,
          'guard': 1,
          'collide': 1,
          'midair': 1,
          'flip': 1,
          'talk': 1,
          'without': 1,
          'yell': 1,
          'far': 1,
          'away': 1,
          'need': 1,
          'balls': 1,
          'travel': 1,
          'neveryone': 1,
          'flipped': 1,
          'b': 1,
          'admit': 1,
          'heavily': 1,
          'enhanced': 1,
          'digital': 1,
          'fly': 1,
          'wires': 1,
          'characters': 1,
          'surpass': 1,
          'limits': 1,
          'body': 1,
          'laws': 1,
          'physics': 1,
          'thrills': 1,
          'derived': 1,
          'audience': 1,
          'responses': 1,
          'visceral': 1,
          'level': 1,
          'someone': 1,
          'gets': 1,
          'trashed': 1,
          'badly': 1,
          'n': 1,
          'ouch': 1,
          'common': 1,
          'expletive': 1,
          'heard': 1,
          'screened': 1,
          'filmmakers': 1,
          'advance': 1,
          'fights': 1,
          'main': 1,
          'draw': 1,
          'dialog': 1,
          'next': 1,
          'nit': 1,
          'seems': 1,
          'thats': 1,
          'nmaybe': 1,
          'mentioned': 1,
          'solid': 1,
          'performance': 1,
          'funny': 1,
          'nafter': 1,
          'degenerates': 1,
          'female': 1,
          'wrestling': 1,
          'look': 1,
          'nremar': 1,
          'plays': 1,
          'inconsistency': 1,
          'makes': 1,
          'hard': 1,
          'character': 1,
          'relatively': 1,
          'emotionless': 1,
          'nbrian': 1,
          'played': 1,
          'even': 1,
          'alien': 1,
          'xfiles': 1,
          'always': 1,
          'musclebound': 1,
          'behemoth': 1,
          'average': 1,
          'demigod': 1,
          'scripts': 1,
          'fault': 1,
          'doesnt': 1,
          'anything': 1,
          'original': 1,
          'say': 1,
          'impressive': 1,
          'swear': 1,
          'word': 1,
          'whole': 1,
          'hour': 1,
          'half': 1,
          'nanother': 1,
          'noted': 1,
          'punching': 1,
          'kicking': 1,
          'blood': 1,
          'appears': 1,
          'scene': 1,
          'nall': 1,
          'loud': 1,
          'violent': 1,
          'shallow': 1,
          'marketed': 1,
          'kids': 1,
          'nhey': 1,
          'like': 1,
          'game': 1,
          'nneg': 1}),
 Counter({'story': 4,
          'roberts': 3,
          'frears': 3,
          'gets': 3,
          'nthe': 3,
          'n': 3,
          'movie': 2,
          'film': 2,
          'julia': 2,
          'mr': 2,
          'ms': 2,
          'nher': 2,
          'also': 2,
          'roles': 2,
          'close': 2,
          'reilly': 2,
          'several': 2,
          'swooping': 1,
          'shots': 1,
          'across': 1,
          'darkened': 1,
          'rooftops': 1,
          'suggest': 1,
          'tim': 1,
          'burton': 1,
          'alas': 1,
          'caped': 1,
          'crusader': 1,
          'descends': 1,
          'save': 1,
          'ninstead': 1,
          'skeletal': 1,
          'housemaid': 1,
          'must': 1,
          'bear': 1,
          'witness': 1,
          'unfortunate': 1,
          'retelling': 1,
          'dr': 1,
          'njekyll': 1,
          'hyde': 1,
          'nfor': 1,
          'fleeting': 1,
          'maddening': 1,
          'moments': 1,
          'director': 1,
          'stephen': 1,
          'dangerous': 1,
          'liaisons': 1,
          'everything': 1,
          'right': 1,
          'tone': 1,
          'colors': 1,
          'characters': 1,
          'ingredients': 1,
          'make': 1,
          'mostpowerful': 1,
          'potion': 1,
          'valerie': 1,
          'martins': 1,
          'bestselling': 1,
          'novel': 1,
          'nyet': 1,
          'fizzles': 1,
          'quickly': 1,
          'volatile': 1,
          'mixture': 1,
          'losing': 1,
          'potency': 1,
          'first': 1,
          'scene': 1,
          'ncasting': 1,
          'large': 1,
          'part': 1,
          'problem': 1,
          'collap': 1,
          'ses': 1,
          'around': 1,
          'doesnt': 1,
          'range': 1,
          'kind': 1,
          'drama': 1,
          'accent': 1,
          'comes': 1,
          'goes': 1,
          'though': 1,
          'nowhere': 1,
          'near': 1,
          'glaring': 1,
          'total': 1,
          'lack': 1,
          'chemistry': 1,
          'costar': 1,
          'john': 1,
          'malkovich': 1,
          'looks': 1,
          'incredible': 1,
          'fact': 1,
          'thats': 1,
          'missed': 1,
          'everyone': 1,
          'british': 1,
          'supporting': 1,
          'cast': 1,
          'including': 1,
          'michael': 1,
          'gambon': 1,
          'george': 1,
          'cole': 1,
          'gives': 1,
          'credibility': 1,
          'smaller': 1,
          'parts': 1,
          'nglenn': 1,
          'appears': 1,
          'madam': 1,
          'good': 1,
          'doctor': 1,
          'calls': 1,
          'upon': 1,
          'performance': 1,
          'intentional': 1,
          'camp': 1,
          'ever': 1,
          'bonus': 1,
          'offers': 1,
          'likely': 1,
          'peek': 1,
          'upcoming': 1,
          'cruella': 1,
          'de': 1,
          'ville': 1,
          'liveaction': 1,
          '101': 1,
          'dalmantions': 1,
          'biggest': 1,
          'botch': 1,
          'mary': 1,
          'suspense': 1,
          'none': 1,
          'nno': 1,
          'terror': 1,
          'tension': 1,
          'nothing': 1,
          'nwithout': 1,
          'weight': 1,
          'wit': 1,
          'wonder': 1,
          'propel': 1,
          'viewer': 1,
          'left': 1,
          'little': 1,
          'pay': 1,
          'attention': 1,
          'period': 1,
          'detail': 1,
          'buckets': 1,
          'blood': 1,
          'stuart': 1,
          'craigs': 1,
          'fabulously': 1,
          'dreary': 1,
          'production': 1,
          'design': 1,
          'nall': 1,
          'old': 1,
          'hour': 1,
          'point': 1,
          'recommend': 1,
          'leaving': 1,
          'pacing': 1,
          'secondhalf': 1,
          'especially': 1,
          'abominable': 1,
          'nif': 1,
          'stick': 1,
          'sole': 1,
          'reward': 1,
          'halfhokey': 1,
          'special': 1,
          'effect': 1,
          'depicting': 1,
          'infamous': 1,
          'transformation': 1,
          'nmr': 1,
          'reportedly': 1,
          'recut': 1,
          'times': 1,
          'missing': 1,
          'release': 1,
          'dates': 1,
          'process': 1,
          'obviously': 1,
          'one': 1,
          'advised': 1,
          'throw': 1,
          'hands': 1,
          'turn': 1,
          'whole': 1,
          'damned': 1,
          'thing': 1,
          'mel': 1,
          'brooks': 1,
          'nblucher': 1,
          'nmary': 1,
          'second': 1,
          'robert': 1,
          'louis': 1,
          'stevenson': 1,
          'month': 1,
          'muppet': 1,
          'treasure': 1,
          'island': 1,
          'nperhaps': 1,
          'consult': 1,
          'brian': 1,
          'henson': 1,
          'future': 1,
          'projects': 1,
          'ni': 1,
          'daresay': 1,
          'even': 1,
          'piggy': 1,
          'better': 1,
          'choice': 1,
          'certain': 1,
          'nand': 1,
          'great': 1,
          'chop': 1,
          'nneg': 1}),
 Counter({'troopers': 6,
          'starship': 5,
          'nthe': 5,
          'made': 4,
          'verhoeven': 4,
          'guilt': 3,
          'film': 3,
          'even': 3,
          'like': 3,
          'felt': 2,
          'basic': 2,
          'instinct': 2,
          'last': 2,
          'years': 2,
          'nbut': 2,
          'know': 2,
          'terrible': 2,
          'make': 2,
          'see': 2,
          'year': 2,
          'white': 2,
          'movie': 2,
          'military': 2,
          'planet': 2,
          'story': 2,
          'future': 2,
          'funny': 2,
          'least': 2,
          'sex': 2,
          'sickening': 2,
          'van': 2,
          'dien': 2,
          'im': 2,
          'ten': 2,
          'something': 1,
          'watching': 1,
          'ninth': 1,
          'time': 1,
          'penultimate': 1,
          'thriller': 1,
          'teenage': 1,
          'worth': 1,
          'living': 1,
          'well': 1,
          'director': 1,
          'incapable': 1,
          'feeling': 1,
          'nverhoeven': 1,
          'went': 1,
          'offensive': 1,
          'showgirls': 1,
          'november': 1,
          'seventh': 1,
          '1997': 1,
          'unleashed': 1,
          'innocent': 1,
          'moviegoers': 1,
          'control': 1,
          'urge': 1,
          'giant': 1,
          'bug': 1,
          'movies': 1,
          'pic': 1,
          'begins': 1,
          'unintentional': 1,
          'laugh': 1,
          'na': 1,
          'simple': 1,
          'black': 1,
          'title': 1,
          'card': 1,
          'reads': 1,
          'friends': 1,
          'speculated': 1,
          'night': 1,
          'prints': 1,
          'shipped': 1,
          'realized': 1,
          'forgot': 1,
          'credits': 1,
          'nis': 1,
          'hundred': 1,
          'million': 1,
          'dollar': 1,
          'open': 1,
          'nwere': 1,
          'rest': 1,
          'subdued': 1,
          'nstarship': 1,
          'group': 1,
          'blondhaired': 1,
          'himbos': 1,
          'bimbos': 1,
          'spanish': 1,
          'names': 1,
          'nthey': 1,
          'graduate': 1,
          'high': 1,
          'school': 1,
          'join': 1,
          'rather': 1,
          'curiously': 1,
          'decide': 1,
          'travel': 1,
          'alien': 1,
          'destroy': 1,
          'lifeforms': 1,
          'incomprehensible': 1,
          'told': 1,
          'bombastically': 1,
          'akin': 1,
          '129': 1,
          'minutes': 1,
          'someone': 1,
          'screaming': 1,
          'punishments': 1,
          'foreign': 1,
          'tongue': 1,
          'n': 1,
          'aside': 1,
          'club': 1,
          'lovers': 1,
          'happy': 1,
          'dance': 1,
          'music': 1,
          'hasnt': 1,
          'changed': 1,
          'none': 1,
          'plus': 1,
          'contains': 1,
          'sequences': 1,
          'specifically': 1,
          'newsreels': 1,
          'nhysterically': 1,
          'actually': 1,
          'cynicism': 1,
          'reports': 1,
          'left': 1,
          'curious': 1,
          'whether': 1,
          'pessimistic': 1,
          'storytelling': 1,
          'lacks': 1,
          'focus': 1,
          'say': 1,
          'politics': 1,
          'scary': 1,
          'actions': 1,
          'major': 1,
          'female': 1,
          'characters': 1,
          'dictated': 1,
          'outofcontrol': 1,
          'libidos': 1,
          'ntheres': 1,
          'creepy': 1,
          'scene': 1,
          'lovely': 1,
          'dina': 1,
          'meyer': 1,
          'makes': 1,
          'nude': 1,
          'half': 1,
          'face': 1,
          'covered': 1,
          'opaque': 1,
          'sweater': 1,
          'way': 1,
          'seems': 1,
          'ni': 1,
          'use': 1,
          'term': 1,
          'appealing': 1,
          'actor': 1,
          'ive': 1,
          'encountered': 1,
          'big': 1,
          'budget': 1,
          'picture': 1,
          'chiseled': 1,
          'features': 1,
          'machismo': 1,
          'barks': 1,
          'eulogy': 1,
          'funeral': 1,
          'orders': 1,
          'nof': 1,
          'course': 1,
          'verhoevens': 1,
          'probably': 1,
          'one': 1,
          'blame': 1,
          'perhaps': 1,
          'jealous': 1,
          'disgusting': 1,
          'nat': 1,
          'rate': 1,
          'called': 1,
          'shouldnt': 1,
          'nexactly': 1,
          'ago': 1,
          'robocop': 1,
          'nothing': 1,
          'skillfully': 1,
          'oddly': 1,
          'moving': 1,
          'nand': 1,
          'rrated': 1,
          'despite': 1,
          'goofy': 1,
          'premise': 1,
          'nmaybe': 1,
          'asking': 1,
          'much': 1,
          'pgmovie': 1,
          'thenhes': 1,
          'master': 1,
          'insipid': 1,
          'violence': 1,
          'nhowever': 1,
          'old': 1,
          'boys': 1,
          'would': 1,
          'adore': 1,
          'could': 1,
          'nneg': 1}),
 Counter({'guy': 4,
          'girl': 4,
          'gets': 4,
          'jonathan': 4,
          'around': 4,
          'beckinsale': 3,
          'serendipity': 3,
          'film': 3,
          'sara': 3,
          'go': 3,
          'going': 3,
          'number': 3,
          'nboth': 3,
          'whats': 2,
          'new': 2,
          'york': 2,
          'n': 2,
          'john': 2,
          'cusack': 2,
          'kate': 2,
          'eugene': 2,
          'levy': 2,
          'ntheres': 2,
          'romantic': 2,
          'wants': 2,
          'pointless': 2,
          'plot': 2,
          'contrivances': 2,
          'describe': 2,
          'bloomingdales': 2,
          'njonathan': 2,
          'gloves': 2,
          'two': 2,
          'ice': 2,
          'nwhen': 2,
          'name': 2,
          'fate': 2,
          'together': 2,
          'nto': 2,
          'write': 2,
          'bill': 2,
          'book': 2,
          'love': 2,
          'nthe': 2,
          'incredible': 2,
          'movie': 2,
          'happen': 2,
          'meet': 2,
          'nserendipity': 2,
          'favorite': 1,
          'moment': 1,
          'ones': 1,
          'climbing': 1,
          'charts': 1,
          'nstarring': 1,
          'molly': 1,
          'shannon': 1,
          'ndirected': 1,
          'peter': 1,
          'chelsom': 1,
          'nrated': 1,
          'pg13': 1,
          'doubt': 1,
          '95': 1,
          'comedies': 1,
          'follow': 1,
          'distinct': 1,
          'pattern': 1,
          'sees': 1,
          'goes': 1,
          'unreasonable': 1,
          'obstacles': 1,
          'get': 1,
          'nin': 1,
          'rare': 1,
          'cases': 1,
          'genders': 1,
          'flipped': 1,
          'npredictability': 1,
          'given': 1,
          'nrarely': 1,
          'though': 1,
          'comedy': 1,
          'cheap': 1,
          'obvious': 1,
          'uses': 1,
          'theme': 1,
          'excuse': 1,
          'lightweight': 1,
          'doesnt': 1,
          'begin': 1,
          'nthis': 1,
          'like': 1,
          'antigravity': 1,
          'nit': 1,
          'begins': 1,
          'city': 1,
          'product': 1,
          'placement': 1,
          'rivals': 1,
          'cast': 1,
          'aways': 1,
          'fedex': 1,
          'sheer': 1,
          'blatancy': 1,
          'trager': 1,
          'thomas': 1,
          'pair': 1,
          'nafter': 1,
          'perfunctory': 1,
          'motions': 1,
          'keep': 1,
          'cream': 1,
          'followed': 1,
          'skating': 1,
          'falls': 1,
          'hard': 1,
          'charmed': 1,
          'writes': 1,
          'piece': 1,
          'paper': 1,
          'truck': 1,
          'rumbles': 1,
          'blows': 1,
          'hand': 1,
          'nshe': 1,
          'takes': 1,
          'sign': 1,
          'shouldnt': 1,
          'flabbergasted': 1,
          'pacify': 1,
          'comes': 1,
          'idea': 1,
          '5': 1,
          'dollar': 1,
          'promptly': 1,
          'spend': 1,
          'home': 1,
          'inside': 1,
          'time': 1,
          'cholera': 1,
          'sell': 1,
          'used': 1,
          'bookstore': 1,
          'nif': 1,
          'back': 1,
          'mean': 1,
          'meant': 1,
          'nthree': 1,
          'years': 1,
          'later': 1,
          'engaged': 1,
          'interests': 1,
          'realize': 1,
          'arent': 1,
          'content': 1,
          'looking': 1,
          'nwhat': 1,
          'happens': 1,
          'absurd': 1,
          'im': 1,
          'almost': 1,
          'tempted': 1,
          'recommend': 1,
          'sake': 1,
          'seeing': 1,
          'run': 1,
          'circles': 1,
          'set': 1,
          'coincidences': 1,
          'would': 1,
          'werent': 1,
          'ohsocleverly': 1,
          'dismissing': 1,
          'criticism': 1,
          'building': 1,
          'nof': 1,
          'course': 1,
          'since': 1,
          'screenwriter': 1,
          'anything': 1,
          'damn': 1,
          'well': 1,
          'pleases': 1,
          'nim': 1,
          'buying': 1,
          'suspense': 1,
          'know': 1,
          'exactly': 1,
          'insists': 1,
          'drilling': 1,
          'purportedly': 1,
          'adorable': 1,
          'nonstory': 1,
          'heads': 1,
          'ninstead': 1,
          'question': 1,
          'asking': 1,
          'already': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'every': 1,
          'coincidence': 1,
          'telegraphed': 1,
          'mile': 1,
          'away': 1,
          'last': 1,
          'reel': 1,
          'bored': 1,
          'enough': 1,
          'actively': 1,
          'look': 1,
          'signs': 1,
          'something': 1,
          'else': 1,
          'ncusack': 1,
          'fine': 1,
          'least': 1,
          'isnt': 1,
          'saddled': 1,
          'another': 1,
          'lumbering': 1,
          'clunky': 1,
          'screenplay': 1,
          'shes': 1,
          'bad': 1,
          'luck': 1,
          'brokedown': 1,
          'palace': 1,
          'pearl': 1,
          'harbor': 1,
          'resume': 1,
          'inanely': 1,
          'one': 1,
          'also': 1,
          'relieves': 1,
          'tedium': 1,
          'amazing': 1,
          'plays': 1,
          'snarky': 1,
          'salesman': 1,
          'nwhats': 1,
          'interest': 1,
          'watching': 1,
          'spirals': 1,
          'predestined': 1,
          'pun': 1,
          'intended': 1,
          'conclusion': 1,
          'tug': 1,
          'heartstrings': 1,
          'tests': 1,
          'patience': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'angels': 6,
          'movie': 6,
          'angel': 6,
          'seth': 6,
          'film': 6,
          'maggie': 5,
          'feel': 5,
          'plot': 4,
          'love': 4,
          'cant': 4,
          'city': 3,
          'based': 3,
          'ryan': 3,
          'must': 3,
          'make': 3,
          'human': 3,
          'world': 3,
          'ni': 3,
          'come': 2,
          'seen': 2,
          'desire': 2,
          'upon': 2,
          'little': 2,
          'nunfortunately': 2,
          'around': 2,
          'creepy': 2,
          'intensity': 2,
          'cage': 2,
          'angelic': 2,
          'heart': 2,
          'surgeon': 2,
          'meg': 2,
          'much': 2,
          'except': 2,
          'random': 2,
          'become': 2,
          'attempts': 2,
          'philosophical': 2,
          'doesnt': 2,
          'getting': 2,
          'despite': 2,
          'across': 2,
          'lost': 2,
          'beauty': 2,
          'camera': 2,
          'get': 2,
          'audience': 2,
          'like': 2,
          'though': 2,
          'focus': 2,
          'whats': 2,
          'romantic': 2,
          'nits': 2,
          'robbed': 2,
          'could': 2,
          'didnt': 1,
          'expecting': 1,
          'greatness': 1,
          'nive': 1,
          'never': 1,
          'wim': 1,
          'wenders': 1,
          'wings': 1,
          'classic': 1,
          'loosely': 1,
          'nthen': 1,
          'enough': 1,
          'stories': 1,
          'similar': 1,
          'device': 1,
          'mermaid': 1,
          'disney': 1,
          'version': 1,
          'original': 1,
          'folktale': 1,
          'among': 1,
          'high': 1,
          'expectations': 1,
          'possible': 1,
          'power': 1,
          'story': 1,
          'impossible': 1,
          'hold': 1,
          'ended': 1,
          'fulfilling': 1,
          'couldnt': 1,
          'tell': 1,
          'previews': 1,
          'revolves': 1,
          'played': 1,
          'almost': 1,
          'nicolas': 1,
          'midst': 1,
          'duties': 1,
          'falls': 1,
          'named': 1,
          'endearing': 1,
          'performance': 1,
          'since': 1,
          'harry': 1,
          'met': 1,
          'sally': 1,
          'nof': 1,
          'course': 1,
          'prevents': 1,
          'appearing': 1,
          'times': 1,
          'talk': 1,
          'watch': 1,
          'buy': 1,
          'groceries': 1,
          'disappear': 1,
          'blink': 1,
          'eye': 1,
          'ntheir': 1,
          'remain': 1,
          'unrequited': 1,
          'unless': 1,
          'decides': 1,
          'ultimate': 1,
          'sacrifice': 1,
          'nusing': 1,
          'framework': 1,
          'jumpingoff': 1,
          'point': 1,
          'veer': 1,
          'heavy': 1,
          'ruminations': 1,
          'nature': 1,
          'joys': 1,
          'definition': 1,
          'perfection': 1,
          'first': 1,
          'half': 1,
          'succeeds': 1,
          'points': 1,
          'ncage': 1,
          'excellently': 1,
          'plays': 1,
          'eminently': 1,
          'difficult': 1,
          'role': 1,
          'know': 1,
          'feelings': 1,
          'really': 1,
          'express': 1,
          'preventing': 1,
          'character': 1,
          'boring': 1,
          'limited': 1,
          'repertoire': 1,
          'intent': 1,
          'looks': 1,
          'hangdog': 1,
          'expressions': 1,
          'takes': 1,
          'far': 1,
          'sometimes': 1,
          'comes': 1,
          'sensitive': 1,
          'nas': 1,
          'manages': 1,
          'convincing': 1,
          'trouble': 1,
          'coming': 1,
          'terms': 1,
          'patient': 1,
          'operating': 1,
          'table': 1,
          'done': 1,
          'everything': 1,
          'right': 1,
          'nher': 1,
          'unlike': 1,
          'unbearable': 1,
          'cuteness': 1,
          'french': 1,
          'kiss': 1,
          'mature': 1,
          'intelligent': 1,
          'winning': 1,
          'nlikewise': 1,
          'interesting': 1,
          'ideas': 1,
          'float': 1,
          'beginning': 1,
          'nwhen': 1,
          'pans': 1,
          'traffic': 1,
          'jams': 1,
          'libraries': 1,
          'hear': 1,
          'thoughts': 1,
          'people': 1,
          'flash': 1,
          'screen': 1,
          'experiences': 1,
          'beautiful': 1,
          'work': 1,
          'shooting': 1,
          'onto': 1,
          'hectic': 1,
          'los': 1,
          'angeles': 1,
          'improbable': 1,
          'perches': 1,
          'also': 1,
          'gives': 1,
          'us': 1,
          'sense': 1,
          'unique': 1,
          'wonder': 1,
          'begins': 1,
          'lose': 1,
          'way': 1,
          'tightens': 1,
          'grand': 1,
          'perspective': 1,
          'gets': 1,
          'idly': 1,
          'tossed': 1,
          'lines': 1,
          'incredible': 1,
          'eyes': 1,
          'devolves': 1,
          'examination': 1,
          'importantly': 1,
          'smell': 1,
          'hair': 1,
          'touch': 1,
          'taste': 1,
          'pears': 1,
          'eats': 1,
          'nthis': 1,
          'change': 1,
          'capture': 1,
          'seths': 1,
          'intense': 1,
          'longing': 1,
          'conflict': 1,
          'disappears': 1,
          'nif': 1,
          'wants': 1,
          'badly': 1,
          'leap': 1,
          'nafter': 1,
          'great': 1,
          'nsure': 1,
          'sit': 1,
          'marlboro': 1,
          'signs': 1,
          'compared': 1,
          'nand': 1,
          'yearning': 1,
          'established': 1,
          'denouement': 1,
          'occur': 1,
          'downhill': 1,
          'philosophy': 1,
          'becomes': 1,
          'heavyhanded': 1,
          'dialogue': 1,
          'pedestrian': 1,
          'tries': 1,
          'deep': 1,
          'twists': 1,
          'simply': 1,
          'attempt': 1,
          'yank': 1,
          'tears': 1,
          'audiences': 1,
          'hankie': 1,
          'last': 1,
          'thirty': 1,
          'minutes': 1,
          'wrecks': 1,
          'writer': 1,
          'pulling': 1,
          'melodramatic': 1,
          'stops': 1,
          'genuinely': 1,
          'powerful': 1,
          'experience': 1,
          'level': 1,
          'came': 1,
          'feeling': 1,
          'seeing': 1,
          'possibility': 1,
          'becoming': 1,
          'nothing': 1,
          'go': 1,
          'longer': 1,
          'dont': 1,
          'want': 1,
          'ruin': 1,
          'end': 1,
          'revealing': 1,
          'cheap': 1,
          'devices': 1,
          'relies': 1,
          'ncity': 1,
          'paradox': 1,
          'wellacted': 1,
          'particularly': 1,
          'look': 1,
          'dennis': 1,
          'franz': 1,
          'cutting': 1,
          'typecasting': 1,
          'happygolucky': 1,
          'fallen': 1,
          'wellfilmed': 1,
          'wonderful': 1,
          'idea': 1,
          'nall': 1,
          'possibilities': 1,
          'unredeemable': 1,
          'closing': 1,
          'credits': 1,
          'nneg': 1}),
 Counter({'connor': 11,
          'nthe': 8,
          'film': 7,
          'highlander': 6,
          'one': 5,
          'assassins': 5,
          'zeist': 5,
          'like': 5,
          'ni': 5,
          'plot': 4,
          'shield': 4,
          'sent': 4,
          'back': 4,
          'connery': 4,
          'nconnor': 3,
          'find': 3,
          'ramirez': 3,
          'kill': 3,
          'mr': 3,
          'could': 3,
          'see': 3,
          'else': 3,
          'bad': 3,
          'time': 3,
          'first': 3,
          'must': 3,
          'still': 3,
          'believe': 3,
          'laser': 3,
          'killing': 3,
          'seems': 3,
          'best': 3,
          'gone': 2,
          'earth': 2,
          'mccleod': 2,
          'made': 2,
          'man': 2,
          'given': 2,
          'leader': 2,
          'nthey': 2,
          'tried': 2,
          'company': 2,
          'two': 2,
          'katana': 2,
          'becomes': 2,
          'immortal': 2,
          'nhe': 2,
          'return': 2,
          'new': 2,
          'nkatana': 2,
          'never': 2,
          'wish': 2,
          'feel': 2,
          'music': 2,
          'plain': 2,
          'much': 2,
          'needs': 2,
          'characters': 2,
          'love': 2,
          'powers': 2,
          'annoying': 2,
          'know': 2,
          'nwe': 2,
          'nwhy': 2,
          'least': 2,
          'worst': 2,
          'rebellion': 2,
          'crushed': 2,
          'nhas': 2,
          'nmichael': 2,
          'ironside': 2,
          'unconvincing': 2,
          'stupid': 2,
          'nso': 2,
          'nit': 2,
          'queen': 2,
          'whole': 2,
          'summary': 1,
          'year': 1,
          '2024': 1,
          'ozone': 1,
          'layer': 1,
          'long': 1,
          'since': 1,
          'protected': 1,
          'radiation': 1,
          'invented': 1,
          'although': 1,
          'saving': 1,
          'lives': 1,
          'atmosphere': 1,
          'hot': 1,
          'humid': 1,
          'mortal': 1,
          'tired': 1,
          'old': 1,
          'hope': 1,
          'non': 1,
          'returning': 1,
          'opera': 1,
          'night': 1,
          'accosted': 1,
          'terrorist': 1,
          'organisation': 1,
          'runs': 1,
          'unit': 1,
          'covering': 1,
          'attacked': 1,
          'planet': 1,
          'zeitget': 1,
          'fail': 1,
          'chopping': 1,
          'heads': 1,
          'brings': 1,
          'life': 1,
          'glencoe': 1,
          'scotland': 1,
          'nboth': 1,
          'rebel': 1,
          'leaders': 1,
          'punishment': 1,
          'option': 1,
          'last': 1,
          'opts': 1,
          'stay': 1,
          'found': 1,
          'immortality': 1,
          'fight': 1,
          'meanwhile': 1,
          'fearing': 1,
          'would': 1,
          'sets': 1,
          'nif': 1,
          'seen': 1,
          'nbeing': 1,
          'fan': 1,
          'cinema': 1,
          'soon': 1,
          'ii': 1,
          'quickening': 1,
          'quicker': 1,
          'whatever': 1,
          'say': 1,
          'script': 1,
          'etc': 1,
          'sit': 1,
          'bored': 1,
          'nothing': 1,
          'said': 1,
          'short': 1,
          'opinion': 1,
          'twelve': 1,
          'minutes': 1,
          'screen': 1,
          'worth': 1,
          'watching': 1,
          'sounds': 1,
          'little': 1,
          'ridiculous': 1,
          'willing': 1,
          'give': 1,
          'chance': 1,
          'nmaybe': 1,
          'pull': 1,
          'ninstead': 1,
          'completely': 1,
          'changed': 1,
          'nits': 1,
          'different': 1,
          'people': 1,
          'names': 1,
          'nwitness': 1,
          'jumping': 1,
          'bed': 1,
          'resistance': 1,
          'attitude': 1,
          'wants': 1,
          'live': 1,
          'forever': 1,
          'die': 1,
          'subplot': 1,
          'footage': 1,
          'cut': 1,
          'seemed': 1,
          'aware': 1,
          'mentioned': 1,
          'nputting': 1,
          'heroes': 1,
          'deadly': 1,
          'situations': 1,
          'walk': 1,
          'away': 1,
          'power': 1,
          'want': 1,
          'connors': 1,
          'coat': 1,
          'flame': 1,
          'proof': 1,
          'enough': 1,
          'told': 1,
          'advanced': 1,
          'aliens': 1,
          'use': 1,
          'swords': 1,
          'dynamite': 1,
          'saws': 1,
          'bullets': 1,
          'followed': 1,
          'quick': 1,
          'chop': 1,
          'neck': 1,
          'head': 1,
          'come': 1,
          'immobilise': 1,
          'opponent': 1,
          'rifles': 1,
          'nto': 1,
          'fair': 1,
          'assassin': 1,
          'worlds': 1,
          'shot': 1,
          'nmeanwhile': 1,
          'develops': 1,
          'lukeskywalkerlike': 1,
          'beam': 1,
          'deflection': 1,
          'nas': 1,
          'guys': 1,
          'easier': 1,
          'grape': 1,
          'rest': 1,
          'depends': 1,
          'obsessed': 1,
          'case': 1,
          'returns': 1,
          'ntwo': 1,
          'presumably': 1,
          'meant': 1,
          'good': 1,
          'aged': 1,
          'kills': 1,
          'problems': 1,
          'nno': 1,
          'supposedly': 1,
          'powerful': 1,
          'goes': 1,
          'better': 1,
          'easily': 1,
          'totally': 1,
          'bring': 1,
          'kurgan': 1,
          'cartoon': 1,
          'character': 1,
          'really': 1,
          'isnt': 1,
          'evil': 1,
          'violent': 1,
          'hollywood': 1,
          'trick': 1,
          'chief': 1,
          'nasty': 1,
          'threatening': 1,
          'child': 1,
          'lots': 1,
          'innocents': 1,
          'nyet': 1,
          'threat': 1,
          'perhaps': 1,
          'threaten': 1,
          'maybe': 1,
          'wouldnt': 1,
          'amiss': 1,
          'larry': 1,
          'curly': 1,
          'mo': 1,
          'atrocious': 1,
          'intrusive': 1,
          'nbring': 1,
          'nthere': 1,
          'audible': 1,
          'sigh': 1,
          'relief': 1,
          'nwhen': 1,
          'played': 1,
          'track': 1,
          'juke': 1,
          'box': 1,
          'corrected': 1,
          'american': 1,
          'release': 1,
          'acting': 1,
          'flat': 1,
          'except': 1,
          'nlambert': 1,
          'uninteresting': 1,
          'delivered': 1,
          'around': 1,
          'sorry': 1,
          'michael': 1,
          'usually': 1,
          'everyone': 1,
          'incredibly': 1,
          'forgetable': 1,
          '210': 1,
          'nvisually': 1,
          'interesting': 1,
          'times': 1,
          'blade': 1,
          'runner': 1,
          'special': 1,
          'effects': 1,
          'quite': 1,
          'stunning': 1,
          'nadd': 1,
          'irrepressible': 1,
          'sean': 1,
          'smiles': 1,
          'throughout': 1,
          'smirking': 1,
          'nhis': 1,
          'lines': 1,
          'delivery': 1,
          'might': 1,
          'make': 1,
          'worthwhile': 1,
          'obvious': 1,
          'take': 1,
          'thing': 1,
          'seriously': 1,
          'hey': 1,
          'id': 1,
          'done': 1,
          '12': 1,
          'million': 1,
          'noh': 1,
          'agree': 1,
          'previous': 1,
          'reviewer': 1,
          'look': 1,
          'sharon': 1,
          'stone': 1,
          'nincidentally': 1,
          'line': 1,
          'producer': 1,
          'credited': 1,
          'hear': 1,
          'rumours': 1,
          'iii': 1,
          'wizard': 1,
          'nneg': 1}),
 Counter({'nthe': 12,
          'film': 8,
          'played': 7,
          'party': 7,
          'subplot': 7,
          'movie': 7,
          'nthis': 6,
          'good': 6,
          'performance': 5,
          'two': 4,
          'affleck': 4,
          'girls': 4,
          'doesnt': 4,
          'trying': 3,
          'get': 3,
          'characters': 3,
          'kevin': 3,
          'extremely': 3,
          'like': 3,
          'nshe': 3,
          'plays': 3,
          'lucy': 3,
          'acting': 3,
          'ricci': 3,
          'going': 3,
          'one': 3,
          'funny': 3,
          'could': 3,
          '200': 2,
          'cigarettes': 2,
          'new': 2,
          'years': 2,
          '1981': 2,
          'plimpton': 2,
          'huge': 2,
          'things': 2,
          'plot': 2,
          'meet': 2,
          'many': 2,
          'subplots': 2,
          'people': 2,
          'courtney': 2,
          'love': 2,
          'paul': 2,
          'relationship': 2,
          'boring': 2,
          'quite': 2,
          'garofalo': 2,
          'another': 2,
          'nthere': 2,
          'point': 2,
          'even': 2,
          'runs': 2,
          'bartender': 2,
          'ben': 2,
          'parker': 2,
          'due': 2,
          'terrible': 2,
          'actor': 2,
          'much': 2,
          'time': 2,
          'reason': 2,
          'bad': 2,
          'gaby': 2,
          'hoffman': 2,
          'nthey': 2,
          'night': 2,
          'alright': 2,
          'annoying': 2,
          'okay': 2,
          'mohr': 2,
          'care': 2,
          'parts': 2,
          'entire': 2,
          'hudsons': 2,
          'wasnt': 2,
          'performances': 2,
          'christina': 2,
          'soundtrack': 2,
          'original': 2,
          'feel': 2,
          '1980s': 2,
          'nis': 2,
          'takes': 1,
          'place': 1,
          'eve': 1,
          'nmonica': 1,
          'martha': 1,
          'neveryone': 1,
          'town': 1,
          'caught': 1,
          'basic': 1,
          'nas': 1,
          'headed': 1,
          'towards': 1,
          'sent': 1,
          'unoriginal': 1,
          'interesting': 1,
          'disappointed': 1,
          'greatly': 1,
          'opinion': 1,
          'nlucy': 1,
          'rudd': 1,
          'friendship': 1,
          'starts': 1,
          'blossom': 1,
          'something': 1,
          'dull': 1,
          'getting': 1,
          'sick': 1,
          'plots': 1,
          'njaneane': 1,
          'involved': 1,
          'dealing': 1,
          'ellie': 1,
          'exgirlfriend': 1,
          'kevins': 1,
          'completely': 1,
          'waste': 1,
          'garofalos': 1,
          'talent': 1,
          'hardly': 1,
          'nwhen': 1,
          'formed': 1,
          'invited': 1,
          'come': 1,
          'monicas': 1,
          'nat': 1,
          'bar': 1,
          'angela': 1,
          'featherstone': 1,
          'nicole': 1,
          'unfortunately': 1,
          'dont': 1,
          'remember': 1,
          'names': 1,
          'nben': 1,
          'character': 1,
          'go': 1,
          'anywhere': 1,
          'screen': 1,
          'give': 1,
          'nfeatherstone': 1,
          'horrible': 1,
          'roles': 1,
          'part': 1,
          'nchristina': 1,
          'val': 1,
          'stephie': 1,
          'lost': 1,
          'guys': 1,
          'end': 1,
          'around': 1,
          'stephies': 1,
          'accent': 1,
          'nhoffman': 1,
          'job': 1,
          'underused': 1,
          'considering': 1,
          'wonderful': 1,
          'actress': 1,
          'nanother': 1,
          'cindy': 1,
          'goldie': 1,
          'hawns': 1,
          'daughter': 1,
          'jack': 1,
          'jay': 1,
          'njack': 1,
          'goes': 1,
          'likes': 1,
          'dates': 1,
          'next': 1,
          'day': 1,
          'nkate': 1,
          'hudson': 1,
          'klutz': 1,
          'gets': 1,
          'situations': 1,
          'funniest': 1,
          'probably': 1,
          'well': 1,
          'used': 1,
          'mainly': 1,
          'nmohr': 1,
          'nhe': 1,
          'didnt': 1,
          'find': 1,
          'acceptable': 1,
          'say': 1,
          'nnone': 1,
          'developed': 1,
          'shown': 1,
          'enough': 1,
          'really': 1,
          'tell': 1,
          'judge': 1,
          'riccis': 1,
          'always': 1,
          'kate': 1,
          'role': 1,
          'loves': 1,
          'mediocre': 1,
          'rudds': 1,
          'overused': 1,
          'ni': 1,
          'hoping': 1,
          'little': 1,
          'jaw': 1,
          'casey': 1,
          'dave': 1,
          'chapelle': 1,
          'especially': 1,
          'janeane': 1,
          'strongest': 1,
          'great': 1,
          'costumes': 1,
          'nmartha': 1,
          'different': 1,
          'outfits': 1,
          'made': 1,
          'year': 1,
          'full': 1,
          'tunes': 1,
          'ranging': 1,
          'want': 1,
          'candy': 1,
          'tainted': 1,
          'songs': 1,
          'also': 1,
          'helped': 1,
          'create': 1,
          'back': 1,
          'nduring': 1,
          'often': 1,
          'found': 1,
          'asking': 1,
          'questions': 1,
          'moral': 1,
          'story': 1,
          'nare': 1,
          'events': 1,
          'necessary': 1,
          'ndo': 1,
          'reached': 1,
          'elevenoclock': 1,
          'hour': 1,
          'midnight': 1,
          'wait': 1,
          'make': 1,
          'nmaybe': 1,
          'lot': 1,
          'better': 1,
          'bottom': 1,
          'line': 1,
          'slasher': 1,
          '80s': 1,
          'comedy': 1,
          'nneg': 1}),
 Counter({'n': 7,
          'nwhy': 6,
          'earp': 5,
          'movie': 5,
          'postman': 5,
          'film': 5,
          'movies': 4,
          'like': 4,
          'ni': 4,
          'love': 3,
          'could': 3,
          'nyou': 3,
          'world': 3,
          'three': 3,
          'hour': 3,
          'wyatt': 3,
          'know': 3,
          'nwhat': 3,
          'another': 3,
          'brown': 3,
          'look': 3,
          'didnt': 3,
          'cast': 3,
          'youre': 2,
          'always': 2,
          'enough': 2,
          'years': 2,
          'star': 2,
          'burns': 2,
          'twice': 2,
          'youll': 2,
          'going': 2,
          'wolves': 2,
          'died': 2,
          'yet': 2,
          'nthe': 2,
          'worst': 2,
          'howard': 2,
          'line': 2,
          'two': 2,
          'appropriate': 2,
          'running': 2,
          'anyway': 2,
          'terrorists': 2,
          'america': 2,
          'nwas': 2,
          'deliver': 2,
          'scenes': 2,
          'americanized': 2,
          'nif': 2,
          'bad': 2,
          'nbecause': 2,
          'hes': 2,
          'creepy': 2,
          'everything': 2,
          'space': 2,
          'tom': 2,
          'petty': 2,
          'ill': 1,
          'bet': 1,
          'right': 1,
          'lounging': 1,
          'pool': 1,
          'humming': 1,
          'wistfully': 1,
          'recalling': 1,
          'candlelight': 1,
          'dinners': 1,
          'success': 1,
          'nit': 1,
          'isnt': 1,
          'necessarily': 1,
          'say': 1,
          'still': 1,
          'charm': 1,
          'avoid': 1,
          'starring': 1,
          'kevin': 1,
          'nfor': 1,
          'least': 1,
          'nbegin': 1,
          'scribbling': 1,
          'bright': 1,
          'half': 1,
          'long': 1,
          'somewhere': 1,
          'see': 1,
          'perhaps': 1,
          'fridge': 1,
          'door': 1,
          'bedroom': 1,
          'mirror': 1,
          'lipstick': 1,
          'heck': 1,
          'thing': 1,
          'agreed': 1,
          'robin': 1,
          'hood': 1,
          'prince': 1,
          'thieves': 1,
          'upstaged': 1,
          'powerhouses': 1,
          'morgan': 1,
          'freeman': 1,
          'alan': 1,
          'rickman': 1,
          'christian': 1,
          'slater': 1,
          'several': 1,
          'dozen': 1,
          'tall': 1,
          'trees': 1,
          'bows': 1,
          'arrows': 1,
          'canoe': 1,
          'nafter': 1,
          'dances': 1,
          'jfk': 1,
          'decided': 1,
          'needed': 1,
          'expensive': 1,
          'starred': 1,
          'produced': 1,
          'man': 1,
          'boring': 1,
          'idiot': 1,
          'made': 1,
          'history': 1,
          'books': 1,
          'solely': 1,
          'due': 1,
          'general': 1,
          'lack': 1,
          'famous': 1,
          'wyatts': 1,
          'nwyatt': 1,
          'dull': 1,
          'cowboy': 1,
          'natural': 1,
          'causes': 1,
          'ntombstone': 1,
          'vastly': 1,
          'superior': 1,
          'based': 1,
          'legend': 1,
          'featured': 1,
          'kurt': 1,
          'russell': 1,
          'dana': 1,
          'delaney': 1,
          'girlfriend': 1,
          'played': 1,
          'joanna': 1,
          'movieyou': 1,
          'character': 1,
          'known': 1,
          'best': 1,
          'jew': 1,
          'whore': 1,
          'lawrence': 1,
          'kasdan': 1,
          'thinking': 1,
          'nnow': 1,
          'suffering': 1,
          'demise': 1,
          'epics': 1,
          'financially': 1,
          'disastrous': 1,
          'eradicated': 1,
          'memory': 1,
          'waterworlds': 1,
          'tin': 1,
          'cups': 1,
          'mildly': 1,
          'lucrative': 1,
          'box': 1,
          'office': 1,
          'takes': 1,
          'ever': 1,
          'madepeople': 1,
          'hollywood': 1,
          'quick': 1,
          'forget': 1,
          'duck': 1,
          'whenever': 1,
          'next': 1,
          'bomb': 1,
          'comes': 1,
          'along': 1,
          'nyet': 1,
          'ridiculous': 1,
          'suspect': 1,
          'thought': 1,
          'braveheart': 1,
          'handswhy': 1,
          'else': 1,
          'armies': 1,
          'horesback': 1,
          'prepared': 1,
          'battle': 1,
          'climax': 1,
          'mailheart': 1,
          'think': 1,
          'alternate': 1,
          'titles': 1,
          'post': 1,
          'encounters': 1,
          'kind': 1,
          'farewell': 1,
          'salary': 1,
          'postmans': 1,
          'never': 1,
          'watched': 1,
          'hate': 1,
          'ndances': 1,
          'golden': 1,
          'brownit': 1,
          'looked': 1,
          'eggo': 1,
          'commercial': 1,
          'glass': 1,
          'water': 1,
          'every': 1,
          'minutes': 1,
          'would': 1,
          'postapocalyptic': 1,
          'maddeningly': 1,
          'bland': 1,
          'dry': 1,
          'exactly': 1,
          'happened': 1,
          'desert': 1,
          'ndid': 1,
          'become': 1,
          'stupid': 1,
          'immediately': 1,
          'begin': 1,
          'rebuilding': 1,
          'homes': 1,
          'restaurants': 1,
          'importantly': 1,
          'shopping': 1,
          'malls': 1,
          'war': 1,
          'choose': 1,
          'drive': 1,
          'plot': 1,
          'dumb': 1,
          'group': 1,
          'well': 1,
          'terrorize': 1,
          'townfolk': 1,
          'across': 1,
          'ammunition': 1,
          'really': 1,
          'daughter': 1,
          'girl': 1,
          'sweet': 1,
          'crush': 1,
          'driftercumpostman': 1,
          'english': 1,
          'actress': 1,
          'olivia': 1,
          'williams': 1,
          'american': 1,
          'ndont': 1,
          'realize': 1,
          'european': 1,
          'women': 1,
          'big': 1,
          'emotional': 1,
          'native': 1,
          'accent': 1,
          'take': 1,
          'lessthanstellar': 1,
          'performances': 1,
          'nicole': 1,
          'kidman': 1,
          'minnie': 1,
          'driver': 1,
          'nwho': 1,
          'give': 1,
          'damn': 1,
          'whether': 1,
          'lived': 1,
          'end': 1,
          'came': 1,
          'fight': 1,
          'leadership': 1,
          'leader': 1,
          'halfway': 1,
          'save': 1,
          'us': 1,
          'lot': 1,
          'headaches': 1,
          'patton': 1,
          'guy': 1,
          'worked': 1,
          'way': 1,
          'nsure': 1,
          'suitably': 1,
          'villain': 1,
          'including': 1,
          'armageddon': 1,
          'plays': 1,
          'heroic': 1,
          'astronaut': 1,
          'practically': 1,
          'slithers': 1,
          'suit': 1,
          'heroize': 1,
          'demonic': 1,
          'institution': 1,
          'u': 1,
          'postal': 1,
          'system': 1,
          'supposed': 1,
          'playing': 1,
          'skeletal': 1,
          'around': 1,
          '70': 1,
          'old': 1,
          'oh': 1,
          'many': 1,
          'questions': 1,
          'ask': 1,
          'plenty': 1,
          'nshouldnt': 1,
          'time': 1,
          'provided': 1,
          'answer': 1,
          'one': 1,
          'great': 1,
          'mule': 1,
          'things': 1,
          'ass': 1,
          'wonder': 1,
          'nactually': 1,
          'enjoyed': 1,
          'tone': 1,
          'opening': 1,
          'relaxed': 1,
          'cynicism': 1,
          'accept': 1,
          'clunky': 1,
          'phrasingtoo': 1,
          'couldnt': 1,
          'resist': 1,
          'temptation': 1,
          'letter': 1,
          'country': 1,
          'nultimately': 1,
          'im': 1,
          'saying': 1,
          'relax': 1,
          'nthere': 1,
          'quota': 1,
          'need': 1,
          'make': 1,
          'picture': 1,
          'year': 1,
          'nsettle': 1,
          'nreally': 1,
          'question': 1,
          'future': 1,
          'screenplays': 1,
          'commit': 1,
          'nfeel': 1,
          'free': 1,
          'write': 1,
          'back': 1,
          'much': 1,
          'letters': 1,
          'nneg': 1}),
 Counter({'pie': 7,
          'american': 6,
          'still': 5,
          '2': 4,
          'sex': 4,
          'thomas': 3,
          'much': 3,
          'movie': 3,
          'original': 3,
          'nits': 3,
          'comedy': 3,
          'one': 3,
          'jim': 3,
          'jason': 2,
          'biggs': 2,
          'seann': 2,
          'william': 2,
          'scott': 2,
          'chris': 2,
          'klein': 2,
          'ian': 2,
          'nichols': 2,
          'eugene': 2,
          'levy': 2,
          'j': 2,
          'b': 2,
          'looking': 2,
          'score': 2,
          'first': 2,
          'performance': 2,
          'oz': 2,
          'kevin': 2,
          'finch': 2,
          'nthis': 2,
          'even': 2,
          'isnt': 2,
          'films': 2,
          'think': 2,
          'nhere': 2,
          'like': 2,
          'say': 2,
          'make': 2,
          'permeated': 2,
          'characters': 2,
          'nand': 2,
          'theres': 2,
          'ni': 2,
          'watching': 2,
          'nif': 2,
          'get': 2,
          'nthe': 2,
          'genre': 2,
          'seem': 1,
          'glued': 1,
          'nto': 1,
          'nstarring': 1,
          'allyson': 1,
          'hannigan': 1,
          'shannon': 1,
          'elizabeth': 1,
          'natasha': 1,
          'lyonne': 1,
          'tara': 1,
          'reid': 1,
          'mena': 1,
          'suvari': 1,
          'jennifer': 1,
          'coolidge': 1,
          'ndirected': 1,
          'rogers': 1,
          'nrated': 1,
          'r': 1,
          'namerican': 1,
          'reunites': 1,
          'cast': 1,
          'members': 1,
          'different': 1,
          'setting': 1,
          'instead': 1,
          'high': 1,
          'school': 1,
          'seniors': 1,
          'graduate': 1,
          'past': 1,
          'year': 1,
          'college': 1,
          'gathered': 1,
          'beach': 1,
          'house': 1,
          'enjoy': 1,
          'summer': 1,
          'lives': 1,
          'njim': 1,
          'insecure': 1,
          'geek': 1,
          'improve': 1,
          'sweetest': 1,
          'guy': 1,
          'block': 1,
          'sickeningly': 1,
          'saccharine': 1,
          'phone': 1,
          'conversations': 1,
          'studyingabroad': 1,
          'girlfriend': 1,
          'stifler': 1,
          'horny': 1,
          'stoner': 1,
          'personality': 1,
          'eddie': 1,
          'kaye': 1,
          'longs': 1,
          'stiflers': 1,
          'mom': 1,
          'nhave': 1,
          'missed': 1,
          'anyone': 1,
          'nso': 1,
          'obviously': 1,
          'changed': 1,
          'problem': 1,
          'provided': 1,
          'boasts': 1,
          'rapidfire': 1,
          'hilarity': 1,
          'unexpectedly': 1,
          'true': 1,
          'sentiment': 1,
          'nbut': 1,
          'definition': 1,
          'sequelitis': 1,
          'coarser': 1,
          'yes': 1,
          'pushes': 1,
          'envelope': 1,
          'heart': 1,
          'easy': 1,
          'cash': 1,
          'capitalize': 1,
          'success': 1,
          'would': 1,
          'worthier': 1,
          'investment': 1,
          'prolong': 1,
          'franchise': 1,
          'coming': 1,
          'something': 1,
          'npart': 1,
          'reason': 1,
          'film': 1,
          'doesnt': 1,
          'work': 1,
          'kids': 1,
          'quest': 1,
          'comingofage': 1,
          'stepping': 1,
          'stone': 1,
          'outlet': 1,
          'horniness': 1,
          'everything': 1,
          'cheapened': 1,
          'nthey': 1,
          'behave': 1,
          'idiot': 1,
          'frat': 1,
          'boys': 1,
          'kill': 1,
          'drinking': 1,
          'motivation': 1,
          'except': 1,
          'beer': 1,
          'nthats': 1,
          'cant': 1,
          'decent': 1,
          'premise': 1,
          '2s': 1,
          'undoings': 1,
          'nmissing': 1,
          'sweetness': 1,
          'thiscouldbeyou': 1,
          'quality': 1,
          'main': 1,
          'players': 1,
          'aware': 1,
          'popculture': 1,
          'icons': 1,
          'theyre': 1,
          'onenote': 1,
          'nstifler': 1,
          'caricatures': 1,
          'forced': 1,
          'awkward': 1,
          'selfdiscoveries': 1,
          'arbitrary': 1,
          'moments': 1,
          'none': 1,
          'betraying': 1,
          'writers': 1,
          'audiences': 1,
          'want': 1,
          'see': 1,
          'soontobenotorious': 1,
          'scene': 1,
          'superglues': 1,
          'perfectly': 1,
          'demonstrates': 1,
          'yet': 1,
          'another': 1,
          'ailments': 1,
          'also': 1,
          'director': 1,
          'rodgers': 1,
          'debut': 1,
          'ntheres': 1,
          'fine': 1,
          'line': 1,
          'abject': 1,
          'humiliation': 1,
          'wrong': 1,
          'side': 1,
          'hard': 1,
          'laugh': 1,
          'profoundly': 1,
          'embarrassed': 1,
          'shielded': 1,
          'eyes': 1,
          'horror': 1,
          'redeeming': 1,
          'factor': 1,
          'inimitable': 1,
          'jims': 1,
          'dad': 1,
          'pops': 1,
          'hes': 1,
          'utters': 1,
          'lines': 1,
          'mother': 1,
          'known': 1,
          'frisky': 1,
          'nnot': 1,
          'anymore': 1,
          'girls': 1,
          'parents': 1,
          'walk': 1,
          'blurts': 1,
          'must': 1,
          'daughter': 1,
          'didnt': 1,
          'name': 1,
          'hopefully': 1,
          'son': 1,
          'rest': 1,
          'wit': 1,
          'wisdom': 1,
          'levys': 1,
          'unworthy': 1,
          'sequel': 1,
          'grossfest': 1,
          'brought': 1,
          'back': 1,
          'raunchy': 1,
          'teen': 1,
          'boxoffice': 1,
          'onw': 1,
          'keep': 1,
          'going': 1,
          'strong': 1,
          'disappointing': 1,
          'needs': 1,
          'hiatus': 1,
          'filmmakers': 1,
          'getting': 1,
          'lazy': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'finn': 8,
          'estella': 6,
          'character': 5,
          'book': 4,
          'two': 4,
          'great': 3,
          'expectations': 3,
          'one': 3,
          'adult': 3,
          'joe': 3,
          'plot': 3,
          'dinsmoor': 3,
          'nin': 3,
          'work': 3,
          'ill': 2,
          'first': 2,
          'pip': 2,
          'young': 2,
          'ethan': 2,
          'hawke': 2,
          'tell': 2,
          'way': 2,
          'nanyway': 2,
          'get': 2,
          'classics': 2,
          'time': 2,
          'nfinn': 2,
          'nthe': 2,
          'setting': 2,
          'artist': 2,
          'spends': 2,
          'upon': 2,
          'criminal': 2,
          'deniro': 2,
          'maybe': 2,
          'scenes': 2,
          'nand': 2,
          'nothing': 2,
          'finns': 2,
          'good': 2,
          'show': 2,
          'anne': 2,
          'bancroft': 2,
          'ms': 2,
          'nalthough': 2,
          'ends': 2,
          'girl': 2,
          'gwyneth': 2,
          'paltrow': 2,
          'apparent': 2,
          'main': 2,
          'simply': 2,
          'never': 2,
          'fact': 2,
          'fails': 2,
          'obviously': 2,
          'watching': 2,
          'strong': 2,
          'would': 2,
          'nfinns': 2,
          'bit': 2,
          'much': 2,
          'art': 2,
          'see': 2,
          'nas': 2,
          'modern': 2,
          'admit': 1,
          'nwhen': 1,
          'mention': 1,
          'immediately': 1,
          'begin': 1,
          'experiencing': 1,
          'flashbacks': 1,
          'junior': 1,
          'high': 1,
          'english': 1,
          'class': 1,
          'confronted': 1,
          'torturously': 1,
          'boring': 1,
          'filled': 1,
          'people': 1,
          'nonsensical': 1,
          'names': 1,
          'magwitch': 1,
          'nyes': 1,
          'classic': 1,
          'literature': 1,
          'rather': 1,
          'dry': 1,
          'shoved': 1,
          'throat': 1,
          'like': 1,
          'spoonful': 1,
          'bitter': 1,
          'medicine': 1,
          'ncertainly': 1,
          'experience': 1,
          'wasnt': 1,
          'truly': 1,
          'bad': 1,
          'quote': 1,
          'latest': 1,
          'movie': 1,
          'adaptation': 1,
          'said': 1,
          'im': 1,
          'going': 1,
          'story': 1,
          'happened': 1,
          'ngonna': 1,
          'remember': 1,
          'return': 1,
          'nostalgia': 1,
          'lane': 1,
          'back': 1,
          'present': 1,
          'hollywood': 1,
          'trendy': 1,
          'attempt': 1,
          'modernize': 1,
          'presents': 1,
          'updated': 1,
          'version': 1,
          'ninstead': 1,
          'central': 1,
          'named': 1,
          'played': 1,
          'boy': 1,
          'jeremy': 1,
          'kissner': 1,
          'orphan': 1,
          'raised': 1,
          'unfaithful': 1,
          'sister': 1,
          'maggie': 1,
          'mrs': 1,
          'kim': 1,
          'dickens': 1,
          'boorish': 1,
          'fisherman': 1,
          'husband': 1,
          'chris': 1,
          'cooper': 1,
          'florida': 1,
          'coast': 1,
          'mid70s': 1,
          'blooming': 1,
          'running': 1,
          'around': 1,
          'beach': 1,
          'drawing': 1,
          'fish': 1,
          'favorite': 1,
          'subjects': 1,
          'nduring': 1,
          'escapades': 1,
          'literally': 1,
          'stumbles': 1,
          'escaped': 1,
          'robert': 1,
          'nborrowing': 1,
          'page': 1,
          'superhuman': 1,
          'max': 1,
          'cady': 1,
          'deniros': 1,
          'seemingly': 1,
          'limitless': 1,
          'lung': 1,
          'capacity': 1,
          'favors': 1,
          'hiding': 1,
          'ocean': 1,
          'floor': 1,
          'nok': 1,
          'nthats': 1,
          'exaggeration': 1,
          'certainly': 1,
          'beats': 1,
          'houdinis': 1,
          'records': 1,
          'opening': 1,
          'thats': 1,
          'next': 1,
          'fuel': 1,
          'efficiency': 1,
          'motorboat': 1,
          'digress': 1,
          'convict': 1,
          'deed': 1,
          'hes': 1,
          'really': 1,
          'swell': 1,
          'guy': 1,
          'moves': 1,
          'nenter': 1,
          'miss': 1,
          'havisham': 1,
          'nms': 1,
          'nabandoned': 1,
          'altar': 1,
          '26': 1,
          'years': 1,
          'ago': 1,
          'epitome': 1,
          'crazy': 1,
          'rich': 1,
          'old': 1,
          'maid': 1,
          'nwith': 1,
          'bizarre': 1,
          'clothing': 1,
          'eccentric': 1,
          'mannerisms': 1,
          'pounds': 1,
          'makeup': 1,
          'seriously': 1,
          'overacts': 1,
          'role': 1,
          'nowhere': 1,
          'near': 1,
          'believable': 1,
          'add': 1,
          'humor': 1,
          'njoe': 1,
          'hired': 1,
          'help': 1,
          'gardening': 1,
          'unkempt': 1,
          'manner': 1,
          'insane': 1,
          'soon': 1,
          'hires': 1,
          'plaything': 1,
          'niece': 1,
          'raquel': 1,
          'beaudene': 1,
          'nfor': 1,
          'reason': 1,
          'provide': 1,
          'instantly': 1,
          'stricken': 1,
          'nperhaps': 1,
          'snooty': 1,
          'attitude': 1,
          'utter': 1,
          'disdain': 1,
          'person': 1,
          'met': 1,
          'case': 1,
          'neither': 1,
          'children': 1,
          'adults': 1,
          'chemistry': 1,
          'doesnt': 1,
          'exist': 1,
          'yet': 1,
          'remainder': 1,
          'pining': 1,
          'neven': 1,
          'arrives': 1,
          'new': 1,
          'york': 1,
          'behest': 1,
          'mysterious': 1,
          'benefactor': 1,
          'reacquaints': 1,
          'draws': 1,
          'portrait': 1,
          'nude': 1,
          'theres': 1,
          'sexual': 1,
          'tension': 1,
          'helen': 1,
          'hunt': 1,
          'greg': 1,
          'kinnears': 1,
          'gay': 1,
          'similar': 1,
          'scene': 1,
          'gets': 1,
          'nat': 1,
          'point': 1,
          'audience': 1,
          'grown': 1,
          'cold': 1,
          'detached': 1,
          'estellas': 1,
          'couldnt': 1,
          'care': 1,
          'less': 1,
          'characters': 1,
          'bulk': 1,
          'blame': 1,
          'falls': 1,
          'nshe': 1,
          'imbue': 1,
          'remote': 1,
          'even': 1,
          'vaguest': 1,
          'traces': 1,
          'humanity': 1,
          'ntheres': 1,
          'something': 1,
          'wrong': 1,
          'youre': 1,
          'interested': 1,
          'big': 1,
          'nose': 1,
          'looks': 1,
          'silhouette': 1,
          'nwithout': 1,
          'obsession': 1,
          'seems': 1,
          'baseless': 1,
          'nyou': 1,
          'wish': 1,
          'stop': 1,
          'whining': 1,
          'let': 1,
          'marry': 1,
          'rival': 1,
          'walter': 1,
          'plane': 1,
          'oddly': 1,
          'subdued': 1,
          'hank': 1,
          'azaria': 1,
          'life': 1,
          'relationships': 1,
          'purely': 1,
          'tangential': 1,
          'relationship': 1,
          'brotherinlaw': 1,
          'interesting': 1,
          'stereotypical': 1,
          'nwhats': 1,
          'fascinating': 1,
          'interactions': 1,
          'part': 1,
          'goes': 1,
          'vitality': 1,
          'actor': 1,
          'create': 1,
          'nit': 1,
          'director': 1,
          'alfonso': 1,
          'cuarsn': 1,
          'put': 1,
          'lot': 1,
          'creating': 1,
          'imagery': 1,
          'nsome': 1,
          'shots': 1,
          'others': 1,
          'staged': 1,
          'example': 1,
          'water': 1,
          'fountain': 1,
          'impact': 1,
          'actually': 1,
          'creations': 1,
          'italian': 1,
          'painter': 1,
          'francesco': 1,
          'clemente': 1,
          'used': 1,
          'throughout': 1,
          'mostly': 1,
          'intended': 1,
          'effect': 1,
          'nwe': 1,
          'generate': 1,
          'style': 1,
          'simultaneously': 1,
          'crude': 1,
          'insightful': 1,
          'result': 1,
          'distant': 1,
          'rest': 1,
          'nmodernizing': 1,
          'currently': 1,
          'vogue': 1,
          'william': 1,
          'shakespeares': 1,
          'romeojuliet': 1,
          'nsimply': 1,
          'update': 1,
          'action': 1,
          'apply': 1,
          'plenty': 1,
          'rock': 1,
          'nbut': 1,
          'adornments': 1,
          'little': 1,
          'perk': 1,
          'dreaded': 1,
          'novel': 1,
          'read': 1,
          'youd': 1,
          'probably': 1,
          'better': 1,
          'suffering': 1,
          'though': 1,
          'reading': 1,
          'romanceless': 1,
          'nneg': 1}),
 Counter({'apes': 11,
          'planet': 9,
          'heston': 5,
          'ape': 5,
          'nthe': 4,
          'one': 3,
          'time': 3,
          'humans': 3,
          'movies': 3,
          'damn': 2,
          'taken': 2,
          'acting': 2,
          'actually': 2,
          'like': 2,
          'beneath': 2,
          'escape': 2,
          'return': 2,
          'years': 2,
          'companions': 2,
          'thing': 2,
          'masks': 2,
          'dominant': 2,
          'species': 2,
          'two': 2,
          'movie': 2,
          'good': 2,
          'god': 2,
          'nbut': 2,
          'ability': 2,
          'speak': 2,
          'nand': 2,
          'doll': 2,
          'yelling': 2,
          'account': 2,
          'dirty': 1,
          'nthats': 1,
          'inadvertenty': 1,
          'hilarious': 1,
          'lines': 1,
          'thats': 1,
          'comedic': 1,
          'context': 1,
          'nno': 1,
          'back': 1,
          'seemed': 1,
          'realize': 1,
          'overthe': 1,
          'top': 1,
          'charlton': 1,
          'hestons': 1,
          'style': 1,
          'shows': 1,
          'particularly': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000': 1,
          'wannabe': 1,
          'film': 1,
          'masterpiece': 1,
          'winning': 1,
          'oscar': 1,
          'makeup': 1,
          'less': 1,
          'nominated': 1,
          'couple': 1,
          'others': 1,
          'nit': 1,
          'also': 1,
          'spawned': 1,
          'multiple': 1,
          'sequels': 1,
          'next': 1,
          'generation': 1,
          'police': 1,
          'academy': 1,
          'list': 1,
          'goes': 1,
          'nheston': 1,
          'american': 1,
          'astronaut': 1,
          'spends': 1,
          'thousand': 1,
          'light': 1,
          'space': 1,
          'three': 1,
          'ends': 1,
          'dissimilar': 1,
          'earth': 1,
          'cant': 1,
          'talk': 1,
          'think': 1,
          'guys': 1,
          'gorilla': 1,
          'nhestons': 1,
          'killed': 1,
          'turned': 1,
          'vegetables': 1,
          'apon': 1,
          'imprisoned': 1,
          'nhe': 1,
          'surprises': 1,
          'gift': 1,
          'speech': 1,
          'making': 1,
          'primate': 1,
          'scientists': 1,
          'roddy': 1,
          'mcdowall': 1,
          'kim': 1,
          'hunter': 1,
          'believe': 1,
          'missing': 1,
          'link': 1,
          'man': 1,
          'nbelieve': 1,
          'critics': 1,
          'thinking': 1,
          'nwhen': 1,
          'present': 1,
          'idea': 1,
          'judicial': 1,
          'counsel': 1,
          'head': 1,
          'shakespearean': 1,
          'actor': 1,
          'maurice': 1,
          'evans': 1,
          'received': 1,
          'heresy': 1,
          'monkeys': 1,
          'know': 1,
          'created': 1,
          'image': 1,
          'already': 1,
          'seen': 1,
          'cave': 1,
          'contains': 1,
          'evidence': 1,
          'originally': 1,
          'ever': 1,
          'gained': 1,
          'run': 1,
          'president': 1,
          'takes': 1,
          'holding': 1,
          'baby': 1,
          'couldnt': 1,
          'talking': 1,
          'mr': 1,
          'absolute': 1,
          'laughable': 1,
          'scene': 1,
          'comes': 1,
          'surprise': 1,
          'conclusion': 1,
          'ni': 1,
          'wont': 1,
          'reveal': 1,
          'details': 1,
          'except': 1,
          'say': 1,
          'involves': 1,
          'falling': 1,
          'knees': 1,
          'beach': 1,
          'hell': 1,
          'nseveral': 1,
          'times': 1,
          'succession': 1,
          'atrocious': 1,
          'viewed': 1,
          'members': 1,
          'society': 1,
          'watch': 1,
          'bad': 1,
          'laugh': 1,
          'nwhat': 1,
          'makes': 1,
          'even': 1,
          'amusing': 1,
          'supposed': 1,
          'function': 1,
          'sort': 1,
          'social': 1,
          'irony': 1,
          'condemnation': 1,
          'fundamentals': 1,
          'reject': 1,
          'theories': 1,
          'evolution': 1,
          'let': 1,
          'tell': 1,
          'darwin': 1,
          'could': 1,
          'see': 1,
          'hear': 1,
          'rotten': 1,
          'dialogue': 1,
          'exchanges': 1,
          'female': 1,
          'may': 1,
          'kiss': 1,
          'go': 1,
          'nape': 1,
          'nyoure': 1,
          'nugly': 1,
          'hed': 1,
          'convert': 1,
          'creationism': 1,
          'spot': 1,
          'nluckily': 1,
          'us': 1,
          'sciencefiction': 1,
          'evolved': 1,
          'point': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'movie': 6,
          'affleck': 5,
          'like': 5,
          'space': 5,
          'one': 5,
          'nthey': 4,
          'n': 4,
          'nasa': 4,
          'willis': 3,
          'tyler': 3,
          'bay': 3,
          'nit': 3,
          'asteroid': 3,
          'someone': 3,
          'sequence': 3,
          'almost': 3,
          'bunch': 3,
          'guy': 3,
          'called': 3,
          'little': 3,
          'liv': 2,
          'ben': 2,
          'written': 2,
          'j': 2,
          'michael': 2,
          'rocks': 2,
          'us': 2,
          'kind': 2,
          'damage': 2,
          'armageddon': 2,
          'deep': 2,
          'impact': 2,
          'harry': 2,
          'oil': 2,
          'driller': 2,
          'deepcore': 2,
          'build': 2,
          'obligatory': 2,
          'daughter': 2,
          'something': 2,
          'care': 2,
          'ni': 2,
          'scenes': 2,
          'last': 2,
          'often': 2,
          'world': 2,
          'songs': 2,
          'eventually': 2,
          'dead': 2,
          'could': 2,
          'believe': 2,
          'story': 2,
          'nthe': 2,
          'perhaps': 2,
          'jaws': 2,
          'men': 2,
          'respect': 2,
          'another': 2,
          'characters': 2,
          'get': 2,
          'feeling': 2,
          'even': 2,
          'team': 2,
          'new': 1,
          'address': 1,
          'nsame': 1,
          'old': 1,
          'attitude': 1,
          'ndont': 1,
          'forget': 1,
          'recommend': 1,
          'read': 1,
          'journal': 1,
          'send': 1,
          'nasty': 1,
          'hate': 1,
          'mail': 1,
          'nstarring': 1,
          'bruce': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'jonathan': 1,
          'hensleigh': 1,
          'nabrams': 1,
          'directed': 1,
          'rocksactually': 1,
          'lots': 1,
          'fly': 1,
          'slow': 1,
          'fast': 1,
          'motion': 1,
          'several': 1,
          'points': 1,
          'seem': 1,
          'dangerous': 1,
          'twirl': 1,
          'air': 1,
          'instead': 1,
          'propelling': 1,
          'forward': 1,
          'landonce': 1,
          'need': 1,
          'break': 1,
          'sequencesthey': 1,
          'cause': 1,
          'enough': 1,
          'destroy': 1,
          'chrysler': 1,
          'building': 1,
          'nary': 1,
          'mention': 1,
          'apocalyptic': 1,
          'events': 1,
          'made': 1,
          'occur': 1,
          'also': 1,
          'might': 1,
          'interesting': 1,
          'element': 1,
          'steroid': 1,
          'users': 1,
          'answer': 1,
          'nbruce': 1,
          'stars': 1,
          'stamper': 1,
          'famed': 1,
          'oildriller': 1,
          'commissioned': 1,
          'white': 1,
          'house': 1,
          'stop': 1,
          'giant': 1,
          'travels': 1,
          'beyond': 1,
          'zero': 1,
          'barrier': 1,
          'destroys': 1,
          'planet': 1,
          'nwhy': 1,
          'require': 1,
          'experienced': 1,
          'mining': 1,
          'plant': 1,
          'nuclear': 1,
          'missile': 1,
          'said': 1,
          'unintentionally': 1,
          'nhilarious': 1,
          'asks': 1,
          'inspect': 1,
          'built': 1,
          'based': 1,
          'blueprints': 1,
          'poorly': 1,
          'constructedharry': 1,
          'criticizes': 1,
          'every': 1,
          'aspect': 1,
          'nwe': 1,
          'trust': 1,
          'shuttles': 1,
          'land': 1,
          'twirling': 1,
          'asteroids': 1,
          'nharry': 1,
          'assembles': 1,
          'ragtag': 1,
          'cowboys': 1,
          'including': 1,
          'blond': 1,
          'fat': 1,
          'black': 1,
          'wiseass': 1,
          'man': 1,
          'sleeping': 1,
          'nonce': 1,
          'reach': 1,
          'experience': 1,
          'going': 1,
          'wrongperhaps': 1,
          'fact': 1,
          'sent': 1,
          'nincompoops': 1,
          'outer': 1,
          'count': 1,
          'number': 1,
          'times': 1,
          'fail': 1,
          'mission': 1,
          'fingers': 1,
          'toes': 1,
          'nwhether': 1,
          'save': 1,
          'day': 1,
          'reveal': 1,
          'nnor': 1,
          'say': 1,
          'know': 1,
          'youre': 1,
          'trouble': 1,
          'dwarfs': 1,
          'terms': 1,
          'emotion': 1,
          'scope': 1,
          'nwillis': 1,
          'barely': 1,
          'chance': 1,
          'come': 1,
          'alive': 1,
          'ditto': 1,
          'ntheir': 1,
          'big': 1,
          'mostly': 1,
          'reserved': 1,
          'third': 1,
          'act': 1,
          'minuteand': 1,
          'futileattempt': 1,
          'inject': 1,
          'warmth': 1,
          'material': 1,
          'nsteve': 1,
          'buscemis': 1,
          'characterthe': 1,
          'wiseassis': 1,
          'exceptionally': 1,
          'problematic': 1,
          'rockhound': 1,
          'hes': 1,
          'sarcastic': 1,
          'foolish': 1,
          'tape': 1,
          'chair': 1,
          'spends': 1,
          'nso': 1,
          'bring': 1,
          'begin': 1,
          'nrather': 1,
          'write': 1,
          'give': 1,
          'nhis': 1,
          'almostwitty': 1,
          'oneliners': 1,
          'serious': 1,
          'scowls': 1,
          'mopes': 1,
          'demonstrates': 1,
          'psychotic': 1,
          'tendencies': 1,
          'point': 1,
          'chases': 1,
          'shotgun': 1,
          'screwing': 1,
          'firing': 1,
          'causing': 1,
          'significant': 1,
          'rig': 1,
          'nim': 1,
          'guessing': 1,
          'qualifies': 1,
          'guidelines': 1,
          'unfit': 1,
          'travel': 1,
          'least': 1,
          'sky': 1,
          'blue': 1,
          'nliv': 1,
          'pretty': 1,
          'humourless': 1,
          'always': 1,
          'suspiciously': 1,
          'four': 1,
          'fathers': 1,
          'bands': 1,
          'aerosmith': 1,
          'grace': 1,
          'soundtrack': 1,
          'ndirector': 1,
          'lays': 1,
          'visual': 1,
          'sound': 1,
          'effects': 1,
          'thick': 1,
          'ketchup': 1,
          'drowning': 1,
          'onscreen': 1,
          'middle': 1,
          'hour': 1,
          'nonsensical': 1,
          'pyrotechnic': 1,
          'assault': 1,
          'average': 1,
          'primates': 1,
          'brain': 1,
          'nwhenever': 1,
          'dies': 1,
          'crew': 1,
          'member': 1,
          'inevitably': 1,
          'yells': 1,
          'lost': 1,
          'insert': 1,
          'persons': 1,
          'name': 1,
          'must': 1,
          'admit': 1,
          'distinguish': 1,
          'oilguycumastronaut': 1,
          'live': 1,
          'closeups': 1,
          'corpses': 1,
          'faces': 1,
          'beneath': 1,
          'cracked': 1,
          'helmets': 1,
          'provided': 1,
          'assistance': 1,
          'skin': 1,
          'covered': 1,
          'fake': 1,
          'blood': 1,
          'narmageddon': 1,
          'terrible': 1,
          'godzilla': 1,
          'looks': 1,
          'nicer': 1,
          'fewer': 1,
          'plotholes': 1,
          'within': 1,
          'equally': 1,
          'ludicrous': 1,
          'framework': 1,
          'vivid': 1,
          'soundmix': 1,
          'nbut': 1,
          'twoandahalf': 1,
          'hours': 1,
          'actually': 1,
          'happened': 1,
          'course': 1,
          'love': 1,
          'played': 1,
          'ads': 1,
          'hoping': 1,
          'catch': 1,
          'people': 1,
          'recover': 1,
          'titanicfever': 1,
          'nbollocks': 1,
          'lovers': 1,
          'miles': 1,
          'apart': 1,
          'throughouterase': 1,
          'thoughts': 1,
          'nude': 1,
          'sketching': 1,
          'carsex': 1,
          'replace': 1,
          'shots': 1,
          'tearing': 1,
          'dicks': 1,
          'around': 1,
          'mooncrawler': 1,
          'nremember': 1,
          'nin': 1,
          'three': 1,
          'independentminded': 1,
          'suddenly': 1,
          'found': 1,
          'fishing': 1,
          'boat': 1,
          'pursuit': 1,
          'deadly': 1,
          'shark': 1,
          'didnt': 1,
          'much': 1,
          'first': 1,
          'started': 1,
          'none': 1,
          'great': 1,
          'involved': 1,
          'wouldbeahabs': 1,
          'drinking': 1,
          'singing': 1,
          'telling': 1,
          'stories': 1,
          'nthis': 1,
          'sort': 1,
          'malebonding': 1,
          'foreign': 1,
          'producer': 1,
          'jerry': 1,
          'bruckheimer': 1,
          'throw': 1,
          'many': 1,
          'mix': 1,
          'expect': 1,
          'well': 1,
          'grounds': 1,
          'end': 1,
          'nnot': 1,
          'acquaintancesid': 1,
          'surprised': 1,
          'actors': 1,
          'bothered': 1,
          'introduce': 1,
          'action': 1,
          'na': 1,
          'male': 1,
          'friend': 1,
          'loved': 1,
          'suggested': 1,
          'relate': 1,
          'dont': 1,
          'bare': 1,
          'souls': 1,
          'dying': 1,
          'macho': 1,
          'concepts': 1,
          'heroism': 1,
          'chestbeating': 1,
          'bravery': 1,
          'nto': 1,
          'respond': 1,
          'boys': 1,
          'neither': 1,
          'heroic': 1,
          'brave': 1,
          'smart': 1,
          'couldnt': 1,
          'birdhouse': 1,
          'nand': 1,
          'disliking': 1,
          'synthetic': 1,
          'trailera': 1,
          'trailer': 1,
          'bodybuilders': 1,
          'greeting': 1,
          'card': 1,
          'authorsive': 1,
          'never': 1,
          'prouder': 1,
          'wimp': 1,
          'whole': 1,
          'life': 1,
          'nneg': 1}),
 Counter({'corky': 10,
          'one': 3,
          'romano': 3,
          'much': 3,
          'chris': 3,
          'agent': 3,
          'nthe': 3,
          'nand': 3,
          'throwaway': 2,
          'turn': 2,
          'tv': 2,
          'getting': 2,
          'kattan': 2,
          'ads': 2,
          'career': 2,
          'good': 2,
          'even': 2,
          'plays': 2,
          'work': 2,
          'peter': 2,
          'brothers': 2,
          'berg': 2,
          'fbi': 2,
          'named': 2,
          'something': 2,
          'sitcom': 2,
          'gives': 2,
          'question': 1,
          'eats': 1,
          'seeing': 1,
          'touchstone': 1,
          'spent': 1,
          'money': 1,
          'marketing': 1,
          'film': 1,
          'nsince': 1,
          'june': 1,
          'havent': 1,
          'able': 1,
          'go': 1,
          'movies': 1,
          'without': 1,
          'hit': 1,
          'ad': 1,
          'depicting': 1,
          'spastic': 1,
          'shrieking': 1,
          'ahas': 1,
          'take': 1,
          'yellow': 1,
          'miata': 1,
          'nwhy': 1,
          'would': 1,
          'disney': 1,
          'sink': 1,
          'cash': 1,
          'hype': 1,
          'machine': 1,
          'nhonestly': 1,
          'hoping': 1,
          'goofball': 1,
          'actually': 1,
          'front': 1,
          'decently': 1,
          'funny': 1,
          'movie': 1,
          'nman': 1,
          'wrong': 1,
          'ncorky': 1,
          'clich': 1,
          'ridden': 1,
          'tvstartofilm': 1,
          'vehicles': 1,
          'built': 1,
          'upon': 1,
          'rickety': 1,
          'plots': 1,
          'nfortunately': 1,
          'kattans': 1,
          'precariously': 1,
          'positioned': 1,
          'laughs': 1,
          'lowestbrow': 1,
          'variety': 1,
          'nkattan': 1,
          'title': 1,
          'character': 1,
          'unsinkable': 1,
          'assistant': 1,
          'veterinarian': 1,
          'penchant': 1,
          'sunshiny': 1,
          '80s': 1,
          'tunes': 1,
          'bright': 1,
          'ties': 1,
          'banal': 1,
          'coffee': 1,
          'mug': 1,
          'slogans': 1,
          'dont': 1,
          'crazy': 1,
          'sure': 1,
          'helps': 1,
          'nwhen': 1,
          'mob': 1,
          'boss': 1,
          'dad': 1,
          'falk': 1,
          'put': 1,
          'away': 1,
          'murder': 1,
          'charges': 1,
          'bungling': 1,
          'lughead': 1,
          'penn': 1,
          'rope': 1,
          'innocent': 1,
          'black': 1,
          'sheep': 1,
          'infiltrate': 1,
          'steal': 1,
          'evidence': 1,
          'npredictably': 1,
          'hijinks': 1,
          'ensue': 1,
          'nif': 1,
          'basic': 1,
          'plot': 1,
          'sounds': 1,
          'bad': 1,
          'wait': 1,
          'get': 1,
          'innerworkings': 1,
          'clunker': 1,
          'writers': 1,
          'amaze': 1,
          'depth': 1,
          'inanity': 1,
          'ncorkys': 1,
          'identity': 1,
          'pissant': 1,
          'thats': 1,
          'pronounced': 1,
          'peesahn': 1,
          'nits': 1,
          'french': 1,
          'nhe': 1,
          'becomes': 1,
          'firstrate': 1,
          'accidentally': 1,
          'stumbling': 1,
          'mr': 1,
          'magoostyle': 1,
          'onto': 1,
          'proper': 1,
          'clues': 1,
          'talking': 1,
          'way': 1,
          'situations': 1,
          'like': 1,
          'mean': 1,
          'family': 1,
          'insult': 1,
          'farting': 1,
          'others': 1,
          'face': 1,
          'scene': 1,
          'taken': 1,
          'straight': 1,
          'theres': 1,
          'mary': 1,
          'dachshund': 1,
          'mouthtomouth': 1,
          'resuscitation': 1,
          'nbut': 1,
          'complete': 1,
          'disaster': 1,
          'manic': 1,
          'occasionally': 1,
          'rescue': 1,
          'comic': 1,
          'moments': 1,
          'including': 1,
          'bit': 1,
          'featuring': 1,
          'cat': 1,
          'fat': 1,
          'suit': 1,
          'jesus': 1,
          'another': 1,
          'involving': 1,
          'schoolchildren': 1,
          'german': 1,
          'shephard': 1,
          'kilo': 1,
          'cocaine': 1,
          'nplus': 1,
          'whose': 1,
          'obviously': 1,
          'gone': 1,
          'downhill': 1,
          'since': 1,
          'last': 1,
          'seduction': 1,
          'chicago': 1,
          'hope': 1,
          'great': 1,
          'illiterate': 1,
          'brother': 1,
          'paulie': 1,
          'nice': 1,
          'see': 1,
          'richard': 1,
          'roundtree': 1,
          'shaft': 1,
          'fame': 1,
          'nunfortunately': 1,
          'cant': 1,
          'truly': 1,
          'appreciate': 1,
          'animal': 1,
          'fart': 1,
          'jokes': 1,
          'wont': 1,
          'offer': 1,
          'nso': 1,
          'next': 1,
          'time': 1,
          'pesky': 1,
          'appears': 1,
          'asking': 1,
          'nyou': 1,
          'simply': 1,
          'reply': 1,
          'cares': 1,
          'nneg': 1}),
 Counter({'catch': 5,
          'hand': 5,
          'summer': 4,
          'give': 4,
          'freddie': 3,
          'prinze': 3,
          'playing': 3,
          'baseball': 3,
          'better': 3,
          'league': 3,
          'play': 3,
          'big': 3,
          'ryan': 3,
          'film': 3,
          'nfor': 3,
          'movie': 3,
          'character': 3,
          'dont': 2,
          'want': 2,
          'see': 2,
          'jr': 2,
          'loving': 2,
          'major': 2,
          'nits': 2,
          'time': 2,
          'ask': 2,
          'real': 2,
          'townie': 2,
          'make': 2,
          'neither': 2,
          'tenley': 2,
          'jessica': 2,
          'biel': 2,
          'far': 2,
          'makes': 2,
          'also': 2,
          'fellow': 2,
          'dee': 2,
          'best': 2,
          'friend': 2,
          'fat': 2,
          'fetish': 2,
          'much': 2,
          'done': 2,
          'fact': 2,
          'romance': 2,
          'nthe': 2,
          'part': 2,
          'guy': 2,
          'screen': 2,
          'nryans': 2,
          'long': 2,
          'one': 2,
          'nwhen': 2,
          'shes': 2,
          'almost': 2,
          'two': 2,
          'teen': 2,
          'kids': 1,
          'today': 1,
          'heartthrob': 1,
          'master': 1,
          'thespian': 1,
          'ladies': 1,
          'nno': 1,
          'something': 1,
          'takes': 1,
          'little': 1,
          'acting': 1,
          'department': 1,
          'namely': 1,
          'nthrough': 1,
          'series': 1,
          'drippy': 1,
          'voiceovers': 1,
          'informed': 1,
          'theres': 1,
          'proving': 1,
          'ground': 1,
          'cape': 1,
          'cod': 1,
          'leagues': 1,
          'college': 1,
          'alsorans': 1,
          'hopeful': 1,
          'dropouts': 1,
          'go': 1,
          'hopes': 1,
          'attracting': 1,
          'attention': 1,
          'nour': 1,
          'man': 1,
          'landed': 1,
          'spot': 1,
          'pitcher': 1,
          'prestigious': 1,
          'chatham': 1,
          'hoping': 1,
          'break': 1,
          'given': 1,
          'ample': 1,
          'show': 1,
          'abs': 1,
          'scamper': 1,
          'womans': 1,
          'thong': 1,
          'learn': 1,
          'story': 1,
          'poor': 1,
          'named': 1,
          'dunne': 1,
          'struggling': 1,
          'name': 1,
          'father': 1,
          'fred': 1,
          'ward': 1,
          'brother': 1,
          'jason': 1,
          'gedrick': 1,
          'pulled': 1,
          'blue': 1,
          'collar': 1,
          'jobs': 1,
          'resent': 1,
          'anyone': 1,
          'tries': 1,
          'local': 1,
          'beauty': 1,
          'n': 1,
          'probably': 1,
          'shouldnt': 1,
          'even': 1,
          'bother': 1,
          'nbut': 1,
          'course': 1,
          'nsummer': 1,
          'abortive': 1,
          'stab': 1,
          'another': 1,
          'half': 1,
          'dozen': 1,
          'subplots': 1,
          'jealousy': 1,
          'brazen': 1,
          'slut': 1,
          'brittany': 1,
          'murphy': 1,
          'alienation': 1,
          'felt': 1,
          'ryans': 1,
          'nonbaseball': 1,
          'gabriel': 1,
          'mann': 1,
          'chick': 1,
          'player': 1,
          'miles': 1,
          'marc': 1,
          'blucas': 1,
          'nworst': 1,
          'ludicrous': 1,
          'bit': 1,
          'involving': 1,
          '70s': 1,
          'shows': 1,
          'wilmer': 1,
          'valderrama': 1,
          'beverly': 1,
          'dangelo': 1,
          'appear': 1,
          'simply': 1,
          'provide': 1,
          'nutty': 1,
          'mrs': 1,
          'robinsonlike': 1,
          'substory': 1,
          'remind': 1,
          'bull': 1,
          'durham': 1,
          'nin': 1,
          'virtually': 1,
          'feels': 1,
          'like': 1,
          'somewhere': 1,
          'else': 1,
          'starters': 1,
          'question': 1,
          'identity': 1,
          'definitely': 1,
          'sports': 1,
          'fails': 1,
          'pretty': 1,
          'miserably': 1,
          'worst': 1,
          'amateurish': 1,
          'script': 1,
          'cowritten': 1,
          'arli': 1,
          'writing': 1,
          'alumnus': 1,
          'starred': 1,
          'leprechaun': 1,
          '3': 1,
          'chockfull': 1,
          'phony': 1,
          'emotion': 1,
          'nby': 1,
          'end': 1,
          'becomes': 1,
          'platform': 1,
          'deliver': 1,
          'soliloquy': 1,
          'must': 1,
          'take': 1,
          'heart': 1,
          'ndad': 1,
          'fatherly': 1,
          'yet': 1,
          'drunken': 1,
          'advice': 1,
          'ncoach': 1,
          'brian': 1,
          'dennehy': 1,
          'hes': 1,
          'got': 1,
          'work': 1,
          'curmudgeonly': 1,
          'counterpoint': 1,
          'catcher': 1,
          'matthew': 1,
          'lillard': 1,
          'tell': 1,
          'fun': 1,
          'stoner': 1,
          'gogetemtigerwerebehindyou': 1,
          'talk': 1,
          'nand': 1,
          'girlfriend': 1,
          'heartwarmingnuzzlyfollowyourdreams': 1,
          'counsel': 1,
          'nbefore': 1,
          'start': 1,
          'wonder': 1,
          'freddy': 1,
          'capable': 1,
          'thought': 1,
          'ndont': 1,
          'answer': 1,
          'joy': 1,
          'found': 1,
          'biels': 1,
          'skimpy': 1,
          'outfits': 1,
          'usually': 1,
          'wet': 1,
          'nshes': 1,
          'able': 1,
          'role': 1,
          'taking': 1,
          'rebellingagainstdaddy': 1,
          'least': 1,
          'passing': 1,
          'grade': 1,
          'flies': 1,
          'realize': 1,
          'ungodly': 1,
          'reason': 1,
          'hours': 1,
          'pg13': 1,
          'despite': 1,
          'nearconstant': 1,
          'sexual': 1,
          'innuendo': 1,
          'warner': 1,
          'brothers': 1,
          'thinking': 1,
          'fallen': 1,
          '7th': 1,
          'heaven': 1,
          'roots': 1,
          'become': 1,
          'denise': 1,
          'richards': 1,
          'nhollywood': 1,
          'either': 1,
          'eat': 1,
          'alive': 1,
          'vice': 1,
          'versa': 1,
          'way': 1,
          'good': 1,
          'luck': 1,
          'nas': 1,
          'keeps': 1,
          'pumping': 1,
          'romances': 1,
          'rate': 1,
          'year': 1,
          'prinzes': 1,
          'next': 1,
          'liable': 1,
          'venereal': 1,
          'disease': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'romance': 4,
          'plot': 3,
          'one': 3,
          'life': 2,
          'witch': 2,
          'movie': 2,
          'cause': 2,
          'magic': 2,
          'matter': 2,
          'drama': 2,
          'known': 2,
          'two': 1,
          'sister': 1,
          'witches': 1,
          'live': 1,
          'curse': 1,
          'placed': 1,
          'upon': 1,
          'family': 1,
          'prevents': 1,
          'ever': 1,
          'enjoying': 1,
          'full': 1,
          'lover': 1,
          'nthe': 1,
          'hex': 1,
          'invokes': 1,
          'eventual': 1,
          'demise': 1,
          'loved': 1,
          'nwhen': 1,
          'past': 1,
          'loves': 1,
          'comes': 1,
          'back': 1,
          'haunt': 1,
          'figure': 1,
          'way': 1,
          'eternal': 1,
          'dilemma': 1,
          'ncritique': 1,
          'ive': 1,
          'waiting': 1,
          'good': 1,
          'hold': 1,
          'brooms': 1,
          'incantations': 1,
          'puppy': 1,
          'far': 1,
          'nfor': 1,
          'word': 1,
          'title': 1,
          'contains': 1,
          'moments': 1,
          'nhumor': 1,
          'suspense': 1,
          'nwell': 1,
          'actually': 1,
          'manufactured': 1,
          'within': 1,
          'muddled': 1,
          'never': 1,
          'lets': 1,
          'whether': 1,
          'comedy': 1,
          'horror': 1,
          'show': 1,
          'murder': 1,
          'mystery': 1,
          'maybe': 1,
          'eh': 1,
          'nit': 1,
          'doesnt': 1,
          'really': 1,
          'characters': 1,
          'boring': 1,
          'uninteresting': 1,
          'absolutely': 1,
          'basis': 1,
          'care': 1,
          'whole': 1,
          'nif': 1,
          'filmmakers': 1,
          'spent': 1,
          'much': 1,
          'time': 1,
          'sinfully': 1,
          'obvious': 1,
          'soundtrack': 1,
          'mightve': 1,
          'chance': 1,
          'nwhich': 1,
          'unentertaining': 1,
          'crappy': 1,
          'uses': 1,
          'angle': 1,
          'diversionary': 1,
          'tactic': 1,
          'weave': 1,
          'us': 1,
          'away': 1,
          'grabbag': 1,
          'stupid': 1,
          'voiceovers': 1,
          'overdone': 1,
          'songs': 1,
          'melodramatic': 1,
          'undeveloped': 1,
          'story': 1,
          'uneven': 1,
          'acting': 1,
          'ni': 1,
          'wish': 1,
          'could': 1,
          'make': 1,
          'hour': 1,
          'fortyfive': 1,
          'minutes': 1,
          'reappear': 1,
          'alas': 1,
          'lost': 1,
          'spiritual': 1,
          'world': 1,
          'interesting': 1,
          'ideas': 1,
          'gone': 1,
          'wildly': 1,
          'awry': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'based': 1,
          'novel': 1,
          'written': 1,
          'alice': 1,
          'hoffman': 1,
          'ncoscreenwriter': 1,
          'akiva': 1,
          'goldsman': 1,
          'also': 1,
          'wrote': 1,
          'screenplay': 1,
          '1997s': 1,
          'batman': 1,
          'robin': 1,
          'ndirector': 1,
          'griffin': 1,
          'dunne': 1,
          'mainly': 1,
          'actor': 1,
          'films': 1,
          'american': 1,
          'werewolf': 1,
          'london': 1,
          'hours': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'nthe': 6,
          'courtney': 6,
          'liz': 6,
          'julie': 5,
          'jawbreaker': 5,
          'teen': 4,
          'high': 4,
          'audience': 4,
          'look': 4,
          'stud': 4,
          'mcgowan': 3,
          'gayheart': 3,
          'way': 3,
          'fern': 3,
          'girls': 3,
          'death': 3,
          'lizs': 3,
          'like': 3,
          'ndirector': 2,
          'darren': 2,
          'stein': 2,
          'rose': 2,
          'rebecca': 2,
          'judy': 2,
          'greer': 2,
          'benz': 2,
          'chad': 2,
          'christ': 2,
          'ethan': 2,
          'erickson': 2,
          'carol': 2,
          'kane': 2,
          'pam': 2,
          'grier': 2,
          'tatyana': 2,
          'ali': 2,
          'carrie': 2,
          '1995': 2,
          'movie': 2,
          'geeky': 2,
          'good': 2,
          'marcie': 2,
          'nliz': 2,
          'turn': 2,
          'help': 2,
          'nin': 2,
          'order': 2,
          'keep': 2,
          'making': 2,
          'nthey': 2,
          'courtneys': 2,
          'camera': 2,
          'never': 2,
          'get': 2,
          'plan': 2,
          'also': 2,
          'students': 2,
          'begins': 2,
          'role': 2,
          'characters': 2,
          'develop': 2,
          'plot': 2,
          'lame': 2,
          'apparently': 2,
          'make': 2,
          'best': 2,
          'scene': 2,
          'aspect': 2,
          'design': 2,
          'work': 2,
          'color': 2,
          'impression': 2,
          'school': 2,
          'male': 2,
          'tristar': 1,
          'rated': 1,
          'r': 1,
          'language': 1,
          'sexual': 1,
          'situations': 1,
          'violence': 1,
          '87': 1,
          'minutes': 1,
          'writer': 1,
          'ncast': 1,
          'nreview': 1,
          'geoff': 1,
          'berkshire': 1,
          'njawbreaker': 1,
          'definition': 1,
          'ripoff': 1,
          'nthis': 1,
          'uninspired': 1,
          'comedy': 1,
          'takes': 1,
          'equal': 1,
          'parts': 1,
          '1976': 1,
          'heathers': 1,
          '1989': 1,
          'clueless': 1,
          'mixes': 1,
          'necessary': 1,
          'clich': 1,
          'nalong': 1,
          'writerdirector': 1,
          'forgets': 1,
          'give': 1,
          'life': 1,
          'opens': 1,
          'voice': 1,
          'mayo': 1,
          'four': 1,
          'popular': 1,
          'reagan': 1,
          'shayne': 1,
          'basically': 1,
          'summed': 1,
          'satan': 1,
          'heels': 1,
          'freeman': 1,
          'girl': 1,
          'face': 1,
          'supermodel': 1,
          'fox': 1,
          'dimwitted': 1,
          'blonde': 1,
          'demands': 1,
          'people': 1,
          'call': 1,
          'foxy': 1,
          'purr': 1,
          'charlotte': 1,
          'roldan': 1,
          'angel': 1,
          'disguise': 1,
          'everyones': 1,
          'favorite': 1,
          'shes': 1,
          'beautiful': 1,
          'kind': 1,
          '17': 1,
          'prank': 1,
          'convinces': 1,
          'kidnapping': 1,
          'birthday': 1,
          'morning': 1,
          'noise': 1,
          'stuffs': 1,
          'mouth': 1,
          'gag': 1,
          'stuff': 1,
          'trunk': 1,
          'car': 1,
          'open': 1,
          'later': 1,
          'polaroid': 1,
          'waiting': 1,
          'capture': 1,
          'moment': 1,
          'lives': 1,
          'poor': 1,
          'swallowed': 1,
          'choked': 1,
          'lodged': 1,
          'throat': 1,
          'treated': 1,
          'many': 1,
          'graphic': 1,
          'looks': 1,
          'dead': 1,
          'body': 1,
          'ncourtney': 1,
          'thinking': 1,
          'fast': 1,
          'decides': 1,
          'pass': 1,
          'rapemurder': 1,
          'reluctant': 1,
          'assist': 1,
          'nthings': 1,
          'complicated': 1,
          'discovers': 1,
          'three': 1,
          'quiet': 1,
          'comes': 1,
          'another': 1,
          'transforms': 1,
          'vylette': 1,
          'hoping': 1,
          'replace': 1,
          'minds': 1,
          'devastated': 1,
          'nup': 1,
          'point': 1,
          'effective': 1,
          'enough': 1,
          'nhowever': 1,
          'investigation': 1,
          'becomes': 1,
          'excessively': 1,
          'dull': 1,
          'recently': 1,
          'rediscovered': 1,
          'talents': 1,
          'thoroughly': 1,
          'wasted': 1,
          'detective': 1,
          'vera': 1,
          'cruz': 1,
          'downright': 1,
          'insipid': 1,
          'treatment': 1,
          'long': 1,
          'middle': 1,
          'stretch': 1,
          'ncourtneys': 1,
          'frame': 1,
          'sleazy': 1,
          'guy': 1,
          'marilyn': 1,
          'manson': 1,
          'brief': 1,
          'cameo': 1,
          'believable': 1,
          'second': 1,
          'nmeanwhile': 1,
          'stuck': 1,
          'watching': 1,
          'string': 1,
          'random': 1,
          'events': 1,
          'fail': 1,
          'add': 1,
          'anything': 1,
          'interest': 1,
          'njulie': 1,
          'leaves': 1,
          'group': 1,
          'romance': 1,
          'aspiring': 1,
          'actor': 1,
          'zack': 1,
          'nhe': 1,
          'gives': 1,
          'courage': 1,
          'things': 1,
          'stupid': 1,
          'nferns': 1,
          'rise': 1,
          'popularity': 1,
          'equally': 1,
          'nwe': 1,
          'one': 1,
          'spark': 1,
          'originality': 1,
          'section': 1,
          'nits': 1,
          'smart': 1,
          'subversive': 1,
          'bit': 1,
          'gets': 1,
          'schools': 1,
          'resident': 1,
          'jock': 1,
          'dane': 1,
          'demonstrate': 1,
          'using': 1,
          'popsicle': 1,
          'exactly': 1,
          'would': 1,
          'nit': 1,
          'least': 1,
          'provides': 1,
          'us': 1,
          'personality': 1,
          'finishes': 1,
          'doesnt': 1,
          'sense': 1,
          'nstein': 1,
          'conscious': 1,
          'tradition': 1,
          'working': 1,
          'freely': 1,
          'borrows': 1,
          'major': 1,
          'elements': 1,
          'includes': 1,
          'direct': 1,
          'acknowledgment': 1,
          'stunt': 1,
          'casting': 1,
          'nwilliam': 1,
          'katt': 1,
          'p': 1,
          'j': 1,
          'soles': 1,
          'distraught': 1,
          'parents': 1,
          'jeff': 1,
          'conaway': 1,
          'grease': 1,
          '1978': 1,
          'julies': 1,
          'creepy': 1,
          'single': 1,
          'dad': 1,
          'frightened': 1,
          'babysitter': 1,
          'stranger': 1,
          'calls': 1,
          '1979': 1,
          'camps': 1,
          'principal': 1,
          'miss': 1,
          'sherman': 1,
          'nat': 1,
          'times': 1,
          'feels': 1,
          'simply': 1,
          'cinemas': 1,
          'greatest': 1,
          'hits': 1,
          'cheated': 1,
          'watered': 1,
          'interpretations': 1,
          'genre': 1,
          'offer': 1,
          'notable': 1,
          'incredibly': 1,
          'stylish': 1,
          'costume': 1,
          'vickie': 1,
          'brinkford': 1,
          'production': 1,
          'jerry': 1,
          'fleming': 1,
          'bright': 1,
          'vivid': 1,
          'instructed': 1,
          'palette': 1,
          'screen': 1,
          'always': 1,
          'splashed': 1,
          'bits': 1,
          'vibrant': 1,
          'photography': 1,
          'amy': 1,
          'vicent': 1,
          'beautifully': 1,
          'lensed': 1,
          'eves': 1,
          'bayou': 1,
          '1997': 1,
          'remarkable': 1,
          'job': 1,
          'well': 1,
          'nshot': 1,
          'composition': 1,
          'movement': 1,
          'consistently': 1,
          'impressive': 1,
          'nperformances': 1,
          'mostly': 1,
          'subpar': 1,
          'providing': 1,
          'moments': 1,
          'compared': 1,
          'excellent': 1,
          'doom': 1,
          'generation': 1,
          'scream': 1,
          '1996': 1,
          'biggest': 1,
          'due': 1,
          'sweet': 1,
          'nature': 1,
          'character': 1,
          'obvious': 1,
          'beauty': 1,
          'nnone': 1,
          'actors': 1,
          'set': 1,
          'foot': 1,
          'inside': 1,
          'within': 1,
          'last': 1,
          'five': 1,
          'years': 1,
          'exception': 1,
          'actresssinger': 1,
          'small': 1,
          'cheerleader': 1,
          'cast': 1,
          'resemble': 1,
          'models': 1,
          'credited': 1,
          'names': 1,
          'auto': 1,
          'college': 1,
          '2': 1,
          'soundtrack': 1,
          'decent': 1,
          'imperial': 1,
          'teens': 1,
          'catchy': 1,
          'yoo': 1,
          'hoo': 1,
          'makes': 1,
          'bigger': 1,
          'nneg': 1}),
 Counter({'day': 8,
          'film': 7,
          'yang': 6,
          'us': 6,
          'nit': 6,
          'new': 5,
          'first': 5,
          'taiwan': 5,
          'wrong': 5,
          'jiali': 5,
          'nthe': 5,
          'young': 4,
          'one': 4,
          'seems': 4,
          'chang': 3,
          'others': 3,
          'directors': 3,
          'long': 3,
          'career': 3,
          'brother': 3,
          'college': 3,
          'welei': 3,
          'time': 3,
          'marriage': 3,
          'woman': 3,
          'seem': 3,
          'may': 3,
          'know': 2,
          'sylvia': 2,
          'teresa': 2,
          'hu': 2,
          'edward': 2,
          'christopher': 2,
          'wave': 2,
          'longer': 2,
          'work': 2,
          'like': 2,
          'language': 2,
          'nthat': 2,
          'find': 2,
          'modern': 2,
          'antonioni': 2,
          'feel': 2,
          'njiali': 2,
          'focus': 2,
          'husband': 2,
          'married': 2,
          'nat': 2,
          'jialis': 2,
          'nbut': 2,
          'clich': 2,
          'made': 2,
          'never': 2,
          'experience': 2,
          'much': 2,
          'rather': 2,
          'man': 2,
          'problem': 2,
          'marry': 2,
          'would': 2,
          'controversy': 2,
          'enough': 2,
          'terribly': 2,
          'methods': 2,
          'moments': 2,
          'two': 2,
          'moment': 2,
          'nin': 2,
          'none': 2,
          'education': 1,
          'happiness': 1,
          'nstarring': 1,
          'hsu': 1,
          'ming': 1,
          'li': 1,
          'lieh': 1,
          'mao': 1,
          'hsuehwei': 1,
          'directed': 1,
          'written': 1,
          'wu': 1,
          'nienchen': 1,
          'cinematography': 1,
          'doyle': 1,
          'huikung': 1,
          'nevery': 1,
          'country': 1,
          'eventually': 1,
          'nfrance': 1,
          'nouvelle': 1,
          'vague': 1,
          'brazil': 1,
          'cinema': 1,
          'novo': 1,
          'china': 1,
          'fifth': 1,
          'generation': 1,
          'nsome': 1,
          'waves': 1,
          'take': 1,
          'wash': 1,
          'cleansing': 1,
          'balm': 1,
          'discovery': 1,
          'ntaiwans': 1,
          'came': 1,
          '1980s': 1,
          'hou': 1,
          'hsiaohsien': 1,
          'wan': 1,
          'jen': 1,
          'beachyangs': 1,
          'featureis': 1,
          'central': 1,
          'created': 1,
          'taiwanese': 1,
          'even': 1,
          'attempts': 1,
          'speak': 1,
          'hesitant': 1,
          'faltering': 1,
          'nlater': 1,
          'works': 1,
          'refined': 1,
          'techniques': 1,
          'explored': 1,
          'giving': 1,
          'distinctive': 1,
          'international': 1,
          'presence': 1,
          'frustrating': 1,
          'document': 1,
          'nations': 1,
          'attempt': 1,
          'voice': 1,
          'lack': 1,
          'ambition': 1,
          'anatomizes': 1,
          'urban': 1,
          'life': 1,
          'manner': 1,
          'elaborating': 1,
          'alienation': 1,
          'westernized': 1,
          'whitecollar': 1,
          'middleclass': 1,
          'lives': 1,
          'shaped': 1,
          'oldfashioned': 1,
          'rolesdedicated': 1,
          'men': 1,
          'loyal': 1,
          'housewivesthat': 1,
          'unfulfilling': 1,
          'brings': 1,
          'compassher': 1,
          'friends': 1,
          'daysas': 1,
          'charts': 1,
          'discontents': 1,
          'nno': 1,
          'happy': 1,
          'age': 1,
          'urged': 1,
          'arranged': 1,
          'despite': 1,
          'affection': 1,
          'another': 1,
          'seemed': 1,
          'comparison': 1,
          'good': 1,
          'chose': 1,
          'free': 1,
          'loved': 1,
          'goes': 1,
          'dutifully': 1,
          'presents': 1,
          'becomes': 1,
          'absorbed': 1,
          'indulges': 1,
          'affair': 1,
          'coworker': 1,
          'feels': 1,
          'restless': 1,
          'trapped': 1,
          'bound': 1,
          'choice': 1,
          'wise': 1,
          'redeems': 1,
          'conveying': 1,
          'authentic': 1,
          'intensity': 1,
          'lived': 1,
          'pain': 1,
          'trite': 1,
          'belaboured': 1,
          'unfolds': 1,
          'awkwardly': 1,
          'series': 1,
          'flashbacks': 1,
          'told': 1,
          'luncheon': 1,
          'vienna': 1,
          'meets': 1,
          'brothers': 1,
          'old': 1,
          'flame': 1,
          'concert': 1,
          'pianist': 1,
          'seen': 1,
          'since': 1,
          'nboth': 1,
          'women': 1,
          'sad': 1,
          'resigned': 1,
          'sadness': 1,
          'ntheir': 1,
          'circumstances': 1,
          'friend': 1,
          'suggest': 1,
          'choicesmarried': 1,
          'chosen': 1,
          'path': 1,
          'etc': 1,
          'choices': 1,
          'available': 1,
          'inadequate': 1,
          'didnt': 1,
          'needed': 1,
          'alland': 1,
          'still': 1,
          'unhappy': 1,
          'nfor': 1,
          'tells': 1,
          'cards': 1,
          'stacked': 1,
          'dice': 1,
          'loaded': 1,
          'play': 1,
          'game': 1,
          'house': 1,
          'always': 1,
          'wins': 1,
          'films': 1,
          'sympathetic': 1,
          'feminist': 1,
          'implications': 1,
          'presumably': 1,
          'reason': 1,
          'caused': 1,
          'upon': 1,
          'release': 1,
          'nseen': 1,
          'provocative': 1,
          'nindeed': 1,
          'hard': 1,
          'imagine': 1,
          'anyone': 1,
          'felt': 1,
          'passionate': 1,
          'generate': 1,
          'ambitious': 1,
          'innovative': 1,
          'also': 1,
          'dull': 1,
          'nand': 1,
          'necessarily': 1,
          'rest': 1,
          'adopts': 1,
          'established': 1,
          'years': 1,
          'use': 1,
          'fumbling': 1,
          'uncertain': 1,
          'undisciplined': 1,
          'nnor': 1,
          'bring': 1,
          'anything': 1,
          'newother': 1,
          'localeto': 1,
          'material': 1,
          'nthere': 1,
          'takes': 1,
          'emotional': 1,
          'richness': 1,
          'strives': 1,
          'forin': 1,
          'couples': 1,
          'kiss': 1,
          'awkward': 1,
          'meeting': 1,
          'husbands': 1,
          'mistressbut': 1,
          'brief': 1,
          'ntoo': 1,
          'often': 1,
          'devotes': 1,
          'needless': 1,
          'mundane': 1,
          'scenesgrocery': 1,
          'shopping': 1,
          'flowerarrangingin': 1,
          'nothing': 1,
          'happens': 1,
          'little': 1,
          'said': 1,
          'emotion': 1,
          'imparted': 1,
          'nperhaps': 1,
          'content': 1,
          'reflective': 1,
          'inward': 1,
          'leaving': 1,
          'guess': 1,
          'thoughts': 1,
          'feelings': 1,
          'might': 1,
          'ambiguous': 1,
          'suggestive': 1,
          'insinuating': 1,
          'disaffected': 1,
          'companions': 1,
          'brood': 1,
          'silence': 1,
          'talk': 1,
          'problems': 1,
          'length': 1,
          'detail': 1,
          'redundantly': 1,
          'eliminate': 1,
          'subtleties': 1,
          'hours': 1,
          'fortyfive': 1,
          'minutes': 1,
          'exorbitantly': 1,
          'indulgently': 1,
          'longwinded': 1,
          'nconsider': 1,
          'defining': 1,
          'titular': 1,
          'beach': 1,
          'thrust': 1,
          'whole': 1,
          'explains': 1,
          'easily': 1,
          'think': 1,
          'means': 1,
          'walks': 1,
          'away': 1,
          'particular': 1,
          'situation': 1,
          'neven': 1,
          'characters': 1,
          'explain': 1,
          'verbally': 1,
          'case': 1,
          'missed': 1,
          'point': 1,
          'nneedless': 1,
          'devoted': 1,
          'expressing': 1,
          'remained': 1,
          'unexpressed': 1,
          'throughout': 1,
          'look': 1,
          'tedious': 1,
          'drawnout': 1,
          'narrative': 1,
          'feature': 1,
          'shot': 1,
          'doyleat': 1,
          'least': 1,
          'name': 1,
          'creditswho': 1,
          'rightly': 1,
          'regarded': 1,
          'worlds': 1,
          'leading': 1,
          'cinematographers': 1,
          'freewheeling': 1,
          'expressionism': 1,
          'chen': 1,
          'kaige': 1,
          'wong': 1,
          'karwai': 1,
          'incapable': 1,
          'fashioning': 1,
          'boring': 1,
          'image': 1,
          'nyou': 1,
          'watching': 1,
          'due': 1,
          'either': 1,
          'doyles': 1,
          'inexperience': 1,
          'yangs': 1,
          'humdrum': 1,
          'direction': 1,
          'almost': 1,
          'perverse': 1,
          'insistence': 1,
          'making': 1,
          'physical': 1,
          'environment': 1,
          'drab': 1,
          'banal': 1,
          'possible': 1,
          'scrutinizing': 1,
          'decay': 1,
          'manages': 1,
          'capture': 1,
          'ennui': 1,
          'damage': 1,
          'heartbreak': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'one': 8,
          'first': 6,
          'still': 6,
          'film': 6,
          'know': 5,
          'ni': 4,
          'nthe': 4,
          'julie': 4,
          'time': 4,
          'last': 3,
          'two': 3,
          'even': 3,
          'guess': 3,
          'kind': 3,
          'trying': 3,
          'booth': 3,
          'really': 3,
          'summer': 2,
          'nif': 2,
          'five': 2,
          'said': 2,
          'hey': 2,
          'minute': 2,
          'hold': 2,
          'fact': 2,
          'slasher': 2,
          'good': 2,
          'least': 2,
          'didnt': 2,
          'like': 2,
          'sequel': 2,
          'hard': 2,
          'start': 2,
          'setting': 2,
          'reason': 2,
          'fisherman': 2,
          'go': 2,
          'get': 2,
          'nin': 2,
          'scene': 2,
          'slicker': 2,
          'tries': 2,
          'friends': 2,
          'thing': 2,
          'minutes': 2,
          'another': 2,
          'characters': 2,
          'best': 2,
          'films': 2,
          'cool': 2,
          'jeffrey': 2,
          'kevin': 2,
          'williamson': 2,
          'scream': 2,
          'horror': 2,
          'think': 2,
          'movies': 2,
          'long': 1,
          'list': 1,
          'things': 1,
          'wrong': 1,
          'title': 1,
          'nthink': 1,
          'second': 1,
          'called': 1,
          'wouldnt': 1,
          'next': 1,
          'summers': 1,
          'ago': 1,
          'anyone': 1,
          'working': 1,
          'q': 1,
          'ngreater': 1,
          'would': 1,
          'thought': 1,
          'logically': 1,
          'nwait': 1,
          'nbut': 1,
          'alas': 1,
          'people': 1,
          'behind': 1,
          'obviously': 1,
          'idiots': 1,
          'wont': 1,
          'nwhat': 1,
          'pretty': 1,
          'bad': 1,
          'hands': 1,
          'teenage': 1,
          'flick': 1,
          'im': 1,
          'critics': 1,
          'actually': 1,
          'liked': 1,
          'original': 1,
          'emphasis': 1,
          'nit': 1,
          'wasnt': 1,
          'great': 1,
          'anything': 1,
          'maybe': 1,
          'necessarily': 1,
          'glancing': 1,
          'watch': 1,
          'every': 1,
          'nthere': 1,
          'many': 1,
          'problems': 1,
          'figure': 1,
          'nfirst': 1,
          'offers': 1,
          'rational': 1,
          'take': 1,
          'place': 1,
          'bahamas': 1,
          'producers': 1,
          'wanted': 1,
          'seaside': 1,
          'nexactly': 1,
          'want': 1,
          'trouble': 1,
          'faking': 1,
          'radio': 1,
          'contest': 1,
          'james': 1,
          'jennifer': 1,
          'love': 1,
          'hewitt': 1,
          'survivors': 1,
          'new': 1,
          'college': 1,
          'buddies': 1,
          'islands': 1,
          'hacks': 1,
          'suffers': 1,
          'logic': 1,
          'way': 1,
          'tanning': 1,
          'deserted': 1,
          'gym': 1,
          'hooked': 1,
          'comes': 1,
          'seals': 1,
          'damsel': 1,
          'distress': 1,
          'cant': 1,
          'matter': 1,
          'nwhen': 1,
          'discovers': 1,
          'shes': 1,
          'going': 1,
          'slowly': 1,
          'fry': 1,
          'death': 1,
          'screams': 1,
          'help': 1,
          'come': 1,
          'rescue': 1,
          'nnow': 1,
          'fine': 1,
          'dandy': 1,
          'except': 1,
          'instead': 1,
          'spending': 1,
          'bust': 1,
          'open': 1,
          'turn': 1,
          'freakin': 1,
          'significant': 1,
          'decapitated': 1,
          'man': 1,
          'says': 1,
          'dont': 1,
          'tell': 1,
          'anybody': 1,
          'rained': 1,
          'whole': 1,
          'noh': 1,
          'yeah': 1,
          'ive': 1,
          'terrorized': 1,
          'hook': 1,
          'wielding': 1,
          'sociopath': 1,
          'gruesomely': 1,
          'slaughtered': 1,
          'ill': 1,
          'crack': 1,
          'jokes': 1,
          'anyway': 1,
          'nafter': 1,
          'script': 1,
          'saving': 1,
          'graces': 1,
          'wellexecuted': 1,
          'suspense': 1,
          'sequences': 1,
          'cameo': 1,
          'reanimator': 1,
          'combs': 1,
          'nhe': 1,
          'brings': 1,
          'comic': 1,
          'relief': 1,
          'life': 1,
          'otherwise': 1,
          'limp': 1,
          'nway': 1,
          'hunch': 1,
          'fizzles': 1,
          'kept': 1,
          'head': 1,
          'water': 1,
          'recent': 1,
          'absence': 1,
          'writer': 1,
          'nwith': 1,
          'displayed': 1,
          'real': 1,
          'talent': 1,
          'screenwriter': 1,
          'nhis': 1,
          'ear': 1,
          'dialogue': 1,
          'terrific': 1,
          'endings': 1,
          'puts': 1,
          'make': 1,
          'standout': 1,
          'rest': 1,
          'writers': 1,
          'suffered': 1,
          'board': 1,
          'atmosphere': 1,
          'around': 1,
          'writing': 1,
          'much': 1,
          'neven': 1,
          'though': 1,
          'doesnt': 1,
          'hacky': 1,
          'ending': 1,
          'may': 1,
          'consider': 1,
          'spoiler': 1,
          'seen': 1,
          'whatsoever': 1,
          'able': 1,
          'identity': 1,
          'madman': 1,
          'within': 1,
          'twenty': 1,
          'killers': 1,
          'family': 1,
          'member': 1,
          'someone': 1,
          'audience': 1,
          'put': 1,
          'ended': 1,
          'killer': 1,
          'back': 1,
          'ncliffhanger': 1,
          'grandma': 1,
          'nall': 1,
          'successful': 1,
          'fails': 1,
          'attempt': 1,
          'mean': 1,
          'okay': 1,
          'ripoff': 1,
          'copying': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'film': 6,
          'school': 6,
          'original': 5,
          'time': 5,
          'doesnt': 4,
          'high': 4,
          'carrie': 4,
          'theres': 3,
          'story': 3,
          'mother': 3,
          'none': 3,
          'sue': 3,
          'one': 3,
          'nthere': 2,
          'need': 2,
          'even': 2,
          'word': 2,
          'minor': 2,
          'changes': 2,
          'nthis': 2,
          'nrachel': 2,
          'beginning': 2,
          'around': 2,
          'mental': 2,
          'problems': 2,
          'points': 2,
          'casting': 2,
          'counselor': 2,
          'rachel': 2,
          'history': 2,
          'disease': 2,
          'powers': 2,
          'red': 2,
          'nothing': 1,
          'new': 1,
          'sun': 1,
          'phrase': 1,
          'often': 1,
          'used': 1,
          'speaker': 1,
          'actually': 1,
          'means': 1,
          'lets': 1,
          'find': 1,
          'something': 1,
          'copy': 1,
          'nof': 1,
          'course': 1,
          'completely': 1,
          'ideas': 1,
          'neven': 1,
          'earthshattering': 1,
          'concepts': 1,
          'built': 1,
          'upon': 1,
          'vast': 1,
          'body': 1,
          'human': 1,
          'experience': 1,
          'reinvent': 1,
          'wheel': 1,
          'nrecently': 1,
          'seems': 1,
          'hollywood': 1,
          'feel': 1,
          'rewrite': 1,
          'script': 1,
          'nmy': 1,
          'understanding': 1,
          'sequel': 1,
          'continuation': 1,
          'industry': 1,
          'defined': 1,
          'mean': 1,
          'reshooting': 1,
          'nhave': 1,
          'overwhelming': 1,
          'desire': 1,
          'see': 1,
          'inferior': 1,
          'version': 1,
          'brian': 1,
          'depalmas': 1,
          'adaptation': 1,
          'steven': 1,
          'king': 1,
          'novel': 1,
          'dream': 1,
          'come': 1,
          'true': 1,
          'emily': 1,
          'bergl': 1,
          'outcast': 1,
          'notice': 1,
          'weird': 1,
          'things': 1,
          'happening': 1,
          'ndoors': 1,
          'slam': 1,
          'shut': 1,
          'nglass': 1,
          'globes': 1,
          'blow': 1,
          'nher': 1,
          'severe': 1,
          'father': 1,
          'absent': 1,
          'na': 1,
          'popular': 1,
          'boy': 1,
          'unexpectedly': 1,
          'asks': 1,
          'incrowd': 1,
          'conspires': 1,
          'embarrass': 1,
          'public': 1,
          'event': 1,
          'nany': 1,
          'sound': 1,
          'familiar': 1,
          'nonce': 1,
          'audience': 1,
          'catches': 1,
          'little': 1,
          'wait': 1,
          'inevitable': 1,
          'ending': 1,
          'effects': 1,
          'bit': 1,
          'better': 1,
          'work': 1,
          'nearly': 1,
          'well': 1,
          'couple': 1,
          'plot': 1,
          'differences': 1,
          'lives': 1,
          'foster': 1,
          'parents': 1,
          'institutionalized': 1,
          'boys': 1,
          'portrayed': 1,
          'evil': 1,
          'nthey': 1,
          'keep': 1,
          'score': 1,
          'scoring': 1,
          'given': 1,
          'conquest': 1,
          'nand': 1,
          'uh': 1,
          'must': 1,
          'stand': 1,
          'nice': 1,
          'touch': 1,
          'amy': 1,
          'irving': 1,
          'snell': 1,
          'nover': 1,
          '20': 1,
          'years': 1,
          'ago': 1,
          'girl': 1,
          'tried': 1,
          'help': 1,
          'nnow': 1,
          'befriends': 1,
          'characters': 1,
          'potential': 1,
          'squandered': 1,
          'ntheres': 1,
          'much': 1,
          'make': 1,
          'sense': 1,
          'nafter': 1,
          'slaughter': 1,
          'kills': 1,
          'classmates': 1,
          'driven': 1,
          'mad': 1,
          'spends': 1,
          'institution': 1,
          'rachels': 1,
          'nstill': 1,
          'living': 1,
          'small': 1,
          'town': 1,
          'woman': 1,
          'wellknown': 1,
          'hired': 1,
          'nsue': 1,
          'tells': 1,
          'telekinesis': 1,
          'genetic': 1,
          'may': 1,
          'idea': 1,
          'reasoning': 1,
          'behind': 1,
          'describing': 1,
          'psychic': 1,
          'never': 1,
          'explained': 1,
          'nsues': 1,
          'eventual': 1,
          'fate': 1,
          'admission': 1,
          'director': 1,
          'katt': 1,
          'shea': 1,
          'writer': 1,
          'rafael': 1,
          'moreu': 1,
          'interesting': 1,
          'character': 1,
          'couldnt': 1,
          'figure': 1,
          'nblink': 1,
          'youll': 1,
          'miss': 1,
          'nsome': 1,
          'events': 1,
          'filmed': 1,
          'black': 1,
          'white': 1,
          'rationale': 1,
          'unknown': 1,
          'nit': 1,
          'add': 1,
          'anything': 1,
          'choice': 1,
          'scenes': 1,
          'appears': 1,
          'somewhat': 1,
          'random': 1,
          'n': 1,
          'rage': 1,
          'retains': 1,
          'trappings': 1,
          'without': 1,
          'meaning': 1,
          'nin': 1,
          'first': 1,
          'color': 1,
          'motif': 1,
          'connected': 1,
          'carries': 1,
          'onset': 1,
          'began': 1,
          'menstruating': 1,
          'nhere': 1,
          'abundance': 1,
          'apparent': 1,
          'purpose': 1,
          'jocks': 1,
          'cheerleaders': 1,
          'villains': 1,
          'wear': 1,
          'thin': 1,
          'might': 1,
          'lead': 1,
          'suspect': 1,
          'filmmakers': 1,
          'unpopular': 1,
          'teenage': 1,
          'films': 1,
          'extended': 1,
          'cinematic': 1,
          'revenge': 1,
          'nerds': 1,
          'biggest': 1,
          'mistake': 1,
          'makes': 1,
          'including': 1,
          'clips': 1,
          'nseeing': 1,
          'sissy': 1,
          'spacek': 1,
          'screen': 1,
          'quality': 1,
          'flaws': 1,
          'nneg': 1}),
 Counter({'one': 4,
          'nthe': 4,
          'jazz': 3,
          'mack': 3,
          'race': 3,
          'wendys': 3,
          'may': 3,
          'story': 3,
          'two': 3,
          'script': 3,
          'away': 3,
          'samantha': 2,
          'press': 2,
          'singer': 2,
          'hugo': 2,
          'criminal': 2,
          'rock': 2,
          'cops': 2,
          'sweeney': 2,
          'john': 2,
          'flaus': 2,
          'corruption': 2,
          'elmaloglou': 2,
          'night': 2,
          'love': 2,
          'main': 2,
          'problem': 2,
          'really': 2,
          'work': 2,
          'cast': 2,
          'sexy': 2,
          'hell': 2,
          'rest': 2,
          'ultimately': 2,
          'scenes': 2,
          'doubt': 2,
          'isnt': 2,
          'either': 2,
          'idea': 2,
          'could': 2,
          'seems': 2,
          'good': 2,
          'least': 2,
          'final': 2,
          'deep': 2,
          'like': 2,
          'doesnt': 2,
          'reason': 2,
          'nit': 2,
          'plot': 1,
          'outline': 1,
          'wendy': 1,
          'loves': 1,
          'wan': 1,
          'na': 1,
          'whos': 1,
          'planning': 1,
          'bank': 1,
          'heist': 1,
          'nmack': 1,
          'also': 1,
          'tailed': 1,
          'couple': 1,
          'inexperienced': 1,
          'rookie': 1,
          'dominic': 1,
          'worn': 1,
          'veteran': 1,
          'frequents': 1,
          'club': 1,
          'ntheyre': 1,
          'tailing': 1,
          'audiotape': 1,
          'show': 1,
          'evidence': 1,
          'governmental': 1,
          'nmeanwhile': 1,
          'sexually': 1,
          'awakener': 1,
          'fifteen': 1,
          'year': 1,
          'old': 1,
          'sister': 1,
          'rebecca': 1,
          'moved': 1,
          'secretly': 1,
          'watching': 1,
          'late': 1,
          'trysts': 1,
          'much': 1,
          'zaniness': 1,
          'ensues': 1,
          'review': 1,
          'first': 1,
          '2': 1,
          'rood': 1,
          'star': 1,
          'actor': 1,
          'conversions': 1,
          'filmdom': 1,
          'ever': 1,
          'nunfortunately': 1,
          'trying': 1,
          'violent': 1,
          'falls': 1,
          'thinking': 1,
          'category': 1,
          'takes': 1,
          '98': 1,
          'nbut': 1,
          'hes': 1,
          'wellintentioned': 1,
          'average': 1,
          'aussie': 1,
          'thriller': 1,
          'nleads': 1,
          'wooden': 1,
          'dull': 1,
          'hampered': 1,
          'unfortunate': 1,
          'attempts': 1,
          'dialogue': 1,
          'early': 1,
          'nthough': 1,
          'manage': 1,
          'heat': 1,
          'later': 1,
          'helped': 1,
          'keeping': 1,
          'mouths': 1,
          'shut': 1,
          'film': 1,
          'suffers': 1,
          'every': 1,
          'time': 1,
          'shifts': 1,
          'back': 1,
          'nwhich': 1,
          'unfortunately': 1,
          'great': 1,
          'shakes': 1,
          'second': 1,
          'part': 1,
          'concerning': 1,
          'political': 1,
          'elusive': 1,
          'tape': 1,
          'incredibly': 1,
          'muddled': 1,
          'nat': 1,
          'many': 1,
          'points': 1,
          'movie': 1,
          'going': 1,
          'situation': 1,
          'didnt': 1,
          'improve': 1,
          'repeated': 1,
          'viewing': 1,
          'nthere': 1,
          'films': 1,
          'achilles': 1,
          'heel': 1,
          'nas': 1,
          'mixed': 1,
          'bag': 1,
          'njohn': 1,
          'australias': 1,
          'criminally': 1,
          'underused': 1,
          'actors': 1,
          'top': 1,
          'form': 1,
          'withering': 1,
          'alcoholic': 1,
          'fan': 1,
          'cop': 1,
          'sold': 1,
          'highest': 1,
          'bidder': 1,
          'nalthough': 1,
          'falters': 1,
          'point': 1,
          'calls': 1,
          'get': 1,
          'stage': 1,
          'deliver': 1,
          'drunken': 1,
          'beat': 1,
          'sermon': 1,
          'believe': 1,
          'way': 1,
          'written': 1,
          'pulled': 1,
          'ndominic': 1,
          'fine': 1,
          'though': 1,
          'uneasy': 1,
          'front': 1,
          'lens': 1,
          'given': 1,
          'whole': 1,
          'lot': 1,
          'npre': 1,
          'home': 1,
          'pretty': 1,
          'inquisitive': 1,
          'jojo': 1,
          'character': 1,
          'extraneous': 1,
          'well': 1,
          'ni': 1,
          'must': 1,
          'admit': 1,
          'impressive': 1,
          'qualities': 1,
          'visual': 1,
          'element': 1,
          'ncinematographers': 1,
          'mark': 1,
          'gilfedder': 1,
          'peter': 1,
          'zakharov': 1,
          'achieved': 1,
          'almost': 1,
          'impossible': 1,
          'making': 1,
          'melbourne': 1,
          'look': 1,
          'sweat': 1,
          'drenched': 1,
          'tropic': 1,
          'city': 1,
          'akin': 1,
          'turning': 1,
          'london': 1,
          'san': 1,
          'paolo': 1,
          'bar': 1,
          'oppressive': 1,
          'red': 1,
          'patrons': 1,
          'baked': 1,
          'drink': 1,
          'outside': 1,
          'hazy': 1,
          'orange': 1,
          'day': 1,
          'cool': 1,
          'blue': 1,
          'nif': 1,
          'deborah': 1,
          'parsons': 1,
          'supported': 1,
          'better': 1,
          'nhaving': 1,
          'directors': 1,
          'colin': 1,
          'south': 1,
          'tatoulis': 1,
          'help': 1,
          'glaring': 1,
          'example': 1,
          'retributionfight': 1,
          'scene': 1,
          'camera': 1,
          'pulls': 1,
          'onscreen': 1,
          'action': 1,
          'importantly': 1,
          'pull': 1,
          'anything': 1,
          'else': 1,
          'stays': 1,
          'static': 1,
          'fight': 1,
          'happens': 1,
          'distance': 1,
          'bad': 1,
          'direction': 1,
          'nand': 1,
          'sums': 1,
          'tries': 1,
          'want': 1,
          'lacking': 1,
          'talent': 1,
          'behind': 1,
          'needs': 1,
          'succeed': 1,
          'nneg': 1}),
 Counter({'patch': 8,
          'film': 5,
          'school': 5,
          'adams': 4,
          'medical': 4,
          'end': 3,
          'williams': 3,
          'court': 3,
          'people': 3,
          'much': 3,
          'takes': 3,
          'movie': 3,
          'scene': 2,
          'robin': 2,
          'captain': 2,
          'room': 2,
          'near': 2,
          'nits': 2,
          'finds': 2,
          'helping': 2,
          'hospital': 2,
          'scenes': 2,
          'start': 2,
          'dean': 2,
          'clinic': 2,
          'like': 2,
          '1989s': 1,
          'dead': 1,
          'poets': 1,
          'society': 1,
          'english': 1,
          'students': 1,
          'stand': 1,
          'desk': 1,
          'say': 1,
          'gets': 1,
          'every': 1,
          'time': 1,
          'nunfortunately': 1,
          'robins': 1,
          'newest': 1,
          'doesnt': 1,
          'anywhere': 1,
          'impact': 1,
          'nfrom': 1,
          'surface': 1,
          'looks': 1,
          'promising': 1,
          'story': 1,
          'young': 1,
          'man': 1,
          'meaning': 1,
          'life': 1,
          'sick': 1,
          'nwhen': 1,
          'opens': 1,
          'find': 1,
          'depressed': 1,
          'suicidal': 1,
          'checking': 1,
          'mental': 1,
          'nin': 1,
          'strongly': 1,
          'reminiscent': 1,
          'one': 1,
          'flew': 1,
          'cuckoos': 1,
          'nest': 1,
          'ends': 1,
          'patients': 1,
          'problems': 1,
          'loves': 1,
          'working': 1,
          'nso': 1,
          'checks': 1,
          'heads': 1,
          'straight': 1,
          'nright': 1,
          'uses': 1,
          'comedy': 1,
          'help': 1,
          'make': 1,
          'patient': 1,
          'comfortable': 1,
          'nhe': 1,
          'continuously': 1,
          'breaks': 1,
          'tradition': 1,
          'makes': 1,
          'angry': 1,
          'nshortly': 1,
          'joining': 1,
          'meets': 1,
          'falls': 1,
          'love': 1,
          'carin': 1,
          'monica': 1,
          'potter': 1,
          'nthey': 1,
          'along': 1,
          'patchs': 1,
          'dork': 1,
          'friend': 1,
          'truman': 1,
          'daniel': 1,
          'london': 1,
          'uninsured': 1,
          'nonce': 1,
          'catches': 1,
          'wind': 1,
          'tells': 1,
          'cant': 1,
          'graduate': 1,
          'kicks': 1,
          'npatch': 1,
          'true': 1,
          'american': 1,
          'would': 1,
          'climatic': 1,
          'battle': 1,
          'place': 1,
          'whether': 1,
          'become': 1,
          'real': 1,
          'doctor': 1,
          'ni': 1,
          'never': 1,
          'seen': 1,
          'potential': 1,
          'completely': 1,
          'blow': 1,
          'nit': 1,
          'seems': 1,
          'series': 1,
          'short': 1,
          'sketches': 1,
          'rather': 1,
          'fulllength': 1,
          'nconsidering': 1,
          'runs': 1,
          'almost': 1,
          'two': 1,
          'hours': 1,
          'long': 1,
          'light': 1,
          'could': 1,
          'flowed': 1,
          'smoother': 1,
          'nnot': 1,
          'mention': 1,
          'fact': 1,
          'serious': 1,
          'manages': 1,
          'cover': 1,
          'cliches': 1,
          'bad': 1,
          'melodrama': 1,
          'nrobin': 1,
          'saves': 1,
          'abysmal': 1,
          'several': 1,
          'comic': 1,
          'elevate': 1,
          'entertaining': 1,
          'worthwhile': 1,
          'levels': 1,
          'nbut': 1,
          'moments': 1,
          'rare': 1,
          'barely': 1,
          'average': 1,
          'nneg': 1}),
 Counter({'blonde': 8,
          'real': 6,
          'soap': 4,
          'actor': 3,
          'bob': 3,
          'another': 3,
          'face': 2,
          'nas': 2,
          'woman': 2,
          'head': 2,
          'nif': 2,
          'njoe': 2,
          'relationship': 2,
          'mary': 2,
          'keener': 2,
          'nthe': 2,
          'bottle': 2,
          'caulfield': 2,
          'characters': 2,
          'henry': 2,
          'leary': 2,
          'joes': 2,
          'lloyd': 2,
          'dicillo': 2,
          'nand': 2,
          'point': 2,
          'going': 2,
          'gets': 2,
          'unsatisfied': 2,
          'digressions': 2,
          'r': 1,
          'womans': 1,
          'arm': 1,
          'pumpedup': 1,
          'pectorals': 1,
          'blond': 1,
          'hair': 1,
          'mans': 1,
          'sad': 1,
          'slender': 1,
          'legs': 1,
          'random': 1,
          'hand': 1,
          'opening': 1,
          'credits': 1,
          'tom': 1,
          'dicillos': 1,
          'unfold': 1,
          'scattered': 1,
          'fractured': 1,
          'glimpses': 1,
          'eventually': 1,
          'come': 1,
          'together': 1,
          'form': 1,
          'image': 1,
          'bikini': 1,
          'briefclad': 1,
          'man': 1,
          'knees': 1,
          'clinging': 1,
          'nurturing': 1,
          'concealing': 1,
          'unclothed': 1,
          'breasts': 1,
          'rest': 1,
          'formless': 1,
          'aimless': 1,
          'ensemble': 1,
          'comedy': 1,
          'assembled': 1,
          'coherently': 1,
          'matthew': 1,
          'modine': 1,
          'waiterstruggling': 1,
          'proud': 1,
          'take': 1,
          'gigs': 1,
          'commercials': 1,
          'operas': 1,
          'nhes': 1,
          'feeling': 1,
          'somewhat': 1,
          'dissatisfied': 1,
          'livein': 1,
          'love': 1,
          'catherine': 1,
          'holds': 1,
          'subconscious': 1,
          'hostility': 1,
          'toward': 1,
          'male': 1,
          'gender': 1,
          'nmary': 1,
          'makeup': 1,
          'artist': 1,
          'regularly': 1,
          'works': 1,
          'model': 1,
          'sahara': 1,
          'bridgette': 1,
          'wilson': 1,
          'obsessed': 1,
          'underlying': 1,
          'messages': 1,
          'disneys': 1,
          'little': 1,
          'mermaid': 1,
          'turbulent': 1,
          'onagain': 1,
          'offagain': 1,
          'maxwell': 1,
          'yearns': 1,
          'taste': 1,
          'finds': 1,
          'costar': 1,
          'kelly': 1,
          'daryl': 1,
          'hannah': 1,
          'film': 1,
          'unspools': 1,
          'variety': 1,
          'pass': 1,
          'fashion': 1,
          'photographer': 1,
          'blair': 1,
          'marlo': 1,
          'thomas': 1,
          'marys': 1,
          'shrink': 1,
          'buck': 1,
          'selfdefense': 1,
          'instructor': 1,
          'denis': 1,
          'casting': 1,
          'agent': 1,
          'kathleen': 1,
          'turner': 1,
          'hardass': 1,
          'boss': 1,
          'christopher': 1,
          'mystery': 1,
          'elizabeth': 1,
          'berkley': 1,
          'keeps': 1,
          'crossing': 1,
          'path': 1,
          'nwhere': 1,
          'exactly': 1,
          'go': 1,
          'nthats': 1,
          'question': 1,
          'best': 1,
          'posed': 1,
          'writerdirector': 1,
          'doesnt': 1,
          'appear': 1,
          'slightest': 1,
          'clue': 1,
          'nhis': 1,
          'meandering': 1,
          'largely': 1,
          'unfunny': 1,
          'script': 1,
          'direction': 1,
          'like': 1,
          'hopelessly': 1,
          'lost': 1,
          'drivers': 1,
          'turning': 1,
          'deadend': 1,
          'narrative': 1,
          'streets': 1,
          'reverse': 1,
          'course': 1,
          'hit': 1,
          'creative': 1,
          'culdesac': 1,
          'nat': 1,
          'one': 1,
          'frustrated': 1,
          'scripts': 1,
          'complains': 1,
          'writer': 1,
          'jim': 1,
          'fyfe': 1,
          'kellys': 1,
          'keep': 1,
          'circles': 1,
          'hint': 1,
          'development': 1,
          'growth': 1,
          'nthat': 1,
          'certainly': 1,
          'case': 1,
          'job': 1,
          'ultimately': 1,
          'botches': 1,
          'things': 1,
          'bicker': 1,
          'make': 1,
          'pattern': 1,
          'repeat': 1,
          'nunhappy': 1,
          'returns': 1,
          'faux': 1,
          'still': 1,
          'dances': 1,
          'around': 1,
          'spending': 1,
          'time': 1,
          'apparent': 1,
          'turns': 1,
          'arent': 1,
          'without': 1,
          'amusements': 1,
          'nit': 1,
          'occasional': 1,
          'funny': 1,
          'line': 1,
          'situation': 1,
          'steve': 1,
          'buscemi': 1,
          'dave': 1,
          'chappelle': 1,
          'shine': 1,
          'small': 1,
          'roles': 1,
          'likable': 1,
          'refreshingly': 1,
          'earthy': 1,
          'lead': 1,
          'berkleys': 1,
          'appearance': 1,
          'mercifully': 1,
          'brief': 1,
          'receives': 1,
          'outrageously': 1,
          'prominent': 1,
          'billing': 1,
          'ad': 1,
          'placement': 1,
          'tenminute': 1,
          'role': 1,
          'irony': 1,
          'play': 1,
          'wildly': 1,
          'popular': 1,
          'star': 1,
          'makes': 1,
          'ratings': 1,
          'skyrocket': 1,
          'last': 1,
          'year': 1,
          'fired': 1,
          'daytime': 1,
          'drama': 1,
          'children': 1,
          'scant': 1,
          'six': 1,
          'monthsdue': 1,
          'lack': 1,
          'viewer': 1,
          'interest': 1,
          'nbut': 1,
          'whole': 1,
          'frustrating': 1,
          'sit': 1,
          'lives': 1,
          'stereotypes': 1,
          'titleit': 1,
          'may': 1,
          'glossy': 1,
          'surface': 1,
          'theres': 1,
          'nothing': 1,
          'inside': 1,
          'n': 1,
          'opens': 1,
          'february': 1,
          '27': 1,
          'nneg': 1}),
 Counter({'snowman': 9,
          'jack': 8,
          'film': 8,
          'frost': 7,
          'charlie': 6,
          'christmas': 5,
          'one': 4,
          'son': 4,
          'time': 4,
          'would': 4,
          'family': 3,
          'since': 3,
          'play': 3,
          'home': 3,
          'year': 3,
          'father': 3,
          'n': 3,
          'better': 3,
          'least': 2,
          'nthis': 2,
          'come': 2,
          'njack': 2,
          'keaton': 2,
          'gabby': 2,
          'kelly': 2,
          'preston': 2,
          'cross': 2,
          'doesnt': 2,
          'spend': 2,
          'enough': 2,
          'nwhen': 2,
          'wants': 2,
          'way': 2,
          'still': 2,
          'difficult': 2,
          'coming': 2,
          'jacks': 2,
          'death': 2,
          'tries': 2,
          'works': 2,
          'work': 2,
          'nsince': 2,
          'think': 2,
          'watch': 2,
          'movie': 2,
          'nthe': 2,
          'like': 2,
          'ni': 2,
          'life': 2,
          'parent': 2,
          'becomes': 2,
          'story': 2,
          'da': 2,
          'dumb': 1,
          'corny': 1,
          'concoctions': 1,
          'attempts': 1,
          'heartwarming': 1,
          'muddled': 1,
          'cliches': 1,
          'predictability': 1,
          'bit': 1,
          'touching': 1,
          'surprise': 1,
          'studio': 1,
          'made': 1,
          'warner': 1,
          'brothers': 1,
          'current': 1,
          'streak': 1,
          'bad': 1,
          'michael': 1,
          'struggling': 1,
          'middleaged': 1,
          'rock': 1,
          'musician': 1,
          'loves': 1,
          'wife': 1,
          '11yearold': 1,
          'joseph': 1,
          'nearly': 1,
          'receives': 1,
          'call': 1,
          'music': 1,
          'label': 1,
          'hear': 1,
          'cancel': 1,
          'planned': 1,
          'outing': 1,
          'mountains': 1,
          'nhalfway': 1,
          'second': 1,
          'thoughts': 1,
          'back': 1,
          'car': 1,
          'accident': 1,
          'dies': 1,
          'nswitch': 1,
          'forward': 1,
          'approaching': 1,
          'terms': 1,
          'begins': 1,
          'harmonica': 1,
          'gave': 1,
          'night': 1,
          'died': 1,
          'outside': 1,
          'house': 1,
          'taken': 1,
          'spirit': 1,
          'upcoming': 1,
          'warm': 1,
          'front': 1,
          'melts': 1,
          'desperately': 1,
          'prevent': 1,
          'melting': 1,
          'demise': 1,
          'frosty': 1,
          'classic': 1,
          'cartoon': 1,
          'idea': 1,
          'alive': 1,
          'splendidly': 1,
          'animated': 1,
          'liveaction': 1,
          'nafter': 1,
          'somewhat': 1,
          'promising': 1,
          'prologue': 1,
          'established': 1,
          'quickly': 1,
          'goes': 1,
          'downhill': 1,
          'especially': 1,
          'comes': 1,
          'deceased': 1,
          'whole': 1,
          'many': 1,
          'questions': 1,
          'ask': 1,
          'happens': 1,
          'die': 1,
          'feel': 1,
          'nbut': 1,
          'instead': 1,
          'focuses': 1,
          'snowball': 1,
          'fight': 1,
          'subplot': 1,
          'inevitably': 1,
          'oversentimental': 1,
          'climax': 1,
          'could': 1,
          'telegraphed': 1,
          'even': 1,
          'sat': 1,
          'performances': 1,
          'respectable': 1,
          'deserves': 1,
          'punished': 1,
          'appearing': 1,
          'silly': 1,
          'nmichael': 1,
          'got': 1,
          'easy': 1,
          'disappears': 1,
          'first': 1,
          'twenty': 1,
          'minutes': 1,
          'exactly': 1,
          'career': 1,
          'always': 1,
          'liked': 1,
          'nshe': 1,
          'clearly': 1,
          'talented': 1,
          'charismatic': 1,
          'actress': 1,
          'never': 1,
          'given': 1,
          'good': 1,
          'role': 1,
          'usually': 1,
          'settle': 1,
          'onedimensional': 1,
          'supporting': 1,
          'character': 1,
          '1997s': 1,
          'nothing': 1,
          'lose': 1,
          'addicted': 1,
          'love': 1,
          'njoseph': 1,
          'probably': 1,
          'highlight': 1,
          'cast': 1,
          'believably': 1,
          'portrayed': 1,
          'boy': 1,
          'suffering': 1,
          'loss': 1,
          'nin': 1,
          'subplots': 1,
          'actually': 1,
          'due': 1,
          'wittiness': 1,
          'henry': 1,
          'rollins': 1,
          'highly': 1,
          'amusing': 1,
          'hockey': 1,
          'coach': 1,
          'terrified': 1,
          'paranoid': 1,
          'seeing': 1,
          'live': 1,
          'brief': 1,
          'hint': 1,
          'cleverness': 1,
          'pushed': 1,
          'side': 1,
          'however': 1,
          'triedandtrue': 1,
          'main': 1,
          'plot': 1,
          'hand': 1,
          'sappy': 1,
          'knew': 1,
          'going': 1,
          'happen': 1,
          'conclusion': 1,
          'came': 1,
          'around': 1,
          'choice': 1,
          'sit': 1,
          'listen': 1,
          'painfully': 1,
          'insipid': 1,
          'cringeinducing': 1,
          'lines': 1,
          'dialogue': 1,
          'nsome': 1,
          'favorites': 1,
          'interaction': 1,
          'man': 1,
          'says': 1,
          'replies': 1,
          'little': 1,
          'zinger': 1,
          'school': 1,
          'bully': 1,
          'miraculously': 1,
          'friendly': 1,
          'towards': 1,
          'help': 1,
          'snowdad': 1,
          'dad': 1,
          'ndo': 1,
          'people': 1,
          'really': 1,
          'get': 1,
          'paid': 1,
          'hollywood': 1,
          'writing': 1,
          'pieces': 1,
          'trash': 1,
          'created': 1,
          'john': 1,
          'hensons': 1,
          'creature': 1,
          'shop': 1,
          'believable': 1,
          'last': 1,
          'years': 1,
          'unintentionally': 1,
          'hilarious': 1,
          'directtovideo': 1,
          'horror': 1,
          'flick': 1,
          'also': 1,
          'called': 1,
          'tell': 1,
          'person': 1,
          'suit': 1,
          'computer': 1,
          'effects': 1,
          'neither': 1,
          'awful': 1,
          'lot': 1,
          'go': 1,
          'final': 1,
          'product': 1,
          'featherbrained': 1,
          'project': 1,
          'nas': 1,
          'seasonal': 1,
          'holiday': 1,
          'picture': 1,
          'pretty': 1,
          'much': 1,
          'clunker': 1,
          'na': 1,
          'ill': 1,
          'nbetter': 1,
          'yet': 1,
          'suggestion': 1,
          'stay': 1,
          'quality': 1,
          'wonderful': 1,
          'prancer': 1,
          'earnest': 1,
          'severely': 1,
          'misguided': 1,
          'children': 1,
          'well': 1,
          'adults': 1,
          'deserve': 1,
          'doubt': 1,
          'want': 1,
          'see': 1,
          'anyway': 1,
          'nneg': 1}),
 Counter({'mccoy': 7,
          'karen': 7,
          'real': 6,
          'parole': 4,
          'nthere': 4,
          'one': 4,
          'might': 3,
          'middle': 3,
          'j': 3,
          'also': 3,
          'karens': 3,
          'son': 3,
          'would': 3,
          'end': 3,
          'movies': 2,
          'require': 2,
          'nthen': 2,
          'nthe': 2,
          'film': 2,
          'atlanta': 2,
          'well': 2,
          'basinger': 2,
          'years': 2,
          'later': 2,
          'kilmer': 2,
          'jack': 2,
          'schmidt': 2,
          'nschmidt': 2,
          'officer': 2,
          'fast': 2,
          'character': 2,
          'reason': 2,
          'breakin': 2,
          'day': 2,
          'bad': 2,
          'goes': 2,
          'william': 2,
          'interesting': 2,
          'room': 2,
          'reasonably': 2,
          'scene': 2,
          'good': 2,
          'im': 2,
          'nlike': 2,
          'turn': 1,
          'brain': 1,
          'order': 1,
          'watch': 1,
          'accept': 1,
          'everyone': 1,
          'movie': 1,
          'turned': 1,
          'brains': 1,
          'nits': 1,
          'charmless': 1,
          'molassesslow': 1,
          'full': 1,
          'genuinely': 1,
          'stupid': 1,
          'people': 1,
          'commission': 1,
          'set': 1,
          'consider': 1,
          'sort': 1,
          'ritual': 1,
          'suicide': 1,
          'complicity': 1,
          'humiliation': 1,
          'opens': 1,
          'bank': 1,
          'robber': 1,
          'kim': 1,
          'arrested': 1,
          'job': 1,
          'nsix': 1,
          'looking': 1,
          'stay': 1,
          'straight': 1,
          'nshe': 1,
          'soon': 1,
          'bumps': 1,
          'barker': 1,
          'val': 1,
          'hapless': 1,
          'wouldbe': 1,
          'thief': 1,
          'idolizes': 1,
          'nj': 1,
          'ties': 1,
          'terence': 1,
          'stamp': 1,
          'man': 1,
          'blew': 1,
          'whistle': 1,
          'six': 1,
          'earlier': 1,
          'refusing': 1,
          'work': 1,
          'cahoots': 1,
          'sleazy': 1,
          'gailard': 1,
          'sartain': 1,
          'wants': 1,
          'help': 1,
          'stage': 1,
          'robbery': 1,
          'nthis': 1,
          'time': 1,
          'leverage': 1,
          'kidnapped': 1,
          'njust': 1,
          'thought': 1,
          'keep': 1,
          'pulling': 1,
          'back': 1,
          'ncontrivances': 1,
          'sloppy': 1,
          'plotting': 1,
          'fly': 1,
          'screen': 1,
          'furiously': 1,
          'duck': 1,
          'avoid': 1,
          'hit': 1,
          'nleading': 1,
          'list': 1,
          'unexplained': 1,
          'presumably': 1,
          'foul': 1,
          'mains': 1,
          'already': 1,
          'extremely': 1,
          'wealthy': 1,
          'story': 1,
          'begins': 1,
          'given': 1,
          'need': 1,
          'want': 1,
          'get': 1,
          'involved': 1,
          'another': 1,
          'crime': 1,
          'let': 1,
          'alone': 1,
          'actually': 1,
          'participate': 1,
          'nkarens': 1,
          'initial': 1,
          'encounter': 1,
          'botched': 1,
          'convenience': 1,
          'store': 1,
          'holdup': 1,
          'strains': 1,
          'limits': 1,
          'credibility': 1,
          'nit': 1,
          'simple': 1,
          'enough': 1,
          'somehow': 1,
          'entangled': 1,
          'point': 1,
          'instead': 1,
          'run': 1,
          'next': 1,
          'theyre': 1,
          'leaving': 1,
          'officers': 1,
          'exactly': 1,
          'moment': 1,
          'nsmall': 1,
          'world': 1,
          'eh': 1,
          'theres': 1,
          'convenient': 1,
          'car': 1,
          'trouble': 1,
          'attempted': 1,
          'escape': 1,
          'pet': 1,
          'tigers': 1,
          'power': 1,
          'laws': 1,
          'cinema': 1,
          'must': 1,
          'inevitably': 1,
          'confront': 1,
          'someone': 1,
          'blundered': 1,
          'cage': 1,
          'nhowever': 1,
          'buffoon': 1,
          'prize': 1,
          'police': 1,
          'come': 1,
          'like': 1,
          'keystone': 1,
          'kops': 1,
          'nbut': 1,
          'fun': 1,
          'doesnt': 1,
          'shambles': 1,
          'script': 1,
          'davies': 1,
          'osborne': 1,
          'absence': 1,
          'single': 1,
          'solitary': 1,
          'nkaren': 1,
          'earnest': 1,
          'singleminded': 1,
          'motherly': 1,
          'devotion': 1,
          'lacking': 1,
          'kind': 1,
          'edge': 1,
          'make': 1,
          'convincing': 1,
          'criminal': 1,
          'thespian': 1,
          'adept': 1,
          'fleshing': 1,
          'flimsy': 1,
          'material': 1,
          'flaccid': 1,
          'villain': 1,
          'complete': 1,
          'blank': 1,
          'exhusband': 1,
          'furniture': 1,
          'nonly': 1,
          'kilmers': 1,
          'remotely': 1,
          'appealing': 1,
          'potentially': 1,
          'intriguing': 1,
          'quality': 1,
          'ineptitude': 1,
          'never': 1,
          'developed': 1,
          'nin': 1,
          'fact': 1,
          'disappears': 1,
          'admiration': 1,
          'could': 1,
          'made': 1,
          'subplot': 1,
          'ni': 1,
          'forgiving': 1,
          'pacing': 1,
          'appropriate': 1,
          'caper': 1,
          'comedy': 1,
          'nowhere': 1,
          'nvarious': 1,
          'scenes': 1,
          'sneaking': 1,
          'skulking': 1,
          'seem': 1,
          'take': 1,
          'forever': 1,
          'evident': 1,
          'didnt': 1,
          'cutting': 1,
          'floor': 1,
          'neven': 1,
          'clever': 1,
          'climactic': 1,
          'falls': 1,
          'victim': 1,
          'syndrome': 1,
          'including': 1,
          'thieves': 1,
          'drilling': 1,
          'open': 1,
          'vault': 1,
          'lasts': 1,
          'kid': 1,
          'four': 1,
          'minutes': 1,
          'tension': 1,
          'tedium': 1,
          'nrussell': 1,
          'mulcahy': 1,
          'highlander': 1,
          'director': 1,
          'style': 1,
          'indeed': 1,
          'looks': 1,
          'completely': 1,
          'stumbles': 1,
          'editing': 1,
          'many': 1,
          'big': 1,
          'problems': 1,
          'tempted': 1,
          'overlook': 1,
          'little': 1,
          'ones': 1,
          'disarming': 1,
          'schmidts': 1,
          'henchmen': 1,
          'throwing': 1,
          'gun': 1,
          'park': 1,
          'playing': 1,
          'fountain': 1,
          'crushed': 1,
          'van': 1,
          'runs': 1,
          'reappearing': 1,
          'piece': 1,
          'moments': 1,
          'ntempted': 1,
          'pretty': 1,
          'resisting': 1,
          'temptation': 1,
          'nneg': 1}),
 Counter({'jerry': 8,
          'film': 8,
          'conspiracy': 7,
          'theory': 7,
          'government': 6,
          'seems': 6,
          'alice': 6,
          'goes': 5,
          'forced': 5,
          'people': 4,
          'guy': 4,
          'even': 4,
          'theories': 4,
          'time': 4,
          'would': 4,
          'black': 4,
          'donner': 4,
          'one': 4,
          'nthe': 4,
          'real': 3,
          'gibson': 3,
          'nhe': 3,
          'scenes': 3,
          'know': 3,
          'jerrys': 3,
          'interest': 3,
          'action': 3,
          'set': 3,
          'two': 3,
          'like': 3,
          'believe': 3,
          'nyou': 3,
          'also': 3,
          'whats': 3,
          'station': 3,
          'nthis': 3,
          'movies': 2,
          'life': 2,
          'ni': 2,
          'could': 2,
          'sat': 2,
          'man': 2,
          'known': 2,
          'ideas': 2,
          'work': 2,
          'na': 2,
          'little': 2,
          'imagination': 2,
          'new': 2,
          'york': 2,
          'president': 2,
          'us': 2,
          'tries': 2,
          'roberts': 2,
          'couple': 2,
          'far': 2,
          'well': 2,
          'great': 2,
          'take': 2,
          'lot': 2,
          'number': 2,
          'forever': 2,
          'relationship': 2,
          'every': 2,
          'break': 2,
          'reason': 2,
          'bunch': 2,
          'took': 2,
          'noh': 2,
          'helgeland': 2,
          'end': 2,
          'main': 2,
          'hes': 2,
          'point': 2,
          'extraneous': 2,
          'never': 2,
          'nfor': 2,
          'found': 2,
          'actually': 2,
          'subway': 2,
          'water': 2,
          'nokay': 2,
          'heres': 2,
          'copies': 2,
          'salinger': 2,
          'bookstore': 2,
          'question': 2,
          'assassin': 2,
          'make': 2,
          'plays': 2,
          'may': 2,
          'really': 2,
          'think': 1,
          'exist': 1,
          'trust': 1,
          'theyre': 1,
          'talked': 1,
          'thought': 1,
          'united': 1,
          'states': 1,
          'putting': 1,
          'satellites': 1,
          'orbit': 1,
          'fry': 1,
          'individual': 1,
          'persons': 1,
          'brain': 1,
          'microwaves': 1,
          'nthen': 1,
          'room': 1,
          'full': 1,
          'believed': 1,
          'rigged': 1,
          'state': 1,
          'elections': 1,
          'listened': 1,
          'swore': 1,
          'nicotine': 1,
          'additive': 1,
          'cigarette': 1,
          'companies': 1,
          'put': 1,
          'products': 1,
          'specific': 1,
          'goal': 1,
          'getting': 1,
          'addicted': 1,
          'nthese': 1,
          'unseen': 1,
          'forces': 1,
          'deceive': 1,
          'control': 1,
          'public': 1,
          'long': 1,
          'way': 1,
          'nin': 1,
          'richard': 1,
          'donners': 1,
          'fletcher': 1,
          'mel': 1,
          'city': 1,
          'cab': 1,
          'driver': 1,
          'everything': 1,
          'nhis': 1,
          'latest': 1,
          'nasa': 1,
          'trying': 1,
          'kill': 1,
          'causing': 1,
          'earthquake': 1,
          'space': 1,
          'shuttle': 1,
          'might': 1,
          'sound': 1,
          'outrageous': 1,
          'days': 1,
          'combs': 1,
          'newspaper': 1,
          'looking': 1,
          'tidbits': 1,
          'leave': 1,
          'telltale': 1,
          'warnings': 1,
          'goingson': 1,
          'behind': 1,
          'draws': 1,
          'conclusions': 1,
          'nupstanding': 1,
          'citizen': 1,
          'convince': 1,
          'sutton': 1,
          'julia': 1,
          'justice': 1,
          'department': 1,
          'must': 1,
          'warned': 1,
          'nlucky': 1,
          'gal': 1,
          'met': 1,
          'saved': 1,
          'muggers': 1,
          'listen': 1,
          'six': 1,
          'months': 1,
          'since': 1,
          'nwhat': 1,
          'doesnt': 1,
          'professional': 1,
          'lengths': 1,
          'follow': 1,
          'around': 1,
          'watch': 1,
          'apartment': 1,
          'nbut': 1,
          'secret': 1,
          'types': 1,
          'seem': 1,
          'limitedcirculation': 1,
          'newsletter': 1,
          'finds': 1,
          'danger': 1,
          'need': 1,
          'alices': 1,
          'help': 1,
          'none': 1,
          'problems': 1,
          'pass': 1,
          'actionthriller': 1,
          'neither': 1,
          'whole': 1,
          'significant': 1,
          'thrills': 1,
          'npart': 1,
          'result': 1,
          'films': 1,
          'slow': 1,
          'pace': 1,
          'nit': 1,
          'takes': 1,
          'rest': 1,
          'boredom': 1,
          'stops': 1,
          'excitement': 1,
          'nat': 1,
          'hours': 1,
          'significantly': 1,
          'condensed': 1,
          'running': 1,
          'shortened': 1,
          'twenty': 1,
          'minutes': 1,
          'half': 1,
          'hour': 1,
          'able': 1,
          'save': 1,
          'ninstead': 1,
          'truly': 1,
          'exciting': 1,
          'engaging': 1,
          'pieces': 1,
          'treated': 1,
          'generic': 1,
          'requisite': 1,
          'elements': 1,
          'helicopter': 1,
          'men': 1,
          'suits': 1,
          'body': 1,
          'armor': 1,
          'vehicles': 1,
          'drill': 1,
          'nthey': 1,
          'come': 1,
          'kinds': 1,
          'neat': 1,
          'gadgets': 1,
          'weapons': 1,
          'chick': 1,
          'training': 1,
          'somehow': 1,
          'manage': 1,
          'elude': 1,
          'nbig': 1,
          'deal': 1,
          'weve': 1,
          'seen': 1,
          'nwatching': 1,
          'wished': 1,
          'least': 1,
          'tried': 1,
          'use': 1,
          'luck': 1,
          'nnow': 1,
          'say': 1,
          'completely': 1,
          'mean': 1,
          'person': 1,
          'relative': 1,
          'romantic': 1,
          'involvement': 1,
          'screenwriter': 1,
          'brian': 1,
          'movie': 1,
          'characters': 1,
          'falling': 1,
          'hopelessly': 1,
          'love': 1,
          'evidence': 1,
          'ever': 1,
          'occurring': 1,
          'see': 1,
          'sparks': 1,
          'danny': 1,
          'glover': 1,
          'lethal': 1,
          'weapon': 1,
          'directed': 1,
          'dont': 1,
          'click': 1,
          'throw': 1,
          'happenings': 1,
          'cause': 1,
          'reject': 1,
          'altogether': 1,
          'finding': 1,
          'stalking': 1,
          'subsequent': 1,
          'attraction': 1,
          'absolutely': 1,
          'script': 1,
          'general': 1,
          'someone': 1,
          'write': 1,
          'upon': 1,
          'ndialog': 1,
          'undistinguished': 1,
          'rather': 1,
          'unmemorable': 1,
          'almost': 1,
          'stopped': 1,
          'listening': 1,
          'neven': 1,
          'gibsons': 1,
          'usual': 1,
          'gift': 1,
          'ad': 1,
          'lib': 1,
          'couldnt': 1,
          'punch': 1,
          'sufficiently': 1,
          'raise': 1,
          'although': 1,
          'oliver': 1,
          'stone': 1,
          'mildly': 1,
          'amusing': 1,
          'nunfortunately': 1,
          'much': 1,
          'discussed': 1,
          'inherently': 1,
          'important': 1,
          'going': 1,
          'instead': 1,
          'filler': 1,
          'starts': 1,
          'potential': 1,
          'ends': 1,
          'followed': 1,
          'example': 1,
          'professes': 1,
          'drowned': 1,
          'swimming': 1,
          'pool': 1,
          'murdered': 1,
          'explain': 1,
          'flooded': 1,
          'due': 1,
          'hence': 1,
          'coroner': 1,
          'check': 1,
          'mans': 1,
          'lungs': 1,
          'chlorine': 1,
          'convincing': 1,
          'enough': 1,
          'happens': 1,
          'nnothing': 1,
          'zip': 1,
          'nada': 1,
          'nno': 1,
          'followup': 1,
          'whatsoever': 1,
          'significance': 1,
          'another': 1,
          'assassins': 1,
          'possessed': 1,
          'j': 1,
          'novel': 1,
          'catcher': 1,
          'rye': 1,
          'njerry': 1,
          'nwhenever': 1,
          'buy': 1,
          'nleaving': 1,
          'whether': 1,
          'makes': 1,
          'given': 1,
          'nnot': 1,
          'find': 1,
          'collection': 1,
          'later': 1,
          'get': 1,
          'answer': 1,
          'first': 1,
          'becomes': 1,
          'totally': 1,
          'mention': 1,
          'patrick': 1,
          'stewart': 1,
          'nyeah': 1,
          'psychiatrist': 1,
          'named': 1,
          'dr': 1,
          'jonas': 1,
          'bad': 1,
          'nthats': 1,
          'presence': 1,
          'usually': 1,
          'marvelous': 1,
          'actor': 1,
          'nearly': 1,
          'forgettable': 1,
          'lump': 1,
          'supporting': 1,
          'players': 1,
          'exception': 1,
          'cylk': 1,
          'cozart': 1,
          'agent': 1,
          'lowry': 1,
          'fbi': 1,
          'likable': 1,
          'wish': 1,
          'character': 1,
          'gotten': 1,
          'screen': 1,
          'started': 1,
          'jokes': 1,
          'true': 1,
          'came': 1,
          'edits': 1,
          'sake': 1,
          'national': 1,
          'security': 1,
          'left': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'bad': 4,
          'nthe': 4,
          'ni': 3,
          'skills': 3,
          'nothing': 3,
          'amused': 2,
          'entertained': 2,
          'usually': 2,
          'remember': 2,
          'hand': 2,
          'brought': 2,
          'fact': 2,
          'producers': 2,
          'director': 2,
          'knew': 2,
          'good': 2,
          'made': 2,
          'young': 2,
          'alien': 2,
          'autopsy': 2,
          'saw': 2,
          'say': 2,
          'nin': 2,
          'never': 2,
          'lazard': 2,
          'son': 1,
          'share': 1,
          'perverse': 1,
          'predilection': 1,
          'movies': 1,
          'nwe': 1,
          'cheap': 1,
          'thrills': 1,
          'corny': 1,
          'dialog': 1,
          'ludicrous': 1,
          'premises': 1,
          'acting': 1,
          'nsince': 1,
          'family': 1,
          'members': 1,
          'aspire': 1,
          'higher': 1,
          'forms': 1,
          'entertainment': 1,
          'wind': 1,
          'indulging': 1,
          'proclivity': 1,
          'together': 1,
          'cant': 1,
          'disagreed': 1,
          'relative': 1,
          'merits': 1,
          'clunker': 1,
          'species': 1,
          '2': 1,
          'came': 1,
          'along': 1,
          'nhe': 1,
          'able': 1,
          'easily': 1,
          'suspend': 1,
          'applicable': 1,
          'requirements': 1,
          'usual': 1,
          'manner': 1,
          'declare': 1,
          'suitably': 1,
          'nperhaps': 1,
          'evident': 1,
          'process': 1,
          'producing': 1,
          'product': 1,
          'prevented': 1,
          'extracting': 1,
          'fun': 1,
          'mediocrity': 1,
          'appreciated': 1,
          'exactly': 1,
          'insulting': 1,
          'intelligence': 1,
          'adequate': 1,
          'moviemaking': 1,
          'project': 1,
          'well': 1,
          'least': 1,
          'terms': 1,
          'craft': 1,
          'could': 1,
          'better': 1,
          'brusque': 1,
          'nthis': 1,
          'slaps': 1,
          'conception': 1,
          'pregnancy': 1,
          'delivery': 1,
          'childhood': 1,
          'consecutive': 1,
          'frames': 1,
          'without': 1,
          'pausing': 1,
          'infancy': 1,
          'nescafe': 1,
          'race': 1,
          'womans': 1,
          'womb': 1,
          'balloons': 1,
          'immediately': 1,
          'male': 1,
          'orgasm': 1,
          'seconds': 1,
          'later': 1,
          'child': 1,
          'tears': 1,
          'way': 1,
          'abdomen': 1,
          'sloppy': 1,
          'gory': 1,
          'version': 1,
          'insideout': 1,
          'cesarean': 1,
          'nan': 1,
          'scene': 1,
          'buzz': 1,
          'cuts': 1,
          'cranium': 1,
          'kind': 1,
          'indulgence': 1,
          'condone': 1,
          'scientifically': 1,
          'incorrect': 1,
          'real': 1,
          'cut': 1,
          'scalp': 1,
          'used': 1,
          'skull': 1,
          'exposed': 1,
          'opening': 1,
          'sequences': 1,
          'exploration': 1,
          'mars': 1,
          'writers': 1,
          'showed': 1,
          'excellent': 1,
          'ceremonial': 1,
          'speech': 1,
          'writing': 1,
          'spontaneous': 1,
          'dialogue': 1,
          'would': 1,
          'qualify': 1,
          'subtitle': 1,
          'gets': 1,
          'nas': 1,
          'progressed': 1,
          'vowed': 1,
          'lines': 1,
          'cringe': 1,
          'one': 1,
          'stuck': 1,
          'neve': 1,
          'natasha': 1,
          'henstridge': 1,
          'cloned': 1,
          'sil': 1,
          'original': 1,
          'sexual': 1,
          'predator': 1,
          'mating': 1,
          'instinct': 1,
          'artificially': 1,
          'attenuated': 1,
          'needed': 1,
          'turn': 1,
          'noble': 1,
          'cooperative': 1,
          'prisoner': 1,
          'wistful': 1,
          'display': 1,
          'resignation': 1,
          'understanding': 1,
          'tells': 1,
          'friend': 1,
          'jailer': 1,
          'marg': 1,
          'helgenberger': 1,
          'think': 1,
          'places': 1,
          'see': 1,
          'people': 1,
          'meet': 1,
          'nits': 1,
          'enough': 1,
          'melt': 1,
          'callous': 1,
          'heart': 1,
          'nat': 1,
          'another': 1,
          'point': 1,
          'protests': 1,
          'im': 1,
          'human': 1,
          'know': 1,
          'nshe': 1,
          'half': 1,
          'right': 1,
          'npeter': 1,
          'medak': 1,
          'knows': 1,
          'business': 1,
          'njustin': 1,
          'doomed': 1,
          'astronaut': 1,
          'enhance': 1,
          'hollywood': 1,
          'credentials': 1,
          'njames': 1,
          'cromwell': 1,
          'father': 1,
          'perfect': 1,
          'short': 1,
          'role': 1,
          'nmarg': 1,
          'heldenberger': 1,
          'dna': 1,
          'scientist': 1,
          'pleasant': 1,
          'beautiful': 1,
          'nnatasha': 1,
          'exquisite': 1,
          'ornament': 1,
          'ngeorge': 1,
          'dzunza': 1,
          'delivered': 1,
          'expected': 1,
          'dumb': 1,
          'general': 1,
          'messes': 1,
          'things': 1,
          'nmichael': 1,
          'madsen': 1,
          'nblack': 1,
          'buddies': 1,
          'survive': 1,
          'type': 1,
          'mykelti': 1,
          'williamson': 1,
          'manages': 1,
          'stay': 1,
          'around': 1,
          'final': 1,
          'credits': 1,
          'nneg': 1}),
 Counter({'irene': 11,
          'farrellys': 10,
          'nthe': 9,
          'brothers': 7,
          'film': 7,
          'like': 6,
          'entirely': 6,
          'mary': 6,
          'funny': 5,
          'carrey': 5,
          'doesnt': 5,
          'farrelly': 4,
          'personality': 4,
          'charlie': 4,
          'charlies': 4,
          'plot': 4,
          'work': 4,
          'n': 4,
          'pull': 4,
          'nothing': 4,
          'seemed': 3,
          'better': 3,
          'movie': 3,
          'nits': 3,
          'thing': 3,
          'even': 3,
          'new': 3,
          'would': 3,
          'course': 3,
          'people': 3,
          'comedy': 3,
          'one': 3,
          'isnt': 3,
          'ever': 3,
          'nthis': 3,
          'actions': 3,
          'humor': 3,
          'outrageous': 3,
          'way': 3,
          'made': 3,
          'nbut': 3,
          'still': 3,
          'dont': 3,
          'perfect': 2,
          'offensive': 2,
          'matter': 2,
          'make': 2,
          'guy': 2,
          'split': 2,
          'exactly': 2,
          'sort': 2,
          'something': 2,
          'mental': 2,
          'illness': 2,
          'throwing': 2,
          'wind': 2,
          'get': 2,
          'njim': 2,
          'neven': 2,
          'ill': 2,
          'condition': 2,
          'take': 2,
          'another': 2,
          'wrong': 2,
          'never': 2,
          'taking': 2,
          'hes': 2,
          'stop': 2,
          'runs': 2,
          'problem': 2,
          'kind': 2,
          'earlier': 2,
          'merely': 2,
          'gags': 2,
          'believe': 2,
          'unexpected': 2,
          'surprising': 2,
          'seems': 2,
          'really': 2,
          'manner': 2,
          'jokes': 2,
          'havent': 2,
          'adolescent': 2,
          'think': 2,
          'none': 2,
          'anything': 2,
          'involving': 2,
          'three': 2,
          'black': 2,
          'language': 2,
          'hasnt': 2,
          'supporting': 2,
          'character': 2,
          'script': 2,
          'roleshifting': 2,
          'whether': 2,
          'stuck': 2,
          'audiences': 2,
          'good': 2,
          'filmmakers': 2,
          'concept': 1,
          'nwhat': 1,
          'famous': 1,
          'writing': 1,
          'directing': 1,
          'comedies': 1,
          'subject': 1,
          'relish': 1,
          'poking': 1,
          'fun': 1,
          'serious': 1,
          'case': 1,
          'care': 1,
          'laugh': 1,
          'carreys': 1,
          'signed': 1,
          'national': 1,
          'alliance': 1,
          'mentally': 1,
          'helped': 1,
          'levying': 1,
          'complaints': 1,
          'opening': 1,
          'claiming': 1,
          'misrepresenting': 1,
          'labeling': 1,
          'incorrectly': 1,
          'schizophrenia': 1,
          'forth': 1,
          'nsuch': 1,
          'protest': 1,
          'add': 1,
          'fuel': 1,
          'fire': 1,
          'proving': 1,
          'couldnt': 1,
          'joke': 1,
          'helping': 1,
          'enlightened': 1,
          'viewers': 1,
          'yet': 1,
          'dose': 1,
          'brilliantly': 1,
          'subversive': 1,
          'nyes': 1,
          'went': 1,
          'lack': 1,
          'trying': 1,
          'utilize': 1,
          'highconcept': 1,
          'premise': 1,
          'plays': 1,
          'baileygaites': 1,
          'man': 1,
          'dumped': 1,
          'wife': 1,
          'midget': 1,
          'limo': 1,
          'driver': 1,
          'decides': 1,
          'bury': 1,
          'aggressive': 1,
          'feelings': 1,
          'deep': 1,
          'inside': 1,
          'release': 1,
          'means': 1,
          'neighbors': 1,
          'exploit': 1,
          'tooforgiving': 1,
          'nature': 1,
          'making': 1,
          'job': 1,
          'rhode': 1,
          'island': 1,
          'state': 1,
          'trooper': 1,
          'increasingly': 1,
          'difficult': 1,
          'nsoon': 1,
          'enough': 1,
          'repressed': 1,
          'aggression': 1,
          'manifests': 1,
          'second': 1,
          'independent': 1,
          'named': 1,
          'hank': 1,
          'deepvoiced': 1,
          'boorish': 1,
          'ogre': 1,
          'unafraid': 1,
          'assertive': 1,
          'predecessor': 1,
          'unable': 1,
          'muster': 1,
          'crashing': 1,
          'car': 1,
          'wall': 1,
          'barber': 1,
          'shop': 1,
          'insulted': 1,
          'holding': 1,
          'little': 1,
          'girls': 1,
          'head': 1,
          'underwater': 1,
          'refused': 1,
          'jumproping': 1,
          'street': 1,
          'nthen': 1,
          'things': 1,
          'start': 1,
          'getting': 1,
          'lost': 1,
          'complicated': 1,
          'attempted': 1,
          'tracks': 1,
          'nsome': 1,
          'suggested': 1,
          'brand': 1,
          'require': 1,
          'ntheyre': 1,
          'greatly': 1,
          'instrumental': 1,
          'building': 1,
          'rollicking': 1,
          'comic': 1,
          'energy': 1,
          'infused': 1,
          'last': 1,
          'effort': 1,
          '1996s': 1,
          'theres': 1,
          '1999s': 1,
          'outside': 1,
          'providence': 1,
          'technically': 1,
          'project': 1,
          'wasnt': 1,
          'contained': 1,
          'despite': 1,
          'newsmagazine': 1,
          'articles': 1,
          'rather': 1,
          'nin': 1,
          'managed': 1,
          'several': 1,
          'times': 1,
          'neat': 1,
          'sleightofhand': 1,
          'trick': 1,
          'theyd': 1,
          'thinking': 1,
          'story': 1,
          'going': 1,
          'reveal': 1,
          'real': 1,
          'direction': 1,
          'delightfully': 1,
          'fashion': 1,
          'contrast': 1,
          'folks': 1,
          'looked': 1,
          'saw': 1,
          'surface': 1,
          'grossness': 1,
          'missing': 1,
          'subtle': 1,
          'machinations': 1,
          'nhaving': 1,
          'produced': 1,
          'guys': 1,
          'bigger': 1,
          'disappointment': 1,
          'pile': 1,
          'shots': 1,
          'race': 1,
          'midgets': 1,
          'albinos': 1,
          'bathroom': 1,
          'come': 1,
          'fresh': 1,
          'comes': 1,
          'rote': 1,
          'bythenumbers': 1,
          'forced': 1,
          'drive': 1,
          'alleged': 1,
          'fugitive': 1,
          'p': 1,
          'waters': 1,
          'renee': 1,
          'zellweger': 1,
          'whos': 1,
          'trouble': 1,
          'anyone': 1,
          'knows': 1,
          'back': 1,
          'york': 1,
          'ending': 1,
          'thats': 1,
          'predictable': 1,
          'getgo': 1,
          'fall': 1,
          'love': 1,
          'nyeah': 1,
          'introduce': 1,
          'scores': 1,
          'different': 1,
          'characters': 1,
          'manage': 1,
          'already': 1,
          'expected': 1,
          'might': 1,
          'ncompared': 1,
          'curveballs': 1,
          'used': 1,
          'stuff': 1,
          'almost': 1,
          'softtossed': 1,
          'presenting': 1,
          'obvious': 1,
          'grossout': 1,
          'loses': 1,
          'shock': 1,
          'value': 1,
          'longer': 1,
          'gross': 1,
          'milked': 1,
          'effectiveness': 1,
          'dry': 1,
          'ntake': 1,
          'example': 1,
          'subplot': 1,
          'sons': 1,
          'anthony': 1,
          'anderson': 1,
          'mongo': 1,
          'brownlee': 1,
          'jerod': 1,
          'mixon': 1,
          'incongruity': 1,
          'burly': 1,
          'men': 1,
          'discussing': 1,
          'higher': 1,
          'math': 1,
          'ghetto': 1,
          'whitebread': 1,
          'mouthing': 1,
          'said': 1,
          'toopleasant': 1,
          'smile': 1,
          'face': 1,
          'end': 1,
          'theyre': 1,
          'schitck': 1,
          'elevated': 1,
          'funnier': 1,
          'level': 1,
          'dropped': 1,
          'either': 1,
          'nthats': 1,
          'bad': 1,
          'ceases': 1,
          'amusing': 1,
          'halfway': 1,
          'reeks': 1,
          'wasted': 1,
          'opportunities': 1,
          'nthere': 1,
          'ought': 1,
          'focus': 1,
          'react': 1,
          'deals': 1,
          'consequences': 1,
          'hanks': 1,
          'happen': 1,
          'nearly': 1,
          'every': 1,
          'learns': 1,
          'early': 1,
          'opportunity': 1,
          'surprised': 1,
          'throws': 1,
          'looks': 1,
          'patented': 1,
          'curve': 1,
          'scene': 1,
          'towards': 1,
          'midway': 1,
          'point': 1,
          'albino': 1,
          'companion': 1,
          'pick': 1,
          'called': 1,
          'appropriately': 1,
          'whitey': 1,
          'go': 1,
          'anywhere': 1,
          'instead': 1,
          'leaving': 1,
          'thread': 1,
          'twisting': 1,
          'awkwardly': 1,
          'tying': 1,
          'climax': 1,
          'gifted': 1,
          'comedian': 1,
          'physically': 1,
          'vocally': 1,
          'left': 1,
          'much': 1,
          'except': 1,
          'contort': 1,
          'similar': 1,
          'steve': 1,
          'martin': 1,
          'great': 1,
          'showcase': 1,
          'flexibility': 1,
          'splitsecond': 1,
          'terribly': 1,
          'ncarrey': 1,
          'stunts': 1,
          'expect': 1,
          'give': 1,
          'else': 1,
          'situations': 1,
          'must': 1,
          'perform': 1,
          'arent': 1,
          'set': 1,
          'meaningful': 1,
          'nperhaps': 1,
          'solace': 1,
          'fact': 1,
          'actors': 1,
          'fare': 1,
          'nzellwegers': 1,
          'strong': 1,
          'female': 1,
          'lead': 1,
          'may': 1,
          'part': 1,
          'fantasy': 1,
          'also': 1,
          'intelligent': 1,
          'strongwilled': 1,
          'nirene': 1,
          'particular': 1,
          'makes': 1,
          'clear': 1,
          'shes': 1,
          'ditzy': 1,
          'clever': 1,
          'neither': 1,
          'nas': 1,
          'gives': 1,
          'us': 1,
          'latch': 1,
          'onto': 1,
          'sane': 1,
          'person': 1,
          'nchris': 1,
          'cooper': 1,
          'playing': 1,
          'note': 1,
          'corrupt': 1,
          'fbi': 1,
          'agent': 1,
          'straightlaced': 1,
          'nhe': 1,
          'others': 1,
          'absolutely': 1,
          'nafter': 1,
          'viewing': 1,
          'shapeless': 1,
          'mess': 1,
          'eventually': 1,
          'dissolved': 1,
          'wondering': 1,
          'outsmarted': 1,
          'nmaybe': 1,
          'long': 1,
          'wise': 1,
          'shocked': 1,
          'find': 1,
          'ways': 1,
          'grown': 1,
          'attuned': 1,
          'style': 1,
          'nif': 1,
          'indeed': 1,
          'smart': 1,
          'theyll': 1,
          'rebound': 1,
          'fine': 1,
          'happens': 1,
          'though': 1,
          'consider': 1,
          'highcaliber': 1,
          'misfire': 1,
          'nneg': 1}),
 Counter({'chinese': 7,
          'snipes': 6,
          'action': 6,
          'film': 5,
          'wesley': 3,
          'nthe': 3,
          'ni': 3,
          'also': 3,
          'stone': 3,
          'bad': 2,
          'roles': 2,
          'another': 2,
          'ugly': 2,
          'terrible': 2,
          'like': 2,
          'rising': 2,
          'sun': 2,
          'un': 2,
          'conspiracy': 2,
          'ends': 2,
          'films': 2,
          'one': 2,
          'script': 2,
          'violent': 2,
          'angle': 2,
          'else': 2,
          'new': 2,
          'couple': 2,
          'master': 1,
          'selecting': 1,
          'nmurder': 1,
          '1600': 1,
          'u': 1,
          'marshals': 1,
          'money': 1,
          'train': 1,
          'drop': 1,
          'zone': 1,
          'boiling': 1,
          'point': 1,
          'ultimate': 1,
          'camp': 1,
          'passenger': 1,
          '57': 1,
          'art': 1,
          'war': 1,
          'entry': 1,
          'unique': 1,
          'category': 1,
          'nultimately': 1,
          'little': 1,
          'ridiculous': 1,
          'plot': 1,
          'believable': 1,
          'warren': 1,
          'report': 1,
          'violence': 1,
          'would': 1,
          'made': 1,
          'peckinpah': 1,
          'cringe': 1,
          'acting': 1,
          'blist': 1,
          'actors': 1,
          'michael': 1,
          'biehn': 1,
          'anne': 1,
          'archer': 1,
          'noddly': 1,
          'feels': 1,
          'undiscovered': 1,
          'sequel': 1,
          'masterpiece': 1,
          'movie': 1,
          'revolves': 1,
          'around': 1,
          'convenient': 1,
          'story': 1,
          'special': 1,
          'operative': 1,
          'caught': 1,
          'secret': 1,
          'murder': 1,
          'involving': 1,
          'ambassador': 1,
          'triad': 1,
          'brotherhood': 1,
          'rich': 1,
          'businessman': 1,
          'played': 1,
          'guy': 1,
          'caryhiroyuki': 1,
          'tagawa': 1,
          'interpreter': 1,
          'inexplicably': 1,
          'donald': 1,
          'sutherland': 1,
          'confusion': 1,
          'boatload': 1,
          'immigrants': 1,
          'trying': 1,
          'register': 1,
          'ellis': 1,
          'island': 1,
          'say': 1,
          'blatant': 1,
          'ripoff': 1,
          'matrix': 1,
          'john': 1,
          'woos': 1,
          'hong': 1,
          'kong': 1,
          'combined': 1,
          'really': 1,
          'loss': 1,
          'figure': 1,
          'gumption': 1,
          'star': 1,
          'dud': 1,
          'act': 1,
          'producers': 1,
          'usually': 1,
          'enjoy': 1,
          'movies': 1,
          'though': 1,
          'dramatic': 1,
          'better': 1,
          'show': 1,
          'creativity': 1,
          'actor': 1,
          'flashiness': 1,
          'nsimply': 1,
          'amazed': 1,
          'inane': 1,
          'filled': 1,
          'cliches': 1,
          'extremely': 1,
          'sequences': 1,
          'ndirector': 1,
          'christian': 1,
          'duguay': 1,
          'screamers': 1,
          'strange': 1,
          'attraction': 1,
          'viciousness': 1,
          'acts': 1,
          'showing': 1,
          'splattering': 1,
          'brains': 1,
          'people': 1,
          'impaled': 1,
          'broken': 1,
          'shards': 1,
          'glass': 1,
          'lots': 1,
          'gargling': 1,
          'gagging': 1,
          'blood': 1,
          'sprays': 1,
          'everywhere': 1,
          'nit': 1,
          'sickens': 1,
          'know': 1,
          'oliver': 1,
          'greatest': 1,
          'directors': 1,
          'working': 1,
          'today': 1,
          'hand': 1,
          'producing': 1,
          'monstrosity': 1,
          'guess': 1,
          'sold': 1,
          'chose': 1,
          'read': 1,
          'watch': 1,
          'dailies': 1,
          'involved': 1,
          'casting': 1,
          'anything': 1,
          'hed': 1,
          'filing': 1,
          'court': 1,
          'order': 1,
          'remove': 1,
          'name': 1,
          'credits': 1,
          'nits': 1,
          'seems': 1,
          'evident': 1,
          'russkies': 1,
          'bosom': 1,
          'buddies': 1,
          'middle': 1,
          'eastern': 1,
          'terrorist': 1,
          'beaten': 1,
          'death': 1,
          'last': 1,
          'years': 1,
          'international': 1,
          'enemies': 1,
          'hollywood': 1,
          'communist': 1,
          'nim': 1,
          'sure': 1,
          'next': 1,
          'months': 1,
          'even': 1,
          'conspiracymartialarts': 1,
          'flicks': 1,
          'going': 1,
          'popping': 1,
          'local': 1,
          'multiplex': 1,
          'nhopefully': 1,
          'wont': 1,
          'include': 1,
          'nneg': 1}),
 Counter({'job': 5,
          'darryl': 4,
          'film': 4,
          'senseless': 3,
          'wayans': 3,
          'nthe': 3,
          'one': 3,
          'anything': 3,
          'try': 2,
          'nin': 2,
          'simply': 2,
          'may': 2,
          'nas': 2,
          'senses': 2,
          'marlon': 2,
          'humor': 2,
          'theres': 2,
          'much': 2,
          'plot': 2,
          'entire': 2,
          'completely': 2,
          'nand': 2,
          'darryls': 2,
          'get': 2,
          'ground': 2,
          'prime': 1,
          'example': 1,
          'happen': 1,
          'push': 1,
          'onejoke': 1,
          'concept': 1,
          'bit': 1,
          'far': 1,
          'ndirector': 1,
          'penelope': 1,
          'spheeris': 1,
          'stranger': 1,
          'subjected': 1,
          'audiences': 1,
          'tortures': 1,
          'beverly': 1,
          'hillbillies': 1,
          'nmarlon': 1,
          'stars': 1,
          'witherspoon': 1,
          'college': 1,
          'senior': 1,
          'vying': 1,
          'lucrative': 1,
          'prominent': 1,
          'brokerage': 1,
          'nhowever': 1,
          'lacks': 1,
          'advantages': 1,
          'chief': 1,
          'opposition': 1,
          'scott': 1,
          'thorpe': 1,
          'david': 1,
          'spade': 1,
          'smarmy': 1,
          'sort': 1,
          'role': 1,
          'deliver': 1,
          'sleep': 1,
          'athletic': 1,
          'record': 1,
          'sponsorship': 1,
          'fraternity': 1,
          'wealthy': 1,
          'family': 1,
          'back': 1,
          'fact': 1,
          'work': 1,
          'four': 1,
          'jobs': 1,
          'make': 1,
          'ends': 1,
          'meet': 1,
          'nbut': 1,
          'light': 1,
          'end': 1,
          'tunnel': 1,
          'nhe': 1,
          'signs': 1,
          'human': 1,
          'guinea': 1,
          'pig': 1,
          'neurological': 1,
          'experiment': 1,
          'run': 1,
          'universitys': 1,
          'dr': 1,
          'wheedon': 1,
          'brad': 1,
          'dourif': 1,
          'result': 1,
          'magnified': 1,
          'tenfold': 1,
          'nusing': 1,
          'newfound': 1,
          'abilities': 1,
          'sets': 1,
          'complete': 1,
          'pursuit': 1,
          'unaware': 1,
          'disadvantageous': 1,
          'sideeffects': 1,
          'super': 1,
          'nnaturally': 1,
          'plays': 1,
          'comedy': 1,
          'full': 1,
          'throttle': 1,
          'giving': 1,
          'jim': 1,
          'carreyish': 1,
          'amounts': 1,
          'physical': 1,
          'problem': 1,
          'aside': 1,
          'genuinely': 1,
          'inspired': 1,
          'bits': 1,
          'thats': 1,
          'funny': 1,
          'central': 1,
          'gag': 1,
          'pads': 1,
          'rest': 1,
          'length': 1,
          'rather': 1,
          'obvious': 1,
          'lowbrow': 1,
          'nthere': 1,
          'obviously': 1,
          'wasnt': 1,
          'thought': 1,
          'put': 1,
          'selection': 1,
          'process': 1,
          'ridiculous': 1,
          'ni': 1,
          'mean': 1,
          'emphasis': 1,
          'extracurricular': 1,
          'activities': 1,
          'going': 1,
          'come': 1,
          'singleelimination': 1,
          'quiz': 1,
          'anyhow': 1,
          'offered': 1,
          'economics': 1,
          'majors': 1,
          'semester': 1,
          'nto': 1,
          'give': 1,
          'credit': 1,
          'create': 1,
          'secondary': 1,
          'joke': 1,
          'roommate': 1,
          'tim': 1,
          'laflour': 1,
          'matthew': 1,
          'lillard': 1,
          'napparently': 1,
          'supposed': 1,
          'faddish': 1,
          'never': 1,
          'leaving': 1,
          'piercing': 1,
          'phase': 1,
          'throughout': 1,
          'movie': 1,
          'nhis': 1,
          'intervention': 1,
          'scenes': 1,
          'however': 1,
          'provide': 1,
          'rare': 1,
          'welcome': 1,
          'laugh': 1,
          'love': 1,
          'interest': 1,
          'always': 1,
          'pathetically': 1,
          'tacked': 1,
          'onto': 1,
          'comedies': 1,
          'like': 1,
          'case': 1,
          'object': 1,
          'amor': 1,
          'janice': 1,
          'tamara': 1,
          'taylor': 1,
          'fellow': 1,
          'student': 1,
          'wont': 1,
          'gains': 1,
          'supersenses': 1,
          'nneedless': 1,
          'say': 1,
          'romance': 1,
          'extraneous': 1,
          'adds': 1,
          'little': 1,
          'nthis': 1,
          'desperately': 1,
          'needed': 1,
          'something': 1,
          'else': 1,
          'nbe': 1,
          'good': 1,
          'jokes': 1,
          'funnier': 1,
          'ones': 1,
          'strong': 1,
          'character': 1,
          'two': 1,
          'would': 1,
          'helped': 1,
          'manic': 1,
          'exuberant': 1,
          'mugging': 1,
          'world': 1,
          'cant': 1,
          'help': 1,
          'nneg': 1}),
 Counter({'jimmy': 8,
          'bachelor': 5,
          'nits': 5,
          'nthe': 5,
          'anne': 5,
          'get': 4,
          'attractive': 4,
          'pleasant': 4,
          'even': 4,
          'watching': 3,
          'romantic': 3,
          'one': 3,
          'thats': 3,
          'many': 3,
          'films': 3,
          'guy': 3,
          'married': 3,
          'like': 3,
          'problem': 3,
          'comedy': 2,
          'film': 2,
          'would': 2,
          'wrong': 2,
          'circa': 2,
          '1999': 2,
          'nin': 2,
          'point': 2,
          'story': 2,
          'theyre': 2,
          'case': 2,
          'exhibit': 2,
          'odonnell': 2,
          'years': 2,
          'leaves': 2,
          'stands': 2,
          '30th': 2,
          'birthday': 2,
          'couple': 2,
          'jimmys': 2,
          'among': 2,
          'better': 2,
          'kind': 2,
          'standard': 2,
          'nand': 2,
          'never': 2,
          'theres': 2,
          'anything': 2,
          'dont': 2,
          'potential': 2,
          'set': 2,
          'pieces': 2,
          'conclusion': 2,
          'real': 2,
          'warmnfuzzy': 2,
          'came': 1,
          'epiphany': 1,
          'innocuousenoughonthesurface': 1,
          'sort': 1,
          'expect': 1,
          'achieve': 1,
          'moment': 1,
          'clarity': 1,
          'nonetheless': 1,
          'ni': 1,
          'sat': 1,
          'marshmallow': 1,
          'movie': 1,
          'unfold': 1,
          'suddenly': 1,
          'realized': 1,
          'ridiculously': 1,
          'entire': 1,
          'genre': 1,
          'word': 1,
          'thing': 1,
          'movies': 1,
          'writing': 1,
          'nmore': 1,
          'refusal': 1,
          'acknowledge': 1,
          'characterizations': 1,
          'matter': 1,
          'youre': 1,
          'telling': 1,
          'relationship': 1,
          'merely': 1,
          'latest': 1,
          'long': 1,
          'line': 1,
          'expected': 1,
          'dewyeyed': 1,
          'pairing': 1,
          'people': 1,
          'particular': 1,
          'shannon': 1,
          'chris': 1,
          'single': 1,
          'friends': 1,
          'slowly': 1,
          'surely': 1,
          'sucked': 1,
          'marriage': 1,
          'scary': 1,
          'notion': 1,
          'though': 1,
          'dearly': 1,
          'loves': 1,
          'b': 1,
          'renee': 1,
          'zellweger': 1,
          'girlfriend': 1,
          'three': 1,
          'nconvinced': 1,
          'despite': 1,
          'reservations': 1,
          'time': 1,
          'sh': 1,
          'pot': 1,
          'proposes': 1,
          'badly': 1,
          'nanne': 1,
          'refuses': 1,
          'odd': 1,
          'position': 1,
          'eccentric': 1,
          'grandfather': 1,
          'peter': 1,
          'ustinov': 1,
          'dies': 1,
          'specific': 1,
          'video': 1,
          'njimmy': 1,
          'inhereit': 1,
          '100': 1,
          'million': 1,
          '6': 1,
          '05': 1,
          'p': 1,
          'stays': 1,
          '10': 1,
          'produces': 1,
          'child': 1,
          'nthere': 1,
          'minor': 1,
          'problems': 1,
          '1': 1,
          'next': 1,
          'day': 1,
          '2': 1,
          'nowhere': 1,
          'found': 1,
          'meaning': 1,
          'find': 1,
          'another': 1,
          'willing': 1,
          'bride': 1,
          'exgirlfriends': 1,
          'wacky': 1,
          'brewsters': 1,
          'millionsesque': 1,
          'premise': 1,
          'acknowledged': 1,
          'selfaware': 1,
          'lines': 1,
          'dialogue': 1,
          'shallow': 1,
          'materialistic': 1,
          'learns': 1,
          'really': 1,
          'matters': 1,
          'nat': 1,
          'least': 1,
          'werent': 1,
          'already': 1,
          'worldclass': 1,
          'altruist': 1,
          'nscreenwriter': 1,
          'steve': 1,
          'cohen': 1,
          'slides': 1,
          'draconian': 1,
          'condition': 1,
          'doesnt': 1,
          'lose': 1,
          'money': 1,
          'family': 1,
          'billiard': 1,
          'table': 1,
          'buisness': 1,
          'sold': 1,
          'costing': 1,
          'hudreds': 1,
          'jobs': 1,
          'nfrom': 1,
          'outset': 1,
          'motivation': 1,
          'isnt': 1,
          'cash': 1,
          'livelihoods': 1,
          'devoted': 1,
          'employees': 1,
          'almost': 1,
          'embarrassing': 1,
          'marital': 1,
          'misgivings': 1,
          'play': 1,
          'role': 1,
          'bachelors': 1,
          'plot': 1,
          'development': 1,
          'nby': 1,
          'human': 1,
          'impossibly': 1,
          'selfless': 1,
          'essence': 1,
          'gutlessness': 1,
          'endemic': 1,
          'fear': 1,
          'giving': 1,
          'characters': 1,
          'flaws': 1,
          'overcome': 1,
          'way': 1,
          'happiness': 1,
          'ntheres': 1,
          'tension': 1,
          'two': 1,
          'starcrossed': 1,
          'lovers': 1,
          'sense': 1,
          'remotely': 1,
          'significant': 1,
          'stake': 1,
          'blandly': 1,
          'nice': 1,
          'couldnt': 1,
          'pull': 1,
          'randy': 1,
          'cad': 1,
          'tried': 1,
          'filmmakers': 1,
          'let': 1,
          'zellwegers': 1,
          'may': 1,
          'issues': 1,
          'sickeningly': 1,
          'affectionate': 1,
          'parents': 1,
          'impossible': 1,
          'live': 1,
          'dares': 1,
          'make': 1,
          'woman': 1,
          'lightly': 1,
          'wronged': 1,
          'forget': 1,
          'seeing': 1,
          'enough': 1,
          'together': 1,
          'feel': 1,
          'invested': 1,
          'reconciliation': 1,
          'parade': 1,
          'sitcom': 1,
          'damned': 1,
          'funny': 1,
          'since': 1,
          'us': 1,
          'blissfully': 1,
          'sweet': 1,
          'foregone': 1,
          'nill': 1,
          'admit': 1,
          'amusing': 1,
          'including': 1,
          'ustinovs': 1,
          'rantings': 1,
          'procreation': 1,
          'restaurant': 1,
          'fulltobursting': 1,
          'men': 1,
          'popping': 1,
          'questions': 1,
          'champagne': 1,
          'corks': 1,
          'nfar': 1,
          'either': 1,
          'tedious': 1,
          'downright': 1,
          'ghastly': 1,
          'shudderinducing': 1,
          'sight': 1,
          'brooke': 1,
          'shields': 1,
          'icy': 1,
          'fortunehunter': 1,
          'hideous': 1,
          'collection': 1,
          'stereotypes': 1,
          'hundreds': 1,
          'brides': 1,
          'gather': 1,
          'church': 1,
          'nyoure': 1,
          'going': 1,
          'raucous': 1,
          'belly': 1,
          'laughs': 1,
          'nnor': 1,
          'know': 1,
          'exactly': 1,
          'leading': 1,
          'beginning': 1,
          'middle': 1,
          'equally': 1,
          'spark': 1,
          'energy': 1,
          'humanity': 1,
          'emotional': 1,
          'pudding': 1,
          'guaranteed': 1,
          'offend': 1,
          'consumers': 1,
          'digestions': 1,
          'nweve': 1,
          'reached': 1,
          'proxies': 1,
          'cinematic': 1,
          'wish': 1,
          'fulfillment': 1,
          'pulse': 1,
          'love': 1,
          'mannequins': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'movie': 6,
          'phone': 4,
          'emotional': 4,
          'one': 4,
          'like': 3,
          'basically': 3,
          'features': 3,
          'three': 3,
          'sisters': 3,
          'acting': 3,
          'meg': 3,
          'lot': 3,
          'every': 3,
          'get': 2,
          'people': 2,
          'loud': 2,
          'around': 2,
          'rating': 2,
          'annoying': 2,
          'ladies': 2,
          'lines': 2,
          'old': 2,
          'dad': 2,
          'sharing': 2,
          'conversations': 2,
          'provides': 2,
          'nand': 2,
          'im': 2,
          'ephron': 2,
          'finally': 2,
          'level': 2,
          'nthe': 2,
          'moment': 2,
          'character': 2,
          'christmas': 2,
          'thats': 2,
          'characters': 2,
          'stars': 2,
          'mess': 2,
          'something': 2,
          'put': 2,
          'please': 2,
          'cause': 2,
          'best': 2,
          'unless': 2,
          'ndo': 1,
          'annoyed': 1,
          'seeing': 1,
          'talk': 1,
          'cellulars': 1,
          'public': 1,
          'places': 1,
          'shouting': 1,
          'giving': 1,
          'ratts': 1,
          'ass': 1,
          'anyone': 1,
          'wallowing': 1,
          'selfimportance': 1,
          'nwell': 1,
          'likely': 1,
          'agree': 1,
          'since': 1,
          'trio': 1,
          'bickering': 1,
          'away': 1,
          'hour': 1,
          'half': 1,
          'make': 1,
          'hug': 1,
          'end': 1,
          'naaaaaaaahhhh': 1,
          'nplot': 1,
          'grownup': 1,
          'living': 1,
          'separate': 1,
          'lives': 1,
          'begin': 1,
          'reestablish': 1,
          'communication': 1,
          'dear': 1,
          'falls': 1,
          'ill': 1,
          'ncritique': 1,
          'would': 1,
          'good': 1,
          'wasnt': 1,
          'fact': 1,
          'got': 1,
          'little': 1,
          'say': 1,
          'uncaring': 1,
          'chockfull': 1,
          'bad': 1,
          'moments': 1,
          'less': 1,
          'satisfaction': 1,
          'thirdrate': 1,
          'afterschool': 1,
          'special': 1,
          'nice': 1,
          'nhow': 1,
          'junk': 1,
          'gets': 1,
          'made': 1,
          'beyond': 1,
          'happy': 1,
          'dealt': 1,
          'professional': 1,
          'blow': 1,
          'considering': 1,
          'regurgitation': 1,
          'material': 1,
          'reached': 1,
          'limit': 1,
          'true': 1,
          'demonstrated': 1,
          'ryans': 1,
          'hugs': 1,
          'swings': 1,
          'tree': 1,
          'nwow': 1,
          'ndeep': 1,
          'nof': 1,
          'course': 1,
          'tune': 1,
          'played': 1,
          'flick': 1,
          'chimes': 1,
          'background': 1,
          'continue': 1,
          'build': 1,
          'bonds': 1,
          'among': 1,
          'another': 1,
          'making': 1,
          'reference': 1,
          'quaint': 1,
          'movies': 1,
          'nstop': 1,
          'ngonna': 1,
          'cry': 1,
          'nthis': 1,
          'boring': 1,
          'irritating': 1,
          'watch': 1,
          'plot': 1,
          'selfish': 1,
          'talking': 1,
          'whole': 1,
          'kind': 1,
          'liking': 1,
          'father': 1,
          'really': 1,
          'realizing': 1,
          'error': 1,
          'ways': 1,
          '50s': 1,
          'nadmittedly': 1,
          'expecting': 1,
          'much': 1,
          'whose': 1,
          'television': 1,
          'trailer': 1,
          'ryan': 1,
          'screaming': 1,
          'two': 1,
          'seconds': 1,
          'big': 1,
          'dog': 1,
          'rolling': 1,
          'eyes': 1,
          'even': 1,
          'surprised': 1,
          'ineptitude': 1,
          'came': 1,
          'efforts': 1,
          'forth': 1,
          'nmeg': 1,
          'fine': 1,
          'sister': 1,
          'cries': 1,
          'looking': 1,
          'adorable': 1,
          'ever': 1,
          'someone': 1,
          'lisa': 1,
          'kudrow': 1,
          'inside': 1,
          'permanent': 1,
          'home': 1,
          'limited': 1,
          'range': 1,
          'woman': 1,
          'plays': 1,
          'single': 1,
          'movietv': 1,
          'show': 1,
          'shes': 1,
          'nenough': 1,
          'already': 1,
          'diane': 1,
          'keaton': 1,
          'mustve': 1,
          'spent': 1,
          'time': 1,
          'thinking': 1,
          'role': 1,
          'behind': 1,
          'camera': 1,
          'amateurish': 1,
          'nneither': 1,
          'convinced': 1,
          'scenes': 1,
          'ngranted': 1,
          'gave': 1,
          'walter': 1,
          'matthau': 1,
          'probably': 1,
          'points': 1,
          'comes': 1,
          'nall': 1,
          'funny': 1,
          'youre': 1,
          'chuckle': 1,
          'train': 1,
          'wrecks': 1,
          'zero': 1,
          'drama': 1,
          'consider': 1,
          'moving': 1,
          'generates': 1,
          'absolutely': 1,
          'emotion': 1,
          'although': 1,
          'tear': 1,
          'hugged': 1,
          'coffee': 1,
          'machine': 1,
          'ends': 1,
          'perfectly': 1,
          'pretentious': 1,
          'note': 1,
          'oh': 1,
          'dont': 1,
          'flour': 1,
          'donna': 1,
          'karan': 1,
          'dress': 1,
          'nugh': 1,
          'ni': 1,
          'suggest': 1,
          'take': 1,
          'husbandsboyfriends': 1,
          'see': 1,
          'pissed': 1,
          'nthatll': 1,
          'teach': 1,
          'em': 1,
          'noh': 1,
          'incidentally': 1,
          'mrs': 1,
          'joblo': 1,
          'also': 1,
          'likened': 1,
          'piece': 1,
          'cow': 1,
          'dung': 1,
          'flailing': 1,
          'wind': 1,
          'nthen': 1,
          'maybe': 1,
          'nyoull': 1,
          'n': 1,
          'nneg': 1}),
 Counter({'godzilla': 8,
          'movie': 5,
          'plot': 4,
          'nthe': 4,
          '2000': 3,
          'see': 3,
          'ni': 3,
          'good': 3,
          'nits': 3,
          'like': 3,
          'blah': 3,
          'though': 2,
          'saw': 2,
          'franchise': 2,
          'nthis': 2,
          'time': 2,
          'bad': 2,
          'dubbing': 2,
          'line': 2,
          'kids': 2,
          'many': 2,
          'murata': 2,
          'confession': 1,
          'neven': 1,
          'junkiei': 1,
          'eye': 1,
          'beholder': 1,
          'yet': 1,
          'still': 1,
          'watch': 1,
          'moviesive': 1,
          'never': 1,
          'seen': 1,
          'original': 1,
          'godzillas': 1,
          'n': 1,
          'note': 1,
          'sequel': 1,
          'u': 1,
          'released': 1,
          '1998': 1,
          'american': 1,
          'release': 1,
          '1999': 1,
          'flick': 1,
          'called': 1,
          'gojira': 1,
          'nisen': 1,
          'mireniamu': 1,
          'nso': 1,
          'part': 1,
          'excited': 1,
          'drove': 1,
          'local': 1,
          'multiplex': 1,
          '2000the': 1,
          'latest': 1,
          'entry': 1,
          'almost': 1,
          '50year': 1,
          'old': 1,
          'longawaited': 1,
          'treat': 1,
          'expecting': 1,
          'goofy': 1,
          'complete': 1,
          'science': 1,
          'fair': 1,
          'level': 1,
          'sets': 1,
          'ludicrous': 1,
          'last': 1,
          'thing': 1,
          'expected': 1,
          'boring': 1,
          'imagine': 1,
          'theatre': 1,
          'full': 1,
          'felt': 1,
          'nyou': 1,
          'get': 1,
          'theyre': 1,
          'traits': 1,
          'normally': 1,
          'associated': 1,
          'nbut': 1,
          'sit': 1,
          'snoozer': 1,
          'organization': 1,
          'rorschach': 1,
          'blot': 1,
          'deal': 1,
          'wasnt': 1,
          'willing': 1,
          'accept': 1,
          'nhiroshi': 1,
          'kashiwabara': 1,
          'waturu': 1,
          'mimuras': 1,
          'script': 1,
          'crams': 1,
          'way': 1,
          'details': 1,
          'cases': 1,
          'fails': 1,
          'follow': 1,
          'maneuver': 1,
          'disconcerting': 1,
          'gives': 1,
          'permanent': 1,
          'logy': 1,
          'weighty': 1,
          'feel': 1,
          'ngodzilla': 1,
          'starts': 1,
          'destroying': 1,
          'power': 1,
          'plants': 1,
          'stops': 1,
          'nwas': 1,
          'whim': 1,
          'na': 1,
          'bold': 1,
          'political': 1,
          'statement': 1,
          'dont': 1,
          'know': 1,
          'foe': 1,
          'ancient': 1,
          'meteor': 1,
          'looks': 1,
          'prudentials': 1,
          'logo': 1,
          'doesnt': 1,
          'fight': 1,
          'beast': 1,
          'far': 1,
          'east': 1,
          'nno': 1,
          'got': 1,
          'lifesaving': 1,
          'powers': 1,
          'erase': 1,
          'data': 1,
          'japan': 1,
          'desire': 1,
          'clone': 1,
          'ability': 1,
          'become': 1,
          'spaceship': 1,
          'kind': 1,
          'tentacled': 1,
          'space': 1,
          'creature': 1,
          'ntheres': 1,
          'battle': 1,
          'head': 1,
          'prediction': 1,
          'unit': 1,
          'takehiro': 1,
          'slimy': 1,
          'government': 1,
          'official': 1,
          'hiroshi': 1,
          'abe': 1,
          'handling': 1,
          'personal': 1,
          'issues': 1,
          'nand': 1,
          'theres': 1,
          'plucky': 1,
          'news': 1,
          'photographer': 1,
          'watching': 1,
          'magnolia': 1,
          'againexcept': 1,
          'without': 1,
          'writing': 1,
          'keen': 1,
          'sociological': 1,
          'insight': 1,
          'aimee': 1,
          'mann': 1,
          'songs': 1,
          'nwhat': 1,
          'waste': 1,
          'nwhen': 1,
          'talking': 1,
          'points': 1,
          'stop': 1,
          'hurtling': 1,
          'jobits': 1,
          'entertaining': 1,
          'goes': 1,
          'easy': 1,
          'action': 1,
          'scenes': 1,
          'cheesy': 1,
          'grandeur': 1,
          'little': 1,
          'sluggish': 1,
          'nice': 1,
          'awful': 1,
          'sounding': 1,
          'hes': 1,
          'constant': 1,
          'need': 1,
          'cough': 1,
          'drop': 1,
          'nas': 1,
          'dialogue': 1,
          'one': 1,
          'summarizes': 1,
          'goofiness': 1,
          'factor': 1,
          'anyone': 1,
          'flying': 1,
          'rock': 1,
          'go': 1,
          'also': 1,
          'marked': 1,
          'first': 1,
          'since': 1,
          'three': 1,
          'stooges': 1,
          'ive': 1,
          'heard': 1,
          'word': 1,
          'imbecile': 1,
          'used': 1,
          'casual': 1,
          'conversation': 1,
          'nthough': 1,
          'summer': 1,
          'season': 1,
          'drying': 1,
          'moments': 1,
          'wouldnt': 1,
          'take': 1,
          'ntheyll': 1,
          'probably': 1,
          'end': 1,
          'asking': 1,
          'questions': 1,
          'charlie': 1,
          'rose': 1,
          'nneg': 1}),
 Counter({'n': 12,
          'one': 4,
          'several': 3,
          'innocent': 3,
          'people': 3,
          'strange': 3,
          'five': 2,
          'friends': 2,
          'stag': 2,
          'party': 2,
          'prostitute': 2,
          'nthe': 2,
          'real': 2,
          '4': 2,
          'buddies': 2,
          'moral': 2,
          'nthey': 2,
          'person': 2,
          'daniel': 2,
          'stern': 2,
          'amoral': 2,
          'film': 2,
          'funny': 2,
          'satire': 2,
          'crime': 2,
          'deeper': 2,
          'nif': 2,
          'popular': 2,
          'like': 2,
          'capsule': 1,
          'involved': 1,
          'accidental': 1,
          'killing': 1,
          'coverup': 1,
          'attempt': 1,
          'becomes': 1,
          'monster': 1,
          'eats': 1,
          'two': 1,
          'wives': 1,
          'bystanders': 1,
          'nthis': 1,
          'audience': 1,
          'pleaser': 1,
          'toronto': 1,
          'much': 1,
          'low': 1,
          '0': 1,
          'directed': 1,
          'peter': 1,
          'berg': 1,
          'acted': 1,
          'last': 1,
          'seduction': 1,
          'copland': 1,
          'go': 1,
          'outing': 1,
          'las': 1,
          'vegas': 1,
          'cameron': 1,
          'diaz': 1,
          'works': 1,
          'logistics': 1,
          'upcoming': 1,
          'wedding': 1,
          'none': 1,
          'accidentally': 1,
          'kills': 1,
          'compass': 1,
          'started': 1,
          'simple': 1,
          'little': 1,
          'cocaine': 1,
          'accident': 1,
          'look': 1,
          'happened': 1,
          'among': 1,
          'totally': 1,
          'christian': 1,
          'slater': 1,
          'nit': 1,
          'selfish': 1,
          'let': 1,
          'lead': 1,
          'really': 1,
          'biting': 1,
          'nblack': 1,
          'comedy': 1,
          'actually': 1,
          'well': 1,
          'nthere': 1,
          'element': 1,
          'missing': 1,
          'ni': 1,
          'find': 1,
          'laughing': 1,
          'either': 1,
          'nwhat': 1,
          'tale': 1,
          'care': 1,
          'happens': 1,
          'idea': 1,
          'getting': 1,
          'done': 1,
          'frequently': 1,
          'bringing': 1,
          'familiar': 1,
          'plot': 1,
          'new': 1,
          'generation': 1,
          'begins': 1,
          'diner': 1,
          'particularly': 1,
          'ends': 1,
          'extended': 1,
          'horrorcrime': 1,
          'comic': 1,
          'book': 1,
          'logical': 1,
          'holes': 1,
          'script': 1,
          'security': 1,
          'man': 1,
          'goes': 1,
          'investigate': 1,
          'complaint': 1,
          'disappears': 1,
          'wouldnt': 1,
          'guests': 1,
          'investigating': 1,
          'first': 1,
          'suspects': 1,
          'nsomeone': 1,
          'framed': 1,
          'way': 1,
          'shown': 1,
          'would': 1,
          'judged': 1,
          'minimal': 1,
          'forensic': 1,
          'detective': 1,
          'work': 1,
          'desperately': 1,
          'trying': 1,
          'avoid': 1,
          'making': 1,
          'spoiler': 1,
          'situation': 1,
          'ethics': 1,
          'get': 1,
          'slamming': 1,
          'acting': 1,
          'grief': 1,
          'hammy': 1,
          'overdone': 1,
          'nmore': 1,
          'yelling': 1,
          'humor': 1,
          'nneg': 1}),
 Counter({'williamson': 4,
          'nthe': 4,
          'also': 4,
          '_scream_': 3,
          'films': 3,
          'horta': 3,
          'pendleton': 3,
          'killer': 3,
          'way': 3,
          'witt': 3,
          'genre': 3,
          'kevin': 2,
          'horror': 2,
          'efforts': 2,
          '_urban_legend_': 2,
          'takes': 2,
          'premise': 2,
          'predictable': 2,
          'opening': 2,
          'sequence': 2,
          'like': 2,
          'large': 2,
          '_i_know': 2,
          'urban': 2,
          'person': 2,
          'group': 2,
          'year': 2,
          'true': 2,
          'link': 2,
          'well': 2,
          'round': 2,
          'many': 2,
          'cliches': 2,
          'door': 2,
          'revealed': 2,
          'film': 2,
          'attempts': 2,
          'humor': 2,
          'jackson': 2,
          'gayheart': 2,
          'filmmakers': 2,
          'hath': 1,
          'wrought': 1,
          'nwhile': 1,
          'movie': 1,
          'revival': 1,
          'spurred': 1,
          'yielded': 1,
          'decent': 1,
          'entries': 1,
          'genre_i_know_what_you_did_last_summer_': 1,
          '_halloween': 1,
          '_h20_': 1,
          '_scream_2_': 1,
          'must': 1,
          'noted': 1,
          'hand': 1,
          'writing': 1,
          'nthose': 1,
          'williamsonless': 1,
          'post_scream_': 1,
          'among': 1,
          '_wishmaster_': 1,
          'recent': 1,
          '_disturbing_behavior_': 1,
          'frightening': 1,
          'rightfrighteningly': 1,
          'insultingly': 1,
          '_bad_': 1,
          'nadd': 1,
          'list': 1,
          'promising': 1,
          'runs': 1,
          'meat': 1,
          'grinder': 1,
          'idiocy': 1,
          'influence': 1,
          'screenwriter': 1,
          'silvio': 1,
          'clear': 1,
          'two': 1,
          'key': 1,
          'areas': 1,
          'nfirst': 1,
          'extended': 1,
          'set': 1,
          'piece': 1,
          'detailing': 1,
          'singular': 1,
          'murder': 1,
          'gets': 1,
          'proverbial': 1,
          'ball': 1,
          'rolling': 1,
          'nthis': 1,
          'college': 1,
          'coed': 1,
          'michelle': 1,
          'mancini': 1,
          'natasha': 1,
          'gregson': 1,
          'wagner': 1,
          'decapitated': 1,
          'driving': 1,
          'reveals': 1,
          'obviously': 1,
          'williamsonesque': 1,
          'touch': 1,
          'killers': 1,
          'look': 1,
          'ndressed': 1,
          'hooded': 1,
          'parka': 1,
          'wielding': 1,
          'axe': 1,
          'bears': 1,
          'passing': 1,
          'resemblance': 1,
          '_fisherman': 1,
          'nsans': 1,
          'hook': 1,
          'none': 1,
          'thing': 1,
          'borrow': 1,
          'however': 1,
          'intriguing': 1,
          'nstudents': 1,
          'killed': 1,
          'legendsthose': 1,
          'contemporary': 1,
          'bits': 1,
          'mythology': 1,
          'passed': 1,
          'become': 1,
          'embedded': 1,
          'social': 1,
          'consciousness': 1,
          'nit': 1,
          'hardly': 1,
          'matters': 1,
          'tall': 1,
          'tale': 1,
          'mikey': 1,
          'life': 1,
          'cereal': 1,
          'commercials': 1,
          'died': 1,
          'fatal': 1,
          'combination': 1,
          'pop': 1,
          'rocks': 1,
          'pepsi': 1,
          'didnt': 1,
          'nmichelle': 1,
          'slain': 1,
          'lurking': 1,
          'backseat': 1,
          'lore': 1,
          'first': 1,
          'fall': 1,
          'prey': 1,
          'legend': 1,
          'come': 1,
          'body': 1,
          'count': 1,
          'rises': 1,
          'fellow': 1,
          'student': 1,
          'natalie': 1,
          'alicia': 1,
          'suspects': 1,
          'murders': 1,
          'personal': 1,
          'past': 1,
          'setup': 1,
          'shows': 1,
          'promise': 1,
          'story': 1,
          'never': 1,
          'due': 1,
          'part': 1,
          'director': 1,
          'aptly': 1,
          'named': 1,
          'jamie': 1,
          'blanks': 1,
          'fires': 1,
          'afer': 1,
          'namesake': 1,
          'terms': 1,
          'suspense': 1,
          'scares': 1,
          'ntoo': 1,
          'wouldbe': 1,
          'shocks': 1,
          'fakeouts': 1,
          'reliant': 1,
          'bombastic': 1,
          'music': 1,
          'cues': 1,
          'chase': 1,
          'scenes': 1,
          'riddled': 1,
          'tried': 1,
          'subvert': 1,
          'screaming': 1,
          'damsels': 1,
          'knowingly': 1,
          'running': 1,
          'dead': 1,
          'ends': 1,
          'shouldand': 1,
          'couldrun': 1,
          'front': 1,
          'nbut': 1,
          'tip': 1,
          'iceberg': 1,
          'comes': 1,
          'theres': 1,
          'climactic': 1,
          'villain': 1,
          'confession': 1,
          'contrived': 1,
          'waytooconvenient': 1,
          'motive': 1,
          'mention': 1,
          'credit': 1,
          'card': 1,
          'locked': 1,
          'trick': 1,
          'cliche': 1,
          'nbanks': 1,
          'hortas': 1,
          'intentional': 1,
          'lame': 1,
          'fact': 1,
          'best': 1,
          'gags': 1,
          'lazy': 1,
          'injokey': 1,
          'references': 1,
          'credits': 1,
          'costars': 1,
          'joshua': 1,
          'rebecca': 1,
          'says': 1,
          'lot': 1,
          'imagination': 1,
          'nsome': 1,
          'laughs': 1,
          'rather': 1,
          'identity': 1,
          'im': 1,
          'sure': 1,
          'hilarious': 1,
          'things': 1,
          'meant': 1,
          'dont': 1,
          'get': 1,
          'much': 1,
          'help': 1,
          'onscreen': 1,
          'talent': 1,
          'ni': 1,
          'far': 1,
          'fan': 1,
          'bland': 1,
          '_': 1,
          'nstarlet': 1,
          'jennifer': 1,
          'love': 1,
          'hewitt': 1,
          'id': 1,
          'talke': 1,
          'day': 1,
          'ove': 1,
          'dreadfully': 1,
          'stiff': 1,
          'uncharismatic': 1,
          'whose': 1,
          'inept': 1,
          'emoting': 1,
          'often': 1,
          'met': 1,
          'laughter': 1,
          'pefect': 1,
          'foil': 1,
          'equally': 1,
          'pesencechallenged': 1,
          'leading': 1,
          'man': 1,
          'jared': 1,
          'leto': 1,
          'n_dawsons_creek_': 1,
          'star': 1,
          'mugs': 1,
          'thorugh': 1,
          'glorified': 1,
          'cameo': 1,
          'displays': 1,
          'depth': 1,
          'range': 1,
          'noxzema': 1,
          'spokeswoman': 1,
          'robert': 1,
          'englund': 1,
          'lends': 1,
          'little': 1,
          'freddy': 1,
          'krueger': 1,
          'pedigree': 1,
          'folklore': 1,
          'professor': 1,
          'ngranted': 1,
          'cast': 1,
          'hampered': 1,
          'material': 1,
          'nloretta': 1,
          'devine': 1,
          'done': 1,
          'fine': 1,
          'work': 1,
          '_waiting_to_exhale_': 1,
          'saddled': 1,
          'ridiculous': 1,
          'role': 1,
          'pam': 1,
          'grierworshiping': 1,
          'campus': 1,
          'security': 1,
          'guard': 1,
          'recently': 1,
          'resuscitated': 1,
          'rely': 1,
          'one': 1,
          'mannamely': 1,
          'williamsonto': 1,
          'stay': 1,
          'alive': 1,
          'nif': 1,
          'continue': 1,
          'make': 1,
          'shoddy': 1,
          'product': 1,
          'looks': 1,
          'go': 1,
          'screen': 1,
          'slashers': 1,
          'victims': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'ace': 5,
          'carrey': 5,
          'ventura': 3,
          'warner': 2,
          'release': 2,
          'batman': 2,
          'forever': 2,
          'bat': 2,
          'carreys': 2,
          'nature': 2,
          'calls': 2,
          'quickly': 2,
          'brothers': 1,
          'scored': 1,
          'another': 1,
          'marketing': 1,
          'coup': 1,
          'onetwo': 1,
          'punch': 1,
          'started': 1,
          'summer': 1,
          'ntrailers': 1,
          '2': 1,
          'bundled': 1,
          'ensuring': 1,
          'every': 1,
          'jim': 1,
          'fan': 1,
          'free': 1,
          'world': 1,
          'would': 1,
          'know': 1,
          'impending': 1,
          'sequel': 1,
          'ncarrey': 1,
          'went': 1,
          'win': 1,
          'raves': 1,
          'riddler': 1,
          'everwise': 1,
          'chose': 1,
          'halloween': 1,
          'date': 1,
          'video': 1,
          '11': 1,
          '99': 1,
          'walmart': 1,
          'mere': 1,
          'two': 1,
          'weeks': 1,
          'return': 1,
          'marketwise': 1,
          'misfired': 1,
          'comedy': 1,
          'nace': 1,
          'painful': 1,
          'reminder': 1,
          'grating': 1,
          'rubberfaced': 1,
          'comic': 1,
          'allowed': 1,
          'perform': 1,
          'within': 1,
          'uncontrolled': 1,
          'environment': 1,
          'nhe': 1,
          'may': 1,
          'brilliant': 1,
          'direction': 1,
          'joel': 1,
          'schumacher': 1,
          'left': 1,
          'devices': 1,
          'wears': 1,
          'welcome': 1,
          'opening': 1,
          'sequence': 1,
          'far': 1,
          'bestan': 1,
          'amusing': 1,
          'spoof': 1,
          'cliffhanger': 1,
          'performing': 1,
          'mountain': 1,
          'rescue': 1,
          'stranded': 1,
          'raccoon': 1,
          'n': 1,
          'guess': 1,
          'happens': 1,
          'mr': 1,
          'paws': 1,
          'nhint': 1,
          'sounds': 1,
          'like': 1,
          'splat': 1,
          'plot': 1,
          'shifts': 1,
          'temple': 1,
          'himalayas': 1,
          'notsodarkest': 1,
          'africa': 1,
          'case': 1,
          'missing': 1,
          'white': 1,
          'nwith': 1,
          'hair': 1,
          'limbs': 1,
          'wildly': 1,
          'askew': 1,
          'flies': 1,
          'routine': 1,
          'thirty': 1,
          'minutes': 1,
          'rest': 1,
          'film': 1,
          'nsure': 1,
          'plots': 1,
          'linear': 1,
          'production': 1,
          'values': 1,
          'solid': 1,
          'scripted': 1,
          'humor': 1,
          'support': 1,
          'sloppy': 1,
          'slathering': 1,
          'nwriter': 1,
          'director': 1,
          'steve': 1,
          'oderkerk': 1,
          'provides': 1,
          'precious': 1,
          'setups': 1,
          'ninstead': 1,
          'mugs': 1,
          'away': 1,
          'playing': 1,
          'camera': 1,
          'even': 1,
          'isnt': 1,
          'funny': 1,
          'better': 1,
          'gags': 1,
          'shown': 1,
          'ads': 1,
          'though': 1,
          'bit': 1,
          'emerging': 1,
          'bucknaked': 1,
          'backside': 1,
          'mechanical': 1,
          'rhino': 1,
          'something': 1,
          'see': 1,
          'nthough': 1,
          'arguable': 1,
          'improvement': 1,
          'original': 1,
          'still': 1,
          'snooze': 1,
          'anyone': 1,
          'age': 1,
          'ten': 1,
          'script': 1,
          'virtually': 1,
          'devoid': 1,
          'wit': 1,
          'ntribal': 1,
          'mask': 1,
          'jokes': 1,
          'njerry': 1,
          'lewis': 1,
          'cameos': 1,
          'nforget': 1,
          'nif': 1,
          'anything': 1,
          'inexplicable': 1,
          'presence': 1,
          'simon': 1,
          'callow': 1,
          'four': 1,
          'weddings': 1,
          'funeral': 1,
          'bob': 1,
          'gunton': 1,
          'shawshank': 1,
          'redemption': 1,
          'suggests': 1,
          'working': 1,
          'classical': 1,
          'actors': 1,
          'ultimate': 1,
          'challenge': 1,
          'njust': 1,
          'long': 1,
          'keep': 1,
          'straight': 1,
          'face': 1,
          'nneg': 1}),
 Counter({'jolie': 4,
          'luis': 3,
          'banderas': 3,
          'heart': 3,
          'cuban': 2,
          'away': 2,
          'wife': 2,
          'julia': 2,
          'given': 2,
          'original': 2,
          'sin': 2,
          'could': 2,
          'junk': 2,
          'said': 2,
          'least': 2,
          'nthe': 2,
          'crosses': 2,
          'manage': 2,
          'synopsis': 1,
          'wealthy': 1,
          'landowner': 1,
          'gets': 1,
          'bargained': 1,
          'sends': 1,
          'american': 1,
          'bride': 1,
          'nnot': 1,
          'new': 1,
          'turn': 1,
          'beautiful': 1,
          'also': 1,
          'harbours': 1,
          'secret': 1,
          'past': 1,
          'dubious': 1,
          'merit': 1,
          'nsoon': 1,
          'absconded': 1,
          'fortune': 1,
          'pursues': 1,
          'underworld': 1,
          'begins': 1,
          'realise': 1,
          'turning': 1,
          'back': 1,
          'nreview': 1,
          'absurdism': 1,
          'wouldbe': 1,
          'plot': 1,
          'unlikely': 1,
          'turned': 1,
          'reputable': 1,
          'piece': 1,
          'filmmaking': 1,
          'regardless': 1,
          'writer': 1,
          'director': 1,
          'stars': 1,
          'nthis': 1,
          'bmovie': 1,
          'lurid': 1,
          'melodrama': 1,
          'appeals': 1,
          'neither': 1,
          'brain': 1,
          'nether': 1,
          'regions': 1,
          'nthat': 1,
          'become': 1,
          'enjoyable': 1,
          'filmmakers': 1,
          'embraced': 1,
          'trashiness': 1,
          'indulged': 1,
          'ninstead': 1,
          'cristofer': 1,
          'seems': 1,
          'mistaken': 1,
          'serious': 1,
          'production': 1,
          'directs': 1,
          'result': 1,
          'vapid': 1,
          'uninteresting': 1,
          'morass': 1,
          'obvious': 1,
          'double': 1,
          'likely': 1,
          'incite': 1,
          'yawn': 1,
          'thrill': 1,
          'nconsider': 1,
          'initial': 1,
          'sex': 1,
          'scene': 1,
          'brightlylit': 1,
          'mostly': 1,
          'filmed': 1,
          'looks': 1,
          'like': 1,
          'excerpt': 1,
          'amateur': 1,
          'soft': 1,
          'porn': 1,
          'show': 1,
          'ncristofer': 1,
          'doesnt': 1,
          'even': 1,
          'capture': 1,
          'allure': 1,
          'cuba': 1,
          'instead': 1,
          'portraying': 1,
          'setting': 1,
          'steamy': 1,
          'sensuous': 1,
          'island': 1,
          'paradise': 1,
          'appears': 1,
          'bland': 1,
          'lifeless': 1,
          'nat': 1,
          'inspire': 1,
          'interest': 1,
          'hints': 1,
          'times': 1,
          'want': 1,
          'fun': 1,
          'script': 1,
          'arent': 1,
          'chance': 1,
          'jane': 1,
          'whose': 1,
          'billy': 1,
          'nebbish': 1,
          'transparent': 1,
          'nalso': 1,
          'unwise': 1,
          'framing': 1,
          'sequence': 1,
          'practically': 1,
          'gives': 1,
          'films': 1,
          'denouement': 1,
          'nneg': 1}),
 Counter({'thirteenth': 4,
          'warrior': 4,
          'mctiernan': 3,
          'gets': 2,
          'apart': 2,
          'nthe': 2,
          'good': 2,
          'dont': 2,
          'crichton': 2,
          'theres': 2,
          'hard': 2,
          'youll': 2,
          'pair': 1,
          'films': 1,
          'director': 1,
          'released': 1,
          'three': 1,
          'weeks': 1,
          'could': 1,
          'mean': 1,
          'one': 1,
          'two': 1,
          'things': 1,
          'recently': 1,
          'overworked': 1,
          'individual': 1,
          'due': 1,
          'welldeserved': 1,
          'rest': 1,
          'either': 1,
          'movies': 1,
          'sitting': 1,
          'studio': 1,
          'safe': 1,
          'timing': 1,
          'merely': 1,
          'coincidence': 1,
          'latters': 1,
          'case': 1,
          'john': 1,
          'finally': 1,
          'hits': 1,
          'theatres': 1,
          'year': 1,
          'counting': 1,
          'original': 1,
          'spring': 1,
          '98': 1,
          'opening': 1,
          'fast': 1,
          'heels': 1,
          'mctiernans': 1,
          'thomas': 1,
          'crown': 1,
          'affair': 1,
          'remake': 1,
          'flick': 1,
          'got': 1,
          'reviews': 1,
          'nyou': 1,
          'believe': 1,
          'superstitions': 1,
          'wager': 1,
          'guess': 1,
          'wont': 1,
          'lucky': 1,
          'nreportedly': 1,
          'shelved': 1,
          'following': 1,
          'skirmishes': 1,
          'producer': 1,
          'michael': 1,
          'whose': 1,
          'eaters': 1,
          'dead': 1,
          'novel': 1,
          'provides': 1,
          'source': 1,
          'initial': 1,
          'title': 1,
          'messy': 1,
          'melange': 1,
          'cultureclash': 1,
          'drama': 1,
          'brutal': 1,
          'warfare': 1,
          'feels': 1,
          'empty': 1,
          'sluggish': 1,
          'sorta': 1,
          'like': 1,
          'braveheart': 1,
          'without': 1,
          'passion': 1,
          'nbut': 1,
          'bloodshed': 1,
          'certainly': 1,
          'remains': 1,
          'enough': 1,
          'carnage': 1,
          'display': 1,
          'satisfy': 1,
          'search': 1,
          'purely': 1,
          'visceral': 1,
          'thrills': 1,
          'though': 1,
          'please': 1,
          'note': 1,
          'admittedly': 1,
          'pungent': 1,
          'battle': 1,
          'sequences': 1,
          'containing': 1,
          'death': 1,
          'dismemberment': 1,
          'alternate': 1,
          'talky': 1,
          'passages': 1,
          'interminable': 1,
          'dullness': 1,
          'nthese': 1,
          'circa10th': 1,
          'century': 1,
          'clashes': 1,
          'involve': 1,
          'roving': 1,
          'band': 1,
          'cannibalistic': 1,
          'creatures': 1,
          'capable': 1,
          'decapitating': 1,
          'opponents': 1,
          'bare': 1,
          'hands': 1,
          'dozen': 1,
          'norse': 1,
          'soldiers': 1,
          'stop': 1,
          'terrorizing': 1,
          'viking': 1,
          'countryside': 1,
          'guys': 1,
          'loud': 1,
          'crude': 1,
          'often': 1,
          'unintelligible': 1,
          'judging': 1,
          'highly': 1,
          'icky': 1,
          'hygiene': 1,
          'habits': 1,
          'pretty': 1,
          'smelly': 1,
          'boot': 1,
          'makes': 1,
          'perfect': 1,
          'foils': 1,
          'dignified': 1,
          'arab': 1,
          'ambassador': 1,
          'antonio': 1,
          'banderas': 1,
          'tags': 1,
          'along': 1,
          'quite': 1,
          'reluctantly': 1,
          'ntheyre': 1,
          'also': 1,
          'tell': 1,
          'hardly': 1,
          'matters': 1,
          'meet': 1,
          'violent': 1,
          'demises': 1,
          'nyoull': 1,
          'wince': 1,
          'groan': 1,
          'grouse': 1,
          'havent': 1,
          'seen': 1,
          'guy': 1,
          'killed': 1,
          'twice': 1,
          'nbanderas': 1,
          'stands': 1,
          'confused': 1,
          'amidst': 1,
          'chaos': 1,
          'partaking': 1,
          'mostly': 1,
          'distance': 1,
          'savages': 1,
          'darth': 1,
          'maul': 1,
          'facepaint': 1,
          'draped': 1,
          'latest': 1,
          'animalskin': 1,
          'fashion': 1,
          'run': 1,
          'amok': 1,
          'nhes': 1,
          'hero': 1,
          'soulful': 1,
          'eyes': 1,
          'lean': 1,
          'build': 1,
          'exactly': 1,
          'herald': 1,
          'champion': 1,
          'shwarzenegger': 1,
          'proportions': 1,
          'wisely': 1,
          'doesnt': 1,
          'pretend': 1,
          'allowing': 1,
          'foreign': 1,
          'physically': 1,
          'imposing': 1,
          'costars': 1,
          'step': 1,
          'spotlight': 1,
          'going': 1,
          'rough': 1,
          'nlet': 1,
          'characters': 1,
          'interaction': 1,
          'sans': 1,
          'swords': 1,
          'shields': 1,
          'however': 1,
          'still': 1,
          'struggle': 1,
          'audience': 1,
          'follow': 1,
          'even': 1,
          'care': 1,
          'story': 1,
          'nit': 1,
          'isnt': 1,
          'end': 1,
          'audiences': 1,
          'witnessed': 1,
          'halfbaked': 1,
          'romance': 1,
          'murky': 1,
          'political': 1,
          'intrigue': 1,
          'veteran': 1,
          'actor': 1,
          'omar': 1,
          'sharif': 1,
          'funny': 1,
          'girl': 1,
          'dropping': 1,
          'cameo': 1,
          'role': 1,
          'climactic': 1,
          'indiana': 1,
          'jones': 1,
          'temple': 1,
          'doom': 1,
          'esque': 1,
          'chase': 1,
          'villains': 1,
          'underground': 1,
          'lair': 1,
          'nall': 1,
          'clutter': 1,
          'receives': 1,
          'stunning': 1,
          'visual': 1,
          'treatment': 1,
          'courtesy': 1,
          'cinematographer': 1,
          'peter': 1,
          'menzies': 1,
          'jr': 1,
          'collaboration': 1,
          'die': 1,
          'helmer': 1,
          'jurrasic': 1,
          'park': 1,
          'creator': 1,
          'yielded': 1,
          'sumptuous': 1,
          'sights': 1,
          'graphic': 1,
          'action': 1,
          'unintentionally': 1,
          'telling': 1,
          'moments': 1,
          'nheard': 1,
          'final': 1,
          'scene': 1,
          'dog': 1,
          'whimpering': 1,
          'nhow': 1,
          'appropriate': 1,
          'nneg': 1}),
 Counter({'violin': 9,
          'story': 4,
          'red': 3,
          'nits': 3,
          'instrument': 3,
          'tragedy': 2,
          'strikes': 2,
          'becomes': 2,
          'child': 2,
          'nwe': 2,
          'nthe': 2,
          'n': 2,
          'could': 2,
          'girard': 2,
          'make': 2,
          'camera': 2,
          'cold': 1,
          'sterile': 1,
          'feature': 1,
          'leaves': 1,
          'uninvolved': 1,
          'detached': 1,
          'movie': 1,
          'seems': 1,
          'almost': 1,
          'clinical': 1,
          'traces': 1,
          '300plusyears': 1,
          'history': 1,
          'legendary': 1,
          'musical': 1,
          'title': 1,
          'nopening': 1,
          '17th': 1,
          'century': 1,
          'shows': 1,
          'violinmaker': 1,
          'nicolo': 1,
          'bussotti': 1,
          'created': 1,
          'gift': 1,
          'unborn': 1,
          'son': 1,
          'nbut': 1,
          'personification': 1,
          'makers': 1,
          'grief': 1,
          'nfrom': 1,
          'comes': 1,
          'hands': 1,
          'orphaned': 1,
          'prodigy': 1,
          'austrian': 1,
          'monastery': 1,
          'nagain': 1,
          'struck': 1,
          'moment': 1,
          'triumph': 1,
          'follow': 1,
          'centuries': 1,
          'finds': 1,
          'home': 1,
          'england': 1,
          'maos': 1,
          'communist': 1,
          'china': 1,
          'discovered': 1,
          'expert': 1,
          'charles': 1,
          'morritz': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'mounts': 1,
          'painstaking': 1,
          'investigation': 1,
          'prove': 1,
          'authenticity': 1,
          'morritzs': 1,
          'obsession': 1,
          'converge': 1,
          'montreal': 1,
          'auction': 1,
          'house': 1,
          'bid': 1,
          'nmorritz': 1,
          'however': 1,
          'one': 1,
          'knows': 1,
          'secret': 1,
          'understand': 1,
          'appreciate': 1,
          'creators': 1,
          'intention': 1,
          'touching': 1,
          'inspirational': 1,
          'soaring': 1,
          'beethoven': 1,
          'symphony': 1,
          'nhowever': 1,
          'director': 1,
          'francois': 1,
          'fails': 1,
          'emotional': 1,
          'connection': 1,
          'viewer': 1,
          'nhere': 1,
          'made': 1,
          'use': 1,
          'various': 1,
          'angles': 1,
          'lighting': 1,
          'heighten': 1,
          'impact': 1,
          'ngirard': 1,
          'unknown': 1,
          'reason': 1,
          'uses': 1,
          'mostly': 1,
          'master': 1,
          'shots': 1,
          'keeping': 1,
          'thus': 1,
          'us': 1,
          'distance': 1,
          'get': 1,
          'feel': 1,
          'miracle': 1,
          'resonance': 1,
          'purity': 1,
          'sound': 1,
          'emphasized': 1,
          'enough': 1,
          'impression': 1,
          'nnor': 1,
          'performances': 1,
          'memorable': 1,
          'wanted': 1,
          'actors': 1,
          'play': 1,
          'second': 1,
          'fiddle': 1,
          'promises': 1,
          'much': 1,
          'delivers': 1,
          'little': 1,
          'nit': 1,
          'dull': 1,
          'times': 1,
          'bit': 1,
          'pretentious': 1,
          'might': 1,
          'murky': 1,
          'movies': 1,
          'music': 1,
          'soars': 1,
          'performers': 1,
          'nand': 1,
          'saving': 1,
          'grace': 1,
          'nneg': 1}),
 Counter({'mod': 4,
          'squad': 4,
          'one': 4,
          'epps': 4,
          'nthey': 3,
          'teen': 2,
          'take': 2,
          'show': 2,
          'waiting': 2,
          'film': 2,
          'people': 2,
          'working': 2,
          'put': 2,
          'youre': 2,
          'danes': 2,
          'ribisi': 2,
          'things': 2,
          'would': 2,
          'supposed': 2,
          'socalled': 2,
          'nall': 2,
          'think': 2,
          'really': 2,
          'merchantivory': 1,
          'costume': 1,
          'dramas': 1,
          'pulse': 1,
          'selfconsciously': 1,
          'hip': 1,
          'cinematic': 1,
          'rendering': 1,
          'old': 1,
          'tv': 1,
          'series': 1,
          'still': 1,
          'looked': 1,
          'upon': 1,
          'fondly': 1,
          'many': 1,
          'babyboomers': 1,
          'nwell': 1,
          'said': 1,
          'certainly': 1,
          'wont': 1,
          'pleasant': 1,
          'viewing': 1,
          'experience': 1,
          'anybody': 1,
          'else': 1,
          'maybe': 1,
          'even': 1,
          'target': 1,
          'audience': 1,
          'movie': 1,
          'geared': 1,
          'towards': 1,
          'na': 1,
          'contemporary': 1,
          'decidedly': 1,
          '70s': 1,
          'doesnt': 1,
          'exactly': 1,
          'seem': 1,
          'unwarranted': 1,
          'wonders': 1,
          'mold': 1,
          'accumulated': 1,
          'shelf': 1,
          'didnt': 1,
          'transform': 1,
          'fullblown': 1,
          'case': 1,
          'botulism': 1,
          'nhow': 1,
          'curious': 1,
          'begins': 1,
          'defining': 1,
          'insisting': 1,
          'latter': 1,
          'group': 1,
          'together': 1,
          'contradicting': 1,
          'definition': 1,
          'keeping': 1,
          'titular': 1,
          'trio': 1,
          'apart': 1,
          'sizeable': 1,
          'chunk': 1,
          'running': 1,
          'time': 1,
          'julie': 1,
          'pete': 1,
          'linc': 1,
          'reformed': 1,
          'delinquents': 1,
          'undercover': 1,
          'lapd': 1,
          'exposition': 1,
          'way': 1,
          'fast': 1,
          'likely': 1,
          'lost': 1,
          'opening': 1,
          'moments': 1,
          'respectively': 1,
          'played': 1,
          'claire': 1,
          'giovanni': 1,
          'omar': 1,
          'talented': 1,
          'actors': 1,
          'deserving': 1,
          'better': 1,
          'ntheir': 1,
          'plight': 1,
          'involves': 1,
          'standard': 1,
          'copcorruption': 1,
          'stuff': 1,
          'wouldbe': 1,
          'protagonists': 1,
          'catch': 1,
          'wind': 1,
          'internal': 1,
          'coverup': 1,
          'superior': 1,
          'reliable': 1,
          'dennis': 1,
          'farina': 1,
          'best': 1,
          'gone': 1,
          'quickly': 1,
          'gets': 1,
          'killed': 1,
          'framed': 1,
          'drug': 1,
          'trafficking': 1,
          'pout': 1,
          'lot': 1,
          'eventually': 1,
          'get': 1,
          'cracking': 1,
          'expose': 1,
          'convoluted': 1,
          'conspiracy': 1,
          'using': 1,
          'surveillance': 1,
          'tactics': 1,
          'impress': 1,
          'hardy': 1,
          'boys': 1,
          'linda': 1,
          'tripp': 1,
          'others': 1,
          'nwhen': 1,
          'asking': 1,
          'whats': 1,
          'going': 1,
          'happen': 1,
          'next': 1,
          'nyoull': 1,
          'instead': 1,
          'entertain': 1,
          'thoughts': 1,
          'like': 1,
          'care': 1,
          'arent': 1,
          'thrillers': 1,
          'contain': 1,
          'thrills': 1,
          'nnot': 1,
          'dont': 1,
          'give': 1,
          'shot': 1,
          'ndanes': 1,
          'troubled': 1,
          'thing': 1,
          'sleep': 1,
          'evidenced': 1,
          'life': 1,
          'shes': 1,
          'saddled': 1,
          'mysteriousboyfriend': 1,
          'josh': 1,
          'brolin': 1,
          'subplot': 1,
          'seethrough': 1,
          'begin': 1,
          'seriously': 1,
          'question': 1,
          'intelligence': 1,
          'nditto': 1,
          'ribisis': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'looney': 1,
          'loose': 1,
          'cannon': 1,
          'though': 1,
          'least': 1,
          'performs': 1,
          'wildandcrazy': 1,
          'vigor': 1,
          'occasionally': 1,
          'demands': 1,
          'attention': 1,
          'nbut': 1,
          'poor': 1,
          'nepps': 1,
          'higher': 1,
          'learning': 1,
          'shortchanged': 1,
          'hes': 1,
          'reduced': 1,
          'literally': 1,
          'around': 1,
          'bad': 1,
          'guy': 1,
          'chase': 1,
          'sloppiness': 1,
          'attributed': 1,
          'screenwriters': 1,
          'scott': 1,
          'silver': 1,
          'also': 1,
          'director': 1,
          'must': 1,
          'dress': 1,
          'stupid': 1,
          'story': 1,
          'spiffy': 1,
          'trappings': 1,
          'look': 1,
          'quite': 1,
          'impressive': 1,
          'itll': 1,
          'somehow': 1,
          'pay': 1,
          'plods': 1,
          'anyway': 1,
          'ncharacters': 1,
          'nonexistent': 1,
          'present': 1,
          'goodlooking': 1,
          'young': 1,
          'modeling': 1,
          'cool': 1,
          'levis': 1,
          'cooler': 1,
          'attitudes': 1,
          'nplot': 1,
          'hardly': 1,
          'escapes': 1,
          'confusing': 1,
          'convention': 1,
          'nand': 1,
          'genre': 1,
          'element': 1,
          'youd': 1,
          'generous': 1,
          'portions': 1,
          'nifty': 1,
          'explosions': 1,
          'fights': 1,
          'kind': 1,
          'action': 1,
          'whatsoever': 1,
          'rarely': 1,
          'makes': 1,
          'dull': 1,
          'gabfest': 1,
          'quick': 1,
          'last': 1,
          'months': 1,
          'inept': 1,
          'serviceable': 1,
          'favorite': 1,
          'martian': 1,
          'update': 1,
          'need': 1,
          'step': 1,
          'back': 1,
          'nheres': 1,
          'smalltobigscreen': 1,
          'translation': 1,
          'shouldve': 1,
          'stayed': 1,
          'former': 1,
          'incarnation': 1,
          'nneg': 1}),
 Counter({'nthe': 21,
          'film': 14,
          'movie': 13,
          'wrestling': 11,
          'funny': 9,
          'wrestlers': 8,
          'arquette': 7,
          'watch': 7,
          'wcw': 6,
          'like': 6,
          'fans': 6,
          'would': 5,
          'nits': 4,
          'back': 4,
          'ni': 4,
          'made': 4,
          'even': 3,
          'two': 3,
          'go': 3,
          'fun': 3,
          'great': 3,
          'many': 3,
          'humor': 3,
          'work': 3,
          'make': 3,
          'laugh': 3,
          'especially': 3,
          'good': 3,
          'characters': 3,
          'fan': 3,
          'featured': 3,
          'money': 3,
          'show': 2,
          'big': 2,
          'commercial': 2,
          'nthere': 2,
          'gordy': 2,
          'sean': 2,
          'nthey': 2,
          'match': 2,
          'wrestler': 2,
          'jimmy': 2,
          'king': 2,
          'mean': 2,
          'titus': 2,
          'way': 2,
          'people': 2,
          'well': 2,
          'jokes': 2,
          'cashier': 2,
          'get': 2,
          'one': 2,
          'wrestle': 2,
          'nnow': 2,
          'nthat': 2,
          'pathetic': 2,
          'homage': 2,
          'actually': 2,
          '2': 2,
          'continuously': 2,
          'na': 2,
          'crap': 2,
          'nat': 2,
          'pay': 2,
          'see': 2,
          'ready': 1,
          'rumble': 1,
          'masterpiece': 1,
          'problem': 1,
          'regarding': 1,
          'ted': 1,
          'turners': 1,
          'world': 1,
          'championship': 1,
          'almost': 1,
          'entirely': 1,
          'fully': 1,
          'showcases': 1,
          'diamond': 1,
          'dallas': 1,
          'page': 1,
          'goldberg': 1,
          'sting': 1,
          'story': 1,
          'minimal': 1,
          'basic': 1,
          'guys': 1,
          'david': 1,
          'scott': 1,
          'caan': 1,
          'twentysomething': 1,
          'wyoming': 1,
          'nwhen': 1,
          'live': 1,
          'event': 1,
          'favorite': 1,
          'oliver': 1,
          'platt': 1,
          'defeated': 1,
          'career': 1,
          'announced': 1,
          'commissioner': 1,
          'joe': 1,
          'pantoliano': 1,
          'ngordy': 1,
          'decide': 1,
          'quest': 1,
          'find': 1,
          'bring': 1,
          'top': 1,
          'defeat': 1,
          'evil': 1,
          'plans': 1,
          'non': 1,
          'meet': 1,
          'clean': 1,
          'portopotties': 1,
          'nsounds': 1,
          'huh': 1,
          'makes': 1,
          'attempts': 1,
          'however': 1,
          'outnumber': 1,
          'films': 1,
          'duds': 1,
          'repertoire': 1,
          'convenience': 1,
          'store': 1,
          'played': 1,
          'ahmet': 1,
          'zappa': 1,
          'dreams': 1,
          'ways': 1,
          'enjoyed': 1,
          'version': 1,
          'arquettes': 1,
          'tag': 1,
          'team': 1,
          'partner': 1,
          'macho': 1,
          'man': 1,
          'randy': 1,
          'savage': 1,
          'aisles': 1,
          'knocking': 1,
          'cans': 1,
          'getting': 1,
          'body': 1,
          'slammed': 1,
          'floor': 1,
          'part': 1,
          'sexual': 1,
          'confrontation': 1,
          'rose': 1,
          'mcgowan': 1,
          'nmcgowan': 1,
          'plays': 1,
          'sasha': 1,
          'head': 1,
          'nitro': 1,
          'girl': 1,
          'cheerleaders': 1,
          'nshe': 1,
          'becomes': 1,
          'attracted': 1,
          'nice': 1,
          'scenes': 1,
          'together': 1,
          'scene': 1,
          'calls': 1,
          'mcgowans': 1,
          'breasts': 1,
          'foreign': 1,
          'objects': 1,
          'punches': 1,
          'directly': 1,
          'face': 1,
          'didnt': 1,
          'rest': 1,
          'flick': 1,
          'filled': 1,
          'stupid': 1,
          'potty': 1,
          'farts': 1,
          'toilets': 1,
          'lead': 1,
          'portopotty': 1,
          'cleaning': 1,
          'company': 1,
          'crash': 1,
          'truck': 1,
          'excrements': 1,
          'spill': 1,
          'road': 1,
          'brainless': 1,
          'giving': 1,
          'blindly': 1,
          'faithful': 1,
          'entertainment': 1,
          'think': 1,
          'take': 1,
          'offense': 1,
          'said': 1,
          'throughout': 1,
          'main': 1,
          'happen': 1,
          'stalk': 1,
          'sneak': 1,
          'onto': 1,
          'set': 1,
          'nalso': 1,
          'wondered': 1,
          'got': 1,
          'backstage': 1,
          'easily': 1,
          'walked': 1,
          'right': 1,
          'home': 1,
          'otherwise': 1,
          'wouldnt': 1,
          'nthis': 1,
          'wasnt': 1,
          'tv': 1,
          'pointing': 1,
          'knew': 1,
          'thing': 1,
          'saturn': 1,
          'chris': 1,
          'benoit': 1,
          'left': 1,
          'still': 1,
          'prominently': 1,
          'dimwitted': 1,
          'nit': 1,
          'possibly': 1,
          'useless': 1,
          'underdeveloped': 1,
          'ever': 1,
          'recent': 1,
          'genre': 1,
          'kiss': 1,
          'detroit': 1,
          'rock': 1,
          'city': 1,
          'interesting': 1,
          'done': 1,
          'unlike': 1,
          'acting': 1,
          'plus': 1,
          'scream': 1,
          'trilogy': 1,
          'nothing': 1,
          'else': 1,
          'spokesman': 1,
          'dumb': 1,
          '1800callatt': 1,
          'ads': 1,
          'least': 1,
          'hot': 1,
          'wife': 1,
          'courtney': 1,
          'cox': 1,
          'nhes': 1,
          'parts': 1,
          'arent': 1,
          'enough': 1,
          'look': 1,
          'music': 1,
          'bad': 1,
          'also': 1,
          'feature': 1,
          'overplayed': 1,
          'tunes': 1,
          'kid': 1,
          'rocks': 1,
          'bawitdaba': 1,
          'cowboy': 1,
          'nmartin': 1,
          'landau': 1,
          'cameo': 1,
          'classic': 1,
          'hardnosed': 1,
          'trainer': 1,
          'named': 1,
          'sal': 1,
          'whips': 1,
          'shape': 1,
          'regain': 1,
          'throne': 1,
          'nscript': 1,
          'important': 1,
          'piece': 1,
          'could': 1,
          'couple': 1,
          'scribblings': 1,
          'napkin': 1,
          'probably': 1,
          'wrote': 1,
          'times': 1,
          'tries': 1,
          'real': 1,
          'form': 1,
          'alliances': 1,
          'peoples': 1,
          'houses': 1,
          'beat': 1,
          'utterly': 1,
          'ridiculous': 1,
          'whole': 1,
          'wasteful': 1,
          'dumfounding': 1,
          'experience': 1,
          'telling': 1,
          'things': 1,
          'making': 1,
          'thank': 1,
          'begin': 1,
          'paying': 1,
          '5': 1,
          'dollars': 1,
          'pottyhumor': 1,
          'sucks': 1,
          'twohour': 1,
          'nif': 1,
          'youre': 1,
          'going': 1,
          'wwf': 1,
          'entertaining': 1,
          'betters': 1,
          'theyre': 1,
          'funnier': 1,
          'diverse': 1,
          'better': 1,
          'entrance': 1,
          'themes': 1,
          'noh': 1,
          'girls': 1,
          'hotter': 1,
          'nis': 1,
          'movies': 1,
          'become': 1,
          'hourlong': 1,
          'commercials': 1,
          'ndont': 1,
          'waste': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'wyatts': 5,
          'nthe': 5,
          'wife': 5,
          'n': 4,
          'years': 3,
          'seeing': 3,
          'boring': 3,
          'like': 3,
          'looks': 3,
          'see': 3,
          'good': 3,
          'life': 2,
          'nthis': 2,
          'slow': 2,
          'scenes': 2,
          'tried': 2,
          'great': 2,
          'script': 2,
          'also': 2,
          'nsure': 2,
          'dialogue': 2,
          'third': 2,
          'chins': 2,
          'costner': 2,
          'nhe': 2,
          'dennis': 2,
          'quaid': 2,
          'performance': 2,
          'mark': 2,
          'quaids': 2,
          'ni': 2,
          'name': 2,
          'first': 2,
          'nshe': 2,
          'seems': 2,
          'way': 2,
          'old': 2,
          'wyatt': 1,
          'earp': 1,
          'details': 1,
          'thirtyfive': 1,
          'around': 1,
          '1865': 1,
          '1900': 1,
          'nafter': 1,
          'speed': 1,
          'twice': 1,
          'recently': 1,
          'kept': 1,
          'thinking': 1,
          'pass': 1,
          'eyes': 1,
          'real': 1,
          'time': 1,
          'nthere': 1,
          'hard': 1,
          'fell': 1,
          'flat': 1,
          'happily': 1,
          'womanbashes': 1,
          'tries': 1,
          'sound': 1,
          '80s': 1,
          'nthey': 1,
          'ways': 1,
          'pronounce': 1,
          'husband': 1,
          'said': 1,
          '1800s': 1,
          'entrepreneur': 1,
          'nevery': 1,
          'bit': 1,
          'maleegostroking': 1,
          'speaks': 1,
          'made': 1,
          'sick': 1,
          'listen': 1,
          'oh': 1,
          'written': 1,
          'two': 1,
          'men': 1,
          'kidding': 1,
          'torture': 1,
          'sit': 1,
          'scenery': 1,
          'fades': 1,
          'either': 1,
          'awkward': 1,
          'cliche': 1,
          'self': 1,
          'important': 1,
          'ncan': 1,
          'say': 1,
          'poor': 1,
          'editing': 1,
          'neveryone': 1,
          'ugly': 1,
          'nwhen': 1,
          'shoot': 1,
          'people': 1,
          'look': 1,
          'double': 1,
          'nkevin': 1,
          'never': 1,
          'looked': 1,
          'worse': 1,
          'sue': 1,
          'gained': 1,
          '43': 1,
          'pounds': 1,
          'lost': 1,
          'ndennis': 1,
          'marvelous': 1,
          'nif': 1,
          'go': 1,
          'theatre': 1,
          'movies': 1,
          'halfway': 1,
          'ndoc': 1,
          'holliday': 1,
          'character': 1,
          'shows': 1,
          '90minute': 1,
          'ngene': 1,
          'hackman': 1,
          'nis': 1,
          'credits': 1,
          'dont': 1,
          'remember': 1,
          'nmare': 1,
          'winningham': 1,
          'makes': 1,
          'best': 1,
          'small': 1,
          'role': 1,
          'second': 1,
          'nannabeth': 1,
          'gish': 1,
          'though': 1,
          'jamie': 1,
          'gertz': 1,
          'played': 1,
          'later': 1,
          'heard': 1,
          'joanna': 1,
          'going': 1,
          'sucks': 1,
          'young': 1,
          'ncostner': 1,
          '90': 1,
          'nin': 1,
          'scene': 1,
          'supposed': 1,
          '19': 1,
          'nyeah': 1,
          'right': 1,
          'ncatherine': 1,
          'ohara': 1,
          'jobeth': 1,
          'williams': 1,
          'always': 1,
          'totally': 1,
          'wasted': 1,
          'worst': 1,
          'seen': 1,
          'last': 1,
          'action': 1,
          'hero': 1,
          'better': 1,
          'ngo': 1,
          'maverick': 1,
          'want': 1,
          'western': 1,
          'nbullets': 1,
          'nneg': 1}),
 Counter({'schwimmer': 2,
          'classmate': 2,
          'david': 1,
          'television': 1,
          'series': 1,
          'friends': 1,
          'stars': 1,
          'sensitive': 1,
          'slightly': 1,
          'neurotic': 1,
          'single': 1,
          'guy': 1,
          'gets': 1,
          'expected': 1,
          'grieving': 1,
          'mother': 1,
          'barbara': 1,
          'hershey': 1,
          'cant': 1,
          'remember': 1,
          'nhello': 1,
          'mrs': 1,
          'robinson': 1,
          'nthough': 1,
          'quite': 1,
          'cute': 1,
          'romantic': 1,
          'comedy': 1,
          'pallbearer': 1,
          'paced': 1,
          'like': 1,
          'funeral': 1,
          'march': 1,
          'nthe': 1,
          'characters': 1,
          'act': 1,
          'react': 1,
          'interact': 1,
          'halfspeed': 1,
          'making': 1,
          'one': 1,
          'excruciatingly': 1,
          'long': 1,
          'sit': 1,
          'n': 1,
          'whats': 1,
          'dreary': 1,
          'lighting': 1,
          'ncowriterdirector': 1,
          'matt': 1,
          'reeves': 1,
          'brings': 1,
          'snap': 1,
          'storys': 1,
          'midsection': 1,
          'film': 1,
          'briefly': 1,
          'comes': 1,
          'life': 1,
          'hero': 1,
          'attempts': 1,
          'resolve': 1,
          'feelings': 1,
          'another': 1,
          'appealing': 1,
          'gwyneth': 1,
          'paltrow': 1,
          'nby': 1,
          'time': 1,
          'though': 1,
          'viewers': 1,
          'either': 1,
          'fled': 1,
          'fallen': 1,
          'asleep': 1,
          'nthose': 1,
          'tough': 1,
          'souls': 1,
          'stay': 1,
          'marvel': 1,
          'sleepyeyed': 1,
          'hound': 1,
          'dog': 1,
          'head': 1,
          'cold': 1,
          'go': 1,
          'hour': 1,
          'without': 1,
          'ever': 1,
          'changing': 1,
          'expression': 1,
          'nneg': 1}),
 Counter({'movie': 11,
          'silverman': 7,
          'good': 6,
          'bad': 6,
          'script': 5,
          'saving': 4,
          'j': 4,
          'comedy': 3,
          'nthe': 3,
          'funny': 3,
          'lefessier': 3,
          'black': 3,
          'darren': 3,
          'neil': 3,
          'diamond': 3,
          'judith': 3,
          'right': 3,
          'love': 2,
          'story': 2,
          'however': 2,
          'falls': 2,
          'flat': 2,
          'think': 2,
          'times': 2,
          'doesnt': 2,
          'make': 2,
          'great': 2,
          'nwayne': 2,
          'zahn': 2,
          'jack': 2,
          'biggs': 2,
          'together': 2,
          'friends': 2,
          'end': 2,
          'peet': 2,
          'wayne': 2,
          'performances': 2,
          'job': 2,
          'even': 2,
          'isnt': 2,
          'plays': 2,
          'example': 1,
          'gone': 1,
          'nas': 1,
          'face': 1,
          'ni': 1,
          'throughout': 1,
          'short': 1,
          '90': 1,
          'minutes': 1,
          'laughed': 1,
          'total': 1,
          'seven': 1,
          'nthose': 1,
          'chuckles': 1,
          'oomph': 1,
          'steven': 1,
          'mcnugent': 1,
          'jason': 1,
          'grown': 1,
          'lives': 1,
          'best': 1,
          'forever': 1,
          'vow': 1,
          'stay': 1,
          'close': 1,
          'till': 1,
          'nwhile': 1,
          'bar': 1,
          'show': 1,
          'band': 1,
          'based': 1,
          'meets': 1,
          'young': 1,
          'woman': 1,
          'named': 1,
          'amanda': 1,
          'instantly': 1,
          'differently': 1,
          'tells': 1,
          'never': 1,
          'see': 1,
          'try': 1,
          'begin': 1,
          'topnotch': 1,
          'surprisingly': 1,
          'keep': 1,
          'afloat': 1,
          'njason': 1,
          'flop': 1,
          'loser': 1,
          'ok': 1,
          'playing': 1,
          'stale': 1,
          'nsteve': 1,
          'perfect': 1,
          'role': 1,
          'though': 1,
          'really': 1,
          'main': 1,
          'character': 1,
          'narrator': 1,
          'njack': 1,
          'well': 1,
          'past': 1,
          'namanda': 1,
          'ultimate': 1,
          'bitch': 1,
          'hes': 1,
          'better': 1,
          'singing': 1,
          'acting': 1,
          'nanyway': 1,
          'film': 1,
          'nspeaking': 1,
          'hank': 1,
          'nelkans': 1,
          'choppy': 1,
          'badly': 1,
          'written': 1,
          'enough': 1,
          'episode': 1,
          'sesame': 1,
          'street': 1,
          'trailer': 1,
          'movies': 1,
          'gives': 1,
          'away': 1,
          'everything': 1,
          'happens': 1,
          'especially': 1,
          'funniest': 1,
          'parts': 1,
          'nsomewhere': 1,
          'meant': 1,
          'could': 1,
          'alas': 1,
          'wasnt': 1,
          'ndennis': 1,
          'dugans': 1,
          'direction': 1,
          'adds': 1,
          'directorial': 1,
          'touches': 1,
          'nothing': 1,
          'special': 1,
          'simple': 1,
          'n': 1,
          'perfectly': 1,
          'ways': 1,
          'one': 1,
          'nit': 1,
          'cast': 1,
          'director': 1,
          'sweet': 1,
          'njust': 1,
          'nneg': 1}),
 Counter({'gone': 7,
          'memphis': 4,
          'cage': 4,
          'kip': 4,
          'enough': 4,
          'one': 3,
          'seconds': 3,
          'cars': 3,
          'doesnt': 3,
          'nin': 3,
          'waste': 3,
          'brothers': 2,
          'movies': 2,
          'sixty': 2,
          'tire': 2,
          'squeals': 2,
          'dialogue': 2,
          'weak': 2,
          'car': 2,
          'thief': 2,
          'take': 2,
          'big': 2,
          'fifty': 2,
          'gangster': 2,
          'calitri': 2,
          'old': 2,
          'scott': 2,
          'bad': 2,
          'stealing': 2,
          'n': 2,
          'plot': 2,
          'two': 2,
          'seriously': 2,
          'nits': 2,
          'better': 2,
          'nthe': 2,
          'like': 2,
          'favorite': 1,
          'h': 1,
          'b': 1,
          'halickis': 1,
          '1974': 1,
          'cult': 1,
          'flick': 1,
          'best': 1,
          'products': 1,
          'carchase': 1,
          'genre': 1,
          'provided': 1,
          'drivein': 1,
          'fare': 1,
          '1970s': 1,
          'nchase': 1,
          'pics': 1,
          'strong': 1,
          'visceral': 1,
          'appeal': 1,
          'nalthough': 1,
          'boasts': 1,
          'bigger': 1,
          'budget': 1,
          'familiar': 1,
          'stars': 1,
          'remake': 1,
          'relatively': 1,
          'dull': 1,
          'nrandall': 1,
          'raines': 1,
          'nicolas': 1,
          'retired': 1,
          'runs': 1,
          'gocart': 1,
          'track': 1,
          'nhe': 1,
          'got': 1,
          'crime': 1,
          'younger': 1,
          'brother': 1,
          'giovanni': 1,
          'ribisi': 1,
          'would': 1,
          'boosting': 1,
          'nhowever': 1,
          'became': 1,
          'anyway': 1,
          'hes': 1,
          'trouble': 1,
          'nkip': 1,
          'promised': 1,
          'deliver': 1,
          'luxury': 1,
          'sports': 1,
          'raymond': 1,
          'christopher': 1,
          'eccleston': 1,
          'end': 1,
          'week': 1,
          'ncalitri': 1,
          'expects': 1,
          'fulfill': 1,
          'kips': 1,
          'bargain': 1,
          'come': 1,
          'dies': 1,
          'nmemphis': 1,
          'gathers': 1,
          'crew': 1,
          'angelina': 1,
          'jolie': 1,
          'robert': 1,
          'duvall': 1,
          'patton': 1,
          'chi': 1,
          'mcbride': 1,
          'vinnie': 1,
          'jones': 1,
          'brings': 1,
          'boys': 1,
          'j': 1,
          'ncross': 1,
          'william': 1,
          'lee': 1,
          'caan': 1,
          'james': 1,
          'duval': 1,
          'nas': 1,
          'breathing': 1,
          'necks': 1,
          'wasnt': 1,
          'team': 1,
          'pursued': 1,
          'cop': 1,
          'delroy': 1,
          'lindo': 1,
          'whos': 1,
          'still': 1,
          'ticked': 1,
          'never': 1,
          'busted': 1,
          'rival': 1,
          'rap': 1,
          'star': 1,
          'master': 1,
          'p': 1,
          'wants': 1,
          'calitris': 1,
          'clients': 1,
          'nwatching': 1,
          'discovered': 1,
          'interesting': 1,
          'nmaybe': 1,
          'thats': 1,
          'first': 1,
          'fortynine': 1,
          'fairly': 1,
          'easy': 1,
          'thrills': 1,
          'saved': 1,
          'eleanor': 1,
          '1967': 1,
          'shelby': 1,
          'gto': 1,
          'model': 1,
          'always': 1,
          'eluded': 1,
          'nbut': 1,
          'chase': 1,
          'live': 1,
          'long': 1,
          'wait': 1,
          'ni': 1,
          'high': 1,
          'hopes': 1,
          'director': 1,
          'dominic': 1,
          'senas': 1,
          'second': 1,
          'film': 1,
          'kalifornia': 1,
          '1993': 1,
          'debut': 1,
          'brilliant': 1,
          'study': 1,
          'relationship': 1,
          'violence': 1,
          'audience': 1,
          'movie': 1,
          'sena': 1,
          'took': 1,
          'simple': 1,
          'thriller': 1,
          'couple': 1,
          'gives': 1,
          'serial': 1,
          'killer': 1,
          'ride': 1,
          'successfully': 1,
          'endowed': 1,
          'deeper': 1,
          'significance': 1,
          'seems': 1,
          'aiming': 1,
          'drama': 1,
          'cant': 1,
          'communicate': 1,
          'goal': 1,
          'mesh': 1,
          'either': 1,
          'takes': 1,
          'light': 1,
          'fun': 1,
          'mean': 1,
          'intense': 1,
          'nthis': 1,
          'chaser': 1,
          'none': 1,
          'lack': 1,
          'action': 1,
          'premise': 1,
          'challenged': 1,
          'filmmakers': 1,
          'create': 1,
          'spectacular': 1,
          'chases': 1,
          'ever': 1,
          'script': 1,
          'talented': 1,
          'cast': 1,
          'newsweek': 1,
          'interview': 1,
          'last': 1,
          'year': 1,
          'sean': 1,
          'penn': 1,
          'blasted': 1,
          'pal': 1,
          'nic': 1,
          'making': 1,
          'nmuch': 1,
          'every': 1,
          'good': 1,
          'picture': 1,
          'leaving': 1,
          'las': 1,
          'vegas': 1,
          'bringing': 1,
          'dead': 1,
          'major': 1,
          'stinkers': 1,
          'snake': 1,
          'eyes': 1,
          'con': 1,
          'air': 1,
          '8mm': 1,
          'city': 1,
          'angels': 1,
          'nthat': 1,
          'ratio': 1,
          'probably': 1,
          'lot': 1,
          'peers': 1,
          'boast': 1,
          'real': 1,
          'talent': 1,
          'shame': 1,
          'glitzy': 1,
          'superficial': 1,
          'tripe': 1,
          '60': 1,
          'nneg': 1}),
 Counter({'one': 3,
          'nthe': 3,
          'men': 2,
          'film': 2,
          'nmartin': 2,
          'movie': 2,
          'old': 2,
          'television': 2,
          'series': 2,
          'nit': 2,
          'looks': 2,
          'phil': 2,
          'hartman': 2,
          'steve': 1,
          'martin': 1,
          'funniest': 1,
          'alive': 1,
          'nif': 1,
          'take': 1,
          'true': 1,
          'statement': 1,
          'disappointment': 1,
          'equal': 1,
          'mine': 1,
          'hilarious': 1,
          'creating': 1,
          'best': 1,
          'laughoutloud': 1,
          'experiences': 1,
          'ever': 1,
          'taken': 1,
          'place': 1,
          'theaters': 1,
          'nyou': 1,
          'wont': 1,
          'find': 1,
          'based': 1,
          'moments': 1,
          'humor': 1,
          'wit': 1,
          'nbilko': 1,
          'name': 1,
          'isnt': 1,
          'accident': 1,
          'head': 1,
          'army': 1,
          'motor': 1,
          'pool': 1,
          'group': 1,
          'passion': 1,
          'schemes': 1,
          'nevery': 1,
          'episode': 1,
          'involves': 1,
          'sergeant': 1,
          'another': 1,
          'hairbrained': 1,
          'plan': 1,
          'get': 1,
          'rich': 1,
          'quick': 1,
          'outwitting': 1,
          'officers': 1,
          'base': 1,
          'n': 1,
          'mchales': 1,
          'navy': 1,
          'granddaddy': 1,
          'nthats': 1,
          'idea': 1,
          'behind': 1,
          'difference': 1,
          'farfetched': 1,
          'usually': 1,
          'goofy': 1,
          'funny': 1,
          'nthere': 1,
          'laugh': 1,
          'remake': 1,
          'retains': 1,
          'goofiness': 1,
          'entertainment': 1,
          'neverything': 1,
          'clean': 1,
          'obviously': 1,
          'made': 1,
          'hollywood': 1,
          'back': 1,
          'lot': 1,
          'every': 1,
          'bit': 1,
          'like': 1,
          'brand': 1,
          'new': 1,
          'even': 1,
          'beatup': 1,
          'stuff': 1,
          'remarkably': 1,
          'small': 1,
          'bigger': 1,
          'life': 1,
          'role': 1,
          'nin': 1,
          'original': 1,
          'silvers': 1,
          'played': 1,
          'huckster': 1,
          'heart': 1,
          'gold': 1,
          'touch': 1,
          'sleaziness': 1,
          'nmartins': 1,
          'bilko': 1,
          'pale': 1,
          'imitation': 1,
          'semibright': 1,
          'spot': 1,
          'bilkos': 1,
          'archenemy': 1,
          'nits': 1,
          'saying': 1,
          'much': 1,
          'considering': 1,
          'martins': 1,
          'lackluster': 1,
          'character': 1,
          'leaves': 1,
          'dust': 1,
          'nneg': 1}),
 Counter({'eye': 8,
          'nthe': 6,
          'woman': 4,
          'away': 3,
          'car': 3,
          'us': 3,
          'movie': 3,
          'nhe': 3,
          'daughter': 3,
          'ever': 2,
          'miraculously': 2,
          'walked': 2,
          'nbut': 2,
          'beholder': 2,
          'opening': 2,
          'called': 2,
          'lawyer': 2,
          'office': 2,
          'screens': 2,
          'get': 2,
          'good': 2,
          'chuckle': 2,
          'ashley': 2,
          'judd': 2,
          'nafter': 2,
          'murders': 2,
          'little': 2,
          'different': 2,
          'witnessed': 2,
          'loss': 2,
          'also': 2,
          'nhis': 2,
          'every': 2,
          'life': 2,
          'one': 2,
          'help': 2,
          'find': 2,
          'doesnt': 2,
          'matter': 2,
          'keep': 2,
          'nwhen': 2,
          'ni': 2,
          'look': 2,
          'film': 2,
          'nif': 2,
          'dissolves': 2,
          'automobile': 1,
          'accident': 1,
          'youve': 1,
          'scratches': 1,
          'yet': 1,
          'obliterated': 1,
          'unrecognizable': 1,
          'mangled': 1,
          'wreck': 1,
          'nwell': 1,
          'never': 1,
          'actually': 1,
          'happened': 1,
          'hope': 1,
          'none': 1,
          'experience': 1,
          'situation': 1,
          'watching': 1,
          'inane': 1,
          'exercise': 1,
          'certainly': 1,
          'feel': 1,
          'ive': 1,
          'unscathed': 1,
          'twohour': 1,
          'ride': 1,
          'mercilessly': 1,
          'careens': 1,
          'back': 1,
          'forth': 1,
          'finally': 1,
          'plummeting': 1,
          'icy': 1,
          'pond': 1,
          'noddly': 1,
          'psychologicalromancethriller': 1,
          'starts': 1,
          'promisingly': 1,
          'enough': 1,
          'sequence': 1,
          'introduces': 1,
          'british': 1,
          'intelligence': 1,
          'agent': 1,
          'ewan': 1,
          'mcgregor': 1,
          'working': 1,
          'washington': 1,
          'dc': 1,
          'nin': 1,
          'humorous': 1,
          'scene': 1,
          'eyes': 1,
          'top': 1,
          'across': 1,
          'street': 1,
          'pants': 1,
          'nusing': 1,
          'array': 1,
          'hightech': 1,
          'surveillance': 1,
          'communications': 1,
          'equipment': 1,
          'proceeds': 1,
          'transmit': 1,
          'pictures': 1,
          'bared': 1,
          'pc': 1,
          'fax': 1,
          'machines': 1,
          'law': 1,
          'firms': 1,
          'employees': 1,
          'audience': 1,
          'gets': 1,
          'later': 1,
          'given': 1,
          'assignment': 1,
          'encounters': 1,
          'beautiful': 1,
          'nthere': 1,
          'something': 1,
          'compelling': 1,
          'mysterious': 1,
          'ndespite': 1,
          'glamorous': 1,
          'looks': 1,
          'however': 1,
          'learn': 1,
          'psychopath': 1,
          'propensity': 1,
          'kill': 1,
          'men': 1,
          'close': 1,
          'sobs': 1,
          'singing': 1,
          'christmas': 1,
          'tune': 1,
          'bluebirds': 1,
          'laments': 1,
          'abandoned': 1,
          'father': 1,
          'long': 1,
          'ago': 1,
          'killing': 1,
          'puts': 1,
          'wig': 1,
          'assumes': 1,
          'new': 1,
          'name': 1,
          'makes': 1,
          'way': 1,
          'another': 1,
          'state': 1,
          'murderous': 1,
          'transgressions': 1,
          'alert': 1,
          'authorities': 1,
          'somehow': 1,
          'empathizes': 1,
          'sense': 1,
          'turns': 1,
          'haunted': 1,
          'past': 1,
          'taken': 1,
          'anguishes': 1,
          'day': 1,
          'tormented': 1,
          'psyche': 1,
          'creates': 1,
          'ghostlike': 1,
          'image': 1,
          'engages': 1,
          'conversation': 1,
          'nshe': 1,
          'becomes': 1,
          'sort': 1,
          'spectral': 1,
          'adviser': 1,
          'thing': 1,
          'ghostly': 1,
          'says': 1,
          'must': 1,
          'diverts': 1,
          'energies': 1,
          'trying': 1,
          'kind': 1,
          'salvation': 1,
          'nit': 1,
          'nand': 1,
          'abnormally': 1,
          'reticent': 1,
          'hiding': 1,
          'entire': 1,
          'behind': 1,
          'computer': 1,
          'follows': 1,
          'dozen': 1,
          'locales': 1,
          'shadows': 1,
          'move': 1,
          'trouble': 1,
          'crazed': 1,
          'druggie': 1,
          'jason': 1,
          'priestley': 1,
          'attacks': 1,
          'shows': 1,
          'quick': 1,
          'butt': 1,
          'kicking': 1,
          'police': 1,
          'closing': 1,
          'arrest': 1,
          'provides': 1,
          'distraction': 1,
          'escape': 1,
          'nall': 1,
          'idea': 1,
          'guardian': 1,
          'angel': 1,
          'stays': 1,
          'sight': 1,
          'npeculiar': 1,
          'nhow': 1,
          'bad': 1,
          'refer': 1,
          'review': 1,
          'quote': 1,
          'source': 1,
          'litmus': 1,
          'test': 1,
          'njust': 1,
          'take': 1,
          'fullpage': 1,
          'ad': 1,
          'newspaper': 1,
          'see': 1,
          'pulling': 1,
          'quotes': 1,
          'nfor': 1,
          'magazines': 1,
          'flaunt': 1,
          'mirabella': 1,
          'nno': 1,
          'doubt': 1,
          'impressed': 1,
          'judds': 1,
          'series': 1,
          'catwalks': 1,
          'disguise': 1,
          'changes': 1,
          'major': 1,
          'problem': 1,
          'jerks': 1,
          'forward': 1,
          'always': 1,
          'unsure': 1,
          'ultimate': 1,
          'destination': 1,
          'thriller': 1,
          'entranced': 1,
          'love': 1,
          'story': 1,
          'absolutely': 1,
          'emotional': 1,
          'pull': 1,
          'ncompletely': 1,
          'disjointed': 1,
          'structure': 1,
          'saving': 1,
          'grace': 1,
          'stylish': 1,
          'reminded': 1,
          'favorite': 1,
          'commercial': 1,
          '6': 1,
          'tachometer': 1,
          'winding': 1,
          'road': 1,
          'passenger': 1,
          'rail': 1,
          'small': 1,
          'miniature': 1,
          'childs': 1,
          'train': 1,
          'set': 1,
          'still': 1,
          'hopeful': 1,
          'serious': 1,
          'role': 1,
          'showcase': 1,
          'potential': 1,
          'talents': 1,
          'nbeyond': 1,
          'hopelessly': 1,
          'outofcontrol': 1,
          'need': 1,
          'seriously': 1,
          'better': 1,
          'traction': 1,
          'handling': 1,
          'nneg': 1}),
 Counter({'movie': 17,
          'bad': 7,
          'one': 7,
          'writing': 6,
          'nthis': 5,
          'nand': 5,
          'scene': 5,
          'big': 5,
          'much': 4,
          'even': 4,
          'film': 4,
          'ni': 4,
          'band': 4,
          'along': 4,
          'pretty': 3,
          'ta': 3,
          'got': 3,
          'russ': 3,
          'really': 3,
          'ebert': 3,
          'nbut': 3,
          'almost': 3,
          'im': 3,
          'opening': 3,
          'actually': 3,
          'get': 3,
          'goes': 3,
          'go': 3,
          'meyer': 3,
          'dialogue': 3,
          'like': 3,
          'acting': 3,
          'well': 3,
          'better': 3,
          'cynthia': 3,
          'myers': 3,
          'nthat': 2,
          'sums': 2,
          'beyond': 2,
          'valley': 2,
          'dolls': 2,
          'nif': 2,
          'point': 2,
          'nother': 2,
          'attractive': 2,
          'large': 2,
          'breasted': 2,
          'reason': 2,
          'look': 2,
          'fact': 2,
          'critic': 2,
          'roger': 2,
          'also': 2,
          'never': 2,
          'able': 2,
          'sit': 2,
          'parts': 2,
          'funny': 2,
          'nso': 2,
          'credits': 2,
          'first': 2,
          'see': 2,
          'guy': 2,
          'idea': 2,
          'happening': 2,
          'explained': 2,
          'later': 2,
          'incredibly': 2,
          'place': 2,
          'quality': 2,
          'rest': 2,
          'wouldnt': 2,
          'ask': 2,
          'kelly': 2,
          'reed': 2,
          'hollywood': 2,
          'music': 2,
          'else': 2,
          'worse': 2,
          'fame': 2,
          'idiotic': 2,
          'thrown': 2,
          'good': 2,
          'thing': 2,
          'nthe': 2,
          'hey': 2,
          'time': 2,
          'words': 2,
          'make': 2,
          'wretched': 2,
          'managed': 2,
          'turkey': 2,
          'sound': 2,
          'nthen': 2,
          'cast': 2,
          'nsadly': 2,
          'surprise': 2,
          'fairly': 2,
          'talents': 2,
          'sexist': 2,
          'review': 2,
          'playmate': 2,
          'thinking': 2,
          'nude': 2,
          'disappointment': 2,
          'life': 2,
          'nbad': 1,
          'word': 1,
          'seems': 1,
          'summary': 1,
          'isnt': 1,
          'enough': 1,
          'nstill': 1,
          'havent': 1,
          'director': 1,
          'meyers': 1,
          'predilection': 1,
          'casting': 1,
          'women': 1,
          'ultimately': 1,
          'expose': 1,
          'aforementioned': 1,
          'anatomical': 1,
          'areas': 1,
          'recommend': 1,
          'taking': 1,
          'cowritten': 1,
          'famed': 1,
          'responsible': 1,
          'screenplay': 1,
          'nafter': 1,
          'watching': 1,
          'another': 1,
          'reviews': 1,
          'gives': 1,
          'thumbs': 1,
          'straight': 1,
          'face': 1,
          'stinks': 1,
          'loud': 1,
          'nquite': 1,
          'frankly': 1,
          'deserves': 1,
          'giving': 1,
          'maybe': 1,
          'generous': 1,
          'nright': 1,
          'knew': 1,
          'classa': 1,
          'bomb': 1,
          'hands': 1,
          'nnot': 1,
          'way': 1,
          'shot': 1,
          'distracting': 1,
          'includes': 1,
          'young': 1,
          'woman': 1,
          'chased': 1,
          'nazi': 1,
          'uniform': 1,
          'absolutely': 1,
          'hell': 1,
          'soon': 1,
          'cut': 1,
          'completely': 1,
          'unrelated': 1,
          'nto': 1,
          'honest': 1,
          'sat': 1,
          'mesmerized': 1,
          'awful': 1,
          'forgot': 1,
          'seemingly': 1,
          'popped': 1,
          'nwith': 1,
          'surprised': 1,
          'nyou': 1,
          'nlike': 1,
          'matters': 1,
          'nok': 1,
          'allgirl': 1,
          'headed': 1,
          'macnamara': 1,
          'dolly': 1,
          'friends': 1,
          'try': 1,
          'gain': 1,
          'foothold': 1,
          'industry': 1,
          'nonce': 1,
          'manage': 1,
          'find': 1,
          'success': 1,
          'due': 1,
          'hooters': 1,
          'anything': 1,
          'sure': 1,
          'wasnt': 1,
          'brutally': 1,
          'singing': 1,
          'voices': 1,
          'chronicles': 1,
          'lives': 1,
          'change': 1,
          'pressures': 1,
          'neverything': 1,
          'egos': 1,
          'booze': 1,
          'drugs': 1,
          'free': 1,
          'flowing': 1,
          'sex': 1,
          'sends': 1,
          'downward': 1,
          'spiral': 1,
          'nthere': 1,
          'couple': 1,
          'subplots': 1,
          'measure': 1,
          'nfrom': 1,
          'creative': 1,
          'standpoint': 1,
          'nothing': 1,
          'redeeming': 1,
          'abovementioned': 1,
          'obsession': 1,
          'knockers': 1,
          'seemed': 1,
          'literally': 1,
          'nmr': 1,
          'generously': 1,
          'helpings': 1,
          'man': 1,
          'dig': 1,
          'favorite': 1,
          'freaks': 1,
          'nnow': 1,
          'lines': 1,
          'wrong': 1,
          'nebert': 1,
          'tried': 1,
          'inject': 1,
          'many': 1,
          'possible': 1,
          'nmaybe': 1,
          'thought': 1,
          'would': 1,
          'seem': 1,
          'smarter': 1,
          'dont': 1,
          'know': 1,
          'world': 1,
          'disguise': 1,
          'everything': 1,
          'nive': 1,
          'seen': 1,
          'home': 1,
          'movies': 1,
          'directed': 1,
          'nin': 1,
          'van': 1,
          'driving': 1,
          'fortunes': 1,
          'question': 1,
          'editors': 1,
          'suffered': 1,
          'serious': 1,
          'head': 1,
          'injuries': 1,
          'nadd': 1,
          'directing': 1,
          'check': 1,
          'system': 1,
          'broken': 1,
          'pile': 1,
          'crap': 1,
          'emanating': 1,
          'speakers': 1,
          'nfirst': 1,
          'lets': 1,
          'start': 1,
          'david': 1,
          'gurian': 1,
          'played': 1,
          'harris': 1,
          'manager': 1,
          'goofiest': 1,
          'looking': 1,
          'ever': 1,
          'set': 1,
          'foot': 1,
          'front': 1,
          'motion': 1,
          'picture': 1,
          'camera': 1,
          'doesnt': 1,
          'come': 1,
          'close': 1,
          'making': 1,
          'looks': 1,
          'following': 1,
          'shouldnt': 1,
          'nmeyers': 1,
          'stable': 1,
          'endowed': 1,
          'girls': 1,
          'benefit': 1,
          'assets': 1,
          'ndolly': 1,
          'plays': 1,
          'leader': 1,
          'cup': 1,
          'size': 1,
          'yes': 1,
          'loose': 1,
          'shirt': 1,
          'times': 1,
          'display': 1,
          'impressive': 1,
          'ass': 1,
          'chest': 1,
          'nhey': 1,
          'former': 1,
          'playboy': 1,
          'small': 1,
          'role': 1,
          'casey': 1,
          'members': 1,
          'nmeyer': 1,
          'casts': 1,
          'gorgeous': 1,
          'rack': 1,
          'kill': 1,
          'obviously': 1,
          'talent': 1,
          'scenes': 1,
          'biggest': 1,
          'nsure': 1,
          'artsy': 1,
          'throw': 1,
          'placed': 1,
          'shadows': 1,
          'non': 1,
          'side': 1,
          'fun': 1,
          'lesbo': 1,
          'porn': 1,
          'magazine': 1,
          'ill': 1,
          'admit': 1,
          'damn': 1,
          'catch': 1,
          'naked': 1,
          'since': 1,
          'huge': 1,
          'wasted': 1,
          'two': 1,
          'hours': 1,
          'say': 1,
          'stay': 1,
          'away': 1,
          'nunless': 1,
          'course': 1,
          'want': 1,
          'feel': 1,
          'knowing': 1,
          'pulitzer': 1,
          'prize': 1,
          'winning': 1,
          'screwed': 1,
          'least': 1,
          'checking': 1,
          'double': 1,
          'ds': 1,
          'downloading': 1,
          'pictures': 1,
          'internet': 1,
          'avoided': 1,
          'costs': 1,
          'nan': 1,
          'might': 1,
          'require': 1,
          'video': 1,
          'stores': 1,
          'warning': 1,
          'box': 1,
          'beware': 1,
          'extremely': 1,
          'hazardous': 1,
          'common': 1,
          'sense': 1,
          'nproceed': 1,
          'extreme': 1,
          'caution': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'travolta': 6,
          'john': 5,
          'one': 4,
          'nits': 4,
          'two': 4,
          'woods': 4,
          'much': 4,
          'na': 3,
          'army': 3,
          'see': 3,
          'big': 3,
          'scene': 3,
          'james': 3,
          'like': 3,
          'director': 3,
          'simon': 3,
          '510': 3,
          'characters': 2,
          'seen': 2,
          'films': 2,
          'predictability': 2,
          'little': 2,
          'tension': 2,
          'suspense': 2,
          'interest': 2,
          'part': 2,
          'rape': 2,
          'inside': 2,
          'general': 2,
          'murder': 2,
          'figure': 2,
          'nit': 2,
          'screen': 2,
          'away': 2,
          'even': 2,
          'man': 2,
          'plot': 2,
          'points': 2,
          'bad': 2,
          'friend': 2,
          'completed': 2,
          'scored': 2,
          'scenes': 2,
          'cromwell': 2,
          'plays': 2,
          'nand': 2,
          'good': 2,
          'every': 2,
          'character': 2,
          'eventually': 2,
          'lead': 2,
          'best': 2,
          'poor': 2,
          'mans': 2,
          'tony': 2,
          'better': 2,
          'officer': 2,
          'gentleman': 2,
          'known': 2,
          'role': 2,
          'reports': 2,
          'apparently': 2,
          'tv': 2,
          'frankenheimer': 2,
          'nthe': 2,
          'bythenumbers': 1,
          'introduces': 1,
          'situations': 1,
          'dilemmas': 1,
          'developments': 1,
          'weve': 1,
          'parade': 1,
          'easily': 1,
          'guessed': 1,
          'end': 1,
          'frame': 1,
          'number': 1,
          'packed': 1,
          'cap': 1,
          'leading': 1,
          'excitement': 1,
          'paying': 1,
          'audience': 1,
          'nin': 1,
          'short': 1,
          'clich': 1,
          'ridden': 1,
          'formula': 1,
          'nwelcome': 1,
          'review': 1,
          'generals': 1,
          'daughter': 1,
          'nplot': 1,
          'undercover': 1,
          'detective': 1,
          'counselor': 1,
          'find': 1,
          'locked': 1,
          'investigation': 1,
          'bigwig': 1,
          'daughters': 1,
          'torture': 1,
          'nthey': 1,
          'must': 1,
          'delve': 1,
          'unspoken': 1,
          'rules': 1,
          'hushhushes': 1,
          'conspiracy': 1,
          'behind': 1,
          'shocking': 1,
          'ncritique': 1,
          'numbers': 1,
          'nthis': 1,
          'sits': 1,
          'couple': 1,
          'hours': 1,
          'floats': 1,
          'around': 1,
          'goes': 1,
          'hopefully': 1,
          'never': 1,
          'heard': 1,
          'predictable': 1,
          'blind': 1,
          'could': 1,
          'coming': 1,
          'mile': 1,
          'suspenseful': 1,
          'leaf': 1,
          'dropping': 1,
          'tree': 1,
          'actionpacked': 1,
          'canadian': 1,
          'curling': 1,
          'tournament': 1,
          'nget': 1,
          'picture': 1,
          'ni': 1,
          'sure': 1,
          'ntoo': 1,
          'took': 1,
          'less': 1,
          'minutes': 1,
          'entire': 1,
          'break': 1,
          'neasy': 1,
          'pie': 1,
          'unfortunate': 1,
          'actually': 1,
          'extremely': 1,
          'enjoyable': 1,
          'together': 1,
          'near': 1,
          'beginning': 1,
          'alas': 1,
          'twas': 1,
          'alone': 1,
          'four': 1,
          'allotted': 1,
          'nwoods': 1,
          'chews': 1,
          'hes': 1,
          'passes': 1,
          'test': 1,
          'well': 1,
          'stowe': 1,
          'window': 1,
          'dressing': 1,
          'smile': 1,
          'mia': 1,
          'since': 1,
          '12': 1,
          'monkeys': 1,
          '810': 1,
          'seems': 1,
          'isnt': 1,
          'reserved': 1,
          'courage': 1,
          'fire': 1,
          'men': 1,
          'runs': 1,
          'deep': 1,
          'us': 1,
          'knows': 1,
          'suspect': 1,
          'someone': 1,
          'soon': 1,
          'obvious': 1,
          'guilty': 1,
          'mug': 1,
          'riding': 1,
          'bike': 1,
          'nother': 1,
          'scenarios': 1,
          'sponge': 1,
          'include': 1,
          'single': 1,
          'breaking': 1,
          'investigators': 1,
          'without': 1,
          'reason': 1,
          'given': 1,
          'ridiculously': 1,
          'placed': 1,
          'background': 1,
          'relationship': 1,
          'action': 1,
          'grandparents': 1,
          'bedroom': 1,
          'nightly': 1,
          'directorial': 1,
          'style': 1,
          'reward': 1,
          'west': 1,
          'solid': 1,
          'nomination': 1,
          'michael': 1,
          'bay': 1,
          'impression': 1,
          'scott': 1,
          'add': 1,
          'sunlight': 1,
          'shining': 1,
          'halfopen': 1,
          'shades': 1,
          'grit': 1,
          'integrity': 1,
          'allout': 1,
          'rainfall': 1,
          'finale': 1,
          'chaos': 1,
          'youre': 1,
          'great': 1,
          'nyawn': 1,
          'nyeah': 1,
          'whatever': 1,
          'nmean': 1,
          'arent': 1,
          'sick': 1,
          'hearing': 1,
          'boys': 1,
          'overdone': 1,
          'code': 1,
          'silence': 1,
          'nenough': 1,
          'already': 1,
          'nnext': 1,
          'subject': 1,
          'please': 1,
          'nsee': 1,
          'video': 1,
          'wan': 1,
          'fall': 1,
          'asleep': 1,
          'seeing': 1,
          'movie': 1,
          '8': 1,
          'notherwise': 1,
          'save': 1,
          'trouble': 1,
          'go': 1,
          'take': 1,
          'crap': 1,
          'instead': 1,
          'nyoull': 1,
          'feel': 1,
          'afterwards': 1,
          'ntrust': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'ironically': 1,
          'turned': 1,
          'went': 1,
          'dickie': 1,
          'gere': 1,
          'nironically': 1,
          'earliest': 1,
          'acting': 1,
          'roles': 1,
          'tvs': 1,
          'welcome': 1,
          'back': 1,
          'kotter': 1,
          'starring': 1,
          'none': 1,
          'nactor': 1,
          'recently': 1,
          'confirmed': 1,
          'dick': 1,
          'howard': 1,
          'sterns': 1,
          'radio': 1,
          'program': 1,
          'nunlike': 1,
          'rocker': 1,
          'tommy': 1,
          'lee': 1,
          'also': 1,
          'alleged': 1,
          'iq': 1,
          '180': 1,
          'nhe': 1,
          'perfect': 1,
          '800': 1,
          'verbal': 1,
          'sats': 1,
          '779': 1,
          'math': 1,
          'section': 1,
          'nwhat': 1,
          'njohn': 1,
          'married': 1,
          'actress': 1,
          'kelly': 1,
          'preston': 1,
          'son': 1,
          'named': 1,
          'jett': 1,
          'loves': 1,
          'planes': 1,
          'nword': 1,
          'street': 1,
          'kid': 1,
          'conceived': 1,
          'weekend': 1,
          'demi': 1,
          'moore': 1,
          'bruce': 1,
          'willis': 1,
          'home': 1,
          'ndirector': 1,
          'wests': 1,
          'first': 1,
          'jerry': 1,
          'bruckheimer': 1,
          'produced': 1,
          'con': 1,
          'air': 1,
          '6': 1,
          'nbefore': 1,
          'directed': 1,
          'commercials': 1,
          'including': 1,
          'budweiser': 1,
          'ad': 1,
          'dancing': 1,
          'ants': 1,
          'nyippee': 1,
          'nveteran': 1,
          'ronin': 1,
          '7': 1,
          'manchurian': 1,
          'candidate': 1,
          'portrays': 1,
          'sonnenberg': 1,
          'imdb': 1,
          'senator': 1,
          'robert': 1,
          'kennedy': 1,
          'shot': 1,
          'ambassador': 1,
          'hotel': 1,
          'los': 1,
          'angeles': 1,
          'june': 1,
          '5': 1,
          '1968': 1,
          'personally': 1,
          'driven': 1,
          'day': 1,
          'nclarence': 1,
          'williams': 1,
          'iii': 1,
          'colonel': 1,
          'fowler': 1,
          'linc': 1,
          'original': 1,
          'mod': 1,
          'squad': 1,
          'series': 1,
          'nyounger': 1,
          'folk': 1,
          'may': 1,
          'remember': 1,
          'princes': 1,
          'father': 1,
          'purple': 1,
          'rain': 1,
          'nneg': 1}),
 Counter({'murphy': 4,
          'g': 3,
          'made': 2,
          'nthe': 2,
          'ricky': 2,
          'director': 2,
          'home': 2,
          'shopping': 2,
          'rickys': 2,
          'spiritual': 2,
          'ideas': 2,
          'much': 2,
          'knew': 1,
          '16': 1,
          'years': 1,
          'eddie': 1,
          'brash': 1,
          'raucous': 1,
          'bigscreen': 1,
          'splash': 1,
          '_48_hrs': 1,
          '_': 1,
          'nwould': 1,
          'become': 1,
          'ncuddly': 1,
          'disconcerting': 1,
          'trend': 1,
          'begun': 1,
          'summers': 1,
          'cutesy': 1,
          'largely': 1,
          'laughfree': 1,
          '_doctor_dolittle_': 1,
          'continues': 1,
          'earnesttoafault': 1,
          'dramedy': 1,
          'nalthough': 1,
          'topbilled': 1,
          'merely': 1,
          'support': 1,
          'jeff': 1,
          'goldblum': 1,
          'plays': 1,
          'hayman': 1,
          'programming': 1,
          'network': 1,
          'nsales': 1,
          'way': 1,
          'job': 1,
          'hangs': 1,
          'thread': 1,
          'meets': 1,
          'mysterious': 1,
          'guru': 1,
          'desperate': 1,
          'puts': 1,
          'air': 1,
          'nwhile': 1,
          'sales': 1,
          'skyrocket': 1,
          'becomes': 1,
          'overnight': 1,
          'sensation': 1,
          'reinvigorated': 1,
          'greed': 1,
          'grows': 1,
          'endangering': 1,
          'budding': 1,
          'romance': 1,
          'goodhearted': 1,
          'media': 1,
          'research': 1,
          'consultant': 1,
          'kelly': 1,
          'preston': 1,
          'nwriter': 1,
          'tom': 1,
          'schulman': 1,
          'promising': 1,
          'satirizing': 1,
          'infomercials': 1,
          'nature': 1,
          'instant': 1,
          'celebrity': 1,
          'nbut': 1,
          'would': 1,
          'bite': 1,
          'stephen': 1,
          'herek': 1,
          'invested': 1,
          'energy': 1,
          'direction': 1,
          'film': 1,
          'sluggishly': 1,
          'paced': 1,
          '_holy_man_': 1,
          'slow': 1,
          'overlong': 1,
          '113': 1,
          'minutes': 1,
          'unfunny': 1,
          'bore': 1,
          'little': 1,
          'juice': 1,
          'proceedings': 1,
          'cleansed': 1,
          'attitude': 1,
          '_and_': 1,
          'comic': 1,
          'sensibility': 1,
          'star': 1,
          'part': 1,
          'straight': 1,
          'man': 1,
          'curiously': 1,
          'lifeless': 1,
          'presence': 1,
          'ngoldblum': 1,
          'actually': 1,
          'quite': 1,
          'good': 1,
          'hard': 1,
          'audience': 1,
          'sustain': 1,
          'interest': 1,
          'character': 1,
          'journey': 1,
          'doesnt': 1,
          'seem': 1,
          'interested': 1,
          'either': 1,
          'nneg': 1}),
 Counter({'pokemon': 11,
          'movie': 8,
          'bad': 6,
          'little': 3,
          '3': 2,
          'animation': 2,
          'nthe': 2,
          'first': 2,
          'film': 2,
          'end': 2,
          'almost': 2,
          'million': 2,
          'third': 2,
          'time': 2,
          'ash': 2,
          'friends': 2,
          'johto': 2,
          'brother': 2,
          'young': 2,
          'unown': 2,
          'powerful': 2,
          'psychic': 2,
          'abilities': 2,
          'bring': 2,
          'entei': 2,
          'every': 2,
          'good': 2,
          'one': 2,
          'second': 2,
          'qualities': 2,
          'big': 2,
          'lot': 1,
          'things': 1,
          'nfirst': 1,
          'plot': 1,
          'heavy': 1,
          'mess': 1,
          'voice': 1,
          'talents': 1,
          'badly': 1,
          'written': 1,
          'script': 1,
          'fantastic': 1,
          'came': 1,
          '1999': 1,
          'huge': 1,
          'hit': 1,
          'grossing': 1,
          '90': 1,
          'domestically': 1,
          'na': 1,
          'sequel': 1,
          'soon': 1,
          'followed': 1,
          'even': 1,
          'made': 1,
          '45': 1,
          'nwarner': 1,
          'released': 1,
          'based': 1,
          'immensely': 1,
          'popular': 1,
          'video': 1,
          'game': 1,
          'tv': 1,
          'series': 1,
          'waste': 1,
          'celluloid': 1,
          'nthis': 1,
          'ketchum': 1,
          'way': 1,
          'battles': 1,
          'told': 1,
          'new': 1,
          'spinoff': 1,
          'journeys': 1,
          'go': 1,
          'figure': 1,
          'anyway': 1,
          'comes': 1,
          'contact': 1,
          'girl': 1,
          'whos': 1,
          'father': 1,
          'disappeared': 1,
          'trying': 1,
          'discover': 1,
          'nthey': 1,
          'small': 1,
          'punch': 1,
          'great': 1,
          'together': 1,
          'create': 1,
          'legendary': 1,
          'barriers': 1,
          'mollys': 1,
          'house': 1,
          'creates': 1,
          'wish': 1,
          'wants': 1,
          'nnow': 1,
          'stop': 1,
          'show': 1,
          'rather': 1,
          'ntoo': 1,
          'really': 1,
          'surprisingly': 1,
          'entertaining': 1,
          'somewhat': 1,
          'absorbing': 1,
          'piece': 1,
          'trash': 1,
          'nit': 1,
          'message': 1,
          'flaws': 1,
          'seem': 1,
          'overpower': 1,
          'goods': 1,
          'nim': 1,
          'still': 1,
          'sure': 1,
          'thing': 1,
          'ugly': 1,
          'animals': 1,
          'speak': 1,
          'name': 1,
          'language': 1,
          'besides': 1,
          'meowth': 1,
          'personal': 1,
          'favorite': 1,
          'dont': 1,
          'understand': 1,
          'saying': 1,
          'nmy': 1,
          'thought': 1,
          'amazing': 1,
          'kept': 1,
          'leaning': 1,
          'asking': 1,
          'happened': 1,
          'nhis': 1,
          'response': 1,
          'lecture': 1,
          'nsure': 1,
          'put': 1,
          'place': 1,
          'nwith': 1,
          'feeling': 1,
          '4': 1,
          'might': 1,
          'total': 1,
          'bust': 1,
          'well': 1,
          'n': 1,
          'redeeming': 1,
          'kids': 1,
          'fans': 1,
          'dig': 1,
          'minute': 1,
          'nfor': 1,
          'parents': 1,
          'andor': 1,
          'brothers': 1,
          'sisters': 1,
          'sit': 1,
          'pillow': 1,
          'nneg': 1}),
 Counter({'hero': 6,
          'big': 6,
          'burly': 6,
          'bad': 5,
          'doesnt': 4,
          'good': 4,
          'long': 4,
          'guy': 4,
          'nthe': 4,
          'one': 4,
          'fire': 4,
          'must': 4,
          'really': 4,
          'nunfortunately': 3,
          'hes': 3,
          'nas': 3,
          'save': 3,
          'movie': 3,
          'film': 3,
          'forest': 3,
          'sadistic': 3,
          'creep': 3,
          'killed': 3,
          'twice': 3,
          'die': 3,
          'always': 2,
          'former': 2,
          'turned': 2,
          'fox': 2,
          'actor': 2,
          'first': 2,
          'star': 2,
          'firestorm': 2,
          'jesse': 2,
          'action': 2,
          'rescue': 2,
          'director': 2,
          'dean': 2,
          'semler': 2,
          'work': 2,
          'boring': 2,
          'set': 2,
          'something': 2,
          'reason': 2,
          'sequences': 2,
          'group': 2,
          'dog': 2,
          'year': 2,
          'scott': 2,
          'glenn': 2,
          'isnt': 2,
          'going': 2,
          'william': 2,
          'forsythe': 2,
          'damsel': 2,
          'distress': 2,
          'suzy': 2,
          'amis': 2,
          'end': 2,
          'worse': 2,
          'generic': 2,
          '10': 2,
          'key': 2,
          '1': 1,
          'hardtodecipher': 1,
          'accent': 1,
          '2': 1,
          'speak': 1,
          'monotone': 1,
          '3': 1,
          'nhis': 1,
          'face': 1,
          'wear': 1,
          'impassive': 1,
          'expression': 1,
          'nin': 1,
          'short': 1,
          'nfl': 1,
          'player': 1,
          'sportscaster': 1,
          'said': 1,
          'vehicle': 1,
          'plain': 1,
          'awful': 1,
          'none': 1,
          'glaring': 1,
          'problems': 1,
          'made': 1,
          'acting': 1,
          'debut': 1,
          'john': 1,
          'woos': 1,
          'broken': 1,
          'arrow': 1,
          'mediocre': 1,
          'often': 1,
          'blends': 1,
          'scenery': 1,
          'ace': 1,
          'firefighter': 1,
          'graves': 1,
          'supposed': 1,
          'playing': 1,
          'biggerthanlife': 1,
          'kind': 1,
          'man': 1,
          'crash': 1,
          'flaming': 1,
          'door': 1,
          'child': 1,
          'parachute': 1,
          'burning': 1,
          'clearing': 1,
          'stupid': 1,
          'campers': 1,
          'despite': 1,
          'best': 1,
          'efforts': 1,
          'firsttime': 1,
          'photograph': 1,
          'using': 1,
          'heroic': 1,
          'shots': 1,
          'make': 1,
          'kevin': 1,
          'costners': 1,
          'postman': 1,
          'look': 1,
          'stark': 1,
          'turns': 1,
          'pretty': 1,
          'nto': 1,
          'put': 1,
          'kindly': 1,
          'wellwritten': 1,
          'motion': 1,
          'picture': 1,
          'nfirestorm': 1,
          'collection': 1,
          'howlingly': 1,
          'lines': 1,
          'backdrop': 1,
          'disaster': 1,
          'clich': 1,
          'taken': 1,
          'together': 1,
          'form': 1,
          'requires': 1,
          'level': 1,
          'viewer': 1,
          'inebriation': 1,
          'recognized': 1,
          'plot': 1,
          'getting': 1,
          'instead': 1,
          'lower': 1,
          'realistic': 1,
          'fascinated': 1,
          'meticulous': 1,
          'planning': 1,
          'necessary': 1,
          'stage': 1,
          'effectively': 1,
          'nwere': 1,
          'introduced': 1,
          'afternoon': 1,
          'colleagues': 1,
          'jump': 1,
          'midst': 1,
          'people': 1,
          'nduring': 1,
          'sequence': 1,
          'proves': 1,
          'also': 1,
          'sensitive': 1,
          'risking': 1,
          'life': 1,
          'little': 1,
          'girl': 1,
          'yes': 1,
          'lives': 1,
          'broiled': 1,
          'alive': 1,
          'nflashforward': 1,
          'nnow': 1,
          'taking': 1,
          'chief': 1,
          'smokejumpers': 1,
          'association': 1,
          'replacing': 1,
          'outgoing': 1,
          'honcho': 1,
          'wynt': 1,
          'perkins': 1,
          'real': 1,
          'nbut': 1,
          'day': 1,
          'heros': 1,
          'charge': 1,
          'businessasusual': 1,
          'na': 1,
          'nasty': 1,
          'escaped': 1,
          'criminals': 1,
          'wyoming': 1,
          'alight': 1,
          'aid': 1,
          'flight': 1,
          'freedom': 1,
          'nled': 1,
          'randy': 1,
          'earl': 1,
          'shaye': 1,
          'pose': 1,
          'canadian': 1,
          'firefighters': 1,
          'somehow': 1,
          'got': 1,
          'lost': 1,
          'across': 1,
          'border': 1,
          'nalong': 1,
          'way': 1,
          'meet': 1,
          'take': 1,
          'hostage': 1,
          'neventually': 1,
          'placed': 1,
          'position': 1,
          'fight': 1,
          'defeat': 1,
          'restore': 1,
          'order': 1,
          'galaxy': 1,
          'nfirestorms': 1,
          'cinematographer': 1,
          'academy': 1,
          'award': 1,
          'dances': 1,
          'wolves': 1,
          'surprise': 1,
          'looks': 1,
          'thats': 1,
          'firestorms': 1,
          'lone': 1,
          'asset': 1,
          'falters': 1,
          'near': 1,
          'computergenerated': 1,
          'special': 1,
          'effects': 1,
          'fill': 1,
          'screen': 1,
          'nthese': 1,
          'equal': 1,
          'quality': 1,
          'might': 1,
          'observe': 1,
          'nintendo': 1,
          '64': 1,
          'video': 1,
          'game': 1,
          'include': 1,
          'variety': 1,
          'chases': 1,
          'occasionally': 1,
          'interesting': 1,
          'never': 1,
          'invigorating': 1,
          'neveryone': 1,
          'including': 1,
          'appears': 1,
          'motions': 1,
          'nthere': 1,
          'memorable': 1,
          'performance': 1,
          'found': 1,
          'beginning': 1,
          'unless': 1,
          'count': 1,
          'generates': 1,
          'heat': 1,
          'lacks': 1,
          'panache': 1,
          'nhes': 1,
          'snappy': 1,
          'oneliners': 1,
          'hurl': 1,
          'nmy': 1,
          'advice': 1,
          'absolute': 1,
          'power': 1,
          'titanic': 1,
          'accidentally': 1,
          'forget': 1,
          'next': 1,
          'time': 1,
          'theyre': 1,
          'making': 1,
          'resume': 1,
          'ntheres': 1,
          'small': 1,
          'comfort': 1,
          'knowing': 1,
          'early': 1,
          'already': 1,
          'entry': 1,
          'bottom': 1,
          'list': 1,
          'n': 1,
          'least': 1,
          'hope': 1,
          'arent': 1,
          'films': 1,
          'nand': 1,
          'know': 1,
          'wasnt': 1,
          'disliked': 1,
          'audience': 1,
          'filing': 1,
          'screening': 1,
          'loitered': 1,
          'theater': 1,
          'lobby': 1,
          'catch': 1,
          'comments': 1,
          'general': 1,
          'consensus': 1,
          'seemed': 1,
          'although': 1,
          'sucked': 1,
          'promotional': 1,
          'ring': 1,
          'cool': 1,
          'problem': 1,
          'wont': 1,
          'giving': 1,
          'rings': 1,
          'regular': 1,
          'moviegoers': 1,
          'nixes': 1,
          'see': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'bad': 6,
          'characters': 5,
          'nthe': 5,
          'plot': 4,
          'brain': 4,
          'film': 4,
          'verhoevens': 3,
          'allow': 3,
          'troopers': 3,
          'bugs': 3,
          'planet': 3,
          'carnage': 3,
          'ensues': 3,
          'bug': 3,
          'battle': 3,
          'robocop': 3,
          'people': 3,
          'pasadena': 2,
          'script': 2,
          'acting': 2,
          'use': 2,
          'lots': 2,
          'nit': 2,
          'violence': 2,
          'gore': 2,
          'brief': 2,
          'nsome': 2,
          'sign': 2,
          'federal': 2,
          'sending': 2,
          'nafter': 2,
          'one': 2,
          'nthis': 2,
          'rico': 2,
          'dizzy': 2,
          'plans': 2,
          'ok': 2,
          'picture': 2,
          'ads': 2,
          'much': 2,
          'like': 2,
          'starship': 2,
          'ability': 2,
          'early': 2,
          'appears': 2,
          'almost': 2,
          'good': 2,
          'scenes': 2,
          'quite': 2,
          'limbs': 2,
          'graphic': 2,
          'us': 2,
          'seen': 1,
          'amc': 1,
          'old': 1,
          '8': 1,
          'ca': 1,
          'sdds': 1,
          'npaul': 1,
          'last': 1,
          'showgirls': 1,
          'word': 1,
          'loosest': 1,
          'possible': 1,
          'sense': 1,
          'served': 1,
          'sex': 1,
          'nudity': 1,
          'stank': 1,
          'nstarship': 1,
          'serves': 1,
          'stinks': 1,
          'nnobody': 1,
          'watch': 1,
          'heres': 1,
          'synopsis': 1,
          'anyway': 1,
          'friends': 1,
          'straight': 1,
          'high': 1,
          'school': 1,
          'reserve': 1,
          'armed': 1,
          'forces': 1,
          'time': 1,
          'evil': 1,
          'klendathu': 1,
          'meteors': 1,
          'towards': 1,
          'earth': 1,
          'side': 1,
          'galaxy': 1,
          'slips': 1,
          'defences': 1,
          'destroys': 1,
          'buenos': 1,
          'aires': 1,
          'home': 1,
          'city': 1,
          'main': 1,
          'war': 1,
          'declared': 1,
          'involves': 1,
          'grunts': 1,
          'include': 1,
          'johnny': 1,
          'van': 1,
          'dien': 1,
          'meyer': 1,
          'surface': 1,
          'nmuch': 1,
          'troops': 1,
          'withdrawn': 1,
          'sent': 1,
          'another': 1,
          'answer': 1,
          'distress': 1,
          'call': 1,
          'nmore': 1,
          'rescued': 1,
          'changed': 1,
          'capture': 1,
          'believed': 1,
          'controlling': 1,
          'aliens': 1,
          'look': 1,
          'didnt': 1,
          'write': 1,
          'nyet': 1,
          'nget': 1,
          'ninterspersed': 1,
          'throughout': 1,
          'network': 1,
          'present': 1,
          'neofascist': 1,
          'state': 1,
          'nthere': 1,
          'many': 1,
          'problems': 1,
          'exists': 1,
          'drive': 1,
          'onwards': 1,
          'silly': 1,
          'nharris': 1,
          'star': 1,
          'tvs': 1,
          'doogie': 1,
          'howser': 1,
          'md': 1,
          'presented': 1,
          'psychic': 1,
          'talk': 1,
          'ferret': 1,
          'apparently': 1,
          'accept': 1,
          'mindmeld': 1,
          'later': 1,
          'nin': 1,
          'addition': 1,
          'first': 1,
          'thirty': 1,
          'minutes': 1,
          'service': 1,
          'drag': 1,
          'episode': 1,
          'beverly': 1,
          'hills': 1,
          '90210': 1,
          'onedimensional': 1,
          'killed': 1,
          'says': 1,
          'got': 1,
          'sleep': 1,
          'ni': 1,
          'hoped': 1,
          'noname': 1,
          'cast': 1,
          'would': 1,
          'kill': 1,
          'several': 1,
          'lead': 1,
          'surprise': 1,
          'audience': 1,
          'idea': 1,
          'escaped': 1,
          'dialogue': 1,
          'embarassing': 1,
          'isnt': 1,
          'helped': 1,
          'frequently': 1,
          'terrible': 1,
          'delivery': 1,
          'burst': 1,
          'laughing': 1,
          'harris': 1,
          'delivered': 1,
          'speech': 1,
          'need': 1,
          'sacrifice': 1,
          'hundred': 1,
          'species': 1,
          'nfinally': 1,
          'fake': 1,
          'become': 1,
          'nuisance': 1,
          'nalthough': 1,
          'evoke': 1,
          'propaganda': 1,
          'wwiiera': 1,
          'movietone': 1,
          'reels': 1,
          'presumably': 1,
          'meant': 1,
          'complete': 1,
          'lack': 1,
          'subtlety': 1,
          'blunts': 1,
          'effect': 1,
          'say': 1,
          'thats': 1,
          'irrelevant': 1,
          'hinges': 1,
          'nso': 1,
          'nwell': 1,
          'admit': 1,
          'effects': 1,
          'move': 1,
          'convincingly': 1,
          'especially': 1,
          'deprived': 1,
          'nand': 1,
          'brains': 1,
          'blown': 1,
          'cut': 1,
          'bodies': 1,
          'ripped': 1,
          'two': 1,
          'impressive': 1,
          'ways': 1,
          'nbut': 1,
          'problem': 1,
          'entertainment': 1,
          'value': 1,
          'rests': 1,
          'entirely': 1,
          'portrayal': 1,
          'continous': 1,
          'attempt': 1,
          'gross': 1,
          'starting': 1,
          'richards': 1,
          'character': 1,
          'vomits': 1,
          'onscreen': 1,
          'nverhoeven': 1,
          'trying': 1,
          'make': 1,
          'employing': 1,
          'elements': 1,
          'made': 1,
          'success': 1,
          'fails': 1,
          'spectacularly': 1,
          'nwhile': 1,
          'message': 1,
          'importance': 1,
          'human': 1,
          'gave': 1,
          'guys': 1,
          'motivation': 1,
          'lacks': 1,
          'even': 1,
          'simple': 1,
          'features': 1,
          'nwhen': 1,
          'sucks': 1,
          'near': 1,
          'end': 1,
          'merely': 1,
          'analogy': 1,
          'done': 1,
          'full': 1,
          'suitable': 1,
          'children': 1,
          '16': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'nthe': 8,
          'seems': 5,
          'nit': 5,
          'day': 4,
          'one': 4,
          'cinema': 4,
          'often': 3,
          'park': 3,
          'oboe': 3,
          'astray': 3,
          'director': 3,
          'musician': 3,
          'little': 2,
          'boy': 2,
          'solid': 2,
          'potential': 2,
          'simply': 2,
          'becomes': 2,
          'community': 2,
          'dull': 2,
          'time': 2,
          'people': 2,
          'town': 2,
          'tourist': 2,
          'years': 2,
          'grave': 2,
          'happens': 2,
          'first': 2,
          'woman': 2,
          'inspector': 2,
          'plot': 2,
          'freak': 2,
          'show': 2,
          'character': 2,
          'music': 2,
          'best': 2,
          'subtitles': 2,
          'words': 2,
          'pace': 2,
          'end': 2,
          'two': 2,
          'piece': 2,
          'beauty': 2,
          'similar': 1,
          'lost': 1,
          'right': 1,
          'venturing': 1,
          'call': 1,
          'toque': 1,
          'disappointing': 1,
          'wandered': 1,
          'nmany': 1,
          'elements': 1,
          'far': 1,
          'greater': 1,
          'claudio': 1,
          'macdowell': 1,
          'ever': 1,
          'know': 1,
          'dont': 1,
          'convert': 1,
          'work': 1,
          'nalthough': 1,
          'setting': 1,
          'never': 1,
          'established': 1,
          'apparent': 1,
          'takes': 1,
          'place': 1,
          'somewhere': 1,
          'latin': 1,
          'american': 1,
          'village': 1,
          'present': 1,
          'every': 1,
          'downhill': 1,
          'slide': 1,
          'last': 1,
          'nover': 1,
          'taken': 1,
          'closed': 1,
          'passed': 1,
          'daily': 1,
          'funeral': 1,
          'processions': 1,
          'accompanied': 1,
          'digger': 1,
          'nso': 1,
          'paolo': 1,
          'betti': 1,
          'arrive': 1,
          'nhe': 1,
          'sends': 1,
          'routine': 1,
          'mayhem': 1,
          'shock': 1,
          'revealed': 1,
          'plays': 1,
          'hobby': 1,
          'nwhen': 1,
          'sits': 1,
          'give': 1,
          'solo': 1,
          'performance': 1,
          'entire': 1,
          'gathers': 1,
          'around': 1,
          'bit': 1,
          'entertainment': 1,
          'countless': 1,
          'meets': 1,
          'villagers': 1,
          'agrees': 1,
          'play': 1,
          'local': 1,
          'accompaniment': 1,
          'silent': 1,
          'thus': 1,
          'opening': 1,
          'theatre': 1,
          'ages': 1,
          'talks': 1,
          'witty': 1,
          'task': 1,
          'owner': 1,
          'leticia': 1,
          'vota': 1,
          'also': 1,
          'engaged': 1,
          'towns': 1,
          'police': 1,
          'figure': 1,
          'soon': 1,
          'suspicious': 1,
          'fiances': 1,
          'involvement': 1,
          'rest': 1,
          'closely': 1,
          'resembles': 1,
          'gone': 1,
          'horribly': 1,
          'features': 1,
          'literally': 1,
          'rises': 1,
          'phone': 1,
          'conversation': 1,
          'god': 1,
          'aforementioned': 1,
          'goes': 1,
          'intriguing': 1,
          'serious': 1,
          'almost': 1,
          'humorous': 1,
          'drunk': 1,
          'ntechnically': 1,
          'nightmare': 1,
          'score': 1,
          'poorly': 1,
          'edited': 1,
          'choppy': 1,
          'rough': 1,
          'abrupt': 1,
          'lighting': 1,
          'poor': 1,
          'makes': 1,
          'increasingly': 1,
          'difficult': 1,
          'focus': 1,
          'many': 1,
          'scenes': 1,
          'english': 1,
          'full': 1,
          'misspelled': 1,
          'absent': 1,
          'presumably': 1,
          'assumption': 1,
          'audience': 1,
          'able': 1,
          'understand': 1,
          'simple': 1,
          'portuguese': 1,
          'spanish': 1,
          'phrases': 1,
          'nthis': 1,
          'translation': 1,
          'flaw': 1,
          'highlighted': 1,
          'beginning': 1,
          'relevant': 1,
          'fight': 1,
          'filled': 1,
          'dialogue': 1,
          'limited': 1,
          'fewer': 1,
          '25': 1,
          'nin': 1,
          'addition': 1,
          'uneven': 1,
          'opens': 1,
          'series': 1,
          'long': 1,
          'panoramic': 1,
          'shots': 1,
          'alone': 1,
          'test': 1,
          'ones': 1,
          'patience': 1,
          'moves': 1,
          'faster': 1,
          'slows': 1,
          'towards': 1,
          'determined': 1,
          'reach': 1,
          'hour': 1,
          'mark': 1,
          'nthere': 1,
          'however': 1,
          'exploring': 1,
          'reunification': 1,
          'nthese': 1,
          'topics': 1,
          'could': 1,
          'easily': 1,
          'fill': 1,
          'movie': 1,
          'nperhaps': 1,
          'technical': 1,
          'aspects': 1,
          'improve': 1,
          'might': 1,
          'thing': 1,
          'nmost': 1,
          'importantly': 1,
          'though': 1,
          'would': 1,
          'patch': 1,
          'make': 1,
          'flow': 1,
          'better': 1,
          'hours': 1,
          'arent': 1,
          'bore': 1,
          'nuntil': 1,
          'hope': 1,
          'crying': 1,
          'mommy': 1,
          'wanders': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'birdy': 5,
          'costume': 5,
          'nwhen': 5,
          'movie': 4,
          'daughter': 4,
          'played': 4,
          'scenes': 4,
          'would': 3,
          'father': 3,
          'one': 3,
          'nit': 3,
          'nbut': 3,
          'eccentric': 3,
          'nwhat': 3,
          'ntheres': 3,
          'scene': 3,
          'friend': 2,
          'nthe': 2,
          'plot': 2,
          'get': 2,
          'stars': 2,
          'good': 2,
          'better': 2,
          'nyou': 2,
          'poor': 2,
          'floats_': 2,
          'nwhy': 2,
          'nearly': 2,
          'script': 2,
          'could': 2,
          'best': 2,
          'less': 2,
          'back': 2,
          'rowlands': 2,
          'films': 2,
          'many': 2,
          'failed': 2,
          'point': 2,
          'supposed': 2,
          'family': 2,
          'nthere': 2,
          'job': 2,
          'nand': 2,
          'connick': 2,
          'jr': 2,
          'sort': 2,
          'go': 2,
          'great': 2,
          'warped': 2,
          'almost': 2,
          'someone': 2,
          'like': 2,
          'debacle': 2,
          'cant': 2,
          'shes': 2,
          'recurring': 2,
          'wrong': 2,
          'appear': 2,
          'image': 2,
          'destroyed': 2,
          'invites': 1,
          'nthis': 1,
          'evade': 1,
          'explosions': 1,
          'special': 1,
          'effects': 1,
          'standard': 1,
          'summer': 1,
          'fare': 1,
          'grounded': 1,
          'reality': 1,
          'follows': 1,
          'terrifying': 1,
          'incident': 1,
          'mother': 1,
          'independent': 1,
          'separate': 1,
          'move': 1,
          'away': 1,
          'city': 1,
          'nthey': 1,
          'need': 1,
          'fresh': 1,
          'air': 1,
          'perspective': 1,
          'maybe': 1,
          'start': 1,
          'nromance': 1,
          'begins': 1,
          'brew': 1,
          'however': 1,
          'locals': 1,
          'international': 1,
          'superstar': 1,
          'rugged': 1,
          'clothing': 1,
          'sparks': 1,
          'things': 1,
          'especially': 1,
          'countrywestern': 1,
          'slow': 1,
          'dance': 1,
          'rising': 1,
          'young': 1,
          'starlet': 1,
          'helms': 1,
          'cast': 1,
          'directed': 1,
          'actorturneddirectors': 1,
          'hollywood': 1,
          'accept': 1,
          'jump': 1,
          'opportunity': 1,
          'see': 1,
          'believe': 1,
          '_the': 1,
          'horse': 1,
          'whisperer_': 1,
          'moviegoer': 1,
          'conned': 1,
          'nalas': 1,
          'find': 1,
          'watching': 1,
          'incredulously': 1,
          '_hope': 1,
          'noh': 1,
          'woe': 1,
          'nyour': 1,
          'hope': 1,
          'sunk': 1,
          'made': 1,
          'released': 1,
          'travesty': 1,
          'every': 1,
          'level': 1,
          'authority': 1,
          'sink': 1,
          'careers': 1,
          'everyone': 1,
          'involved': 1,
          'nat': 1,
          'hands': 1,
          'gem': 1,
          'clueless': 1,
          'succeeds': 1,
          'transferring': 1,
          'cluelessness': 1,
          'us': 1,
          'viewers': 1,
          'n_hope': 1,
          'sandra': 1,
          'bullock': 1,
          'discovering': 1,
          'husband': 1,
          'cheating': 1,
          'national': 1,
          'television': 1,
          'takes': 1,
          'drives': 1,
          'home': 1,
          'helmed': 1,
          'countryish': 1,
          'bumpkin': 1,
          'gena': 1,
          'decorates': 1,
          'stuffed': 1,
          'wildlife': 1,
          'nbirdys': 1,
          'nephew': 1,
          'travis': 1,
          '_leave': 1,
          'beaver_s': 1,
          'cameron': 1,
          'finley': 1,
          'custody': 1,
          'injokes': 1,
          'always': 1,
          'seen': 1,
          'wearing': 1,
          'different': 1,
          'halloween': 1,
          'ndoes': 1,
          'make': 1,
          'sense': 1,
          'nis': 1,
          'funny': 1,
          'show': 1,
          'convinced': 1,
          'grandma': 1,
          'locked': 1,
          'endangering': 1,
          'mental': 1,
          'welfare': 1,
          'child': 1,
          'nall': 1,
          'undercuts': 1,
          'none': 1,
          'register': 1,
          'emotion': 1,
          'used': 1,
          'prom': 1,
          'queen': 1,
          'humbled': 1,
          'approaching': 1,
          'peer': 1,
          'mocked': 1,
          'dances': 1,
          'hospital': 1,
          'alzheimers': 1,
          'theres': 1,
          'sentimental': 1,
          'justin': 1,
          'harry': 1,
          'taking': 1,
          'liking': 1,
          'showing': 1,
          'beautiful': 1,
          'pad': 1,
          'built': 1,
          'scratch': 1,
          'sidetracked': 1,
          'earlier': 1,
          'question': 1,
          'grandmother': 1,
          'pains': 1,
          'provide': 1,
          'dog': 1,
          'kermit': 1,
          'cowboy': 1,
          'whip': 1,
          'full': 1,
          'furred': 1,
          'barney': 1,
          'grandson': 1,
          'wear': 1,
          'dinner': 1,
          'ramifications': 1,
          'lead': 1,
          'rest': 1,
          'life': 1,
          'noutside': 1,
          'sure': 1,
          'signs': 1,
          'screenwriters': 1,
          'block': 1,
          'stands': 1,
          'bully': 1,
          'school': 1,
          'loses': 1,
          'pulls': 1,
          'goofy': 1,
          'lipsynch': 1,
          'cheer': 1,
          'dies': 1,
          'cries': 1,
          'wails': 1,
          'exasperation': 1,
          'coming': 1,
          'nin': 1,
          'notice': 1,
          'strings': 1,
          'pushed': 1,
          'sit': 1,
          'comatose': 1,
          'hoping': 1,
          'end': 1,
          'nwho': 1,
          'survive': 1,
          'ni': 1,
          'worry': 1,
          'bullocks': 1,
          'career': 1,
          'running': 1,
          'autopilot': 1,
          'last': 1,
          'years': 1,
          'nshe': 1,
          'attitude': 1,
          'solid': 1,
          'perkiness': 1,
          'drive': 1,
          'busbut': 1,
          'handle': 1,
          'emotional': 1,
          'much': 1,
          'hold': 1,
          'southern': 1,
          'accent': 1,
          'nharry': 1,
          'worsestick': 1,
          'singing': 1,
          'acting': 1,
          'lessons': 1,
          'please': 1,
          'ngena': 1,
          'part': 1,
          'actress': 1,
          'staggers': 1,
          'mind': 1,
          'weighed': 1,
          'lukewarm': 1,
          'material': 1,
          'severe': 1,
          'tragedy': 1,
          'star': 1,
          'john': 1,
          'cassavettes': 1,
          'known': 1,
          'ntwo': 1,
          'notes': 1,
          'forest': 1,
          'whittaker': 1,
          '1': 1,
          'cut': 1,
          'slowmotion': 1,
          'sequences': 1,
          'twelve': 1,
          'times': 1,
          'undercut': 1,
          'direction': 1,
          'trick': 1,
          'nhave': 1,
          'done': 1,
          'shaved': 1,
          'tenminutes': 1,
          'unbearable': 1,
          'n': 1,
          '2': 1,
          'youve': 1,
          'know': 1,
          'something': 1,
          'cinematographers': 1,
          'filter': 1,
          'makes': 1,
          'candlelight': 1,
          'little': 1,
          'x': 1,
          'nyoure': 1,
          'bad': 1,
          'director': 1,
          'change': 1,
          'terrible': 1,
          'working': 1,
          'neighborhood': 1,
          'fotomat': 1,
          'finds': 1,
          'machine': 1,
          'dark': 1,
          'nthink': 1,
          'na': 1,
          'succession': 1,
          'images': 1,
          'may': 1,
          'entertaining': 1,
          'nneg': 1}),
 Counter({'murder': 9,
          'perfect': 6,
          'david': 6,
          'isnt': 4,
          'best': 3,
          'dial': 3,
          'almost': 3,
          'nthe': 3,
          'characters': 3,
          'wife': 3,
          'steven': 3,
          'emily': 3,
          'get': 3,
          'remake': 2,
          'hitchcock': 2,
          'film': 2,
          'nunfortunately': 2,
          'script': 2,
          'faults': 2,
          'little': 2,
          'behind': 2,
          'suspense': 2,
          'plot': 2,
          'thrillers': 2,
          'involved': 2,
          'going': 2,
          'become': 2,
          'theyre': 2,
          'bad': 2,
          'nnot': 2,
          'course': 2,
          'case': 2,
          'least': 2,
          'something': 2,
          'na': 2,
          'well': 2,
          'hayes': 2,
          'paltrow': 2,
          'douglas': 2,
          'stevens': 2,
          'affair': 2,
          'viggo': 2,
          'mortensen': 2,
          'husband': 2,
          'good': 2,
          '000': 2,
          'rest': 2,
          'n': 2,
          'getting': 2,
          'hes': 2,
          'supposed': 2,
          'interesting': 2,
          'see': 2,
          'nits': 2,
          'alfred': 1,
          'uncertain': 1,
          'project': 1,
          'illustrates': 1,
          'nfrankly': 1,
          'one': 1,
          'master': 1,
          'directors': 1,
          'greatest': 1,
          'efforts': 1,
          'ample': 1,
          'room': 1,
          'improvement': 1,
          'instead': 1,
          'updating': 1,
          'ironing': 1,
          'speeding': 1,
          'pace': 1,
          'inexplicably': 1,
          'managed': 1,
          'eliminate': 1,
          'everything': 1,
          'worthwhile': 1,
          'leaving': 1,
          'nearly': 1,
          'unwatchable': 1,
          'wreckage': 1,
          'wouldbe': 1,
          '90s': 1,
          'thriller': 1,
          'nalmost': 1,
          'films': 1,
          'loaded': 1,
          'implausibilities': 1,
          'keep': 1,
          'viewers': 1,
          'enough': 1,
          'whats': 1,
          'flaws': 1,
          'logic': 1,
          'dont': 1,
          'apparent': 1,
          'long': 1,
          'final': 1,
          'credits': 1,
          'rolled': 1,
          'often': 1,
          'overt': 1,
          'aware': 1,
          'happening': 1,
          'nthis': 1,
          'sign': 1,
          'occurrences': 1,
          'shatter': 1,
          'suspension': 1,
          'disbelief': 1,
          'astute': 1,
          'viewer': 1,
          'looking': 1,
          'next': 1,
          'blunder': 1,
          'nof': 1,
          'gives': 1,
          'audience': 1,
          'member': 1,
          'besides': 1,
          'concentrating': 1,
          'inane': 1,
          'lifeless': 1,
          'cardboard': 1,
          'strict': 1,
          'borrow': 1,
          'heavily': 1,
          'frederick': 1,
          'knotts': 1,
          'play': 1,
          'also': 1,
          'source': 1,
          'material': 1,
          'hitchcocks': 1,
          'version': 1,
          '1981': 1,
          'madefortv': 1,
          'retelling': 1,
          'nemily': 1,
          'gwyneth': 1,
          'wealthy': 1,
          'powerful': 1,
          'wall': 1,
          'street': 1,
          'moverandshaker': 1,
          'michael': 1,
          'ntheir': 1,
          'marriage': 1,
          'resents': 1,
          'controlling': 1,
          'instincts': 1,
          'form': 1,
          'rebellion': 1,
          'penniless': 1,
          'painter': 1,
          'shaw': 1,
          'nwhen': 1,
          'learns': 1,
          'relationship': 1,
          'decides': 1,
          'confront': 1,
          'approach': 1,
          'typical': 1,
          'cuckolded': 1,
          'ninstead': 1,
          'yelling': 1,
          'threatening': 1,
          'offers': 1,
          'proposal': 1,
          'thats': 1,
          'resist': 1,
          '500': 1,
          'cash': 1,
          '100': 1,
          'break': 1,
          'new': 1,
          'york': 1,
          'apartment': 1,
          'kill': 1,
          'first': 1,
          'payment': 1,
          'never': 1,
          'bothers': 1,
          'ask': 1,
          'nultimately': 1,
          'im': 1,
          'sure': 1,
          'three': 1,
          'main': 1,
          'sympathetic': 1,
          'coldhearted': 1,
          'wants': 1,
          'dead': 1,
          'hands': 1,
          'fortune': 1,
          'mercenary': 1,
          'lover': 1,
          'willing': 1,
          'deed': 1,
          'halfamillion': 1,
          'woman': 1,
          'happily': 1,
          'carrying': 1,
          'extramarital': 1,
          'individuals': 1,
          'profoundly': 1,
          'dislikable': 1,
          'possible': 1,
          'make': 1,
          'movie': 1,
          'detestable': 1,
          'reservoir': 1,
          'dogs': 1,
          'compelling': 1,
          'nsteven': 1,
          'lifted': 1,
          'directly': 1,
          'screenwriting': 1,
          '101': 1,
          'text': 1,
          'book': 1,
          'stereotypes': 1,
          'actors': 1,
          'obviously': 1,
          'hand': 1,
          'paychecks': 1,
          'nmichael': 1,
          'playing': 1,
          'kind': 1,
          'heartless': 1,
          'tycoon': 1,
          'sleep': 1,
          'gordon': 1,
          'gekko': 1,
          'unfaithful': 1,
          'ngwyneth': 1,
          'recently': 1,
          'delightful': 1,
          'appealing': 1,
          'sliding': 1,
          'doors': 1,
          'simply': 1,
          'awful': 1,
          'nshe': 1,
          'dubious': 1,
          'distinction': 1,
          'starred': 1,
          'two': 1,
          '1998s': 1,
          'worst': 1,
          'hush': 1,
          'nat': 1,
          'g': 1,
          'njane': 1,
          'fun': 1,
          'part': 1,
          'usually': 1,
          'things': 1,
          'even': 1,
          'movies': 1,
          'thin': 1,
          'supporting': 1,
          'cast': 1,
          'includes': 1,
          'suchet': 1,
          'star': 1,
          'poirot': 1,
          'police': 1,
          'inspector': 1,
          'sarita': 1,
          'choudhury': 1,
          'kama': 1,
          'sutra': 1,
          'emilys': 1,
          'friend': 1,
          'plodding': 1,
          'production': 1,
          'generates': 1,
          'beginning': 1,
          'end': 1,
          'nthere': 1,
          'arent': 1,
          'many': 1,
          'twists': 1,
          'turns': 1,
          'unexpectedly': 1,
          'linear': 1,
          'makes': 1,
          'ending': 1,
          'inevitable': 1,
          'start': 1,
          'surprising': 1,
          'director': 1,
          'andrew': 1,
          'davis': 1,
          'man': 1,
          'fugitive': 1,
          'mess': 1,
          'like': 1,
          'stars': 1,
          'needs': 1,
          'earn': 1,
          'living': 1,
          'remaking': 1,
          'badly': 1,
          'hardly': 1,
          'seems': 1,
          'honorable': 1,
          'way': 1,
          'go': 1,
          'dough': 1,
          'nneg': 1}),
 Counter({'nbilko': 7,
          'sgt': 6,
          'bilko': 5,
          'steve': 4,
          'movie': 4,
          'fort': 4,
          'martin': 3,
          'us': 3,
          'really': 3,
          'nsgt': 3,
          'sitcom': 2,
          'brady': 2,
          'bunch': 2,
          'hillbillies': 2,
          'hollywood': 2,
          'running': 2,
          'ideas': 2,
          'mixed': 2,
          'entertain': 2,
          'baxter': 2,
          'nthough': 2,
          'within': 2,
          'love': 2,
          'state': 2,
          'managed': 2,
          'major': 2,
          'thorn': 2,
          'army': 2,
          'around': 2,
          'least': 2,
          'shines': 1,
          'nfails': 1,
          'impress': 1,
          'nbased': 1,
          'popular': 1,
          '50s': 1,
          'follows': 1,
          'string': 1,
          'oldsitcomstomovie': 1,
          'conversion': 1,
          'fever': 1,
          'nremember': 1,
          'beverly': 1,
          'released': 1,
          'sometime': 1,
          'back': 1,
          'n': 1,
          'moderate': 1,
          'hit': 1,
          'flopped': 1,
          'ni': 1,
          'know': 1,
          'whether': 1,
          'minds': 1,
          'good': 1,
          'plain': 1,
          'lazy': 1,
          'tvconversionmovies': 1,
          'hitting': 1,
          'screens': 1,
          'like': 1,
          'wildfire': 1,
          'sad': 1,
          'say': 1,
          'success': 1,
          'nsuch': 1,
          'movies': 1,
          'mostly': 1,
          'targeted': 1,
          'viewers': 1,
          'since': 1,
          'usually': 1,
          'followings': 1,
          'series': 1,
          'larger': 1,
          'following': 1,
          'likely': 1,
          'made': 1,
          'frankly': 1,
          'seen': 1,
          'original': 1,
          'tv': 1,
          'version': 1,
          'even': 1,
          'charm': 1,
          'wild': 1,
          'antics': 1,
          'funnymen': 1,
          'dan': 1,
          'akroyd': 1,
          'failed': 1,
          'ernest': 1,
          'man': 1,
          'behind': 1,
          'motor': 1,
          'pool': 1,
          'place': 1,
          'vehicle': 1,
          'storage': 1,
          'repair': 1,
          'totally': 1,
          'unskilled': 1,
          'field': 1,
          'work': 1,
          'supposed': 1,
          'charge': 1,
          'almost': 1,
          'superhuman': 1,
          'ability': 1,
          'zeal': 1,
          'sniff': 1,
          'moneymaking': 1,
          'opportunities': 1,
          'gambling': 1,
          'den': 1,
          'military': 1,
          'garage': 1,
          '4d': 1,
          'pools': 1,
          'materialistic': 1,
          'mind': 1,
          'bilkos': 1,
          'methods': 1,
          'thoughtfully': 1,
          'enriched': 1,
          'lives': 1,
          'men': 1,
          'providing': 1,
          'form': 1,
          'real': 1,
          'recreation': 1,
          'camp': 1,
          'people': 1,
          'ncolonel': 1,
          'hall': 1,
          'runs': 1,
          'entire': 1,
          'thanks': 1,
          'inborn': 1,
          'blissfullyconfused': 1,
          'hide': 1,
          'operation': 1,
          'though': 1,
          'nearly': 1,
          'every': 1,
          'living': 1,
          'person': 1,
          'knows': 1,
          'nbilkos': 1,
          'ascent': 1,
          'suddenly': 1,
          'underfire': 1,
          'pentagon': 1,
          'sends': 1,
          'tough': 1,
          'cookie': 1,
          'regulations': 1,
          'check': 1,
          'progress': 1,
          '70': 1,
          'million': 1,
          'hovertank': 1,
          'project': 1,
          'new': 1,
          'weapon': 1,
          'development': 1,
          'forts': 1,
          'grounds': 1,
          'nto': 1,
          'add': 1,
          'problems': 1,
          'determined': 1,
          'bring': 1,
          'retalliation': 1,
          'sabo': 1,
          'done': 1,
          'younger': 1,
          'days': 1,
          'ndirector': 1,
          'jonathan': 1,
          'lynn': 1,
          'directed': 1,
          'cousin': 1,
          'vinny': 1,
          'marisa': 1,
          'tomei': 1,
          'oscar': 1,
          'bestsupporting': 1,
          'actress': 1,
          'pull': 1,
          'suitable': 1,
          'pacing': 1,
          'exceptional': 1,
          'moments': 1,
          'laughter': 1,
          'nthere': 1,
          'enough': 1,
          'laughterpackedmoments': 1,
          'fully': 1,
          'average': 1,
          'moviegoer': 1,
          'nstill': 1,
          'martins': 1,
          'played': 1,
          'finesse': 1,
          'fullforce': 1,
          'renowned': 1,
          'comedian': 1,
          'nwithout': 1,
          'would': 1,
          'fell': 1,
          'flat': 1,
          'face': 1,
          'moderately': 1,
          'well': 1,
          'box': 1,
          'office': 1,
          'early': 1,
          'year': 1,
          'doubt': 1,
          'earn': 1,
          'much': 1,
          'elsewhere': 1,
          'world': 1,
          'nthe': 1,
          'current': 1,
          'trend': 1,
          'successes': 1,
          'tvconversions': 1,
          'may': 1,
          'blessing': 1,
          'disguise': 1,
          'force': 1,
          'rethink': 1,
          'initial': 1,
          'intentions': 1,
          'turn': 1,
          'another': 1,
          'tvidea': 1,
          'approach': 1,
          'creativity': 1,
          'nunless': 1,
          'fan': 1,
          'tvseries': 1,
          'watch': 1,
          'action': 1,
          'skip': 1,
          'one': 1,
          'deciding': 1,
          'catch': 1,
          'local': 1,
          'theatres': 1,
          'nim': 1,
          'sure': 1,
          'better': 1,
          'ones': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'psycho': 5,
          'sant': 5,
          'best': 5,
          'original': 4,
          'new': 3,
          'end': 3,
          'van': 3,
          'though': 3,
          'said': 3,
          'nvan': 3,
          'many': 3,
          'good': 3,
          'nthe': 3,
          'moore': 3,
          'least': 3,
          'world': 2,
          'didnt': 2,
          'gus': 2,
          'know': 2,
          'hitchcocks': 2,
          '1960': 2,
          'even': 2,
          'suck': 2,
          'took': 2,
          'hitchcock': 2,
          'exact': 2,
          'audience': 2,
          'exactly': 2,
          'time': 2,
          'could': 2,
          'something': 2,
          'nin': 2,
          'would': 2,
          'cast': 2,
          'scully': 2,
          'nmortensen': 2,
          'nice': 2,
          'point': 2,
          'heche': 2,
          'things': 2,
          'nat': 2,
          'rest': 2,
          'vaughn': 2,
          'norman': 2,
          'make': 2,
          'nthere': 2,
          'images': 2,
          'famous': 2,
          'scenes': 2,
          'look': 1,
          'version': 1,
          'came': 1,
          'ni': 1,
          'guess': 1,
          'really': 1,
          'isnt': 1,
          'bringer': 1,
          'apocalypse': 1,
          'nunfortunately': 1,
          'thing': 1,
          'sants': 1,
          'controversial': 1,
          'retelling': 1,
          'alfred': 1,
          'classic': 1,
          'polarized': 1,
          'filmgoers': 1,
          'everywhere': 1,
          'premiered': 1,
          'nwithout': 1,
          'benefit': 1,
          'actual': 1,
          'viewing': 1,
          'nbeing': 1,
          'almost': 1,
          'critic': 1,
          'waited': 1,
          'actually': 1,
          'saw': 1,
          'decide': 1,
          'sucked': 1,
          'concludes': 1,
          'use': 1,
          'word': 1,
          'hopefully': 1,
          'thoughts': 1,
          'braindead': 1,
          'orangutan': 1,
          'ndirector': 1,
          'refilmed': 1,
          'shotforshot': 1,
          'using': 1,
          'script': 1,
          'minor': 1,
          'alterations': 1,
          'inherent': 1,
          'challenge': 1,
          'making': 1,
          'suspenseful': 1,
          'scary': 1,
          'large': 1,
          'group': 1,
          'happen': 1,
          'nsuspense': 1,
          'probably': 1,
          'attained': 1,
          'actors': 1,
          'able': 1,
          'create': 1,
          'different': 1,
          'nsadly': 1,
          'occur': 1,
          'nit': 1,
          'hard': 1,
          'overshadowed': 1,
          'vera': 1,
          'miles': 1,
          'john': 1,
          'gavin': 1,
          'happened': 1,
          'julianne': 1,
          'viggo': 1,
          'mortensen': 1,
          'moores': 1,
          'case': 1,
          'helped': 1,
          'x': 1,
          'files': 1,
          'gillian': 1,
          'anderson': 1,
          'instead': 1,
          'especially': 1,
          'since': 1,
          'goes': 1,
          'entire': 1,
          'impression': 1,
          'nfrom': 1,
          'cold': 1,
          'demeanor': 1,
          'expressions': 1,
          'rigid': 1,
          'way': 1,
          'forming': 1,
          'sentence': 1,
          'liked': 1,
          'g': 1,
          'njane': 1,
          'opts': 1,
          'play': 1,
          'sam': 1,
          'loomis': 1,
          'cowboyhick': 1,
          'gone': 1,
          'past': 1,
          'starting': 1,
          'nsam': 1,
          'twang': 1,
          'cowboy': 1,
          'hat': 1,
          'thats': 1,
          'turns': 1,
          'one': 1,
          'uptight': 1,
          'performance': 1,
          'recent': 1,
          'memory': 1,
          'nanne': 1,
          'janet': 1,
          'leigh': 1,
          'role': 1,
          'brief': 1,
          'screen': 1,
          'marion': 1,
          'crane': 1,
          'little': 1,
          'life': 1,
          'cant': 1,
          'work': 1,
          'comes': 1,
          'vince': 1,
          'demented': 1,
          'mamas': 1,
          'boy': 1,
          'bates': 1,
          'nhes': 1,
          'going': 1,
          'anyone': 1,
          'forget': 1,
          'anthony': 1,
          'perkins': 1,
          'effective': 1,
          'naughty': 1,
          'part': 1,
          'dinner': 1,
          'scene': 1,
          'simply': 1,
          'talk': 1,
          'solid': 1,
          'acting': 1,
          'carried': 1,
          'made': 1,
          'boring': 1,
          'nall': 1,
          'camera': 1,
          'tricks': 1,
          'eloquently': 1,
          'used': 1,
          'arent': 1,
          'eyecatching': 1,
          'nwhat': 1,
          'passed': 1,
          'brilliance': 1,
          'copied': 1,
          'times': 1,
          'directors': 1,
          'dont': 1,
          'impress': 1,
          'excite': 1,
          'assume': 1,
          'grasp': 1,
          'originality': 1,
          'decided': 1,
          'put': 1,
          'streamofconsciousness': 1,
          'lamb': 1,
          'middle': 1,
          'road': 1,
          'nthese': 1,
          'included': 1,
          'questionable': 1,
          'editing': 1,
          'choices': 1,
          'away': 1,
          'caused': 1,
          'first': 1,
          'bewilderment': 1,
          'later': 1,
          'laughter': 1,
          'ndefinitely': 1,
          'intention': 1,
          'danny': 1,
          'elfman': 1,
          'sense': 1,
          'mess': 1,
          'bernard': 1,
          'herrmanns': 1,
          'terrific': 1,
          'score': 1,
          'nif': 1,
          'like': 1,
          'frighten': 1,
          'whats': 1,
          'naside': 1,
          'characters': 1,
          'thinly': 1,
          'drawn': 1,
          'people': 1,
          'leave': 1,
          'connection': 1,
          'company': 1,
          'done': 1,
          'recreation': 1,
          'interesting': 1,
          'however': 1,
          'noble': 1,
          'attempt': 1,
          'alas': 1,
          'dismal': 1,
          'failure': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'werewolf': 8,
          'film': 5,
          'nthe': 4,
          'impressive': 4,
          'scary': 4,
          'american': 3,
          'john': 3,
          'part': 3,
          'effects': 3,
          'good': 3,
          'dont': 3,
          'actually': 3,
          'horror': 3,
          'nbut': 3,
          'know': 3,
          'ni': 3,
          'intended': 3,
          'thing': 3,
          'since': 3,
          'landis': 2,
          'groundbreaking': 2,
          'special': 2,
          'makeup': 2,
          'used': 2,
          'transformation': 2,
          'still': 2,
          'would': 2,
          'really': 2,
          'thrown': 2,
          'nand': 2,
          'reason': 2,
          'isnt': 2,
          'great': 2,
          'things': 2,
          'one': 2,
          'going': 2,
          'happen': 2,
          'even': 2,
          'give': 2,
          'best': 2,
          'films': 2,
          'didnt': 2,
          'sort': 2,
          'whole': 2,
          'get': 2,
          'nactually': 2,
          'pretty': 2,
          'boy': 2,
          'david': 2,
          'naughton': 2,
          'hospital': 2,
          'strange': 2,
          'buddy': 2,
          'enough': 2,
          'london': 1,
          'feature': 1,
          'tourist': 1,
          'gets': 1,
          'bitten': 1,
          'jolly': 1,
          'old': 1,
          'england': 1,
          'nmore': 1,
          'specifically': 1,
          'man': 1,
          'ghosts': 1,
          'haunt': 1,
          'main': 1,
          'character': 1,
          'neven': 1,
          'twenty': 1,
          'years': 1,
          'release': 1,
          'nalthough': 1,
          'say': 1,
          'could': 1,
          'considered': 1,
          'rest': 1,
          'run': 1,
          'mill': 1,
          'flick': 1,
          'extra': 1,
          'gore': 1,
          'measure': 1,
          'nif': 1,
          'werent': 1,
          'cutting': 1,
          'edge': 1,
          'likely': 1,
          'gone': 1,
          'largely': 1,
          'unnoticed': 1,
          'released': 1,
          'back': 1,
          '1980': 1,
          'acting': 1,
          'neither': 1,
          'writing': 1,
          'nwell': 1,
          'ok': 1,
          'expect': 1,
          'either': 1,
          'important': 1,
          'element': 1,
          'lacking': 1,
          'nwith': 1,
          'exception': 1,
          'happens': 1,
          'nyou': 1,
          'need': 1,
          'obligatory': 1,
          'music': 1,
          'hint': 1,
          'director': 1,
          'credit': 1,
          'looking': 1,
          'ever': 1,
          'seen': 1,
          'wasnt': 1,
          'romantic': 1,
          'drama': 1,
          'people': 1,
          'come': 1,
          'theater': 1,
          'see': 1,
          'work': 1,
          'spoof': 1,
          'mix': 1,
          'comedic': 1,
          'moments': 1,
          'melodrama': 1,
          'bad': 1,
          'humor': 1,
          'lost': 1,
          'nits': 1,
          'never': 1,
          'sign': 1,
          'realize': 1,
          'supposed': 1,
          'funny': 1,
          'long': 1,
          'read': 1,
          'background': 1,
          'material': 1,
          'ncall': 1,
          'crazy': 1,
          'shouldnt': 1,
          'research': 1,
          'enjoy': 1,
          'nim': 1,
          'plot': 1,
          'much': 1,
          'title': 1,
          'well': 1,
          'sums': 1,
          'nwerewolf': 1,
          'bites': 1,
          'nboy': 1,
          'ends': 1,
          'tended': 1,
          'eventually': 1,
          'falls': 1,
          'nurse': 1,
          'jenny': 1,
          'agutter': 1,
          'begin': 1,
          'nincluding': 1,
          'must': 1,
          'admit': 1,
          'nice': 1,
          'touch': 1,
          'visits': 1,
          'friend': 1,
          'killed': 1,
          'attack': 1,
          'ended': 1,
          'neat': 1,
          'rapidly': 1,
          'deteriorating': 1,
          'corpse': 1,
          'sounds': 1,
          'works': 1,
          'scenes': 1,
          'dead': 1,
          'griffin': 1,
          'dunne': 1,
          'parts': 1,
          'nas': 1,
          'said': 1,
          'probably': 1,
          'hit': 1,
          'nwhile': 1,
          'today': 1,
          'arent': 1,
          'plentiful': 1,
          'warrant': 1,
          'watching': 1,
          'less': 1,
          'highlight': 1,
          'far': 1,
          'better': 1,
          'choices': 1,
          'want': 1,
          'curl': 1,
          'sweetheart': 1,
          'watch': 1,
          '1998': 1,
          'sequel': 1,
          'paris': 1,
          'entertaining': 1,
          'doesnt': 1,
          'take': 1,
          'seriously': 1,
          'provides': 1,
          'laughs': 1,
          'along': 1,
          'way': 1,
          'nneg': 1}),
 Counter({'nand': 10,
          'movie': 8,
          'ni': 6,
          'seen': 4,
          'know': 4,
          'theyre': 4,
          'bad': 4,
          'guy': 4,
          'could': 4,
          'even': 3,
          'really': 3,
          'like': 3,
          'cop': 3,
          'nthe': 3,
          'smith': 3,
          'martin': 3,
          'lawrence': 3,
          'money': 3,
          'boys': 3,
          'see': 3,
          'write': 3,
          'people': 3,
          'none': 2,
          'already': 2,
          'said': 2,
          'way': 2,
          'two': 2,
          'cops': 2,
          'lot': 2,
          'day': 2,
          'badges': 2,
          'yet': 2,
          'man': 2,
          'back': 2,
          'funny': 2,
          'nbad': 2,
          'felt': 2,
          'nmany': 2,
          'capsule': 1,
          'annoyingly': 1,
          'unentertaining': 1,
          'obvious': 1,
          'paperthin': 1,
          'buddycopdrugsexywitness': 1,
          'npresence': 1,
          'director': 1,
          'michael': 1,
          'bay': 1,
          'shows': 1,
          'talent': 1,
          'demonstrated': 1,
          'rock': 1,
          'nive': 1,
          'looked': 1,
          'box': 1,
          'art': 1,
          'nno': 1,
          'havent': 1,
          'trailer': 1,
          'dont': 1,
          'look': 1,
          'promoting': 1,
          'ive': 1,
          'thought': 1,
          'buddies': 1,
          'sort': 1,
          'ntheyre': 1,
          'others': 1,
          'throats': 1,
          'everyone': 1,
          'else': 1,
          'department': 1,
          'hates': 1,
          'cause': 1,
          'hotshots': 1,
          'kind': 1,
          'diametric': 1,
          'opposition': 1,
          'relationship': 1,
          'one': 1,
          'middle': 1,
          'business': 1,
          'usual': 1,
          'get': 1,
          'mixed': 1,
          'plot': 1,
          'involves': 1,
          'sadistic': 1,
          'lots': 1,
          'henchmen': 1,
          'never': 1,
          'hit': 1,
          'anything': 1,
          'billions': 1,
          'rounds': 1,
          'ammo': 1,
          'always': 1,
          'carrying': 1,
          'drug': 1,
          'lord': 1,
          'theres': 1,
          'witness': 1,
          'shes': 1,
          'sexy': 1,
          'thing': 1,
          'rubs': 1,
          'wrong': 1,
          'supervisor': 1,
          'wants': 1,
          'breakfast': 1,
          'blow': 1,
          'half': 1,
          'town': 1,
          'bringing': 1,
          'missed': 1,
          'bit': 1,
          'rest': 1,
          'got': 1,
          'deadon': 1,
          'hadnt': 1,
          'left': 1,
          'video': 1,
          'store': 1,
          'immensely': 1,
          'underutilized': 1,
          'tcheky': 1,
          'karyo': 1,
          'nsmith': 1,
          'plays': 1,
          'trust': 1,
          'fund': 1,
          'thus': 1,
          'l': 1,
          'family': 1,
          'shades': 1,
          'nowtired': 1,
          'lethal': 1,
          'weapon': 1,
          'dynamic': 1,
          'whose': 1,
          'wife': 1,
          'total': 1,
          'odds': 1,
          'nthis': 1,
          'leads': 1,
          'strained': 1,
          'scenes': 1,
          'lawrences': 1,
          'getting': 1,
          'totally': 1,
          'unneccesary': 1,
          'bits': 1,
          'skulking': 1,
          'around': 1,
          'house': 1,
          'thinking': 1,
          'partner': 1,
          'wifes': 1,
          'door': 1,
          'nnot': 1,
          'tiresome': 1,
          'gets': 1,
          'incredibly': 1,
          'meager': 1,
          'selling': 1,
          'points': 1,
          'presence': 1,
          'nwill': 1,
          'natural': 1,
          'im': 1,
          'happy': 1,
          'movies': 1,
          'six': 1,
          'degrees': 1,
          'men': 1,
          'black': 1,
          'nhes': 1,
          'charming': 1,
          'without': 1,
          'trying': 1,
          'seem': 1,
          'enjoying': 1,
          'nmartin': 1,
          'different': 1,
          'story': 1,
          'hes': 1,
          'uptight': 1,
          'verbally': 1,
          'constipated': 1,
          'sitting': 1,
          'improvised': 1,
          'riffs': 1,
          'trial': 1,
          'nmovies': 1,
          'originality': 1,
          'nthey': 1,
          'style': 1,
          'energy': 1,
          'synergy': 1,
          'actors': 1,
          'watching': 1,
          'glamorous': 1,
          'photography': 1,
          'impossibly': 1,
          'exact': 1,
          'stunt': 1,
          'choreography': 1,
          'fed': 1,
          'nid': 1,
          'con': 1,
          'air': 1,
          'despite': 1,
          'completely': 1,
          'implausible': 1,
          'still': 1,
          'great': 1,
          'fun': 1,
          'tried': 1,
          'however': 1,
          'feebly': 1,
          'put': 1,
          'new': 1,
          'life': 1,
          'mix': 1,
          'dry': 1,
          'run': 1,
          'overlong': 1,
          'clocking': 1,
          'hours': 1,
          'byplay': 1,
          'justified': 1,
          'nyou': 1,
          'continue': 1,
          'nother': 1,
          'buy': 1,
          'make': 1,
          'pay': 1,
          'nmore': 1,
          'fools': 1,
          'nin': 1,
          'terrifyingly': 1,
          'prescient': 1,
          'line': 1,
          'book': 1,
          'scanner': 1,
          'darkly': 1,
          'phil': 1,
          'k': 1,
          'dick': 1,
          'mused': 1,
          'mcdonaldburger': 1,
          'called': 1,
          'would': 1,
          'eventually': 1,
          'eclipse': 1,
          'token': 1,
          'cultural': 1,
          'financial': 1,
          'exchange': 1,
          'sit': 1,
          'living': 1,
          'rooms': 1,
          'sell': 1,
          'burger': 1,
          'forth': 1,
          'sinking': 1,
          'feeling': 1,
          'going': 1,
          'nsoon': 1,
          'nneg': 1}),
 Counter({'kersey': 8,
          'death': 7,
          'movie': 6,
          'wish': 5,
          'daughter': 3,
          'war': 3,
          'nhowever': 3,
          'still': 3,
          'attempts': 3,
          'new': 2,
          'paul': 2,
          'played': 2,
          'charles': 2,
          'bronson': 2,
          'avenging': 2,
          'nin': 2,
          'small': 2,
          'avenge': 2,
          'old': 2,
          'nfourth': 2,
          'hand': 2,
          'begins': 2,
          'kay': 2,
          'drug': 2,
          'like': 2,
          'plan': 2,
          'two': 2,
          'nthe': 2,
          'although': 2,
          'one': 2,
          'potentially': 2,
          '1970s': 2,
          'script': 2,
          'scenes': 2,
          'nthere': 2,
          'plot': 2,
          'even': 2,
          'first': 1,
          'mildmannered': 1,
          'york': 1,
          'architect': 1,
          'wife': 1,
          'second': 1,
          'third': 1,
          'instigated': 1,
          'order': 1,
          'friend': 1,
          'doubting': 1,
          'point': 1,
          'violent': 1,
          'crusades': 1,
          'living': 1,
          'quiet': 1,
          'life': 1,
          'girlfriend': 1,
          'karen': 1,
          'lenz': 1,
          'since': 1,
          'know': 1,
          'sooner': 1,
          'later': 1,
          'something': 1,
          'bad': 1,
          'going': 1,
          'happen': 1,
          'people': 1,
          'cares': 1,
          'nthis': 1,
          'time': 1,
          'karens': 1,
          'teenage': 1,
          'dies': 1,
          'crack': 1,
          'overdose': 1,
          'forced': 1,
          'return': 1,
          'vigilante': 1,
          'ways': 1,
          'nkerseys': 1,
          'targets': 1,
          'unlike': 1,
          'previous': 1,
          'movies': 1,
          'arent': 1,
          'ordinary': 1,
          'street': 1,
          'punks': 1,
          'rich': 1,
          'heavily': 1,
          'armed': 1,
          'wellconnected': 1,
          'dealers': 1,
          'neven': 1,
          'unstoppable': 1,
          'killing': 1,
          'machine': 1,
          'needs': 1,
          'support': 1,
          'comes': 1,
          'publisher': 1,
          'nathan': 1,
          'white': 1,
          'john': 1,
          'p': 1,
          'ryan': 1,
          'determined': 1,
          'drugrelated': 1,
          'nwhites': 1,
          'make': 1,
          'kill': 1,
          'major': 1,
          'players': 1,
          'rival': 1,
          'dealing': 1,
          'organisations': 1,
          'thus': 1,
          'instigate': 1,
          'take': 1,
          'shape': 1,
          'kerseys': 1,
          'actions': 1,
          'bring': 1,
          'attention': 1,
          'police': 1,
          'detectives': 1,
          'reiner': 1,
          'george': 1,
          'dickerson': 1,
          'nozaki': 1,
          'soon': 1,
          'teckoh': 1,
          'unfortunately': 1,
          'final': 1,
          'installment': 1,
          'series': 1,
          'probably': 1,
          'remembered': 1,
          'typical': 1,
          'cannon': 1,
          'group': 1,
          'production': 1,
          'company': 1,
          'responsible': 1,
          'worst': 1,
          'cinematic': 1,
          'trash': 1,
          'last': 1,
          'decade': 1,
          'critics': 1,
          'might': 1,
          'argue': 1,
          '4': 1,
          'crackdown': 1,
          'represents': 1,
          'slight': 1,
          'improvement': 1,
          '3': 1,
          'intriguing': 1,
          'controversial': 1,
          'characters': 1,
          'dumbed': 1,
          'mediocre': 1,
          'really': 1,
          'doesnt': 1,
          'feel': 1,
          'need': 1,
          'put': 1,
          'much': 1,
          'effort': 1,
          'acting': 1,
          'veteran': 1,
          'director': 1,
          'j': 1,
          'lee': 1,
          'thompson': 1,
          'seems': 1,
          'capable': 1,
          'michael': 1,
          'winners': 1,
          'action': 1,
          'seem': 1,
          'slightly': 1,
          'less': 1,
          'surreal': 1,
          'look': 1,
          'cheap': 1,
          'repetitive': 1,
          'downright': 1,
          'boring': 1,
          'numerous': 1,
          'violence': 1,
          'interesting': 1,
          'twist': 1,
          'end': 1,
          'tries': 1,
          'fake': 1,
          'social': 1,
          'conscience': 1,
          'criminally': 1,
          'underused': 1,
          'lenzs': 1,
          'character': 1,
          'predates': 1,
          'drugs': 1,
          'campaign': 1,
          'would': 1,
          'inspire': 1,
          'many': 1,
          'hollywood': 1,
          'products': 1,
          'next': 1,
          'years': 1,
          'halfhearted': 1,
          'humour': 1,
          'intentional': 1,
          'unintentional': 1,
          'scene': 1,
          'assassinates': 1,
          'mob': 1,
          'figures': 1,
          'wine': 1,
          'bottle': 1,
          'quality': 1,
          'far': 1,
          'away': 1,
          'bronsons': 1,
          'classics': 1,
          'n': 1,
          'special': 1,
          'note': 1,
          'xphiles': 1,
          'mith': 1,
          'pilleggi': 1,
          'actor': 1,
          'plays': 1,
          'ad': 1,
          'skinner': 1,
          'x': 1,
          'files': 1,
          'could': 1,
          'seen': 1,
          'role': 1,
          'cannery': 1,
          'lab': 1,
          'foreman': 1,
          'nneg': 1}),
 Counter({'movie': 14,
          'powder': 11,
          'first': 10,
          'hes': 10,
          'one': 8,
          'know': 8,
          'com': 8,
          'movies': 7,
          'arts': 7,
          'never': 6,
          'review': 6,
          'ni': 6,
          'house': 6,
          'would': 6,
          'nso': 6,
          'nbut': 6,
          'saw': 6,
          'find': 6,
          'room': 6,
          'rec': 5,
          'reviews': 5,
          'minutes': 4,
          'got': 4,
          'sure': 4,
          'bad': 4,
          'enough': 4,
          'nwhen': 4,
          'middle': 4,
          'state': 4,
          'home': 4,
          'different': 4,
          'kids': 4,
          'ever': 4,
          'father': 4,
          'pillsbury': 4,
          'dough': 4,
          'boy': 4,
          'nine': 4,
          'months': 4,
          'wear': 4,
          'character': 4,
          'nand': 4,
          'two': 4,
          'shows': 4,
          'high': 4,
          'school': 4,
          'already': 4,
          'current': 4,
          'instead': 4,
          'guess': 4,
          'people': 4,
          'att': 4,
          'andrew': 4,
          'hicks': 4,
          'noraruthaol': 3,
          '1996': 3,
          'n': 3,
          'sf': 3,
          'written': 2,
          'havent': 2,
          'watched': 2,
          'way': 2,
          'make': 2,
          'exception': 2,
          'fortyfive': 2,
          'friends': 2,
          'brother': 2,
          'huge': 2,
          'shouting': 2,
          'match': 2,
          'ended': 2,
          'violence': 2,
          'left': 2,
          'finish': 2,
          'im': 2,
          'hell': 2,
          'going': 2,
          'pay': 2,
          'three': 2,
          'bucks': 2,
          'watch': 2,
          'half': 2,
          'least': 2,
          'get': 2,
          'partial': 2,
          'wasnt': 2,
          'worth': 2,
          'finishing': 2,
          'place': 2,
          'nthe': 2,
          'centers': 2,
          'around': 2,
          'freaky': 2,
          'teenager': 2,
          'whos': 2,
          'spent': 2,
          'entire': 2,
          'life': 2,
          'living': 2,
          'cellar': 2,
          'grandparents': 2,
          'grandpa': 2,
          'dies': 2,
          'taking': 2,
          'department': 2,
          'store': 2,
          'social': 2,
          'worker': 2,
          'mary': 2,
          'steenburgen': 2,
          'take': 2,
          'names': 2,
          'ngold': 2,
          'bond': 2,
          'nactually': 2,
          'see': 2,
          'pale': 2,
          'individual': 2,
          'weve': 2,
          'seen': 2,
          'moreover': 2,
          'body': 2,
          'hair': 2,
          'whatsoever': 2,
          'born': 2,
          'opening': 2,
          'takes': 2,
          'look': 2,
          'says': 2,
          'son': 2,
          'nobviously': 2,
          'nall': 2,
          'want': 2,
          'ago': 2,
          'whitefaced': 2,
          'freak': 2,
          'leaves': 2,
          'neverland': 2,
          'ranch': 2,
          'faces': 2,
          'ridicule': 2,
          'nthat': 2,
          'try': 2,
          'haze': 2,
          'cafeteria': 2,
          'lunch': 2,
          'making': 2,
          'spoon': 2,
          'either': 2,
          'nose': 2,
          'ass': 2,
          'ndecisions': 2,
          'decisions': 2,
          'uses': 2,
          'telepathic': 2,
          'powers': 2,
          'draw': 2,
          'silverware': 2,
          'giant': 2,
          'pile': 2,
          'table': 2,
          'mother': 2,
          'must': 2,
          'sissy': 2,
          'spaceks': 2,
          'carrie': 2,
          'factor': 2,
          'things': 2,
          'subsequent': 2,
          'scenes': 2,
          'sort': 2,
          'superintelligence': 2,
          'q': 2,
          'ntest': 2,
          'went': 2,
          'straight': 2,
          'chart': 2,
          'attracts': 2,
          'electrical': 2,
          'power': 2,
          'nthis': 2,
          'visits': 2,
          'world': 2,
          'genius': 2,
          'need': 2,
          'education': 2,
          'sits': 2,
          'demonstration': 2,
          'jeff': 2,
          'goldblums': 2,
          'science': 2,
          'class': 2,
          'ngoldblum': 2,
          'plugs': 2,
          'jacobs': 2,
          'ladder': 2,
          'device': 2,
          'running': 2,
          'wires': 2,
          'immediately': 2,
          'flows': 2,
          'across': 2,
          'powders': 2,
          'chest': 2,
          'goldblum': 2,
          'stands': 2,
          'thirty': 2,
          'seconds': 2,
          'watching': 2,
          'unplugging': 2,
          'damn': 2,
          'thing': 2,
          'busy': 2,
          'contemplating': 2,
          'appearing': 2,
          'third': 2,
          'row': 2,
          'following': 2,
          'hideaway': 2,
          'nthats': 2,
          'big': 2,
          'fight': 2,
          'began': 2,
          'let': 2,
          'tell': 2,
          'twice': 2,
          'interesting': 2,
          'like': 2,
          'said': 2,
          'terrible': 2,
          'melodramas': 2,
          'isolation': 2,
          'superior': 2,
          'abilities': 2,
          'hard': 2,
          'assimilate': 2,
          'mainstream': 2,
          'civilization': 2,
          'nnone': 2,
          'handle': 2,
          'subject': 2,
          'properly': 2,
          'introducing': 2,
          'feeble': 2,
          'beauty': 2,
          'beast': 2,
          'copout': 2,
          'beautiful': 2,
          'woman': 2,
          'fall': 2,
          'love': 2,
          'guys': 2,
          'personality': 2,
          'overlooking': 2,
          'personal': 2,
          'appearance': 2,
          'female': 2,
          'picked': 2,
          'girl': 2,
          'sitting': 2,
          'next': 2,
          'back': 2,
          'electrocution': 2,
          'scene': 2,
          'ill': 2,
          'happened': 2,
          'nfrom': 2,
          'jun': 2,
          '10': 2,
          '03': 2,
          '3654': 2,
          'nntphub': 2,
          'cb': 2,
          'eclmtcts1': 2,
          'r': 2,
          'nrec': 2,
          'ive': 1,
          'nmon': 1,
          '15': 1,
          '04': 1,
          'edt': 1,
          'article': 1,
          'npath': 1,
          'notformail': 1,
          'newsgroups': 1,
          'nsubject': 1,
          '1995': 1,
          'followupto': 1,
          'currentfilms': 1,
          'ndate': 1,
          '18': 1,
          '16': 1,
          'gmt': 1,
          'organization': 1,
          'university': 1,
          'missouri': 1,
          'columbia': 1,
          'lines': 1,
          '70': 1,
          'sender': 1,
          'evelyn': 1,
          'c': 1,
          'leeper': 1,
          'approved': 1,
          'nmessageid': 1,
          'replyto': 1,
          'nntppostinghost': 1,
          'mtcts2': 1,
          'mt': 1,
          'lucent': 1,
          'nsummary': 1,
          'n05425': 1,
          'keywords': 1,
          'authorhicks': 1,
          'originator': 1,
          'eclmtcts2': 1,
          'xref': 1,
          '710': 1,
          'nstatus': 1,
          'ro': 1,
          'npowder': 1,
          'film': 1,
          'copyright': 1,
          'fatboy': 1,
          'productions': 1,
          'nive': 1,
          'nneg': 1}),
 Counter({'crawford': 11,
          'know': 8,
          'movie': 7,
          'baldwin': 6,
          'fair': 5,
          'game': 5,
          'every': 5,
          'one': 4,
          'bad': 4,
          'line': 4,
          'nits': 3,
          'see': 3,
          'lawyer': 3,
          'make': 3,
          'two': 3,
          'get': 3,
          'body': 3,
          'russians': 3,
          'going': 3,
          'really': 3,
          'computer': 3,
          'dialogue': 3,
          'laugh': 3,
          'could': 2,
          'singlehandedly': 2,
          'movies': 2,
          'absolutely': 2,
          'big': 2,
          'nif': 2,
          'thing': 2,
          'thought': 2,
          'would': 2,
          'nin': 2,
          'course': 2,
          'ever': 2,
          'anyone': 2,
          'wears': 2,
          'nand': 2,
          'think': 2,
          'double': 2,
          'isnt': 2,
          'life': 2,
          'time': 2,
          'chase': 2,
          'explosion': 2,
          'action': 2,
          'crap': 2,
          'acting': 2,
          'end': 2,
          'villains': 2,
          'scene': 2,
          'nthe': 2,
          'n': 2,
          'america': 2,
          'ni': 2,
          'plenty': 2,
          'terrible': 2,
          'places': 2,
          'supposed': 2,
          'nerd': 2,
          'im': 2,
          'floating': 2,
          'lords': 2,
          'final': 2,
          'boat': 2,
          'nim': 2,
          'bring': 1,
          'mystery': 1,
          'science': 1,
          'theater': 1,
          '3000': 1,
          'cancellation': 1,
          'thats': 1,
          'hilarious': 1,
          'due': 1,
          'small': 1,
          'part': 1,
          'star': 1,
          'supermodel': 1,
          'cindy': 1,
          'remember': 1,
          'proves': 1,
          'stick': 1,
          'sports': 1,
          'illustrated': 1,
          'swimsuit': 1,
          'issues': 1,
          'kathy': 1,
          'ireland': 1,
          'laughable': 1,
          'alien': 1,
          'l': 1,
          'youll': 1,
          'change': 1,
          'mind': 1,
          'nireland': 1,
          'win': 1,
          'handfuls': 1,
          'oscars': 1,
          'competition': 1,
          'real': 1,
          'casting': 1,
          'coup': 1,
          'plays': 1,
          'superintelligent': 1,
          'jogging': 1,
          'bra': 1,
          'nwe': 1,
          'stretch': 1,
          'legal': 1,
          'opinion': 1,
          'put': 1,
          'forth': 1,
          'favors': 1,
          'death': 1,
          'penalty': 1,
          'white': 1,
          'labor': 1,
          'day': 1,
          'nnonetheless': 1,
          'someone': 1,
          'shed': 1,
          'good': 1,
          'reminded': 1,
          'true': 1,
          'function': 1,
          'takes': 1,
          'showers': 1,
          'period': 1,
          'twenty': 1,
          'minutes': 1,
          'horny': 1,
          'teenage': 1,
          'boys': 1,
          'actually': 1,
          'topless': 1,
          'seconds': 1,
          'dark': 1,
          'ncome': 1,
          'may': 1,
          'ncindy': 1,
          'black': 1,
          'nlike': 1,
          'said': 1,
          'bunch': 1,
          'nbilly': 1,
          'stephen': 1,
          'nalec': 1,
          'nadam': 1,
          'nkim': 1,
          'basinger': 1,
          'police': 1,
          'detective': 1,
          'save': 1,
          'ntheres': 1,
          'nothing': 1,
          'original': 1,
          'cop': 1,
          'show': 1,
          '70s': 1,
          'mixed': 1,
          'thriller': 1,
          '80s': 1,
          'technology': 1,
          'exploitation': 1,
          '90s': 1,
          'nthree': 1,
          'decades': 1,
          'place': 1,
          'driven': 1,
          'ground': 1,
          'crawfords': 1,
          'complete': 1,
          'lack': 1,
          'talent': 1,
          'completely': 1,
          'predictable': 1,
          'nyou': 1,
          'mistakes': 1,
          'sexual': 1,
          'tension': 1,
          'finally': 1,
          'consummating': 1,
          'relationship': 1,
          'capture': 1,
          'rescue': 1,
          'climax': 1,
          'suck': 1,
          'first': 1,
          'plot': 1,
          'explained': 1,
          'nall': 1,
          'detail': 1,
          'words': 1,
          'even': 1,
          'size': 1,
          'pantyhose': 1,
          'yeah': 1,
          '14yearold': 1,
          'boy': 1,
          'nhe': 1,
          'goes': 1,
          'add': 1,
          '_that_': 1,
          'find': 1,
          'easy': 1,
          'believe': 1,
          'hope': 1,
          'enjoyed': 1,
          'sample': 1,
          'quotes': 1,
          'wrote': 1,
          'ones': 1,
          'werent': 1,
          'youd': 1,
          'still': 1,
          'pulling': 1,
          'bananas': 1,
          'ass': 1,
          'cuba': 1,
          'nbecause': 1,
          'showcase': 1,
          'recycled': 1,
          'cliches': 1,
          'also': 1,
          'seriously': 1,
          'nit': 1,
          'adds': 1,
          'made': 1,
          'wasnt': 1,
          'grimace': 1,
          'none': 1,
          'awful': 1,
          'comic': 1,
          'relief': 1,
          'nwould': 1,
          'tortures': 1,
          'entendres': 1,
          'like': 1,
          'interested': 1,
          '_hard_ware': 1,
          'playing': 1,
          'joystick': 1,
          'wouldnt': 1,
          'funny': 1,
          'ncrawfords': 1,
          'contribution': 1,
          'information': 1,
          'age': 1,
          'gif': 1,
          'files': 1,
          'around': 1,
          'head': 1,
          'nude': 1,
          'traci': 1,
          'jack': 1,
          'nill': 1,
          'leave': 1,
          'blown': 1,
          'raft': 1,
          'ncrawford': 1,
          'says': 1,
          'woodenly': 1,
          'clients': 1,
          'blew': 1,
          'filing': 1,
          'lawsuit': 1,
          'nyoure': 1,
          'trouble': 1,
          'something': 1,
          'effect': 1,
          'replies': 1,
          'smugly': 1,
          'nthey': 1,
          'begin': 1,
          'making': 1,
          'credits': 1,
          'roll': 1,
          'talk': 1,
          'stupid': 1,
          'theyd': 1,
          'wanted': 1,
          'go': 1,
          'closing': 1,
          'say': 1,
          'settle': 1,
          'court': 1,
          'nbut': 1,
          'tell': 1,
          'suggests': 1,
          'watch': 1,
          'quote': 1,
          'person': 1,
          'nserving': 1,
          '150th': 1,
          'century': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'people': 6,
          'cigarettes': 4,
          'nthe': 4,
          'lucy': 4,
          'characters': 3,
          'one': 3,
          'like': 3,
          'love': 3,
          'kevin': 3,
          'film': 2,
          'features': 2,
          'stars': 2,
          'magazine': 2,
          'others': 2,
          'affleck': 2,
          'courtney': 2,
          'jay': 2,
          'mohr': 2,
          'martha': 2,
          'plimpton': 2,
          'paul': 2,
          'rudd': 2,
          'new': 2,
          'years': 2,
          'eve': 2,
          'party': 2,
          'guests': 2,
          'sexual': 2,
          'sex': 2,
          'tells': 2,
          'beds': 2,
          'lot': 2,
          'attention': 1,
          'moviegoers': 1,
          'enter': 1,
          'meaningfree': 1,
          'zone': 1,
          'nshould': 1,
          'sound': 1,
          'system': 1,
          'malfunction': 1,
          'viewing': 1,
          '200': 1,
          'panic': 1,
          'work': 1,
          'well': 1,
          'silent': 1,
          'nchronicling': 1,
          'meaningless': 1,
          'lives': 1,
          'vain': 1,
          'yuppie': 1,
          'types': 1,
          'covers': 1,
          'ground': 1,
          'wilt': 1,
          'stillman': 1,
          'films': 1,
          'last': 1,
          'days': 1,
          'disco': 1,
          'barcelona': 1,
          'metropolitan': 1,
          'without': 1,
          'acerbic': 1,
          'wit': 1,
          'inviting': 1,
          'style': 1,
          'writing': 1,
          'nfirsttime': 1,
          'writer': 1,
          'shana': 1,
          'larsen': 1,
          'makes': 1,
          'mistake': 1,
          'creating': 1,
          'couple': 1,
          'dozen': 1,
          'giving': 1,
          'depth': 1,
          'nthere': 1,
          'isnt': 1,
          'worth': 1,
          'caring': 1,
          'cornucopia': 1,
          'hot': 1,
          'young': 1,
          'looks': 1,
          'celluloid': 1,
          'version': 1,
          'namong': 1,
          'ben': 1,
          'casey': 1,
          'david': 1,
          'chappelle': 1,
          'janeane': 1,
          'garofalo': 1,
          'gaby': 1,
          'hoffmann': 1,
          'catherine': 1,
          'kellner': 1,
          'christina': 1,
          'ricci': 1,
          'nand': 1,
          'unlike': 1,
          'speak': 1,
          'anything': 1,
          'interesting': 1,
          'say': 1,
          'nits': 1,
          '1981': 1,
          'monica': 1,
          'preparing': 1,
          'big': 1,
          'nstructured': 1,
          'series': 1,
          'relatively': 1,
          'unrelated': 1,
          'stories': 1,
          'way': 1,
          'director': 1,
          'risa': 1,
          'bramon': 1,
          'garcia': 1,
          'flits': 1,
          'back': 1,
          'forth': 1,
          'among': 1,
          'nmonicas': 1,
          'apartment': 1,
          'noho': 1,
          'area': 1,
          'describes': 1,
          'cool': 1,
          'poor': 1,
          'live': 1,
          'ntypical': 1,
          'shallow': 1,
          'couples': 1,
          'friend': 1,
          'wouldbe': 1,
          'partner': 1,
          'nthey': 1,
          'argue': 1,
          'whether': 1,
          'slut': 1,
          'since': 1,
          'sleeps': 1,
          'everyone': 1,
          'except': 1,
          'course': 1,
          'nshe': 1,
          'dares': 1,
          'go': 1,
          'immediately': 1,
          'bathroom': 1,
          'stall': 1,
          'turns': 1,
          'neither': 1,
          'erotic': 1,
          'funny': 1,
          'successful': 1,
          'rather': 1,
          'rest': 1,
          'story': 1,
          'gets': 1,
          'title': 1,
          'carton': 1,
          'gives': 1,
          'birthday': 1,
          'n': 1,
          'shield': 1,
          'emotional': 1,
          'interaction': 1,
          'later': 1,
          'snippet': 1,
          'dialog': 1,
          'sounds': 1,
          'profound': 1,
          'outside': 1,
          'context': 1,
          'nanother': 1,
          'character': 1,
          'played': 1,
          'problem': 1,
          'triumphs': 1,
          'nevery': 1,
          'woman': 1,
          'falls': 1,
          'deeply': 1,
          'next': 1,
          'morning': 1,
          'nwhen': 1,
          'latest': 1,
          'conquest': 1,
          'affection': 1,
          'response': 1,
          'nas': 1,
          'finally': 1,
          'draws': 1,
          'close': 1,
          'awaken': 1,
          'postparty': 1,
          'game': 1,
          'musical': 1,
          'nsome': 1,
          'passed': 1,
          'early': 1,
          'alcohol': 1,
          'abuse': 1,
          'remember': 1,
          'little': 1,
          'actually': 1,
          'clue': 1,
          'happened': 1,
          'forgettable': 1,
          'time': 1,
          'reach': 1,
          'car': 1,
          'parking': 1,
          'trace': 1,
          'vanished': 1,
          'mind': 1,
          'probably': 1,
          'best': 1,
          'thing': 1,
          'said': 1,
          'n200': 1,
          'runs': 1,
          '1': 1,
          '40': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'profanity': 1,
          'dope': 1,
          'smoking': 1,
          'scene': 1,
          'would': 1,
          'acceptable': 1,
          'older': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'seattle': 5,
          'life': 4,
          'annie': 4,
          'show': 4,
          'nbut': 3,
          'sleepless': 3,
          'ryan': 3,
          'sam': 3,
          'seems': 3,
          'nits': 3,
          'romantic': 2,
          'least': 2,
          'ephron': 2,
          'romance': 2,
          'willing': 2,
          'hanks': 2,
          'meg': 2,
          'two': 2,
          'stars': 2,
          'reed': 2,
          'son': 2,
          'radio': 2,
          'walter': 2,
          'movie': 2,
          'people': 2,
          'real': 2,
          'minutes': 2,
          'exist': 2,
          'nthe': 2,
          'film': 2,
          'script': 2,
          'even': 2,
          'nothing': 1,
          'unabashedly': 1,
          'films': 1,
          'nwhen': 1,
          'done': 1,
          'right': 1,
          'slightly': 1,
          'evident': 1,
          'restraint': 1,
          'engaging': 1,
          'sweeping': 1,
          'appealing': 1,
          'hell': 1,
          'shame': 1,
          'someone': 1,
          'botches': 1,
          'badly': 1,
          'nora': 1,
          'botched': 1,
          'hollow': 1,
          'boring': 1,
          'appeal': 1,
          'gullible': 1,
          'viewers': 1,
          'ones': 1,
          'buy': 1,
          'ephrons': 1,
          'whiny': 1,
          'views': 1,
          'ntom': 1,
          'hollywoods': 1,
          'likeable': 1,
          'play': 1,
          'baldwin': 1,
          'repectively': 1,
          'nbaldwins': 1,
          'wife': 1,
          'recently': 1,
          'died': 1,
          'moved': 1,
          'jonah': 1,
          'seeking': 1,
          'get': 1,
          'away': 1,
          'familiar': 1,
          'surroundings': 1,
          'remind': 1,
          'late': 1,
          'spouse': 1,
          'njonah': 1,
          'senses': 1,
          'tension': 1,
          'calls': 1,
          'talk': 1,
          'tell': 1,
          'world': 1,
          'problems': 1,
          'nsam': 1,
          'ready': 1,
          'strangle': 1,
          'calling': 1,
          'gets': 1,
          'phone': 1,
          'begins': 1,
          'pouring': 1,
          'heart': 1,
          'nephron': 1,
          'hear': 1,
          'nannie': 1,
          'happy': 1,
          'woman': 1,
          'nshe': 1,
          'engaged': 1,
          'allergyprone': 1,
          'working': 1,
          'man': 1,
          'perfectly': 1,
          'content': 1,
          'hearing': 1,
          'widower': 1,
          'becomes': 1,
          'convinced': 1,
          'destiny': 1,
          'risk': 1,
          'engagement': 1,
          'nfive': 1,
          'years': 1,
          'hit': 1,
          'theaters': 1,
          'would': 1,
          'team': 1,
          'far': 1,
          'better': 1,
          'although': 1,
          'still': 1,
          'subpar': 1,
          'comedy': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          'hate': 1,
          'falling': 1,
          'love': 1,
          'internet': 1,
          'nat': 1,
          'sense': 1,
          'spontaneity': 1,
          'nhere': 1,
          'first': 1,
          'one': 1,
          'hundred': 1,
          'solely': 1,
          'set': 1,
          'last': 1,
          'five': 1,
          'fact': 1,
          'finally': 1,
          'meet': 1,
          'excruciatingly': 1,
          'obvious': 1,
          'everything': 1,
          'else': 1,
          'perfunctory': 1,
          'nsleepless': 1,
          'full': 1,
          'wonderful': 1,
          'performers': 1,
          'leads': 1,
          'supporting': 1,
          'like': 1,
          'bill': 1,
          'pullman': 1,
          'rosie': 1,
          'odonnell': 1,
          'none': 1,
          'save': 1,
          'bore': 1,
          'characters': 1,
          'dull': 1,
          'empty': 1,
          'isnt': 1,
          'funny': 1,
          'particularly': 1,
          'charming': 1,
          'fundamental': 1,
          'problem': 1,
          'gives': 1,
          'little': 1,
          'reason': 1,
          'pursue': 1,
          'never': 1,
          'seen': 1,
          'kind': 1,
          'decision': 1,
          'dont': 1,
          'make': 1,
          'major': 1,
          'unforgivable': 1,
          'plausibility': 1,
          'sacrifice': 1,
          'nin': 1,
          'essence': 1,
          'movies': 1,
          'purpose': 1,
          'head': 1,
          'towards': 1,
          'goal': 1,
          'shouldnt': 1,
          'ten': 1,
          'minute': 1,
          'short': 1,
          'ninetyfive': 1,
          'filler': 1,
          'nif': 1,
          'didnt': 1,
          'review': 1,
          'could': 1,
          'call': 1,
          'asleep': 1,
          'philadelphia': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'future': 3,
          'rather': 2,
          'figure': 2,
          'nwell': 2,
          'tell': 2,
          'nbruce': 2,
          'willis': 2,
          'nthe': 2,
          'worlds': 2,
          'population': 2,
          'mere': 2,
          'humans': 2,
          'reason': 2,
          'army': 2,
          '12': 2,
          'monkeys': 2,
          'world': 2,
          'one': 2,
          'find': 2,
          'easy': 2,
          'youve': 1,
          'seen': 1,
          'trailers': 1,
          'commercials': 1,
          'difficult': 1,
          'really': 1,
          'store': 1,
          'hard': 1,
          'watching': 1,
          'well': 1,
          'resident': 1,
          'bleak': 1,
          'disintigrated': 1,
          '200': 1,
          '000': 1,
          'longer': 1,
          'ruled': 1,
          'animals': 1,
          'nin': 1,
          '1995': 1,
          'organization': 1,
          'called': 1,
          'contaminated': 1,
          'pure': 1,
          'virus': 1,
          'thus': 1,
          'wiping': 1,
          'practically': 1,
          'month': 1,
          'character': 1,
          'surviving': 1,
          'enslaved': 1,
          'scientists': 1,
          'last': 1,
          'living': 1,
          'nthey': 1,
          'barter': 1,
          'freedom': 1,
          'sending': 1,
          'assignment': 1,
          'ultimate': 1,
          'task': 1,
          'go': 1,
          'past': 1,
          'leader': 1,
          'kill': 1,
          'explanation': 1,
          'didnt': 1,
          'come': 1,
          'nalthough': 1,
          'thought': 1,
          'provoking': 1,
          'us': 1,
          'people': 1,
          'evilo': 1,
          'story': 1,
          'confusing': 1,
          'nand': 1,
          'dragging': 1,
          'ni': 1,
          'know': 1,
          'isnt': 1,
          'keeping': 1,
          'interest': 1,
          'fidget': 1,
          'seat': 1,
          'feel': 1,
          'need': 1,
          'look': 1,
          'watch': 1,
          'hour': 1,
          'passed': 1,
          'nterry': 1,
          'gilliam': 1,
          'certain': 1,
          'style': 1,
          'realize': 1,
          'many': 1,
          'appreciate': 1,
          'havent': 1,
          'watched': 1,
          'previous': 1,
          'work': 1,
          'brazil': 1,
          'felt': 1,
          'like': 1,
          'took': 1,
          'long': 1,
          'yet': 1,
          'realizes': 1,
          'end': 1,
          'near': 1,
          'wish': 1,
          'complex': 1,
          'mention': 1,
          'depressing': 1,
          'invoke': 1,
          'emotion': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'nthe': 9,
          'house': 8,
          'haunted': 6,
          'hill': 5,
          'rush': 4,
          'characters': 4,
          'character': 4,
          'geoffrey': 3,
          'n': 3,
          'audience': 3,
          'completely': 3,
          'price': 3,
          'taye': 2,
          'diggs': 2,
          'ali': 2,
          'larter': 2,
          'famke': 2,
          'janssen': 2,
          'chris': 2,
          'involving': 2,
          'killed': 2,
          'presented': 2,
          'films': 2,
          'blood': 2,
          'plot': 2,
          'nhowever': 2,
          'scary': 2,
          'five': 2,
          'problem': 2,
          'every': 2,
          'annoying': 2,
          'pritchett': 2,
          'actor': 2,
          'wasted': 2,
          '1999': 1,
          'starring': 1,
          'peter': 1,
          'gallagher': 1,
          'bridgette': 1,
          'wilson': 1,
          'max': 1,
          'perlich': 1,
          'lisa': 1,
          'loeb': 1,
          'james': 1,
          'marsters': 1,
          'kattan': 1,
          'ndirected': 1,
          'william': 1,
          'malone': 1,
          'written': 1,
          'dick': 1,
          'beebe': 1,
          'initializes': 1,
          'scene': 1,
          'zombielike': 1,
          'mental': 1,
          'patients': 1,
          'attacking': 1,
          'murdering': 1,
          'doctors': 1,
          'goriest': 1,
          'ways': 1,
          'possible': 1,
          'none': 1,
          'doctor': 1,
          'instantly': 1,
          'pencil': 1,
          'rammed': 1,
          'neck': 1,
          'na': 1,
          'nurse': 1,
          'head': 1,
          'forced': 1,
          'barrel': 1,
          'water': 1,
          'nthese': 1,
          'mobs': 1,
          'zombies': 1,
          'like': 1,
          'previous': 1,
          'bhorror': 1,
          'flicks': 1,
          'grunting': 1,
          'noises': 1,
          'cadaverous': 1,
          'movements': 1,
          'nexcept': 1,
          'time': 1,
          'end': 1,
          'millenium': 1,
          'given': 1,
          'power': 1,
          'show': 1,
          'exactly': 1,
          'horrific': 1,
          'creatures': 1,
          'nin': 1,
          'past': 1,
          'horror': 1,
          'actual': 1,
          'murder': 1,
          'scenes': 1,
          'left': 1,
          'shown': 1,
          'forcing': 1,
          'viewer': 1,
          'assume': 1,
          'nasty': 1,
          'bloody': 1,
          'deaths': 1,
          'hapless': 1,
          'victims': 1,
          'doesnt': 1,
          'want': 1,
          'imagination': 1,
          'everything': 1,
          'provided': 1,
          'watch': 1,
          'squirm': 1,
          'think': 1,
          'nthis': 1,
          'nonsense': 1,
          'violence': 1,
          'thrown': 1,
          'nowhere': 1,
          'unfortunately': 1,
          'refreshing': 1,
          'part': 1,
          'based': 1,
          '1958': 1,
          'title': 1,
          'introduces': 1,
          'handful': 1,
          'quickly': 1,
          'following': 1,
          'opening': 1,
          'fest': 1,
          'intention': 1,
          'providing': 1,
          'development': 1,
          'laudable': 1,
          'aim': 1,
          'scare': 1,
          'chilling': 1,
          'unexpected': 1,
          'shots': 1,
          'guts': 1,
          'mayhem': 1,
          'neither': 1,
          'unpredictable': 1,
          'involves': 1,
          'people': 1,
          'dared': 1,
          'spend': 1,
          'night': 1,
          'one': 1,
          'million': 1,
          'dollars': 1,
          'amusement': 1,
          'park': 1,
          'owner': 1,
          'neach': 1,
          'failure': 1,
          'external': 1,
          'world': 1,
          'acknowledges': 1,
          'would': 1,
          'anything': 1,
          'money': 1,
          'nsince': 1,
          'immediately': 1,
          'generalized': 1,
          'either': 1,
          'greedy': 1,
          'caring': 1,
          'expectations': 1,
          'survive': 1,
          'minutes': 1,
          'meet': 1,
          'likable': 1,
          'two': 1,
          'come': 1,
          'closest': 1,
          'civilized': 1,
          'womanizer': 1,
          'lot': 1,
          'better': 1,
          'talent': 1,
          'businesswoman': 1,
          'accepts': 1,
          'womanized': 1,
          'pathetic': 1,
          'hard': 1,
          'cheer': 1,
          'scream': 1,
          'worst': 1,
          'maybe': 1,
          'released': 1,
          'year': 1,
          'kattans': 1,
          'watson': 1,
          'nhe': 1,
          'spends': 1,
          'whole': 1,
          'whining': 1,
          'spooky': 1,
          'tone': 1,
          'irritating': 1,
          'inappropriate': 1,
          'unintentionally': 1,
          'begins': 1,
          'seem': 1,
          'evil': 1,
          'nwaiting': 1,
          'die': 1,
          'strenuously': 1,
          'difficult': 1,
          'act': 1,
          'sit': 1,
          'humorous': 1,
          'bunch': 1,
          'playing': 1,
          'steven': 1,
          'homage': 1,
          'victor': 1,
          'starred': 1,
          'original': 1,
          'nplaying': 1,
          'rich': 1,
          'man': 1,
          'supposedly': 1,
          'organized': 1,
          'party': 1,
          'plays': 1,
          'role': 1,
          'perfectly': 1,
          'twisted': 1,
          'way': 1,
          'obvious': 1,
          'something': 1,
          'expressions': 1,
          'face': 1,
          'pretty': 1,
          'much': 1,
          'confusing': 1,
          'subplot': 1,
          'hateful': 1,
          'marriage': 1,
          'evelyn': 1,
          'played': 1,
          'main': 1,
          'nto': 1,
          'top': 1,
          'huge': 1,
          'disappointment': 1,
          'script': 1,
          'ludicrous': 1,
          'nif': 1,
          'hilariously': 1,
          'bad': 1,
          'dialogue': 1,
          'intentionally': 1,
          'underdeveloped': 1,
          'similar': 1,
          'deep': 1,
          'blue': 1,
          'sea': 1,
          'goal': 1,
          'creating': 1,
          'creepy': 1,
          'suspenseful': 1,
          'action': 1,
          'missed': 1,
          'nneg': 1}),
 Counter({'girl': 5,
          'breillat': 5,
          'fat': 3,
          'boy': 3,
          'might': 3,
          'nthis': 3,
          'children': 3,
          'like': 3,
          'better': 3,
          'ana': 3,
          'teenage': 2,
          'nfor': 2,
          'least': 2,
          'master': 2,
          'writerdirector': 2,
          'catherine': 2,
          'breillats': 2,
          'show': 2,
          'romance': 2,
          'hour': 2,
          'pain': 2,
          'cheap': 2,
          'dont': 2,
          'scenes': 2,
          'may': 2,
          'get': 2,
          'nthe': 2,
          'sequence': 2,
          'misguided': 2,
          'old': 2,
          'named': 2,
          'finds': 2,
          'elena': 2,
          'home': 2,
          'love': 2,
          'theres': 2,
          'young': 2,
          'something': 2,
          'fit': 1,
          'ghouls': 1,
          'night': 1,
          'stands': 1,
          'cast': 1,
          'iron': 1,
          'firm': 1,
          'simplistic': 1,
          'fatuous': 1,
          'builtin': 1,
          'excuse': 1,
          'woman': 1,
          'director': 1,
          'baring': 1,
          'harsh': 1,
          'sexual': 1,
          'realities': 1,
          'adolescent': 1,
          'girls': 1,
          'nbeing': 1,
          'understand': 1,
          'female': 1,
          'behavior': 1,
          'unequipped': 1,
          'analyze': 1,
          'particular': 1,
          'pseudofeminist': 1,
          'comingofage': 1,
          'story': 1,
          'nfair': 1,
          'enough': 1,
          'nill': 1,
          'pretend': 1,
          'ignore': 1,
          'mannered': 1,
          'posturing': 1,
          'health': 1,
          'class': 1,
          '101': 1,
          'nono': 1,
          'dialogue': 1,
          'older': 1,
          'coaxes': 1,
          'younger': 1,
          'let': 1,
          'fuck': 1,
          'ass': 1,
          'speaking': 1,
          'variations': 1,
          'wont': 1,
          'hurt': 1,
          'scene': 1,
          'seems': 1,
          'last': 1,
          'ten': 1,
          'minutes': 1,
          'done': 1,
          'almost': 1,
          'entirely': 1,
          'unbroken': 1,
          'shot': 1,
          'suggests': 1,
          'unimaginative': 1,
          'camerawork': 1,
          'unblinking': 1,
          'voyeurism': 1,
          'nthey': 1,
          'dare': 1,
          'look': 1,
          'away': 1,
          'without': 1,
          'possessing': 1,
          'courage': 1,
          'allowing': 1,
          'actually': 1,
          'sound': 1,
          'theyre': 1,
          'mouthpieces': 1,
          'onenote': 1,
          'clinical': 1,
          'politics': 1,
          'nrather': 1,
          'evenhanded': 1,
          'evaluation': 1,
          'rigors': 1,
          'hormonal': 1,
          'change': 1,
          'previously': 1,
          'responsible': 1,
          'unwatchable': 1,
          'wants': 1,
          'indulge': 1,
          'hate': 1,
          'nlife': 1,
          'highness': 1,
          'nget': 1,
          'used': 1,
          'nshed': 1,
          'find': 1,
          'keen': 1,
          'bedfellows': 1,
          'neil': 1,
          'labute': 1,
          'todd': 1,
          'solondz': 1,
          'sultans': 1,
          'misanthropy': 1,
          'lack': 1,
          'balls': 1,
          'earnest': 1,
          'honest': 1,
          'dealing': 1,
          'trauma': 1,
          'complicated': 1,
          'nto': 1,
          'bury': 1,
          'sarcasm': 1,
          'academic': 1,
          'theory': 1,
          'feels': 1,
          'nthese': 1,
          'wouldbe': 1,
          'auteurs': 1,
          'hauteurs': 1,
          'havent': 1,
          'earned': 1,
          'right': 1,
          'display': 1,
          'suffering': 1,
          'layer': 1,
          'emotional': 1,
          'truth': 1,
          'mike': 1,
          'leigh': 1,
          'throughout': 1,
          'naked': 1,
          'david': 1,
          'lynch': 1,
          'several': 1,
          'key': 1,
          'blue': 1,
          'velvet': 1,
          'nof': 1,
          'course': 1,
          'go': 1,
          'comparing': 1,
          'male': 1,
          'directors': 1,
          'ni': 1,
          'care': 1,
          'ngender': 1,
          'damned': 1,
          'shes': 1,
          'borderline': 1,
          'inept': 1,
          'nbraced': 1,
          'kneejerk': 1,
          'reaction': 1,
          'art': 1,
          'house': 1,
          'crowd': 1,
          'mortified': 1,
          'shock': 1,
          'compulsory': 1,
          'applause': 1,
          'suffice': 1,
          'well': 1,
          'accomplish': 1,
          'mission': 1,
          'rise': 1,
          'people': 1,
          'ndont': 1,
          'fooled': 1,
          'grotesque': 1,
          'oversimplification': 1,
          'awkward': 1,
          'forays': 1,
          'passion': 1,
          'quickly': 1,
          'forgotten': 1,
          'remembered': 1,
          'cold': 1,
          'boring': 1,
          'philosophically': 1,
          'arid': 1,
          'incompetently': 1,
          'photographed': 1,
          'hyperviolent': 1,
          'climactic': 1,
          'proves': 1,
          'extraordinarily': 1,
          'honestly': 1,
          'wondered': 1,
          'whether': 1,
          'thrown': 1,
          'impromptu': 1,
          'dream': 1,
          'ntwelve': 1,
          'years': 1,
          'bundle': 1,
          'dough': 1,
          'sour': 1,
          'pout': 1,
          'superb': 1,
          'reboux': 1,
          'plays': 1,
          'titular': 1,
          'thousand': 1,
          'yard': 1,
          'stare': 1,
          'frumpy': 1,
          'insouciance': 1,
          'n': 1,
          'character': 1,
          'also': 1,
          'nsitting': 1,
          'table': 1,
          'morosely': 1,
          'slurping': 1,
          'banana': 1,
          'split': 1,
          'presence': 1,
          'grounded': 1,
          'heartbreaking': 1,
          'nits': 1,
          'pity': 1,
          'never': 1,
          'anything': 1,
          'defensive': 1,
          'evil': 1,
          'storybook': 1,
          'sister': 1,
          '15year': 1,
          'roxane': 1,
          'mesquida': 1,
          'bringing': 1,
          'transitory': 1,
          'boyfriend': 1,
          'shared': 1,
          'room': 1,
          'nin': 1,
          'summer': 1,
          'cottage': 1,
          'escape': 1,
          'position': 1,
          'stoic': 1,
          'bedside': 1,
          'observer': 1,
          'elenas': 1,
          'depressing': 1,
          'confusion': 1,
          'sex': 1,
          'question': 1,
          'smug': 1,
          'italian': 1,
          'college': 1,
          'kid': 1,
          'fernando': 1,
          'libero': 1,
          'de': 1,
          'rienzo': 1,
          'real': 1,
          'piece': 1,
          'work': 1,
          'claiming': 1,
          'experience': 1,
          'declaration': 1,
          'begging': 1,
          'blowjob': 1,
          'nana': 1,
          'doesnt': 1,
          'receive': 1,
          'warmth': 1,
          'largely': 1,
          'absent': 1,
          'parents': 1,
          'join': 1,
          'making': 1,
          'fun': 1,
          'hefty': 1,
          'girth': 1,
          'nshe': 1,
          'pleasure': 1,
          'wandering': 1,
          'beach': 1,
          'alone': 1,
          'singing': 1,
          'songs': 1,
          'swimming': 1,
          'pool': 1,
          'kissing': 1,
          'metal': 1,
          'railing': 1,
          'pretending': 1,
          'paramour': 1,
          'nreboux': 1,
          'commands': 1,
          'screen': 1,
          'much': 1,
          'child': 1,
          'actress': 1,
          'recounting': 1,
          'pretentious': 1,
          'monologues': 1,
          'nif': 1,
          'one': 1,
          'inspired': 1,
          'rescue': 1,
          'performer': 1,
          'place': 1,
          'movie': 1,
          'fares': 1,
          'talent': 1,
          'asked': 1,
          'perform': 1,
          'intense': 1,
          'feel': 1,
          'justified': 1,
          'werent': 1,
          'dramatically': 1,
          '83minute': 1,
          'vignette': 1,
          'horror': 1,
          'saves': 1,
          'nastiest': 1,
          'poison': 1,
          'end': 1,
          'non': 1,
          'long': 1,
          'ride': 1,
          'punctuated': 1,
          'uncomfortable': 1,
          'silence': 1,
          'family': 1,
          'members': 1,
          'gigantic': 1,
          'trucks': 1,
          'swerve': 1,
          'grows': 1,
          'late': 1,
          'nwill': 1,
          'mommy': 1,
          'fall': 1,
          'asleep': 1,
          'wheel': 1,
          'nperhaps': 1,
          'maybe': 1,
          'deadlier': 1,
          'around': 1,
          'corner': 1,
          'lying': 1,
          'wait': 1,
          'pounce': 1,
          'upon': 1,
          'unsuspecting': 1,
          'nwhats': 1,
          'even': 1,
          'nwith': 1,
          'intent': 1,
          'unfair': 1,
          'unpredictable': 1,
          'placing': 1,
          'heroine': 1,
          'diabolical': 1,
          'corners': 1,
          'order': 1,
          'face': 1,
          'impending': 1,
          'adulthood': 1,
          'extreme': 1,
          'flourish': 1,
          'sadistic': 1,
          'tawdriness': 1,
          'reveals': 1,
          'purveyor': 1,
          'contempt': 1,
          'nfat': 1,
          'bitter': 1,
          'pill': 1,
          'indeed': 1,
          'naka': 1,
          'soeur': 1,
          'nscreened': 1,
          '2001': 1,
          'new': 1,
          'york': 1,
          'film': 1,
          'festival': 1,
          'feature': 1,
          'coming': 1,
          'soon': 1,
          'nneg': 1}),
 Counter({'paulie': 11,
          'movie': 7,
          'n': 5,
          'bird': 5,
          'nwhen': 4,
          'nthe': 4,
          'marie': 3,
          'couldnt': 3,
          'parrot': 3,
          'nand': 3,
          'npaulie': 3,
          'mohr': 3,
          'character': 3,
          'small': 3,
          'humor': 3,
          'misha': 3,
          'long': 3,
          'played': 3,
          'good': 3,
          'thought': 3,
          'family': 2,
          'role': 2,
          'voice': 2,
          'like': 2,
          'john': 2,
          'subtle': 2,
          'kids': 2,
          'material': 2,
          'show': 2,
          'story': 2,
          'russian': 2,
          'gets': 2,
          'im': 2,
          'nhis': 2,
          'part': 2,
          'parts': 2,
          'picture': 2,
          'best': 2,
          'maries': 2,
          'cat': 2,
          'takes': 2,
          'runs': 2,
          'quite': 2,
          '9': 2,
          'gave': 2,
          'nhe': 2,
          'talk': 1,
          'star': 1,
          'tells': 1,
          'us': 1,
          'daughter': 1,
          'original': 1,
          'dad': 1,
          'listen': 1,
          'mom': 1,
          'cope': 1,
          'got': 1,
          'rid': 1,
          'autobiography': 1,
          'talking': 1,
          'merely': 1,
          'mimicking': 1,
          'jay': 1,
          'lead': 1,
          'body': 1,
          'minor': 1,
          'benny': 1,
          'smalltime': 1,
          'crook': 1,
          'uses': 1,
          'pull': 1,
          'scams': 1,
          'stealing': 1,
          'twenties': 1,
          'atms': 1,
          'nas': 1,
          'delightful': 1,
          'director': 1,
          'roberts': 1,
          'allows': 1,
          'cut': 1,
          'nbenny': 1,
          'hand': 1,
          'youve': 1,
          'seen': 1,
          'thousand': 1,
          'times': 1,
          'brings': 1,
          'nothing': 1,
          'new': 1,
          'nrobertss': 1,
          'deliberately': 1,
          'slow': 1,
          'pacing': 1,
          'laurie': 1,
          'craigs': 1,
          'script': 1,
          'lends': 1,
          'sweetness': 1,
          'creates': 1,
          'definite': 1,
          'problems': 1,
          'wants': 1,
          'mosey': 1,
          'along': 1,
          'watch': 1,
          'nif': 1,
          'crisp': 1,
          'perfectly': 1,
          'composed': 1,
          'beauty': 1,
          'sometimes': 1,
          'dissolve': 1,
          'tedium': 1,
          'nso': 1,
          'let': 1,
          'standup': 1,
          'comedy': 1,
          'routines': 1,
          'hums': 1,
          'audience': 1,
          'roars': 1,
          'ntoo': 1,
          'often': 1,
          'however': 1,
          'sleepy': 1,
          'silence': 1,
          'ensues': 1,
          'among': 1,
          'viewers': 1,
          'wait': 1,
          'pickup': 1,
          'ntony': 1,
          'shalhoub': 1,
          'smartmouthed': 1,
          'chef': 1,
          'big': 1,
          'night': 1,
          'plays': 1,
          'recent': 1,
          'immigrant': 1,
          'u': 1,
          'teacher': 1,
          'literature': 1,
          'home': 1,
          'makes': 1,
          'living': 1,
          'janitor': 1,
          'animal': 1,
          'research': 1,
          'lab': 1,
          'taken': 1,
          'study': 1,
          'nalthough': 1,
          'nice': 1,
          'lines': 1,
          'ni': 1,
          'stories': 1,
          'somber': 1,
          'seems': 1,
          'designed': 1,
          'elicit': 1,
          'sympathy': 1,
          'nbesides': 1,
          'worth': 1,
          'noting': 1,
          '2': 1,
          'cute': 1,
          'cheech': 1,
          'marin': 1,
          'gina': 1,
          'rowlands': 1,
          'speechimpaired': 1,
          'precious': 1,
          'performance': 1,
          'cinematic': 1,
          'newcomer': 1,
          '5yearold': 1,
          'hallie': 1,
          'kate': 1,
          'eisenberg': 1,
          'nnaturally': 1,
          'enchanting': 1,
          'gives': 1,
          'genuine': 1,
          'heart': 1,
          'bad': 1,
          'news': 1,
          'confined': 1,
          'first': 1,
          'half': 1,
          'scenes': 1,
          'dancing': 1,
          'strutting': 1,
          'comedic': 1,
          'skills': 1,
          'example': 1,
          'hasnt': 1,
          'wanted': 1,
          'learn': 1,
          'fly': 1,
          'instant': 1,
          'interest': 1,
          'soaring': 1,
          'ntricking': 1,
          'insulting': 1,
          'time': 1,
          'calls': 1,
          'stupid': 1,
          'hairball': 1,
          'ntheir': 1,
          'rapid': 1,
          'physical': 1,
          'antics': 1,
          'add': 1,
          'situation': 1,
          'nits': 1,
          'quality': 1,
          'sitcom': 1,
          'performed': 1,
          'animals': 1,
          'one': 1,
          'humans': 1,
          'without': 1,
          'much': 1,
          'begins': 1,
          'sing': 1,
          'cringes': 1,
          'explains': 1,
          'frequently': 1,
          'brain': 1,
          'explode': 1,
          'contains': 1,
          'rich': 1,
          'doses': 1,
          'debneys': 1,
          'dreamy': 1,
          'music': 1,
          'nwith': 1,
          'heavy': 1,
          'use': 1,
          'solo': 1,
          'violin': 1,
          'keeps': 1,
          'reinforcing': 1,
          'films': 1,
          'heartwarming': 1,
          'themes': 1,
          'finally': 1,
          'flight': 1,
          'orchestra': 1,
          'comes': 1,
          'loud': 1,
          'strong': 1,
          'cymbals': 1,
          'clashing': 1,
          'says': 1,
          'kind': 1,
          'knows': 1,
          'reflects': 1,
          'motion': 1,
          'standard': 1,
          'length': 1,
          'still': 1,
          'feels': 1,
          'enthralling': 1,
          'dead': 1,
          'spots': 1,
          'inbetween': 1,
          'never': 1,
          'lives': 1,
          'promise': 1,
          'manages': 1,
          'charm': 1,
          'nevertheless': 1,
          '1': 1,
          '32': 1,
          'nit': 1,
          'raged': 1,
          'pg': 1,
          'mild': 1,
          'profanities': 1,
          'would': 1,
          'fine': 1,
          'ages': 1,
          'nmy': 1,
          'son': 1,
          'jeffrey': 1,
          'age': 1,
          'biggest': 1,
          'complaint': 1,
          'wasnt': 1,
          'enough': 1,
          'action': 1,
          'funny': 1,
          'actress': 1,
          'friend': 1,
          'sam': 1,
          'almost': 1,
          'awesome': 1,
          'excellent': 1,
          'didnt': 1,
          'believe': 1,
          'way': 1,
          'speech': 1,
          'impediment': 1,
          'acted': 1,
          'nneg': 1}),
 Counter({'porkys': 9,
          'actually': 5,
          'would': 5,
          'even': 5,
          'film': 4,
          'movie': 4,
          'things': 3,
          'four': 3,
          'teenage': 3,
          'nas': 3,
          'comedy': 3,
          'nthe': 3,
          'characters': 3,
          'one': 3,
          'well': 2,
          'time': 2,
          'nafter': 2,
          'n': 2,
          'story': 2,
          'high': 2,
          'want': 2,
          'get': 2,
          'nfor': 2,
          'people': 2,
          'nand': 2,
          'teenagers': 2,
          'sure': 2,
          'worse': 2,
          'screenplay': 2,
          'bob': 2,
          'clark': 2,
          'balbricker': 2,
          'parsons': 2,
          'honeywell': 2,
          'cattrall': 2,
          'made': 2,
          'sex': 2,
          'serious': 2,
          'films': 2,
          'funnier': 2,
          '1982s': 2,
          'fact': 2,
          'heres': 1,
          'distasteful': 1,
          'thoroughly': 1,
          'amateurish': 1,
          'item': 1,
          'surprisingly': 1,
          'boxoffice': 1,
          'hit': 1,
          'release': 1,
          'viewing': 1,
          'first': 1,
          'primary': 1,
          'question': 1,
          'anyone': 1,
          'iq': 1,
          'north': 1,
          '35': 1,
          'enjoy': 1,
          'nit': 1,
          'cheap': 1,
          'idiotic': 1,
          'unfunny': 1,
          'nearly': 1,
          'raunchy': 1,
          'heard': 1,
          'nat': 1,
          'least': 1,
          'smut': 1,
          'livened': 1,
          'bit': 1,
          'tells': 1,
          'call': 1,
          'clueless': 1,
          'school': 1,
          'buddies': 1,
          'pee': 1,
          'wee': 1,
          'dan': 1,
          'monahan': 1,
          'billy': 1,
          'mark': 1,
          'herrier': 1,
          'tommy': 1,
          'wyatt': 1,
          'knight': 1,
          'mickey': 1,
          'roger': 1,
          'wilson': 1,
          'desperately': 1,
          'laid': 1,
          'nwomen': 1,
          'part': 1,
          'mystery': 1,
          'audience': 1,
          'since': 1,
          'written': 1,
          'acted': 1,
          'aliens': 1,
          'different': 1,
          'planet': 1,
          'ntheir': 1,
          'plan': 1,
          'sidetracked': 1,
          'however': 1,
          'venture': 1,
          'smarmy': 1,
          'strip': 1,
          'bar': 1,
          'named': 1,
          'able': 1,
          'using': 1,
          'fake': 1,
          'ids': 1,
          'pay': 1,
          'manager': 1,
          'onehundred': 1,
          'bucks': 1,
          'three': 1,
          'hookers': 1,
          'played': 1,
          'trick': 1,
          'find': 1,
          'dumped': 1,
          'swamp': 1,
          'building': 1,
          'guys': 1,
          'means': 1,
          'war': 1,
          'ultimately': 1,
          'manages': 1,
          'fail': 1,
          'almost': 1,
          'every': 1,
          'possible': 1,
          'level': 1,
          'sexromp': 1,
          'wild': 1,
          'amusing': 1,
          'enough': 1,
          'jokes': 1,
          'predictable': 1,
          'fall': 1,
          'flat': 1,
          'look': 1,
          'back': 1,
          '1950s': 1,
          'something': 1,
          'suspect': 1,
          'era': 1,
          'bury': 1,
          'deep': 1,
          'grave': 1,
          'revenge': 1,
          'crushing': 1,
          'bore': 1,
          'none': 1,
          'offensive': 1,
          'jawdroppingly': 1,
          'inaccurate': 1,
          'main': 1,
          'attempted': 1,
          'developed': 1,
          'learn': 1,
          'little': 1,
          'except': 1,
          'horny': 1,
          'probably': 1,
          'feel': 1,
          'comfortable': 1,
          'preschool': 1,
          'nthat': 1,
          'revealing': 1,
          'information': 1,
          'female': 1,
          'fare': 1,
          'inaudacious': 1,
          'direction': 1,
          'women': 1,
          'treated': 1,
          'objects': 1,
          'props': 1,
          'rather': 1,
          'real': 1,
          'example': 1,
          'two': 1,
          'gym': 1,
          'teachers': 1,
          'mrs': 1,
          'nancy': 1,
          'kim': 1,
          'purpose': 1,
          'fun': 1,
          'nmrs': 1,
          'gruff': 1,
          'noholdsbarred': 1,
          'overwight': 1,
          'woman': 1,
          'stand': 1,
          'foolishness': 1,
          'particularly': 1,
          'embarrassing': 1,
          'scene': 1,
          'involved': 1,
          'coach': 1,
          'barks': 1,
          'like': 1,
          'dog': 1,
          'nthere': 1,
          'way': 1,
          'tell': 1,
          'servicable': 1,
          'actresses': 1,
          'though': 1,
          'suspicion': 1,
          'thing': 1,
          'asked': 1,
          'funny': 1,
          'humiliating': 1,
          'nto': 1,
          'prove': 1,
          'outoftouch': 1,
          'socalled': 1,
          'compare': 1,
          '80s': 1,
          'looks': 1,
          'comaprison': 1,
          'nany': 1,
          'john': 1,
          'hughes': 1,
          'pictures': 1,
          '1984s': 1,
          'sixteen': 1,
          'candles': 1,
          '1985s': 1,
          'breakfast': 1,
          'club': 1,
          'put': 1,
          'greater': 1,
          'shame': 1,
          'nthose': 1,
          'dealt': 1,
          'teen': 1,
          'matters': 1,
          'remained': 1,
          'great': 1,
          'deal': 1,
          'thanks': 1,
          'bright': 1,
          'truthful': 1,
          'writing': 1,
          'heck': 1,
          'wanted': 1,
          'id': 1,
          'take': 1,
          'fast': 1,
          'times': 1,
          'ridgemont': 1,
          'last': 1,
          'american': 1,
          'virgin': 1,
          'day': 1,
          'week': 1,
          'ndirector': 1,
          'bad': 1,
          'director': 1,
          'ntwo': 1,
          'years': 1,
          'directed': 1,
          'nostalgic': 1,
          'holiday': 1,
          'classic': 1,
          'christmas': 1,
          'ni': 1,
          'forgive': 1,
          'misfire': 1,
          'wasnt': 1,
          'also': 1,
          'wrote': 1,
          'njust': 1,
          'thought': 1,
          'someone': 1,
          'sit': 1,
          'write': 1,
          'piece': 1,
          'garbage': 1,
          'think': 1,
          'worth': 1,
          'releasing': 1,
          'unto': 1,
          'unsuspecting': 1,
          'world': 1,
          'whole': 1,
          'lot': 1,
          'anything': 1,
          'nneg': 1}),
 Counter({'bad': 5,
          'ni': 4,
          'even': 4,
          'french': 4,
          'plot': 4,
          'son': 4,
          'island': 4,
          'joke': 4,
          'actors': 3,
          'make': 3,
          'good': 3,
          'nthe': 3,
          'goes': 3,
          'one': 3,
          'okay': 2,
          'reallife': 2,
          'movies': 2,
          'nwell': 2,
          'tim': 2,
          'allen': 2,
          'couldnt': 2,
          'n': 2,
          'like': 2,
          'story': 2,
          'remake': 2,
          'american': 2,
          'films': 2,
          'prom': 2,
          'person': 2,
          'went': 2,
          'least': 2,
          'wasnt': 2,
          'film': 2,
          'city': 2,
          'nbut': 2,
          'learns': 2,
          'years': 2,
          'nhe': 2,
          'get': 2,
          'think': 2,
          'jokes': 2,
          'complicates': 2,
          'ntim': 2,
          'mob': 2,
          'hokey': 2,
          'really': 2,
          'time': 2,
          'grown': 2,
          'made': 2,
          'dont': 1,
          'know': 1,
          'seem': 1,
          'getting': 1,
          'diversion': 1,
          'disneymade': 1,
          'acting': 1,
          'santa': 1,
          'clause': 1,
          'see': 1,
          'idle': 1,
          'point': 1,
          'toy': 1,
          'also': 1,
          'aversion': 1,
          'farces': 1,
          'excuse': 1,
          'night': 1,
          'im': 1,
          'best': 1,
          'friend': 1,
          'impulsively': 1,
          'driveins': 1,
          'playing': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'wouldnt': 1,
          'mind': 1,
          'seeing': 1,
          'suffer': 1,
          'first': 1,
          'agreed': 1,
          'go': 1,
          'nugh': 1,
          'nin': 1,
          'fairness': 1,
          'say': 1,
          'inane': 1,
          'dreamed': 1,
          'nit': 1,
          'originally': 1,
          'released': 1,
          'america': 1,
          'pseudonym': 1,
          'little': 1,
          'indian': 1,
          'big': 1,
          'title': 1,
          'un': 1,
          'indien': 1,
          'dans': 1,
          'la': 1,
          'ville': 1,
          'stayed': 1,
          'away': 1,
          'limburgher': 1,
          'according': 1,
          'roger': 1,
          'ebert': 1,
          'idea': 1,
          'imagine': 1,
          'must': 1,
          'improvement': 1,
          'stupid': 1,
          'concerns': 1,
          'father': 1,
          'current': 1,
          'marriage': 1,
          'nlet': 1,
          'clarify': 1,
          'wife': 1,
          'jobeth': 1,
          'williams': 1,
          'left': 1,
          'ago': 1,
          'mean': 1,
          'around': 1,
          '13': 1,
          'carribean': 1,
          'something': 1,
          'finally': 1,
          'divorce': 1,
          'papers': 1,
          'signed': 1,
          'remarry': 1,
          'thing': 1,
          'played': 1,
          'emphasis': 1,
          'overdone': 1,
          'lolita': 1,
          'davidovitch': 1,
          'usually': 1,
          'nshe': 1,
          'tells': 1,
          'boatman': 1,
          'meets': 1,
          'weird': 1,
          'name': 1,
          'mimi': 1,
          'seku': 1,
          'nas': 1,
          'mitsubishi': 1,
          'laugh': 1,
          'track': 1,
          'cue': 1,
          'knows': 1,
          'english': 1,
          'fish': 1,
          'pirhanna': 1,
          'kid': 1,
          'pet': 1,
          'spider': 1,
          'makes': 1,
          'promise': 1,
          'take': 1,
          'statue': 1,
          'liberty': 1,
          'nknow': 1,
          'drill': 1,
          'nnow': 1,
          'well': 1,
          'fishoutofwater': 1,
          'switches': 1,
          'new': 1,
          'york': 1,
          'stock': 1,
          'broker': 1,
          'coffee': 1,
          'profits': 1,
          'plunging': 1,
          'laptop': 1,
          'died': 1,
          'able': 1,
          'communicate': 1,
          'assistant': 1,
          'whatever': 1,
          'martin': 1,
          'short': 1,
          'na': 1,
          'russian': 1,
          'tossed': 1,
          'somewhere': 1,
          'come': 1,
          'every': 1,
          'import': 1,
          'lesson': 1,
          'life': 1,
          'discover': 1,
          'cellular': 1,
          'phones': 1,
          'operate': 1,
          'though': 1,
          'sockets': 1,
          'recharge': 1,
          'batteries': 1,
          'crap': 1,
          'funny': 1,
          'struggle': 1,
          'interesting': 1,
          'material': 1,
          'fowl': 1,
          'rewrite': 1,
          'quentin': 1,
          'tarantino': 1,
          'help': 1,
          'whole': 1,
          'kept': 1,
          'thinking': 1,
          'several': 1,
          'people': 1,
          'nat': 1,
          'end': 1,
          'filming': 1,
          'scream': 1,
          'weve': 1,
          'great': 1,
          'movie': 1,
          'guys': 1,
          'sure': 1,
          'hope': 1,
          'nbig': 1,
          'question': 1,
          'would': 1,
          'someone': 1,
          'want': 1,
          'billed': 1,
          'worst': 1,
          'theyre': 1,
          'going': 1,
          'exact': 1,
          'way': 1,
          'nhuh': 1,
          'nmy': 1,
          'names': 1,
          'two': 1,
          'chuckle': 1,
          'guess': 1,
          'nso': 1,
          'feel': 1,
          'gave': 1,
          'star': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'beach': 4,
          'mood': 4,
          'time': 4,
          'richard': 4,
          'becomes': 3,
          'island': 3,
          'paradise': 3,
          'nhe': 3,
          'looking': 3,
          'francoise': 3,
          'angle': 3,
          'minutes': 2,
          'new': 2,
          'act': 2,
          'man': 2,
          'environment': 2,
          'nbut': 2,
          'changes': 2,
          'story': 2,
          'love': 2,
          'triangle': 2,
          'lagoon': 2,
          'community': 2,
          'audience': 2,
          'come': 2,
          'life': 2,
          'one': 2,
          'way': 2,
          'nthis': 2,
          'hotel': 2,
          'high': 2,
          'etienne': 2,
          'richards': 2,
          'mind': 2,
          'nand': 2,
          'hidden': 2,
          'trying': 2,
          'structurally': 1,
          'confusing': 1,
          'describe': 1,
          'multiple': 1,
          'personality': 1,
          'disorder': 1,
          'nevery': 1,
          'forty': 1,
          'twohour': 1,
          'begins': 1,
          'theme': 1,
          'virtually': 1,
          'discarding': 1,
          'set': 1,
          'preceding': 1,
          'nit': 1,
          'starts': 1,
          'purposefully': 1,
          'innocent': 1,
          'seeking': 1,
          'thrills': 1,
          'dangerous': 1,
          'second': 1,
          'abruptly': 1,
          'idyllic': 1,
          'evokes': 1,
          'visions': 1,
          'blue': 1,
          'nforty': 1,
          'later': 1,
          'dumbed': 1,
          'version': 1,
          'lord': 1,
          'flies': 1,
          'isolated': 1,
          'discovered': 1,
          'moral': 1,
          'code': 1,
          'touts': 1,
          'maintaining': 1,
          'sense': 1,
          'bliss': 1,
          'costs': 1,
          'nby': 1,
          'scratch': 1,
          'head': 1,
          'wonder': 1,
          'really': 1,
          'meant': 1,
          'nthe': 1,
          'main': 1,
          'character': 1,
          'angstridden': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'travels': 1,
          'netherworld': 1,
          'bangkok': 1,
          'back': 1,
          'alley': 1,
          'merchants': 1,
          'push': 1,
          'wares': 1,
          'upon': 1,
          'unsuspecting': 1,
          'tourists': 1,
          'scantily': 1,
          'clad': 1,
          'women': 1,
          'brazenly': 1,
          'ask': 1,
          'youre': 1,
          'good': 1,
          'nrichards': 1,
          'voiceover': 1,
          'tells': 1,
          'place': 1,
          'bored': 1,
          'feels': 1,
          'reinvigorate': 1,
          'let': 1,
          'go': 1,
          'familiar': 1,
          'enter': 1,
          'world': 1,
          'unknown': 1,
          'seedy': 1,
          'checks': 1,
          'fleabag': 1,
          'meets': 1,
          'crazed': 1,
          'daffy': 1,
          'robert': 1,
          'carlisle': 1,
          'seems': 1,
          'like': 1,
          'raving': 1,
          'lunatic': 1,
          'obviously': 1,
          'heavy': 1,
          'drug': 1,
          'use': 1,
          'afflicted': 1,
          'sort': 1,
          'psychosis': 1,
          'nthough': 1,
          'jagged': 1,
          'behavior': 1,
          'would': 1,
          'distress': 1,
          'us': 1,
          'listens': 1,
          'speaks': 1,
          'mysterious': 1,
          'contains': 1,
          'perfect': 1,
          'anyone': 1,
          'ever': 1,
          'seen': 1,
          'nmoreover': 1,
          'flourishes': 1,
          'enough': 1,
          'hemp': 1,
          'plants': 1,
          'make': 1,
          'small': 1,
          'city': 1,
          'ncaptivated': 1,
          'idea': 1,
          'asks': 1,
          'two': 1,
          'guests': 1,
          'join': 1,
          'journey': 1,
          'nthey': 1,
          'worldly': 1,
          'alluring': 1,
          'also': 1,
          'thailand': 1,
          'reasons': 1,
          'similar': 1,
          'nonce': 1,
          'finally': 1,
          'arrive': 1,
          'however': 1,
          'shifts': 1,
          'growing': 1,
          'desire': 1,
          'particular': 1,
          'plot': 1,
          'point': 1,
          'weak': 1,
          'best': 1,
          'absolutely': 1,
          'question': 1,
          'wind': 1,
          'netienne': 1,
          'exciting': 1,
          'fluffy': 1,
          'white': 1,
          'sand': 1,
          'nits': 1,
          'odd': 1,
          'never': 1,
          'sees': 1,
          'coming': 1,
          'hiding': 1,
          'potential': 1,
          'threats': 1,
          'view': 1,
          'three': 1,
          'stumble': 1,
          'across': 1,
          'shift': 1,
          'imminent': 1,
          'events': 1,
          'transpire': 1,
          'depict': 1,
          'dangers': 1,
          'nfor': 1,
          'example': 1,
          'marijuana': 1,
          'fields': 1,
          'close': 1,
          'patrolled': 1,
          'armed': 1,
          'guards': 1,
          'swim': 1,
          'invites': 1,
          'occasional': 1,
          'shark': 1,
          'nthere': 1,
          'several': 1,
          'ideas': 1,
          'introduced': 1,
          'could': 1,
          'merit': 1,
          'featurelength': 1,
          'ntheres': 1,
          'vs': 1,
          'nature': 1,
          'utopiagoneawry': 1,
          'meanders': 1,
          'tremendously': 1,
          'entire': 1,
          'purpose': 1,
          'blurred': 1,
          'ndicaprio': 1,
          'result': 1,
          'almost': 1,
          'impossible': 1,
          'embody': 1,
          'different': 1,
          'states': 1,
          'goes': 1,
          'nconsequently': 1,
          'equally': 1,
          'difficult': 1,
          'keep': 1,
          'nneg': 1}),
 Counter({'joe': 11,
          'young': 7,
          'n': 6,
          'jill': 5,
          'mighty': 4,
          'movie': 4,
          'joes': 4,
          'ape': 3,
          'poachers': 3,
          'nthe': 3,
          'like': 3,
          'nits': 2,
          'new': 2,
          'picture': 2,
          'rko': 2,
          'computergenerated': 2,
          'quick': 2,
          'ntheron': 2,
          'baby': 2,
          'gorilla': 2,
          'time': 2,
          'paxton': 2,
          'good': 2,
          'fine': 2,
          'especially': 2,
          'look': 2,
          'headed': 2,
          'scenes': 2,
          'sure': 2,
          'act': 2,
          'long': 2,
          'ni': 2,
          'may': 2,
          'absurd': 1,
          'remake': 1,
          '1998': 1,
          'toss': 1,
          'gus': 1,
          'van': 1,
          'sants': 1,
          'psycho': 1,
          'disney': 1,
          'based': 1,
          'old': 1,
          'knew': 1,
          'trouble': 1,
          'polished': 1,
          'version': 1,
          'famous': 1,
          'logo': 1,
          'appeared': 1,
          'head': 1,
          'credits': 1,
          'nthere': 1,
          'great': 1,
          'demand': 1,
          'another': 1,
          'giant': 1,
          'moviemake': 1,
          'period': 1,
          'witness': 1,
          'deaths': 1,
          'buddy': 1,
          'born': 1,
          'wild': 1,
          'congo': 1,
          'nand': 1,
          'latest': 1,
          'entry': 1,
          'inoffensive': 1,
          'watchable': 1,
          'also': 1,
          'assembly': 1,
          'line': 1,
          'product': 1,
          'lacking': 1,
          'charm': 1,
          'unpredictability': 1,
          'jungle': 1,
          'serials': 1,
          'partly': 1,
          'inspired': 1,
          'girl': 1,
          'wilds': 1,
          'africa': 1,
          'befriended': 1,
          'mothers': 1,
          'slain': 1,
          'nthat': 1,
          'nicknamed': 1,
          'grows': 1,
          'immense': 1,
          'proportions': 1,
          'adult': 1,
          'basically': 1,
          'bides': 1,
          'looking': 1,
          'playing': 1,
          'hide': 1,
          'seek': 1,
          'guarding': 1,
          'nenter': 1,
          'conservationist': 1,
          'greg': 1,
          'convinces': 1,
          'move': 1,
          'california': 1,
          'protect': 1,
          'better': 1,
          'controlled': 1,
          'environment': 1,
          'njoe': 1,
          'restless': 1,
          'first': 1,
          'sooner': 1,
          'finally': 1,
          'settle': 1,
          'place': 1,
          'nasty': 1,
          'show': 1,
          'l': 1,
          'plotting': 1,
          'demise': 1,
          'nsuffice': 1,
          'say': 1,
          'could': 1,
          'called': 1,
          'city': 1,
          'devils': 1,
          'advocate': 1,
          'recent': 1,
          'simple': 1,
          'plan': 1,
          'actors': 1,
          'enough': 1,
          'transcend': 1,
          'material': 1,
          'paintbynumbers': 1,
          'script': 1,
          'hack': 1,
          'writers': 1,
          'superman': 1,
          'iv': 1,
          'mercury': 1,
          'rising': 1,
          'plot': 1,
          'arguably': 1,
          'borrows': 1,
          'steven': 1,
          'spielbergs': 1,
          'lost': 1,
          'world': 1,
          '1949': 1,
          'original': 1,
          'trexi': 1,
          'mean': 1,
          'joewreaking': 1,
          'havoc': 1,
          'busy': 1,
          'streets': 1,
          'encore': 1,
          'storytelling': 1,
          'becomes': 1,
          'lazy': 1,
          'final': 1,
          'third': 1,
          'shouting': 1,
          'theatre': 1,
          'nfollowed': 1,
          'shot': 1,
          'scaling': 1,
          'manns': 1,
          'chinese': 1,
          'theater': 1,
          'moment': 1,
          'later': 1,
          'shouts': 1,
          'something': 1,
          'amusement': 1,
          'park': 1,
          'know': 1,
          'theres': 1,
          'pallisades': 1,
          'carnival': 1,
          'scaring': 1,
          'bejesus': 1,
          'innocent': 1,
          'thrillseekers': 1,
          'seams': 1,
          'lastminute': 1,
          'edits': 1,
          'showunrelated': 1,
          'patched': 1,
          'together': 1,
          'dissolves': 1,
          'feels': 1,
          'uneven': 1,
          'regardless': 1,
          'two': 1,
          'underdeveloped': 1,
          'little': 1,
          'smashing': 1,
          'cars': 1,
          'three': 1,
          'goes': 1,
          'way': 1,
          'nunderwood': 1,
          'tremors': 1,
          'speechless': 1,
          'perhaps': 1,
          'director': 1,
          'job': 1,
          'even': 1,
          'plentiful': 1,
          'untamed': 1,
          'landscape': 1,
          'looks': 1,
          'dull': 1,
          'hands': 1,
          'capturing': 1,
          'beauty': 1,
          'nature': 1,
          'requires': 1,
          'point': 1,
          'shoot': 1,
          'style': 1,
          'enjoy': 1,
          'certain': 1,
          'sequences': 1,
          'demoliton': 1,
          'blacktie': 1,
          'dinner': 1,
          'sequence': 1,
          'prologue': 1,
          'however': 1,
          'implausible': 1,
          'touching': 1,
          'tyke': 1,
          'acts': 1,
          'e': 1,
          'rick': 1,
          'bakers': 1,
          'makeup': 1,
          'effects': 1,
          'puppetry': 1,
          'outstanding': 1,
          'real': 1,
          'star': 1,
          'showyet': 1,
          'technical': 1,
          'flawlessness': 1,
          'creature': 1,
          'remains': 1,
          'grumpy': 1,
          'homicidal': 1,
          'love': 1,
          'facial': 1,
          'expressions': 1,
          'variations': 1,
          'scowl': 1,
          'nto': 1,
          'fair': 1,
          'saw': 1,
          'cinema': 1,
          'packed': 1,
          'wailing': 1,
          'childrenits': 1,
          'wonder': 1,
          'able': 1,
          'decipher': 1,
          'dialogue': 1,
          'certainly': 1,
          'film': 1,
          'kidsintense': 1,
          'fighting': 1,
          'scare': 1,
          'camera': 1,
          'bore': 1,
          'tears': 1,
          'note': 1,
          'older': 1,
          'boys': 1,
          'likely': 1,
          'dazzled': 1,
          'therons': 1,
          'colourful': 1,
          'array': 1,
          'tank': 1,
          'tops': 1,
          'suspect': 1,
          'bland': 1,
          'passable': 1,
          'entertainment': 1,
          'family': 1,
          'outing': 1,
          'dont': 1,
          'make': 1,
          'em': 1,
          'used': 1,
          'nneg': 1}),
 Counter({'swayze': 4,
          'black': 3,
          'dog': 3,
          'jack': 3,
          'little': 2,
          'careers': 2,
          'moore': 2,
          'video': 2,
          'drive': 2,
          'cargo': 2,
          'crew': 2,
          'highway': 2,
          'track': 2,
          'big': 2,
          'rig': 2,
          'ni': 2,
          'could': 2,
          'point': 2,
          'youve': 2,
          'seen': 2,
          'time': 2,
          'far': 2,
          '1990': 1,
          'surprise': 1,
          'success': 1,
          'unheralded': 1,
          'movie': 1,
          'called': 1,
          'ghost': 1,
          'instantly': 1,
          'rescued': 1,
          'moribund': 1,
          'trio': 1,
          'abovethetitle': 1,
          'stars': 1,
          'patrick': 1,
          'demi': 1,
          'whoopi': 1,
          'goldberg': 1,
          'neight': 1,
          'years': 1,
          'later': 1,
          'goldbergs': 1,
          'arent': 1,
          'exactly': 1,
          'thriving': 1,
          'share': 1,
          'screen': 1,
          'successes': 1,
          'since': 1,
          'cant': 1,
          'said': 1,
          'added': 1,
          'yet': 1,
          'another': 1,
          'turkey': 1,
          'resume': 1,
          'aptly': 1,
          'named': 1,
          'nforget': 1,
          'mortal': 1,
          'kombat': 1,
          'moviesthis': 1,
          'trucksploitation': 1,
          'flick': 1,
          'closest': 1,
          'movies': 1,
          'come': 1,
          'games': 1,
          'ngood': 1,
          'truck': 1,
          'driver': 1,
          'crews': 1,
          'must': 1,
          'illegal': 1,
          'firearms': 1,
          'atlanta': 1,
          'new': 1,
          'jersey': 1,
          'nalong': 1,
          'way': 1,
          'three': 1,
          'run': 1,
          'number': 1,
          'obstaclessuch': 1,
          'weigh': 1,
          'station': 1,
          'evil': 1,
          'truckers': 1,
          'deadly': 1,
          'uzifiring': 1,
          'motorcyclists': 1,
          'nevery': 1,
          'often': 1,
          'like': 1,
          'end': 1,
          'game': 1,
          'level': 1,
          'stage': 1,
          'main': 1,
          'baddie': 1,
          'pops': 1,
          'red': 1,
          'meat': 1,
          'loaf': 1,
          'fresh': 1,
          'triumph': 1,
          'spice': 1,
          'world': 1,
          'wants': 1,
          'steal': 1,
          'cache': 1,
          'guns': 1,
          'njust': 1,
          'case': 1,
          'forget': 1,
          'name': 1,
          'trouble': 1,
          'keeping': 1,
          'whos': 1,
          'driving': 1,
          'reds': 1,
          'vehicles': 1,
          'pickup': 1,
          'paintedyou': 1,
          'guessed': 1,
          'itred': 1,
          'go': 1,
          'plot': 1,
          'specifics': 1,
          'jacks': 1,
          'dream': 1,
          'nice': 1,
          'home': 1,
          'family': 1,
          'past': 1,
          'trauma': 1,
          'sent': 1,
          'prison': 1,
          'cost': 1,
          'trucking': 1,
          'license': 1,
          'fbiatf': 1,
          'tracking': 1,
          'importance': 1,
          'nall': 1,
          'matters': 1,
          'director': 1,
          'kevin': 1,
          'hooks': 1,
          'writers': 1,
          'william': 1,
          'mickelberry': 1,
          'dan': 1,
          'vining': 1,
          'obstacles': 1,
          'confronts': 1,
          'b': 1,
          'fail': 1,
          'even': 1,
          'modest': 1,
          'goal': 1,
          'none': 1,
          'chaos': 1,
          'credibly': 1,
          'staged': 1,
          'terribly': 1,
          'interesting': 1,
          'let': 1,
          'alone': 1,
          'exciting': 1,
          'nonce': 1,
          'couple': 1,
          'trucks': 1,
          'bang': 1,
          'explode': 1,
          'first': 1,
          'every': 1,
          'nas': 1,
          'dreary': 1,
          'entertainment': 1,
          'saddest': 1,
          'part': 1,
          'film': 1,
          'nothing': 1,
          'shows': 1,
          'onscreen': 1,
          'reduce': 1,
          'work': 1,
          'nwhile': 1,
          'best': 1,
          'actors': 1,
          'certainly': 1,
          'horrible': 1,
          'charismatic': 1,
          'presence': 1,
          'dont': 1,
          'know': 1,
          'judgment': 1,
          'dearth': 1,
          'quality': 1,
          'job': 1,
          'offers': 1,
          'leads': 1,
          'involve': 1,
          'bombs': 1,
          'nregardless': 1,
          'continues': 1,
          'career': 1,
          'tv': 1,
          'series': 1,
          'behind': 1,
          'nneg': 1}),
 Counter({'fans': 4,
          'plot': 4,
          'film': 4,
          'nbut': 3,
          'flintstones': 3,
          'animated': 3,
          'stone': 3,
          'barney': 3,
          'fred': 3,
          'elizabeth': 3,
          'based': 2,
          'shows': 2,
          'hollywood': 2,
          'six': 2,
          'werent': 2,
          'many': 2,
          'like': 2,
          'series': 2,
          'age': 2,
          'family': 2,
          'nafter': 2,
          'effects': 2,
          'one': 2,
          'rick': 2,
          'moranis': 2,
          'wife': 2,
          'betty': 2,
          'rosie': 2,
          'odonnell': 2,
          'job': 2,
          'embezzlement': 2,
          'wilma': 2,
          'perkins': 2,
          'excellent': 2,
          'show': 2,
          'days': 1,
          'witnessing': 1,
          'deluge': 1,
          'films': 1,
          'old': 1,
          'cult': 1,
          'tv': 1,
          'nmost': 1,
          'times': 1,
          'shudder': 1,
          'thinking': 1,
          'could': 1,
          'hacks': 1,
          'present': 1,
          'memories': 1,
          'past': 1,
          'five': 1,
          'years': 1,
          'ago': 1,
          'movies': 1,
          'trend': 1,
          'didnt': 1,
          'look': 1,
          'depressing': 1,
          'nso': 1,
          'people': 1,
          'author': 1,
          'review': 1,
          'grew': 1,
          'watching': 1,
          'popular': 1,
          '1960s': 1,
          'modern': 1,
          'particularly': 1,
          'worried': 1,
          'word': 1,
          'came': 1,
          'live': 1,
          'action': 1,
          'remake': 1,
          'producer': 1,
          'behind': 1,
          'project': 1,
          'steven': 1,
          'spielberg': 1,
          'anything': 1,
          'else': 1,
          'least': 1,
          'special': 1,
          'would': 1,
          'good': 1,
          'nthe': 1,
          'revolves': 1,
          'set': 1,
          'fictious': 1,
          'town': 1,
          'bedrock': 1,
          'whose': 1,
          'members': 1,
          'enjoy': 1,
          'lifestyle': 1,
          '1950s': 1,
          'middle': 1,
          'class': 1,
          'america': 1,
          'nfred': 1,
          'flinstone': 1,
          'john': 1,
          'goodman': 1,
          'works': 1,
          'quarry': 1,
          'day': 1,
          'helps': 1,
          'best': 1,
          'friend': 1,
          'neighbour': 1,
          'rubble': 1,
          'adopt': 1,
          'baby': 1,
          'nto': 1,
          'return': 1,
          'favour': 1,
          'switches': 1,
          'results': 1,
          'aptitude': 1,
          'test': 1,
          'gets': 1,
          'wellpaid': 1,
          'management': 1,
          'course': 1,
          'sham': 1,
          'corrupt': 1,
          'official': 1,
          'cliff': 1,
          'vandercave': 1,
          'kyle': 1,
          'maclachlan': 1,
          'sultry': 1,
          'secretary': 1,
          'sharon': 1,
          'halle': 1,
          'berry': 1,
          'need': 1,
          'scapegoat': 1,
          'scheme': 1,
          'nin': 1,
          'meantime': 1,
          'freds': 1,
          'must': 1,
          'face': 1,
          'mother': 1,
          'taylor': 1,
          'cant': 1,
          'stand': 1,
          'non': 1,
          'superficial': 1,
          'level': 1,
          'bringing': 1,
          'life': 1,
          'ncomputer': 1,
          'flawless': 1,
          'costumes': 1,
          'settings': 1,
          'details': 1,
          'authentic': 1,
          'nunfortunately': 1,
          'problems': 1,
          'start': 1,
          'inadequate': 1,
          'casting': 1,
          'thin': 1,
          'role': 1,
          'cartoon': 1,
          'used': 1,
          'much': 1,
          'skinnier': 1,
          'greatest': 1,
          'problem': 1,
          'precise': 1,
          'lack': 1,
          'nsome': 1,
          'thirty': 1,
          'screenwriters': 1,
          'made': 1,
          'sure': 1,
          'lame': 1,
          'original': 1,
          'characters': 1,
          'onedimensional': 1,
          'elements': 1,
          'story': 1,
          'interoffice': 1,
          'politics': 1,
          'totally': 1,
          'incomprehensible': 1,
          'little': 1,
          'children': 1,
          'main': 1,
          'targeted': 1,
          'audience': 1,
          'nresult': 1,
          'almost': 1,
          'unwatchable': 1,
          'mess': 1,
          'occasionally': 1,
          'saved': 1,
          'mostly': 1,
          'acting': 1,
          'right': 1,
          'mark': 1,
          'classic': 1,
          'example': 1,
          'mortal': 1,
          'disease': 1,
          'known': 1,
          'high': 1,
          'concept': 1,
          'great': 1,
          'hype': 1,
          'movie': 1,
          'quickly': 1,
          'sank': 1,
          'oblivion': 1,
          'returned': 1,
          'version': 1,
          'nall': 1,
          'isnt': 1,
          'bad': 1,
          'hard': 1,
          'core': 1,
          'nostalgics': 1,
          'find': 1,
          'guilty': 1,
          'pleasure': 1,
          'nneg': 1}),
 Counter({'tom': 9,
          '8mm': 6,
          'porn': 4,
          'devil': 4,
          'n': 4,
          'nthe': 3,
          'snuff': 3,
          'max': 3,
          'much': 3,
          'two': 2,
          'batman': 2,
          'movies': 2,
          'schumachers': 2,
          'nit': 2,
          'plot': 2,
          'goes': 2,
          'like': 2,
          'private': 2,
          'eye': 2,
          'mrs': 2,
          'christian': 2,
          'movie': 2,
          'film': 2,
          'girl': 2,
          'discover': 2,
          'missing': 2,
          'name': 2,
          'another': 2,
          'obvious': 2,
          'hardcore': 2,
          'father': 2,
          'deeper': 2,
          'films': 2,
          'promise': 2,
          'nin': 2,
          'better': 2,
          'first': 2,
          'cold': 2,
          'blood': 2,
          'theme': 2,
          'far': 2,
          '1993s': 1,
          'falling': 1,
          'hoped': 1,
          'joel': 1,
          'schumacher': 1,
          'would': 1,
          'mature': 1,
          'great': 1,
          'director': 1,
          'nsince': 1,
          'offered': 1,
          'us': 1,
          'soso': 1,
          'adaptations': 1,
          'john': 1,
          'grisham': 1,
          'novels': 1,
          'client': 1,
          'time': 1,
          'kill': 1,
          'lowered': 1,
          'standards': 1,
          'franchise': 1,
          'nalthough': 1,
          'disappointments': 1,
          'dampened': 1,
          'enthusiasm': 1,
          'potential': 1,
          'publicity': 1,
          'latest': 1,
          'release': 1,
          'raised': 1,
          'new': 1,
          'hope': 1,
          'promised': 1,
          'something': 1,
          'unusual': 1,
          'wasnt': 1,
          'welles': 1,
          'nicolas': 1,
          'cage': 1,
          'hired': 1,
          'wealthy': 1,
          'woman': 1,
          'allegorically': 1,
          'named': 1,
          'myra': 1,
          'carter': 1,
          'investigate': 1,
          'found': 1,
          'among': 1,
          'late': 1,
          'husbands': 1,
          'belongings': 1,
          'appears': 1,
          'teenage': 1,
          'raped': 1,
          'murdered': 1,
          'man': 1,
          'leather': 1,
          'mask': 1,
          'reminds': 1,
          'bane': 1,
          'robin': 1,
          'nbecause': 1,
          'murders': 1,
          'realistically': 1,
          'simulated': 1,
          'wants': 1,
          'alive': 1,
          'dead': 1,
          'nby': 1,
          'combing': 1,
          'persons': 1,
          'reports': 1,
          'finds': 1,
          'girls': 1,
          'tracks': 1,
          'los': 1,
          'angeles': 1,
          'nwith': 1,
          'aid': 1,
          'california': 1,
          'joaquin': 1,
          'phoenix': 1,
          'video': 1,
          'store': 1,
          'clerk': 1,
          'symbolic': 1,
          'wanders': 1,
          'underworld': 1,
          'pornography': 1,
          'search': 1,
          'bears': 1,
          'resemblance': 1,
          'paul': 1,
          'schraders': 1,
          'industries': 1,
          'sex': 1,
          'find': 1,
          'daughter': 1,
          'nboth': 1,
          'modeled': 1,
          'dantes': 1,
          'inferno': 1,
          'course': 1,
          'makes': 1,
          'connection': 1,
          'overly': 1,
          'casting': 1,
          'virgil': 1,
          'constantly': 1,
          'tell': 1,
          'heading': 1,
          'toward': 1,
          'meeting': 1,
          'subtle': 1,
          'meaningful': 1,
          'lot': 1,
          'moments': 1,
          'examination': 1,
          'violence': 1,
          'entertainment': 1,
          'beast': 1,
          'within': 1,
          'even': 1,
          'nice': 1,
          'guy': 1,
          'none': 1,
          'moment': 1,
          'sort': 1,
          'meet': 1,
          'hes': 1,
          'reading': 1,
          'truman': 1,
          'capotes': 1,
          'underneath': 1,
          'cover': 1,
          'novel': 1,
          'truecrime': 1,
          'genre': 1,
          'literary': 1,
          'equivalent': 1,
          'nmax': 1,
          'promises': 1,
          'see': 1,
          'examples': 1,
          'second': 1,
          'tells': 1,
          'dance': 1,
          'dont': 1,
          'change': 1,
          'changes': 1,
          'ntom': 1,
          'changeill': 1,
          'let': 1,
          'specifics': 1,
          'yourselfbut': 1,
          'permanently': 1,
          'nschumacher': 1,
          'screenwriter': 1,
          'andrew': 1,
          'kevin': 1,
          'walker': 1,
          'didnt': 1,
          'guts': 1,
          'take': 1,
          'dark': 1,
          'tunnel': 1,
          'couldnt': 1,
          'come': 1,
          'back': 1,
          'walkers': 1,
          'seven': 1,
          'job': 1,
          'refusing': 1,
          'compromise': 1,
          'ncage': 1,
          'tries': 1,
          'hard': 1,
          'pull': 1,
          'script': 1,
          'doesnt': 1,
          'give': 1,
          'enough': 1,
          'work': 1,
          'nphoenix': 1,
          'walks': 1,
          'away': 1,
          'moviehes': 1,
          'smart': 1,
          'charming': 1,
          'funny': 1,
          'nother': 1,
          'cast': 1,
          'members': 1,
          'include': 1,
          'fargo': 1,
          'peter': 1,
          'stormare': 1,
          'camping': 1,
          'auteur': 1,
          'dino': 1,
          'velvet': 1,
          'sopranos': 1,
          'james': 1,
          'gandolfini': 1,
          'soulless': 1,
          'merchant': 1,
          'pushes': 1,
          'last': 1,
          'analysis': 1,
          'since': 1,
          'falls': 1,
          'short': 1,
          'pretensions': 1,
          'story': 1,
          'raymond': 1,
          'chandlerross': 1,
          'macdonald': 1,
          'tradition': 1,
          'detective': 1,
          'uncover': 1,
          'depravity': 1,
          'behind': 1,
          'glossy': 1,
          'facade': 1,
          'wealth': 1,
          'privilege': 1,
          'nhowever': 1,
          'unlike': 1,
          'predictable': 1,
          'fare': 1,
          'genrelast': 1,
          'years': 1,
          'twilight': 1,
          'example': 1,
          'especially': 1,
          'disappointing': 1,
          'could': 1,
          'nneg': 1}),
 Counter({'bad': 6,
          'male': 4,
          'know': 3,
          'last': 3,
          'summer': 3,
          'movie': 3,
          'scream': 3,
          'female': 3,
          'woodenly': 3,
          'played': 3,
          'brunette': 3,
          'protagonists': 3,
          'main': 3,
          'though': 2,
          'without': 2,
          'see': 2,
          'begins': 2,
          'angsty': 2,
          'cliff': 2,
          'ocean': 2,
          'nthe': 2,
          'town': 2,
          'blond': 2,
          'getting': 2,
          'pair': 2,
          'party': 2,
          'one': 2,
          'college': 2,
          'nblond': 2,
          'acting': 2,
          'plot': 2,
          'actors': 2,
          'climactic': 2,
          'lines': 2,
          'think': 1,
          '2': 1,
          'could': 1,
          'nmind': 1,
          'mean': 1,
          'worst': 1,
          'possible': 1,
          'way': 1,
          'ni': 1,
          'typical': 1,
          'slasher': 1,
          'flic': 1,
          'smarts': 1,
          'screams': 1,
          'nas': 1,
          'result': 1,
          'even': 1,
          'worse': 1,
          'better': 1,
          'campy': 1,
          'horror': 1,
          'pictures': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          'thinks': 1,
          'thirty': 1,
          'times': 1,
          'smarter': 1,
          'nbased': 1,
          'teen': 1,
          'book': 1,
          'name': 1,
          'disappointingly': 1,
          'adapted': 1,
          'scribe': 1,
          'kevin': 1,
          'williamson': 1,
          'appropriately': 1,
          'modern': 1,
          'rock': 1,
          'music': 1,
          'combined': 1,
          'startling': 1,
          'cinematography': 1,
          'along': 1,
          'sort': 1,
          'sitting': 1,
          'top': 1,
          'appropriate': 1,
          'mood': 1,
          'set': 1,
          'angsthorror': 1,
          '90s': 1,
          'cut': 1,
          'july': 1,
          '4th': 1,
          'parade': 1,
          'small': 1,
          'north': 1,
          'carolina': 1,
          'nfrom': 1,
          'protagonist': 1,
          'helen': 1,
          'shivers': 1,
          'sarah': 1,
          'michelle': 1,
          'geller': 1,
          'crowned': 1,
          'croaker': 1,
          'queen': 1,
          'hero': 1,
          'barry': 1,
          'cox': 1,
          'ryan': 1,
          'phillipe': 1,
          'matched': 1,
          'julie': 1,
          'james': 1,
          'ray': 1,
          'bronson': 1,
          'fives': 1,
          'jennifer': 1,
          'love': 1,
          'hewitt': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'respectively': 1,
          'cheer': 1,
          'nafter': 1,
          'drunk': 1,
          'going': 1,
          'beach': 1,
          'wittily': 1,
          'discuss': 1,
          'urban': 1,
          'legend': 1,
          'indulge': 1,
          'foreshadowing': 1,
          'meaningful': 1,
          'sex': 1,
          'believe': 1,
          'characters': 1,
          'say': 1,
          'four': 1,
          'run': 1,
          'guy': 1,
          'crossing': 1,
          'windy': 1,
          'road': 1,
          'night': 1,
          'nhis': 1,
          'face': 1,
          'mangled': 1,
          'cant': 1,
          'tell': 1,
          'come': 1,
          'decision': 1,
          'dump': 1,
          'ruin': 1,
          'future': 1,
          'chances': 1,
          'success': 1,
          'world': 1,
          'ncut': 1,
          'year': 1,
          'later': 1,
          'lives': 1,
          'gone': 1,
          'annoying': 1,
          'nmain': 1,
          'bright': 1,
          'bunch': 1,
          'plagued': 1,
          'guilt': 1,
          'almost': 1,
          'failed': 1,
          'forfeited': 1,
          'dreams': 1,
          'starring': 1,
          'guiding': 1,
          'light': 1,
          'works': 1,
          'family': 1,
          'store': 1,
          'nbrunette': 1,
          'fisherman': 1,
          'living': 1,
          'land': 1,
          'become': 1,
          'complete': 1,
          'jerk': 1,
          'quarterback': 1,
          'football': 1,
          'team': 1,
          'nthen': 1,
          'predictably': 1,
          'past': 1,
          'comes': 1,
          'back': 1,
          'haunt': 1,
          'nit': 1,
          'irrational': 1,
          'murder': 1,
          'followed': 1,
          'taunting': 1,
          'mysterious': 1,
          'killer': 1,
          'good': 1,
          'actress': 1,
          'anne': 1,
          'heche': 1,
          'improbable': 1,
          'killing': 1,
          'concluding': 1,
          'scene': 1,
          'mostly': 1,
          'relief': 1,
          'end': 1,
          'nall': 1,
          'actresses': 1,
          'spout': 1,
          'best': 1,
          'keanu': 1,
          'reeves': 1,
          'imitation': 1,
          'nnot': 1,
          'pleasure': 1,
          'ncount': 1,
          'illogical': 1,
          'twists': 1,
          'fun': 1,
          'nmostly': 1,
          'note': 1,
          'costumes': 1,
          'females': 1,
          'trendily': 1,
          'unattractive': 1,
          'make': 1,
          'otherwise': 1,
          'eyecatching': 1,
          'look': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'one': 6,
          'acting': 4,
          'nits': 4,
          'porn': 3,
          'nit': 3,
          'story': 3,
          'script': 3,
          'point': 3,
          'naked': 3,
          'even': 3,
          'eszterhas': 3,
          'n': 3,
          'see': 3,
          'lacks': 3,
          'nothing': 2,
          'high': 2,
          'budget': 2,
          'nyou': 2,
          'films': 2,
          'end': 2,
          'video': 2,
          'nthere': 2,
          'nomi': 2,
          'show': 2,
          'dancer': 2,
          'nno': 2,
          'nand': 2,
          'nwhats': 2,
          'could': 2,
          'level': 2,
          'line': 2,
          'intelligence': 2,
          'youll': 2,
          'start': 2,
          'bad': 2,
          'nher': 2,
          'character': 2,
          'half': 2,
          'fact': 2,
          'whore': 2,
          'ni': 2,
          'showgirls': 2,
          'nnot': 2,
          'single': 2,
          'total': 2,
          'waste': 2,
          'time': 2,
          'dialogue': 2,
          'attempt': 2,
          'excuse': 2,
          'las': 2,
          'vegas': 2,
          'masturbation': 1,
          'fantasy': 1,
          'nshowgirls': 1,
          'nc17': 1,
          'contains': 1,
          'graphic': 1,
          'nudity': 1,
          'profanity': 1,
          'sexual': 1,
          'situations': 1,
          'violence': 1,
          'nsome': 1,
          'people': 1,
          'however': 1,
          'keep': 1,
          'clothes': 1,
          'watch': 1,
          'intellectual': 1,
          'values': 1,
          'write': 1,
          'reviews': 1,
          'nthats': 1,
          'review': 1,
          'short': 1,
          'seems': 1,
          'section': 1,
          'hits': 1,
          'stores': 1,
          'nonly': 1,
          'bodies': 1,
          'exactly': 1,
          'nhere': 1,
          'called': 1,
          'plot': 1,
          '23yearold': 1,
          'dark': 1,
          'past': 1,
          'hooker': 1,
          'hitchhiked': 1,
          'somewhere': 1,
          'back': 1,
          'east': 1,
          'perform': 1,
          'doesnt': 1,
          'wear': 1,
          'much': 1,
          'light': 1,
          'coating': 1,
          'powder': 1,
          'big': 1,
          'fake': 1,
          'smile': 1,
          'twisting': 1,
          'nomis': 1,
          'arm': 1,
          'holding': 1,
          'grandmother': 1,
          'hostage': 1,
          'nshe': 1,
          'wants': 1,
          'till': 1,
          'credits': 1,
          'nso': 1,
          'whats': 1,
          'problem': 1,
          'nis': 1,
          'anyone': 1,
          'whose': 1,
          'aspirations': 1,
          'inspire': 1,
          'less': 1,
          'sympathy': 1,
          'nthis': 1,
          'described': 1,
          'sentence': 1,
          'obscene': 1,
          'incompetence': 1,
          'excessive': 1,
          'stupidity': 1,
          'gross': 1,
          'negligence': 1,
          'viewers': 1,
          'prurient': 1,
          'interest': 1,
          'quick': 1,
          'buck': 1,
          'nbelieve': 1,
          'hour': 1,
          'characters': 1,
          'hoping': 1,
          'someone': 1,
          'kill': 1,
          'somebody': 1,
          'nelizabeth': 1,
          'berkley': 1,
          'makes': 1,
          'laughable': 1,
          'try': 1,
          'heroine': 1,
          'least': 1,
          'written': 1,
          'really': 1,
          'done': 1,
          'better': 1,
          'denies': 1,
          'industry': 1,
          'selling': 1,
          'body': 1,
          'hungry': 1,
          'eyes': 1,
          'horny': 1,
          'public': 1,
          'screams': 1,
          'dramatized': 1,
          'way': 1,
          'laughing': 1,
          'nin': 1,
          'brings': 1,
          'terrible': 1,
          'new': 1,
          'previously': 1,
          'unknown': 1,
          'achievement': 1,
          'besides': 1,
          'conventional': 1,
          'cinematography': 1,
          'worth': 1,
          'mentioning': 1,
          'money': 1,
          'moment': 1,
          'might': 1,
          'call': 1,
          'nthe': 1,
          'structured': 1,
          'ancient': 1,
          'stereotypes': 1,
          'cliches': 1,
          'lined': 1,
          'another': 1,
          'imagine': 1,
          'brain': 1,
          'results': 1,
          'catastrophe': 1,
          'writes': 1,
          'director': 1,
          'paul': 1,
          'verhoeven': 1,
          'basic': 1,
          'instinct': 1,
          'recall': 1,
          'hold': 1,
          'mirror': 1,
          'life': 1,
          'nwell': 1,
          'nhis': 1,
          'go': 1,
          'behind': 1,
          'scenes': 1,
          'put': 1,
          'truth': 1,
          'simplified': 1,
          'unreal': 1,
          'noccasionally': 1,
          'collection': 1,
          'mistakes': 1,
          'logical': 1,
          'irrationalities': 1,
          'screenwriter': 1,
          'joe': 1,
          'creator': 1,
          'worst': 1,
          'screenplays': 1,
          'hollywood': 1,
          'history': 1,
          'inserts': 1,
          'lines': 1,
          'deep': 1,
          'morality': 1,
          'sound': 1,
          'something': 1,
          'like': 1,
          'hey': 1,
          'youre': 1,
          'hiding': 1,
          'nyes': 1,
          'decent': 1,
          'cant': 1,
          'save': 1,
          'going': 1,
          'strange': 1,
          'phenomena': 1,
          'erotic': 1,
          'sensuality': 1,
          'dramatic': 1,
          'intelligent': 1,
          'simply': 1,
          'verhovens': 1,
          'making': 1,
          'pornography': 1,
          'want': 1,
          'women': 1,
          'nbare': 1,
          'breasts': 1,
          'nfull': 1,
          'frontals': 1,
          'wrong': 1,
          'nbut': 1,
          'case': 1,
          'suggest': 1,
          'rent': 1,
          'local': 1,
          'store': 1,
          'surviving': 1,
          'pathetic': 1,
          'nb': 1,
          'qualities': 1,
          'pornfilm': 1,
          'nneg': 1}),
 Counter({'hell': 7,
          'martha': 5,
          'film': 5,
          'character': 4,
          'much': 4,
          'even': 3,
          'nbut': 3,
          'characters': 3,
          'one': 2,
          'hush': 2,
          'old': 2,
          'motherinlaw': 2,
          'nthe': 2,
          'question': 2,
          'nshe': 2,
          'kilronan': 2,
          'johnathon': 2,
          'schaech': 2,
          'helen': 2,
          'paltrow': 2,
          'nyou': 2,
          'breed': 2,
          'audience': 2,
          'like': 2,
          'doesnt': 2,
          'nstill': 2,
          '90s': 1,
          'unwelcome': 1,
          'thriller': 1,
          'trends': 1,
          'returns': 1,
          'grave': 1,
          '___': 1,
          'movie': 1,
          'nstarting': 1,
          'early': 1,
          'nineties': 1,
          'subjected': 1,
          'nearly': 1,
          'every': 1,
          'conceivable': 1,
          'combination': 1,
          'relationshipsfromhell': 1,
          'nthere': 1,
          'boyfriends': 1,
          'friendly': 1,
          'neighborhood': 1,
          'cops': 1,
          'nannies': 1,
          'secretaries': 1,
          'found': 1,
          'standby': 1,
          'somehow': 1,
          'forgotten': 1,
          'rush': 1,
          'played': 1,
          'jessica': 1,
          'lange': 1,
          'singlehandedly': 1,
          'running': 1,
          'family': 1,
          'horse': 1,
          'farm': 1,
          'nher': 1,
          'son': 1,
          'jackson': 1,
          'girlfriend': 1,
          'gwyneth': 1,
          'live': 1,
          'new': 1,
          'york': 1,
          'intention': 1,
          'move': 1,
          'back': 1,
          'south': 1,
          'rural': 1,
          'intentions': 1,
          'change': 1,
          'see': 1,
          'lives': 1,
          'manipulation': 1,
          'used': 1,
          'years': 1,
          'past': 1,
          'many': 1,
          'championship': 1,
          'horses': 1,
          'nnow': 1,
          'believes': 1,
          'use': 1,
          'grandson': 1,
          'nthough': 1,
          'first': 1,
          'finds': 1,
          'charming': 1,
          'soon': 1,
          'caught': 1,
          'domineering': 1,
          'marthas': 1,
          'web': 1,
          'deception': 1,
          'nits': 1,
          'hard': 1,
          'understand': 1,
          'nobody': 1,
          'ever': 1,
          'wises': 1,
          'schemes': 1,
          'nas': 1,
          'written': 1,
          'must': 1,
          'slow': 1,
          'witted': 1,
          'treats': 1,
          'idiots': 1,
          'nit': 1,
          'tries': 1,
          'get': 1,
          'away': 1,
          'things': 1,
          'leaving': 1,
          'critical': 1,
          'piece': 1,
          'evidence': 1,
          'rather': 1,
          'unlikely': 1,
          'place': 1,
          'without': 1,
          'batting': 1,
          'eye': 1,
          'nthen': 1,
          'accepts': 1,
          'shallow': 1,
          'isnt': 1,
          'thats': 1,
          'likely': 1,
          'details': 1,
          'njessica': 1,
          'langes': 1,
          'semideveloped': 1,
          'applies': 1,
          'talents': 1,
          'redeem': 1,
          'na': 1,
          'could': 1,
          'simply': 1,
          'awful': 1,
          'merely': 1,
          'groanworthy': 1,
          'ngwyneth': 1,
          'build': 1,
          'upon': 1,
          'helens': 1,
          'trait': 1,
          'seems': 1,
          'daughterinlaw': 1,
          'fares': 1,
          'better': 1,
          'whose': 1,
          'nonexistent': 1,
          'hes': 1,
          'inexplicably': 1,
          'missing': 1,
          'worse': 1,
          '____': 1,
          'films': 1,
          'neven': 1,
          'paperthin': 1,
          'ludicrous': 1,
          'setups': 1,
          'manages': 1,
          'create': 1,
          'thrills': 1,
          'colorbynumbers': 1,
          'fashion': 1,
          'know': 1,
          'whats': 1,
          'coming': 1,
          'occasionally': 1,
          'deliver': 1,
          'shock': 1,
          'two': 1,
          'formulas': 1,
          'around': 1,
          'reason': 1,
          'mean': 1,
          'taste': 1,
          'fresh': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'story': 4,
          'black': 4,
          'photographer': 4,
          'rumor': 3,
          'robert': 3,
          'mugging': 3,
          'nit': 3,
          'looks': 3,
          'nthe': 3,
          'victim': 3,
          'one': 3,
          'mahurin': 2,
          'belinda': 2,
          'becker': 2,
          'stella': 2,
          'michael': 2,
          'williams': 2,
          'knepper': 2,
          'brother': 2,
          'mother': 2,
          'na': 2,
          'visually': 2,
          'stylish': 2,
          'shock': 2,
          'tell': 2,
          'like': 2,
          'white': 2,
          'together': 2,
          'still': 2,
          'telling': 2,
          'gang': 2,
          'hes': 2,
          'harlem': 2,
          'nhe': 2,
          'becomes': 2,
          'scrapbook': 2,
          'apartment': 2,
          'could': 2,
          'mugshot': 1,
          'directorwritercinematographereditor': 1,
          'matt': 1,
          'cast': 1,
          'joechris': 1,
          'walker': 1,
          'random': 1,
          'willie': 1,
          'lassic': 1,
          'young': 1,
          'maxine': 1,
          'joiner': 1,
          'rumors': 1,
          'runtime': 1,
          '87': 1,
          'mortal': 1,
          'films': 1,
          '1995': 1,
          'nreviewed': 1,
          'dennis': 1,
          'schwartz': 1,
          'bleak': 1,
          'indie': 1,
          'stolen': 1,
          'identity': 1,
          'ntheres': 1,
          'much': 1,
          'meets': 1,
          'eye': 1,
          'relies': 1,
          'prolonged': 1,
          'vicious': 1,
          'falls': 1,
          'category': 1,
          'pretentious': 1,
          'arthouse': 1,
          'leaving': 1,
          'bitter': 1,
          'taste': 1,
          'ones': 1,
          'mouth': 1,
          'stereotypes': 1,
          'characters': 1,
          'unintentionally': 1,
          'inflames': 1,
          'racial': 1,
          'issues': 1,
          'tries': 1,
          'make': 1,
          'heavyhanded': 1,
          'point': 1,
          'disenfranchised': 1,
          'youths': 1,
          'trapped': 1,
          'environment': 1,
          'way': 1,
          'crime': 1,
          'nbut': 1,
          'filled': 1,
          'violence': 1,
          'nyc': 1,
          'setting': 1,
          'hell': 1,
          'hard': 1,
          'enjoy': 1,
          'follow': 1,
          'logic': 1,
          'supposed': 1,
          'mean': 1,
          'relationship': 1,
          'mugger': 1,
          'cloudy': 1,
          'never': 1,
          'determines': 1,
          'wants': 1,
          'say': 1,
          'nmatt': 1,
          'virtual': 1,
          'oneman': 1,
          'crew': 1,
          'putting': 1,
          'directorwriter': 1,
          'cinematographereditor': 1,
          'day': 1,
          'job': 1,
          'works': 1,
          'best': 1,
          'challenging': 1,
          'piece': 1,
          'shot': 1,
          'photograph': 1,
          'carefully': 1,
          'unfolding': 1,
          'mugged': 1,
          'freelance': 1,
          'assignment': 1,
          'take': 1,
          'photo': 1,
          'shoot': 1,
          'night': 1,
          'amnesia': 1,
          'head': 1,
          'bloodied': 1,
          'left': 1,
          'deserted': 1,
          'building': 1,
          'leaves': 1,
          'dead': 1,
          'muggers': 1,
          'comes': 1,
          'back': 1,
          'pretends': 1,
          'help': 1,
          'nhes': 1,
          'wouldbe': 1,
          'keeps': 1,
          'entitled': 1,
          'mugshots': 1,
          'project': 1,
          'shares': 1,
          'younger': 1,
          'nkeeping': 1,
          'dark': 1,
          'calling': 1,
          'joe': 1,
          'whats': 1,
          'happening': 1,
          'days': 1,
          'enters': 1,
          'photographers': 1,
          'greenwich': 1,
          'village': 1,
          'steals': 1,
          'expensive': 1,
          'camera': 1,
          'decides': 1,
          'hold': 1,
          'vic': 1,
          'ransom': 1,
          'finds': 1,
          'girlfriend': 1,
          'nshes': 1,
          'act': 1,
          'stuck': 1,
          'clumsy': 1,
          'dialogue': 1,
          'overuse': 1,
          'symbolism': 1,
          'ends': 1,
          'nothing': 1,
          'violent': 1,
          'situation': 1,
          'created': 1,
          'except': 1,
          'beat': 1,
          'ground': 1,
          'commended': 1,
          'appealing': 1,
          'photos': 1,
          'put': 1,
          'celebrate': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'tribe': 8,
          'dreyfuss': 7,
          'ni': 7,
          'krippendorf': 6,
          'funny': 6,
          'good': 5,
          'nand': 5,
          'like': 5,
          'would': 5,
          'krippendorfs': 4,
          'actors': 4,
          'bad': 4,
          'truly': 4,
          'nit': 3,
          'great': 3,
          'nin': 3,
          'fact': 3,
          'script': 3,
          'could': 3,
          'able': 3,
          'ndreyfuss': 3,
          'plays': 3,
          'never': 3,
          'nhe': 3,
          'really': 3,
          'story': 3,
          'scene': 3,
          'nthey': 3,
          'audience': 3,
          'scenes': 3,
          'insult': 3,
          'kids': 3,
          'imagine': 2,
          'talented': 2,
          'led': 2,
          'far': 2,
          'away': 2,
          'actor': 2,
          'less': 2,
          'anthropologist': 2,
          'find': 2,
          'apparently': 2,
          'dies': 2,
          'established': 2,
          'grant': 2,
          'money': 2,
          'lie': 2,
          'makes': 2,
          'simply': 2,
          'shelmickedmu': 2,
          'family': 2,
          'single': 2,
          'community': 2,
          'man': 2,
          'people': 2,
          'nthis': 2,
          'also': 2,
          'requires': 2,
          'elfman': 2,
          'veronica': 2,
          'work': 2,
          'well': 2,
          'nbut': 2,
          'disbelief': 2,
          'takes': 2,
          'easily': 2,
          'nno': 2,
          'many': 2,
          'clueless': 2,
          'material': 2,
          'shameless': 2,
          'get': 2,
          'saw': 2,
          'didnt': 2,
          'members': 2,
          'admit': 2,
          'entertaining': 2,
          'see': 2,
          'themes': 2,
          'kind': 2,
          'suppose': 2,
          'tells': 2,
          'must': 1,
          'looked': 1,
          'paper': 1,
          'surprise': 1,
          'least': 1,
          'group': 1,
          'extremely': 1,
          'richard': 1,
          'director': 1,
          'todd': 1,
          'holland': 1,
          'wanted': 1,
          'make': 1,
          'expertise': 1,
          'excruciatingly': 1,
          'executed': 1,
          'keeps': 1,
          'suggesting': 1,
          'stay': 1,
          'possible': 1,
          'retrospect': 1,
          'shudder': 1,
          'possibilities': 1,
          'awfulness': 1,
          'starred': 1,
          'james': 1,
          'granted': 1,
          '100': 1,
          '000': 1,
          'university': 1,
          'undiscovered': 1,
          'new': 1,
          'guinea': 1,
          'nhalfway': 1,
          'twoyear': 1,
          'expedition': 1,
          'wife': 1,
          'say': 1,
          'nlater': 1,
          'much': 1,
          'spent': 1,
          'bigscreen': 1,
          'tvs': 1,
          'pleasures': 1,
          'nso': 1,
          'finds': 1,
          'happens': 1,
          'professors': 1,
          'use': 1,
          'wisely': 1,
          'decides': 1,
          'construct': 1,
          'elaborate': 1,
          'using': 1,
          'three': 1,
          'children': 1,
          'video': 1,
          'certain': 1,
          'incredible': 1,
          'facts': 1,
          'calls': 1,
          'naudiences': 1,
          'lectures': 1,
          'amazed': 1,
          'findings': 1,
          'practice': 1,
          'circumcision': 1,
          'proof': 1,
          'typical': 1,
          'unit': 1,
          'father': 1,
          'amazing': 1,
          'anthropological': 1,
          'nlike': 1,
          'films': 1,
          'becomes': 1,
          'complex': 1,
          'suspense': 1,
          'generated': 1,
          'us': 1,
          'wondering': 1,
          'point': 1,
          'going': 1,
          'fall': 1,
          'hero': 1,
          'lots': 1,
          'positive': 1,
          'energy': 1,
          'unlike': 1,
          'comical': 1,
          'manages': 1,
          'play': 1,
          'realistically': 1,
          'lot': 1,
          'physical': 1,
          'humor': 1,
          'ive': 1,
          'seen': 1,
          'perform': 1,
          'job': 1,
          'njenna': 1,
          'mecilli': 1,
          'scientist': 1,
          'wants': 1,
          'appealing': 1,
          'kid': 1,
          'talking': 1,
          'hell': 1,
          'one': 1,
          'stories': 1,
          'extreme': 1,
          'suspension': 1,
          'might': 1,
          'place': 1,
          'alternate': 1,
          'universe': 1,
          'things': 1,
          'happen': 1,
          'ridiculousness': 1,
          'nall': 1,
          'cliches': 1,
          'irritating': 1,
          'plot': 1,
          'devices': 1,
          'overcome': 1,
          'crew': 1,
          'plagued': 1,
          'stereotypes': 1,
          'meanspirited': 1,
          'characters': 1,
          'watched': 1,
          'nfurthermore': 1,
          'manor': 1,
          'covered': 1,
          'ntake': 1,
          'instance': 1,
          'gets': 1,
          'drunk': 1,
          'tape': 1,
          'sex': 1,
          'decked': 1,
          'getup': 1,
          'complete': 1,
          'paint': 1,
          'darken': 1,
          'skin': 1,
          'nkrippendorf': 1,
          'needs': 1,
          'footage': 1,
          'mating': 1,
          'rituals': 1,
          'nnow': 1,
          'coming': 1,
          'mile': 1,
          'said': 1,
          'tasteless': 1,
          'ntheres': 1,
          'way': 1,
          'theyll': 1,
          'oh': 1,
          'ngod': 1,
          'nits': 1,
          'almost': 1,
          'appalled': 1,
          'bother': 1,
          'found': 1,
          'deplorable': 1,
          'forced': 1,
          'apologizes': 1,
          'without': 1,
          'slightest': 1,
          'hint': 1,
          'conviction': 1,
          'voice': 1,
          'nthe': 1,
          'filled': 1,
          'types': 1,
          'portrays': 1,
          'take': 1,
          'professional': 1,
          'create': 1,
          'videos': 1,
          'convincing': 1,
          'enough': 1,
          'fool': 1,
          'entire': 1,
          'scientists': 1,
          'yet': 1,
          'afternoon': 1,
          'watching': 1,
          'stumble': 1,
          'completely': 1,
          'unprepared': 1,
          'speech': 1,
          'think': 1,
          'onscreen': 1,
          'making': 1,
          'everything': 1,
          'goes': 1,
          'nif': 1,
          'immensely': 1,
          'nmoving': 1,
          'right': 1,
          'along': 1,
          'every': 1,
          'stereotype': 1,
          'culture': 1,
          'ever': 1,
          'learned': 1,
          'regarding': 1,
          'african': 1,
          'tribes': 1,
          'nsure': 1,
          'dressing': 1,
          'chief': 1,
          'allows': 1,
          'heart': 1,
          'deeply': 1,
          'thoughts': 1,
          'provokes': 1,
          'watch': 1,
          'nhis': 1,
          'character': 1,
          'subject': 1,
          'liar': 1,
          'show': 1,
          'penance': 1,
          'interesting': 1,
          'formula': 1,
          'defied': 1,
          'case': 1,
          'purposes': 1,
          'taste': 1,
          'expected': 1,
          'something': 1,
          'sets': 1,
          'terrible': 1,
          'example': 1,
          'colleagues': 1,
          'writer': 1,
          'charlie': 1,
          'peters': 1,
          'include': 1,
          'aside': 1,
          'eldest': 1,
          'daughter': 1,
          'frequently': 1,
          'wrong': 1,
          'thing': 1,
          'continually': 1,
          'shrugs': 1,
          'warnings': 1,
          'important': 1,
          'contrived': 1,
          'insulting': 1,
          'add': 1,
          'picture': 1,
          'anything': 1,
          'boring': 1,
          'youre': 1,
          'serious': 1,
          'probably': 1,
          'enjoy': 1,
          'however': 1,
          'cant': 1,
          'past': 1,
          'elements': 1,
          'nkrippendorfs': 1,
          'marketed': 1,
          'comedy': 1,
          'teaches': 1,
          'society': 1,
          'faulty': 1,
          'lessons': 1,
          'shouldnt': 1,
          'learning': 1,
          'nwith': 1,
          'little': 1,
          'insight': 1,
          'movie': 1,
          'nneg': 1}),
 Counter({'mars': 7,
          'film': 6,
          'nthe': 6,
          'mcconnell': 4,
          'mission': 3,
          'nthere': 3,
          'astronauts': 3,
          'movie': 3,
          'crew': 3,
          'ni': 3,
          'explain': 3,
          'visuals': 2,
          'depalma': 2,
          'close': 2,
          'kind': 2,
          'space': 2,
          'components': 2,
          'right': 2,
          'even': 2,
          'nmission': 2,
          'first': 2,
          'characters': 2,
          'wife': 2,
          'nits': 2,
          'rest': 2,
          'time': 2,
          'personality': 2,
          'earth': 2,
          'team': 2,
          'fisher': 2,
          'crews': 2,
          'solving': 2,
          'come': 2,
          'serve': 2,
          'films': 2,
          'marketing': 1,
          'windup': 1,
          'striking': 1,
          'promise': 1,
          'star': 1,
          'caliber': 1,
          'actors': 1,
          'ends': 1,
          'throwing': 1,
          'whiffleball': 1,
          'nfiercely': 1,
          'unoriginal': 1,
          'director': 1,
          'cobbles': 1,
          'together': 1,
          'borrowing': 1,
          'heavily': 1,
          'gone': 1,
          'aliens': 1,
          'similar': 1,
          'encounters': 1,
          'third': 1,
          'stranded': 1,
          'astronaut': 1,
          'theme': 1,
          'reminiscent': 1,
          'robinson': 1,
          'crusoe': 1,
          'encounter': 1,
          'flight': 1,
          'difficulties': 1,
          'smack': 1,
          'apollo': 1,
          '13': 1,
          'ninterior': 1,
          'spacecraft': 1,
          'redolent': 1,
          '2001': 1,
          'odyssey': 1,
          'ninstead': 1,
          'using': 1,
          'launching': 1,
          'pad': 1,
          'create': 1,
          'de': 1,
          'palma': 1,
          'stops': 1,
          'refusing': 1,
          'infuse': 1,
          'anything': 1,
          'remotely': 1,
          'resembling': 1,
          'cleverness': 1,
          'heart': 1,
          'takes': 1,
          'wobbly': 1,
          'steps': 1,
          'prelaunch': 1,
          'barbeque': 1,
          'perfunctory': 1,
          'character': 1,
          'introductions': 1,
          'done': 1,
          'nduring': 1,
          'surface': 1,
          'scans': 1,
          'learn': 1,
          'jim': 1,
          'sinise': 1,
          'lost': 1,
          'plot': 1,
          'point': 1,
          'revisted': 1,
          'throughout': 1,
          'jackhammer': 1,
          'subtlety': 1,
          'exhibit': 1,
          'bland': 1,
          'affability': 1,
          'contentiousness': 1,
          'friction': 1,
          'add': 1,
          'dramatic': 1,
          'tension': 1,
          'men': 1,
          'women': 1,
          'confined': 1,
          'quarters': 1,
          'extended': 1,
          'length': 1,
          'nmaybe': 1,
          'going': 1,
          'comraderie': 1,
          'stuff': 1,
          'embers': 1,
          'warm': 1,
          'us': 1,
          'technical': 1,
          'aspects': 1,
          'year': 1,
          '2020': 1,
          'nasas': 1,
          'manned': 1,
          'excursion': 1,
          'red': 1,
          'planet': 1,
          'na': 1,
          'led': 1,
          'luke': 1,
          'graham': 1,
          'cheadle': 1,
          'arrives': 1,
          'quickly': 1,
          'discovers': 1,
          'anomaly': 1,
          'investigate': 1,
          'tragic': 1,
          'results': 1,
          'ngraham': 1,
          'able': 1,
          'transmit': 1,
          'garbled': 1,
          'distress': 1,
          'call': 1,
          'back': 1,
          'nin': 1,
          'response': 1,
          'sends': 1,
          'rescue': 1,
          'comprised': 1,
          'woody': 1,
          'blake': 1,
          'robbins': 1,
          'terri': 1,
          'nielsen': 1,
          'phil': 1,
          'ohlmyer': 1,
          'oconnell': 1,
          'nobstacles': 1,
          'put': 1,
          'way': 1,
          'matterof': 1,
          'factly': 1,
          'go': 1,
          'say': 1,
          'goes': 1,
          'ntime': 1,
          'presented': 1,
          'wunderkind': 1,
          'wouldnt': 1,
          'bad': 1,
          'didnt': 1,
          'across': 1,
          'aggressivelly': 1,
          'unremarkable': 1,
          'n': 1,
          'mention': 1,
          'made': 1,
          'misogynistic': 1,
          'handling': 1,
          'situation': 1,
          'entire': 1,
          'life': 1,
          'mortal': 1,
          'danger': 1,
          'non': 1,
          'professionals': 1,
          'portrayed': 1,
          'emotion': 1,
          'directed': 1,
          'weak': 1,
          'link': 1,
          'nwomen': 1,
          'purpose': 1,
          'reflection': 1,
          'male': 1,
          'trait': 1,
          'nby': 1,
          'land': 1,
          'try': 1,
          'solve': 1,
          'mystery': 1,
          'occurred': 1,
          'starts': 1,
          'laying': 1,
          'cliches': 1,
          'stilted': 1,
          'dialogue': 1,
          'heavy': 1,
          'brush': 1,
          'adage': 1,
          'show': 1,
          'dont': 1,
          'tell': 1,
          'nrepeatedly': 1,
          'ncharacters': 1,
          'obsessively': 1,
          'obvious': 1,
          'actions': 1,
          'fellow': 1,
          'facts': 1,
          'fundamental': 1,
          'knowledge': 1,
          'conclusion': 1,
          'momumentally': 1,
          'derivative': 1,
          'anticlimatic': 1,
          'unsatisying': 1,
          'nas': 1,
          'walked': 1,
          'wondered': 1,
          'target': 1,
          'audience': 1,
          'might': 1,
          'best': 1,
          'could': 1,
          'preteen': 1,
          'age': 1,
          'boys': 1,
          'media': 1,
          'saturated': 1,
          'era': 1,
          'would': 1,
          'old': 1,
          'hat': 1,
          'think': 1,
          'attracted': 1,
          'talent': 1,
          'lure': 1,
          'making': 1,
          'good': 1,
          'modern': 1,
          'day': 1,
          'bmovie': 1,
          'key': 1,
          'venture': 1,
          'certain': 1,
          'depth': 1,
          'sincerity': 1,
          'towards': 1,
          'material': 1,
          'felt': 1,
          'earnestness': 1,
          'nneg': 1}),
 Counter({'bad': 9,
          'movies': 7,
          'guy': 7,
          'time': 6,
          'like': 6,
          'hero': 6,
          'good': 4,
          'one': 4,
          'movie': 4,
          'look': 4,
          'shotgun': 4,
          'guys': 4,
          'ask': 3,
          'door': 3,
          'really': 3,
          'could': 3,
          'better': 3,
          'nthis': 3,
          'nfor': 3,
          'make': 3,
          'get': 3,
          'go': 3,
          'nhe': 3,
          'back': 3,
          'come': 3,
          'brain': 2,
          'believe': 2,
          'god': 2,
          'fully': 2,
          'steps': 2,
          'several': 2,
          'two': 2,
          'nsome': 2,
          'see': 2,
          'thought': 2,
          'director': 2,
          'satisfied': 2,
          'need': 2,
          'every': 2,
          'example': 2,
          'guns': 2,
          'hear': 2,
          'ntwo': 2,
          'nand': 2,
          'effort': 2,
          'take': 2,
          'something': 2,
          'timothy': 2,
          'hutton': 2,
          'suffer': 2,
          'stupid': 2,
          'syndrome': 2,
          'little': 2,
          'heroes': 2,
          'duchovny': 2,
          'stoned': 2,
          'common': 2,
          'sense': 2,
          'seems': 2,
          'actually': 2,
          'trigger': 2,
          'never': 2,
          'life': 2,
          'would': 2,
          'hell': 2,
          'fbi': 2,
          'shot': 2,
          'along': 2,
          'might': 2,
          'much': 2,
          'nour': 2,
          'room': 2,
          'people': 2,
          'getting': 2,
          'sit': 2,
          'gun': 2,
          'clean': 2,
          'leave': 1,
          'impossible': 1,
          'nplaying': 1,
          'asks': 1,
          'simple': 1,
          'eensy': 1,
          'teensy': 1,
          'thing': 1,
          'entertain': 1,
          'accomplished': 1,
          'four': 1,
          'easy': 1,
          'follow': 1,
          'crack': 1,
          'open': 1,
          'skull': 1,
          'scoop': 1,
          'squish': 1,
          'foot': 1,
          'times': 1,
          'reverse': 1,
          'ncongratulations': 1,
          'necessary': 1,
          'requirements': 1,
          'enjoy': 1,
          'whole': 1,
          'lot': 1,
          'nothing': 1,
          'fail': 1,
          'box': 1,
          'office': 1,
          'manage': 1,
          'producers': 1,
          'others': 1,
          'simply': 1,
          'ideas': 1,
          'badly': 1,
          'executed': 1,
          'nthen': 1,
          'theres': 1,
          'playing': 1,
          'enters': 1,
          'esteemed': 1,
          'category': 1,
          'seem': 1,
          'grown': 1,
          'union': 1,
          'drunk': 1,
          'actors': 1,
          'knowledge': 1,
          'horrible': 1,
          'flick': 1,
          'lasting': 1,
          'impact': 1,
          'careers': 1,
          'bunch': 1,
          'ripoffs': 1,
          'homages': 1,
          'call': 1,
          'end': 1,
          'looking': 1,
          'unflushed': 1,
          'toilet': 1,
          'nharsh': 1,
          'maybe': 1,
          'njustified': 1,
          'nhell': 1,
          'yes': 1,
          'ripping': 1,
          'feels': 1,
          'remind': 1,
          'us': 1,
          'fact': 1,
          'ten': 1,
          'minutes': 1,
          'gunman': 1,
          'bursts': 1,
          'garden': 1,
          'hands': 1,
          'firing': 1,
          'away': 1,
          'moderately': 1,
          'kool': 1,
          'camera': 1,
          'lingers': 1,
          'actor': 1,
          'long': 1,
          'almost': 1,
          'yelling': 1,
          'oooh': 1,
          'njohn': 1,
          'woo': 1,
          'blazing': 1,
          'nslooooow': 1,
          'motion': 1,
          'wasnt': 1,
          'enough': 1,
          'also': 1,
          'script': 1,
          'grunting': 1,
          'must': 1,
          'try': 1,
          'single': 1,
          'line': 1,
          'dialogue': 1,
          'sound': 1,
          'deep': 1,
          'meaningful': 1,
          'tarantino': 1,
          'npoor': 1,
          'gets': 1,
          'deliver': 1,
          'corny': 1,
          'lines': 1,
          'admire': 1,
          'puts': 1,
          'deserves': 1,
          'nunlike': 1,
          'things': 1,
          'different': 1,
          'nexample': 1,
          'manages': 1,
          'distract': 1,
          'making': 1,
          'bathroom': 1,
          'bandages': 1,
          'nnow': 1,
          'man': 1,
          'leaves': 1,
          'next': 1,
          'n': 1,
          'term': 1,
          'used': 1,
          'loosely': 1,
          'possible': 1,
          'nsurvival': 1,
          'instincts': 1,
          'dose': 1,
          'suggest': 1,
          'grabbing': 1,
          'contemplating': 1,
          'thirty': 1,
          'seconds': 1,
          'neven': 1,
          'grab': 1,
          'unsure': 1,
          'hold': 1,
          'going': 1,
          'far': 1,
          'wonder': 1,
          'place': 1,
          'finger': 1,
          'near': 1,
          'nmind': 1,
          'ive': 1,
          'fired': 1,
          'missing': 1,
          'vital': 1,
          'organs': 1,
          'argue': 1,
          'killer': 1,
          'instinct': 1,
          'front': 1,
          'looks': 1,
          'ballistic': 1,
          'second': 1,
          'nsolution': 1,
          'nboom': 1,
          'nill': 1,
          'feel': 1,
          'sorry': 1,
          'later': 1,
          'thank': 1,
          'nanother': 1,
          'prime': 1,
          'idiot': 1,
          'boy': 1,
          'needs': 1,
          'reach': 1,
          'girl': 1,
          'happens': 1,
          'knows': 1,
          'head': 1,
          'tenth': 1,
          'floor': 1,
          'building': 1,
          'running': 1,
          'full': 1,
          'itchy': 1,
          'fingers': 1,
          'still': 1,
          'bring': 1,
          'say': 1,
          'nno': 1,
          'thanks': 1,
          'ill': 1,
          'ditch': 1,
          'car': 1,
          'real': 1,
          'kicker': 1,
          'reaches': 1,
          'start': 1,
          'shooting': 1,
          'nerve': 1,
          'surprised': 1,
          'nwhile': 1,
          'subject': 1,
          'hades': 1,
          'sitting': 1,
          'backs': 1,
          'nive': 1,
          'got': 1,
          'formal': 1,
          'training': 1,
          'even': 1,
          'know': 1,
          'nask': 1,
          'mr': 1,
          'wild': 1,
          'bill': 1,
          'first': 1,
          'wall': 1,
          'cost': 1,
          'major': 1,
          'problem': 1,
          'mook': 1,
          'hundred': 1,
          'ways': 1,
          'nis': 1,
          'hollywood': 1,
          'put': 1,
          'characters': 1,
          'instance': 1,
          'hide': 1,
          'duchovnys': 1,
          'summer': 1,
          'home': 1,
          'knocking': 1,
          'moment': 1,
          'nok': 1,
          'side': 1,
          'nbut': 1,
          'drug': 1,
          'addict': 1,
          'guess': 1,
          'chooses': 1,
          'dt': 1,
          'noh': 1,
          'sure': 1,
          'impressive': 1,
          'calling': 1,
          'ngoing': 1,
          'honorable': 1,
          'waited': 1,
          'conscious': 1,
          'able': 1,
          'fire': 1,
          'enjoyable': 1,
          'performance': 1,
          'plot': 1,
          'holes': 1,
          'size': 1,
          'godzilla': 1,
          'intelligence': 1,
          'insulted': 1,
          'oh': 1,
          'nmoments': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'character': 6,
          'code': 4,
          'nthe': 4,
          'documentary': 4,
          'world': 3,
          'plays': 3,
          'ironside': 3,
          'despite': 3,
          'michael': 3,
          'see': 3,
          'one': 3,
          'crew': 3,
          'actually': 3,
          'interviewed': 3,
          'bible': 2,
          'doomsday': 2,
          'ever': 2,
          'nmichael': 2,
          'earth': 2,
          'great': 2,
          'silly': 2,
          'man': 2,
          'yorks': 2,
          'ironsides': 2,
          'filmmakers': 2,
          'arent': 2,
          'even': 2,
          'nit': 2,
          'sense': 2,
          'made': 2,
          'movie': 2,
          'original': 2,
          'theatrical': 2,
          '1': 2,
          'cast': 2,
          'job': 2,
          'lindsey': 2,
          'preposterous': 1,
          'religious': 1,
          'action': 1,
          'produced': 1,
          'trinity': 1,
          'broadcasting': 1,
          'network': 1,
          'hidden': 1,
          'within': 1,
          'text': 1,
          'deciphered': 1,
          'lead': 1,
          'end': 1,
          'nice': 1,
          'authors': 1,
          'put': 1,
          'read': 1,
          'book': 1,
          'eh': 1,
          'york': 1,
          'millionaire': 1,
          'diplomat': 1,
          'breaks': 1,
          'sets': 1,
          'become': 1,
          'god': 1,
          'fulfill': 1,
          'prophecies': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'terribly': 1,
          'miscast': 1,
          'giving': 1,
          'awful': 1,
          'performance': 1,
          'result': 1,
          'atheist': 1,
          'motivational': 1,
          'speaker': 1,
          'must': 1,
          'stop': 1,
          'always': 1,
          'surrounding': 1,
          'fallen': 1,
          'priest': 1,
          'right': 1,
          'hand': 1,
          'nheres': 1,
          'subtle': 1,
          'development': 1,
          'may': 1,
          'missed': 1,
          'pertaining': 1,
          'nnow': 1,
          'fact': 1,
          'murder': 1,
          'opening': 1,
          'scene': 1,
          'quite': 1,
          'sure': 1,
          'audience': 1,
          'understand': 1,
          'evil': 1,
          'nhow': 1,
          'fix': 1,
          'nmake': 1,
          'specific': 1,
          'efforts': 1,
          'show': 1,
          'smokes': 1,
          'nthere': 1,
          'lots': 1,
          'ominous': 1,
          'shots': 1,
          'smoking': 1,
          'noooooo': 1,
          'scary': 1,
          'nbut': 1,
          'wasnt': 1,
          'enough': 1,
          'apparently': 1,
          'later': 1,
          'infer': 1,
          'gay': 1,
          'comes': 1,
          'nowhere': 1,
          'makes': 1,
          'nmy': 1,
          'main': 1,
          'problem': 1,
          'story': 1,
          'could': 1,
          'pulled': 1,
          'nanything': 1,
          'believable': 1,
          'executed': 1,
          'correctly': 1,
          'events': 1,
          'shown': 1,
          'urgency': 1,
          'importance': 1,
          'nfor': 1,
          'example': 1,
          'point': 1,
          'declared': 1,
          'chancellor': 1,
          'something': 1,
          'brief': 1,
          'cheesy': 1,
          'news': 1,
          'report': 1,
          'keeps': 1,
          'telling': 1,
          'us': 1,
          'apocalypse': 1,
          'coming': 1,
          'never': 1,
          'seems': 1,
          'way': 1,
          'ntheres': 1,
          'reaction': 1,
          'anything': 1,
          'omega': 1,
          'available': 1,
          'dvd': 1,
          'goodtimes': 1,
          'home': 1,
          'video': 1,
          'contains': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'includes': 1,
          'trailer': 1,
          'making': 1,
          'production': 1,
          'notes': 1,
          'information': 1,
          'runs': 1,
          '25': 1,
          'minutes': 1,
          'surprisingly': 1,
          'good': 1,
          'looks': 1,
          'though': 1,
          'broadcast': 1,
          'tbn': 1,
          'comprehensive': 1,
          'interviewing': 1,
          'practically': 1,
          'everyone': 1,
          'exception': 1,
          'unfortunately': 1,
          'best': 1,
          'thing': 1,
          'whenever': 1,
          'members': 1,
          'excellent': 1,
          'explaining': 1,
          'profession': 1,
          'exactly': 1,
          'set': 1,
          'nmost': 1,
          'documentaries': 1,
          'tend': 1,
          'overlook': 1,
          'ndoomsday': 1,
          'expert': 1,
          'hal': 1,
          'youll': 1,
          'remember': 1,
          '1970s': 1,
          'called': 1,
          'late': 1,
          'planet': 1,
          'speculated': 1,
          'jimmy': 1,
          'carter': 1,
          'might': 1,
          'antichrist': 1,
          'nhowever': 1,
          'beginning': 1,
          'producers': 1,
          'managed': 1,
          'get': 1,
          'bad': 1,
          'side': 1,
          'nwhen': 1,
          'nerve': 1,
          'say': 1,
          'raiders': 1,
          'lost': 1,
          'ark': 1,
          'nwell': 1,
          'like': 1,
          'nno': 1,
          'isnt': 1,
          'nnot': 1,
          'long': 1,
          'shot': 1,
          'npg13': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'studio': 7,
          'eddie': 6,
          'movie': 5,
          'americas': 4,
          'sweethearts': 4,
          'cast': 4,
          'billy': 4,
          'crystal': 4,
          'reporters': 4,
          'gwen': 4,
          'nthe': 4,
          'premise': 3,
          'screenplay': 3,
          'work': 3,
          'press': 3,
          'junket': 3,
          'journalists': 3,
          'director': 3,
          'lee': 3,
          'publicist': 3,
          'hotel': 3,
          'writers': 3,
          'minutes': 3,
          'best': 3,
          'publicity': 3,
          'good': 3,
          'isnt': 2,
          'back': 2,
          'writer': 2,
          'shows': 2,
          'comic': 2,
          'relief': 2,
          'two': 2,
          'comedy': 2,
          'must': 2,
          'setting': 2,
          'place': 2,
          'front': 2,
          'setup': 2,
          'thus': 2,
          'situation': 2,
          'nby': 2,
          'room': 2,
          'outbursts': 2,
          'amusing': 2,
          'cusack': 2,
          'zetajones': 2,
          'play': 2,
          'hank': 2,
          'azaria': 2,
          'spanish': 2,
          'actor': 2,
          'films': 2,
          'six': 2,
          'time': 2,
          'gwens': 2,
          'make': 2,
          'matter': 2,
          'christopher': 2,
          'walken': 2,
          'moved': 2,
          'screening': 2,
          'nlee': 2,
          'convincing': 2,
          'kiki': 2,
          'roberts': 2,
          'doesnt': 2,
          'fact': 2,
          'could': 2,
          'junkets': 2,
          'around': 2,
          'plush': 2,
          'five': 2,
          'questions': 2,
          'one': 2,
          'tv': 2,
          'even': 2,
          'roughly': 2,
          'tossing': 2,
          'stars': 2,
          'safe': 2,
          'actors': 2,
          'behavior': 2,
          'without': 2,
          'makes': 2,
          'much': 2,
          'broad': 2,
          'would': 2,
          'little': 2,
          'nas': 2,
          'intriguing': 1,
          'great': 1,
          'nearly': 1,
          'edgy': 1,
          'funny': 1,
          'nalmost': 1,
          'problems': 1,
          'project': 1,
          'traced': 1,
          'coscript': 1,
          'lack': 1,
          'discipline': 1,
          'typically': 1,
          'displays': 1,
          'cohosting': 1,
          'charity': 1,
          'robin': 1,
          'williams': 1,
          'whoopi': 1,
          'goldberg': 1,
          'paragons': 1,
          'selfindulgence': 1,
          'ncrystal': 1,
          'ignores': 1,
          'simple': 1,
          'crucial': 1,
          'rule': 1,
          'screwball': 1,
          'characters': 1,
          'placed': 1,
          'rigid': 1,
          'social': 1,
          'context': 1,
          'unorthodox': 1,
          'antics': 1,
          'humorous': 1,
          'n': 1,
          'takes': 1,
          'decorum': 1,
          'maintained': 1,
          'nits': 1,
          'promising': 1,
          'quickly': 1,
          'blows': 1,
          'rules': 1,
          'dissipating': 1,
          'tension': 1,
          'end': 1,
          'lead': 1,
          'performers': 1,
          'participate': 1,
          'huge': 1,
          'fight': 1,
          'full': 1,
          'looking': 1,
          'mildly': 1,
          'structure': 1,
          'destroyed': 1,
          'njohn': 1,
          'catherine': 1,
          'thomas': 1,
          'harrison': 1,
          'beloved': 1,
          'acting': 1,
          'duo': 1,
          'whose': 1,
          'marriage': 1,
          'hit': 1,
          'skids': 1,
          'began': 1,
          'seeing': 1,
          'hector': 1,
          'ego': 1,
          'almost': 1,
          'pronounced': 1,
          'lisp': 1,
          'nof': 1,
          'last': 1,
          'nine': 1,
          'made': 1,
          'together': 1,
          'crossed': 1,
          '100': 1,
          'million': 1,
          'mark': 1,
          'prospects': 1,
          'final': 1,
          'effort': 1,
          'space': 1,
          'opus': 1,
          'titled': 1,
          'far': 1,
          'rosy': 1,
          'nwhile': 1,
          'spent': 1,
          'many': 1,
          'months': 1,
          'new': 1,
          'age': 1,
          'rest': 1,
          'clinic': 1,
          'fretting': 1,
          'breakup': 1,
          'solo': 1,
          'tanked': 1,
          'nto': 1,
          'worse': 1,
          'visionary': 1,
          'purchased': 1,
          'unabombers': 1,
          'cabin': 1,
          'backyard': 1,
          'withholding': 1,
          'insisting': 1,
          'first': 1,
          'held': 1,
          'ndesperate': 1,
          'win': 1,
          'elects': 1,
          'hire': 1,
          'recently': 1,
          'fired': 1,
          'salvage': 1,
          'hopes': 1,
          'turn': 1,
          'lemons': 1,
          'lemonade': 1,
          'pretend': 1,
          'road': 1,
          'reconciliation': 1,
          'nhe': 1,
          'enlists': 1,
          'help': 1,
          'julia': 1,
          'sister': 1,
          'personal': 1,
          'assistant': 1,
          'whipping': 1,
          'girl': 1,
          'nwhat': 1,
          'know': 1,
          'love': 1,
          'temper': 1,
          'effectiveness': 1,
          'npress': 1,
          'control': 1,
          'freaks': 1,
          'nstudios': 1,
          'fly': 1,
          'world': 1,
          'put': 1,
          'food': 1,
          'drink': 1,
          'always': 1,
          'hand': 1,
          'ngenerally': 1,
          'evening': 1,
          'arrival': 1,
          'bussed': 1,
          'see': 1,
          'featured': 1,
          'ferreted': 1,
          'straight': 1,
          'next': 1,
          'day': 1,
          'go': 1,
          'suites': 1,
          'assemble': 1,
          'groups': 1,
          'roundtable': 1,
          'interviews': 1,
          'nevery': 1,
          '30': 1,
          'producer': 1,
          'brought': 1,
          'hovering': 1,
          'corner': 1,
          'keep': 1,
          'eye': 1,
          'things': 1,
          'atmosphere': 1,
          'cordial': 1,
          'oppression': 1,
          'free': 1,
          'ask': 1,
          'want': 1,
          'understand': 1,
          'dislikes': 1,
          'question': 1,
          'may': 1,
          'invited': 1,
          'future': 1,
          'nrepresentatives': 1,
          'stations': 1,
          'face': 1,
          'restrictions': 1,
          'nthey': 1,
          'get': 1,
          'interview': 1,
          'member': 1,
          'crew': 1,
          'filming': 1,
          'exchanges': 1,
          'notorious': 1,
          'softball': 1,
          'suck': 1,
          'studios': 1,
          'stand': 1,
          'ready': 1,
          'erase': 1,
          'tapes': 1,
          'anything': 1,
          'unpleasant': 1,
          'occurs': 1,
          'nplacing': 1,
          'spoiled': 1,
          'image': 1,
          'everything': 1,
          'inspired': 1,
          'undermines': 1,
          'conceit': 1,
          'handsome': 1,
          'highly': 1,
          'confining': 1,
          'four': 1,
          'seasons': 1,
          'resort': 1,
          'near': 1,
          'las': 1,
          'vegas': 1,
          'nfor': 1,
          'run': 1,
          'sprawling': 1,
          'grounds': 1,
          'completely': 1,
          'eyes': 1,
          'nwhen': 1,
          'deal': 1,
          'imperative': 1,
          'declawed': 1,
          'ngwen': 1,
          'insult': 1,
          'cameras': 1,
          'roll': 1,
          'scream': 1,
          'restaurant': 1,
          'filled': 1,
          'media': 1,
          'everyone': 1,
          'connected': 1,
          'goes': 1,
          'nuts': 1,
          'repercussions': 1,
          'certainly': 1,
          'bothered': 1,
          'infantile': 1,
          'arrangements': 1,
          'footage': 1,
          'inappropriate': 1,
          'delivered': 1,
          'tabloids': 1,
          'nis': 1,
          'angry': 1,
          'handling': 1,
          'combative': 1,
          'nhell': 1,
          'feel': 1,
          'genius': 1,
          'garnering': 1,
          'nall': 1,
          'underscores': 1,
          'cowriter': 1,
          'peter': 1,
          'tolan': 1,
          'screwed': 1,
          'based': 1,
          'barelyincontrol': 1,
          'people': 1,
          'trying': 1,
          'contain': 1,
          'presence': 1,
          'except': 1,
          'nand': 1,
          'implodes': 1,
          'leaving': 1,
          'smoke': 1,
          'dust': 1,
          'laughter': 1,
          'nso': 1,
          'njulia': 1,
          'playing': 1,
          'underdog': 1,
          'utterly': 1,
          'charming': 1,
          'although': 1,
          'lived': 1,
          'flashbacks': 1,
          'exist': 1,
          'solely': 1,
          'excuse': 1,
          'show': 1,
          'fat': 1,
          'suit': 1,
          'way': 1,
          'ncatherine': 1,
          'believable': 1,
          'brat': 1,
          'john': 1,
          'fleshes': 1,
          'obsessed': 1,
          'character': 1,
          'enough': 1,
          'vaguely': 1,
          'sympathetic': 1,
          'casting': 1,
          'allows': 1,
          'thing': 1,
          'stay': 1,
          'sidelines': 1,
          'action': 1,
          'cornball': 1,
          'jokes': 1,
          'snarky': 1,
          'remarks': 1,
          'nin': 1,
          'supporting': 1,
          'roles': 1,
          'wears': 1,
          'welcome': 1,
          'fast': 1,
          'gestures': 1,
          'accent': 1,
          'speedy': 1,
          'gonzales': 1,
          'deemed': 1,
          'nseth': 1,
          'green': 1,
          'toadie': 1,
          'stanley': 1,
          'tucci': 1,
          'ruthless': 1,
          'head': 1,
          'plays': 1,
          'eccentric': 1,
          'suitable': 1,
          'flair': 1,
          'though': 1,
          'ncome': 1,
          'think': 1,
          'operative': 1,
          'phrase': 1,
          'hollywood': 1,
          'satire': 1,
          'toothless': 1,
          'romance': 1,
          'minor': 1,
          'pleasure': 1,
          'nsuch': 1,
          'waste': 1,
          'efforts': 1,
          'nhad': 1,
          'taken': 1,
          'long': 1,
          'ago': 1,
          'better': 1,
          'title': 1,
          'ado': 1,
          'nothing': 1,
          'nneg': 1}),
 Counter({'claw': 6,
          'nthe': 5,
          'gadget': 4,
          'dr': 4,
          'cartoon': 3,
          'action': 3,
          'movie': 3,
          'nas': 3,
          'first': 3,
          'nin': 3,
          'everett': 3,
          'one': 3,
          'nhe': 3,
          'nand': 3,
          'disney': 2,
          'turned': 2,
          'live': 2,
          'special': 2,
          'effects': 2,
          'people': 2,
          'would': 2,
          'adult': 2,
          'wave': 2,
          'animated': 2,
          'show': 2,
          'villain': 2,
          'face': 2,
          'simply': 2,
          'watching': 2,
          'cat': 2,
          'many': 2,
          'like': 2,
          'far': 2,
          'role': 2,
          'wisecracking': 2,
          'attempts': 2,
          'lost': 2,
          'doesnt': 2,
          'take': 2,
          'character': 2,
          'nbroderick': 2,
          'human': 2,
          'scene': 2,
          'crime': 2,
          'work': 2,
          'bad': 2,
          'robo': 2,
          'even': 2,
          'additions': 2,
          'zoot': 2,
          'folks': 1,
          'common': 1,
          'decency': 1,
          'nthey': 1,
          'resurrected': 1,
          'yet': 1,
          'another': 1,
          'hodgepodge': 1,
          'expensive': 1,
          'embarrassing': 1,
          'writing': 1,
          'kidfriendly': 1,
          'slapstick': 1,
          'nwasnt': 1,
          'mr': 1,
          'magoo': 1,
          'enough': 1,
          'nobviously': 1,
          'ninspector': 1,
          'call': 1,
          'ideal': 1,
          'family': 1,
          'entertainment': 1,
          'nyounger': 1,
          'viewers': 1,
          'likely': 1,
          'taken': 1,
          'abounding': 1,
          'goofiness': 1,
          'companions': 1,
          'may': 1,
          'feel': 1,
          'nausea': 1,
          'sweeping': 1,
          'attempt': 1,
          'endure': 1,
          'appalling': 1,
          '80minute': 1,
          'exercise': 1,
          'glaring': 1,
          'stupidity': 1,
          'poorly': 1,
          'edited': 1,
          'grossly': 1,
          'manipulative': 1,
          'finished': 1,
          'product': 1,
          'resembles': 1,
          'somewhat': 1,
          'failed': 1,
          'jigsaw': 1,
          'puzzle': 1,
          'nall': 1,
          'elements': 1,
          'manner': 1,
          'director': 1,
          'david': 1,
          'kellogg': 1,
          'pieces': 1,
          'together': 1,
          'laughable': 1,
          'trite': 1,
          'huge': 1,
          'fan': 1,
          '80s': 1,
          'tv': 1,
          'thing': 1,
          'must': 1,
          'express': 1,
          'anger': 1,
          'toward': 1,
          'treatment': 1,
          'main': 1,
          'frightening': 1,
          'raspyvoiced': 1,
          'presence': 1,
          'remained': 1,
          'total': 1,
          'mystery': 1,
          'viewer': 1,
          'nwe': 1,
          'never': 1,
          'saw': 1,
          'sat': 1,
          'back': 1,
          'armchair': 1,
          'surveillance': 1,
          'cameras': 1,
          'gently': 1,
          'stroking': 1,
          'loyal': 1,
          'child': 1,
          'always': 1,
          'imagined': 1,
          'appear': 1,
          'curiosity': 1,
          'kept': 1,
          'years': 1,
          'nwith': 1,
          'release': 1,
          'liveaction': 1,
          'intriguing': 1,
          'unrightfully': 1,
          'exposed': 1,
          'nrupert': 1,
          'nonly': 1,
          'known': 1,
          'word': 1,
          'explains': 1,
          'madonna': 1,
          'sports': 1,
          'shiny': 1,
          'clamp': 1,
          'instead': 1,
          'steel': 1,
          'glove': 1,
          'seems': 1,
          'less': 1,
          'interesting': 1,
          'version': 1,
          'nit': 1,
          'helps': 1,
          'dashing': 1,
          'enthusiastic': 1,
          'overplays': 1,
          'entirely': 1,
          'nwhen': 1,
          'said': 1,
          'done': 1,
          'wasnt': 1,
          'wise': 1,
          'move': 1,
          'part': 1,
          'screenwriters': 1,
          'infamous': 1,
          'game': 1,
          'host': 1,
          'makes': 1,
          'cheap': 1,
          'suave': 1,
          'cool': 1,
          'still': 1,
          'though': 1,
          'title': 1,
          'matthew': 1,
          'broderick': 1,
          'looks': 1,
          'actor': 1,
          'usually': 1,
          'downright': 1,
          'charming': 1,
          'know': 1,
          'exactly': 1,
          'fault': 1,
          'blamed': 1,
          'hapless': 1,
          'writers': 1,
          'plays': 1,
          'friendly': 1,
          'naive': 1,
          'security': 1,
          'guard': 1,
          'named': 1,
          'john': 1,
          'brown': 1,
          'dreams': 1,
          'becoming': 1,
          'cop': 1,
          'upholding': 1,
          'law': 1,
          'good': 1,
          'mad': 1,
          'crush': 1,
          'pretty': 1,
          'scientist': 1,
          'brenda': 1,
          'joely': 1,
          'fisher': 1,
          'stumbled': 1,
          'upon': 1,
          'new': 1,
          'technology': 1,
          'involving': 1,
          'interaction': 1,
          'tissue': 1,
          'electronics': 1,
          'nbut': 1,
          'fateful': 1,
          'night': 1,
          'lab': 1,
          'destroyed': 1,
          'experiment': 1,
          'stolen': 1,
          'fiendish': 1,
          'millionaire': 1,
          'wants': 1,
          'world': 1,
          'njohn': 1,
          'courageously': 1,
          'pursues': 1,
          'limousine': 1,
          'loses': 1,
          'chase': 1,
          'vehicle': 1,
          'bursts': 1,
          'flames': 1,
          'full': 1,
          'body': 1,
          'cast': 1,
          'chosen': 1,
          'prototype': 1,
          'brendas': 1,
          'revolutionary': 1,
          'fighting': 1,
          'tool': 1,
          'numerous': 1,
          'fancy': 1,
          'gadgets': 1,
          'dispatch': 1,
          'guys': 1,
          'born': 1,
          'inspector': 1,
          'certain': 1,
          'charm': 1,
          'isolated': 1,
          'scenes': 1,
          'actually': 1,
          'fares': 1,
          'better': 1,
          'playing': 1,
          'evil': 1,
          'destructive': 1,
          'clone': 1,
          'set': 1,
          'loose': 1,
          'city': 1,
          'two': 1,
          'three': 1,
          'amusing': 1,
          'punch': 1,
          'lines': 1,
          'funniest': 1,
          'impersonates': 1,
          'rampaging': 1,
          'monster': 1,
          'shadow': 1,
          'puppets': 1,
          'brick': 1,
          'wall': 1,
          'japanese': 1,
          'man': 1,
          'flees': 1,
          'screaming': 1,
          'left': 1,
          'tokyo': 1,
          'nalas': 1,
          'hit': 1,
          'ratio': 1,
          'ongoing': 1,
          'gags': 1,
          '20': 1,
          '1': 1,
          'favor': 1,
          'cracking': 1,
          'slight': 1,
          'giggle': 1,
          'nthere': 1,
          'tired': 1,
          'plot': 1,
          'ngadgets': 1,
          'talking': 1,
          'car': 1,
          'voiced': 1,
          'l': 1,
          'nhughley': 1,
          'type': 1,
          'suit': 1,
          'favorite': 1,
          'martian': 1,
          'nboth': 1,
          'nonhuman': 1,
          'designed': 1,
          'coax': 1,
          'laughter': 1,
          'smaller': 1,
          'children': 1,
          'nwell': 1,
          'fact': 1,
          'functioned': 1,
          'marvelously': 1,
          'comparison': 1,
          'dont': 1,
          'get': 1,
          'started': 1,
          'villains': 1,
          'ni': 1,
          'didnt': 1,
          'mind': 1,
          'everetts': 1,
          'performance': 1,
          'bumbling': 1,
          'assistants': 1,
          'make': 1,
          'every': 1,
          'cringe': 1,
          'disgust': 1,
          'characters': 1,
          'reduced': 1,
          'thankless': 1,
          'supporting': 1,
          'roles': 1,
          'npenny': 1,
          'michelle': 1,
          'trachtenberg': 1,
          'brain': 1,
          'dog': 1,
          'little': 1,
          'chief': 1,
          'quimby': 1,
          'dabney': 1,
          'coleman': 1,
          'considerable': 1,
          'appeal': 1,
          'transition': 1,
          'animation': 1,
          'everywhere': 1,
          'annoying': 1,
          'cause': 1,
          'eyes': 1,
          'peel': 1,
          'problem': 1,
          'lies': 1,
          'solely': 1,
          'script': 1,
          'nperhaps': 1,
          'next': 1,
          'time': 1,
          'remake': 1,
          'invest': 1,
          'screenplay': 1,
          'fancyschmancy': 1,
          'visuals': 1,
          'nhere': 1,
          'critic': 1,
          'crossing': 1,
          'fingers': 1,
          'anyway': 1,
          'nneg': 1}),
 Counter({'smith': 9,
          'wild': 6,
          'film': 6,
          'west': 5,
          'nin': 4,
          'scene': 4,
          'thing': 4,
          'summer': 3,
          'ni': 3,
          'nthe': 3,
          'naction': 3,
          'money': 2,
          'disappointment': 2,
          'characters': 2,
          'back': 2,
          'seat': 2,
          'story': 2,
          'still': 2,
          'found': 2,
          'extras': 2,
          'look': 2,
          'like': 2,
          'mechanical': 2,
          'tarantula': 2,
          'gordon': 2,
          'breasts': 2,
          'must': 2,
          'another': 2,
          'act': 2,
          'example': 2,
          'reserved': 2,
          'filled': 2,
          'rather': 2,
          'n': 2,
          'director': 2,
          'nthere': 2,
          'imagination': 2,
          'havent': 1,
          'plunked': 1,
          'hardearned': 1,
          'yet': 1,
          'latest': 1,
          'holiday': 1,
          'offering': 1,
          'let': 1,
          'say': 1,
          'right': 1,
          'better': 1,
          'spent': 1,
          'starbucks': 1,
          'frappacino': 1,
          'ben': 1,
          'jerrys': 1,
          'sundae': 1,
          'nthese': 1,
          'treats': 1,
          'great': 1,
          'relief': 1,
          'heat': 1,
          'contrast': 1,
          'made': 1,
          'simmer': 1,
          'accept': 1,
          'fact': 1,
          'movies': 1,
          'tend': 1,
          'put': 1,
          'weight': 1,
          'special': 1,
          'effects': 1,
          'good': 1,
          'stories': 1,
          'flavorful': 1,
          'usually': 1,
          'take': 1,
          'nthis': 1,
          'true': 1,
          'star': 1,
          'wars': 1,
          'episode': 1,
          'least': 1,
          'nwhat': 1,
          'remains': 1,
          'hundreds': 1,
          'male': 1,
          'costumed': 1,
          'gunslingers': 1,
          'foppish': 1,
          'aristocrats': 1,
          'lots': 1,
          'female': 1,
          'cancan': 1,
          'dancers': 1,
          'clunky': 1,
          '80foot': 1,
          'tall': 1,
          'instrument': 1,
          'destruction': 1,
          'resembles': 1,
          'ntwo': 1,
          'men': 1,
          'asked': 1,
          'stop': 1,
          'threat': 1,
          'none': 1,
          'artemus': 1,
          'kevin': 1,
          'kline': 1,
          'inventor': 1,
          'uses': 1,
          'intellect': 1,
          'array': 1,
          'disguises': 1,
          'best': 1,
          'opponents': 1,
          'namong': 1,
          'creations': 1,
          'false': 1,
          'bulletproof': 1,
          'vest': 1,
          'man': 1,
          'jim': 1,
          'prefers': 1,
          'shootfirstthenshootsomemore': 1,
          'method': 1,
          'investigating': 1,
          'nalthough': 1,
          'individual': 1,
          'talents': 1,
          'combined': 1,
          'achieve': 1,
          'success': 1,
          'interaction': 1,
          'one': 1,
          'merely': 1,
          'seemed': 1,
          'second': 1,
          'rate': 1,
          'twoman': 1,
          'vaudevillian': 1,
          'nfor': 1,
          'debonair': 1,
          'notes': 1,
          'fake': 1,
          'water': 1,
          'buckwheat': 1,
          'currently': 1,
          'touch': 1,
          'breast': 1,
          'says': 1,
          'ngordon': 1,
          'softly': 1,
          'coos': 1,
          'approval': 1,
          'groaning': 1,
          'kind': 1,
          'silliness': 1,
          'script': 1,
          'fails': 1,
          'generate': 1,
          'sense': 1,
          'drama': 1,
          'humor': 1,
          'fun': 1,
          'matter': 1,
          'enjoy': 1,
          'klines': 1,
          'performance': 1,
          'surprised': 1,
          'much': 1,
          'latitude': 1,
          'gave': 1,
          'ncould': 1,
          'bankable': 1,
          'hes': 1,
          'even': 1,
          'required': 1,
          'nit': 1,
          'yelling': 1,
          'nheres': 1,
          'hanged': 1,
          'group': 1,
          'angry': 1,
          'white': 1,
          'people': 1,
          'nhe': 1,
          'endear': 1,
          'crowd': 1,
          'escape': 1,
          'yells': 1,
          'masquerade': 1,
          'belly': 1,
          'dancer': 1,
          'order': 1,
          'save': 1,
          'comrades': 1,
          'nworse': 1,
          'final': 1,
          'battle': 1,
          'aboard': 1,
          'horrid': 1,
          'mess': 1,
          'cogs': 1,
          'spinning': 1,
          'pulleys': 1,
          'pulling': 1,
          'levers': 1,
          'going': 1,
          'everywhere': 1,
          'ntheres': 1,
          'actually': 1,
          'lot': 1,
          'work': 1,
          'genuinely': 1,
          'clever': 1,
          'inventions': 1,
          'gizmos': 1,
          'introduced': 1,
          'wasted': 1,
          'visually': 1,
          'cluttered': 1,
          'dramatically': 1,
          'flat': 1,
          'nand': 1,
          'thats': 1,
          'bad': 1,
          'focus': 1,
          'might': 1,
          'palatable': 1,
          'nas': 1,
          'turns': 1,
          'worst': 1,
          'receives': 1,
          'vote': 1,
          'biggest': 1,
          'year': 1,
          'nneg': 1}),
 Counter({'harry': 8,
          'harrys': 3,
          'palmetto': 3,
          'two': 2,
          'con': 2,
          'woody': 2,
          'harrelson': 2,
          'inept': 2,
          'trips': 2,
          'post': 2,
          'girl': 2,
          'point': 2,
          'nharry': 2,
          'always': 2,
          'carries': 2,
          'around': 2,
          'swears': 2,
          'doesnt': 2,
          'scheme': 2,
          'involving': 2,
          'odette': 2,
          'impersonators': 2,
          'hero': 2,
          'detective': 2,
          'movie': 2,
          'synopsis': 1,
          'artists': 1,
          'find': 1,
          'perfect': 1,
          'patsy': 1,
          'former': 1,
          'journalist': 1,
          'bumps': 1,
          'head': 1,
          'tries': 1,
          'slap': 1,
          'gets': 1,
          'poked': 1,
          'eye': 1,
          'illtimed': 1,
          'fits': 1,
          'coughing': 1,
          'fails': 1,
          'everything': 1,
          'nthe': 1,
          'story': 1,
          'told': 1,
          'view': 1,
          'shot': 1,
          'whiskey': 1,
          'although': 1,
          'drink': 1,
          'none': 1,
          'day': 1,
          'approached': 1,
          'rhea': 1,
          'elisabeth': 1,
          'shue': 1,
          'similar': 1,
          'cigarette': 1,
          'smoke': 1,
          'nseduced': 1,
          'agrees': 1,
          'participate': 1,
          'moneymaking': 1,
          'faking': 1,
          'kidnapping': 1,
          'chloe': 1,
          'sevigny': 1,
          'teenage': 1,
          'daughter': 1,
          'rich': 1,
          'man': 1,
          'nturns': 1,
          'part': 1,
          'needless': 1,
          'puzzling': 1,
          'extremely': 1,
          'elaborate': 1,
          'convoluted': 1,
          'involves': 1,
          'hiring': 1,
          'special': 1,
          'cons': 1,
          'order': 1,
          'fool': 1,
          'barely': 1,
          'intellectual': 1,
          'capacity': 1,
          'wooden': 1,
          'nwhen': 1,
          'kidnapped': 1,
          'found': 1,
          'dead': 1,
          'clues': 1,
          'kidnappermurderer': 1,
          'police': 1,
          'hot': 1,
          'trail': 1,
          'suddenly': 1,
          'realizes': 1,
          'framed': 1,
          'others': 1,
          'taken': 1,
          'ransom': 1,
          'money': 1,
          'ncan': 1,
          'get': 1,
          'mess': 1,
          'nopinion': 1,
          'long': 1,
          'uninteresting': 1,
          'film': 1,
          'wrong': 1,
          'feel': 1,
          'nhero': 1,
          'bungler': 1,
          'often': 1,
          'consistently': 1,
          'overestimates': 1,
          'intelligence': 1,
          'nthis': 1,
          'farcical': 1,
          'kind': 1,
          'character': 1,
          'works': 1,
          'best': 1,
          'entertaining': 1,
          'naked': 1,
          'gun': 1,
          'action': 1,
          'comedy': 1,
          'dragnet': 1,
          'spoof': 1,
          'nbut': 1,
          'played': 1,
          'like': 1,
          'dark': 1,
          'serious': 1,
          'noir': 1,
          'drama': 1,
          'watching': 1,
          'bumbling': 1,
          'confidence': 1,
          'amounts': 1,
          'irritating': 1,
          'distraction': 1,
          'ntheres': 1,
          'lapse': 1,
          'concentration': 1,
          'middle': 1,
          'camera': 1,
          'goes': 1,
          'wild': 1,
          'breasts': 1,
          'buttocks': 1,
          'short': 1,
          'skirts': 1,
          'colored': 1,
          'painted': 1,
          'nails': 1,
          'womens': 1,
          'legs': 1,
          'neven': 1,
          'focus': 1,
          'supposedly': 1,
          'dilema': 1,
          'notice': 1,
          'side': 1,
          'elizabeth': 1,
          'shues': 1,
          'breast': 1,
          'forming': 1,
          'prominent': 1,
          'foreground': 1,
          'ntowards': 1,
          'end': 1,
          'refocuses': 1,
          'plot': 1,
          'grand': 1,
          'finale': 1,
          'confusing': 1,
          'explanation': 1,
          'handcuffed': 1,
          'suspended': 1,
          'tub': 1,
          'acid': 1,
          'hears': 1,
          'criminals': 1,
          'confession': 1,
          'nif': 1,
          'imagine': 1,
          'shemp': 1,
          'three': 1,
          'stooges': 1,
          'playing': 1,
          'hbo': 1,
          'lingerie': 1,
          'suspense': 1,
          'thriller': 1,
          'thats': 1,
          'synch': 1,
          'feels': 1,
          'nneg': 1}),
 Counter({'schwarzenegger': 9,
          'devito': 7,
          'arnold': 5,
          'drug': 5,
          'film': 5,
          'thompson': 4,
          'funny': 4,
          'twins': 4,
          'danny': 3,
          'reitman': 3,
          'nso': 3,
          'would': 3,
          'nschwarzenegger': 3,
          'hesse': 3,
          'wasted': 3,
          'movie': 3,
          'emma': 2,
          'frank': 2,
          'langella': 2,
          'junior': 2,
          'one': 2,
          'ivan': 2,
          'come': 2,
          'close': 2,
          'two': 2,
          'new': 2,
          'pregnancy': 2,
          'test': 2,
          'work': 2,
          'pregnant': 2,
          'comedic': 2,
          'talent': 2,
          'best': 2,
          'ni': 2,
          'time': 2,
          'making': 2,
          'could': 2,
          'didnt': 2,
          'make': 2,
          'pulled': 2,
          'street': 2,
          'well': 2,
          'bad': 2,
          'hard': 2,
          'starring': 1,
          'thing': 1,
          'say': 1,
          'disappointment': 1,
          'big': 1,
          'njunior': 1,
          'brings': 1,
          'together': 1,
          'director': 1,
          'nthese': 1,
          'men': 1,
          'brought': 1,
          'us': 1,
          'foolish': 1,
          'hoping': 1,
          'something': 1,
          'least': 1,
          'level': 1,
          'quality': 1,
          'much': 1,
          'hopes': 1,
          'play': 1,
          'scientists': 1,
          'doctors': 1,
          'arbogast': 1,
          'working': 1,
          'reduce': 1,
          'possibility': 1,
          'miscarriage': 1,
          'nunfortunately': 1,
          'due': 1,
          'circumstances': 1,
          'beyond': 1,
          'control': 1,
          'denied': 1,
          'permission': 1,
          'humans': 1,
          'subsequently': 1,
          'lose': 1,
          'funding': 1,
          'nstill': 1,
          'believing': 1,
          'decide': 1,
          'anyway': 1,
          'dr': 1,
          'artificially': 1,
          'inseminates': 1,
          'begins': 1,
          'taking': 1,
          'ntheir': 1,
          'theory': 1,
          'prevent': 1,
          'man': 1,
          'miscarrying': 1,
          'surely': 1,
          'woman': 1,
          'ndoes': 1,
          'thought': 1,
          'sound': 1,
          'humorous': 1,
          'nwell': 1,
          'must': 1,
          'producers': 1,
          'nadmittedly': 1,
          'pull': 1,
          'nperhaps': 1,
          'done': 1,
          'differently': 1,
          'might': 1,
          'actually': 1,
          'nbut': 1,
          'wasnt': 1,
          'goofy': 1,
          'nthe': 1,
          'sight': 1,
          'running': 1,
          'around': 1,
          'going': 1,
          'hormone': 1,
          'imbalances': 1,
          'accompanying': 1,
          'emotional': 1,
          'swings': 1,
          'comes': 1,
          'embarrassing': 1,
          'antics': 1,
          'kept': 1,
          'thinking': 1,
          'turkey': 1,
          'action': 1,
          'picture': 1,
          'nbetter': 1,
          'yet': 1,
          'place': 1,
          'sequel': 1,
          'nanything': 1,
          'better': 1,
          'mess': 1,
          'ndanny': 1,
          'nhis': 1,
          'part': 1,
          'played': 1,
          'joker': 1,
          'n': 1,
          'seeing': 1,
          'probably': 1,
          'wished': 1,
          'someone': 1,
          'nemma': 1,
          'nwhile': 1,
          'known': 1,
          'jane': 1,
          'austin': 1,
          'adaptations': 1,
          'also': 1,
          'fine': 1,
          'comedian': 1,
          'ntoo': 1,
          'get': 1,
          'use': 1,
          'nam': 1,
          'dont': 1,
          'think': 1,
          'favorite': 1,
          'actors': 1,
          'today': 1,
          'talented': 1,
          'directors': 1,
          'hollywood': 1,
          'nwith': 1,
          'supporting': 1,
          'cast': 1,
          'filmmakers': 1,
          'really': 1,
          'trying': 1,
          'nthey': 1,
          'certainly': 1,
          'managed': 1,
          'nmaybe': 1,
          'intentioned': 1,
          'unfortunately': 1,
          'never': 1,
          'made': 1,
          'nif': 1,
          'tempted': 1,
          'see': 1,
          'favor': 1,
          'go': 1,
          'rent': 1,
          'truly': 1,
          'takes': 1,
          'advantage': 1,
          'devitos': 1,
          'talents': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'melvin': 6,
          'nthe': 5,
          'also': 5,
          'big': 4,
          'paris': 4,
          'cisco': 4,
          'hit': 3,
          'action': 3,
          'comedy': 3,
          'films': 3,
          'like': 3,
          'people': 3,
          'phillips': 3,
          'whole': 3,
          'kong': 3,
          'last': 2,
          'tone': 2,
          'violence': 2,
          'funny': 2,
          'nunfortunately': 2,
          'laughs': 2,
          'goofy': 2,
          'lot': 2,
          'nhowever': 2,
          'wants': 2,
          'career': 2,
          'better': 2,
          'start': 2,
          'plays': 2,
          'guy': 2,
          'happens': 2,
          'character': 2,
          'much': 2,
          'puts': 2,
          'money': 2,
          'thoroughly': 2,
          'named': 2,
          'lou': 2,
          'diamond': 2,
          'crunch': 2,
          'daughter': 2,
          'jiro': 2,
          'nishi': 2,
          'kidnapped': 2,
          'keiko': 2,
          'shes': 2,
          'nnot': 2,
          'completely': 2,
          'nwhat': 2,
          'jokes': 2,
          'problems': 2,
          'video': 2,
          'needs': 2,
          'copy': 2,
          'wong': 2,
          'hong': 2,
          'back': 2,
          'comes': 2,
          'script': 2,
          'dunne': 2,
          'scenes': 1,
          'awful': 1,
          'simply': 1,
          'defy': 1,
          'description': 1,
          'infected': 1,
          'kind': 1,
          'blunderheaded': 1,
          'idiocy': 1,
          'misplaced': 1,
          'confidence': 1,
          'made': 1,
          'hero': 1,
          '1993': 1,
          'chore': 1,
          'sit': 1,
          'npresumably': 1,
          'actioncomedy': 1,
          'difficult': 1,
          'impossible': 1,
          'genre': 1,
          'pull': 1,
          'nmovies': 1,
          'sort': 1,
          'require': 1,
          'fine': 1,
          'balance': 1,
          'careful': 1,
          'usually': 1,
          'meant': 1,
          'work': 1,
          'catharsis': 1,
          'n': 1,
          'lethal': 1,
          'weapon': 1,
          '2': 1,
          '1989': 1,
          'perfect': 1,
          'example': 1,
          'thriller': 1,
          'seems': 1,
          'main': 1,
          'motive': 1,
          'intended': 1,
          'punctuate': 1,
          'resembles': 1,
          'throwaway': 1,
          'ridiculousness': 1,
          'early': 1,
          'jackie': 1,
          'chan': 1,
          'doesnt': 1,
          'benefit': 1,
          'chans': 1,
          'incredible': 1,
          'stunts': 1,
          'charismatic': 1,
          'presence': 1,
          'ninstead': 1,
          'left': 1,
          'digital': 1,
          'effects': 1,
          'mark': 1,
          'wahlberg': 1,
          'must': 1,
          'considered': 1,
          'invincible': 1,
          'criticallyacclaimed': 1,
          'performance': 1,
          'years': 1,
          'boogie': 1,
          'nights': 1,
          'maintain': 1,
          'decent': 1,
          'selecting': 1,
          'projects': 1,
          'carefully': 1,
          'movies': 1,
          'surefire': 1,
          'recipe': 1,
          'long': 1,
          'straighttovideo': 1,
          'market': 1,
          'nwahlberg': 1,
          'smiley': 1,
          'amiable': 1,
          'professional': 1,
          'hitman': 1,
          'see': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'developed': 1,
          'us': 1,
          'think': 1,
          'gee': 1,
          'clever': 1,
          'ironic': 1,
          'kill': 1,
          'without': 1,
          'moral': 1,
          'implications': 1,
          'yet': 1,
          'cant': 1,
          'stand': 1,
          'anyone': 1,
          'fact': 1,
          'desperate': 1,
          'keep': 1,
          'liking': 1,
          'obnoxious': 1,
          'fiancee': 1,
          'christina': 1,
          'applegate': 1,
          'horrendous': 1,
          'new': 1,
          'york': 1,
          'accent': 1,
          'abusive': 1,
          'girlfriend': 1,
          'lela': 1,
          'rochon': 1,
          'using': 1,
          'nhis': 1,
          'constant': 1,
          'bending': 1,
          'backwards': 1,
          'please': 1,
          'makes': 1,
          'complete': 1,
          'patsy': 1,
          'best': 1,
          'unbelievable': 1,
          'worst': 1,
          'nmelvin': 1,
          'employed': 1,
          'exclusively': 1,
          'crime': 1,
          'boss': 1,
          'avery': 1,
          'brooks': 1,
          'part': 1,
          'team': 1,
          'hitmen': 1,
          'includes': 1,
          'bokeem': 1,
          'woodbine': 1,
          'none': 1,
          'day': 1,
          'agrees': 1,
          'moonlighting': 1,
          'kidnapping': 1,
          'teenage': 1,
          'rich': 1,
          'japanese': 1,
          'mogul': 1,
          'sab': 1,
          'shimono': 1,
          'million': 1,
          'dollar': 1,
          'ransom': 1,
          'lost': 1,
          'producing': 1,
          'hollywood': 1,
          'inside': 1,
          'joke': 1,
          'get': 1,
          'china': 1,
          'chow': 1,
          'goddaughter': 1,
          'nso': 1,
          'finds': 1,
          'takes': 1,
          'personally': 1,
          'becomes': 1,
          'determined': 1,
          'find': 1,
          'knowing': 1,
          'actually': 1,
          'behind': 1,
          'scheme': 1,
          'charge': 1,
          'rooting': 1,
          'kidnapper': 1,
          'nof': 1,
          'course': 1,
          'blames': 1,
          'thing': 1,
          'poor': 1,
          'innocent': 1,
          'nalong': 1,
          'way': 1,
          'several': 1,
          'obligatory': 1,
          'gunfights': 1,
          'explosions': 1,
          'car': 1,
          'chases': 1,
          'plus': 1,
          'literal': 1,
          'cliffhanger': 1,
          'inspired': 1,
          'jurassic': 1,
          'park': 1,
          'unconvincing': 1,
          'romance': 1,
          'looks': 1,
          'barely': 1,
          'pushing': 1,
          'fifteen': 1,
          'passes': 1,
          'humor': 1,
          'resorts': 1,
          'unfunny': 1,
          'overweight': 1,
          'jewish': 1,
          'mothers': 1,
          'harakiri': 1,
          'drinking': 1,
          'leaking': 1,
          'body': 1,
          'bags': 1,
          'running': 1,
          'gag': 1,
          'recently': 1,
          'discovered': 1,
          'pleasures': 1,
          'masturbation': 1,
          'spends': 1,
          'time': 1,
          'hand': 1,
          'exercises': 1,
          'mention': 1,
          'pimply': 1,
          'store': 1,
          'clerk': 1,
          'always': 1,
          'calling': 1,
          'screeching': 1,
          'return': 1,
          'king': 1,
          'lives': 1,
          'two': 1,
          'weeks': 1,
          'overdue': 1,
          'nthis': 1,
          'mess': 1,
          'helmed': 1,
          'chekirk': 1,
          'latest': 1,
          'director': 1,
          'imported': 1,
          'john': 1,
          'woo': 1,
          'faceoff': 1,
          'served': 1,
          'executive': 1,
          'producer': 1,
          'nwoo': 1,
          'stop': 1,
          'acting': 1,
          'conduit': 1,
          'directors': 1,
          'making': 1,
          'nwong': 1,
          'directed': 1,
          'rocknroll': 1,
          'cop': 1,
          'deaf': 1,
          'nmaybe': 1,
          'vexatious': 1,
          'clerks': 1,
          'vomiting': 1,
          'across': 1,
          'ocean': 1,
          'theyre': 1,
          'least': 1,
          'manner': 1,
          'handles': 1,
          'nmany': 1,
          'traced': 1,
          'penned': 1,
          'obvious': 1,
          'freshman': 1,
          'writer': 1,
          'ben': 1,
          'ramsey': 1,
          'nin': 1,
          'addition': 1,
          'vague': 1,
          'characterizations': 1,
          'uninspired': 1,
          'sequences': 1,
          'ramseys': 1,
          'assaults': 1,
          'audience': 1,
          'attempts': 1,
          'vulgar': 1,
          'poetic': 1,
          'rhythms': 1,
          'tarantino': 1,
          'mametstyle': 1,
          'dialogue': 1,
          'annoying': 1,
          'blather': 1,
          'spews': 1,
          'lips': 1,
          'whose': 1,
          'favorite': 1,
          'phrase': 1,
          'love': 1,
          'robin': 1,
          'ciscos': 1,
          'stuttering': 1,
          'blackwannabe': 1,
          'assistant': 1,
          'irritation': 1,
          'factor': 1,
          'combined': 1,
          'almost': 1,
          'scale': 1,
          'pretty': 1,
          'describe': 1,
          'film': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'time': 7,
          'year': 5,
          'nin': 4,
          'like': 4,
          'talking': 4,
          'mission': 4,
          'eraser': 4,
          'arnold': 4,
          'gun': 4,
          'n': 4,
          'nits': 3,
          'action': 3,
          'nim': 3,
          'course': 3,
          'movies': 3,
          'impossible': 3,
          'get': 3,
          'goes': 3,
          'new': 3,
          'lee': 3,
          'people': 3,
          'guess': 2,
          'nthe': 2,
          'one': 2,
          'need': 2,
          'even': 2,
          'explosions': 2,
          'also': 2,
          'america': 2,
          'summer': 2,
          'thing': 2,
          'threats': 2,
          'flying': 2,
          'guns': 2,
          'wait': 2,
          'crop': 2,
          'im': 2,
          'else': 2,
          'soon': 2,
          'us': 2,
          'imitation': 2,
          'lot': 2,
          'witnesses': 2,
          'whose': 2,
          'evidence': 2,
          'played': 2,
          'good': 2,
          'robert': 2,
          'system': 2,
          'isnt': 2,
          'everyone': 2,
          'heart': 2,
          'pretty': 2,
          'made': 2,
          'well': 1,
          'craftors': 1,
          'exonerated': 1,
          'try': 1,
          'writing': 1,
          'script': 1,
          'dialogue': 1,
          'best': 1,
          'handful': 1,
          'existing': 1,
          'bigtime': 1,
          'hollywood': 1,
          'mr': 1,
          'heroes': 1,
          'dust': 1,
          'miniscule': 1,
          'vocabularies': 1,
          'pull': 1,
          'black': 1,
          'vests': 1,
          'charge': 1,
          'onto': 1,
          'screens': 1,
          'tersely': 1,
          'expirating': 1,
          'hope': 1,
          'become': 1,
          'memorable': 1,
          'catchphrases': 1,
          'call': 1,
          'happens': 1,
          'every': 1,
          'nand': 1,
          'maybe': 1,
          'exposure': 1,
          'nasty': 1,
          'sun': 1,
          'process': 1,
          'normally': 1,
          'weak': 1,
          'insipid': 1,
          'lines': 1,
          'consider': 1,
          'divorce': 1,
          'hasta': 1,
          'la': 1,
          'vista': 1,
          'baby': 1,
          'youre': 1,
          'disease': 1,
          'cure': 1,
          'actually': 1,
          'end': 1,
          'repeated': 1,
          'often': 1,
          'phrases': 1,
          'book': 1,
          'biblical': 1,
          'proverbs': 1,
          'nthis': 1,
          'entirely': 1,
          'bad': 1,
          'nwhat': 1,
          'blockbusters': 1,
          'thrillers': 1,
          'thisobviouslycostalotsoyouknow': 1,
          'everyonesgoingtogo': 1,
          'gas': 1,
          'saucers': 1,
          'special': 1,
          'effects': 1,
          'rash': 1,
          'big': 1,
          'nmine': 1,
          'bigger': 1,
          'usual': 1,
          'boymeetsfishandsavesenvironment': 1,
          'whale': 1,
          'whatever': 1,
          'odd': 1,
          'savetheworldfromaliensorenvironment': 1,
          'offerings': 1,
          'three': 1,
          'batmans': 1,
          'speeds': 1,
          'terminators': 1,
          'etc': 1,
          'twister': 1,
          'independence': 1,
          'day': 1,
          'arrival': 1,
          'rock': 1,
          'nhere': 1,
          'singapore': 1,
          'local': 1,
          'critics': 1,
          'whine': 1,
          'seem': 1,
          'pick': 1,
          'explosion': 1,
          'reallooking': 1,
          'nothing': 1,
          'nmission': 1,
          'opened': 1,
          'theatres': 1,
          'almost': 1,
          'unfortunate': 1,
          'schwarzenegger': 1,
          'coming': 1,
          'magazine': 1,
          'recently': 1,
          'called': 1,
          'unavoidable': 1,
          'account': 1,
          'worldwide': 1,
          'megaadvertising': 1,
          'blitz': 1,
          'seems': 1,
          'cheaper': 1,
          'less': 1,
          'thoughtful': 1,
          'nthats': 1,
          'saying': 1,
          'mi': 1,
          'already': 1,
          'cheap': 1,
          'thoughtless': 1,
          'tv': 1,
          'originator': 1,
          '60s70s': 1,
          'arnie': 1,
          'federal': 1,
          'marshall': 1,
          'relocates': 1,
          'trial': 1,
          'testimonies': 1,
          'place': 1,
          'lives': 1,
          'danger': 1,
          'nhe': 1,
          'destroying': 1,
          'present': 1,
          'existence': 1,
          'resituating': 1,
          'identities': 1,
          'nhis': 1,
          'case': 1,
          'cullen': 1,
          'vanessa': 1,
          'williams': 1,
          'unlike': 1,
          'scumbags': 1,
          'hes': 1,
          'ever': 1,
          'relocated': 1,
          'actual': 1,
          'real': 1,
          'life': 1,
          'honest': 1,
          'person': 1,
          'nbecause': 1,
          'shes': 1,
          'nice': 1,
          'legs': 1,
          'spends': 1,
          'whole': 1,
          'trying': 1,
          'protect': 1,
          'uses': 1,
          'opening': 1,
          'sequence': 1,
          'save': 1,
          'pastorelli': 1,
          'killers': 1,
          'nlee': 1,
          'obtains': 1,
          'hightechnology': 1,
          'weapons': 1,
          'company': 1,
          'works': 1,
          'secretly': 1,
          'selling': 1,
          'sophisticated': 1,
          'blackmarket': 1,
          'arms': 1,
          'foreign': 1,
          'accents': 1,
          'stringy': 1,
          'hair': 1,
          'nof': 1,
          'formula': 1,
          'revealing': 1,
          'information': 1,
          'destroy': 1,
          'know': 1,
          'heck': 1,
          'high': 1,
          'places': 1,
          'go': 1,
          'yes': 1,
          'biggest': 1,
          'conspiracy': 1,
          'history': 1,
          'world': 1,
          'since': 1,
          'watergate': 1,
          'protecting': 1,
          'framed': 1,
          'mentorturnedevil': 1,
          'deguerin': 1,
          'nicely': 1,
          'james': 1,
          'caan': 1,
          'ends': 1,
          'prove': 1,
          'killing': 1,
          'programmes': 1,
          'addition': 1,
          'making': 1,
          'sure': 1,
          'accidentally': 1,
          'torpedoed': 1,
          'death': 1,
          'green': 1,
          'enemies': 1,
          'around': 1,
          'theatre': 1,
          'starting': 1,
          'humming': 1,
          'theme': 1,
          'arnies': 1,
          'includes': 1,
          'breaking': 1,
          'highsecurity': 1,
          'building': 1,
          'run': 1,
          'disk': 1,
          'ni': 1,
          'tell': 1,
          'particular': 1,
          'antsy': 1,
          'electromagnetic': 1,
          'pulse': 1,
          'fires': 1,
          'aluminium': 1,
          'missiles': 1,
          'see': 1,
          'walls': 1,
          'nit': 1,
          'sort': 1,
          'xray': 1,
          'vision': 1,
          'user': 1,
          'target': 1,
          'victims': 1,
          'great': 1,
          'distances': 1,
          'ndespite': 1,
          'figure': 1,
          'cool': 1,
          'feature': 1,
          'though': 1,
          'certainly': 1,
          'expert': 1,
          'however': 1,
          'targeted': 1,
          'number': 1,
          'times': 1,
          'never': 1,
          '10': 1,
          'feet': 1,
          'backwards': 1,
          'twofoot': 1,
          'missile': 1,
          'chest': 1,
          'others': 1,
          'shot': 1,
          'ninstead': 1,
          'outruns': 1,
          'outsmarts': 1,
          'trackers': 1,
          'giving': 1,
          'eery': 1,
          'ironic': 1,
          'resonance': 1,
          'terminator': 1,
          'line': 1,
          'practically': 1,
          'famous': 1,
          'ill': 1,
          'back': 1,
          'nlike': 1,
          'theater': 1,
          'left': 1,
          'feeling': 1,
          'trailers': 1,
          'duped': 1,
          'want': 1,
          'watch': 1,
          'voluntarily': 1,
          'nalthough': 1,
          'violence': 1,
          'mention': 1,
          'mutilation': 1,
          'bloody': 1,
          'tussles': 1,
          'alligators': 1,
          'recommend': 1,
          'over18s': 1,
          'therapeutic': 1,
          'mindless': 1,
          'weirdness': 1,
          'fargo': 1,
          'hangover': 1,
          'effect': 1,
          'leaving': 1,
          'las': 1,
          'vegas': 1,
          'nreviews': 1,
          'rating': 1,
          'video': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'spy': 3,
          'nielsen': 3,
          'airplane': 2,
          'secret': 2,
          'naked': 2,
          'gun': 2,
          'shots': 2,
          'hard': 2,
          'spoof': 2,
          'nleslie': 2,
          'nthe': 2,
          'gags': 2,
          'etc': 2,
          'weird': 2,
          'rapidfire': 1,
          'formula': 1,
          'worked': 1,
          'well': 1,
          'police': 1,
          'squad': 1,
          'ntelevision': 1,
          'series': 1,
          'top': 1,
          'three': 1,
          'films': 1,
          'two': 1,
          'hot': 1,
          'nmovies': 1,
          'finally': 1,
          'reached': 1,
          'desperate': 1,
          'deadend': 1,
          'neven': 1,
          'ezio': 1,
          'gregios': 1,
          'silence': 1,
          'hams': 1,
          'arguably': 1,
          'funnier': 1,
          'overextended': 1,
          'actionmovie': 1,
          'stars': 1,
          'agent': 1,
          'wd40': 1,
          'returns': 1,
          'retirement': 1,
          'battle': 1,
          'old': 1,
          'nemesis': 1,
          'general': 1,
          'rancor': 1,
          'cackling': 1,
          'andy': 1,
          'griffith': 1,
          'jokes': 1,
          'fly': 1,
          'every': 1,
          'direction': 1,
          'hardly': 1,
          'hint': 1,
          'restraint': 1,
          'timing': 1,
          'tact': 1,
          'nmost': 1,
          'comprised': 1,
          'recycled': 1,
          'recreated': 1,
          'sequences': 1,
          'soggy': 1,
          'star': 1,
          'cameos': 1,
          'nyeah': 1,
          'maybe': 1,
          'need': 1,
          'ray': 1,
          'charles': 1,
          'driving': 1,
          'l': 1,
          'bus': 1,
          'bound': 1,
          'speed': 1,
          'bump': 1,
          'mr': 1,
          'hulk': 1,
          'hogan': 1,
          'dr': 1,
          'joyce': 1,
          'brothers': 1,
          'also': 1,
          'appear': 1,
          'plays': 1,
          'straight': 1,
          'usual': 1,
          'dopey': 1,
          'flair': 1,
          'nthere': 1,
          'something': 1,
          'oddly': 1,
          'inspiring': 1,
          'sight': 1,
          'wearing': 1,
          'nuns': 1,
          'habit': 1,
          'even': 1,
          'resulting': 1,
          'sister': 1,
          'act': 1,
          'silly': 1,
          'nas': 1,
          'bits': 1,
          'directly': 1,
          'lifted': 1,
          'home': 1,
          'alone': 1,
          'pulp': 1,
          'fiction': 1,
          'true': 1,
          'lies': 1,
          'adolescent': 1,
          'males': 1,
          'might': 1,
          'enjoy': 1,
          'mess': 1,
          'tho': 1,
          'butt': 1,
          'breast': 1,
          'peeks': 1,
          'penis': 1,
          'pokes': 1,
          'flatulence': 1,
          'related': 1,
          'innuendo': 1,
          'right': 1,
          'beavis': 1,
          'buttheads': 1,
          'alley': 1,
          'nbeyond': 1,
          'hilarious': 1,
          'title': 1,
          'sequence': 1,
          'al': 1,
          'yankovich': 1,
          'performing': 1,
          'theme': 1,
          'song': 1,
          'barely': 1,
          'stock': 1,
          'printed': 1,
          'nmy': 1,
          'recommendation': 1,
          'duck': 1,
          'youre': 1,
          'waiting': 1,
          'another': 1,
          'start': 1,
          'nstay': 1,
          'long': 1,
          'enough': 1,
          'see': 1,
          'camera': 1,
          'dart': 1,
          'inside': 1,
          'als': 1,
          'nostril': 1,
          'leave': 1,
          'nyou': 1,
          'wont': 1,
          'miss': 1,
          'thing': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'leo': 6,
          'tim': 5,
          'apes': 5,
          'burton': 4,
          'planet': 4,
          'like': 4,
          'monkey': 3,
          'ni': 3,
          'could': 3,
          'original': 3,
          'chuck': 3,
          'nleo': 3,
          'another': 3,
          'named': 3,
          'human': 3,
          'neven': 3,
          'director': 2,
          'studio': 2,
          'name': 2,
          'force': 2,
          'heston': 2,
          'one': 2,
          'career': 2,
          'watch': 2,
          'big': 2,
          'nthis': 2,
          'plays': 2,
          'braveheart': 2,
          'crew': 2,
          'search': 2,
          'storms': 2,
          'ship': 2,
          'find': 2,
          'wormhole': 2,
          'ari': 2,
          'nthe': 2,
          'action': 2,
          'directed': 2,
          'completed': 1,
          'evolution': 1,
          'brilliant': 1,
          'macabre': 1,
          'stories': 1,
          'outcast': 1,
          'individuals': 1,
          'yearning': 1,
          'acceptance': 1,
          'whose': 1,
          'used': 1,
          'part': 1,
          'multitiered': 1,
          'marketing': 1,
          'materials': 1,
          'crap': 1,
          'movies': 1,
          'nand': 1,
          'hits': 1,
          'rock': 1,
          'bottom': 1,
          'didnt': 1,
          'expect': 1,
          'much': 1,
          'latest': 1,
          'interpretation': 1,
          'pierre': 1,
          'boulles': 1,
          'classic': 1,
          'novel': 1,
          'mean': 1,
          'top': 1,
          'impact': 1,
          'intelligently': 1,
          'coscripted': 1,
          'rod': 1,
          'serling': 1,
          'twilight': 1,
          'zone': 1,
          'fame': 1,
          'combined': 1,
          'overbearing': 1,
          'growling': 1,
          'yelling': 1,
          'damn': 1,
          'dirty': 1,
          'best': 1,
          'roles': 1,
          'nsadly': 1,
          'sat': 1,
          'burtons': 1,
          'version': 1,
          'within': 1,
          'first': 1,
          '20': 1,
          'minutes': 1,
          'checking': 1,
          'girlfriend': 1,
          'fan': 1,
          'started': 1,
          'nod': 1,
          'time': 1,
          'around': 1,
          'story': 1,
          'cross': 1,
          'enemy': 1,
          'mine': 1,
          'project': 1,
          'x': 1,
          'marky': 1,
          'mark': 1,
          'wahlberg': 1,
          'enjoyable': 1,
          'boogie': 1,
          'nights': 1,
          'corrupter': 1,
          'davidson': 1,
          'hot': 1,
          'shot': 1,
          'u': 1,
          'air': 1,
          'pilot': 1,
          'mysterious': 1,
          'magnetic': 1,
          'real': 1,
          'explanation': 1,
          'given': 1,
          'sends': 1,
          'genetically': 1,
          'altered': 1,
          'smart': 1,
          'chimps': 1,
          'collect': 1,
          'data': 1,
          'lose': 1,
          'communication': 1,
          'chimp': 1,
          'hops': 1,
          'hes': 1,
          'thrown': 1,
          'type': 1,
          'timespace': 1,
          'crashes': 1,
          'lands': 1,
          'twentieth': 1,
          'century': 1,
          'fox': 1,
          'backlot': 1,
          'mocked': 1,
          'look': 1,
          'amazon': 1,
          'jungle': 1,
          'ends': 1,
          'getting': 1,
          'captured': 1,
          'group': 1,
          'talking': 1,
          'sold': 1,
          'slave': 1,
          'trader': 1,
          'limbo': 1,
          'paul': 1,
          'giamatti': 1,
          'turn': 1,
          'sells': 1,
          'chimpanzee': 1,
          'helena': 1,
          'bonham': 1,
          'carter': 1,
          'kind': 1,
          'helps': 1,
          'fellow': 1,
          'humans': 1,
          'escape': 1,
          'mountains': 1,
          'leos': 1,
          'nalong': 1,
          'way': 1,
          'monkeys': 1,
          'played': 1,
          'roth': 1,
          'overacting': 1,
          'role': 1,
          'vicious': 1,
          'general': 1,
          'thade': 1,
          'michael': 1,
          'clarke': 1,
          'duncan': 1,
          'enhances': 1,
          'playing': 1,
          'heavy': 1,
          'bad': 1,
          'movie': 1,
          'strive': 1,
          'hunt': 1,
          'band': 1,
          'savages': 1,
          'battlefield': 1,
          'earth': 1,
          'nin': 1,
          'end': 1,
          'culminates': 1,
          'ripoff': 1,
          'versus': 1,
          'ape': 1,
          'battle': 1,
          'scene': 1,
          'nwhile': 1,
          'rick': 1,
          'bakers': 1,
          'makeup': 1,
          'work': 1,
          'amazing': 1,
          'script': 1,
          'pathetic': 1,
          'hodgepodge': 1,
          'courtesy': 1,
          'three': 1,
          'writers': 1,
          'acting': 1,
          'horrible': 1,
          'surprise': 1,
          'ending': 1,
          'feels': 1,
          'swing': 1,
          'ballpeen': 1,
          'hammer': 1,
          'temple': 1,
          'nwahlberg': 1,
          'physical': 1,
          'mental': 1,
          'presence': 1,
          'carry': 1,
          'sequences': 1,
          'remake': 1,
          'reinterpretation': 1,
          'proclaimed': 1,
          'insult': 1,
          'intelligence': 1,
          'wit': 1,
          'ethical': 1,
          'arguments': 1,
          'equality': 1,
          'species': 1,
          'fascism': 1,
          'military': 1,
          'buildup': 1,
          'replaced': 1,
          'tremendous': 1,
          'amounts': 1,
          'ridiculous': 1,
          'dialogue': 1,
          'unimaginative': 1,
          'narrative': 1,
          'structure': 1,
          'romance': 1,
          'hestons': 1,
          'antigun': 1,
          'tirade': 1,
          'de': 1,
          'rigeur': 1,
          'cameo': 1,
          'seems': 1,
          'shallow': 1,
          'jokey': 1,
          'nbut': 1,
          'main': 1,
          'element': 1,
          'missing': 1,
          'though': 1,
          'plastered': 1,
          'across': 1,
          'every': 1,
          'billboard': 1,
          'america': 1,
          'john': 1,
          'badham': 1,
          'joel': 1,
          'schumacher': 1,
          'nhe': 1,
          'probably': 1,
          'nburtons': 1,
          'predominant': 1,
          'themes': 1,
          'rejection': 1,
          'isolation': 1,
          'ones': 1,
          'place': 1,
          'universe': 1,
          'seen': 1,
          'ed': 1,
          'wood': 1,
          'edward': 1,
          'scissorshands': 1,
          'peewees': 1,
          'adventure': 1,
          'completely': 1,
          'absent': 1,
          'suppose': 1,
          'thats': 1,
          'happen': 1,
          'great': 1,
          'gets': 1,
          'sucked': 1,
          'nneg': 1}),
 Counter({'school': 5,
          'teacher': 4,
          'really': 4,
          'n': 4,
          'movie': 3,
          'pretty': 3,
          'shale': 3,
          'friend': 3,
          'high': 3,
          'gets': 3,
          'wait': 3,
          'premise': 2,
          'farfetched': 2,
          'buddies': 2,
          'job': 2,
          'girl': 2,
          'miami': 2,
          'might': 2,
          'nthe': 2,
          'drug': 2,
          'dealers': 2,
          'gang': 2,
          'one': 2,
          'story': 2,
          'homeboys': 2,
          'noh': 2,
          'nbut': 2,
          'nand': 2,
          'kod': 2,
          'good': 2,
          'together': 2,
          'stuff': 2,
          'nif': 2,
          'action': 2,
          'truly': 2,
          'huge': 2,
          'without': 2,
          'well': 1,
          'ntom': 1,
          'berenger': 1,
          'plays': 1,
          'mercenary': 1,
          'temporarily': 1,
          'work': 1,
          'fools': 1,
          'cia': 1,
          'denied': 1,
          'existence': 1,
          'botched': 1,
          'cuba': 1,
          'nfortunately': 1,
          'diane': 1,
          'venora': 1,
          'christopher': 1,
          'columbus': 1,
          'knee': 1,
          'cap': 1,
          'broken': 1,
          'disgruntled': 1,
          'student': 1,
          'creating': 1,
          'opening': 1,
          'substitute': 1,
          'nnot': 1,
          'telling': 1,
          'object': 1,
          'pedagogical': 1,
          'grounds': 1,
          'creates': 1,
          'number': 1,
          'fake': 1,
          'higher': 1,
          'degrees': 1,
          'yale': 1,
          'harvard': 1,
          'princeton': 1,
          'et': 1,
          'al': 1,
          'begins': 1,
          'tenure': 1,
          'students': 1,
          'junkies': 1,
          'members': 1,
          'sleazy': 1,
          'sluts': 1,
          'icepick': 1,
          'wielders': 1,
          'nget': 1,
          'picture': 1,
          'dont': 1,
          'take': 1,
          'right': 1,
          'away': 1,
          'hits': 1,
          'face': 1,
          'breaks': 1,
          'fingers': 1,
          'nthis': 1,
          'attention': 1,
          'certain': 1,
          'extent': 1,
          'tells': 1,
          'vietnam': 1,
          'war': 1,
          'see': 1,
          'north': 1,
          'tried': 1,
          'muscle': 1,
          'turf': 1,
          'south': 1,
          'yeah': 1,
          'dig': 1,
          'problem': 1,
          'nobody': 1,
          'ever': 1,
          'explained': 1,
          'properly': 1,
          'nthere': 1,
          'drugs': 1,
          'dealt': 1,
          'behind': 1,
          'whole': 1,
          'scheme': 1,
          'cahoots': 1,
          'head': 1,
          'cod': 1,
          'knights': 1,
          'destruction': 1,
          'none': 1,
          'nupright': 1,
          'excop': 1,
          'principal': 1,
          'played': 1,
          'forgotten': 1,
          'ghostbuster': 1,
          'ernie': 1,
          'hudson': 1,
          'nso': 1,
          'would': 1,
          'nhe': 1,
          'gather': 1,
          'bunch': 1,
          'bazookas': 1,
          'major': 1,
          'weapons': 1,
          'explosives': 1,
          'cool': 1,
          'like': 1,
          'big': 1,
          'showdown': 1,
          'nok': 1,
          'downright': 1,
          'dumb': 1,
          'hong': 1,
          'kong': 1,
          'comedy': 1,
          'accept': 1,
          'takes': 1,
          'far': 1,
          'seriously': 1,
          'fun': 1,
          'moments': 1,
          'hate': 1,
          'amounts': 1,
          'cocaine': 1,
          'delivered': 1,
          'busses': 1,
          'fair': 1,
          'almost': 1,
          'never': 1,
          'boring': 1,
          'interrupted': 1,
          'short': 1,
          'sequences': 1,
          'actual': 1,
          'much': 1,
          'madefortv': 1,
          'bigger': 1,
          'explosions': 1,
          'foul': 1,
          'language': 1,
          'nin': 1,
          'fact': 1,
          'reminded': 1,
          'vice': 1,
          'production': 1,
          'values': 1,
          'babes': 1,
          'skimpy': 1,
          'bikinis': 1,
          'pastels': 1,
          'sneak': 1,
          'theater': 1,
          'paying': 1,
          'go': 1,
          'notherwise': 1,
          'video': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'tv2': 1,
          'broadcast': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'bring': 1,
          'amazing': 1,
          'potent': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'franklin': 10,
          'money': 7,
          'talks': 7,
          'james': 6,
          'one': 5,
          'good': 4,
          'movie': 4,
          'nbut': 4,
          'tucker': 3,
          'get': 3,
          'role': 3,
          'nthe': 3,
          'nand': 3,
          'guys': 2,
          'funny': 2,
          'turn': 2,
          'least': 2,
          'new': 2,
          'people': 2,
          'see': 2,
          'could': 2,
          'make': 2,
          'also': 2,
          'thing': 2,
          'two': 2,
          'story': 2,
          'ntuckers': 2,
          'los': 2,
          'angeles': 2,
          'finds': 2,
          'bus': 2,
          'picture': 2,
          'nthis': 2,
          'grace': 2,
          'parents': 2,
          'tuckers': 2,
          'conviction': 2,
          'scene': 2,
          'chris': 1,
          'immediately': 1,
          'reaction': 1,
          'either': 1,
          'find': 1,
          'helium': 1,
          'voice': 1,
          'crazy': 1,
          'eyes': 1,
          'jerky': 1,
          'mannerisms': 1,
          'annoying': 1,
          'ni': 1,
          'think': 1,
          'fall': 1,
          'former': 1,
          'category': 1,
          'im': 1,
          'thought': 1,
          'fifth': 1,
          'element': 1,
          'prancing': 1,
          'princelike': 1,
          'deejay': 1,
          'complete': 1,
          'inspired': 1,
          'lunacy': 1,
          'bit': 1,
          'aggravating': 1,
          'vehicle': 1,
          'doesnt': 1,
          'service': 1,
          'ntucker': 1,
          'kind': 1,
          'film': 1,
          'big': 1,
          'star': 1,
          'hes': 1,
          'really': 1,
          'nin': 1,
          'fact': 1,
          'shock': 1,
          'beyond': 1,
          'recognition': 1,
          'toy': 1,
          'writers': 1,
          'penned': 1,
          'sloppy': 1,
          'script': 1,
          'hatchett': 1,
          'petty': 1,
          'con': 1,
          'artist': 1,
          'whose': 1,
          'carwash': 1,
          'scams': 1,
          'dogged': 1,
          'investigative': 1,
          'reporter': 1,
          'russell': 1,
          'charlie': 1,
          'sheen': 1,
          'nafter': 1,
          'busted': 1,
          'job': 1,
          'illegal': 1,
          'business': 1,
          'involving': 1,
          'counterfeit': 1,
          'passports': 1,
          'county': 1,
          'jail': 1,
          'handcuffed': 1,
          'slick': 1,
          'international': 1,
          'jewel': 1,
          'smuggler': 1,
          'raymond': 1,
          'villard': 1,
          'gerard': 1,
          'ismael': 1,
          'villards': 1,
          'thugs': 1,
          'blow': 1,
          'attempt': 1,
          'free': 1,
          'leader': 1,
          'never': 1,
          'mind': 1,
          'explosion': 1,
          'instead': 1,
          'killed': 1,
          'joined': 1,
          'wrist': 1,
          'allowed': 1,
          'escape': 1,
          'well': 1,
          'overhearing': 1,
          'important': 1,
          'information': 1,
          'regarding': 1,
          'diamond': 1,
          'stash': 1,
          'reason': 1,
          'another': 1,
          'hidden': 1,
          'vintage': 1,
          'roadster': 1,
          'waiting': 1,
          'auctioned': 1,
          'upcoming': 1,
          'auto': 1,
          'expo': 1,
          'local': 1,
          'media': 1,
          'mistakenly': 1,
          'puts': 1,
          'prison': 1,
          'breakout': 1,
          'blame': 1,
          'comes': 1,
          'back': 1,
          'nhe': 1,
          'makes': 1,
          'deal': 1,
          'protect': 1,
          'gives': 1,
          'exclusive': 1,
          'interview': 1,
          'means': 1,
          'must': 1,
          'present': 1,
          'friend': 1,
          'stickiest': 1,
          'situations': 1,
          'formal': 1,
          'dinner': 1,
          'party': 1,
          'fiancee': 1,
          'heather': 1,
          'locklear': 1,
          'attended': 1,
          'uberrich': 1,
          'veronica': 1,
          'cartwright': 1,
          'nicely': 1,
          'game': 1,
          'paul': 1,
          'sorvino': 1,
          'course': 1,
          'bad': 1,
          'track': 1,
          'try': 1,
          'knock': 1,
          'spars': 1,
          'forms': 1,
          'unlikely': 1,
          'bond': 1,
          'n': 1,
          'aint': 1,
          'buddy': 1,
          'claim': 1,
          'print': 1,
          'ads': 1,
          'nyeah': 1,
          'right': 1,
          'nactually': 1,
          'better': 1,
          'part': 1,
          'oh': 1,
          '20': 1,
          'minutes': 1,
          'appears': 1,
          'momentum': 1,
          'cover': 1,
          'entertaining': 1,
          'ground': 1,
          'mostly': 1,
          'due': 1,
          'presence': 1,
          'spastic': 1,
          'motormouth': 1,
          'first': 1,
          'leading': 1,
          'imagine': 1,
          'slightly': 1,
          'lankier': 1,
          'africanamerican': 1,
          'jim': 1,
          'carrey': 1,
          'reliance': 1,
          'wild': 1,
          'rrated': 1,
          'raunch': 1,
          'rather': 1,
          'pg13': 1,
          'physical': 1,
          'comedy': 1,
          'idea': 1,
          'assaults': 1,
          'realize': 1,
          'quickly': 1,
          'overstated': 1,
          'liveliness': 1,
          'going': 1,
          'lively': 1,
          'actor': 1,
          'alone': 1,
          'successful': 1,
          'nits': 1,
          'easy': 1,
          'pick': 1,
          'everything': 1,
          'wrong': 1,
          'plot': 1,
          'recycled': 1,
          'buddybuddy': 1,
          'comedythriller': 1,
          'tripe': 1,
          'seemed': 1,
          'overused': 1,
          'even': 1,
          'nothing': 1,
          'lose': 1,
          'employed': 1,
          'last': 1,
          'month': 1,
          'neverything': 1,
          'paintbynumbers': 1,
          'especially': 1,
          'coliseum': 1,
          'finale': 1,
          'three': 1,
          'separate': 1,
          'enemy': 1,
          'factions': 1,
          'firing': 1,
          'pursue': 1,
          'bleachers': 1,
          'villains': 1,
          'many': 1,
          'dull': 1,
          'ncertain': 1,
          'elements': 1,
          'coincidental': 1,
          'much': 1,
          'films': 1,
          'dramatic': 1,
          'agenda': 1,
          'played': 1,
          'straight': 1,
          'na': 1,
          'confronts': 1,
          'learning': 1,
          'franklins': 1,
          'true': 1,
          'identity': 1,
          'brought': 1,
          'killer': 1,
          'house': 1,
          'nis': 1,
          'extremely': 1,
          'silly': 1,
          'nyou': 1,
          'nobviously': 1,
          'pleasant': 1,
          'experience': 1,
          'around': 1,
          'appeared': 1,
          'riproaring': 1,
          'time': 1,
          'gentleman': 1,
          'several': 1,
          'rows': 1,
          'behind': 1,
          'chortled': 1,
          'expressive': 1,
          'began': 1,
          'fearing': 1,
          'health': 1,
          'pretty': 1,
          'guy': 1,
          'aces': 1,
          'movies': 1,
          'best': 1,
          'passes': 1,
          'vic': 1,
          'damones': 1,
          'son': 1,
          'graces': 1,
          'engagement': 1,
          'bash': 1,
          'toasts': 1,
          'couple': 1,
          'barry': 1,
          'white': 1,
          'lyrics': 1,
          'audience': 1,
          'probably': 1,
          'like': 1,
          'nthose': 1,
          'irritates': 1,
          'however': 1,
          'productive': 1,
          'day': 1,
          'staying': 1,
          'home': 1,
          'scraping': 1,
          'gook': 1,
          'toenails': 1,
          'nneg': 1}),
 Counter({'film': 16,
          'action': 6,
          'scenes': 4,
          'nthe': 3,
          'character': 3,
          'something': 3,
          'potential': 3,
          'one': 3,
          'plot': 3,
          'director': 2,
          'paul': 2,
          'anderson': 2,
          'fleeting': 2,
          'growing': 2,
          'military': 2,
          'eyes': 2,
          'little': 2,
          'goes': 2,
          'idea': 2,
          'rather': 2,
          'movie': 2,
          'humanity': 2,
          'done': 2,
          'much': 2,
          'bad': 2,
          'aspect': 2,
          'interesting': 2,
          'performance': 2,
          'enough': 2,
          'nbut': 2,
          'disappointment': 2,
          'truly': 2,
          'engaging': 2,
          'nhowever': 2,
          'combat': 2,
          'big': 2,
          'end': 2,
          'type': 2,
          'soldier': 1,
          'presence': 1,
          'originality': 1,
          'best': 1,
          'moments': 1,
          'opning': 1,
          'kurt': 1,
          'russels': 1,
          'todd': 1,
          'shown': 1,
          'strict': 1,
          'supervision': 1,
          'nbrutality': 1,
          'innocent': 1,
          'stripped': 1,
          'every': 1,
          'single': 1,
          'day': 1,
          'lot': 1,
          'emotional': 1,
          'power': 1,
          'behind': 1,
          'opening': 1,
          'tap': 1,
          'nthen': 1,
          'nowhere': 1,
          'nthere': 1,
          'perhaps': 1,
          'scene': 1,
          'afterwards': 1,
          'deals': 1,
          'trauma': 1,
          'dehumanization': 1,
          'rest': 1,
          'biggest': 1,
          'cliches': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'whole': 1,
          'inhuman': 1,
          'soldiertype': 1,
          'gaining': 1,
          'degree': 1,
          'defending': 1,
          'female': 1,
          'love': 1,
          'interest': 1,
          'family': 1,
          'evil': 1,
          'counterpart': 1,
          'kill': 1,
          'better': 1,
          'ni': 1,
          'able': 1,
          'predict': 1,
          '_whole_': 1,
          'story': 1,
          'wouldnt': 1,
          'somewhat': 1,
          'nbetween': 1,
          'sequences': 1,
          'tries': 1,
          'deal': 1,
          'aforementioned': 1,
          'issues': 1,
          'mr': 1,
          'russel': 1,
          'tiny': 1,
          'window': 1,
          'soul': 1,
          'since': 1,
          'dialog': 1,
          'extremely': 1,
          'limited': 1,
          'nhis': 1,
          'way': 1,
          'isnt': 1,
          'certainly': 1,
          'carry': 1,
          'nother': 1,
          'performances': 1,
          'really': 1,
          'worth': 1,
          'mention': 1,
          'generally': 1,
          'weak': 1,
          'characters': 1,
          'stuff': 1,
          'right': 1,
          'nisnt': 1,
          'important': 1,
          'part': 1,
          'well': 1,
          'neven': 1,
          'nin': 1,
          'mortal': 1,
          'kombat': 1,
          '1995': 1,
          'proved': 1,
          'use': 1,
          'choreography': 1,
          'override': 1,
          'problems': 1,
          'produce': 1,
          'entertaining': 1,
          'fails': 1,
          'repeat': 1,
          'particularly': 1,
          'incredibly': 1,
          'unimaginatve': 1,
          'nfighting': 1,
          'supposed': 1,
          'bring': 1,
          'thrills': 1,
          'point': 1,
          'even': 1,
          'otherwise': 1,
          'unimpressive': 1,
          'like': 1,
          'starship': 1,
          'troopers': 1,
          'seemed': 1,
          'realize': 1,
          'instead': 1,
          'reaching': 1,
          'old': 1,
          'shootem': 1,
          'guy': 1,
          'vs': 1,
          'army': 1,
          'cinema': 1,
          'thought': 1,
          'died': 1,
          'films': 1,
          '80s': 1,
          'nif': 1,
          'went': 1,
          'ideas': 1,
          'opened': 1,
          'introduction': 1,
          'seriously': 1,
          'could': 1,
          'science': 1,
          'fiction': 1,
          'utterly': 1,
          'failed': 1,
          'go': 1,
          'new': 1,
          'directions': 1,
          'making': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'condor': 6,
          'chan': 6,
          'jackie': 4,
          'gold': 4,
          'key': 4,
          'way': 4,
          'scene': 3,
          'mission': 3,
          'hidden': 3,
          'chase': 3,
          'supposed': 3,
          'scenes': 3,
          'fight': 3,
          'chans': 3,
          'even': 3,
          'first': 2,
          'operation': 2,
          'secret': 2,
          'start': 2,
          'nas': 2,
          'well': 2,
          'nin': 2,
          'movies': 2,
          'hong': 2,
          'kong': 2,
          'desert': 2,
          'reason': 2,
          'given': 2,
          'spain': 2,
          'ni': 2,
          'may': 2,
          'fruit': 2,
          'cart': 2,
          'set': 2,
          'nthe': 2,
          'take': 2,
          'almost': 2,
          'integrated': 2,
          'help': 2,
          'cheng': 2,
          'granddaughter': 2,
          'captain': 2,
          'parts': 2,
          'get': 2,
          'martial': 2,
          'arts': 2,
          'since': 2,
          'action': 2,
          'best': 2,
          'films': 2,
          'dont': 2,
          'expect': 2,
          'plot': 2,
          'moves': 2,
          'guy': 2,
          'humor': 2,
          'film': 2,
          'preparing': 1,
          'nhe': 1,
          'attempts': 1,
          'pop': 1,
          'couple': 1,
          'pieces': 1,
          'chewing': 1,
          'gum': 1,
          'mouth': 1,
          'misses': 1,
          'nafter': 1,
          'ricochet': 1,
          'face': 1,
          'says': 1,
          'good': 1,
          'turns': 1,
          'line': 1,
          'gives': 1,
          'foreshadowing': 1,
          'opening': 1,
          'sequence': 1,
          'rest': 1,
          'latest': 1,
          'released': 1,
          'america': 1,
          'runs': 1,
          'plays': 1,
          'international': 1,
          'operative': 1,
          'codenamed': 1,
          'tasked': 1,
          'united': 1,
          'nations': 1,
          'finding': 1,
          'stash': 1,
          'base': 1,
          'nazis': 1,
          'retreat': 1,
          'across': 1,
          'saharan': 1,
          'second': 1,
          'world': 1,
          'war': 1,
          'nfor': 1,
          'u': 1,
          'embassy': 1,
          'think': 1,
          'done': 1,
          'could': 1,
          'honor': 1,
          'time': 1,
          'old': 1,
          'tradition': 1,
          'knocking': 1,
          'nwatch': 1,
          'foreign': 1,
          'country': 1,
          'notably': 1,
          'europe': 1,
          'marketplace': 1,
          'overturned': 1,
          'nits': 1,
          'guarantee': 1,
          'nanyway': 1,
          'ncondor': 1,
          'unlock': 1,
          'giant': 1,
          'vault': 1,
          'problem': 1,
          'insulators': 1,
          'mean': 1,
          'booby': 1,
          'trap': 1,
          'might': 1,
          'electronically': 1,
          'triggered': 1,
          'used': 1,
          'improperly': 1,
          'nto': 1,
          'figure': 1,
          'use': 1,
          'correctly': 1,
          'accompanied': 1,
          'expert': 1,
          'carol': 1,
          'charge': 1,
          'hiding': 1,
          'eva': 1,
          'cobo': 1,
          'nthere': 1,
          'arent': 1,
          'relatives': 1,
          'nazi': 1,
          'living': 1,
          'finds': 1,
          'looking': 1,
          'phone': 1,
          'book': 1,
          'something': 1,
          'nalthough': 1,
          'two': 1,
          'women': 1,
          'integral': 1,
          'prove': 1,
          'except': 1,
          'trouble': 1,
          'provide': 1,
          'excuse': 1,
          'jump': 1,
          'fact': 1,
          'ridiculously': 1,
          'contrived': 1,
          'seems': 1,
          'everything': 1,
          'suppose': 1,
          'isnt': 1,
          'bad': 1,
          'really': 1,
          'part': 1,
          'go': 1,
          'see': 1,
          'one': 1,
          'anyway': 1,
          'nif': 1,
          'youve': 1,
          'never': 1,
          'seen': 1,
          'great': 1,
          'entertained': 1,
          'nthey': 1,
          'choreographed': 1,
          'often': 1,
          'amazing': 1,
          'wonder': 1,
          'human': 1,
          'nknowing': 1,
          'stunts': 1,
          'knowing': 1,
          'real': 1,
          'stuff': 1,
          'computermasked': 1,
          'bungee': 1,
          'cords': 1,
          'makes': 1,
          'sequences': 1,
          'exciting': 1,
          'nyouve': 1,
          'got': 1,
          'hand': 1,
          'whos': 1,
          'probably': 1,
          'broken': 1,
          'every': 1,
          'bone': 1,
          'body': 1,
          'sake': 1,
          'art': 1,
          'nalso': 1,
          'note': 1,
          'far': 1,
          'know': 1,
          'none': 1,
          'seriously': 1,
          'dramatic': 1,
          'certain': 1,
          'tongueincheek': 1,
          'quality': 1,
          'nwhat': 1,
          'masterful': 1,
          'nunlike': 1,
          'anything': 1,
          'jean': 1,
          'claude': 1,
          'van': 1,
          'damme': 1,
          'fights': 1,
          'visceral': 1,
          'level': 1,
          'simply': 1,
          'entertaining': 1,
          'nyou': 1,
          'marvel': 1,
          'employs': 1,
          'make': 1,
          'laugh': 1,
          'nunfortunately': 1,
          'mastery': 1,
          'cant': 1,
          'save': 1,
          'characters': 1,
          'weak': 1,
          'hold': 1,
          'together': 1,
          'acting': 1,
          'terrible': 1,
          'ncarol': 1,
          'apparently': 1,
          'actress': 1,
          'honors': 1,
          'awards': 1,
          'past': 1,
          'dubbed': 1,
          'kind': 1,
          'takes': 1,
          'bets': 1,
          'nthis': 1,
          'combined': 1,
          'obviously': 1,
          'low': 1,
          'production': 1,
          'value': 1,
          'made': 1,
          'want': 1,
          'turn': 1,
          'away': 1,
          'screen': 1,
          'heard': 1,
          'kicks': 1,
          'flying': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'action': 5,
          'nbut': 4,
          'way': 3,
          'time': 3,
          'boss': 3,
          'try': 3,
          'better': 3,
          'etc': 3,
          'script': 3,
          'like': 3,
          'success': 2,
          'harrelson': 2,
          'anything': 2,
          'got': 2,
          'chance': 2,
          'even': 2,
          'nthis': 2,
          'duo': 2,
          'transit': 2,
          'blake': 2,
          'money': 2,
          'train': 2,
          'theres': 2,
          'original': 2,
          'find': 2,
          'running': 2,
          'almost': 2,
          'might': 2,
          'cliches': 2,
          'appears': 2,
          'evil': 2,
          'bad': 2,
          'though': 2,
          'nif': 2,
          'look': 2,
          'nthe': 2,
          'stuntwork': 2,
          'youre': 2,
          'youll': 2,
          'cashing': 1,
          'white': 1,
          'men': 1,
          'cant': 1,
          'jump': 1,
          'failure': 1,
          'solo': 1,
          'vehicles': 1,
          'including': 1,
          'cowboy': 1,
          'drop': 1,
          'zone': 1,
          'wesley': 1,
          'snipes': 1,
          'woody': 1,
          'reteamed': 1,
          'hoping': 1,
          'strike': 1,
          'nsadly': 1,
          'dismal': 1,
          'cliche': 1,
          'ridden': 1,
          'mindnumbingly': 1,
          'boring': 1,
          'pic': 1,
          'go': 1,
          'havent': 1,
          'hell': 1,
          'coming': 1,
          'close': 1,
          'play': 1,
          'foster': 1,
          'brothers': 1,
          'cops': 1,
          'nfollowing': 1,
          'several': 1,
          'runins': 1,
          'tyrannical': 1,
          'robert': 1,
          'obsessed': 1,
          'carries': 1,
          'subways': 1,
          'takingsand': 1,
          'let': 1,
          'nothing': 1,
          'stop': 1,
          'plot': 1,
          'device': 1,
          'harrelsons': 1,
          'character': 1,
          'decides': 1,
          'take': 1,
          'cash': 1,
          'nalong': 1,
          'fall': 1,
          'love': 1,
          'womananother': 1,
          'cop': 1,
          'also': 1,
          'hates': 1,
          'leads': 1,
          'typical': 1,
          'sibling': 1,
          'rivalry': 1,
          'crap': 1,
          'usually': 1,
          'standard': 1,
          'always': 1,
          'brother': 1,
          'doesnt': 1,
          'help': 1,
          'add': 1,
          'ngiven': 1,
          'performers': 1,
          'supporting': 1,
          'roles': 1,
          'shorter': 1,
          'went': 1,
          'two': 1,
          'hoursor': 1,
          'feel': 1,
          'mean': 1,
          'turned': 1,
          'okay': 1,
          'stocked': 1,
          'worst': 1,
          'whose': 1,
          'purpose': 1,
          'pad': 1,
          'painfully': 1,
          'long': 1,
          'nrobert': 1,
          'plays': 1,
          'pathetic': 1,
          'guy': 1,
          'history': 1,
          'nhe': 1,
          'sounds': 1,
          'wayne': 1,
          'newton': 1,
          'think': 1,
          'best': 1,
          'appear': 1,
          'eyes': 1,
          'bulging': 1,
          'burst': 1,
          'sockets': 1,
          'one': 1,
          'trains': 1,
          'problems': 1,
          'lacks': 1,
          'originality': 1,
          'suspense': 1,
          'heist': 1,
          'worse': 1,
          'final': 1,
          'robbery': 1,
          'sequence': 1,
          'trivialised': 1,
          'characters': 1,
          'definitely': 1,
          'aint': 1,
          'butch': 1,
          'sundance': 1,
          'isnt': 1,
          'nsnipes': 1,
          'arent': 1,
          'using': 1,
          'dumb': 1,
          'gives': 1,
          'make': 1,
          'agreeable': 1,
          'indeed': 1,
          'excellent': 1,
          'good': 1,
          'save': 1,
          'bottomofthebarrel': 1,
          'movie': 1,
          'really': 1,
          'undemanding': 1,
          'freak': 1,
          'looking': 1,
          'something': 1,
          'suspenseful': 1,
          'somewhere': 1,
          'elsei': 1,
          'doubt': 1,
          'nneg': 1}),
 Counter({'film': 10,
          '6': 6,
          'nthere': 5,
          'nhe': 5,
          'girl': 4,
          'spike': 4,
          'nin': 4,
          'lee': 3,
          'music': 3,
          'one': 3,
          'though': 3,
          'never': 2,
          'narrative': 2,
          'point': 2,
          'ngirl': 2,
          'way': 2,
          'theresa': 2,
          'character': 2,
          'phone': 2,
          'sex': 2,
          'nthe': 2,
          'job': 2,
          'phonesex': 2,
          'ex': 2,
          'neighbor': 2,
          'jimmy': 2,
          'functions': 2,
          'become': 2,
          'soundtrack': 2,
          'distracting': 2,
          'nof': 2,
          'like': 2,
          'fans': 2,
          'even': 2,
          'oliver': 2,
          'scenes': 2,
          'moments': 2,
          'industry': 2,
          'good': 2,
          'word': 1,
          'mess': 1,
          'ni': 1,
          'able': 1,
          'determine': 1,
          'trying': 1,
          'accomplish': 1,
          'sense': 1,
          'going': 1,
          'kind': 1,
          'coherent': 1,
          'nif': 1,
          'missed': 1,
          'randles': 1,
          'addressed': 1,
          'workplace': 1,
          'girls': 1,
          'known': 1,
          'numbers': 1,
          'plot': 1,
          'randle': 1,
          'struggling': 1,
          'n': 1,
          'actress': 1,
          'eventually': 1,
          'takes': 1,
          'operator': 1,
          'nshe': 1,
          'begins': 1,
          'lose': 1,
          'contact': 1,
          'reality': 1,
          'consumes': 1,
          'nalso': 1,
          'must': 1,
          'deal': 1,
          'advances': 1,
          'exhusband': 1,
          'isiah': 1,
          'washington': 1,
          'con': 1,
          'thief': 1,
          'tries': 1,
          'keep': 1,
          'away': 1,
          'time': 1,
          'clear': 1,
          'still': 1,
          'harbors': 1,
          'feelings': 1,
          'nher': 1,
          'observer': 1,
          'mediating': 1,
          'husband': 1,
          'also': 1,
          'stability': 1,
          'watches': 1,
          'seduced': 1,
          'lurid': 1,
          'world': 1,
          'consisting': 1,
          'songs': 1,
          'prince': 1,
          'jarring': 1,
          'nit': 1,
          'kept': 1,
          'taking': 1,
          'attention': 1,
          'altogether': 1,
          'bad': 1,
          'thing': 1,
          'ill': 1,
          'grant': 1,
          'transpiring': 1,
          'onscreen': 1,
          'wasnt': 1,
          'riveting': 1,
          'nfor': 1,
          'parts': 1,
          'middle': 1,
          'stayed': 1,
          'blissfully': 1,
          'background': 1,
          'opening': 1,
          'sequence': 1,
          'scene': 1,
          'later': 1,
          'however': 1,
          'particularly': 1,
          'loud': 1,
          'course': 1,
          'ive': 1,
          'really': 1,
          'cared': 1,
          'princes': 1,
          'tafkap': 1,
          'nprince': 1,
          'might': 1,
          'love': 1,
          'probably': 1,
          'diehard': 1,
          'performances': 1,
          'stood': 1,
          'lees': 1,
          'buddy': 1,
          'excellent': 1,
          'alwaysbroke': 1,
          'stuck': 1,
          'acting': 1,
          'several': 1,
          'sequences': 1,
          'gave': 1,
          'impression': 1,
          'hed': 1,
          'stone': 1,
          'grows': 1,
          'shot': 1,
          'different': 1,
          'types': 1,
          'purposely': 1,
          'grainy': 1,
          'reminiscent': 1,
          'stones': 1,
          'natural': 1,
          'born': 1,
          'killers': 1,
          'worked': 1,
          'propel': 1,
          'made': 1,
          'confused': 1,
          'amusing': 1,
          'insights': 1,
          'lives': 1,
          'women': 1,
          'use': 1,
          'voices': 1,
          'make': 1,
          'multibillion': 1,
          'dollar': 1,
          'nother': 1,
          'nothing': 1,
          'much': 1,
          'happens': 1,
          'intense': 1,
          'caller': 1,
          'becomes': 1,
          'frightening': 1,
          'rather': 1,
          'lackluster': 1,
          'nim': 1,
          'biggest': 1,
          'fan': 1,
          'id': 1,
          'agree': 1,
          'done': 1,
          'work': 1,
          'past': 1,
          'seems': 1,
          'floundering': 1,
          'interesting': 1,
          'idea': 1,
          'fairly': 1,
          'setup': 1,
          'seemed': 1,
          'wander': 1,
          'aimlessly': 1,
          'earns': 1,
          'grade': 1,
          'nneg': 1}),
 Counter({'norris': 6,
          'action': 5,
          'film': 4,
          'films': 3,
          '1980s': 2,
          'chuck': 2,
          'nhe': 2,
          'top': 2,
          'quantity': 2,
          'among': 2,
          'genre': 2,
          'nthat': 2,
          'nthe': 2,
          'hitman': 2,
          'one': 2,
          'seattle': 2,
          'cop': 2,
          'dead': 2,
          'partner': 2,
          'brutal': 2,
          'problem': 2,
          'subplot': 2,
          'dealing': 2,
          'gets': 2,
          'another': 2,
          'back': 1,
          'used': 1,
          'synonym': 1,
          'couldnt': 1,
          'course': 1,
          'success': 1,
          'fame': 1,
          'big': 1,
          'names': 1,
          'like': 1,
          'sylvester': 1,
          'stallone': 1,
          'arnold': 1,
          'schwarzenegger': 1,
          'sheer': 1,
          'guaranteed': 1,
          'household': 1,
          'name': 1,
          'shootem': 1,
          'beatem': 1,
          'aficionados': 1,
          'mostly': 1,
          'provided': 1,
          'cannon': 1,
          'group': 1,
          'prolific': 1,
          'production': 1,
          'company': 1,
          'dominated': 1,
          'bmovie': 1,
          'market': 1,
          'previous': 1,
          'decade': 1,
          'flooding': 1,
          'cheap': 1,
          'formulaic': 1,
          'often': 1,
          'unwatchable': 1,
          'products': 1,
          '1991': 1,
          'thriller': 1,
          'directed': 1,
          'chucks': 1,
          'brother': 1,
          'aaron': 1,
          'last': 1,
          'nchuck': 1,
          'plays': 1,
          'betrayed': 1,
          'shot': 1,
          'left': 1,
          'shouldnt': 1,
          'surprise': 1,
          'anyone': 1,
          'considering': 1,
          'fact': 1,
          'played': 1,
          'michael': 1,
          'parks': 1,
          'specialised': 1,
          'roles': 1,
          'usually': 1,
          'mean': 1,
          'characters': 1,
          'nsurviving': 1,
          'shooting': 1,
          'pronounced': 1,
          'hired': 1,
          'deep': 1,
          'undercover': 1,
          'agent': 1,
          'infiltrates': 1,
          'underworld': 1,
          'circles': 1,
          'becomes': 1,
          'using': 1,
          'abilities': 1,
          'start': 1,
          'war': 1,
          'three': 1,
          'major': 1,
          'crime': 1,
          'organisations': 1,
          'italians': 1,
          'french': 1,
          'canadians': 1,
          'iranians': 1,
          'nsince': 1,
          'rather': 1,
          'absurd': 1,
          'expect': 1,
          'great': 1,
          'acting': 1,
          'ability': 1,
          'least': 1,
          'kind': 1,
          'movie': 1,
          'biggest': 1,
          'attraction': 1,
          'nwell': 1,
          'falls': 1,
          'flat': 1,
          'boring': 1,
          'repetitive': 1,
          'exciting': 1,
          'nit': 1,
          'nothing': 1,
          'monotonous': 1,
          'series': 1,
          'scenes': 1,
          'contains': 1,
          'violence': 1,
          'even': 1,
          'type': 1,
          'nwe': 1,
          'know': 1,
          'little': 1,
          'character': 1,
          'hand': 1,
          'gangsters': 1,
          'portrayed': 1,
          'human': 1,
          'dimension': 1,
          'nin': 1,
          'end': 1,
          'almost': 1,
          'feel': 1,
          'sorry': 1,
          'since': 1,
          'shown': 1,
          'totally': 1,
          'powerless': 1,
          'unstoppable': 1,
          'bloody': 1,
          'crusade': 1,
          'nduring': 1,
          'somebody': 1,
          'obviously': 1,
          'became': 1,
          'aware': 1,
          'screenwriter': 1,
          'introduced': 1,
          'black': 1,
          'boy': 1,
          'adopted': 1,
          'caused': 1,
          'questions': 1,
          'nature': 1,
          'relationship': 1,
          'quashed': 1,
          'lady': 1,
          'lawyer': 1,
          'sleeps': 1,
          'hero': 1,
          'killed': 1,
          'fulfilling': 1,
          'screenplay': 1,
          'obligation': 1,
          'photography': 1,
          'dark': 1,
          'setting': 1,
          'depressive': 1,
          'forgettable': 1,
          'piece': 1,
          'style': 1,
          'cinema': 1,
          'leaves': 1,
          'viewers': 1,
          'without': 1,
          'reason': 1,
          'justify': 1,
          'hour': 1,
          'half': 1,
          'spent': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'movie': 17,
          'flubber': 9,
          'nthe': 9,
          'original': 6,
          'professor': 5,
          'absent': 5,
          'life': 5,
          'nthis': 4,
          'minded': 4,
          'audience': 4,
          'well': 4,
          'robot': 4,
          'could': 3,
          'whole': 3,
          'might': 3,
          'way': 3,
          'would': 3,
          'amusing': 3,
          'back': 3,
          'moments': 3,
          'good': 3,
          'best': 3,
          'prof': 3,
          'end': 3,
          'character': 3,
          'forgetful': 2,
          'people': 2,
          'brainard': 2,
          'somehow': 2,
          'nits': 2,
          'half': 2,
          'flying': 2,
          'seems': 2,
          'kids': 2,
          'two': 2,
          'poor': 2,
          'fiancee': 2,
          'rather': 2,
          'basketball': 2,
          'totally': 2,
          'close': 2,
          'done': 2,
          'give': 2,
          'film': 2,
          'nas': 2,
          'ones': 2,
          'ngiving': 2,
          'executed': 2,
          'weebo': 2,
          'wasnt': 2,
          'real': 2,
          'story': 2,
          'something': 2,
          'idea': 2,
          'little': 2,
          'acting': 2,
          'many': 2,
          'quite': 2,
          'find': 2,
          'may': 1,
          'doubtful': 1,
          'anyone': 1,
          'forget': 1,
          'wedding': 1,
          'especially': 1,
          'three': 1,
          'times': 1,
          'nbut': 1,
          'alas': 1,
          'manages': 1,
          'accomplish': 1,
          'feat': 1,
          'twice': 1,
          'momentous': 1,
          'night': 1,
          'actually': 1,
          'creates': 1,
          'amazing': 1,
          'able': 1,
          'remember': 1,
          'processes': 1,
          'uses': 1,
          'make': 1,
          'anything': 1,
          'point': 1,
          'man': 1,
          'blatantly': 1,
          'almost': 1,
          'mindless': 1,
          'nwell': 1,
          'case': 1,
          'first': 1,
          'things': 1,
          'begin': 1,
          'settle': 1,
          'truly': 1,
          'considered': 1,
          'nalong': 1,
          'becoming': 1,
          'mind': 1,
          'stumbles': 1,
          'onto': 1,
          'nthankfully': 1,
          'amusement': 1,
          'supposed': 1,
          'rubber': 1,
          'strictly': 1,
          'properties': 1,
          'provide': 1,
          'antics': 1,
          'coated': 1,
          'golfballs': 1,
          'bowling': 1,
          'balls': 1,
          'assail': 1,
          'thugs': 1,
          'nalthough': 1,
          'ever': 1,
          'brings': 1,
          'haunting': 1,
          'memories': 1,
          'home': 1,
          'alone': 1,
          'save': 1,
          'university': 1,
          'teaches': 1,
          'get': 1,
          'finally': 1,
          'stop': 1,
          'plotting': 1,
          'evil': 1,
          'millionaire': 1,
          'funniest': 1,
          'possible': 1,
          'nadmittedly': 1,
          'funny': 1,
          'shallow': 1,
          'compare': 1,
          'scene': 1,
          'game': 1,
          'atrocious': 1,
          'unbelievable': 1,
          'players': 1,
          'stereotypically': 1,
          'unqualified': 1,
          'sport': 1,
          'manage': 1,
          'bounce': 1,
          'fly': 1,
          'dribble': 1,
          'winning': 1,
          'sounds': 1,
          'bad': 1,
          'true': 1,
          'least': 1,
          'keep': 1,
          'semi': 1,
          'chance': 1,
          'innovations': 1,
          'new': 1,
          'ideas': 1,
          'poorly': 1,
          'forgotten': 1,
          'brainards': 1,
          'worked': 1,
          'beautifully': 1,
          'scenes': 1,
          'sort': 1,
          'dancing': 1,
          'around': 1,
          'tables': 1,
          'books': 1,
          'reason': 1,
          'put': 1,
          'bit': 1,
          'music': 1,
          'extend': 1,
          'length': 1,
          'brief': 1,
          'whimsical': 1,
          'used': 1,
          'harm': 1,
          'nnow': 1,
          'different': 1,
          'created': 1,
          'forgot': 1,
          'gave': 1,
          'really': 1,
          'maybe': 1,
          'makes': 1,
          'developed': 1,
          'nyes': 1,
          'folks': 1,
          'yellow': 1,
          'emotion': 1,
          'characters': 1,
          'lacks': 1,
          'emotional': 1,
          'punch': 1,
          'pull': 1,
          'robin': 1,
          'williams': 1,
          'nbrainard': 1,
          'hearted': 1,
          'cases': 1,
          'forced': 1,
          'nmost': 1,
          'convincing': 1,
          'fool': 1,
          'part': 1,
          'yet': 1,
          'reached': 1,
          'age': 1,
          '12': 1,
          'npeople': 1,
          'stood': 1,
          'altar': 1,
          'dont': 1,
          'usually': 1,
          'third': 1,
          'chances': 1,
          'matter': 1,
          'talk': 1,
          'afterwards': 1,
          'expected': 1,
          'childrens': 1,
          'nflubber': 1,
          'nothing': 1,
          'special': 1,
          'respect': 1,
          'nwith': 1,
          'prop': 1,
          'doubt': 1,
          'great': 1,
          'nit': 1,
          'wash': 1,
          'nkids': 1,
          'fun': 1,
          'theyll': 1,
          'probably': 1,
          'enjoy': 1,
          'nneg': 1}),
 Counter({'spice': 15,
          'girls': 13,
          'film': 10,
          'movie': 7,
          'group': 6,
          'think': 6,
          'dont': 5,
          'get': 5,
          'fun': 4,
          'good': 4,
          'bad': 3,
          'spiceworld': 3,
          'nif': 3,
          'better': 3,
          'youre': 3,
          'probably': 3,
          'ntheyre': 3,
          'five': 3,
          'real': 3,
          'names': 3,
          'nits': 3,
          'thats': 3,
          'enough': 3,
          'us': 3,
          'look': 3,
          'big': 3,
          'nothing': 3,
          'gimmick': 3,
          'singing': 2,
          'goal': 2,
          'mocking': 2,
          'give': 2,
          'wasnt': 2,
          'really': 2,
          'meant': 2,
          'much': 2,
          'rather': 2,
          'see': 2,
          'others': 2,
          'known': 2,
          'understand': 2,
          'might': 2,
          'ginger': 2,
          'nall': 2,
          'sporty': 2,
          'melanie': 2,
          'mel': 2,
          'nthe': 2,
          'actually': 2,
          'seriously': 2,
          'seems': 2,
          'fans': 2,
          'wont': 2,
          'music': 2,
          'point': 2,
          'moments': 2,
          'make': 2,
          'fan': 2,
          'comparison': 2,
          'nit': 2,
          'way': 2,
          'intended': 2,
          'ni': 2,
          'trying': 2,
          'instead': 2,
          'every': 2,
          'judge': 1,
          'intentionally': 1,
          'nin': 1,
          'highly': 1,
          'popular': 1,
          'accomplish': 1,
          'major': 1,
          'purposely': 1,
          'cheezy': 1,
          'lot': 1,
          'fantastic': 1,
          'job': 1,
          'nso': 1,
          'fair': 1,
          'low': 1,
          'grade': 1,
          'nhonestly': 1,
          'id': 1,
          'many': 1,
          'gave': 1,
          'higher': 1,
          'grades': 1,
          'mean': 1,
          'graded': 1,
          'inaccurately': 1,
          'ntruth': 1,
          'answer': 1,
          'question': 1,
          'nto': 1,
          'nunless': 1,
          'young': 1,
          'fairly': 1,
          'older': 1,
          'least': 1,
          'heard': 1,
          'busty': 1,
          'british': 1,
          'babes': 1,
          'whove': 1,
          '1': 1,
          'hit': 1,
          'singles': 1,
          'whose': 1,
          'debut': 1,
          'album': 1,
          'sold': 1,
          'millions': 1,
          'primarily': 1,
          'adored': 1,
          'preteen': 1,
          'hope': 1,
          'someday': 1,
          'contents': 1,
          'training': 1,
          'bras': 1,
          'match': 1,
          'spices': 1,
          'name': 1,
          'geri': 1,
          'haliwell': 1,
          'wonderbra': 1,
          'spicy': 1,
          'nthere': 1,
          'aforementioned': 1,
          'well': 1,
          'chisholm': 1,
          'c': 1,
          'scary': 1,
          'brown': 1,
          'b': 1,
          'baby': 1,
          'emma': 1,
          'bunton': 1,
          'posh': 1,
          'victoria': 1,
          'addams': 1,
          'degree': 1,
          'another': 1,
          'resemble': 1,
          'stage': 1,
          'took': 1,
          'world': 1,
          'storm': 1,
          'humored': 1,
          'spoof': 1,
          'transpired': 1,
          'quick': 1,
          'rise': 1,
          'fame': 1,
          'quite': 1,
          'nice': 1,
          'sports': 1,
          'one': 1,
          'dubbed': 1,
          'poking': 1,
          'nthey': 1,
          'take': 1,
          'best': 1,
          'thing': 1,
          'also': 1,
          'surprising': 1,
          'natural': 1,
          'seem': 1,
          'front': 1,
          'camera': 1,
          'acting': 1,
          'dancing': 1,
          'flawless': 1,
          'means': 1,
          'part': 1,
          'deliver': 1,
          'lines': 1,
          'without': 1,
          'feeling': 1,
          'staged': 1,
          'like': 1,
          'sense': 1,
          'home': 1,
          'within': 1,
          'characters': 1,
          'reasonable': 1,
          'since': 1,
          'portray': 1,
          'nwhat': 1,
          'makes': 1,
          'extreme': 1,
          'rest': 1,
          'ninety': 1,
          'straight': 1,
          'minutes': 1,
          'nmost': 1,
          'blas': 1,
          'several': 1,
          'parts': 1,
          'downright': 1,
          'boring': 1,
          'sporadic': 1,
          'laugh': 1,
          'loud': 1,
          'want': 1,
          'time': 1,
          'devoted': 1,
          'nfor': 1,
          'right': 1,
          'crowd': 1,
          'video': 1,
          'sequences': 1,
          'highlights': 1,
          'serve': 1,
          'threeminute': 1,
          'lulls': 1,
          'hecticbutoveralluneventful': 1,
          'storyline': 1,
          'nother': 1,
          'key': 1,
          'actors': 1,
          'include': 1,
          'richard': 1,
          'e': 1,
          'grant': 1,
          'clifford': 1,
          'manager': 1,
          'alan': 1,
          'cumming': 1,
          'filmmaker': 1,
          'piers': 1,
          'cuthertonsmyth': 1,
          'attempts': 1,
          'documentary': 1,
          'george': 1,
          'wendt': 1,
          'martin': 1,
          'barnfield': 1,
          'producer': 1,
          'constantly': 1,
          'works': 1,
          'pitching': 1,
          'roger': 1,
          'moore': 1,
          'small': 1,
          'selfparodizing': 1,
          'role': 1,
          'provide': 1,
          'relatively': 1,
          'performances': 1,
          'keeping': 1,
          'mind': 1,
          'acted': 1,
          'neven': 1,
          'meat': 1,
          'loaf': 1,
          'shows': 1,
          'dennis': 1,
          'bus': 1,
          'driver': 1,
          'nwhile': 1,
          'continuously': 1,
          'compared': 1,
          'beatles': 1,
          'hard': 1,
          'days': 1,
          'night': 1,
          'unjust': 1,
          'supposedly': 1,
          'studio': 1,
          'first': 1,
          'mad': 1,
          'press': 1,
          'kits': 1,
          'drector': 1,
          'bob': 1,
          'spiers': 1,
          'studios': 1,
          'boost': 1,
          'hype': 1,
          'interest': 1,
          'come': 1,
          'pretentious': 1,
          'anything': 1,
          'satirical': 1,
          'got': 1,
          'seemed': 1,
          'next': 1,
          'likely': 1,
          'step': 1,
          'nand': 1,
          'couldve': 1,
          'selfindulged': 1,
          'yet': 1,
          'self': 1,
          'approach': 1,
          'nprobably': 1,
          'nspiceworld': 1,
          'thought': 1,
          'would': 1,
          'embarrassing': 1,
          'enjoy': 1,
          'find': 1,
          'wanting': 1,
          'defend': 1,
          'didnt': 1,
          'even': 1,
          'review': 1,
          'succeeds': 1,
          'gives': 1,
          'chance': 1,
          'play': 1,
          'allowing': 1,
          'obsessive': 1,
          'indulge': 1,
          'brainless': 1,
          'moment': 1,
          'nperhaps': 1,
          'case': 1,
          'movies': 1,
          'nyou': 1,
          'saying': 1,
          'ncome': 1,
          'comes': 1,
          'nneg': 1}),
 Counter({'rangoon': 4,
          'beyond': 3,
          'enough': 3,
          'nthe': 3,
          'doo': 3,
          'say': 2,
          'movies': 2,
          'like': 2,
          'right': 2,
          'nas': 2,
          'john': 2,
          'arquette': 2,
          'characters': 2,
          'foreign': 2,
          'could': 1,
          'paraphrase': 1,
          'michelle': 1,
          'pfieffers': 1,
          'character': 1,
          'dangerous': 1,
          'minds': 1,
          'starts': 1,
          'nthats': 1,
          'fair': 1,
          'nall': 1,
          'school': 1,
          'children': 1,
          'given': 1,
          'benefit': 1,
          'doubt': 1,
          'chance': 1,
          'succeed': 1,
          'nafter': 1,
          'think': 1,
          'combination': 1,
          'talent': 1,
          'effort': 1,
          'wonders': 1,
          'nmountains': 1,
          'moved': 1,
          'good': 1,
          'made': 1,
          'nyeah': 1,
          'nchildren': 1,
          'fail': 1,
          'films': 1,
          'director': 1,
          'boormans': 1,
          'latest': 1,
          'success': 1,
          'hinges': 1,
          'believability': 1,
          'patricia': 1,
          'ed': 1,
          'wood': 1,
          'true': 1,
          'romance': 1,
          'busty': 1,
          'westernerinperil': 1,
          'wandering': 1,
          '1988': 1,
          'burma': 1,
          'without': 1,
          'passport': 1,
          'nthough': 1,
          'stomach': 1,
          'mild': 1,
          'plot': 1,
          'contrivances': 1,
          'get': 1,
          'tougher': 1,
          'task': 1,
          'overlook': 1,
          'actress': 1,
          'nshes': 1,
          'lightweight': 1,
          'first': 1,
          'scene': 1,
          'narration': 1,
          'ndemonstrates': 1,
          'doesnt': 1,
          'nearly': 1,
          'range': 1,
          'emotions': 1,
          'charactera': 1,
          'mother': 1,
          'fleeing': 1,
          'memories': 1,
          'murdered': 1,
          'husband': 1,
          'sonis': 1,
          'supposed': 1,
          'show': 1,
          'nshe': 1,
          'may': 1,
          'give': 1,
          'stronger': 1,
          'performance': 1,
          'keanu': 1,
          'reeves': 1,
          'walk': 1,
          'clouds': 1,
          'much': 1,
          'nbeyond': 1,
          'physically': 1,
          'appealing': 1,
          'film': 1,
          'thanks': 1,
          'practiced': 1,
          'craftsmanship': 1,
          'boorman': 1,
          'deliverance': 1,
          'excalibur': 1,
          'hope': 1,
          'glory': 1,
          'nhe': 1,
          'keeps': 1,
          'narrative': 1,
          'moving': 1,
          'matter': 1,
          'muddy': 1,
          'storyor': 1,
          'heroinegets': 1,
          'nwhy': 1,
          'chose': 1,
          'remains': 1,
          'mystery': 1,
          'though': 1,
          'nmaybe': 1,
          'thinking': 1,
          'dramatic': 1,
          'weight': 1,
          'story': 1,
          'would': 1,
          'overcome': 1,
          'casting': 1,
          'deficiencies': 1,
          'nbut': 1,
          'even': 1,
          'hour': 1,
          'halfstated': 1,
          'political': 1,
          'statements': 1,
          'murky': 1,
          'mass': 1,
          'killings': 1,
          'still': 1,
          'dont': 1,
          'know': 1,
          'whats': 1,
          'happening': 1,
          'country': 1,
          'feel': 1,
          'distressed': 1,
          'situations': 1,
          'nempty': 1,
          'exoticism': 1,
          'technical': 1,
          'credits': 1,
          'curious': 1,
          'mix': 1,
          'combining': 1,
          'lush': 1,
          'jungle': 1,
          'photography': 1,
          'bad': 1,
          'bluescreen': 1,
          'work': 1,
          'nalso': 1,
          'odd': 1,
          'obvious': 1,
          'dubbing': 1,
          'ndone': 1,
          'make': 1,
          'sound': 1,
          'less': 1,
          'nand': 1,
          'mistake': 1,
          'extras': 1,
          'keep': 1,
          'reappearing': 1,
          'different': 1,
          'soldiers': 1,
          'ndoo': 1,
          'n': 1,
          'twilight': 1,
          'zone': 1,
          'theme': 1,
          'opinion': 1,
          'movie': 1,
          'nyou': 1,
          'judge': 1,
          'nneg': 1}),
 Counter({'nbsp': 43,
          'series': 28,
          'movie': 22,
          'xfiles': 20,
          'television': 20,
          'nnbsp': 15,
          'show': 12,
          'carter': 12,
          'nthe': 10,
          'fans': 8,
          'much': 8,
          'characters': 8,
          'cinema': 7,
          'truth': 6,
          'would': 6,
          'alien': 6,
          'questions': 6,
          'film': 6,
          'appearance': 6,
          'think': 4,
          'one': 4,
          'films': 4,
          'fan': 4,
          'culture': 4,
          'whose': 4,
          'fbi': 4,
          'fox': 4,
          'find': 4,
          'extraterrestrial': 4,
          'scully': 4,
          'try': 4,
          'black': 4,
          'ooze': 4,
          'shadow': 4,
          'government': 4,
          'coverup': 4,
          'three': 4,
          'nwill': 4,
          'understand': 4,
          'nyes': 4,
          'text': 4,
          'secondary': 4,
          'quickly': 4,
          'bring': 4,
          'lone': 4,
          'gunmen': 4,
          'even': 4,
          'audience': 4,
          'actually': 4,
          'never': 4,
          'us': 4,
          'nin': 4,
          'get': 4,
          'wants': 4,
          'nwe': 4,
          'chris': 4,
          'answer': 4,
          'explanations': 4,
          'disbelief': 4,
          'like': 4,
          'impose': 4,
          'nit': 4,
          'screen': 4,
          'nmeaning': 4,
          'medium': 4,
          'explicit': 4,
          'nothing': 4,
          'nthere': 3,
          'nwhy': 3,
          'first': 3,
          'saying': 2,
          'summers': 2,
          'anticipated': 2,
          'safe': 2,
          'nfor': 2,
          'five': 2,
          'years': 2,
          'developed': 2,
          'dedicated': 2,
          'rabid': 2,
          'devotion': 2,
          'rivals': 2,
          'star': 2,
          'trek': 2,
          'premise': 2,
          'two': 2,
          'agents': 2,
          'investigate': 2,
          'paranormal': 2,
          'mulder': 2,
          'david': 2,
          'duchovny': 2,
          'avid': 2,
          'believer': 2,
          'quest': 2,
          'life': 2,
          'borders': 2,
          'paranoid': 2,
          'dana': 2,
          'gillian': 2,
          'anderson': 2,
          'scientific': 2,
          'skeptic': 2,
          'trying': 2,
          'rational': 2,
          'explanation': 2,
          'mulders': 2,
          'flights': 2,
          'fancy': 2,
          'plot': 2,
          'virtually': 2,
          'impossible': 2,
          'since': 2,
          'general': 2,
          'result': 2,
          'confusion': 2,
          'yet': 2,
          'specific': 2,
          'give': 2,
          'away': 2,
          'nnevertheless': 2,
          'n': 2,
          'viruslike': 2,
          'substance': 2,
          'threatening': 2,
          'earth': 2,
          'na': 2,
          'aware': 2,
          'tries': 2,
          'existence': 2,
          'nmulder': 2,
          'know': 2,
          'expose': 2,
          'invasion': 2,
          'central': 2,
          'heard': 2,
          'asked': 2,
          '1': 2,
          'dont': 2,
          'watch': 2,
          'able': 2,
          'nisolated': 2,
          'individual': 2,
          'stand': 2,
          'alone': 2,
          'nthey': 2,
          'given': 2,
          'enough': 2,
          'background': 2,
          'anyone': 2,
          'familiar': 2,
          'nalthough': 2,
          'histories': 2,
          'may': 2,
          'confuse': 2,
          'uninitiated': 2,
          'essential': 2,
          'nthis': 2,
          'major': 2,
          'problem': 2,
          'trot': 2,
          'token': 2,
          'disappear': 2,
          'superintendent': 2,
          'skinner': 2,
          'picture': 2,
          'place': 2,
          'sat': 2,
          'silently': 2,
          'internal': 2,
          'affairs': 2,
          'committee': 2,
          'computer': 2,
          'geek': 2,
          'conspiracy': 2,
          'theorists': 2,
          'briefer': 2,
          'nthese': 2,
          'recurrent': 2,
          'met': 2,
          'whoops': 2,
          'suggesting': 2,
          'popularity': 2,
          'among': 2,
          'could': 2,
          'pass': 2,
          'nstill': 2,
          'vanish': 2,
          'gives': 2,
          'answers': 2,
          'explain': 2,
          'things': 2,
          'fairly': 2,
          'complete': 2,
          'history': 2,
          'finally': 2,
          'understanding': 2,
          'motivations': 2,
          'behind': 2,
          'subtle': 2,
          'tieins': 2,
          'contemporary': 2,
          'ufoology': 2,
          'including': 2,
          'greys': 2,
          'roswell': 2,
          'crash': 2,
          '1947': 2,
          'good': 2,
          'nno': 2,
          'dreadful': 2,
          'shows': 2,
          'fundamental': 2,
          'problems': 2,
          'writercreator': 2,
          'carters': 2,
          'talents': 2,
          'relationship': 2,
          'screenplay': 2,
          'creator': 2,
          'sloppy': 2,
          'cliched': 2,
          'nafter': 2,
          'approximately': 2,
          'fortyfive': 2,
          'minutes': 2,
          'length': 2,
          'episode': 2,
          'minus': 2,
          'commercials': 2,
          'pace': 2,
          'drops': 2,
          'snails': 2,
          'crawl': 2,
          'nnot': 2,
          'long': 2,
          'point': 2,
          'attempts': 2,
          'wish': 2,
          'trite': 2,
          'ridiculous': 2,
          'preferred': 2,
          'explained': 2,
          'quite': 2,
          'ni': 2,
          'willing': 2,
          'suspend': 2,
          'fair': 2,
          'bit': 2,
          'absurdity': 2,
          'swallow': 2,
          'nbreaking': 2,
          'suspension': 2,
          'destroys': 2,
          'listening': 2,
          'leave': 2,
          'maybe': 2,
          'absurd': 2,
          'tired': 2,
          'unoriginal': 2,
          'extraterrestrials': 2,
          'breed': 2,
          'gestate': 2,
          'craft': 2,
          'looks': 2,
          'leftover': 2,
          'set': 2,
          'piece': 2,
          'independence': 2,
          'day': 2,
          'nnote': 2,
          'movies': 2,
          'id4': 2,
          '20thcentury': 2,
          'studio': 2,
          'beginning': 2,
          'cannibalize': 2,
          'noteworthy': 2,
          'based': 2,
          'produced': 2,
          'still': 2,
          'running': 2,
          'comparing': 2,
          'certain': 2,
          'aspects': 2,
          'respective': 2,
          'media': 2,
          'emerge': 2,
          'avoidance': 2,
          'raised': 2,
          'annoyed': 2,
          'frustrated': 2,
          'many': 2,
          'people': 2,
          'nhowever': 2,
          'rather': 2,
          'liked': 2,
          'ntelevision': 2,
          'allows': 2,
          'little': 2,
          'meaning': 2,
          'want': 2,
          'proverbial': 2,
          'blank': 2,
          'project': 2,
          'minds': 2,
          'open': 2,
          'ambiguous': 2,
          'nature': 2,
          'hand': 2,
          'opposite': 2,
          'projects': 2,
          'onto': 2,
          'filmmakers': 2,
          'mind': 2,
          'fill': 2,
          'textual': 2,
          'gaps': 2,
          'almost': 2,
          'happens': 2,
          'american': 2,
          'needs': 2,
          'selfcontained': 2,
          'determined': 2,
          'made': 2,
          'jump': 2,
          'small': 2,
          'big': 2,
          'needed': 2,
          'take': 2,
          'consideration': 2,
          'differences': 2,
          'well': 2,
          'nhe': 2,
          'nby': 2,
          'making': 2,
          'left': 2,
          'implicit': 2,
          'reveals': 2,
          'limits': 2,
          'creativity': 2,
          'skill': 2,
          'say': 2,
          'make': 2,
          'tv': 2,
          'far': 2,
          'non': 2,
          'must': 2,
          'meanings': 2,
          'nhow': 2,
          'true': 2,
          'see': 2,
          'st': 2,
          'johns': 2,
          'noutlining': 1,
          'n2': 1,
          'n3': 1,
          'nfirst': 1,
          'ncinema': 1,
          'nso': 1,
          'nwhen': 1,
          'following': 1,
          'printed': 1,
          'express': 1,
          'newfoundland': 1,
          'canada': 1,
          'nall': 1,
          'views': 1,
          'authors': 1,
          'copyright': 1,
          'held': 1,
          'robinsonblackmore': 1,
          '1998': 1,
          'nmovie': 1,
          'review': 1,
          'mikel': 1,
          'j': 1,
          'koven': 1,
          'outlining': 1,
          '2': 1,
          '3': 1,
          'nis': 1,
          'nneg': 1}),
 Counter({'alain': 6,
          'chabat': 6,
          'film': 5,
          'french': 5,
          'nthe': 5,
          'little': 4,
          'sex': 4,
          'one': 4,
          'twist': 4,
          'shes': 4,
          'pretty': 4,
          'comedy': 3,
          'marijo': 3,
          'nbut': 3,
          'bad': 3,
          'american': 2,
          'nsome': 2,
          'even': 2,
          'good': 2,
          'big': 2,
          'crap': 2,
          'flick': 2,
          'married': 2,
          'couple': 2,
          'kids': 2,
          'kinda': 2,
          'victoria': 2,
          'abril': 2,
          'nand': 2,
          'balasko': 2,
          'two': 2,
          'nso': 2,
          'decides': 2,
          'get': 2,
          'obvious': 2,
          'love': 2,
          'stupidity': 2,
          'moronic': 2,
          'characters': 2,
          'intelligent': 2,
          'stupid': 2,
          'really': 2,
          'acting': 2,
          'isnt': 2,
          'watch': 2,
          'moments': 2,
          'contrary': 1,
          'popular': 1,
          'belief': 1,
          'every': 1,
          'single': 1,
          'foregin': 1,
          'released': 1,
          'market': 1,
          'masterpiece': 1,
          'arent': 1,
          'examples': 1,
          'principle': 1,
          'aboslutely': 1,
          'dreadful': 1,
          'un': 1,
          'indien': 1,
          'dans': 1,
          'la': 1,
          'ville': 1,
          'presented': 1,
          'indian': 1,
          'city': 1,
          'remade': 1,
          'tim': 1,
          'allen': 1,
          'jungle2jungle': 1,
          'nwhat': 1,
          'could': 1,
          'clever': 1,
          'turns': 1,
          'mess': 1,
          'n': 1,
          'cool': 1,
          'title': 1,
          'real': 1,
          'gazon': 1,
          'maudit': 1,
          'literally': 1,
          'meaning': 1,
          'twisted': 1,
          'ground': 1,
          'something': 1,
          'like': 1,
          'deals': 1,
          'intrusion': 1,
          'stranger': 1,
          'screws': 1,
          'things': 1,
          'nloli': 1,
          'exactly': 1,
          'happily': 1,
          'nalways': 1,
          'business': 1,
          'trips': 1,
          'cheats': 1,
          'eventually': 1,
          'finds': 1,
          'day': 1,
          'meets': 1,
          'butch': 1,
          'mechanic': 1,
          'cowriterdirector': 1,
          'josiane': 1,
          'hit': 1,
          'back': 1,
          'sleeping': 1,
          'soons': 1,
          'starts': 1,
          'fall': 1,
          'also': 1,
          'realizes': 1,
          'still': 1,
          'course': 1,
          'keep': 1,
          'nshell': 1,
          'sleep': 1,
          '3': 1,
          'days': 1,
          'sunday': 1,
          'shell': 1,
          'rest': 1,
          'nafter': 1,
          'needs': 1,
          'gon': 1,
          'na': 1,
          'sylvia': 1,
          'kristel': 1,
          'goes': 1,
          'hour': 1,
          'half': 1,
          'soon': 1,
          'theres': 1,
          'ironic': 1,
          'nending': 1,
          'ni': 1,
          'know': 1,
          'completely': 1,
          'different': 1,
          'culture': 1,
          'im': 1,
          'quite': 1,
          'familiar': 1,
          'cinema': 1,
          'nnone': 1,
          'peter': 1,
          'stormare': 1,
          'fargo': 1,
          'movie': 1,
          'backed': 1,
          'make': 1,
          'point': 1,
          'action': 1,
          'much': 1,
          'hopeful': 1,
          'chuckle': 1,
          'audience': 1,
          'nwhats': 1,
          'shocking': 1,
          'frances': 1,
          'biggest': 1,
          'hits': 1,
          'nominated': 1,
          'lot': 1,
          'cesars': 1,
          'equivalent': 1,
          'oscars': 1,
          'writing': 1,
          'directing': 1,
          'problem': 1,
          'njosiane': 1,
          'job': 1,
          'role': 1,
          'humerous': 1,
          'entertaining': 1,
          'deep': 1,
          'neven': 1,
          'woody': 1,
          'allens': 1,
          'notverygood': 1,
          'midsummer': 1,
          'nights': 1,
          'wellwritten': 1,
          'possesses': 1,
          'depth': 1,
          'nthis': 1,
          'shallow': 1,
          'unfunny': 1,
          'annoying': 1,
          'moves': 1,
          'pace': 1,
          'snail': 1,
          'damnnear': 1,
          'painful': 1,
          'nthank': 1,
          'god': 1,
          'fast': 1,
          'forward': 1,
          'button': 1,
          'however': 1,
          'actors': 1,
          'best': 1,
          'material': 1,
          'likable': 1,
          'despite': 1,
          'script': 1,
          'fact': 1,
          'enough': 1,
          'try': 1,
          'divide': 1,
          'people': 1,
          'funny': 1,
          'neurotic': 1,
          'husband': 1,
          'lame': 1,
          'nits': 1,
          'overly': 1,
          'horrible': 1,
          'brief': 1,
          'example': 1,
          'illadvised': 1,
          'distribution': 1,
          'foreign': 1,
          'nneg': 1}),
 Counter({'stone': 7,
          'given': 4,
          'sunday': 4,
          'football': 4,
          'film': 4,
          'damato': 4,
          'game': 4,
          'see': 3,
          'nin': 3,
          'editing': 3,
          'character': 3,
          'visual': 3,
          'decent': 2,
          'sports': 2,
          'movie': 2,
          'struggling': 2,
          'break': 2,
          'insight': 2,
          'nunfortunately': 2,
          'seems': 2,
          'one': 2,
          'dizzying': 2,
          'appears': 2,
          'development': 2,
          'coach': 2,
          'losing': 2,
          'cap': 2,
          'field': 2,
          'beaman': 2,
          'jamie': 2,
          'foxx': 2,
          'becomes': 2,
          'nand': 2,
          'nthere': 2,
          'big': 2,
          'nthe': 2,
          'directors': 2,
          'approach': 2,
          'watch': 2,
          'audience': 2,
          'nany': 2,
          'cast': 2,
          'back': 2,
          'seat': 2,
          'free': 1,
          'oliver': 1,
          'stones': 1,
          'nits': 1,
          'entertaining': 1,
          'offers': 1,
          'excitement': 1,
          'rockem': 1,
          'sockem': 1,
          'profession': 1,
          'pro': 1,
          'director': 1,
          'priority': 1,
          'mind': 1,
          'sprucing': 1,
          'assortment': 1,
          'fancy': 1,
          'camera': 1,
          'maneuvers': 1,
          'altering': 1,
          'frame': 1,
          'quickflash': 1,
          'photography': 1,
          'inyourface': 1,
          'completely': 1,
          'ignored': 1,
          'matter': 1,
          'plausible': 1,
          'politics': 1,
          'nwe': 1,
          'glimpses': 1,
          'greatness': 1,
          'agenda': 1,
          'tangled': 1,
          'technical': 1,
          'gobbledygook': 1,
          'nit': 1,
          'grows': 1,
          'tiresome': 1,
          'monotonous': 1,
          'nyes': 1,
          'pulled': 1,
          'brian': 1,
          'depalma': 1,
          'nmatters': 1,
          'importance': 1,
          'pushed': 1,
          'aside': 1,
          'right': 1,
          'getgo': 1,
          'ntony': 1,
          'al': 1,
          'pacino': 1,
          'miami': 1,
          'sharks': 1,
          'finds': 1,
          'team': 1,
          'stuck': 1,
          'rut': 1,
          'naging': 1,
          'quarterback': 1,
          'rooney': 1,
          'dennis': 1,
          'quaid': 1,
          'touch': 1,
          'cant': 1,
          'seem': 1,
          'ignite': 1,
          'passion': 1,
          'squad': 1,
          'nwhen': 1,
          'injured': 1,
          'patch': 1,
          'unlikely': 1,
          'events': 1,
          'occur': 1,
          'thirdstring': 1,
          'qb': 1,
          'willie': 1,
          'brought': 1,
          'nonce': 1,
          'huddle': 1,
          'ingame': 1,
          'ritual': 1,
          'horks': 1,
          'nnerves': 1,
          'neventually': 1,
          'though': 1,
          'ancy': 1,
          'youngster': 1,
          'wins': 1,
          'teammates': 1,
          'sparking': 1,
          'rise': 1,
          'fame': 1,
          'world': 1,
          'endorsements': 1,
          'music': 1,
          'videos': 1,
          'etc': 1,
          'straps': 1,
          'us': 1,
          'jolting': 1,
          'ride': 1,
          'behindthescenes': 1,
          'stress': 1,
          'fury': 1,
          'business': 1,
          'apparently': 1,
          'like': 1,
          'believe': 1,
          'intriguing': 1,
          'posed': 1,
          'scheme': 1,
          'things': 1,
          'fumbles': 1,
          'ball': 1,
          'problem': 1,
          'uses': 1,
          'extravagant': 1,
          'devices': 1,
          'conventional': 1,
          'would': 1,
          'appropriate': 1,
          'nfootball': 1,
          'exciting': 1,
          'think': 1,
          'assault': 1,
          'senses': 1,
          'add': 1,
          'adrenaline': 1,
          'rush': 1,
          'ni': 1,
          'guess': 1,
          'mistaken': 1,
          'kaleidoscope': 1,
          'leaves': 1,
          'frustrated': 1,
          'stupor': 1,
          'frequently': 1,
          'excites': 1,
          'nmany': 1,
          'fans': 1,
          'including': 1,
          'attended': 1,
          'liable': 1,
          'disappointed': 1,
          'ultrastylish': 1,
          'way': 1,
          'decided': 1,
          'present': 1,
          'return': 1,
          'threestar': 1,
          'unfortunately': 1,
          'degraded': 1,
          'due': 1,
          'tampering': 1,
          'welcome': 1,
          'scenes': 1,
          'pummeling': 1,
          'comes': 1,
          'actually': 1,
          'shows': 1,
          'interaction': 1,
          'nfor': 1,
          'instance': 1,
          'heated': 1,
          'returns': 1,
          'feisty': 1,
          'young': 1,
          'owner': 1,
          'christina': 1,
          'pagniacci': 1,
          'cameron': 1,
          'diaz': 1,
          'enjoyable': 1,
          'also': 1,
          'solid': 1,
          'performance': 1,
          'experiments': 1,
          'great': 1,
          'success': 1,
          'first': 1,
          'trek': 1,
          'dramatic': 1,
          'territory': 1,
          'stellar': 1,
          'supporting': 1,
          'includes': 1,
          'matthew': 1,
          'modine': 1,
          'aaron': 1,
          'eckhart': 1,
          'lauren': 1,
          'holly': 1,
          'annmargret': 1,
          'charlton': 1,
          'heston': 1,
          'extraordinarily': 1,
          'brief': 1,
          'appearance': 1,
          'many': 1,
          'names': 1,
          'wasted': 1,
          'typical': 1,
          'demise': 1,
          'large': 1,
          'experienced': 1,
          'npacino': 1,
          'makes': 1,
          'interesting': 1,
          'progress': 1,
          'nyou': 1,
          'begin': 1,
          'identify': 1,
          'morals': 1,
          'striving': 1,
          'nbut': 1,
          'often': 1,
          'felt': 1,
          'another': 1,
          'play': 1,
          'thing': 1,
          'could': 1,
          'weave': 1,
          'dynamics': 1,
          'watchable': 1,
          'disappointing': 1,
          'plot': 1,
          'characters': 1,
          'take': 1,
          'excessive': 1,
          'filmmaking': 1,
          'technique': 1,
          'distant': 1,
          'nneg': 1}),
 Counter({'god': 9,
          'film': 8,
          'school': 7,
          'nthe': 4,
          'family': 4,
          'nthis': 4,
          'search': 4,
          'one': 3,
          'grandfather': 3,
          'like': 3,
          'catholic': 3,
          'well': 3,
          'joseph': 3,
          'thats': 3,
          'parochial': 3,
          'hokum': 3,
          'everyone': 2,
          'found': 2,
          'child': 2,
          'almost': 2,
          'beals': 2,
          'nice': 2,
          'without': 2,
          'sister': 2,
          'children': 2,
          'death': 2,
          'nhis': 2,
          'stuff': 2,
          'age': 2,
          'look': 2,
          'better': 2,
          'place': 2,
          'wears': 2,
          'baseball': 2,
          'boy': 2,
          'real': 2,
          'next': 2,
          'hollywood': 2,
          'angel': 2,
          'right': 2,
          'wellconceived': 1,
          'ultra': 1,
          'sugary': 1,
          'comingofage': 1,
          'include': 1,
          'sappy': 1,
          'digestion': 1,
          'njoseph': 1,
          'cross': 1,
          'joshua': 1,
          'beal': 1,
          '10yearold': 1,
          'saddened': 1,
          'recent': 1,
          'loss': 1,
          'loggia': 1,
          'bone': 1,
          'marrow': 1,
          'cancer': 1,
          'nloggia': 1,
          'wonderful': 1,
          'relating': 1,
          'wholesome': 1,
          'manner': 1,
          'saves': 1,
          'drowning': 1,
          'syrup': 1,
          'sitcom': 1,
          'idyllic': 1,
          'affluent': 1,
          'properly': 1,
          'religious': 1,
          'fanatical': 1,
          'father': 1,
          'denis': 1,
          'leary': 1,
          'wife': 1,
          'dana': 1,
          'delany': 1,
          'successful': 1,
          'doctors': 1,
          'julia': 1,
          'stiles': 1,
          'plays': 1,
          'joshuas': 1,
          'older': 1,
          'needling': 1,
          'younger': 1,
          'brother': 1,
          'also': 1,
          'showing': 1,
          'really': 1,
          'cares': 1,
          'seemingly': 1,
          'conceived': 1,
          'heaven': 1,
          'living': 1,
          'south': 1,
          'philadelphia': 1,
          'sending': 1,
          'wellrun': 1,
          'njoshua': 1,
          'protagonist': 1,
          'narrator': 1,
          'yarn': 1,
          'handsome': 1,
          'sweet': 1,
          'intelligent': 1,
          'friendly': 1,
          'endearing': 1,
          'relates': 1,
          'nuns': 1,
          'priests': 1,
          'talks': 1,
          'politely': 1,
          'wellmeaning': 1,
          'parents': 1,
          'nall': 1,
          'mawkish': 1,
          'interplay': 1,
          'makes': 1,
          'nauseating': 1,
          'watch': 1,
          'plot': 1,
          'arises': 1,
          'problem': 1,
          'coping': 1,
          'beloved': 1,
          'promised': 1,
          'forever': 1,
          'answer': 1,
          'pretty': 1,
          'heady': 1,
          'youngster': 1,
          'way': 1,
          'sometimes': 1,
          'takes': 1,
          'us': 1,
          'nowhere': 1,
          'friend': 1,
          'david': 1,
          'reifsnyder': 1,
          'says': 1,
          'doesnt': 1,
          'exist': 1,
          'nnow': 1,
          'smart': 1,
          'kid': 1,
          'nbut': 1,
          'looks': 1,
          'usual': 1,
          'places': 1,
          'start': 1,
          'attends': 1,
          'none': 1,
          'teachers': 1,
          'kindhearted': 1,
          'terry': 1,
          'rosie': 1,
          'odonnell': 1,
          'philly': 1,
          'hat': 1,
          'equates': 1,
          'jesus': 1,
          'stories': 1,
          'making': 1,
          'cleanup': 1,
          'hitter': 1,
          'opinion': 1,
          'wasnt': 1,
          'big': 1,
          'tv': 1,
          'star': 1,
          'would': 1,
          'vocation': 1,
          'teacher': 1,
          'convincing': 1,
          'nthroughout': 1,
          'saved': 1,
          'answering': 1,
          'tough': 1,
          'sic': 1,
          'nquestion': 1,
          'bell': 1,
          'rings': 1,
          'end': 1,
          'class': 1,
          'nnothing': 1,
          'much': 1,
          'happens': 1,
          'parody': 1,
          'though': 1,
          'visiting': 1,
          'cardinal': 1,
          'able': 1,
          'talk': 1,
          'gentle': 1,
          'criticism': 1,
          'attempted': 1,
          'nwhat': 1,
          'comes': 1,
          'play': 1,
          'designed': 1,
          'upset': 1,
          'anyone': 1,
          'reassuring': 1,
          'encounter': 1,
          'live': 1,
          'blond': 1,
          'little': 1,
          'dressed': 1,
          'uniform': 1,
          'innocuous': 1,
          'smile': 1,
          'goodygoody': 1,
          'ends': 1,
          'ntells': 1,
          'quest': 1,
          'ended': 1,
          'apparently': 1,
          'angels': 1,
          'dont': 1,
          'wings': 1,
          'approachable': 1,
          'nmaybe': 1,
          'another': 1,
          'road': 1,
          'part': 1,
          'final': 1,
          'straw': 1,
          'couldnt': 1,
          'swallow': 1,
          'goo': 1,
          'nas': 1,
          'flopped': 1,
          'commercially': 1,
          'sixth': 1,
          'sense': 1,
          'pared': 1,
          'schmaltz': 1,
          'came': 1,
          'smelling': 1,
          'rose': 1,
          'nthough': 1,
          'cleverness': 1,
          'scripts': 1,
          'director': 1,
          'loaded': 1,
          'learned': 1,
          'hide': 1,
          'nwell': 1,
          'bless': 1,
          'picture': 1,
          'room': 1,
          'nits': 1,
          'bad': 1,
          'nothing': 1,
          'relevent': 1,
          'even': 1,
          'truthful': 1,
          'say': 1,
          'elementary': 1,
          'matter': 1,
          'nand': 1,
          'theyre': 1,
          'good': 1,
          'words': 1,
          'nyet': 1,
          'meant': 1,
          'benign': 1,
          'message': 1,
          'heart': 1,
          'nfor': 1,
          'want': 1,
          'see': 1,
          'something': 1,
          'soft': 1,
          'bite': 1,
          'nneg': 1}),
 Counter({'nthe': 15,
          'earth': 10,
          'movie': 9,
          'battlefield': 8,
          'psychlos': 7,
          'every': 6,
          'plot': 5,
          'n': 5,
          'action': 4,
          'psychlo': 4,
          'johnny': 4,
          'terl': 4,
          'travolta': 4,
          'nhe': 4,
          'really': 4,
          'year': 3,
          'much': 3,
          'want': 3,
          'like': 3,
          'possible': 3,
          'planet': 3,
          'know': 3,
          'head': 3,
          'big': 3,
          'take': 3,
          'hes': 3,
          'nhow': 3,
          'nearly': 3,
          'hell': 3,
          'going': 3,
          'shot': 3,
          'didnt': 3,
          'nit': 2,
          'syndrome': 2,
          'witnessing': 2,
          'disaster': 2,
          'bad': 2,
          'dialogue': 2,
          'whole': 2,
          'funny': 2,
          'wants': 2,
          'dont': 2,
          'even': 2,
          'id': 2,
          'probably': 2,
          'apes': 2,
          'aliens': 2,
          'human': 2,
          'humans': 2,
          'lead': 2,
          'give': 2,
          'knowledge': 2,
          'language': 2,
          'technology': 2,
          'ridiculous': 2,
          'nso': 2,
          'mining': 2,
          'go': 2,
          'plans': 2,
          'gold': 2,
          'nof': 2,
          'course': 2,
          'things': 2,
          'scientology': 2,
          'hubbards': 2,
          'cackling': 2,
          'nall': 2,
          'makes': 2,
          'supposed': 2,
          'kind': 2,
          'nits': 2,
          'machine': 2,
          'must': 2,
          'survive': 2,
          'time': 2,
          'watch': 2,
          'one': 2,
          'best': 1,
          'comedy': 1,
          'prospect': 1,
          'horrifying': 1,
          'consider': 1,
          'nbad': 1,
          'struck': 1,
          'proclaimed': 1,
          'train': 1,
          'wreck': 1,
          'critical': 1,
          'popular': 1,
          'circles': 1,
          'felt': 1,
          'masochistic': 1,
          'urge': 1,
          'see': 1,
          'firsthand': 1,
          'nis': 1,
          'advertised': 1,
          'noh': 1,
          'yes': 1,
          'incomprehensible': 1,
          'acting': 1,
          'atrocious': 1,
          'special': 1,
          'effects': 1,
          'mediocre': 1,
          'dull': 1,
          'implausibilities': 1,
          'legion': 1,
          'cringeinducing': 1,
          'package': 1,
          'serious': 1,
          'irritating': 1,
          'ni': 1,
          'continue': 1,
          'reviewing': 1,
          'purge': 1,
          'atrocity': 1,
          'mind': 1,
          'soon': 1,
          'read': 1,
          'thrashing': 1,
          'sarcastic': 1,
          'glory': 1,
          'premise': 1,
          'basically': 1,
          'ripoff': 1,
          'minus': 1,
          'philosophical': 1,
          'discussion': 1,
          'plus': 1,
          'race': 1,
          'evil': 1,
          '3000': 1,
          'conquered': 1,
          'population': 1,
          'enslaved': 1,
          'nonly': 1,
          'handful': 1,
          'escaped': 1,
          'radiationrich': 1,
          'areas': 1,
          'escape': 1,
          'live': 1,
          'lives': 1,
          'fear': 1,
          'none': 1,
          'man': 1,
          'goodboy': 1,
          'tyler': 1,
          'barry': 1,
          'pepper': 1,
          'ventures': 1,
          'outworld': 1,
          'captured': 1,
          'nthere': 1,
          'confronts': 1,
          'security': 1,
          'ugly': 1,
          'klingonlooking': 1,
          'creature': 1,
          'called': 1,
          'john': 1,
          'npressed': 1,
          'slavery': 1,
          'vows': 1,
          'revolution': 1,
          'back': 1,
          'nmeanwhile': 1,
          'faced': 1,
          'problems': 1,
          'recently': 1,
          'learned': 1,
          'stuck': 1,
          'living': 1,
          'hates': 1,
          'rest': 1,
          'career': 1,
          'pissed': 1,
          'boss': 1,
          'sleeping': 1,
          'mans': 1,
          'daughter': 1,
          'decides': 1,
          'gets': 1,
          'mananimal': 1,
          'expedition': 1,
          'places': 1,
          'cant': 1,
          'nterl': 1,
          'keep': 1,
          'mined': 1,
          'plan': 1,
          'doesnt': 1,
          'work': 1,
          'many': 1,
          'wrong': 1,
          'begin': 1,
          'whose': 1,
          'hollywood': 1,
          'clout': 1,
          'brought': 1,
          'cinematic': 1,
          'version': 1,
          'guru': 1,
          'l': 1,
          'ron': 1,
          'scifi': 1,
          'novel': 1,
          'previews': 1,
          'constant': 1,
          'shots': 1,
          'makeupladen': 1,
          'lex': 1,
          'luthor': 1,
          'several': 1,
          'audience': 1,
          'members': 1,
          'remarking': 1,
          'thinking': 1,
          'nothing': 1,
          'stem': 1,
          'remarks': 1,
          'trailers': 1,
          'full': 1,
          'force': 1,
          'cackles': 1,
          'line': 1,
          'scene': 1,
          'hilariously': 1,
          'overwrought': 1,
          'script': 1,
          'clumsily': 1,
          'stumbles': 1,
          'political': 1,
          'commentary': 1,
          'satire': 1,
          'corporate': 1,
          'america': 1,
          'ceos': 1,
          'generally': 1,
          'laugh': 1,
          'maniacally': 1,
          'denying': 1,
          'pay': 1,
          'raises': 1,
          'employees': 1,
          'promoted': 1,
          'youre': 1,
          'nfwahahahahahahahaha': 1,
          'surprise': 1,
          'loses': 1,
          'idiot': 1,
          'breaks': 1,
          'supervillain': 1,
          'rule': 1,
          'book': 1,
          'underestimates': 1,
          'enemies': 1,
          'assuming': 1,
          'win': 1,
          'smarter': 1,
          'uses': 1,
          'word': 1,
          'leverage': 1,
          'sort': 1,
          'scientologist': 1,
          'mantra': 1,
          'nnot': 1,
          'content': 1,
          'james': 1,
          'bond': 1,
          'villain': 1,
          'route': 1,
          'explaining': 1,
          'hero': 1,
          'hooks': 1,
          'gives': 1,
          'around': 1,
          'first': 1,
          'place': 1,
          'beyond': 1,
          'appears': 1,
          'shocked': 1,
          'points': 1,
          'gun': 1,
          'nno': 1,
          'wonder': 1,
          'guy': 1,
          'never': 1,
          'got': 1,
          'promotion': 1,
          'inconsistencies': 1,
          'numerous': 1,
          'mention': 1,
          'nwhy': 1,
          'build': 1,
          'base': 1,
          'slaves': 1,
          'wear': 1,
          'little': 1,
          'breathing': 1,
          'apparatuses': 1,
          'come': 1,
          'wasting': 1,
          'doors': 1,
          'fort': 1,
          'knox': 1,
          'wide': 1,
          'open': 1,
          'world': 1,
          'fighter': 1,
          'jets': 1,
          'sitting': 1,
          'hangar': 1,
          '1': 1,
          '000': 1,
          'years': 1,
          'nand': 1,
          'previously': 1,
          'braindead': 1,
          'cavemen': 1,
          'learn': 1,
          'fly': 1,
          'quickly': 1,
          'ntheres': 1,
          'lot': 1,
          'scratch': 1,
          'ones': 1,
          'nbring': 1,
          'scorecard': 1,
          'track': 1,
          'holes': 1,
          'ndirector': 1,
          'roger': 1,
          'christian': 1,
          'shoots': 1,
          'distracting': 1,
          'way': 1,
          'tilting': 1,
          'sideways': 1,
          'discernible': 1,
          'reason': 1,
          'characters': 1,
          'appear': 1,
          'standing': 1,
          'walls': 1,
          'awfully': 1,
          'difficult': 1,
          'tilt': 1,
          'ordinary': 1,
          'passages': 1,
          'sequences': 1,
          'atrociously': 1,
          'edited': 1,
          'turned': 1,
          'endless': 1,
          'slowmotion': 1,
          'parade': 1,
          'drains': 1,
          'potential': 1,
          'excitement': 1,
          'nare': 1,
          'hard': 1,
          'construct': 1,
          'nmy': 1,
          'respect': 1,
          'lightweight': 1,
          'directors': 1,
          'grown': 1,
          'leaps': 1,
          'bounds': 1,
          'badly': 1,
          'sequence': 1,
          'nthis': 1,
          'absolute': 1,
          'headache': 1,
          'selection': 1,
          'editing': 1,
          'quite': 1,
          'frankly': 1,
          'sense': 1,
          'nfor': 1,
          'earths': 1,
          'running': 1,
          'happening': 1,
          'anything': 1,
          'finding': 1,
          'events': 1,
          'stupid': 1,
          'illogical': 1,
          'though': 1,
          'certainly': 1,
          'idea': 1,
          'nwhen': 1,
          'pieced': 1,
          'together': 1,
          'later': 1,
          'look': 1,
          'better': 1,
          'nheres': 1,
          'already': 1,
          'worst': 1,
          'something': 1,
          'inept': 1,
          'top': 1,
          'thing': 1,
          'comfort': 1,
          'film': 1,
          'suckered': 1,
          'joining': 1,
          'church': 1,
          'nin': 1,
          'fact': 1,
          'think': 1,
          'cult': 1,
          'would': 1,
          'distance': 1,
          'bomb': 1,
          'fast': 1,
          'nthatll': 1,
          'teach': 1,
          'nneg': 1}),
 Counter({'silverman': 4,
          'judith': 3,
          'darrens': 3,
          'one': 3,
          'saving': 3,
          'diamond': 2,
          'wayne': 2,
          'zahn': 2,
          'j': 2,
          'black': 2,
          'darren': 2,
          'biggs': 2,
          'american': 2,
          'pie': 2,
          'amanda': 2,
          'ntheyre': 2,
          'love': 2,
          'detmer': 2,
          'hit': 2,
          'comedy': 2,
          'films': 2,
          'long': 1,
          'time': 1,
          'buddies': 1,
          'neil': 1,
          'tribute': 1,
          'band': 1,
          'members': 1,
          'steve': 1,
          'happy': 1,
          'texas': 1,
          'jack': 1,
          'high': 1,
          'fidelity': 1,
          'watch': 1,
          'horror': 1,
          'third': 1,
          'mate': 1,
          'jason': 1,
          'disappears': 1,
          'thumb': 1,
          'new': 1,
          'fiance': 1,
          'peet': 1,
          'whole': 1,
          'nine': 1,
          'yards': 1,
          'controlling': 1,
          'psychiatrist': 1,
          'doubly': 1,
          'troubled': 1,
          'return': 1,
          'sandy': 1,
          'perkins': 1,
          'final': 1,
          'destination': 1,
          'returns': 1,
          'home': 1,
          'town': 1,
          'doesnt': 1,
          'cause': 1,
          'ripple': 1,
          'devotion': 1,
          'ntheres': 1,
          'thing': 1,
          'think': 1,
          'kidnap': 1,
          'fake': 1,
          'death': 1,
          'nwritten': 1,
          'hank': 1,
          'nelken': 1,
          'greg': 1,
          'depaul': 1,
          'seeing': 1,
          'friend': 1,
          'engaged': 1,
          'wrong': 1,
          'woman': 1,
          'directed': 1,
          'director': 1,
          'dennis': 1,
          'dugan': 1,
          'big': 1,
          'daddy': 1,
          'brain': 1,
          'donors': 1,
          'problem': 1,
          'child': 1,
          'nits': 1,
          'dismal': 1,
          'thirdrate': 1,
          'farrelly': 1,
          'brothers': 1,
          'rip': 1,
          'attempts': 1,
          'milk': 1,
          'humor': 1,
          'inspired': 1,
          'bits': 1,
          'whimsy': 1,
          'interest': 1,
          'come': 1,
          'family': 1,
          'circus': 1,
          'freaks': 1,
          'become': 1,
          'nun': 1,
          'ngross': 1,
          'gags': 1,
          'include': 1,
          'visualization': 1,
          'getting': 1,
          'butt': 1,
          'cheek': 1,
          'implants': 1,
          'n': 1,
          'almost': 1,
          'saved': 1,
          'stars': 1,
          'nthese': 1,
          'two': 1,
          'comically': 1,
          'talented': 1,
          'take': 1,
          'bad': 1,
          'material': 1,
          'still': 1,
          'deliver': 1,
          'goods': 1,
          'animal': 1,
          'house': 1,
          'mode': 1,
          'rest': 1,
          'film': 1,
          'trawls': 1,
          'along': 1,
          'comes': 1,
          'empty': 1,
          'njason': 1,
          'attribute': 1,
          'entire': 1,
          'career': 1,
          'luck': 1,
          'cast': 1,
          'smash': 1,
          'npeet': 1,
          'shows': 1,
          'physical': 1,
          'moves': 1,
          'flair': 1,
          'slaps': 1,
          'brave': 1,
          'sweet': 1,
          'smile': 1,
          'onto': 1,
          'face': 1,
          'soldiers': 1,
          'nr': 1,
          'lee': 1,
          'ermey': 1,
          'full': 1,
          'metal': 1,
          'jacket': 1,
          'note': 1,
          'embarrassing': 1,
          'performance': 1,
          'psychopathic': 1,
          'exfootball': 1,
          'coach': 1,
          'nneil': 1,
          'appears': 1,
          'climax': 1,
          'miraculously': 1,
          'enlivens': 1,
          'proceedings': 1,
          'belting': 1,
          'old': 1,
          'standards': 1,
          'nneg': 1}),
 Counter({'movie': 20,
          'really': 7,
          'well': 5,
          'one': 5,
          'thing': 5,
          'ni': 4,
          'plot': 4,
          'nanother': 4,
          'happen': 4,
          'characters': 4,
          'effects': 3,
          'many': 3,
          'also': 3,
          'times': 3,
          'tell': 3,
          'know': 3,
          'little': 3,
          'nthe': 3,
          'see': 3,
          'thats': 2,
          'found': 2,
          'flaws': 2,
          'leave': 2,
          'isnt': 2,
          'nbut': 2,
          'wonder': 2,
          'stretched': 2,
          'nand': 2,
          'scenes': 2,
          'repeated': 2,
          'nthere': 2,
          'short': 2,
          'somewhere': 2,
          'middle': 2,
          'things': 2,
          'way': 2,
          'fairly': 2,
          'nthis': 2,
          'predictable': 2,
          'nyou': 2,
          'action': 2,
          'add': 2,
          'type': 2,
          'wouldnt': 2,
          'whole': 2,
          'package': 2,
          'done': 2,
          'looks': 2,
          'may': 2,
          'worth': 2,
          'theaters': 2,
          'think': 2,
          'people': 2,
          'stellar': 1,
          'nbecause': 1,
          'watching': 1,
          'gaps': 1,
          'simple': 1,
          'logic': 1,
          'nfor': 1,
          'white': 1,
          'leading': 1,
          'actor': 1,
          'black': 1,
          'daughter': 1,
          'curiosity': 1,
          'saying': 1,
          'possible': 1,
          'nknow': 1,
          'sections': 1,
          'painfully': 1,
          'certain': 1,
          'essentially': 1,
          'slight': 1,
          'variations': 1,
          'scene': 1,
          'horribly': 1,
          'thinking': 1,
          'nok': 1,
          'enough': 1,
          'already': 1,
          'get': 1,
          'nthings': 1,
          'magically': 1,
          'prelude': 1,
          'anything': 1,
          'sort': 1,
          'noticed': 1,
          'towards': 1,
          'end': 1,
          'vanished': 1,
          'without': 1,
          'trace': 1,
          'major': 1,
          'beginning': 1,
          'almost': 1,
          'final': 1,
          'story': 1,
          'definitely': 1,
          'given': 1,
          'moment': 1,
          'ngranted': 1,
          'hard': 1,
          'omit': 1,
          'blatant': 1,
          'sits': 1,
          'stares': 1,
          'nalso': 1,
          'several': 1,
          'cliques': 1,
          'nit': 1,
          'gets': 1,
          'boring': 1,
          'truth': 1,
          'neven': 1,
          'though': 1,
          'still': 1,
          'going': 1,
          'point': 1,
          'might': 1,
          'main': 1,
          'character': 1,
          'supposed': 1,
          'quiet': 1,
          'chaos': 1,
          'mathematician': 1,
          'shoot': 1,
          'hero': 1,
          'nsome': 1,
          'proper': 1,
          'roles': 1,
          'acting': 1,
          'fine': 1,
          'dont': 1,
          'seem': 1,
          'nif': 1,
          'base': 1,
          'review': 1,
          'totally': 1,
          'rate': 1,
          'highly': 1,
          'good': 1,
          'overlook': 1,
          'special': 1,
          'amazing': 1,
          'cant': 1,
          'dinosaurs': 1,
          'created': 1,
          'like': 1,
          'live': 1,
          'instances': 1,
          'course': 1,
          'fake': 1,
          'able': 1,
          'say': 1,
          'creature': 1,
          'wasnt': 1,
          'filming': 1,
          'extinct': 1,
          'destruction': 1,
          'nwow': 1,
          'masterpieces': 1,
          'nwell': 1,
          'choreographed': 1,
          'along': 1,
          'dinos': 1,
          'make': 1,
          'reasons': 1,
          'long': 1,
          'packed': 1,
          'box': 1,
          'office': 1,
          'nunfortunately': 1,
          'take': 1,
          'away': 1,
          'fifth': 1,
          'element': 1,
          'alas': 1,
          'cynical': 1,
          'age': 1,
          'seeing': 1,
          'funny': 1,
          'moments': 1,
          'ngo': 1,
          'matinee': 1,
          'must': 1,
          'full': 1,
          'price': 1,
          'ask': 1,
          'none': 1,
          'side': 1,
          'note': 1,
          'although': 1,
          'opinion': 1,
          'best': 1,
          'marketed': 1,
          'shown': 1,
          'toronto': 1,
          'opening': 1,
          'weekend': 1,
          'nothing': 1,
          'stupid': 1,
          '10': 1,
          'theater': 1,
          'playing': 1,
          'around': 1,
          'clock': 1,
          'want': 1,
          'money': 1,
          'badly': 1,
          'activity': 1,
          'hurts': 1,
          'industry': 1,
          'let': 1,
          'movies': 1,
          'chance': 1,
          'much': 1,
          'play': 1,
          'would': 1,
          'succeed': 1,
          'even': 1,
          'worst': 1,
          'ever': 1,
          'made': 1,
          'thought': 1,
          'id': 1,
          'put': 1,
          'deflate': 1,
          'hype': 1,
          'flick': 1,
          'nits': 1,
          'bad': 1,
          'great': 1,
          'either': 1,
          'hope': 1,
          'realize': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'film': 6,
          'story': 5,
          'paulina': 5,
          'nthe': 4,
          'would': 3,
          'filmmakers': 2,
          'tells': 2,
          'times': 2,
          'nthis': 2,
          'heart': 2,
          'vicky': 2,
          'life': 2,
          'npaulina': 2,
          'ni': 2,
          'made': 2,
          'bad': 2,
          'bloody': 2,
          'scene': 2,
          'bus': 2,
          'produced': 1,
          'shoestring': 1,
          'budget': 1,
          'couple': 1,
          'hardworking': 1,
          'genuine': 1,
          'tragedy': 1,
          'easy': 1,
          'path': 1,
          'reviewer': 1,
          'hated': 1,
          'give': 1,
          'pass': 1,
          'ntoss': 1,
          'usual': 1,
          'objectivity': 1,
          'ignore': 1,
          'many': 1,
          'checked': 1,
          'watch': 1,
          'viewing': 1,
          'forget': 1,
          'unbearable': 1,
          'sit': 1,
          'find': 1,
          'meaningless': 1,
          'way': 1,
          'compliment': 1,
          'course': 1,
          'service': 1,
          'readers': 1,
          'least': 1,
          'youll': 1,
          'avoid': 1,
          'hate': 1,
          'mail': 1,
          'movies': 1,
          'fans': 1,
          'nthus': 1,
          'heavy': 1,
          'review': 1,
          'confused': 1,
          'recent': 1,
          'paulie': 1,
          'talking': 1,
          'parrot': 1,
          'ndirected': 1,
          'funari': 1,
          'labor': 1,
          'intense': 1,
          'love': 1,
          'spent': 1,
          'last': 1,
          'one': 1,
          'third': 1,
          'blends': 1,
          'documentary': 1,
          'footage': 1,
          'historic': 1,
          'fanciful': 1,
          'recreations': 1,
          'relate': 1,
          'bitterly': 1,
          'sad': 1,
          'true': 1,
          'cruz': 1,
          'suarez': 1,
          'maid': 1,
          'vickys': 1,
          'household': 1,
          'young': 1,
          'got': 1,
          'learn': 1,
          'films': 1,
          'background': 1,
          'attended': 1,
          'screening': 1,
          'two': 1,
          'women': 1,
          'present': 1,
          'nfor': 1,
          'without': 1,
          'context': 1,
          'reaction': 1,
          'may': 1,
          'parody': 1,
          'indie': 1,
          'acting': 1,
          'amateurish': 1,
          'maudlin': 1,
          'visual': 1,
          'appeal': 1,
          'home': 1,
          'ngrainy': 1,
          'overexposed': 1,
          'shot': 1,
          '16mm': 1,
          'videotape': 1,
          'little': 1,
          'recommend': 1,
          'nconfusingly': 1,
          'composed': 1,
          'jumps': 1,
          'jarringly': 1,
          'nquite': 1,
          'full': 1,
          'horrific': 1,
          'images': 1,
          'seems': 1,
          'designed': 1,
          'shock': 1,
          'repulse': 1,
          'us': 1,
          'nwhy': 1,
          'else': 1,
          'include': 1,
          'completely': 1,
          'nude': 1,
          '8yearold': 1,
          'nanother': 1,
          'teenage': 1,
          'fondled': 1,
          'man': 1,
          'sitting': 1,
          'next': 1,
          'nin': 1,
          'retaliation': 1,
          'bites': 1,
          'part': 1,
          'finger': 1,
          'covers': 1,
          'bucket': 1,
          'blood': 1,
          'passengers': 1,
          'view': 1,
          'girl': 1,
          'minds': 1,
          'everything': 1,
          'saint': 1,
          'sinner': 1,
          'none': 1,
          'example': 1,
          'sees': 1,
          'aztec': 1,
          'priestess': 1,
          'holding': 1,
          'large': 1,
          'cut': 1,
          'body': 1,
          'lugubrious': 1,
          'tale': 1,
          'raped': 1,
          'beaten': 1,
          'ncertainly': 1,
          'endure': 1,
          'miserable': 1,
          'nbut': 1,
          'guarantee': 1,
          'necessarily': 1,
          'good': 1,
          'felt': 1,
          'trapped': 1,
          'theater': 1,
          'watching': 1,
          'nonly': 1,
          'opportunity': 1,
          'talk': 1,
          'afterwards': 1,
          'bearable': 1,
          'runs': 1,
          '1': 1,
          '28': 1,
          'spanish': 1,
          'english': 1,
          'subtitles': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'nudity': 1,
          'acceptable': 1,
          'older': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'jadzia': 4,
          'connelly': 3,
          '_polish_wedding_': 3,
          'child': 3,
          'nthe': 3,
          'family': 3,
          'bolek': 3,
          'hala': 3,
          'one': 3,
          'affair': 3,
          'would': 2,
          'olin': 2,
          'byrne': 2,
          'danes': 2,
          'sons': 2,
          'theres': 2,
          'shes': 2,
          'sadness': 2,
          'leads': 2,
          'involving': 2,
          'russell': 2,
          'films': 2,
          'conflict': 2,
          'resolved': 2,
          'viewers': 2,
          'something': 2,
          'years': 1,
          'summer': 1,
          'movie': 1,
          'preview': 1,
          'issue': 1,
          '_entertainment_weekly_': 1,
          'theresa': 1,
          'described': 1,
          'writingdirecting': 1,
          'debut': 1,
          'quite': 1,
          'become': 1,
          'thought': 1,
          'none': 1,
          'wonders': 1,
          'exactly': 1,
          'originally': 1,
          'mind': 1,
          'jumbled': 1,
          'film': 1,
          'comedydrama': 1,
          'appears': 1,
          'doomed': 1,
          'basic': 1,
          'elements': 1,
          'center': 1,
          'pzoniaks': 1,
          'consists': 1,
          'mother': 1,
          'lena': 1,
          'father': 1,
          'gabriel': 1,
          'sole': 1,
          'daughter': 1,
          'claire': 1,
          'four': 1,
          'varying': 1,
          'degrees': 1,
          'facelessness': 1,
          'nits': 1,
          'large': 1,
          'sympathetic': 1,
          'whole': 1,
          'bunch': 1,
          'certainly': 1,
          'primary': 1,
          'trio': 1,
          'njadzia': 1,
          'takes': 1,
          'pride': 1,
          'building': 1,
          'maintaining': 1,
          'home': 1,
          'kind': 1,
          'hypocrite': 1,
          'since': 1,
          'carrying': 1,
          'businessman': 1,
          'rade': 1,
          'serbedzija': 1,
          'nher': 1,
          'excuse': 1,
          'neglect': 1,
          'passive': 1,
          'wimp': 1,
          'connect': 1,
          'frustration': 1,
          'nalso': 1,
          'could': 1,
          'possibly': 1,
          'pay': 1,
          'little': 1,
          'attention': 1,
          'saucy': 1,
          'sexy': 1,
          'nhala': 1,
          'spoiled': 1,
          'selfcentered': 1,
          'high': 1,
          'school': 1,
          'dropout': 1,
          'whose': 1,
          'reckless': 1,
          'sexual': 1,
          'experimentation': 1,
          'predictably': 1,
          'pregnancy': 1,
          'nwith': 1,
          'unappealing': 1,
          'set': 1,
          'characters': 1,
          'surprise': 1,
          '_polish_wedding_s': 1,
          'plot': 1,
          'complications': 1,
          'far': 1,
          'nnaturally': 1,
          'like': 1,
          'marry': 1,
          'young': 1,
          'cop': 1,
          'schuster': 1,
          'adam': 1,
          'trese': 1,
          'fathered': 1,
          'refuses': 1,
          'make': 1,
          'commitment': 1,
          'nhohum': 1,
          'nanother': 1,
          'complication': 1,
          'decidedly': 1,
          'unvirginal': 1,
          'selected': 1,
          'crown': 1,
          'statue': 1,
          'virgin': 1,
          'mary': 1,
          'first': 1,
          'played': 1,
          'laughs': 1,
          'inexplicably': 1,
          'profound': 1,
          'statement': 1,
          'climaxwhich': 1,
          'ironically': 1,
          'funnier': 1,
          'lame': 1,
          'attempts': 1,
          'humor': 1,
          'painfully': 1,
          'labored': 1,
          'slapstick': 1,
          'attempt': 1,
          'charge': 1,
          'beat': 1,
          'nthat': 1,
          'scene': 1,
          'number': 1,
          'writing': 1,
          'miscues': 1,
          'jadziabolek': 1,
          'overly': 1,
          'pat': 1,
          'way': 1,
          'unfamiliar': 1,
          'sitcom': 1,
          'halarussell': 1,
          'isnt': 1,
          'contrived': 1,
          'manner': 1,
          'ultimate': 1,
          'resolution': 1,
          'leave': 1,
          'wondering': 1,
          'missed': 1,
          'nand': 1,
          'atrocious': 1,
          'dialogue': 1,
          'sure': 1,
          'supposed': 1,
          'ridiculous': 1,
          'sound': 1,
          'look': 1,
          'pickles': 1,
          'njust': 1,
          'looking': 1,
          'gives': 1,
          'great': 1,
          'nas': 1,
          'misguided': 1,
          'letdown': 1,
          'considering': 1,
          'strong': 1,
          'performances': 1,
          'especially': 1,
          'fiery': 1,
          'nthey': 1,
          'obviously': 1,
          'believed': 1,
          'materiala': 1,
          'faith': 1,
          'audiences': 1,
          'hardpressed': 1,
          'share': 1,
          'nneg': 1}),
 Counter({'farley': 5,
          'almost': 4,
          'heroes': 4,
          'guest': 3,
          'man': 3,
          'humor': 3,
          'comedy': 3,
          'nthe': 3,
          'doesnt': 3,
          'explorers': 3,
          'perry': 3,
          'christopher': 2,
          'execution': 2,
          'nthis': 2,
          'picture': 2,
          'example': 2,
          'poor': 2,
          'kind': 2,
          'movies': 2,
          'film': 2,
          'script': 2,
          'hunt': 2,
          'american': 2,
          'named': 2,
          'none': 2,
          'way': 2,
          'kevin': 2,
          'dunn': 2,
          'takes': 2,
          'nfarley': 2,
          'eagle': 2,
          'success': 2,
          'nas': 2,
          'big': 2,
          'didnt': 2,
          'far': 2,
          'see': 2,
          'level': 2,
          'several': 1,
          'days': 1,
          'seen': 1,
          'movie': 1,
          'im': 1,
          'still': 1,
          'trying': 1,
          'determine': 1,
          'director': 1,
          'whose': 1,
          'sense': 1,
          'usually': 1,
          'appreciate': 1,
          'found': 1,
          'funny': 1,
          'either': 1,
          'concept': 1,
          'dreadful': 1,
          'motion': 1,
          'lowbrow': 1,
          'period': 1,
          'piece': 1,
          'terrible': 1,
          'production': 1,
          'values': 1,
          'exceptionally': 1,
          'laughstojokes': 1,
          'ratio': 1,
          'ntheres': 1,
          'desperation': 1,
          'approach': 1,
          'reveals': 1,
          'makers': 1,
          'uncertainty': 1,
          'entertaining': 1,
          'material': 1,
          'manic': 1,
          'style': 1,
          'betrays': 1,
          'lastditch': 1,
          'attempt': 1,
          'hide': 1,
          'flaws': 1,
          'failed': 1,
          'premise': 1,
          'sound': 1,
          'especially': 1,
          'amusing': 1,
          'begin': 1,
          'tells': 1,
          'tale': 1,
          'two': 1,
          'effeminate': 1,
          'leslie': 1,
          'edwards': 1,
          'matthew': 1,
          'uncouth': 1,
          'bartholomew': 1,
          'chris': 1,
          'racing': 1,
          'lewis': 1,
          'clark': 1,
          'trip': 1,
          'northwest': 1,
          'nedwards': 1,
          'accompanied': 1,
          'kinds': 1,
          'weirdoes': 1,
          'find': 1,
          'road': 1,
          'albeit': 1,
          'early19th': 1,
          'century': 1,
          'variety': 1,
          'including': 1,
          'frenchman': 1,
          'guy': 1,
          'fontenot': 1,
          'claims': 1,
          'speak': 1,
          'hundreds': 1,
          'languages': 1,
          'prove': 1,
          'useful': 1,
          'pretty': 1,
          'indian': 1,
          'maiden': 1,
          'turns': 1,
          'obligatory': 1,
          'love': 1,
          'interest': 1,
          'bizarre': 1,
          'suffers': 1,
          'series': 1,
          'debilitating': 1,
          'injuries': 1,
          'nalong': 1,
          'intrepid': 1,
          'encounter': 1,
          'bears': 1,
          'bald': 1,
          'eagles': 1,
          'aging': 1,
          'native': 1,
          'warriors': 1,
          'conquistador': 1,
          'hildago': 1,
          'raves': 1,
          'beautiful': 1,
          'hair': 1,
          'trek': 1,
          'forests': 1,
          'across': 1,
          'snowcapped': 1,
          'rocky': 1,
          'mountains': 1,
          'waterfall': 1,
          'setup': 1,
          'leads': 1,
          'lot': 1,
          'shouting': 1,
          'great': 1,
          'deal': 1,
          'lunacy': 1,
          'laughs': 1,
          'engages': 1,
          'usual': 1,
          'shtick': 1,
          'falling': 1,
          'bellowing': 1,
          'aside': 1,
          'momentarily': 1,
          'diverting': 1,
          'confrontation': 1,
          'heart': 1,
          'seem': 1,
          'nmatthew': 1,
          'one': 1,
          'stars': 1,
          'tvs': 1,
          'friends': 1,
          'modest': 1,
          'romantic': 1,
          'fools': 1,
          'rush': 1,
          'badly': 1,
          'miscast': 1,
          'foil': 1,
          'antidote': 1,
          'runaway': 1,
          'energy': 1,
          'lacks': 1,
          'necessary': 1,
          'edge': 1,
          'proverbial': 1,
          'straight': 1,
          'nim': 1,
          'fan': 1,
          'david': 1,
          'spade': 1,
          'like': 1,
          'tommy': 1,
          'boy': 1,
          'least': 1,
          'worked': 1,
          'well': 1,
          'together': 1,
          'supporting': 1,
          'players': 1,
          'go': 1,
          'makes': 1,
          'fleeting': 1,
          'impression': 1,
          'neugene': 1,
          'levy': 1,
          'wasted': 1,
          'interesting': 1,
          'godzilla': 1,
          'nfrankly': 1,
          'disappointment': 1,
          'something': 1,
          'dumb': 1,
          'ugly': 1,
          'come': 1,
          'brilliant': 1,
          'comic': 1,
          'force': 1,
          'behind': 1,
          'films': 1,
          'spinal': 1,
          'tap': 1,
          'waiting': 1,
          'guffman': 1,
          'nalthough': 1,
          'gets': 1,
          'costumes': 1,
          'right': 1,
          'nearlyinconsequential': 1,
          'substitute': 1,
          'weak': 1,
          'unfunny': 1,
          'special': 1,
          'effects': 1,
          'execrable': 1,
          'nfor': 1,
          'really': 1,
          'blue': 1,
          'screen': 1,
          'work': 1,
          'look': 1,
          'scenes': 1,
          'characters': 1,
          'shooting': 1,
          'rapids': 1,
          'theyre': 1,
          'obviously': 1,
          'getting': 1,
          'buckets': 1,
          'water': 1,
          'thrown': 1,
          'carried': 1,
          'neven': 1,
          'though': 1,
          'stellar': 1,
          'acting': 1,
          'careers': 1,
          'deserve': 1,
          'unfortunate': 1,
          'epitaph': 1,
          'offered': 1,
          'nwhile': 1,
          'outrageous': 1,
          'attempts': 1,
          'may': 1,
          'coax': 1,
          'guffaws': 1,
          '12year': 1,
          'old': 1,
          'boys': 1,
          'falls': 1,
          'sophomoric': 1,
          'fans': 1,
          'say': 1,
          'goodbye': 1,
          'commended': 1,
          'loyalty': 1,
          'since': 1,
          'real': 1,
          'stamina': 1,
          'stay': 1,
          'seated': 1,
          'full': 1,
          'running': 1,
          'length': 1,
          'cinematic': 1,
          'torture': 1,
          'session': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'universe': 4,
          'good': 4,
          'two': 3,
          'masters': 3,
          'movie': 3,
          'actors': 3,
          'figures': 2,
          'nmasters': 2,
          'successful': 2,
          'world': 2,
          'ngiven': 2,
          'would': 2,
          'make': 2,
          'heman': 2,
          'skeletor': 2,
          'either': 2,
          'star': 2,
          'friends': 2,
          'face': 2,
          'worth': 2,
          'langella': 2,
          'films': 2,
          'villain': 2,
          'part': 2,
          'right': 2,
          'nine': 1,
          'started': 1,
          'buying': 1,
          'coolest': 1,
          'toy': 1,
          'local': 1,
          'department': 1,
          'store': 1,
          'pinnacle': 1,
          'action': 1,
          'combined': 1,
          'science': 1,
          'fiction': 1,
          'fantasy': 1,
          'cool': 1,
          'names': 1,
          'like': 1,
          'mekanek': 1,
          'stinkor': 1,
          'came': 1,
          'little': 1,
          'comic': 1,
          'book': 1,
          'read': 1,
          'nof': 1,
          'course': 1,
          'animated': 1,
          'series': 1,
          'produced': 1,
          'filmation': 1,
          'remains': 1,
          'wildly': 1,
          'television': 1,
          'products': 1,
          'history': 1,
          'tremendous': 1,
          'success': 1,
          'toys': 1,
          'cartoon': 1,
          'mention': 1,
          'moderately': 1,
          'spinoff': 1,
          'shera': 1,
          'princess': 1,
          'power': 1,
          'inevitable': 1,
          'production': 1,
          'company': 1,
          'put': 1,
          'together': 1,
          'come': 1,
          'result': 1,
          'trillions': 1,
          'liveaction': 1,
          'nlets': 1,
          'blunt': 1,
          'bad': 1,
          'nthe': 1,
          'story': 1,
          'painfully': 1,
          'dull': 1,
          'mindnumbingly': 1,
          'cliched': 1,
          'hands': 1,
          'wouldnt': 1,
          'guess': 1,
          'take': 1,
          'fight': 1,
          'real': 1,
          'acted': 1,
          'incredibly': 1,
          'untalented': 1,
          'dolph': 1,
          'lundgren': 1,
          'james': 1,
          'tolkan': 1,
          'meg': 1,
          'foster': 1,
          'given': 1,
          'awful': 1,
          'characters': 1,
          'dialogue': 1,
          'cant': 1,
          'help': 1,
          'seem': 1,
          'terrible': 1,
          'nit': 1,
          'extremely': 1,
          'clear': 1,
          'someone': 1,
          'making': 1,
          'wanted': 1,
          'wars': 1,
          'nwe': 1,
          'alien': 1,
          'bounty': 1,
          'hunters': 1,
          'desert': 1,
          'skif': 1,
          'technology': 1,
          'stormtrooper': 1,
          'lookalikes': 1,
          'musical': 1,
          'score': 1,
          'reminiscent': 1,
          'john': 1,
          'williams': 1,
          'deja': 1,
          'vu': 1,
          'polite': 1,
          'term': 1,
          'use': 1,
          'describing': 1,
          'n': 1,
          'blatant': 1,
          'uninspired': 1,
          'ripoff': 1,
          'appear': 1,
          'appropriate': 1,
          'ntv': 1,
          'fans': 1,
          'might': 1,
          'want': 1,
          'check': 1,
          'courtney': 1,
          'cox': 1,
          'monica': 1,
          'robert': 1,
          'duncan': 1,
          'mcneill': 1,
          'lt': 1,
          'paris': 1,
          'trek': 1,
          'voyager': 1,
          'early': 1,
          'careers': 1,
          'well': 1,
          'nso': 1,
          'mindless': 1,
          'submediocrity': 1,
          'anything': 1,
          'watching': 1,
          'nyes': 1,
          'none': 1,
          'incredible': 1,
          'reason': 1,
          'nhis': 1,
          'name': 1,
          'frank': 1,
          'nlangella': 1,
          'always': 1,
          'underrated': 1,
          'hollywood': 1,
          'appearing': 1,
          'countless': 1,
          'years': 1,
          'nhere': 1,
          'plays': 1,
          'piece': 1,
          'ndressed': 1,
          'opulent': 1,
          'black': 1,
          'velvet': 1,
          'robes': 1,
          'bearing': 1,
          'skull': 1,
          'darth': 1,
          'vader': 1,
          'emperor': 1,
          'parts': 1,
          'grim': 1,
          'reaper': 1,
          'character': 1,
          'falls': 1,
          'style': 1,
          'precision': 1,
          'nskeletor': 1,
          'believable': 1,
          'interesting': 1,
          'manages': 1,
          'tread': 1,
          'fine': 1,
          'line': 1,
          'homage': 1,
          'past': 1,
          'startlingly': 1,
          'original': 1,
          'ni': 1,
          'remember': 1,
          'loving': 1,
          'eleven': 1,
          'nat': 1,
          'twenty': 1,
          'difficult': 1,
          'see': 1,
          'nbut': 1,
          'said': 1,
          'blessed': 1,
          'superlative': 1,
          'makes': 1,
          'entire': 1,
          'thing': 1,
          'tedium': 1,
          'remainder': 1,
          'nbesides': 1,
          'year': 1,
          'marks': 1,
          '10th': 1,
          'anniversary': 1,
          'nwatch': 1,
          'laugh': 1,
          'celebrate': 1,
          'nneg': 1}),
 Counter({'gia': 8,
          'film': 7,
          'movie': 6,
          'see': 4,
          'model': 4,
          'hour': 4,
          'nthe': 4,
          'dont': 3,
          'life': 3,
          'interesting': 3,
          'world': 3,
          'drugs': 3,
          'drug': 3,
          'first': 2,
          'nand': 2,
          'eyes': 2,
          'ni': 2,
          'worthy': 2,
          'though': 2,
          'last': 2,
          'woman': 2,
          'fashion': 2,
          'becomes': 2,
          'really': 2,
          'movies': 2,
          'featuring': 2,
          'like': 2,
          'nquite': 2,
          'scenes': 2,
          'lost': 2,
          'end': 2,
          'warning': 2,
          'angelina': 1,
          'jolie': 1,
          'plays': 1,
          'titular': 1,
          'character': 1,
          'socalled': 1,
          'supermodel': 1,
          'right': 1,
          'biggest': 1,
          'hurdle': 1,
          'overcome': 1,
          'anyway': 1,
          'two': 1,
          'ndespite': 1,
          'kept': 1,
          'open': 1,
          'mind': 1,
          'began': 1,
          'watching': 1,
          'nsadly': 1,
          'fears': 1,
          'realized': 1,
          'nits': 1,
          'possible': 1,
          'make': 1,
          'fulllength': 1,
          'person': 1,
          'spends': 1,
          'days': 1,
          'wearing': 1,
          'different': 1,
          'clothes': 1,
          'follows': 1,
          'rise': 1,
          'fall': 1,
          'name': 1,
          'tumultuous': 1,
          'doesnt': 1,
          'particularly': 1,
          'enjoy': 1,
          'nshe': 1,
          'famous': 1,
          'quickly': 1,
          'handle': 1,
          'finds': 1,
          'hooked': 1,
          'one': 1,
          'scene': 1,
          'another': 1,
          'getting': 1,
          'high': 1,
          'losing': 1,
          'job': 1,
          'going': 1,
          'rehab': 1,
          'nthis': 1,
          'formula': 1,
          'repeated': 1,
          'several': 1,
          'times': 1,
          'got': 1,
          'tired': 1,
          'nin': 1,
          'general': 1,
          'tend': 1,
          'dislike': 1,
          'heavy': 1,
          'use': 1,
          'nno': 1,
          'offends': 1,
          'anything': 1,
          'bores': 1,
          'frankly': 1,
          'appeal': 1,
          'director': 1,
          'shows': 1,
          'pointofview': 1,
          'shot': 1,
          'junkie': 1,
          'complete': 1,
          'tipsy': 1,
          'camera': 1,
          'angles': 1,
          'echoing': 1,
          'voices': 1,
          'left': 1,
          'somewhat': 1,
          'unimpressed': 1,
          'actually': 1,
          'quite': 1,
          'engaging': 1,
          'nwe': 1,
          'discovered': 1,
          'moves': 1,
          'new': 1,
          'york': 1,
          'boyfriend': 1,
          'nthese': 1,
          'early': 1,
          'nwere': 1,
          'shown': 1,
          'newcomers': 1,
          'perspective': 1,
          'hadnt': 1,
          'seen': 1,
          'begins': 1,
          'go': 1,
          'downhill': 1,
          'however': 1,
          'established': 1,
          'nfrom': 1,
          'point': 1,
          'interest': 1,
          'counting': 1,
          'minutes': 1,
          'would': 1,
          'nit': 1,
          'seemed': 1,
          'excessive': 1,
          'nfine': 1,
          'problem': 1,
          'need': 1,
          'dominate': 1,
          'ncouldnt': 1,
          'effect': 1,
          'five': 1,
          'ten': 1,
          'minute': 1,
          'montage': 1,
          'experimenting': 1,
          'perhaps': 1,
          'meant': 1,
          'aspiring': 1,
          'models': 1,
          'get': 1,
          'possibly': 1,
          'although': 1,
          'since': 1,
          'desire': 1,
          'become': 1,
          'nas': 1,
          'stated': 1,
          'beginning': 1,
          'review': 1,
          'simply': 1,
          'featurelength': 1,
          'motion': 1,
          'picture': 1,
          'nwhat': 1,
          'warrants': 1,
          'nstrut': 1,
          'stuff': 1,
          'thousands': 1,
          'dollars': 1,
          'suppose': 1,
          'could': 1,
          'said': 1,
          'making': 1,
          'baseball': 1,
          'players': 1,
          'example': 1,
          'least': 1,
          'somebody': 1,
          'lou': 1,
          'gehrig': 1,
          'led': 1,
          'ngia': 1,
          'knew': 1,
          'sure': 1,
          'hated': 1,
          'modelling': 1,
          'bisexual': 1,
          'heavily': 1,
          'nnot': 1,
          'exactly': 1,
          'meaningful': 1,
          'contribution': 1,
          'society': 1,
          'far': 1,
          'im': 1,
          'concerned': 1,
          'nneg': 1}),
 Counter({'alone': 12,
          'home': 11,
          'nthe': 7,
          '3': 6,
          'years': 5,
          'hughes': 4,
          'film': 3,
          'villains': 3,
          'day': 3,
          'one': 3,
          'cant': 3,
          'nits': 3,
          'air': 2,
          'box': 2,
          'office': 2,
          'family': 2,
          'sequel': 2,
          'two': 2,
          '2': 2,
          'well': 2,
          'called': 2,
          'john': 2,
          'movies': 2,
          'enough': 2,
          'every': 2,
          'movie': 2,
          'liveaction': 2,
          'flubber': 2,
          'new': 2,
          'life': 2,
          'series': 2,
          'kid': 2,
          'alex': 2,
          'thing': 2,
          'even': 2,
          'nin': 2,
          'four': 2,
          'lenny': 2,
          'von': 2,
          'dohlen': 2,
          'many': 2,
          'isnt': 2,
          'alexs': 2,
          'falling': 2,
          'snow': 2,
          'seen': 2,
          'violence': 2,
          'children': 2,
          'talk': 1,
          'beating': 1,
          'dead': 1,
          'horse': 1,
          'nwhen': 1,
          'released': 1,
          '1990': 1,
          'breath': 1,
          'fresh': 1,
          'final': 1,
          'tally': 1,
          'indicated': 1,
          'much': 1,
          'audiences': 1,
          'appreciated': 1,
          'genuinelyfunny': 1,
          'unexpectedly': 1,
          'high': 1,
          'gross': 1,
          'guaranteed': 1,
          'later': 1,
          'subjected': 1,
          'might': 1,
          'clone': 1,
          'originality': 1,
          'exhibited': 1,
          'nfor': 1,
          'werent': 1,
          'began': 1,
          'recycling': 1,
          'kinds': 1,
          'situations': 1,
          'almost': 1,
          'involved': 1,
          'including': 1,
          'pathetic': 1,
          'bomb': 1,
          'babys': 1,
          'last': 1,
          '101': 1,
          'dalmatians': 1,
          'nnow': 1,
          'inexplicably': 1,
          'exhumed': 1,
          'wornout': 1,
          'plot': 1,
          'elements': 1,
          'name': 1,
          'result': 1,
          '1997s': 1,
          'worst': 1,
          'edging': 1,
          'speed': 1,
          'batman': 1,
          'robin': 1,
          'nby': 1,
          'changing': 1,
          'characters': 1,
          'wrote': 1,
          'coproduced': 1,
          'along': 1,
          'coconspirator': 1,
          'director': 1,
          'raja': 1,
          'gosnell': 1,
          'attempted': 1,
          'inject': 1,
          'way': 1,
          'past': 1,
          'point': 1,
          'cardiac': 1,
          'arrest': 1,
          'pruitt': 1,
          'played': 1,
          'linz': 1,
          'fine': 1,
          'going': 1,
          'terminal': 1,
          'cuteness': 1,
          'nhes': 1,
          'half': 1,
          'interesting': 1,
          'macaulay': 1,
          'culkin': 1,
          'pale': 1,
          'copies': 1,
          'joe': 1,
          'pesci': 1,
          'daniel': 1,
          'stern': 1,
          'less': 1,
          'engaging': 1,
          'pair': 1,
          'idiots': 1,
          'olek': 1,
          'krupa': 1,
          'david': 1,
          'thornton': 1,
          'rya': 1,
          'kihlstedt': 1,
          'means': 1,
          'opportunity': 1,
          'twice': 1,
          'pratfalls': 1,
          'nthis': 1,
          'time': 1,
          'left': 1,
          'parents': 1,
          'gone': 1,
          'trip': 1,
          'ninstead': 1,
          'developed': 1,
          'bad': 1,
          'case': 1,
          'chicken': 1,
          'pox': 1,
          'go': 1,
          'school': 1,
          'nhis': 1,
          'dad': 1,
          'kevin': 1,
          'kilner': 1,
          'away': 1,
          'business': 1,
          'mom': 1,
          'haviland': 1,
          'morris': 1,
          'run': 1,
          'errands': 1,
          'part': 1,
          'hes': 1,
          'nthrough': 1,
          'coincidences': 1,
          'irritating': 1,
          'relate': 1,
          'top': 1,
          'secret': 1,
          'u': 1,
          'force': 1,
          'integrated': 1,
          'circuit': 1,
          'comes': 1,
          'possession': 1,
          'wanted': 1,
          'gang': 1,
          'international': 1,
          'crooks': 1,
          'intend': 1,
          'break': 1,
          'retrieve': 1,
          'eight': 1,
          'year': 1,
          'old': 1,
          'wise': 1,
          'beyond': 1,
          'booby': 1,
          'traps': 1,
          'house': 1,
          'sorts': 1,
          'rube': 1,
          'goldbergtype': 1,
          'devices': 1,
          'designed': 1,
          'humiliate': 1,
          'incapacitate': 1,
          'climax': 1,
          'takes': 1,
          'place': 1,
          'raging': 1,
          'snowstorm': 1,
          'none': 1,
          'flakes': 1,
          'looks': 1,
          'remotely': 1,
          'believable': 1,
          'npreviously': 1,
          'counterfeitlooking': 1,
          'effects': 1,
          'remember': 1,
          'star': 1,
          'trek': 1,
          'iii': 1,
          'nthese': 1,
          'far': 1,
          'worse': 1,
          'fact': 1,
          'production': 1,
          'values': 1,
          'shoddy': 1,
          'scenes': 1,
          'midst': 1,
          'nearblizzard': 1,
          'shining': 1,
          'sun': 1,
          'nif': 1,
          'wonderful': 1,
          'could': 1,
          'generate': 1,
          'real': 1,
          'looking': 1,
          'back': 1,
          '1940s': 1,
          'significantly': 1,
          'larger': 1,
          'budget': 1,
          '90s': 1,
          'technology': 1,
          'disposal': 1,
          'nthere': 1,
          'ongoing': 1,
          'debate': 1,
          'regarding': 1,
          'appropriateness': 1,
          'cartoon': 1,
          'young': 1,
          'nhome': 1,
          'add': 1,
          'fuel': 1,
          'fire': 1,
          'see': 1,
          'wyle': 1,
          'e': 1,
          'coyote': 1,
          'flattened': 1,
          '10': 1,
          'ton': 1,
          'acme': 1,
          'weight': 1,
          'quite': 1,
          'another': 1,
          'watch': 1,
          'running': 1,
          'lawn': 1,
          'mower': 1,
          'fall': 1,
          'nadults': 1,
          'older': 1,
          'recognize': 1,
          'obviously': 1,
          'fake': 1,
          'intended': 1,
          'humorous': 1,
          'five': 1,
          'sixyear': 1,
          'olds': 1,
          'level': 1,
          'extreme': 1,
          'schemes': 1,
          'nasty': 1,
          'kill': 1,
          'nbut': 1,
          'dies': 1,
          'despite': 1,
          'electrocuted': 1,
          'thirty': 1,
          'feet': 1,
          'getting': 1,
          'smacked': 1,
          'head': 1,
          'barbell': 1,
          'nnot': 1,
          'unnecessary': 1,
          'offensive': 1,
          'exercise': 1,
          'tediousness': 1,
          'genuine': 1,
          'laugh': 1,
          'found': 1,
          'beginning': 1,
          'end': 1,
          'unless': 1,
          'strange': 1,
          'quirk': 1,
          'fate': 1,
          'missed': 1,
          '1990s': 1,
          'associated': 1,
          'thus': 1,
          'havent': 1,
          'stuff': 1,
          'ni': 1,
          'imagine': 1,
          'anyone': 1,
          'reasonable': 1,
          'attention': 1,
          'span': 1,
          'momentarily': 1,
          'distracted': 1,
          'pointless': 1,
          'adventure': 1,
          'nmaybe': 1,
          'thats': 1,
          'ones': 1,
          'laughing': 1,
          'screening': 1,
          'attended': 1,
          'still': 1,
          'thumbsucking': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'ntheres': 6,
          'film': 6,
          'good': 5,
          'reason': 5,
          'scenes': 5,
          'even': 4,
          'peel': 4,
          'times': 4,
          'around': 4,
          'first': 4,
          'one': 4,
          'time': 3,
          'nowhere': 3,
          'series': 3,
          'emma': 3,
          'sense': 3,
          'less': 3,
          'get': 3,
          'man': 3,
          'doesnt': 3,
          'theres': 3,
          'made': 2,
          'nthats': 2,
          'late': 2,
          'sixties': 2,
          'bear': 2,
          'big': 2,
          'world': 2,
          'like': 2,
          'days': 2,
          'put': 2,
          'part': 2,
          'nnone': 2,
          'television': 2,
          'agent': 2,
          'steed': 2,
          'rigg': 2,
          'audience': 2,
          'witty': 2,
          'probably': 2,
          'either': 2,
          'connery': 2,
          'weather': 2,
          'much': 2,
          'make': 2,
          'appear': 2,
          'well': 2,
          'never': 2,
          'makes': 2,
          'huge': 2,
          'outfits': 2,
          'nat': 2,
          'humorous': 2,
          'movie': 2,
          'nit': 2,
          'missing': 2,
          'several': 2,
          'parts': 2,
          'nfiennes': 2,
          'sexual': 2,
          'nadmittedly': 2,
          'better': 2,
          'nno': 2,
          'conventional': 1,
          'wisdom': 1,
          'among': 1,
          'collectibles': 1,
          'retailers': 1,
          'childrens': 1,
          'items': 1,
          'begin': 1,
          'dramatically': 1,
          'escalate': 1,
          'price': 1,
          'twentyfive': 1,
          'thirty': 1,
          'years': 1,
          'item': 1,
          'kids': 1,
          'jobs': 1,
          'disposable': 1,
          'income': 1,
          'desire': 1,
          'revisit': 1,
          'awe': 1,
          'wonderment': 1,
          'childhood': 1,
          'disappeared': 1,
          'lives': 1,
          'ncheck': 1,
          'prices': 1,
          'toys': 1,
          'youll': 1,
          'find': 1,
          'yogi': 1,
          'lunch': 1,
          'boxes': 1,
          'demanding': 1,
          'bucks': 1,
          'heavy': 1,
          'nostalgia': 1,
          'nowadays': 1,
          'early': 1,
          'seventies': 1,
          'apparent': 1,
          'screen': 1,
          'nboomers': 1,
          'mostly': 1,
          'forties': 1,
          'fifties': 1,
          'lived': 1,
          'workaday': 1,
          'long': 1,
          'ntheyd': 1,
          'recapture': 1,
          'fun': 1,
          'remember': 1,
          'yore': 1,
          'nhollywood': 1,
          'seems': 1,
          'eager': 1,
          'churn': 1,
          'product': 1,
          'help': 1,
          'ndirectors': 1,
          'zealous': 1,
          'stamp': 1,
          'icons': 1,
          'nand': 1,
          'theyre': 1,
          'messing': 1,
          'n': 1,
          'mission': 1,
          'impossible': 1,
          'lost': 1,
          'space': 1,
          'godzilla': 1,
          'zorro': 1,
          'successfully': 1,
          'capture': 1,
          'originals': 1,
          'films': 1,
          'nyou': 1,
          'add': 1,
          'avengers': 1,
          'list': 1,
          'british': 1,
          'began': 1,
          '1961': 1,
          'nsuper': 1,
          'secret': 1,
          'john': 1,
          'thenpatrick': 1,
          'macnee': 1,
          'third': 1,
          'partner': 1,
          'thendiana': 1,
          'pair': 1,
          'american': 1,
          'fell': 1,
          'nsurrealistic': 1,
          'fit': 1,
          'mood': 1,
          'leatherclad': 1,
          'didnt': 1,
          'hurt': 1,
          'ratings': 1,
          'nafter': 1,
          'coincidence': 1,
          'cant': 1,
          'pronounce': 1,
          'characters': 1,
          'name': 1,
          'without': 1,
          'appeal': 1,
          'nnow': 1,
          'nineties': 1,
          'nsteed': 1,
          'nowralph': 1,
          'fiennes': 1,
          'nowuma': 1,
          'thurman': 1,
          'battling': 1,
          'evil': 1,
          'genius': 1,
          'sir': 1,
          'august': 1,
          'de': 1,
          'wynter': 1,
          'sean': 1,
          'screwing': 1,
          'englands': 1,
          'plot': 1,
          'footage': 1,
          'lot': 1,
          'things': 1,
          'dont': 1,
          'nwe': 1,
          'betrayal': 1,
          'unknown': 1,
          'nevil': 1,
          'clones': 1,
          'vanish': 1,
          'connection': 1,
          'nremarkably': 1,
          'ineffective': 1,
          'giant': 1,
          'flying': 1,
          'robot': 1,
          'wasps': 1,
          'machine': 1,
          'guns': 1,
          'belly': 1,
          'come': 1,
          'high': 1,
          'tech': 1,
          'hot': 1,
          'air': 1,
          'balloon': 1,
          'idea': 1,
          'anyones': 1,
          'spy': 1,
          'agency': 1,
          'run': 1,
          'called': 1,
          'mother': 1,
          'wheelchair': 1,
          'woman': 1,
          'named': 1,
          'father': 1,
          'blind': 1,
          'nleast': 1,
          'know': 1,
          'nmacnee': 1,
          'appearance': 1,
          'sorts': 1,
          'nhe': 1,
          'voice': 1,
          'invisible': 1,
          'whose': 1,
          'character': 1,
          'goes': 1,
          'scene': 1,
          'nothing': 1,
          'na': 1,
          'group': 1,
          'villains': 1,
          'sits': 1,
          'table': 1,
          'clad': 1,
          'pastelcolored': 1,
          'teddy': 1,
          'watch': 1,
          'teddies': 1,
          'waddle': 1,
          'becomes': 1,
          'goofy': 1,
          'medley': 1,
          'clutter': 1,
          'confusion': 1,
          'wrong': 1,
          'decisions': 1,
          'every': 1,
          'corner': 1,
          'feels': 1,
          'major': 1,
          'portions': 1,
          'storyline': 1,
          'jumps': 1,
          'rather': 1,
          'flows': 1,
          'nreportedly': 1,
          'recut': 1,
          'nthis': 1,
          'whole': 1,
          'sum': 1,
          'especially': 1,
          'since': 1,
          'point': 1,
          'running': 1,
          'room': 1,
          'another': 1,
          'house': 1,
          'designed': 1,
          'escher': 1,
          'nother': 1,
          'effects': 1,
          'secondrate': 1,
          'threat': 1,
          'old': 1,
          'hat': 1,
          'tornadoes': 1,
          'nthurman': 1,
          'almost': 1,
          'adequate': 1,
          'work': 1,
          'nshe': 1,
          'looks': 1,
          'dresses': 1,
          'right': 1,
          'fetish': 1,
          'spark': 1,
          'fares': 1,
          'nmacnees': 1,
          'humor': 1,
          'comes': 1,
          'across': 1,
          'dour': 1,
          'kid': 1,
          'grownup': 1,
          'clothes': 1,
          'home': 1,
          'town': 1,
          'neven': 1,
          'greatest': 1,
          'living': 1,
          'actors': 1,
          'presence': 1,
          'outside': 1,
          'fiery': 1,
          'action': 1,
          'difficult': 1,
          'follow': 1,
          'ndirector': 1,
          'jeremiah': 1,
          'chechik': 1,
          'responsible': 1,
          'atrocious': 1,
          'remake': 1,
          'diabolique': 1,
          'somehow': 1,
          'manages': 1,
          'camera': 1,
          'exactly': 1,
          'shouldnt': 1,
          'nthings': 1,
          'happen': 1,
          'people': 1,
          'move': 1,
          'utmost': 1,
          'effort': 1,
          'able': 1,
          'care': 1,
          'bewildering': 1,
          'primary': 1,
          'allure': 1,
          'original': 1,
          'interaction': 1,
          'two': 1,
          'leads': 1,
          'nwitty': 1,
          'banter': 1,
          'underplayed': 1,
          'tension': 1,
          'winning': 1,
          'combination': 1,
          'puns': 1,
          'chemistry': 1,
          'repartee': 1,
          'anything': 1,
          'clever': 1,
          'none': 1,
          'peels': 1,
          'lines': 1,
          'dialog': 1,
          'rules': 1,
          'broken': 1,
          'nadvance': 1,
          'word': 1,
          'alone': 1,
          'enough': 1,
          'scare': 1,
          'anyone': 1,
          'release': 1,
          'date': 1,
          'changed': 1,
          'nconnery': 1,
          'refuses': 1,
          'promote': 1,
          'nthere': 1,
          'screening': 1,
          'critics': 1,
          'may': 1,
          'choice': 1,
          'warner': 1,
          'brothers': 1,
          'least': 1,
          'way': 1,
          'something': 1,
          'weekend': 1,
          'news': 1,
          'gets': 1,
          'havent': 1,
          'seen': 1,
          'episode': 1,
          'couple': 1,
          'decades': 1,
          'nmy': 1,
          'guess': 1,
          'would': 1,
          'severely': 1,
          'dated': 1,
          'matter': 1,
          'antiquated': 1,
          'might': 1,
          'doubt': 1,
          'holds': 1,
          'viewing': 1,
          'waste': 1,
          'last': 1,
          'summer': 1,
          'inside': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'nthe': 17,
          'version': 13,
          'lynch': 11,
          'dune': 10,
          'film': 9,
          'two': 6,
          'cut': 6,
          'ndune': 5,
          'theatrical': 5,
          'minutes': 5,
          'extended': 5,
          'original': 5,
          'nand': 5,
          'also': 5,
          'piece': 5,
          'review': 4,
          'may': 4,
          'book': 4,
          'scenes': 4,
          'nit': 4,
          'lynchs': 4,
          'universe': 4,
          'arrakis': 4,
          'young': 4,
          'fremen': 4,
          'would': 4,
          'well': 4,
          'one': 4,
          'enough': 4,
          'several': 4,
          'new': 4,
          '1984': 3,
          'hours': 3,
          'films': 3,
          'action': 3,
          'partly': 3,
          'mca': 3,
          'special': 3,
          'projects': 3,
          'closer': 3,
          'release': 3,
          'mammoth': 3,
          'herberts': 3,
          'production': 3,
          'guild': 3,
          'atreides': 3,
          'harkonnen': 3,
          'paul': 3,
          'nwith': 3,
          'narration': 3,
          'times': 3,
          'least': 3,
          'kind': 3,
          'still': 3,
          'way': 3,
          'however': 3,
          'baron': 3,
          'nas': 3,
          'work': 3,
          'directors': 3,
          'nbut': 3,
          'versions': 2,
          'runtime': 2,
          'capsule': 2,
          'studio': 2,
          'incomprehensible': 2,
          'unfamiliar': 2,
          'visual': 2,
          'holes': 2,
          'narrative': 2,
          '1988': 2,
          'tv': 2,
          'cable': 2,
          'television': 2,
          'director': 2,
          'david': 2,
          'considerably': 2,
          'storyline': 2,
          'various': 2,
          'world': 2,
          'made': 2,
          'frank': 2,
          'novel': 2,
          'scifi': 2,
          'fans': 2,
          'herbert': 2,
          'families': 2,
          'key': 2,
          'planet': 2,
          'thats': 2,
          'home': 2,
          'giant': 2,
          'sandworms': 2,
          'spice': 2,
          'life': 2,
          'nmost': 2,
          'spacing': 2,
          'houses': 2,
          'religious': 2,
          'control': 2,
          'man': 2,
          'come': 2,
          'box': 2,
          'office': 2,
          'cuts': 2,
          'great': 2,
          'already': 2,
          'complex': 2,
          'make': 2,
          'us': 2,
          'characters': 2,
          'pauls': 2,
          'father': 2,
          'rather': 2,
          'distinct': 2,
          'cast': 2,
          'much': 2,
          'find': 2,
          'hard': 2,
          'impression': 2,
          'people': 2,
          'humour': 2,
          'design': 2,
          'last': 2,
          'nasty': 2,
          'leader': 2,
          'bene': 2,
          'order': 2,
          'must': 2,
          'take': 2,
          'ended': 2,
          'nin': 2,
          'smithee': 2,
          'instances': 2,
          'npauls': 2,
          'better': 2,
          'prologue': 2,
          'painted': 2,
          'stills': 2,
          'clearly': 2,
          'superior': 2,
          'use': 2,
          'shots': 2,
          'even': 2,
          'repeated': 2,
          'footage': 2,
          'coming': 2,
          'going': 2,
          'heart': 2,
          'following': 1,
          'encompasses': 1,
          '137': 1,
          'nervous': 1,
          'executives': 1,
          'spectacular': 1,
          'mess': 1,
          'splendour': 1,
          'mystical': 1,
          'beauty': 1,
          'impressive': 1,
          'compensate': 1,
          'gaping': 1,
          '189': 1,
          'bit': 1,
          'throwtogether': 1,
          'assembled': 1,
          'disowned': 1,
          'vision': 1,
          'virtue': 1,
          'improved': 1,
          'characterisation': 1,
          'clearer': 1,
          'nquality': 1,
          'dubs': 1,
          'outofprint': 1,
          'japanese': 1,
          'laserdisc': 1,
          'available': 1,
          'dealers': 1,
          'wide': 1,
          'web': 1,
          'n': 1,
          'nreleased': 1,
          'budget': 1,
          '40': 1,
          'million': 1,
          'cult': 1,
          'eagerly': 1,
          'awaited': 1,
          'ndirector': 1,
          'blue': 1,
          'velvet': 1,
          'eraserhead': 1,
          'twin': 1,
          'peaks': 1,
          'working': 1,
          'biggest': 1,
          'date': 1,
          'undertaking': 1,
          'filmed': 1,
          'trying': 1,
          'conditions': 1,
          'location': 1,
          'mexico': 1,
          'screenplay': 1,
          'chosen': 1,
          'script': 1,
          'submitted': 1,
          'author': 1,
          'rejected': 1,
          'set': 1,
          'ruled': 1,
          'powerful': 1,
          'overseen': 1,
          'successive': 1,
          'line': 1,
          'emperors': 1,
          'cosmic': 1,
          'power': 1,
          'windswept': 1,
          'desert': 1,
          'precious': 1,
          'melange': 1,
          'valuable': 1,
          'commodity': 1,
          'extends': 1,
          'expands': 1,
          'consciousness': 1,
          'consume': 1,
          'importantly': 1,
          'allows': 1,
          'navigators': 1,
          'human': 1,
          'hideously': 1,
          'mutated': 1,
          'fold': 1,
          'space': 1,
          'navigate': 1,
          'spacecraft': 1,
          'across': 1,
          'distances': 1,
          'instantaneously': 1,
          'enabling': 1,
          'interstellar': 1,
          'commerce': 1,
          'trade': 1,
          'flourish': 1,
          'nlynchs': 1,
          'necessity': 1,
          'excises': 1,
          'parts': 1,
          'retaining': 1,
          'storys': 1,
          'main': 1,
          'strands': 1,
          'none': 1,
          'longstanding': 1,
          'rivalry': 1,
          'house': 1,
          'battle': 1,
          'lucrative': 1,
          'mining': 1,
          'rights': 1,
          'second': 1,
          'strand': 1,
          'emergence': 1,
          'reluctant': 1,
          'messiah': 1,
          'longawaited': 1,
          'natives': 1,
          'deeply': 1,
          'want': 1,
          'homeworld': 1,
          'fulfilment': 1,
          'prophecy': 1,
          'outer': 1,
          'worlds': 1,
          'lead': 1,
          'freedom': 1,
          'nunfortunately': 1,
          'epic': 1,
          'story': 1,
          'unfolds': 1,
          'confusing': 1,
          'haphazard': 1,
          'manner': 1,
          'runs': 1,
          '30': 1,
          '60': 1,
          'shorter': 1,
          'originally': 1,
          'intended': 1,
          'thinking': 1,
          'among': 1,
          'universals': 1,
          'ohsowise': 1,
          'money': 1,
          'men': 1,
          'duration': 1,
          'popular': 1,
          'audiences': 1,
          'time': 1,
          'initial': 1,
          'running': 1,
          'three': 1,
          'demanded': 1,
          'nwhat': 1,
          'idea': 1,
          'nwhy': 1,
          'trim': 1,
          'almost': 1,
          'glaring': 1,
          'consequence': 1,
          'oneeyed': 1,
          'stupidity': 1,
          'hopelessly': 1,
          'jumpy': 1,
          'leaving': 1,
          'badly': 1,
          'underdeveloped': 1,
          'nthus': 1,
          'personalities': 1,
          'vague': 1,
          'motivations': 1,
          'unclear': 1,
          'case': 1,
          'duke': 1,
          'leto': 1,
          'demise': 1,
          'meaningless': 1,
          'end': 1,
          'result': 1,
          'chill': 1,
          'cant': 1,
          'warm': 1,
          'dont': 1,
          'care': 1,
          'hardly': 1,
          'helps': 1,
          'voiceover': 1,
          'sparse': 1,
          'duneesque': 1,
          'language': 1,
          'terminology': 1,
          'sounds': 1,
          'like': 1,
          'gobbledegook': 1,
          'serous': 1,
          'constant': 1,
          'selftalk': 1,
          'makes': 1,
          'serious': 1,
          'selfabsorbed': 1,
          'wince': 1,
          'embarrassment': 1,
          'overall': 1,
          'full': 1,
          'intense': 1,
          'allowed': 1,
          'joke': 1,
          'lest': 1,
          'crashing': 1,
          'around': 1,
          'nhumour': 1,
          'gentle': 1,
          'harkonnens': 1,
          'mad': 1,
          'sadistic': 1,
          'nyou': 1,
          'balk': 1,
          'comparison': 1,
          'writer': 1,
          'could': 1,
          'done': 1,
          'lessons': 1,
          'george': 1,
          'lucus': 1,
          'star': 1,
          'wars': 1,
          'trilogy': 1,
          'complete': 1,
          'disaster': 1,
          'possesses': 1,
          'stylistic': 1,
          'quirks': 1,
          'invention': 1,
          'sustain': 1,
          'interest': 1,
          'viewers': 1,
          'taste': 1,
          'imaginative': 1,
          'nspecial': 1,
          'effects': 1,
          'whiz': 1,
          'carlo': 1,
          'rambaldis': 1,
          'awesome': 1,
          'sight': 1,
          'nboth': 1,
          'anthony': 1,
          'masters': 1,
          'costume': 1,
          'bob': 1,
          'ringwood': 1,
          'striking': 1,
          'magnificent': 1,
          'score': 1,
          'toto': 1,
          'brian': 1,
          'eno': 1,
          'underrated': 1,
          'soundtracks': 1,
          'twenty': 1,
          'years': 1,
          'elements': 1,
          'place': 1,
          'benefit': 1,
          'freddie': 1,
          'francis': 1,
          'lush': 1,
          'cinematography': 1,
          'feast': 1,
          'senses': 1,
          'nsee': 1,
          'widescreen': 1,
          'format': 1,
          'despite': 1,
          'members': 1,
          'strong': 1,
          'notably': 1,
          'kenneth': 1,
          'mcmillan': 1,
          'supremely': 1,
          'vladimir': 1,
          'nsian': 1,
          'phillips': 1,
          'registers': 1,
          'strongly': 1,
          'reverend': 1,
          'mother': 1,
          'gaius': 1,
          'helen': 1,
          'mohiam': 1,
          'gesserit': 1,
          'whos': 1,
          'secret': 1,
          'aim': 1,
          'manipulate': 1,
          'destiny': 1,
          'shadowy': 1,
          'ends': 1,
          'kyle': 1,
          'maclachlan': 1,
          'starts': 1,
          'somewhat': 1,
          'shakily': 1,
          'character': 1,
          'grows': 1,
          'strength': 1,
          'performance': 1,
          'emerges': 1,
          'credible': 1,
          'crusade': 1,
          'conclusion': 1,
          'nany': 1,
          'assessment': 1,
          'account': 1,
          'presents': 1,
          'tough': 1,
          'challenge': 1,
          'filmmaker': 1,
          'ndavid': 1,
          'took': 1,
          'brave': 1,
          'stab': 1,
          'due': 1,
          'forces': 1,
          'beyond': 1,
          'officially': 1,
          'released': 1,
          'fails': 1,
          'respects': 1,
          'certainly': 1,
          'confused': 1,
          'frustrated': 1,
          'lot': 1,
          'nmany': 1,
          'chose': 1,
          'stay': 1,
          'away': 1,
          'altogether': 1,
          'disastrous': 1,
          'showing': 1,
          'attests': 1,
          'different': 1,
          'beast': 1,
          'stated': 1,
          'intention': 1,
          'edition': 1,
          'video': 1,
          'clear': 1,
          'indication': 1,
          'dissatisfaction': 1,
          'theatres': 1,
          'alas': 1,
          'failed': 1,
          'choosing': 1,
          'move': 1,
          'fault': 1,
          'appeared': 1,
          'instead': 1,
          'unauthorised': 1,
          'put': 1,
          'together': 1,
          'airing': 1,
          'networks': 1,
          'usa': 1,
          'nstung': 1,
          'successfully': 1,
          'petitioned': 1,
          'name': 1,
          'credits': 1,
          'replace': 1,
          'allen': 1,
          'standard': 1,
          'pseudonym': 1,
          'wish': 1,
          'disown': 1,
          'nhe': 1,
          'screenwriting': 1,
          'credit': 1,
          'changed': 1,
          'anonymous': 1,
          'judas': 1,
          'booth': 1,
          'ncertainly': 1,
          'looking': 1,
          'results': 1,
          'mcas': 1,
          'handiwork': 1,
          'theres': 1,
          'half': 1,
          'dozen': 1,
          'sheer': 1,
          'technical': 1,
          'sloppiness': 1,
          'good': 1,
          'reasons': 1,
          'object': 1,
          'gripes': 1,
          'considered': 1,
          'light': 1,
          'improvements': 1,
          'offers': 1,
          'crucial': 1,
          'areas': 1,
          'changes': 1,
          'involve': 1,
          'restoration': 1,
          'extension': 1,
          'addition': 1,
          'extra': 1,
          'fill': 1,
          'many': 1,
          'relationship': 1,
          'associates': 1,
          'intimate': 1,
          'moments': 1,
          'warmth': 1,
          'lacking': 1,
          'previously': 1,
          'political': 1,
          'skulduggery': 1,
          'involving': 1,
          'emperor': 1,
          'gesserits': 1,
          'warring': 1,
          'far': 1,
          'explained': 1,
          'initiation': 1,
          'fleshed': 1,
          'background': 1,
          'added': 1,
          'featuring': 1,
          'give': 1,
          'brief': 1,
          'history': 1,
          'storytelling': 1,
          'tvs': 1,
          'editing': 1,
          'surprisingly': 1,
          'inept': 1,
          'works': 1,
          'occasional': 1,
          'appearance': 1,
          'begins': 1,
          'inappropriate': 1,
          'ntheres': 1,
          'sloppy': 1,
          'cutting': 1,
          'appear': 1,
          'fabricate': 1,
          'certain': 1,
          'eg': 1,
          'nships': 1,
          'soldiers': 1,
          'outofcontext': 1,
          'nthis': 1,
          'thing': 1,
          'objected': 1,
          'rightly': 1,
          'noted': 1,
          'questionable': 1,
          'deleted': 1,
          'satisfy': 1,
          'censorship': 1,
          'demands': 1,
          'u': 1,
          'notable': 1,
          'omission': 1,
          'gratuitous': 1,
          'nonsense': 1,
          'wasnt': 1,
          'scene': 1,
          'features': 1,
          'killing': 1,
          'beautiful': 1,
          'front': 1,
          'slobbering': 1,
          'henchmen': 1,
          'pulling': 1,
          'plug': 1,
          'nits': 1,
          'surreal': 1,
          'disturbing': 1,
          'episode': 1,
          'lynchesque': 1,
          'adds': 1,
          'nothing': 1,
          'know': 1,
          'ndespite': 1,
          'peculiar': 1,
          'flaws': 1,
          'generally': 1,
          'nall': 1,
          'contains': 1,
          '35': 1,
          'restored': 1,
          'approximately': 1,
          'another': 1,
          '15': 1,
          'either': 1,
          'altered': 1,
          'fabricated': 1,
          'newly': 1,
          'created': 1,
          'sequences': 1,
          'nunless': 1,
          'idiosyncratic': 1,
          'sudden': 1,
          'change': 1,
          'alan': 1,
          'remains': 1,
          'closest': 1,
          'get': 1,
          'movie': 1,
          'non': 1,
          'viewings': 1,
          'suspects': 1,
          'prepared': 1,
          'admit': 1,
          'nstill': 1,
          'centurys': 1,
          'sciencefiction': 1,
          'novels': 1,
          'perhaps': 1,
          'late': 1,
          'argue': 1,
          'deserved': 1,
          'fate': 1,
          'transfer': 1,
          'screen': 1,
          'rumours': 1,
          'circulating': 1,
          'six': 1,
          'hour': 1,
          'miniseries': 1,
          'planned': 1,
          'company': 1,
          'amsterdam': 1,
          'entertainment': 1,
          '1998': 1,
          'unlikely': 1,
          'heard': 1,
          'saga': 1,
          'nneg': 1}),
 Counter({'nazi': 5,
          'kitty': 5,
          'brothel': 5,
          'many': 3,
          'could': 3,
          'depravity': 3,
          'made': 3,
          'brass': 3,
          'wallenberg': 3,
          'although': 3,
          '1970s': 2,
          'european': 2,
          'political': 2,
          'fascism': 2,
          'nwhich': 2,
          'nin': 2,
          'noble': 2,
          'filmmakers': 2,
          'course': 2,
          'audience': 2,
          'tinto': 2,
          'expensive': 2,
          'stylish': 2,
          'soft': 2,
          'porn': 2,
          'film': 2,
          'bizarre': 2,
          'story': 2,
          'place': 2,
          'top': 2,
          'bugged': 2,
          'even': 2,
          'real': 2,
          'berger': 2,
          'ingrid': 2,
          'thulin': 2,
          'madam': 2,
          'cabaret': 2,
          'margerithe': 2,
          'probably': 2,
          'salon': 2,
          'successful': 2,
          'intellectuals': 1,
          'especially': 1,
          'left': 1,
          'hemisphere': 1,
          'became': 1,
          'obsessed': 1,
          'rise': 1,
          'wasnt': 1,
          'hard': 1,
          'expect': 1,
          'social': 1,
          'turmoil': 1,
          '1960s': 1,
          'economic': 1,
          'decline': 1,
          'seemed': 1,
          'breeding': 1,
          'ground': 1,
          'dangerous': 1,
          'ideologies': 1,
          'times': 1,
          'involvement': 1,
          'associated': 1,
          'passion': 1,
          'tried': 1,
          'warn': 1,
          'present': 1,
          'generations': 1,
          'dangers': 1,
          'lurk': 1,
          'ahead': 1,
          'giving': 1,
          'look': 1,
          'prewar': 1,
          'europe': 1,
          'circumstances': 1,
          'led': 1,
          'phenomena': 1,
          'like': 1,
          'fascist': 1,
          'italy': 1,
          'germany': 1,
          'nof': 1,
          'authors': 1,
          'jumped': 1,
          'bandwagon': 1,
          'less': 1,
          'reasons': 1,
          'nfor': 1,
          'moral': 1,
          'explained': 1,
          'explicitly': 1,
          'showing': 1,
          'sexual': 1,
          'era': 1,
          'naturally': 1,
          'films': 1,
          'popular': 1,
          'among': 1,
          'teen': 1,
          'none': 1,
          'italian': 1,
          'director': 1,
          'later': 1,
          'career': 1,
          'shooting': 1,
          'nsalon': 1,
          '1976': 1,
          'losely': 1,
          'based': 1,
          'novel': 1,
          'peter': 1,
          'nordern': 1,
          'book': 1,
          'deals': 1,
          'yet': 1,
          'true': 1,
          'took': 1,
          'first': 1,
          'years': 1,
          'ww2': 1,
          '1939': 1,
          'walter': 1,
          'schellenberg': 1,
          'one': 1,
          'heads': 1,
          'intelligence': 1,
          'service': 1,
          'set': 1,
          'elite': 1,
          'exclusive': 1,
          'berlin': 1,
          'clientele': 1,
          'comprised': 1,
          'officials': 1,
          'foreign': 1,
          'diplomats': 1,
          'nnone': 1,
          'customers': 1,
          'knew': 1,
          'girls': 1,
          'agents': 1,
          'rooms': 1,
          'happened': 1,
          'nthe': 1,
          'thing': 1,
          'fact': 1,
          'nominal': 1,
          'madame': 1,
          'didnt': 1,
          'know': 1,
          'purpose': 1,
          'enterprise': 1,
          'nscreenplay': 1,
          'simplifies': 1,
          'changes': 1,
          'names': 1,
          'nschellenberg': 1,
          'helmut': 1,
          'ambitious': 1,
          'official': 1,
          'wants': 1,
          'use': 1,
          'order': 1,
          'blackmail': 1,
          'way': 1,
          'nkitty': 1,
          'kellerman': 1,
          'apart': 1,
          'second': 1,
          'job': 1,
          'singer': 1,
          'ncaught': 1,
          'net': 1,
          'sweet': 1,
          'innocent': 1,
          'girl': 1,
          'theresa': 1,
          'ann': 1,
          'savoy': 1,
          'thrown': 1,
          'nthere': 1,
          'falls': 1,
          'love': 1,
          'customer': 1,
          'hans': 1,
          'reiter': 1,
          'bekim': 1,
          'fehmiu': 1,
          'disenchanted': 1,
          'pilot': 1,
          'luftwaffe': 1,
          'nwhen': 1,
          'discovers': 1,
          'lover': 1,
          'executed': 1,
          'defeatist': 1,
          'speeches': 1,
          'finds': 1,
          'nshe': 1,
          'informs': 1,
          'situation': 1,
          'women': 1,
          'decide': 1,
          'confront': 1,
          'nthose': 1,
          'tend': 1,
          'bash': 1,
          'benigni': 1,
          'exploiting': 1,
          'holocaust': 1,
          'topic': 1,
          'comedy': 1,
          'would': 1,
          'go': 1,
          'bananas': 1,
          'watching': 1,
          'uses': 1,
          'darkest': 1,
          'pages': 1,
          'history': 1,
          'cheap': 1,
          'sexploitation': 1,
          'nbut': 1,
          'doesnt': 1,
          'happen': 1,
          'anything': 1,
          'rather': 1,
          'supposedly': 1,
          'erotic': 1,
          'scenes': 1,
          'quite': 1,
          'unappealing': 1,
          'try': 1,
          'multidimensional': 1,
          'characters': 1,
          'something': 1,
          'resembling': 1,
          'dramatic': 1,
          'conflict': 1,
          'time': 1,
          'powerhungry': 1,
          'scruples': 1,
          'hedonistic': 1,
          'womanhood': 1,
          'symbolised': 1,
          'nunfortunately': 1,
          'seems': 1,
          'overuse': 1,
          'cinematical': 1,
          'references': 1,
          'thinking': 1,
          'repeat': 1,
          'interaction': 1,
          'luchino': 1,
          'viscontis': 1,
          'damned': 1,
          'noticeable': 1,
          'irritating': 1,
          'thulins': 1,
          'unsuccessful': 1,
          'attempt': 1,
          'imitate': 1,
          'lisa': 1,
          'minellis': 1,
          'musical': 1,
          'numbers': 1,
          'nall': 1,
          'failure': 1,
          'interesting': 1,
          'moments': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'dolittle': 6,
          'better': 6,
          'murphy': 5,
          'animals': 4,
          'movie': 4,
          'dumb': 4,
          'done': 4,
          'however': 4,
          'comedy': 3,
          'ability': 3,
          'job': 3,
          'even': 3,
          'jokes': 3,
          'good': 3,
          'much': 3,
          'dr': 2,
          'time': 2,
          'eddie': 2,
          'betty': 2,
          'thomas': 2,
          'nutty': 2,
          'professor': 2,
          'returns': 2,
          'doctor': 2,
          'understand': 2,
          'nhowever': 2,
          'crummy': 2,
          'happen': 2,
          'ndoctor': 2,
          'raise': 2,
          'performance': 2,
          'boring': 2,
          'albert': 2,
          'brooks': 2,
          'nsadly': 2,
          'pretty': 2,
          'like': 2,
          'far': 2,
          'would': 2,
          'probably': 2,
          'tiger': 2,
          'charm': 2,
          'director': 2,
          'puppets': 2,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'running': 1,
          '1': 1,
          'hour': 1,
          '25': 1,
          'minutes': 1,
          'starring': 1,
          'directed': 1,
          'riding': 1,
          'high': 1,
          'success': 1,
          '1996': 1,
          'abysmal': 1,
          'nhe': 1,
          'plays': 1,
          'john': 1,
          'child': 1,
          'exorcised': 1,
          'loses': 1,
          'fast': 1,
          'forward': 1,
          'see': 1,
          'surrounding': 1,
          'people': 1,
          'notably': 1,
          'mark': 1,
          'weller': 1,
          'played': 1,
          'oliver': 1,
          'platt': 1,
          'bonk': 1,
          'head': 1,
          'ready': 1,
          'waiting': 1,
          'nexcept': 1,
          'never': 1,
          'excellent': 1,
          'premise': 1,
          'rarely': 1,
          'manages': 1,
          'laugh': 1,
          'npoor': 1,
          'old': 1,
          'looks': 1,
          'bored': 1,
          'stiff': 1,
          'throughout': 1,
          'whole': 1,
          'suffers': 1,
          'manic': 1,
          'saw': 1,
          '80s': 1,
          'gone': 1,
          'mature': 1,
          'twin': 1,
          'appears': 1,
          'getting': 1,
          'work': 1,
          '90s': 1,
          'voices': 1,
          'include': 1,
          'chris': 1,
          'rock': 1,
          'new': 1,
          'norm': 1,
          'mcdonald': 1,
          'lucky': 1,
          'dog': 1,
          'marginally': 1,
          'least': 1,
          'put': 1,
          'enthusiasm': 1,
          'lines': 1,
          'nand': 1,
          'theyre': 1,
          'funny': 1,
          'dumber': 1,
          '1994': 1,
          'film': 1,
          'succumbs': 1,
          'fart': 1,
          'halfway': 1,
          'desperate': 1,
          'attempt': 1,
          'laughs': 1,
          'nthere': 1,
          'script': 1,
          'nif': 1,
          'choose': 1,
          'favourite': 1,
          'certain': 1,
          'hes': 1,
          'barely': 1,
          'rocks': 1,
          'really': 1,
          'annoying': 1,
          'hamster': 1,
          'given': 1,
          'screen': 1,
          'njoke': 1,
          'wise': 1,
          'thankfully': 1,
          'spared': 1,
          'mocking': 1,
          'insulting': 1,
          'type': 1,
          'featured': 1,
          'heavily': 1,
          'well': 1,
          'films': 1,
          'nshe': 1,
          'bought': 1,
          'us': 1,
          'private': 1,
          'parts': 1,
          '1997': 1,
          'brady': 1,
          'bunch': 1,
          '1995': 1,
          'sadly': 1,
          'scenes': 1,
          'lack': 1,
          'gets': 1,
          'reasonable': 1,
          'realistic': 1,
          'although': 1,
          'obviously': 1,
          'ntheres': 1,
          'impressive': 1,
          'looking': 1,
          'lip': 1,
          'sync': 1,
          'nyoud': 1,
          'problem': 1,
          'guessing': 1,
          'close': 1,
          'ups': 1,
          'jilted': 1,
          'movement': 1,
          'ni': 1,
          'hoping': 1,
          'jim': 1,
          'hensons': 1,
          'workshop': 1,
          'created': 1,
          'furry': 1,
          'friends': 1,
          'end': 1,
          'disappointment': 1,
          'everyone': 1,
          'involved': 1,
          'nmurphy': 1,
          'movies': 1,
          'e': 1,
          'ntrading': 1,
          'places': 1,
          'seen': 1,
          'days': 1,
          'creatures': 1,
          'arent': 1,
          'target': 1,
          'audience': 1,
          'aged': 1,
          '713': 1,
          'undemanding': 1,
          'thanks': 1,
          'dumbed': 1,
          'humour': 1,
          'neveryone': 1,
          'else': 1,
          'give': 1,
          'miss': 1,
          'nneg': 1}),
 Counter({'characters': 9,
          'film': 6,
          'sexual': 6,
          'daughter': 5,
          'movie': 5,
          'story': 5,
          'brenner': 5,
          'generals': 4,
          'plot': 4,
          'rape': 4,
          'sunderland': 4,
          'scene': 4,
          'would': 4,
          'entirely': 3,
          'james': 3,
          'comes': 3,
          'one': 3,
          'nthis': 3,
          'audience': 3,
          'forgets': 2,
          'west': 2,
          'treats': 2,
          'like': 2,
          'almost': 2,
          'together': 2,
          'two': 2,
          'interesting': 2,
          'sympathetic': 2,
          'things': 2,
          'conclusion': 2,
          'find': 2,
          'elizabeth': 2,
          'campbell': 2,
          'cromwell': 2,
          'suspects': 2,
          'including': 2,
          'woods': 2,
          'nperhaps': 2,
          'obvious': 2,
          'nthe': 2,
          'novel': 2,
          'apparently': 2,
          'based': 2,
          'dialogue': 2,
          'minutes': 2,
          'actually': 2,
          'present': 2,
          'really': 2,
          'nin': 2,
          'man': 2,
          'films': 2,
          'people': 2,
          'mostly': 2,
          'nothing': 2,
          'ni': 2,
          'dont': 2,
          'lot': 2,
          'certainly': 2,
          'scenes': 2,
          'fetishes': 2,
          'make': 2,
          'performances': 2,
          'moral': 2,
          'heartless': 1,
          'absurd': 1,
          'hopelessly': 1,
          'dedicated': 1,
          'inane': 1,
          'ndirector': 1,
          'simon': 1,
          'issues': 1,
          'fetish': 1,
          'hamhanded': 1,
          'obscenity': 1,
          'creating': 1,
          'banks': 1,
          'exploitation': 1,
          'offensive': 1,
          'pseudodepth': 1,
          'nwhats': 1,
          'worse': 1,
          'haphazardly': 1,
          'glued': 1,
          'neither': 1,
          'ridiculous': 1,
          'requires': 1,
          'unbelievable': 1,
          'interest': 1,
          'reaching': 1,
          'dark': 1,
          'sudden': 1,
          'rain': 1,
          'storm': 1,
          'njohn': 1,
          'travolta': 1,
          'finds': 1,
          'middle': 1,
          'mess': 1,
          'playing': 1,
          'warrant': 1,
          'officer': 1,
          'paul': 1,
          'assigned': 1,
          'murderer': 1,
          'captain': 1,
          'leslie': 1,
          'stefanson': 1,
          'general': 1,
          'joe': 1,
          'nbrenner': 1,
          'teamed': 1,
          'exspouse': 1,
          'sarah': 1,
          'madeline': 1,
          'stowe': 1,
          'check': 1,
          'base': 1,
          'elizabeths': 1,
          'mentor': 1,
          'colonel': 1,
          'moore': 1,
          'nsoon': 1,
          'becomes': 1,
          'apparent': 1,
          'kinky': 1,
          'stuff': 1,
          'question': 1,
          'course': 1,
          'neberts': 1,
          'law': 1,
          'economy': 1,
          'applied': 1,
          'thing': 1,
          'noted': 1,
          'point': 1,
          'protagonists': 1,
          'end': 1,
          'directly': 1,
          'intertwined': 1,
          'issued': 1,
          'spoiler': 1,
          'alert': 1,
          'mentioning': 1,
          'painfully': 1,
          'beginning': 1,
          'everyone': 1,
          'hiding': 1,
          'something': 1,
          'non': 1,
          'level': 1,
          'ineptly': 1,
          'constructed': 1,
          'adapted': 1,
          'christopher': 1,
          'bertolini': 1,
          'william': 1,
          'goldman': 1,
          'nelson': 1,
          'demilles': 1,
          'true': 1,
          'plods': 1,
          'along': 1,
          'filling': 1,
          'blanks': 1,
          'stale': 1,
          'unrealistic': 1,
          'shocking': 1,
          'developments': 1,
          'nhaving': 1,
          'read': 1,
          'difficult': 1,
          'determine': 1,
          'problems': 1,
          'fault': 1,
          'adapters': 1,
          'original': 1,
          'author': 1,
          'suppose': 1,
          'guilty': 1,
          'degree': 1,
          'nscene': 1,
          'stumbles': 1,
          'pointless': 1,
          'insincerity': 1,
          'finding': 1,
          'dead': 1,
          'young': 1,
          'woman': 1,
          'engage': 1,
          'sarcastic': 1,
          'includes': 1,
          'endless': 1,
          'strings': 1,
          'forced': 1,
          'lines': 1,
          'n': 1,
          'asks': 1,
          'killed': 1,
          'nto': 1,
          'answered': 1,
          'knew': 1,
          'already': 1,
          'nonly': 1,
          'weve': 1,
          'spent': 1,
          'twenty': 1,
          'learn': 1,
          'sordid': 1,
          'history': 1,
          'angle': 1,
          'though': 1,
          'develop': 1,
          'never': 1,
          'explored': 1,
          'nnot': 1,
          'matters': 1,
          'since': 1,
          'consistently': 1,
          'ludicrous': 1,
          'reason': 1,
          'drive': 1,
          'attacked': 1,
          'mask': 1,
          'nshe': 1,
          'sees': 1,
          'rings': 1,
          'later': 1,
          'day': 1,
          'ring': 1,
          'ninstead': 1,
          'questioning': 1,
          'real': 1,
          'suspect': 1,
          'take': 1,
          'brenners': 1,
          'houseboat': 1,
          'beat': 1,
          'pour': 1,
          'hot': 1,
          'coffee': 1,
          'lap': 1,
          'pushed': 1,
          'edge': 1,
          'gratuitous': 1,
          'meanspirited': 1,
          'illustrates': 1,
          'complete': 1,
          'disregard': 1,
          'nit': 1,
          'impossible': 1,
          'feel': 1,
          'anything': 1,
          'beyond': 1,
          'surprise': 1,
          'realized': 1,
          'constructs': 1,
          'screen': 1,
          'arent': 1,
          'devices': 1,
          'serve': 1,
          'bad': 1,
          'enough': 1,
          'without': 1,
          'wests': 1,
          'need': 1,
          'hose': 1,
          'tasteless': 1,
          'images': 1,
          'misconduct': 1,
          'ncompelling': 1,
          'crimes': 1,
          'spend': 1,
          'time': 1,
          'flashbacks': 1,
          'show': 1,
          'much': 1,
          'skin': 1,
          'sweat': 1,
          'typical': 1,
          'pornographic': 1,
          'picture': 1,
          'nthese': 1,
          'least': 1,
          'bit': 1,
          'powerful': 1,
          'contrary': 1,
          'theyre': 1,
          'intended': 1,
          'simply': 1,
          'provide': 1,
          'necessary': 1,
          'resentment': 1,
          'villain': 1,
          'whomever': 1,
          'may': 1,
          'turn': 1,
          'addition': 1,
          'sadomasochism': 1,
          'particular': 1,
          'perversion': 1,
          'everything': 1,
          'know': 1,
          'pure': 1,
          'standpoint': 1,
          'allowed': 1,
          'accompaniment': 1,
          'welldeveloped': 1,
          'themes': 1,
          'back': 1,
          'nas': 1,
          'putting': 1,
          'pair': 1,
          'handcuffs': 1,
          'person': 1,
          'insane': 1,
          'positive': 1,
          'elements': 1,
          'couple': 1,
          'njames': 1,
          'terrific': 1,
          'plays': 1,
          'role': 1,
          'sharp': 1,
          'witty': 1,
          'subtlety': 1,
          'also': 1,
          'liked': 1,
          'across': 1,
          'slightly': 1,
          'despite': 1,
          'intent': 1,
          'villainous': 1,
          'nnonetheless': 1,
          'undermined': 1,
          'dreary': 1,
          'obligatory': 1,
          'atmosphere': 1,
          'senseless': 1,
          'neglect': 1,
          'characterization': 1,
          'worst': 1,
          'kind': 1,
          'hollywood': 1,
          'pretends': 1,
          'soul': 1,
          'strict': 1,
          'code': 1,
          'fact': 1,
          'group': 1,
          'cardboard': 1,
          'cutouts': 1,
          'forcefeeding': 1,
          'toxic': 1,
          'landfill': 1,
          'contrivances': 1,
          'onesided': 1,
          'judgments': 1,
          'nneg': 1}),
 Counter({'buddy': 6,
          'air': 5,
          'bud': 5,
          'movie': 5,
          'basketball': 3,
          'dog': 3,
          'nthe': 3,
          'snively': 3,
          'story': 2,
          'quite': 2,
          'doesnt': 2,
          'seem': 2,
          'even': 2,
          'kevin': 2,
          'kevins': 2,
          'nbut': 2,
          'would': 2,
          'think': 2,
          'gets': 2,
          'stupid': 2,
          'pet': 2,
          'disneys': 1,
          'tells': 1,
          'boyandhisdog': 1,
          'twist': 1,
          'pooch': 1,
          'accomplished': 1,
          'player': 1,
          'ngranted': 1,
          'family': 1,
          'comedy': 1,
          'funny': 1,
          'successful': 1,
          'idea': 1,
          'begin': 1,
          'matter': 1,
          'surprisingly': 1,
          'solemn': 1,
          'nsave': 1,
          'occasional': 1,
          'moments': 1,
          'forced': 1,
          'slapstick': 1,
          'wags': 1,
          'tale': 1,
          'straight': 1,
          'face': 1,
          'enjoyable': 1,
          'approach': 1,
          'nif': 1,
          'realized': 1,
          'absurdity': 1,
          'possibly': 1,
          'could': 1,
          'better': 1,
          'nhere': 1,
          'actually': 1,
          'asked': 1,
          'cheer': 1,
          'moment': 1,
          'marches': 1,
          'save': 1,
          'big': 1,
          'game': 1,
          'clad': 1,
          'two': 1,
          'pairs': 1,
          'sneakers': 1,
          'jersey': 1,
          'nits': 1,
          'number': 1,
          'nk9': 1,
          'nyeah': 1,
          'whatever': 1,
          'opens': 1,
          'golden': 1,
          'retriever': 1,
          'escapes': 1,
          'current': 1,
          'owner': 1,
          'abusive': 1,
          'clownforhire': 1,
          'norm': 1,
          'michael': 1,
          'jeter': 1,
          'nhe': 1,
          'ends': 1,
          'fernwell': 1,
          'washington': 1,
          'mopey': 1,
          'newkidontheblock': 1,
          'josh': 1,
          'zegers': 1,
          'trying': 1,
          'cope': 1,
          'move': 1,
          'recent': 1,
          'death': 1,
          'father': 1,
          'nbuddy': 1,
          'nkevin': 1,
          'nonce': 1,
          'proves': 1,
          'oncourt': 1,
          'prowess': 1,
          'selfesteem': 1,
          'rockets': 1,
          'nthey': 1,
          'win': 1,
          'places': 1,
          'schools': 1,
          'team': 1,
          'animal': 1,
          'mascot': 1,
          'make': 1,
          'finals': 1,
          'surfaces': 1,
          'reclaim': 1,
          'neverything': 1,
          'plays': 1,
          'one': 1,
          'heavy': 1,
          'predictability': 1,
          'light': 1,
          'actual': 1,
          'follows': 1,
          'calculated': 1,
          'chain': 1,
          'events': 1,
          'gloom': 1,
          'fades': 1,
          'comeuppance': 1,
          'contracts': 1,
          'rabies': 1,
          'must': 1,
          'executed': 1,
          'old': 1,
          'yellerstyle': 1,
          'nokay': 1,
          'last': 1,
          'ones': 1,
          'lie': 1,
          'least': 1,
          'quicker': 1,
          'sendoff': 1,
          'courtroom': 1,
          'climax': 1,
          'joke': 1,
          'ntheres': 1,
          'fauxcute': 1,
          'musical': 1,
          'montage': 1,
          'reluctant': 1,
          'cleanedup': 1,
          'splish': 1,
          'splash': 1,
          'npaint': 1,
          'cans': 1,
          'spilled': 1,
          'newspapers': 1,
          'buried': 1,
          'name': 1,
          'formula': 1,
          'end': 1,
          'credits': 1,
          'note': 1,
          'special': 1,
          'visual': 1,
          'effects': 1,
          'used': 1,
          'sequences': 1,
          'motion': 1,
          'picture': 1,
          'nthat': 1,
          'well': 1,
          'may': 1,
          'true': 1,
          'although': 1,
          'see': 1,
          'sink': 1,
          'shots': 1,
          'sight': 1,
          'exist': 1,
          'feat': 1,
          'alone': 1,
          'interested': 1,
          'anything': 1,
          'else': 1,
          'na': 1,
          'friend': 1,
          'mine': 1,
          'insists': 1,
          'saw': 1,
          'back': 1,
          'segment': 1,
          'david': 1,
          'lettermans': 1,
          'tricks': 1,
          'ni': 1,
          'cant': 1,
          'appropriate': 1,
          'connection': 1,
          'trick': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'commander': 8,
          'star': 7,
          'wars': 7,
          'film': 7,
          'wing': 6,
          'people': 6,
          'movie': 6,
          'phantom': 5,
          'menace': 5,
          'space': 4,
          'nthis': 4,
          'also': 4,
          'like': 4,
          'plot': 4,
          'another': 3,
          'trailer': 3,
          'time': 3,
          'part': 3,
          'game': 3,
          'kilrathi': 3,
          'played': 3,
          'one': 3,
          'music': 3,
          'unrealistic': 3,
          'ships': 3,
          'watch': 3,
          'release': 2,
          '20th': 2,
          'century': 2,
          'fox': 2,
          'point': 2,
          'ni': 2,
          'know': 2,
          'considering': 2,
          'definitely': 2,
          'worst': 2,
          'horrible': 2,
          'attached': 2,
          'full': 2,
          'nwing': 2,
          'large': 2,
          'nmany': 2,
          'found': 2,
          'interesting': 2,
          'nit': 2,
          'blair': 2,
          'freddie': 2,
          'nafter': 2,
          'pilot': 2,
          'stop': 2,
          'group': 2,
          'trying': 2,
          'earth': 2,
          'parents': 2,
          'nhis': 2,
          'nblair': 2,
          'lillard': 2,
          'seems': 2,
          'role': 2,
          'acting': 2,
          'place': 2,
          'special': 2,
          'effects': 2,
          'side': 2,
          'much': 2,
          'entire': 2,
          'video': 2,
          'shoot': 2,
          'months': 1,
          'episode': 1,
          '1': 1,
          'decides': 1,
          'complete': 1,
          'rip': 1,
          'nwhat': 1,
          'wish': 1,
          'hadnt': 1,
          'done': 1,
          'years': 1,
          'far': 1,
          'nto': 1,
          'attract': 1,
          'draw': 1,
          'crowds': 1,
          'find': 1,
          'certainly': 1,
          'best': 1,
          'experience': 1,
          'tonight': 1,
          'based': 1,
          'computer': 1,
          'fact': 1,
          'almost': 1,
          'says': 1,
          'nowhere': 1,
          'near': 1,
          'level': 1,
          'films': 1,
          'though': 1,
          'nfreddie': 1,
          'prinze': 1,
          'jr': 1,
          'stars': 1,
          'christopher': 1,
          'huge': 1,
          'mistake': 1,
          'performance': 1,
          'date': 1,
          'januarys': 1,
          'shes': 1,
          'actually': 1,
          'saw': 1,
          'good': 1,
          'actor': 1,
          'visions': 1,
          'crushed': 1,
          'n': 1,
          'anyway': 1,
          'nchristopher': 1,
          'battle': 1,
          'destroy': 1,
          'nblairs': 1,
          'fought': 1,
          'battles': 1,
          'died': 1,
          'pilgrims': 1,
          'many': 1,
          'disrespect': 1,
          'command': 1,
          'angel': 1,
          'saffron': 1,
          'burrows': 1,
          'friends': 1,
          'todd': 1,
          'maniac': 1,
          'marshall': 1,
          'matthew': 1,
          'nmatthew': 1,
          'play': 1,
          'every': 1,
          'character': 1,
          'stu': 1,
          '1996s': 1,
          'scream': 1,
          'great': 1,
          'three': 1,
          'small': 1,
          'take': 1,
          'flimsy': 1,
          'doesnt': 1,
          'give': 1,
          'whole': 1,
          'lot': 1,
          'work': 1,
          'explains': 1,
          'drags': 1,
          'seeming': 1,
          'events': 1,
          'going': 1,
          'lines': 1,
          'seem': 1,
          'completely': 1,
          'meaningless': 1,
          'dialogue': 1,
          'terrible': 1,
          'even': 1,
          'laughing': 1,
          'things': 1,
          'bad': 1,
          'nwhen': 1,
          'looking': 1,
          'two': 1,
          'flying': 1,
          'simple': 1,
          'tell': 1,
          'hanging': 1,
          'blue': 1,
          'screen': 1,
          'behind': 1,
          'explosions': 1,
          'look': 1,
          'well': 1,
          'na': 1,
          'ship': 1,
          'blown': 1,
          'fire': 1,
          'present': 1,
          'four': 1,
          'half': 1,
          'second': 1,
          'nmusic': 1,
          'pretty': 1,
          'accompanies': 1,
          'felt': 1,
          'corny': 1,
          'annoying': 1,
          'sounding': 1,
          'given': 1,
          'repeats': 1,
          'hour': 1,
          'without': 1,
          'twists': 1,
          'scenes': 1,
          'anything': 1,
          'important': 1,
          'forced': 1,
          'make': 1,
          'jumps': 1,
          'planets': 1,
          'must': 1,
          'fight': 1,
          'aircraft': 1,
          'nfor': 1,
          'length': 1,
          'takes': 1,
          'truly': 1,
          'watching': 1,
          'long': 1,
          'extended': 1,
          'period': 1,
          'nits': 1,
          'fun': 1,
          'nif': 1,
          'wanted': 1,
          'would': 1,
          'go': 1,
          'home': 1,
          'nat': 1,
          'least': 1,
          'pays': 1,
          'attention': 1,
          'myth': 1,
          'feelings': 1,
          'real': 1,
          'bottom': 1,
          'line': 1,
          'bring': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'peter': 5,
          'balthazar': 4,
          'getty': 4,
          'bad': 3,
          'michael': 3,
          'nthe': 3,
          'life': 3,
          'weller': 3,
          'clubs': 3,
          'movies': 2,
          'watch': 2,
          'nshadow': 2,
          'hours': 2,
          'dorn': 2,
          'really': 2,
          'rebecca': 2,
          'gayheart': 2,
          'gas': 2,
          'l': 2,
          'named': 2,
          'greene': 2,
          'acting': 2,
          'cheap': 2,
          'described': 1,
          'swift': 1,
          'descent': 1,
          'sinful': 1,
          'pleasure': 1,
          'decay': 1,
          'debauchery': 1,
          'hard': 1,
          'nbad': 1,
          '2000s': 1,
          'resemble': 1,
          '1980s': 1,
          'films': 1,
          'even': 1,
          'harder': 1,
          'falls': 1,
          'latter': 1,
          'category': 1,
          'mishmashed': 1,
          'train': 1,
          'wreck': 1,
          'bmovie': 1,
          'actors': 1,
          'including': 1,
          'aka': 1,
          'star': 1,
          'treks': 1,
          'worf': 1,
          'uninteresting': 1,
          'plot': 1,
          'vain': 1,
          'attempts': 1,
          'capitalizing': 1,
          'underground': 1,
          'scenes': 1,
          'seedy': 1,
          'los': 1,
          'angeles': 1,
          'directing': 1,
          'horrendous': 1,
          'music': 1,
          'videoesque': 1,
          'ballistic': 1,
          'editing': 1,
          'taught': 1,
          'school': 1,
          'right': 1,
          'decided': 1,
          'drop': 1,
          'revolves': 1,
          'around': 1,
          'holloway': 1,
          'trying': 1,
          'restart': 1,
          'onedimensional': 1,
          'wife': 1,
          'chloe': 1,
          'nasty': 1,
          'bout': 1,
          'drug': 1,
          'alcohol': 1,
          'addictions': 1,
          'nmichael': 1,
          'takes': 1,
          'job': 1,
          'working': 1,
          'graveyard': 1,
          'shift': 1,
          'local': 1,
          'station': 1,
          'bombarded': 1,
          'ugliness': 1,
          'weirdness': 1,
          'nightlife': 1,
          'one': 1,
          'night': 1,
          'meets': 1,
          'strange': 1,
          'gent': 1,
          'stuart': 1,
          'mr': 1,
          'buckaroo': 1,
          'banzai': 1,
          'nhe': 1,
          'drives': 1,
          'porsche': 1,
          'smokes': 1,
          'french': 1,
          'cigarettes': 1,
          'drones': 1,
          'eventually': 1,
          'coaxing': 1,
          'mike': 1,
          'exploring': 1,
          'underbelly': 1,
          'together': 1,
          'tour': 1,
          'punk': 1,
          'bars': 1,
          'sm': 1,
          'bareknuckle': 1,
          'fights': 1,
          'throws': 1,
          'murder': 1,
          'mystery': 1,
          'cop': 1,
          'played': 1,
          'like': 1,
          'wants': 1,
          'get': 1,
          'chance': 1,
          'reprisal': 1,
          'role': 1,
          'mask': 1,
          '2': 1,
          'simply': 1,
          'dissolves': 1,
          'ripoff': 1,
          'dantes': 1,
          'inferno': 1,
          'mixed': 1,
          'old': 1,
          'stephen': 1,
          'j': 1,
          'cannell': 1,
          'television': 1,
          'pilot': 1,
          'pace': 1,
          'jarring': 1,
          'utterly': 1,
          'without': 1,
          'focus': 1,
          'nother': 1,
          'horrors': 1,
          'include': 1,
          'endless': 1,
          'montages': 1,
          'people': 1,
          'pumping': 1,
          'charlie': 1,
          'sheen': 1,
          'johnny': 1,
          'depp': 1,
          'richard': 1,
          'griecoesque': 1,
          'npeter': 1,
          'clearly': 1,
          'knows': 1,
          'career': 1,
          'completely': 1,
          'gone': 1,
          'doesnt': 1,
          'give': 1,
          'two': 1,
          'shits': 1,
          'nand': 1,
          'exploitation': 1,
          'bondage': 1,
          'dance': 1,
          'brothels': 1,
          'damn': 1,
          'isnt': 1,
          'anyone': 1,
          'safe': 1,
          'ugly': 1,
          'eye': 1,
          'hollywood': 1,
          'nway': 1,
          'back': 1,
          '1984': 1,
          'great': 1,
          'crazy': 1,
          'director': 1,
          'abel': 1,
          'ferrara': 1,
          'made': 1,
          'worse': 1,
          'called': 1,
          'fear': 1,
          'city': 1,
          'reminds': 1,
          'almost': 1,
          'perfect': 1,
          'sequel': 1,
          'ndirectorwriter': 1,
          'isaac': 1,
          'eaton': 1,
          'producers': 1,
          'alevey': 1,
          'andrea': 1,
          'mia': 1,
          'shon': 1,
          'greenblatt': 1,
          'starring': 1,
          'frederic': 1,
          'forrest': 1,
          'brad': 1,
          'douriff': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'rising': 5,
          'mercury': 5,
          'nthe': 5,
          'nand': 4,
          'autistic': 4,
          'kid': 4,
          'willis': 3,
          'boy': 3,
          'agent': 3,
          'merely': 3,
          'baldwin': 3,
          'help': 3,
          'bad': 3,
          'bruce': 2,
          'nmercury': 2,
          'last': 2,
          'man': 2,
          'stale': 2,
          'jeffries': 2,
          'fbi': 2,
          'know': 2,
          'type': 2,
          'job': 2,
          'even': 2,
          'simon': 2,
          'hughes': 2,
          'like': 2,
          'people': 2,
          'message': 2,
          'little': 2,
          'go': 2,
          'nnaturally': 2,
          'government': 2,
          'kudrow': 2,
          'code': 2,
          'nhowever': 2,
          'hitman': 2,
          'l': 2,
          'thats': 2,
          'art': 2,
          'nfor': 2,
          'series': 2,
          'becomes': 2,
          'would': 2,
          'else': 2,
          'movie': 2,
          'well': 2,
          'decent': 2,
          'creating': 2,
          'many': 2,
          'character': 2,
          'simply': 2,
          'scene': 2,
          'nbut': 2,
          'theyre': 2,
          'needs': 1,
          'stay': 1,
          'away': 1,
          'straightforward': 1,
          'action': 1,
          'pictures': 1,
          'adds': 1,
          'growing': 1,
          'list': 1,
          'including': 1,
          'stinkers': 1,
          'jackal': 1,
          'standing': 1,
          'striking': 1,
          'distance': 1,
          'scout': 1,
          'actioners': 1,
          'headlined': 1,
          'though': 1,
          'tries': 1,
          'spice': 1,
          'things': 1,
          'throwing': 1,
          'mix': 1,
          'every': 1,
          'bit': 1,
          'nart': 1,
          'typical': 1,
          'tormented': 1,
          'nyou': 1,
          'haunted': 1,
          'yet': 1,
          'good': 1,
          'physically': 1,
          'assaulting': 1,
          'another': 1,
          'gets': 1,
          'slap': 1,
          'wrist': 1,
          'nenter': 1,
          'miko': 1,
          'rain': 1,
          'savant': 1,
          'nhe': 1,
          'gaze': 1,
          'superencrypted': 1,
          'computer': 1,
          'beeps': 1,
          'head': 1,
          'understand': 1,
          'says': 1,
          'talent': 1,
          'brought': 1,
          'attention': 1,
          'federal': 1,
          'nlt': 1,
          'col': 1,
          'nicholas': 1,
          'alec': 1,
          'nsa': 1,
          'official': 1,
          'bubbling': 1,
          'evil': 1,
          'spent': 1,
          'countless': 1,
          'time': 1,
          'money': 1,
          'implementing': 1,
          'newest': 1,
          'unbreakable': 1,
          'two': 1,
          'underlings': 1,
          'robert': 1,
          'stanton': 1,
          'bodhi': 1,
          'pine': 1,
          'elfman': 1,
          'publish': 1,
          'mercuryencrypted': 1,
          'puzzle': 1,
          'magazine': 1,
          'final': 1,
          'test': 1,
          'effectiveness': 1,
          'cracks': 1,
          'infuriates': 1,
          'sends': 1,
          'terminatorlike': 1,
          'nginter': 1,
          'eliminate': 1,
          'security': 1,
          'hazard': 1,
          'comes': 1,
          'reason': 1,
          'never': 1,
          'explained': 1,
          'called': 1,
          'intricate': 1,
          'machinations': 1,
          'sole': 1,
          'protector': 1,
          'young': 1,
          'nin': 1,
          'unrealistic': 1,
          'sequences': 1,
          'enlists': 1,
          'aid': 1,
          'stranger': 1,
          'stacey': 1,
          'kim': 1,
          'dickens': 1,
          'given': 1,
          'overall': 1,
          'central': 1,
          'concept': 1,
          'behind': 1,
          'ludicrous': 1,
          'nwhy': 1,
          'bother': 1,
          'trying': 1,
          'kill': 1,
          'nmean': 1,
          'nits': 1,
          'anyone': 1,
          'matter': 1,
          'knew': 1,
          'cracking': 1,
          'supercypher': 1,
          'eliminated': 1,
          'nhes': 1,
          'already': 1,
          'proven': 1,
          'broken': 1,
          'ntheres': 1,
          'always': 1,
          'chance': 1,
          'someone': 1,
          'crack': 1,
          'ni': 1,
          'guess': 1,
          'without': 1,
          'jeopardy': 1,
          'theres': 1,
          'much': 1,
          'faults': 1,
          'actually': 1,
          'starts': 1,
          'relatively': 1,
          'pass': 1,
          'painfully': 1,
          'familiar': 1,
          'teaser': 1,
          'flirts': 1,
          'developing': 1,
          'real': 1,
          'characters': 1,
          'semblance': 1,
          'plot': 1,
          'nmr': 1,
          'terminator': 1,
          'appears': 1,
          'everything': 1,
          'begins': 1,
          'going': 1,
          'downhill': 1,
          'quickly': 1,
          'nmiko': 1,
          'age': 1,
          'touching': 1,
          'performance': 1,
          'dont': 1,
          'looking': 1,
          'new': 1,
          'insights': 1,
          'autism': 1,
          'ninstead': 1,
          'latest': 1,
          'unique': 1,
          'partner': 1,
          'routine': 1,
          'buddycop': 1,
          'think': 1,
          'cop': 1,
          'half': 1,
          'twist': 1,
          'nwillis': 1,
          'overplaying': 1,
          'nrather': 1,
          'nuanced': 1,
          'oozes': 1,
          'sliminess': 1,
          'part': 1,
          'recycles': 1,
          'stock': 1,
          'role': 1,
          'loner': 1,
          'copfbi': 1,
          'honed': 1,
          'die': 1,
          'hard': 1,
          'nas': 1,
          'almost': 1,
          'afterthought': 1,
          'halfway': 1,
          'carelessly': 1,
          'gives': 1,
          'trait': 1,
          'addiction': 1,
          'drops': 1,
          'next': 1,
          'biggest': 1,
          'problem': 1,
          'screenplay': 1,
          'nthis': 1,
          'wasnt': 1,
          'thought': 1,
          'goes': 1,
          'extraordinary': 1,
          'lengths': 1,
          'pad': 1,
          'convenient': 1,
          'coincidences': 1,
          'possible': 1,
          'carbon': 1,
          'paper': 1,
          'alone': 1,
          'unworthy': 1,
          'gullible': 1,
          'audience': 1,
          'member': 1,
          'nat': 1,
          'first': 1,
          'scenes': 1,
          'trickle': 1,
          'gruesomely': 1,
          'finale': 1,
          'veritable': 1,
          'flood': 1,
          'films': 1,
          'moments': 1,
          'come': 1,
          'form': 1,
          'jokes': 1,
          'mainly': 1,
          'geeks': 1,
          'developed': 1,
          'supercode': 1,
          'nearly': 1,
          'enough': 1,
          'make': 1,
          'worthwhile': 1,
          'thriller': 1,
          'youre': 1,
          'likely': 1,
          'groan': 1,
          'cheer': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'nthe': 8,
          'powers': 6,
          'austin': 5,
          'ni': 4,
          'hard': 4,
          'character': 4,
          'rather': 3,
          'movies': 3,
          'would': 3,
          'also': 3,
          'nineties': 3,
          'time': 3,
          'gag': 3,
          'thing': 3,
          'comedy': 2,
          'amazingly': 2,
          'bereft': 2,
          'something': 2,
          'could': 2,
          'get': 2,
          'dumb': 2,
          'taken': 2,
          'film': 2,
          'toilet': 2,
          'jokes': 2,
          'gags': 2,
          'sixties': 2,
          'think': 2,
          'way': 2,
          'sexy': 2,
          'agent': 2,
          'dr': 2,
          'basic': 2,
          'even': 2,
          'end': 2,
          'couple': 2,
          'exceptions': 2,
          'son': 2,
          'desperate': 2,
          'whole': 2,
          'make': 2,
          'good': 2,
          'capsule': 1,
          'godawful': 1,
          'thats': 1,
          'shabby': 1,
          'cutrate': 1,
          'laughs': 1,
          'bad': 1,
          'week': 1,
          'life': 1,
          'saw': 1,
          'international': 1,
          'man': 1,
          'mystery': 1,
          'desperately': 1,
          'needed': 1,
          'cheer': 1,
          'least': 1,
          'distract': 1,
          'clear': 1,
          'head': 1,
          'nget': 1,
          'perspective': 1,
          'neven': 1,
          'sometimes': 1,
          'tried': 1,
          'let': 1,
          'dejection': 1,
          'affect': 1,
          'judgment': 1,
          'certain': 1,
          'sucked': 1,
          'rocks': 1,
          'bamboo': 1,
          'shoots': 1,
          'day': 1,
          'lottery': 1,
          'nmichael': 1,
          'myers': 1,
          'barely': 1,
          'supported': 1,
          'fiveminute': 1,
          'sketch': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'stretched': 1,
          'length': 1,
          'feature': 1,
          'padding': 1,
          'sort': 1,
          'propsstrategicallypositionedbetweennakedactorsandcamera': 1,
          'benny': 1,
          'hill': 1,
          'got': 1,
          'tired': 1,
          'fifteen': 1,
          'years': 1,
          'ago': 1,
          'plot': 1,
          'little': 1,
          'back': 1,
          'swinging': 1,
          'mod': 1,
          'hep': 1,
          'dont': 1,
          'im': 1,
          'disservice': 1,
          'attempted': 1,
          'early': 1,
          'look': 1,
          'feel': 1,
          'describing': 1,
          'british': 1,
          'secret': 1,
          'tangled': 1,
          'nemesis': 1,
          'evil': 1,
          'nevil': 1,
          'launched': 1,
          'orbit': 1,
          'cryogenically': 1,
          'forze': 1,
          'return': 1,
          'decades': 1,
          'later': 1,
          'picture': 1,
          'npowers': 1,
          'frozen': 1,
          'wakes': 1,
          'find': 1,
          'deal': 1,
          'total': 1,
          'inability': 1,
          'cope': 1,
          'much': 1,
          'exhausted': 1,
          'course': 1,
          'never': 1,
          'really': 1,
          'dealt': 1,
          'bulk': 1,
          'several': 1,
          'rubrics': 1,
          'james': 1,
          'bond': 1,
          'right': 1,
          'silly': 1,
          'names': 1,
          'inept': 1,
          'slapstick': 1,
          'humor': 1,
          'strategically': 1,
          'placed': 1,
          'props': 1,
          'ideas': 1,
          'come': 1,
          'bright': 1,
          'none': 1,
          'evils': 1,
          'sidesplitting': 1,
          'scene': 1,
          'father': 1,
          'go': 1,
          'encounter': 1,
          'group': 1,
          'chaired': 1,
          'carrie': 1,
          'fisher': 1,
          'throwaway': 1,
          'mimics': 1,
          'various': 1,
          'forms': 1,
          'transportation': 1,
          'behind': 1,
          'couch': 1,
          'visual': 1,
          'describe': 1,
          'recommend': 1,
          'seeing': 1,
          'na': 1,
          'lot': 1,
          'kitsch': 1,
          'resurrected': 1,
          'thrown': 1,
          'screen': 1,
          'clever': 1,
          'ninstead': 1,
          'skewering': 1,
          'bloodless': 1,
          'unfunny': 1,
          'tribute': 1,
          'nmyers': 1,
          'hes': 1,
          'given': 1,
          'idea': 1,
          'play': 1,
          'nplus': 1,
          'attempts': 1,
          'work': 1,
          'giving': 1,
          'relationship': 1,
          'another': 1,
          'albeit': 1,
          'waste': 1,
          'wanted': 1,
          'trying': 1,
          'yet': 1,
          'deck': 1,
          'one': 1,
          'nwith': 1,
          'misses': 1,
          'best': 1,
          'moments': 1,
          'looks': 1,
          'cheesy': 1,
          'kept': 1,
          'wondering': 1,
          'transferred': 1,
          'hidef': 1,
          'video': 1,
          'grainy': 1,
          'stock': 1,
          'many': 1,
          'scenes': 1,
          'air': 1,
          'done': 1,
          'cheap': 1,
          'nmy': 1,
          'definition': 1,
          'simply': 1,
          'laugh': 1,
          'times': 1,
          'laughed': 1,
          'completely': 1,
          'offset': 1,
          'spent': 1,
          'cringing': 1,
          'wanting': 1,
          'damning': 1,
          'say': 1,
          'wayne': 1,
          'garth': 1,
          'likely': 1,
          'shoved': 1,
          'mike': 1,
          'tysons': 1,
          'shorts': 1,
          'sent': 1,
          'sailing': 1,
          'nneg': 1}),
 Counter({'earth': 7,
          'psychlos': 7,
          'film': 6,
          'years': 6,
          'conquered': 6,
          'see': 5,
          'nthe': 5,
          '1': 5,
          '000': 5,
          'cavemen': 5,
          'humans': 5,
          'planet': 4,
          'nso': 4,
          'course': 4,
          'travolta': 4,
          'still': 4,
          'battlefield': 3,
          'year': 3,
          'even': 3,
          'alien': 3,
          'like': 3,
          'nine': 3,
          'led': 3,
          'get': 3,
          'dont': 3,
          'make': 3,
          'golf': 3,
          'around': 3,
          'nand': 3,
          'jets': 3,
          'nwhy': 3,
          'back': 3,
          'good': 3,
          'movie': 3,
          'nothing': 2,
          'come': 2,
          'fact': 2,
          'scientology': 2,
          'begins': 2,
          'two': 2,
          '3000': 2,
          'race': 2,
          'minutes': 2,
          'believe': 2,
          'earlier': 2,
          'nalso': 2,
          'hell': 2,
          'scifi': 2,
          'one': 2,
          'group': 2,
          'captured': 2,
          'way': 2,
          'characters': 2,
          'whenever': 2,
          'definitely': 2,
          'none': 2,
          'monster': 2,
          'fight': 2,
          'turns': 2,
          'growing': 2,
          'time': 2,
          'barry': 2,
          'pepper': 2,
          'reclaim': 2,
          'able': 2,
          'aliens': 2,
          'taking': 2,
          'unattended': 2,
          'leave': 2,
          'us': 2,
          'animals': 2,
          'dogs': 2,
          'nim': 2,
          'travoltas': 2,
          'despite': 2,
          'possibly': 2,
          'think': 2,
          'villain': 2,
          'know': 2,
          'better': 2,
          'day': 2,
          'ni': 2,
          'screening': 2,
          'made': 2,
          'compelled': 2,
          'money': 2,
          'away': 2,
          'worst': 1,
          '2000': 1,
          'guarantee': 1,
          'else': 1,
          'close': 1,
          'nin': 1,
          'ill': 1,
          'surprised': 1,
          'anything': 1,
          'bad': 1,
          'next': 1,
          'ten': 1,
          'nbased': 1,
          'novel': 1,
          'guru': 1,
          'l': 1,
          'ron': 1,
          'hubbard': 1,
          'immediately': 1,
          'find': 1,
          'pieces': 1,
          'key': 1,
          'information': 1,
          'nits': 1,
          'called': 1,
          'sounds': 1,
          'tag': 1,
          'team': 1,
          'mexican': 1,
          'wrestlers': 1,
          'nok': 1,
          '10': 1,
          'seconds': 1,
          'zillion': 1,
          'questions': 1,
          'racing': 1,
          'mind': 1,
          'nwhen': 1,
          'audience': 1,
          'happened': 1,
          'case': 1,
          'going': 1,
          'whole': 1,
          'bunch': 1,
          'problems': 1,
          'later': 1,
          'trust': 1,
          'nkeep': 1,
          'reading': 1,
          'nhow': 1,
          'popcorn': 1,
          'flick': 1,
          'deliver': 1,
          'goods': 1,
          'event': 1,
          'sets': 1,
          'nhumans': 1,
          'live': 1,
          'slave': 1,
          'labor': 1,
          'films': 1,
          'first': 1,
          'act': 1,
          'focus': 1,
          'particular': 1,
          'outside': 1,
          'denver': 1,
          'colorado': 1,
          'nthey': 1,
          'grunt': 1,
          'groan': 1,
          'babble': 1,
          'monsters': 1,
          'herd': 1,
          'newborn': 1,
          'babies': 1,
          'crawled': 1,
          'safety': 1,
          'hills': 1,
          'nnone': 1,
          'knowledge': 1,
          'nthis': 1,
          'start': 1,
          'actionscifi': 1,
          'wanders': 1,
          'wilderness': 1,
          'stumbles': 1,
          'across': 1,
          'thinks': 1,
          'dinosaur': 1,
          'old': 1,
          'miniature': 1,
          'nhe': 1,
          'sees': 1,
          'sorts': 1,
          'shrubs': 1,
          'stupid': 1,
          'little': 1,
          'stood': 1,
          'test': 1,
          'weeds': 1,
          'nanyway': 1,
          'terl': 1,
          'john': 1,
          'smarmy': 1,
          'opportunistic': 1,
          'planning': 1,
          'stealing': 1,
          'recently': 1,
          'discovered': 1,
          'gold': 1,
          'deposit': 1,
          'forced': 1,
          'bidding': 1,
          'whatever': 1,
          'eventually': 1,
          'gain': 1,
          'upper': 1,
          'hand': 1,
          'something': 1,
          'failed': 1,
          'supposed': 1,
          'buffoonish': 1,
          'cant': 1,
          'handle': 1,
          'ways': 1,
          'control': 1,
          'abandoned': 1,
          'air': 1,
          'force': 1,
          'using': 1,
          'left': 1,
          'fly': 1,
          'nplease': 1,
          'car': 1,
          'weeks': 1,
          'replace': 1,
          'every': 1,
          'fluid': 1,
          'hose': 1,
          'hood': 1,
          'anyway': 1,
          'nshouldnt': 1,
          'destroyed': 1,
          'military': 1,
          'installations': 1,
          'massive': 1,
          'minute': 1,
          'campaign': 1,
          'refer': 1,
          'man': 1,
          'yet': 1,
          'arent': 1,
          'dog': 1,
          'mining': 1,
          'earths': 1,
          'precious': 1,
          'resources': 1,
          'unaware': 1,
          'fort': 1,
          'knox': 1,
          'care': 1,
          'point': 1,
          'fan': 1,
          'im': 1,
          'glad': 1,
          'hes': 1,
          'alist': 1,
          'hollywood': 1,
          'occasionally': 1,
          'puts': 1,
          'crowd': 1,
          'pleasing': 1,
          'dreck': 1,
          'michael': 1,
          'phenomenon': 1,
          'nbut': 1,
          'giving': 1,
          'performance': 1,
          'nhes': 1,
          'capable': 1,
          'making': 1,
          'menacing': 1,
          'broken': 1,
          'arrow': 1,
          'faceoff': 1,
          'character': 1,
          'came': 1,
          'screen': 1,
          'couldnt': 1,
          'hold': 1,
          'laughter': 1,
          'nnow': 1,
          'different': 1,
          'facial': 1,
          'features': 1,
          'members': 1,
          'seem': 1,
          'looks': 1,
          'nall': 1,
          'weird': 1,
          'foreheads': 1,
          'pointy': 1,
          'bones': 1,
          'face': 1,
          'goatee': 1,
          'acts': 1,
          'sort': 1,
          'phony': 1,
          'upperclass': 1,
          'snooty': 1,
          'accent': 1,
          'constantly': 1,
          'whines': 1,
          'bureaucratic': 1,
          'nonsense': 1,
          'home': 1,
          'world': 1,
          'nooooo': 1,
          'scary': 1,
          'nas': 1,
          'producer': 1,
          'actor': 1,
          'nyou': 1,
          'dumb': 1,
          'love': 1,
          'independence': 1,
          'example': 1,
          'absolutely': 1,
          'entertaining': 1,
          'everything': 1,
          'could': 1,
          'stay': 1,
          'awake': 1,
          'cleaned': 1,
          'glasses': 1,
          'walked': 1,
          'theater': 1,
          'grocery': 1,
          'list': 1,
          'chose': 1,
          'lottery': 1,
          'numbers': 1,
          'week': 1,
          'replayed': 1,
          'super': 1,
          'bowl': 1,
          'xxv': 1,
          'head': 1,
          'commercials': 1,
          'scrutinize': 1,
          'insides': 1,
          'eyelids': 1,
          'nby': 1,
          'actually': 1,
          'reach': 1,
          'people': 1,
          'avoiding': 1,
          'nfolks': 1,
          'save': 1,
          'cash': 1,
          'ndont': 1,
          'go': 1,
          'rent': 1,
          'buy': 1,
          'nyoud': 1,
          'entertained': 1,
          'youd': 1,
          'use': 1,
          'throwing': 1,
          'wind': 1,
          'watching': 1,
          'sail': 1,
          'send': 1,
          'jacksonville': 1,
          'journal': 1,
          'nwell': 1,
          'entertain': 1,
          'plenty': 1,
          'kind': 1,
          'nunless': 1,
          'youre': 1,
          'captivated': 1,
          'countless': 1,
          'slow': 1,
          'motion': 1,
          'shots': 1,
          'running': 1,
          'youll': 1,
          'nthat': 1,
          'headache': 1,
          'neditors': 1,
          'note': 1,
          'reason': 1,
          'though': 1,
          'converted': 1,
          'sure': 1,
          'nsomething': 1,
          'feel': 1,
          'choice': 1,
          'nneg': 1}),
 Counter({'li': 7,
          'action': 7,
          'jet': 6,
          'film': 6,
          'movie': 5,
          'scenes': 5,
          'enough': 4,
          'one': 3,
          'nand': 3,
          'fight': 3,
          'time': 3,
          'like': 3,
          'story': 3,
          'show': 2,
          'nit': 2,
          'another': 2,
          'take': 2,
          'empty': 2,
          'guy': 2,
          'rival': 2,
          'find': 2,
          'black': 2,
          'three': 2,
          'screenplay': 2,
          'bad': 2,
          'actors': 2,
          'many': 2,
          'ni': 2,
          'love': 2,
          'barely': 2,
          'thought': 2,
          'us': 2,
          'give': 2,
          'nwhat': 2,
          'soundtrack': 2,
          'nthe': 2,
          'much': 2,
          'lines': 2,
          'save': 2,
          'rest': 2,
          'deal': 2,
          'movies': 2,
          'disappointed': 2,
          'couple': 2,
          'cool': 2,
          'simply': 2,
          'way': 2,
          'films': 2,
          'busted': 1,
          'onto': 1,
          'american': 1,
          'scene': 1,
          'stole': 1,
          '1998s': 1,
          'lethal': 1,
          'weapon': 1,
          '4': 1,
          'wicked': 1,
          'looks': 1,
          'nasty': 1,
          'moves': 1,
          'undeniable': 1,
          'charisma': 1,
          'took': 1,
          'two': 1,
          'years': 1,
          'megaproducer': 1,
          'joel': 1,
          'silver': 1,
          'set': 1,
          'allamerican': 1,
          'primed': 1,
          'actionhero': 1,
          'seats': 1,
          'left': 1,
          'alleged': 1,
          'cokehead': 1,
          'van': 1,
          'damme': 1,
          'pudgy': 1,
          'named': 1,
          'steven': 1,
          'seagal': 1,
          'nwould': 1,
          'past': 1,
          'asian': 1,
          'counterparts': 1,
          'namely': 1,
          'chow': 1,
          'yunfat': 1,
          'jackie': 1,
          'chan': 1,
          'nlets': 1,
          'nplot': 1,
          'chinese': 1,
          'gangster': 1,
          'organizations': 1,
          'fall': 1,
          'favor': 1,
          'members': 1,
          'respective': 1,
          'families': 1,
          'start': 1,
          'turning': 1,
          'dead': 1,
          'nthats': 1,
          'badass': 1,
          'blasts': 1,
          'picture': 1,
          'men': 1,
          'behind': 1,
          'brothers': 1,
          'death': 1,
          'exact': 1,
          'style': 1,
          'revenge': 1,
          'ncritique': 1,
          'words': 1,
          'nsimple': 1,
          'nnot': 1,
          'hong': 1,
          'kong': 1,
          'kickass': 1,
          'compensate': 1,
          'horribly': 1,
          'predictable': 1,
          'crappy': 1,
          'dialogue': 1,
          'ohso': 1,
          'overthetop': 1,
          'melodramatic': 1,
          'moments': 1,
          'romance': 1,
          'angle': 1,
          'nwhy': 1,
          'must': 1,
          'ask': 1,
          'really': 1,
          'dig': 1,
          'little': 1,
          'ditty': 1,
          'contained': 1,
          'memorable': 1,
          'sequences': 1,
          'well': 1,
          'poor': 1,
          'dude': 1,
          'supposed': 1,
          'big': 1,
          'break': 1,
          'nhow': 1,
          'bout': 1,
          'giving': 1,
          'slickster': 1,
          'opportunities': 1,
          'kungfu': 1,
          'fighting': 1,
          'chops': 1,
          'slap': 1,
          'chances': 1,
          'practice': 1,
          'actingenglish': 1,
          'abilities': 1,
          'letdown': 1,
          'neven': 1,
          'mask': 1,
          'entertaining': 1,
          'glossed': 1,
          'shell': 1,
          'nin': 1,
          'fact': 1,
          'sure': 1,
          'spent': 1,
          'gathering': 1,
          'hits': 1,
          'socalled': 1,
          'felt': 1,
          'watching': 1,
          'rather': 1,
          'sad': 1,
          'part': 1,
          'script': 1,
          'wouldnt': 1,
          'matter': 1,
          'actually': 1,
          'decent': 1,
          'spouting': 1,
          'tacky': 1,
          'nbut': 1,
          'lindo': 1,
          'aaliyah': 1,
          'werent': 1,
          'shabby': 1,
          'cast': 1,
          'picked': 1,
          'primarily': 1,
          'inability': 1,
          'deliver': 1,
          'convincingly': 1,
          'whole': 1,
          'nfl': 1,
          'franchise': 1,
          'run': 1,
          '15year': 1,
          'old': 1,
          'looking': 1,
          'acting': 1,
          'hes': 1,
          'overlord': 1,
          'drug': 1,
          'ring': 1,
          'mess': 1,
          'nthen': 1,
          'dont': 1,
          'want': 1,
          'seem': 1,
          'im': 1,
          'complaining': 1,
          'solely': 1,
          'completely': 1,
          'foreseeable': 1,
          'since': 1,
          'go': 1,
          'see': 1,
          'anyway': 1,
          'nwell': 1,
          'guess': 1,
          'thats': 1,
          'nthere': 1,
          'satisfy': 1,
          'overall': 1,
          'craving': 1,
          'nalso': 1,
          'incorporate': 1,
          'wires': 1,
          'special': 1,
          'effects': 1,
          'stunts': 1,
          'exaggerated': 1,
          'obvious': 1,
          'stunt': 1,
          'seamless': 1,
          'fellas': 1,
          'necessarily': 1,
          'laws': 1,
          'gravity': 1,
          'thing': 1,
          'original': 1,
          'director': 1,
          'showed': 1,
          'inside': 1,
          'cracklings': 1,
          'human': 1,
          'body': 1,
          'penetrated': 1,
          'blow': 1,
          'simple': 1,
          'creative': 1,
          'touch': 1,
          'couldnt': 1,
          'uninteresting': 1,
          'plot': 1,
          'movements': 1,
          'nim': 1,
          'didnt': 1,
          'real': 1,
          'opportunity': 1,
          'star': 1,
          'good': 1,
          'great': 1,
          'nhopefully': 1,
          'next': 1,
          'charm': 1,
          'charismatic': 1,
          'actor': 1,
          'nfor': 1,
          'hope': 1,
          'sake': 1,
          'title': 1,
          'isnt': 1,
          'premonition': 1,
          'ultimate': 1,
          'fate': 1,
          'boxoffice': 1,
          'nneg': 1}),
 Counter({'nthe': 12,
          'one': 5,
          'water': 5,
          'tom': 5,
          'much': 4,
          'bad': 3,
          'flooded': 2,
          'rain': 2,
          'n': 2,
          'sheriff': 2,
          'line': 2,
          'town': 2,
          'soon': 2,
          'dead': 2,
          'turn': 2,
          'actors': 2,
          'acting': 2,
          'picture': 2,
          'movie': 2,
          'plot': 2,
          'charlie': 2,
          'plays': 2,
          'drops': 2,
          'gang': 2,
          'jim': 2,
          'played': 2,
          'big': 2,
          'interest': 2,
          'single': 2,
          'characters': 2,
          'spend': 2,
          'time': 2,
          'show': 2,
          'night': 1,
          'torrential': 1,
          'downpour': 1,
          'streets': 1,
          'went': 1,
          'see': 1,
          'else': 1,
          'hard': 1,
          'going': 1,
          'die': 1,
          'randy': 1,
          'quaid': 1,
          'asks': 1,
          'storys': 1,
          'opening': 1,
          'evacuates': 1,
          'answer': 1,
          'pretty': 1,
          'yes': 1,
          'nearly': 1,
          'enough': 1,
          'nand': 1,
          'add': 1,
          'insult': 1,
          'injury': 1,
          'supposedly': 1,
          'regretfully': 1,
          'often': 1,
          'npopulating': 1,
          'tvmovieoftheweek': 1,
          'material': 1,
          'host': 1,
          'talented': 1,
          'none': 1,
          'hope': 1,
          'rewarded': 1,
          'handsomely': 1,
          'hopelessly': 1,
          'muddled': 1,
          'nbesides': 1,
          'obvious': 1,
          'hardships': 1,
          'scenes': 1,
          'dog': 1,
          'paddling': 1,
          'receive': 1,
          'black': 1,
          'marks': 1,
          'records': 1,
          'appearing': 1,
          'dismal': 1,
          'ngraham': 1,
          'yosts': 1,
          'script': 1,
          'serves': 1,
          'cliche': 1,
          'another': 1,
          'thankfully': 1,
          'managed': 1,
          'mumble': 1,
          'quite': 1,
          'lines': 1,
          'ndirector': 1,
          'mikael': 1,
          'salomons': 1,
          'staging': 1,
          'confusing': 1,
          'may': 1,
          'trouble': 1,
          'figuring': 1,
          'happening': 1,
          'befuddled': 1,
          'presentation': 1,
          'exacerbated': 1,
          'peter': 1,
          'menzies': 1,
          'jr': 1,
          'dark': 1,
          'ugly': 1,
          'cinematography': 1,
          'concerns': 1,
          'armored': 1,
          'car': 1,
          'gets': 1,
          'stuck': 1,
          'raging': 1,
          'nonboard': 1,
          'guards': 1,
          'uncle': 1,
          'nchristian': 1,
          'slater': 1,
          'better': 1,
          'tender': 1,
          'roles': 1,
          'untamed': 1,
          'heart': 1,
          'nedward': 1,
          'asner': 1,
          'briefly': 1,
          'take': 1,
          'role': 1,
          'ncoming': 1,
          'rescue': 1,
          'headed': 1,
          'autopilot': 1,
          'great': 1,
          'actor': 1,
          'morgan': 1,
          'freeman': 1,
          'nhe': 1,
          'views': 1,
          'loot': 1,
          'three': 1,
          'million': 1,
          'dollars': 1,
          'worth': 1,
          'retirement': 1,
          'plan': 1,
          'entire': 1,
          'watery': 1,
          'chase': 1,
          'posse': 1,
          'tracking': 1,
          'nalong': 1,
          'way': 1,
          'picks': 1,
          'love': 1,
          'person': 1,
          'crucifixweapon': 1,
          'wielding': 1,
          'woman': 1,
          'named': 1,
          'karen': 1,
          'totally': 1,
          'wasted': 1,
          'performance': 1,
          'minnie': 1,
          'driver': 1,
          'action': 1,
          'sequences': 1,
          'repetitive': 1,
          'without': 1,
          'nthey': 1,
          'feature': 1,
          'lots': 1,
          'explosions': 1,
          'gunfire': 1,
          'keep': 1,
          'awake': 1,
          'nchristopher': 1,
          'youngs': 1,
          'emotionless': 1,
          'score': 1,
          'film': 1,
          'trait': 1,
          'earshattering': 1,
          'loudness': 1,
          'holes': 1,
          'ones': 1,
          'dam': 1,
          'breaks': 1,
          'submerging': 1,
          'infinite': 1,
          'number': 1,
          'bullets': 1,
          'rarely': 1,
          'bother': 1,
          'reloading': 1,
          'guns': 1,
          'weapons': 1,
          'ammunition': 1,
          'rained': 1,
          'always': 1,
          'fire': 1,
          'perfectly': 1,
          'nwhen': 1,
          'guys': 1,
          'gun': 1,
          'stays': 1,
          'place': 1,
          'later': 1,
          'swims': 1,
          'get': 1,
          'even': 1,
          'though': 1,
          'swift': 1,
          'strong': 1,
          'uprooting': 1,
          'large': 1,
          'trees': 1,
          'ncounting': 1,
          'improbabilities': 1,
          'enjoyable': 1,
          'ways': 1,
          'wait': 1,
          'kill': 1,
          'unprintable': 1,
          'good': 1,
          'nbetty': 1,
          'white': 1,
          'incessantly': 1,
          'bossy': 1,
          'wife': 1,
          'henpecked': 1,
          'husband': 1,
          'finally': 1,
          'told': 1,
          'audience': 1,
          'roared': 1,
          'laughter': 1,
          'concludes': 1,
          'sickening': 1,
          'set': 1,
          'twists': 1,
          'best': 1,
          'said': 1,
          'merely': 1,
          'stupefyingly': 1,
          'awful': 1,
          'opposed': 1,
          'laughably': 1,
          'nhard': 1,
          'runs': 1,
          '1': 1,
          '37': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'would': 1,
          'fine': 1,
          'teenagers': 1,
          'two': 1,
          'families': 1,
          'behind': 1,
          'us': 1,
          'shockingly': 1,
          'halfdozen': 1,
          'preschoolers': 1,
          'among': 1,
          'nneg': 1}),
 Counter({'ni': 10,
          'one': 9,
          'good': 8,
          'nand': 7,
          'hate': 6,
          'film': 6,
          'guy': 6,
          'stupid': 5,
          'hes': 5,
          'seagal': 4,
          'action': 4,
          'actually': 4,
          'nbut': 4,
          'forsythe': 4,
          'even': 4,
          'old': 3,
          'know': 3,
          'every': 3,
          'nonthreatening': 3,
          'scenes': 3,
          'catch': 3,
          'conveniently': 3,
          'family': 3,
          'cool': 3,
          'nhe': 3,
          'enough': 3,
          'something': 2,
          'things': 2,
          'probably': 2,
          'boring': 2,
          'ever': 2,
          'single': 2,
          'around': 2,
          'bullying': 2,
          'people': 2,
          'lines': 2,
          'brooklyn': 2,
          'plot': 2,
          'chief': 2,
          'beginning': 2,
          'person': 2,
          'films': 2,
          'nso': 2,
          'nwell': 2,
          'william': 2,
          'partner': 2,
          'bad': 2,
          'comes': 2,
          'barowner': 2,
          'gina': 2,
          'gershon': 2,
          'give': 2,
          'away': 2,
          'son': 2,
          'shows': 2,
          'called': 2,
          'dont': 2,
          'gives': 2,
          'performance': 2,
          'feeling': 2,
          'huge': 1,
          'lack': 1,
          'decided': 1,
          'watch': 1,
          'upn': 1,
          'sunday': 1,
          'afternoon': 1,
          'tv': 1,
          'secondrate': 1,
          'movies': 1,
          'show': 1,
          'showed': 1,
          'total': 1,
          'recall': 1,
          'nif': 1,
          'think': 1,
          'star': 1,
          'live': 1,
          'includes': 1,
          'keanu': 1,
          'reeves': 1,
          'nwhat': 1,
          'uses': 1,
          'facial': 1,
          'expression': 1,
          'threatening': 1,
          'situation': 1,
          'squint': 1,
          'movie': 1,
          'goes': 1,
          'saying': 1,
          'accent': 1,
          'fake': 1,
          'burt': 1,
          'reynolds': 1,
          'hairpiece': 1,
          'boogie': 1,
          'nights': 1,
          'despise': 1,
          'never': 1,
          'gets': 1,
          'bruise': 1,
          'fights': 1,
          'twist': 1,
          'leads': 1,
          'melodramatic': 1,
          'fight': 1,
          'villain': 1,
          'nonsatirical': 1,
          'messages': 1,
          'slaps': 1,
          'quote': 1,
          'arthur': 1,
          'miller': 1,
          'nothing': 1,
          'except': 1,
          'takes': 1,
          'place': 1,
          'narcissistic': 1,
          'thinks': 1,
          'fucking': 1,
          'sing': 1,
          'end': 1,
          'credits': 1,
          'hill': 1,
          'billy': 1,
          'rock': 1,
          'tune': 1,
          'sung': 1,
          'penned': 1,
          'nsure': 1,
          'guys': 1,
          'nice': 1,
          'found': 1,
          'letterman': 1,
          'long': 1,
          'ago': 1,
          'makes': 1,
          'worse': 1,
          'reagan': 1,
          'whats': 1,
          'shitterpiece': 1,
          'nabout': 1,
          'trying': 1,
          'stupidass': 1,
          'crook': 1,
          'shot': 1,
          'killed': 1,
          'broad': 1,
          'daylight': 1,
          'couldnt': 1,
          'believe': 1,
          'scene': 1,
          'get': 1,
          'maximum': 1,
          'emotional': 1,
          'effect': 1,
          'ahem': 1,
          'said': 1,
          'took': 1,
          'nim': 1,
          'sorry': 1,
          'anyone': 1,
          'hear': 1,
          'concealing': 1,
          'ones': 1,
          'self': 1,
          'exbrooklynite': 1,
          'dedicates': 1,
          'life': 1,
          'catching': 1,
          'wished': 1,
          'caught': 1,
          'ended': 1,
          'noooo': 1,
          'drags': 1,
          'bullies': 1,
          'forsythes': 1,
          'members': 1,
          'including': 1,
          'none': 1,
          'sister': 1,
          'threatens': 1,
          'nat': 1,
          'point': 1,
          'house': 1,
          'stalks': 1,
          'like': 1,
          'nicholson': 1,
          'shining': 1,
          'complete': 1,
          'hiding': 1,
          'bathroom': 1,
          'added': 1,
          'bonus': 1,
          'girl': 1,
          'loosing': 1,
          'screaming': 1,
          'nseagal': 1,
          'paints': 1,
          'lovable': 1,
          'fiancee': 1,
          'hanging': 1,
          'checking': 1,
          'homework': 1,
          'take': 1,
          'bit': 1,
          'assignment': 1,
          'dunno': 1,
          'playing': 1,
          'childhood': 1,
          'nightmares': 1,
          'also': 1,
          'badass': 1,
          'wants': 1,
          'crooks': 1,
          'taking': 1,
          'attack': 1,
          'unarmed': 1,
          'chinese': 1,
          'swinging': 1,
          'bats': 1,
          'pool': 1,
          'cue': 1,
          'nserves': 1,
          'right': 1,
          'nthis': 1,
          'interesting': 1,
          'supporting': 1,
          'cast': 1,
          'actors': 1,
          'talented': 1,
          'appear': 1,
          'already': 1,
          'mentioned': 1,
          'whos': 1,
          'pretty': 1,
          'horrible': 1,
          'well': 1,
          'overacts': 1,
          'terribly': 1,
          'act': 1,
          'awesome': 1,
          'raising': 1,
          'arizona': 1,
          'goodmans': 1,
          'crime': 1,
          'awful': 1,
          'njerry': 1,
          'orbach': 1,
          'credible': 1,
          'police': 1,
          'checks': 1,
          'segal': 1,
          'gone': 1,
          'nwhy': 1,
          'role': 1,
          'small': 1,
          'sporadic': 1,
          'tarnish': 1,
          'credibility': 1,
          'seems': 1,
          'law': 1,
          'order': 1,
          'cameos': 1,
          'brated': 1,
          'eroticthrillercinemaxstyle': 1,
          'stars': 1,
          'shannon': 1,
          'whirry': 1,
          'terry': 1,
          'malloy': 1,
          'joke': 1,
          'clever': 1,
          'athena': 1,
          'massey': 1,
          'noh': 1,
          'er': 1,
          'julliana': 1,
          'margiulles': 1,
          'two': 1,
          'n': 1,
          'justice': 1,
          'proves': 1,
          'american': 1,
          'suck': 1,
          'theres': 1,
          'thing': 1,
          'john': 1,
          'woo': 1,
          'youre': 1,
          'mood': 1,
          'nobrainer': 1,
          'funyetdumb': 1,
          'bother': 1,
          'watching': 1,
          'nits': 1,
          'nneg': 1}),
 Counter({'vampires': 14,
          'film': 10,
          'vampire': 8,
          'carpenter': 8,
          'action': 7,
          'plot': 7,
          'crow': 6,
          'looking': 5,
          'style': 4,
          'nthe': 4,
          'team': 4,
          'us': 4,
          'get': 4,
          'scene': 4,
          'nthere': 4,
          'new': 3,
          'nwhile': 3,
          'could': 3,
          'would': 3,
          'nbut': 3,
          'kept': 3,
          'book': 3,
          'people': 3,
          'well': 3,
          '4': 3,
          'attack': 2,
          'mexico': 2,
          'house': 2,
          'jack': 2,
          'james': 2,
          'woods': 2,
          'hunters': 2,
          'imagery': 2,
          'little': 2,
          'gives': 2,
          'way': 2,
          'sequence': 2,
          'nthat': 2,
          'enough': 2,
          'director': 2,
          'john': 2,
          'story': 2,
          'next': 2,
          'minimum': 2,
          'interesting': 2,
          'end': 2,
          'something': 2,
          'based': 2,
          'nthis': 2,
          'tell': 2,
          'show': 2,
          'fights': 2,
          'also': 2,
          'question': 2,
          'nin': 2,
          'nnow': 2,
          'tony': 2,
          'like': 2,
          'obvious': 2,
          'dialog': 2,
          'questions': 2,
          'want': 2,
          'life': 2,
          'nwoods': 2,
          'mythic': 2,
          'work': 2,
          'floor': 2,
          'none': 2,
          'chair': 2,
          'effect': 2,
          'sunlight': 2,
          '0': 2,
          'scale': 2,
          'starts': 1,
          'almost': 1,
          'spaghetti': 1,
          'western': 1,
          'small': 1,
          'homestead': 1,
          'nest': 1,
          'leading': 1,
          'clean': 1,
          'initial': 1,
          'overdramatic': 1,
          'fairly': 1,
          'decent': 1,
          'last': 1,
          'let': 1,
          'line': 1,
          'long': 1,
          'much': 1,
          'big': 1,
          'nthen': 1,
          'bit': 1,
          'ideas': 1,
          'really': 1,
          'short': 1,
          'nand': 1,
          'pity': 1,
          'steakley': 1,
          'myth': 1,
          'origins': 1,
          'explains': 1,
          'intertwined': 1,
          'religious': 1,
          'departure': 1,
          'standard': 1,
          'decides': 1,
          'rather': 1,
          'nwhat': 1,
          'saves': 1,
          'serious': 1,
          'screen': 1,
          'time': 1,
          'spectacular': 1,
          'lot': 1,
          'fighting': 1,
          'lots': 1,
          'gore': 1,
          'nanything': 1,
          'intriguing': 1,
          'pleasing': 1,
          'fans': 1,
          'always': 1,
          'carpenters': 1,
          'nhis': 1,
          '1981': 1,
          'version': 1,
          'thing': 1,
          'challenges': 1,
          'viewer': 1,
          'thinking': 1,
          'films': 1,
          'central': 1,
          'science': 1,
          'fictional': 1,
          'njack': 1,
          'heads': 1,
          'swat': 1,
          'cleaning': 1,
          'nests': 1,
          'hightech': 1,
          'spears': 1,
          'crossbows': 1,
          'early': 1,
          'part': 1,
          'wiped': 1,
          'particularly': 1,
          'mean': 1,
          'valek': 1,
          'thomas': 1,
          'ian': 1,
          'griffith': 1,
          'tipped': 1,
          'gone': 1,
          'sidekick': 1,
          'montoya': 1,
          'daniel': 1,
          'baldwin': 1,
          'nto': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'know': 1,
          'side': 1,
          'backers': 1,
          'trust': 1,
          'nmeanwhile': 1,
          'sure': 1,
          'must': 1,
          'hidden': 1,
          'somewhere': 1,
          'nif': 1,
          'sounding': 1,
          'tired': 1,
          'police': 1,
          'corruption': 1,
          'substitutions': 1,
          'thats': 1,
          'exactly': 1,
          'looks': 1,
          'two': 1,
          'partner': 1,
          'cops': 1,
          'gang': 1,
          'hood': 1,
          'packet': 1,
          'heroin': 1,
          'goes': 1,
          'familiar': 1,
          'principle': 1,
          'dont': 1,
          'njust': 1,
          'everything': 1,
          'told': 1,
          'shown': 1,
          'nfundamental': 1,
          'funding': 1,
          'mexicowhat': 1,
          'connection': 1,
          'catholic': 1,
          'church': 1,
          'come': 1,
          'hunter': 1,
          'devote': 1,
          'answers': 1,
          'dramatized': 1,
          'instead': 1,
          'revealed': 1,
          'bad': 1,
          'misuses': 1,
          'wood': 1,
          'persona': 1,
          'plays': 1,
          'particular': 1,
          'sort': 1,
          'cool': 1,
          'lowlife': 1,
          'leads': 1,
          'sergioleone': 1,
          'posturing': 1,
          'crew': 1,
          'prepares': 1,
          'stands': 1,
          'staring': 1,
          'fixedly': 1,
          'shades': 1,
          'target': 1,
          'larger': 1,
          'hero': 1,
          'simple': 1,
          'things': 1,
          'misses': 1,
          'one': 1,
          'motel': 1,
          'room': 1,
          'dead': 1,
          'female': 1,
          'corpse': 1,
          'front': 1,
          'inch': 1,
          'daylight': 1,
          'nas': 1,
          'actress': 1,
          'breathes': 1,
          'gap': 1,
          'widening': 1,
          'narrowing': 1,
          'makes': 1,
          'arm': 1,
          'moving': 1,
          'wonders': 1,
          'existence': 1,
          'secret': 1,
          'nthese': 1,
          'maintain': 1,
          'low': 1,
          'profile': 1,
          'arguably': 1,
          'logical': 1,
          'flaws': 1,
          'mind': 1,
          'whether': 1,
          'consistent': 1,
          'policy': 1,
          'bullets': 1,
          'nit': 1,
          'take': 1,
          'rationalization': 1,
          'explain': 1,
          'scenes': 1,
          'dramatic': 1,
          'yet': 1,
          'toward': 1,
          'walk': 1,
          'burned': 1,
          'roof': 1,
          'lets': 1,
          'swept': 1,
          'beams': 1,
          'ni': 1,
          'suspect': 1,
          'better': 1,
          'thought': 1,
          'might': 1,
          'recommend': 1,
          'audience': 1,
          'say': 1,
          'look': 1,
          'rates': 1,
          '10': 1,
          'nperhaps': 1,
          'read': 1,
          'nneg': 1}),
 Counter({'film': 13,
          'game': 9,
          'films': 6,
          'douglas': 5,
          'us': 5,
          'ni': 5,
          'n': 4,
          'simply': 4,
          'real': 4,
          'nicholas': 4,
          'nhe': 4,
          'really': 4,
          'nthere': 4,
          'dont': 3,
          'believe': 3,
          'nthis': 3,
          'director': 3,
          'isnt': 3,
          'would': 3,
          'nthe': 3,
          'life': 3,
          'brother': 3,
          'whole': 3,
          'considering': 2,
          'hype': 2,
          'concept': 2,
          'fantasy': 2,
          'twist': 2,
          'birthday': 2,
          'van': 2,
          'orton': 2,
          'conrad': 2,
          'hands': 2,
          'tells': 2,
          'clear': 2,
          'time': 2,
          'made': 2,
          'crs': 2,
          'happening': 2,
          'none': 2,
          'joe': 2,
          'eszterhas': 2,
          'verhoeven': 2,
          'premise': 2,
          'nin': 2,
          'way': 2,
          'nyet': 2,
          'suspense': 2,
          'tell': 2,
          'ride': 2,
          'say': 2,
          'back': 2,
          'plot': 2,
          'moment': 2,
          'trying': 2,
          'thing': 2,
          'like': 2,
          'two': 2,
          'david': 1,
          'finchers': 1,
          'latest': 1,
          'four': 1,
          'words': 1,
          'come': 1,
          'mind': 1,
          'michael': 1,
          'vehicle': 1,
          'seven': 1,
          'nearly': 1,
          'clever': 1,
          'innovatively': 1,
          'suspenseful': 1,
          'draws': 1,
          'intriguing': 1,
          'aided': 1,
          'doubt': 1,
          'riveting': 1,
          'trailer': 1,
          'jaded': 1,
          'millionaire': 1,
          'presented': 1,
          'opportunity': 1,
          'enter': 1,
          'living': 1,
          'virtual': 1,
          'reality': 1,
          'deadly': 1,
          'non': 1,
          '48th': 1,
          'invited': 1,
          'dinner': 1,
          'underachieving': 1,
          'younger': 1,
          'sean': 1,
          'penn': 1,
          'nconrad': 1,
          'special': 1,
          'present': 1,
          'gift': 1,
          'certificate': 1,
          'contact': 1,
          'company': 1,
          'called': 1,
          'consumer': 1,
          'recreation': 1,
          'services': 1,
          'make': 1,
          'fun': 1,
          'nnicholas': 1,
          'humors': 1,
          'telling': 1,
          'hell': 1,
          'call': 1,
          'foolish': 1,
          'roleplaying': 1,
          'calls': 1,
          'nthen': 1,
          'reasons': 1,
          'never': 1,
          'decides': 1,
          'go': 1,
          'see': 1,
          'theyre': 1,
          'ends': 1,
          'spending': 1,
          'day': 1,
          'going': 1,
          'screening': 1,
          'process': 1,
          'sense': 1,
          'tight': 1,
          'schedule': 1,
          'keeps': 1,
          'claiming': 1,
          'nnevertheless': 1,
          'seems': 1,
          'rejected': 1,
          'client': 1,
          'weird': 1,
          'things': 1,
          'start': 1,
          'nof': 1,
          'course': 1,
          'weve': 1,
          'covered': 1,
          '30': 1,
          'minutes': 1,
          'screen': 1,
          'else': 1,
          'expect': 1,
          'ndouglas': 1,
          'built': 1,
          'modern': 1,
          'career': 1,
          'around': 1,
          'playing': 1,
          'powerful': 1,
          'violent': 1,
          'unlikable': 1,
          'men': 1,
          'manipulated': 1,
          'unseen': 1,
          'basic': 1,
          'instinct': 1,
          'came': 1,
          'creative': 1,
          'minds': 1,
          'writer': 1,
          'paul': 1,
          'unlike': 1,
          'another': 1,
          'total': 1,
          'recall': 1,
          'case': 1,
          'implanting': 1,
          'someone': 1,
          'elses': 1,
          'memories': 1,
          'enhance': 1,
          'ones': 1,
          'dream': 1,
          'vacation': 1,
          'goal': 1,
          'create': 1,
          'vicarious': 1,
          'bond': 1,
          'audience': 1,
          'nwe': 1,
          'live': 1,
          'adventure': 1,
          'along': 1,
          'protagonist': 1,
          'reacting': 1,
          'turn': 1,
          'theory': 1,
          'key': 1,
          'nall': 1,
          'hang': 1,
          'end': 1,
          'truth': 1,
          'finally': 1,
          'revealed': 1,
          'nnow': 1,
          'forgot': 1,
          'let': 1,
          'thrilling': 1,
          'roller': 1,
          'coaster': 1,
          'nas': 1,
          'suspensethriller': 1,
          'doesnt': 1,
          'much': 1,
          'spin': 1,
          'circles': 1,
          'nby': 1,
          'third': 1,
          'reel': 1,
          'fighting': 1,
          'sleep': 1,
          'checking': 1,
          'watch': 1,
          'endured': 1,
          'predictable': 1,
          'nis': 1,
          'wonder': 1,
          'wont': 1,
          'able': 1,
          'resist': 1,
          'charms': 1,
          'mysterious': 1,
          'potentially': 1,
          'lifethreatening': 1,
          'blonde': 1,
          'ever': 1,
          'heard': 1,
          'glenn': 1,
          'close': 1,
          'nno': 1,
          'well': 1,
          'sharon': 1,
          'stone': 1,
          'nthought': 1,
          'nif': 1,
          'anything': 1,
          'surprises': 1,
          'guess': 1,
          'havent': 1,
          'seen': 1,
          'many': 1,
          'ntrust': 1,
          'looked': 1,
          'hard': 1,
          'find': 1,
          'settle': 1,
          'contrived': 1,
          'gimmicks': 1,
          'ridiculously': 1,
          'implausible': 1,
          'situations': 1,
          'nfincher': 1,
          'aims': 1,
          'hitchcock': 1,
          'lands': 1,
          'somewhere': 1,
          'north': 1,
          'might': 1,
          'intended': 1,
          'viewed': 1,
          'literally': 1,
          'submit': 1,
          'exactly': 1,
          'tried': 1,
          'view': 1,
          'teeth': 1,
          'bite': 1,
          'psychological': 1,
          'issues': 1,
          'early': 1,
          'realizing': 1,
          'begun': 1,
          'smiles': 1,
          'walks': 1,
          'airport': 1,
          'figure': 1,
          'whos': 1,
          'charged': 1,
          'paranoia': 1,
          'looking': 1,
          'world': 1,
          'new': 1,
          'eyes': 1,
          'nit': 1,
          'last': 1,
          'thoughtprovoking': 1,
          'nfrom': 1,
          'wants': 1,
          'stay': 1,
          'step': 1,
          'ahead': 1,
          'nany': 1,
          'significant': 1,
          'archetype': 1,
          'set': 1,
          'beginning': 1,
          'turned': 1,
          'device': 1,
          'nat': 1,
          'outset': 1,
          'told': 1,
          'tailored': 1,
          'individual': 1,
          'nultimately': 1,
          'supposed': 1,
          'work': 1,
          'crucible': 1,
          'obscenely': 1,
          'wealthy': 1,
          'emotionally': 1,
          'detached': 1,
          'aristocrat': 1,
          'fire': 1,
          'proving': 1,
          'soul': 1,
          'endures': 1,
          'personal': 1,
          'gauntlet': 1,
          'given': 1,
          'pieces': 1,
          'puzzle': 1,
          'illuminate': 1,
          'man': 1,
          'wanted': 1,
          'look': 1,
          'anothergreat': 1,
          'idea': 1,
          'poorly': 1,
          'realized': 1,
          'think': 1,
          'least': 1,
          'superior': 1,
          'watching': 1,
          'didnt': 1,
          'mean': 1,
          'seeing': 1,
          'nbryan': 1,
          'singers': 1,
          'usual': 1,
          'suspects': 1,
          'one': 1,
          'truly': 1,
          'unique': 1,
          'ability': 1,
          'get': 1,
          'lost': 1,
          'details': 1,
          'pulling': 1,
          'show': 1,
          'full': 1,
          'masterpiece': 1,
          'canvas': 1,
          'nalso': 1,
          'underrated': 1,
          'jacobs': 1,
          'ladder': 1,
          'tim': 1,
          'robbins': 1,
          'watched': 1,
          'twice': 1,
          'recognize': 1,
          'significance': 1,
          'symbolism': 1,
          'nhere': 1,
          'examples': 1,
          'manipulate': 1,
          'manipulations': 1,
          'sake': 1,
          'use': 1,
          'labyrinth': 1,
          'structure': 1,
          'lead': 1,
          'meaningful': 1,
          'place': 1,
          'major': 1,
          'issue': 1,
          'comes': 1,
          'whether': 1,
          'illusion': 1,
          'highly': 1,
          'sophisticated': 1,
          'con': 1,
          'nwell': 1,
          'right': 1,
          'youve': 1,
          'spent': 1,
          '7': 1,
          'dollars': 1,
          'may': 1,
          'asking': 1,
          'nneg': 1}),
 Counter({'war': 12,
          'film': 10,
          'private': 7,
          'combat': 7,
          'nthe': 7,
          'spielberg': 6,
          'men': 6,
          'ryan_': 5,
          'ryan': 5,
          '_saving': 4,
          'aspect': 4,
          'world': 4,
          'man': 4,
          'movie': 4,
          'miller': 4,
          'realistic': 4,
          'corpses': 4,
          'every': 3,
          'story': 3,
          'eight': 3,
          'soldiers': 3,
          'captain': 3,
          'depiction': 3,
          'death': 3,
          'without': 3,
          'wounds': 3,
          'one': 3,
          'limbs': 3,
          'swearing': 3,
          'lines': 2,
          'spielbergs': 2,
          'realism': 2,
          'nthere': 2,
          'steven': 2,
          'making': 2,
          'way': 2,
          'falls': 2,
          'place': 2,
          'make': 2,
          'perfect': 2,
          'nbut': 2,
          'topic': 2,
          'second': 2,
          'events': 2,
          'whose': 2,
          'evil': 2,
          'utterly': 2,
          'killed': 2,
          'search': 2,
          'ii': 2,
          'opening': 2,
          'possibly': 2,
          'actually': 2,
          'modern': 2,
          'nanother': 2,
          'scenes': 2,
          'largely': 2,
          'troops': 2,
          'convincing': 2,
          'single': 2,
          'see': 2,
          'scene': 2,
          'pulling': 2,
          'back': 2,
          'wartime': 2,
          'moments': 2,
          'lack': 2,
          'particular': 2,
          'behavior': 2,
          'n': 2,
          'could': 2,
          'family': 2,
          'material': 2,
          'closing': 2,
          'weighed': 1,
          'tired': 1,
          'plot': 1,
          'reliance': 1,
          'formulas': 1,
          'mediocre': 1,
          'nods': 1,
          'direction': 1,
          'descending': 1,
          'abyss': 1,
          'cliches': 1,
          'ought': 1,
          'law': 1,
          'movies': 1,
          'truly': 1,
          'serious': 1,
          'topics': 1,
          'nspielbergs': 1,
          'greatest': 1,
          'strength': 1,
          'director': 1,
          'polished': 1,
          'formulaic': 1,
          'carefully': 1,
          'weight': 1,
          'holocaust': 1,
          'technique': 1,
          'backfires': 1,
          'creates': 1,
          'coherent': 1,
          'comprehensible': 1,
          'redemptive': 1,
          'narratives': 1,
          'size': 1,
          'complexity': 1,
          'beyond': 1,
          'reach': 1,
          'human': 1,
          'ken': 1,
          'nin': 1,
          'trivializes': 1,
          'awesome': 1,
          'stories': 1,
          'films': 1,
          'n_saving': 1,
          'tells': 1,
          'detailed': 1,
          'pr': 1,
          'mission': 1,
          'pull': 1,
          'young': 1,
          'three': 1,
          'brothers': 1,
          'fighting': 1,
          'elsewhere': 1,
          'normandy': 1,
          'front': 1,
          'dday': 1,
          'nryan': 1,
          'paratrooper': 1,
          'dropped': 1,
          'behind': 1,
          'enemy': 1,
          'night': 1,
          'landings': 1,
          'became': 1,
          'separated': 1,
          'fellow': 1,
          'takes': 1,
          'across': 1,
          'hellish': 1,
          'terrain': 1,
          'france': 1,
          'ntheres': 1,
          'denying': 1,
          'came': 1,
          'within': 1,
          'shouting': 1,
          'distance': 1,
          'great': 1,
          'equipment': 1,
          'uniforms': 1,
          'weapons': 1,
          'superbly': 1,
          'done': 1,
          'sequence': 1,
          'tom': 1,
          'hanks': 1,
          'leads': 1,
          'onto': 1,
          'omaha': 1,
          'beach': 1,
          'quite': 1,
          'closest': 1,
          'anyone': 1,
          'come': 1,
          'capturing': 1,
          'unendurably': 1,
          'savage': 1,
          'intensity': 1,
          'infantry': 1,
          'pleasing': 1,
          'brave': 1,
          'unknown': 1,
          'american': 1,
          'audiences': 1,
          'shooting': 1,
          'prisoners': 1,
          'allied': 1,
          'banality': 1,
          'routine': 1,
          'foulups': 1,
          'execution': 1,
          'cynicism': 1,
          'technical': 1,
          'side': 1,
          'peerless': 1,
          'always': 1,
          'camera': 1,
          'work': 1,
          'magnificent': 1,
          'pacing': 1,
          'sets': 1,
          'directing': 1,
          'flaw': 1,
          'nhanks': 1,
          'doubt': 1,
          'nominated': 1,
          'oscar': 1,
          'performance': 1,
          'supporting': 1,
          'cast': 1,
          'excellent': 1,
          'though': 1,
          'ted': 1,
          'danson': 1,
          'seems': 1,
          'mite': 1,
          'paratroop': 1,
          'colonel': 1,
          'nyet': 1,
          'attempt': 1,
          'flat': 1,
          'face': 1,
          'something': 1,
          'represented': 1,
          'instances': 1,
          'nit': 1,
          'thoroughly': 1,
          'permeate': 1,
          'context': 1,
          'level': 1,
          'fails': 1,
          'convince': 1,
          'nthroughout': 1,
          'repeatedly': 1,
          'showed': 1,
          'examples': 1,
          'grotesque': 1,
          'produced': 1,
          'mechanized': 1,
          'devices': 1,
          'exception': 1,
          'shown': 1,
          'burning': 1,
          'relative': 1,
          'frequency': 1,
          'nfor': 1,
          'example': 1,
          'guts': 1,
          'spilled': 1,
          'ground': 1,
          'nhere': 1,
          'lose': 1,
          'safety': 1,
          'theres': 1,
          'explosion': 1,
          'looks': 1,
          'half': 1,
          'rest': 1,
          'remarkably': 1,
          'intact': 1,
          'shoes': 1,
          'feet': 1,
          'scattered': 1,
          'everywhere': 1,
          'torsos': 1,
          'charred': 1,
          'importantly': 1,
          'heads': 1,
          'fairness': 1,
          'smattering': 1,
          'wicked': 1,
          'head': 1,
          'relentless': 1,
          'dehumanization': 1,
          'even': 1,
          'failed': 1,
          'retain': 1,
          'indentity': 1,
          'softpedaled': 1,
          'nultimately': 1,
          'bows': 1,
          'hollywood': 1,
          'convention': 1,
          'unwritten': 1,
          'rules': 1,
          'photography': 1,
          'portrayal': 1,
          'nrather': 1,
          'saying': 1,
          'would': 1,
          'better': 1,
          'describe': 1,
          'hollywoodization': 1,
          'dialogue': 1,
          'nanyone': 1,
          'familiar': 1,
          'literature': 1,
          'fussells': 1,
          'superb': 1,
          '_wartime': 1,
          'understanding': 1,
          'war_': 1,
          'extensive': 1,
          'discussion': 1,
          'knows': 1,
          'swore': 1,
          'fluently': 1,
          'letup': 1,
          'die': 1,
          'nasks': 1,
          'infantrymen': 1,
          'group': 1,
          'nrendered': 1,
          'demotic': 1,
          'expressed': 1,
          'little': 1,
          'pecker': 1,
          'get': 1,
          'dicks': 1,
          'shot': 1,
          'variant': 1,
          'thereof': 1,
          'nconversations': 1,
          'literally': 1,
          'sprinkled': 1,
          'f': 1,
          'word': 1,
          'food': 1,
          'sex': 1,
          'nthis': 1,
          'inexplicable': 1,
          'already': 1,
          'r': 1,
          'rating': 1,
          'due': 1,
          'violence': 1,
          'eliminated': 1,
          'nhowever': 1,
          'troubling': 1,
          'spielbergization': 1,
          'intense': 1,
          'hell': 1,
          'humans': 1,
          'ever': 1,
          'created': 1,
          'emotionally': 1,
          'wrenching': 1,
          'enough': 1,
          'nhe': 1,
          'cede': 1,
          'control': 1,
          'bigger': 1,
          'nas': 1,
          'afraid': 1,
          'let': 1,
          'viewer': 1,
          'find': 1,
          'perhaps': 1,
          'unsettled': 1,
          'entirely': 1,
          'clear': 1,
          'emotional': 1,
          'foothold': 1,
          'package': 1,
          'hallmark': 1,
          'give': 1,
          'meaning': 1,
          'coherence': 1,
          'never': 1,
          'cemetary': 1,
          'reminscent': 1,
          '_schindlers': 1,
          'list': 1,
          'saccharine': 1,
          'exchange': 1,
          'wife': 1,
          'close': 1,
          'bit': 1,
          'bad': 1,
          'schindlers': 1,
          'monologue': 1,
          'car': 1,
          'tiepin': 1,
          'ring': 1,
          'saved': 1,
          'another': 1,
          'jew': 1,
          'quotes': 1,
          'abraham': 1,
          'lincoln': 1,
          'emerson': 1,
          'millers': 1,
          'last': 1,
          'words': 1,
          'unbelievable': 1,
          'storyline': 1,
          'prisoner': 1,
          'free': 1,
          'earlier': 1,
          'comes': 1,
          'kill': 1,
          'nthat': 1,
          'subplot': 1,
          'hokey': 1,
          'predictable': 1,
          'nigh': 1,
          'ruins': 1,
          'nnowhere': 1,
          'resolute': 1,
          'meaninglessness': 1,
          'stupidity': 1,
          'waste': 1,
          'characterized': 1,
          'experience': 1,
          'fought': 1,
          'imagine': 1,
          'friendly': 1,
          'fire': 1,
          'collateral': 1,
          'damage': 1,
          'nbecause': 1,
          'failure': 1,
          'mine': 1,
          'deeply': 1,
          'terrible': 1,
          'realities': 1,
          'pan': 1,
          'small': 1,
          'truths': 1,
          'shallows': 1,
          'nneg': 1}),
 Counter({'allen': 10,
          'character': 7,
          'people': 6,
          'hes': 6,
          'like': 6,
          'nthe': 6,
          'film': 5,
          'celebrity': 5,
          'rest': 4,
          'characters': 4,
          'movie': 4,
          'make': 3,
          'know': 3,
          'us': 3,
          'story': 3,
          'robin': 3,
          'main': 3,
          'one': 3,
          'problem': 3,
          'dull': 3,
          'ni': 3,
          'scene': 3,
          'youre': 2,
          'going': 2,
          'hollywood': 2,
          'nif': 2,
          'woody': 2,
          'playing': 2,
          'interest': 2,
          'creating': 2,
          'really': 2,
          'wanted': 2,
          'recent': 2,
          'ncelebrity': 2,
          'another': 2,
          'nallen': 2,
          'picture': 2,
          'imitation': 2,
          'nbranagh': 2,
          'plays': 2,
          'simon': 2,
          'women': 2,
          'famke': 2,
          'janssen': 2,
          'theron': 2,
          'ryder': 2,
          'get': 2,
          'big': 2,
          'dicaprio': 2,
          'car': 2,
          'work': 2,
          'guy': 2,
          'woman': 2,
          'pretty': 2,
          'nin': 2,
          'addition': 2,
          'dont': 2,
          'funny': 2,
          'way': 2,
          'normal': 2,
          'look': 2,
          'celebrities': 2,
          'image': 2,
          'interesting': 2,
          'allens': 2,
          'twohour': 1,
          'injoke': 1,
          'bother': 1,
          'releasing': 1,
          'general': 1,
          'public': 1,
          'create': 1,
          'appeal': 1,
          'primarily': 1,
          'bigname': 1,
          'actors': 1,
          'waste': 1,
          'time': 1,
          'peons': 1,
          'theaters': 1,
          'nwhile': 1,
          'watching': 1,
          'realized': 1,
          'marginal': 1,
          'real': 1,
          'nwhat': 1,
          'continue': 1,
          'kick': 1,
          'conceited': 1,
          'selfdeprecation': 1,
          'yet': 1,
          'tells': 1,
          'living': 1,
          'world': 1,
          'familiar': 1,
          'dealing': 1,
          'ones': 1,
          'actually': 1,
          'knows': 1,
          'recruited': 1,
          'poor': 1,
          'kenneth': 1,
          'branagh': 1,
          'bumble': 1,
          'perfect': 1,
          'almost': 1,
          'made': 1,
          'lee': 1,
          'journalistturnedscreenwriter': 1,
          'divorces': 1,
          'wife': 1,
          'judy': 1,
          'davis': 1,
          'shacks': 1,
          'hot': 1,
          'charlize': 1,
          'winona': 1,
          'goes': 1,
          'trying': 1,
          'stars': 1,
          'melanie': 1,
          'griffith': 1,
          'leonardo': 1,
          'read': 1,
          'script': 1,
          'armored': 1,
          'robbery': 1,
          'usual': 1,
          'elements': 1,
          'films': 1,
          'including': 1,
          'sexual': 1,
          'insecurity': 1,
          'lots': 1,
          'selfloathing': 1,
          'tiring': 1,
          'continuum': 1,
          'episodes': 1,
          'loosely': 1,
          'related': 1,
          'nunless': 1,
          'industry': 1,
          'personally': 1,
          'likely': 1,
          'youll': 1,
          'find': 1,
          'whole': 1,
          'lot': 1,
          'naside': 1,
          'injokes': 1,
          'falls': 1,
          'far': 1,
          'short': 1,
          'compelling': 1,
          'empty': 1,
          'lifeless': 1,
          'proves': 1,
          'superb': 1,
          'performer': 1,
          'nailing': 1,
          'flawlessly': 1,
          'always': 1,
          'whos': 1,
          'getting': 1,
          'little': 1,
          'watch': 1,
          'mean': 1,
          'come': 1,
          'many': 1,
          'times': 1,
          'seen': 1,
          'n': 1,
          'hates': 1,
          'cant': 1,
          'satisfied': 1,
          'end': 1,
          'nothing': 1,
          'solved': 1,
          'nhe': 1,
          'brings': 1,
          'problems': 1,
          'upon': 1,
          'crashing': 1,
          'receiving': 1,
          'fellatio': 1,
          'stunts': 1,
          'hard': 1,
          'care': 1,
          'isnt': 1,
          'capable': 1,
          'arent': 1,
          'didnt': 1,
          'vacant': 1,
          'emotional': 1,
          'attachment': 1,
          'recaptured': 1,
          'supporting': 1,
          'performances': 1,
          'ndavis': 1,
          'low': 1,
          'selfesteem': 1,
          'played': 1,
          'deconstructing': 1,
          'harry': 1,
          'touching': 1,
          'moments': 1,
          'ends': 1,
          'despicable': 1,
          'celebritytype': 1,
          'fills': 1,
          'nsome': 1,
          'actresses': 1,
          'saved': 1,
          'beauty': 1,
          'especially': 1,
          'theyre': 1,
          'likable': 1,
          'nonly': 1,
          'book': 1,
          'editor': 1,
          'interested': 1,
          'simons': 1,
          'new': 1,
          'novel': 1,
          'life': 1,
          'men': 1,
          'much': 1,
          'better': 1,
          'joe': 1,
          'mantegna': 1,
          'man': 1,
          'remarries': 1,
          'christian': 1,
          'slaterjohnny': 1,
          'depptype': 1,
          'spoiled': 1,
          'young': 1,
          'actor': 1,
          'disengaging': 1,
          'nwhats': 1,
          'insulting': 1,
          'standard': 1,
          'themes': 1,
          'seems': 1,
          'think': 1,
          'making': 1,
          'insightful': 1,
          'supposed': 1,
          'identify': 1,
          'entrenched': 1,
          'enlightening': 1,
          'view': 1,
          'media': 1,
          'gives': 1,
          'none': 1,
          'register': 1,
          'realistic': 1,
          'mostly': 1,
          'function': 1,
          'set': 1,
          'pieces': 1,
          'boring': 1,
          'dialogue': 1,
          'decides': 1,
          'needs': 1,
          'theme': 1,
          'expressed': 1,
          'explicitly': 1,
          'says': 1,
          'something': 1,
          'see': 1,
          'celebrate': 1,
          'arguably': 1,
          'biggest': 1,
          'misfire': 1,
          'date': 1,
          'nit': 1,
          'good': 1,
          'scenes': 1,
          'therons': 1,
          'superorgasmic': 1,
          'model': 1,
          'kind': 1,
          'last': 1,
          'might': 1,
          'moving': 1,
          'shown': 1,
          'two': 1,
          'nbut': 1,
          'failure': 1,
          'core': 1,
          'unless': 1,
          'point': 1,
          'selfindulgent': 1,
          'friends': 1,
          'audience': 1,
          'feel': 1,
          'outside': 1,
          'joke': 1,
          'succeeded': 1,
          'enjoy': 1,
          'feeling': 1,
          'outsider': 1,
          'nneg': 1}),
 Counter({'vampire': 6,
          'blade': 5,
          'one': 4,
          'vampires': 4,
          'could': 3,
          'least': 3,
          'seems': 3,
          'blood': 3,
          'used': 2,
          'dracula': 2,
          'youd': 2,
          'nbut': 2,
          'bite': 2,
          'sort': 2,
          'nnot': 2,
          'lack': 2,
          'half': 2,
          'city': 2,
          'wonder': 2,
          'nyou': 2,
          'also': 2,
          'get': 2,
          'time': 2,
          'nblade': 2,
          'comic': 2,
          'book': 2,
          'way': 2,
          'course': 2,
          'audience': 2,
          'enough': 2,
          'nhe': 2,
          'seven': 2,
          'nthis': 2,
          'christopher': 2,
          'lee': 2,
          'nthey': 2,
          'anyone': 1,
          'become': 1,
          'nusually': 1,
          'aristocrat': 1,
          'count': 1,
          'karnstein': 1,
          'nto': 1,
          'qualify': 1,
          'modicum': 1,
          'sophistication': 1,
          'look': 1,
          'cool': 1,
          'suave': 1,
          'biting': 1,
          'young': 1,
          'damsels': 1,
          'throat': 1,
          'today': 1,
          'overly': 1,
          'politically': 1,
          'correct': 1,
          'world': 1,
          'scuzzylooking': 1,
          'longhaired': 1,
          'unshaven': 1,
          'lout': 1,
          'spikedhaired': 1,
          'harridans': 1,
          'put': 1,
          'nby': 1,
          'token': 1,
          'hunter': 1,
          'medical': 1,
          'training': 1,
          'knowledge': 1,
          'occult': 1,
          'maybe': 1,
          'perhaps': 1,
          'professional': 1,
          'soldier': 1,
          'retired': 1,
          'honors': 1,
          'times': 1,
          'nall': 1,
          'need': 1,
          'sharp': 1,
          'weapons': 1,
          'bullets': 1,
          'forged': 1,
          'silver': 1,
          'yahoo': 1,
          'buffy': 1,
          'nwithout': 1,
          'sounding': 1,
          'elitist': 1,
          'fear': 1,
          'greatly': 1,
          'diminished': 1,
          'exclusivity': 1,
          'nwhich': 1,
          'brings': 1,
          'us': 1,
          'latest': 1,
          'long': 1,
          'line': 1,
          'movies': 1,
          'population': 1,
          'putting': 1,
          'thousands': 1,
          'seem': 1,
          'move': 1,
          'pay': 1,
          'police': 1,
          'departments': 1,
          'importantly': 1,
          'establish': 1,
          'exclusive': 1,
          'afterhours': 1,
          'raves': 1,
          'highlight': 1,
          'sprinkler': 1,
          'system': 1,
          'going': 1,
          'dousing': 1,
          'occupants': 1,
          'shower': 1,
          'nwith': 1,
          'hunt': 1,
          'victims': 1,
          'clothes': 1,
          'drycleaned': 1,
          'cleaner': 1,
          'ever': 1,
          'complains': 1,
          'bloodstains': 1,
          'based': 1,
          'marvel': 1,
          'character': 1,
          'like': 1,
          'visual': 1,
          'nthe': 1,
          'plot': 1,
          'basically': 1,
          'repetitiously': 1,
          'slashing': 1,
          'army': 1,
          'seeking': 1,
          'leader': 1,
          'deacon': 1,
          'frost': 1,
          'nits': 1,
          'hokum': 1,
          'nonsense': 1,
          'filmmakers': 1,
          'play': 1,
          'straight': 1,
          'nunfortunately': 1,
          'advance': 1,
          'screening': 1,
          'attended': 1,
          'didnt': 1,
          'see': 1,
          'laughed': 1,
          'much': 1,
          'proceedings': 1,
          'know': 1,
          'movie': 1,
          'trouble': 1,
          'scenes': 1,
          'gore': 1,
          'elicit': 1,
          'screams': 1,
          'fright': 1,
          'instead': 1,
          'evoke': 1,
          'peels': 1,
          'laughter': 1,
          'nanother': 1,
          'telltale': 1,
          'sign': 1,
          'admiring': 1,
          'heros': 1,
          'costume': 1,
          'hero': 1,
          'nalso': 1,
          'todays': 1,
          'merely': 1,
          'fangs': 1,
          'must': 1,
          'proficient': 1,
          'martial': 1,
          'arts': 1,
          'nwhy': 1,
          'supernatural': 1,
          'undead': 1,
          'needs': 1,
          'skills': 1,
          'beyond': 1,
          'n': 1,
          'concept': 1,
          'dates': 1,
          '1974': 1,
          'hammer': 1,
          'filmsrun': 1,
          'run': 1,
          'shaw': 1,
          'production': 1,
          'legend': 1,
          'golden': 1,
          'defeated': 1,
          'karatechopping': 1,
          'siblings': 1,
          'nwesley': 1,
          'snipes': 1,
          'buff': 1,
          'growls': 1,
          'lines': 1,
          'spends': 1,
          'glowering': 1,
          'suffering': 1,
          'indigestion': 1,
          'second': 1,
          'thoughts': 1,
          'starring': 1,
          'coproducing': 1,
          'turkey': 1,
          'another': 1,
          'example': 1,
          'film': 1,
          'honorable': 1,
          'member': 1,
          'horror': 1,
          'family': 1,
          'gone': 1,
          'downhill': 1,
          'dud': 1,
          'mostly': 1,
          'makes': 1,
          'yearn': 1,
          'quaint': 1,
          'old': 1,
          'days': 1,
          'stopped': 1,
          'dangling': 1,
          'crucifix': 1,
          'face': 1,
          'ntodays': 1,
          'panache': 1,
          'style': 1,
          'bela': 1,
          'lugosi': 1,
          'even': 1,
          'worthy': 1,
          'carry': 1,
          'great': 1,
          'bloodsuckers': 1,
          'capes': 1,
          'farcical': 1,
          'frightful': 1,
          'whole': 1,
          'enterprise': 1,
          'dull': 1,
          'lots': 1,
          'sharpening': 1,
          'nneg': 1}),
 Counter({'plenty': 5,
          'story': 5,
          'movie': 4,
          'nhav': 4,
          'hav': 3,
          'film': 3,
          'true': 3,
          'series': 3,
          'women': 3,
          'lee': 3,
          'even': 3,
          'cherot': 2,
          'n': 2,
          'much': 2,
          'new': 2,
          'kiss': 2,
          'bed': 2,
          'jones': 2,
          'gay': 2,
          'go': 2,
          'plentys': 2,
          'outrageous': 2,
          'told': 1,
          'beginning': 1,
          'reminded': 1,
          'nlife': 1,
          'stories': 1,
          'material': 1,
          'nas': 1,
          'scripted': 1,
          'directed': 1,
          'acted': 1,
          'cinematic': 1,
          'newcomer': 1,
          'christopher': 1,
          'scott': 1,
          'limps': 1,
          'along': 1,
          'best': 1,
          'nits': 1,
          'dialog': 1,
          'stilted': 1,
          'know': 1,
          'say': 1,
          'cry': 1,
          'actors': 1,
          'content': 1,
          'read': 1,
          'screenplay': 1,
          'rather': 1,
          'invest': 1,
          'energy': 1,
          'trying': 1,
          'act': 1,
          'nin': 1,
          '28yearold': 1,
          'author': 1,
          'teaching': 1,
          'assistant': 1,
          'nthe': 1,
          'happens': 1,
          'mainly': 1,
          'years': 1,
          'holiday': 1,
          'consists': 1,
          'incidents': 1,
          'various': 1,
          'single': 1,
          'married': 1,
          'try': 1,
          'take': 1,
          'nsince': 1,
          'consistently': 1,
          'refuses': 1,
          'caroline': 1,
          'gooden': 1,
          'tammi': 1,
          'katherine': 1,
          'figures': 1,
          'must': 1,
          'neventually': 1,
          'havilland': 1,
          'savage': 1,
          'chenoa': 1,
          'maxwell': 1,
          'get': 1,
          'together': 1,
          'proving': 1,
          'wasnt': 1,
          'picky': 1,
          'nsexy': 1,
          'sit': 1,
          'lap': 1,
          'ask': 1,
          'nhes': 1,
          'man': 1,
          'knows': 1,
          'mind': 1,
          'frequently': 1,
          'shares': 1,
          'directly': 1,
          'audience': 1,
          'trite': 1,
          'overly': 1,
          'cute': 1,
          'monologues': 1,
          'nfilled': 1,
          'wealthy': 1,
          'africanamericans': 1,
          'closest': 1,
          'tone': 1,
          'love': 1,
          'better': 1,
          'doesnt': 1,
          'anywhere': 1,
          'nat': 1,
          'end': 1,
          'subjects': 1,
          'us': 1,
          'weve': 1,
          'seen': 1,
          'worse': 1,
          'acting': 1,
          'remember': 1,
          'folks': 1,
          'seems': 1,
          'tells': 1,
          'camera': 1,
          'problem': 1,
          'least': 1,
          'bit': 1,
          'interesting': 1,
          'isnt': 1,
          'bad': 1,
          'total': 1,
          'waste': 1,
          'audiences': 1,
          'time': 1,
          'runs': 1,
          '1': 1,
          '32': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'profanity': 1,
          'would': 1,
          'fine': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'guy': 9,
          'gibson': 6,
          'bad': 6,
          'like': 5,
          'ni': 5,
          'hollywood': 4,
          'film': 4,
          'root': 4,
          'movies': 3,
          'get': 3,
          'money': 3,
          'character': 3,
          'hes': 3,
          'real': 3,
          'trying': 3,
          'partner': 3,
          '70': 3,
          '000': 3,
          'seems': 2,
          'ive': 2,
          'payback': 2,
          'better': 2,
          'didnt': 2,
          'ending': 2,
          'nwhat': 2,
          'say': 2,
          'dont': 2,
          'honor': 2,
          'nthe': 2,
          'prize': 2,
          'gibsons': 2,
          'blond': 2,
          'think': 2,
          'original': 2,
          'idea': 2,
          'person': 2,
          'could': 2,
          'nand': 2,
          'made': 2,
          'ngibson': 2,
          'would': 2,
          'pay': 2,
          'going': 2,
          'chicago': 2,
          'mafia': 2,
          'trouble': 2,
          'simple': 2,
          'read': 2,
          'review': 2,
          'comic': 2,
          'many': 2,
          'reviews': 2,
          'stopped': 1,
          'enjoying': 1,
          'fun': 1,
          'watch': 1,
          'ntake': 1,
          'example': 1,
          'people': 1,
          'seem': 1,
          'nhowever': 1,
          'horrible': 1,
          'schlock': 1,
          'straight': 1,
          'hollywoods': 1,
          'vast': 1,
          'talent': 1,
          'sucking': 1,
          'creativity': 1,
          'nit': 1,
          'written': 1,
          'directed': 1,
          'done': 1,
          'however': 1,
          'maybe': 1,
          '30': 1,
          'percent': 1,
          'isnt': 1,
          'nmel': 1,
          'zombie': 1,
          'decided': 1,
          'another': 1,
          'director': 1,
          'reshoot': 1,
          'crock': 1,
          'nif': 1,
          'sign': 1,
          'way': 1,
          'script': 1,
          'calls': 1,
          'nwhy': 1,
          'look': 1,
          'later': 1,
          'changed': 1,
          'mind': 1,
          'nyoure': 1,
          'fired': 1,
          'nlets': 1,
          'someone': 1,
          'else': 1,
          'n': 1,
          'suppose': 1,
          'dead': 1,
          'end': 1,
          'course': 1,
          'hollywoodized': 1,
          'nwhich': 1,
          'happy': 1,
          'beats': 1,
          'impossible': 1,
          'odds': 1,
          'win': 1,
          'nin': 1,
          'case': 1,
          'victories': 1,
          'miss': 1,
          'originality': 1,
          'really': 1,
          'audiences': 1,
          'starved': 1,
          'theyll': 1,
          'flop': 1,
          'lot': 1,
          'hopes': 1,
          'npaybacks': 1,
          'tagline': 1,
          'ready': 1,
          'promised': 1,
          'far': 1,
          'truth': 1,
          'nwhile': 1,
          'certainly': 1,
          'broke': 1,
          'law': 1,
          'odd': 1,
          'little': 1,
          'wouldnt': 1,
          'kill': 1,
          'front': 1,
          'children': 1,
          'protects': 1,
          'woman': 1,
          'ntheres': 1,
          'nothing': 1,
          'never': 1,
          'exist': 1,
          'life': 1,
          'knows': 1,
          'spends': 1,
          'time': 1,
          'act': 1,
          'instead': 1,
          'comes': 1,
          'pretentious': 1,
          'arrogant': 1,
          'story': 1,
          'involves': 1,
          'doublecrossed': 1,
          'wish': 1,
          'recovers': 1,
          'multiple': 1,
          'gunshots': 1,
          'pissed': 1,
          'naturally': 1,
          'whatever': 1,
          'takes': 1,
          'exact': 1,
          'amount': 1,
          'back': 1,
          'less': 1,
          'nhe': 1,
          'makes': 1,
          'point': 1,
          'strictly': 1,
          'grand': 1,
          'na': 1,
          'expartner': 1,
          '25': 1,
          'interest': 1,
          'nthis': 1,
          'completely': 1,
          'stretched': 1,
          'ends': 1,
          'affiliated': 1,
          'understand': 1,
          'n70': 1,
          'spare': 1,
          'change': 1,
          'ntheyd': 1,
          'probably': 1,
          'rather': 1,
          'go': 1,
          'dealing': 1,
          'theyd': 1,
          'respect': 1,
          'much': 1,
          'nmaybe': 1,
          'im': 1,
          'hard': 1,
          'nperhaps': 1,
          'filmmakers': 1,
          'make': 1,
          'popcorn': 1,
          'roger': 1,
          'eberts': 1,
          'liked': 1,
          'role': 1,
          'heart': 1,
          'playing': 1,
          'nthats': 1,
          'allowed': 1,
          'true': 1,
          'walks': 1,
          'smiling': 1,
          'joke': 1,
          'heard': 1,
          'nbut': 1,
          'wrong': 1,
          'wanted': 1,
          'lee': 1,
          'marvin': 1,
          'oldtime': 1,
          'clint': 1,
          'eastwood': 1,
          'somebody': 1,
          'wasnt': 1,
          'ass': 1,
          'kicker': 1,
          'nas': 1,
          'side': 1,
          'note': 1,
          'checked': 1,
          'internet': 1,
          'database': 1,
          'discovered': 1,
          '38th': 1,
          'post': 1,
          'newsgroup': 1,
          'nafter': 1,
          'anyone': 1,
          'want': 1,
          'nreally': 1,
          'care': 1,
          'nim': 1,
          'gain': 1,
          'membership': 1,
          'online': 1,
          'critics': 1,
          'society': 1,
          'posting': 1,
          'nneg': 1}),
 Counter({'batman': 15,
          'film': 15,
          'robin': 11,
          'n': 5,
          'ni': 5,
          'nthe': 4,
          'make': 4,
          'performance': 4,
          'point': 3,
          'even': 3,
          'another': 3,
          'villains': 3,
          'freeze': 3,
          'poison': 3,
          'ivy': 3,
          'uma': 3,
          'order': 3,
          'ivys': 3,
          'bane': 3,
          'life': 3,
          'terrible': 3,
          'fails': 3,
          'forever': 3,
          'way': 3,
          'one': 3,
          'time': 3,
          'laughable': 3,
          'feature': 2,
          'thought': 2,
          'campiness': 2,
          'many': 2,
          'bad': 2,
          'worst': 2,
          'word': 2,
          'action': 2,
          'production': 2,
          'clooney': 2,
          'odonnell': 2,
          'mr': 2,
          'schwarzenegger': 2,
          'everything': 2,
          'thurman': 2,
          'love': 2,
          'dust': 2,
          'fall': 2,
          'nby': 2,
          'barbara': 2,
          'alicia': 2,
          'silverstone': 2,
          'goldsmans': 2,
          'screenplay': 2,
          'dialogue': 2,
          'plot': 2,
          'simply': 2,
          'excitement': 2,
          'nit': 2,
          'positively': 2,
          'device': 2,
          'somehow': 2,
          'schumachers': 2,
          'neon': 2,
          'batcave': 2,
          'helpfully': 2,
          'sequence': 2,
          'gotham': 2,
          'nmr': 2,
          'possible': 2,
          'tone': 2,
          'perhaps': 2,
          'within': 2,
          'films': 2,
          'nis': 2,
          'supposed': 2,
          'campy': 2,
          'impression': 2,
          'isnt': 2,
          'attempts': 2,
          'onscreen': 2,
          'every': 2,
          'hardly': 2,
          'figure': 2,
          'thurmans': 2,
          'entertaining': 2,
          'nher': 2,
          'work': 2,
          'yet': 2,
          'note': 1,
          'may': 1,
          'consider': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'quick': 1,
          'antishark': 1,
          'repellant': 1,
          'adam': 1,
          'west': 1,
          '1966': 1,
          'casually': 1,
          'kicking': 1,
          'patheticlooking': 1,
          'rubber': 1,
          'shark': 1,
          'attached': 1,
          'leg': 1,
          'never': 1,
          'entry': 1,
          'modern': 1,
          'incarnation': 1,
          'would': 1,
          'approach': 1,
          'level': 1,
          'instances': 1,
          'nears': 1,
          'exceeds': 1,
          'standard': 1,
          'nthis': 1,
          'disasterously': 1,
          'easily': 1,
          'series': 1,
          'date': 1,
          'fairly': 1,
          'epitomizes': 1,
          'cinematic': 1,
          'definition': 1,
          'excessive': 1,
          'loud': 1,
          'garish': 1,
          'obnoxious': 1,
          'pointless': 1,
          'gratuitous': 1,
          'sequences': 1,
          'set': 1,
          'pieces': 1,
          'clutter': 1,
          'screen': 1,
          'elaborate': 1,
          'design': 1,
          'overkill': 1,
          'nbatman': 1,
          'features': 1,
          'caped': 1,
          'crusaders': 1,
          'george': 1,
          'debuting': 1,
          'chris': 1,
          'returing': 1,
          'squaring': 1,
          'bevy': 1,
          'chemicallyinduced': 1,
          'nefarious': 1,
          'icecold': 1,
          'arnold': 1,
          'armed': 1,
          'weapon': 1,
          'freezes': 1,
          'sights': 1,
          'slinky': 1,
          'ability': 1,
          'blow': 1,
          'powerful': 1,
          'faces': 1,
          'men': 1,
          'helplessly': 1,
          'really': 1,
          'necessary': 1,
          'accomplish': 1,
          'result': 1,
          'whatever': 1,
          'dispatch': 1,
          'poisoned': 1,
          'kiss': 1,
          'side': 1,
          'giant': 1,
          'steroid': 1,
          'monster': 1,
          'jeep': 1,
          'swanson': 1,
          'grunting': 1,
          'hulk': 1,
          'beast': 1,
          'goals': 1,
          'noble': 1,
          'ones': 1,
          'steals': 1,
          'diamonds': 1,
          'power': 1,
          'climate': 1,
          'suit': 1,
          'keep': 1,
          'body': 1,
          'temperature': 1,
          'zero': 1,
          'degrees': 1,
          'survive': 1,
          'devise': 1,
          'cure': 1,
          'beloved': 1,
          'wife': 1,
          'vendela': 1,
          'dying': 1,
          'degenerative': 1,
          'disease': 1,
          'frozen': 1,
          'suspended': 1,
          'animation': 1,
          'intent': 1,
          'restore': 1,
          'dominance': 1,
          'plant': 1,
          'earth': 1,
          'albeit': 1,
          'destroying': 1,
          'human': 1,
          'nmeanwhile': 1,
          'homefront': 1,
          'wayne': 1,
          'manor': 1,
          'thrown': 1,
          'upheaval': 1,
          'illness': 1,
          'butler': 1,
          'alfred': 1,
          'pennyworth': 1,
          'michael': 1,
          'gough': 1,
          'arrival': 1,
          'niece': 1,
          'nakiva': 1,
          'ridiculous': 1,
          'laughably': 1,
          'astonishingly': 1,
          'lame': 1,
          'jokes': 1,
          'awful': 1,
          'bythenumber': 1,
          'coasts': 1,
          'along': 1,
          'generate': 1,
          'genuine': 1,
          'makes': 1,
          'dreadful': 1,
          'look': 1,
          'inspired': 1,
          'comparison': 1,
          'still': 1,
          'astonished': 1,
          'cheesy': 1,
          'id': 1,
          'seen': 1,
          'used': 1,
          'joke': 1,
          'episode': 1,
          'gilligans': 1,
          'island': 1,
          'multimillion': 1,
          'dollar': 1,
          'blockbuster': 1,
          'njoel': 1,
          'direction': 1,
          'horrific': 1,
          'balance': 1,
          'flashiness': 1,
          'substance': 1,
          'nthere': 1,
          'clear': 1,
          'conceit': 1,
          'towards': 1,
          'moreso': 1,
          'previous': 1,
          'revamped': 1,
          'sporting': 1,
          'gigantic': 1,
          'glowing': 1,
          'emblems': 1,
          'dynamic': 1,
          'duo': 1,
          'case': 1,
          'suppose': 1,
          'ever': 1,
          'happen': 1,
          'forget': 1,
          'headquarters': 1,
          'prominently': 1,
          'figuring': 1,
          'utterlypointless': 1,
          'fight': 1,
          'street': 1,
          'gang': 1,
          'chosen': 1,
          'new': 1,
          'abode': 1,
          'nanother': 1,
          'serve': 1,
          'useful': 1,
          'chew': 1,
          'five': 1,
          'minutes': 1,
          'screentime': 1,
          'involves': 1,
          'incredibly': 1,
          'uninvolving': 1,
          'latenight': 1,
          'motorcycle': 1,
          'race': 1,
          'goons': 1,
          'focus': 1,
          'appears': 1,
          'visually': 1,
          'striking': 1,
          'detriment': 1,
          'story': 1,
          'drastic': 1,
          'shifts': 1,
          'allout': 1,
          'camp': 1,
          'heartfelt': 1,
          'drama': 1,
          'latter': 1,
          'completely': 1,
          'unconvincing': 1,
          'ineffective': 1,
          'promising': 1,
          'signs': 1,
          'group': 1,
          'burst': 1,
          'laughing': 1,
          'twenty': 1,
          'seconds': 1,
          'opening': 1,
          'single': 1,
          'line': 1,
          'uttered': 1,
          'think': 1,
          'hard': 1,
          'imagine': 1,
          'filmmakers': 1,
          'could': 1,
          'intended': 1,
          'parts': 1,
          'taken': 1,
          'seriously': 1,
          'favourites': 1,
          'grunted': 1,
          'bomb': 1,
          'neach': 1,
          'laid': 1,
          'explosive': 1,
          'observatory': 1,
          'overly': 1,
          'turned': 1,
          'doubt': 1,
          'subplot': 1,
          'involving': 1,
          'afred': 1,
          'delivered': 1,
          'solemnly': 1,
          'graveness': 1,
          'made': 1,
          'attempting': 1,
          'utter': 1,
          'farce': 1,
          'narnold': 1,
          'topbilled': 1,
          'villainous': 1,
          'bland': 1,
          'uninteresting': 1,
          'thing': 1,
          'villain': 1,
          'schwarzeneggers': 1,
          'menacing': 1,
          'conveying': 1,
          'pathos': 1,
          'frankly': 1,
          'end': 1,
          'stifling': 1,
          'chuckle': 1,
          'appeared': 1,
          'bulk': 1,
          'consists': 1,
          'uttering': 1,
          'nearunintelligble': 1,
          'puns': 1,
          'oneliners': 1,
          'featuring': 1,
          'permutation': 1,
          'cool': 1,
          'nin': 1,
          'least': 1,
          'inventive': 1,
          'ngeorge': 1,
          'given': 1,
          'little': 1,
          'overshadowed': 1,
          'consequently': 1,
          'looks': 1,
          'rather': 1,
          'uncomfortable': 1,
          'nhis': 1,
          'imposing': 1,
          'nchris': 1,
          'unimpressive': 1,
          'onenote': 1,
          'lackadasically': 1,
          'saving': 1,
          'grace': 1,
          'nundoubtably': 1,
          'sexy': 1,
          'villainess': 1,
          'certainly': 1,
          'overthetop': 1,
          'controlled': 1,
          'fashion': 1,
          'works': 1,
          'splendidly': 1,
          'nms': 1,
          'comic': 1,
          'timing': 1,
          'impeccable': 1,
          'reminds': 1,
          'us': 1,
          'takes': 1,
          'skilled': 1,
          'performers': 1,
          'successfully': 1,
          'im': 1,
          'already': 1,
          'starting': 1,
          'reassess': 1,
          'jim': 1,
          'carreys': 1,
          'amusing': 1,
          'character': 1,
          'shes': 1,
          'offscreen': 1,
          'greatly': 1,
          'suffers': 1,
          'die': 1,
          'kissed': 1,
          'death': 1,
          'halfbad': 1,
          'go': 1,
          'nwhile': 1,
          'ride': 1,
          'pulsepounding': 1,
          'must': 1,
          'admit': 1,
          'bored': 1,
          'watching': 1,
          'although': 1,
          'glance': 1,
          'watch': 1,
          'repeatedly': 1,
          'screening': 1,
          'attention': 1,
          'kept': 1,
          'anticipation': 1,
          'utterance': 1,
          'pun': 1,
          'oneliner': 1,
          'awaiting': 1,
          'scene': 1,
          'flat': 1,
          'nits': 1,
          'long': 1,
          'since': 1,
          'ive': 1,
          'laughed': 1,
          'much': 1,
          'movie': 1,
          'course': 1,
          'operative': 1,
          'nneg': 1}),
 Counter({'data': 10,
          'trek': 6,
          'n': 6,
          'movie': 5,
          'star': 4,
          'laforge': 4,
          'went': 4,
          'insurrection': 4,
          'troi': 4,
          'time': 3,
          'hundred': 3,
          'baku': 3,
          'look': 3,
          'like': 3,
          'picard': 3,
          'one': 3,
          'film': 3,
          'first': 3,
          'contact': 3,
          'seems': 2,
          'cheap': 2,
          'nbut': 2,
          'insurrections': 2,
          'nim': 2,
          'co': 2,
          'real': 2,
          'director': 2,
          'three': 2,
          'called': 2,
          'briar': 2,
          'patch': 2,
          'ruafo': 2,
          'last': 2,
          'nthe': 2,
          'prime': 2,
          'directive': 2,
          'race': 2,
          'exactly': 2,
          'nhe': 2,
          'john': 2,
          'ford': 2,
          'also': 2,
          'saying': 2,
          'gets': 2,
          'thanks': 2,
          'something': 2,
          'youve': 2,
          'seen': 2,
          'idea': 2,
          'crusher': 2,
          'say': 2,
          'everything': 1,
          'ninth': 1,
          'roger': 1,
          'cormangrade': 1,
          'special': 1,
          'effects': 1,
          'highly': 1,
          'derivative': 1,
          'ugly': 1,
          'ad': 1,
          'campaign': 1,
          'poster': 1,
          'nearly': 1,
          'identical': 1,
          'vi': 1,
          'undiscovered': 1,
          'country': 1,
          'pillers': 1,
          'notquitehalfbaked': 1,
          'screenplay': 1,
          'ultimately': 1,
          'claim': 1,
          'responsibility': 1,
          'failure': 1,
          'give': 1,
          'advice': 1,
          'rick': 1,
          'berman': 1,
          'nas': 1,
          'ive': 1,
          'given': 1,
          'financiers': 1,
          'james': 1,
          'bond': 1,
          'movies': 1,
          'breathe': 1,
          'life': 1,
          'workhorse': 1,
          'hiring': 1,
          'solid': 1,
          'genre': 1,
          'writers': 1,
          'put': 1,
          'visor': 1,
          'back': 1,
          'nfor': 1,
          'years': 1,
          'species': 1,
          'humans': 1,
          'lived': 1,
          'ringedplanet': 1,
          'might': 1,
          'well': 1,
          'fountain': 1,
          'youth': 1,
          'nsix': 1,
          'occupy': 1,
          'area': 1,
          'affected': 1,
          'metaphasic': 1,
          'radition': 1,
          'positive': 1,
          'energy': 1,
          'reverses': 1,
          'aging': 1,
          'process': 1,
          'elderly': 1,
          'evil': 1,
          'probably': 1,
          'abrahams': 1,
          'stop': 1,
          'performing': 1,
          'amadeus': 1,
          'dinner': 1,
          'theatre': 1,
          'near': 1,
          'leader': 1,
          'sona': 1,
          'burn': 1,
          'victims': 1,
          'reconstructive': 1,
          'surgery': 1,
          'wants': 1,
          'relocate': 1,
          'people': 1,
          'onto': 1,
          'place': 1,
          'order': 1,
          'replenish': 1,
          'dying': 1,
          'breed': 1,
          'federation': 1,
          'feels': 1,
          'direct': 1,
          'violation': 1,
          'interfere': 1,
          'development': 1,
          'alien': 1,
          'never': 1,
          'mind': 1,
          'didnt': 1,
          'evolvethey': 1,
          'wandering': 1,
          'universe': 1,
          'day': 1,
          'stumbled': 1,
          'upon': 1,
          'magic': 1,
          'world': 1,
          'nevery': 1,
          'frakes': 1,
          'gives': 1,
          'interview': 1,
          'lately': 1,
          'top': 1,
          'whatever': 1,
          'ludicrous': 1,
          'statement': 1,
          'gave': 1,
          'regarding': 1,
          'installment': 1,
          'comedy': 1,
          'thinking': 1,
          'mans': 1,
          'picture': 1,
          'throwback': 1,
          'old': 1,
          'series': 1,
          'grievously': 1,
          'likened': 1,
          'western': 1,
          'presume': 1,
          'thats': 1,
          'school': 1,
          'searchers': 1,
          'gone': 1,
          'record': 1,
          'paramount': 1,
          'recut': 1,
          'version': 1,
          'nthats': 1,
          'excusesomeone': 1,
          'generated': 1,
          'footage': 1,
          'nmuddy': 1,
          'cinematography': 1,
          'sitcom': 1,
          'sets': 1,
          'least': 1,
          'problems': 1,
          'appears': 1,
          'beamed': 1,
          'planet': 1,
          'plotholia': 1,
          'nconsider': 1,
          'curiosities': 1,
          'npicards': 1,
          'love': 1,
          'interest': 1,
          'anij': 1,
          'donna': 1,
          'murphy': 1,
          'slow': 1,
          'things': 1,
          'staring': 1,
          'waterfall': 1,
          'falling': 1,
          'rocks': 1,
          'scientific': 1,
          'explanation': 1,
          'dont': 1,
          'ask': 1,
          'nworf': 1,
          'pimple': 1,
          'hes': 1,
          'reexperiencing': 1,
          'klingon': 1,
          'puberty': 1,
          'timedefying': 1,
          'atmosphere': 1,
          'regains': 1,
          'eyesight': 1,
          'trust': 1,
          'levar': 1,
          'burtons': 1,
          'eyes': 1,
          'scarier': 1,
          'electronic': 1,
          'lenses': 1,
          'wore': 1,
          'brags': 1,
          'firm': 1,
          'boobs': 1,
          'remains': 1,
          'bald': 1,
          'androids': 1,
          'butt': 1,
          'nmost': 1,
          'suspiciously': 1,
          'problem': 1,
          'letting': 1,
          'endangered': 1,
          'little': 1,
          'fun': 1,
          'sun': 1,
          'filmmakers': 1,
          'cloud': 1,
          'issue': 1,
          'nonsense': 1,
          'family': 1,
          'feud': 1,
          'sorts': 1,
          'turn': 1,
          'completely': 1,
          'powermad': 1,
          'superfreak': 1,
          'characters': 1,
          'climax': 1,
          'return': 1,
          'jedi': 1,
          'ending': 1,
          'ndidnt': 1,
          'previously': 1,
          'disobey': 1,
          'prevented': 1,
          'borg': 1,
          'assimilating': 1,
          'millions': 1,
          'nfrakes': 1,
          'lucked': 1,
          'repeat': 1,
          'viewings': 1,
          'reveal': 1,
          'seeds': 1,
          'wrong': 1,
          'direction': 1,
          'sense': 1,
          'comic': 1,
          'timing': 1,
          'mines': 1,
          'acting': 1,
          'chemistry': 1,
          'none': 1,
          'exists': 1,
          'take': 1,
          'painful': 1,
          'drunk': 1,
          'scene': 1,
          'fc': 1,
          'youll': 1,
          'get': 1,
          'general': 1,
          'unsuccessfully': 1,
          'jokey': 1,
          'hollow': 1,
          'tone': 1,
          'neven': 1,
          'worst': 1,
          'shatner': 1,
          'ntreks': 1,
          'final': 1,
          'frontier': 1,
          'maintained': 1,
          'watchability': 1,
          'effortless': 1,
          'charming': 1,
          'comaraderie': 1,
          'kirk': 1,
          'spock': 1,
          'bones': 1,
          'nneither': 1,
          'gates': 1,
          'mcfadden': 1,
          'must': 1,
          'maintains': 1,
          'fabulous': 1,
          'physique': 1,
          'nand': 1,
          'next': 1,
          'generation': 1,
          'films': 1,
          'spend': 1,
          'much': 1,
          'franchises': 1,
          'answer': 1,
          'urkel': 1,
          'nneed': 1,
          'laugh': 1,
          'nhave': 1,
          'sexual': 1,
          'start': 1,
          'singing': 1,
          'lift': 1,
          'four': 1,
          'pound': 1,
          'boulder': 1,
          'hunk': 1,
          'styrofoam': 1,
          'really': 1,
          'nheres': 1,
          'proposed': 1,
          'title': 1,
          'number': 1,
          '10': 1,
          'nin': 1,
          'become': 1,
          'preoccupied': 1,
          'learning': 1,
          'blow': 1,
          'nose': 1,
          'watch': 1,
          'silently': 1,
          '500': 1,
          'yards': 1,
          'away': 1,
          'points': 1,
          'sinister': 1,
          'gaze': 1,
          'android': 1,
          'doubly': 1,
          'robotic': 1,
          'observation': 1,
          'nstar': 1,
          'nice': 1,
          'eerie': 1,
          'silent': 1,
          'moment': 1,
          'hints': 1,
          'better': 1,
          'darker': 1,
          'ii': 1,
          'wrath': 1,
          'khan': 1,
          'boldly': 1,
          'go': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'one': 6,
          'nthe': 5,
          'also': 5,
          'another': 4,
          'much': 3,
          'nbut': 3,
          'bad': 3,
          'actors': 3,
          'beverly': 3,
          'hills': 3,
          'insects': 3,
          'plot': 3,
          'troopers': 3,
          'johnny': 3,
          'love': 3,
          'end': 3,
          'star': 3,
          'worst': 2,
          'verhoeven': 2,
          'directors': 2,
          'total': 2,
          'someone': 2,
          'like': 2,
          'result': 2,
          'special': 2,
          'effects': 2,
          'starship': 2,
          'even': 2,
          'guys': 2,
          'razzie': 2,
          'acting': 2,
          'vanity': 2,
          'devoid': 2,
          'school': 2,
          'supposed': 2,
          'meyer': 2,
          'quarter': 2,
          'nothing': 2,
          'around': 2,
          'planets': 2,
          'nthere': 2,
          'carmen': 2,
          'join': 2,
          'fight': 2,
          'girl': 2,
          'likes': 2,
          'quadrangle': 2,
          'better': 2,
          'nand': 2,
          'stupid': 2,
          'call': 2,
          'infantry': 2,
          'ips': 2,
          'idiot': 2,
          'moments': 2,
          'would': 2,
          'die': 2,
          'win': 2,
          'bugs': 2,
          'bigscreen': 1,
          'experiences': 1,
          'ive': 1,
          'nwith': 1,
          'plus': 1,
          'showgirls': 1,
          'basic': 1,
          'instinct': 1,
          'paul': 1,
          'stamped': 1,
          'currently': 1,
          'blockbuster': 1,
          'nhis': 1,
          'celebrated': 1,
          'recall': 1,
          'admit': 1,
          'successfully': 1,
          'scripted': 1,
          'nonetheless': 1,
          'contained': 1,
          'directorial': 1,
          'flaws': 1,
          'nobviously': 1,
          'nobody': 1,
          'wanted': 1,
          'invest': 1,
          'money': 1,
          'production': 1,
          'seemed': 1,
          'fake': 1,
          'everything': 1,
          'fault': 1,
          'though': 1,
          'employed': 1,
          'nit': 1,
          'surprising': 1,
          'none': 1,
          'received': 1,
          'nominations': 1,
          'awards': 1,
          'expected': 1,
          'five': 1,
          'categories': 1,
          'ncasserole': 1,
          'dense': 1,
          'ribald': 1,
          'dingy': 1,
          'miasma': 1,
          'jackass': 1,
          'bushy': 1,
          'serious': 1,
          'need': 1,
          'nno': 1,
          'pass': 1,
          'primary': 1,
          'drama': 1,
          'classes': 1,
          'first': 1,
          'nwhile': 1,
          'written': 1,
          'well': 1,
          'purely': 1,
          'pathetic': 1,
          'nall': 1,
          'right': 1,
          'fastpaced': 1,
          'entertainment': 1,
          'youre': 1,
          'turn': 1,
          'intellect': 1,
          'completely': 1,
          'enjoy': 1,
          'action': 1,
          'sequences': 1,
          'guts': 1,
          'gore': 1,
          'nas': 1,
          'matter': 1,
          'fact': 1,
          'found': 1,
          'activity': 1,
          'incredibly': 1,
          'boring': 1,
          'complete': 1,
          'waste': 1,
          'two': 1,
          'hours': 1,
          'nhalf': 1,
          'episode': 1,
          '90210': 1,
          'dina': 1,
          'simply': 1,
          'things': 1,
          'presenting': 1,
          'irrelevant': 1,
          'information': 1,
          'irritating': 1,
          'way': 1,
          'web': 1,
          'rest': 1,
          'display': 1,
          'humans': 1,
          'fighting': 1,
          'computergenerated': 1,
          'images': 1,
          'battles': 1,
          'jumping': 1,
          'shoot': 1,
          'get': 1,
          'stabbed': 1,
          'barren': 1,
          'giant': 1,
          'werent': 1,
          'stunts': 1,
          'consider': 1,
          'slightly': 1,
          'exciting': 1,
          'pictures': 1,
          'running': 1,
          'ni': 1,
          'wonder': 1,
          'eat': 1,
          'theres': 1,
          'laughable': 1,
          'treatment': 1,
          'frankly': 1,
          'amusing': 1,
          'jokes': 1,
          'intended': 1,
          'nthis': 1,
          'type': 1,
          'story': 1,
          'obviously': 1,
          'aimed': 1,
          '10yearolds': 1,
          'cant': 1,
          'see': 1,
          'anyway': 1,
          'violence': 1,
          'sexuality': 1,
          'always': 1,
          '16yearolds': 1,
          'frame': 1,
          'mind': 1,
          'pointless': 1,
          'begins': 1,
          'johnnys': 1,
          'girlfriend': 1,
          'richards': 1,
          'decides': 1,
          'wants': 1,
          'throwing': 1,
          'asteroids': 1,
          'earth': 1,
          'njohnny': 1,
          'signs': 1,
          'trooper': 1,
          'overacted': 1,
          'argument': 1,
          'parents': 1,
          'dizzy': 1,
          'boy': 1,
          'results': 1,
          'isnt': 1,
          'means': 1,
          'augmented': 1,
          'worsethanstereotyped': 1,
          'soap': 1,
          'opera': 1,
          'increased': 1,
          'bitchiness': 1,
          'melrose': 1,
          'rather': 1,
          'nanyway': 1,
          'getting': 1,
          'back': 1,
          'thing': 1,
          'might': 1,
          'pilot': 1,
          'dude': 1,
          'league': 1,
          'ndizzy': 1,
          'comes': 1,
          'chasing': 1,
          'joins': 1,
          'nthey': 1,
          'start': 1,
          'training': 1,
          'contains': 1,
          'roger': 1,
          'ebert': 1,
          'calls': 1,
          'syndrome': 1,
          'made': 1,
          'obvious': 1,
          'mistakes': 1,
          'real': 1,
          'combat': 1,
          'guess': 1,
          'nthats': 1,
          'complex': 1,
          'gets': 1,
          'noh': 1,
          'friends': 1,
          'carl': 1,
          'neil': 1,
          'patrick': 1,
          'harris': 1,
          'k': 1,
          'doogie': 1,
          'howser': 1,
          'becomes': 1,
          'involved': 1,
          'war': 1,
          'intelligence': 1,
          'abilities': 1,
          'really': 1,
          'corny': 1,
          'make': 1,
          'want': 1,
          'spray': 1,
          'insecticide': 1,
          'nhes': 1,
          'fifth': 1,
          'nom': 1,
          'fall': 1,
          'kill': 1,
          'try': 1,
          'act': 1,
          'nnaturally': 1,
          'sort': 1,
          'halfwin': 1,
          'nof': 1,
          'course': 1,
          'soldiers': 1,
          'chatting': 1,
          'smiling': 1,
          'carrying': 1,
          'grievous': 1,
          'wounds': 1,
          'caused': 1,
          'bug': 1,
          'legs': 1,
          'suffer': 1,
          'release': 1,
          'hold': 1,
          'captive': 1,
          'killing': 1,
          'nisnt': 1,
          'amazing': 1,
          'earthlings': 1,
          'havent': 1,
          'invented': 1,
          'handheld': 1,
          'weapons': 1,
          'question': 1,
          'remains': 1,
          'gave': 1,
          'instead': 1,
          'zero': 1,
          'nwell': 1,
          'maybe': 1,
          'aquarter': 1,
          'originality': 1,
          'cosex': 1,
          'shower': 1,
          'scene': 1,
          'brief': 1,
          'suspense': 1,
          'copying': 1,
          'zulu': 1,
          'letting': 1,
          'good': 1,
          'half': 1,
          'suckingout': 1,
          'brain': 1,
          'people': 1,
          'deserved': 1,
          'nneg': 1}),
 Counter({'n': 5,
          'jerry': 4,
          'alice': 4,
          'roberts': 4,
          'nis': 3,
          'jerrys': 3,
          'new': 2,
          'conspiracy': 2,
          'theories': 2,
          'another': 2,
          'one': 2,
          'scene': 2,
          'nthe': 2,
          'pretty': 2,
          'perhaps': 2,
          'locked': 2,
          'include': 2,
          'sequence': 2,
          'nand': 2,
          'phew': 1,
          'mess': 1,
          'nfor': 1,
          'fifth': 1,
          'collaboration': 1,
          'director': 1,
          'rich': 1,
          'ard': 1,
          'donner': 1,
          'lethal': 1,
          'weapon': 1,
          'iiii': 1,
          'maverick': 1,
          'mel': 1,
          'gibson': 1,
          'plays': 1,
          'motormouth': 1,
          'maybe': 1,
          'mentally': 1,
          'ill': 1,
          'york': 1,
          'city': 1,
          'cabbie': 1,
          'whose': 1,
          'wild': 1,
          'ignored': 1,
          'julia': 1,
          'acting': 1,
          'serious': 1,
          'justice': 1,
          'department': 1,
          'employee': 1,
          'crush': 1,
          'nshe': 1,
          'interested': 1,
          'person': 1,
          'cia': 1,
          'psychiatrist': 1,
          'patrick': 1,
          'stewart': 1,
          'promptly': 1,
          'kidnaps': 1,
          'conjectures': 1,
          'correct': 1,
          'metal': 1,
          'strip': 1,
          '100': 1,
          'bill': 1,
          'used': 1,
          'track': 1,
          'movements': 1,
          'oliver': 1,
          'stone': 1,
          'still': 1,
          'alive': 1,
          'cut': 1,
          'deal': 1,
          'george': 1,
          'bush': 1,
          'spread': 1,
          'dis': 1,
          'information': 1,
          'movie': 1,
          'really': 1,
          'crazed': 1,
          'cabbies': 1,
          'nno': 1,
          'nas': 1,
          'turns': 1,
          'theres': 1,
          'nonsense': 1,
          'going': 1,
          'involving': 1,
          'revolving': 1,
          'around': 1,
          'background': 1,
          'hint': 1,
          'pay': 1,
          'attention': 1,
          'early': 1,
          'blacks': 1,
          'flashes': 1,
          'back': 1,
          'quick': 1,
          'succession': 1,
          'images': 1,
          'interrogation': 1,
          'room': 1,
          'hypodermic': 1,
          'needles': 1,
          'ms': 1,
          'initial': 1,
          'premise': 1,
          'good': 1,
          'played': 1,
          'delightfully': 1,
          'dizzying': 1,
          'clip': 1,
          'nmel': 1,
          'wideropen': 1,
          'weve': 1,
          'ever': 1,
          'seen': 1,
          'characters': 1,
          'relationship': 1,
          'initially': 1,
          'strains': 1,
          'credibility': 1,
          'combined': 1,
          'star': 1,
          'power': 1,
          'blissfully': 1,
          'intoxicating': 1,
          'highest': 1,
          'wattage': 1,
          'summer': 1,
          'neven': 1,
          'plot': 1,
          'contrivances': 1,
          'begin': 1,
          'intrude': 1,
          'two': 1,
          'remain': 1,
          'randy': 1,
          'dandy': 1,
          'screen': 1,
          'pair': 1,
          'ntheres': 1,
          'great': 1,
          'fortress': 1,
          'er': 1,
          'apartment': 1,
          'trying': 1,
          'act': 1,
          'casual': 1,
          'hyperactive': 1,
          'host': 1,
          'tries': 1,
          'remember': 1,
          'combination': 1,
          'coffee': 1,
          'bean': 1,
          'container': 1,
          'stores': 1,
          'con': 1,
          'tainer': 1,
          'fridge': 1,
          'nother': 1,
          'hilarious': 1,
          'moments': 1,
          'many': 1,
          'trio': 1,
          'memorable': 1,
          'conventionbreakers': 1,
          'ditches': 1,
          'tail': 1,
          'coldcocks': 1,
          'someone': 1,
          'later': 1,
          'eludes': 1,
          'foot': 1,
          'pursuit': 1,
          'uproariously': 1,
          'unexpected': 1,
          'fashion': 1,
          'thats': 1,
          'donners': 1,
          'ladyhawke': 1,
          'playing': 1,
          'theater': 1,
          'btw': 1,
          'nlets': 1,
          'see': 1,
          'pleasures': 1,
          'na': 1,
          'brilliant': 1,
          'title': 1,
          'jazzy': 1,
          'score': 1,
          'carter': 1,
          'burwell': 1,
          'worthpayingtosee': 1,
          'sight': 1,
          'pumping': 1,
          'lead': 1,
          'bad': 1,
          'guy': 1,
          'slamming': 1,
          'anothers': 1,
          'head': 1,
          'wall': 1,
          'noh': 1,
          'woman': 1,
          'ngetting': 1,
          'latter': 1,
          'however': 1,
          'requires': 1,
          'slogging': 1,
          'increasingly': 1,
          'overburdened': 1,
          'ultimately': 1,
          'unappealing': 1,
          'story': 1,
          'last': 1,
          'hour': 1,
          'theory': 1,
          'devolves': 1,
          'tolerable': 1,
          'torturous': 1,
          'almost': 1,
          'unwatchable': 1,
          'nmore': 1,
          'stuff': 1,
          'happens': 1,
          'stupid': 1,
          'shit': 1,
          'variety': 1,
          'worth': 1,
          'mentioning': 1,
          'except': 1,
          'late': 1,
          'locating': 1,
          'abandoned': 1,
          'wing': 1,
          'mental': 1,
          'hospital': 1,
          'hearing': 1,
          'voice': 1,
          'carrying': 1,
          'air': 1,
          'ducts': 1,
          'thought': 1,
          'wabbit': 1,
          'season': 1,
          'ngood': 1,
          'god': 1,
          'rewrites': 1,
          'movies': 1,
          'arrive': 1,
          'nondescript': 1,
          'black': 1,
          'vehicles': 1,
          'nneg': 1}),
 Counter({'harry': 11,
          'film': 9,
          'palmetto': 6,
          'nthe': 6,
          'noir': 4,
          'story': 4,
          'schlondorff': 4,
          'characters': 3,
          'neonoir': 3,
          'films': 3,
          'like': 3,
          'shows': 3,
          'comedy': 3,
          'harrelson': 3,
          'man': 3,
          'problems': 3,
          'bad': 3,
          'trunk': 3,
          'black': 2,
          'photography': 2,
          'long': 2,
          'n': 2,
          'l': 2,
          'confidential': 2,
          'take': 2,
          'theres': 2,
          'even': 2,
          'thriller': 2,
          'work': 2,
          'journalist': 2,
          'nina': 2,
          'nwhile': 2,
          'woman': 2,
          'elisabeth': 2,
          'shue': 2,
          'ransom': 2,
          'kidnapping': 2,
          'stepdaughter': 2,
          'chloe': 2,
          'sevigny': 2,
          'go': 2,
          'know': 2,
          'nas': 2,
          'enough': 2,
          'harrys': 2,
          'comes': 2,
          'scenes': 2,
          'badly': 2,
          'might': 2,
          'played': 2,
          'direction': 2,
          'scene': 2,
          'french': 1,
          'phrase': 1,
          'literally': 1,
          'means': 1,
          'nwebster': 1,
          'defines': 1,
          'type': 1,
          'crime': 1,
          'featuring': 1,
          'cynical': 1,
          'malevolent': 1,
          'sleazy': 1,
          'setting': 1,
          'ominous': 1,
          'atmosphere': 1,
          'conveyed': 1,
          'shadowy': 1,
          'foreboding': 1,
          'background': 1,
          'music': 1,
          'nclassic': 1,
          'including': 1,
          'memorable': 1,
          'fare': 1,
          'big': 1,
          'sleep': 1,
          'original': 1,
          'cape': 1,
          'fear': 1,
          'orson': 1,
          'welles': 1,
          'striking': 1,
          'touch': 1,
          'evil': 1,
          'employed': 1,
          'white': 1,
          'emphasize': 1,
          'shadows': 1,
          'associated': 1,
          'genre': 1,
          'ncolor': 1,
          'came': 1,
          'play': 1,
          'chinatown': 1,
          'blade': 1,
          'runner': 1,
          'easily': 1,
          'best': 1,
          '1997': 1,
          'wonderful': 1,
          'piece': 1,
          'contemporary': 1,
          'filmmaking': 1,
          'nfor': 1,
          'textbook': 1,
          'example': 1,
          'elements': 1,
          'create': 1,
          'absolute': 1,
          'mess': 1,
          'nbased': 1,
          'another': 1,
          'sucker': 1,
          'short': 1,
          'written': 1,
          'british': 1,
          'author': 1,
          'rene': 1,
          'raymond': 1,
          'pseudonym': 1,
          'james': 1,
          'hadley': 1,
          'chase': 1,
          'happens': 1,
          'filmmaker': 1,
          'puts': 1,
          'style': 1,
          'ahead': 1,
          'substance': 1,
          'ndirector': 1,
          'volker': 1,
          'tin': 1,
          'drum': 1,
          'handmaids': 1,
          'tale': 1,
          'stated': 1,
          'werent': 1,
          'sure': 1,
          'time': 1,
          'going': 1,
          'nit': 1,
          'preposterous': 1,
          'taken': 1,
          'seriously': 1,
          'ponderous': 1,
          'begins': 1,
          'barber': 1,
          'woody': 1,
          'released': 1,
          'prison': 1,
          'nsomeone': 1,
          'turned': 1,
          'states': 1,
          'witness': 1,
          'revealed': 1,
          'framed': 1,
          'reward': 1,
          'blowing': 1,
          'lid': 1,
          'corruption': 1,
          'small': 1,
          'florida': 1,
          'town': 1,
          'nbitter': 1,
          'broke': 1,
          'plans': 1,
          'hitchhike': 1,
          'miami': 1,
          'start': 1,
          'life': 1,
          'exgirlfriend': 1,
          'gina': 1,
          'gershon': 1,
          'appears': 1,
          'return': 1,
          'hanging': 1,
          'bar': 1,
          'notices': 1,
          'beautiful': 1,
          'left': 1,
          'purse': 1,
          'phone': 1,
          'booth': 1,
          'nharry': 1,
          'pockets': 1,
          'cash': 1,
          'reappear': 1,
          'catch': 1,
          'money': 1,
          'pocket': 1,
          'nno': 1,
          'problem': 1,
          'though': 1,
          'radiant': 1,
          'blonde': 1,
          'rhea': 1,
          'malroux': 1,
          'young': 1,
          'wife': 1,
          'rich': 1,
          'older': 1,
          'heart': 1,
          'proposition': 1,
          'nrhea': 1,
          'needs': 1,
          'threatening': 1,
          'voice': 1,
          'someone': 1,
          'collect': 1,
          'staged': 1,
          'teenage': 1,
          'odette': 1,
          'girls': 1,
          'want': 1,
          'bilk': 1,
          'halfmillion': 1,
          'dollar': 1,
          'old': 1,
          'happily': 1,
          'give': 1,
          '50': 1,
          '000': 1,
          'helping': 1,
          'scam': 1,
          'nthings': 1,
          'wrong': 1,
          'course': 1,
          'nodette': 1,
          'found': 1,
          'dead': 1,
          'leaving': 1,
          'frantically': 1,
          'trying': 1,
          'dispose': 1,
          'corpse': 1,
          'cover': 1,
          'tracks': 1,
          'nin': 1,
          'ironic': 1,
          'twist': 1,
          'asked': 1,
          'local': 1,
          'noffice': 1,
          'nthey': 1,
          'need': 1,
          'press': 1,
          'liaison': 1,
          'field': 1,
          'questions': 1,
          'odettes': 1,
          'feel': 1,
          'perfect': 1,
          'job': 1,
          'nnot': 1,
          'setup': 1,
          'knew': 1,
          'handle': 1,
          'material': 1,
          'never': 1,
          'settles': 1,
          'consistent': 1,
          'tone': 1,
          'actors': 1,
          'dont': 1,
          'either': 1,
          'muddling': 1,
          'proceedings': 1,
          'wasnt': 1,
          'suffers': 1,
          'major': 1,
          'logic': 1,
          'nwoody': 1,
          'talented': 1,
          'actor': 1,
          'admirable': 1,
          'willingness': 1,
          'risky': 1,
          'parts': 1,
          'hes': 1,
          'lost': 1,
          'npresented': 1,
          'crusading': 1,
          'horribly': 1,
          'wronged': 1,
          'makes': 1,
          'sense': 1,
          'would': 1,
          'stupid': 1,
          'dishonest': 1,
          'get': 1,
          'caught': 1,
          'scheme': 1,
          'nharrelson': 1,
          'clearly': 1,
          'doesnt': 1,
          'character': 1,
          'spends': 1,
          'glowering': 1,
          'sweating': 1,
          'generally': 1,
          'acting': 1,
          'miserable': 1,
          'nmeanwhile': 1,
          'gives': 1,
          'goofy': 1,
          'performance': 1,
          'behaving': 1,
          'vamp': 1,
          'nitrous': 1,
          'oxide': 1,
          'lays': 1,
          'many': 1,
          'slurpy': 1,
          'quirks': 1,
          'juliette': 1,
          'lewis': 1,
          'jr': 1,
          'despite': 1,
          'number': 1,
          'steamy': 1,
          'chemistry': 1,
          'women': 1,
          'nto': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'dubs': 1,
          'dialogue': 1,
          'lips': 1,
          'running': 1,
          'others': 1,
          'bodies': 1,
          'ntwo': 1,
          'particularly': 1,
          'highlight': 1,
          'driving': 1,
          'body': 1,
          'minor': 1,
          'car': 1,
          'wreck': 1,
          'cop': 1,
          'officer': 1,
          'wants': 1,
          'help': 1,
          'change': 1,
          'flat': 1,
          'tire': 1,
          'asks': 1,
          'open': 1,
          'nharrys': 1,
          'pathetic': 1,
          'attempts': 1,
          'keep': 1,
          'closed': 1,
          'worked': 1,
          'schlondorffs': 1,
          'grim': 1,
          'embarrassing': 1,
          'nadir': 1,
          'guy': 1,
          'prepares': 1,
          'kill': 1,
          'nwere': 1,
          'supposed': 1,
          'horrified': 1,
          'watching': 1,
          'hero': 1,
          'dangling': 1,
          'bathtub': 1,
          'filled': 1,
          'acid': 1,
          'point': 1,
          'foundered': 1,
          'merely': 1,
          'reminiscent': 1,
          'jessica': 1,
          'roger': 1,
          'rabbit': 1,
          'suspended': 1,
          'vat': 1,
          'dip': 1,
          'nhad': 1,
          'tongue': 1,
          'firmly': 1,
          'cheek': 1,
          'entertaining': 1,
          'shaggy': 1,
          'dog': 1,
          'nbut': 1,
          'harsh': 1,
          'sluggish': 1,
          'paintbynumbers': 1,
          'exercise': 1,
          'neo': 1,
          'cluelessness': 1,
          'navoid': 1,
          'nonsense': 1,
          'see': 1,
          'instead': 1,
          'nneg': 1}),
 Counter({'movie': 12,
          'even': 6,
          'time': 5,
          'ni': 5,
          'lara': 4,
          'also': 4,
          'im': 4,
          'lot': 3,
          'well': 3,
          'scenes': 3,
          'cool': 3,
          'film': 3,
          'dialogue': 3,
          'especially': 3,
          '710': 3,
          'ass': 2,
          'likes': 2,
          'say': 2,
          'shirts': 2,
          'jolie': 2,
          'action': 2,
          'look': 2,
          'bad': 2,
          'guys': 2,
          'lame': 2,
          'moments': 2,
          'end': 2,
          'nall': 2,
          'wasnt': 2,
          'early': 2,
          'every': 2,
          'know': 2,
          'guess': 2,
          'west': 2,
          'didnt': 2,
          'energy': 2,
          'father': 2,
          'crap': 2,
          'one': 2,
          'talking': 2,
          'thats': 2,
          'actually': 2,
          'care': 2,
          'though': 2,
          'supposed': 2,
          'trust': 2,
          'see': 2,
          'youll': 2,
          'go': 2,
          'worst': 2,
          'movies': 2,
          'coming': 2,
          'lost': 2,
          'mummy': 2,
          '310': 2,
          'wild': 2,
          'plot': 1,
          'croft': 1,
          'british': 1,
          'rich': 1,
          'kicks': 1,
          'nshe': 1,
          'raid': 1,
          'tombs': 1,
          'illuminata': 1,
          'discover': 1,
          'nine': 1,
          'planets': 1,
          'stand': 1,
          'alignment': 1,
          'first': 1,
          '5000': 1,
          'years': 1,
          'holds': 1,
          'key': 1,
          'needless': 1,
          'want': 1,
          'nab': 1,
          'noh': 1,
          'yeah': 1,
          'sport': 1,
          'tight': 1,
          'hummanahummanahummana': 1,
          'ncritique': 1,
          'angelina': 1,
          'great': 1,
          'nthere': 1,
          'three': 1,
          'pretty': 1,
          'nuhhhhhm': 1,
          'unfortunately': 1,
          'rest': 1,
          'sucked': 1,
          'nbad': 1,
          'generic': 1,
          'sidekicks': 1,
          'mystery': 1,
          'yodaesque': 1,
          'mumbojumbo': 1,
          'sprouted': 1,
          'crappy': 1,
          'cgi': 1,
          'near': 1,
          'horror': 1,
          'show': 1,
          'reviews': 1,
          'warned': 1,
          'us': 1,
          'since': 1,
          'scene': 1,
          'feature': 1,
          'jolies': 1,
          'torpedoes': 1,
          'begging': 1,
          'burst': 1,
          'lucky': 1,
          'quite': 1,
          'letdown': 1,
          'nonetheless': 1,
          'consider': 1,
          'major': 1,
          'opportunity': 1,
          'filmmakers': 1,
          'create': 1,
          'hip': 1,
          'woman': 1,
          'hero': 1,
          'based': 1,
          'popular': 1,
          'video': 1,
          'game': 1,
          'dont': 1,
          'put': 1,
          'blame': 1,
          'director': 1,
          'simon': 1,
          'really': 1,
          'tie': 1,
          'whole': 1,
          'together': 1,
          'nthe': 1,
          'lacked': 1,
          'consistent': 1,
          'pace': 1,
          'nfun': 1,
          'felt': 1,
          'kinda': 1,
          'depressed': 1,
          'watching': 1,
          'horrible': 1,
          'given': 1,
          'poor': 1,
          'john': 1,
          'voight': 1,
          'recite': 1,
          'plain': 1,
          'embarrassing': 1,
          'gon': 1,
          'na': 1,
          'mention': 1,
          'moustache': 1,
          'hehehe': 1,
          'nwhy': 1,
          'shite': 1,
          'hated': 1,
          'ghostlike': 1,
          'figure': 1,
          'friend': 1,
          'child': 1,
          'would': 1,
          'ramble': 1,
          'crofts': 1,
          'giving': 1,
          'ounce': 1,
          'theyre': 1,
          'called': 1,
          'lack': 1,
          'character': 1,
          'development': 1,
          'right': 1,
          'nthats': 1,
          'builds': 1,
          'enough': 1,
          'background': 1,
          'characters': 1,
          'screen': 1,
          'could': 1,
          'get': 1,
          'anyone': 1,
          'bored': 1,
          'lets': 1,
          'explain': 1,
          'gobbledygook': 1,
          'nand': 1,
          'thought': 1,
          'kicked': 1,
          'mighty': 1,
          'damn': 1,
          'sexy': 1,
          'blasting': 1,
          'guns': 1,
          'everybody': 1,
          'else': 1,
          'around': 1,
          'goddamn': 1,
          'boring': 1,
          'nher': 1,
          'butler': 1,
          'throwaway': 1,
          'personality': 1,
          'sidekick': 1,
          'funny': 1,
          'annoyed': 1,
          'said': 1,
          'word': 1,
          'bugger': 1,
          'says': 1,
          'socalled': 1,
          'spewed': 1,
          'onedimension': 1,
          'nthey': 1,
          'spark': 1,
          'amongst': 1,
          'trailer': 1,
          'ones': 1,
          'overall': 1,
          'picture': 1,
          'mystical': 1,
          'bullcrap': 1,
          'buried': 1,
          'nalso': 1,
          'exotic': 1,
          'locations': 1,
          'necessarily': 1,
          'impressed': 1,
          'exterior': 1,
          'shots': 1,
          'less': 1,
          'interiors': 1,
          'looked': 1,
          'like': 1,
          'shot': 1,
          'room': 1,
          'nmind': 1,
          'wont': 1,
          'far': 1,
          'year': 1,
          'remember': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'definitely': 1,
          'ive': 1,
          'seen': 1,
          'summer': 1,
          'season': 1,
          'course': 1,
          'still': 1,
          'sure': 1,
          'garbage': 1,
          'heaps': 1,
          'pike': 1,
          'nskip': 1,
          'altogether': 1,
          'rent': 1,
          'indiana': 1,
          'jones': 1,
          'instead': 1,
          'nme': 1,
          'miss': 1,
          'boobs': 1,
          'night': 1,
          'rocksolid': 1,
          'porn': 1,
          'good': 1,
          'nwheres': 1,
          'joblo': 1,
          'nraiders': 1,
          'ark': 1,
          '1010': 1,
          '810': 1,
          'space': 1,
          'returns': 1,
          '610': 1,
          'generals': 1,
          'daughter': 1,
          'romancing': 1,
          'stone': 1,
          'mission': 1,
          'impossible': 1,
          '2': 1,
          'nneg': 1}),
 Counter({'godzilla': 11,
          'broderick': 8,
          'nthe': 6,
          'new': 5,
          'doesnt': 4,
          'lizard': 4,
          'like': 4,
          'n': 4,
          'lightning': 4,
          'york': 4,
          'get': 3,
          'even': 3,
          'ngodzilla': 3,
          'nthat': 3,
          'us': 3,
          'time': 3,
          'makes': 3,
          'nits': 3,
          'movie': 3,
          'godzillas': 3,
          'patillo': 3,
          'thats': 3,
          'happens': 2,
          'bigbudget': 2,
          'nthis': 2,
          'years': 2,
          'summers': 2,
          'element': 2,
          'leezerd': 2,
          'make': 2,
          'movies': 2,
          'really': 2,
          'words': 2,
          'giant': 2,
          'sequence': 2,
          'matthew': 2,
          'nhe': 2,
          'rain': 2,
          'earthworms': 2,
          'nas': 2,
          'radiated': 2,
          'love': 2,
          'business': 2,
          'nbroderick': 2,
          'cast': 2,
          'head': 2,
          'announces': 2,
          'strikes': 2,
          'enough': 2,
          'dog': 2,
          'eat': 2,
          'city': 2,
          'filmmakers': 2,
          'guess': 2,
          'dont': 2,
          'tell': 2,
          'ebert': 2,
          'gene': 2,
          'didnt': 2,
          'going': 2,
          'back': 2,
          'running': 2,
          'characters': 2,
          'fun': 2,
          'fish': 2,
          'lot': 2,
          'independence': 2,
          'day': 2,
          'action': 2,
          'bumble': 2,
          'bee': 2,
          'tuna': 2,
          'every': 1,
          'year': 1,
          'days': 1,
          'longer': 1,
          'weather': 1,
          'gets': 1,
          'warmer': 1,
          'studios': 1,
          'start': 1,
          'releasing': 1,
          'blockbusters': 1,
          'crop': 1,
          'already': 1,
          'seems': 1,
          'inferior': 1,
          'past': 1,
          '1997s': 1,
          'lackluster': 1,
          'trio': 1,
          'batman': 1,
          'robin': 1,
          'fifth': 1,
          'lost': 1,
          'world': 1,
          'marketing': 1,
          'blitz': 1,
          '1998': 1,
          'centered': 1,
          'heeere': 1,
          'optimistic': 1,
          'future': 1,
          'course': 1,
          'based': 1,
          'series': 1,
          'cult': 1,
          'translation': 1,
          'bad': 1,
          'people': 1,
          'tolerate': 1,
          'japan': 1,
          'turn': 1,
          'late': 1,
          'night': 1,
          'ted': 1,
          'turnerowned': 1,
          'cable': 1,
          'stations': 1,
          'remake': 1,
          'wont': 1,
          'rise': 1,
          'roots': 1,
          'fairly': 1,
          'obvious': 1,
          'credits': 1,
          'show': 1,
          'origin': 1,
          'nin': 1,
          'five': 1,
          'nuclear': 1,
          'explosion': 1,
          'creates': 1,
          'nsounds': 1,
          'enquirer': 1,
          'headline': 1,
          'mushroom': 1,
          'cloud': 1,
          'followed': 1,
          'inevitable': 1,
          'discovery': 1,
          'japanese': 1,
          'guy': 1,
          'eating': 1,
          'noodles': 1,
          'chopsticks': 1,
          'watching': 1,
          'sumo': 1,
          'wrestling': 1,
          'aint': 1,
          'stereotype': 1,
          'nwhen': 1,
          'discovers': 1,
          'telltale': 1,
          'radar': 1,
          'blip': 1,
          'npeople': 1,
          'die': 1,
          'ncut': 1,
          'protagonist': 1,
          'played': 1,
          'first': 1,
          'appearance': 1,
          'wearing': 1,
          'headphones': 1,
          'warbling': 1,
          'along': 1,
          'singin': 1,
          'nonetoosubtle': 1,
          'sign': 1,
          'wishes': 1,
          'classier': 1,
          'nno': 1,
          'dice': 1,
          'bueller': 1,
          'nfrom': 1,
          'beginning': 1,
          'poor': 1,
          'embarassing': 1,
          'things': 1,
          'fondle': 1,
          'stand': 1,
          'enormous': 1,
          'footprint': 1,
          'nevery': 1,
          'disaster': 1,
          'knowitall': 1,
          'scientist': 1,
          'worlds': 1,
          'leading': 1,
          'expert': 1,
          'wouldnt': 1,
          'printed': 1,
          'card': 1,
          'invaluable': 1,
          'government': 1,
          'immediately': 1,
          'dispels': 1,
          'vicki': 1,
          'lewis': 1,
          'theory': 1,
          'dinosaur': 1,
          'hey': 1,
          'cant': 1,
          'take': 1,
          'seriously': 1,
          'intellectual': 1,
          'arguments': 1,
          'newsradio': 1,
          'members': 1,
          'instead': 1,
          'hits': 1,
          'nail': 1,
          'announcing': 1,
          'radiation': 1,
          'isnt': 1,
          'anamoly': 1,
          'believe': 1,
          'mutated': 1,
          'abberation': 1,
          'continues': 1,
          'vocabulary': 1,
          'see': 1,
          'activated': 1,
          'four': 1,
          'syllables': 1,
          'nmeanwhile': 1,
          'introduced': 1,
          'headed': 1,
          'ambitious': 1,
          'broadcast': 1,
          'journalist': 1,
          'maria': 1,
          'brodericks': 1,
          'former': 1,
          'ngee': 1,
          'odds': 1,
          'paths': 1,
          'cross': 1,
          'dramatically': 1,
          'important': 1,
          'npoor': 1,
          'trying': 1,
          'ahead': 1,
          'news': 1,
          'held': 1,
          'heartless': 1,
          'anchorman': 1,
          'harry': 1,
          'shearer': 1,
          'nitalian': 1,
          'cameraman': 1,
          'hank': 1,
          'azaria': 1,
          'tells': 1,
          'shes': 1,
          'ruthless': 1,
          'nice': 1,
          'anywhere': 1,
          'town': 1,
          'nactually': 1,
          'emerges': 1,
          'atlantic': 1,
          'begin': 1,
          'rampage': 1,
          'big': 1,
          'apples': 1,
          'core': 1,
          'provide': 1,
          'onenote': 1,
          'drunk': 1,
          'fisherman': 1,
          'hooks': 1,
          'think': 1,
          'ive': 1,
          'got': 1,
          'bite': 1,
          'gigantic': 1,
          'tidal': 1,
          'wave': 1,
          'begins': 1,
          'rushing': 1,
          'toward': 1,
          'nyou': 1,
          'next': 1,
          'nsimilar': 1,
          'reactions': 1,
          'spring': 1,
          'forth': 1,
          'monster': 1,
          'prowls': 1,
          'nhearing': 1,
          'rumble': 1,
          'approaching': 1,
          'footsteps': 1,
          'one': 1,
          'yorker': 1,
          'remarks': 1,
          'please': 1,
          'another': 1,
          'parade': 1,
          'nplease': 1,
          'best': 1,
          'line': 1,
          'could': 1,
          'come': 1,
          'nmayor': 1,
          'pleased': 1,
          'nplayed': 1,
          'principal': 1,
          'class': 1,
          'continually': 1,
          'wrong': 1,
          'decision': 1,
          'given': 1,
          'option': 1,
          'bickers': 1,
          'assistant': 1,
          'ni': 1,
          'knew': 1,
          'theyd': 1,
          'getting': 1,
          'two': 1,
          'thumbs': 1,
          'critics': 1,
          'bother': 1,
          'kiss': 1,
          'ass': 1,
          'problem': 1,
          'youre': 1,
          'attack': 1,
          'siskel': 1,
          'least': 1,
          'funny': 1,
          'ndialogue': 1,
          'agree': 1,
          'werent': 1,
          'sweets': 1,
          'election': 1,
          'nfollowed': 1,
          'work': 1,
          'nother': 1,
          'lame': 1,
          'jokes': 1,
          'include': 1,
          'everyone': 1,
          'mispronouncing': 1,
          'last': 1,
          'name': 1,
          'frenchman': 1,
          'jean': 1,
          'renos': 1,
          'inability': 1,
          'find': 1,
          'good': 1,
          'cup': 1,
          'coffee': 1,
          'ntheres': 1,
          'progresses': 1,
          'beast': 1,
          'heads': 1,
          'hiding': 1,
          'suggests': 1,
          'military': 1,
          'lure': 1,
          'food': 1,
          'ncue': 1,
          'twelve': 1,
          'dump': 1,
          'trucks': 1,
          'dropping': 1,
          'intersection': 1,
          'ambush': 1,
          'fails': 1,
          'soon': 1,
          'figures': 1,
          'came': 1,
          'buying': 1,
          '50': 1,
          'worth': 1,
          'home': 1,
          'pregnancy': 1,
          'tests': 1,
          'blood': 1,
          'nyep': 1,
          'children': 1,
          'wonder': 1,
          'kind': 1,
          'creature': 1,
          'would': 1,
          'horny': 1,
          'sex': 1,
          'nthats': 1,
          'explains': 1,
          'reproduces': 1,
          'asexually': 1,
          'linda': 1,
          'tripp': 1,
          'comes': 1,
          'makers': 1,
          'dumb': 1,
          'scenes': 1,
          'destructive': 1,
          'special': 1,
          'effects': 1,
          'shallow': 1,
          'subplots': 1,
          'nlook': 1,
          'patillos': 1,
          'betrayal': 1,
          'done': 1,
          'animal': 1,
          'nwhat': 1,
          'become': 1,
          'climactic': 1,
          'nest': 1,
          'madison': 1,
          'square': 1,
          'garden': 1,
          'main': 1,
          'difference': 1,
          'experience': 1,
          'nit': 1,
          'real': 1,
          'global': 1,
          'patriotic': 1,
          'genuinely': 1,
          'lots': 1,
          'reptilian': 1,
          'ripped': 1,
          'jurassic': 1,
          'park': 1,
          'endless': 1,
          'product': 1,
          'placement': 1,
          'likes': 1,
          'kodak': 1,
          'blockbuster': 1,
          'juicy': 1,
          'fruit': 1,
          'swatch': 1,
          'sprint': 1,
          'nyes': 1,
          'actually': 1,
          'paid': 1,
          'known': 1,
          'official': 1,
          'fact': 1,
          'alone': 1,
          'twice': 1,
          'interesting': 1,
          'anything': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'movie': 5,
          'bad': 5,
          'cuba': 4,
          'black': 4,
          'skeet': 3,
          'ulrich': 3,
          'films': 3,
          'fall': 3,
          'device': 3,
          'two': 3,
          'gooding': 3,
          'jr': 3,
          'guys': 3,
          'get': 3,
          'actually': 3,
          'guy': 3,
          'known': 3,
          '510': 3,
          'actor': 2,
          'compare': 2,
          'little': 2,
          'series': 2,
          'lethal': 2,
          'weapon': 2,
          'great': 2,
          'chemistry': 2,
          'ice': 2,
          'truck': 2,
          'nuclear': 2,
          'cool': 2,
          'people': 2,
          'probably': 2,
          'original': 2,
          'complete': 2,
          'nthis': 2,
          'written': 2,
          'script': 2,
          'nand': 2,
          'got': 2,
          'would': 2,
          'white': 2,
          'together': 2,
          'one': 2,
          'another': 2,
          'fact': 2,
          'around': 2,
          'much': 2,
          'like': 2,
          'anything': 2,
          'money': 2,
          'nhe': 2,
          'stands': 2,
          'born': 2,
          '1997': 2,
          'heard': 1,
          'discussing': 1,
          'couple': 1,
          'interviews': 1,
          'instances': 1,
          'felt': 1,
          'strange': 1,
          'compulsion': 1,
          'called': 1,
          'nnow': 1,
          'personally': 1,
          'remember': 1,
          'starring': 1,
          'major': 1,
          'motion': 1,
          'picture': 1,
          'star': 1,
          'b': 1,
          'funny': 1,
          'c': 1,
          'action': 1,
          'sequences': 1,
          'e': 1,
          'decent': 1,
          'character': 1,
          'development': 1,
          'nhmmm': 1,
          'okay': 1,
          'review': 1,
          'chill': 1,
          'factor': 1,
          'nplot': 1,
          'graveyard': 1,
          'shift': 1,
          'regular': 1,
          'working': 1,
          'joe': 1,
          'cream': 1,
          'driver': 1,
          'onto': 1,
          'malicious': 1,
          'plan': 1,
          'exarmy': 1,
          'general': 1,
          'propose': 1,
          'international': 1,
          'prospects': 1,
          'nwhen': 1,
          'suddenly': 1,
          'falls': 1,
          'reluctant': 1,
          'laps': 1,
          'must': 1,
          'keep': 1,
          'rush': 1,
          'army': 1,
          'base': 1,
          'contraption': 1,
          'ticks': 1,
          '50': 1,
          'degrees': 1,
          'fahrenheit': 1,
          'kills': 1,
          'millions': 1,
          'ncritique': 1,
          'speed': 1,
          'icecream': 1,
          'pitch': 1,
          'used': 1,
          'sell': 1,
          'onetone': 1,
          'backers': 1,
          'unfortunately': 1,
          'way': 1,
          'anyone': 1,
          'could': 1,
          'tensionfilled': 1,
          'hours': 1,
          'cinema': 1,
          'distinct': 1,
          'honor': 1,
          'opposite': 1,
          'movies': 1,
          'stood': 1,
          'seasoned': 1,
          'cliches': 1,
          'plenty': 1,
          'badly': 1,
          'dialogue': 1,
          'top': 1,
          'acting': 1,
          'zero': 1,
          'leads': 1,
          'horribly': 1,
          'tacky': 1,
          'tossed': 1,
          'overall': 1,
          'recipe': 1,
          'nmy': 1,
          'friend': 1,
          'enjoyed': 1,
          'watching': 1,
          'certain': 1,
          'extent': 1,
          'lines': 1,
          'obviously': 1,
          'crack': 1,
          'nthat': 1,
          'formula': 1,
          'followed': 1,
          'proverbial': 1,
          '12': 1,
          'guessed': 1,
          '3': 1,
          'scenario': 1,
          'catchy': 1,
          'hip': 1,
          'names': 1,
          'us': 1,
          'relate': 1,
          'characters': 1,
          'elvis': 1,
          'nighshift': 1,
          'oh': 1,
          'talent': 1,
          'lies': 1,
          'minds': 1,
          'screenwriters': 1,
          'yes': 1,
          'took': 1,
          'come': 1,
          'regurgitated': 1,
          'drivel': 1,
          'nit': 1,
          'unfathomable': 1,
          'actors': 1,
          'involved': 1,
          'oneweekoldbluecheesesmelling': 1,
          'project': 1,
          'ndid': 1,
          'think': 1,
          'boost': 1,
          'careers': 1,
          'know': 1,
          'sucked': 1,
          'discounted': 1,
          'grace': 1,
          'knowing': 1,
          'full': 1,
          'well': 1,
          'stack': 1,
          'cash': 1,
          'back': 1,
          'pockets': 1,
          'pad': 1,
          'nmost': 1,
          'latter': 1,
          'nhave': 1,
          'seen': 1,
          'either': 1,
          'fled': 1,
          'bulletproof': 1,
          'nwell': 1,
          'despite': 1,
          'slight': 1,
          'differences': 1,
          'plot': 1,
          'essentials': 1,
          'basically': 1,
          'nyou': 1,
          'chased': 1,
          'bunch': 1,
          'choice': 1,
          'work': 1,
          'somewhere': 1,
          'hating': 1,
          'first': 1,
          'time': 1,
          'learning': 1,
          'respect': 1,
          'individuals': 1,
          'nyawn': 1,
          'nadd': 1,
          'dressed': 1,
          'drive': 1,
          'cars': 1,
          'vans': 1,
          'run': 1,
          'kinds': 1,
          'telecommunicative': 1,
          'devices': 1,
          'sprinkled': 1,
          'head': 1,
          'nnot': 1,
          'conspicuous': 1,
          'eh': 1,
          'ncall': 1,
          'partypooper': 1,
          'nice': 1,
          'cheezy': 1,
          'next': 1,
          'doesnt': 1,
          'even': 1,
          'try': 1,
          'reasonably': 1,
          'entertaining': 1,
          'none': 1,
          'scene': 1,
          'boat': 1,
          'careening': 1,
          'mountainside': 1,
          'obliterating': 1,
          'everything': 1,
          'island': 1,
          'fun': 1,
          'buddyaction': 1,
          'flick': 1,
          'make': 1,
          'nshow': 1,
          'everybody': 1,
          'n': 1,
          'nlittle': 1,
          'facts': 1,
          'stars': 1,
          'damn': 1,
          'look': 1,
          'awful': 1,
          'lot': 1,
          'greatlooking': 1,
          'johnny': 1,
          'depp': 1,
          'nskeets': 1,
          'reallife': 1,
          'nicknames': 1,
          'include': 1,
          'chester': 1,
          'skeeter': 1,
          'mosquito': 1,
          '61': 1,
          'north': 1,
          'carolina': 1,
          'married': 1,
          'sexkitten': 1,
          'actress': 1,
          'clay': 1,
          'pigeons': 1,
          '7': 1,
          'ngeorgina': 1,
          'cates': 1,
          'nthey': 1,
          'farm': 1,
          'virginia': 1,
          'seven': 1,
          'dogs': 1,
          'nskeet': 1,
          'long': 1,
          'scar': 1,
          'chest': 1,
          'openheart': 1,
          'surgery': 1,
          'done': 1,
          '10': 1,
          'correct': 1,
          'ventricle': 1,
          'defect': 1,
          'nactor': 1,
          'bronx': 1,
          'new': 1,
          'york': 1,
          'nin': 1,
          '1984': 1,
          'breakdanced': 1,
          'closing': 1,
          'ceremonies': 1,
          'olympic': 1,
          'games': 1,
          'los': 1,
          'angeles': 1,
          'nactress': 1,
          'hudson': 1,
          'leick': 1,
          'plays': 1,
          'guysgirls': 1,
          'better': 1,
          'role': 1,
          'callisto': 1,
          'popular': 1,
          'tv': 1,
          'xena': 1,
          'princess': 1,
          'warrior': 1,
          'reportedly': 1,
          'budget': 1,
          '40': 1,
          'million': 1,
          'nim': 1,
          'exactly': 1,
          'sure': 1,
          'went': 1,
          'certainly': 1,
          'register': 1,
          'onscreen': 1,
          'ninterestingly': 1,
          'enough': 1,
          'director': 1,
          'hugh': 1,
          'johnson': 1,
          'makes': 1,
          'big': 1,
          'screen': 1,
          'debut': 1,
          'cinematographer': 1,
          '1996': 1,
          'squall': 1,
          'demi': 1,
          'moore': 1,
          'vehicle': 1,
          'g': 1,
          'njane': 1,
          '6': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'night': 8,
          'part': 6,
          '2': 6,
          'fright': 5,
          'mcdowall': 5,
          'first': 5,
          'charlies': 4,
          'would': 4,
          'roddy': 3,
          'horror': 3,
          'peter': 3,
          'next': 3,
          'door': 3,
          'neighbor': 3,
          'none': 3,
          'original': 3,
          'sad': 2,
          'one': 2,
          'career': 2,
          'years': 2,
          'nfright': 2,
          'probably': 2,
          'among': 2,
          'roles': 2,
          'nthis': 2,
          'really': 2,
          'good': 2,
          'ragsdale': 2,
          'vampire': 2,
          'vampires': 2,
          'since': 2,
          'charlie': 2,
          'actor': 2,
          'face': 2,
          'battle': 2,
          'made': 2,
          'stylish': 2,
          'much': 2,
          'scenes': 2,
          'shame': 2,
          'way': 2,
          'nthe': 2,
          'right': 2,
          'video': 2,
          'nif': 2,
          'irony': 1,
          'screened': 1,
          'day': 1,
          'stars': 1,
          'passed': 1,
          'away': 1,
          'age': 1,
          '70': 1,
          'nmcdowall': 1,
          'talented': 1,
          'prolific': 1,
          'actors': 1,
          'hollywood': 1,
          'spanned': 1,
          '60': 1,
          'appearing': 1,
          '100': 1,
          'films': 1,
          'counted': 1,
          'memorable': 1,
          'considering': 1,
          'nwilliam': 1,
          'reprised': 1,
          'somewhat': 1,
          'reluctant': 1,
          'killers': 1,
          'seem': 1,
          'ones': 1,
          'realize': 1,
          'walk': 1,
          'us': 1,
          'n': 1,
          'least': 1,
          'movies': 1,
          'anyway': 1,
          'nit': 1,
          'several': 1,
          'brewster': 1,
          'bmovie': 1,
          'turned': 1,
          'late': 1,
          'host': 1,
          'vincent': 1,
          'came': 1,
          'real': 1,
          'live': 1,
          'happened': 1,
          'ncharlie': 1,
          'apparently': 1,
          'even': 1,
          'relatives': 1,
          'get': 1,
          'pissed': 1,
          'kill': 1,
          'members': 1,
          'family': 1,
          'napparently': 1,
          'former': 1,
          'bloodsucking': 1,
          'sister': 1,
          'pleased': 1,
          'find': 1,
          'kid': 1,
          'aging': 1,
          'staked': 1,
          'sibling': 1,
          'nso': 1,
          'decides': 1,
          'exact': 1,
          'little': 1,
          'bit': 1,
          'revenge': 1,
          'ends': 1,
          'forcing': 1,
          'forces': 1,
          'darkness': 1,
          'yet': 1,
          'things': 1,
          'success': 1,
          'chris': 1,
          'sarandon': 1,
          'played': 1,
          'taste': 1,
          'blood': 1,
          'tries': 1,
          'duplicate': 1,
          'modern': 1,
          'style': 1,
          'falls': 1,
          'sort': 1,
          'nwhile': 1,
          'vamps': 1,
          'dont': 1,
          'personality': 1,
          'undead': 1,
          'nwith': 1,
          'exception': 1,
          'werewolf': 1,
          'adds': 1,
          'needed': 1,
          'comic': 1,
          'relief': 1,
          'bright': 1,
          'spot': 1,
          'speaking': 1,
          'strictly': 1,
          'sexist': 1,
          'point': 1,
          'view': 1,
          'traci': 1,
          'lin': 1,
          'plays': 1,
          'skeptical': 1,
          'girlfriend': 1,
          'nits': 1,
          'hasnt': 1,
          'better': 1,
          'nragsdale': 1,
          'fair': 1,
          'job': 1,
          'doesnt': 1,
          'give': 1,
          'nearly': 1,
          'performance': 1,
          'nroddy': 1,
          'makes': 1,
          'given': 1,
          'unfortunately': 1,
          'isnt': 1,
          'character': 1,
          'lot': 1,
          'fun': 1,
          'movie': 1,
          'ni': 1,
          'guess': 1,
          'say': 1,
          'superior': 1,
          'product': 1,
          'every': 1,
          'always': 1,
          'left': 1,
          'feeling': 1,
          'danger': 1,
          'lurking': 1,
          'around': 1,
          'corner': 1,
          'feel': 1,
          'music': 1,
          'nnever': 1,
          'thing': 1,
          'nanother': 1,
          'minus': 1,
          'traditional': 1,
          'leave': 1,
          'audience': 1,
          'edge': 1,
          'seats': 1,
          'waiting': 1,
          'something': 1,
          'jump': 1,
          'shadow': 1,
          'rare': 1,
          'nfor': 1,
          'matter': 1,
          'almost': 1,
          'nonexistent': 1,
          'going': 1,
          'watch': 1,
          'far': 1,
          'choice': 1,
          'hand': 1,
          'near': 1,
          'top': 1,
          'list': 1,
          'mood': 1,
          'id': 1,
          'head': 1,
          'science': 1,
          'fiction': 1,
          'section': 1,
          'local': 1,
          'store': 1,
          'rent': 1,
          'planet': 1,
          'apes': 1,
          'neither': 1,
          'likely': 1,
          'enter': 1,
          'equation': 1,
          'nneg': 1}),
 Counter({'compensate': 6,
          'like': 5,
          'nbut': 4,
          'cast': 3,
          'pushing': 3,
          'tin': 3,
          'thornton': 3,
          'blanchett': 3,
          'cusack': 3,
          'film': 3,
          'air': 3,
          'things': 2,
          'jolie': 2,
          'yes': 2,
          'might': 2,
          'people': 2,
          'terrific': 2,
          'hip': 2,
          'score': 2,
          'nin': 2,
          'planes': 2,
          'us': 2,
          'best': 2,
          'one': 2,
          'traffic': 2,
          'controllers': 2,
          'falzone': 2,
          'doesnt': 2,
          'wife': 2,
          'last': 2,
          'newell': 2,
          'nthe': 2,
          'make': 2,
          'ntheyll': 2,
          'minutes': 2,
          'fine': 2,
          'actress': 2,
          'sometimes': 1,
          'stellar': 1,
          'lot': 1,
          'certainly': 1,
          'features': 1,
          'name': 1,
          'stars': 1,
          'going': 1,
          'places': 1,
          'billy': 1,
          'bob': 1,
          'cate': 1,
          'angelina': 1,
          'oh': 1,
          'john': 1,
          'realize': 1,
          'first': 1,
          'hes': 1,
          'actually': 1,
          'veteran': 1,
          'among': 1,
          'quartet': 1,
          'finelooking': 1,
          'nsometimes': 1,
          'lackluster': 1,
          'screen': 1,
          'treatment': 1,
          'idea': 1,
          'comedy': 1,
          'written': 1,
          'workmanlike': 1,
          'uninspired': 1,
          'direction': 1,
          'obnoxious': 1,
          'would': 1,
          'anyone': 1,
          'tone': 1,
          'deaf': 1,
          'screaming': 1,
          'exits': 1,
          'clich': 1,
          'characterizations': 1,
          'embarrassing': 1,
          'joking': 1,
          'situations': 1,
          'netc': 1,
          'dont': 1,
          'earthly': 1,
          'nfrom': 1,
          'opening': 1,
          'sequence': 1,
          'big': 1,
          'trouble': 1,
          'squiggly': 1,
          'quirky': 1,
          'credits': 1,
          'fakelooking': 1,
          'passenger': 1,
          'circling': 1,
          'new': 1,
          'york': 1,
          'anne': 1,
          'dudleys': 1,
          'inyourear': 1,
          'music': 1,
          'making': 1,
          'wonder': 1,
          'ever': 1,
          'got': 1,
          'original': 1,
          'nomination': 1,
          'full': 1,
          'monty': 1,
          'let': 1,
          'alone': 1,
          'wasnt': 1,
          'ready': 1,
          'walk': 1,
          'yet': 1,
          'nso': 1,
          'quickly': 1,
          'descend': 1,
          'tightlyedited': 1,
          'montage': 1,
          'screams': 1,
          'large': 1,
          'capital': 1,
          'letters': 1,
          'difficult': 1,
          'job': 1,
          'frantic': 1,
          'mileaminute': 1,
          'instructional': 1,
          'personas': 1,
          'juggling': 1,
          'passengers': 1,
          'lives': 1,
          'huge': 1,
          'real': 1,
          'midair': 1,
          'video': 1,
          'game': 1,
          'nhip': 1,
          'cool': 1,
          'demonic': 1,
          'auctioneer': 1,
          'nick': 1,
          'zone': 1,
          'biz': 1,
          'nof': 1,
          'course': 1,
          'nuntil': 1,
          'hipper': 1,
          'cooler': 1,
          'leatherclad': 1,
          'flyboy': 1,
          'assist': 1,
          'guise': 1,
          'russell': 1,
          'bell': 1,
          'shows': 1,
          'challenge': 1,
          'falzones': 1,
          'finite': 1,
          'space': 1,
          'nboys': 1,
          'boys': 1,
          'heavy': 1,
          'duty': 1,
          'testosterone': 1,
          'starts': 1,
          'exuding': 1,
          'macho': 1,
          'oneupmanship': 1,
          'begins': 1,
          'nit': 1,
          'stop': 1,
          'seeing': 1,
          'juggle': 1,
          'three': 1,
          '747s': 1,
          'within': 1,
          'cats': 1,
          'whisker': 1,
          'noh': 1,
          'nthere': 1,
          'broken': 1,
          'hoop': 1,
          'dreams': 1,
          'wannaseehowfasticandrives': 1,
          'ultimate': 1,
          'showdown': 1,
          'saw': 1,
          'night': 1,
          'ndirector': 1,
          'mike': 1,
          'four': 1,
          'weddings': 1,
          'funeral': 1,
          'must': 1,
          'read': 1,
          'different': 1,
          'draft': 1,
          'script': 1,
          'thats': 1,
          'acted': 1,
          'newark': 1,
          'jfk': 1,
          'la': 1,
          'guardia': 1,
          'ounce': 1,
          'subtlety': 1,
          'made': 1,
          'awfully': 1,
          'goodand': 1,
          'funnymovies': 1,
          'antics': 1,
          'cringe': 1,
          'frown': 1,
          'disbelief': 1,
          'constantly': 1,
          'looking': 1,
          'watch': 1,
          'wait': 1,
          'ntheres': 1,
          'still': 1,
          '100': 1,
          'go': 1,
          'films': 1,
          'saving': 1,
          'grace': 1,
          'whose': 1,
          'connie': 1,
          'spunky': 1,
          'brash': 1,
          'long': 1,
          'island': 1,
          'housewife': 1,
          'wants': 1,
          'better': 1,
          'taking': 1,
          'art': 1,
          'classes': 1,
          'nthis': 1,
          'wonderful': 1,
          'accomplishment': 1,
          'previously': 1,
          'played': 1,
          'redheaded': 1,
          'australian': 1,
          'gambler': 1,
          'oscar': 1,
          'lucinda': 1,
          'tempestuous': 1,
          'british': 1,
          'monarch': 1,
          'elizabeth': 1,
          'shes': 1,
          'enough': 1,
          'save': 1,
          'picture': 1,
          'nthornton': 1,
          'looks': 1,
          'performs': 1,
          'solidly': 1,
          'character': 1,
          'joke': 1,
          'njolie': 1,
          'russells': 1,
          'knock': 1,
          'em': 1,
          'dead': 1,
          'isnt': 1,
          'bad': 1,
          'upandcoming': 1,
          'disappoints': 1,
          'allowing': 1,
          'displayed': 1,
          'plaything': 1,
          'ncusack': 1,
          'cracks': 1,
          'gum': 1,
          'dons': 1,
          'shades': 1,
          'acts': 1,
          'throughout': 1,
          'everything': 1,
          'else': 1,
          'performance': 1,
          'forced': 1,
          'ten': 1,
          'inexplicable': 1,
          'reason': 1,
          'start': 1,
          'coming': 1,
          'together': 1,
          'begin': 1,
          'get': 1,
          'sense': 1,
          'trailer': 1,
          'teases': 1,
          'little': 1,
          'late': 1,
          'na': 1,
          'aside': 1,
          'nothing': 1,
          'embarrassment': 1,
          'nneg': 1}),
 Counter({'bond': 7,
          'enough': 6,
          'got': 5,
          'world': 4,
          'nweve': 4,
          'series': 4,
          'james': 3,
          'nin': 3,
          'chases': 3,
          'since': 3,
          'films': 3,
          'guy': 3,
          'brosnan': 2,
          'stunts': 2,
          'anything': 2,
          'nuclear': 2,
          'slash': 2,
          'carlyle': 2,
          'nand': 2,
          'plot': 2,
          'never': 2,
          'thought': 2,
          'cant': 2,
          'one': 2,
          'takes': 2,
          'get': 2,
          'know': 2,
          'long': 2,
          'hit': 2,
          'bonds': 2,
          'former': 2,
          'shes': 2,
          'judi': 2,
          'depressing': 1,
          'thing': 1,
          'depressingly': 1,
          'pedestrian': 1,
          'film': 1,
          'final': 1,
          'frame': 1,
          'white': 1,
          'letters': 1,
          'black': 1,
          'background': 1,
          'proclaiming': 1,
          'return': 1,
          'noh': 1,
          'certainly': 1,
          'hope': 1,
          'nwith': 1,
          'pierce': 1,
          'third': 1,
          'reportedly': 1,
          'last': 1,
          'goround': 1,
          '007': 1,
          'best': 1,
          'example': 1,
          'date': 1,
          '19th': 1,
          'chapter': 1,
          'seeminglyendless': 1,
          'franchise': 1,
          'featuring': 1,
          'ian': 1,
          'flemings': 1,
          'debonair': 1,
          'british': 1,
          'secret': 1,
          'agent': 1,
          'likes': 1,
          'martinisand': 1,
          'nemesesshaken': 1,
          'stirred': 1,
          'subinspired': 1,
          'screenwriters': 1,
          'chosen': 1,
          'rehash': 1,
          'setups': 1,
          'sexy': 1,
          'encounters': 1,
          'previous': 1,
          '18': 1,
          'flicks': 1,
          'rather': 1,
          'coming': 1,
          'slightest': 1,
          'bit': 1,
          'original': 1,
          'previouslyused': 1,
          'speedboat': 1,
          'ski': 1,
          'sticky': 1,
          'situations': 1,
          'aboard': 1,
          'submarines': 1,
          'couple': 1,
          'hottotrot': 1,
          'babes': 1,
          'without': 1,
          'ounce': 1,
          'acting': 1,
          'ability': 1,
          'postcold': 1,
          'war': 1,
          'megalomaniac': 1,
          'bent': 1,
          'domination': 1,
          'destruction': 1,
          'played': 1,
          'skinheaded': 1,
          'robert': 1,
          'mean': 1,
          'lean': 1,
          'panache': 1,
          'case': 1,
          '1977s': 1,
          'spy': 1,
          'loved': 1,
          'weve': 1,
          'nothing': 1,
          'whatsoever': 1,
          'conceived': 1,
          'mr': 1,
          'fleming': 1,
          'also': 1,
          'main': 1,
          'title': 1,
          'song': 1,
          'garbage': 1,
          'little': 1,
          'effort': 1,
          'fit': 1,
          'lyrics': 1,
          'songs': 1,
          'tomorrow': 1,
          'dies': 1,
          'nwhile': 1,
          'originality': 1,
          'strong': 1,
          'suit': 1,
          'almost': 1,
          'always': 1,
          'fun': 1,
          'least': 1,
          'going': 1,
          'nonstop': 1,
          'ni': 1,
          'think': 1,
          'memorable': 1,
          'setpiece': 1,
          'entireand': 1,
          'dull': 1,
          'addition': 1,
          'michael': 1,
          'apted': 1,
          'yes': 1,
          'respected': 1,
          'director': 1,
          'coal': 1,
          'miners': 1,
          'daughter': 1,
          'nell': 1,
          '28up': 1,
          'documentary': 1,
          'embarrassing': 1,
          'advantage': 1,
          'full': 1,
          'range': 1,
          'clich': 1,
          'nyou': 1,
          'talking': 1,
          'killer': 1,
          'deviceyou': 1,
          'scenario': 1,
          'bad': 1,
          'good': 1,
          'mercy': 1,
          'yet': 1,
          'waxes': 1,
          'poetic': 1,
          'die': 1,
          'old': 1,
          'age': 1,
          'slew': 1,
          'highpriced': 1,
          'assassins': 1,
          'barn': 1,
          'door': 1,
          '20': 1,
          'paces': 1,
          'opening': 1,
          'minutes': 1,
          'endless': 1,
          '128': 1,
          'sultry': 1,
          'sniper': 1,
          'along': 1,
          'thames': 1,
          'leatherclad': 1,
          'lovely': 1,
          'fails': 1,
          'soupedup': 1,
          'fishing': 1,
          'boat': 1,
          'bazooka': 1,
          'pulls': 1,
          'within': 1,
          'feet': 1,
          'nlater': 1,
          'hot': 1,
          'air': 1,
          'balloon': 1,
          'dangling': 1,
          'rope': 1,
          'beneath': 1,
          'still': 1,
          'unable': 1,
          'take': 1,
          'nthese': 1,
          'reliable': 1,
          'absurdities': 1,
          'frustrating': 1,
          'usual': 1,
          'distractions': 1,
          'occasional': 1,
          'ads': 1,
          'luxury': 1,
          'automobiles': 1,
          'vodka': 1,
          'credit': 1,
          'cards': 1,
          'among': 1,
          'rampant': 1,
          'product': 1,
          'placements': 1,
          'grapples': 1,
          'braveheart': 1,
          'sophie': 1,
          'marceau': 1,
          'kidnap': 1,
          'victim': 1,
          'heiress': 1,
          'elektra': 1,
          'king': 1,
          'terrible': 1,
          'wild': 1,
          'things': 1,
          'denise': 1,
          'richards': 1,
          'physicist': 1,
          'lord': 1,
          'help': 1,
          'laughable': 1,
          'dench': 1,
          'dame': 1,
          'brings': 1,
          'shred': 1,
          'dignity': 1,
          'jettisoned': 1,
          'selfrespect': 1,
          'time': 1,
          'roger': 1,
          'moore': 1,
          'inherited': 1,
          'walther': 1,
          'ppk': 1,
          'nbrosnan': 1,
          'goes': 1,
          'motions': 1,
          'grace': 1,
          'charm': 1,
          'youd': 1,
          'expect': 1,
          'remington': 1,
          'steele': 1,
          'star': 1,
          'even': 1,
          'thinking': 1,
          'theres': 1,
          'life': 1,
          'easy': 1,
          'paycheck': 1,
          'nhes': 1,
          'given': 1,
          'plenty': 1,
          'wiseacre': 1,
          'asides': 1,
          'deliver': 1,
          'dont': 1,
          'doctor': 1,
          'jokes': 1,
          'made': 1,
          'chuckle': 1,
          'although': 1,
          'christmas': 1,
          'comes': 1,
          'year': 1,
          'keeping': 1,
          'penchant': 1,
          'grownworthy': 1,
          'puns': 1,
          'nneg': 1}),
 Counter({'mr': 9,
          'nmagoo': 9,
          'nthe': 9,
          'film': 5,
          'disney': 4,
          'magoo': 4,
          'would': 4,
          'cartoon': 3,
          'nmr': 3,
          'insult': 3,
          'appears': 3,
          'bad': 3,
          'movie': 3,
          'nielsen': 3,
          'like': 3,
          'form': 3,
          'one': 3,
          'pictures': 2,
          'series': 2,
          'nin': 2,
          'run': 2,
          'original': 2,
          'see': 2,
          'including': 2,
          'george': 2,
          'jungle': 2,
          'flubber': 2,
          'first': 2,
          'naked': 2,
          'gun': 2,
          'theres': 2,
          'humor': 2,
          'nthen': 2,
          'movies': 2,
          'getting': 2,
          'hard': 2,
          'top': 2,
          'take': 2,
          'many': 2,
          'trying': 2,
          'kelly': 2,
          'lynch': 2,
          'martial': 2,
          'kicking': 2,
          'magoos': 2,
          'doesnt': 2,
          'hold': 2,
          'tong': 2,
          'little': 2,
          'worth': 2,
          'walt': 1,
          'announced': 1,
          'liveaction': 1,
          'feature': 1,
          'based': 1,
          '60s': 1,
          'special': 1,
          'interests': 1,
          'groups': 1,
          'representing': 1,
          'visionimpaired': 1,
          'let': 1,
          'cry': 1,
          'dismay': 1,
          'claimed': 1,
          'men': 1,
          'women': 1,
          'represented': 1,
          'fact': 1,
          'wrong': 1,
          'blind': 1,
          'nearblind': 1,
          'every': 1,
          'human': 1,
          'misfortune': 1,
          'suffer': 1,
          'dreadfully': 1,
          'unfunny': 1,
          '90': 1,
          'minute': 1,
          'atrocity': 1,
          'nits': 1,
          'stating': 1,
          'obvious': 1,
          'remark': 1,
          'ideas': 1,
          'nlook': 1,
          'roster': 1,
          '1996': 1,
          '1997': 1,
          'releases': 1,
          'youll': 1,
          'shocking': 1,
          'list': 1,
          'retreads': 1,
          '101': 1,
          'dalmatians': 1,
          'jungle2jungle': 1,
          'darn': 1,
          'cat': 1,
          'best': 1,
          'mildly': 1,
          'entertaining': 1,
          'worst': 1,
          'exposes': 1,
          'painful': 1,
          'experience': 1,
          'problem': 1,
          'script': 1,
          'ndespite': 1,
          'collaboration': 1,
          'scribe': 1,
          'pat': 1,
          'proft': 1,
          'comically': 1,
          'barren': 1,
          'nfrom': 1,
          'beginning': 1,
          'end': 1,
          'laugh': 1,
          'found': 1,
          'nevery': 1,
          'attempt': 1,
          'lots': 1,
          'falls': 1,
          'flat': 1,
          'audible': 1,
          'thud': 1,
          'nyoud': 1,
          'think': 1,
          'dozens': 1,
          'gags': 1,
          'jammed': 1,
          'least': 1,
          'work': 1,
          'thats': 1,
          'case': 1,
          'nive': 1,
          'laughs': 1,
          'ingmar': 1,
          'bergman': 1,
          'leslie': 1,
          'looks': 1,
          'sounds': 1,
          'acts': 1,
          'absolutely': 1,
          'nothing': 1,
          'animated': 1,
          'character': 1,
          'memorably': 1,
          'voiced': 1,
          'jim': 1,
          'backus': 1,
          'past': 1,
          'proven': 1,
          'comic': 1,
          'aptitude': 1,
          'roles': 1,
          'airplane': 1,
          'nlately': 1,
          'however': 1,
          'lazy': 1,
          'taking': 1,
          'parts': 1,
          'likes': 1,
          'dracula': 1,
          'dead': 1,
          'loving': 1,
          'spy': 1,
          'neven': 1,
          'incredible': 1,
          'stretch': 1,
          'imagination': 1,
          'especially': 1,
          'since': 1,
          'reminded': 1,
          'short': 1,
          'segments': 1,
          'open': 1,
          'close': 1,
          'phrase': 1,
          'use': 1,
          'describe': 1,
          'performance': 1,
          'nthis': 1,
          'strictly': 1,
          'takethemoneyand': 1,
          'operation': 1,
          'story': 1,
          'stories': 1,
          'described': 1,
          'long': 1,
          'sentence': 1,
          'witness': 1,
          'theft': 1,
          'rare': 1,
          'jewel': 1,
          'museum': 1,
          'apprehend': 1,
          'thieves': 1,
          'police': 1,
          'mistake': 1,
          'robber': 1,
          'cops': 1,
          'played': 1,
          'ernie': 1,
          'hudson': 1,
          'stephen': 1,
          'tobolowsky': 1,
          'lumps': 1,
          'early': 1,
          'often': 1,
          'guys': 1,
          'lot': 1,
          'artstype': 1,
          'nick': 1,
          'chinlund': 1,
          'malcolm': 1,
          'mcdowell': 1,
          'good': 1,
          'sense': 1,
          'look': 1,
          'embarrassed': 1,
          'nmatt': 1,
          'keeslar': 1,
          'portrays': 1,
          'sidekicks': 1,
          'nephew': 1,
          'waldo': 1,
          'bumbling': 1,
          'mans': 1,
          'interesting': 1,
          'companion': 1,
          'dog': 1,
          'named': 1,
          'angus': 1,
          'nmost': 1,
          'nmagoos': 1,
          'comes': 1,
          'failed': 1,
          'slapstick': 1,
          'violence': 1,
          'level': 1,
          'approach': 1,
          'home': 1,
          'alone': 1,
          '3': 1,
          'still': 1,
          'pretty': 1,
          'acute': 1,
          'characters': 1,
          'hit': 1,
          'head': 1,
          'sledgehammers': 1,
          'knocked': 1,
          'snowy': 1,
          'precipices': 1,
          'ntheres': 1,
          'nonviolent': 1,
          'bit': 1,
          'preparing': 1,
          'chicken': 1,
          'dinner': 1,
          'could': 1,
          'funny': 1,
          'handled': 1,
          'better': 1,
          'compared': 1,
          'beans': 1,
          'recent': 1,
          'similar': 1,
          'misadventure': 1,
          'well': 1,
          'lame': 1,
          'jokes': 1,
          'result': 1,
          'near': 1,
          'blindness': 1,
          'occasion': 1,
          'mistakes': 1,
          'wild': 1,
          'animal': 1,
          'baby': 1,
          'nim': 1,
          'willing': 1,
          'cut': 1,
          'director': 1,
          'stanley': 1,
          'slack': 1,
          'ntong': 1,
          'hong': 1,
          'kong': 1,
          'maker': 1,
          'break': 1,
          'hollywood': 1,
          'market': 1,
          'helmed': 1,
          'several': 1,
          'jackie': 1,
          'chan': 1,
          'strike': 1,
          'rumble': 1,
          'bronx': 1,
          'supercop': 1,
          'nhis': 1,
          'chief': 1,
          'talent': 1,
          'choreographing': 1,
          'arts': 1,
          'fights': 1,
          'wasted': 1,
          'despite': 1,
          'high': 1,
          'nlike': 1,
          'john': 1,
          'woo': 1,
          'target': 1,
          'ringo': 1,
          'lam': 1,
          'maximum': 1,
          'risk': 1,
          'consigned': 1,
          'purgatory': 1,
          'making': 1,
          'entry': 1,
          'american': 1,
          'mainstream': 1,
          'nit': 1,
          'noting': 1,
          'unlike': 1,
          'films': 1,
          'perverse': 1,
          'appeal': 1,
          'under10': 1,
          'crowd': 1,
          'driving': 1,
          'parents': 1,
          'distraction': 1,
          'bore': 1,
          'viewers': 1,
          'ages': 1,
          'screening': 1,
          'attended': 1,
          'walltowall': 1,
          'kids': 1,
          'part': 1,
          'didnt': 1,
          'seem': 1,
          'enjoying': 1,
          'nwhen': 1,
          'asked': 1,
          'girl': 1,
          'thought': 1,
          'nher': 1,
          'pained': 1,
          'expression': 1,
          'confirmed': 1,
          'adage': 1,
          'picture': 1,
          'indeed': 1,
          'thousand': 1,
          'words': 1,
          'kind': 1,
          'rejected': 1,
          'potential': 1,
          'viewer': 1,
          'sight': 1,
          'unseen': 1,
          'nneg': 1}),
 Counter({'found': 6,
          'spade': 5,
          'movie': 5,
          'lila': 5,
          'humor': 4,
          'also': 4,
          'lost': 4,
          'good': 3,
          'dylan': 3,
          'nthe': 3,
          'jack': 3,
          'dog': 3,
          'hard': 3,
          'first': 2,
          'doesnt': 2,
          'one': 2,
          'ndavid': 2,
          'plays': 2,
          'character': 2,
          'best': 2,
          'story': 2,
          'sophie': 2,
          'marceau': 2,
          'nand': 2,
          'win': 2,
          'nthere': 2,
          'theres': 2,
          'putting': 2,
          'nthis': 2,
          'get': 2,
          'funny': 2,
          'david': 1,
          'snide': 1,
          'sarcastic': 1,
          'sense': 1,
          'works': 1,
          'perfectly': 1,
          'tv': 1,
          'sitcom': 1,
          'shoot': 1,
          'nit': 1,
          'served': 1,
          'showcase': 1,
          'costarred': 1,
          'opposite': 1,
          'late': 1,
          'chris': 1,
          'farley': 1,
          'tommy': 1,
          'boy': 1,
          'black': 1,
          'sheep': 1,
          'nlost': 1,
          'marks': 1,
          'comedians': 1,
          'attempt': 1,
          'going': 1,
          'solo': 1,
          'reveals': 1,
          'reliable': 1,
          'backup': 1,
          'system': 1,
          'brand': 1,
          'seems': 1,
          'desperate': 1,
          'may': 1,
          'expect': 1,
          'problem': 1,
          'nhe': 1,
          'ramsey': 1,
          'sweet': 1,
          'main': 1,
          'abilities': 1,
          'revolves': 1,
          'around': 1,
          'dylans': 1,
          'obsessions': 1,
          'beautiful': 1,
          'new': 1,
          'neighbour': 1,
          'dubois': 1,
          'braveheart': 1,
          'terrier': 1,
          'named': 1,
          'ndylan': 1,
          'believes': 1,
          'way': 1,
          'womans': 1,
          'heart': 1,
          'kidnaps': 1,
          'planning': 1,
          'stage': 1,
          'fake': 1,
          'rescue': 1,
          'hope': 1,
          'three': 1,
          'things': 1,
          'second': 1,
          'lovely': 1,
          'actress': 1,
          'whos': 1,
          'planted': 1,
          'wrong': 1,
          'nlastly': 1,
          'used': 1,
          'similar': 1,
          'context': 1,
          'puffy': 1,
          'something': 1,
          'mary': 1,
          'nunfortunately': 1,
          'director': 1,
          'jeff': 1,
          'pollack': 1,
          'finds': 1,
          'cycle': 1,
          'drier': 1,
          'simply': 1,
          'making': 1,
          'look': 1,
          'cute': 1,
          'kind': 1,
          'physical': 1,
          'dead': 1,
          'npollack': 1,
          'everything': 1,
          'beat': 1,
          'poor': 1,
          'pooch': 1,
          'baseball': 1,
          'bat': 1,
          'laughs': 1,
          'procedure': 1,
          'cheap': 1,
          'unfunny': 1,
          'resoundingly': 1,
          'cruel': 1,
          'start': 1,
          'fuzzy': 1,
          'nalso': 1,
          'unusual': 1,
          'blend': 1,
          'apparently': 1,
          'sweetnatured': 1,
          'love': 1,
          'ngiven': 1,
          'meanspirited': 1,
          'comedy': 1,
          'obviously': 1,
          'striving': 1,
          'swallow': 1,
          'even': 1,
          'deserve': 1,
          'someone': 1,
          'like': 1,
          'kidnapping': 1,
          'precious': 1,
          'pain': 1,
          'npredictably': 1,
          'opts': 1,
          'happy': 1,
          'ending': 1,
          'feels': 1,
          'sentimental': 1,
          'gooey': 1,
          'rings': 1,
          'false': 1,
          'sets': 1,
          'siren': 1,
          'head': 1,
          'makes': 1,
          'feel': 1,
          'bit': 1,
          'cheated': 1,
          'cowrote': 1,
          'tries': 1,
          'make': 1,
          'project': 1,
          'amusing': 1,
          'choice': 1,
          'scenes': 1,
          'quite': 1,
          'sporadically': 1,
          'npatrick': 1,
          'bruel': 1,
          'stock': 1,
          'rene': 1,
          'pompous': 1,
          'jerk': 1,
          'wants': 1,
          'looks': 1,
          'money': 1,
          'njon': 1,
          'lovitz': 1,
          'martin': 1,
          'sheen': 1,
          'welcome': 1,
          'additions': 1,
          'two': 1,
          'tiny': 1,
          'supporting': 1,
          'roles': 1,
          'ndespite': 1,
          'positive': 1,
          'attributes': 1,
          'work': 1,
          'nif': 1,
          'youre': 1,
          'searching': 1,
          'enjoyable': 1,
          'romanticcomedy': 1,
          'could': 1,
          'far': 1,
          'better': 1,
          'obvious': 1,
          'misguided': 1,
          'failure': 1,
          'shows': 1,
          'blatant': 1,
          'disregard': 1,
          'trying': 1,
          'present': 1,
          'nneg': 1}),
 Counter({'classic': 4,
          'witty': 2,
          '9': 1,
          'pathetic': 1,
          'attempt': 1,
          'improving': 1,
          'shakespeare': 1,
          'n8': 1,
          'another': 1,
          'piece': 1,
          'teen': 1,
          'fluff': 1,
          'n7': 1,
          'kids': 1,
          'high': 1,
          'school': 1,
          'n6': 1,
          'wittiness': 1,
          'enough': 1,
          'n5': 1,
          'comedy': 1,
          'funny': 1,
          'n4': 1,
          'acting': 1,
          'poor': 1,
          'n3': 1,
          'music': 1,
          'n2': 1,
          'poster': 1,
          'n1': 1,
          'worse': 1,
          'shes': 1,
          'n10a': 1,
          '9borderline': 1,
          '8excellent': 1,
          '7good': 1,
          '6better': 1,
          'average': 1,
          '5average': 1,
          '4disappointing': 1,
          '3poor': 1,
          '2awful': 1,
          '1a': 1,
          'crap': 1,
          'nneg': 1}),
 Counter({'get': 5,
          'nthe': 4,
          'kitty': 4,
          'killer': 3,
          'else': 3,
          'movie': 3,
          'isnt': 3,
          'cindy': 3,
          'action': 3,
          'something': 3,
          'censors': 2,
          'naked': 2,
          'scenes': 2,
          'system': 2,
          'penis': 2,
          'decide': 2,
          'tinam': 2,
          'new': 2,
          'nhowever': 2,
          'alone': 2,
          'like': 2,
          'sometimes': 1,
          'wonder': 1,
          'thinking': 1,
          'ntake': 1,
          'film': 1,
          'among': 1,
          'ingredients': 1,
          'heavy': 1,
          'doses': 1,
          'violence': 1,
          'rape': 1,
          'sequences': 1,
          'straight': 1,
          'lesbian': 1,
          'sex': 1,
          'calls': 1,
          'coarse': 1,
          'language': 1,
          'nbut': 1,
          'intelligent': 1,
          'people': 1,
          'censorship': 1,
          'bureau': 1,
          'choose': 1,
          'remove': 1,
          'case': 1,
          'someone': 1,
          'offended': 1,
          'none': 1,
          'word': 1,
          'nthats': 1,
          'nin': 1,
          'spite': 1,
          'everything': 1,
          'one': 1,
          'thing': 1,
          'much': 1,
          'nit': 1,
          'really': 1,
          'restores': 1,
          'youre': 1,
          'faith': 1,
          'huh': 1,
          'nanyway': 1,
          'thats': 1,
          'side': 1,
          'point': 1,
          'nwhen': 1,
          'released': 1,
          'local': 1,
          'independent': 1,
          'cinemas': 1,
          'around': 1,
          'melbourne': 1,
          'advertised': 1,
          'ad': 1,
          'nausuem': 1,
          'hip': 1,
          'cool': 1,
          'controversial': 1,
          'thriller': 1,
          'nwhat': 1,
          'forgot': 1,
          'mention': 1,
          'good': 1,
          'plot': 1,
          'involves': 1,
          'male': 1,
          'cop': 1,
          'simon': 1,
          'yam': 1,
          'investigating': 1,
          'series': 1,
          'brutal': 1,
          'murders': 1,
          'nwhile': 1,
          'getting': 1,
          'haircut': 1,
          'meets': 1,
          'finds': 1,
          'attracted': 1,
          'girl': 1,
          'named': 1,
          'chingmy': 1,
          'yau': 1,
          'extracting': 1,
          'revenge': 1,
          'man': 1,
          'killed': 1,
          'father': 1,
          'falls': 1,
          'professional': 1,
          'sister': 1,
          'svenwara': 1,
          'madoka': 1,
          'nrealising': 1,
          'potential': 1,
          'decides': 1,
          'train': 1,
          'several': 1,
          'unusual': 1,
          'ridiculous': 1,
          'ways': 1,
          'gives': 1,
          'identity': 1,
          'course': 1,
          'investigation': 1,
          'believed': 1,
          'disappeared': 1,
          'runs': 1,
          'quite': 1,
          'sure': 1,
          'nto': 1,
          'complicate': 1,
          'matters': 1,
          'actual': 1,
          'serial': 1,
          'killlers': 1,
          'princess': 1,
          'baby': 1,
          'former': 1,
          'students': 1,
          'told': 1,
          'kill': 1,
          'old': 1,
          'master': 1,
          'student': 1,
          'nfrom': 1,
          'ensues': 1,
          'nall': 1,
          'well': 1,
          'done': 1,
          'script': 1,
          'awful': 1,
          'direction': 1,
          'place': 1,
          'editing': 1,
          'jerky': 1,
          'confusing': 1,
          'subtitling': 1,
          'surprisingly': 1,
          'poor': 1,
          'stand': 1,
          'pieces': 1,
          'entertain': 1,
          'shoot': 1,
          'car': 1,
          'park': 1,
          'almost': 1,
          'woolike': 1,
          'adrenaline': 1,
          'fight': 1,
          'energetic': 1,
          'guess': 1,
          'must': 1,
          'points': 1,
          'trying': 1,
          'little': 1,
          'different': 1,
          'nlet': 1,
          'put': 1,
          'way': 1,
          'strong': 1,
          'women': 1,
          'movies': 1,
          'black': 1,
          'cat': 1,
          'hong': 1,
          'kong': 1,
          'female': 1,
          'dont': 1,
          'either': 1,
          'neven': 1,
          'curiosity': 1,
          'value': 1,
          'worth': 1,
          'nlets': 1,
          'face': 1,
          'ever': 1,
          'became': 1,
          'popular': 1,
          'subject': 1,
          'nneg': 1}),
 Counter({'cash': 12,
          'tango': 11,
          'movie': 8,
          'nthe': 7,
          'stallone': 5,
          'russell': 5,
          'nin': 4,
          'one': 3,
          'ntango': 3,
          'plays': 3,
          'doesnt': 3,
          'two': 3,
          'detectives': 3,
          'prison': 3,
          'anything': 3,
          'every': 3,
          'character': 3,
          'movies': 3,
          'dont': 3,
          'palance': 3,
          'like': 2,
          'altogether': 2,
          'film': 2,
          'break': 2,
          'old': 2,
          'fact': 2,
          'car': 2,
          'ntheres': 2,
          'nothing': 2,
          'characters': 2,
          'feldmans': 2,
          'many': 2,
          'nhis': 2,
          'screenplay': 2,
          'going': 2,
          'stallones': 2,
          'nits': 2,
          'thinking': 2,
          'films': 2,
          'point': 2,
          'story': 2,
          'could': 2,
          'nevery': 2,
          'dialogue': 2,
          'light': 2,
          'tone': 2,
          'well': 2,
          'trap': 2,
          'acting': 2,
          'seeing': 1,
          'blaze': 1,
          'driving': 1,
          'miss': 1,
          'daisy': 1,
          'ready': 1,
          'mindless': 1,
          'funoh': 1,
          'maybe': 1,
          'something': 1,
          'nmaybe': 1,
          'nmindless': 1,
          'fun': 1,
          'thing': 1,
          'braindead': 1,
          'slop': 1,
          'another': 1,
          'matter': 1,
          'lowest': 1,
          'common': 1,
          'denominator': 1,
          'written': 1,
          'stars': 1,
          'sylvester': 1,
          'kurt': 1,
          'rival': 1,
          'undercover': 1,
          'cops': 1,
          'l': 1,
          'reckless': 1,
          'slob': 1,
          'dresses': 1,
          'jeans': 1,
          'tee': 1,
          'shirts': 1,
          'nstallone': 1,
          'wealthy': 1,
          'investor': 1,
          'works': 1,
          'force': 1,
          'strictly': 1,
          'thrill': 1,
          'need': 1,
          'money': 1,
          'effort': 1,
          'change': 1,
          'image': 1,
          'goes': 1,
          'yuppie': 1,
          'gq': 1,
          'look': 1,
          'wearing': 1,
          'spectacles': 1,
          'three': 1,
          'piece': 1,
          'suits': 1,
          'reluctantly': 1,
          'become': 1,
          'partners': 1,
          'framed': 1,
          'murder': 1,
          'clear': 1,
          'names': 1,
          'unbearably': 1,
          'noisy': 1,
          'nfor': 1,
          'starters': 1,
          'theres': 1,
          'harold': 1,
          'faltermeyers': 1,
          'annoying': 1,
          'synthesized': 1,
          'score': 1,
          'gets': 1,
          'four': 1,
          'notes': 1,
          'nto': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'filmmakers': 1,
          'seem': 1,
          'think': 1,
          'comes': 1,
          'loud': 1,
          'explosions': 1,
          'screeching': 1,
          'cars': 1,
          'merrier': 1,
          'begins': 1,
          'chases': 1,
          'good': 1,
          'chase': 1,
          'introduce': 1,
          'nscreenwriter': 1,
          'randy': 1,
          'brain': 1,
          'must': 1,
          'gone': 1,
          'mush': 1,
          'watching': 1,
          'cop': 1,
          'shows': 1,
          'tv': 1,
          'shockingly': 1,
          'stupid': 1,
          'undermines': 1,
          'everything': 1,
          'efforts': 1,
          'convince': 1,
          'intellectual': 1,
          'iq': 1,
          'level': 1,
          'amoeba': 1,
          'even': 1,
          'great': 1,
          'actor': 1,
          'trouble': 1,
          'looking': 1,
          'intelligentand': 1,
          'lawrence': 1,
          'olivier': 1,
          'hard': 1,
          'imagine': 1,
          'anyone': 1,
          'reading': 1,
          'script': 1,
          'want': 1,
          'plot': 1,
          'original': 1,
          'bone': 1,
          'body': 1,
          'andagainyou': 1,
          'finger': 1,
          'screenwriting': 1,
          'nfeldmans': 1,
          'line': 1,
          'succumbs': 1,
          'crime': 1,
          'thriller': 1,
          'cliche': 1,
          'book': 1,
          'making': 1,
          'generic': 1,
          'predictable': 1,
          'nthey': 1,
          'simply': 1,
          'called': 1,
          'action': 1,
          'twist': 1,
          'turn': 1,
          'stolen': 1,
          'television': 1,
          'nadding': 1,
          'insult': 1,
          'injury': 1,
          'believable': 1,
          'road': 1,
          'runner': 1,
          'cartoon': 1,
          'naction': 1,
          'realistic': 1,
          'absorb': 1,
          'enough': 1,
          'youre': 1,
          'lack': 1,
          'realism': 1,
          'artistic': 1,
          'aspect': 1,
          'cinematography': 1,
          'nthere': 1,
          'spectacular': 1,
          'shots': 1,
          'especially': 1,
          'rainy': 1,
          'nighttime': 1,
          'slide': 1,
          'safety': 1,
          'electrical': 1,
          'wires': 1,
          'main': 1,
          'draw': 1,
          'chemistry': 1,
          'nunfortunately': 1,
          'relationship': 1,
          'rarely': 1,
          'progresses': 1,
          'past': 1,
          'macho': 1,
          'competition': 1,
          'endlessly': 1,
          'bicker': 1,
          'packs': 1,
          'meat': 1,
          'pants': 1,
          'consists': 1,
          'oneliners': 1,
          'consequently': 1,
          'attempts': 1,
          'development': 1,
          'embarrassing': 1,
          'shame': 1,
          'workable': 1,
          'turned': 1,
          'charming': 1,
          'lethal': 1,
          'weaponesque': 1,
          'adventure': 1,
          'tries': 1,
          'maintain': 1,
          'laugh': 1,
          'five': 1,
          'minutes': 1,
          'nseeing': 1,
          'drag': 1,
          'funniest': 1,
          'moment': 1,
          'probably': 1,
          'already': 1,
          'seen': 1,
          'commercials': 1,
          'nfurthermore': 1,
          'sit': 1,
          'relentlessly': 1,
          'brutal': 1,
          'violence': 1,
          'nmachine': 1,
          'guns': 1,
          'torture': 1,
          'generally': 1,
          'mix': 1,
          'comedy': 1,
          'njack': 1,
          'appears': 1,
          'best': 1,
          'playing': 1,
          'sleazy': 1,
          'conniving': 1,
          'villain': 1,
          'however': 1,
          'runofthemill': 1,
          'except': 1,
          'strange': 1,
          'obsession': 1,
          'mice': 1,
          'nlike': 1,
          'villains': 1,
          'likes': 1,
          'play': 1,
          'games': 1,
          'sets': 1,
          'ridiculously': 1,
          'elaborate': 1,
          'sends': 1,
          'beaten': 1,
          'electrocuted': 1,
          'meanies': 1,
          'boiler': 1,
          'room': 1,
          'nyou': 1,
          'wonder': 1,
          'shoot': 1,
          'head': 1,
          'would': 1,
          'crumble': 1,
          'intelligent': 1,
          'nteri': 1,
          'hatcher': 1,
          'sister': 1,
          'russells': 1,
          'loveinterest': 1,
          'pretty': 1,
          'nbut': 1,
          'regrettably': 1,
          'hatchers': 1,
          'par': 1,
          'exceptional': 1,
          'beauty': 1,
          'time': 1,
          'opens': 1,
          'mouth': 1,
          'cringe': 1,
          'corny': 1,
          'atrocious': 1,
          'always': 1,
          'fatal': 1,
          'combination': 1,
          'really': 1,
          'little': 1,
          'recommend': 1,
          'nand': 1,
          'definitely': 1,
          'isnt': 1,
          'worth': 1,
          'penny': 1,
          'cashso': 1,
          'bother': 1,
          'nneg': 1}),
 Counter({'warrior': 7,
          '13th': 5,
          'vikings': 5,
          'ahmed': 4,
          'cannibals': 4,
          'nit': 4,
          'might': 4,
          'warriors': 3,
          'na': 3,
          'viking': 3,
          'movie': 3,
          'scenes': 3,
          'attack': 3,
          'n': 3,
          'action': 3,
          'nthe': 3,
          'meets': 3,
          'ibn': 2,
          'antonio': 2,
          'finds': 2,
          'nwith': 2,
          'small': 2,
          'northmen': 2,
          'kingdom': 2,
          'thirteen': 2,
          'one': 2,
          'called': 2,
          'mctiernan': 2,
          'predator': 2,
          'line': 2,
          'eaters': 2,
          'dead': 2,
          'villain': 2,
          'seem': 2,
          'arab': 1,
          'poet': 1,
          'fahdlan': 1,
          'banderas': 1,
          'kicked': 1,
          'baghdad': 1,
          'feeling': 1,
          'kings': 1,
          'old': 1,
          'lady': 1,
          'translator': 1,
          'screen': 1,
          'legend': 1,
          'omar': 1,
          'sharif': 1,
          'role': 1,
          'heads': 1,
          'north': 1,
          'act': 1,
          'ambassador': 1,
          'nhe': 1,
          'group': 1,
          'mourning': 1,
          'loss': 1,
          'king': 1,
          'messenger': 1,
          'soon': 1,
          'arrives': 1,
          'another': 1,
          'requesting': 1,
          'assistance': 1,
          'soothsayer': 1,
          'says': 1,
          'must': 1,
          'answer': 1,
          'summons': 1,
          'twelve': 1,
          'outsider': 1,
          'nthus': 1,
          'becomes': 1,
          'non': 1,
          'trip': 1,
          'manages': 1,
          'learn': 1,
          'language': 1,
          'listening': 1,
          'fireside': 1,
          'conversations': 1,
          'bit': 1,
          'farfetched': 1,
          'true': 1,
          'swallow': 1,
          'flick': 1,
          'going': 1,
          'manage': 1,
          'lines': 1,
          'dialogue': 1,
          'amidst': 1,
          'grunting': 1,
          'nahmed': 1,
          'whos': 1,
          'forms': 1,
          'friendships': 1,
          'herger': 1,
          'joyous': 1,
          'dennis': 1,
          'storh': 1,
          'leader': 1,
          'buliwyf': 1,
          'vladimir': 1,
          'kulich': 1,
          'nwhen': 1,
          'arrive': 1,
          'discover': 1,
          'theyre': 1,
          'facing': 1,
          'army': 1,
          'supernatural': 1,
          'live': 1,
          'caves': 1,
          'nhereafter': 1,
          'battle': 1,
          'nwell': 1,
          'get': 1,
          'idea': 1,
          'njust': 1,
          'add': 1,
          'theres': 1,
          'also': 1,
          'vs': 1,
          'duel': 1,
          'nother': 1,
          'movies': 1,
          'insert': 1,
          'fights': 1,
          'character': 1,
          'development': 1,
          'ni': 1,
          'suspect': 1,
          'better': 1,
          'script': 1,
          'time': 1,
          'fell': 1,
          'cracks': 1,
          'tagteam': 1,
          'direction': 1,
          'started': 1,
          'hands': 1,
          'john': 1,
          'youll': 1,
          'notice': 1,
          'lot': 1,
          'similarities': 1,
          'mctiernans': 1,
          'including': 1,
          'chittering': 1,
          'jungle': 1,
          'sounds': 1,
          'nsomewhere': 1,
          'along': 1,
          'bailed': 1,
          'michael': 1,
          'crichton': 1,
          'took': 1,
          'ncrichton': 1,
          'whose': 1,
          'novel': 1,
          'basis': 1,
          'directed': 1,
          'assortment': 1,
          'goofy': 1,
          'sciencefiction': 1,
          'thrillers': 1,
          'westworld': 1,
          'coma': 1,
          'looker': 1,
          'runaway': 1,
          'ntheir': 1,
          'result': 1,
          'consecutive': 1,
          'efforts': 1,
          'murky': 1,
          'pointless': 1,
          'nperhaps': 1,
          'needs': 1,
          'anything': 1,
          'else': 1,
          'faceless': 1,
          'mob': 1,
          'blackface': 1,
          'nthey': 1,
          'personality': 1,
          'end': 1,
          'dont': 1,
          'even': 1,
          'particularly': 1,
          'threatening': 1,
          'audience': 1,
          'target': 1,
          'toward': 1,
          'channel': 1,
          'aggression': 1,
          'nmctiernan': 1,
          'know': 1,
          'importance': 1,
          'interesting': 1,
          'die': 1,
          'hard': 1,
          'made': 1,
          'villains': 1,
          'fun': 1,
          'attracted': 1,
          'bigname': 1,
          'stars': 1,
          'evil': 1,
          'roles': 1,
          'films': 1,
          'suffers': 1,
          'lack': 1,
          'vision': 1,
          'wants': 1,
          'braveheart': 1,
          'magnificent': 1,
          'seven': 1,
          'dances': 1,
          'wolves': 1,
          'many': 1,
          'competing': 1,
          'goals': 1,
          'echo': 1,
          'satisfying': 1,
          'film': 1,
          'beautifullyrendered': 1,
          'medieval': 1,
          'epic': 1,
          'thoughtprovoking': 1,
          'examination': 1,
          'meeting': 1,
          'cultures': 1,
          'nwhat': 1,
          'shame': 1,
          'turned': 1,
          'nothing': 1,
          'particular': 1,
          'nbottom': 1,
          'want': 1,
          'see': 1,
          'swing': 1,
          'sword': 1,
          'rent': 1,
          'mask': 1,
          'zorro': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'nthe': 5,
          'would': 3,
          'find': 3,
          'much': 2,
          'good': 2,
          'say': 2,
          'acting': 2,
          'ill': 2,
          'one': 2,
          'least': 2,
          'nothing': 2,
          'right': 2,
          'plot': 2,
          'interesting': 2,
          'njohn': 2,
          'evil': 2,
          'film': 2,
          'points': 2,
          'script': 2,
          'isnt': 1,
          'nnot': 1,
          'directing': 1,
          'writing': 1,
          'make': 1,
          'consider': 1,
          'seeing': 1,
          'nso': 1,
          'get': 1,
          'comment': 1,
          'way': 1,
          'joel': 1,
          'schuemacher': 1,
          'batman': 1,
          'robin': 1,
          'didnt': 1,
          'direct': 1,
          'titled': 1,
          'technicolor': 1,
          'city': 1,
          'nin': 1,
          'fact': 1,
          'colorful': 1,
          'dark': 1,
          'depressingly': 1,
          'gloomy': 1,
          'bitter': 1,
          'end': 1,
          'tendency': 1,
          'passes': 1,
          'laughing': 1,
          'ridiculous': 1,
          'things': 1,
          'thrown': 1,
          'could': 1,
          'fascinating': 1,
          'impossible': 1,
          'explain': 1,
          'due': 1,
          'senseless': 1,
          'gets': 1,
          'touch': 1,
          'bare': 1,
          'minimum': 1,
          'murdoch': 1,
          'rufus': 1,
          'sewell': 1,
          'awakes': 1,
          'bathtub': 1,
          'cheap': 1,
          'hotel': 1,
          'forgotten': 1,
          'everything': 1,
          'must': 1,
          'strangers': 1,
          'k': 1,
          'nmind': 1,
          'erasing': 1,
          'aliens': 1,
          'use': 1,
          'conspiracy': 1,
          'nduring': 1,
          'raised': 1,
          'human': 1,
          'individuality': 1,
          'existence': 1,
          'inherently': 1,
          'people': 1,
          'nany': 1,
          'however': 1,
          'completely': 1,
          'erased': 1,
          'mind': 1,
          'watch': 1,
          'actors': 1,
          'stumble': 1,
          'dreadful': 1,
          'nas': 1,
          'mentioned': 1,
          'earlier': 1,
          'atmosphere': 1,
          'bland': 1,
          'since': 1,
          'virtually': 1,
          'character': 1,
          'development': 1,
          'seems': 1,
          'care': 1,
          'special': 1,
          'effects': 1,
          'low': 1,
          'budget': 1,
          'even': 1,
          'hilariously': 1,
          'fake': 1,
          'sign': 1,
          'true': 1,
          'bmovie': 1,
          'direction': 1,
          'poor': 1,
          'little': 1,
          'continuity': 1,
          'expect': 1,
          'switching': 1,
          'realities': 1,
          'constantly': 1,
          'nlastly': 1,
          'weak': 1,
          'concept': 1,
          'reality': 1,
          'doesnt': 1,
          'deserve': 1,
          'word': 1,
          'science': 1,
          'sciencefiction': 1,
          'nif': 1,
          'havent': 1,
          'got': 1,
          'point': 1,
          'across': 1,
          'plainly': 1,
          'bad': 1,
          'nlets': 1,
          'hope': 1,
          'next': 1,
          'alex': 1,
          'wish': 1,
          'tim': 1,
          'burton': 1,
          'proyas': 1,
          'tolerable': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'one': 7,
          'john': 7,
          'nthe': 6,
          'varsity': 5,
          'coach': 5,
          'football': 5,
          'since': 5,
          'blues': 4,
          'another': 4,
          'sports': 4,
          'game': 4,
          'town': 4,
          '1999': 3,
          'also': 3,
          'big': 3,
          'team': 3,
          'win': 3,
          'question': 3,
          'van': 3,
          'der': 3,
          'beek': 3,
          'west': 3,
          'canaan': 3,
          'really': 3,
          'get': 3,
          'right': 3,
          'girlfriend': 3,
          'dont': 3,
          'characters': 3,
          'certainly': 3,
          'probably': 3,
          'films': 3,
          'character': 3,
          'far': 2,
          'first': 2,
          'seen': 2,
          'nit': 2,
          'smalltown': 2,
          'movies': 2,
          'involves': 2,
          'flawed': 2,
          'great': 2,
          'nwill': 2,
          'ndo': 2,
          'plays': 2,
          'scholarship': 2,
          'university': 2,
          'least': 2,
          'portrayed': 2,
          'coming': 2,
          'scene': 2,
          'badgers': 2,
          'night': 2,
          'teams': 2,
          'long': 2,
          'problems': 2,
          'amy': 2,
          'smart': 2,
          'jon': 2,
          'voight': 2,
          'like': 2,
          'welcome': 2,
          'role': 2,
          'bad': 2,
          'old': 2,
          'could': 2,
          'think': 2,
          'story': 2,
          'moves': 2,
          'little': 2,
          'much': 2,
          'sex': 2,
          'education': 2,
          'passive': 2,
          'didnt': 2,
          'nothing': 2,
          'nhis': 2,
          'set': 2,
          'need': 2,
          'seem': 2,
          'parts': 2,
          'best': 1,
          'thus': 1,
          'nunfortunately': 1,
          'goodheartedfrom': 1,
          'goodhearted': 1,
          'protagonist': 1,
          'rough': 1,
          'meanspirited': 1,
          'nby': 1,
          'end': 1,
          'underdog': 1,
          'overcome': 1,
          'odds': 1,
          'triumph': 1,
          'everyone': 1,
          'turn': 1,
          'climactic': 1,
          'cats': 1,
          'bathe': 1,
          'regularly': 1,
          'socalled': 1,
          'hero': 1,
          'moxin': 1,
          'james': 1,
          'senior': 1,
          'high': 1,
          'school': 1,
          'hoping': 1,
          'brown': 1,
          'deadend': 1,
          'nat': 1,
          'hes': 1,
          'got': 1,
          'idea': 1,
          'texas': 1,
          'frankly': 1,
          'pathetic': 1,
          'whole': 1,
          'treating': 1,
          'weekly': 1,
          'games': 1,
          'second': 1,
          'nheck': 1,
          'front': 1,
          'page': 1,
          'towns': 1,
          'newspaper': 1,
          'proclaiming': 1,
          'nwhen': 1,
          'star': 1,
          'quarterback': 1,
          'severely': 1,
          'injured': 1,
          'tearing': 1,
          'ligaments': 1,
          'leg': 1,
          'finds': 1,
          'taking': 1,
          'leader': 1,
          'minutes': 1,
          'glory': 1,
          'last': 1,
          'begins': 1,
          'discovers': 1,
          'spent': 1,
          'evening': 1,
          'girl': 1,
          'ali': 1,
          'larter': 1,
          'nand': 1,
          'staying': 1,
          'drinking': 1,
          'buddies': 1,
          'strip': 1,
          'joint': 1,
          'teenagers': 1,
          'raging': 1,
          'alcoholics': 1,
          'loses': 1,
          'secondtolast': 1,
          'putting': 1,
          'feuds': 1,
          'gary': 1,
          'oldman': 1,
          'overstaying': 1,
          'typecasted': 1,
          'guy': 1,
          'nworse': 1,
          'yet': 1,
          'threatening': 1,
          'ruin': 1,
          'johns': 1,
          'chances': 1,
          'final': 1,
          'plotting': 1,
          'hills': 1,
          'contains': 1,
          'every': 1,
          'cliche': 1,
          'book': 1,
          'nadmittedly': 1,
          'never': 1,
          'exactly': 1,
          'bored': 1,
          'watching': 1,
          'hasten': 1,
          'add': 1,
          'rarely': 1,
          'ever': 1,
          'entertained': 1,
          'nthroughout': 1,
          'virtually': 1,
          'exact': 1,
          'filmed': 1,
          'deal': 1,
          'thoughtfulness': 1,
          'maturity': 1,
          '1983s': 1,
          'none': 1,
          'biggest': 1,
          'interest': 1,
          'actually': 1,
          'played': 1,
          'tvs': 1,
          'dawsons': 1,
          'creek': 1,
          'pretty': 1,
          'bore': 1,
          'without': 1,
          'engaging': 1,
          'qualities': 1,
          'nwhile': 1,
          'shouldnt': 1,
          'blame': 1,
          'inauspicious': 1,
          'bythenumbers': 1,
          'screenplay': 1,
          'w': 1,
          'peter': 1,
          'iliff': 1,
          'isnt': 1,
          'help': 1,
          'still': 1,
          'league': 1,
          'tom': 1,
          'cruise': 1,
          'revolving': 1,
          'around': 1,
          'meanwhile': 1,
          'extemely': 1,
          'thin': 1,
          'throughout': 1,
          'particularly': 1,
          '104minute': 1,
          'running': 1,
          'time': 1,
          'alternates': 1,
          'uninspired': 1,
          'comic': 1,
          'relief': 1,
          'students': 1,
          'see': 1,
          'teacher': 1,
          'working': 1,
          'stripper': 1,
          'club': 1,
          'heavyhanded': 1,
          'melodrama': 1,
          'romance': 1,
          'potential': 1,
          'adequate': 1,
          'subplot': 1,
          'learned': 1,
          'unfortunate': 1,
          'ive': 1,
          'past': 1,
          'written': 1,
          'sort': 1,
          'intelligence': 1,
          'nsmart': 1,
          'allow': 1,
          'become': 1,
          'instead': 1,
          'young': 1,
          'woman': 1,
          'ideas': 1,
          'opinions': 1,
          'nits': 1,
          'camera': 1,
          'linger': 1,
          'enough': 1,
          'hear': 1,
          'thoughts': 1,
          'adult': 1,
          'fare': 1,
          'worse': 1,
          'must': 1,
          'play': 1,
          'residents': 1,
          'dimwitted': 1,
          'cares': 1,
          'njohns': 1,
          'relationship': 1,
          'parents': 1,
          'telegraphed': 1,
          'advance': 1,
          'father': 1,
          'becoming': 1,
          'player': 1,
          'doesnt': 1,
          'want': 1,
          'part': 1,
          'mother': 1,
          'stands': 1,
          'beside': 1,
          'strong': 1,
          'husband': 1,
          'female': 1,
          'nfinally': 1,
          'stock': 1,
          'bully': 1,
          'make': 1,
          'thankless': 1,
          'onedimensional': 1,
          'nsaving': 1,
          'total': 1,
          'washout': 1,
          'amusing': 1,
          'sequences': 1,
          'including': 1,
          'class': 1,
          'laugh': 1,
          'scenes': 1,
          'playing': 1,
          'wellshot': 1,
          'thankfully': 1,
          'overstay': 1,
          'many': 1,
          'fall': 1,
          'victim': 1,
          'nbut': 1,
          'leaving': 1,
          'theater': 1,
          'mind': 1,
          'made': 1,
          'ni': 1,
          'asking': 1,
          'quite': 1,
          'lot': 1,
          'lately': 1,
          'stories': 1,
          'cranking': 1,
          'hollywood': 1,
          'highschool': 1,
          'nno': 1,
          'lowcaliber': 1,
          'felt': 1,
          'cutandpaste': 1,
          'job': 1,
          'spare': 1,
          'better': 1,
          'similar': 1,
          'n': 1,
          'doubt': 1,
          'however': 1,
          'include': 1,
          'earnest': 1,
          'wearing': 1,
          'whipped': 1,
          'cream': 1,
          'private': 1,
          'nneg': 1}),
 Counter({'jermaine': 4,
          'wife': 4,
          'jasmine': 4,
          'nthe': 4,
          'trois': 3,
          'fatal': 3,
          'attraction': 3,
          'njermaine': 3,
          'sexually': 3,
          'point': 3,
          'film': 2,
          'relationships': 2,
          'ndespite': 2,
          'sets': 2,
          'rest': 2,
          'njasmine': 2,
          'college': 2,
          'early': 2,
          'selfish': 2,
          'jasmines': 2,
          'nas': 2,
          'woman': 2,
          'encounter': 2,
          'jade': 2,
          'njade': 2,
          'jermaines': 2,
          'violence': 2,
          'upon': 2,
          'without': 2,
          'comes': 2,
          'touted': 1,
          'exploring': 1,
          'black': 1,
          'sexuality': 1,
          'surprisingly': 1,
          'tame': 1,
          'lurid': 1,
          'subject': 1,
          'matter': 1,
          'passing': 1,
          'nod': 1,
          'moves': 1,
          'along': 1,
          'flat': 1,
          'uninspired': 1,
          'dialogue': 1,
          'surprising': 1,
          'climax': 1,
          'tries': 1,
          'mightily': 1,
          'overthrow': 1,
          'considerable': 1,
          'dead': 1,
          'weight': 1,
          'nfreshly': 1,
          'moved': 1,
          'atlanta': 1,
          'dourdan': 1,
          'moore': 1,
          'trappings': 1,
          'perfect': 1,
          'life': 1,
          'nthey': 1,
          'beautiful': 1,
          'house': 1,
          'suburbia': 1,
          'lawyer': 1,
          'fast': 1,
          'track': 1,
          'firm': 1,
          'supportive': 1,
          'finishing': 1,
          'degree': 1,
          'nin': 1,
          'opening': 1,
          'montage': 1,
          'via': 1,
          'home': 1,
          'video': 1,
          'pair': 1,
          'see': 1,
          'unremarkable': 1,
          'story': 1,
          'marriage': 1,
          'marital': 1,
          'triumphs': 1,
          'nthis': 1,
          'couple': 1,
          'ninto': 1,
          'eden': 1,
          'slithers': 1,
          'lure': 1,
          'lust': 1,
          'outward': 1,
          'appearance': 1,
          'reveals': 1,
          'covetous': 1,
          'possession': 1,
          'person': 1,
          'na': 1,
          'glimmer': 1,
          'true': 1,
          'nature': 1,
          'peeks': 1,
          'sex': 1,
          'scene': 1,
          'goes': 1,
          'business': 1,
          'oblivious': 1,
          'concerns': 1,
          'nwe': 1,
          'also': 1,
          'find': 1,
          'relentlessly': 1,
          'asking': 1,
          'participate': 1,
          'menage': 1,
          'atrois': 1,
          'much': 1,
          'dismay': 1,
          'puts': 1,
          'dont': 1,
          'want': 1,
          'free': 1,
          'shares': 1,
          'desire': 1,
          'coworker': 1,
          'terrence': 1,
          'smith': 1,
          'obligingly': 1,
          'might': 1,
          'interested': 1,
          'palmer': 1,
          'direct': 1,
          'counterpoint': 1,
          'one': 1,
          'student': 1,
          'nunlike': 1,
          'found': 1,
          'pregnant': 1,
          'dropped': 1,
          'school': 1,
          'struggles': 1,
          'make': 1,
          'ends': 1,
          'meet': 1,
          'nto': 1,
          'reinforce': 1,
          'differences': 1,
          'revealed': 1,
          'involved': 1,
          'custody': 1,
          'battle': 1,
          'son': 1,
          'ninevitably': 1,
          'liquor': 1,
          'touch': 1,
          'duplicity': 1,
          'part': 1,
          'forbidden': 1,
          'act': 1,
          'consummated': 1,
          'aftermath': 1,
          'sidesteps': 1,
          'territory': 1,
          'acts': 1,
          'perpetrated': 1,
          'property': 1,
          'hint': 1,
          'may': 1,
          'escalate': 1,
          'nby': 1,
          'shows': 1,
          'soap': 1,
          'opera': 1,
          'requisite': 1,
          'melodrama': 1,
          'social': 1,
          'significance': 1,
          'exploration': 1,
          'strictly': 1,
          'superficial': 1,
          'stereotypical': 1,
          'insincere': 1,
          'driven': 1,
          'bland': 1,
          'subservient': 1,
          'bit': 1,
          'sympathetically': 1,
          'negated': 1,
          'moral': 1,
          'bankruptcy': 1,
          'nyet': 1,
          'another': 1,
          'tale': 1,
          'aggressive': 1,
          'dog': 1,
          'man': 1,
          'imposes': 1,
          'accommodating': 1,
          'innocent': 1,
          'mate': 1,
          'last': 1,
          '10': 1,
          'minutes': 1,
          'undoubtly': 1,
          'throw': 1,
          'curve': 1,
          'even': 1,
          'care': 1,
          'nif': 1,
          'movie': 1,
          'dynamic': 1,
          'ending': 1,
          'perhaps': 1,
          'could': 1,
          'freshness': 1,
          'stands': 1,
          'pretty': 1,
          'standard': 1,
          'fare': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'good': 4,
          'mission': 3,
          'one': 2,
          'get': 2,
          'five': 2,
          'n': 2,
          'give': 2,
          'moment': 2,
          'dont': 2,
          'nthe': 2,
          'film': 2,
          'kind': 2,
          'trying': 2,
          'character': 2,
          'mars': 1,
          'annoying': 1,
          'movies': 1,
          'middle': 1,
          'sneaking': 1,
          'suspicion': 1,
          'reason': 1,
          'trailer': 1,
          'looks': 1,
          'showcased': 1,
          'best': 1,
          'parts': 1,
          'minutes': 1,
          'payoff': 1,
          'come': 1,
          'little': 1,
          'late': 1,
          'ideas': 1,
          'lost': 1,
          'unbearably': 1,
          'boring': 1,
          'delivery': 1,
          'dimeadozen': 1,
          'dialogue': 1,
          'spate': 1,
          'actors': 1,
          'wasted': 1,
          'cardboardcutout': 1,
          'roles': 1,
          'nim': 1,
          'sure': 1,
          'director': 1,
          'writers': 1,
          'proud': 1,
          'hallmark': 1,
          'came': 1,
          'stretch': 1,
          'dramatic': 1,
          'like': 1,
          'silly': 1,
          'putty': 1,
          'loses': 1,
          'charm': 1,
          'nglances': 1,
          'communicate': 1,
          'deeper': 1,
          'emotions': 1,
          'draw': 1,
          'hours': 1,
          'end': 1,
          'spends': 1,
          'hour': 1,
          'stuff': 1,
          'building': 1,
          'climax': 1,
          'na': 1,
          'lot': 1,
          'cliched': 1,
          'glorification': 1,
          'family': 1,
          'relationships': 1,
          'marriage': 1,
          'friendship': 1,
          'unite': 1,
          'stand': 1,
          'divided': 1,
          'fall': 1,
          'crap': 1,
          'nthere': 1,
          'spectacular': 1,
          'special': 1,
          'effects': 1,
          'sequences': 1,
          'points': 1,
          'stay': 1,
          'true': 1,
          'science': 1,
          'know': 1,
          'key': 1,
          'word': 1,
          'sequence': 1,
          'martian': 1,
          'demonstrating': 1,
          'history': 1,
          'oddly': 1,
          'beautiful': 1,
          'touching': 1,
          'mentioned': 1,
          'sick': 1,
          'goddamn': 1,
          'thing': 1,
          'want': 1,
          'ngreat': 1,
          'design': 1,
          'intentions': 1,
          'cigar': 1,
          'nif': 1,
          'youre': 1,
          'die': 1,
          'hard': 1,
          'scifi': 1,
          'fx': 1,
          'jerry': 1,
          'oconnell': 1,
          'fan': 1,
          'semblance': 1,
          'waste': 1,
          'eight': 1,
          'bucks': 1,
          'nand': 1,
          'hell': 1,
          'tim': 1,
          'robbins': 1,
          'died': 1,
          'halfway': 1,
          'stupid': 1,
          'way': 1,
          'nthats': 1,
          'unforgiveable': 1,
          'nneg': 1}),
 Counter({'film': 32,
          'caligula': 8,
          'could': 8,
          'nthe': 8,
          'one': 7,
          'also': 6,
          'nand': 6,
          'good': 6,
          'historical': 5,
          'accuracy': 5,
          'guccione': 5,
          'emporer': 5,
          'instead': 5,
          'bad': 4,
          'everything': 4,
          'roman': 4,
          'anyone': 4,
          'little': 4,
          'going': 4,
          'scene': 3,
          'shot': 3,
          'used': 3,
          'ive': 3,
          'ever': 3,
          'taste': 3,
          'something': 3,
          'man': 3,
          'etc': 3,
          'well': 3,
          'hour': 3,
          'time': 3,
          'since': 3,
          'really': 3,
          'fact': 3,
          'even': 3,
          'every': 3,
          'single': 3,
          'soul': 3,
          'around': 3,
          'make': 3,
          'great': 3,
          'performance': 3,
          'nbut': 3,
          'real': 3,
          'entire': 3,
          'dark': 3,
          'get': 3,
          'made': 2,
          'two': 2,
          'anal': 2,
          'rape': 2,
          'done': 2,
          'hysterical': 2,
          'moments': 2,
          'may': 2,
          'hell': 2,
          'offensive': 2,
          'nthen': 2,
          'theres': 2,
          'features': 2,
          'orgies': 2,
          'clear': 2,
          'show': 2,
          'lavish': 2,
          'sets': 2,
          '2': 2,
          '12': 2,
          'running': 2,
          'penthouse': 2,
          'dramatic': 2,
          'accurate': 2,
          'entertaining': 2,
          'disgusting': 2,
          'content': 2,
          'never': 2,
          'thats': 2,
          'nothing': 2,
          'bullshit': 2,
          'without': 2,
          'name': 2,
          'decadent': 2,
          'came': 2,
          'though': 2,
          'image': 2,
          'screen': 2,
          'using': 2,
          'sister': 2,
          'lose': 2,
          'else': 2,
          'line': 2,
          'throne': 2,
          'cant': 2,
          'tiberius': 2,
          'peter': 2,
          'abuses': 2,
          'position': 2,
          'helen': 2,
          'mirren': 2,
          'doesnt': 2,
          'hop': 2,
          'believe': 2,
          'killed': 2,
          'life': 2,
          'nudity': 2,
          'like': 2,
          'isnt': 2,
          'sex': 2,
          'shit': 2,
          'blatantly': 2,
          'mean': 2,
          'orgy': 2,
          'use': 2,
          'felt': 2,
          'wonder': 2,
          'making': 2,
          'camera': 2,
          'scenes': 2,
          'nthere': 2,
          'gore': 2,
          'say': 2,
          'last': 2,
          'would': 2,
          'im': 2,
          'kill': 2,
          'agent': 2,
          'away': 2,
          'ntheres': 2,
          'kind': 2,
          'total': 2,
          'cult': 2,
          'nthat': 2,
          'way': 2,
          'friend': 1,
          'school': 1,
          'minutelong': 1,
          'classes': 1,
          'includes': 1,
          'staged': 1,
          'guys': 1,
          'shadow': 1,
          'incident': 1,
          'banana': 1,
          'instrument': 1,
          'penetration': 1,
          'nas': 1,
          'sick': 1,
          'watching': 1,
          'admittingly': 1,
          'witnessed': 1,
          'nsure': 1,
          'riotously': 1,
          'amusing': 1,
          'rest': 1,
          'nthis': 1,
          'incest': 1,
          'necrophilia': 1,
          'beastuality': 1,
          'homosexual': 1,
          'felatio': 1,
          'sexes': 1,
          'elaborate': 1,
          'lengthy': 1,
          'greasedup': 1,
          'fist': 1,
          'forced': 1,
          'mans': 1,
          'rear': 1,
          'wine': 1,
          'poured': 1,
          'whos': 1,
          'urinary': 1,
          'tracts': 1,
          'tied': 1,
          'penis': 1,
          'chopped': 1,
          'fed': 1,
          'hungry': 1,
          'dogs': 1,
          'respectable': 1,
          'following': 1,
          'occurred': 1,
          'events': 1,
          'graphically': 1,
          'view': 1,
          'b': 1,
          'tone': 1,
          'trying': 1,
          'shock': 1,
          'comically': 1,
          'c': 1,
          '20': 1,
          'million': 1,
          'dollar': 1,
          'production': 1,
          'rather': 1,
          'impressive': 1,
          'cast': 1,
          'whopping': 1,
          'nproduced': 1,
          'funded': 1,
          'none': 1,
          'bob': 1,
          'owner': 1,
          'magazine': 1,
          'comes': 1,
          'across': 1,
          'picture': 1,
          'plan': 1,
          '9': 1,
          'outer': 1,
          'space': 1,
          'underneath': 1,
          'sense': 1,
          'justified': 1,
          'brilliantly': 1,
          'nafter': 1,
          'aforementioned': 1,
          'actually': 1,
          'believes': 1,
          'weaponry': 1,
          'nno': 1,
          'discarded': 1,
          'old': 1,
          'cliche': 1,
          'goes': 1,
          'nthose': 1,
          'bash': 1,
          'glancing': 1,
          'biggest': 1,
          'obvious': 1,
          'problem': 1,
          'overdramaticized': 1,
          'start': 1,
          'finish': 1,
          'second': 1,
          'credibility': 1,
          'mammoth': 1,
          'n': 1,
          'allegedly': 1,
          'tells': 1,
          'true': 1,
          'story': 1,
          'evil': 1,
          'insanely': 1,
          'assasination': 1,
          'blessing': 1,
          'nso': 1,
          'guess': 1,
          'almost': 1,
          'assasinated': 1,
          'much': 1,
          'reasons': 1,
          'opens': 1,
          'wrong': 1,
          'note': 1,
          'course': 1,
          'quote': 1,
          'mark': 1,
          'appearing': 1,
          'graces': 1,
          'overused': 1,
          'passage': 1,
          'shall': 1,
          'profit': 1,
          'gain': 1,
          'whole': 1,
          'world': 1,
          'dlose': 1,
          'depite': 1,
          'opening': 1,
          'fucking': 1,
          'field': 1,
          'suppose': 1,
          'first': 1,
          'place': 1,
          'plot': 1,
          'incomprehensibly': 1,
          'disastrously': 1,
          'played': 1,
          'malcom': 1,
          'mcdowell': 1,
          'opposite': 1,
          'clockwork': 1,
          'orange': 1,
          'next': 1,
          'wait': 1,
          'current': 1,
          'toole': 1,
          'ditto': 1,
          'lawrence': 1,
          'arabia': 1,
          'grandfather': 1,
          'die': 1,
          'kills': 1,
          'ascends': 1,
          'marries': 1,
          'woman': 1,
          'retains': 1,
          'dignity': 1,
          'actor': 1,
          'exactly': 1,
          'acting': 1,
          'sleep': 1,
          'dreadful': 1,
          'teresa': 1,
          'ann': 1,
          'savoy': 1,
          'pretty': 1,
          'naked': 1,
          'willing': 1,
          'sack': 1,
          'mac': 1,
          'asks': 1,
          'invades': 1,
          'england': 1,
          'filler': 1,
          'recounting': 1,
          'supposed': 1,
          'claims': 1,
          'ultimate': 1,
          'portrait': 1,
          'pagan': 1,
          'rome': 1,
          'complete': 1,
          'vicious': 1,
          'deaths': 1,
          'lots': 1,
          'wants': 1,
          'becomes': 1,
          'gucciones': 1,
          'twisted': 1,
          'masturbatory': 1,
          'noh': 1,
          'loved': 1,
          'people': 1,
          'disgustingly': 1,
          'wouldnt': 1,
          'couple': 1,
          'bucks': 1,
          'selling': 1,
          'porn': 1,
          'completely': 1,
          'convinced': 1,
          'ni': 1,
          'spend': 1,
          'ten': 1,
          'minutes': 1,
          'examining': 1,
          'facet': 1,
          'makes': 1,
          'vile': 1,
          'whatever': 1,
          'adjective': 1,
          'want': 1,
          'describe': 1,
          'feel': 1,
          'sloppiest': 1,
          'expensive': 1,
          'movie': 1,
          'innacurate': 1,
          'historian': 1,
          'wanting': 1,
          'explains': 1,
          'matter': 1,
          'cinematography': 1,
          'light': 1,
          'meter': 1,
          'ugly': 1,
          'plain': 1,
          'operation': 1,
          'worst': 1,
          'seen': 1,
          'nnot': 1,
          'hold': 1,
          'record': 1,
          'unnecessary': 1,
          'zooms': 1,
          'often': 1,
          'subjects': 1,
          'pan': 1,
          'till': 1,
          'find': 1,
          'focus': 1,
          'editing': 1,
          'sloppy': 1,
          'absolutely': 1,
          'impossible': 1,
          'follow': 1,
          'writer': 1,
          'speak': 1,
          'adapted': 1,
          'original': 1,
          'screenplay': 1,
          'vidal': 1,
          'nevertheless': 1,
          'dialogue': 1,
          'laughably': 1,
          'faith': 1,
          'iq': 1,
          '5': 1,
          'straight': 1,
          'face': 1,
          'favorite': 1,
          'inquires': 1,
          'doctor': 1,
          'health': 1,
          'dying': 1,
          'go': 1,
          'moment': 1,
          'care': 1,
          'year': 1,
          'music': 1,
          'mostly': 1,
          'prokofiev': 1,
          'khachaturian': 1,
          'gorgeous': 1,
          'adagio': 1,
          'spartacus': 1,
          'phrygia': 1,
          'ad': 1,
          'nauseum': 1,
          'attempt': 1,
          'give': 1,
          'emotion': 1,
          'feels': 1,
          'shipped': 1,
          'elsewhere': 1,
          'infamous': 1,
          'lesbo': 1,
          'pets': 1,
          'lori': 1,
          'wagner': 1,
          'aneeka': 1,
          'dilorenzo': 1,
          'result': 1,
          'reshoots': 1,
          'obviously': 1,
          'removed': 1,
          'adds': 1,
          'embrassment': 1,
          'five': 1,
          'seconds': 1,
          'cuts': 1,
          'random': 1,
          'afraid': 1,
          'audience': 1,
          'forget': 1,
          'rated': 1,
          'x': 1,
          'njohn': 1,
          'gielgud': 1,
          'represents': 1,
          'voice': 1,
          'sanity': 1,
          'walking': 1,
          'brief': 1,
          'role': 1,
          'constantly': 1,
          'mantra': 1,
          'hours': 1,
          'exciting': 1,
          'enriching': 1,
          'three': 1,
          'college': 1,
          'lecture': 1,
          'class': 1,
          'twice': 1,
          'deliriously': 1,
          'annoying': 1,
          'nguccione': 1,
          'pursuit': 1,
          'painstaking': 1,
          'arduous': 1,
          'task': 1,
          'watch': 1,
          'entirety': 1,
          'doubt': 1,
          'sit': 1,
          'irreversible': 1,
          'psychological': 1,
          'damage': 1,
          'nthroughout': 1,
          'presence': 1,
          'easily': 1,
          'standing': 1,
          'edge': 1,
          'pretentiously': 1,
          'looking': 1,
          'upon': 1,
          'us': 1,
          'saying': 1,
          'look': 1,
          'dont': 1,
          'youre': 1,
          'prig': 1,
          'worse': 1,
          'know': 1,
          'history': 1,
          'nuh': 1,
          'huh': 1,
          'difference': 1,
          'artistically': 1,
          'na': 1,
          'showed': 1,
          'decadence': 1,
          'perhaps': 1,
          'liberating': 1,
          'probably': 1,
          'licence': 1,
          'disgustingfordisgustingnesssake': 1,
          'acts': 1,
          'makers': 1,
          'lost': 1,
          'touch': 1,
          'either': 1,
          'entertainment': 1,
          'eroticism': 1,
          'developed': 1,
          'pathetic': 1,
          'sadistic': 1,
          'judging': 1,
          '1989': 1,
          'called': 1,
          'cook': 1,
          'thief': 1,
          'wife': 1,
          'lover': 1,
          'magnifcent': 1,
          'legendary': 1,
          'director': 1,
          'greenaway': 1,
          'starring': 1,
          'deals': 1,
          'graphic': 1,
          'heartstopping': 1,
          'violence': 1,
          'cannibalism': 1,
          'measure': 1,
          'patronized': 1,
          'viewers': 1,
          'handled': 1,
          'shocking': 1,
          'yes': 1,
          'bizarre': 1,
          'totally': 1,
          'involving': 1,
          'characters': 1,
          'situation': 1,
          'best': 1,
          'passion': 1,
          'right': 1,
          'amount': 1,
          'restraint': 1,
          'many': 1,
          'achieved': 1,
          'wanted': 1,
          'retained': 1,
          'status': 1,
          'films': 1,
          'popular': 1,
          'actualy': 1,
          'might': 1,
          'alas': 1,
          'wasnt': 1,
          'nneg': 1}),
 Counter({'like': 9,
          'get': 8,
          'film': 8,
          'story': 7,
          'seems': 6,
          'characters': 6,
          'would': 5,
          'mcquarrie': 4,
          'way': 4,
          'little': 4,
          'going': 4,
          'nthe': 4,
          'two': 4,
          'gun': 3,
          'first': 3,
          'much': 3,
          'great': 3,
          'confusing': 3,
          'really': 3,
          'either': 3,
          'played': 3,
          'del': 3,
          'toro': 3,
          'nthey': 3,
          'exec': 3,
          'cant': 3,
          'make': 3,
          'even': 3,
          'know': 3,
          'one': 3,
          'scene': 3,
          'phillipe': 3,
          'lot': 3,
          'back': 2,
          'crime': 2,
          'movies': 2,
          'nthat': 2,
          'comes': 2,
          'looks': 2,
          'doesnt': 2,
          'nits': 2,
          'world': 2,
          'simple': 2,
          'something': 2,
          'come': 2,
          'surprise': 2,
          'anyone': 2,
          'idea': 2,
          'nwith': 2,
          'time': 2,
          'guy': 2,
          'wife': 2,
          'mother': 2,
          'goons': 2,
          'bag': 2,
          'man': 2,
          'hes': 2,
          'money': 2,
          'kidnappers': 2,
          'right': 2,
          'good': 2,
          'movie': 2,
          'reality': 2,
          'criminal': 2,
          'theyre': 2,
          'sketches': 2,
          'appeal': 2,
          'street': 2,
          'mercedes': 2,
          'car': 2,
          'owner': 2,
          'away': 2,
          'dont': 2,
          'guns': 2,
          'mob': 2,
          'ntheres': 2,
          'understand': 2,
          'black': 2,
          'comedy': 2,
          'see': 2,
          'someone': 2,
          'want': 2,
          'remember': 1,
          'mid': 1,
          '1990s': 1,
          'macabre': 1,
          'rage': 1,
          'n': 1,
          'pulp': 1,
          'fiction': 1,
          'fargo': 1,
          'managed': 1,
          'oscar': 1,
          'nominations': 1,
          'best': 1,
          'picture': 1,
          'surprisingly': 1,
          'slew': 1,
          'ripoffs': 1,
          'followed': 1,
          'years': 1,
          'thereafter': 1,
          'fad': 1,
          'christopher': 1,
          'writing': 1,
          'directing': 1,
          'glance': 1,
          'another': 1,
          'wannabes': 1,
          'upon': 1,
          'closer': 1,
          'inspection': 1,
          'look': 1,
          'anything': 1,
          'comprehendable': 1,
          'wrapped': 1,
          'claustrophobic': 1,
          'atmosphere': 1,
          'wont': 1,
          'allow': 1,
          'room': 1,
          'expand': 1,
          'outside': 1,
          'handful': 1,
          'somehow': 1,
          'still': 1,
          'manages': 1,
          'turn': 1,
          'premise': 1,
          'complex': 1,
          'ridiculous': 1,
          'ncomplexity': 1,
          'whos': 1,
          'familiar': 1,
          'wrote': 1,
          'usual': 1,
          'suspects': 1,
          'become': 1,
          'cult': 1,
          'favorite': 1,
          'despite': 1,
          'critical': 1,
          'acclaim': 1,
          'well': 1,
          'directed': 1,
          'elaborate': 1,
          'screenplay': 1,
          'leaves': 1,
          'many': 1,
          'viewers': 1,
          'scratching': 1,
          'heads': 1,
          'repeated': 1,
          'viewings': 1,
          'nyou': 1,
          'wonder': 1,
          'everything': 1,
          'mapped': 1,
          'hollywood': 1,
          'criminals': 1,
          'cops': 1,
          'makes': 1,
          'fascinating': 1,
          'capitalizing': 1,
          'far': 1,
          'less': 1,
          'commercial': 1,
          'shame': 1,
          'maybe': 1,
          'helped': 1,
          'tells': 1,
          'drifters': 1,
          'ambition': 1,
          'barely': 1,
          'reason': 1,
          'live': 1,
          'arent': 1,
          'hellbent': 1,
          'death': 1,
          'ryan': 1,
          'phillipie': 1,
          'benecio': 1,
          'lucky': 1,
          'hear': 1,
          'scheme': 1,
          'bigshot': 1,
          'trophy': 1,
          'baby': 1,
          'vitro': 1,
          'fertilization': 1,
          'figure': 1,
          'kidnap': 1,
          'surrogate': 1,
          'juliette': 1,
          'lewis': 1,
          'nice': 1,
          'ransom': 1,
          'nalong': 1,
          'continually': 1,
          'learn': 1,
          'shady': 1,
          'dealings': 1,
          'hired': 1,
          'james': 1,
          'caan': 1,
          'actor': 1,
          'knows': 1,
          'kind': 1,
          'launderer': 1,
          'obviously': 1,
          'call': 1,
          'authorities': 1,
          'help': 1,
          'nhis': 1,
          'trail': 1,
          'different': 1,
          'offers': 1,
          'execs': 1,
          'son': 1,
          'doctor': 1,
          'also': 1,
          'gets': 1,
          'pulled': 1,
          'fray': 1,
          'wants': 1,
          'sure': 1,
          'patient': 1,
          'nmeanwhile': 1,
          'hidden': 1,
          'collective': 1,
          'sleeves': 1,
          'doublecrosses': 1,
          'secret': 1,
          'love': 1,
          'affairs': 1,
          'torrid': 1,
          'pasts': 1,
          'though': 1,
          'relevance': 1,
          'nmcquarrie': 1,
          'meaning': 1,
          'word': 1,
          'nhe': 1,
          'interested': 1,
          'showing': 1,
          'us': 1,
          'clever': 1,
          'making': 1,
          'neverything': 1,
          'complicated': 1,
          'point': 1,
          'surrealism': 1,
          'nnothing': 1,
          'dropped': 1,
          'middle': 1,
          'expected': 1,
          'industrys': 1,
          'rules': 1,
          'regulations': 1,
          'nevery': 1,
          'caans': 1,
          'character': 1,
          'exemplifies': 1,
          'perfectly': 1,
          'already': 1,
          'chat': 1,
          'getting': 1,
          'conversations': 1,
          'business': 1,
          'works': 1,
          'hardly': 1,
          'given': 1,
          'clue': 1,
          'talking': 1,
          'nthese': 1,
          'probably': 1,
          'supposed': 1,
          'ideas': 1,
          'rippedoff': 1,
          'found': 1,
          'david': 1,
          'mamets': 1,
          'trash': 1,
          'nno': 1,
          'acts': 1,
          'real': 1,
          'person': 1,
          'removed': 1,
          'dream': 1,
          'without': 1,
          'ntake': 1,
          'opening': 1,
          'example': 1,
          'parking': 1,
          'across': 1,
          'bar': 1,
          'club': 1,
          'counting': 1,
          'stuff': 1,
          'sit': 1,
          'brandnew': 1,
          'alarm': 1,
          'goes': 1,
          'waiting': 1,
          'line': 1,
          'yells': 1,
          'move': 1,
          'loudmouth': 1,
          'pottymouth': 1,
          'girlfriend': 1,
          '20': 1,
          'people': 1,
          'cross': 1,
          'gang': 1,
          'nyoud': 1,
          'think': 1,
          'pull': 1,
          'scare': 1,
          'instead': 1,
          'throws': 1,
          'punch': 1,
          'beat': 1,
          'things': 1,
          'didnt': 1,
          'isnt': 1,
          'yuppie': 1,
          'old': 1,
          'rich': 1,
          'snob': 1,
          'hippie': 1,
          'straight': 1,
          '60s': 1,
          'nsecondly': 1,
          'main': 1,
          'seem': 1,
          'believe': 1,
          'actually': 1,
          'take': 1,
          'unarmed': 1,
          'nlastly': 1,
          'serves': 1,
          'purpose': 1,
          'long': 1,
          'run': 1,
          'later': 1,
          'packing': 1,
          'artillery': 1,
          'small': 1,
          'countrys': 1,
          'army': 1,
          'nif': 1,
          'suicidal': 1,
          'wouldnt': 1,
          'gone': 1,
          'kidnapping': 1,
          'job': 1,
          'place': 1,
          'never': 1,
          'explained': 1,
          'could': 1,
          'pick': 1,
          'apart': 1,
          'exercise': 1,
          'futility': 1,
          'nwhat': 1,
          'nothing': 1,
          'pretty': 1,
          'nabsolutely': 1,
          'none': 1,
          'likable': 1,
          'believable': 1,
          'nand': 1,
          'coated': 1,
          'thin': 1,
          'layer': 1,
          'chuckle': 1,
          'definitely': 1,
          'flatout': 1,
          'use': 1,
          'desperate': 1,
          'attempt': 1,
          'kill': 1,
          'screen': 1,
          'whether': 1,
          'least': 1,
          'ni': 1,
          'say': 1,
          'imagine': 1,
          'intelligently': 1,
          'defending': 1,
          'nneg': 1}),
 Counter({'_dirty_work_': 4,
          'one': 4,
          'film': 4,
          'macdonald': 3,
          'sam': 3,
          'rather': 3,
          'taste': 3,
          'much': 3,
          'funny': 3,
          'nthe': 3,
          'premise': 2,
          'weaver': 2,
          'nbut': 2,
          'goes': 2,
          'mitch': 2,
          'good': 2,
          'nso': 2,
          'business': 2,
          'called': 2,
          'work': 2,
          'give': 2,
          'sams': 2,
          'nastiness': 2,
          'isnt': 2,
          'bob': 2,
          'saget': 2,
          'nhe': 2,
          'screen': 2,
          'running': 2,
          'moments': 2,
          'involved': 2,
          'production': 2,
          'amusement': 2,
          'deliciously': 1,
          'meanspirited': 1,
          'potential': 1,
          'nmitch': 1,
          'norm': 1,
          'lifelong': 1,
          'best': 1,
          'friend': 1,
          'mckenna': 1,
          'artie': 1,
          'lange': 1,
          'losers': 1,
          'life': 1,
          'constantly': 1,
          'picked': 1,
          'school': 1,
          'hold': 1,
          'regular': 1,
          'jobs': 1,
          'trailer': 1,
          'thing': 1,
          'atrevenge': 1,
          'parlay': 1,
          'unmatched': 1,
          'skill': 1,
          'gettingeven': 1,
          'schemes': 1,
          'marketable': 1,
          'revengeforhire': 1,
          'dirty': 1,
          'inc': 1,
          'nthis': 1,
          'groundwork': 1,
          'wonderfully': 1,
          'wicked': 1,
          'black': 1,
          'comedy': 1,
          'ensues': 1,
          'clean': 1,
          'spirit': 1,
          'nin': 1,
          'fact': 1,
          'makes': 1,
          'start': 1,
          'giddy': 1,
          'desire': 1,
          'bullies': 1,
          'medicine': 1,
          'sappy': 1,
          'reason': 1,
          'father': 1,
          'jack': 1,
          'warden': 1,
          'needs': 1,
          'heart': 1,
          'transplant': 1,
          'order': 1,
          'move': 1,
          'top': 1,
          'recipient': 1,
          'list': 1,
          'compulsively': 1,
          'betting': 1,
          'doctor': 1,
          'chevy': 1,
          'chase': 1,
          'asks': 1,
          'guys': 1,
          '50': 1,
          '000': 1,
          'pay': 1,
          'bookie': 1,
          'scheming': 1,
          'beneath': 1,
          'every': 1,
          'underhanded': 1,
          'plot': 1,
          'isgasp': 1,
          'nheart': 1,
          'undercuts': 1,
          'inherent': 1,
          'nnot': 1,
          'lot': 1,
          'displaythere': 1,
          'different': 1,
          'sort': 1,
          'nthere': 1,
          'frequent': 1,
          'sexual': 1,
          'references': 1,
          'prominently': 1,
          'form': 1,
          'prostitutes': 1,
          'impotent': 1,
          'fathers': 1,
          'ongoing': 1,
          'lust': 1,
          'nand': 1,
          'rated': 1,
          'pg13': 1,
          'director': 1,
          'yes': 1,
          '_full_house_': 1,
          '_americas_funniest_home_videos_': 1,
          'fame': 1,
          'writers': 1,
          'frank': 1,
          'sebastiano': 1,
          'fred': 1,
          'wolf': 1,
          'stretch': 1,
          'boundaries': 1,
          'fararguably': 1,
          'bit': 1,
          'two': 1,
          'separate': 1,
          'instances': 1,
          'sodomy': 1,
          'animals': 1,
          'really': 1,
          'necessary': 1,
          'issue': 1,
          'course': 1,
          'humoras': 1,
          'answer': 1,
          'resounding': 1,
          'nits': 1,
          'guy': 1,
          'consistently': 1,
          'performers': 1,
          '_saturday_night_live_': 1,
          'muchtalkedabout': 1,
          'firing': 1,
          'dry': 1,
          'brand': 1,
          'smartass': 1,
          'wit': 1,
          'translates': 1,
          'well': 1,
          'big': 1,
          'also': 1,
          'doesnt': 1,
          'hurt': 1,
          'hes': 1,
          'natural': 1,
          'likable': 1,
          'presence': 1,
          'able': 1,
          'lines': 1,
          'nice': 1,
          'acid': 1,
          'touch': 1,
          'part': 1,
          'oneliners': 1,
          'written': 1,
          'flat': 1,
          'broad': 1,
          'slapstick': 1,
          'gags': 1,
          'dont': 1,
          'gag': 1,
          'literally': 1,
          'tossed': 1,
          'buildingsa': 1,
          'real': 1,
          'riot': 1,
          'nstill': 1,
          'macdonalds': 1,
          'shining': 1,
          'late': 1,
          'chris': 1,
          'farley': 1,
          'hysterical': 1,
          'ever': 1,
          'amusing': 1,
          'cameo': 1,
          'role': 1,
          'whole': 1,
          'supporting': 1,
          'players': 1,
          'amateurish': 1,
          'seemingly': 1,
          'free': 1,
          'directorial': 1,
          'guidance': 1,
          'nsaget': 1,
          'tries': 1,
          'juice': 1,
          'proceedings': 1,
          'kitschy': 1,
          'cameos': 1,
          'gary': 1,
          'coleman': 1,
          'adam': 1,
          'sandler': 1,
          'john': 1,
          'goodman': 1,
          'minimal': 1,
          'novelty': 1,
          'value': 1,
          'prevent': 1,
          'sputtering': 1,
          'end': 1,
          'brief': 1,
          '81minute': 1,
          'time': 1,
          'closes': 1,
          'sad': 1,
          'note': 1,
          'desperation': 1,
          'indulgent': 1,
          'reel': 1,
          'outtakes': 1,
          'would': 1,
          'derive': 1,
          'ncome': 1,
          'think': 1,
          'imagine': 1,
          'anyone': 1,
          'find': 1,
          'entirety': 1,
          'nneg': 1}),
 Counter({'chucky': 4,
          'one': 4,
          'bride': 3,
          'nothing': 3,
          'new': 3,
          'nthe': 3,
          'even': 3,
          'childs': 2,
          'play': 2,
          'rest': 2,
          'make': 2,
          'nbut': 2,
          'scene': 2,
          'americas': 1,
          'favorite': 1,
          'homicidal': 1,
          'plaything': 1,
          'takes': 1,
          'wicked': 1,
          'wife': 1,
          'unholy': 1,
          'matrimony': 1,
          'something': 1,
          'old': 1,
          'burning': 1,
          'question': 1,
          'minds': 1,
          'moviegoers': 1,
          'however': 1,
          'nuptial': 1,
          'specifics': 1,
          'movie': 1,
          'stacks': 1,
          'rather': 1,
          'whether': 1,
          'duo': 1,
          'gets': 1,
          'dirty': 1,
          'bloodsoaked': 1,
          'honeymoon': 1,
          'answer': 1,
          'sickandtwisted': 1,
          'yes': 1,
          'viewers': 1,
          'treated': 1,
          'shadowy': 1,
          'glimpse': 1,
          'hotenoughtomeltrubber': 1,
          'least': 1,
          'singe': 1,
          'lovin': 1,
          'nguess': 1,
          'theyre': 1,
          'anatomically': 1,
          'correct': 1,
          'nchucky': 1,
          'voiced': 1,
          'brad': 1,
          'dourif': 1,
          'course': 1,
          'star': 1,
          'series': 1,
          'buddytype': 1,
          'doll': 1,
          'possessed': 1,
          'spirit': 1,
          'slain': 1,
          'serial': 1,
          'killer': 1,
          'nin': 1,
          'plot': 1,
          'heh': 1,
          'picks': 1,
          'girlfriend': 1,
          'tiffany': 1,
          'jennifer': 1,
          'tilly': 1,
          'resurrecting': 1,
          'chuckys': 1,
          'remains': 1,
          'blown': 1,
          'end': 1,
          '3': 1,
          'help': 1,
          'black': 1,
          'arts': 1,
          'manual': 1,
          'called': 1,
          'voodoo': 1,
          'dummies': 1,
          'nsilly': 1,
          'mortal': 1,
          'nbefore': 1,
          'long': 1,
          'shes': 1,
          'also': 1,
          'reduced': 1,
          'shinhigh': 1,
          'figurine': 1,
          'status': 1,
          'plastic': 1,
          'incarnations': 1,
          'onetime': 1,
          'lunatic': 1,
          'lovebirds': 1,
          'hit': 1,
          'road': 1,
          'scope': 1,
          'potential': 1,
          'human': 1,
          'bodies': 1,
          'rocky': 1,
          'horror': 1,
          'puppet': 1,
          'show': 1,
          'plays': 1,
          'tiff': 1,
          'chuckster': 1,
          'stalk': 1,
          'young': 1,
          'couple': 1,
          'nick': 1,
          'stabile': 1,
          'katherine': 1,
          'heigl': 1,
          'conjugal': 1,
          'plans': 1,
          'leading': 1,
          'towards': 1,
          'jersey': 1,
          'grave': 1,
          'magical': 1,
          'soultransferring': 1,
          'amulet': 1,
          'allegedly': 1,
          'lies': 1,
          'wait': 1,
          'nalong': 1,
          'way': 1,
          'murderous': 1,
          'barbie': 1,
          'ken': 1,
          'go': 1,
          'postmarriage': 1,
          'motions': 1,
          'similar': 1,
          'given': 1,
          'pair': 1,
          'newlyweds': 1,
          'bicker': 1,
          'argue': 1,
          'kiss': 1,
          'squabble': 1,
          'whos': 1,
          'going': 1,
          'dishes': 1,
          'watch': 1,
          'nhey': 1,
          'faux': 1,
          'people': 1,
          'got': 1,
          'work': 1,
          'problems': 1,
          'ndirector': 1,
          'ronny': 1,
          'yu': 1,
          'keeps': 1,
          'mayhem': 1,
          'flashy': 1,
          'stages': 1,
          'inventive': 1,
          'two': 1,
          'visual': 1,
          'flair': 1,
          'fact': 1,
          'creepy': 1,
          'kewpies': 1,
          'neither': 1,
          'scary': 1,
          'menacing': 1,
          'nwhen': 1,
          'charges': 1,
          'good': 1,
          'forward': 1,
          'punt': 1,
          'couldnt': 1,
          'take': 1,
          'care': 1,
          'nand': 1,
          'climactic': 1,
          'chase': 1,
          'needed': 1,
          'dimbulb': 1,
          'protagonists': 1,
          'must': 1,
          '_pick_chucky_up_': 1,
          'demonic': 1,
          'toy': 1,
          'force': 1,
          'hostage': 1,
          'run': 1,
          'gunpoint': 1,
          'nthrow': 1,
          'silly': 1,
          'casualties': 1,
          'ridiculous': 1,
          'ending': 1,
          'son': 1,
          'next': 1,
          'bizarrely': 1,
          'bad': 1,
          '89minutes': 1,
          'movies': 1,
          'nas': 1,
          'thing': 1,
          'post': 1,
          'scream': 1,
          'slasher': 1,
          'cinema': 1,
          'mancinis': 1,
          'screenplay': 1,
          'slathers': 1,
          'injokes': 1,
          'genreparody': 1,
          'little': 1,
          'humor': 1,
          'succeeds': 1,
          'proving': 1,
          'selfreference': 1,
          'completely': 1,
          'worthless': 1,
          'lacks': 1,
          'bite': 1,
          'nto': 1,
          'fair': 1,
          'though': 1,
          'autopilot': 1,
          'quite': 1,
          'right': 1,
          'single': 1,
          'misfired': 1,
          'aspect': 1,
          'film': 1,
          'nsimilarly': 1,
          'shaky': 1,
          'acting': 1,
          'ranges': 1,
          'screeching': 1,
          'camp': 1,
          'boring': 1,
          'bland': 1,
          'effects': 1,
          'arent': 1,
          'special': 1,
          'story': 1,
          'big': 1,
          'groaner': 1,
          'nheres': 1,
          'hoping': 1,
          'entire': 1,
          'clan': 1,
          'past': 1,
          'present': 1,
          'future': 1,
          'peace': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          '13th': 5,
          'killer': 5,
          'nthe': 4,
          'friday': 4,
          'first': 3,
          'films': 3,
          'like': 3,
          'something': 3,
          'unsuspecting': 3,
          'film': 2,
          'would': 2,
          'series': 2,
          'horror': 2,
          'time': 2,
          'na': 2,
          'might': 2,
          'watch': 2,
          'everyones': 2,
          'favorite': 2,
          'maniac': 2,
          'single': 2,
          'start': 2,
          'count': 2,
          'plot': 2,
          'many': 2,
          'teenagers': 2,
          'bloodthirsty': 2,
          'usually': 2,
          'get': 2,
          'summer': 2,
          'kids': 2,
          'one': 2,
          'say': 2,
          'quality': 2,
          'includes': 2,
          'nif': 2,
          'used': 2,
          'really': 2,
          'taking': 2,
          'pride': 2,
          'work': 2,
          'murder': 2,
          'fun': 2,
          'sit': 2,
          'become': 1,
          'successful': 1,
          'fair': 1,
          'warning': 1,
          'inclined': 1,
          'appearance': 1,
          'goaliemaskwearing': 1,
          'homicidal': 1,
          'njason': 1,
          'guy': 1,
          'handedly': 1,
          'controlled': 1,
          'overpopulation': 1,
          'problem': 1,
          'around': 1,
          'crystal': 1,
          'lake': 1,
          'area': 1,
          'doesnt': 1,
          'quest': 1,
          'find': 1,
          'interesting': 1,
          'household': 1,
          'item': 1,
          'kill': 1,
          'someone': 1,
          'sequel': 1,
          'nwhile': 1,
          'small': 1,
          'role': 1,
          'audience': 1,
          'depend': 1,
          'another': 1,
          'blood': 1,
          'thirsty': 1,
          'rack': 1,
          'body': 1,
          'every': 1,
          'goes': 1,
          'crazed': 1,
          'murders': 1,
          'hesheit': 1,
          'possibly': 1,
          'space': 1,
          '90': 1,
          'minute': 1,
          'reasons': 1,
          'afore': 1,
          'mentioned': 1,
          'come': 1,
          'contact': 1,
          'little': 1,
          'importance': 1,
          'story': 1,
          'nbut': 1,
          'actually': 1,
          'care': 1,
          'trivial': 1,
          'matters': 1,
          'basics': 1,
          'bunch': 1,
          'teens': 1,
          'job': 1,
          'long': 1,
          'closed': 1,
          'camp': 1,
          'nthey': 1,
          'days': 1,
          'away': 1,
          'arrival': 1,
          'spending': 1,
          'fixing': 1,
          'place': 1,
          'making': 1,
          'sure': 1,
          'ready': 1,
          'nsadly': 1,
          'butchered': 1,
          'nat': 1,
          'point': 1,
          'acting': 1,
          'directing': 1,
          'maybe': 1,
          'high': 1,
          'production': 1,
          'nsince': 1,
          'im': 1,
          'going': 1,
          'feel': 1,
          'free': 1,
          'assume': 1,
          'wouldnt': 1,
          'positive': 1,
          'ni': 1,
          'looks': 1,
          'made': 1,
          'hundred': 1,
          'bucks': 1,
          'actors': 1,
          'salaries': 1,
          'recent': 1,
          'scream': 1,
          'bit': 1,
          'surprise': 1,
          'saving': 1,
          'grace': 1,
          'kind': 1,
          'real': 1,
          'nusing': 1,
          'methods': 1,
          'could': 1,
          'nnone': 1,
          'weapon': 1,
          'stuff': 1,
          'life': 1,
          'unimaginative': 1,
          'leatherface': 1,
          'chainsaw': 1,
          'massacre': 1,
          'creatively': 1,
          'stifled': 1,
          'imagination': 1,
          'halloweens': 1,
          'michael': 1,
          'myers': 1,
          'brute': 1,
          'force': 1,
          'big': 1,
          'kitchen': 1,
          'knife': 1,
          'nnope': 1,
          'movies': 1,
          'always': 1,
          'great': 1,
          'none': 1,
          'fact': 1,
          'cast': 1,
          'young': 1,
          'kevin': 1,
          'bacon': 1,
          'although': 1,
          'wonder': 1,
          'ever': 1,
          'worked': 1,
          'main': 1,
          'reason': 1,
          'see': 1,
          'want': 1,
          'beginning': 1,
          'stick': 1,
          'later': 1,
          'jason': 1,
          'hockey': 1,
          'fan': 1,
          'nfriday': 1,
          'sort': 1,
          'couple': 1,
          'scares': 1,
          'dont': 1,
          'expecting': 1,
          'whole': 1,
          'lot': 1,
          'nneg': 1}),
 Counter({'story': 4,
          'good': 3,
          'camera': 3,
          'ntheres': 3,
          'theres': 2,
          'murder': 2,
          'first': 2,
          'abuses': 2,
          'american': 2,
          'nbut': 2,
          'slater': 2,
          'kevin': 2,
          'bacon': 2,
          'alcatraz': 2,
          'trial': 2,
          'school': 2,
          'oldman': 2,
          'overacting': 2,
          'timely': 1,
          'trapped': 1,
          'deep': 1,
          'within': 1,
          'excess': 1,
          'new': 1,
          'movie': 1,
          'prison': 1,
          'system': 1,
          'nwith': 1,
          'country': 1,
          'wrapped': 1,
          'feverish': 1,
          'debate': 1,
          'crime': 1,
          'issue': 1,
          'rights': 1,
          'accused': 1,
          'incarcerated': 1,
          'jeopardy': 1,
          'expose': 1,
          'would': 1,
          'offer': 1,
          'something': 1,
          'rare': 1,
          'recent': 1,
          'moviesa': 1,
          'point': 1,
          'view': 1,
          'director': 1,
          'marc': 1,
          'rocco': 1,
          'makes': 1,
          'clear': 1,
          'beginning': 1,
          'pretentious': 1,
          'often': 1,
          'nauseating': 1,
          'movements': 1,
          'slick': 1,
          'mtv': 1,
          'style': 1,
          'lighting': 1,
          'editing': 1,
          'far': 1,
          'important': 1,
          'moment': 1,
          'picture': 1,
          'surrenders': 1,
          'technique': 1,
          'pure': 1,
          'storytelling': 1,
          'nand': 1,
          'everything': 1,
          'suffers': 1,
          'nchristian': 1,
          'star': 1,
          'defense': 1,
          'attorney': 1,
          'inmate': 1,
          'respectively': 1,
          'nafter': 1,
          'spending': 1,
          'unprecedented': 1,
          'amount': 1,
          'time': 1,
          'isolated': 1,
          'cell': 1,
          'attempting': 1,
          'escape': 1,
          'murders': 1,
          'another': 1,
          'prisoner': 1,
          'faces': 1,
          'nhis': 1,
          'young': 1,
          'lawyer': 1,
          'fresh': 1,
          'law': 1,
          'determined': 1,
          'put': 1,
          'warden': 1,
          'gary': 1,
          'nthe': 1,
          'result': 1,
          'usual': 1,
          'courtroom': 1,
          'theatrics': 1,
          'imagine': 1,
          'stanley': 1,
          'kramer': 1,
          'production': 1,
          'shot': 1,
          'hyperactive': 1,
          'film': 1,
          'students': 1,
          'little': 1,
          'praise': 1,
          'outside': 1,
          'bacons': 1,
          'earnest': 1,
          'appropriate': 1,
          'lot': 1,
          'everyoneyou': 1,
          'know': 1,
          'youre': 1,
          'trouble': 1,
          'right': 1,
          'away': 1,
          'r': 1,
          'lee': 1,
          'ermey': 1,
          'drill': 1,
          'sergeant': 1,
          'full': 1,
          'metal': 1,
          'jacket': 1,
          'cast': 1,
          'judge': 1,
          'center': 1,
          'reason': 1,
          'moderation': 1,
          'nslater': 1,
          'never': 1,
          'convincing': 1,
          'certainly': 1,
          'isnt': 1,
          'bad': 1,
          'streak': 1,
          'hammy': 1,
          'performances': 1,
          'worst': 1,
          'feeling': 1,
          'get': 1,
          'watching': 1,
          'man': 1,
          'behind': 1,
          'could': 1,
          'care': 1,
          'less': 1,
          'telling': 1,
          'nthere': 1,
          'long': 1,
          'exchanges': 1,
          'dialogue': 1,
          'even': 1,
          'moving': 1,
          'near': 1,
          'characters': 1,
          'let': 1,
          'alone': 1,
          'nhow': 1,
          'frustrating': 1,
          'must': 1,
          'actors': 1,
          'work': 1,
          'conditions': 1,
          'nif': 1,
          'anything': 1,
          'alway': 1,
          'distinguished': 1,
          'films': 1,
          'rest': 1,
          'world': 1,
          'ability': 1,
          'tell': 1,
          'nhave': 1,
          'forgotten': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'movie': 3,
          'far': 2,
          'avengers': 2,
          'dressed': 2,
          'wearing': 2,
          'evil': 2,
          'sir': 2,
          'august': 2,
          'question': 2,
          'could': 2,
          'name': 2,
          'ni': 2,
          'little': 2,
          'thurman': 2,
          'fiennes': 2,
          'something': 2,
          'dialogue': 2,
          'except': 2,
          'would': 2,
          'see': 2,
          'one': 2,
          'worst': 1,
          'ive': 1,
          'viewed': 1,
          '98': 1,
          'silly': 1,
          'man': 1,
          'bowler': 1,
          'hat': 1,
          'woman': 1,
          'tight': 1,
          'leathers': 1,
          'scientists': 1,
          'teddy': 1,
          'bear': 1,
          'suits': 1,
          'greater': 1,
          'de': 1,
          'wynter': 1,
          'kilt': 1,
          'gone': 1,
          'wrong': 1,
          'potentially': 1,
          'great': 1,
          'idea': 1,
          'big': 1,
          'cast': 1,
          'probably': 1,
          'asked': 1,
          'last': 1,
          'years': 1,
          'stinker': 1,
          'batman': 1,
          'robin': 1,
          'feel': 1,
          'production': 1,
          'got': 1,
          'smug': 1,
          'script': 1,
          'smart': 1,
          'direction': 1,
          'somehow': 1,
          'lost': 1,
          'chaos': 1,
          'random': 1,
          'events': 1,
          'collided': 1,
          'together': 1,
          'form': 1,
          'nmy': 1,
          'greatest': 1,
          'criticism': 1,
          'rests': 1,
          'fact': 1,
          'chemistry': 1,
          'emma': 1,
          'peel': 1,
          'john': 1,
          'steed': 1,
          'vital': 1,
          'element': 1,
          '60s': 1,
          'tv': 1,
          'serial': 1,
          'goes': 1,
          'tea': 1,
          'finer': 1,
          'british': 1,
          'perks': 1,
          'allow': 1,
          'much': 1,
          'room': 1,
          'character': 1,
          'development': 1,
          'interaction': 1,
          'perhaps': 1,
          'grate': 1,
          'viewers': 1,
          'nerves': 1,
          'none': 1,
          'wonders': 1,
          'dynamic': 1,
          'pair': 1,
          'bother': 1,
          'kissing': 1,
          'end': 1,
          'pure': 1,
          'english': 1,
          'formality': 1,
          'nconnery': 1,
          'fair': 1,
          'better': 1,
          'nhis': 1,
          'erratic': 1,
          'stormy': 1,
          'weather': 1,
          'mostly': 1,
          'embarrassing': 1,
          'poor': 1,
          'quality': 1,
          'nif': 1,
          'prefer': 1,
          'never': 1,
          'believe': 1,
          'good': 1,
          'choice': 1,
          'nfor': 1,
          'thing': 1,
          'witness': 1,
          'product': 1,
          'inferior': 1,
          'three': 1,
          'high': 1,
          'profile': 1,
          'names': 1,
          'associated': 1,
          'title': 1,
          'understand': 1,
          'poorly': 1,
          'produced': 1,
          'released': 1,
          'put': 1,
          'freak': 1,
          'happenings': 1,
          'nature': 1,
          'like': 1,
          'lightning': 1,
          'cant': 1,
          'coming': 1,
          'hits': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'boyfriend': 3,
          'naked': 3,
          'talents': 3,
          'really': 2,
          'spends': 2,
          'art': 2,
          'evil': 2,
          'everett': 2,
          'longstreet': 2,
          'minds': 2,
          'mental': 2,
          'scifi': 2,
          'pamela': 2,
          'andersons': 2,
          'sex': 2,
          'two': 2,
          'get': 2,
          'pammy': 2,
          'synopsis': 1,
          'bigbreasted': 1,
          'dimwitted': 1,
          'sculptress': 1,
          'britt': 1,
          'gets': 1,
          'mad': 1,
          'grad': 1,
          'student': 1,
          'much': 1,
          'time': 1,
          'thoughttransference': 1,
          'experiments': 1,
          'instead': 1,
          'showings': 1,
          'nelderly': 1,
          'scientist': 1,
          'switches': 1,
          'britts': 1,
          'boy': 1,
          'meantime': 1,
          'goes': 1,
          'completely': 1,
          'ncomments': 1,
          'souls': 1,
          'opens': 1,
          'woman': 1,
          'makes': 1,
          'illusion': 1,
          'vehicle': 1,
          'designed': 1,
          'show': 1,
          'um': 1,
          'nif': 1,
          'interested': 1,
          'seeing': 1,
          'however': 1,
          'suggest': 1,
          'skip': 1,
          'dud': 1,
          'watch': 1,
          'infamous': 1,
          'pam': 1,
          'tommy': 1,
          'lee': 1,
          'honeymoon': 1,
          'tape': 1,
          'available': 1,
          'home': 1,
          'video': 1,
          'nat': 1,
          'least': 1,
          'dont': 1,
          'go': 1,
          'painful': 1,
          'experience': 1,
          'watching': 1,
          'try': 1,
          'pronounce': 1,
          'multiple': 1,
          'syllable': 1,
          'words': 1,
          'like': 1,
          'eclectic': 1,
          'na': 1,
          'premise': 1,
          'exist': 1,
          'nbasically': 1,
          'anderson': 1,
          'wears': 1,
          'skimpy': 1,
          'clothes': 1,
          'barely': 1,
          'contain': 1,
          'practices': 1,
          'brilliantly': 1,
          'slapping': 1,
          'plaster': 1,
          'paris': 1,
          'women': 1,
          'nher': 1,
          'meanwhile': 1,
          '20': 1,
          'hours': 1,
          'day': 1,
          'morgue': 1,
          'trying': 1,
          'view': 1,
          'memories': 1,
          'dead': 1,
          'prison': 1,
          'inmates': 1,
          'make': 1,
          'difference': 1,
          'humanity': 1,
          'nwhatever': 1,
          'nthe': 1,
          'fails': 1,
          'explain': 1,
          'hooked': 1,
          'nbe': 1,
          'grateful': 1,
          'nafter': 1,
          'meet': 1,
          'lots': 1,
          'technobabble': 1,
          'mystical': 1,
          'mumbojumbo': 1,
          'tossed': 1,
          'replete': 1,
          'cheesy': 1,
          'makeout': 1,
          'music': 1,
          'transferred': 1,
          'nnever': 1,
          'fear': 1,
          'though': 1,
          'uses': 1,
          'sharp': 1,
          'abilities': 1,
          'ahem': 1,
          'save': 1,
          'end': 1,
          'nunfortunately': 1,
          'one': 1,
          'saves': 1,
          'navoid': 1,
          'wouldbe': 1,
          'thriller': 1,
          'unless': 1,
          'youre': 1,
          'good': 1,
          'laugh': 1,
          'nneg': 1}),
 Counter({'movie': 18,
          'think': 6,
          'nthe': 5,
          'slapstick': 5,
          'acting': 5,
          'humor': 4,
          'like': 4,
          'ni': 4,
          'tv': 4,
          'bean': 3,
          'look': 3,
          'rather': 3,
          'might': 3,
          'real': 3,
          'could': 3,
          'nbut': 3,
          'nnow': 3,
          'mr': 2,
          'la': 2,
          'help': 2,
          'masterpiece': 2,
          'first': 2,
          'two': 2,
          'said': 2,
          'end': 2,
          'laughing': 2,
          'whole': 2,
          'nwell': 2,
          'plot': 2,
          'hard': 2,
          'say': 2,
          'many': 2,
          'go': 2,
          'form': 2,
          'truly': 2,
          'stupid': 2,
          'wasnt': 2,
          'done': 2,
          'role': 2,
          'bit': 2,
          'would': 2,
          'better': 2,
          'achieved': 2,
          'thing': 2,
          'save': 2,
          'people': 2,
          'bumbling': 1,
          'security': 1,
          'guard': 1,
          'england': 1,
          'sent': 1,
          'grandiose': 1,
          'homecoming': 1,
          'american': 1,
          'painting': 1,
          'words': 1,
          'enough': 1,
          'let': 1,
          'know': 1,
          'occurs': 1,
          'beans': 1,
          'trip': 1,
          'didnt': 1,
          'interesting': 1,
          'odd': 1,
          'ride': 1,
          'nheck': 1,
          'depending': 1,
          'flick': 1,
          'neither': 1,
          'way': 1,
          'america': 1,
          'coming': 1,
          'really': 1,
          'little': 1,
          'discernible': 1,
          'nthat': 1,
          'much': 1,
          'grapple': 1,
          'comedy': 1,
          'nit': 1,
          'achieves': 1,
          'goal': 1,
          'admirably': 1,
          'screaming': 1,
          'premise': 1,
          'based': 1,
          'least': 1,
          'flawed': 1,
          'funny': 1,
          'moments': 1,
          'story': 1,
          'line': 1,
          'something': 1,
          'thought': 1,
          'whim': 1,
          'carried': 1,
          'causes': 1,
          'adlibbed': 1,
          'went': 1,
          'ndont': 1,
          'expecting': 1,
          'theatrical': 1,
          'floats': 1,
          'boat': 1,
          'enjoy': 1,
          'even': 1,
          'dont': 1,
          'style': 1,
          'somethings': 1,
          'goes': 1,
          'accomplishes': 1,
          'aims': 1,
          'seems': 1,
          'things': 1,
          'act': 1,
          'manner': 1,
          'easiest': 1,
          'sure': 1,
          'concede': 1,
          'atkinsons': 1,
          'well': 1,
          'nalthough': 1,
          'isnt': 1,
          'demanding': 1,
          'character': 1,
          'dialogue': 1,
          'added': 1,
          'quite': 1,
          'overall': 1,
          'effect': 1,
          'rest': 1,
          'actors': 1,
          'bad': 1,
          'poor': 1,
          'casting': 1,
          'opposite': 1,
          'seemed': 1,
          'wrong': 1,
          'na': 1,
          'different': 1,
          'actor': 1,
          'job': 1,
          'wont': 1,
          'presume': 1,
          'trying': 1,
          'none': 1,
          'must': 1,
          'simply': 1,
          'get': 1,
          'chest': 1,
          'transferring': 1,
          'sitcom': 1,
          'usually': 1,
          'produces': 1,
          'disastrous': 1,
          'results': 1,
          'ntv': 1,
          'shows': 1,
          'stay': 1,
          'probably': 1,
          'producers': 1,
          'getting': 1,
          'ulcers': 1,
          'couple': 1,
          'examples': 1,
          'going': 1,
          'big': 1,
          'screen': 1,
          'effectively': 1,
          'best': 1,
          'known': 1,
          'star': 1,
          'trek': 1,
          'nbean': 1,
          'seriously': 1,
          'fails': 1,
          'accomplish': 1,
          'anything': 1,
          'close': 1,
          'series': 1,
          'gone': 1,
          'another': 1,
          'state': 1,
          'narrowed': 1,
          'target': 1,
          'audience': 1,
          'fairly': 1,
          'tightly': 1,
          'liked': 1,
          'pointless': 1,
          'show': 1,
          'actually': 1,
          'safe': 1,
          'side': 1,
          'opting': 1,
          'recommend': 1,
          'money': 1,
          'see': 1,
          'nthere': 1,
          'movies': 1,
          'worth': 1,
          'seeing': 1,
          'unlike': 1,
          'one': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'story': 4,
          'erin': 4,
          'see': 3,
          'boston': 3,
          'nthis': 3,
          'nthe': 3,
          'ad': 3,
          'nit': 3,
          'one': 3,
          'actually': 3,
          'wonderland': 2,
          'plot': 2,
          'away': 2,
          'soul': 2,
          'mate': 2,
          'singles': 2,
          'star': 2,
          'nthat': 2,
          'dating': 2,
          'done': 2,
          'better': 2,
          'put': 2,
          'easy': 2,
          'alan': 2,
          'work': 2,
          'aquarium': 2,
          'comes': 2,
          'way': 2,
          'bet': 2,
          'obnoxious': 2,
          'place': 2,
          'well': 2,
          'rather': 1,
          'sugary': 1,
          'romance': 1,
          'subtle': 1,
          'ton': 1,
          'bricks': 1,
          'falling': 1,
          'nyou': 1,
          'developing': 1,
          'mile': 1,
          'nare': 1,
          'lured': 1,
          'benign': 1,
          'single': 1,
          '29yearold': 1,
          'girl': 1,
          'looking': 1,
          'city': 1,
          'depicted': 1,
          'miniwonderland': 1,
          'oriented': 1,
          'carries': 1,
          'hope': 1,
          'davis': 1,
          'reasons': 1,
          'fate': 1,
          'luck': 1,
          'whatnot': 1,
          'successful': 1,
          'match': 1,
          'putting': 1,
          'energy': 1,
          'fulfilling': 1,
          'careers': 1,
          'nothing': 1,
          'new': 1,
          'type': 1,
          'often': 1,
          'many': 1,
          'times': 1,
          'contemporary': 1,
          'films': 1,
          'fictionalized': 1,
          'documentary': 1,
          'unmade': 1,
          'beds': 1,
          'provocatively': 1,
          'sense': 1,
          'urgency': 1,
          'nmain': 1,
          'quirk': 1,
          'hopes': 1,
          'pushy': 1,
          'mother': 1,
          'hollan': 1,
          'visits': 1,
          'sees': 1,
          'daughters': 1,
          'livein': 1,
          'relationship': 1,
          'radical': 1,
          'protester': 1,
          'hoffman': 1,
          'breakup': 1,
          'decides': 1,
          'personal': 1,
          'newspaper': 1,
          'harvard': 1,
          'medical': 1,
          'school': 1,
          'dropout': 1,
          'daughter': 1,
          'works': 1,
          'nurse': 1,
          'without': 1,
          'knowledge': 1,
          'cornball': 1,
          'sitcom': 1,
          'stuff': 1,
          'least': 1,
          'handled': 1,
          'best': 1,
          'could': 1,
          'actors': 1,
          'director': 1,
          'like': 1,
          'bright': 1,
          'caring': 1,
          'attractively': 1,
          'blonde': 1,
          'equally': 1,
          'care': 1,
          'keeps': 1,
          'missing': 1,
          'contact': 1,
          'financially': 1,
          'strapped': 1,
          'ruggedly': 1,
          'handsome': 1,
          'intelligent': 1,
          '35yearold': 1,
          'longer': 1,
          'wants': 1,
          'father': 1,
          'plumber': 1,
          'volunteer': 1,
          'attending': 1,
          'college': 1,
          'marine': 1,
          'biologist': 1,
          'nof': 1,
          'course': 1,
          'across': 1,
          'good': 1,
          'though': 1,
          'kill': 1,
          'fish': 1,
          'hard': 1,
          'believe': 1,
          'hes': 1,
          'real': 1,
          'cardboard': 1,
          'shining': 1,
          'knight': 1,
          'give': 1,
          'ideal': 1,
          'shoot': 1,
          'contrived': 1,
          'revolves': 1,
          'around': 1,
          'near': 1,
          'misses': 1,
          'meeting': 1,
          'spots': 1,
          'subway': 1,
          'restaurant': 1,
          'phone': 1,
          'nalans': 1,
          'brother': 1,
          'answers': 1,
          'erins': 1,
          'pals': 1,
          'try': 1,
          'respond': 1,
          'phony': 1,
          'making': 1,
          'first': 1,
          'gets': 1,
          'tongue': 1,
          'kiss': 1,
          'others': 1,
          'witness': 1,
          'win': 1,
          'subplot': 1,
          'take': 1,
          'hear': 1,
          'told': 1,
          'go': 1,
          'several': 1,
          'dates': 1,
          'prove': 1,
          'point': 1,
          'ego': 1,
          'sick': 1,
          'guys': 1,
          'annoying': 1,
          'culminating': 1,
          'brazilian': 1,
          'lover': 1,
          'jose': 1,
          'charming': 1,
          'snakeoil': 1,
          'salesman': 1,
          'nearly': 1,
          'flies': 1,
          'holiday': 1,
          'brazil': 1,
          'incredulous': 1,
          'downright': 1,
          'contrary': 1,
          'rich': 1,
          'presentation': 1,
          'character': 1,
          'heart': 1,
          'nanyway': 1,
          'expected': 1,
          'alls': 1,
          'ends': 1,
          'watchable': 1,
          'piece': 1,
          'fluff': 1,
          'screen': 1,
          'relating': 1,
          'storyline': 1,
          'dialogue': 1,
          'bad': 1,
          'trying': 1,
          'flirt': 1,
          'seemed': 1,
          'uttering': 1,
          'authentic': 1,
          'things': 1,
          'would': 1,
          'say': 1,
          'situation': 1,
          'nand': 1,
          'oh': 1,
          'refers': 1,
          'stop': 1,
          'metro': 1,
          'greyhound': 1,
          'racing': 1,
          'takes': 1,
          'nneg': 1}),
 Counter({'prentice': 6,
          'kim': 6,
          'love': 4,
          'story': 4,
          'n': 4,
          'nthe': 3,
          'nif': 3,
          'film': 3,
          'nbut': 3,
          'either': 3,
          'karl': 2,
          'school': 2,
          'saved': 2,
          'see': 2,
          'woman': 2,
          'together': 2,
          'comedy': 2,
          'little': 2,
          'cheap': 2,
          'laughs': 2,
          'home': 2,
          'transsexual': 2,
          'much': 2,
          'give': 2,
          'girls': 2,
          'enough': 2,
          'make': 2,
          'uncomfortable': 2,
          'doesnt': 2,
          'guy': 2,
          'insecurities': 2,
          'still': 2,
          'couple': 2,
          'hes': 2,
          'like': 2,
          'thats': 2,
          'never': 2,
          'ending': 2,
          'kims': 2,
          'gets': 2,
          'comeuppance': 2,
          'ride': 2,
          'warned': 1,
          'nbrit': 1,
          'offing': 1,
          'neffeminate': 1,
          'mildmannered': 1,
          'take': 1,
          'beatng': 1,
          'bunch': 1,
          'ruffians': 1,
          'bathes': 1,
          'shower': 1,
          'genitals': 1,
          'tucked': 1,
          'legs': 1,
          'manner': 1,
          'posing': 1,
          'transvestite': 1,
          'nhe': 1,
          'appears': 1,
          'respects': 1,
          'barring': 1,
          'protective': 1,
          'attitude': 1,
          'towards': 1,
          'average': 1,
          'streetwise': 1,
          'punkinthemaking': 1,
          'ensuing': 1,
          'scene': 1,
          'ends': 1,
          'boys': 1,
          'ridiculed': 1,
          'unfairly': 1,
          'expelled': 1,
          'nthey': 1,
          'another': 1,
          'eighteen': 1,
          'yeas': 1,
          'nin': 1,
          'time': 1,
          'matured': 1,
          'somewhat': 1,
          'loveable': 1,
          'brash': 1,
          'bullheaed': 1,
          'goon': 1,
          'screws': 1,
          'jobs': 1,
          'relationships': 1,
          'gamely': 1,
          'clinging': 1,
          'onto': 1,
          'perennial': 1,
          'adolescence': 1,
          'via': 1,
          'lether': 1,
          'jackets': 1,
          'motorcycles': 1,
          'punk': 1,
          'rock': 1,
          'music': 1,
          'nkarl': 1,
          'hand': 1,
          'grown': 1,
          'become': 1,
          'drabby': 1,
          'insecure': 1,
          'works': 1,
          'verse': 1,
          'writer': 1,
          'greeting': 1,
          'card': 1,
          'company': 1,
          'nchance': 1,
          'brings': 1,
          'two': 1,
          'inevitably': 1,
          'blossom': 1,
          'quirky': 1,
          'british': 1,
          'romantic': 1,
          'skewed': 1,
          'largely': 1,
          'point': 1,
          'think': 1,
          'youre': 1,
          'going': 1,
          'get': 1,
          'genderbending': 1,
          'theme': 1,
          'birdcage': 1,
          'wong': 1,
          'foo': 1,
          'priscilla': 1,
          'queen': 1,
          'desert': 1,
          'go': 1,
          'brood': 1,
          'maladjusted': 1,
          'sexuality': 1,
          'lowlife': 1,
          'deadbeat': 1,
          'nkim': 1,
          'postoperative': 1,
          'thank': 1,
          'na': 1,
          'newborn': 1,
          'purposes': 1,
          'confusions': 1,
          'sensitivities': 1,
          'deserve': 1,
          'treatment': 1,
          'touch': 1,
          'delicacy': 1,
          'npersonally': 1,
          'day': 1,
          'nid': 1,
          'rather': 1,
          'enjoy': 1,
          'obvious': 1,
          'camp': 1,
          'endure': 1,
          'shallow': 1,
          'exploration': 1,
          'soft': 1,
          'hearted': 1,
          'ndifferent': 1,
          'comes': 1,
          'promising': 1,
          'proposition': 1,
          'nothing': 1,
          'surpasses': 1,
          'merely': 1,
          'workmanlike': 1,
          'nby': 1,
          'refusing': 1,
          'audience': 1,
          'really': 1,
          'notion': 1,
          'prentices': 1,
          'relation': 1,
          'ship': 1,
          'least': 1,
          'feel': 1,
          'example': 1,
          'seem': 1,
          'hiself': 1,
          'grief': 1,
          'becomes': 1,
          'attracted': 1,
          'despite': 1,
          'fightpicking': 1,
          'beerdrinking': 1,
          'macho': 1,
          'kind': 1,
          'fears': 1,
          'always': 1,
          'truly': 1,
          'disturbing': 1,
          'victimisation': 1,
          'instead': 1,
          'drawing': 1,
          'basically': 1,
          'wimpy': 1,
          'manages': 1,
          'lobotomise': 1,
          'nlightweight': 1,
          'doomed': 1,
          'couldve': 1,
          'hacked': 1,
          'requisitive': 1,
          'endearing': 1,
          'since': 1,
          'even': 1,
          'mrs': 1,
          'doubtfire': 1,
          'sexier': 1,
          'steven': 1,
          'mackintoshs': 1,
          'foyle': 1,
          'sex': 1,
          'plainly': 1,
          'simpering': 1,
          'wanker': 1,
          'nobody': 1,
          'nprentice': 1,
          'though': 1,
          'explained': 1,
          'rupert': 1,
          'graves': 1,
          'gives': 1,
          'us': 1,
          'heroic': 1,
          'performance': 1,
          'grew': 1,
          'bafta': 1,
          'prize': 1,
          'convincing': 1,
          'portrayal': 1,
          'rabid': 1,
          'fan': 1,
          'buzzcocks': 1,
          'concert': 1,
          'win': 1,
          'guess': 1,
          'theres': 1,
          'reason': 1,
          'explain': 1,
          'screwed': 1,
          'oddly': 1,
          'grow': 1,
          'show': 1,
          'youll': 1,
          'wanting': 1,
          'happy': 1,
          'wont': 1,
          'fail': 1,
          'nsnide': 1,
          'underling': 1,
          'office': 1,
          'nmisogynistic': 1,
          'police': 1,
          'officer': 1,
          'beats': 1,
          'prevail': 1,
          'disagreeable': 1,
          'society': 1,
          'come': 1,
          'apartment': 1,
          'nkims': 1,
          'sister': 1,
          'impotent': 1,
          'sargetype': 1,
          'husband': 1,
          'kiss': 1,
          'tiff': 1,
          'tv': 1,
          'movie': 1,
          'subplot': 1,
          'incidental': 1,
          'juxtaposition': 1,
          'nand': 1,
          'best': 1,
          'sheds': 1,
          'learns': 1,
          'motorcycle': 1,
          'wear': 1,
          'leathers': 1,
          'making': 1,
          'pilion': 1,
          'nawwww': 1,
          'nterrific': 1,
          'closure': 1,
          'nhappy': 1,
          'differnt': 1,
          'anyway': 1,
          'figure': 1,
          'one': 1,
          'let': 1,
          'know': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'creaky': 1,
          'better': 1,
          'staying': 1,
          'gotcha': 1,
          'pretty': 1,
          'good': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'elizabeth': 6,
          'film': 4,
          'wife': 4,
          'hotel': 4,
          'nhe': 4,
          'police': 4,
          'comedy': 3,
          'jeff': 3,
          'plan': 3,
          'room': 3,
          'gun': 3,
          'pillow': 3,
          'nthe': 3,
          'story': 3,
          'mountain': 3,
          'black': 2,
          'like': 2,
          'pigeon': 2,
          'goldblum': 2,
          'water': 2,
          'married': 2,
          'mimi': 2,
          'rogers': 2,
          'surprise': 2,
          'party': 2,
          'coming': 2,
          'going': 2,
          'mostly': 2,
          'effort': 2,
          'nervously': 2,
          'murder': 2,
          'goes': 2,
          'staff': 2,
          'gunshot': 2,
          'nbut': 2,
          'telling': 2,
          'nhis': 2,
          'boss': 2,
          'gets': 2,
          'find': 2,
          'nit': 2,
          'humor': 2,
          'situation': 2,
          'many': 2,
          'silly': 1,
          'tries': 1,
          'plays': 1,
          'lightweight': 1,
          'main': 1,
          'asset': 1,
          'beautiful': 1,
          'location': 1,
          'along': 1,
          'spains': 1,
          'mountainous': 1,
          'coastline': 1,
          'nhoward': 1,
          '40yearold': 1,
          'mineral': 1,
          'salesman': 1,
          '13': 1,
          'years': 1,
          'constantly': 1,
          'nagging': 1,
          'nafter': 1,
          'birthday': 1,
          'bawls': 1,
          'late': 1,
          'confides': 1,
          'best': 1,
          'friend': 1,
          'cant': 1,
          'stand': 1,
          'anymore': 1,
          'tells': 1,
          'kill': 1,
          'vacationing': 1,
          'barcelona': 1,
          'spent': 1,
          'honeymoon': 1,
          'njeff': 1,
          'severe': 1,
          'midlife': 1,
          'crises': 1,
          'worried': 1,
          'looks': 1,
          'older': 1,
          'age': 1,
          'incessantly': 1,
          'talks': 1,
          'agonizing': 1,
          'bitter': 1,
          'marriage': 1,
          'chastising': 1,
          'went': 1,
          'second': 1,
          'time': 1,
          'laughed': 1,
          'jokes': 1,
          'attractive': 1,
          'stutters': 1,
          'acts': 1,
          'man': 1,
          'lost': 1,
          'confidence': 1,
          'nthings': 1,
          'change': 1,
          'vacation': 1,
          'makes': 1,
          'nice': 1,
          'becomes': 1,
          'grouch': 1,
          'rehearses': 1,
          'nby': 1,
          'accident': 1,
          'imagined': 1,
          'would': 1,
          'sitting': 1,
          'nwhen': 1,
          'guests': 1,
          'come': 1,
          'check': 1,
          'explains': 1,
          'tv': 1,
          'nrealizing': 1,
          'unworkable': 1,
          'places': 1,
          'shattered': 1,
          'throws': 1,
          'ocean': 1,
          'waits': 1,
          'found': 1,
          'behavior': 1,
          'odd': 1,
          'entire': 1,
          'trip': 1,
          'great': 1,
          'deal': 1,
          'get': 1,
          'reservation': 1,
          'hotels': 1,
          '5': 1,
          'star': 1,
          'restaurant': 1,
          'insists': 1,
          'eating': 1,
          'decides': 1,
          'enough': 1,
          'checks': 1,
          'without': 1,
          'nas': 1,
          'result': 1,
          'report': 1,
          'missing': 1,
          'nwhile': 1,
          'telegram': 1,
          'comes': 1,
          'saying': 1,
          'left': 1,
          'away': 1,
          'wants': 1,
          'alone': 1,
          'works': 1,
          'sympathetic': 1,
          'job': 1,
          'promotion': 1,
          'soon': 1,
          'fished': 1,
          'giving': 1,
          'cause': 1,
          'arrest': 1,
          'search': 1,
          'home': 1,
          'nthere': 1,
          'letters': 1,
          'written': 1,
          'incriminating': 1,
          'also': 1,
          'heard': 1,
          'nin': 1,
          'jail': 1,
          'things': 1,
          'look': 1,
          'bad': 1,
          'nno': 1,
          'one': 1,
          'believes': 1,
          'including': 1,
          'friends': 1,
          'lawyer': 1,
          'fires': 1,
          'papers': 1,
          'field': 1,
          'day': 1,
          'headline': 1,
          'jailbird': 1,
          'nout': 1,
          'bail': 1,
          'realizes': 1,
          'hope': 1,
          'track': 1,
          'nthrough': 1,
          'call': 1,
          'placed': 1,
          'credit': 1,
          'card': 1,
          'tracks': 1,
          'resort': 1,
          'nonce': 1,
          'learns': 1,
          'took': 1,
          'hike': 1,
          'steep': 1,
          'priest': 1,
          'guide': 1,
          'true': 1,
          'watchable': 1,
          'antics': 1,
          'comic': 1,
          'performance': 1,
          'someone': 1,
          'apart': 1,
          'seams': 1,
          'perfect': 1,
          'foil': 1,
          'pantomine': 1,
          'charged': 1,
          'changing': 1,
          'facial': 1,
          'expressions': 1,
          'characters': 1,
          'absurdity': 1,
          'na': 1,
          'minor': 1,
          'farce': 1,
          'might': 1,
          'appeal': 1,
          'sitcom': 1,
          'crowd': 1,
          'didnt': 1,
          'take': 1,
          'seriously': 1,
          'gaps': 1,
          'chance': 1,
          'develop': 1,
          'instead': 1,
          'played': 1,
          'setup': 1,
          'henpecked': 1,
          'husband': 1,
          'acting': 1,
          'fantasy': 1,
          'strictly': 1,
          'entertainment': 1,
          'value': 1,
          'see': 1,
          'chuckles': 1,
          'could': 1,
          'draw': 1,
          'nneg': 1}),
 Counter({'movie': 18,
          'scary': 13,
          'film': 11,
          'nand': 9,
          'see': 6,
          'nothing': 6,
          'ni': 6,
          'like': 6,
          'think': 6,
          'blair': 5,
          'witch': 5,
          'filmmakers': 5,
          'could': 5,
          'hear': 5,
          'minutes': 5,
          'nthis': 5,
          'nthe': 4,
          'time': 4,
          'real': 4,
          'even': 4,
          'thought': 4,
          'n': 4,
          'people': 4,
          'nbut': 4,
          'one': 4,
          'imagination': 4,
          'something': 4,
          'thats': 4,
          'scariest': 3,
          'want': 3,
          'creepy': 3,
          'nwell': 3,
          'say': 3,
          'scared': 3,
          'talking': 3,
          'kids': 3,
          'lost': 3,
          'called': 3,
          'dont': 3,
          'good': 3,
          'supposed': 3,
          'use': 3,
          'life': 3,
          'project': 2,
          'possibly': 2,
          'nif': 2,
          'terror': 2,
          'big': 2,
          'screen': 2,
          'jar': 2,
          'less': 2,
          'must': 2,
          'pay': 2,
          '5': 2,
          'well': 2,
          'guess': 2,
          'shadow': 2,
          'nthere': 2,
          'maybe': 2,
          'praising': 2,
          'never': 2,
          'makes': 2,
          'three': 2,
          'nthey': 2,
          'scenes': 2,
          'josh': 2,
          'get': 2,
          'noh': 2,
          'fear': 2,
          'marketing': 2,
          'anything': 2,
          'nthat': 2,
          'better': 2,
          'arguing': 2,
          'point': 2,
          'nive': 2,
          'heard': 2,
          'create': 2,
          'things': 2,
          'nyou': 2,
          'wouldnt': 2,
          'cant': 2,
          'way': 2,
          'know': 2,
          'camera': 2,
          'shoot': 2,
          'nim': 2,
          'going': 2,
          'shot': 2,
          'prison': 2,
          'warned': 1,
          'following': 1,
          'review': 1,
          'contains': 1,
          'harsh': 1,
          'language': 1,
          'nquite': 1,
          'least': 1,
          'go': 1,
          'back': 1,
          'watch': 1,
          'scene': 1,
          'binks': 1,
          'phantom': 1,
          'menace': 1,
          'remotely': 1,
          'nmy': 1,
          'colleague': 1,
          'friend': 1,
          'chuck': 1,
          'dowling': 1,
          'wrote': 1,
          'worked': 1,
          'im': 1,
          'sorry': 1,
          'nis': 1,
          'nnothing': 1,
          'nits': 1,
          'nothiiiiiinggggggggggg': 1,
          'dollars': 1,
          'free': 1,
          'available': 1,
          'around': 1,
          'world': 1,
          'location': 1,
          'near': 1,
          'absolutely': 1,
          'amazement': 1,
          'find': 1,
          'discount': 1,
          'pansy': 1,
          'chicken': 1,
          'shits': 1,
          'probably': 1,
          'intelligent': 1,
          'friends': 1,
          'doesnt': 1,
          'hold': 1,
          'water': 1,
          'reason': 1,
          'first': 1,
          'correct': 1,
          'ill': 1,
          'try': 1,
          'pointing': 1,
          'day': 1,
          'test': 1,
          'reaction': 1,
          'nwhen': 1,
          '97': 1,
          'bickering': 1,
          'talk': 1,
          'might': 1,
          'make': 1,
          '3': 1,
          '4': 1,
          'short': 1,
          'night': 1,
          'unscary': 1,
          'sounds': 1,
          'another': 1,
          'shout': 1,
          'nover': 1,
          'accurately': 1,
          'dumb': 1,
          'pisspoor': 1,
          'argue': 1,
          'ladies': 1,
          'gentlemen': 1,
          'shouting': 1,
          'wait': 1,
          'till': 1,
          'pile': 1,
          'rocks': 1,
          'tinkertoy': 1,
          'lincoln': 1,
          'logs': 1,
          'oh': 1,
          'dear': 1,
          'lord': 1,
          'pissing': 1,
          'pants': 1,
          'yeah': 1,
          'goo': 1,
          'backpacks': 1,
          'nyouve': 1,
          'seen': 1,
          'folks': 1,
          'chevy': 1,
          'chasegoldie': 1,
          'hawn': 1,
          'comedy': 1,
          'foul': 1,
          'play': 1,
          'creepier': 1,
          'current': 1,
          'films': 1,
          'highly': 1,
          'recommend': 1,
          'sixth': 1,
          'sense': 1,
          'stir': 1,
          'echoes': 1,
          'filmgoing': 1,
          'experience': 1,
          'example': 1,
          'substance': 1,
          'brilliant': 1,
          'whole': 1,
          'nation': 1,
          'awe': 1,
          'premise': 1,
          'reaching': 1,
          'wrong': 1,
          'else': 1,
          'praise': 1,
          'wonderful': 1,
          'rejuvenates': 1,
          'horror': 1,
          'genre': 1,
          'may': 1,
          'come': 1,
          'along': 1,
          'much': 1,
          'njust': 1,
          '10': 1,
          '80': 1,
          'nighttime': 1,
          'stuff': 1,
          'saw': 1,
          'girl': 1,
          'extremely': 1,
          'pumped': 1,
          'nshe': 1,
          'sold': 1,
          'turned': 1,
          'asked': 1,
          'nwe': 1,
          'opinion': 1,
          'nuse': 1,
          'mean': 1,
          'anyone': 1,
          'bucks': 1,
          'idea': 1,
          'imagining': 1,
          'nan': 1,
          'entity': 1,
          'nsome': 1,
          'rednecks': 1,
          'fucking': 1,
          'nare': 1,
          'either': 1,
          'really': 1,
          'several': 1,
          'recall': 1,
          'woods': 1,
          'sure': 1,
          'lot': 1,
          'interesting': 1,
          'sit': 1,
          'house': 1,
          'snake': 1,
          'spider': 1,
          'need': 1,
          'budget': 1,
          'cgi': 1,
          'special': 1,
          'effects': 1,
          'nactually': 1,
          'equally': 1,
          'awful': 1,
          'remake': 1,
          'haunting': 1,
          'count': 1,
          'us': 1,
          'nostalgic': 1,
          'memories': 1,
          'shakycam': 1,
          'filming': 1,
          'narent': 1,
          'without': 1,
          'shaking': 1,
          'constantly': 1,
          'couple': 1,
          'terrified': 1,
          'justified': 1,
          '87': 1,
          'seem': 1,
          'smoothly': 1,
          'nminor': 1,
          'quibble': 1,
          'feeling': 1,
          'suckers': 1,
          'laughing': 1,
          'asses': 1,
          'bank': 1,
          'chance': 1,
          'thinking': 1,
          'fine': 1,
          'works': 1,
          'okay': 1,
          'lament': 1,
          'making': 1,
          'hit': 1,
          'subjected': 1,
          'approach': 1,
          'npretty': 1,
          'soon': 1,
          'movies': 1,
          'still': 1,
          'jail': 1,
          'cell': 1,
          'nfor': 1,
          '90': 1,
          'god': 1,
          'spend': 1,
          'coffin': 1,
          'funeral': 1,
          'directors': 1,
          'man': 1,
          'would': 1,
          'die': 1,
          'nnow': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'train': 10,
          'jamie': 6,
          'lee': 6,
          'terror': 4,
          'one': 4,
          'halloween': 3,
          'nthe': 3,
          'guy': 3,
          'mask': 3,
          'years': 3,
          'conductor': 3,
          'even': 3,
          'time': 3,
          'someone': 3,
          'station': 3,
          'trick': 3,
          'bed': 3,
          'four': 2,
          'movies': 2,
          'curtis': 2,
          'ntwo': 2,
          'prom': 2,
          'night': 2,
          'god': 2,
          'theres': 2,
          'nterror': 2,
          'students': 2,
          'first': 2,
          'make': 2,
          'hes': 2,
          'last': 2,
          'built': 2,
          'shopping': 2,
          'mall': 2,
          'next': 2,
          'makes': 2,
          'body': 2,
          'ni': 2,
          'nits': 2,
          'laid': 2,
          'nshe': 2,
          'says': 2,
          'kenny': 2,
          'still': 2,
          'groucho': 2,
          'killer': 2,
          'aboard': 2,
          'looks': 2,
          'like': 2,
          'movie': 2,
          'david': 2,
          'copperfield': 2,
          'set': 2,
          'fans': 2,
          'earned': 1,
          'title': 1,
          'scream': 1,
          'queen': 1,
          'early': 1,
          '80s': 1,
          'two': 1,
          'uninspired': 1,
          'knockoffs': 1,
          'came': 1,
          'directly': 1,
          'success': 1,
          'im': 1,
          'scared': 1,
          'coming': 1,
          'routine': 1,
          'john': 1,
          'carpenters': 1,
          'classic': 1,
          'copies': 1,
          'none': 1,
          'urgency': 1,
          'suspense': 1,
          'takes': 1,
          'place': 1,
          'else': 1,
          'charted': 1,
          'premed': 1,
          'finishing': 1,
          'higher': 1,
          'education': 1,
          'nmost': 1,
          'wont': 1,
          'med': 1,
          'school': 1,
          'though': 1,
          'obvious': 1,
          'foreshadowing': 1,
          'done': 1,
          'complains': 1,
          'wish': 1,
          'hell': 1,
          'theyd': 1,
          'put': 1,
          'radio': 1,
          'character': 1,
          'probably': 1,
          'lines': 1,
          'anyone': 1,
          'nfrom': 1,
          'beginning': 1,
          'talking': 1,
          'head': 1,
          'tells': 1,
          'coworkers': 1,
          'think': 1,
          'whens': 1,
          'nas': 1,
          'kind': 1,
          'sense': 1,
          'gets': 1,
          'better': 1,
          'engages': 1,
          'argument': 1,
          'benefits': 1,
          'railroad': 1,
          'recreational': 1,
          'vehicles': 1,
          'nof': 1,
          'course': 1,
          'loudmouth': 1,
          'person': 1,
          'find': 1,
          'bloody': 1,
          'gone': 1,
          'brings': 1,
          'skeptical': 1,
          'trainman': 1,
          'back': 1,
          'view': 1,
          'forgot': 1,
          'mention': 1,
          'prologue': 1,
          'party': 1,
          'three': 1,
          'earlier': 1,
          'group': 1,
          'play': 1,
          'geeky': 1,
          'frat': 1,
          'pledge': 1,
          'promising': 1,
          'going': 1,
          'get': 1,
          'nthey': 1,
          'send': 1,
          'stand': 1,
          'behind': 1,
          'talk': 1,
          'geek': 1,
          'comes': 1,
          'noticing': 1,
          'form': 1,
          'kiss': 1,
          'kisses': 1,
          'happens': 1,
          'cadaver': 1,
          'n': 1,
          'oh': 1,
          'killed': 1,
          'nyou': 1,
          'bastards': 1,
          'sick': 1,
          'wasnt': 1,
          'let': 1,
          'hasnt': 1,
          'forgiven': 1,
          'board': 1,
          'asshole': 1,
          'cant': 1,
          'good': 1,
          'without': 1,
          'hurting': 1,
          'somebody': 1,
          'killing': 1,
          'starts': 1,
          'leaves': 1,
          'nsince': 1,
          'new': 1,
          'everyones': 1,
          'wearing': 1,
          'disguises': 1,
          'convenient': 1,
          'plot': 1,
          'device': 1,
          'weve': 1,
          'seen': 1,
          'stabs': 1,
          'ones': 1,
          'looking': 1,
          'nat': 1,
          'least': 1,
          'characters': 1,
          'dons': 1,
          'steps': 1,
          'gene': 1,
          'shalit': 1,
          'way': 1,
          'would': 1,
          'great': 1,
          'slasher': 1,
          'nspeaking': 1,
          'weirdlooking': 1,
          'dorks': 1,
          'persist': 1,
          'entertainment': 1,
          'scene': 1,
          'trains': 1,
          'famous': 1,
          'gimmicks': 1,
          'appearance': 1,
          'magician': 1,
          'regails': 1,
          'illusions': 1,
          'disco': 1,
          'music': 1,
          'nthen': 1,
          'greatest': 1,
          'getting': 1,
          'hair': 1,
          'nfor': 1,
          'attempts': 1,
          'visual': 1,
          'style': 1,
          'substance': 1,
          'lionel': 1,
          'amtrak': 1,
          'nothing': 1,
          'really': 1,
          'worth': 1,
          'watching': 1,
          'nonly': 1,
          'diehard': 1,
          'truly': 1,
          'attempt': 1,
          'watch': 1,
          'nand': 1,
          'wonder': 1,
          'horror': 1,
          'rv': 1,
          'could': 1,
          'much': 1,
          'worse': 1,
          'mean': 1,
          'anyway': 1,
          'definitely': 1,
          'cinematic': 1,
          'equivalent': 1,
          'sleeper': 1,
          'car': 1,
          'nneg': 1}),
 Counter({'played': 4,
          'storm': 3,
          'film': 3,
          'filmmakers': 2,
          'american': 2,
          'beginning': 2,
          'eye': 2,
          'zeltser': 2,
          'one': 2,
          'gregg': 2,
          'motel': 2,
          'sheffer': 2,
          'alcoholic': 2,
          'hopper': 2,
          'boyle': 2,
          'presence': 2,
          'end': 2,
          'psycho': 2,
          'original': 2,
          'according': 1,
          'hitchcock': 1,
          'various': 1,
          'isolated': 1,
          'motels': 1,
          'diners': 1,
          'gas': 1,
          'stations': 1,
          'similar': 1,
          'establishments': 1,
          'southwest': 1,
          'rather': 1,
          'dangerous': 1,
          'place': 1,
          'weary': 1,
          'travellers': 1,
          'nat': 1,
          '1991': 1,
          'german': 1,
          'thriller': 1,
          'directed': 1,
          'yuri': 1,
          'places': 1,
          'becomes': 1,
          'deadly': 1,
          'owners': 1,
          'get': 1,
          'murdered': 1,
          'stick': 1,
          'nten': 1,
          'years': 1,
          'later': 1,
          'son': 1,
          'steven': 1,
          'bradley': 1,
          'blinded': 1,
          'incident': 1,
          'still': 1,
          'runs': 1,
          'together': 1,
          'older': 1,
          'brother': 1,
          'ray': 1,
          'craig': 1,
          'nhardly': 1,
          'anything': 1,
          'happens': 1,
          'abusive': 1,
          'william': 1,
          'gladstone': 1,
          'dennis': 1,
          'gets': 1,
          'stranded': 1,
          'attractive': 1,
          'wife': 1,
          'sandra': 1,
          'lara': 1,
          'flynn': 1,
          'ntheir': 1,
          'unexpected': 1,
          'creates': 1,
          'chain': 1,
          'events': 1,
          'would': 1,
          'bloodshed': 1,
          'nyuri': 1,
          'author': 1,
          'obviously': 1,
          'inspired': 1,
          'hitchcocks': 1,
          'chose': 1,
          'add': 1,
          'new': 1,
          'potentially': 1,
          'interesting': 1,
          'elements': 1,
          'plot': 1,
          'ninstead': 1,
          'norman': 1,
          'bates': 1,
          'two': 1,
          'brothers': 1,
          'traumatised': 1,
          'physically': 1,
          'another': 1,
          'mentally': 1,
          'nsexual': 1,
          'tension': 1,
          'beautiful': 1,
          'female': 1,
          'patron': 1,
          'shy': 1,
          'clerk': 1,
          'heightened': 1,
          'husband': 1,
          'neye': 1,
          'impressive': 1,
          'visual': 1,
          'sense': 1,
          'photography': 1,
          'karl': 1,
          'walter': 1,
          'lindenlaub': 1,
          'providing': 1,
          'lot': 1,
          'claustrophobic': 1,
          'atmosphere': 1,
          'nthe': 1,
          'acting': 1,
          'fine': 1,
          'comfortable': 1,
          'roles': 1,
          'times': 1,
          'overacts': 1,
          'routine': 1,
          'nunfortunately': 1,
          'supposed': 1,
          'intense': 1,
          'psychological': 1,
          'drama': 1,
          'deteriorates': 1,
          'cheap': 1,
          'predictable': 1,
          'slasher': 1,
          'flick': 1,
          'melodramatic': 1,
          'finale': 1,
          'nin': 1,
          'reminds': 1,
          'us': 1,
          'approach': 1,
          'cant': 1,
          'prevent': 1,
          'wasting': 1,
          'many': 1,
          'opportunities': 1,
          'n': 1,
          'special': 1,
          'note': 1,
          'profiler': 1,
          'fans': 1,
          'ally': 1,
          'walker': 1,
          'appears': 1,
          'small': 1,
          'role': 1,
          'killers': 1,
          'girlfriend': 1,
          'nneg': 1}),
 Counter({'little': 4,
          'could': 4,
          'doesnt': 4,
          'tough': 3,
          'gruff': 3,
          'performance': 3,
          'whats': 3,
          'worst': 3,
          'happen': 3,
          'nin': 3,
          'film': 3,
          'fichtner': 3,
          'borders': 3,
          'william': 2,
          'fichtners': 2,
          'hes': 2,
          'played': 2,
          'roles': 2,
          'bit': 2,
          'even': 2,
          'appearance': 2,
          'towards': 2,
          'actor': 2,
          'nis': 2,
          'stars': 2,
          'youve': 1,
          'following': 1,
          'career': 1,
          'theres': 1,
          'absolutely': 1,
          'reason': 1,
          'might': 1,
          'noticed': 1,
          'rather': 1,
          'similar': 1,
          'years': 1,
          'nlike': 1,
          'sully': 1,
          'perfect': 1,
          'storm': 1,
          'scary': 1,
          'law': 1,
          'albino': 1,
          'alligator': 1,
          'scarier': 1,
          'colonel': 1,
          'sharp': 1,
          'armageddon': 1,
          'dwayne': 1,
          'engelman': 1,
          'strange': 1,
          'days': 1,
          'brief': 1,
          'beginning': 1,
          'pearl': 1,
          'harbor': 1,
          'abusive': 1,
          'father': 1,
          'dannyhere': 1,
          'gravitates': 1,
          'hardhitting': 1,
          'nwhich': 1,
          'shock': 1,
          'delight': 1,
          'plays': 1,
          'blonde': 1,
          'haired': 1,
          'meticulously': 1,
          'dressed': 1,
          'overtly': 1,
          'effeminate': 1,
          'dogloving': 1,
          'detective': 1,
          'nas': 1,
          'alex': 1,
          'tardio': 1,
          'caricature': 1,
          'goes': 1,
          'beyond': 1,
          'nit': 1,
          'offensive': 1,
          'really': 1,
          'manage': 1,
          'nand': 1,
          'clich': 1,
          'stereotype': 1,
          'quite': 1,
          'succumb': 1,
          'definition': 1,
          'either': 1,
          'role': 1,
          'diametrically': 1,
          'opposed': 1,
          'seen': 1,
          'coming': 1,
          'isnt': 1,
          'perfectyou': 1,
          'see': 1,
          'struggling': 1,
          'times': 1,
          'concentrating': 1,
          'hard': 1,
          'look': 1,
          'swishes': 1,
          'hand': 1,
          'air': 1,
          'nuzzles': 1,
          'coiffed': 1,
          'canine': 1,
          'close': 1,
          'personalbut': 1,
          'pretty': 1,
          'damned': 1,
          'good': 1,
          'silly': 1,
          'without': 1,
          'question': 1,
          'best': 1,
          'thing': 1,
          'fact': 1,
          'fitchners': 1,
          'sudden': 1,
          'bizarre': 1,
          'jarring': 1,
          'screen': 1,
          'presence': 1,
          'thereafter': 1,
          'would': 1,
          'walked': 1,
          'mesmerizing': 1,
          'awfulness': 1,
          'poorly': 1,
          'written': 1,
          'haphazardly': 1,
          'edited': 1,
          'totally': 1,
          'unfunny': 1,
          'yes': 1,
          'martin': 1,
          'lawrence': 1,
          'danny': 1,
          'devito': 1,
          'possible': 1,
          'nmoviegoing': 1,
          'experience': 1,
          'nfichtners': 1,
          'exactly': 1,
          'save': 1,
          'like': 1,
          'im': 1,
          'recommending': 1,
          'nsolely': 1,
          'strength': 1,
          'actors': 1,
          'dramatic': 1,
          'turnaround': 1,
          'contributions': 1,
          'raise': 1,
          'films': 1,
          'rating': 1,
          'oneandahalf': 1,
          'nthumbs': 1,
          'thumbs': 1,
          'downway': 1,
          'way': 1,
          'downto': 1,
          'everyone': 1,
          'else': 1,
          'involved': 1,
          'sorry': 1,
          'mess': 1,
          'movie': 1,
          'dull': 1,
          'pedestrian': 1,
          'nonsensical': 1,
          'warrant': 1,
          'discussion': 1,
          'nneg': 1}),
 Counter({'terry': 11,
          'film': 9,
          'dream': 8,
          'characters': 8,
          'fishes': 7,
          'nick': 7,
          'films': 6,
          'character': 5,
          'upon': 4,
          'nthe': 4,
          'two': 4,
          'nicks': 4,
          'attempts': 4,
          'taylors': 3,
          'opening': 3,
          'sequence': 3,
          'eventually': 3,
          'terrys': 3,
          'watch': 3,
          'nthis': 3,
          'often': 3,
          'would': 3,
          'portions': 2,
          'rather': 2,
          'easy': 2,
          'minutes': 2,
          'first': 2,
          'provocative': 2,
          'movie': 2,
          'funny': 2,
          'latter': 2,
          'david': 2,
          'arquette': 2,
          'death': 2,
          'young': 2,
          'nnick': 2,
          'across': 2,
          'set': 2,
          'men': 2,
          'suicide': 2,
          'pills': 2,
          'find': 2,
          'dying': 2,
          'instead': 2,
          'obvious': 2,
          'wants': 2,
          'die': 2,
          'exploits': 2,
          'enjoy': 2,
          'quirky': 2,
          'least': 2,
          'one': 2,
          'protagonists': 2,
          'leading': 2,
          'audience': 2,
          'like': 2,
          'nmr': 2,
          'interesting': 2,
          'humour': 2,
          'due': 2,
          'coming': 2,
          'note': 1,
          'may': 1,
          'consider': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'nits': 1,
          'start': 1,
          'tuning': 1,
          'twenty': 1,
          'finn': 1,
          'feature': 1,
          'plodding': 1,
          'tedious': 1,
          'finally': 1,
          'pays': 1,
          'potentially': 1,
          'setup': 1,
          'nany': 1,
          'hopeful': 1,
          'expectations': 1,
          'however': 1,
          'soon': 1,
          'vanquished': 1,
          'settles': 1,
          'uninvolving': 1,
          'mismatchedbuddy': 1,
          'rarely': 1,
          'aspires': 1,
          'nearly': 1,
          'affecting': 1,
          'strives': 1,
          'half': 1,
          'central': 1,
          'depressed': 1,
          'lonely': 1,
          'voyeur': 1,
          'claims': 1,
          'despondent': 1,
          'since': 1,
          'wife': 1,
          'automobile': 1,
          'accident': 1,
          'brad': 1,
          'hunt': 1,
          'carefree': 1,
          'street': 1,
          'tough': 1,
          'later': 1,
          'revealed': 1,
          'terminally': 1,
          'ill': 1,
          'lives': 1,
          'apartment': 1,
          'building': 1,
          'spies': 1,
          'trysts': 1,
          'girlfriend': 1,
          'liz': 1,
          'kathryn': 1,
          'erbe': 1,
          'trusty': 1,
          'binoculars': 1,
          'formally': 1,
          'meet': 1,
          'bay': 1,
          'bridge': 1,
          'halfdrunk': 1,
          'precariously': 1,
          'teeters': 1,
          'edge': 1,
          'unconvincingly': 1,
          'vowing': 1,
          'casually': 1,
          'asks': 1,
          'wristwatch': 1,
          'cons': 1,
          'trade': 1,
          'bottle': 1,
          'nof': 1,
          'course': 1,
          'finds': 1,
          'end': 1,
          'presumed': 1,
          'lethal': 1,
          'effects': 1,
          'angrily': 1,
          'sets': 1,
          'order': 1,
          'retrieve': 1,
          'nlearning': 1,
          'condition': 1,
          'handful': 1,
          'weeks': 1,
          'left': 1,
          'compassion': 1,
          'kicks': 1,
          'come': 1,
          'distinctly': 1,
          'peculiar': 1,
          'arrangement': 1,
          'agree': 1,
          'bankroll': 1,
          'lifelong': 1,
          'fantasies': 1,
          'fulfill': 1,
          'wish': 1,
          'killing': 1,
          'promising': 1,
          'premise': 1,
          'mr': 1,
          'could': 1,
          'gone': 1,
          'number': 1,
          'ambitious': 1,
          'ways': 1,
          'point': 1,
          'chooses': 1,
          'capitalise': 1,
          'inversion': 1,
          'repessed': 1,
          'mournful': 1,
          'free': 1,
          'spirit': 1,
          'joie': 1,
          'de': 1,
          'vivre': 1,
          'live': 1,
          'takes': 1,
          'route': 1,
          'turning': 1,
          'typical': 1,
          'lark': 1,
          'engage': 1,
          'series': 1,
          'generally': 1,
          'dull': 1,
          'straightlaced': 1,
          'learns': 1,
          'ppreciate': 1,
          'life': 1,
          'hooked': 1,
          'bythenumbers': 1,
          'plotting': 1,
          'buddy': 1,
          'movieroad': 1,
          'redux': 1,
          'nhowever': 1,
          'hampered': 1,
          'uninspired': 1,
          'storyline': 1,
          'carry': 1,
          'story': 1,
          'helps': 1,
          'somewhat': 1,
          'empathetic': 1,
          'likeable': 1,
          'nunfortunately': 1,
          'case': 1,
          'thorougly': 1,
          'uninteresting': 1,
          'annoying': 1,
          'giving': 1,
          'little': 1,
          'sympathise': 1,
          'respective': 1,
          'plights': 1,
          'even': 1,
          'less': 1,
          'reason': 1,
          'want': 1,
          'follow': 1,
          'onscreen': 1,
          'nfar': 1,
          'romp': 1,
          'fatal': 1,
          'flaw': 1,
          'makes': 1,
          'chore': 1,
          'endure': 1,
          'playful': 1,
          'jaunt': 1,
          'undermines': 1,
          'emotional': 1,
          'resonance': 1,
          'stages': 1,
          'begin': 1,
          'bond': 1,
          'dialogue': 1,
          'sporadically': 1,
          'falls': 1,
          'flat': 1,
          'attempting': 1,
          'capture': 1,
          'clever': 1,
          'tone': 1,
          'comes': 1,
          'hopelessly': 1,
          'contrived': 1,
          'witness': 1,
          'lines': 1,
          'asked': 1,
          'something': 1,
          'pain': 1,
          'n': 1,
          'see': 1,
          'thats': 1,
          'leaves': 1,
          'room': 1,
          'questions': 1,
          'enjoys': 1,
          'inspired': 1,
          'moments': 1,
          'urn': 1,
          'scene': 1,
          'session': 1,
          'nude': 1,
          'bowling': 1,
          'policeman': 1,
          'joining': 1,
          'acid': 1,
          'trip': 1,
          'unfortunatetely': 1,
          'instances': 1,
          'far': 1,
          'part': 1,
          'registers': 1,
          'actual': 1,
          'successes': 1,
          'occurs': 1,
          'particularly': 1,
          'wrestling': 1,
          'bedridden': 1,
          'hospital': 1,
          'im': 1,
          'realising': 1,
          'intended': 1,
          'although': 1,
          'nary': 1,
          'smile': 1,
          'crept': 1,
          'lips': 1,
          'probably': 1,
          'fact': 1,
          'painfully': 1,
          'clear': 1,
          'outset': 1,
          'going': 1,
          'thwarted': 1,
          'initial': 1,
          'sapping': 1,
          'element': 1,
          'surprise': 1,
          'amusement': 1,
          'scheme': 1,
          'tricking': 1,
          'wherewithal': 1,
          'kill': 1,
          'star': 1,
          'ten': 1,
          'entire': 1,
          'clearly': 1,
          'exercise': 1,
          'exposition': 1,
          'terribly': 1,
          'diminished': 1,
          'utter': 1,
          'predictability': 1,
          'namong': 1,
          'cast': 1,
          'best': 1,
          'current': 1,
          'master': 1,
          'portrayal': 1,
          'meek': 1,
          'squirming': 1,
          'stammering': 1,
          'freshfaced': 1,
          'terrific': 1,
          'lead': 1,
          'george': 1,
          'huangs': 1,
          'swimming': 1,
          'sharks': 1,
          'gets': 1,
          'apply': 1,
          'adeptness': 1,
          'timidity': 1,
          'taylor': 1,
          'ambitiously': 1,
          'employs': 1,
          'visual': 1,
          'technique': 1,
          'urban': 1,
          'environment': 1,
          'processed': 1,
          'appear': 1,
          'extremely': 1,
          'grainy': 1,
          'heavily': 1,
          'saturated': 1,
          'opposed': 1,
          'bright': 1,
          'crisp': 1,
          'look': 1,
          'smalltown': 1,
          'scenes': 1,
          'charge': 1,
          'fishess': 1,
          'wholly': 1,
          'unempathetic': 1,
          'bit': 1,
          'odd': 1,
          'seem': 1,
          'predilection': 1,
          'unlikeable': 1,
          'indeed': 1,
          'many': 1,
          'cases': 1,
          'minority': 1,
          'supporting': 1,
          'condemned': 1,
          'interminable': 1,
          'difficult': 1,
          'audienceunfriendly': 1,
          'nature': 1,
          'nfor': 1,
          'though': 1,
          'flip': 1,
          'side': 1,
          'coin': 1,
          'hoping': 1,
          'quickly': 1,
          'conclude': 1,
          'hurry': 1,
          'nneg': 1}),
 Counter({'nthe': 5,
          'film': 4,
          'oldman': 3,
          'one': 3,
          'good': 3,
          'drama': 2,
          'violent': 2,
          'nbut': 2,
          'audience': 2,
          'raymond': 2,
          'friends': 2,
          'nraymond': 2,
          'valeries': 2,
          'billys': 2,
          'nbilly': 2,
          'nshe': 2,
          'anything': 2,
          'seems': 2,
          'half': 2,
          'scenes': 2,
          'character': 2,
          'moments': 2,
          'actors': 2,
          'thing': 2,
          'actor': 2,
          'turned': 2,
          'making': 2,
          'directoral': 1,
          'debut': 1,
          'gary': 1,
          'chose': 1,
          'highly': 1,
          'personal': 1,
          'family': 1,
          'alcoholic': 1,
          'husband': 1,
          'father': 1,
          'various': 1,
          'lives': 1,
          'affects': 1,
          'characters': 1,
          'places': 1,
          'events': 1,
          'may': 1,
          'special': 1,
          'meaning': 1,
          'writerdirector': 1,
          'left': 1,
          'dark': 1,
          'center': 1,
          'tale': 1,
          'abusive': 1,
          'ray': 1,
          'winstone': 1,
          'focuses': 1,
          'people': 1,
          'orbit': 1,
          'around': 1,
          'nhe': 1,
          'spends': 1,
          'days': 1,
          'hanging': 1,
          'pubs': 1,
          'girlie': 1,
          'bars': 1,
          'nthen': 1,
          'returns': 1,
          'home': 1,
          'pregnant': 1,
          'wife': 1,
          'valerie': 1,
          'kathy': 1,
          'burke': 1,
          'fiveyearold': 1,
          'daughter': 1,
          'demonstrates': 1,
          'tendencies': 1,
          'paranoid': 1,
          'delusions': 1,
          'early': 1,
          'accuses': 1,
          'brother': 1,
          'billy': 1,
          'charlie': 1,
          'creedmiles': 1,
          'stealing': 1,
          'proceed': 1,
          'beat': 1,
          'bite': 1,
          'bloody': 1,
          'wreck': 1,
          'least': 1,
          'problems': 1,
          'heroin': 1,
          'addict': 1,
          'downturn': 1,
          'doesnt': 1,
          'seem': 1,
          'hell': 1,
          'last': 1,
          'much': 1,
          'longer': 1,
          'mother': 1,
          'janet': 1,
          'laila': 1,
          'morse': 1,
          'raymonds': 1,
          'nemesis': 1,
          'disapproves': 1,
          'powerless': 1,
          'merely': 1,
          'struggles': 1,
          'hoping': 1,
          'children': 1,
          'survive': 1,
          'respective': 1,
          'torments': 1,
          'nif': 1,
          'description': 1,
          'bleak': 1,
          'havent': 1,
          'told': 1,
          'nthis': 1,
          'cheery': 1,
          'movie': 1,
          'time': 1,
          'downright': 1,
          'depressing': 1,
          'nwhile': 1,
          'times': 1,
          'interesting': 1,
          'watch': 1,
          'see': 1,
          'makes': 1,
          'tick': 1,
          'ever': 1,
          'simply': 1,
          'calls': 1,
          'cops': 1,
          'end': 1,
          'quite': 1,
          'worth': 1,
          'nthere': 1,
          'many': 1,
          'randomly': 1,
          'dot': 1,
          'picture': 1,
          'little': 1,
          'purpose': 1,
          'ntake': 1,
          'example': 1,
          'extended': 1,
          'sequence': 1,
          'scuzzy': 1,
          'defends': 1,
          'stray': 1,
          'puppy': 1,
          'filled': 1,
          'never': 1,
          'really': 1,
          'achieve': 1,
          'ngranted': 1,
          'genuinely': 1,
          'powerful': 1,
          'sickening': 1,
          'expression': 1,
          'catharsis': 1,
          'creator': 1,
          'us': 1,
          'fine': 1,
          'job': 1,
          'particularly': 1,
          'central': 1,
          'roles': 1,
          'writer': 1,
          'knows': 1,
          'write': 1,
          'nil': 1,
          'mouth': 1,
          'meat': 1,
          'tear': 1,
          'bad': 1,
          'director': 1,
          'theres': 1,
          'restrain': 1,
          'poor': 1,
          'choices': 1,
          'na': 1,
          'mean': 1,
          'something': 1,
          'involved': 1,
          'noldman': 1,
          'got': 1,
          'right': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'nightmare': 7,
          'first': 6,
          'nthe': 6,
          'films': 5,
          'original': 5,
          'elm': 4,
          'street': 4,
          'theatrical': 4,
          'series': 3,
          'one': 3,
          'didnt': 3,
          'much': 3,
          'horror': 3,
          'though': 3,
          'new': 3,
          'dvd': 3,
          'disc': 3,
          'set': 3,
          '1': 3,
          'included': 3,
          'commentary': 3,
          'track': 3,
          'installment': 2,
          'release': 2,
          'looking': 2,
          'since': 2,
          'second': 2,
          'time': 2,
          'story': 2,
          'robert': 2,
          'englund': 2,
          'years': 2,
          'movies': 2,
          'ending': 2,
          'end': 2,
          'get': 2,
          'nmost': 2,
          'doesnt': 2,
          'available': 2,
          'box': 2,
          'two': 2,
          'audio': 2,
          'mix': 2,
          'nalso': 2,
          'john': 2,
          'saxon': 2,
          'feature': 2,
          'trailer': 2,
          'dvdrom': 2,
          'features': 2,
          'really': 2,
          'thing': 2,
          'neveryone': 2,
          'possible': 2,
          'called': 2,
          'interviews': 2,
          'alternate': 2,
          'access': 2,
          'labyrinth': 2,
          'exposure': 1,
          'fact': 1,
          'third': 1,
          'gain': 1,
          'national': 1,
          'ni': 1,
          'see': 1,
          'later': 1,
          'nso': 1,
          'back': 1,
          'hold': 1,
          'lot': 1,
          'great': 1,
          'memories': 1,
          'think': 1,
          'initially': 1,
          'saw': 1,
          'nwatching': 1,
          'confirmed': 1,
          'overrated': 1,
          'ultimately': 1,
          'makes': 1,
          'sense': 1,
          'whatsoever': 1,
          'nyou': 1,
          'know': 1,
          'child': 1,
          'murderer': 1,
          'freddy': 1,
          'krueger': 1,
          'returns': 1,
          'grave': 1,
          'haunting': 1,
          'dreams': 1,
          'children': 1,
          'burned': 1,
          'alive': 1,
          'nthis': 1,
          'adequate': 1,
          'job': 1,
          'low': 1,
          'budget': 1,
          'theres': 1,
          'absurd': 1,
          'dialogue': 1,
          'conceptual': 1,
          'problems': 1,
          'nplus': 1,
          'understandably': 1,
          'result': 1,
          'studio': 1,
          'wanting': 1,
          'hook': 1,
          'sequel': 1,
          'renders': 1,
          'rest': 1,
          'pointless': 1,
          'nand': 1,
          'anyone': 1,
          'understand': 1,
          'happens': 1,
          'nancys': 1,
          'mother': 1,
          'ndont': 1,
          'wrong': 1,
          'nits': 1,
          'generation': 1,
          'spurned': 1,
          'away': 1,
          'classics': 1,
          'released': 1,
          'today': 1,
          'inane': 1,
          'nhorror': 1,
          'difficult': 1,
          'genre': 1,
          'pull': 1,
          'credibly': 1,
          'cut': 1,
          'na': 1,
          'line': 1,
          'home': 1,
          'video': 1,
          'nit': 1,
          'single': 1,
          'part': 1,
          'collection': 1,
          'presented': 1,
          'pan': 1,
          'scan': 1,
          'aspect': 1,
          'ratio': 1,
          '78': 1,
          'although': 1,
          'comes': 1,
          'widescreen': 1,
          'transfer': 1,
          'provided': 1,
          'digitally': 1,
          'remastered': 1,
          'includes': 1,
          'options': 1,
          'mono': 1,
          'dolby': 1,
          'digital': 1,
          '5': 1,
          'fulllength': 1,
          'writerdirector': 1,
          'wes': 1,
          'craven': 1,
          'stars': 1,
          'heather': 1,
          'langenkamp': 1,
          'director': 1,
          'photography': 1,
          'nother': 1,
          'extras': 1,
          'include': 1,
          'jump': 1,
          'im': 1,
          'sure': 1,
          'figure': 1,
          'usual': 1,
          'cast': 1,
          'crew': 1,
          'bios': 1,
          'press': 1,
          'kit': 1,
          'notably': 1,
          'leave': 1,
          'johnny': 1,
          'depp': 1,
          'nsome': 1,
          'also': 1,
          'dont': 1,
          'capabilities': 1,
          'cant': 1,
          'entertaining': 1,
          'informative': 1,
          'nothing': 1,
          'spectacular': 1,
          'note': 1,
          'special': 1,
          'edition': 1,
          'laserdisc': 1,
          'ago': 1,
          'nim': 1,
          'saying': 1,
          'thats': 1,
          'negative': 1,
          'pointing': 1,
          'seems': 1,
          'enthusiastic': 1,
          'exception': 1,
          'say': 1,
          'youll': 1,
          'forget': 1,
          'hes': 1,
          'even': 1,
          'else': 1,
          'talks': 1,
          'quietly': 1,
          'reason': 1,
          'theyre': 1,
          'commenting': 1,
          'scary': 1,
          'movie': 1,
          'need': 1,
          'stay': 1,
          'quiet': 1,
          'bonus': 1,
          'boxed': 1,
          'encyclopedia': 1,
          '45': 1,
          'minutes': 1,
          'worth': 1,
          'relating': 1,
          'endings': 1,
          'nhowever': 1,
          'easily': 1,
          'hidden': 1,
          'whats': 1,
          'might': 1,
          'possibly': 1,
          'annoying': 1,
          'ever': 1,
          'created': 1,
          'nbasically': 1,
          'interactive': 1,
          'game': 1,
          'sorts': 1,
          'wander': 1,
          'different': 1,
          'locations': 1,
          'objects': 1,
          'give': 1,
          'extra': 1,
          'little': 1,
          'snippets': 1,
          'footage': 1,
          'etc': 1,
          'somewhere': 1,
          'nfinding': 1,
          'chore': 1,
          'bore': 1,
          'nr': 1,
          'nneg': 1}),
 Counter({'batman': 7,
          'film': 5,
          'burton': 4,
          'nthe': 3,
          'penguin': 3,
          'catwoman': 3,
          'comic': 2,
          'book': 2,
          'audience': 2,
          'without': 2,
          'nif': 2,
          'looking': 2,
          'films': 2,
          'lovell': 2,
          'travers': 2,
          'mr': 2,
          'nthere': 2,
          'sequel': 2,
          'result': 2,
          'returns': 2,
          'within': 2,
          'batmans': 2,
          'gets': 2,
          'entertain': 2,
          '1989': 1,
          'tim': 1,
          'took': 1,
          'legendary': 1,
          'figure': 1,
          'turned': 1,
          'huge': 1,
          'box': 1,
          'office': 1,
          'hit': 1,
          'atmospheric': 1,
          'little': 1,
          'created': 1,
          'utterly': 1,
          'distinct': 1,
          'feeling': 1,
          'somewhere': 1,
          'noir': 1,
          'godfather': 1,
          'nwas': 1,
          'deep': 1,
          'nnope': 1,
          'nhowever': 1,
          'perfect': 1,
          'entertainment': 1,
          'ate': 1,
          'nit': 1,
          'natural': 1,
          'roger': 1,
          'ebert': 1,
          'trashed': 1,
          'writing': 1,
          'uplift': 1,
          'indiana': 1,
          'jones': 1,
          'superman': 1,
          'pictures': 1,
          'nwhich': 1,
          'true': 1,
          'tale': 1,
          'heroic': 1,
          'mans': 1,
          'escadapes': 1,
          'adventures': 1,
          'wrong': 1,
          'place': 1,
          'tom': 1,
          'sawyer': 1,
          'huckleberry': 1,
          'finn': 1,
          'nsome': 1,
          'critics': 1,
          'glenn': 1,
          'san': 1,
          'jose': 1,
          'mercury': 1,
          'news': 1,
          'peter': 1,
          'rolling': 1,
          'stone': 1,
          'realized': 1,
          'something': 1,
          'special': 1,
          'gave': 1,
          '12': 1,
          'wrote': 1,
          'nmr': 1,
          'called': 1,
          'one': 1,
          'ten': 1,
          'best': 1,
          'year': 1,
          'praise': 1,
          'deserved': 1,
          'start': 1,
          'finish': 1,
          'enthralling': 1,
          'exciting': 1,
          'superb': 1,
          'every': 1,
          'respect': 1,
          'doubt': 1,
          'would': 1,
          'directed': 1,
          'forgets': 1,
          'wants': 1,
          'fun': 1,
          'first': 1,
          'five': 1,
          'minutes': 1,
          'villains': 1,
          'hideous': 1,
          'seductive': 1,
          'take': 1,
          'epectations': 1,
          'always': 1,
          'left': 1,
          'unfulfilled': 1,
          'wanted': 1,
          'bite': 1,
          'nose': 1,
          'simply': 1,
          'mad': 1,
          'want': 1,
          'slither': 1,
          'body': 1,
          'pushed': 1,
          'building': 1,
          'ni': 1,
          'admire': 1,
          'trying': 1,
          'mess': 1,
          'nnothing': 1,
          'works': 1,
          'planned': 1,
          'fails': 1,
          'enlighten': 1,
          'nhints': 1,
          'made': 1,
          'could': 1,
          'blast': 1,
          'nalas': 1,
          'hints': 1,
          'dont': 1,
          'misunderstand': 1,
          'several': 1,
          'moments': 1,
          'cinematic': 1,
          'genuis': 1,
          'contained': 1,
          'understand': 1,
          'eachother': 1,
          'perfectly': 1,
          'word': 1,
          'subject': 1,
          'said': 1,
          'christopher': 1,
          'lloyd': 1,
          'trapped': 1,
          'giant': 1,
          'cage': 1,
          'small': 1,
          'basket': 1,
          'dropped': 1,
          'large': 1,
          'river': 1,
          'nothing': 1,
          'drawn': 1,
          'together': 1,
          'unable': 1,
          'make': 1,
          'work': 1,
          'regular': 1,
          'basis': 1,
          'na': 1,
          'weak': 1,
          'followup': 1,
          'career': 1,
          'wise': 1,
          'sometimes': 1,
          'dazzling': 1,
          'often': 1,
          'dissapointing': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'end': 8,
          'arnold': 8,
          'devil': 8,
          'days': 7,
          'one': 7,
          'schwarzenegger': 6,
          'time': 6,
          'action': 6,
          'movie': 6,
          'like': 5,
          'n': 5,
          'nif': 5,
          'jericho': 5,
          'christine': 5,
          'film': 5,
          'isnt': 5,
          'make': 5,
          'would': 4,
          'nits': 4,
          'silly': 4,
          'see': 4,
          'girl': 4,
          'satan': 4,
          'york': 4,
          'actually': 4,
          'bad': 4,
          'character': 4,
          'nthis': 4,
          'script': 4,
          'scene': 4,
          'much': 4,
          'dont': 4,
          'year': 3,
          'doesnt': 3,
          'priests': 3,
          '1999': 3,
          'nin': 3,
          'new': 3,
          'years': 3,
          'problem': 3,
          'byrne': 3,
          'attempt': 3,
          'nthere': 3,
          'hard': 3,
          'role': 3,
          'idea': 3,
          'even': 3,
          'tries': 3,
          'old': 3,
          'really': 3,
          'sense': 3,
          'bit': 3,
          'good': 3,
          'explained': 3,
          'stuff': 3,
          'come': 3,
          'gets': 3,
          'also': 3,
          'going': 3,
          'stigmata': 2,
          'worst': 2,
          'wrong': 2,
          'merely': 2,
          'incomprehensible': 2,
          'nfor': 2,
          'best': 2,
          'first': 2,
          'robin': 2,
          'nsome': 2,
          'prophecy': 2,
          'born': 2,
          'night': 2,
          'believe': 2,
          'killed': 2,
          'later': 2,
          'excop': 2,
          'security': 2,
          'guard': 2,
          'businessman': 2,
          'gabriel': 2,
          'priest': 2,
          'tunney': 2,
          'daughter': 2,
          'including': 2,
          'apparently': 2,
          'kill': 2,
          'begin': 2,
          'mistake': 2,
          'usual': 2,
          'strong': 2,
          'played': 2,
          'several': 2,
          'scenes': 2,
          'jerichos': 2,
          'another': 2,
          'nnone': 2,
          'filmmakers': 2,
          'confident': 2,
          'terminator': 2,
          'plays': 2,
          'supporting': 2,
          'nas': 2,
          'hes': 2,
          'things': 2,
          'audience': 2,
          'bible': 2,
          'starts': 2,
          'attempts': 2,
          'given': 2,
          'scared': 2,
          'matter': 2,
          'thing': 2,
          'confusing': 2,
          'utterly': 2,
          'nwhy': 2,
          'buy': 2,
          'never': 2,
          'sort': 2,
          'get': 2,
          'movies': 2,
          'rarely': 2,
          'exciting': 2,
          'predictable': 2,
          'cat': 2,
          'sequences': 2,
          'happening': 2,
          'scratching': 2,
          'head': 2,
          'cool': 2,
          'people': 2,
          'awfully': 2,
          'means': 2,
          'goes': 2,
          'violence': 2,
          'didnt': 2,
          'shouldnt': 2,
          'thought': 1,
          'religiouslyoriented': 1,
          'thriller': 1,
          'released': 1,
          'nturns': 1,
          'boring': 1,
          'selfimportant': 1,
          'completely': 1,
          'inept': 1,
          'fronts': 1,
          'endlessly': 1,
          'stupid': 1,
          'mess': 1,
          'guy': 1,
          'grew': 1,
          'watching': 1,
          'extremely': 1,
          'disconcerting': 1,
          'big': 1,
          'man': 1,
          'ended': 1,
          'recent': 1,
          'memory': 1,
          'batman': 1,
          'count': 1,
          'fun': 1,
          'major': 1,
          'stinker': 1,
          'opens': 1,
          'vatican': 1,
          'city': 1,
          '1979': 1,
          'catholic': 1,
          'observed': 1,
          'ancient': 1,
          'says': 1,
          'targeted': 1,
          'impregnation': 1,
          'impregnates': 1,
          '11': 1,
          'midnight': 1,
          'december': 1,
          '31': 1,
          'world': 1,
          'destroyed': 1,
          'pope': 1,
          'orders': 1,
          'protection': 1,
          'though': 1,
          'ought': 1,
          'fulfill': 1,
          'ntwenty': 1,
          'meet': 1,
          'cane': 1,
          'suicidal': 1,
          'drinking': 1,
          'nnow': 1,
          'working': 1,
          'hire': 1,
          'protecting': 1,
          'local': 1,
          'possessed': 1,
          'nan': 1,
          'assassination': 1,
          'crazed': 1,
          'former': 1,
          'leads': 1,
          'nrecognizing': 1,
          'elements': 1,
          'murdered': 1,
          'ownership': 1,
          'music': 1,
          'box': 1,
          'swears': 1,
          'protect': 1,
          'faction': 1,
          'looking': 1,
          'many': 1,
          'problems': 1,
          'know': 1,
          'starting': 1,
          'concept': 1,
          'ncasting': 1,
          'nschwarzenegger': 1,
          'persona': 1,
          'actor': 1,
          'putting': 1,
          'contradicts': 1,
          'personality': 1,
          'narnold': 1,
          'neither': 1,
          'dramatic': 1,
          'range': 1,
          'speaking': 1,
          'ability': 1,
          'pull': 1,
          'tormented': 1,
          'conflicting': 1,
          'emotions': 1,
          'words': 1,
          'trying': 1,
          'give': 1,
          'dimension': 1,
          'nharrison': 1,
          'ford': 1,
          'mel': 1,
          'gibson': 1,
          'bruce': 1,
          'willis': 1,
          'could': 1,
          'theyve': 1,
          'noble': 1,
          'flawed': 1,
          'heroes': 1,
          'establish': 1,
          'contemplating': 1,
          'suicide': 1,
          'crying': 1,
          'loss': 1,
          'wife': 1,
          'tempt': 1,
          'revealing': 1,
          'christines': 1,
          'location': 1,
          'offering': 1,
          'life': 1,
          'back': 1,
          'work': 1,
          'arnie': 1,
          'task': 1,
          'better': 1,
          'making': 1,
          'example': 1,
          'likes': 1,
          'excelled': 1,
          'believable': 1,
          'way': 1,
          'cast': 1,
          'hardest': 1,
          'makes': 1,
          'impact': 1,
          'prince': 1,
          'darkness': 1,
          'suave': 1,
          'nhe': 1,
          'acts': 1,
          'expect': 1,
          'act': 1,
          'undermines': 1,
          'powerful': 1,
          'villain': 1,
          'nbyrne': 1,
          'outperforms': 1,
          'every': 1,
          'together': 1,
          'aforementioned': 1,
          'temptation': 1,
          'problematic': 1,
          'causes': 1,
          'start': 1,
          'unthinkable': 1,
          'root': 1,
          'nbyrnes': 1,
          'speech': 1,
          'overrated': 1,
          'mainly': 1,
          'arnolds': 1,
          'refuting': 1,
          'mostly': 1,
          'tis': 1,
          'nvariety': 1,
          'feeble': 1,
          'win': 1,
          'nobody': 1,
          'cares': 1,
          'nkevin': 1,
          'pollack': 1,
          'sidekick': 1,
          'liven': 1,
          'comic': 1,
          'asides': 1,
          'sidekicks': 1,
          'disappears': 1,
          'hour': 1,
          'nrobin': 1,
          'except': 1,
          'look': 1,
          'fact': 1,
          'players': 1,
          'actors': 1,
          'none': 1,
          'save': 1,
          'anything': 1,
          'interesting': 1,
          'nperformances': 1,
          'aside': 1,
          'enjoy': 1,
          'starred': 1,
          'blockbuster': 1,
          'surprise': 1,
          'totally': 1,
          'ridiculous': 1,
          'coming': 1,
          'eve': 1,
          'nbecause': 1,
          'exactly': 1,
          '1000': 1,
          '666': 1,
          'turns': 1,
          'nutty': 1,
          'accidentally': 1,
          'read': 1,
          'upside': 1,
          'real': 1,
          '999': 1,
          'add': 1,
          '1': 1,
          'beginning': 1,
          'youve': 1,
          'got': 1,
          'explanation': 1,
          'youre': 1,
          'alone': 1,
          'convoluted': 1,
          'method': 1,
          'locates': 1,
          'equally': 1,
          'ludicrous': 1,
          'shes': 1,
          'lives': 1,
          'werent': 1,
          'enough': 1,
          'theres': 1,
          'plenty': 1,
          'bothersome': 1,
          'everyone': 1,
          'passes': 1,
          'street': 1,
          'comes': 1,
          'snuffing': 1,
          'drunk': 1,
          'powerless': 1,
          'nis': 1,
          'impervious': 1,
          'kind': 1,
          'bullet': 1,
          'nhow': 1,
          'cant': 1,
          'control': 1,
          'nand': 1,
          'gregorian': 1,
          'monks': 1,
          'deal': 1,
          'zones': 1,
          'prophecies': 1,
          'na': 1,
          'clumsy': 1,
          'joke': 1,
          'made': 1,
          'nusually': 1,
          'wouldnt': 1,
          'flick': 1,
          'mean': 1,
          'started': 1,
          'paradoxes': 1,
          'offered': 1,
          'plot': 1,
          'inconsistencies': 1,
          'stand': 1,
          'horror': 1,
          'clich': 1,
          'present': 1,
          'complete': 1,
          'black': 1,
          'hiding': 1,
          'cabinet': 1,
          'ever': 1,
          'find': 1,
          'nit': 1,
          'formulaic': 1,
          'possible': 1,
          'uninterested': 1,
          'close': 1,
          'eyes': 1,
          'precise': 1,
          'moment': 1,
          'boo': 1,
          'ntheir': 1,
          'predictions': 1,
          'grandiose': 1,
          'charmless': 1,
          'partially': 1,
          'care': 1,
          'characters': 1,
          'due': 1,
          'scripts': 1,
          'pathetic': 1,
          'characterization': 1,
          'setup': 1,
          'ntheres': 1,
          'thrown': 1,
          'around': 1,
          'room': 1,
          'little': 1,
          'lady': 1,
          'chuckles': 1,
          'else': 1,
          'nsupposedly': 1,
          'super': 1,
          'strength': 1,
          'virtue': 1,
          'controlled': 1,
          'sets': 1,
          'terribly': 1,
          'badly': 1,
          'framed': 1,
          'often': 1,
          'tell': 1,
          'place': 1,
          'mention': 1,
          'theyre': 1,
          'edited': 1,
          'fullon': 1,
          'mtv': 1,
          'quickcut': 1,
          'style': 1,
          'nmost': 1,
          'rather': 1,
          'saying': 1,
          'wow': 1,
          'distinctly': 1,
          'unpleasant': 1,
          'watch': 1,
          'operate': 1,
          'subtle': 1,
          'illconvincepeopletokilleachother': 1,
          'fashion': 1,
          'outlined': 1,
          'instead': 1,
          'enjoys': 1,
          'killing': 1,
          'gruesomely': 1,
          'broad': 1,
          'daylight': 1,
          'single': 1,
          'without': 1,
          'unnecessarily': 1,
          'graphic': 1,
          'odd': 1,
          'kinky': 1,
          'sexual': 1,
          'encounter': 1,
          'yet': 1,
          'supposed': 1,
          'shocking': 1,
          'throw': 1,
          'numb': 1,
          'nscenes': 1,
          'arent': 1,
          'connected': 1,
          'reasonable': 1,
          'lot': 1,
          'blown': 1,
          'nreasons': 1,
          'nto': 1,
          'hell': 1,
          'reasons': 1,
          'nlets': 1,
          'blow': 1,
          'nisnt': 1,
          'nnope': 1,
          'long': 1,
          'shot': 1,
          'thoroughly': 1,
          'unwatchable': 1,
          'dull': 1,
          'interminable': 1,
          'unrelenting': 1,
          'stupidity': 1,
          'nperhaps': 1,
          'needs': 1,
          'james': 1,
          'cameron': 1,
          'revive': 1,
          'career': 1,
          'hack': 1,
          'peter': 1,
          'hyams': 1,
          'might': 1,
          'camp': 1,
          'value': 1,
          'top': 1,
          'overly': 1,
          'pious': 1,
          'ending': 1,
          'nobodys': 1,
          'serious': 1,
          'decent': 1,
          'campy': 1,
          'taking': 1,
          'damn': 1,
          'seriously': 1,
          'put': 1,
          'cross': 1,
          'sad': 1,
          'sack': 1,
          'stands': 1,
          'gloomy': 1,
          'nneg': 1}),
 Counter({'crime': 6,
          'mafia': 5,
          'movies': 4,
          'n': 3,
          'funny': 3,
          'sleep': 3,
          'spoof': 3,
          'could': 3,
          'nbut': 3,
          'one': 3,
          'ni': 3,
          'vincenzo': 3,
          'please': 2,
          'time': 2,
          'go': 2,
          'think': 2,
          'maybe': 2,
          'lloyd': 2,
          'bridges': 2,
          'away': 2,
          'film': 2,
          'life': 2,
          'family': 2,
          'powerful': 2,
          'two': 2,
          'also': 2,
          'profanity': 2,
          'tough': 2,
          'stephen': 1,
          'post': 1,
          'appropriate': 1,
          'isnt': 1,
          'business': 1,
          'homer': 1,
          'yen': 1,
          'c': 1,
          '1998': 1,
          'non': 1,
          'particular': 1,
          'night': 1,
          'found': 1,
          'free': 1,
          'chance': 1,
          'either': 1,
          'early': 1,
          'see': 1,
          'films': 1,
          'godfather': 1,
          'goodfellas': 1,
          'casino': 1,
          'nat': 1,
          '84': 1,
          'minutes': 1,
          'length': 1,
          'thought': 1,
          'enjoy': 1,
          'laughs': 1,
          'getting': 1,
          'good': 1,
          'nights': 1,
          'account': 1,
          'laffometer': 1,
          'registered': 1,
          'grins': 1,
          'giggle': 1,
          'chortle': 1,
          'suppose': 1,
          'justify': 1,
          'homage': 1,
          'venerable': 1,
          'hollywood': 1,
          'star': 1,
          'recently': 1,
          'passed': 1,
          'whose': 1,
          'last': 1,
          'performance': 1,
          'nchronicles': 1,
          'cortinos': 1,
          'nseparated': 1,
          'young': 1,
          'escapes': 1,
          'america': 1,
          'tries': 1,
          'live': 1,
          'honest': 1,
          'fate': 1,
          'would': 1,
          'grows': 1,
          'klutzy': 1,
          'lord': 1,
          'nfollowing': 1,
          'footsteps': 1,
          'sons': 1,
          'joey': 1,
          'billy': 1,
          'burke': 1,
          'anthony': 1,
          'jay': 1,
          'mohr': 1,
          'nlike': 1,
          'siblings': 1,
          'families': 1,
          'squabble': 1,
          'power': 1,
          'future': 1,
          'fortune': 1,
          'women': 1,
          'cowritten': 1,
          'jim': 1,
          'abrahams': 1,
          'contributed': 1,
          'gutbusting': 1,
          'spoofs': 1,
          'airplane': 1,
          'naked': 1,
          'gun': 1,
          'previous': 1,
          'jokes': 1,
          'seemed': 1,
          'universally': 1,
          'understood': 1,
          'manic': 1,
          'silliness': 1,
          'work': 1,
          'nas': 1,
          'write': 1,
          'wonder': 1,
          'many': 1,
          'people': 1,
          'actually': 1,
          'seen': 1,
          'based': 1,
          'ncrime': 1,
          'general': 1,
          'contain': 1,
          'lot': 1,
          'violence': 1,
          'nits': 1,
          'genre': 1,
          'parody': 1,
          'kind': 1,
          'hoping': 1,
          'somehow': 1,
          'used': 1,
          'lords': 1,
          'say': 1,
          'decide': 1,
          'sector': 1,
          'take': 1,
          'opportunity': 1,
          'never': 1,
          'explored': 1,
          'nthere': 1,
          'moments': 1,
          'made': 1,
          'smile': 1,
          'scene': 1,
          'dancing': 1,
          'newly': 1,
          'wed': 1,
          'daughterinlaw': 1,
          'na': 1,
          'gunman': 1,
          'shoots': 1,
          'several': 1,
          'times': 1,
          'nthe': 1,
          'impact': 1,
          'bullets': 1,
          'cause': 1,
          'make': 1,
          'wild': 1,
          'contortions': 1,
          'force': 1,
          'wedding': 1,
          'band': 1,
          'change': 1,
          'music': 1,
          'styles': 1,
          'keep': 1,
          'samba': 1,
          'disco': 1,
          'macarena': 1,
          'gave': 1,
          'best': 1,
          'part': 1,
          'noh': 1,
          'well': 1,
          'means': 1,
          'little': 1,
          'earlier': 1,
          'nneg': 1}),
 Counter({'hard': 3,
          '2': 3,
          'die': 2,
          'altogether': 2,
          'original': 2,
          'line': 2,
          'nthe': 2,
          'take': 2,
          'film': 2,
          'action': 2,
          'harlin': 2,
          'never': 2,
          'ndie': 2,
          'laugh': 2,
          'unfortunate': 1,
          'fiasco': 1,
          'inferior': 1,
          'every': 1,
          'respect': 1,
          'nplace': 1,
          'blame': 1,
          'squarely': 1,
          'shoulders': 1,
          'steven': 1,
          'de': 1,
          'souza': 1,
          'doug': 1,
          'richardson': 1,
          'wrote': 1,
          'films': 1,
          'pathetic': 1,
          'screenplay': 1,
          'nevery': 1,
          'dialogue': 1,
          'reeks': 1,
          'either': 1,
          'smarmy': 1,
          'sap': 1,
          'forced': 1,
          'humor': 1,
          'plot': 1,
          'implausible': 1,
          'convoluted': 1,
          'story': 1,
          'involves': 1,
          'band': 1,
          'terrorists': 1,
          'dulles': 1,
          'airport': 1,
          'shut': 1,
          'control': 1,
          'tower': 1,
          'leaving': 1,
          'dozen': 1,
          'planes': 1,
          'stranded': 1,
          'air': 1,
          'waiting': 1,
          'land': 1,
          'zero': 1,
          'credibility': 1,
          'characters': 1,
          'come': 1,
          'cliched': 1,
          'cardboard': 1,
          'cutouts': 1,
          'nso': 1,
          'much': 1,
          'script': 1,
          'nhow': 1,
          'nwell': 1,
          'lets': 1,
          'put': 1,
          'way': 1,
          'director': 1,
          'renny': 1,
          'could': 1,
          'learn': 1,
          'things': 1,
          'john': 1,
          'mctiernan': 1,
          'directed': 1,
          'well': 1,
          'hunt': 1,
          'red': 1,
          'october': 1,
          'predatorall': 1,
          'standouts': 1,
          'hairraising': 1,
          'suspense': 1,
          'nby': 1,
          'contrast': 1,
          'doesnt': 1,
          'clue': 1,
          'comes': 1,
          'choreographing': 1,
          'consequently': 1,
          'picks': 1,
          'steam': 1,
          'harder': 1,
          'impossible': 1,
          'seriously': 1,
          'even': 1,
          'minute': 1,
          'nin': 1,
          'fact': 1,
          'movie': 1,
          'often': 1,
          'seems': 1,
          'deliberately': 1,
          'campy': 1,
          'almost': 1,
          'reaches': 1,
          'threshold': 1,
          'bad': 1,
          'good': 1,
          'nyou': 1,
          'cleared': 1,
          'takeoff': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'arnold': 6,
          'way': 6,
          'turboman': 6,
          'one': 5,
          'get': 4,
          'thought': 3,
          'jingle': 3,
          'parents': 3,
          'narnold': 3,
          'sinbad': 3,
          'find': 3,
          'toy': 3,
          'never': 3,
          'kid': 3,
          'schwarzenegger': 2,
          'kids': 2,
          'thing': 2,
          'crap': 2,
          'nand': 2,
          'nhe': 2,
          'dont': 2,
          'phil': 2,
          'hartman': 2,
          'scene': 2,
          'rare': 2,
          'christmas': 2,
          'son': 2,
          'sons': 2,
          'buy': 2,
          'back': 2,
          'doll': 2,
          'wife': 2,
          'wilson': 2,
          'like': 2,
          'minute': 2,
          'racing': 2,
          'want': 2,
          'admit': 1,
          'ni': 1,
          'knack': 1,
          'comedy': 1,
          'made': 1,
          'twins': 1,
          'true': 1,
          'lies': 1,
          'nwatching': 1,
          'wondered': 1,
          'anyone': 1,
          'ever': 1,
          'could': 1,
          'carry': 1,
          'lame': 1,
          'targeted': 1,
          'susceptible': 1,
          'nit': 1,
          'scare': 1,
          'pg13': 1,
          'kindergarten': 1,
          'cop': 1,
          'let': 1,
          'small': 1,
          'children': 1,
          'see': 1,
          'explain': 1,
          'themes': 1,
          'violence': 1,
          'alcohol': 1,
          'consumption': 1,
          'burglary': 1,
          'racism': 1,
          'child': 1,
          'molestation': 1,
          'know': 1,
          'theyll': 1,
          'burst': 1,
          'tears': 1,
          'punches': 1,
          'santas': 1,
          'elves': 1,
          'later': 1,
          'decks': 1,
          'reindeer': 1,
          'nhey': 1,
          'man': 1,
          'kick': 1,
          'easter': 1,
          'bunny': 1,
          'nuts': 1,
          'youre': 1,
          'njingle': 1,
          'formula': 1,
          'follows': 1,
          'someone': 1,
          'falls': 1,
          'ass': 1,
          'must': 1,
          'funny': 1,
          'school': 1,
          'crash': 1,
          'ground': 1,
          'times': 1,
          'special': 1,
          'olympics': 1,
          'hockey': 1,
          'team': 1,
          'dredges': 1,
          'cliche': 1,
          'less': 1,
          'believability': 1,
          'successive': 1,
          'nwhat': 1,
          'expect': 1,
          'whose': 1,
          'entire': 1,
          'premise': 1,
          'two': 1,
          'cant': 1,
          'eve': 1,
          'anything': 1,
          'course': 1,
          'crack': 1,
          'salesman': 1,
          'races': 1,
          'office': 1,
          'karate': 1,
          'game': 1,
          'missed': 1,
          'distrusts': 1,
          'hes': 1,
          'around': 1,
          'n': 1,
          'gee': 1,
          'havent': 1,
          'seen': 1,
          'absentee': 1,
          'father': 1,
          'becomes': 1,
          'convinced': 1,
          'affection': 1,
          'rita': 1,
          'breadwinner': 1,
          'hanks': 1,
          'household': 1,
          'choosing': 1,
          'roles': 1,
          'told': 1,
          'weeks': 1,
          'ago': 1,
          'nso': 1,
          'sets': 1,
          'turns': 1,
          'tickle': 1,
          'elmo': 1,
          'came': 1,
          'nlet': 1,
          'arnolds': 1,
          'totally': 1,
          'obsessed': 1,
          'character': 1,
          'unhealthy': 1,
          'beyond': 1,
          'belief': 1,
          'nwatches': 1,
          'show': 1,
          'eats': 1,
          'cereal': 1,
          'sleeps': 1,
          'freakin': 1,
          'sheets': 1,
          'nid': 1,
          'try': 1,
          'discourage': 1,
          'obsession': 1,
          'lest': 1,
          'seeing': 1,
          'think': 1,
          'wonderful': 1,
          'con': 1,
          'dad': 1,
          'nbut': 1,
          'nooooo': 1,
          'climax': 1,
          'dressed': 1,
          'parade': 1,
          'exonerating': 1,
          'wrongdoing': 1,
          'eyes': 1,
          'recognize': 1,
          'last': 1,
          'nthis': 1,
          'sad': 1,
          'gets': 1,
          'worse': 1,
          'opening': 1,
          'scenes': 1,
          'mailman': 1,
          'stampeding': 1,
          'store': 1,
          'mall': 1,
          'hooking': 1,
          'santa': 1,
          'jim': 1,
          'belushi': 1,
          'runs': 1,
          'bootleg': 1,
          'factory': 1,
          'nmost': 1,
          'painful': 1,
          'watch': 1,
          'radio': 1,
          'station': 1,
          'holds': 1,
          'cops': 1,
          'letter': 1,
          'bomb': 1,
          'beating': 1,
          'deejay': 1,
          'embarrassed': 1,
          'martin': 1,
          'mull': 1,
          'said': 1,
          'giving': 1,
          'away': 1,
          'ncapitalism': 1,
          'produced': 1,
          'pretty': 1,
          'evil': 1,
          'things': 1,
          'chia': 1,
          'pets': 1,
          'ode': 1,
          'excess': 1,
          'violent': 1,
          'consumerism': 1,
          'shameful': 1,
          'nnever': 1,
          'mind': 1,
          'subplot': 1,
          'perfect': 1,
          'neighbor': 1,
          'trying': 1,
          'seduce': 1,
          'shopping': 1,
          'cookies': 1,
          'incredible': 1,
          'main': 1,
          'plot': 1,
          'sends': 1,
          'message': 1,
          'okay': 1,
          'whatever': 1,
          'takes': 1,
          'hands': 1,
          'nmaybe': 1,
          'thats': 1,
          'house': 1,
          'mine': 1,
          'nneg': 1}),
 Counter({'movie': 13,
          'effects': 12,
          'special': 9,
          'haunting': 6,
          'story': 5,
          'overdone': 4,
          'fact': 4,
          'take': 4,
          'scary': 4,
          'nthe': 4,
          'fairly': 4,
          'good': 4,
          'nand': 4,
          'character': 4,
          'nbut': 4,
          'horror': 3,
          'bit': 3,
          'people': 3,
          'original': 3,
          'best': 3,
          'part': 3,
          'neeson': 3,
          'nhe': 3,
          'zetajones': 3,
          'play': 3,
          'liam': 3,
          'see': 3,
          'nif': 3,
          'kept': 2,
          'unseen': 2,
          'film': 2,
          'face': 2,
          'nwhile': 2,
          'visual': 2,
          'movies': 2,
          'isnt': 2,
          'thing': 2,
          'caretaker': 2,
          'great': 2,
          'seemingly': 2,
          'endless': 2,
          'one': 2,
          'characters': 2,
          'cast': 2,
          'conducting': 2,
          'way': 2,
          'mansion': 2,
          'insomnia': 2,
          'taylor': 2,
          'star': 2,
          'quite': 2,
          'probably': 2,
          'never': 2,
          'nthey': 2,
          'house': 2,
          'much': 2,
          'got': 2,
          'nin': 2,
          'cases': 2,
          'obviously': 2,
          'cool': 2,
          'nthen': 2,
          'set': 2,
          'look': 2,
          'took': 2,
          'around': 2,
          'neither': 2,
          'ni': 2,
          'role': 2,
          'want': 2,
          'blair': 2,
          'witch': 2,
          'scares': 2,
          'rent': 2,
          'arrived': 1,
          'theaters': 1,
          'hearing': 1,
          'often': 1,
          'bumps': 1,
          'night': 1,
          'far': 1,
          'scarier': 1,
          'put': 1,
          'courtesy': 1,
          'agree': 1,
          'remake': 1,
          'goes': 1,
          'overboard': 1,
          'department': 1,
          'dont': 1,
          'think': 1,
          'completely': 1,
          'blame': 1,
          'failure': 1,
          'nit': 1,
          'appears': 1,
          'failed': 1,
          'account': 1,
          'terrors': 1,
          'dust': 1,
          'bunny': 1,
          'nso': 1,
          'least': 1,
          'arent': 1,
          'going': 1,
          'end': 1,
          'frightening': 1,
          'interested': 1,
          'building': 1,
          'played': 1,
          'bruce': 1,
          'dern': 1,
          'ndern': 1,
          'always': 1,
          'even': 1,
          'though': 1,
          'may': 1,
          '3': 1,
          'minutes': 1,
          'screen': 1,
          'time': 1,
          'still': 1,
          'interesting': 1,
          'element': 1,
          'nas': 1,
          'sat': 1,
          'albeit': 1,
          'impressive': 1,
          'wishing': 1,
          'derns': 1,
          'dimensional': 1,
          'populated': 1,
          'nnever': 1,
          'sign': 1,
          'player': 1,
          'nliam': 1,
          'plays': 1,
          'scientist': 1,
          'experiments': 1,
          'fear': 1,
          'decides': 1,
          'get': 1,
          'results': 1,
          'trick': 1,
          'group': 1,
          'unstable': 1,
          'individuals': 1,
          'spend': 1,
          'days': 1,
          'haunted': 1,
          'tricks': 1,
          'participating': 1,
          'letting': 1,
          'experiment': 1,
          'also': 1,
          'fails': 1,
          'mention': 1,
          'reputation': 1,
          'strange': 1,
          'goingson': 1,
          'ncatherine': 1,
          'lili': 1,
          'owen': 1,
          'wilson': 1,
          'subjects': 1,
          'nlike': 1,
          'taylors': 1,
          'since': 1,
          'doesnt': 1,
          'marquee': 1,
          'power': 1,
          'ms': 1,
          'parts': 1,
          'seem': 1,
          'big': 1,
          'larger': 1,
          'lets': 1,
          'half': 1,
          'nill': 1,
          'admit': 1,
          'would': 1,
          'seen': 1,
          'werent': 1,
          'real': 1,
          'stars': 1,
          'combined': 1,
          'sets': 1,
          'supernatural': 1,
          'elements': 1,
          'start': 1,
          'interact': 1,
          'hapless': 1,
          'patients': 1,
          'nthere': 1,
          'really': 1,
          'njust': 1,
          'setups': 1,
          'director': 1,
          'jan': 1,
          'de': 1,
          'bont': 1,
          'showcase': 1,
          'nifty': 1,
          'many': 1,
          'likely': 1,
          'anywhere': 1,
          'thrown': 1,
          'sake': 1,
          'hitting': 1,
          'shots': 1,
          'quota': 1,
          'nat': 1,
          'point': 1,
          'things': 1,
          'ever': 1,
          'come': 1,
          'close': 1,
          'funny': 1,
          'maybe': 1,
          'nwhen': 1,
          'first': 1,
          'saw': 1,
          'impressed': 1,
          'gothic': 1,
          'short': 1,
          'tour': 1,
          'place': 1,
          'designers': 1,
          'money': 1,
          'burn': 1,
          'decided': 1,
          'idiotically': 1,
          'route': 1,
          'nthis': 1,
          'included': 1,
          'flooded': 1,
          'hallway': 1,
          'books': 1,
          'stepping': 1,
          'stones': 1,
          'mirrored': 1,
          'circular': 1,
          'room': 1,
          'revolves': 1,
          'nwhat': 1,
          'rooms': 1,
          'nabsolutely': 1,
          'none': 1,
          'minds': 1,
          'descent': 1,
          'single': 1,
          'scare': 1,
          'entire': 1,
          'actors': 1,
          'nlili': 1,
          'favorites': 1,
          'mousy': 1,
          'pathetic': 1,
          'factored': 1,
          'comes': 1,
          'average': 1,
          'slightly': 1,
          'mark': 1,
          'idea': 1,
          'basically': 1,
          'reminded': 1,
          'ringmaster': 1,
          'control': 1,
          'circus': 1,
          'nhis': 1,
          'charge': 1,
          'farce': 1,
          'quickly': 1,
          'away': 1,
          'doubt': 1,
          'lock': 1,
          'prints': 1,
          'secure': 1,
          'vault': 1,
          'along': 1,
          'copies': 1,
          'darkman': 1,
          'nzetajones': 1,
          'hot': 1,
          'words': 1,
          'bisexual': 1,
          'icing': 1,
          'cake': 1,
          'nall': 1,
          'catherine': 1,
          'nfortunately': 1,
          'something': 1,
          'well': 1,
          'size': 1,
          'obvious': 1,
          'purpose': 1,
          'eyecandy': 1,
          'nits': 1,
          'bad': 1,
          'someone': 1,
          'talents': 1,
          'wasted': 1,
          'nany': 1,
          'random': 1,
          'supermodel': 1,
          'pulled': 1,
          'fashion': 1,
          'show': 1,
          'could': 1,
          'easily': 1,
          'filled': 1,
          'antithesis': 1,
          'another': 1,
          '1999s': 1,
          'project': 1,
          'limitless': 1,
          'budget': 1,
          'relies': 1,
          'piles': 1,
          'rocks': 1,
          'nboth': 1,
          'prove': 1,
          'nicely': 1,
          'irrelevant': 1,
          'sucks': 1,
          'downhill': 1,
          'nmy': 1,
          'advice': 1,
          'looking': 1,
          'go': 1,
          'wars': 1,
          'halloween': 1,
          'interests': 1,
          'skip': 1,
          'nneg': 1}),
 Counter({'bad': 7,
          'film': 6,
          'keanu': 4,
          'us': 4,
          'futuristic': 3,
          'ending': 3,
          'nits': 3,
          'one': 3,
          'hard': 2,
          'drive': 2,
          'information': 2,
          'also': 2,
          'brain': 2,
          'acting': 2,
          'reeves': 2,
          'like': 2,
          'place': 2,
          'since': 2,
          'nsome': 2,
          'canada': 2,
          'plot': 1,
          'set': 1,
          'future': 1,
          'courier': 1,
          'uploaded': 1,
          'data': 1,
          'resides': 1,
          'head': 1,
          'must': 1,
          'escape': 1,
          'guys': 1,
          'important': 1,
          'nsince': 1,
          'overloaded': 1,
          'hes': 1,
          'racing': 1,
          'clock': 1,
          'seeps': 1,
          'kills': 1,
          'ncritique': 1,
          'incoherent': 1,
          'boring': 1,
          'oneact': 1,
          'drivel': 1,
          'suspense': 1,
          'horribly': 1,
          'unbelievable': 1,
          'environment': 1,
          'dialogue': 1,
          'careerdefining': 1,
          'hilarious': 1,
          'premise': 1,
          'interesting': 1,
          'unfortunately': 1,
          'friends': 1,
          'movie': 1,
          'turned': 1,
          'everyone': 1,
          'warned': 1,
          'films': 1,
          'makes': 1,
          'start': 1,
          'laughing': 1,
          'halfway': 1,
          'realize': 1,
          'actors': 1,
          'suck': 1,
          'location': 1,
          'shots': 1,
          'filmed': 1,
          'dark': 1,
          'junkyard': 1,
          'type': 1,
          'areas': 1,
          'would': 1,
          'believe': 1,
          'whatever': 1,
          'sets': 1,
          'look': 1,
          'well': 1,
          'nsets': 1,
          'nthere': 1,
          'absolutely': 1,
          'arc': 1,
          'story': 1,
          'nit': 1,
          'basically': 1,
          'starts': 1,
          'uploading': 1,
          'info': 1,
          'bunch': 1,
          'folks': 1,
          'chasing': 1,
          'laughable': 1,
          'puts': 1,
          'stop': 1,
          'former': 1,
          'uneventful': 1,
          'proceedings': 1,
          'ngibson': 1,
          'stick': 1,
          'writing': 1,
          'novels': 1,
          'xfiles': 1,
          'episodes': 1,
          'segue': 1,
          'paranormal': 1,
          'tv': 1,
          'series': 1,
          'much': 1,
          'entertaining': 1,
          'garbage': 1,
          'hilarities': 1,
          'include': 1,
          'dolph': 1,
          'lundgren': 1,
          'jesus': 1,
          'character': 1,
          'whose': 1,
          'supposed': 1,
          'kick': 1,
          'ass': 1,
          'henry': 1,
          'rollins': 1,
          'pumpedup': 1,
          'cyberdoctor': 1,
          'something': 1,
          'icet': 1,
          'kind': 1,
          'hobo': 1,
          'dude': 1,
          'paint': 1,
          'face': 1,
          'dont': 1,
          'ask': 1,
          'nthe': 1,
          'funniest': 1,
          'robot': 1,
          'dolphin': 1,
          'stupid': 1,
          'ghostlady': 1,
          'inside': 1,
          'computer': 1,
          'stuff': 1,
          'really': 1,
          'cares': 1,
          'point': 1,
          'nim': 1,
          'ashamed': 1,
          'say': 1,
          'shot': 1,
          'hometown': 1,
          'montreal': 1,
          'sadly': 1,
          'enough': 1,
          'cybertravelling': 1,
          'special': 1,
          'effects': 1,
          'okay': 1,
          'hence': 1,
          '210': 1,
          'overall': 1,
          'movies': 1,
          'thats': 1,
          'funny': 1,
          'watch': 1,
          'cringe': 1,
          'nthankfully': 1,
          'redeemed': 1,
          'scifi': 1,
          'career': 1,
          '1999s': 1,
          'matrix': 1,
          '7': 1,
          '510': 1,
          'yet': 1,
          'redeem': 1,
          'lack': 1,
          'talent': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'stars': 1,
          '1999': 1,
          'director': 1,
          'robert': 1,
          'longo': 1,
          'never': 1,
          'directed': 1,
          'another': 1,
          'fullfeature': 1,
          'nhmmm': 1,
          'nisnt': 1,
          'odd': 1,
          'n': 1,
          'writer': 1,
          'william': 1,
          'gibson': 1,
          'immigrated': 1,
          '1968': 1,
          'rejected': 1,
          'draft': 1,
          'nhe': 1,
          'lived': 1,
          'toronto': 1,
          'first': 1,
          '1972': 1,
          'made': 1,
          'vancouver': 1,
          'home': 1,
          'nhis': 1,
          '1984': 1,
          'novel': 1,
          'neuromancer': 1,
          'sequels': 1,
          '1986s': 1,
          'count': 1,
          'zero': 1,
          '1988s': 1,
          'mona': 1,
          'lisa': 1,
          'overdrive': 1,
          'generally': 1,
          'considered': 1,
          'definitive': 1,
          'works': 1,
          'cyberpunk': 1,
          'sciencefiction': 1,
          'subgenre': 1,
          'nthis': 1,
          'garnered': 1,
          'nomination': 1,
          'worst': 1,
          'actor': 1,
          'category': 1,
          '1996': 1,
          'razzie': 1,
          'awards': 1,
          'nneg': 1}),
 Counter({'seagal': 14,
          'man': 5,
          'n': 5,
          'cole': 5,
          'dialogue': 4,
          'thing': 4,
          'glimmer': 4,
          'wayans': 4,
          'fan': 3,
          'depend': 3,
          'films': 3,
          'new': 3,
          'homicide': 3,
          'campbell': 3,
          'know': 3,
          'steven': 2,
          'ni': 2,
          'say': 2,
          'probably': 2,
          'film': 2,
          'formula': 2,
          'always': 2,
          'minimal': 2,
          'well': 2,
          'unless': 2,
          'since': 2,
          'nnot': 2,
          'bad': 2,
          'black': 2,
          'hes': 2,
          'attempts': 2,
          'banter': 2,
          'also': 2,
          'lot': 2,
          'nas': 2,
          'keenen': 2,
          'ivory': 2,
          'former': 2,
          'cant': 2,
          'someone': 2,
          'used': 2,
          'nthe': 2,
          'plot': 2,
          'pretty': 2,
          'stuff': 2,
          'nits': 2,
          'theres': 2,
          'movie': 2,
          'best': 2,
          'seagals': 2,
          'part': 2,
          'seague': 2,
          'much': 2,
          'knew': 2,
          'watch': 2,
          'nwe': 2,
          'little': 2,
          'try': 2,
          'wait': 2,
          'still': 2,
          'mufti': 1,
          'splenetik': 1,
          'isnt': 1,
          'real': 1,
          'name': 1,
          'need': 1,
          'explain': 1,
          'went': 1,
          'expecting': 1,
          'great': 1,
          'things': 1,
          'nany': 1,
          'proud': 1,
          'worth': 1,
          'beans': 1,
          'tell': 1,
          'something': 1,
          'nseagal': 1,
          'counted': 1,
          'heaps': 1,
          'expendable': 1,
          'baddies': 1,
          'extemely': 1,
          'crunchable': 1,
          'bones': 1,
          'hear': 1,
          'limbtwisting': 1,
          'rarely': 1,
          'female': 1,
          'colead': 1,
          'sight': 1,
          'reallife': 1,
          'modelwife': 1,
          'hasnt': 1,
          'worked': 1,
          'weird': 1,
          'science': 1,
          'usually': 1,
          'worst': 1,
          'possible': 1,
          'titles': 1,
          'imagine': 1,
          'mention': 1,
          'straightforward': 1,
          'plots': 1,
          'generally': 1,
          'allround': 1,
          'mr': 1,
          'implacable': 1,
          'leatherface': 1,
          'outfit': 1,
          'nico': 1,
          'hands': 1,
          'sharp': 1,
          'nimble': 1,
          'knives': 1,
          'stoic': 1,
          'sir': 1,
          'petrified': 1,
          'ponytail': 1,
          'duke': 1,
          'dull': 1,
          'nin': 1,
          'breaks': 1,
          'gets': 1,
          'sidekick': 1,
          'puts': 1,
          'vest': 1,
          'nhes': 1,
          'put': 1,
          'quite': 1,
          'weight': 1,
          'nsmall': 1,
          'potatoes': 1,
          'may': 1,
          'able': 1,
          'accessorize': 1,
          'wants': 1,
          'damnit': 1,
          'aint': 1,
          'broke': 1,
          'fix': 1,
          'disappointed': 1,
          'persons': 1,
          'dashed': 1,
          'expectations': 1,
          'later': 1,
          'jack': 1,
          'detective': 1,
          'questionable': 1,
          'past': 1,
          'nwhile': 1,
          'partner': 1,
          'played': 1,
          'investigating': 1,
          'series': 1,
          'ritual': 1,
          'killings': 1,
          'becomes': 1,
          'suspect': 1,
          'especially': 1,
          'background': 1,
          'check': 1,
          'run': 1,
          'reveals': 1,
          'practically': 1,
          'nothing': 1,
          'nit': 1,
          'turns': 1,
          'trained': 1,
          'government': 1,
          'assassin': 1,
          'trust': 1,
          'detectives': 1,
          'victims': 1,
          'catch': 1,
          'glimpse': 1,
          'jungle': 1,
          'pounced': 1,
          'hence': 1,
          'nan': 1,
          'increasingly': 1,
          'fishy': 1,
          'investigation': 1,
          'present': 1,
          'soon': 1,
          'leads': 1,
          'gradual': 1,
          'uncovering': 1,
          'larger': 1,
          'threatening': 1,
          'conspiracy': 1,
          'involves': 1,
          'crooked': 1,
          'businessman': 1,
          'bob': 1,
          'gunton': 1,
          'coles': 1,
          'cia': 1,
          'boss': 1,
          'brian': 1,
          'cox': 1,
          'deals': 1,
          'involving': 1,
          'chemical': 1,
          'weapons': 1,
          'standard': 1,
          'drawing': 1,
          'elements': 1,
          'hotter': 1,
          'year': 1,
          'eg': 1,
          'se7en': 1,
          'changes': 1,
          'disappoint': 1,
          'nfor': 1,
          'example': 1,
          'although': 1,
          'fair': 1,
          'amount': 1,
          'violence': 1,
          'disastrous': 1,
          'pairing': 1,
          'known': 1,
          'tribe': 1,
          'many': 1,
          'exactly': 1,
          'televisions': 1,
          'living': 1,
          'colour': 1,
          'nwayans': 1,
          'plays': 1,
          'whiney': 1,
          'straightman': 1,
          'beadadorned': 1,
          'brocadedraped': 1,
          'keeping': 1,
          'crazy': 1,
          'wasted': 1,
          'zest': 1,
          'confines': 1,
          'bemoaning': 1,
          'partners': 1,
          'eccentric': 1,
          'habits': 1,
          'chemistry': 1,
          'two': 1,
          'wooden': 1,
          'comebacks': 1,
          'make': 1,
          'painful': 1,
          'watching': 1,
          'na': 1,
          'cook': 1,
          'seige': 1,
          '2': 1,
          'buddhist': 1,
          'speaks': 1,
          'chinese': 1,
          'wears': 1,
          'prayer': 1,
          'beads': 1,
          'intricate': 1,
          'silk': 1,
          'jackets': 1,
          'normal': 1,
          'ensemble': 1,
          'nhe': 1,
          'chants': 1,
          'refuses': 1,
          'fight': 1,
          'truly': 1,
          'provoked': 1,
          'introduces': 1,
          'powdered': 1,
          'deer': 1,
          'penis': 1,
          'cure': 1,
          'allergies': 1,
          'nagain': 1,
          'benign': 1,
          'trite': 1,
          'device': 1,
          'except': 1,
          'fact': 1,
          'character': 1,
          'traits': 1,
          'require': 1,
          'speak': 1,
          'usual': 1,
          'nheck': 1,
          'deliver': 1,
          'punchlines': 1,
          'carry': 1,
          'steady': 1,
          'conversation': 1,
          'large': 1,
          'nis': 1,
          'ask': 1,
          'ntoo': 1,
          'nseagals': 1,
          'characteristic': 1,
          'purpose': 1,
          'already': 1,
          'complicated': 1,
          'world': 1,
          'movies': 1,
          'crunchily': 1,
          'snap': 1,
          'guy': 1,
          'appendages': 1,
          'silently': 1,
          'alone': 1,
          'snappy': 1,
          'oneliners': 1,
          'arnold': 1,
          'stallone': 1,
          'show': 1,
          'act': 1,
          'less': 1,
          'think': 1,
          'nno': 1,
          'kindergarten': 1,
          'cop': 1,
          'oscar': 1,
          'simple': 1,
          'unadulterated': 1,
          'deathblows': 1,
          'nthats': 1,
          'really': 1,
          'must': 1,
          'started': 1,
          'likeminded': 1,
          'fans': 1,
          'wanted': 1,
          'streamed': 1,
          'knowing': 1,
          'never': 1,
          'universe': 1,
          'would': 1,
          'ever': 1,
          'see': 1,
          'anything': 1,
          'else': 1,
          'trusted': 1,
          'got': 1,
          'nnow': 1,
          'betrayal': 1,
          'dont': 1,
          'another': 1,
          'without': 1,
          'niggling': 1,
          'doubt': 1,
          'going': 1,
          'funny': 1,
          'nill': 1,
          'wont': 1,
          'easy': 1,
          'nif': 1,
          'havent': 1,
          'watched': 1,
          'yet': 1,
          'might': 1,
          'want': 1,
          'video': 1,
          'come': 1,
          'easier': 1,
          'fast': 1,
          'forward': 1,
          'parts': 1,
          'linger': 1,
          'action': 1,
          'sequences': 1,
          'nafter': 1,
          'fantasies': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'tv2': 1,
          'broadcast': 1,
          'creaky': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'good': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nmufti': 1,
          'spelenetik': 1,
          'neverybody': 1,
          'makes': 1,
          'mistakes': 1,
          'awhile': 1,
          'nneg': 1}),
 Counter({'warrior': 4,
          'eating': 4,
          'nthe': 4,
          'story': 4,
          '13th': 3,
          'man': 3,
          'vikings': 3,
          'scenes': 3,
          'comes': 2,
          'witch': 2,
          'flesh': 2,
          'men': 2,
          'ahmed': 2,
          'land': 2,
          'becomes': 2,
          'chosen': 2,
          'well': 2,
          'basically': 2,
          'also': 2,
          'film': 2,
          'dont': 2,
          'nit': 2,
          'mctiernan': 2,
          'shelf': 2,
          'end': 1,
          'summer': 1,
          'weve': 1,
          'already': 1,
          'experienced': 1,
          'sharks': 1,
          'deep': 1,
          'blue': 1,
          'sea': 1,
          'crocodiles': 1,
          'lake': 1,
          'placid': 1,
          'even': 1,
          'hunting': 1,
          'blair': 1,
          'project': 1,
          'nnow': 1,
          'presents': 1,
          'tribe': 1,
          'believe': 1,
          'bears': 1,
          'thats': 1,
          'want': 1,
          'call': 1,
          'follows': 1,
          'ibn': 1,
          'fahdlan': 1,
          'antonio': 1,
          'banderas': 1,
          'arabian': 1,
          'poet': 1,
          'falls': 1,
          'love': 1,
          'kings': 1,
          'wife': 1,
          'banished': 1,
          'home': 1,
          'nhe': 1,
          'travels': 1,
          'ambassador': 1,
          'neventually': 1,
          'called': 1,
          'upon': 1,
          'protect': 1,
          'people': 1,
          'village': 1,
          'hunted': 1,
          'nthirteen': 1,
          'warriors': 1,
          'go': 1,
          'mission': 1,
          'guessed': 1,
          'thirteenth': 1,
          'nhes': 1,
          'first': 1,
          'accepted': 1,
          'movie': 1,
          'advances': 1,
          'hell': 1,
          'prove': 1,
          'battlefield': 1,
          'nthats': 1,
          'entire': 1,
          'plot': 1,
          'nthere': 1,
          'romantic': 1,
          'subplot': 1,
          'badly': 1,
          'mishandled': 1,
          'one': 1,
          'assumes': 1,
          'drastically': 1,
          'cut': 1,
          'begin': 1,
          'wonder': 1,
          'filmmakers': 1,
          'didnt': 1,
          'edit': 1,
          'attaining': 1,
          'part': 1,
          'ninstead': 1,
          'chose': 1,
          'leave': 1,
          'enough': 1,
          'annoy': 1,
          'viewer': 1,
          'non': 1,
          'stop': 1,
          'action': 1,
          'pauses': 1,
          'tries': 1,
          'develop': 1,
          'laughing': 1,
          'stock': 1,
          'battle': 1,
          'although': 1,
          'choreographed': 1,
          'involving': 1,
          'least': 1,
          'bit': 1,
          'exciting': 1,
          'nwe': 1,
          'get': 1,
          'know': 1,
          'characters': 1,
          'care': 1,
          'lives': 1,
          'dies': 1,
          'wants': 1,
          'beowolf': 1,
          'across': 1,
          'failed': 1,
          'actionadventure': 1,
          'aspiring': 1,
          'epic': 1,
          'proportions': 1,
          'achieving': 1,
          'levels': 1,
          'directed': 1,
          'john': 1,
          'whos': 1,
          'thomas': 1,
          'crown': 1,
          'affair': 1,
          'playing': 1,
          'theaters': 1,
          'currently': 1,
          'nand': 1,
          'worked': 1,
          'simultaneously': 1,
          'films': 1,
          'placed': 1,
          'long': 1,
          'studio': 1,
          'waiting': 1,
          'time': 1,
          'dump': 1,
          'audiences': 1,
          'belongs': 1,
          'back': 1,
          'nneg': 1}),
 Counter({'shandling': 6,
          'bening': 6,
          'nthe': 6,
          'like': 5,
          'fact': 5,
          'time': 5,
          'isnt': 5,
          'movie': 4,
          'planet': 4,
          'funny': 4,
          'annette': 4,
          'john': 4,
          'goodman': 4,
          'shandlings': 4,
          'nit': 4,
          'character': 4,
          'mike': 3,
          'nichols': 3,
          'ni': 3,
          'feel': 3,
          'nim': 3,
          'next': 3,
          'got': 3,
          'make': 3,
          'garry': 3,
          'greg': 3,
          'kinnear': 3,
          'ngarry': 3,
          'nand': 3,
          'cringeinducing': 3,
          'one': 3,
          'species': 3,
          'penis': 3,
          'since': 3,
          'never': 3,
          'falls': 3,
          'watch': 2,
          'cant': 2,
          'help': 2,
          'nits': 2,
          'nthis': 2,
          'nthing': 2,
          'see': 2,
          'fault': 2,
          'know': 2,
          'doesnt': 2,
          'give': 2,
          'list': 2,
          'names': 2,
          'together': 2,
          'instantly': 2,
          'come': 2,
          'weve': 2,
          'man': 2,
          'even': 2,
          'show': 2,
          'away': 2,
          'american': 2,
          'beauty': 2,
          'nwhat': 2,
          'comedy': 2,
          'whole': 2,
          'nbut': 2,
          'unfunny': 2,
          'moments': 2,
          'uninsightful': 2,
          'end': 2,
          'alien': 2,
          'males': 2,
          'series': 2,
          'female': 2,
          'theyre': 2,
          'turn': 2,
          'winner': 2,
          'long': 2,
          'writers': 2,
          'frequently': 2,
          'nif': 2,
          'meets': 2,
          'played': 2,
          'turns': 2,
          'aa': 2,
          'meetings': 2,
          'nwhen': 2,
          'kinnears': 2,
          'seen': 2,
          'love': 2,
          'baby': 2,
          'day': 2,
          'get': 2,
          'supposed': 2,
          'ntheres': 2,
          'comes': 2,
          'nha': 2,
          'nlets': 2,
          'subplot': 2,
          'movies': 2,
          'lets': 2,
          'everyone': 1,
          'looking': 1,
          'audience': 1,
          'gazing': 1,
          'back': 1,
          'head': 1,
          'darkness': 1,
          'eyes': 1,
          'shooting': 1,
          'daggers': 1,
          'quietly': 1,
          'blaming': 1,
          'paid': 1,
          'hardearned': 1,
          'money': 1,
          'spend': 1,
          'watching': 1,
          'shift': 1,
          'uncomfortably': 1,
          'seat': 1,
          'reminded': 1,
          'pair': 1,
          'second': 1,
          'thirdrate': 1,
          'celebrities': 1,
          'engaging': 1,
          'teleprompted': 1,
          'conversation': 1,
          'introduce': 1,
          'blockbuster': 1,
          'award': 1,
          'dammit': 1,
          'someones': 1,
          'ta': 1,
          'embarrassed': 1,
          'look': 1,
          'anyone': 1,
          'screen': 1,
          'ready': 1,
          'take': 1,
          'blame': 1,
          'people': 1,
          'gon': 1,
          'na': 1,
          'ndo': 1,
          'shudder': 1,
          'answer': 1,
          'would': 1,
          'today': 1,
          'quite': 1,
          'talented': 1,
          'individuals': 1,
          'ngranted': 1,
          'flintstones': 1,
          'turned': 1,
          'lessthanlackluster': 1,
          'leading': 1,
          'performances': 1,
          'certified': 1,
          'failures': 1,
          'smile': 1,
          'theyve': 1,
          'proven': 1,
          'power': 1,
          'excellent': 1,
          'supporting': 1,
          'players': 1,
          'two': 1,
          'television': 1,
          'classics': 1,
          'belt': 1,
          'ingenious': 1,
          'little': 1,
          'larry': 1,
          'sanders': 1,
          'gods': 1,
          'sake': 1,
          'directed': 1,
          'graduate': 1,
          'walking': 1,
          'nso': 1,
          'explain': 1,
          'npurports': 1,
          'exploring': 1,
          'relationship': 1,
          'men': 1,
          'women': 1,
          'satirizing': 1,
          'poppsychology': 1,
          'marsvenus': 1,
          'phenomenon': 1,
          'winds': 1,
          'collection': 1,
          'coupled': 1,
          'result': 1,
          'unsurprisingly': 1,
          'thoroughly': 1,
          'icky': 1,
          'embarrassment': 1,
          'plays': 1,
          'populated': 1,
          'technologically': 1,
          'advanced': 1,
          'emotionally': 1,
          'vacant': 1,
          'reproduce': 1,
          'cloning': 1,
          'course': 1,
          'nhis': 1,
          'leaders': 1,
          'put': 1,
          'select': 1,
          'group': 1,
          'tests': 1,
          'designed': 1,
          'determine': 1,
          'fit': 1,
          'fly': 1,
          'earth': 1,
          'find': 1,
          'impregnate': 1,
          'ntheyre': 1,
          'taught': 1,
          'pretend': 1,
          'listening': 1,
          'nodding': 1,
          'saying': 1,
          'uhhuh': 1,
          'compliment': 1,
          'shoes': 1,
          'nimagine': 1,
          'delighted': 1,
          'surprise': 1,
          'oh': 1,
          'heavens': 1,
          'carefully': 1,
          'practiced': 1,
          'tactics': 1,
          'fail': 1,
          'miserably': 1,
          'producing': 1,
          'comedic': 1,
          'results': 1,
          'lucky': 1,
          'fitted': 1,
          'generations': 1,
          'disuse': 1,
          'shrunk': 1,
          'existence': 1,
          'restrain': 1,
          'mentioning': 1,
          'implausibility': 1,
          'scenario': 1,
          'population': 1,
          'stopped': 1,
          'evolving': 1,
          'due': 1,
          'clones': 1,
          'nwhoops': 1,
          'late': 1,
          'aroused': 1,
          'tends': 1,
          'humming': 1,
          'noise': 1,
          'strapped': 1,
          'ideas': 1,
          'tend': 1,
          'source': 1,
          'first': 1,
          'eighth': 1,
          'eighteenth': 1,
          'anything': 1,
          'made': 1,
          'vaguely': 1,
          'selfconscious': 1,
          'coworker': 1,
          'bank': 1,
          'generic': 1,
          'unlikable': 1,
          'scumbag': 1,
          'nhes': 1,
          'meant': 1,
          'fill': 1,
          'part': 1,
          'unfortunate': 1,
          'role': 1,
          'model': 1,
          'hes': 1,
          'flatly': 1,
          'drawn': 1,
          'quickly': 1,
          'toss': 1,
          'aside': 1,
          'nkinnears': 1,
          'scumbagginess': 1,
          'demonstrated': 1,
          'claims': 1,
          'peoples': 1,
          'work': 1,
          'worm': 1,
          'way': 1,
          'vice': 1,
          'presidents': 1,
          'position': 1,
          'goes': 1,
          'pick': 1,
          'chicks': 1,
          'nwow': 1,
          'magnificent': 1,
          'bastard': 1,
          'nnearly': 1,
          'every': 1,
          'sort': 1,
          'sexdriven': 1,
          'slimeball': 1,
          'wife': 1,
          'walks': 1,
          'office': 1,
          'single': 1,
          'guy': 1,
          'trip': 1,
          'bump': 1,
          'wall': 1,
          'otherwise': 1,
          'pratfall': 1,
          'theyd': 1,
          'woman': 1,
          'guys': 1,
          'arent': 1,
          'particularly': 1,
          'slimeballs': 1,
          'goodmans': 1,
          'detective': 1,
          'simply': 1,
          'uncommunicative': 1,
          'workaholics': 1,
          'nshandling': 1,
          'inevitably': 1,
          'prove': 1,
          'knew': 1,
          'existed': 1,
          'nshandlings': 1,
          'mission': 1,
          'reveals': 1,
          'desires': 1,
          'nthey': 1,
          'married': 1,
          'nyup': 1,
          'ncuz': 1,
          'ya': 1,
          'wants': 1,
          'nbenings': 1,
          'perhaps': 1,
          'difficult': 1,
          'especially': 1,
          'seeing': 1,
          'apart': 1,
          'seams': 1,
          'effectively': 1,
          'representing': 1,
          'woe': 1,
          'say': 1,
          'nshes': 1,
          'unfathomably': 1,
          'insecure': 1,
          'succumbs': 1,
          'easily': 1,
          'lines': 1,
          'lies': 1,
          'borders': 1,
          'tragic': 1,
          'point': 1,
          'thinking': 1,
          'may': 1,
          'able': 1,
          'bear': 1,
          'children': 1,
          'learns': 1,
          'indeed': 1,
          'pregnant': 1,
          'home': 1,
          'nearly': 1,
          'cheating': 1,
          'strolls': 1,
          'kitchen': 1,
          'sings': 1,
          'high': 1,
          'hopes': 1,
          'uplifting': 1,
          'ant': 1,
          'rubber': 1,
          'tree': 1,
          'plant': 1,
          'song': 1,
          'deliver': 1,
          'news': 1,
          'says': 1,
          'leave': 1,
          'nwere': 1,
          'empathize': 1,
          'discovery': 1,
          'feeling': 1,
          'guilt': 1,
          'instead': 1,
          'wanted': 1,
          'weep': 1,
          'placing': 1,
          'entire': 1,
          'life': 1,
          'soul': 1,
          'firmly': 1,
          'lap': 1,
          'great': 1,
          'big': 1,
          'nothing': 1,
          'eventually': 1,
          'nfor': 1,
          'real': 1,
          'suppose': 1,
          'though': 1,
          'im': 1,
          'sure': 1,
          'exactly': 1,
          'prompted': 1,
          'nwhats': 1,
          'message': 1,
          'derive': 1,
          'nmen': 1,
          'liars': 1,
          'inherently': 1,
          'empty': 1,
          'creatures': 1,
          'hang': 1,
          'around': 1,
          'enough': 1,
          'nwell': 1,
          'maybe': 1,
          'something': 1,
          'click': 1,
          'ha': 1,
          'thankful': 1,
          'broad': 1,
          'cynicism': 1,
          'allowed': 1,
          'run': 1,
          'rampant': 1,
          'join': 1,
          'hands': 1,
          'pray': 1,
          'folks': 1,
          'also': 1,
          'involving': 1,
          'airline': 1,
          'incident': 1,
          'investigator': 1,
          'wades': 1,
          'bog': 1,
          'stupidity': 1,
          'ngoodman': 1,
          'astoundingly': 1,
          'implausible': 1,
          'realizations': 1,
          'puts': 1,
          'another': 1,
          'world': 1,
          'magic': 1,
          'vibrating': 1,
          'makings': 1,
          'discovered': 1,
          'thankfully': 1,
          'inevitable': 1,
          'hackneyed': 1,
          'fruition': 1,
          'ninstead': 1,
          'dangles': 1,
          'limply': 1,
          'branch': 1,
          'withers': 1,
          'nfurther': 1,
          'proof': 1,
          'stick': 1,
          'coen': 1,
          'brothers': 1,
          'dwell': 1,
          'longer': 1,
          'ive': 1,
          'already': 1,
          'wasted': 1,
          'plenty': 1,
          'move': 1,
          'forget': 1,
          'lives': 1,
          'us': 1,
          'things': 1,
          'happy': 1,
          'note': 1,
          'ncongratuations': 1,
          'go': 1,
          'weeks': 1,
          'title': 1,
          'naward': 1,
          'delivering': 1,
          'awkward': 1,
          'line': 1,
          'dialog': 1,
          'containing': 1,
          'name': 1,
          'nneg': 1}),
 Counter({'julie': 7,
          'last': 6,
          'summer': 5,
          'know': 4,
          'like': 3,
          'movies': 3,
          'ni': 3,
          'still': 3,
          'cant': 3,
          'n': 3,
          'horror': 2,
          'many': 2,
          'lovehewitt': 2,
          'movie': 2,
          'willis': 2,
          'run': 2,
          'trip': 2,
          'karla': 2,
          'boyfriend': 2,
          'heres': 2,
          'gets': 2,
          'think': 2,
          'really': 2,
          'got': 2,
          'next': 2,
          'one': 2,
          'filmmaker': 2,
          'seems': 1,
          'im': 1,
          'reviewing': 1,
          'cheeseball': 1,
          'monthly': 1,
          'basis': 1,
          'nscream': 1,
          'revitalized': 1,
          'genre': 1,
          'studios': 1,
          'intent': 1,
          'burying': 1,
          'ground': 1,
          'againthe': 1,
          'serial': 1,
          'killers': 1,
          'new': 1,
          'slasher': 1,
          'nothing': 1,
          'sony': 1,
          'miramax': 1,
          'relentless': 1,
          'department': 1,
          'terrible': 1,
          'film': 1,
          'respects': 1,
          'wake': 1,
          'stupefyingly': 1,
          'bad': 1,
          'urban': 1,
          'legend': 1,
          'citizen': 1,
          'hook': 1,
          'njennifer': 1,
          'reprises': 1,
          'role': 1,
          'buxom': 1,
          'teenager': 1,
          'jameswho': 1,
          'apparently': 1,
          'escaped': 1,
          'certain': 1,
          'doom': 1,
          'end': 1,
          'waking': 1,
          'nup': 1,
          'nshe': 1,
          'lives': 1,
          'fear': 1,
          'ben': 1,
          'vengeful': 1,
          'fishermanvictim': 1,
          'hit': 1,
          'pals': 1,
          'nparanoid': 1,
          'beat': 1,
          'accepts': 1,
          'free': 1,
          'bahamas': 1,
          'friend': 1,
          'norwood': 1,
          'winner': 1,
          'local': 1,
          'radio': 1,
          'stations': 1,
          '4th': 1,
          'july': 1,
          'getaway': 1,
          'giveaway': 1,
          'nbikiniready': 1,
          'invites': 1,
          'ray': 1,
          'prinze': 1,
          'jr': 1,
          'whoand': 1,
          'biggest': 1,
          'mysteryturns': 1,
          'changes': 1,
          'mind': 1,
          'plans': 1,
          'surprise': 1,
          'takeoff': 1,
          'nuntil': 1,
          'roadside': 1,
          'visit': 1,
          'captain': 1,
          'hellliner': 1,
          'nunaware': 1,
          'feeling': 1,
          'shunned': 1,
          'goes': 1,
          'vacation': 1,
          'anyway': 1,
          'karlas': 1,
          'pfeiffer': 1,
          'matthew': 1,
          'settle': 1,
          'real': 1,
          'boynextdoor': 1,
          'type': 1,
          'whos': 1,
          'sweet': 1,
          'nto': 1,
          'make': 1,
          'long': 1,
          'story': 1,
          'shorti': 1,
          'believe': 1,
          'took': 1,
          'paragraph': 1,
          'describe': 1,
          'setup': 1,
          'gratuitous': 1,
          'sequelthe': 1,
          'disaster': 1,
          'nnot': 1,
          'storm': 1,
          'season': 1,
          'desk': 1,
          'clerk': 1,
          'frighteners': 1,
          'jeffrey': 1,
          'combs': 1,
          'jerk': 1,
          'island': 1,
          'residents': 1,
          'heroic': 1,
          'vacationers': 1,
          'getting': 1,
          'picked': 1,
          'resourceful': 1,
          'onebyone': 1,
          'karaoke': 1,
          'machine': 1,
          'isnt': 1,
          'working': 1,
          'properly': 1,
          'killing': 1,
          'hard': 1,
          'ntry': 1,
          'reprogramming': 1,
          'laserdisc': 1,
          'gloria': 1,
          'gaynors': 1,
          'survive': 1,
          'contains': 1,
          'lyric': 1,
          'nall': 1,
          'lostray': 1,
          'way': 1,
          'save': 1,
          'day': 1,
          'helpful': 1,
          'witch': 1,
          'doctor': 1,
          'saying': 1,
          'little': 1,
          'prayers': 1,
          'co': 1,
          'nthis': 1,
          'picture': 1,
          'breasts': 1,
          'two': 1,
          'njulie': 1,
          'good': 1,
          'heroine': 1,
          'never': 1,
          'shirt': 1,
          'collar': 1,
          'always': 1,
          'wears': 1,
          'white': 1,
          'rain': 1,
          'keeps': 1,
          'sexy': 1,
          'underwear': 1,
          'case': 1,
          'sudden': 1,
          'desire': 1,
          'tan': 1,
          'nbased': 1,
          'hormonal': 1,
          'charge': 1,
          'imagine': 1,
          'ten': 1,
          'year': 1,
          'old': 1,
          'boy': 1,
          'sat': 1,
          'mehe': 1,
          'jennifer': 1,
          'generation': 1,
          'heather': 1,
          'langenkamp': 1,
          'nlucky': 1,
          'bastard': 1,
          'didnt': 1,
          'say': 1,
          'liked': 1,
          'continuation': 1,
          'less': 1,
          'nthe': 1,
          'pacing': 1,
          'films': 1,
          'languidhow': 1,
          'much': 1,
          'time': 1,
          'passes': 1,
          'neither': 1,
          'murder': 1,
          'character': 1,
          'development': 1,
          'better': 1,
          'sense': 1,
          'humour': 1,
          'first': 1,
          'though': 1,
          'least': 1,
          'explains': 1,
          'away': 1,
          'williss': 1,
          'random': 1,
          'selection': 1,
          'victims': 1,
          'dont': 1,
          'hotel': 1,
          'maid': 1,
          'stoner': 1,
          'dude': 1,
          'slightest': 1,
          'idea': 1,
          'ndirector': 1,
          'cannon': 1,
          'judge': 1,
          'dredd': 1,
          'competent': 1,
          'particularly': 1,
          'imaginative': 1,
          'oneif': 1,
          'part': 1,
          'three': 1,
          'earth': 1,
          'would': 1,
          'call': 1,
          'fun': 1,
          'denouement': 1,
          'suggests': 1,
          'suggestion': 1,
          'hire': 1,
          'flair': 1,
          'someone': 1,
          'energize': 1,
          'stillborn': 1,
          'seriessomeone': 1,
          'wont': 1,
          'rely': 1,
          'shock': 1,
          'notes': 1,
          'nand': 1,
          'let': 1,
          'person': 1,
          'wild': 1,
          'camera': 1,
          'aside': 1,
          'blandy': 1,
          'sic': 1,
          'must': 1,
          'appear': 1,
          'try': 1,
          'keep': 1,
          'number': 1,
          'times': 1,
          'says': 1,
          'baby': 1,
          'minimum': 1,
          'nthanks': 1,
          'advance': 1,
          'nneg': 1}),
 Counter({'johnny': 3,
          'back': 2,
          'one': 2,
          'future': 2,
          'keanu': 2,
          'reeves': 2,
          'nhes': 2,
          'nthe': 2,
          'mnemonic': 2,
          'action': 2,
          'n': 2,
          'way': 2,
          'bad': 2,
          'blade': 1,
          'runner': 1,
          'territory': 1,
          'conceptual': 1,
          'artist': 1,
          'robert': 1,
          'longos': 1,
          'vision': 1,
          'william': 1,
          'gibsoninspired': 1,
          'information': 1,
          'commodity': 1,
          'kill': 1,
          'nfront': 1,
          'center': 1,
          'cybercourier': 1,
          'smuggles': 1,
          'data': 1,
          'via': 1,
          'wetwired': 1,
          'implant': 1,
          'ready': 1,
          'quit': 1,
          'biz': 1,
          'get': 1,
          'portion': 1,
          'longterm': 1,
          'memory': 1,
          'restored': 1,
          'first': 1,
          'finish': 1,
          'last': 1,
          'dangerous': 1,
          'job': 1,
          'pressing': 1,
          'problem': 1,
          'seems': 1,
          'forgotten': 1,
          'play': 1,
          'hero': 1,
          'since': 1,
          'stint': 1,
          'speed': 1,
          'walking': 1,
          'wood': 1,
          'forest': 1,
          'stiffs': 1,
          'includes': 1,
          'henry': 1,
          'rollins': 1,
          'icet': 1,
          'dina': 1,
          'meyer': 1,
          'dolph': 1,
          'lundgrens': 1,
          'street': 1,
          'preacher': 1,
          'acting': 1,
          'category': 1,
          'without': 1,
          'believable': 1,
          'performance': 1,
          'sit': 1,
          'watch': 1,
          'atmosphere': 1,
          'pretty': 1,
          'good': 1,
          'places': 1,
          'vr': 1,
          'sequences': 1,
          'cool': 1,
          'physical': 1,
          'fxsuch': 1,
          'miniatures': 1,
          'mattesleave': 1,
          'lot': 1,
          'desired': 1,
          'nwatch': 1,
          'bluescreens': 1,
          'nwe': 1,
          'wouldnt': 1,
          'mind': 1,
          'minute': 1,
          'played': 1,
          'better': 1,
          'ntoo': 1,
          'debut': 1,
          'director': 1,
          'isnt': 1,
          'strong': 1,
          'de': 1,
          'partment': 1,
          'nhis': 1,
          'big': 1,
          'finale': 1,
          'sloppy': 1,
          'silly': 1,
          'mess': 1,
          'runs': 1,
          'twenty': 1,
          'minutes': 1,
          'long': 1,
          'past': 1,
          'time': 1,
          'wet': 1,
          'wired': 1,
          'processors': 1,
          'already': 1,
          'shut': 1,
          'nbottom': 1,
          'line': 1,
          'yatf': 1,
          'yet': 1,
          'another': 1,
          'tortured': 1,
          'nskip': 1,
          'nneg': 1}),
 Counter({'girls': 11,
          'film': 11,
          'world': 8,
          'spice': 7,
          'much': 5,
          'nthe': 4,
          'one': 4,
          'even': 3,
          'would': 3,
          'group': 3,
          'funny': 3,
          'joke': 3,
          'nspice': 3,
          'find': 2,
          'individual': 2,
          'identities': 2,
          'girl': 2,
          'power': 2,
          'nbut': 2,
          'isnt': 2,
          'enough': 2,
          'scary': 2,
          'melanie': 2,
          'sporty': 2,
          'ginger': 2,
          'cheers': 2,
          'right': 2,
          'james': 2,
          'bond': 2,
          'comes': 2,
          'tour': 2,
          'live': 2,
          'ideas': 2,
          'clifford': 2,
          'richard': 2,
          'documentary': 2,
          'crew': 2,
          'rapidly': 2,
          'publisher': 2,
          'hit': 2,
          'make': 2,
          'fuller': 2,
          'spiers': 2,
          'vignette': 2,
          'subplot': 2,
          'little': 2,
          'stage': 2,
          'young': 2,
          'fans': 2,
          'think': 2,
          'really': 2,
          'works': 2,
          'video': 2,
          'persona': 2,
          'also': 2,
          'spices': 2,
          'involving': 2,
          'ok': 1,
          'admit': 1,
          'iti': 1,
          'camp': 1,
          'amusement': 1,
          'nyes': 1,
          'gimmicky': 1,
          'annoyingly': 1,
          'infectious': 1,
          'bubblegum': 1,
          'pop': 1,
          'hooks': 1,
          'cheesy': 1,
          'unifying': 1,
          'mantra': 1,
          'guilty': 1,
          'pleasure': 1,
          'appeal': 1,
          'carry': 1,
          'big': 1,
          'screen': 1,
          'debut': 1,
          'junky': 1,
          'mess': 1,
          'aptly': 1,
          'named': 1,
          'shite': 1,
          'begins': 1,
          'amusingly': 1,
          'cheeky': 1,
          '007esque': 1,
          'title': 1,
          'sequence': 1,
          'british': 1,
          'quintet': 1,
          'brown': 1,
          'baby': 1,
          'emma': 1,
          'bunton': 1,
          'chisolm': 1,
          'geri': 1,
          'halliwell': 1,
          'posh': 1,
          'victoria': 1,
          'adams': 1,
          'introduced': 1,
          'surprise': 1,
          'excited': 1,
          'slightly': 1,
          'mocking': 1,
          'press': 1,
          'audience': 1,
          'croon': 1,
          'silky': 1,
          'ballad': 1,
          'tune': 1,
          'sound': 1,
          'home': 1,
          'actual': 1,
          'na': 1,
          'minutes': 1,
          'elton': 1,
          'john': 1,
          'cameo': 1,
          'later': 1,
          'introductory': 1,
          'numerous': 1,
          'plotlines': 1,
          'run': 1,
          '1': 1,
          'spicy': 1,
          'ones': 1,
          'go': 1,
          'european': 1,
          'publicity': 1,
          'leading': 1,
          'first': 1,
          'concert': 1,
          'londons': 1,
          'royal': 1,
          'albert': 1,
          'hall': 1,
          '2': 1,
          'producer': 1,
          'george': 1,
          'wendt': 1,
          'screenwriter': 1,
          'mark': 1,
          'mckinney': 1,
          'pitch': 1,
          'various': 1,
          'manager': 1,
          'e': 1,
          'grant': 1,
          '3': 1,
          'follows': 1,
          '4': 1,
          'pregnant': 1,
          'mate': 1,
          'naoki': 1,
          'mori': 1,
          'approaches': 1,
          'due': 1,
          'date': 1,
          '5': 1,
          'tabloid': 1,
          'barry': 1,
          'humphries': 1,
          'attempts': 1,
          'destroy': 1,
          'help': 1,
          'sneaky': 1,
          'shutterbug': 1,
          'obrien': 1,
          'ncapped': 1,
          'rendition': 1,
          'bouncy': 1,
          'say': 1,
          'youll': 1,
          'wealth': 1,
          'laughs': 1,
          'merriment': 1,
          'sure': 1,
          'follow': 1,
          'nwrong': 1,
          'downhill': 1,
          'collapses': 1,
          'series': 1,
          'misfired': 1,
          'comedy': 1,
          'sketches': 1,
          'ni': 1,
          'must': 1,
          'give': 1,
          'credit': 1,
          'refreshing': 1,
          'willingness': 1,
          'fun': 1,
          'writer': 1,
          'kim': 1,
          'director': 1,
          'bob': 1,
          'barely': 1,
          'come': 1,
          'less': 1,
          'organized': 1,
          'framework': 1,
          'wacky': 1,
          'goingson': 1,
          'jumps': 1,
          'direction': 1,
          'sense': 1,
          'minute': 1,
          'meet': 1,
          'aliens': 1,
          'another': 1,
          'daring': 1,
          'rescue': 1,
          'two': 1,
          'fall': 1,
          'water': 1,
          'boat': 1,
          'ride': 1,
          'nwhile': 1,
          'decent': 1,
          'slips': 1,
          'cracks': 1,
          'thereduring': 1,
          'dance': 1,
          'bootcamp': 1,
          'scene': 1,
          'sing': 1,
          'lyric': 1,
          'know': 1,
          'got': 1,
          'farstrength': 1,
          'courage': 1,
          'wonderbra': 1,
          'material': 1,
          'chuckle': 1,
          'level': 1,
          'nsome': 1,
          'gags': 1,
          'plain': 1,
          'pointless': 1,
          'roger': 1,
          'moores': 1,
          'recurring': 1,
          'role': 1,
          'mysterious': 1,
          'chief': 1,
          'dispenses': 1,
          'cryptic': 1,
          'metaphorheavy': 1,
          'advice': 1,
          'reason': 1,
          'anyone': 1,
          'fact': 1,
          'moore': 1,
          'played': 1,
          'nha': 1,
          'ha': 1,
          'nas': 1,
          'weak': 1,
          'script': 1,
          'theres': 1,
          'insurmountable': 1,
          'problem': 1,
          'attempting': 1,
          'movie': 1,
          'point': 1,
          'cant': 1,
          'act': 1,
          'record': 1,
          '_cant_': 1,
          'personas': 1,
          'gimmick': 1,
          'span': 1,
          'fourminute': 1,
          'music': 1,
          'thin': 1,
          'survive': 1,
          'outside': 1,
          'truncated': 1,
          'bite': 1,
          'mtv': 1,
          'nposh': 1,
          'garnered': 1,
          'enthusiastic': 1,
          'introductions': 1,
          'best': 1,
          'default': 1,
          'rich': 1,
          'bitch': 1,
          'easily': 1,
          'translates': 1,
          'character': 1,
          'nbabys': 1,
          'innocent': 1,
          'lesser': 1,
          'extent': 1,
          'remaining': 1,
          'harder': 1,
          'flesh': 1,
          'nthere': 1,
          'besides': 1,
          'exercise': 1,
          'every': 1,
          'often': 1,
          '_exactly_': 1,
          'exactly': 1,
          'entails': 1,
          'napparently': 1,
          'wardrobes': 1,
          'manages': 1,
          'pick': 1,
          'steam': 1,
          'late': 1,
          'going': 1,
          'following': 1,
          'flashback': 1,
          'performance': 1,
          'signature': 1,
          'wannabe': 1,
          'song': 1,
          'grating': 1,
          'ever': 1,
          'energy': 1,
          'number': 1,
          'gives': 1,
          'proceedings': 1,
          'muchneeded': 1,
          'shot': 1,
          'arm': 1,
          'setting': 1,
          'wave': 1,
          'selfreferential': 1,
          'humor': 1,
          'stemmed': 1,
          'screenwriters': 1,
          'almost': 1,
          'mirrors': 1,
          'robert': 1,
          'altmans': 1,
          'player': 1,
          'way': 1,
          'snails': 1,
          'nthis': 1,
          'section': 1,
          'manner': 1,
          'derringdo': 1,
          'speeding': 1,
          'bus': 1,
          'perhaps': 1,
          'effective': 1,
          'points': 1,
          'storylines': 1,
          'lack': 1,
          'satisfactory': 1,
          'payoff': 1,
          'harmless': 1,
          'entertainment': 1,
          'suitable': 1,
          'entire': 1,
          'family': 1,
          'please': 1,
          'faithful': 1,
          'sloppy': 1,
          'enterprise': 1,
          'surely': 1,
          'wont': 1,
          'win': 1,
          'new': 1,
          'sorely': 1,
          'needs': 1,
          'bolster': 1,
          'waning': 1,
          'states': 1,
          'nonce': 1,
          'hype': 1,
          'disappears': 1,
          'likely': 1,
          'serve': 1,
          'final': 1,
          'hurrah': 1,
          'america': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'sly': 7,
          'woods': 6,
          'action': 4,
          'stone': 4,
          'make': 3,
          'noir': 3,
          'big': 3,
          'james': 3,
          'us': 3,
          'sometimes': 3,
          'really': 3,
          'see': 3,
          'sylvester': 2,
          'stallone': 2,
          'worst': 2,
          'dull': 2,
          'explosions': 2,
          'exciting': 2,
          'stupid': 2,
          'boring': 2,
          'blown': 2,
          'none': 2,
          'bomb': 2,
          'shows': 2,
          'bad': 2,
          'killed': 2,
          'people': 2,
          'nand': 2,
          'nso': 2,
          'life': 2,
          'sharon': 2,
          'roberts': 2,
          'accent': 2,
          'etc': 2,
          'kill': 2,
          'calls': 2,
          'naked': 2,
          'comes': 2,
          'tries': 2,
          'ass': 2,
          'scenes': 2,
          'nthe': 2,
          'sex': 2,
          'scene': 2,
          'breasts': 2,
          'good': 2,
          'ni': 2,
          'flaw': 2,
          'fun': 2,
          'made': 1,
          'crap': 1,
          'films': 1,
          'lifetime': 1,
          'got': 1,
          'one': 1,
          'na': 1,
          'totally': 1,
          'story': 1,
          'thinks': 1,
          'use': 1,
          'various': 1,
          'interesting': 1,
          'specialist': 1,
          'episode': 1,
          'dragnet': 1,
          'well': 1,
          'acted': 1,
          'neven': 1,
          'attempts': 1,
          'mood': 1,
          'destroyed': 1,
          'sappy': 1,
          'script': 1,
          'unlikable': 1,
          'characters': 1,
          'plain': 1,
          'nothingness': 1,
          'nwho': 1,
          'knew': 1,
          'explosion': 1,
          'could': 1,
          'anticlimactic': 1,
          'nunless': 1,
          'saw': 1,
          'away': 1,
          'n': 1,
          'specliast': 1,
          'title': 1,
          'star': 1,
          'comeback': 1,
          '19': 1,
          'think': 1,
          'plays': 1,
          'quiet': 1,
          'hermitlike': 1,
          'bomber': 1,
          'expert': 1,
          'army': 1,
          'something': 1,
          'suffered': 1,
          'change': 1,
          'heart': 1,
          'assistant': 1,
          'exactly': 1,
          'overthetop': 1,
          'another': 1,
          'accidentally': 1,
          'innocent': 1,
          'job': 1,
          'nhis': 1,
          'credo': 1,
          'killing': 1,
          'innocents': 1,
          'thats': 1,
          'makes': 1,
          'bombs': 1,
          'anyway': 1,
          'steps': 1,
          'seductive': 1,
          'basically': 1,
          'girlfriendmoll': 1,
          'son': 1,
          'eric': 1,
          'cubanmiami': 1,
          'kingpin': 1,
          'rod': 1,
          'steiger': 1,
          'indecipherable': 1,
          'cuban': 1,
          'brando': 1,
          'scottish': 1,
          'nturns': 1,
          'actually': 1,
          'using': 1,
          'boyfriend': 1,
          'since': 1,
          'parents': 1,
          'young': 1,
          'leaves': 1,
          'messages': 1,
          'sends': 1,
          'email': 1,
          'planting': 1,
          'listens': 1,
          'obsessively': 1,
          'works': 1,
          'nyea': 1,
          'nalso': 1,
          'though': 1,
          'tipped': 1,
          'catch': 1,
          'nusing': 1,
          'cops': 1,
          'set': 1,
          'traps': 1,
          'work': 1,
          'goes': 1,
          'ballisitic': 1,
          'phone': 1,
          'getting': 1,
          'worked': 1,
          'saying': 1,
          'mustbeimprovised': 1,
          'speeches': 1,
          'seems': 1,
          'pop': 1,
          'vein': 1,
          'head': 1,
          'wide': 1,
          'open': 1,
          'nthese': 1,
          'becomes': 1,
          'ounce': 1,
          'entertainment': 1,
          'offer': 1,
          'moody': 1,
          'except': 1,
          'completely': 1,
          'snakeeyes': 1,
          'nits': 1,
          'pretend': 1,
          'making': 1,
          'waste': 1,
          'time': 1,
          'buffs': 1,
          'pretty': 1,
          'lame': 1,
          'unrealisticlooking': 1,
          'special': 1,
          'effects': 1,
          'penthouse': 1,
          'hotel': 1,
          'looks': 1,
          'like': 1,
          'piece': 1,
          'cardboard': 1,
          'falling': 1,
          'tub': 1,
          'nthen': 1,
          'theres': 1,
          'muchdiscussed': 1,
          'mispaired': 1,
          'couple': 1,
          'rachel': 1,
          'ross': 1,
          'friends': 1,
          'ntheir': 1,
          'nauseating': 1,
          'sexy': 1,
          'nnow': 1,
          'lets': 1,
          'guess': 1,
          'wed': 1,
          'rather': 1,
          'okay': 1,
          'nstones': 1,
          'small': 1,
          'perky': 1,
          'weve': 1,
          'seen': 1,
          'times': 1,
          'harvey': 1,
          'keitels': 1,
          'dick': 1,
          'stallones': 1,
          'veiny': 1,
          'isnt': 1,
          'usually': 1,
          'shown': 1,
          'reason': 1,
          'know': 1,
          'cant': 1,
          'judge': 1,
          'come': 1,
          'mean': 1,
          'caffeine': 1,
          'watching': 1,
          'friend': 1,
          'fell': 1,
          'asleep': 1,
          'woken': 1,
          'ranting': 1,
          'nbut': 1,
          'movie': 1,
          'going': 1,
          'nuts': 1,
          'nif': 1,
          'youre': 1,
          'rent': 1,
          'slys': 1,
          'earlier': 1,
          'demolition': 1,
          'man': 1,
          'sucks': 1,
          'much': 1,
          'entertaining': 1,
          'fashion': 1,
          'nskip': 1,
          'unless': 1,
          'want': 1,
          'steigers': 1,
          'stones': 1,
          'nneg': 1}),
 Counter({'skulls': 10,
          'nthe': 8,
          'society': 4,
          'skull': 4,
          'nbut': 4,
          'member': 4,
          'like': 4,
          'one': 4,
          'bad': 3,
          'way': 3,
          'secret': 3,
          'new': 3,
          'maybe': 3,
          'little': 3,
          'actors': 3,
          'thriller': 2,
          'ridiculous': 2,
          'ni': 2,
          'share': 2,
          'actual': 2,
          'joshua': 2,
          'jackson': 2,
          'varsity': 2,
          'luke': 2,
          'organization': 2,
          'potential': 2,
          'would': 2,
          'exciting': 2,
          'another': 2,
          'pogue': 2,
          'nand': 2,
          'top': 2,
          'given': 2,
          'nthey': 2,
          'paddles': 2,
          'dialogue': 2,
          'mandrake': 2,
          'dealt': 2,
          'guy': 2,
          'makes': 2,
          'better': 2,
          'nit': 2,
          'minute': 2,
          'laughably': 1,
          'teenorientated': 1,
          'doppelganger': 1,
          'firm': 1,
          'blazingly': 1,
          'caused': 1,
          'drift': 1,
          'hypnotic': 1,
          'stupor': 1,
          'ncertain': 1,
          'moments': 1,
          'preposterous': 1,
          'nearly': 1,
          'herniated': 1,
          'attempt': 1,
          'stifle': 1,
          'laughter': 1,
          'chuckled': 1,
          'incessantly': 1,
          'home': 1,
          'nlet': 1,
          'conceived': 1,
          'inside': 1,
          'walls': 1,
          'yale': 1,
          'designed': 1,
          'im': 1,
          'sure': 1,
          'mirror': 1,
          'bones': 1,
          'college': 1,
          'nluke': 1,
          'mcnamara': 1,
          'townie': 1,
          'local': 1,
          'rowing': 1,
          'championship': 1,
          'victor': 1,
          'third': 1,
          'consecutive': 1,
          'year': 1,
          'highlights': 1,
          'latest': 1,
          'scouting': 1,
          'report': 1,
          'ndespite': 1,
          'anxiety': 1,
          'caution': 1,
          'others': 1,
          'accepts': 1,
          'entry': 1,
          'nsoon': 1,
          'finds': 1,
          'surrounded': 1,
          'beautiful': 1,
          'women': 1,
          'driving': 1,
          'car': 1,
          'marveling': 1,
          '20': 1,
          '000': 1,
          'somehow': 1,
          'surfaced': 1,
          'bank': 1,
          'account': 1,
          'nyeah': 1,
          'dude': 1,
          'pretty': 1,
          'good': 1,
          'deal': 1,
          'eh': 1,
          'soon': 1,
          'learns': 1,
          'membership': 1,
          'somewhat': 1,
          'suffocating': 1,
          'circumstances': 1,
          'become': 1,
          'extreme': 1,
          'leave': 1,
          'except': 1,
          'drooling': 1,
          'vegetable': 1,
          'premise': 1,
          'although': 1,
          'lacking': 1,
          'originality': 1,
          'certainly': 1,
          'offers': 1,
          'intrigue': 1,
          'suspense': 1,
          'nunfortunately': 1,
          'neither': 1,
          'intriguing': 1,
          'suspenseful': 1,
          'anything': 1,
          'else': 1,
          'associate': 1,
          'fresh': 1,
          'nits': 1,
          'abysmal': 1,
          'teen': 1,
          'prototype': 1,
          'soundtrack': 1,
          'stars': 1,
          'script': 1,
          'attains': 1,
          'certain': 1,
          'level': 1,
          'entertainment': 1,
          'value': 1,
          'screenplay': 1,
          'jon': 1,
          'immediately': 1,
          'becoming': 1,
          'basis': 1,
          'slew': 1,
          'unintentional': 1,
          'howlers': 1,
          'nfirst': 1,
          'upon': 1,
          'initiation': 1,
          'branded': 1,
          'onto': 1,
          'arm': 1,
          'nafterward': 1,
          'supplied': 1,
          'wristwatch': 1,
          'conveniently': 1,
          'covers': 1,
          'scar': 1,
          'nwill': 1,
          'never': 1,
          'take': 1,
          'watch': 1,
          'forget': 1,
          'bedside': 1,
          'nperhaps': 1,
          'conspicuous': 1,
          'decided': 1,
          'brand': 1,
          'members': 1,
          'cattle': 1,
          'area': 1,
          'body': 1,
          'easily': 1,
          'exposed': 1,
          'non': 1,
          'rulebook': 1,
          'key': 1,
          'headquarters': 1,
          'ngee': 1,
          'tshirts': 1,
          'favorite': 1,
          'bit': 1,
          'voting': 1,
          'committee': 1,
          'bother': 1,
          'individual': 1,
          'agree': 1,
          'disagree': 1,
          'notions': 1,
          'making': 1,
          'collective': 1,
          'decisions': 1,
          'official': 1,
          'nwhen': 1,
          'flipped': 1,
          'side': 1,
          'indicate': 1,
          'agrees': 1,
          'proposal': 1,
          'nfacing': 1,
          'opposite': 1,
          'means': 1,
          'disagreement': 1,
          'nwouldnt': 1,
          'merely': 1,
          'express': 1,
          'verbally': 1,
          'nhell': 1,
          'retrieve': 1,
          'proper': 1,
          'vote': 1,
          'afterward': 1,
          'play': 1,
          'pingpong': 1,
          'nim': 1,
          'still': 1,
          'chuckling': 1,
          'ludicrous': 1,
          'details': 1,
          'humiliating': 1,
          'enough': 1,
          'send': 1,
          'arrest': 1,
          'cast': 1,
          'meanwhile': 1,
          'combines': 1,
          'pinch': 1,
          'veteran': 1,
          'talent': 1,
          'dash': 1,
          'dawsons': 1,
          'creek': 1,
          'crowd': 1,
          'fuses': 1,
          'two': 1,
          'together': 1,
          'ensuring': 1,
          'embarrassment': 1,
          'mutually': 1,
          'shared': 1,
          'union': 1,
          'throughout': 1,
          'entirely': 1,
          'naccomplished': 1,
          'craig': 1,
          'nelson': 1,
          'chairman': 1,
          'judge': 1,
          'litten': 1,
          'william': 1,
          'peterson': 1,
          'fellow': 1,
          'board': 1,
          'senator': 1,
          'levritt': 1,
          'pathetic': 1,
          'villain': 1,
          'caricatures': 1,
          'look': 1,
          'suitably': 1,
          'embarrassed': 1,
          'handling': 1,
          'theres': 1,
          'christopher': 1,
          'mcdonald': 1,
          'capacity': 1,
          'fun': 1,
          'actor': 1,
          'nmcdonalds': 1,
          'charisma': 1,
          'totally': 1,
          'diminished': 1,
          'sleepwalks': 1,
          'perfunctory': 1,
          'role': 1,
          'yes': 1,
          'hattrick': 1,
          'pray': 1,
          'snatchthepaycheckandrun': 1,
          'exercise': 1,
          'young': 1,
          'troupe': 1,
          'performers': 1,
          'involved': 1,
          'fair': 1,
          'moderately': 1,
          'nlets': 1,
          'cut': 1,
          'talented': 1,
          'canadian': 1,
          'lad': 1,
          'slack': 1,
          'maintaining': 1,
          'believability': 1,
          'within': 1,
          'confines': 1,
          'character': 1,
          'npaul': 1,
          'walker': 1,
          'strapping': 1,
          'quarterback': 1,
          'blues': 1,
          'bland': 1,
          'passable': 1,
          'caleb': 1,
          'judges': 1,
          'son': 1,
          'nwalker': 1,
          'preserves': 1,
          'straight': 1,
          'face': 1,
          'even': 1,
          'silliest': 1,
          'movie': 1,
          'dad': 1,
          'killed': 1,
          'ritual': 1,
          'room': 1,
          'nsome': 1,
          'spark': 1,
          'generated': 1,
          'leslie': 1,
          'bibb': 1,
          'plays': 1,
          'lukes': 1,
          'longtime': 1,
          'chum': 1,
          'chloe': 1,
          'manages': 1,
          'successfully': 1,
          'pull': 1,
          'convincing': 1,
          'dramatics': 1,
          'really': 1,
          'boils': 1,
          'attempting': 1,
          'puncture': 1,
          'surrounding': 1,
          'plastic': 1,
          'bubble': 1,
          'absurdity': 1,
          'cages': 1,
          'thanks': 1,
          'decent': 1,
          'setup': 1,
          'director': 1,
          'rob': 1,
          'cohen': 1,
          'films': 1,
          'early': 1,
          'sequences': 1,
          'sense': 1,
          'atmosphere': 1,
          'style': 1,
          'wonder': 1,
          'didnt': 1,
          'flee': 1,
          'indefinitely': 1,
          'project': 1,
          'enjoyable': 1,
          'cheese': 1,
          'dragonheart': 1,
          'moderate': 1,
          'stallone': 1,
          'daylight': 1,
          'arent': 1,
          'superior': 1,
          'cinema': 1,
          'belong': 1,
          'afi': 1,
          '100': 1,
          'list': 1,
          'compared': 1,
          'degrading': 1,
          'trash': 1,
          'naside': 1,
          'unintentionally': 1,
          'humoring': 1,
          'audience': 1,
          'gets': 1,
          'accomplished': 1,
          'thrills': 1,
          'action': 1,
          'lazy': 1,
          'mechanical': 1,
          'story': 1,
          'stuffed': 1,
          'formulaic': 1,
          'plotting': 1,
          'sheepishly': 1,
          'overlooks': 1,
          'cool': 1,
          'underground': 1,
          'flick': 1,
          'ninstead': 1,
          'gaining': 1,
          'knowledge': 1,
          'thrust': 1,
          'lame': 1,
          'video': 1,
          'surveillance': 1,
          'conspiracy': 1,
          'developed': 1,
          'barnacles': 1,
          'excessive': 1,
          'usage': 1,
          'nweve': 1,
          'seen': 1,
          'feeble': 1,
          'circus': 1,
          'stupidity': 1,
          'miscalculated': 1,
          'serve': 1,
          'clever': 1,
          'pun': 1,
          'term': 1,
          'boneheaded': 1,
          'seems': 1,
          'generous': 1,
          'nneg': 1}),
 Counter({'bubble': 8,
          'boy': 6,
          'nbut': 4,
          'jimmy': 4,
          'director': 3,
          'film': 3,
          'chloe': 3,
          'love': 3,
          'tv': 2,
          'case': 2,
          'offensive': 2,
          'humor': 2,
          'moments': 2,
          'films': 2,
          'kurtz': 2,
          'religious': 2,
          'jimmys': 2,
          'movie': 2,
          'even': 2,
          'manage': 2,
          'take': 2,
          'unknown': 2,
          'difficult': 1,
          'expect': 1,
          'much': 1,
          'whose': 1,
          'greatest': 1,
          'accomplishments': 1,
          'date': 1,
          'handful': 1,
          'awardwinning': 1,
          'commercials': 1,
          'blair': 1,
          'hayes': 1,
          'nthat': 1,
          'said': 1,
          'hayess': 1,
          'feature': 1,
          'debut': 1,
          'lives': 1,
          'expectations': 1,
          'coming': 1,
          'mainly': 1,
          'equal': 1,
          'parts': 1,
          'moronic': 1,
          'occasionally': 1,
          'transcends': 1,
          'substandard': 1,
          'roots': 1,
          'glimmers': 1,
          'scathing': 1,
          'social': 1,
          'commentary': 1,
          'nthose': 1,
          'intelligence': 1,
          'delivered': 1,
          'mostly': 1,
          'two': 1,
          'stars': 1,
          'jake': 1,
          'gyllenhall': 1,
          'immunodeficient': 1,
          'swoosie': 1,
          'overprotective': 1,
          'hyper': 1,
          'reaganloving': 1,
          'mother': 1,
          'ngyllenhalls': 1,
          'sweetnatured': 1,
          'delivery': 1,
          'hilariously': 1,
          'na': 1,
          'narration': 1,
          'serves': 1,
          'backbone': 1,
          'otherwise': 1,
          'flimsy': 1,
          'comingofage': 1,
          'story': 1,
          'kid': 1,
          'born': 1,
          'without': 1,
          'immunity': 1,
          'could': 1,
          'die': 1,
          'comes': 1,
          'contact': 1,
          'single': 1,
          'germ': 1,
          'plight': 1,
          'explored': 1,
          'seriously': 1,
          'john': 1,
          'travolta': 1,
          'plastic': 1,
          'less': 1,
          'seinfeld': 1,
          'nhis': 1,
          'mom': 1,
          'homeschools': 1,
          'filling': 1,
          'head': 1,
          'wildly': 1,
          'twisted': 1,
          'conservative': 1,
          'propaganda': 1,
          'antisexual': 1,
          'messages': 1,
          'hes': 1,
          'befriended': 1,
          'marley': 1,
          'shelton': 1,
          'beautiful': 1,
          'girl': 1,
          'next': 1,
          'door': 1,
          'njimmy': 1,
          'falls': 1,
          'afraid': 1,
          'literally': 1,
          'kill': 1,
          'evidenced': 1,
          'scene': 1,
          'drunkenly': 1,
          'tries': 1,
          'enter': 1,
          'kiss': 1,
          'decides': 1,
          'marry': 1,
          'high': 1,
          'school': 1,
          'boyfriend': 1,
          'builds': 1,
          'suit': 1,
          'embarks': 1,
          'hijinksaddled': 1,
          'crosscountry': 1,
          'voyage': 1,
          'stop': 1,
          'wedding': 1,
          'professing': 1,
          'nthe': 1,
          'bits': 1,
          'little': 1,
          'rare': 1,
          'handicap': 1,
          'regardless': 1,
          'protesters': 1,
          'would': 1,
          'believe': 1,
          'instead': 1,
          'center': 1,
          'outrageous': 1,
          'racial': 1,
          'stereotypes': 1,
          'including': 1,
          'screaming': 1,
          'chinese': 1,
          'strip': 1,
          'club': 1,
          'owner': 1,
          'devout': 1,
          'east': 1,
          'indian': 1,
          'hindi': 1,
          'find': 1,
          'stereotype': 1,
          'funny': 1,
          'hard': 1,
          'muster': 1,
          'giggle': 1,
          'shallow': 1,
          'gags': 1,
          'nthey': 1,
          'bungle': 1,
          'potentially': 1,
          'great': 1,
          'group': 1,
          'carnival': 1,
          'freaks': 1,
          'harsh': 1,
          'jabs': 1,
          'work': 1,
          'especially': 1,
          'bluntly': 1,
          'shows': 1,
          'dark': 1,
          'hypocritical': 1,
          'side': 1,
          'right': 1,
          'wacky': 1,
          'sendup': 1,
          'cult': 1,
          'called': 1,
          'bright': 1,
          'n': 1,
          'shiny': 1,
          'led': 1,
          'inimitable': 1,
          'fabio': 1,
          'nunfortunately': 1,
          'giggles': 1,
          'cant': 1,
          'make': 1,
          'riotous': 1,
          'offthewall': 1,
          'comedy': 1,
          'desperately': 1,
          'wants': 1,
          'nhonestly': 1,
          'mystery': 1,
          'earth': 1,
          'ever': 1,
          'made': 1,
          'im': 1,
          'saying': 1,
          'mediocre': 1,
          'nhow': 1,
          'odd': 1,
          'disney': 1,
          'gamble': 1,
          'starring': 1,
          'virtually': 1,
          'actors': 1,
          'doesnt': 1,
          'seem': 1,
          'appeal': 1,
          'particular': 1,
          'demographic': 1,
          'potential': 1,
          'offend': 1,
          'many': 1,
          'nand': 1,
          'studio': 1,
          'suffering': 1,
          'public': 1,
          'protest': 1,
          'parents': 1,
          'reallife': 1,
          'david': 1,
          'philip': 1,
          'vetter': 1,
          'maybe': 1,
          'disneys': 1,
          'wondering': 1,
          'thing': 1,
          'nhope': 1,
          'opening': 1,
          'box': 1,
          'office': 1,
          'makes': 1,
          'worthwhile': 1,
          'nneg': 1}),
 Counter({'bats': 11,
          'see': 4,
          'get': 4,
          'nit': 3,
          'even': 3,
          'bat': 3,
          'camp': 2,
          'one': 2,
          'looking': 2,
          'ni': 2,
          'love': 2,
          'town': 2,
          'batologist': 2,
          'creepy': 2,
          'things': 2,
          'little': 2,
          'wisecracking': 2,
          'sidekick': 2,
          'nof': 2,
          'course': 2,
          'people': 2,
          'might': 2,
          'nwhat': 2,
          'know': 2,
          'attacking': 2,
          'could': 2,
          'go': 2,
          'hate': 2,
          'bad': 2,
          'characters': 2,
          'movie': 2,
          'years': 1,
          'flick': 1,
          'nwith': 1,
          'worlds': 1,
          'worst': 1,
          'dialogue': 1,
          'cheesiest': 1,
          'premise': 1,
          'stupidest': 1,
          'editor': 1,
          'heaven': 1,
          'enjoy': 1,
          'films': 1,
          'humorous': 1,
          'inanity': 1,
          'nas': 1,
          'rest': 1,
          'us': 1,
          'well': 1,
          'nid': 1,
          'say': 1,
          'skip': 1,
          'box': 1,
          'office': 1,
          'figures': 1,
          'seems': 1,
          'though': 1,
          'america': 1,
          'following': 1,
          'advice': 1,
          'anyway': 1,
          'nfollow': 1,
          'lead': 1,
          'youll': 1,
          'spare': 1,
          '90': 1,
          'minutes': 1,
          'life': 1,
          '8': 1,
          'bucks': 1,
          'boot': 1,
          'alfred': 1,
          'hitchcocks': 1,
          'birds': 1,
          'almost': 1,
          'much': 1,
          'short': 1,
          'story': 1,
          'based': 1,
          'saddens': 1,
          'american': 1,
          'treasure': 1,
          'ripped': 1,
          'blatantly': 1,
          'wannabe': 1,
          'horrorschlock': 1,
          'nwhen': 1,
          'mysterious': 1,
          'attacks': 1,
          'occur': 1,
          'small': 1,
          'texas': 1,
          'authorities': 1,
          'call': 1,
          'dina': 1,
          'meyer': 1,
          'investigate': 1,
          'turns': 1,
          'scientist': 1,
          'bob': 1,
          'gunton': 1,
          'genetically': 1,
          'enhanced': 1,
          'couple': 1,
          'escaped': 1,
          'lab': 1,
          'making': 1,
          'smarter': 1,
          'vicious': 1,
          'nwhy': 1,
          'done': 1,
          'ask': 1,
          'nbecause': 1,
          'apparently': 1,
          'scientists': 1,
          'job': 1,
          'make': 1,
          'better': 1,
          'means': 1,
          'death': 1,
          'mankind': 1,
          'nso': 1,
          'sheriff': 1,
          'lou': 1,
          'diamond': 1,
          'phillips': 1,
          'kill': 1,
          'save': 1,
          'world': 1,
          'cant': 1,
          'happen': 1,
          'wallow': 1,
          'guamo': 1,
          'shit': 1,
          'uninitiated': 1,
          'close': 1,
          'personal': 1,
          'truly': 1,
          'repulsive': 1,
          'flying': 1,
          'mammals': 1,
          'survive': 1,
          'dumbest': 1,
          'situations': 1,
          'ever': 1,
          'seen': 1,
          'professionally': 1,
          'produced': 1,
          'motion': 1,
          'picture': 1,
          'nconsider': 1,
          'example': 1,
          'scene': 1,
          'two': 1,
          'cave': 1,
          'nthe': 1,
          'sleeping': 1,
          'humans': 1,
          'afraid': 1,
          'wake': 1,
          'ndo': 1,
          'hell': 1,
          'fast': 1,
          'nnope': 1,
          'nthey': 1,
          'stand': 1,
          'transfixed': 1,
          'thousands': 1,
          'opening': 1,
          'eyes': 1,
          'keeps': 1,
          'scary': 1,
          'hyperactive': 1,
          'editing': 1,
          'attack': 1,
          'scenes': 1,
          'nwe': 1,
          'dont': 1,
          'whats': 1,
          'going': 1,
          'screen': 1,
          'becomes': 1,
          'mush': 1,
          'cuts': 1,
          'quick': 1,
          'nall': 1,
          'nhow': 1,
          'exactly': 1,
          'happening': 1,
          'remains': 1,
          'mystery': 1,
          'na': 1,
          'technical': 1,
          'proficiency': 1,
          'wonders': 1,
          'horror': 1,
          'movies': 1,
          'sure': 1,
          'use': 1,
          'director': 1,
          'louis': 1,
          'morneau': 1,
          'tries': 1,
          'liven': 1,
          'intentional': 1,
          'humor': 1,
          'conventional': 1,
          'doesnt': 1,
          'really': 1,
          'anywhere': 1,
          'nmost': 1,
          'ocmic': 1,
          'relief': 1,
          'comes': 1,
          'courtesy': 1,
          'batologists': 1,
          'leon': 1,
          'takes': 1,
          'every': 1,
          'opportunity': 1,
          'sputter': 1,
          'ingenious': 1,
          'lines': 1,
          'like': 1,
          'nsome': 1,
          'take': 1,
          'double': 1,
          'quality': 1,
          'may': 1,
          'inspire': 1,
          'smirk': 1,
          'nature': 1,
          'roaring': 1,
          'laugh': 1,
          'inept': 1,
          'exist': 1,
          'sole': 1,
          'purpose': 1,
          'spouting': 1,
          'lame': 1,
          'oneliners': 1,
          'nplaying': 1,
          'help': 1,
          'actors': 1,
          'careers': 1,
          'nstill': 1,
          'suppose': 1,
          'youre': 1,
          'good': 1,
          'worse': 1,
          'tremendous': 1,
          'amount': 1,
          'value': 1,
          'nim': 1,
          'recommending': 1,
          'quite': 1,
          'frankly': 1,
          'sucks': 1,
          'convince': 1,
          'nmore': 1,
          'power': 1,
          'nneg': 1}),
 Counter({'blob': 6,
          'original': 6,
          'nthe': 6,
          'goop': 5,
          'special': 5,
          'effects': 5,
          'version': 4,
          'shawnee': 3,
          'smith': 3,
          'remake': 3,
          'campy': 3,
          'either': 3,
          'isnt': 3,
          'new': 3,
          'movie': 3,
          'kevin': 2,
          'really': 2,
          'gets': 2,
          'cheesy': 2,
          'fact': 2,
          'mcqueen': 2,
          'star': 2,
          'film': 2,
          'doesnt': 2,
          'years': 2,
          'hollywood': 2,
          'heavy': 2,
          'role': 2,
          'since': 2,
          'pockets': 2,
          'nit': 2,
          'look': 2,
          'cheap': 2,
          'none': 2,
          'attractive': 2,
          'say': 2,
          'nin': 2,
          'little': 2,
          'ball': 2,
          'pink': 2,
          'nanyway': 2,
          'people': 2,
          'town': 2,
          'nthis': 2,
          'badly': 2,
          'nalthough': 2,
          'roles': 2,
          'big': 2,
          'starring': 1,
          'donovan': 1,
          'leitch': 1,
          'ricky': 1,
          'paull': 1,
          'goldin': 1,
          'dillon': 1,
          'billy': 1,
          'beck': 1,
          '1960s': 1,
          'classic': 1,
          'term': 1,
          'use': 1,
          'loosely': 1,
          'define': 1,
          'mean': 1,
          'glob': 1,
          'takes': 1,
          'anything': 1,
          'way': 1,
          'nnow': 1,
          'virtue': 1,
          'give': 1,
          'kind': 1,
          'nostalgic': 1,
          'feel': 1,
          'steve': 1,
          'exactly': 1,
          'hurt': 1,
          'nfast': 1,
          'forward': 1,
          'late': 1,
          '80s': 1,
          'nsteve': 1,
          'might': 1,
          'something': 1,
          'pushing': 1,
          'daisies': 1,
          'nnor': 1,
          'hitters': 1,
          'lead': 1,
          'nthat': 1,
          'unless': 1,
          'count': 1,
          'matt': 1,
          'dillons': 1,
          'brother': 1,
          'hitter': 1,
          'thing': 1,
          'works': 1,
          'technology': 1,
          'improved': 1,
          'dramatically': 1,
          'things': 1,
          'need': 1,
          'great': 1,
          'deep': 1,
          'looks': 1,
          'produces': 1,
          'couple': 1,
          'holes': 1,
          'like': 1,
          'originals': 1,
          'nunlike': 1,
          'dont': 1,
          'bright': 1,
          'spot': 1,
          'purely': 1,
          'sexist': 1,
          'point': 1,
          'view': 1,
          'nshe': 1,
          'actually': 1,
          'act': 1,
          'costars': 1,
          'terms': 1,
          'plot': 1,
          'falls': 1,
          'sky': 1,
          'nseems': 1,
          'experiment': 1,
          'housed': 1,
          'satellite': 1,
          'stuff': 1,
          'taste': 1,
          'humans': 1,
          'absorbs': 1,
          'bigger': 1,
          'nand': 1,
          'friendliest': 1,
          'block': 1,
          'attacks': 1,
          'local': 1,
          'teenage': 1,
          'population': 1,
          'stop': 1,
          'nnot': 1,
          'seems': 1,
          'attempts': 1,
          'recapture': 1,
          'camp': 1,
          'nas': 1,
          'ive': 1,
          'already': 1,
          'said': 1,
          'comes': 1,
          'acted': 1,
          'written': 1,
          'made': 1,
          'cast': 1,
          'gone': 1,
          'greatness': 1,
          'tiny': 1,
          'armageddon': 1,
          'reason': 1,
          'never': 1,
          'heard': 1,
          'quite': 1,
          'simple': 1,
          'stunk': 1,
          'loud': 1,
          'films': 1,
          'smaller': 1,
          'filled': 1,
          'actors': 1,
          'stars': 1,
          'doubtless': 1,
          'recognize': 1,
          'supporting': 1,
          'movies': 1,
          'tv': 1,
          'shows': 1,
          'also': 1,
          'appears': 1,
          'producers': 1,
          'tried': 1,
          'compensate': 1,
          'lack': 1,
          'budget': 1,
          'making': 1,
          'scenes': 1,
          'makes': 1,
          'meals': 1,
          'townsfolk': 1,
          'gory': 1,
          'possible': 1,
          'nsadly': 1,
          'work': 1,
          'well': 1,
          'nif': 1,
          'want': 1,
          'see': 1,
          'terrorize': 1,
          'would': 1,
          'skip': 1,
          'rent': 1,
          'n': 1,
          'although': 1,
          'hot': 1,
          'newest': 1,
          'seriously': 1,
          'lacking': 1,
          'redeeming': 1,
          'qualities': 1,
          'nneg': 1}),
 Counter({'jackson': 9,
          'action': 5,
          'vanity': 5,
          'stone': 4,
          'one': 4,
          '80s': 3,
          'movie': 3,
          'dellaplane': 3,
          'lies': 2,
          'sharon': 2,
          'within': 2,
          'minutes': 2,
          'nthis': 2,
          'cop': 2,
          'evil': 2,
          'heroin': 2,
          'addict': 2,
          'superior': 2,
          'boobs': 2,
          'past': 2,
          'njackson': 2,
          'nelson': 2,
          'nafter': 2,
          'says': 2,
          'youre': 2,
          'dellaplanes': 2,
          'killed': 2,
          'nits': 2,
          'prince': 2,
          'hes': 2,
          'toward': 1,
          'bottom': 1,
          'barrel': 1,
          'hollywood': 1,
          'history': 1,
          'show': 1,
          'topless': 1,
          'span': 1,
          'ten': 1,
          'carl': 1,
          'apollo': 1,
          'creed': 1,
          'weathers': 1,
          'vehicle': 1,
          'features': 1,
          'traditional': 1,
          'vs': 1,
          'establishment': 1,
          'crook': 1,
          'relies': 1,
          'trappings': 1,
          'token': 1,
          'needs': 1,
          'fix': 1,
          'shouting': 1,
          'officer': 1,
          'nsomewhere': 1,
          'come': 1,
          'explosions': 1,
          'although': 1,
          'curious': 1,
          'lack': 1,
          'exploding': 1,
          'nweathers': 1,
          'detroit': 1,
          'known': 1,
          'sorts': 1,
          'crazy': 1,
          'vigilante': 1,
          'techniques': 1,
          'nspeaking': 1,
          'criminal': 1,
          'apprehension': 1,
          'jacksons': 1,
          'yells': 1,
          'tore': 1,
          'arm': 1,
          'replies': 1,
          'spare': 1,
          'busted': 1,
          'desk': 1,
          'job': 1,
          'problems': 1,
          'auto': 1,
          'manufacturer': 1,
          'craig': 1,
          'act': 1,
          'department': 1,
          'liaison': 1,
          'dinner': 1,
          'honoring': 1,
          'hearing': 1,
          'thinks': 1,
          'take': 1,
          'friends': 1,
          'n': 1,
          'unless': 1,
          'changed': 1,
          'definition': 1,
          'glowers': 1,
          'nand': 1,
          'course': 1,
          'turns': 1,
          'mrs': 1,
          'nfaux': 1,
          'pas': 1,
          'nnot': 1,
          'everything': 1,
          'happy': 1,
          'motown': 1,
          'people': 1,
          'plans': 1,
          'awa': 1,
          'stop': 1,
          'lead': 1,
          'nwherever': 1,
          'left': 1,
          'terms': 1,
          'exchanging': 1,
          'sexual': 1,
          'favors': 1,
          'career': 1,
          'advancement': 1,
          'picks': 1,
          'nshe': 1,
          'plays': 1,
          'chanteuse': 1,
          'nightclub': 1,
          'singing': 1,
          'particularly': 1,
          'sultry': 1,
          'number': 1,
          'saunters': 1,
          'complains': 1,
          'expected': 1,
          'standing': 1,
          'ovation': 1,
          'nhe': 1,
          'responds': 1,
          'getting': 1,
          'damn': 1,
          'clever': 1,
          'sitting': 1,
          'time': 1,
          'nprince': 1,
          'wouldnt': 1,
          'even': 1,
          'let': 1,
          'innuendo': 1,
          'lame': 1,
          'king': 1,
          'horndogs': 1,
          'least': 1,
          'testament': 1,
          'first': 1,
          '30': 1,
          'survives': 1,
          'whole': 1,
          'naction': 1,
          'another': 1,
          'variation': 1,
          'unlikely': 1,
          'partners': 1,
          'buddy': 1,
          'flick': 1,
          'lugging': 1,
          'junkie': 1,
          'around': 1,
          'leads': 1,
          'worst': 1,
          'paired': 1,
          'acting': 1,
          'decade': 1,
          'dialogue': 1,
          'theyre': 1,
          'given': 1,
          'theres': 1,
          'much': 1,
          'room': 1,
          'improvement': 1,
          'nmy': 1,
          'favorite': 1,
          'feeling': 1,
          'effects': 1,
          'drug': 1,
          'withdrawal': 1,
          'feel': 1,
          'like': 1,
          'teeth': 1,
          'hollow': 1,
          'gums': 1,
          'made': 1,
          'dry': 1,
          'rubber': 1,
          'someones': 1,
          'trying': 1,
          'start': 1,
          'bonfire': 1,
          'back': 1,
          'bloody': 1,
          'head': 1,
          'njacksons': 1,
          'response': 1,
          'think': 1,
          'felt': 1,
          'way': 1,
          'nthey': 1,
          'called': 1,
          'love': 1,
          'nyoull': 1,
          'understand': 1,
          'say': 1,
          'watch': 1,
          'risk': 1,
          'nserving': 1,
          'world': 1,
          'nearly': 1,
          '125th': 1,
          'century': 1,
          'nneg': 1}),
 Counter({'cab': 7,
          'c': 6,
          'one': 4,
          'would': 4,
          'nits': 3,
          'token': 3,
          'guy': 3,
          'wants': 3,
          'able': 2,
          'gilbert': 2,
          '80s': 2,
          'usa': 2,
          'nite': 2,
          'movie': 2,
          'movies': 2,
          'cant': 2,
          'mr': 2,
          'busey': 2,
          'say': 2,
          'allstar': 2,
          'im': 2,
          'irene': 2,
          'cara': 2,
          'warfield': 2,
          'rodriguez': 2,
          'maher': 2,
          'much': 2,
          'forever': 2,
          'nd': 2,
          'go': 2,
          'drive': 2,
          'cabs': 2,
          'get': 2,
          'actually': 2,
          'living': 2,
          'baldwin': 2,
          'less': 2,
          'rescue': 2,
          'anyone': 1,
          '1983': 1,
          'forsee': 1,
          'latenight': 1,
          'cable': 1,
          'show': 1,
          'hosted': 1,
          'gottfried': 1,
          'showcasing': 1,
          'worst': 1,
          'films': 1,
          'theyd': 1,
          'agree': 1,
          'quintessential': 1,
          'childish': 1,
          'rrated': 1,
          'kids': 1,
          'love': 1,
          'see': 1,
          'edited': 1,
          'tv': 1,
          'also': 1,
          'pointless': 1,
          'almost': 1,
          'plotless': 1,
          'hardly': 1,
          'laughs': 1,
          'nand': 1,
          'strike': 1,
          'three': 1,
          'pairs': 1,
          'gary': 1,
          'ni': 1,
          'heard': 1,
          'cast': 1,
          'still': 1,
          'hoping': 1,
          'degree': 1,
          'facetiousness': 1,
          'statement': 1,
          'nwhen': 1,
          'thirdbilling': 1,
          'goes': 1,
          'twominute': 1,
          'appearance': 1,
          'famed': 1,
          'flashdancer': 1,
          'damn': 1,
          'thing': 1,
          'casts': 1,
          'nlikewise': 1,
          'appearances': 1,
          'marsha': 1,
          'roz': 1,
          'paul': 1,
          'politically': 1,
          'incorrect': 1,
          'host': 1,
          'bill': 1,
          'somebody': 1,
          'nappearing': 1,
          'pretty': 1,
          'opposite': 1,
          'effect': 1,
          'everyone': 1,
          'else': 1,
          'especially': 1,
          'gon': 1,
          'na': 1,
          'live': 1,
          'ensemble': 1,
          'comedy': 1,
          'joel': 1,
          'schumacher': 1,
          'direct': 1,
          'batman': 1,
          'bunch': 1,
          'misfits': 1,
          'nyou': 1,
          'feeling': 1,
          'police': 1,
          'academy': 1,
          'cadets': 1,
          'made': 1,
          'different': 1,
          'career': 1,
          'choice': 1,
          'result': 1,
          'except': 1,
          'interesting': 1,
          'characters': 1,
          'white': 1,
          'tight': 1,
          'blacks': 1,
          'take': 1,
          'world': 1,
          'jive': 1,
          'talker': 1,
          'named': 1,
          'tyrone': 1,
          'charlie': 1,
          'barnett': 1,
          'wears': 1,
          'hair': 1,
          'rollers': 1,
          'uses': 1,
          'word': 1,
          'honkey': 1,
          'possible': 1,
          'tough': 1,
          'mohawk': 1,
          'gold': 1,
          'chains': 1,
          'real': 1,
          'stretch': 1,
          'aspiring': 1,
          'musician': 1,
          'waiting': 1,
          'big': 1,
          'break': 1,
          'mexican': 1,
          'gigolo': 1,
          'woman': 1,
          'company': 1,
          'adam': 1,
          'nweve': 1,
          'seen': 1,
          'dozens': 1,
          'bad': 1,
          'comedies': 1,
          'nsome': 1,
          'fun': 1,
          'watch': 1,
          'funny': 1,
          'nthis': 1,
          'neither': 1,
          'nyoud': 1,
          'think': 1,
          'plenty': 1,
          'comedic': 1,
          'sparks': 1,
          'fly': 1,
          'assemblage': 1,
          'talent': 1,
          'whatever': 1,
          'falls': 1,
          'flat': 1,
          'continual': 1,
          'basis': 1,
          'culminating': 1,
          'usual': 1,
          'contrived': 1,
          'hollywood': 1,
          'finale': 1,
          'kidnapped': 1,
          'cabbies': 1,
          'shame': 1,
          'depths': 1,
          'stale': 1,
          'jokes': 1,
          'unoriginality': 1,
          'rightly': 1,
          'earned': 1,
          'position': 1,
          'nneg': 1}),
 Counter({'gilliam': 8,
          'movie': 6,
          'film': 6,
          'acid': 5,
          'vegas': 5,
          'cox': 4,
          'hard': 4,
          'las': 4,
          'made': 4,
          'would': 4,
          'thompsons': 4,
          'want': 4,
          'nbut': 4,
          'work': 4,
          'terry': 3,
          'idea': 3,
          'loathing': 3,
          'book': 3,
          'gonzo': 3,
          'johnny': 3,
          'del': 3,
          'toro': 3,
          'every': 3,
          'drug': 3,
          'see': 3,
          'alex': 2,
          'mushrooms': 2,
          'ride': 2,
          'ingesting': 2,
          'point': 2,
          'fear': 2,
          'wish': 2,
          'comic': 2,
          'performances': 2,
          'something': 2,
          'hunter': 2,
          'us': 2,
          'thompson': 2,
          'depp': 2,
          'came': 2,
          'duke': 2,
          'dr': 2,
          'two': 2,
          'hotel': 2,
          'one': 2,
          'meet': 2,
          'dont': 2,
          'dead': 2,
          'nit': 2,
          'exposed': 2,
          'comedy': 2,
          'nits': 2,
          'wrong': 2,
          'nthis': 2,
          'nthere': 2,
          'dialogue': 2,
          'youre': 2,
          'better': 2,
          'interesting': 2,
          'much': 2,
          'nancy': 2,
          'purpose': 2,
          'doesnt': 2,
          'written': 1,
          'tod': 1,
          'davies': 1,
          'tony': 1,
          'grisoni': 1,
          'ndirected': 1,
          'nive': 1,
          'always': 1,
          'preferred': 1,
          'blotter': 1,
          'ndropping': 1,
          'like': 1,
          'riding': 1,
          'roller': 1,
          'coaster': 1,
          'blindfolded': 1,
          'peaks': 1,
          'valleys': 1,
          'next': 1,
          'terrifying': 1,
          'decent': 1,
          'send': 1,
          'stomach': 1,
          'throat': 1,
          'long': 1,
          'last': 1,
          'nthen': 1,
          'theres': 1,
          'knot': 1,
          'gut': 1,
          'clenched': 1,
          'teeth': 1,
          'come': 1,
          'strychninelaced': 1,
          'dose': 1,
          'nmushrooms': 1,
          'hand': 1,
          'offer': 1,
          'psychedelic': 1,
          'equivalent': 1,
          'leisurely': 1,
          'ferris': 1,
          'wheel': 1,
          'steady': 1,
          'reassuring': 1,
          'assent': 1,
          'short': 1,
          'period': 1,
          'thrilling': 1,
          'motion': 1,
          'color': 1,
          'smooth': 1,
          'landing': 1,
          'nacid': 1,
          'daredevils': 1,
          'refined': 1,
          'seekers': 1,
          'joy': 1,
          'nmy': 1,
          'director': 1,
          'mushroom': 1,
          'nfull': 1,
          'shocking': 1,
          'sight': 1,
          'gags': 1,
          'aggressive': 1,
          'images': 1,
          'grotesque': 1,
          'certainly': 1,
          'offers': 1,
          'fans': 1,
          'experience': 1,
          'twisted': 1,
          'pharmacological': 1,
          'worldview': 1,
          'inside': 1,
          'enjoy': 1,
          'wellmade': 1,
          'produced': 1,
          'mixed': 1,
          'bag': 1,
          'nfear': 1,
          'tells': 1,
          'ostensibly': 1,
          'true': 1,
          'story': 1,
          'selfprofessed': 1,
          'journalist': 1,
          'hispanic': 1,
          'activist': 1,
          'attorney': 1,
          'oscar': 1,
          'zeta': 1,
          'actosta': 1,
          'benicio': 1,
          'cover': 1,
          'motorcycle': 1,
          'race': 1,
          'found': 1,
          'trapped': 1,
          'middle': 1,
          'district': 1,
          'attorneys': 1,
          'convention': 1,
          'conceivable': 1,
          'available': 1,
          'man': 1,
          'means': 1,
          '1971': 1,
          'noperating': 1,
          'pseudonyms': 1,
          'raoul': 1,
          'ngonzo': 1,
          'men': 1,
          'careen': 1,
          'mescaline': 1,
          'bender': 1,
          'hole': 1,
          'suite': 1,
          'binge': 1,
          'amyl': 1,
          'nitrite': 1,
          'cocaine': 1,
          'tequila': 1,
          'rainbow': 1,
          'multicolored': 1,
          'uppers': 1,
          'downers': 1,
          'nthey': 1,
          'terrorize': 1,
          'mostly': 1,
          'terrifies': 1,
          'nduke': 1,
          'hallucinates': 1,
          'giant': 1,
          'bats': 1,
          'way': 1,
          'town': 1,
          'attacked': 1,
          'horrifying': 1,
          'lizards': 1,
          'casino': 1,
          'lounge': 1,
          'ndr': 1,
          'becomes': 1,
          'enamored': 1,
          'thickbladed': 1,
          'hunting': 1,
          'knife': 1,
          'begs': 1,
          'throw': 1,
          'tape': 1,
          'player': 1,
          'bathtub': 1,
          'jefferson': 1,
          'airplanes': 1,
          'white': 1,
          'rabbit': 1,
          'reaches': 1,
          'climax': 1,
          'nand': 1,
          'guys': 1,
          'trash': 1,
          'rooms': 1,
          'rape': 1,
          'humiliate': 1,
          'leave': 1,
          'nthat': 1,
          'neither': 1,
          'ends': 1,
          'jail': 1,
          'testament': 1,
          'blind': 1,
          'luck': 1,
          'providence': 1,
          'depending': 1,
          'view': 1,
          'nthompsons': 1,
          'besides': 1,
          'hilarious': 1,
          'read': 1,
          'stood': 1,
          'test': 1,
          'time': 1,
          'important': 1,
          'historical': 1,
          'document': 1,
          'simultaneously': 1,
          '60s': 1,
          'culture': 1,
          'sham': 1,
          'place': 1,
          'american': 1,
          'dream': 1,
          'die': 1,
          'npontificate': 1,
          'illustrates': 1,
          'message': 1,
          'truth': 1,
          'stripped': 1,
          'bare': 1,
          'essentials': 1,
          'wrought': 1,
          'cheech': 1,
          'chong': 1,
          'nyoure': 1,
          'watch': 1,
          'ingest': 1,
          'lot': 1,
          'chemicals': 1,
          'laugh': 1,
          'results': 1,
          'take': 1,
          'drugs': 1,
          'fall': 1,
          'ntheres': 1,
          'nothing': 1,
          'concept': 1,
          'tries': 1,
          'frantic': 1,
          'sweaty': 1,
          'closeups': 1,
          'wideangle': 1,
          'lenses': 1,
          'dutch': 1,
          'tilts': 1,
          'otherworldly': 1,
          'lighting': 1,
          'schemes': 1,
          'times': 1,
          'really': 1,
          'put': 1,
          'convincing': 1,
          'representation': 1,
          'trip': 1,
          'screen': 1,
          'end': 1,
          'nmuch': 1,
          'comes': 1,
          'verbatim': 1,
          'priceless': 1,
          'observations': 1,
          'pressed': 1,
          'hear': 1,
          'digest': 1,
          'amidst': 1,
          'jumbled': 1,
          'camera': 1,
          'brings': 1,
          'strike': 1,
          'ndepp': 1,
          'plays': 1,
          'groucho': 1,
          'marks': 1,
          'filtered': 1,
          'george': 1,
          'c': 1,
          'scott': 1,
          'patton': 1,
          'gimmicky': 1,
          'performance': 1,
          'works': 1,
          'biting': 1,
          'satire': 1,
          'nin': 1,
          'several': 1,
          'puking': 1,
          'scenes': 1,
          'fares': 1,
          'also': 1,
          'mumbles': 1,
          'sputters': 1,
          'many': 1,
          'lines': 1,
          'weight': 1,
          'lost': 1,
          'nwatching': 1,
          'twenty': 1,
          'years': 1,
          'ago': 1,
          'dan': 1,
          'akroyd': 1,
          'john': 1,
          'belushi': 1,
          'leads': 1,
          'note': 1,
          'credited': 1,
          'cowriter': 1,
          'screenplay': 1,
          'originally': 1,
          'slated': 1,
          'direct': 1,
          'took': 1,
          'nas': 1,
          'fan': 1,
          'gilliams': 1,
          'choice': 1,
          'nsid': 1,
          'coxs': 1,
          'best': 1,
          'covered': 1,
          'essentially': 1,
          'subject': 1,
          'matter': 1,
          'able': 1,
          'pull': 1,
          'back': 1,
          'allow': 1,
          'characters': 1,
          'sid': 1,
          'vicious': 1,
          'spungen': 1,
          'carry': 1,
          'ngilliam': 1,
          'commits': 1,
          'compound': 1,
          'sin': 1,
          'overdirecting': 1,
          'uncertain': 1,
          'nwhat': 1,
          'kind': 1,
          'trying': 1,
          'make': 1,
          'anyway': 1,
          'try': 1,
          'cautionary': 1,
          'tale': 1,
          'broad': 1,
          'nif': 1,
          'considered': 1,
          'carefully': 1,
          'result': 1,
          'truly': 1,
          'funny': 1,
          'moments': 1,
          'good': 1,
          'enough': 1,
          'mood': 1,
          'might': 1,
          'get': 1,
          'kick': 1,
          'ni': 1,
          'however': 1,
          'recommend': 1,
          'watching': 1,
          'influence': 1,
          'favorite': 1,
          'controlled': 1,
          'substance': 1,
          'guarantee': 1,
          'enhance': 1,
          'effect': 1,
          'nneg': 1}),
 Counter({'half': 5,
          'lake': 4,
          'nthe': 3,
          'wouldnt': 3,
          'best': 2,
          'placid': 2,
          'think': 2,
          'fails': 2,
          'crocodile': 2,
          'eccentric': 2,
          'want': 2,
          'croc': 2,
          'also': 2,
          'betty': 2,
          'white': 2,
          'dont': 2,
          'thing': 1,
          '80': 1,
          'minutes': 1,
          'long': 1,
          'youre': 1,
          'glad': 1,
          'didnt': 1,
          'waste': 1,
          'hour': 1,
          'time': 1,
          'nits': 1,
          'nothing': 1,
          'bad': 1,
          'ripoff': 1,
          'jaws': 1,
          'thats': 1,
          'kind': 1,
          'nit': 1,
          'written': 1,
          'david': 1,
          'e': 1,
          'kelly': 1,
          'ally': 1,
          'mcbeal': 1,
          'horrorcomedy': 1,
          'miserably': 1,
          'ni': 1,
          'never': 1,
          'scared': 1,
          'laughed': 1,
          'even': 1,
          'comparison': 1,
          'snake': 1,
          'anaconda': 1,
          'plot': 1,
          'begins': 1,
          'man': 1,
          'eaten': 1,
          'giant': 1,
          'black': 1,
          'maine': 1,
          'nthat': 1,
          'brings': 1,
          'local': 1,
          'sheriff': 1,
          'brendan': 1,
          'gleeson': 1,
          'fishandgame': 1,
          'warden': 1,
          'bill': 1,
          'pulman': 1,
          'investigate': 1,
          'nalso': 1,
          'paleontologist': 1,
          'bridget': 1,
          'fonda': 1,
          'new': 1,
          'york': 1,
          'sent': 1,
          'look': 1,
          'tooth': 1,
          'millionairecrocodile': 1,
          'lover': 1,
          'oliver': 1,
          'platt': 1,
          'flies': 1,
          'wants': 1,
          'swim': 1,
          'beside': 1,
          'beast': 1,
          'nsoon': 1,
          'tension': 1,
          'everybody': 1,
          'people': 1,
          'kill': 1,
          'save': 1,
          'ntheres': 1,
          'old': 1,
          'lady': 1,
          'lives': 1,
          'secrets': 1,
          'nas': 1,
          'mentioned': 1,
          'kelley': 1,
          'director': 1,
          'steve': 1,
          'minor': 1,
          'h20': 1,
          'go': 1,
          'serious': 1,
          'approach': 1,
          'towards': 1,
          'material': 1,
          'anything': 1,
          'sly': 1,
          'satirical': 1,
          'witty': 1,
          'say': 1,
          'either': 1,
          'character': 1,
          'completely': 1,
          'unfunny': 1,
          'none': 1,
          'characters': 1,
          'really': 1,
          'interesting': 1,
          'theyre': 1,
          'basically': 1,
          'idiots': 1,
          'nif': 1,
          'brains': 1,
          'much': 1,
          'challenge': 1,
          'catch': 1,
          'put': 1,
          'situations': 1,
          'nbut': 1,
          'smart': 1,
          'movie': 1,
          'nbasically': 1,
          'undiscovered': 1,
          'nneg': 1}),
 Counter({'one': 6,
          'movie': 3,
          'away': 3,
          'film': 3,
          'judd': 3,
          'times': 2,
          'tv': 2,
          'entire': 2,
          'given': 2,
          'thought': 2,
          'end': 2,
          'tommy': 2,
          'lee': 2,
          'jones': 2,
          'drama': 2,
          'double': 2,
          'jeopardy': 2,
          'offers': 2,
          'im': 2,
          'watching': 2,
          'less': 2,
          'movies': 2,
          'material': 2,
          'unless': 1,
          'youre': 1,
          'people': 1,
          'seen': 1,
          'preview': 1,
          'thousand': 1,
          'theaters': 1,
          'ni': 1,
          'tell': 1,
          'thing': 1,
          'gave': 1,
          'nwhy': 1,
          'someone': 1,
          'would': 1,
          'want': 1,
          'base': 1,
          'premise': 1,
          'give': 1,
          'crucial': 1,
          'detail': 1,
          'trailers': 1,
          'beyond': 1,
          'nhowever': 1,
          'hadnt': 1,
          'wouldve': 1,
          'still': 1,
          'suprisingly': 1,
          'devoid': 1,
          'suspense': 1,
          'subject': 1,
          'matter': 1,
          'nobviously': 1,
          'producers': 1,
          'could': 1,
          'remake': 1,
          'deep': 1,
          'ocean': 1,
          'throw': 1,
          'couple': 1,
          'cliches': 1,
          'call': 1,
          'action': 1,
          'n': 1,
          'solid': 1,
          'acting': 1,
          'ashley': 1,
          'got': 1,
          'first': 1,
          'billing': 1,
          'even': 1,
          'though': 1,
          'didnt': 1,
          'see': 1,
          'screen': 1,
          'half': 1,
          'much': 1,
          'nit': 1,
          'also': 1,
          'genuinely': 1,
          'funny': 1,
          'clever': 1,
          'fulloftension': 1,
          'moments': 1,
          'favorite': 1,
          'waking': 1,
          'coffin': 1,
          'none': 1,
          'salvage': 1,
          'insanely': 1,
          'predictable': 1,
          'plot': 1,
          'nhalf': 1,
          'time': 1,
          'wondering': 1,
          'whether': 1,
          'overhyped': 1,
          'miniseries': 1,
          'always': 1,
          'turn': 1,
          'exciting': 1,
          'advertised': 1,
          'njudging': 1,
          'beginning': 1,
          'huge': 1,
          'chunk': 1,
          'middle': 1,
          'might': 1,
          'special': 1,
          'hallmark': 1,
          'presentation': 1,
          'nthe': 1,
          'stretching': 1,
          'almost': 1,
          'two': 1,
          'hour': 1,
          'long': 1,
          '30': 1,
          'minutes': 1,
          'worth': 1,
          'nimplausible': 1,
          'nloose': 1,
          'interpretation': 1,
          'amendments': 1,
          'aside': 1,
          'many': 1,
          'possible': 1,
          'nthat': 1,
          'kind': 1,
          'stuff': 1,
          'excusable': 1,
          'popcorn': 1,
          'like': 1,
          'tries': 1,
          'pass': 1,
          'serious': 1,
          'neverything': 1,
          'seems': 1,
          'dragged': 1,
          'overplayed': 1,
          'nwhen': 1,
          'shouldve': 1,
          'kept': 1,
          'us': 1,
          'dark': 1,
          'let': 1,
          'cat': 1,
          'bag': 1,
          'early': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'ni': 6,
          'film': 5,
          'house': 4,
          'scare': 4,
          'nthe': 4,
          'got': 4,
          'nit': 3,
          'like': 3,
          'didnt': 3,
          'least': 3,
          'would': 3,
          'people': 3,
          'nthere': 3,
          'times': 3,
          'things': 3,
          'nand': 3,
          'haunted': 2,
          'hill': 2,
          'advertising': 2,
          'stupid': 2,
          'well': 2,
          'trust': 2,
          'see': 2,
          'nthat': 2,
          'scary': 2,
          'flat': 2,
          'seen': 2,
          'halloween': 2,
          'downright': 2,
          'laughable': 2,
          'wasnt': 2,
          'going': 2,
          'situations': 2,
          'utterly': 2,
          'good': 2,
          'n': 2,
          'fell': 2,
          'invited': 2,
          'party': 2,
          'couple': 2,
          'evil': 2,
          'better': 2,
          'inevitable': 2,
          'strangers': 2,
          'together': 2,
          'last': 2,
          'one': 2,
          'nyes': 2,
          'get': 2,
          'nbut': 2,
          'course': 2,
          'three': 2,
          'enjoyed': 2,
          'brosnan': 2,
          'machine': 2,
          'waiting': 2,
          'end': 2,
          'epiphany': 1,
          'today': 1,
          'occurred': 1,
          'watching': 1,
          'follows': 1,
          'trailer': 1,
          'makes': 1,
          'look': 1,
          'trashy': 1,
          'guess': 1,
          'nchances': 1,
          'truth': 1,
          'ntoo': 1,
          'bad': 1,
          'instincts': 1,
          'somethingortheother': 1,
          'possessed': 1,
          'blame': 1,
          'sudden': 1,
          'craving': 1,
          'anticipation': 1,
          'sleepy': 1,
          'hollow': 1,
          'dogma': 1,
          'started': 1,
          'late': 1,
          'afternoon': 1,
          'schedule': 1,
          'nan': 1,
          'hour': 1,
          'angel': 1,
          'buffy': 1,
          'scarier': 1,
          'doozy': 1,
          'tries': 1,
          'shtick': 1,
          'falls': 1,
          'face': 1,
          'wish': 1,
          'id': 1,
          'nat': 1,
          'forgiving': 1,
          'nhey': 1,
          'tis': 1,
          'season': 1,
          'albeit': 1,
          'confusing': 1,
          'dizzying': 1,
          'nauseating': 1,
          'first': 1,
          'soon': 1,
          'horror': 1,
          'repetitive': 1,
          'obviously': 1,
          'anywhere': 1,
          'nnow': 1,
          'truly': 1,
          'appreciate': 1,
          'films': 1,
          'scream': 1,
          'old': 1,
          'hitchcock': 1,
          'scariness': 1,
          'stems': 1,
          'somewhat': 1,
          'realistic': 1,
          'nthats': 1,
          'spooks': 1,
          'fact': 1,
          'could': 1,
          'happen': 1,
          'someone': 1,
          'know': 1,
          'logical': 1,
          'precedent': 1,
          'want': 1,
          'us': 1,
          'nsure': 1,
          'unpredictable': 1,
          'thats': 1,
          'different': 1,
          'nonsensical': 1,
          'nhohh': 1,
          'hand': 1,
          'nwell': 1,
          'lets': 1,
          'say': 1,
          'chair': 1,
          'laughing': 1,
          'ohsocleverly': 1,
          'revealed': 1,
          'everyone': 1,
          'related': 1,
          'psycho': 1,
          'doctors': 1,
          'died': 1,
          'decades': 1,
          'ago': 1,
          'nriiiiight': 1,
          'nyknow': 1,
          'sends': 1,
          'chills': 1,
          'spine': 1,
          'nyeah': 1,
          'njust': 1,
          'wet': 1,
          'pants': 1,
          'told': 1,
          'nooooooo': 1,
          'nhint': 1,
          'blood': 1,
          'guts': 1,
          'work': 1,
          'nsooner': 1,
          'later': 1,
          'start': 1,
          'tell': 1,
          'ketchup': 1,
          'props': 1,
          'youve': 1,
          'come': 1,
          'something': 1,
          'many': 1,
          'weve': 1,
          'plot': 1,
          'developments': 1,
          'unwittingly': 1,
          'trapped': 1,
          'turning': 1,
          'manifesting': 1,
          'dead': 1,
          'coming': 1,
          'back': 1,
          'neach': 1,
          'predictable': 1,
          'nwhy': 1,
          'fools': 1,
          'stay': 1,
          'place': 1,
          'anyways': 1,
          'nsheesh': 1,
          'nwas': 1,
          'grossed': 1,
          'ndid': 1,
          'spooked': 1,
          'really': 1,
          'disturbed': 1,
          'nwhen': 1,
          'werent': 1,
          'random': 1,
          'scares': 1,
          'reason': 1,
          'visual': 1,
          'effect': 1,
          'either': 1,
          'filled': 1,
          'drab': 1,
          'dialogue': 1,
          'characters': 1,
          'incredibly': 1,
          'cliched': 1,
          'nnot': 1,
          'mention': 1,
          'annoying': 1,
          'nyouve': 1,
          'bunch': 1,
          'nowhere': 1,
          'lives': 1,
          'theyre': 1,
          'dumb': 1,
          'enough': 1,
          'go': 1,
          'stranger': 1,
          'provided': 1,
          'win': 1,
          'million': 1,
          'dollars': 1,
          'survive': 1,
          'night': 1,
          'njeez': 1,
          'thought': 1,
          'may': 1,
          'already': 1,
          'winner': 1,
          'anymore': 1,
          'gals': 1,
          'babes': 1,
          'wonder': 1,
          'earth': 1,
          'geoffrey': 1,
          'rush': 1,
          'shine': 1,
          'ended': 1,
          'nkeep': 1,
          'geoff': 1,
          'youll': 1,
          'qualify': 1,
          'next': 1,
          'batman': 1,
          'venture': 1,
          'single': 1,
          'person': 1,
          'chris': 1,
          'kattan': 1,
          'cracks': 1,
          'famke': 1,
          'jansen': 1,
          'sp': 1,
          'nbecause': 1,
          'reminds': 1,
          'delectable': 1,
          'npierce': 1,
          'hey': 1,
          'willingly': 1,
          'endured': 1,
          'dantes': 1,
          'peak': 1,
          'nall': 1,
          'right': 1,
          'concede': 1,
          'perverted': 1,
          'little': 1,
          'amusement': 1,
          'park': 1,
          'beginning': 1,
          'probably': 1,
          'wont': 1,
          'ride': 1,
          'rollercoaster': 1,
          'used': 1,
          'drive': 1,
          'geoffreys': 1,
          'character': 1,
          'mad': 1,
          'dont': 1,
          'even': 1,
          'remember': 1,
          'names': 1,
          'fishtank': 1,
          'naked': 1,
          'wimmin': 1,
          'kept': 1,
          'twist': 1,
          'wouldnt': 1,
          'redeemed': 1,
          'made': 1,
          'feel': 1,
          'opted': 1,
          'beautiful': 1,
          'sunrise': 1,
          'ending': 1,
          'nthank': 1,
          'god': 1,
          'add': 1,
          'kiss': 1,
          'puked': 1,
          'ngod': 1,
          'hope': 1,
          'nneg': 1}),
 Counter({'steal': 2,
          'play': 2,
          'another': 2,
          'run': 2,
          'n': 2,
          'explosion': 2,
          'movie': 2,
          'director': 1,
          'andrew': 1,
          'davis': 1,
          'reworks': 1,
          'fugitive': 1,
          'formula': 1,
          'results': 1,
          'exciting': 1,
          'last': 1,
          'film': 1,
          'dreadful': 1,
          'comedy': 1,
          'big': 1,
          'little': 1,
          'funny': 1,
          'nkeanu': 1,
          'id': 1,
          'rather': 1,
          'music': 1,
          'action': 1,
          'hero': 1,
          'reeves': 1,
          'grad': 1,
          'student': 1,
          'along': 1,
          'superfluous': 1,
          'sidekick': 1,
          'rachel': 1,
          'weisz': 1,
          'framed': 1,
          'sabotaged': 1,
          'science': 1,
          'experiment': 1,
          'vaporized': 1,
          'eight': 1,
          'chicago': 1,
          'city': 1,
          'blocks': 1,
          'mushroomcloud': 1,
          'knockout': 1,
          'easily': 1,
          'best': 1,
          'part': 1,
          'one': 1,
          'audience': 1,
          'member': 1,
          'succinctly': 1,
          'summed': 1,
          'whoa': 1,
          'nfalse': 1,
          'information': 1,
          'implicates': 1,
          'involvement': 1,
          'boy': 1,
          'girl': 1,
          'soon': 1,
          'fleeing': 1,
          'open': 1,
          'drawbridges': 1,
          'across': 1,
          'icy': 1,
          'lakes': 1,
          'corridors': 1,
          'power': 1,
          'topsecret': 1,
          'underground': 1,
          'energy': 1,
          'facility': 1,
          'naiding': 1,
          'abetting': 1,
          'teams': 1,
          'shady': 1,
          'mentor': 1,
          'played': 1,
          'excellentbutso': 1,
          'performance': 1,
          'morgan': 1,
          'freeman': 1,
          'brit': 1,
          'brian': 1,
          'cox': 1,
          'also': 1,
          'behindthescenes': 1,
          'bad': 1,
          'guy': 1,
          'nhe': 1,
          'fun': 1,
          'fiddling': 1,
          'southern': 1,
          'accent': 1,
          'nunfunny': 1,
          'overscored': 1,
          'without': 1,
          'single': 1,
          'shred': 1,
          'suspense': 1,
          'chain': 1,
          'reaction': 1,
          'summer': 1,
          'walk': 1,
          'nif': 1,
          'make': 1,
          'end': 1,
          'mess': 1,
          'crosscutting': 1,
          'involving': 1,
          'imminent': 1,
          'youll': 1,
          'hear': 1,
          'somebody': 1,
          'say': 1,
          'guess': 1,
          'time': 1,
          'go': 1,
          'nheed': 1,
          'warning': 1,
          'nneg': 1}),
 Counter({'gloria': 10,
          'film': 6,
          'one': 5,
          'director': 4,
          'nicky': 4,
          'stone': 4,
          'thought': 3,
          'movie': 3,
          'picture': 3,
          'even': 3,
          'men': 3,
          'boy': 3,
          'money': 3,
          'people': 3,
          'dont': 3,
          'nalthough': 3,
          'sidney': 2,
          'cassavetes': 2,
          'driving': 2,
          'theatre': 2,
          'life': 2,
          'nwhen': 2,
          'ni': 2,
          'saw': 2,
          'begins': 2,
          'mobsters': 2,
          'disc': 2,
          'father': 2,
          'sharon': 2,
          'crime': 2,
          'refuses': 2,
          'type': 2,
          'always': 2,
          'involved': 2,
          'never': 2,
          'stuck': 2,
          'doubt': 2,
          'really': 2,
          'considerably': 2,
          'story': 2,
          'could': 2,
          'entertaining': 2,
          'mind': 2,
          'lumet': 2,
          'watch': 2,
          'turning': 2,
          'around': 2,
          'little': 2,
          'better': 2,
          'turns': 2,
          'actors': 2,
          'make': 2,
          'actress': 2,
          'good': 2,
          'last': 2,
          'blatantly': 1,
          'obvious': 1,
          'signs': 1,
          'oftenacclaimed': 1,
          'lumets': 1,
          'remake': 1,
          '1980': 1,
          'john': 1,
          'absolutely': 1,
          'effect': 1,
          'occurred': 1,
          'home': 1,
          'nsuddenly': 1,
          'realized': 1,
          'since': 1,
          'stood': 1,
          'seat': 1,
          'five': 1,
          'minutes': 1,
          'invested': 1,
          'nearly': 1,
          'two': 1,
          'hours': 1,
          'arent': 1,
          'supposed': 1,
          'think': 1,
          'conversation': 1,
          'acquaintances': 1,
          'watched': 1,
          'particular': 1,
          '2': 1,
          'someone': 1,
          'wouldnt': 1,
          'anything': 1,
          'talk': 1,
          'first': 1,
          'place': 1,
          'nto': 1,
          'sure': 1,
          'stirring': 1,
          'rather': 1,
          'poignant': 1,
          'prologue': 1,
          'sevenyearold': 1,
          'boys': 1,
          'family': 1,
          'brutally': 1,
          'gunned': 1,
          'search': 1,
          'incriminating': 1,
          'evidence': 1,
          'nright': 1,
          'broke': 1,
          'course': 1,
          'gave': 1,
          'escape': 1,
          'neventually': 1,
          'named': 1,
          'nunez': 1,
          'jeanluke': 1,
          'figueroa': 1,
          'caught': 1,
          'taken': 1,
          'back': 1,
          'apartment': 1,
          'nmeanwhile': 1,
          'gotten': 1,
          'prison': 1,
          'didnt': 1,
          'commit': 1,
          'returns': 1,
          'exboyfriend': 1,
          'jeremy': 1,
          'northam': 1,
          'recieve': 1,
          'promised': 1,
          'covering': 1,
          'give': 1,
          'hears': 1,
          'group': 1,
          'talking': 1,
          'killing': 1,
          'leaves': 1,
          'order': 1,
          'save': 1,
          'holding': 1,
          'gunpoint': 1,
          'stealing': 1,
          'forcing': 1,
          'strip': 1,
          'nude': 1,
          'ngloria': 1,
          'fasttalking': 1,
          'smartmouthed': 1,
          'new': 1,
          'yorker': 1,
          'seems': 1,
          'get': 1,
          'wrong': 1,
          'expected': 1,
          'kid': 1,
          'heart': 1,
          'gold': 1,
          'trying': 1,
          'protect': 1,
          'quickly': 1,
          'form': 1,
          'close': 1,
          'bond': 1,
          'nthe': 1,
          'previous': 1,
          'incarnation': 1,
          'starring': 1,
          'luminous': 1,
          'gena': 1,
          'rowlands': 1,
          'remains': 1,
          'unseen': 1,
          'superior': 1,
          'though': 1,
          'cant': 1,
          'imagine': 1,
          'dull': 1,
          'transformed': 1,
          'regardless': 1,
          'stars': 1,
          'nthere': 1,
          'closely': 1,
          'original': 1,
          'simply': 1,
          'lifeless': 1,
          'occasional': 1,
          'laugh': 1,
          'popping': 1,
          'isnt': 1,
          'completely': 1,
          'unbearable': 1,
          'liked': 1,
          'example': 1,
          'funny': 1,
          'climactic': 1,
          'sequence': 1,
          'deciding': 1,
          'whether': 1,
          'leave': 1,
          'school': 1,
          'left': 1,
          'keeps': 1,
          'car': 1,
          'ways': 1,
          'slamming': 1,
          'brakes': 1,
          'nthese': 1,
          'bright': 1,
          'moments': 1,
          'however': 1,
          'appear': 1,
          'long': 1,
          'far': 1,
          'majority': 1,
          'deals': 1,
          'budding': 1,
          'relationship': 1,
          'painfully': 1,
          'predictable': 1,
          'bythenumbers': 1,
          'nthroughout': 1,
          'repeatedly': 1,
          'asking': 1,
          'question': 1,
          'cares': 1,
          'nas': 1,
          'adopted': 1,
          'overthetop': 1,
          'brooklyn': 1,
          'accent': 1,
          'honestly': 1,
          'doesnt': 1,
          'sound': 1,
          'realistic': 1,
          'nin': 1,
          'beginning': 1,
          'fact': 1,
          'amazed': 1,
          'amateurish': 1,
          'stones': 1,
          'performance': 1,
          'progressed': 1,
          'got': 1,
          'comic': 1,
          'flare': 1,
          'ignored': 1,
          'njeanluke': 1,
          'figeroa': 1,
          'fine': 1,
          'natural': 1,
          'usual': 1,
          'child': 1,
          'precocious': 1,
          'want': 1,
          'gag': 1,
          'nall': 1,
          'appeared': 1,
          'wasted': 1,
          'none': 1,
          'cathy': 1,
          'moriarty': 1,
          'right': 1,
          'billed': 1,
          'fourth': 1,
          'scene': 1,
          'glorias': 1,
          'friend': 1,
          'help': 1,
          'nsony': 1,
          'studio': 1,
          'released': 1,
          'obviously': 1,
          'faith': 1,
          'blame': 1,
          'nthey': 1,
          'declined': 1,
          'screen': 1,
          'critics': 1,
          'sign': 1,
          'particularly': 1,
          'highprofile': 1,
          'much': 1,
          'makes': 1,
          'determine': 1,
          'look': 1,
          'spectacular': 1,
          'dreams': 1,
          'failed': 1,
          'top': 1,
          '10': 1,
          'week': 1,
          'suspicion': 1,
          'going': 1,
          'vanish': 1,
          'theaters': 1,
          'faster': 1,
          'ishtar': 1,
          'judging': 1,
          'opening': 1,
          'night': 1,
          '7': 1,
          '00': 1,
          'p': 1,
          'showing': 1,
          'ten': 1,
          'fifteen': 1,
          'present': 1,
          'counting': 1,
          'impressive': 1,
          '1995s': 1,
          'casino': 1,
          '1996s': 1,
          'dance': 1,
          'believe': 1,
          'respectable': 1,
          'reasoning': 1,
          'cliched': 1,
          'worth': 1,
          'remaking': 1,
          'matter': 1,
          'columbia': 1,
          'pictures': 1,
          'agreed': 1,
          'finance': 1,
          'making': 1,
          'actually': 1,
          'looked': 1,
          'like': 1,
          'might': 1,
          'inkling': 1,
          'chance': 1,
          'successful': 1,
          'nneg': 1}),
 Counter({'us': 13,
          'characters': 12,
          'film': 10,
          'one': 10,
          'nthe': 8,
          'shots': 5,
          'sex': 5,
          'cristoffer': 5,
          'without': 5,
          'way': 4,
          'think': 4,
          'could': 4,
          'sexual': 4,
          'gives': 4,
          'like': 4,
          'body': 3,
          'word': 3,
          'ni': 3,
          'seem': 3,
          'next': 3,
          'encounter': 3,
          'anything': 3,
          'love': 3,
          'idiotic': 3,
          'nthis': 3,
          'isnt': 3,
          'two': 3,
          'nit': 3,
          'may': 3,
          'possible': 3,
          'boogie': 3,
          'nights': 3,
          'concern': 2,
          'act': 2,
          'review': 2,
          'come': 2,
          'across': 2,
          'another': 2,
          'boring': 2,
          'movie': 2,
          'makes': 2,
          'play': 2,
          'nbody': 2,
          'normally': 2,
          'nits': 2,
          'seemed': 2,
          'message': 2,
          'kind': 2,
          'treated': 2,
          'nothing': 2,
          'say': 2,
          'dont': 2,
          'directly': 2,
          'nthey': 2,
          'equals': 2,
          'violence': 2,
          'yes': 2,
          'movies': 2,
          'get': 2,
          'plot': 2,
          'night': 2,
          'pleasure': 2,
          'would': 2,
          'go': 2,
          'actors': 2,
          'set': 2,
          'sensitive': 2,
          'gets': 2,
          'lines': 2,
          'director': 2,
          'insight': 2,
          'f': 2,
          'side': 2,
          'ounce': 2,
          'none': 2,
          'reason': 2,
          'manner': 2,
          'shows': 2,
          'much': 2,
          'rape': 2,
          'versions': 2,
          'done': 2,
          'care': 2,
          'anderson': 2,
          'though': 2,
          'gave': 2,
          'showed': 2,
          'nhe': 2,
          'prereview': 1,
          'note': 1,
          'seeing': 1,
          'forced': 1,
          'refer': 1,
          'particular': 1,
          'innumerable': 1,
          'times': 1,
          'throughout': 1,
          'duration': 1,
          'nbecause': 1,
          'try': 1,
          'vary': 1,
          'descriptions': 1,
          'meaning': 1,
          'offended': 1,
          'pejorative': 1,
          'terms': 1,
          'name': 1,
          'jerry': 1,
          'falwell': 1,
          'kindly': 1,
          'invited': 1,
          'hit': 1,
          'x': 1,
          'left': 1,
          'corner': 1,
          'screen': 1,
          'happens': 1,
          'comprehend': 1,
          'fret': 1,
          'likely': 1,
          'referring': 1,
          'wed': 1,
          'agree': 1,
          'used': 1,
          'incessantly': 1,
          'becomes': 1,
          'bit': 1,
          'monotonous': 1,
          'hope': 1,
          'appreciate': 1,
          'attempt': 1,
          'liven': 1,
          'potentially': 1,
          'nthough': 1,
          'steve': 1,
          'forbes': 1,
          'flat': 1,
          'tax': 1,
          'plan': 1,
          'lively': 1,
          'watching': 1,
          'naked': 1,
          'mathew': 1,
          'mconaughy': 1,
          'bongos': 1,
          'high': 1,
          'god': 1,
          'knows': 1,
          'frightened': 1,
          'coitus': 1,
          'scenes': 1,
          'copulation': 1,
          'filmed': 1,
          'ominously': 1,
          'youd': 1,
          'expect': 1,
          'see': 1,
          'violent': 1,
          'attack': 1,
          'people': 1,
          'screwing': 1,
          'seek': 1,
          'talk': 1,
          'nthese': 1,
          'things': 1,
          'sometimes': 1,
          'spend': 1,
          'every': 1,
          'waking': 1,
          'moment': 1,
          'pondering': 1,
          'simplicities': 1,
          'acts': 1,
          'ntheir': 1,
          'lives': 1,
          'center': 1,
          'around': 1,
          'depressed': 1,
          'fucking': 1,
          'look': 1,
          'forward': 1,
          'busy': 1,
          'workweek': 1,
          'nat': 1,
          'core': 1,
          'thing': 1,
          'picture': 1,
          'really': 1,
          'progressive': 1,
          'church': 1,
          'groups': 1,
          'showing': 1,
          'middle': 1,
          'schoolers': 1,
          'order': 1,
          'turn': 1,
          'coition': 1,
          'nmichael': 1,
          'directed': 1,
          'gia': 1,
          'bumping': 1,
          'uglies': 1,
          'evil': 1,
          'moralist': 1,
          'new': 1,
          'nhis': 1,
          'communicate': 1,
          'interest': 1,
          'opportunity': 1,
          'let': 1,
          'inner': 1,
          'thoughts': 1,
          'speaking': 1,
          'camera': 1,
          'voice': 1,
          'simplistic': 1,
          'platitudes': 1,
          'nhuh': 1,
          'nand': 1,
          'complex': 1,
          'observations': 1,
          'stupid': 1,
          'shallow': 1,
          'registering': 1,
          'concerns': 1,
          'vapid': 1,
          'sexed': 1,
          'twentysomethings': 1,
          'hunt': 1,
          'carnal': 1,
          'math': 1,
          'morning': 1,
          'events': 1,
          'nwe': 1,
          'meet': 1,
          'speak': 1,
          'confiding': 1,
          'ruminations': 1,
          'intimacy': 1,
          'giving': 1,
          'pros': 1,
          'cons': 1,
          'nim': 1,
          'trying': 1,
          'clever': 1,
          'witty': 1,
          'honestly': 1,
          'hardly': 1,
          'remember': 1,
          'apart': 1,
          'others': 1,
          'nwith': 1,
          'exception': 1,
          'trent': 1,
          'played': 1,
          'ron': 1,
          'livingston': 1,
          'bargain': 1,
          'basement': 1,
          'patrick': 1,
          'bateman': 1,
          'rest': 1,
          'fade': 1,
          'patchwork': 1,
          'fake': 1,
          'breasts': 1,
          'defined': 1,
          'abs': 1,
          'pearly': 1,
          'white': 1,
          'teeth': 1,
          'creamy': 1,
          'flawless': 1,
          'skin': 1,
          'vaguely': 1,
          'recall': 1,
          'brad': 1,
          'rowe': 1,
          'character': 1,
          'worst': 1,
          'nin': 1,
          'confessionals': 1,
          'films': 1,
          'everything': 1,
          'headache': 1,
          'commercial': 1,
          'blurry': 1,
          'slo': 1,
          'mos': 1,
          'dramatic': 1,
          'head': 1,
          'turning': 1,
          'fact': 1,
          'point': 1,
          'pulitzer': 1,
          'prize': 1,
          'completely': 1,
          'baffles': 1,
          'made': 1,
          'iota': 1,
          'intelligence': 1,
          'generation': 1,
          'tag': 1,
          'line': 1,
          'claims': 1,
          'defining': 1,
          'nif': 1,
          'meant': 1,
          'twentysometyhings': 1,
          'kobsessed': 1,
          'fine': 1,
          'problem': 1,
          'tries': 1,
          'persuade': 1,
          'certain': 1,
          'nadditionally': 1,
          'even': 1,
          'entertaining': 1,
          'indulge': 1,
          'buggery': 1,
          'sexiness': 1,
          'realism': 1,
          'takes': 1,
          'place': 1,
          'outside': 1,
          'club': 1,
          'chain': 1,
          'link': 1,
          'fence': 1,
          'suddenly': 1,
          'vigorous': 1,
          'intercourse': 1,
          'apparent': 1,
          'happen': 1,
          'standing': 1,
          'alas': 1,
          'easy': 1,
          'kidding': 1,
          'course': 1,
          'erotic': 1,
          'real': 1,
          'doesnt': 1,
          'feel': 1,
          'authentic': 1,
          'nevery': 1,
          'k': 1,
          'scene': 1,
          'many': 1,
          'unsexy': 1,
          'fornication': 1,
          'dirtier': 1,
          'scummy': 1,
          'porno': 1,
          'along': 1,
          'fails': 1,
          'show': 1,
          'making': 1,
          'hate': 1,
          'actually': 1,
          'resulting': 1,
          'search': 1,
          'nookie': 1,
          'take': 1,
          'cookie': 1,
          'leaves': 1,
          'several': 1,
          'tedious': 1,
          'follow': 1,
          'main': 1,
          'ado': 1,
          'occurred': 1,
          'separate': 1,
          'consensual': 1,
          'young': 1,
          'actress': 1,
          'playing': 1,
          'victim': 1,
          'shirt': 1,
          'torn': 1,
          'topic': 1,
          'interestingly': 1,
          'explored': 1,
          'intelligently': 1,
          'memory': 1,
          'serves': 1,
          'cant': 1,
          'saw': 1,
          'accused': 1,
          'overrated': 1,
          '80s': 1,
          'wall': 1,
          'street': 1,
          'nunfortunately': 1,
          'nobody': 1,
          'writer': 1,
          'nearly': 1,
          'wandered': 1,
          'noxious': 1,
          '90210': 1,
          'spin': 1,
          'npaul': 1,
          'thomas': 1,
          'approached': 1,
          'similar': 1,
          'succeeded': 1,
          'similarly': 1,
          'moralistic': 1,
          'different': 1,
          'viewpoints': 1,
          'lifestyle': 1,
          'porn': 1,
          'enticed': 1,
          'fallout': 1,
          'decision': 1,
          'heart': 1,
          'ncristoffer': 1,
          'raging': 1,
          'hormones': 1,
          'preaches': 1,
          'using': 1,
          'preach': 1,
          'nwhy': 1,
          'direct': 1,
          'public': 1,
          'service': 1,
          'announcement': 1,
          'perils': 1,
          'hittin': 1,
          'skins': 1,
          'ncristofer': 1,
          'helping': 1,
          'leering': 1,
          'exploitation': 1,
          'nneg': 1}),
 Counter({'burn': 12,
          'film': 11,
          'hollywood': 9,
          'eszterhas': 7,
          'alan': 5,
          'smithee': 5,
          'satire': 4,
          'bad': 4,
          'even': 4,
          'references': 4,
          'every': 3,
          'show': 3,
          'nthe': 3,
          'like': 3,
          'everyone': 3,
          'available': 2,
          'life': 2,
          'excess': 2,
          'ego': 2,
          'nif': 2,
          'screen': 2,
          'one': 2,
          'nit': 2,
          'already': 2,
          'title': 2,
          'director': 2,
          'hiller': 2,
          'directors': 2,
          'word': 2,
          'disaster': 2,
          'enough': 2,
          'called': 2,
          'whoopi': 2,
          'producer': 2,
          'entire': 2,
          'things': 2,
          'nits': 2,
          'single': 2,
          'makes': 2,
          'joke': 2,
          'times': 2,
          'character': 2,
          'time': 2,
          'black': 2,
          'brothers': 2,
          'identified': 2,
          'new': 2,
          'desperate': 2,
          'attempt': 2,
          'credits': 2,
          'convince': 2,
          'involved': 2,
          'im': 1,
          'guessing': 1,
          'evidence': 1,
          'great': 1,
          'guess': 1,
          'began': 1,
          'insider': 1,
          'stupidity': 1,
          'powermongering': 1,
          'ended': 1,
          'ranks': 1,
          'spectacularly': 1,
          'ironic': 1,
          'unintentional': 1,
          'jokes': 1,
          'history': 1,
          'welldocumented': 1,
          'original': 1,
          'became': 1,
          'problem': 1,
          'miserable': 1,
          'test': 1,
          'screenings': 1,
          'forced': 1,
          'recuts': 1,
          'arthur': 1,
          'prompting': 1,
          'opt': 1,
          'guildmandated': 1,
          'pseudonym': 1,
          'nthat': 1,
          'left': 1,
          'hands': 1,
          'writer': 1,
          'joe': 1,
          'humorless': 1,
          'hack': 1,
          'ever': 1,
          'put': 1,
          'finger': 1,
          'processor': 1,
          'nand': 1,
          'could': 1,
          'smell': 1,
          'brewing': 1,
          'youre': 1,
          'unfortunate': 1,
          'sit': 1,
          'youll': 1,
          'still': 1,
          'smelling': 1,
          'long': 1,
          'lights': 1,
          'come': 1,
          'nostensibly': 1,
          'pseudodocumentary': 1,
          'account': 1,
          'named': 1,
          'eric': 1,
          'idle': 1,
          'loses': 1,
          'control': 1,
          'bigbudget': 1,
          'action': 1,
          'trio': 1,
          'starring': 1,
          'sylvester': 1,
          'stallone': 1,
          'goldberg': 1,
          'jackie': 1,
          'chan': 1,
          'appear': 1,
          'nwhen': 1,
          'recourse': 1,
          'abandoning': 1,
          'project': 1,
          'course': 1,
          'steals': 1,
          'negative': 1,
          'threatens': 1,
          'destroy': 1,
          'namong': 1,
          'parties': 1,
          'interviewed': 1,
          'films': 1,
          'james': 1,
          'edmunds': 1,
          'ryan': 1,
          'oneal': 1,
          'studio': 1,
          'boss': 1,
          'jerry': 1,
          'glover': 1,
          'richard': 1,
          'jeni': 1,
          'spend': 1,
          'virtually': 1,
          'narrating': 1,
          'story': 1,
          'painfully': 1,
          'unfunny': 1,
          'go': 1,
          'around': 1,
          'literally': 1,
          'laugh': 1,
          'blissfully': 1,
          'brief': 1,
          '84': 1,
          'minutes': 1,
          'nwhat': 1,
          'worse': 1,
          'insistence': 1,
          'upon': 1,
          'telling': 1,
          'twice': 1,
          'three': 1,
          'nmichael': 1,
          'ovitz': 1,
          'showgirls': 1,
          'oral': 1,
          'sex': 1,
          'goldbergted': 1,
          'danson': 1,
          'multiple': 1,
          'subtlety': 1,
          'stockintrade': 1,
          'reduncancy': 1,
          'manages': 1,
          'turn': 1,
          'actively': 1,
          'offensive': 1,
          'frequency': 1,
          'notably': 1,
          'hilarious': 1,
          'use': 1,
          'feminist': 1,
          'identifying': 1,
          'caption': 1,
          'female': 1,
          'nby': 1,
          'coolio': 1,
          'chuck': 1,
          'independent': 1,
          'filmmakers': 1,
          'cleverly': 1,
          'badder': 1,
          'among': 1,
          'unprintable': 1,
          'may': 1,
          'ready': 1,
          'walk': 1,
          'theater': 1,
          'coat': 1,
          'head': 1,
          'avoid': 1,
          'nthose': 1,
          'documentary': 1,
          'captions': 1,
          'leaden': 1,
          'obviousness': 1,
          'allow': 1,
          'best': 1,
          'insight': 1,
          'whats': 1,
          'hideously': 1,
          'wrong': 1,
          'nnot': 1,
          'content': 1,
          'stick': 1,
          'type': 1,
          'jab': 1,
          'rapier': 1,
          'wit': 1,
          'fills': 1,
          'bullet': 1,
          'points': 1,
          'appears': 1,
          'liar': 1,
          'slept': 1,
          'white': 1,
          'house': 1,
          'media': 1,
          'maggots': 1,
          'leeches': 1,
          'working': 1,
          'publications': 1,
          'york': 1,
          'slimes': 1,
          'newsleak': 1,
          'camera': 1,
          'zooming': 1,
          'altered': 1,
          'make': 1,
          'sure': 1,
          'dont': 1,
          'miss': 1,
          'doesnt': 1,
          'matter': 1,
          'tags': 1,
          'penile': 1,
          'implant': 1,
          'name': 1,
          'cameo': 1,
          'seems': 1,
          'feign': 1,
          'selfdeprecation': 1,
          'nthis': 1,
          'petulant': 1,
          'schoolboys': 1,
          'idea': 1,
          'pictures': 1,
          'insiders': 1,
          'taken': 1,
          'pen': 1,
          'draw': 1,
          'little': 1,
          'moustaches': 1,
          'teeth': 1,
          'last': 1,
          'stomachchurning': 1,
          'straw': 1,
          'comes': 1,
          'closes': 1,
          'outtakes': 1,
          'closing': 1,
          'kind': 1,
          'audience': 1,
          'much': 1,
          'fun': 1,
          'making': 1,
          'sucked': 1,
          'hour': 1,
          'half': 1,
          'away': 1,
          'nperhaps': 1,
          'final': 1,
          'purpose': 1,
          'behind': 1,
          'blown': 1,
          'lines': 1,
          'warranted': 1,
          'threatening': 1,
          'blow': 1,
          'whole': 1,
          'career': 1,
          'npity': 1,
          'excessive': 1,
          'egodriven': 1,
          'remove': 1,
          'names': 1,
          'noxious': 1,
          'material': 1,
          'notherwise': 1,
          'might': 1,
          'seen': 1,
          'overflowing': 1,
          'smithees': 1,
          'nneg': 1}),
 Counter({'ryan': 9,
          'kudrow': 7,
          'keaton': 6,
          'hanging': 5,
          'film': 5,
          'nand': 5,
          'time': 5,
          'lou': 5,
          'meg': 4,
          'diane': 4,
          'lisa': 4,
          'scene': 4,
          'georgia': 4,
          'given': 4,
          'talk': 4,
          'one': 4,
          'like': 4,
          'nif': 4,
          'isnt': 4,
          'next': 4,
          'since': 3,
          'sister': 3,
          'little': 3,
          'despite': 3,
          'years': 3,
          'even': 3,
          'children': 3,
          'actress': 3,
          'see': 3,
          'much': 3,
          'three': 3,
          'would': 3,
          'thing': 3,
          'nothing': 3,
          'work': 3,
          'role': 3,
          'sisters': 2,
          'nora': 2,
          'ephron': 2,
          'middle': 2,
          'gives': 2,
          'two': 2,
          'actually': 2,
          'come': 2,
          'final': 2,
          'believe': 2,
          'relationship': 2,
          'apart': 2,
          'husband': 2,
          'adam': 2,
          'arkin': 2,
          'nher': 2,
          'matthau': 2,
          'though': 2,
          'never': 2,
          'exactly': 2,
          'eves': 2,
          'mother': 2,
          'leachman': 2,
          'older': 2,
          'maddy': 2,
          'learn': 2,
          'anything': 2,
          'eve': 2,
          'another': 2,
          'get': 2,
          'opening': 2,
          'want': 2,
          'enough': 2,
          'viewer': 2,
          'quickly': 2,
          'dynamic': 2,
          'nyou': 2,
          'occurs': 2,
          'credits': 2,
          '1998s': 2,
          'woman': 2,
          'good': 2,
          'christmas': 2,
          '1988': 2,
          'brief': 2,
          'movie': 2,
          'irresistible': 1,
          'comedy': 1,
          'celebrates': 1,
          'sisterhood': 1,
          'nscreams': 1,
          'television': 1,
          'ads': 1,
          'disastrously': 1,
          'written': 1,
          'reallife': 1,
          'delia': 1,
          'sloppily': 1,
          'directed': 1,
          'nmake': 1,
          'laugh': 1,
          'nnot': 1,
          'misadvertised': 1,
          'wholeheartedly': 1,
          'focuses': 1,
          'costars': 1,
          'extended': 1,
          'cameos': 1,
          'dont': 1,
          'together': 1,
          'ten': 1,
          'fifteen': 1,
          'minutes': 1,
          'supposed': 1,
          'strong': 1,
          'bond': 1,
          'smile': 1,
          'last': 1,
          'rekindle': 1,
          'rocky': 1,
          'majority': 1,
          'running': 1,
          'nexcuse': 1,
          'almost': 1,
          'bust': 1,
          'gut': 1,
          'truly': 1,
          'delusional': 1,
          'notion': 1,
          'neve': 1,
          'marks': 1,
          'mozzell': 1,
          'still': 1,
          'living': 1,
          'california': 1,
          'town': 1,
          'grew': 1,
          'preteen': 1,
          'son': 1,
          'jesse': 1,
          'james': 1,
          'elderly': 1,
          'wisecracking': 1,
          'father': 1,
          'walter': 1,
          'brightest': 1,
          'performance': 1,
          'recently': 1,
          'put': 1,
          'hospital': 1,
          'stages': 1,
          'assume': 1,
          'alzheimers': 1,
          'enlightens': 1,
          'us': 1,
          'wrong': 1,
          'nwhile': 1,
          'cloris': 1,
          'nearly': 1,
          'nonexistent': 1,
          'ran': 1,
          'ago': 1,
          'fair': 1,
          'share': 1,
          'ups': 1,
          'downs': 1,
          'used': 1,
          'alcoholic': 1,
          'editor': 1,
          'selftitled': 1,
          'magazine': 1,
          'youngest': 1,
          'soap': 1,
          'opera': 1,
          'ninterestingly': 1,
          'professions': 1,
          'ever': 1,
          'working': 1,
          'jobs': 1,
          'matter': 1,
          'nmaddy': 1,
          'anymore': 1,
          'adult': 1,
          'lives': 1,
          'gradually': 1,
          'causing': 1,
          'drift': 1,
          'manage': 1,
          'consistently': 1,
          'phone': 1,
          'nin': 1,
          'fact': 1,
          'telephone': 1,
          'major': 1,
          'star': 1,
          'appears': 1,
          'virtually': 1,
          'every': 1,
          'interminable': 1,
          '92minute': 1,
          'catastrophe': 1,
          'feels': 1,
          'hours': 1,
          'long': 1,
          'able': 1,
          'halfhour': 1,
          'phones': 1,
          'ring': 1,
          'feel': 1,
          'jumping': 1,
          'screen': 1,
          'taking': 1,
          'sledgehammer': 1,
          'surely': 1,
          'survive': 1,
          'rest': 1,
          'nthe': 1,
          'question': 1,
          'subject': 1,
          'resolutely': 1,
          'irritating': 1,
          'selfinvolved': 1,
          'patontheback': 1,
          'nhow': 1,
          'could': 1,
          'comedydrama': 1,
          'starpower': 1,
          'bad': 1,
          'many': 1,
          'different': 1,
          'ways': 1,
          'nissues': 1,
          'past': 1,
          'involving': 1,
          'possible': 1,
          'jealousy': 1,
          'others': 1,
          'fleetingly': 1,
          'brought': 1,
          'mature': 1,
          'deal': 1,
          'thoughtful': 1,
          'manner': 1,
          'childhood': 1,
          'lost': 1,
          'cause': 1,
          'comes': 1,
          'afterthought': 1,
          'nalso': 1,
          'expected': 1,
          'catch': 1,
          'tricky': 1,
          'metamorphosizes': 1,
          'reunite': 1,
          'finale': 1,
          'whole': 1,
          'consanguinity': 1,
          'reduced': 1,
          'repulsively': 1,
          'annoying': 1,
          'threeminute': 1,
          'argue': 1,
          'impending': 1,
          'death': 1,
          'coming': 1,
          'mile': 1,
          'away': 1,
          'conveniently': 1,
          'terms': 1,
          'think': 1,
          'left': 1,
          'playful': 1,
          'foodfight': 1,
          'clockwork': 1,
          'also': 1,
          'end': 1,
          'nmeg': 1,
          'versatile': 1,
          'look': 1,
          'hurlyburly': 1,
          '1994s': 1,
          'man': 1,
          'loves': 1,
          'various': 1,
          'detractors': 1,
          'stubbornly': 1,
          'romantic': 1,
          'comedies': 1,
          'nwith': 1,
          'needs': 1,
          'completely': 1,
          'sever': 1,
          'filmmaking': 1,
          'ties': 1,
          'writerdirectorhack': 1,
          'shouldnt': 1,
          'allowed': 1,
          'hollywood': 1,
          'bigbudget': 1,
          'highprofile': 1,
          'debacle': 1,
          'neven': 1,
          'knew': 1,
          'making': 1,
          'par': 1,
          'quality': 1,
          'department': 1,
          'nonetheless': 1,
          'scenes': 1,
          'flashbacks': 1,
          'heartbreaking': 1,
          'runin': 1,
          'halloween': 1,
          '1993': 1,
          'crashed': 1,
          'sons': 1,
          'birthday': 1,
          'party': 1,
          'drunken': 1,
          'stupor': 1,
          'effective': 1,
          'realism': 1,
          'brings': 1,
          'situations': 1,
          'ndiane': 1,
          'better': 1,
          'director': 1,
          'wildly': 1,
          'feeble': 1,
          'compliment': 1,
          'nwhat': 1,
          'farfetched': 1,
          'distinctly': 1,
          'although': 1,
          'glimpses': 1,
          'five': 1,
          'ryans': 1,
          'senior': 1,
          'nyeah': 1,
          'right': 1,
          'nlastly': 1,
          'poor': 1,
          'wasted': 1,
          'bigscreen': 1,
          'venture': 1,
          'thin': 1,
          '1999s': 1,
          'analyze': 1,
          'nkudrow': 1,
          'create': 1,
          'full': 1,
          'personality': 1,
          'fault': 1,
          'doesnt': 1,
          'register': 1,
          'quiet': 1,
          'moments': 1,
          'sprinkled': 1,
          'throughout': 1,
          'blessed': 1,
          'dialogue': 1,
          'real': 1,
          'talent': 1,
          'anxiously': 1,
          'await': 1,
          'deserving': 1,
          'brilliantly': 1,
          'nuanced': 1,
          'oscarcaliber': 1,
          'opposite': 1,
          'sex': 1,
          'fan': 1,
          'kudrows': 1,
          'favor': 1,
          'rent': 1,
          'gem': 1,
          'puts': 1,
          'use': 1,
          'sixty': 1,
          'seconds': 1,
          'entirety': 1,
          'nas': 1,
          'hardworking': 1,
          'predictably': 1,
          'squandered': 1,
          'subplot': 1,
          'reveals': 1,
          'midway': 1,
          'mentioned': 1,
          'ncloris': 1,
          'makes': 1,
          'small': 1,
          'noticeable': 1,
          'impression': 1,
          'albeit': 1,
          'appearance': 1,
          'edie': 1,
          'mcclurg': 1,
          'rosycheeked': 1,
          'affair': 1,
          'flashback': 1,
          'manages': 1,
          'laughs': 1,
          'otherwise': 1,
          'joyless': 1,
          'production': 1,
          'nnearly': 1,
          'emotions': 1,
          'displayed': 1,
          'within': 1,
          'patently': 1,
          'manufactured': 1,
          'wanting': 1,
          'care': 1,
          'characters': 1,
          'aside': 1,
          'spoiled': 1,
          'brats': 1,
          'bizarre': 1,
          'twilight': 1,
          'zone': 1,
          'type': 1,
          'reason': 1,
          'find': 1,
          'theater': 1,
          'showing': 1,
          'suggestion': 1,
          'hang': 1,
          'nsaying': 1,
          'waste': 1,
          'understatement': 1,
          'epic': 1,
          'proportions': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'movie': 7,
          'sense': 7,
          'ending': 6,
          'sixth': 6,
          'one': 5,
          'say': 4,
          'would': 3,
          'nthe': 3,
          'malcolm': 3,
          'cole': 3,
          'nand': 3,
          'fact': 3,
          'conclusion': 3,
          'even': 3,
          'extent': 2,
          'nhowever': 2,
          'fully': 2,
          'details': 2,
          'quite': 2,
          'child': 2,
          'scene': 2,
          'upon': 2,
          'past': 2,
          'man': 2,
          'kid': 2,
          'case': 2,
          'osment': 2,
          'nafter': 2,
          'twist': 2,
          'knew': 2,
          'going': 2,
          'enough': 2,
          'away': 2,
          'could': 2,
          'ive': 2,
          'surprise': 2,
          'coming': 2,
          'really': 2,
          'may': 2,
          'rest': 2,
          'come': 2,
          'end': 2,
          'rare': 2,
          'ni': 2,
          'anyone': 2,
          'disorder': 2,
          'seen': 2,
          'circumstances': 1,
          'discussing': 1,
          'particular': 1,
          'review': 1,
          'order': 1,
          'explain': 1,
          'exactly': 1,
          'awful': 1,
          'minute': 1,
          'dissection': 1,
          'necessary': 1,
          'neven': 1,
          'though': 1,
          'reveal': 1,
          'last': 1,
          'scenes': 1,
          'proceed': 1,
          'risk': 1,
          'opens': 1,
          'poorly': 1,
          'might': 1,
          'add': 1,
          'psychologist': 1,
          'crowe': 1,
          'bruce': 1,
          'willis': 1,
          'looking': 1,
          'like': 1,
          'dragged': 1,
          'trailer': 1,
          'wee': 1,
          'hours': 1,
          'morning': 1,
          'shoot': 1,
          'wife': 1,
          'intruded': 1,
          'malcolms': 1,
          'patients': 1,
          'ndistraught': 1,
          'suicidal': 1,
          'cameo': 1,
          'new': 1,
          'block': 1,
          'donnie': 1,
          'wahlberg': 1,
          'shoots': 1,
          'turns': 1,
          'gun': 1,
          'ncut': 1,
          'next': 1,
          'fall': 1,
          'find': 1,
          'good': 1,
          'doctor': 1,
          'quietly': 1,
          'observing': 1,
          'latest': 1,
          'trouble': 1,
          'young': 1,
          'named': 1,
          'haley': 1,
          'joel': 1,
          'actors': 1,
          'didnt': 1,
          'want': 1,
          'bludgeoned': 1,
          'head': 1,
          'blunt': 1,
          'instrument': 1,
          '45': 1,
          'minutes': 1,
          'seemingly': 1,
          'unrelated': 1,
          'freak': 1,
          'occurrences': 1,
          'learn': 1,
          'gift': 1,
          'able': 1,
          'communicate': 1,
          'dead': 1,
          'healing': 1,
          'begins': 1,
          'unexpected': 1,
          'popularity': 1,
          'founded': 1,
          'roger': 1,
          'eberts': 1,
          'colleges': 1,
          'kind': 1,
          'give': 1,
          'recent': 1,
          'segment': 1,
          'siskel': 1,
          'ebert': 1,
          'nalthough': 1,
          'first': 1,
          'enraged': 1,
          'established': 1,
          'critic': 1,
          'callously': 1,
          'ruin': 1,
          'thousands': 1,
          'patrons': 1,
          'soon': 1,
          'realized': 1,
          'turn': 1,
          'events': 1,
          'blessing': 1,
          'disguise': 1,
          'always': 1,
          'sucker': 1,
          'endings': 1,
          'favorite': 1,
          'usual': 1,
          'suspects': 1,
          'rarely': 1,
          'dislike': 1,
          'sports': 1,
          'nhere': 1,
          'since': 1,
          'major': 1,
          'plot': 1,
          'films': 1,
          'possibly': 1,
          'bamboozled': 1,
          'loving': 1,
          'bad': 1,
          'solely': 1,
          'something': 1,
          'fallen': 1,
          'victim': 1,
          'eliminated': 1,
          'indeed': 1,
          'viewing': 1,
          'prove': 1,
          'enlightening': 1,
          'experiment': 1,
          'nstripped': 1,
          'element': 1,
          'put': 1,
          'task': 1,
          'showing': 1,
          'instead': 1,
          'simply': 1,
          'hiding': 1,
          'behind': 1,
          'shocking': 1,
          'seeing': 1,
          'true': 1,
          'colors': 1,
          'came': 1,
          'despite': 1,
          'many': 1,
          'champions': 1,
          'void': 1,
          'real': 1,
          'power': 1,
          'nits': 1,
          'neat': 1,
          'concept': 1,
          'justifies': 1,
          'made': 1,
          'featurelength': 1,
          'nin': 1,
          'relies': 1,
          'strongly': 1,
          'finale': 1,
          'develops': 1,
          'sort': 1,
          'prelude': 1,
          'supposedly': 1,
          'earthshattering': 1,
          'revelation': 1,
          'yet': 1,
          'final': 1,
          'moments': 1,
          'huge': 1,
          'letdown': 1,
          'makes': 1,
          'nit': 1,
          'stupefied': 1,
          'heights': 1,
          'ineptitude': 1,
          'completely': 1,
          'idiotic': 1,
          'fundamental': 1,
          'level': 1,
          'wont': 1,
          'go': 1,
          'suffice': 1,
          'far': 1,
          'tell': 1,
          'negates': 1,
          'buys': 1,
          'second': 1,
          'must': 1,
          'suffering': 1,
          'acute': 1,
          'attention': 1,
          'deficit': 1,
          'nnow': 1,
          'fairness': 1,
          'sure': 1,
          'guessed': 1,
          'however': 1,
          'stupid': 1,
          'revealed': 1,
          'hand': 1,
          'feel': 1,
          'confident': 1,
          'well': 1,
          'twilight': 1,
          'zone': 1,
          'episodes': 1,
          'mile': 1,
          'moviegoers': 1,
          'nation': 1,
          'wide': 1,
          'surprised': 1,
          'still': 1,
          'stumped': 1,
          'nironically': 1,
          'appreciate': 1,
          'best': 1,
          'attending': 1,
          'little': 1,
          'girls': 1,
          'funeral': 1,
          'viewer': 1,
          'required': 1,
          'aware': 1,
          'psychological': 1,
          'called': 1,
          'munchausen': 1,
          'syndrome': 1,
          'proxy': 1,
          'wouldnt': 1,
          'known': 1,
          'mental': 1,
          'disease': 1,
          'hadnt': 1,
          'pure': 1,
          'dumb': 1,
          'luck': 1,
          'caught': 1,
          'dateline': 1,
          'nbc': 1,
          'week': 1,
          'feature': 1,
          'story': 1,
          'ndespite': 1,
          'blessed': 1,
          'amazing': 1,
          'cinematography': 1,
          'brauva': 1,
          'performance': 1,
          'casting': 1,
          'calls': 1,
          'phantom': 1,
          'menace': 1,
          'chalkfull': 1,
          'contradictions': 1,
          'isnt': 1,
          'plausible': 1,
          'warrant': 1,
          'slight': 1,
          'recommendation': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'film': 4,
          'movie': 4,
          'would': 4,
          'de': 3,
          'eyes': 3,
          'palma': 3,
          'script': 3,
          'brian': 2,
          'snake': 2,
          'screams': 2,
          'lines': 2,
          'man': 2,
          'bad': 2,
          'lost': 2,
          'nonly': 2,
          'become': 2,
          'scene': 2,
          'plays': 2,
          'rick': 2,
          'cop': 2,
          'takes': 2,
          'fight': 2,
          'made': 2,
          'secretary': 2,
          'flashbacks': 2,
          'sometimes': 2,
          'different': 2,
          'violence': 2,
          'palmas': 1,
          'stars': 1,
          'nicolas': 1,
          'cages': 1,
          'evil': 1,
          'twin': 1,
          'confusingly': 1,
          'uses': 1,
          'stage': 1,
          'name': 1,
          'talented': 1,
          'brother': 1,
          'nlike': 1,
          'foreign': 1,
          'tourist': 1,
          'english': 1,
          'ensure': 1,
          'understood': 1,
          'cage': 1,
          'yells': 1,
          'ferocity': 1,
          'case': 1,
          'caffeine': 1,
          'overload': 1,
          'nde': 1,
          'whose': 1,
          'last': 1,
          'great': 1,
          'untouchables': 1,
          'crafted': 1,
          'decade': 1,
          'ago': 1,
          'seems': 1,
          'magic': 1,
          'nin': 1,
          'manages': 1,
          'elicit': 1,
          'worst': 1,
          'performances': 1,
          'possible': 1,
          'skilled': 1,
          'cast': 1,
          'gary': 1,
          'sinise': 1,
          'rises': 1,
          'slightly': 1,
          'hackneyed': 1,
          'material': 1,
          'rest': 1,
          'actors': 1,
          'caricatures': 1,
          'bythenumbers': 1,
          'thriller': 1,
          'nryuichi': 1,
          'sakamotos': 1,
          'atmospheric': 1,
          'melodramatic': 1,
          'music': 1,
          'dominates': 1,
          'almost': 1,
          'every': 1,
          'nheavy': 1,
          'long': 1,
          'violin': 1,
          'notes': 1,
          'rhythm': 1,
          'punctuated': 1,
          'thunder': 1,
          'n': 1,
          'worlds': 1,
          'david': 1,
          'koepp': 1,
          'sets': 1,
          'action': 1,
          'hurricane': 1,
          'attempt': 1,
          'pump': 1,
          'adrenaline': 1,
          'level': 1,
          'noise': 1,
          'latter': 1,
          'achieved': 1,
          'ncage': 1,
          'santoro': 1,
          'corrupt': 1,
          'atlantic': 1,
          'city': 1,
          'shakes': 1,
          'criminals': 1,
          'get': 1,
          'betting': 1,
          'money': 1,
          'place': 1,
          'single': 1,
          'evening': 1,
          'world': 1,
          'championship': 1,
          'held': 1,
          'nwith': 1,
          'flashy': 1,
          'wardrobe': 1,
          'gold': 1,
          'cell': 1,
          'phone': 1,
          'obnoxious': 1,
          'doesnt': 1,
          'know': 1,
          'shut': 1,
          'nspouting': 1,
          'cliched': 1,
          'ridiculous': 1,
          'dialog': 1,
          'sewer': 1,
          'baby': 1,
          'nactually': 1,
          'line': 1,
          'apropos': 1,
          'whole': 1,
          'nsinise': 1,
          'kevin': 1,
          'dunne': 1,
          'naval': 1,
          'officer': 1,
          'charge': 1,
          'security': 1,
          'navy': 1,
          'come': 1,
          'watch': 1,
          'nbut': 1,
          'people': 1,
          'seem': 1,
          'thin': 1,
          'makes': 1,
          'easy': 1,
          'guess': 1,
          'plot': 1,
          'told': 1,
          'endless': 1,
          'concerns': 1,
          'assassination': 1,
          'scheme': 1,
          'set': 1,
          'malevolent': 1,
          'businessmen': 1,
          'adjective': 1,
          'course': 1,
          'redundant': 1,
          'hollywood': 1,
          'thrillers': 1,
          'repetitious': 1,
          'shown': 1,
          'perspective': 1,
          'nalthough': 1,
          'requires': 1,
          'certain': 1,
          'amount': 1,
          'gratuitous': 1,
          'one': 1,
          'remarkably': 1,
          'tame': 1,
          'became': 1,
          'famous': 1,
          'carrie': 1,
          'movies': 1,
          'outline': 1,
          'promise': 1,
          'leaden': 1,
          'seriously': 1,
          'nat': 1,
          'best': 1,
          '1940sstyle': 1,
          'b': 1,
          'na': 1,
          'little': 1,
          'humor': 1,
          'helped': 1,
          'complete': 1,
          'rewrite': 1,
          'better': 1,
          'nand': 1,
          'although': 1,
          'hate': 1,
          'say': 1,
          'director': 1,
          'biggest': 1,
          'improvement': 1,
          'nsnake': 1,
          'runs': 1,
          '1': 1,
          '39': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'acceptable': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'rimbaud': 10,
          'poets': 7,
          'two': 6,
          'poetry': 6,
          'verlaine': 6,
          'nthe': 5,
          'poet': 4,
          'nhe': 4,
          'relationship': 3,
          'like': 3,
          'looked': 3,
          'rimbauds': 3,
          'poems': 3,
          'house': 3,
          'wife': 3,
          'becomes': 3,
          'instead': 2,
          'nbut': 2,
          'ni': 2,
          'one': 2,
          'young': 2,
          'especially': 2,
          'bad': 2,
          'character': 2,
          'together': 2,
          'verlaines': 2,
          'home': 2,
          'mathilde': 2,
          'finds': 2,
          'lives': 2,
          'even': 2,
          'nwhen': 2,
          'another': 2,
          'nverlaine': 2,
          'father': 2,
          'years': 2,
          'sister': 2,
          'brother': 2,
          'didnt': 2,
          'modern': 2,
          'disappointing': 1,
          'biography': 1,
          'homosexual': 1,
          'famous': 1,
          '19th': 1,
          'century': 1,
          'french': 1,
          'managed': 1,
          'remove': 1,
          'concentrated': 1,
          'abrasive': 1,
          'personalities': 1,
          'result': 1,
          'merely': 1,
          'academic': 1,
          'exercise': 1,
          'leaving': 1,
          'emotional': 1,
          'vacuum': 1,
          'couldnt': 1,
          'build': 1,
          'show': 1,
          'non': 1,
          'paper': 1,
          'shouldnt': 1,
          'terrible': 1,
          'talented': 1,
          'director': 1,
          'agnieszka': 1,
          'holland': 1,
          'secret': 1,
          'garden': 1,
          'proven': 1,
          'screenwriter': 1,
          'christopher': 1,
          'hampton': 1,
          'dangerous': 1,
          'liaisons': 1,
          'capable': 1,
          'cast': 1,
          'done': 1,
          'inept': 1,
          'script': 1,
          'unappealing': 1,
          'way': 1,
          'directed': 1,
          'miscasting': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'found': 1,
          'performance': 1,
          'risible': 1,
          'acting': 1,
          'teenage': 1,
          'brat': 1,
          'genius': 1,
          'spouting': 1,
          'obsenities': 1,
          'without': 1,
          'giving': 1,
          'hint': 1,
          'true': 1,
          'lies': 1,
          'behind': 1,
          'facade': 1,
          'david': 1,
          'thewlis': 1,
          'paul': 1,
          'good': 1,
          'despite': 1,
          'turgid': 1,
          'dialogue': 1,
          'thrust': 1,
          'upon': 1,
          'thin': 1,
          'forced': 1,
          'mismatch': 1,
          'nleonardos': 1,
          'made': 1,
          'look': 1,
          'petulant': 1,
          'crude': 1,
          'yet': 1,
          'know': 1,
          'must': 1,
          'something': 1,
          'going': 1,
          'awe': 1,
          'inspiring': 1,
          'opens': 1,
          'postrevolutionary': 1,
          'france': 1,
          '1871': 1,
          '16yearold': 1,
          'sent': 1,
          'established': 1,
          'symbolist': 1,
          'letter': 1,
          'accepts': 1,
          'praises': 1,
          'invitation': 1,
          'guest': 1,
          'splendid': 1,
          'paris': 1,
          'leaves': 1,
          'sullen': 1,
          'farm': 1,
          'rural': 1,
          'charleville': 1,
          'nonce': 1,
          'disappointed': 1,
          'bourgeoisie': 1,
          'household': 1,
          'immediate': 1,
          'conflict': 1,
          'busty': 1,
          '18yearold': 1,
          'romane': 1,
          'regret': 1,
          'drunken': 1,
          'loves': 1,
          'rich': 1,
          'body': 1,
          'familys': 1,
          'money': 1,
          'though': 1,
          'nothing': 1,
          'else': 1,
          'common': 1,
          'states': 1,
          'learn': 1,
          'replies': 1,
          'haughty': 1,
          'tone': 1,
          'theyre': 1,
          'continue': 1,
          'treat': 1,
          'older': 1,
          'dirt': 1,
          'rest': 1,
          'proves': 1,
          'weakwilled': 1,
          'beating': 1,
          'regularly': 1,
          'plays': 1,
          'despicable': 1,
          'mathildes': 1,
          'kicks': 1,
          'rooming': 1,
          'become': 1,
          'lovers': 1,
          'nits': 1,
          'real': 1,
          'downer': 1,
          'watch': 1,
          'story': 1,
          'unfold': 1,
          'series': 1,
          'obnoxious': 1,
          'behavior': 1,
          'patterns': 1,
          'part': 1,
          'leads': 1,
          'traveling': 1,
          'asking': 1,
          'divorce': 1,
          'nin': 1,
          'brussels': 1,
          'gets': 1,
          'arrested': 1,
          'sodomy': 1,
          'spends': 1,
          'jail': 1,
          'nwhile': 1,
          'angered': 1,
          'literary': 1,
          'world': 1,
          'never': 1,
          'writes': 1,
          'poem': 1,
          '19': 1,
          'goes': 1,
          'north': 1,
          'africa': 1,
          'adventurer': 1,
          'gunrunner': 1,
          'ten': 1,
          'comes': 1,
          'tumor': 1,
          'knee': 1,
          'dies': 1,
          'changed': 1,
          'man': 1,
          'age': 1,
          '37': 1,
          'hopeless': 1,
          'picture': 1,
          'covers': 1,
          'detail': 1,
          'satisfying': 1,
          'ends': 1,
          'whimper': 1,
          'talking': 1,
          'still': 1,
          'possesses': 1,
          'wants': 1,
          'destroyed': 1,
          'embarrass': 1,
          'family': 1,
          'ruin': 1,
          'name': 1,
          'deceased': 1,
          'published': 1,
          'nthis': 1,
          'annoying': 1,
          'filled': 1,
          'visionary': 1,
          'tenseness': 1,
          'approached': 1,
          'manages': 1,
          'skim': 1,
          'surface': 1,
          'completely': 1,
          'ignores': 1,
          'value': 1,
          'idea': 1,
          'filmmaker': 1,
          'trying': 1,
          'say': 1,
          'whatever': 1,
          'work': 1,
          'nit': 1,
          'certainly': 1,
          'bring': 1,
          'light': 1,
          'understanding': 1,
          'meant': 1,
          'earned': 1,
          'reputation': 1,
          'socalled': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'nthe': 7,
          'story': 7,
          'shakespeare': 5,
          'nit': 5,
          'nand': 4,
          'romeo': 4,
          'love': 4,
          'completely': 4,
          'brothers': 3,
          'production': 3,
          'rap': 3,
          'shakespeares': 3,
          'two': 3,
          'mafia': 3,
          'nbut': 3,
          'long': 3,
          'must': 3,
          'action': 3,
          'time': 2,
          'nin': 2,
          'hard': 2,
          'based': 2,
          'magic': 2,
          'latest': 2,
          'producers': 2,
          'picture': 2,
          'juliet': 2,
          'title': 2,
          'chinese': 2,
          'found': 2,
          'han': 2,
          'call': 2,
          'great': 2,
          'audience': 2,
          'nthis': 2,
          'doesnt': 2,
          'ni': 2,
          'die': 2,
          'bartkowiak': 2,
          'create': 2,
          'incredible': 2,
          'character': 2,
          'therefore': 2,
          'li': 2,
          'aalyah': 2,
          'one': 2,
          'voice': 2,
          'achievement': 2,
          'actors': 2,
          'nothing': 2,
          'performances': 2,
          'scenes': 2,
          'simply': 2,
          'embarrassing': 2,
          'enough': 2,
          'much': 2,
          'interesting': 2,
          'another': 2,
          'remember': 2,
          'nfor': 2,
          'modern': 1,
          'world': 1,
          'cool': 1,
          'rule': 1,
          'imagine': 1,
          'becoming': 1,
          'man': 1,
          'yet': 1,
          'everlasting': 1,
          'warner': 1,
          'kicking': 1,
          'ass': 1,
          'beat': 1,
          'intelligence': 1,
          'slowly': 1,
          'fades': 1,
          'away': 1,
          'nthough': 1,
          'matrix': 1,
          'vaguely': 1,
          'william': 1,
          'sequence': 1,
          'frightening': 1,
          'song': 1,
          'black': 1,
          'limo': 1,
          'making': 1,
          'way': 1,
          'dark': 1,
          'streets': 1,
          'new': 1,
          'york': 1,
          'associate': 1,
          'poetry': 1,
          'takes': 1,
          'place': 1,
          'silent': 1,
          'war': 1,
          'major': 1,
          'families': 1,
          'city': 1,
          'afro': 1,
          'americans': 1,
          'youngest': 1,
          'son': 1,
          'chieftain': 1,
          'murdered': 1,
          'afroamericans': 1,
          'immediately': 1,
          'suspected': 1,
          'peace': 1,
          'treaty': 1,
          'signed': 1,
          'godfathers': 1,
          'point': 1,
          'finds': 1,
          'death': 1,
          'nescaping': 1,
          'prison': 1,
          'china': 1,
          'returns': 1,
          'united': 1,
          'states': 1,
          'avenge': 1,
          'fate': 1,
          'restore': 1,
          'justice': 1,
          'kung': 1,
          'fu': 1,
          'kicks': 1,
          'falls': 1,
          'mysterious': 1,
          'beauty': 1,
          'problem': 1,
          'daughter': 1,
          'enemy': 1,
          'ntheres': 1,
          'weak': 1,
          'echo': 1,
          'talent': 1,
          'disappointing': 1,
          'problems': 1,
          'besides': 1,
          'nof': 1,
          'course': 1,
          'dont': 1,
          'deformation': 1,
          'masterpiece': 1,
          'nwe': 1,
          'modernization': 1,
          'seems': 1,
          'fear': 1,
          'respond': 1,
          'lyrics': 1,
          'without': 1,
          'car': 1,
          'chases': 1,
          'gun': 1,
          'fights': 1,
          'lack': 1,
          'respect': 1,
          'find': 1,
          'disturbing': 1,
          'nkenneth': 1,
          'brannagh': 1,
          'already': 1,
          'proven': 1,
          'need': 1,
          'updated': 1,
          'tales': 1,
          'grounded': 1,
          'basics': 1,
          'life': 1,
          'human': 1,
          'nature': 1,
          'hate': 1,
          'honesty': 1,
          'corruption': 1,
          'exist': 1,
          'everyone': 1,
          'understand': 1,
          'embrace': 1,
          'admit': 1,
          'rome': 1,
          'confusing': 1,
          'forgive': 1,
          'andrzej': 1,
          'since': 1,
          'first': 1,
          'attempt': 1,
          'directing': 1,
          'nhe': 1,
          'manages': 1,
          'atmosphere': 1,
          'directs': 1,
          'firm': 1,
          'precision': 1,
          'nunfortunately': 1,
          'forgot': 1,
          'developments': 1,
          'nhis': 1,
          'visually': 1,
          'impressive': 1,
          'intellectually': 1,
          'hollow': 1,
          'jet': 1,
          'trish': 1,
          'intrigues': 1,
          'undeveloped': 1,
          'simplified': 1,
          'njet': 1,
          'amazing': 1,
          'fighters': 1,
          'ever': 1,
          'hit': 1,
          'silver': 1,
          'screen': 1,
          'magical': 1,
          'ntheir': 1,
          'save': 1,
          'braindead': 1,
          'act': 1,
          'nthey': 1,
          'celebrities': 1,
          'put': 1,
          'together': 1,
          'including': 1,
          'isaiah': 1,
          'washington': 1,
          'russell': 1,
          'wong': 1,
          'henry': 1,
          'dmx': 1,
          'give': 1,
          'standard': 1,
          'mediocre': 1,
          'ndelroy': 1,
          'lindo': 1,
          'projects': 1,
          'coherent': 1,
          'image': 1,
          'reality': 1,
          'theres': 1,
          'acting': 1,
          'worry': 1,
          'neven': 1,
          'lis': 1,
          'skills': 1,
          'martial': 1,
          'arts': 1,
          'though': 1,
          'technically': 1,
          'excellent': 1,
          'updates': 1,
          'nto': 1,
          'make': 1,
          'short': 1,
          'intelligent': 1,
          'thriller': 1,
          'sensual': 1,
          'serious': 1,
          'fun': 1,
          'certain': 1,
          'would': 1,
          'better': 1,
          'unnecessary': 1,
          'parallel': 1,
          'stuck': 1,
          'sure': 1,
          'end': 1,
          'nthere': 1,
          'worthy': 1,
          'notice': 1,
          'surprises': 1,
          'nso': 1,
          'good': 1,
          'thing': 1,
          'technical': 1,
          'boast': 1,
          'sound': 1,
          'fast': 1,
          'paced': 1,
          'editing': 1,
          'solid': 1,
          'cinematography': 1,
          'well': 1,
          'coordinated': 1,
          'sequences': 1,
          'music': 1,
          'factor': 1,
          'prevents': 1,
          'leaving': 1,
          'theatre': 1,
          'mostly': 1,
          'provided': 1,
          'aalyahs': 1,
          'enchanting': 1,
          'several': 1,
          'carefully': 1,
          'inserted': 1,
          'songs': 1,
          'various': 1,
          'artists': 1,
          'kind': 1,
          'ghetto': 1,
          'feel': 1,
          'think': 1,
          'back': 1,
          'nas': 1,
          'almost': 1,
          'every': 1,
          'summer': 1,
          'movie': 1,
          'moments': 1,
          'associated': 1,
          'massive': 1,
          'special': 1,
          'effects': 1,
          'get': 1,
          'attention': 1,
          'artistic': 1,
          'qualities': 1,
          'someone': 1,
          'never': 1,
          'read': 1,
          'popcorn': 1,
          'us': 1,
          'waste': 1,
          'money': 1,
          'brain': 1,
          'cells': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'first': 5,
          'nthe': 5,
          'much': 4,
          'ni': 4,
          'one': 4,
          'bad': 4,
          'though': 4,
          'action': 4,
          'cant': 3,
          'supernova': 3,
          'spader': 3,
          'bassett': 3,
          'around': 3,
          'sure': 3,
          'isnt': 2,
          'none': 2,
          'elaborate': 2,
          'studio': 2,
          'accident': 2,
          'ship': 2,
          'picks': 2,
          'call': 2,
          'crew': 2,
          'members': 2,
          'angela': 2,
          'facinelli': 2,
          'intergalactic': 2,
          'goo': 2,
          'running': 2,
          'like': 2,
          'even': 2,
          'remember': 2,
          'time': 2,
          'dropped': 2,
          'everything': 2,
          'effects': 2,
          'good': 2,
          'hardly': 2,
          'performances': 2,
          'scenes': 2,
          'since': 2,
          'pretty': 2,
          'nand': 2,
          'ultimate': 1,
          'sign': 1,
          'movies': 1,
          'cinematic': 1,
          'ineptitude': 1,
          'think': 1,
          'say': 1,
          'sucks': 1,
          'official': 1,
          'year': 1,
          '2000': 1,
          'releases': 1,
          'seem': 1,
          'get': 1,
          'past': 1,
          'oneword': 1,
          'adjectives': 1,
          'although': 1,
          'boring': 1,
          'stupid': 1,
          'absurd': 1,
          'doesnt': 1,
          'amount': 1,
          'review': 1,
          'na': 1,
          'shame': 1,
          'would': 1,
          'able': 1,
          'save': 1,
          'chore': 1,
          'desperately': 1,
          'trying': 1,
          'nbut': 1,
          'cest': 1,
          'la': 1,
          'vie': 1,
          'nhere': 1,
          'goes': 1,
          'nothing': 1,
          'nill': 1,
          'keep': 1,
          'short': 1,
          'suppose': 1,
          'omen': 1,
          'came': 1,
          'director': 1,
          'walter': 1,
          'hill': 1,
          '48': 1,
          'hours': 1,
          'removed': 1,
          'name': 1,
          'requesting': 1,
          'replaced': 1,
          'pseudonym': 1,
          'thomas': 1,
          'lee': 1,
          'films': 1,
          'fate': 1,
          'sealed': 1,
          'many': 1,
          'minds': 1,
          'struggling': 1,
          'mgm': 1,
          'declined': 1,
          'screen': 1,
          'press': 1,
          'event': 1,
          'usually': 1,
          'signifying': 1,
          'studios': 1,
          'lack': 1,
          'confidence': 1,
          'particular': 1,
          'nhills': 1,
          'mgms': 1,
          'actions': 1,
          'prudent': 1,
          'nwhen': 1,
          'captain': 1,
          'medical': 1,
          'space': 1,
          'vessel': 1,
          'nightingale': 1,
          'dies': 1,
          'tragic': 1,
          'hyperjump': 1,
          'reformed': 1,
          'drug': 1,
          'addict': 1,
          'also': 1,
          'officer': 1,
          'reason': 1,
          'james': 1,
          'forced': 1,
          'take': 1,
          'command': 1,
          'distress': 1,
          'nearby': 1,
          'planet': 1,
          'arrival': 1,
          'survivor': 1,
          'apparent': 1,
          'abandoned': 1,
          'mining': 1,
          'colony': 1,
          'knows': 1,
          'passenger': 1,
          'played': 1,
          'peter': 1,
          'feelings': 1,
          'know': 1,
          'means': 1,
          'nthis': 1,
          'hitchhiker': 1,
          'carrying': 1,
          'mysterious': 1,
          'cargo': 1,
          'jellylike': 1,
          'substance': 1,
          'purpose': 1,
          'unknown': 1,
          'seems': 1,
          'bring': 1,
          'form': 1,
          'pleasure': 1,
          'whoever': 1,
          'touches': 1,
          'nanother': 1,
          'experiences': 1,
          'hand': 1,
          'spending': 1,
          'minutes': 1,
          'partially': 1,
          'inside': 1,
          'glob': 1,
          'impressive': 1,
          'handstand': 1,
          'pushups': 1,
          'nevidently': 1,
          'touching': 1,
          'enigmatic': 1,
          'eggshaped': 1,
          'thingie': 1,
          'makes': 1,
          'younger': 1,
          'stronger': 1,
          'nhow': 1,
          'nwhy': 1,
          'never': 1,
          'bothers': 1,
          'explain': 1,
          'nsoon': 1,
          'enough': 1,
          'mad': 1,
          'chased': 1,
          'allofasuddensuperhuman': 1,
          'nto': 1,
          'honest': 1,
          'dont': 1,
          'exactly': 1,
          'didnt': 1,
          'care': 1,
          'nsupernovas': 1,
          'plot': 1,
          'suggested': 1,
          'less': 1,
          'interesting': 1,
          'ideas': 1,
          'ball': 1,
          'bomb': 1,
          'chance': 1,
          'develop': 1,
          'anything': 1,
          'truly': 1,
          'intriguing': 1,
          'nin': 1,
          'fact': 1,
          'actors': 1,
          'fun': 1,
          'looks': 1,
          'set': 1,
          'nwell': 1,
          'theres': 1,
          'special': 1,
          'days': 1,
          'im': 1,
          'whether': 1,
          'thats': 1,
          'remarkable': 1,
          'accomplishment': 1,
          'worth': 1,
          'talking': 1,
          'nim': 1,
          'whats': 1,
          'giving': 1,
          'people': 1,
          'finger': 1,
          'njames': 1,
          'actor': 1,
          'proves': 1,
          'blandest': 1,
          'stars': 1,
          'ive': 1,
          'seen': 1,
          'mostly': 1,
          'given': 1,
          'character': 1,
          'personality': 1,
          'bland': 1,
          'theyre': 1,
          'rehashes': 1,
          'elements': 1,
          'werent': 1,
          'particularly': 1,
          'entertaining': 1,
          'dead': 1,
          'water': 1,
          'life': 1,
          'figure': 1,
          'called': 1,
          'nneg': 1}),
 Counter({'idle': 6,
          'hands': 6,
          'nthe': 6,
          'movie': 5,
          'time': 3,
          'way': 2,
          'would': 2,
          'light': 2,
          'release': 2,
          'teenagers': 2,
          'hand': 2,
          'goes': 2,
          'friends': 2,
          'far': 2,
          'death': 2,
          'n': 2,
          'recent': 2,
          'events': 2,
          'real': 2,
          'life': 2,
          'nand': 2,
          'young': 2,
          'people': 2,
          'world': 2,
          'us': 2,
          'right': 2,
          'distasteful': 1,
          'crass': 1,
          'derivative': 1,
          'nif': 1,
          'original': 1,
          'thought': 1,
          'found': 1,
          'horrorcomedy': 1,
          'die': 1,
          'loneliness': 1,
          'nplus': 1,
          'question': 1,
          'judgment': 1,
          'sensitivity': 1,
          'studio': 1,
          'executives': 1,
          'green': 1,
          'dealing': 1,
          'slaughter': 1,
          'innocent': 1,
          'week': 1,
          'tragedy': 1,
          'littleton': 1,
          'colo': 1,
          'insulting': 1,
          'horror': 1,
          'film': 1,
          'fans': 1,
          'plot': 1,
          'little': 1,
          'deals': 1,
          'anton': 1,
          'devon': 1,
          'sawa': 1,
          'highschool': 1,
          'slacker': 1,
          'whos': 1,
          'murderous': 1,
          'rampage': 1,
          'becoming': 1,
          'possessed': 1,
          'nalong': 1,
          'kills': 1,
          'antons': 1,
          'parents': 1,
          'two': 1,
          'best': 1,
          'also': 1,
          'slackers': 1,
          'lazy': 1,
          'return': 1,
          'dead': 1,
          'walk': 1,
          'nthat': 1,
          'level': 1,
          'thiss': 1,
          'atrocitys': 1,
          'humor': 1,
          'treats': 1,
          'joke': 1,
          'gruesome': 1,
          'morbid': 1,
          'performances': 1,
          'stereotypical': 1,
          'cartoonish': 1,
          'ni': 1,
          'realize': 1,
          'supposed': 1,
          'pass': 1,
          'comedy': 1,
          'surpassed': 1,
          'screen': 1,
          'nit': 1,
          'fault': 1,
          'filmmakers': 1,
          'overtaken': 1,
          'reel': 1,
          'presume': 1,
          'writers': 1,
          'terri': 1,
          'hughes': 1,
          'ron': 1,
          'milbauer': 1,
          'trying': 1,
          'make': 1,
          'statement': 1,
          'todays': 1,
          'values': 1,
          'satiric': 1,
          'vein': 1,
          'nhowever': 1,
          'hard': 1,
          'laugh': 1,
          'days': 1,
          'especially': 1,
          'ones': 1,
          'involving': 1,
          'nwith': 1,
          'horrors': 1,
          'put': 1,
          'television': 1,
          'stale': 1,
          'pastry': 1,
          'held': 1,
          'weeks': 1,
          'months': 1,
          'give': 1,
          'catch': 1,
          'collective': 1,
          'breaths': 1,
          'bad': 1,
          'matter': 1,
          'circumstances': 1,
          'outside': 1,
          'nbut': 1,
          'context': 1,
          'heightens': 1,
          'shortcomings': 1,
          'type': 1,
          'may': 1,
          'never': 1,
          'nthis': 1,
          'shoud': 1,
          'consigned': 1,
          'trash': 1,
          'bin': 1,
          'cinema': 1,
          'nneg': 1}),
 Counter({'bye': 14,
          'love': 8,
          'movie': 5,
          'three': 5,
          'nbye': 4,
          'one': 4,
          'weekend': 3,
          'fathers': 3,
          'children': 3,
          'date': 3,
          'time': 3,
          'little': 3,
          'relationships': 3,
          'custody': 2,
          'breakups': 2,
          'cant': 2,
          'still': 2,
          'funny': 2,
          'main': 2,
          'instead': 2,
          'get': 2,
          'modine': 2,
          'father': 2,
          'quaid': 2,
          'go': 2,
          'reiser': 2,
          'exwife': 2,
          'emma': 2,
          'janeane': 2,
          'garofolo': 2,
          'quality': 2,
          'best': 2,
          'without': 2,
          'subplot': 2,
          'character': 2,
          'pretty': 2,
          'isnt': 2,
          'enough': 2,
          'kids': 2,
          'perhaps': 2,
          'neven': 2,
          'flanders': 2,
          'mcdonalds': 2,
          'nit': 2,
          'humor': 2,
          'parenthood': 2,
          'genuinely': 2,
          'divorce': 1,
          '1995': 1,
          'seems': 1,
          'timely': 1,
          'mood': 1,
          'rings': 1,
          'nfamily': 1,
          'familiar': 1,
          'part': 1,
          'american': 1,
          'landscape': 1,
          'nearly': 1,
          'thirty': 1,
          'years': 1,
          'countless': 1,
          'dramas': 1,
          'told': 1,
          'stories': 1,
          'acrimonious': 1,
          'court': 1,
          'battles': 1,
          'handwringing': 1,
          'detail': 1,
          'nstill': 1,
          'recall': 1,
          'comedy': 1,
          'subject': 1,
          'nand': 1,
          'rarely': 1,
          'often': 1,
          'weak': 1,
          'melodramatic': 1,
          'retread': 1,
          'common': 1,
          'tvmovie': 1,
          'fare': 1,
          'nonly': 1,
          'moments': 1,
          'nothing': 1,
          'films': 1,
          'premise': 1,
          'offer': 1,
          'big': 1,
          'laughs': 1,
          'cliched': 1,
          'emotion': 1,
          'follows': 1,
          'lives': 1,
          'divorced': 1,
          'ndave': 1,
          'matthew': 1,
          'two': 1,
          'inveterate': 1,
          'womanizer': 1,
          'difficulty': 1,
          'staying': 1,
          'faithful': 1,
          'latest': 1,
          'girlfriend': 1,
          'vic': 1,
          'randy': 1,
          'foulhumored': 1,
          'rare': 1,
          'donny': 1,
          'paul': 1,
          'pines': 1,
          'trouble': 1,
          'relating': 1,
          'teenage': 1,
          'daughter': 1,
          'eliza': 1,
          'dushku': 1,
          'nover': 1,
          'course': 1,
          'men': 1,
          'face': 1,
          'various': 1,
          'crises': 1,
          'including': 1,
          'vics': 1,
          'blind': 1,
          'hell': 1,
          'donnys': 1,
          'growing': 1,
          'estrangement': 1,
          'nthe': 1,
          'lead': 1,
          'actors': 1,
          'form': 1,
          'rather': 1,
          'unlikely': 1,
          'combo': 1,
          'performances': 1,
          'widely': 1,
          'varying': 1,
          'nrandy': 1,
          'bitter': 1,
          'irritating': 1,
          'gleefully': 1,
          'spiteful': 1,
          'frightening': 1,
          'nhis': 1,
          'runins': 1,
          'lindsey': 1,
          'crouse': 1,
          'bit': 1,
          'overplayed': 1,
          'though': 1,
          'confrontation': 1,
          'pompous': 1,
          'radio': 1,
          'psychologist': 1,
          'rob': 1,
          'reiner': 1,
          'gimmicky': 1,
          'implausible': 1,
          'nhe': 1,
          'loves': 1,
          'hilarious': 1,
          'dinner': 1,
          'gloriously': 1,
          'demented': 1,
          'great': 1,
          'slow': 1,
          'burn': 1,
          'npaul': 1,
          'really': 1,
          'slightly': 1,
          'befuddled': 1,
          'uptight': 1,
          'nice': 1,
          'guy': 1,
          'mad': 1,
          'persona': 1,
          'well': 1,
          'nas': 1,
          'personality': 1,
          'appealing': 1,
          'becomes': 1,
          'boring': 1,
          'nmatthew': 1,
          'quite': 1,
          'simply': 1,
          'terrible': 1,
          'nthis': 1,
          'performance': 1,
          'good': 1,
          'called': 1,
          'mailedin': 1,
          'even': 1,
          'forgot': 1,
          'put': 1,
          'stamp': 1,
          'nmodine': 1,
          'lacks': 1,
          'charm': 1,
          'appallingly': 1,
          'underwritten': 1,
          'role': 1,
          'looks': 1,
          'bored': 1,
          'gets': 1,
          'stuck': 1,
          'trite': 1,
          'speech': 1,
          'fault': 1,
          'hes': 1,
          'cad': 1,
          'ncarolcos': 1,
          'executives': 1,
          'whose': 1,
          'entire': 1,
          'future': 1,
          'resting': 1,
          'modines': 1,
          'bankability': 1,
          'upcoming': 1,
          'cutthroat': 1,
          'island': 1,
          'must': 1,
          'sweating': 1,
          'buckets': 1,
          'right': 1,
          'basically': 1,
          'comes': 1,
          'confused': 1,
          'spends': 1,
          'far': 1,
          'much': 1,
          'new': 1,
          'characters': 1,
          'making': 1,
          'another': 1,
          'dating': 1,
          '90s': 1,
          'nwhen': 1,
          'deal': 1,
          'scream': 1,
          'accusation': 1,
          'andor': 1,
          'cry': 1,
          'resolved': 1,
          'later': 1,
          'sensitive': 1,
          'talk': 1,
          'hug': 1,
          'confusing': 1,
          'featuring': 1,
          'late': 1,
          'ed': 1,
          'widower': 1,
          'goes': 1,
          'work': 1,
          'befriends': 1,
          'troubled': 1,
          'youth': 1,
          'sad': 1,
          'end': 1,
          'career': 1,
          'getting': 1,
          'caught': 1,
          'truly': 1,
          'annoying': 1,
          'overuse': 1,
          'location': 1,
          'plot': 1,
          'device': 1,
          'apparently': 1,
          'major': 1,
          'advertiser': 1,
          'decided': 1,
          'spend': 1,
          'focusing': 1,
          'exclusively': 1,
          'parentchild': 1,
          'would': 1,
          'difficult': 1,
          'pull': 1,
          'ultimately': 1,
          'wring': 1,
          'family': 1,
          'effects': 1,
          'nany': 1,
          'way': 1,
          'slice': 1,
          'bad': 1,
          'situation': 1,
          'makers': 1,
          'mostly': 1,
          'heartstrings': 1,
          'dealing': 1,
          'single': 1,
          'parenting': 1,
          'issue': 1,
          'left': 1,
          'dads': 1,
          'romantic': 1,
          'fumblings': 1,
          'probide': 1,
          'nthere': 1,
          'comparisons': 1,
          'touching': 1,
          'genuine': 1,
          'shame': 1,
          'nneg': 1}),
 Counter({'bowling': 7,
          'movie': 6,
          'nthe': 6,
          'n': 5,
          'munson': 4,
          'much': 4,
          'murray': 4,
          'comedy': 4,
          'good': 3,
          'kingpin': 3,
          'film': 3,
          'randy': 3,
          'dont': 3,
          'nwhy': 3,
          'directors': 2,
          'never': 2,
          'might': 2,
          'rise': 2,
          'anything': 2,
          'nits': 2,
          'jokes': 2,
          'rather': 2,
          'first': 2,
          'nwoody': 2,
          'harrelson': 2,
          'bowler': 2,
          'roy': 2,
          'roys': 2,
          'spoof': 2,
          'bill': 2,
          'seems': 2,
          'hand': 2,
          'rubber': 2,
          'ishmael': 2,
          'quaid': 2,
          'amish': 2,
          'takes': 2,
          'nso': 2,
          'together': 2,
          'set': 2,
          'pretty': 2,
          'vanessa': 2,
          'angel': 2,
          'direction': 2,
          'humour': 2,
          'flying': 2,
          'wrong': 2,
          'funny': 2,
          'guy': 2,
          'stuff': 2,
          'nwell': 2,
          'according': 1,
          'publicity': 1,
          'material': 1,
          'hope': 1,
          'restore': 1,
          'oldfashioned': 1,
          'rightful': 1,
          'place': 1,
          'mainstream': 1,
          'american': 1,
          'consciousness': 1,
          'nhmm': 1,
          'nyou': 1,
          'know': 1,
          'something': 1,
          'nwhat': 1,
          'geek': 1,
          'chic': 1,
          'lounge': 1,
          'music': 1,
          'seventies': 1,
          'fashion': 1,
          'evercontrary': 1,
          'kids': 1,
          'nineties': 1,
          'latch': 1,
          'another': 1,
          'terminally': 1,
          'unhip': 1,
          'bastion': 1,
          'tackyana': 1,
          'claim': 1,
          'nbut': 1,
          'doubt': 1,
          'cheesy': 1,
          'right': 1,
          'connoisseurs': 1,
          'bad': 1,
          'taste': 1,
          'find': 1,
          'exudes': 1,
          'bland': 1,
          'smell': 1,
          'stale': 1,
          'invigorating': 1,
          'stink': 1,
          'true': 1,
          'kitsch': 1,
          'nthats': 1,
          'shame': 1,
          'ten': 1,
          'minutes': 1,
          'promises': 1,
          'lot': 1,
          'plays': 1,
          'hotshot': 1,
          'opens': 1,
          'fifties': 1,
          'dad': 1,
          'dishing': 1,
          'readers': 1,
          'digestgumpian': 1,
          'wisdom': 1,
          'scoopfuls': 1,
          'shifting': 1,
          '70s': 1,
          'hilarious': 1,
          'saturday': 1,
          'night': 1,
          'fever': 1,
          'sardonic': 1,
          'tone': 1,
          'proceedings': 1,
          'enhanced': 1,
          'presence': 1,
          'delectably': 1,
          'slimy': 1,
          'big': 1,
          'ern': 1,
          'mcracken': 1,
          'thanks': 1,
          'quarter': 1,
          'gives': 1,
          'wry': 1,
          'derisive': 1,
          'edge': 1,
          'otherwise': 1,
          'unfocused': 1,
          'nmccracken': 1,
          'dupes': 1,
          'hustling': 1,
          'job': 1,
          'abandons': 1,
          'angry': 1,
          'mob': 1,
          'mangle': 1,
          'nthen': 1,
          'fast': 1,
          'forward': 1,
          '17': 1,
          'years': 1,
          'later': 1,
          'fat': 1,
          'balding': 1,
          'loser': 1,
          'prosthetic': 1,
          'nhes': 1,
          'hopeless': 1,
          'meets': 1,
          'amateur': 1,
          'protege': 1,
          'million': 1,
          'dollar': 1,
          'tournament': 1,
          'reno': 1,
          'picking': 1,
          'hustler': 1,
          'claudia': 1,
          'way': 1,
          'nwith': 1,
          'exit': 1,
          'filmmakers': 1,
          'seem': 1,
          'one': 1,
          'go': 1,
          'thats': 1,
          'ndumb': 1,
          'dumber': 1,
          'nyes': 1,
          'indeed': 1,
          'brought': 1,
          'modern': 1,
          'proponents': 1,
          'laxative': 1,
          'peter': 1,
          'bobby': 1,
          'farrelly': 1,
          'aforementioned': 1,
          'jim': 1,
          'carrey': 1,
          'vehicle': 1,
          'prepare': 1,
          'slaparound': 1,
          'hands': 1,
          'distended': 1,
          'nipples': 1,
          'ridiculous': 1,
          'hair': 1,
          'bull': 1,
          'semen': 1,
          'nget': 1,
          'stock': 1,
          'fishoutofwater': 1,
          'situations': 1,
          'cityboy': 1,
          'puts': 1,
          'beard': 1,
          'tries': 1,
          'blend': 1,
          'community': 1,
          'suaku': 1,
          'straitlaced': 1,
          'smoking': 1,
          'striptease': 1,
          'unchristian': 1,
          'neighboursocking': 1,
          'nnow': 1,
          'get': 1,
          'theres': 1,
          'nothing': 1,
          'cheap': 1,
          'fair': 1,
          'share': 1,
          'lavatorial': 1,
          'laughs': 1,
          'woody': 1,
          'trouble': 1,
          'arent': 1,
          'bold': 1,
          'enough': 1,
          'drive': 1,
          'bumbles': 1,
          'along': 1,
          'without': 1,
          'sense': 1,
          'nit': 1,
          'lurches': 1,
          'sports': 1,
          'amishmocking': 1,
          'roadtrip': 1,
          'sentimental': 1,
          'melodrama': 1,
          'pausing': 1,
          'broadside': 1,
          'indecent': 1,
          'proposal': 1,
          'many': 1,
          'shameless': 1,
          'plugs': 1,
          'accompanying': 1,
          'pop': 1,
          'soundtrack': 1,
          'quite': 1,
          'getting': 1,
          'nsome': 1,
          'gags': 1,
          'fall': 1,
          'flat': 1,
          'lack': 1,
          'buildup': 1,
          'bits': 1,
          'pieces': 1,
          'simply': 1,
          'long': 1,
          'unfunny': 1,
          'fight': 1,
          'car': 1,
          'park': 1,
          'two': 1,
          'wear': 1,
          'mascara': 1,
          'glass': 1,
          'ball': 1,
          'rose': 1,
          'full': 1,
          'halfthoughtthrough': 1,
          'ideas': 1,
          'give': 1,
          'impression': 1,
          'old': 1,
          'gaffer': 1,
          'grip': 1,
          'makeup': 1,
          'artist': 1,
          'throwing': 1,
          'random': 1,
          'saying': 1,
          'wouldnt': 1,
          'actually': 1,
          'actors': 1,
          'favours': 1,
          'either': 1,
          'comes': 1,
          'okay': 1,
          'plausibly': 1,
          'acting': 1,
          'dumb': 1,
          'smart': 1,
          'cynical': 1,
          'innocent': 1,
          'implausible': 1,
          'script': 1,
          'calls': 1,
          'ceaseless': 1,
          'ham': 1,
          'talent': 1,
          'like': 1,
          'schwarzenegger': 1,
          'convincing': 1,
          'playing': 1,
          'computercreation': 1,
          'human': 1,
          'take': 1,
          'tv': 1,
          'series': 1,
          'weird': 1,
          'science': 1,
          'please': 1,
          'neven': 1,
          'hams': 1,
          'reappears': 1,
          'movies': 1,
          'climax': 1,
          'nall': 1,
          'fairly': 1,
          'useless': 1,
          'attempt': 1,
          'certified': 1,
          'nohoper': 1,
          'kickstarting': 1,
          'renaissance': 1,
          'look': 1,
          'reinspired': 1,
          'john': 1,
          'waters': 1,
          'perhaps': 1,
          'somebody': 1,
          'strictly': 1,
          'anyone': 1,
          'definitive': 1,
          'inkpots': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'video': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'reese': 5,
          'sutherland': 4,
          'movie': 4,
          'time': 4,
          'witherspoon': 3,
          'keifer': 3,
          'one': 3,
          'nnote': 3,
          'great': 3,
          'used': 2,
          'nfreeway': 2,
          'little': 2,
          'red': 2,
          'riding': 2,
          'hood': 2,
          'talented': 2,
          'star': 2,
          'asking': 2,
          'dont': 2,
          'want': 2,
          'waste': 2,
          'movies': 2,
          'fear': 2,
          'rent': 2,
          'starring': 1,
          'kiefer': 1,
          'bokeem': 1,
          'woodbine': 1,
          'think': 1,
          'conversation': 1,
          'worse': 1,
          'film': 1,
          'ever': 1,
          'seen': 1,
          'giving': 1,
          'second': 1,
          'thoughts': 1,
          'modern': 1,
          'retelling': 1,
          'nonly': 1,
          'nineties': 1,
          'foulmouthed': 1,
          'juvenile': 1,
          'delinquent': 1,
          'played': 1,
          'big': 1,
          'bad': 1,
          'wolf': 1,
          'serial': 1,
          'killer': 1,
          'nto': 1,
          'top': 1,
          'pathetic': 1,
          'premise': 1,
          'goes': 1,
          'visit': 1,
          'granny': 1,
          'youll': 1,
          'never': 1,
          'guess': 1,
          'whos': 1,
          'waiting': 1,
          'covers': 1,
          'grannys': 1,
          'bed': 1,
          'nkeifer': 1,
          'hollywoods': 1,
          'yet': 1,
          'underrated': 1,
          'actors': 1,
          'exceptionally': 1,
          'likely': 1,
          'become': 1,
          'major': 1,
          'nso': 1,
          'nafter': 1,
          'seeing': 1,
          'end': 1,
          'result': 1,
          'undoubtedly': 1,
          'question': 1,
          'nyou': 1,
          'might': 1,
          'short': 1,
          'review': 1,
          'nthe': 1,
          'answer': 1,
          'quite': 1,
          'simple': 1,
          'writing': 1,
          'thinking': 1,
          'absolutely': 1,
          'necessary': 1,
          'ni': 1,
          'wasted': 1,
          'enough': 1,
          'sitting': 1,
          'wonder': 1,
          'arent': 1,
          'bigger': 1,
          'hollywood': 1,
          'nbecause': 1,
          'keep': 1,
          'making': 1,
          'like': 1,
          'happened': 1,
          'worry': 1,
          'much': 1,
          'saw': 1,
          'anyway': 1,
          'nbottom': 1,
          'line': 1,
          'im': 1,
          'still': 1,
          'shaking': 1,
          'head': 1,
          'ndont': 1,
          'turkey': 1,
          'nif': 1,
          'see': 1,
          'go': 1,
          'flatliners': 1,
          'young': 1,
          'guns': 1,
          'nreese': 1,
          'witherspoons': 1,
          'abundant': 1,
          'acting': 1,
          'talents': 1,
          'full': 1,
          'potential': 1,
          'thriller': 1,
          'ndo': 1,
          'favor': 1,
          'stay': 1,
          'far': 1,
          'away': 1,
          'freeway': 1,
          'possibly': 1,
          'nneg': 1}),
 Counter({'squad': 16,
          'blade': 12,
          'movie': 9,
          'tv': 4,
          'series': 4,
          'nblade': 4,
          'language': 4,
          'future': 3,
          'turned': 3,
          'new': 3,
          'one': 3,
          'nthis': 3,
          'television': 3,
          'film': 3,
          'lot': 3,
          'nwhen': 3,
          'character': 3,
          'foul': 3,
          'guy': 3,
          'bad': 3,
          'jetpacks': 2,
          'cop': 2,
          'common': 2,
          'nwhy': 2,
          'fox': 2,
          'networks': 2,
          'guest': 2,
          'stars': 2,
          'n': 2,
          'probably': 2,
          'audience': 2,
          'crimefighters': 2,
          'cars': 2,
          'fast': 2,
          'airwolf': 2,
          'street': 2,
          'hawk': 2,
          'viewers': 2,
          'madefortv': 2,
          'nthe': 2,
          'keep': 2,
          'ni': 2,
          'background': 2,
          'im': 2,
          'sound': 2,
          'scene': 2,
          'spoke': 2,
          'songs': 2,
          'volume': 2,
          'commercial': 2,
          'dont': 2,
          'nin': 2,
          'good': 2,
          'word': 2,
          'comics': 2,
          'bunch': 2,
          'synopsis': 1,
          'sooner': 1,
          'think': 1,
          'america': 1,
          'law': 1,
          'enforcement': 1,
          'resides': 1,
          'ragtag': 1,
          'group': 1,
          'culturally': 1,
          'diverse': 1,
          'rollerblading': 1,
          'cops': 1,
          'strapped': 1,
          'backs': 1,
          'na': 1,
          'dangerous': 1,
          'criminal': 1,
          'however': 1,
          'attempts': 1,
          'destroy': 1,
          'brother': 1,
          'dies': 1,
          'chased': 1,
          'ncomments': 1,
          'exgangbanger': 1,
          'insubordinate': 1,
          'traffic': 1,
          'former': 1,
          'prostitute': 1,
          'substance': 1,
          'abuse': 1,
          'problem': 1,
          'junkie': 1,
          'dennis': 1,
          'rodman': 1,
          'wannabe': 1,
          'crashed': 1,
          'four': 1,
          'police': 1,
          'cruisers': 1,
          'theyre': 1,
          'members': 1,
          'elite': 1,
          'crimefighting': 1,
          'unit': 1,
          'wearing': 1,
          'black': 1,
          'uniforms': 1,
          'rollerblades': 1,
          'nthey': 1,
          'also': 1,
          'carry': 1,
          'video': 1,
          'cameras': 1,
          'communicate': 1,
          'another': 1,
          'la': 1,
          'marines': 1,
          'james': 1,
          'camerons': 1,
          'aliens': 1,
          'nyes': 1,
          'wednesday': 1,
          'night': 1,
          'week': 1,
          'marking': 1,
          'dubious': 1,
          'world': 1,
          'premiere': 1,
          'today': 1,
          'curiously': 1,
          'number': 1,
          'nyou': 1,
          'may': 1,
          'ask': 1,
          'nwell': 1,
          'really': 1,
          'speak': 1,
          '2': 1,
          'hour': 1,
          'pilot': 1,
          'possible': 1,
          'packaged': 1,
          'dumb': 1,
          'loud': 1,
          'obnoxious': 1,
          'ratings': 1,
          'hit': 1,
          'spawn': 1,
          'longlived': 1,
          'nafter': 1,
          'given': 1,
          'talking': 1,
          'knight': 1,
          'rider': 1,
          'helicopters': 1,
          'super': 1,
          'motorcycles': 1,
          'eaten': 1,
          'past': 1,
          'nso': 1,
          'jetpowered': 1,
          'roller': 1,
          'blades': 1,
          'nto': 1,
          'honest': 1,
          'presentation': 1,
          'least': 1,
          'watchable': 1,
          'relatively': 1,
          'large': 1,
          'cast': 1,
          'characters': 1,
          'surprisingly': 1,
          'intelligible': 1,
          'albeit': 1,
          'predictable': 1,
          'script': 1,
          'enough': 1,
          'action': 1,
          'sequences': 1,
          'halfinterested': 1,
          'nid': 1,
          'imagine': 1,
          'adolescent': 1,
          'males': 1,
          'target': 1,
          'turkey': 1,
          'would': 1,
          'get': 1,
          'kick': 1,
          'tried': 1,
          'mind': 1,
          'watched': 1,
          'remember': 1,
          'liking': 1,
          '10': 1,
          '11': 1,
          'nand': 1,
          'although': 1,
          'isnt': 1,
          'saying': 1,
          'much': 1,
          'leaps': 1,
          'bounds': 1,
          'better': 1,
          'last': 1,
          'network': 1,
          'displeasure': 1,
          'wasting': 1,
          'time': 1,
          'insipidly': 1,
          'awful': 1,
          'generation': 1,
          'x': 1,
          'huge': 1,
          'disappointment': 1,
          'considering': 1,
          'comic': 1,
          'books': 1,
          'terrific': 1,
          'twoyear': 1,
          'beginning': 1,
          'nbut': 1,
          'digress': 1,
          'ndespite': 1,
          'limited': 1,
          'appeal': 1,
          'kinks': 1,
          'work': 1,
          'become': 1,
          'none': 1,
          'suffers': 1,
          'mtv': 1,
          'syndrome': 1,
          'quick': 1,
          'shots': 1,
          'weird': 1,
          'angles': 1,
          'continuously': 1,
          'jar': 1,
          'senses': 1,
          'near': 1,
          'nonstop': 1,
          'generic': 1,
          'rock': 1,
          'soundtrack': 1,
          'blares': 1,
          'incessantly': 1,
          'noh': 1,
          'yeah': 1,
          'dylans': 1,
          'knockin': 1,
          'heavens': 1,
          'door': 1,
          'bowies': 1,
          'afraid': 1,
          'americans': 1,
          'used': 1,
          'rather': 1,
          'poor': 1,
          'taste': 1,
          'ntwo': 1,
          'needs': 1,
          'crew': 1,
          'substandard': 1,
          'editing': 1,
          'irritated': 1,
          'end': 1,
          'ncharacters': 1,
          'dialogue': 1,
          'times': 1,
          'sounded': 1,
          'choppy': 1,
          'unintelligible': 1,
          'nduring': 1,
          'important': 1,
          'song': 1,
          'played': 1,
          'loudly': 1,
          'dropped': 1,
          'disappear': 1,
          'nas': 1,
          'soon': 1,
          'finished': 1,
          'speaking': 1,
          'immediately': 1,
          'returned': 1,
          'original': 1,
          'level': 1,
          'next': 1,
          'sounds': 1,
          'trivial': 1,
          'sure': 1,
          'distracted': 1,
          'immensely': 1,
          'nfinally': 1,
          'nfoul': 1,
          'allowed': 1,
          'typically': 1,
          'nthus': 1,
          'use': 1,
          'production': 1,
          'censored': 1,
          'manner': 1,
          'early': 1,
          'example': 1,
          'lead': 1,
          'minor': 1,
          'confrontation': 1,
          'streets': 1,
          'spouts': 1,
          'driver': 1,
          'conveniently': 1,
          'honks': 1,
          'horn': 1,
          'offscreen': 1,
          'muffle': 1,
          'seinfeld': 1,
          'episode': 1,
          'technique': 1,
          'proved': 1,
          'funny': 1,
          'seemed': 1,
          'goofy': 1,
          'cut': 1,
          'dramatic': 1,
          'tension': 1,
          'considerably': 1,
          'nperhaps': 1,
          'writers': 1,
          'show': 1,
          'spun': 1,
          'could': 1,
          'take': 1,
          'cue': 1,
          'marvel': 1,
          '2099': 1,
          'nmake': 1,
          'words': 1,
          'way': 1,
          'need': 1,
          'honking': 1,
          'horns': 1,
          'silly': 1,
          'devices': 1,
          'cover': 1,
          'ncompared': 1,
          'usual': 1,
          'crap': 1,
          'broadcast': 1,
          'offer': 1,
          'terms': 1,
          'movies': 1,
          'suitable': 1,
          'exercise': 1,
          'camp': 1,
          'compared': 1,
          'say': 1,
          'studio': 1,
          'term': 1,
          'shares': 1,
          'initials': 1,
          'bs': 1,
          'review': 1,
          'written': 1,
          'august': 1,
          '12': 1,
          '1998': 1,
          'nneg': 1}),
 Counter({'world': 10,
          'hurlyburly': 6,
          'men': 5,
          'much': 4,
          'ni': 4,
          'two': 3,
          'could': 3,
          'movies': 3,
          'everything': 3,
          'life': 3,
          'one': 3,
          'movie': 3,
          'nits': 3,
          'sean': 3,
          'penn': 3,
          'people': 3,
          'means': 3,
          'questions': 3,
          'background': 3,
          'like': 3,
          'film': 3,
          'real': 3,
          'large': 3,
          'women': 3,
          'stories': 3,
          'nnot': 3,
          'shakespeare': 2,
          'love': 2,
          'nwhile': 2,
          'nthis': 2,
          'nasty': 2,
          'nhurlyburly': 2,
          'eddie': 2,
          'around': 2,
          'make': 2,
          'theyre': 2,
          'makes': 2,
          'performances': 2,
          'seen': 2,
          'want': 2,
          'friend': 2,
          'also': 2,
          'phil': 2,
          'making': 2,
          'depressing': 2,
          'exists': 2,
          'everyone': 2,
          'films': 2,
          'contrast': 1,
          'nin': 1,
          'space': 1,
          'days': 1,
          'saw': 1,
          'nim': 1,
          'sure': 1,
          'get': 1,
          'different': 1,
          'former': 1,
          'top': 1,
          'telegraphing': 1,
          'shoving': 1,
          'philosophy': 1,
          'throats': 1,
          'complete': 1,
          'opposite': 1,
          'wound': 1,
          'tight': 1,
          'buried': 1,
          'script': 1,
          'spend': 1,
          'weeks': 1,
          'thinking': 1,
          'interesting': 1,
          'similar': 1,
          'vein': 1,
          'favourite': 1,
          '98': 1,
          'company': 1,
          'although': 1,
          'quite': 1,
          'ntheres': 1,
          'lots': 1,
          'talking': 1,
          'scary': 1,
          'insights': 1,
          'doenst': 1,
          'contain': 1,
          'plot': 1,
          'follow': 1,
          'tries': 1,
          'sense': 1,
          'nhis': 1,
          'big': 1,
          'question': 1,
          'pertain': 1,
          'nand': 1,
          'supposed': 1,
          'feel': 1,
          'n': 1,
          'television': 1,
          'friends': 1,
          'events': 1,
          'happen': 1,
          'guess': 1,
          'summed': 1,
          'crudely': 1,
          'whats': 1,
          'answers': 1,
          'ndonna': 1,
          'anna': 1,
          'paquin': 1,
          'gives': 1,
          'really': 1,
          'satisfying': 1,
          'lead': 1,
          'nthats': 1,
          'stay': 1,
          'mind': 1,
          'nthese': 1,
          'sorts': 1,
          'occupy': 1,
          'time': 1,
          'neven': 1,
          'push': 1,
          'however': 1,
          'resolve': 1,
          'influences': 1,
          'nthe': 1,
          'superb': 1,
          'havent': 1,
          'fact': 1,
          'cant': 1,
          'remember': 1,
          'seeing': 1,
          'anything': 1,
          'brilliant': 1,
          'neddie': 1,
          'isnt': 1,
          'likeable': 1,
          'character': 1,
          'understandable': 1,
          'dont': 1,
          'id': 1,
          'help': 1,
          'nchazz': 1,
          'palminteri': 1,
          'great': 1,
          'awful': 1,
          'person': 1,
          'nid': 1,
          'never': 1,
          'know': 1,
          'still': 1,
          'understand': 1,
          'wants': 1,
          'neveryone': 1,
          'nails': 1,
          'sexist': 1,
          'nunlike': 1,
          'unfailingly': 1,
          'politically': 1,
          'correct': 1,
          'mans': 1,
          'unapologetically': 1,
          'eyes': 1,
          'find': 1,
          'fascinating': 1,
          'counts': 1,
          'nfirst': 1,
          'na': 1,
          'part': 1,
          'hurlyburlys': 1,
          'success': 1,
          'convinces': 1,
          'sort': 1,
          'environment': 1,
          'every': 1,
          'day': 1,
          'hollywood': 1,
          'number': 1,
          'believe': 1,
          'completely': 1,
          'peripheral': 1,
          'toys': 1,
          'playthings': 1,
          'nsure': 1,
          'else': 1,
          'long': 1,
          'way': 1,
          'nsecond': 1,
          'made': 1,
          'mens': 1,
          'nwhere': 1,
          'womens': 1,
          'soap': 1,
          'operas': 1,
          'chick': 1,
          'flicks': 1,
          'meant': 1,
          'satisfy': 1,
          'touch': 1,
          'essence': 1,
          'based': 1,
          'stage': 1,
          'play': 1,
          'evident': 1,
          'moment': 1,
          'starts': 1,
          'talkative': 1,
          'intelligent': 1,
          'static': 1,
          'drag': 1,
          'bit': 1,
          'sometimes': 1,
          'sound': 1,
          'quoting': 1,
          'textbooks': 1,
          'mostly': 1,
          'good': 1,
          'thing': 1,
          'filled': 1,
          'special': 1,
          'effects': 1,
          'sweeping': 1,
          'panoramas': 1,
          'underestimate': 1,
          'intelligence': 1,
          'audience': 1,
          'nall': 1,
          'probably': 1,
          'effective': 1,
          'video': 1,
          'screen': 1,
          'nit': 1,
          'pay': 1,
          'attention': 1,
          'nneg': 1}),
 Counter({'funny': 10,
          'jokes': 10,
          'film': 10,
          'silent': 8,
          'bob': 8,
          'nthe': 7,
          'comic': 7,
          'movie': 6,
          'characters': 5,
          'kevin': 5,
          'films': 5,
          'nit': 5,
          '4': 5,
          'comedy': 5,
          'gags': 4,
          'smith': 4,
          'make': 4,
          'like': 4,
          'dogma': 4,
          'jay': 4,
          'njay': 4,
          'nthey': 4,
          'plot': 3,
          'team': 3,
          'nthis': 3,
          'would': 3,
          'good': 3,
          'low': 3,
          '0': 3,
          'needs': 3,
          'way': 3,
          'strike': 3,
          'back': 3,
          'running': 2,
          'pair': 2,
          'smiths': 2,
          'humor': 2,
          'leads': 2,
          'particularly': 2,
          'entertainment': 2,
          'enough': 2,
          'feels': 2,
          'skit': 2,
          'night': 2,
          'n': 2,
          'value': 2,
          'two': 2,
          'clerks': 2,
          'chasing': 2,
          'amy': 2,
          'getting': 2,
          'work': 2,
          'audience': 2,
          'gay': 2,
          'many': 2,
          'larger': 2,
          'lives': 2,
          'nso': 2,
          'hollywood': 2,
          'adventures': 2,
          'problem': 2,
          'neither': 2,
          'nhe': 2,
          'scale': 2,
          'capsule': 1,
          'gag': 1,
          'gets': 1,
          'sporadically': 1,
          'occasionally': 1,
          'teens': 1,
          'fond': 1,
          'scatological': 1,
          'antigay': 1,
          'weak': 1,
          'little': 1,
          'inside': 1,
          'digs': 1,
          'best': 1,
          'features': 1,
          'nsadly': 1,
          'worth': 1,
          'watching': 1,
          'high': 1,
          'school': 1,
          'principal': 1,
          'let': 1,
          'kids': 1,
          'talent': 1,
          'turns': 1,
          'reasons': 1,
          'na': 1,
          'empathy': 1,
          'story': 1,
          'emotional': 1,
          'center': 1,
          'nif': 1,
          'chain': 1,
          'succeed': 1,
          'fail': 1,
          'based': 1,
          'nkevin': 1,
          'made': 1,
          'satisfying': 1,
          'nwith': 1,
          'tried': 1,
          'philosophical': 1,
          'religious': 1,
          'mixed': 1,
          'madcap': 1,
          'romp': 1,
          'npeter': 1,
          'cook': 1,
          'dudley': 1,
          'moore': 1,
          'successfully': 1,
          'bedazzled': 1,
          'nbut': 1,
          'combination': 1,
          'hard': 1,
          'right': 1,
          'fecal': 1,
          'monsters': 1,
          'nhis': 1,
          'remaining': 1,
          'mallrats': 1,
          'new': 1,
          'aimed': 1,
          'squarely': 1,
          'teenage': 1,
          'compendium': 1,
          'penis': 1,
          'flatulence': 1,
          'pastiches': 1,
          'injokes': 1,
          'nhow': 1,
          'subjective': 1,
          'call': 1,
          'nfor': 1,
          'vast': 1,
          'majority': 1,
          'nthere': 1,
          'cleverness': 1,
          'variety': 1,
          'twice': 1,
          'accuse': 1,
          'someone': 1,
          'npenis': 1,
          'times': 1,
          'nshowing': 1,
          'minor': 1,
          'every': 1,
          'clever': 1,
          'human': 1,
          'sort': 1,
          'modern': 1,
          'equivalents': 1,
          'naunton': 1,
          'wayne': 1,
          'basil': 1,
          'radford': 1,
          'duo': 1,
          'showed': 1,
          'satirizing': 1,
          'english': 1,
          'middle': 1,
          'class': 1,
          'several': 1,
          'british': 1,
          'postwar': 1,
          'including': 1,
          'dead': 1,
          'lady': 1,
          'vanishes': 1,
          'passport': 1,
          'pimlico': 1,
          'originally': 1,
          'supposedly': 1,
          'typical': 1,
          'generation': 1,
          'x': 1,
          'stoners': 1,
          'nas': 1,
          'series': 1,
          'wore': 1,
          'parts': 1,
          'nin': 1,
          'played': 1,
          'jason': 1,
          'mewes': 1,
          'chased': 1,
          'away': 1,
          'front': 1,
          'convenience': 1,
          'store': 1,
          'dealing': 1,
          'drugs': 1,
          'leaves': 1,
          'loose': 1,
          'ends': 1,
          'sure': 1,
          'worthwhile': 1,
          'hear': 1,
          'book': 1,
          'visually': 1,
          'modeled': 1,
          'adapted': 1,
          'decide': 1,
          'devote': 1,
          'wrecking': 1,
          'big': 1,
          'industry': 1,
          'cash': 1,
          'shake': 1,
          'company': 1,
          'along': 1,
          'mostly': 1,
          'road': 1,
          'get': 1,
          'really': 1,
          'pulls': 1,
          'weight': 1,
          'nsilent': 1,
          'contribute': 1,
          'reacting': 1,
          'expressive': 1,
          'face': 1,
          'makes': 1,
          'piece': 1,
          'even': 1,
          'less': 1,
          'straight': 1,
          'man': 1,
          'dean': 1,
          'martin': 1,
          'bud': 1,
          'abbott': 1,
          'could': 1,
          'carry': 1,
          'load': 1,
          'extremely': 1,
          'inventive': 1,
          'sufficiently': 1,
          'bland': 1,
          'half': 1,
          'lines': 1,
          'show': 1,
          'flair': 1,
          'long': 1,
          'successful': 1,
          'ntheir': 1,
          'starring': 1,
          'roles': 1,
          'young': 1,
          'mind': 1,
          'people': 1,
          'laugh': 1,
          'seen': 1,
          'beforesometimes': 1,
          'minutes': 1,
          'nlike': 1,
          'definitely': 1,
          'amateurish': 1,
          'real': 1,
          'ncertainly': 1,
          'involving': 1,
          'excuses': 1,
          'still': 1,
          'fall': 1,
          'flat': 1,
          'without': 1,
          'humorous': 1,
          'theological': 1,
          'content': 1,
          'offer': 1,
          'much': 1,
          'adult': 1,
          'ni': 1,
          'rate': 1,
          '10': 1,
          'nneg': 1}),
 Counter({'nthe': 8,
          'hockey': 8,
          'movie': 6,
          'really': 6,
          'characters': 5,
          'nthey': 4,
          'town': 4,
          'nhe': 4,
          'roach': 4,
          'good': 3,
          'together': 3,
          'nothing': 3,
          'mystery': 3,
          'love': 3,
          'jokes': 3,
          'game': 3,
          'charlie': 3,
          'actually': 3,
          'new': 3,
          'film': 3,
          'worth': 3,
          'community': 3,
          'alaska': 3,
          'toward': 3,
          'show': 2,
          'give': 2,
          'adds': 2,
          'like': 2,
          'even': 2,
          'one': 2,
          'movies': 2,
          'son': 2,
          'sports': 2,
          'fame': 2,
          'shows': 2,
          'york': 2,
          'rangers': 2,
          'come': 2,
          'mysterians': 2,
          'bad': 2,
          'non': 2,
          'hand': 2,
          'follows': 2,
          'handful': 2,
          'lives': 2,
          'crowe': 2,
          'nhes': 2,
          'resentful': 2,
          'eyes': 2,
          'wife': 2,
          'story': 2,
          'would': 2,
          'reynolds': 2,
          'could': 2,
          'interesting': 2,
          'walter': 2,
          'judge': 2,
          'wants': 2,
          'seriously': 2,
          'performance': 2,
          'none': 2,
          'character': 2,
          'life': 2,
          'nbut': 2,
          'scene': 2,
          'try': 2,
          'feel': 2,
          'truly': 2,
          'funny': 2,
          'say': 2,
          'ni': 2,
          'laughs': 2,
          'myers': 2,
          'comic': 2,
          'caricature': 2,
          'previews': 1,
          'pretty': 1,
          'little': 1,
          'plot': 1,
          'emotional': 1,
          'highlights': 1,
          'spliced': 1,
          'general': 1,
          'impression': 1,
          'script': 1,
          'nunfortunately': 1,
          'full': 1,
          '115': 1,
          'minutes': 1,
          'residents': 1,
          'nmystery': 1,
          'go': 1,
          'texas': 1,
          'high': 1,
          'school': 1,
          'football': 1,
          'townsfolk': 1,
          'much': 1,
          'acquit': 1,
          'player': 1,
          'whos': 1,
          'guilty': 1,
          'shooting': 1,
          'another': 1,
          'man': 1,
          'yes': 1,
          'thats': 1,
          'nevery': 1,
          'saturday': 1,
          'best': 1,
          'players': 1,
          'pair': 1,
          'whole': 1,
          'comes': 1,
          'watch': 1,
          'towns': 1,
          'prodigal': 1,
          'hank': 1,
          'azaria': 1,
          'wrote': 1,
          'article': 1,
          'weekly': 1,
          'illustrated': 1,
          'nmysterys': 1,
          'national': 1,
          'abuzz': 1,
          'na': 1,
          'week': 1,
          'later': 1,
          'person': 1,
          'brings': 1,
          'offer': 1,
          'nhl': 1,
          'play': 1,
          'locals': 1,
          'see': 1,
          'theyd': 1,
          'money': 1,
          'exhibition': 1,
          'dont': 1,
          'want': 1,
          'turn': 1,
          'butt': 1,
          'leno': 1,
          'letterman': 1,
          'affected': 1,
          'proposition': 1,
          'nbiebe': 1,
          'russell': 1,
          'retired': 1,
          'team': 1,
          'asked': 1,
          'coach': 1,
          'boys': 1,
          'including': 1,
          'replacement': 1,
          'already': 1,
          'top': 1,
          'making': 1,
          'ncrowe': 1,
          'given': 1,
          'lot': 1,
          'room': 1,
          'act': 1,
          'hes': 1,
          'kind': 1,
          'stuck': 1,
          'constantly': 1,
          'brooding': 1,
          'ncharlie': 1,
          'meanwhile': 1,
          'born': 1,
          'measure': 1,
          'mans': 1,
          'nhis': 1,
          'gift': 1,
          'feature': 1,
          'way': 1,
          'compensating': 1,
          'better': 1,
          'skater': 1,
          'hoped': 1,
          'earn': 1,
          'respect': 1,
          'merit': 1,
          'townspeople': 1,
          'find': 1,
          'reasons': 1,
          'continue': 1,
          'disliking': 1,
          'nburt': 1,
          'whose': 1,
          'courtroom': 1,
          'befouled': 1,
          'moronic': 1,
          'jury': 1,
          'fans': 1,
          'nwalter': 1,
          'experience': 1,
          'collegiate': 1,
          'actively': 1,
          'tries': 1,
          'put': 1,
          'behind': 1,
          'take': 1,
          'get': 1,
          'nreynolds': 1,
          'sloppy': 1,
          'writing': 1,
          'andor': 1,
          'editing': 1,
          'keep': 1,
          'corner': 1,
          'never': 1,
          'gets': 1,
          'pull': 1,
          'nbiebes': 1,
          'mary': 1,
          'mccormack': 1,
          'understood': 1,
          'unlike': 1,
          'accept': 1,
          'skewed': 1,
          'view': 1,
          'nshe': 1,
          'chose': 1,
          'husband': 1,
          'wide': 1,
          'open': 1,
          'nher': 1,
          'unique': 1,
          'insight': 1,
          'verbalized': 1,
          'lasts': 1,
          'gone': 1,
          'carries': 1,
          'hint': 1,
          'deeper': 1,
          'wisdom': 1,
          'nmysterty': 1,
          'well': 1,
          'developed': 1,
          'mentioning': 1,
          'biggest': 1,
          'problem': 1,
          'real': 1,
          'heart': 1,
          'underlying': 1,
          'thing': 1,
          'ninstead': 1,
          'screenwriters': 1,
          'david': 1,
          'e': 1,
          'kelley': 1,
          'sean': 1,
          'obyrne': 1,
          'cram': 1,
          'entire': 1,
          'human': 1,
          'condition': 1,
          'comedy': 1,
          'make': 1,
          'laugh': 1,
          'cry': 1,
          'outrage': 1,
          'pride': 1,
          'present': 1,
          'framing': 1,
          'cadence': 1,
          'theres': 1,
          'appropriately': 1,
          'staged': 1,
          'scenes': 1,
          'sadness': 1,
          'sad': 1,
          'nas': 1,
          'columnist': 1,
          'molly': 1,
          'ivins': 1,
          'hat': 1,
          'cattle': 1,
          'perfect': 1,
          'opportunity': 1,
          'arises': 1,
          'nthere': 1,
          'funeral': 1,
          'played': 1,
          'appropriate': 1,
          'gravity': 1,
          'somber': 1,
          'music': 1,
          'nit': 1,
          'chance': 1,
          'reflect': 1,
          'decide': 1,
          'whats': 1,
          'important': 1,
          'nrussell': 1,
          'steps': 1,
          'forward': 1,
          'speak': 1,
          'spell': 1,
          'metaphor': 1,
          'us': 1,
          'says': 1,
          'matters': 1,
          'nthen': 1,
          'guess': 1,
          'shallow': 1,
          'appear': 1,
          'nonly': 1,
          'mildly': 1,
          'probably': 1,
          'deserves': 1,
          '2': 1,
          'stars': 1,
          'laughed': 1,
          'loud': 1,
          'genuine': 1,
          'places': 1,
          'docked': 1,
          'extra': 1,
          'half': 1,
          'star': 1,
          'mike': 1,
          'friend': 1,
          'turned': 1,
          'role': 1,
          'didnt': 1,
          'suit': 1,
          'nmyers': 1,
          'actor': 1,
          'puts': 1,
          'masks': 1,
          'becomes': 1,
          'outrageous': 1,
          'great': 1,
          'austin': 1,
          'powers': 1,
          'dr': 1,
          'evil': 1,
          'scottish': 1,
          'nnobody': 1,
          'else': 1,
          'mysterty': 1,
          'nall': 1,
          'people': 1,
          'dramatic': 1,
          'semiserious': 1,
          'roles': 1,
          'nfor': 1,
          'bring': 1,
          'cheap': 1,
          'incredible': 1,
          'contempt': 1,
          'rest': 1,
          'cast': 1,
          'audience': 1,
          'indeed': 1,
          'nits': 1,
          'acknowledgment': 1,
          'director': 1,
          'taking': 1,
          'nneg': 1}),
 Counter({'cliche': 6,
          'mccoy': 6,
          'character': 4,
          'one': 4,
          'film': 4,
          'movie': 4,
          'bank': 4,
          'nthe': 4,
          'bad': 3,
          'guy': 3,
          'na': 3,
          'cliches': 3,
          'real': 3,
          'make': 3,
          'got': 3,
          'sixyear': 3,
          'doesnt': 3,
          'know': 3,
          'nand': 3,
          'dialogue': 3,
          'like': 3,
          'criminal': 2,
          'get': 2,
          'ever': 2,
          'example': 2,
          'everything': 2,
          'might': 2,
          'basinger': 2,
          'wants': 2,
          'right': 2,
          'old': 2,
          'son': 2,
          'even': 2,
          'robbing': 2,
          'schmidt': 2,
          'trying': 2,
          'kid': 2,
          'nthis': 2,
          'ni': 2,
          'cant': 2,
          'time': 2,
          'supposed': 2,
          'mention': 2,
          'kilmer': 2,
          'never': 2,
          'soon': 2,
          'suave': 1,
          'cool': 1,
          'collected': 1,
          'rich': 1,
          'uptight': 1,
          'clumsy': 1,
          'oaf': 1,
          'add': 1,
          'laughs': 1,
          'owns': 1,
          'wild': 1,
          'animal': 1,
          'crooked': 1,
          'chauvinistic': 1,
          'law': 1,
          'enforcer': 1,
          'type': 1,
          'nat': 1,
          'intense': 1,
          'moment': 1,
          'main': 1,
          'tries': 1,
          'away': 1,
          'car': 1,
          'trouble': 1,
          'starting': 1,
          'ncomplaining': 1,
          'nok': 1,
          'ok': 1,
          'nso': 1,
          'always': 1,
          'hear': 1,
          'nbut': 1,
          'prime': 1,
          'nnot': 1,
          'uttered': 1,
          'word': 1,
          'frame': 1,
          'whole': 1,
          'isnt': 1,
          'cut': 1,
          'paste': 1,
          'weve': 1,
          'seen': 1,
          'nthey': 1,
          'well': 1,
          'use': 1,
          'training': 1,
          'robbery': 1,
          '90s': 1,
          'nkaren': 1,
          'kim': 1,
          'robber': 1,
          'parole': 1,
          'stay': 1,
          'state': 1,
          'prison': 1,
          'nshe': 1,
          'things': 1,
          'go': 1,
          'straight': 1,
          'especially': 1,
          'fact': 1,
          'shes': 1,
          'alive': 1,
          'naware': 1,
          'mccoys': 1,
          'expertise': 1,
          'sniveling': 1,
          'jack': 1,
          'terence': 1,
          'stamp': 1,
          'uses': 1,
          'coerce': 1,
          'returning': 1,
          'past': 1,
          'nhe': 1,
          'pull': 1,
          'elaborate': 1,
          'heist': 1,
          '18': 1,
          'million': 1,
          'dollars': 1,
          'caught': 1,
          'rob': 1,
          'six': 1,
          'years': 1,
          'earlier': 1,
          'way': 1,
          'somehow': 1,
          'due': 1,
          'refuses': 1,
          'nwho': 1,
          'knows': 1,
          'hell': 1,
          'n': 1,
          'cue': 1,
          'sinister': 1,
          'laughter': 1,
          'pathetically': 1,
          'pitiful': 1,
          'hard': 1,
          'begin': 1,
          'aforementioned': 1,
          'brutally': 1,
          'abundant': 1,
          'stress': 1,
          'enough': 1,
          'every': 1,
          'single': 1,
          'element': 1,
          'whether': 1,
          'plot': 1,
          'twist': 1,
          'etc': 1,
          'damn': 1,
          'generic': 1,
          'youll': 1,
          'wonder': 1,
          'anyone': 1,
          'working': 1,
          'behind': 1,
          'scenes': 1,
          'let': 1,
          'alone': 1,
          'front': 1,
          'camera': 1,
          'nbasinger': 1,
          'absolutely': 1,
          'vacant': 1,
          'us': 1,
          'emotionally': 1,
          'attached': 1,
          'nheres': 1,
          'someone': 1,
          'spent': 1,
          'banks': 1,
          'heads': 1,
          'onto': 1,
          'street': 1,
          'feel': 1,
          'sorry': 1,
          'nas': 1,
          'confronts': 1,
          'break': 1,
          'tears': 1,
          'nespecially': 1,
          'neither': 1,
          'zach': 1,
          'english': 1,
          'plays': 1,
          'depth': 1,
          'emotionalradiance': 1,
          'whatsoever': 1,
          'suppose': 1,
          'val': 1,
          'nyeah': 1,
          'thats': 1,
          'hes': 1,
          'nquite': 1,
          'sadly': 1,
          'seeing': 1,
          'discuss': 1,
          'name': 1,
          'second': 1,
          'billing': 1,
          'nto': 1,
          'fair': 1,
          'admit': 1,
          'potential': 1,
          'role': 1,
          'bumbling': 1,
          'wannabe': 1,
          'j': 1,
          'nbarker': 1,
          'nunfortunately': 1,
          'script': 1,
          'allow': 1,
          'much': 1,
          'room': 1,
          'improvement': 1,
          'used': 1,
          'bookends': 1,
          'shows': 1,
          'middle': 1,
          'nwe': 1,
          'appreciate': 1,
          'brought': 1,
          'project': 1,
          'keep': 1,
          'head': 1,
          'water': 1,
          'sinks': 1,
          'cliched': 1,
          'mess': 1,
          'actors': 1,
          'dummies': 1,
          'moved': 1,
          'unenthusiastic': 1,
          'puppeteer': 1,
          'particularly': 1,
          'schmidts': 1,
          'trite': 1,
          'falls': 1,
          'niagra': 1,
          'definitely': 1,
          'avoid': 1,
          'folks': 1,
          'anything': 1,
          'nneg': 1}),
 Counter({'one': 11,
          'film': 10,
          'bad': 4,
          'acting': 4,
          'two': 4,
          'quality': 4,
          'shot': 4,
          '200': 3,
          'cigarettes': 3,
          'every': 3,
          'moment': 3,
          'plot': 3,
          'party': 3,
          'monicas': 3,
          'nbut': 3,
          'new': 3,
          'common': 3,
          'scene': 3,
          'time': 3,
          'even': 3,
          'make': 2,
          'best': 2,
          'life': 2,
          '95': 2,
          'minutes': 2,
          'movie': 2,
          'watch': 2,
          'nnot': 2,
          'actually': 2,
          'nthe': 2,
          'predictable': 2,
          'making': 2,
          'nit': 2,
          'yet': 2,
          'invited': 2,
          'evening': 2,
          'york': 2,
          'bond': 2,
          'end': 2,
          'arent': 2,
          'come': 2,
          'terms': 2,
          'nfirst': 2,
          'relationship': 2,
          'sexual': 2,
          'performance': 2,
          'lack': 2,
          'nhe': 2,
          'characters': 2,
          'poor': 2,
          'production': 2,
          'caitlyn': 2,
          'character': 2,
          'neither': 2,
          'stephie': 2,
          '2': 2,
          'usual': 2,
          'attempt': 2,
          'level': 2,
          'lucy': 2,
          'friends': 2,
          'ellie': 2,
          'around': 2,
          'nhowever': 2,
          'seem': 2,
          'worst': 2,
          'subplot': 2,
          'cindy': 2,
          'night': 2,
          'attempts': 2,
          'self': 2,
          'least': 2,
          'decent': 2,
          'glory': 2,
          'get': 2,
          'also': 2,
          'matter': 2,
          'ironically': 1,
          'themes': 1,
          'try': 1,
          'nunfortunately': 1,
          'longer': 1,
          'able': 1,
          'say': 1,
          'lived': 1,
          'fullest': 1,
          'spent': 1,
          'otherwise': 1,
          'perfectly': 1,
          'good': 1,
          'watching': 1,
          'sad': 1,
          'excuse': 1,
          'nactually': 1,
          'smoking': 1,
          'couldnt': 1,
          'worse': 1,
          'pathetically': 1,
          'overall': 1,
          'redeeming': 1,
          'qualities': 1,
          'whatsoever': 1,
          'scattered': 1,
          'thin': 1,
          'monumentally': 1,
          'style': 1,
          'resembles': 1,
          'home': 1,
          'video': 1,
          'december': 1,
          '31': 1,
          '1981': 1,
          'big': 1,
          'martha': 1,
          'plimpton': 1,
          'house': 1,
          'arrived': 1,
          'nher': 1,
          '8': 1,
          'guests': 1,
          'several': 1,
          'people': 1,
          'picked': 1,
          'throughout': 1,
          'wandering': 1,
          'streets': 1,
          'city': 1,
          'various': 1,
          'groups': 1,
          'nsome': 1,
          'know': 1,
          'slept': 1,
          'monica': 1,
          'total': 1,
          'strangers': 1,
          'face': 1,
          'personal': 1,
          'neuroses': 1,
          'nights': 1,
          'nthose': 1,
          'ones': 1,
          'issues': 1,
          'help': 1,
          'eric': 1,
          'brian': 1,
          'mccardie': 1,
          'former': 1,
          'boyfriend': 1,
          'getting': 1,
          'heartbreak': 1,
          'terminating': 1,
          'prematurely': 1,
          'thereof': 1,
          'bland': 1,
          'full': 1,
          'dullness': 1,
          'utterly': 1,
          'stereotypical': 1,
          'trait': 1,
          'nbridget': 1,
          'nicole': 1,
          'parker': 1,
          'angela': 1,
          'featherstone': 1,
          'extremely': 1,
          'sensuous': 1,
          'young': 1,
          'women': 1,
          'looking': 1,
          'someone': 1,
          'handle': 1,
          'desires': 1,
          'years': 1,
          'eve': 1,
          'tag': 1,
          'along': 1,
          'nthey': 1,
          'stumble': 1,
          'across': 1,
          'nameless': 1,
          'bartender': 1,
          'ben': 1,
          'affleck': 1,
          'truly': 1,
          'perfect': 1,
          'imperfections': 1,
          'nether': 1,
          'sexually': 1,
          'deprived': 1,
          'uncertain': 1,
          'future': 1,
          'law': 1,
          'school': 1,
          'nhis': 1,
          'flaws': 1,
          'boring': 1,
          'unrealistic': 1,
          'painful': 1,
          'nas': 1,
          'bridget': 1,
          'passes': 1,
          'entertained': 1,
          'humored': 1,
          'substandard': 1,
          'comedy': 1,
          'nmoving': 1,
          'val': 1,
          'christina': 1,
          'ricci': 1,
          'gabby': 1,
          'hoffman': 1,
          'teenage': 1,
          'girls': 1,
          'fake': 1,
          'identification': 1,
          'different': 1,
          'thoughts': 1,
          'nval': 1,
          'cousin': 1,
          'true': 1,
          'fan': 1,
          'non': 1,
          'hand': 1,
          'convinced': 1,
          'vulnerable': 1,
          'crime': 1,
          'venture': 1,
          'locations': 1,
          'search': 1,
          'cant': 1,
          'find': 1,
          'nparadoxically': 1,
          'punks': 1,
          'meet': 1,
          'bar': 1,
          'flee': 1,
          'presence': 1,
          'successful': 1,
          'guide': 1,
          'fears': 1,
          'force': 1,
          'relaxation': 1,
          'upon': 1,
          'warped': 1,
          'minds': 1,
          'nof': 1,
          'insanely': 1,
          'dull': 1,
          'uninteresting': 1,
          'couples': 1,
          'approaches': 1,
          'decency': 1,
          'nwisely': 1,
          'movies': 1,
          'creators': 1,
          'put': 1,
          'heavy': 1,
          'emphasis': 1,
          'courtney': 1,
          'love': 1,
          'kevin': 1,
          'paul': 1,
          'rudd': 1,
          'share': 1,
          'dateless': 1,
          'npaul': 1,
          'broken': 1,
          'long': 1,
          'steady': 1,
          'janeane': 1,
          'garofalo': 1,
          'starting': 1,
          'loss': 1,
          'informs': 1,
          'sleeping': 1,
          'complexity': 1,
          'want': 1,
          'reiterated': 1,
          'intercourse': 1,
          'bathroom': 1,
          'stall': 1,
          'occasion': 1,
          'strange': 1,
          'nfinally': 1,
          'performances': 1,
          'njack': 1,
          'jay': 1,
          'mohr': 1,
          'kate': 1,
          'hudson': 1,
          'going': 1,
          'short': 1,
          'period': 1,
          'jack': 1,
          'learned': 1,
          'took': 1,
          'cindys': 1,
          'virginity': 1,
          'nwhile': 1,
          'play': 1,
          'predictably': 1,
          'loathing': 1,
          'male': 1,
          'deal': 1,
          'string': 1,
          'stands': 1,
          'includes': 1,
          'recently': 1,
          'deflowered': 1,
          'nvery': 1,
          'often': 1,
          'putrid': 1,
          'reveal': 1,
          'occasional': 1,
          'cinematography': 1,
          'moments': 1,
          'highlighted': 1,
          'ninstead': 1,
          'collection': 1,
          'rough': 1,
          'inconsistent': 1,
          'cuts': 1,
          'continuity': 1,
          'inaccuracies': 1,
          'noticeable': 1,
          'goes': 1,
          'another': 1,
          'apparent': 1,
          'order': 1,
          'follows': 1,
          'weekened': 1,
          'unnecessarily': 1,
          'edgy': 1,
          'edits': 1,
          'nat': 1,
          'times': 1,
          'objects': 1,
          'move': 1,
          'hairstyles': 1,
          'costumes': 1,
          'change': 1,
          'nthere': 1,
          '4': 1,
          'scenes': 1,
          'taxi': 1,
          'cab': 1,
          'go': 1,
          'start': 1,
          'finish': 1,
          'single': 1,
          'anybody': 1,
          'pay': 1,
          'driver': 1,
          'nand': 1,
          'miserable': 1,
          'may': 1,
          'ray': 1,
          'hope': 1,
          'many': 1,
          'plots': 1,
          'nperhaps': 1,
          'makers': 1,
          'decided': 1,
          'concentrate': 1,
          'perhaps': 1,
          'three': 1,
          'might': 1,
          'opportunity': 1,
          'development': 1,
          'payoff': 1,
          'didnt': 1,
          'happen': 1,
          'way': 1,
          'cast': 1,
          'name': 1,
          'actors': 1,
          'forced': 1,
          'roles': 1,
          'could': 1,
          'convert': 1,
          'mediocre': 1,
          'story': 1,
          'line': 1,
          'crashed': 1,
          'burned': 1,
          'quicker': 1,
          'takes': 1,
          'ball': 1,
          'drop': 1,
          'midnight': 1,
          'nneg': 1}),
 Counter({'action': 7,
          'nthe': 5,
          'movie': 4,
          'speed': 4,
          'scenes': 4,
          'plot': 4,
          'characters': 4,
          'mad': 3,
          'bomber': 3,
          'thriller': 3,
          'blown': 3,
          'away': 3,
          'gaerity': 3,
          'doves': 3,
          'using': 3,
          'film': 3,
          'role': 3,
          'high': 2,
          'concept': 2,
          'nin': 2,
          'summer': 2,
          'people': 2,
          'begins': 2,
          'prison': 2,
          'northern': 2,
          'ireland': 2,
          'tommy': 2,
          'lee': 2,
          'jones': 2,
          'ira': 2,
          'terrorist': 2,
          'devices': 2,
          'boston': 2,
          'dove': 2,
          'even': 2,
          'long': 2,
          'provide': 2,
          'nand': 2,
          'main': 2,
          'written': 2,
          'john': 2,
          '1990s': 1,
          'would': 1,
          'remembered': 1,
          'era': 1,
          'binary': 1,
          'events': 1,
          'hollywood': 1,
          'two': 1,
          'movies': 1,
          'dealing': 1,
          'subject': 1,
          'precise': 1,
          '1994': 1,
          'weeks': 1,
          'thrillride': 1,
          'actionfest': 1,
          'followed': 1,
          'rather': 1,
          'disappointing': 1,
          'days': 1,
          'associate': 1,
          'title': 1,
          '1992': 1,
          'nicole': 1,
          'eggert': 1,
          'nude': 1,
          'great': 1,
          'talent': 1,
          'make': 1,
          'lethal': 1,
          'explosive': 1,
          'almost': 1,
          'material': 1,
          'escapes': 1,
          'nhe': 1,
          'comes': 1,
          'accidentally': 1,
          'notices': 1,
          'jimmy': 1,
          'jeff': 1,
          'bridges': 1,
          'dedicated': 1,
          'bomb': 1,
          'disposal': 1,
          'expert': 1,
          'within': 1,
          'police': 1,
          'nfew': 1,
          'except': 1,
          'know': 1,
          'violent': 1,
          'past': 1,
          'used': 1,
          'becoming': 1,
          'sick': 1,
          'violence': 1,
          'betraying': 1,
          'emigrating': 1,
          'america': 1,
          'changed': 1,
          'name': 1,
          'started': 1,
          'experience': 1,
          'good': 1,
          'purpose': 1,
          'ngaerity': 1,
          'holds': 1,
          'personally': 1,
          'responsible': 1,
          'captivity': 1,
          'campaign': 1,
          'bombing': 1,
          'terror': 1,
          'directed': 1,
          'specifically': 1,
          'colleagues': 1,
          'friends': 1,
          'relatives': 1,
          'ndove': 1,
          'going': 1,
          'retire': 1,
          'start': 1,
          'family': 1,
          'must': 1,
          'confront': 1,
          'nwhile': 1,
          'doesnt': 1,
          'try': 1,
          'bother': 1,
          'excuse': 1,
          'spectacular': 1,
          'tries': 1,
          'conventional': 1,
          'back': 1,
          'story': 1,
          'reason': 1,
          'inferior': 1,
          'nbadly': 1,
          'badly': 1,
          'sometimes': 1,
          'worse': 1,
          'nscreenplay': 1,
          'bateer': 1,
          'rice': 1,
          'barely': 1,
          'touches': 1,
          'complicated': 1,
          'issues': 1,
          'tragedy': 1,
          'cheap': 1,
          'backstory': 1,
          'cheaper': 1,
          'drama': 1,
          'course': 1,
          'full': 1,
          'implausibilities': 1,
          'one': 1,
          'fact': 1,
          'fails': 1,
          'explain': 1,
          'single': 1,
          'individual': 1,
          'matter': 1,
          'brilliant': 1,
          'produce': 1,
          'thousands': 1,
          'deadly': 1,
          'hold': 1,
          'entire': 1,
          'city': 1,
          'bay': 1,
          'nthose': 1,
          'questions': 1,
          'case': 1,
          'could': 1,
          'forgotten': 1,
          'goes': 1,
          'pauses': 1,
          'filled': 1,
          'cliched': 1,
          'predictable': 1,
          'situation': 1,
          'background': 1,
          'nbecause': 1,
          'seems': 1,
          'little': 1,
          'bit': 1,
          'boring': 1,
          'times': 1,
          'annoying': 1,
          'element': 1,
          'however': 1,
          'nhis': 1,
          'acting': 1,
          'overthetop': 1,
          'potentially': 1,
          'fascinating': 1,
          'villain': 1,
          'turns': 1,
          'pathetic': 1,
          'caricature': 1,
          'nthis': 1,
          'painful': 1,
          'contrast': 1,
          'strong': 1,
          'performance': 1,
          'given': 1,
          'actor': 1,
          'fugitive': 1,
          'bright': 1,
          'points': 1,
          'though': 1,
          'nsome': 1,
          'fine': 1,
          'credited': 1,
          'director': 1,
          'stephen': 1,
          'hopkins': 1,
          'predator': 1,
          'ii': 1,
          'judgement': 1,
          'night': 1,
          'forrest': 1,
          'whitaker': 1,
          'really': 1,
          'shines': 1,
          'minor': 1,
          'colleague': 1,
          'nbut': 1,
          'justifiably': 1,
          'shadowed': 1,
          'famous': 1,
          'yet': 1,
          'hardly': 1,
          'unforgettable': 1,
          'competitor': 1,
          'nneg': 1}),
 Counter({'joan': 7,
          'besson': 5,
          'bessons': 3,
          'battle': 3,
          'milla': 3,
          'film': 3,
          'great': 3,
          'young': 2,
          'arc': 2,
          'stirring': 2,
          'scenes': 2,
          'jovovich': 2,
          'though': 2,
          'since': 2,
          'believe': 2,
          'one': 2,
          'joans': 2,
          'conscience': 2,
          'like': 2,
          'aspect': 2,
          'shes': 2,
          'story': 2,
          'dont': 1,
          'get': 1,
          'wrong': 1,
          'tend': 1,
          'appreciate': 1,
          'naive': 1,
          'unashamedly': 1,
          'romantic': 1,
          'worldview': 1,
          'artsy': 1,
          'european': 1,
          'sensibility': 1,
          'gone': 1,
          'thoroughly': 1,
          'hollywood': 1,
          'nhis': 1,
          '1994': 1,
          'leon': 1,
          'exciting': 1,
          'absurdly': 1,
          'moving': 1,
          'thanks': 1,
          'mainly': 1,
          'interplay': 1,
          'jean': 1,
          'reno': 1,
          'natalie': 1,
          'portman': 1,
          '1997s': 1,
          'fifth': 1,
          'element': 1,
          'goofy': 1,
          'paean': 1,
          'love': 1,
          'luv': 1,
          'thats': 1,
          'even': 1,
          'hoot': 1,
          'repeated': 1,
          'viewings': 1,
          'nbut': 1,
          'mess': 1,
          'despite': 1,
          'mostly': 1,
          'knockout': 1,
          'presence': 1,
          'closecropped': 1,
          'maiden': 1,
          'njovovich': 1,
          'personal': 1,
          'muse': 1,
          'making': 1,
          'last': 1,
          'two': 1,
          'films': 1,
          'theyve': 1,
          'separated': 1,
          'magnetic': 1,
          'energetic': 1,
          'enough': 1,
          'play': 1,
          'credible': 1,
          'long': 1,
          'warrior': 1,
          'also': 1,
          'fabulous': 1,
          'supermodellevel': 1,
          'babe': 1,
          'nand': 1,
          'remains': 1,
          'servicable': 1,
          'action': 1,
          'director': 1,
          'especially': 1,
          'facile': 1,
          'nleading': 1,
          'army': 1,
          'seemingly': 1,
          'impenetrable': 1,
          'fortresses': 1,
          'english': 1,
          'struggle': 1,
          'odds': 1,
          'undeniably': 1,
          'helps': 1,
          'understand': 1,
          'french': 1,
          'could': 1,
          'fervently': 1,
          'god': 1,
          'side': 1,
          'nbessons': 1,
          'big': 1,
          'mistake': 1,
          'think': 1,
          'trying': 1,
          'dramatize': 1,
          'interior': 1,
          'life': 1,
          'subject': 1,
          'nyes': 1,
          'visions': 1,
          'guarantee': 1,
          'whatever': 1,
          'image': 1,
          'sympathetic': 1,
          'audience': 1,
          'conjures': 1,
          'collective': 1,
          'mind': 1,
          'compelling': 1,
          'blueeyed': 1,
          'christ': 1,
          'figure': 1,
          'display': 1,
          'hallucinatory': 1,
          'dream': 1,
          'sequences': 1,
          'nthe': 1,
          'whole': 1,
          'conceit': 1,
          'turns': 1,
          'disaster': 1,
          'right': 1,
          'time': 1,
          'dustin': 1,
          'hoffman': 1,
          'billed': 1,
          'shows': 1,
          'spouting': 1,
          'platitudes': 1,
          'sending': 1,
          'poor': 1,
          'running': 1,
          'around': 1,
          'cell': 1,
          'babbling': 1,
          'ally': 1,
          'mcbeal': 1,
          'nthats': 1,
          'kind': 1,
          'shame': 1,
          'quite': 1,
          'well': 1,
          'point': 1,
          'charging': 1,
          'banshee': 1,
          'wail': 1,
          'suggests': 1,
          'eruption': 1,
          'sublimated': 1,
          'bloodthirstiness': 1,
          'nthat': 1,
          'darkly': 1,
          'attractive': 1,
          'character': 1,
          'likely': 1,
          'charismatic': 1,
          'madwoman': 1,
          'vessel': 1,
          'lord': 1,
          'less': 1,
          'betrayed': 1,
          'final': 1,
          'reels': 1,
          'browbeats': 1,
          'killing': 1,
          'overseen': 1,
          'starts': 1,
          'look': 1,
          'little': 1,
          'confused': 1,
          'lady': 1,
          'whos': 1,
          'take': 1,
          'fall': 1,
          'nas': 1,
          'winds': 1,
          'condemned': 1,
          'horrible': 1,
          'death': 1,
          'fire': 1,
          'aiming': 1,
          'tragedy': 1,
          'psychological': 1,
          'significance': 1,
          'ntrouble': 1,
          'hes': 1,
          'chosen': 1,
          'lurid': 1,
          'often': 1,
          'jokey': 1,
          'tone': 1,
          'balance': 1,
          'picture': 1,
          'including': 1,
          'blithe': 1,
          'cgi': 1,
          'bloodshed': 1,
          'impossible': 1,
          'shake': 1,
          'feeling': 1,
          'particular': 1,
          'vision': 1,
          'middle': 1,
          'ages': 1,
          'extent': 1,
          'nothing': 1,
          'puton': 1,
          'nthis': 1,
          'glib': 1,
          'prefab': 1,
          'version': 1,
          'makes': 1,
          'grateful': 1,
          'dreyers': 1,
          'passion': 1,
          '1928': 1,
          'whose': 1,
          'dialogue': 1,
          'drawn': 1,
          'actual': 1,
          'transcripts': 1,
          'trial': 1,
          'stands': 1,
          'harrowing': 1,
          'experiences': 1,
          'cinema': 1,
          'ncompared': 1,
          'messenger': 1,
          'plays': 1,
          'crime': 1,
          'history': 1,
          'n': 1,
          'directed': 1,
          'luc': 1,
          'written': 1,
          'andrew': 1,
          'birkin': 1,
          'cinematography': 1,
          'thierry': 1,
          'arbogast': 1,
          'music': 1,
          'eric': 1,
          'serra': 1,
          'starring': 1,
          'franceusa': 1,
          '1999': 1,
          'ntheatrical': 1,
          'ratio': 1,
          '2': 1,
          '35': 1,
          '1': 1,
          'nneg': 1}),
 Counter({'butcher': 8,
          'nthe': 7,
          'meat': 6,
          'film': 6,
          'clown': 5,
          'man': 4,
          'na': 4,
          'comedy': 4,
          'howard': 3,
          'vernon': 3,
          'frog': 3,
          'house': 3,
          'tenement': 3,
          'nthere': 3,
          'directors': 2,
          'marc': 2,
          'carojeanpierre': 2,
          'jeunet': 2,
          'dominique': 2,
          'pinon': 2,
          'louison': 2,
          'marielaure': 2,
          'dougnac': 2,
          'julie': 2,
          'clapet': 2,
          'jeanclaude': 2,
          'dreyfus': 2,
          'karin': 2,
          'viard': 2,
          'holgado': 2,
          'tapioca': 2,
          'mathou': 2,
          'kube': 2,
          'boban': 2,
          'janevski': 2,
          'young': 2,
          'rascal': 2,
          'mikael': 2,
          'todde': 2,
          'chick': 2,
          'ortega': 2,
          'postman': 2,
          'silvie': 2,
          'laguna': 2,
          'future': 2,
          'boarding': 2,
          'mostly': 2,
          'times': 2,
          'grain': 2,
          'novelty': 2,
          'thin': 2,
          'butchers': 2,
          'daughter': 2,
          'two': 2,
          'tenants': 2,
          'lives': 2,
          'woman': 2,
          'forced': 2,
          'also': 2,
          'delicatessen': 1,
          'screenwriters': 1,
          'gilles': 1,
          'adrienmarc': 1,
          'caro': 1,
          'cinematographer': 1,
          'darius': 1,
          'khondji': 1,
          'editor': 1,
          'herve': 1,
          'schneid': 1,
          'cast': 1,
          'clapetthe': 1,
          'mademoiselle': 1,
          'plusse': 1,
          'ticky': 1,
          'marcel': 1,
          'annemarie': 1,
          'pisani': 1,
          'madame': 1,
          'jacques': 1,
          'roger': 1,
          'rufus': 1,
          'robert': 1,
          'edith': 1,
          'ker': 1,
          'granny': 1,
          'aurore': 1,
          'interligator': 1,
          'runtime': 1,
          '96': 1,
          'miramaxconstellationugchatchette': 1,
          'premiere': 1,
          '1991france': 1,
          'nreviewed': 1,
          'dennis': 1,
          'schwartz': 1,
          'black': 1,
          'set': 1,
          'near': 1,
          'run': 1,
          'depraved': 1,
          'played': 1,
          'comic': 1,
          'strip': 1,
          'style': 1,
          'entertaining': 1,
          'value': 1,
          'deeper': 1,
          'satire': 1,
          'features': 1,
          'zany': 1,
          'sophomoric': 1,
          'sight': 1,
          'gags': 1,
          'relies': 1,
          'heavily': 1,
          'special': 1,
          'effects': 1,
          'world': 1,
          'fallen': 1,
          'hard': 1,
          'food': 1,
          'shortages': 1,
          'include': 1,
          'serves': 1,
          'human': 1,
          'flesh': 1,
          'customers': 1,
          'pay': 1,
          'almost': 1,
          'valued': 1,
          'commodity': 1,
          'nthats': 1,
          'big': 1,
          'joke': 1,
          'cannibalism': 1,
          'idea': 1,
          'wears': 1,
          'mighty': 1,
          'fast': 1,
          'characters': 1,
          'absurd': 1,
          'sketched': 1,
          'thinly': 1,
          'us': 1,
          'care': 1,
          'nthis': 1,
          'tasteless': 1,
          'postapocalyptic': 1,
          'french': 1,
          'first': 1,
          'feature': 1,
          'codirectors': 1,
          'nit': 1,
          'failed': 1,
          'reach': 1,
          'funny': 1,
          'bone': 1,
          'instead': 1,
          'left': 1,
          'annoyed': 1,
          'slight': 1,
          'story': 1,
          'dark': 1,
          'projections': 1,
          'nan': 1,
          'excircus': 1,
          'named': 1,
          'films': 1,
          'toogoodtobetrue': 1,
          'hero': 1,
          'answers': 1,
          'ad': 1,
          'work': 1,
          'handyman': 1,
          'landlord': 1,
          'offers': 1,
          'room': 1,
          'board': 1,
          'clumsy': 1,
          'nearsighted': 1,
          'falls': 1,
          'love': 1,
          'skinny': 1,
          'weird': 1,
          'looking': 1,
          'make': 1,
          'music': 1,
          'together': 1,
          'playing': 1,
          'cello': 1,
          'saw': 1,
          'nthey': 1,
          'innocents': 1,
          'surrounded': 1,
          'misfits': 1,
          'suffering': 1,
          'fear': 1,
          'watched': 1,
          'overbearing': 1,
          'father': 1,
          'lured': 1,
          'past': 1,
          'innocent': 1,
          'victims': 1,
          'put': 1,
          'cleaver': 1,
          'sell': 1,
          'intends': 1,
          'soon': 1,
          'fixes': 1,
          'entire': 1,
          'takes': 1,
          'place': 1,
          'shabby': 1,
          'odd': 1,
          'lot': 1,
          'bizarre': 1,
          'malcontents': 1,
          'trust': 1,
          'youngsters': 1,
          'kind': 1,
          'mischief': 1,
          'water': 1,
          'floor': 1,
          'raise': 1,
          'frogs': 1,
          'snails': 1,
          'eats': 1,
          'ntwo': 1,
          'brothers': 1,
          'create': 1,
          'little': 1,
          'cowmoo': 1,
          'toys': 1,
          'sells': 1,
          'bullshit': 1,
          'detector': 1,
          'piece': 1,
          'slutty': 1,
          'wants': 1,
          'aristocratic': 1,
          'tries': 1,
          'numerous': 1,
          'commit': 1,
          'suicide': 1,
          'inept': 1,
          'right': 1,
          'afraid': 1,
          'come': 1,
          'night': 1,
          'know': 1,
          'communicate': 1,
          'pipe': 1,
          'runs': 1,
          'building': 1,
          'one': 1,
          'scene': 1,
          'musical': 1,
          'harmony': 1,
          'lovemaking': 1,
          'gal': 1,
          'bedsprings': 1,
          'squeak': 1,
          'sexcrazed': 1,
          'lusts': 1,
          'carries': 1,
          'gun': 1,
          'delivering': 1,
          'mail': 1,
          'underdeveloped': 1,
          'subplot': 1,
          'band': 1,
          'incompetent': 1,
          'underground': 1,
          'veggie': 1,
          'fanatics': 1,
          'called': 1,
          'trogolodistes': 1,
          'summoned': 1,
          'rescue': 1,
          'steal': 1,
          'overloaded': 1,
          'many': 1,
          'eccentrics': 1,
          'seemed': 1,
          'surreal': 1,
          'look': 1,
          'added': 1,
          'dramatic': 1,
          'intensity': 1,
          'ndelicatessen': 1,
          'could': 1,
          'appeal': 1,
          'cult': 1,
          'crowd': 1,
          'like': 1,
          'sliced': 1,
          'monty': 1,
          'python': 1,
          'fans': 1,
          'liked': 1,
          'terry': 1,
          'gilliams': 1,
          'brazil': 1,
          'similar': 1,
          'spirit': 1,
          'nneg': 1}),
 Counter({'jones': 7,
          'nthe': 6,
          'movie': 5,
          'osmosis': 5,
          'nosmosis': 4,
          'may': 4,
          'frank': 4,
          'egg': 4,
          'gross': 3,
          'humor': 3,
          'jokes': 3,
          'thrax': 3,
          'voiced': 3,
          'nit': 3,
          'falls': 2,
          'theres': 2,
          'movies': 2,
          'anything': 2,
          'even': 2,
          'nits': 2,
          'merely': 2,
          'farrellys': 2,
          'almost': 2,
          'puns': 2,
          'looks': 2,
          'like': 2,
          'one': 2,
          'animation': 2,
          'young': 2,
          'find': 2,
          'live': 2,
          'action': 2,
          'sequences': 2,
          'nhe': 2,
          'shower': 2,
          'nfrank': 2,
          'look': 2,
          'better': 2,
          'virus': 2,
          'mouth': 2,
          'nafter': 2,
          'animated': 2,
          'blood': 2,
          'drix': 2,
          'nand': 2,
          'doesnt': 2,
          'unappealing': 2,
          'shame': 1,
          'execution': 1,
          'concept': 1,
          'short': 1,
          'premise': 1,
          'lacking': 1,
          'unsatisfying': 1,
          'crude': 1,
          'disgusting': 1,
          'directed': 1,
          'farrelly': 1,
          'brothers': 1,
          'twisted': 1,
          'siblings': 1,
          'behind': 1,
          'something': 1,
          'mary': 1,
          'irene': 1,
          'couple': 1,
          'mostly': 1,
          'targeted': 1,
          'belt': 1,
          'nnot': 1,
          'wrong': 1,
          'scatology': 1,
          'ni': 1,
          'bet': 1,
          'cavemen': 1,
          'appreciated': 1,
          'bathroom': 1,
          'juvenile': 1,
          'predictable': 1,
          'nyou': 1,
          'foresee': 1,
          'viewing': 1,
          'part': 1,
          'inner': 1,
          'anatomy': 1,
          'sequence': 1,
          'drawn': 1,
          'old': 1,
          'health': 1,
          'class': 1,
          'gone': 1,
          'psycho': 1,
          'trouble': 1,
          'please': 1,
          'heads': 1,
          'teenage': 1,
          'audience': 1,
          'tame': 1,
          'tastes': 1,
          'nadults': 1,
          'well': 1,
          'lets': 1,
          'say': 1,
          'unappetizing': 1,
          'plays': 1,
          '100minute': 1,
          'infomercial': 1,
          'eat': 1,
          'healthy': 1,
          'foods': 1,
          'lobby': 1,
          'revolve': 1,
          'around': 1,
          'bill': 1,
          'murray': 1,
          'seems': 1,
          'grungiest': 1,
          'human': 1,
          'universe': 1,
          'continually': 1,
          'needs': 1,
          'shave': 1,
          'much': 1,
          'consternation': 1,
          'daughter': 1,
          'fastfood': 1,
          'addict': 1,
          'eating': 1,
          'everything': 1,
          'kill': 1,
          'works': 1,
          'zoo': 1,
          'animals': 1,
          'cleaner': 1,
          'presumably': 1,
          'smell': 1,
          'nfranks': 1,
          'body': 1,
          'invaded': 1,
          'lethal': 1,
          'eats': 1,
          'hardboiled': 1,
          'fallen': 1,
          'ground': 1,
          'enough': 1,
          'picks': 1,
          'dirt': 1,
          'plops': 1,
          'nnope': 1,
          'pile': 1,
          'first': 1,
          'wrestle': 1,
          'chimp': 1,
          'wresting': 1,
          'primates': 1,
          'nlike': 1,
          'said': 1,
          'meter': 1,
          'tips': 1,
          'scales': 1,
          'ingesting': 1,
          'begins': 1,
          'nhere': 1,
          'chris': 1,
          'rock': 1,
          'renegade': 1,
          'white': 1,
          'cell': 1,
          'teamed': 1,
          'frasiers': 1,
          'david': 1,
          'hyde': 1,
          'pierce': 1,
          '12hour': 1,
          'painkiller': 1,
          'cold': 1,
          'capsule': 1,
          'battle': 1,
          'smoothly': 1,
          'laurence': 1,
          'fishburne': 1,
          'nbasically': 1,
          'cliched': 1,
          'copbuddy': 1,
          'rife': 1,
          'clich': 1,
          'genre': 1,
          'click': 1,
          'back': 1,
          'tired': 1,
          'familiar': 1,
          'conventions': 1,
          'instead': 1,
          'creating': 1,
          'new': 1,
          'exciting': 1,
          'situations': 1,
          'lame': 1,
          'searches': 1,
          'snitch': 1,
          'former': 1,
          'flu': 1,
          'pumping': 1,
          'information': 1,
          'tells': 1,
          'funny': 1,
          'fluish': 1,
          'dont': 1,
          'rise': 1,
          'level': 1,
          'scenes': 1,
          'slob': 1,
          'difficult': 1,
          'fathom': 1,
          'ever': 1,
          'married': 1,
          'sired': 1,
          'child': 1,
          'nhes': 1,
          'bigger': 1,
          'cartoon': 1,
          'characters': 1,
          'violent': 1,
          'children': 1,
          'burns': 1,
          'dissolves': 1,
          'cells': 1,
          'right': 1,
          'left': 1,
          'rather': 1,
          'twodimensional': 1,
          'flat': 1,
          'lacks': 1,
          'scope': 1,
          'depth': 1,
          'leave': 1,
          'scratching': 1,
          'head': 1,
          'maybe': 1,
          'leaning': 1,
          'toward': 1,
          'walk': 1,
          'theater': 1,
          'nneg': 1}),
 Counter({'smith': 5,
          'run': 3,
          'enemy': 3,
          'characters': 2,
          'two': 2,
          'watching': 2,
          'hackman': 2,
          'around': 2,
          'parts': 2,
          'nhe': 2,
          'getting': 2,
          'nenemy': 2,
          'films': 2,
          'insurrection': 2,
          'hollywood': 1,
          'interesting': 1,
          'plotdriven': 1,
          'suspense': 1,
          'thrillers': 1,
          'must': 1,
          'spend': 1,
          'hours': 1,
          'gritty': 1,
          'gene': 1,
          'exchange': 1,
          'obtuse': 1,
          'dialogue': 1,
          'dodging': 1,
          'fireballs': 1,
          'nin': 1,
          'state': 1,
          'exactly': 1,
          'right': 1,
          'na': 1,
          'net': 1,
          'conspiracy': 1,
          'theory': 1,
          'exciting': 1,
          'talk': 1,
          'cgi': 1,
          'aliens': 1,
          '1997s': 1,
          'lame': 1,
          'brained': 1,
          'men': 1,
          'black': 1,
          'nwill': 1,
          'guy': 1,
          'ever': 1,
          'get': 1,
          'real': 1,
          'role': 1,
          'bruce': 1,
          'willis': 1,
          'syndrome': 1,
          'nthe': 1,
          'plot': 1,
          'bascially': 1,
          'playing': 1,
          'lawyer': 1,
          'hot': 1,
          'water': 1,
          'high': 1,
          'government': 1,
          'murderers': 1,
          'assassinated': 1,
          'powerful': 1,
          'political': 1,
          'figure': 1,
          'earlier': 1,
          'movie': 1,
          'tape': 1,
          'killing': 1,
          'gets': 1,
          'hands': 1,
          'inlists': 1,
          'help': 1,
          'old': 1,
          'conspirator': 1,
          'end': 1,
          'er': 1,
          'nknow': 1,
          'one': 1,
          'worst': 1,
          'last': 1,
          'year': 1,
          'nnot': 1,
          'sloppy': 1,
          'telling': 1,
          'story': 1,
          'facts': 1,
          'straight': 1,
          'acting': 1,
          'mediocre': 1,
          'energy': 1,
          'driven': 1,
          'didnt': 1,
          'like': 1,
          'always': 1,
          'magically': 1,
          'outsmarted': 1,
          'badies': 1,
          'extra': 1,
          'seeming': 1,
          'intelligent': 1,
          'somehow': 1,
          'got': 1,
          'truck': 1,
          'came': 1,
          'time': 1,
          'superior': 1,
          'star': 1,
          'trek': 1,
          'ni': 1,
          'know': 1,
          'different': 1,
          'well': 1,
          'everything': 1,
          'fact': 1,
          'outgrossed': 1,
          'baffels': 1,
          'nsomehow': 1,
          'quality': 1,
          'cant': 1,
          'overshadow': 1,
          'quantity': 1,
          'nneg': 1}),
 Counter({'vegas': 6,
          'film': 6,
          'vacation': 5,
          'chase': 4,
          'dangelo': 3,
          'griswold': 3,
          'series': 3,
          'quaid': 3,
          'funny': 3,
          'movie': 3,
          'couple': 3,
          'best': 3,
          'family': 2,
          'films': 2,
          'two': 2,
          'time': 2,
          'ethan': 2,
          'embry': 2,
          'marisol': 2,
          'nichols': 2,
          'las': 2,
          'nit': 2,
          'point': 2,
          'griswolds': 2,
          'would': 2,
          'way': 2,
          'actually': 2,
          'none': 2,
          'might': 2,
          'moments': 2,
          'involved': 2,
          'nthe': 2,
          'moment': 2,
          'first': 2,
          'fourth': 1,
          'starring': 1,
          'chevy': 1,
          'beverly': 1,
          'heads': 1,
          'hapless': 1,
          'nas': 1,
          'three': 1,
          'children': 1,
          'rusty': 1,
          'audrey': 1,
          'played': 1,
          'revolving': 1,
          'actors': 1,
          'nthis': 1,
          'fill': 1,
          'roles': 1,
          'nalso': 1,
          'back': 1,
          'cousin': 1,
          'eddie': 1,
          'randy': 1,
          'slob': 1,
          'relative': 1,
          'seems': 1,
          'bring': 1,
          'problems': 1,
          'wherever': 1,
          'goes': 1,
          'nin': 1,
          'clark': 1,
          'decides': 1,
          'take': 1,
          'wife': 1,
          'ellen': 1,
          'renew': 1,
          'wedding': 1,
          'vows': 1,
          'comedy': 1,
          'supposed': 1,
          'ensue': 1,
          'napparently': 1,
          'filmmakers': 1,
          'thought': 1,
          'putting': 1,
          'wouldnt': 1,
          'bother': 1,
          'write': 1,
          'jokes': 1,
          'script': 1,
          'nat': 1,
          'least': 1,
          'thats': 1,
          'looks': 1,
          'watching': 1,
          'turkey': 1,
          'nabout': 1,
          'half': 1,
          'began': 1,
          'serious': 1,
          'doubts': 1,
          'whether': 1,
          'single': 1,
          'laugh': 1,
          'entire': 1,
          'since': 1,
          'nby': 1,
          'end': 1,
          'snickered': 1,
          'times': 1,
          'smiled': 1,
          'gags': 1,
          'ni': 1,
          'add': 1,
          'use': 1,
          'term': 1,
          'loosely': 1,
          'came': 1,
          'result': 1,
          'anything': 1,
          'nthey': 1,
          'well': 1,
          'stayed': 1,
          'home': 1,
          'much': 1,
          'contributed': 1,
          'things': 1,
          'kids': 1,
          'manage': 1,
          'adventures': 1,
          'nrusty': 1,
          'becomes': 1,
          'high': 1,
          'roller': 1,
          'providing': 1,
          'nevery': 1,
          'gag': 1,
          'made': 1,
          'apparent': 1,
          'stopped': 1,
          'third': 1,
          'nwhich': 1,
          'brings': 1,
          'driving': 1,
          'highway': 1,
          'holiday': 1,
          'road': 1,
          'theme': 1,
          'original': 1,
          'begins': 1,
          'play': 1,
          'nchristie': 1,
          'brinkley': 1,
          'red': 1,
          'ferrari': 1,
          'also': 1,
          'drive': 1,
          'cute': 1,
          'really': 1,
          'remind': 1,
          'far': 1,
          'fallen': 1,
          'ntoo': 1,
          'bad': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'gay': 5,
          'one': 4,
          'money': 3,
          'nit': 3,
          'get': 3,
          'makes': 3,
          'gang': 3,
          'festival': 2,
          'ever': 2,
          'nthis': 2,
          'emerging': 2,
          'masters': 2,
          'series': 2,
          'years': 2,
          'marcelo': 2,
          'pi': 2,
          'eyro': 2,
          'leader': 2,
          'causes': 2,
          'men': 2,
          'long': 2,
          'movies': 2,
          'nthe': 2,
          'explicit': 2,
          'sex': 2,
          'drug': 2,
          'use': 2,
          'violence': 2,
          'bad': 2,
          'theres': 2,
          'burnt': 1,
          'perfect': 1,
          'show': 1,
          'twice': 1,
          'thankfully': 1,
          'hear': 1,
          'seattle': 1,
          'international': 1,
          '2001s': 1,
          'easily': 1,
          'worst': 1,
          'nbilled': 1,
          'bonnie': 1,
          'clyde': 1,
          'gritty': 1,
          'director': 1,
          'highlight': 1,
          'welldesigned': 1,
          'title': 1,
          'sequence': 1,
          'ntwo': 1,
          'lovers': 1,
          'involved': 1,
          'bank': 1,
          'robbery': 1,
          'whose': 1,
          'plan': 1,
          'screwed': 1,
          'angry': 1,
          'send': 1,
          'boys': 1,
          'guys': 1,
          'may': 1,
          'actually': 1,
          'nhiding': 1,
          'prostitutes': 1,
          'apartment': 1,
          'two': 1,
          'must': 1,
          'fight': 1,
          'police': 1,
          'members': 1,
          'showdown': 1,
          'conclusion': 1,
          'nif': 1,
          'caught': 1,
          'risk': 1,
          'losing': 1,
          'love': 1,
          'nas': 1,
          'added': 1,
          'emotional': 1,
          'bonus': 1,
          'dying': 1,
          'something': 1,
          'like': 1,
          'neverything': 1,
          'happens': 1,
          'quick': 1,
          'confusing': 1,
          'completely': 1,
          'lost': 1,
          'nclarity': 1,
          'isnt': 1,
          'exactly': 1,
          'striving': 1,
          'virtue': 1,
          'little': 1,
          'hard': 1,
          'pick': 1,
          'nnot': 1,
          'much': 1,
          'could': 1,
          'really': 1,
          'happened': 1,
          'though': 1,
          'main': 1,
          'events': 1,
          'twohour': 1,
          'homosexual': 1,
          'heterosexual': 1,
          'graphic': 1,
          'extreme': 1,
          'strong': 1,
          'language': 1,
          'nlots': 1,
          'material': 1,
          'never': 1,
          'thing': 1,
          'reason': 1,
          'purpose': 1,
          'anything': 1,
          'nmost': 1,
          'scenes': 1,
          'come': 1,
          'silly': 1,
          'heavy': 1,
          'comes': 1,
          'ridiculous': 1,
          'depressing': 1,
          'appears': 1,
          'cowrote': 1,
          'figueras': 1,
          'novel': 1,
          'ricardo': 1,
          'piglia': 1,
          'purposefully': 1,
          'adds': 1,
          'blood': 1,
          'lovemaking': 1,
          'amusement': 1,
          'nhe': 1,
          'actors': 1,
          'sweaty': 1,
          'dirty': 1,
          'possible': 1,
          'snort': 1,
          'cocaine': 1,
          'gives': 1,
          'guns': 1,
          'condoms': 1,
          'lets': 1,
          'go': 1,
          'nburnt': 1,
          'pointless': 1,
          'performances': 1,
          'tries': 1,
          'thrill': 1,
          'shock': 1,
          'boredom': 1,
          'ngod': 1,
          'forbid': 1,
          'distributor': 1,
          'nanother': 1,
          'disappointing': 1,
          'socalled': 1,
          'npass': 1,
          'nneg': 1}),
 Counter({'theyre': 2,
          'mod': 2,
          'squad': 2,
          'action': 2,
          'claire': 1,
          'danes': 1,
          'giovanni': 1,
          'ribisi': 1,
          'omar': 1,
          'epps': 1,
          'make': 1,
          'likable': 1,
          'trio': 1,
          'protagonists': 1,
          'palatable': 1,
          'element': 1,
          'lamebrained': 1,
          'bigscreen': 1,
          'version': 1,
          '70s': 1,
          'tv': 1,
          'show': 1,
          'nthe': 1,
          'story': 1,
          'originality': 1,
          'block': 1,
          'wood': 1,
          'well': 1,
          'would': 1,
          'could': 1,
          'decipher': 1,
          'characters': 1,
          'blank': 1,
          'slates': 1,
          'scott': 1,
          'silvers': 1,
          'perfunctory': 1,
          'sequences': 1,
          'cliched': 1,
          'come': 1,
          'nby': 1,
          'sheer': 1,
          'force': 1,
          'talent': 1,
          'three': 1,
          'actors': 1,
          'wring': 1,
          'marginal': 1,
          'enjoyment': 1,
          'proceedings': 1,
          'whenever': 1,
          'screen': 1,
          'secondrate': 1,
          'picture': 1,
          'firstrate': 1,
          'cast': 1,
          'nneg': 1}),
 Counter({'film': 22,
          'haunting': 6,
          'one': 5,
          'bad': 5,
          'nit': 5,
          'confusing': 4,
          'movie': 4,
          'get': 4,
          'plot': 4,
          'nthe': 4,
          'house': 4,
          'great': 4,
          'horror': 3,
          'nthey': 3,
          'like': 3,
          'nfor': 3,
          'getting': 3,
          'dialogue': 3,
          'neeson': 3,
          'films': 3,
          'lili': 3,
          'taylor': 3,
          'gives': 3,
          'luke': 3,
          'us': 2,
          'post': 2,
          'things': 2,
          'nbut': 2,
          'particular': 2,
          'instance': 2,
          'titles': 2,
          'pretty': 2,
          'title': 2,
          'basically': 2,
          'dry': 2,
          'nliam': 2,
          'depth': 2,
          'least': 2,
          'unfortunately': 2,
          'make': 2,
          'nbefore': 2,
          'looking': 2,
          'looks': 2,
          'beautiful': 2,
          'head': 2,
          'scared': 2,
          'even': 2,
          'eerie': 2,
          'hill': 2,
          'performance': 2,
          'nhe': 2,
          'character': 2,
          'characters': 2,
          'potential': 2,
          'suffer': 2,
          'scene': 2,
          'director': 2,
          'makes': 2,
          'end': 2,
          'sense': 2,
          'nand': 2,
          'reason': 2,
          'good': 2,
          'nhopefully': 2,
          'forgets': 1,
          'true': 1,
          'meaning': 1,
          'scare': 1,
          'nif': 1,
          'youve': 1,
          'ever': 1,
          'seen': 1,
          'probably': 1,
          'considering': 1,
          'website': 1,
          'know': 1,
          'trivia': 1,
          'illustrations': 1,
          'guess': 1,
          'facts': 1,
          'always': 1,
          'quot': 1,
          'namequot': 1,
          'joke': 1,
          'try': 1,
          'rename': 1,
          'playing': 1,
          'different': 1,
          'small': 1,
          'soldiers': 1,
          'little': 1,
          'infantry': 1,
          'fatigues': 1,
          'smaller': 1,
          'size': 1,
          'nwell': 1,
          'seeing': 1,
          'names': 1,
          'well': 1,
          'nunfortunately': 1,
          'otherwise': 1,
          'id': 1,
          'angry': 1,
          'emails': 1,
          'overprotective': 1,
          'mothers': 1,
          'nthat': 1,
          'would': 1,
          'nok': 1,
          'fits': 1,
          'perfectly': 1,
          'serves': 1,
          'purpose': 1,
          'combined': 1,
          'boring': 1,
          'completes': 1,
          'formula': 1,
          'cinematic': 1,
          'bomb': 1,
          'gets': 1,
          'wrapped': 1,
          'without': 1,
          'phantom': 1,
          'menace': 1,
          'exciting': 1,
          'nothing': 1,
          'trash': 1,
          'still': 1,
          'boatload': 1,
          'money': 1,
          'rant': 1,
          'rave': 1,
          'let': 1,
          'point': 1,
          'stress': 1,
          'word': 1,
          'bright': 1,
          'spots': 1,
          'nfirst': 1,
          'also': 1,
          'dark': 1,
          'spot': 1,
          'hard': 1,
          'frightened': 1,
          'nthis': 1,
          'something': 1,
          'rears': 1,
          'ugly': 1,
          'points': 1,
          'nthings': 1,
          'look': 1,
          'awe': 1,
          'instead': 1,
          'straight': 1,
          'nhaunted': 1,
          'contain': 1,
          'element': 1,
          'slightly': 1,
          'successful': 1,
          'bit': 1,
          'frightening': 1,
          'never': 1,
          'heard': 1,
          'glad': 1,
          'nshe': 1,
          'satisfactory': 1,
          'ndespite': 1,
          'boringconfusing': 1,
          'concept': 1,
          'manages': 1,
          'light': 1,
          'screen': 1,
          'every': 1,
          'time': 1,
          'appears': 1,
          'costars': 1,
          'usually': 1,
          'following': 1,
          'right': 1,
          'behind': 1,
          'nowen': 1,
          'wilson': 1,
          'plays': 1,
          'cast': 1,
          'member': 1,
          'close': 1,
          'giving': 1,
          'admirable': 1,
          'comic': 1,
          'relief': 1,
          'development': 1,
          'poor': 1,
          'areas': 1,
          'nall': 1,
          'desperately': 1,
          'underdeveloped': 1,
          'nwilson': 1,
          'seems': 1,
          'needed': 1,
          'add': 1,
          'laughs': 1,
          'catherine': 1,
          'zetajones': 1,
          'ntheir': 1,
          'must': 1,
          'wicked': 1,
          'mood': 1,
          'swings': 1,
          'turn': 1,
          'ruthless': 1,
          'compassionate': 1,
          'brave': 1,
          'whatnot': 1,
          'believable': 1,
          'final': 1,
          'nail': 1,
          'hauntings': 1,
          'coffin': 1,
          'terrible': 1,
          'opening': 1,
          'important': 1,
          'obvious': 1,
          'closeups': 1,
          'play': 1,
          'major': 1,
          'role': 1,
          'nas': 1,
          'sat': 1,
          'kept': 1,
          'wondering': 1,
          'trying': 1,
          'accomplish': 1,
          'nnell': 1,
          'taylors': 1,
          'goes': 1,
          'hunted': 1,
          'savior': 1,
          'audience': 1,
          'reasoning': 1,
          'ridiculous': 1,
          'changes': 1,
          'take': 1,
          'place': 1,
          'forces': 1,
          'viewer': 1,
          'various': 1,
          'assumptions': 1,
          'give': 1,
          'indepth': 1,
          'information': 1,
          'beginning': 1,
          'nell': 1,
          'involved': 1,
          'program': 1,
          'zilch': 1,
          'four': 1,
          'nplus': 1,
          'two': 1,
          'wiped': 1,
          'first': 1,
          'ten': 1,
          'minutes': 1,
          'worst': 1,
          'part': 1,
          'killings': 1,
          'kill': 1,
          'nno': 1,
          'whatsoever': 1,
          'literally': 1,
          'noverall': 1,
          'epitome': 1,
          'nbad': 1,
          'storyline': 1,
          'waste': 1,
          'talent': 1,
          'liam': 1,
          'rebound': 1,
          'used': 1,
          'full': 1,
          'recognized': 1,
          'job': 1,
          'hopefully': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'nneg': 1}),
 Counter({'siege': 7,
          'made': 4,
          'even': 4,
          'zwick': 3,
          'film': 3,
          'n': 3,
          'washington': 3,
          'willis': 3,
          'character': 3,
          'since': 2,
          'bad': 2,
          'one': 2,
          'terrorism': 2,
          'city': 2,
          'shalhoub': 2,
          'first': 2,
          'goes': 2,
          'bening': 2,
          'may': 2,
          'well': 2,
          'arab': 2,
          'really': 2,
          'say': 2,
          'climax': 2,
          'contains': 2,
          '1989': 1,
          'director': 1,
          'edward': 1,
          'began': 1,
          'career': 1,
          'powerful': 1,
          'civil': 1,
          'war': 1,
          'drama': 1,
          'glory': 1,
          'continuous': 1,
          'disappointments': 1,
          'least': 1,
          '1994s': 1,
          'legends': 1,
          'fall': 1,
          '1996s': 1,
          'courage': 1,
          'fire': 1,
          'nthose': 1,
          'two': 1,
          'films': 1,
          'werent': 1,
          'good': 1,
          'zwicks': 1,
          'latest': 1,
          'finally': 1,
          'modernday': 1,
          'actionthriller': 1,
          'focuses': 1,
          'sweeping': 1,
          'new': 1,
          'york': 1,
          'ninvestigating': 1,
          'matter': 1,
          'fbi': 1,
          'agents': 1,
          'anthony': 1,
          'hubbard': 1,
          'denzel': 1,
          'frank': 1,
          'haddad': 1,
          'tony': 1,
          'hit': 1,
          'ordeal': 1,
          'bus': 1,
          'explodes': 1,
          'several': 1,
          'innocent': 1,
          'people': 1,
          'nlater': 1,
          'bomb': 1,
          'broadway': 1,
          'theater': 1,
          'killing': 1,
          'nthey': 1,
          'soon': 1,
          'meet': 1,
          'cia': 1,
          'operative': 1,
          'elise': 1,
          'kraft': 1,
          'annette': 1,
          'hold': 1,
          'key': 1,
          'identity': 1,
          'terrorist': 1,
          'nthere': 1,
          'movies': 1,
          'simply': 1,
          'dont': 1,
          'need': 1,
          'noh': 1,
          'sure': 1,
          'thinks': 1,
          'making': 1,
          'meaningful': 1,
          'action': 1,
          'added': 1,
          'lots': 1,
          'exposition': 1,
          'scenes': 1,
          'audience': 1,
          'basically': 1,
          'lectured': 1,
          'horrors': 1,
          'actually': 1,
          'substantial': 1,
          'die': 1,
          'hard': 1,
          'also': 1,
          'starred': 1,
          'bruce': 1,
          'nthis': 1,
          'time': 1,
          'horribly': 1,
          'wasted': 1,
          'general': 1,
          'u': 1,
          'army': 1,
          'puts': 1,
          'state': 1,
          'martial': 1,
          'law': 1,
          'nyc': 1,
          'nwhatever': 1,
          'points': 1,
          'earnestly': 1,
          'tried': 1,
          'make': 1,
          'obviously': 1,
          'lost': 1,
          'translation': 1,
          'page': 1,
          'screen': 1,
          'maybe': 1,
          'never': 1,
          'anything': 1,
          'serious': 1,
          'place': 1,
          'nthe': 1,
          'role': 1,
          'community': 1,
          'offensively': 1,
          'stereotypical': 1,
          'women': 1,
          'recent': 1,
          'john': 1,
          'caprenters': 1,
          'vampires': 1,
          'placing': 1,
          'category': 1,
          'guys': 1,
          'three': 1,
          'fine': 1,
          'actorswashington': 1,
          'shalhoubbut': 1,
          'stuck': 1,
          'ounce': 1,
          'remote': 1,
          'development': 1,
          'nbening': 1,
          'slightly': 1,
          'intriguing': 1,
          'work': 1,
          'pretty': 1,
          'much': 1,
          'steals': 1,
          'show': 1,
          'though': 1,
          'real': 1,
          'nby': 1,
          'giving': 1,
          'sermon': 1,
          'socalled': 1,
          'message': 1,
          'story': 1,
          'felt': 1,
          'like': 1,
          'wandered': 1,
          'sequel': 1,
          'deadly': 1,
          'ground': 1,
          'steven': 1,
          'seagal': 1,
          'gave': 1,
          '10minute': 1,
          'speech': 1,
          'end': 1,
          'preserving': 1,
          'environment': 1,
          'constantly': 1,
          'heavyhanded': 1,
          'entertaining': 1,
          'insightful': 1,
          'prove': 1,
          'best': 1,
          'actors': 1,
          'save': 1,
          'lacks': 1,
          'satisfactory': 1,
          'screenplay': 1,
          'nneg': 1}),
 Counter({'bad': 5,
          'nbut': 5,
          'friends': 5,
          'movie': 4,
          'gone': 3,
          'could': 3,
          'nthe': 3,
          'body': 3,
          'guilt': 3,
          'film': 3,
          'guess': 2,
          'bachelor': 2,
          'party': 2,
          'really': 2,
          'prostitute': 2,
          'ni': 2,
          'also': 2,
          'might': 2,
          'fiancee': 2,
          'diaz': 2,
          'one': 2,
          'death': 2,
          'five': 2,
          'long': 2,
          'slater': 2,
          'like': 2,
          'make': 2,
          'thing': 2,
          'bury': 2,
          'begins': 2,
          'look': 2,
          'way': 2,
          'wild': 1,
          'would': 1,
          'broken': 1,
          'furniture': 1,
          'traces': 1,
          'smack': 1,
          'cocaine': 1,
          'floor': 1,
          'dead': 1,
          'bathroom': 1,
          'elements': 1,
          'present': 1,
          'ncoincidence': 1,
          'npoor': 1,
          'kyle': 1,
          'meek': 1,
          'looking': 1,
          'jon': 1,
          'favreau': 1,
          'marry': 1,
          'radiant': 1,
          'laura': 1,
          'cameron': 1,
          'exchanges': 1,
          'vows': 1,
          'embarks': 1,
          'las': 1,
          'vegas': 1,
          'last': 1,
          'blowout': 1,
          'possibly': 1,
          'get': 1,
          'met': 1,
          'horrible': 1,
          'though': 1,
          'accidental': 1,
          'drugs': 1,
          'everywhere': 1,
          'agree': 1,
          'enough': 1,
          'evidence': 1,
          'send': 1,
          'jail': 1,
          'time': 1,
          'na': 1,
          'surprisingly': 1,
          'calm': 1,
          'robert': 1,
          'boyd': 1,
          'christian': 1,
          'looks': 1,
          'groomed': 1,
          'nefarious': 1,
          'decisions': 1,
          'ponders': 1,
          'dilemma': 1,
          'minutes': 1,
          'deciding': 1,
          'best': 1,
          'desert': 1,
          'shell': 1,
          'never': 1,
          'found': 1,
          'nalthough': 1,
          'stomach': 1,
          'gruesome': 1,
          'deed': 1,
          'getting': 1,
          'rid': 1,
          'disturbingly': 1,
          'involves': 1,
          'dismantling': 1,
          'using': 1,
          'power': 1,
          'saws': 1,
          'order': 1,
          'stuff': 1,
          'suitcases': 1,
          'return': 1,
          'trip': 1,
          'paranoia': 1,
          'set': 1,
          'slowly': 1,
          'consumes': 1,
          'none': 1,
          'adam': 1,
          'daniel': 1,
          'stern': 1,
          'grows': 1,
          'increasingly': 1,
          'agitated': 1,
          'nwhenever': 1,
          'people': 1,
          'van': 1,
          'whenever': 1,
          'cop': 1,
          'glances': 1,
          'blood': 1,
          'pressure': 1,
          'increases': 1,
          'may': 1,
          'dysfunctional': 1,
          'family': 1,
          'nanother': 1,
          'michael': 1,
          'actually': 1,
          'responsible': 1,
          'nhe': 1,
          'tries': 1,
          'feelings': 1,
          'burden': 1,
          'affect': 1,
          'judgment': 1,
          'well': 1,
          'nboyd': 1,
          'doer': 1,
          'group': 1,
          'nseemingly': 1,
          'suffering': 1,
          'psychosis': 1,
          'feels': 1,
          'secret': 1,
          'exposed': 1,
          'apt': 1,
          'take': 1,
          'extreme': 1,
          'measures': 1,
          'cover': 1,
          'tracks': 1,
          'nkyle': 1,
          'hopes': 1,
          'wedding': 1,
          'live': 1,
          'lauras': 1,
          'demanding': 1,
          'expectations': 1,
          'nthen': 1,
          'theres': 1,
          'moore': 1,
          'leland': 1,
          'orser': 1,
          'speaks': 1,
          '5': 1,
          'lines': 1,
          'walks': 1,
          'around': 1,
          'puzzled': 1,
          'face': 1,
          'problem': 1,
          'reprehensible': 1,
          'wants': 1,
          'cruel': 1,
          'comedy': 1,
          'presents': 1,
          'things': 1,
          'manner': 1,
          'arent': 1,
          'funny': 1,
          'ndrugs': 1,
          'mutilation': 1,
          'killing': 1,
          'isnt': 1,
          'something': 1,
          'laughed': 1,
          'nas': 1,
          'straight': 1,
          'psychological': 1,
          'drama': 1,
          'see': 1,
          'worked': 1,
          'tried': 1,
          'maneuver': 1,
          'overcome': 1,
          'weight': 1,
          'sometimessick': 1,
          'ways': 1,
          'insults': 1,
          'us': 1,
          'assuming': 1,
          'simply': 1,
          'discard': 1,
          'values': 1,
          '2': 1,
          'hours': 1,
          'nif': 1,
          'dont': 1,
          'think': 1,
          'want': 1,
          'know': 1,
          'find': 1,
          'convincing': 1,
          'leader': 1,
          'sways': 1,
          'choose': 1,
          'right': 1,
          'smart': 1,
          'play': 1,
          'nand': 1,
          'adds': 1,
          'brightness': 1,
          'weddingneeding': 1,
          'talents': 1,
          'essentially': 1,
          'wasted': 1,
          'nits': 1,
          'obvious': 1,
          'maker': 1,
          'trying': 1,
          'strike': 1,
          'certain': 1,
          'tone': 1,
          'chooses': 1,
          'tasteless': 1,
          'ndo': 1,
          'decision': 1,
          'seeing': 1,
          'nneg': 1}),
 Counter({'humor': 4,
          'farleys': 4,
          'movie': 4,
          'perry': 3,
          'almost': 3,
          'ready': 3,
          'best': 3,
          'farley': 3,
          'matthew': 2,
          'big': 2,
          'perrys': 2,
          'heroes': 2,
          'role': 2,
          'ni': 2,
          'nthe': 2,
          'nperry': 2,
          'nand': 2,
          'alone': 2,
          'looking': 1,
          'forward': 1,
          'film': 1,
          'since': 1,
          'heard': 1,
          'early': 1,
          'last': 1,
          'year': 1,
          'signed': 1,
          'nim': 1,
          'fan': 1,
          'subtle': 1,
          'sense': 1,
          'addition': 1,
          'think': 1,
          'chris': 1,
          'onedge': 1,
          'extreme': 1,
          'acting': 1,
          'riot': 1,
          'nso': 1,
          'naturally': 1,
          'trailer': 1,
          'hit': 1,
          'theaters': 1,
          'jumped': 1,
          'na': 1,
          'soda': 1,
          'hand': 1,
          'lights': 1,
          'dimming': 1,
          'blown': 1,
          'away': 1,
          'final': 1,
          'starring': 1,
          'supposed': 1,
          'breakthrough': 1,
          'amazed': 1,
          'among': 1,
          'spite': 1,
          'david': 1,
          'spades': 1,
          'absence': 1,
          'laughing': 1,
          'head': 1,
          'minute': 1,
          'credits': 1,
          'ran': 1,
          'nsadly': 1,
          'none': 1,
          'came': 1,
          'pass': 1,
          'spotty': 1,
          'good': 1,
          'moments': 1,
          'laughable': 1,
          'oneliners': 1,
          'far': 1,
          'chemistry': 1,
          'cast': 1,
          'seems': 1,
          'obviously': 1,
          'written': 1,
          'spade': 1,
          'type': 1,
          'associated': 1,
          'tries': 1,
          'smart': 1,
          'subject': 1,
          'left': 1,
          'flick': 1,
          'major': 1,
          'dissapointment': 1,
          'scenes': 1,
          'worth': 1,
          'first': 1,
          'look': 1,
          'let': 1,
          'second': 1,
          'delivers': 1,
          'one': 1,
          'humorous': 1,
          'line': 1,
          'whole': 1,
          'surprisingly': 1,
          'reason': 1,
          'made': 1,
          'top': 1,
          'ten': 1,
          'grossing': 1,
          'list': 1,
          'opening': 1,
          'week': 1,
          'advertised': 1,
          'classic': 1,
          'widespread': 1,
          'nalmost': 1,
          'works': 1,
          'misses': 1,
          'wagontrain': 1,
          'quite': 1,
          'longshot': 1,
          'nguys': 1,
          'lets': 1,
          'leave': 1,
          'exploring': 1,
          'lewis': 1,
          'clark': 1,
          'huh': 1,
          'nstick': 1,
          'tommy': 1,
          'boy': 1,
          'well': 1,
          'friends': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'babe': 6,
          'city': 5,
          'nthe': 5,
          'film': 4,
          'nit': 4,
          'hogget': 4,
          'mrs': 4,
          'family': 3,
          'one': 3,
          'kids': 3,
          'go': 3,
          'pig': 3,
          'enough': 3,
          'animals': 3,
          'characters': 3,
          'original': 2,
          'sequel': 2,
          'films': 2,
          'entered': 2,
          'found': 2,
          'left': 2,
          'think': 2,
          'back': 2,
          'right': 2,
          'like': 2,
          'plot': 2,
          'interesting': 2,
          'took': 2,
          'place': 2,
          'national': 2,
          'nbut': 2,
          'could': 2,
          'farm': 2,
          'going': 2,
          'make': 2,
          'new': 2,
          'fair': 2,
          'set': 2,
          'moment': 2,
          'fact': 2,
          'main': 2,
          'point': 2,
          'rather': 2,
          'funny': 2,
          'even': 2,
          'airport': 2,
          'story': 2,
          'nat': 2,
          'tone': 2,
          'sudden': 2,
          'feel': 2,
          'rest': 2,
          'gets': 1,
          'vote': 1,
          'best': 1,
          'since': 1,
          'princess': 1,
          'bride': 1,
          'getting': 1,
          'rave': 1,
          'reviews': 1,
          'internet': 1,
          'critics': 1,
          'siskel': 1,
          'ebert': 1,
          'sighting': 1,
          'month': 1,
          'ago': 1,
          'years': 1,
          'finest': 1,
          'nso': 1,
          'naturally': 1,
          'screening': 1,
          'room': 1,
          'showing': 1,
          'nary': 1,
          'another': 1,
          'viewer': 1,
          'notion': 1,
          'puzzled': 1,
          'rare': 1,
          'thing': 1,
          'childrens': 1,
          'praised': 1,
          'highly': 1,
          'wouldnt': 1,
          'every': 1,
          'parent': 1,
          'entire': 1,
          'would': 1,
          'flocking': 1,
          'see': 1,
          'supposedly': 1,
          'magical': 1,
          'piece': 1,
          'work': 1,
          'na': 1,
          'tad': 1,
          'bewildered': 1,
          'pleased': 1,
          'worry': 1,
          'screaming': 1,
          'disruptions': 1,
          'commonly': 1,
          'along': 1,
          'sat': 1,
          '97': 1,
          'minutes': 1,
          'watched': 1,
          'intently': 1,
          'open': 1,
          'mind': 1,
          'great': 1,
          'expectations': 1,
          'nlooking': 1,
          'taken': 1,
          'hint': 1,
          'theater': 1,
          'nbelieve': 1,
          'wanted': 1,
          'seemed': 1,
          'events': 1,
          'sheeppig': 1,
          'become': 1,
          'legitimate': 1,
          'phenomenon': 1,
          'fateful': 1,
          'encounter': 1,
          'water': 1,
          'well': 1,
          'arthur': 1,
          'james': 1,
          'cromwell': 1,
          'used': 1,
          'alot': 1,
          'rendered': 1,
          'bedridden': 1,
          'number': 1,
          'weeks': 1,
          'begins': 1,
          'financially': 1,
          'solution': 1,
          'wife': 1,
          'magda': 1,
          'szubanski': 1,
          'delightfully': 1,
          'charming': 1,
          'downright': 1,
          'annoying': 1,
          'come': 1,
          'appearance': 1,
          'celebrity': 1,
          'pet': 1,
          'use': 1,
          'money': 1,
          'earn': 1,
          'pay': 1,
          'bank': 1,
          'aside': 1,
          'get': 1,
          'cash': 1,
          'donations': 1,
          'made': 1,
          'case': 1,
          'known': 1,
          'public': 1,
          'nproblem': 1,
          'held': 1,
          'middle': 1,
          'dreaded': 1,
          'completely': 1,
          'foreign': 1,
          'companion': 1,
          'nsetting': 1,
          'motion': 1,
          'travel': 1,
          'unnamed': 1,
          'shack': 1,
          'sweet': 1,
          'lady': 1,
          'happens': 1,
          'love': 1,
          'help': 1,
          'despite': 1,
          'law': 1,
          'keep': 1,
          'hotels': 1,
          'meet': 1,
          'array': 1,
          'eccentric': 1,
          'memorable': 1,
          'chimps': 1,
          'led': 1,
          'steven': 1,
          'wright': 1,
          'nhere': 1,
          'wrong': 1,
          'turn': 1,
          'nup': 1,
          'enjoyable': 1,
          'experience': 1,
          'beginning': 1,
          'featured': 1,
          'smart': 1,
          'writing': 1,
          'situations': 1,
          'involving': 1,
          'first': 1,
          'inspired': 1,
          'accused': 1,
          'smuggling': 1,
          'drugs': 1,
          'nunfortunately': 1,
          'wears': 1,
          'thin': 1,
          'introduced': 1,
          'reside': 1,
          'hotel': 1,
          'none': 1,
          'onetenth': 1,
          'previous': 1,
          'topic': 1,
          'discussion': 1,
          'surrounding': 1,
          'question': 1,
          'whether': 1,
          'dark': 1,
          'disturbing': 1,
          'small': 1,
          'children': 1,
          'believe': 1,
          'dog': 1,
          'hung': 1,
          'neck': 1,
          'slowly': 1,
          'starts': 1,
          'drown': 1,
          'times': 1,
          'treated': 1,
          'surrealistic': 1,
          'flashbacks': 1,
          'hoggets': 1,
          'full': 1,
          'cavity': 1,
          'search': 1,
          'nin': 1,
          'overall': 1,
          'bleak': 1,
          'depressing': 1,
          'nhowever': 1,
          'say': 1,
          'neither': 1,
          'probably': 1,
          'anyway': 1,
          'animal': 1,
          'plights': 1,
          'simply': 1,
          'intriguing': 1,
          'sustain': 1,
          'interest': 1,
          'hour': 1,
          'half': 1,
          'let': 1,
          'alone': 1,
          'entertain': 1,
          'child': 1,
          'nanother': 1,
          'problem': 1,
          'change': 1,
          'pacing': 1,
          'near': 1,
          'end': 1,
          'nif': 1,
          'youre': 1,
          'darker': 1,
          'sinister': 1,
          'fine': 1,
          'may': 1,
          'cup': 1,
          'tea': 1,
          'least': 1,
          'noble': 1,
          'ambition': 1,
          'downbeat': 1,
          'slapstick': 1,
          'finale': 1,
          'swinging': 1,
          'walltowall': 1,
          'ballroom': 1,
          'elastic': 1,
          'overalls': 1,
          'didnt': 1,
          'painful': 1,
          'watch': 1,
          'entertaining': 1,
          'goes': 1,
          'nneg': 1}),
 Counter({'would': 4,
          'ending': 4,
          'nthe': 4,
          'na': 3,
          'hokey': 3,
          'nso': 3,
          'bad': 2,
          'nalso': 2,
          'anticlimactic': 2,
          'say': 2,
          'look': 2,
          'much': 2,
          'whos': 2,
          'day': 2,
          'like': 2,
          'find': 2,
          'till': 2,
          'ntheyre': 2,
          'people': 2,
          'nwhy': 2,
          'nyea': 2,
          'nand': 2,
          'get': 2,
          'suicidal': 2,
          'colonel': 2,
          'something': 2,
          'make': 2,
          'nthey': 2,
          'go': 2,
          'special': 2,
          'effects': 2,
          'egypt': 2,
          'put': 1,
          'bluntly': 1,
          'ed': 1,
          'wood': 1,
          'proud': 1,
          'totally': 1,
          'ridiculous': 1,
          'plot': 1,
          'encompassed': 1,
          'humor': 1,
          'drama': 1,
          'zero': 1,
          'logic': 1,
          'crap': 1,
          'screenplay': 1,
          'beautifully': 1,
          'nnot': 1,
          'didnt': 1,
          'intriguing': 1,
          'saw': 1,
          'previews': 1,
          'truth': 1,
          'advertising': 1,
          'nroland': 1,
          'emmerich': 1,
          'later': 1,
          'independence': 1,
          '400': 1,
          'blows': 1,
          'compared': 1,
          'cowrited': 1,
          'directed': 1,
          'inane': 1,
          'scifi': 1,
          'film': 1,
          'uses': 1,
          'cliche': 1,
          'connection': 1,
          'eqypt': 1,
          'aliens': 1,
          'nin': 1,
          'useless': 1,
          'opening': 1,
          'sequence': 1,
          'men': 1,
          'stone': 1,
          '1914': 1,
          'hieroglyphics': 1,
          'nit': 1,
          'wouldnt': 1,
          'present': 1,
          '94': 1,
          'actually': 1,
          'figure': 1,
          'decipherer': 1,
          'slightlyneurotic': 1,
          'scientist': 1,
          'nice': 1,
          'twist': 1,
          'dr': 1,
          'dan': 1,
          'jackson': 1,
          'james': 1,
          'spader': 1,
          'best': 1,
          'outside': 1,
          'erotic': 1,
          'thrillers': 1,
          'indy': 1,
          'fare': 1,
          'life': 1,
          'sucks': 1,
          'walk': 1,
          'lectures': 1,
          'third': 1,
          'word': 1,
          'use': 1,
          'decipher': 1,
          'one': 1,
          'else': 1,
          'could': 1,
          'nduh': 1,
          'nhe': 1,
          'figures': 1,
          'minute': 1,
          'jack': 1,
          'oneill': 1,
          'kurt': 1,
          'russel': 1,
          'wyat': 1,
          'earp': 1,
          'locks': 1,
          'beginning': 1,
          'flattop': 1,
          'howie': 1,
          'long': 1,
          'snap': 1,
          'fetal': 1,
          'position': 1,
          'nfor': 1,
          'nyoull': 1,
          'hang': 1,
          'open': 1,
          'stargate': 1,
          'bunch': 1,
          'bomb': 1,
          'blow': 1,
          'anything': 1,
          'nafter': 1,
          'overdone': 1,
          'thing': 1,
          'theyre': 1,
          'inside': 1,
          'goddam': 1,
          'pyramid': 1,
          'went': 1,
          'right': 1,
          'nwrong': 1,
          'another': 1,
          'planet': 1,
          'filmed': 1,
          'discover': 1,
          'cilvilization': 1,
          'ruled': 1,
          'ra': 1,
          'sun': 1,
          'god': 1,
          'androginous': 1,
          'jaye': 1,
          'davidson': 1,
          'voice': 1,
          'modifier': 1,
          'sound': 1,
          'barry': 1,
          'white': 1,
          'asthma': 1,
          'fights': 1,
          'explosions': 1,
          'kiss': 1,
          'two': 1,
          'melodrama': 1,
          'stupidity': 1,
          'scenes': 1,
          'bizarre': 1,
          'language': 1,
          'nan': 1,
          'ends': 1,
          'stupid': 1,
          'lines': 1,
          'hello': 1,
          'king': 1,
          'tut': 1,
          'asswhole': 1,
          'n': 1,
          'quintessential': 1,
          'line': 1,
          'lem': 1,
          'tell': 1,
          'ya': 1,
          'convenient': 1,
          'pesudopseudopseudocharacter': 1,
          'development': 1,
          'nby': 1,
          'end': 1,
          'wan': 1,
          'home': 1,
          'watch': 1,
          'dont': 1,
          'know': 1,
          'outer': 1,
          'limits': 1,
          'scripts': 1,
          'terrible': 1,
          'okay': 1,
          'nothing': 1,
          'great': 1,
          'storys': 1,
          'weak': 1,
          'almost': 1,
          'opaque': 1,
          'whole': 1,
          'experience': 1,
          'isnt': 1,
          'worth': 1,
          'unless': 1,
          'youre': 1,
          'bored': 1,
          'youd': 1,
          'consider': 1,
          'watching': 1,
          'full': 1,
          'house': 1,
          'marathon': 1,
          'nthis': 1,
          'nid': 1,
          'pick': 1,
          'obviously': 1,
          'still': 1,
          'fun': 1,
          'cant': 1,
          'wait': 1,
          'premier': 1,
          'mst3k': 1,
          'nneg': 1}),
 Counter({'leon': 7,
          'professional': 6,
          'matilda': 6,
          'nthe': 4,
          'much': 4,
          'besson': 4,
          'cheap': 3,
          'relationship': 3,
          'make': 3,
          'nthere': 3,
          'isnt': 3,
          'quality': 3,
          'time': 3,
          'na': 3,
          'couple': 2,
          'name': 2,
          'also': 2,
          'man': 2,
          'twelveyearold': 2,
          'girl': 2,
          'unpleasant': 2,
          'simply': 2,
          'reno': 2,
          'life': 2,
          'portman': 2,
          'stansfield': 2,
          'matildas': 2,
          'nleon': 2,
          'takes': 2,
          'two': 2,
          'makes': 2,
          'great': 2,
          'film': 2,
          'nbut': 2,
          'going': 2,
          'would': 2,
          'like': 2,
          'us': 2,
          'never': 2,
          'one': 2,
          'character': 2,
          'show': 2,
          'hes': 2,
          'really': 2,
          'part': 2,
          'trying': 2,
          'gag': 2,
          'something': 2,
          'way': 2,
          'real': 2,
          'problem': 2,
          'wonder': 1,
          'budget': 1,
          'criterion': 1,
          'whether': 1,
          'movie': 1,
          'considered': 1,
          'exploitation': 1,
          'flick': 1,
          'ntake': 1,
          'example': 1,
          'nit': 1,
          'boasts': 1,
          'extremely': 1,
          'glossy': 1,
          'cinematography': 1,
          'recognizable': 1,
          'actors': 1,
          'fairly': 1,
          'impressive': 1,
          'explosions': 1,
          'nits': 1,
          'basically': 1,
          'violence': 1,
          'titilation': 1,
          'features': 1,
          'central': 1,
          'middleaged': 1,
          'decidedly': 1,
          'ambiguous': 1,
          'sexual': 1,
          'dimension': 1,
          'map': 1,
          'pretensions': 1,
          'anything': 1,
          'elements': 1,
          'title': 1,
          'new': 1,
          'york': 1,
          'hit': 1,
          'named': 1,
          'jean': 1,
          'brutally': 1,
          'efficient': 1,
          'isolated': 1,
          'none': 1,
          'day': 1,
          'forced': 1,
          'let': 1,
          'someone': 1,
          'apartment': 1,
          'building': 1,
          'knocks': 1,
          'door': 1,
          'nher': 1,
          'natalie': 1,
          'rest': 1,
          'family': 1,
          'killed': 1,
          'crooked': 1,
          'wired': 1,
          'e': 1,
          'nagent': 1,
          'norman': 1,
          'gary': 1,
          'oldman': 1,
          'father': 1,
          'tried': 1,
          'rip': 1,
          'reluctantly': 1,
          'begins': 1,
          'teach': 1,
          'profession': 1,
          'says': 1,
          'wants': 1,
          'avenge': 1,
          'murder': 1,
          'young': 1,
          'brother': 1,
          'become': 1,
          'closer': 1,
          'vulnerable': 1,
          'learns': 1,
          'know': 1,
          'sets': 1,
          'eliminate': 1,
          'nwriterdirector': 1,
          'luc': 1,
          'gone': 1,
          'route': 1,
          'popular': 1,
          'french': 1,
          'import': 1,
          'la': 1,
          'femme': 1,
          'nikita': 1,
          'slick': 1,
          'potboiler': 1,
          'female': 1,
          'assassin': 1,
          'question': 1,
          'looking': 1,
          'assistance': 1,
          'cinematographer': 1,
          'thierry': 1,
          'arbogast': 1,
          'created': 1,
          'chock': 1,
          'full': 1,
          'moody': 1,
          'closeups': 1,
          'evocative': 1,
          'lighting': 1,
          'beneath': 1,
          'shiny': 1,
          'wrapper': 1,
          'nearly': 1,
          'believe': 1,
          'clicks': 1,
          'neither': 1,
          'given': 1,
          'develop': 1,
          'mostly': 1,
          'collection': 1,
          'quirky': 1,
          'traits': 1,
          'intended': 1,
          'hired': 1,
          'killer': 1,
          'bad': 1,
          'guy': 1,
          'drinks': 1,
          'lots': 1,
          'milk': 1,
          'meticulous': 1,
          'care': 1,
          'potted': 1,
          'plant': 1,
          'enjoys': 1,
          'gene': 1,
          'kelly': 1,
          'movies': 1,
          'njean': 1,
          'succeeds': 1,
          'giving': 1,
          'haunted': 1,
          'desperate': 1,
          'emotional': 1,
          'connection': 1,
          'nnatalie': 1,
          'wrong': 1,
          'called': 1,
          'grittier': 1,
          'doesnt': 1,
          'work': 1,
          'either': 1,
          'nbesson': 1,
          'better': 1,
          'served': 1,
          'spending': 1,
          'bring': 1,
          'characters': 1,
          'less': 1,
          'feeble': 1,
          'attempts': 1,
          'humor': 1,
          'often': 1,
          'embarrassing': 1,
          'silly': 1,
          'game': 1,
          'involving': 1,
          'celebrity': 1,
          'impersonations': 1,
          'completely': 1,
          'place': 1,
          'scene': 1,
          'shocks': 1,
          'hotel': 1,
          'manager': 1,
          'announcing': 1,
          'lover': 1,
          'thoroughly': 1,
          'sacrificed': 1,
          'ngary': 1,
          'oldmans': 1,
          'entire': 1,
          'wildeyed': 1,
          'top': 1,
          'least': 1,
          'interesting': 1,
          'watch': 1,
          'person': 1,
          'found': 1,
          'anywhere': 1,
          'always': 1,
          'action': 1,
          'thriller': 1,
          'except': 1,
          'pass': 1,
          'disconcerting': 1,
          'plays': 1,
          'around': 1,
          'sexuality': 1,
          'distasteful': 1,
          'choices': 1,
          'dealing': 1,
          'component': 1,
          'confront': 1,
          'head': 1,
          'ignore': 1,
          'entirely': 1,
          'flirts': 1,
          'teases': 1,
          'audience': 1,
          'idea': 1,
          'forbidden': 1,
          'love': 1,
          'story': 1,
          'choosing': 1,
          'focus': 1,
          'camera': 1,
          'portmans': 1,
          'rear': 1,
          'end': 1,
          'dress': 1,
          'skimpy': 1,
          'clothing': 1,
          'nthis': 1,
          'say': 1,
          'nothing': 1,
          'questionable': 1,
          'decision': 1,
          'look': 1,
          'paternal': 1,
          'teaching': 1,
          'child': 1,
          'load': 1,
          '9mm': 1,
          'pistol': 1,
          'blood': 1,
          'spilled': 1,
          'aplenty': 1,
          'deal': 1,
          'plain': 1,
          'sleazy': 1,
          'soft': 1,
          'filters': 1,
          'world': 1,
          'cant': 1,
          'disguise': 1,
          'fact': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'annie': 5,
          'ferrara': 4,
          'hes': 4,
          'scene': 4,
          'blackout': 4,
          'matty': 4,
          'modine': 4,
          'one': 3,
          'beautiful': 3,
          'theres': 3,
          'know': 3,
          'nthe': 3,
          'matthew': 3,
          'ferraras': 3,
          'hopper': 3,
          'full': 3,
          'sea': 3,
          'make': 2,
          'good': 2,
          'viewing': 2,
          'nits': 2,
          'models': 2,
          'walken': 2,
          'addiction': 2,
          'otherwise': 2,
          'whether': 2,
          'terminally': 2,
          'let': 2,
          'actually': 2,
          'central': 2,
          'junkie': 2,
          'leading': 2,
          'played': 2,
          'cutthroat': 2,
          'island': 2,
          'like': 2,
          'model': 2,
          'think': 2,
          'nno': 2,
          'around': 2,
          'dennis': 2,
          'night': 2,
          'finds': 2,
          'n': 2,
          'nyeah': 2,
          'time': 2,
          'picture': 2,
          'ntake': 2,
          'ha': 2,
          'nhe': 2,
          'place': 2,
          'days': 1,
          'ill': 1,
          'promise': 1,
          'never': 1,
          'rent': 1,
          'another': 1,
          'abel': 1,
          'nking': 1,
          'new': 1,
          'york': 1,
          'body': 1,
          'snatchers': 1,
          'notwithstanding': 1,
          'bad': 1,
          'lieutenant': 1,
          'fit': 1,
          'single': 1,
          'emotive': 1,
          'exploitation': 1,
          'flicks': 1,
          'fallen': 1,
          'rut': 1,
          'hoary': 1,
          'arthouse': 1,
          'trappings': 1,
          'perfumedrenched': 1,
          'cokeaddled': 1,
          'visit': 1,
          'seedy': 1,
          'pornography': 1,
          'shop': 1,
          'hookers': 1,
          'courtesans': 1,
          'usher': 1,
          'silk': 1,
          'curtains': 1,
          'nferraras': 1,
          'consistently': 1,
          'smart': 1,
          'move': 1,
          'casting': 1,
          'christopher': 1,
          'since': 1,
          'great': 1,
          'loathsome': 1,
          'durable': 1,
          'whenever': 1,
          'onscreen': 1,
          'nhis': 1,
          '8minute': 1,
          'saving': 1,
          'grace': 1,
          'abysmal': 1,
          'unwatchable': 1,
          'pretentious': 1,
          'failure': 1,
          'nwhen': 1,
          'starts': 1,
          'talking': 1,
          'vampiric': 1,
          'bowel': 1,
          'movements': 1,
          'questions': 1,
          'lili': 1,
          'taylor': 1,
          'ever': 1,
          'read': 1,
          'naked': 1,
          'lunch': 1,
          'muchneeded': 1,
          'dose': 1,
          'humor': 1,
          'unfunny': 1,
          'affair': 1,
          'nyou': 1,
          'gothic': 1,
          'club': 1,
          'kids': 1,
          'cool': 1,
          'smile': 1,
          'theyre': 1,
          'fun': 1,
          'nwalken': 1,
          'sadly': 1,
          'appear': 1,
          'role': 1,
          'film': 1,
          'star': 1,
          'whose': 1,
          'lightning': 1,
          'paced': 1,
          'hollywood': 1,
          'life': 1,
          'among': 1,
          'people': 1,
          'inevitably': 1,
          'destruction': 1,
          'takes': 1,
          'get': 1,
          'nmuch': 1,
          'protagonists': 1,
          'michelangelo': 1,
          'antonionis': 1,
          'bored': 1,
          'cultural': 1,
          'elite': 1,
          'involved': 1,
          'bitter': 1,
          'pill': 1,
          'relationship': 1,
          'high': 1,
          'fashioned': 1,
          'least': 1,
          'shes': 1,
          'nmattys': 1,
          'lady': 1,
          'french': 1,
          'actress': 1,
          'b': 1,
          'atrice': 1,
          'dalle': 1,
          'arrested': 1,
          'twice': 1,
          'cocaine': 1,
          'possession': 1,
          'filming': 1,
          'needed': 1,
          'lends': 1,
          'credence': 1,
          'idea': 1,
          'entire': 1,
          'oeuvre': 1,
          'filmed': 1,
          'fucking': 1,
          'kidding': 1,
          'nrequiem': 1,
          'dream': 1,
          'nothing': 1,
          'presentations': 1,
          'seen': 1,
          'movies': 1,
          'controversial': 1,
          'urban': 1,
          'lifestyle': 1,
          'nmatty': 1,
          'struggle': 1,
          'decision': 1,
          'abortion': 1,
          'without': 1,
          'consulting': 1,
          'doubt': 1,
          'chasing': 1,
          'dragon': 1,
          'nin': 1,
          'despair': 1,
          'indulges': 1,
          'chemical': 1,
          'induced': 1,
          'weekend': 1,
          'debauchery': 1,
          'tooling': 1,
          'streets': 1,
          'miami': 1,
          'video': 1,
          'filmmaker': 1,
          'mickey': 1,
          'wayne': 1,
          'dirty': 1,
          'ol': 1,
          'man': 1,
          'mold': 1,
          'smacking': 1,
          'ass': 1,
          'telling': 1,
          'spread': 1,
          'legs': 1,
          'nwider': 1,
          'ntoward': 1,
          'end': 1,
          'pick': 1,
          'teenage': 1,
          'waitress': 1,
          'also': 1,
          'named': 1,
          'sarah': 1,
          'lassez': 1,
          'start': 1,
          'shooting': 1,
          'hastily': 1,
          'improvised': 1,
          'sexual': 1,
          'thankfully': 1,
          'blacks': 1,
          'nsomething': 1,
          'happened': 1,
          'haunts': 1,
          'throughout': 1,
          'rest': 1,
          'exactly': 1,
          'nsuffice': 1,
          'say': 1,
          'confusion': 1,
          'killed': 1,
          'two': 1,
          'anyone': 1,
          'typical': 1,
          'plot': 1,
          'speak': 1,
          'plenty': 1,
          'raunch': 1,
          'horribly': 1,
          'vogue': 1,
          'images': 1,
          'downing': 1,
          'bottle': 1,
          'jack': 1,
          'daniels': 1,
          'beer': 1,
          'wrapping': 1,
          'seethrough': 1,
          'curtain': 1,
          'hotel': 1,
          'room': 1,
          'ncinematographer': 1,
          'ken': 1,
          'kelsch': 1,
          'inconsistent': 1,
          'glory': 1,
          'alternating': 1,
          'gorgeous': 1,
          'painterly': 1,
          'sunsets': 1,
          'docustyle': 1,
          'sleaze': 1,
          'back': 1,
          'leering': 1,
          'girls': 1,
          'bathing': 1,
          'suits': 1,
          'yeah': 1,
          'narrrghhh': 1,
          'nsays': 1,
          'mr': 1,
          'ndirty': 1,
          'old': 1,
          'sod': 1,
          'compulsive': 1,
          'tacky': 1,
          'sort': 1,
          'way': 1,
          'ridiculous': 1,
          'climax': 1,
          'seizes': 1,
          'control': 1,
          'destiny': 1,
          'nhows': 1,
          'cryptic': 1,
          'nnever': 1,
          'fear': 1,
          'female': 1,
          'frontal': 1,
          'nudity': 1,
          'remind': 1,
          'us': 1,
          'ni': 1,
          'take': 1,
          'yer': 1,
          'clothes': 1,
          'kid': 1,
          'essential': 1,
          'depict': 1,
          'inner': 1,
          'maelstrom': 1,
          'protagonist': 1,
          'youre': 1,
          'visual': 1,
          'id': 1,
          'nyoure': 1,
          'soul': 1,
          'heart': 1,
          'bloodstream': 1,
          'nha': 1,
          'nfriggin': 1,
          'vampire': 1,
          'na': 1,
          'final': 1,
          'word': 1,
          'fine': 1,
          'actor': 1,
          'properly': 1,
          'cast': 1,
          'something': 1,
          'squeakyclean': 1,
          'demeanor': 1,
          'nhes': 1,
          'ideally': 1,
          'suited': 1,
          'sarcastic': 1,
          'men': 1,
          'tightly': 1,
          'controlled': 1,
          'situations': 1,
          'private': 1,
          'joker': 1,
          'metal': 1,
          'jacket': 1,
          'timebomb': 1,
          'nebbish': 1,
          'short': 1,
          'cuts': 1,
          'every': 1,
          'bit': 1,
          'superb': 1,
          'julianne': 1,
          'moore': 1,
          'famous': 1,
          'though': 1,
          'seems': 1,
          'notice': 1,
          'ned': 1,
          'nhere': 1,
          'asked': 1,
          'hang': 1,
          'sporting': 1,
          'threeday': 1,
          'stubble': 1,
          'oily': 1,
          'bangs': 1,
          'throws': 1,
          'furniture': 1,
          'stanley': 1,
          'kowalski': 1,
          'somehow': 1,
          'lacking': 1,
          'nmodine': 1,
          'lacks': 1,
          'feral': 1,
          'intensity': 1,
          'brando': 1,
          'entirely': 1,
          'miscast': 1,
          'flesh': 1,
          'fair': 1,
          'nbetter': 1,
          'luck': 1,
          'next': 1,
          'matt': 1,
          'nsomeday': 1,
          'youll': 1,
          'forgiven': 1,
          'wasnt': 1,
          'really': 1,
          'fault': 1,
          'first': 1,
          'nmaybe': 1,
          'atom': 1,
          'egoyan': 1,
          'find': 1,
          'somewhere': 1,
          'well': 1,
          'world': 1,
          'nneg': 1}),
 Counter({'one': 4,
          'movies': 4,
          'get': 4,
          'us': 4,
          'first': 3,
          'feature': 3,
          'film': 3,
          'might': 3,
          'kids': 3,
          'slow': 3,
          'guy': 3,
          'head': 3,
          'like': 3,
          'blah': 3,
          'lot': 3,
          'making': 2,
          'cast': 2,
          'moresco': 2,
          'nbut': 2,
          'plot': 2,
          'dialogue': 2,
          'chance': 2,
          'need': 2,
          'neighborhood': 2,
          'nthe': 2,
          'kitchen': 2,
          'make': 2,
          'nwith': 2,
          'motion': 2,
          'scene': 2,
          'local': 2,
          'gets': 2,
          'seem': 2,
          'little': 2,
          'nhe': 2,
          'baldwins': 2,
          'ever': 2,
          'funny': 2,
          'really': 2,
          'guys': 2,
          'actually': 2,
          'nwe': 2,
          'tough': 2,
          'nmoresco': 2,
          'personal': 2,
          'aint': 1,
          'easy': 1,
          'nassemble': 1,
          'decent': 1,
          'strong': 1,
          'writerdirector': 1,
          'robert': 1,
          'done': 1,
          'eyed': 1,
          'king': 1,
          'youre': 1,
          'already': 1,
          'ahead': 1,
          'game': 1,
          'rehash': 1,
          'old': 1,
          'lines': 1,
          'tired': 1,
          'standard': 1,
          'clich': 1,
          'wellintentioned': 1,
          'effort': 1,
          'could': 1,
          'jeopardize': 1,
          'second': 1,
          'nhow': 1,
          'many': 1,
          'rough': 1,
          'full': 1,
          'lifelong': 1,
          'friends': 1,
          'hopelessly': 1,
          'turned': 1,
          'crime': 1,
          'worse': 1,
          'enormous': 1,
          'catalog': 1,
          'dissuade': 1,
          'filmmaker': 1,
          'yet': 1,
          'another': 1,
          'nagain': 1,
          'nfive': 1,
          'irish': 1,
          'nycs': 1,
          'hells': 1,
          'overemotional': 1,
          'pact': 1,
          'stolen': 1,
          'rings': 1,
          'anonymous': 1,
          'rooftop': 1,
          'teary': 1,
          'music': 1,
          'nand': 1,
          'nin': 1,
          'films': 1,
          'grow': 1,
          'fairly': 1,
          'worthless': 1,
          'adults': 1,
          'unable': 1,
          'unwilling': 1,
          'way': 1,
          'heat': 1,
          'nleading': 1,
          'clueless': 1,
          'pack': 1,
          'william': 1,
          'baldwin': 1,
          'goodhearted': 1,
          'watches': 1,
          'buddies': 1,
          'tight': 1,
          'mob': 1,
          'armand': 1,
          'assante': 1,
          'nid': 1,
          'say': 1,
          'character': 1,
          'involved': 1,
          'sort': 1,
          'tastes': 1,
          'possible': 1,
          'points': 1,
          'nhes': 1,
          'concerned': 1,
          'buddy': 1,
          'jason': 1,
          'gedricks': 1,
          'heroin': 1,
          'abuse': 1,
          'sticks': 1,
          'jim': 1,
          'breuer': 1,
          'impregnates': 1,
          'characters': 1,
          'sister': 1,
          'looks': 1,
          'pushing': 1,
          'moroniclooking': 1,
          'counterfeit': 1,
          'cash': 1,
          'made': 1,
          'genuinely': 1,
          'touch': 1,
          'none': 1,
          'amounts': 1,
          'anything': 1,
          'nit': 1,
          'seems': 1,
          'morescos': 1,
          'greater': 1,
          'concern': 1,
          'provide': 1,
          'intangible': 1,
          'slice': 1,
          'life': 1,
          'flavor': 1,
          'everyones': 1,
          'trying': 1,
          'evoke': 1,
          'since': 1,
          'scorseses': 1,
          'early': 1,
          'work': 1,
          'nso': 1,
          'drunk': 1,
          'hugging': 1,
          'singing': 1,
          'together': 1,
          'bar': 1,
          'prove': 1,
          'love': 1,
          'n': 1,
          'people': 1,
          'street': 1,
          'talk': 1,
          'usually': 1,
          'mumbled': 1,
          'effect': 1,
          'whole': 1,
          'fword': 1,
          'whether': 1,
          'sounds': 1,
          'fits': 1,
          'also': 1,
          'handful': 1,
          'good': 1,
          'actors': 1,
          'small': 1,
          'roles': 1,
          'lack': 1,
          'purpose': 1,
          'nbruno': 1,
          'kirby': 1,
          'chazz': 1,
          'palminteri': 1,
          'know': 1,
          'youve': 1,
          'seen': 1,
          'nassante': 1,
          'intelligent': 1,
          'casting': 1,
          'man': 1,
          'everyone': 1,
          'fears': 1,
          'performance': 1,
          'adequate': 1,
          'rest': 1,
          'jump': 1,
          'persona': 1,
          'thoroughly': 1,
          'almost': 1,
          'theater': 1,
          'sometimes': 1,
          'tv': 1,
          'writer': 1,
          'including': 1,
          'series': 1,
          'falcone': 1,
          'obviously': 1,
          'labored': 1,
          'anyone': 1,
          'child': 1,
          'content': 1,
          'probably': 1,
          'nas': 1,
          'result': 1,
          'style': 1,
          'heavyhanded': 1,
          'considerable': 1,
          'amount': 1,
          'toning': 1,
          'nnearly': 1,
          'every': 1,
          'time': 1,
          'action': 1,
          'grown': 1,
          'gang': 1,
          'recalls': 1,
          'something': 1,
          'reminds': 1,
          'boy': 1,
          'remind': 1,
          'dissolves': 1,
          'earlier': 1,
          'running': 1,
          'complete': 1,
          'present': 1,
          'case': 1,
          'dont': 1,
          'comprehend': 1,
          'link': 1,
          'past': 1,
          'needs': 1,
          'either': 1,
          'trust': 1,
          'audiences': 1,
          'intelligence': 1,
          'faith': 1,
          'presentation': 1,
          'rather': 1,
          'beat': 1,
          'nhis': 1,
          'next': 1,
          'project': 1,
          'distance': 1,
          'subtlety': 1,
          'nif': 1,
          'nreviewed': 1,
          'part': 1,
          '2001': 1,
          'boston': 1,
          'festival': 1,
          'coverage': 1,
          'story': 1,
          'coming': 1,
          'soon': 1,
          'nneg': 1}),
 Counter({'geronimo': 13,
          'story': 7,
          'political': 4,
          'use': 4,
          'american': 4,
          'film': 4,
          'apaches': 4,
          'movie': 4,
          'like': 4,
          'u': 3,
          'even': 3,
          'made': 3,
          'correctness': 3,
          'hill': 3,
          'last': 3,
          'white': 3,
          'nthe': 3,
          'try': 3,
          'people': 3,
          'make': 3,
          'gatewood': 3,
          'many': 3,
          'real': 3,
          'could': 3,
          'government': 2,
          'ready': 2,
          'nhowever': 2,
          'history': 2,
          'movies': 2,
          'examples': 2,
          'legend': 2,
          'walter': 2,
          'one': 2,
          'settlers': 2,
          'hero': 2,
          'studi': 2,
          'time': 2,
          'begins': 2,
          'reservation': 2,
          'would': 2,
          'gene': 2,
          'hackman': 2,
          'force': 2,
          'isnt': 2,
          'great': 2,
          'ninstead': 2,
          'lt': 2,
          'jason': 2,
          'patric': 2,
          'indian': 2,
          'robert': 2,
          'duvall': 2,
          'bad': 2,
          'enemies': 2,
          'nto': 2,
          'segments': 2,
          'uprising': 2,
          'impression': 2,
          'films': 2,
          'better': 2,
          'neven': 2,
          'whenever': 1,
          'starts': 1,
          'meddling': 1,
          'countries': 1,
          'affairs': 1,
          'pretext': 1,
          'supporting': 1,
          'human': 1,
          'rights': 1,
          'preventing': 1,
          'religious': 1,
          'ethnic': 1,
          'persecution': 1,
          'side': 1,
          'mantra': 1,
          'says': 1,
          'look': 1,
          'whos': 1,
          'talking': 1,
          'nwhat': 1,
          'done': 1,
          'indians': 1,
          'americans': 1,
          'dark': 1,
          'chapter': 1,
          'national': 1,
          'suits': 1,
          'purposes': 1,
          'nhollywood': 1,
          'another': 1,
          'example': 1,
          'revisionist': 1,
          'westerns': 1,
          'early': 1,
          '1990s': 1,
          'nthose': 1,
          'tried': 1,
          'exploit': 1,
          'emerging': 1,
          'wave': 1,
          'coinciding': 1,
          '500th': 1,
          'anniversary': 1,
          'columbus': 1,
          'discovery': 1,
          'america': 1,
          'none': 1,
          '1993': 1,
          'western': 1,
          'directed': 1,
          'deals': 1,
          'conflicts': 1,
          'natives': 1,
          'played': 1,
          'wes': 1,
          'leader': 1,
          'fierce': 1,
          'warrior': 1,
          'tribe': 1,
          'used': 1,
          'give': 1,
          'hard': 1,
          'second': 1,
          'half': 1,
          '19th': 1,
          'century': 1,
          'nwhen': 1,
          '1885': 1,
          'peace': 1,
          'live': 1,
          'peacefully': 1,
          'arizona': 1,
          'broken': 1,
          'promises': 1,
          'injustice': 1,
          'violence': 1,
          'restless': 1,
          'nwith': 1,
          '30': 1,
          'followers': 1,
          'escapes': 1,
          'guerrilla': 1,
          'campaign': 1,
          'ngeneral': 1,
          'crook': 1,
          'commander': 1,
          'army': 1,
          'forces': 1,
          'respects': 1,
          'knows': 1,
          '5': 1,
          '000': 1,
          'enough': 1,
          'catch': 1,
          'spaces': 1,
          'southwest': 1,
          'turns': 1,
          'experienced': 1,
          'charles': 1,
          'hunter': 1,
          'al': 1,
          'sieber': 1,
          'ntogether': 1,
          'young': 1,
          'britton': 1,
          'davis': 1,
          'matt': 1,
          'damon': 1,
          'begin': 1,
          'mission': 1,
          'aimed': 1,
          'capturing': 1,
          'ngeronimo': 1,
          'shadow': 1,
          'tell': 1,
          'tale': 1,
          'oppressed': 1,
          'minorities': 1,
          'instead': 1,
          'subject': 1,
          'conscience': 1,
          'oppressors': 1,
          'nso': 1,
          'told': 1,
          'perspective': 1,
          'nalmost': 1,
          'happen': 1,
          'greatest': 1,
          'admirers': 1,
          'every': 1,
          'opportunity': 1,
          'express': 1,
          'sorry': 1,
          'feel': 1,
          'fight': 1,
          'nalthough': 1,
          'elements': 1,
          'john': 1,
          'millius': 1,
          'screenplay': 1,
          'indeed': 1,
          'basis': 1,
          'harm': 1,
          'honest': 1,
          'deal': 1,
          'plight': 1,
          'given': 1,
          'little': 1,
          'turn': 1,
          'nothing': 1,
          'back': 1,
          'rather': 1,
          'uninteresting': 1,
          'adventure': 1,
          'band': 1,
          'worse': 1,
          'problems': 1,
          'pacing': 1,
          'style': 1,
          'end': 1,
          'watching': 1,
          'two': 1,
          'badly': 1,
          'edited': 1,
          'pursuers': 1,
          'turned': 1,
          'geronimos': 1,
          'life': 1,
          'ways': 1,
          'interesting': 1,
          'difference': 1,
          'observed': 1,
          'different': 1,
          'quality': 1,
          'acting': 1,
          'nwes': 1,
          'cherokee': 1,
          'actor': 1,
          'impressive': 1,
          'magua': 1,
          'mohicans': 1,
          'perfect': 1,
          'choice': 1,
          'resembles': 1,
          'induces': 1,
          'lot': 1,
          'passion': 1,
          'role': 1,
          'ncontrary': 1,
          'disinterested': 1,
          'actors': 1,
          'sleepwalk': 1,
          'roles': 1,
          'nwhile': 1,
          'expected': 1,
          'someone': 1,
          'shame': 1,
          'veterans': 1,
          'hills': 1,
          'directing': 1,
          'bellow': 1,
          'expectations': 1,
          'battle': 1,
          'scenes': 1,
          'short': 1,
          'late': 1,
          'viewers': 1,
          'ask': 1,
          'happened': 1,
          'action': 1,
          'director': 1,
          '1970s': 1,
          'old': 1,
          'associate': 1,
          'music': 1,
          'composer': 1,
          'ry': 1,
          'cooder': 1,
          'disappoints': 1,
          'score': 1,
          'shifts': 1,
          'motives': 1,
          'classic': 1,
          'non': 1,
          'hand': 1,
          'photography': 1,
          'lloyd': 1,
          'ahern': 1,
          'ii': 1,
          'red': 1,
          'lenses': 1,
          'gives': 1,
          'somewhat': 1,
          'dreamy': 1,
          'atmosphere': 1,
          'ideal': 1,
          'supposed': 1,
          'melancholic': 1,
          'epic': 1,
          'nall': 1,
          'compared': 1,
          'hollywoods': 1,
          'left': 1,
          'unpleasant': 1,
          'nneg': 1}),
 Counter({'robert': 4,
          'marc': 4,
          'cynthia': 4,
          'whines': 3,
          'nthe': 2,
          'whine': 2,
          'panaro': 2,
          'way': 2,
          'find': 2,
          'aspiring': 1,
          'broadway': 1,
          'composer': 1,
          'aaron': 1,
          'williams': 1,
          'secretly': 1,
          'carries': 1,
          'torch': 1,
          'best': 1,
          'friend': 1,
          'struggling': 1,
          'actor': 1,
          'michael': 1,
          'shawn': 1,
          'lucas': 1,
          'problem': 1,
          'eyes': 1,
          'perfect': 1,
          '10s': 1,
          'geeky': 1,
          'insecure': 1,
          'certainly': 1,
          'nmeanwhile': 1,
          'marcs': 1,
          'spoiled': 1,
          'hetero': 1,
          'female': 1,
          'roommate': 1,
          'mara': 1,
          'hobel': 1,
          'spends': 1,
          'days': 1,
          'lying': 1,
          'apartment': 1,
          'harrassing': 1,
          'magazine': 1,
          'editor': 1,
          'tina': 1,
          'brown': 1,
          'nwriterdirector': 1,
          'victor': 1,
          'mignattis': 1,
          'romantic': 1,
          'comedy': 1,
          'ad': 1,
          'campaign': 1,
          'states': 1,
          'supposed': 1,
          'pardon': 1,
          'pun': 1,
          'gay': 1,
          'ol': 1,
          'romp': 1,
          'hard': 1,
          'much': 1,
          'fun': 1,
          'annoying': 1,
          'selfabsorbed': 1,
          'characters': 1,
          'shallow': 1,
          'personal': 1,
          'problems': 1,
          'sitcomlevel': 1,
          'domestic': 1,
          'crises': 1,
          'trying': 1,
          'kill': 1,
          'bugshow': 1,
          'hilarious': 1,
          'go': 1,
          'acting': 1,
          'class': 1,
          'riveting': 1,
          'zaftig': 1,
          'goes': 1,
          'eating': 1,
          'binges': 1,
          'original': 1,
          'nbut': 1,
          'anything': 1,
          'else': 1,
          'three': 1,
          'nconstantly': 1,
          'nmarc': 1,
          'turbulent': 1,
          'romance': 1,
          'apparent': 1,
          '10': 1,
          'david': 1,
          'hugh': 1,
          'hunky': 1,
          'musician': 1,
          'across': 1,
          'able': 1,
          'right': 1,
          'guy': 1,
          'job': 1,
          'horrors': 1,
          'terrible': 1,
          'trio': 1,
          'happy': 1,
          'ending': 1,
          'wholly': 1,
          'undeserved': 1,
          'nadd': 1,
          'overly': 1,
          'broad': 1,
          'performances': 1,
          'laughable': 1,
          'lipsynching': 1,
          'youre': 1,
          'left': 1,
          'one': 1,
          'astonishing': 1,
          'piece': 1,
          'cinematic': 1,
          'damage': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'one': 4,
          'nthis': 4,
          'arnold': 4,
          'schwartzenegger': 4,
          'nhe': 4,
          'serious': 4,
          'time': 3,
          'satan': 3,
          'like': 3,
          'movie': 3,
          'nso': 3,
          'around': 2,
          'evil': 2,
          'didnt': 2,
          'big': 2,
          'action': 2,
          'end': 2,
          'days': 2,
          'turn': 2,
          'youll': 2,
          'get': 2,
          'earth': 2,
          'gets': 2,
          'got': 2,
          'find': 2,
          'order': 2,
          'cop': 2,
          'stop': 2,
          'never': 2,
          'nhere': 2,
          'looks': 2,
          'everything': 2,
          'nbut': 2,
          'wife': 2,
          'daughter': 2,
          'back': 2,
          'thriller': 2,
          'nand': 2,
          'schwarzenegger': 2,
          'muscles': 2,
          'tries': 2,
          'called': 2,
          'comic': 2,
          'film': 2,
          'easely': 1,
          'worst': 1,
          'films': 1,
          'year': 1,
          'nwith': 1,
          'millenium': 1,
          'corner': 1,
          'hollywood': 1,
          'playing': 1,
          'insecurities': 1,
          'concerning': 1,
          'biggest': 1,
          'event': 1,
          'century': 1,
          'powers': 1,
          'result': 1,
          'somewhat': 1,
          'predictable': 1,
          'ni': 1,
          'high': 1,
          'hopes': 1,
          'arnolds': 1,
          'much': 1,
          'anticipated': 1,
          'return': 1,
          'screen': 1,
          'nschwarzenegger': 1,
          'fans': 1,
          'probably': 1,
          'pleased': 1,
          'lovers': 1,
          'wont': 1,
          'bored': 1,
          'catholic': 1,
          'league': 1,
          'angry': 1,
          'neveryone': 1,
          'else': 1,
          'see': 1,
          'deliciously': 1,
          'bad': 1,
          'motion': 1,
          'picture': 1,
          'nthink': 1,
          'hollywoods': 1,
          'y2k': 1,
          'bug': 1,
          'ndid': 1,
          'know': 1,
          'three': 1,
          'diabolical': 1,
          'numbers': 1,
          '666': 1,
          '999': 1,
          '1999': 1,
          'nyes': 1,
          'better': 1,
          'believe': 1,
          'working': 1,
          'latest': 1,
          'project': 1,
          'gabriel': 1,
          'burne': 1,
          'privilege': 1,
          'play': 1,
          'lucifer': 1,
          'although': 1,
          'al': 1,
          'pacino': 1,
          'fun': 1,
          'behold': 1,
          'coolly': 1,
          'strolls': 1,
          'manhattan': 1,
          'borrowed': 1,
          'body': 1,
          'investment': 1,
          'banker': 1,
          'wreaking': 1,
          'say': 1,
          'havoc': 1,
          'way': 1,
          'works': 1,
          'smirks': 1,
          'something': 1,
          'explodes': 1,
          'nbefore': 1,
          'stroke': 1,
          'new': 1,
          'millennium': 1,
          'hes': 1,
          'impregnate': 1,
          'certain': 1,
          'woman': 1,
          'climb': 1,
          'heavenly': 1,
          'curse': 1,
          'spelled': 1,
          'book': 1,
          'revelations': 1,
          'nonly': 1,
          'schwarzeneggers': 1,
          'attached': 1,
          'antiterrorist': 1,
          'unit': 1,
          'nfilms': 1,
          'weakness': 1,
          'logic': 1,
          'nno': 1,
          'matter': 1,
          'twist': 1,
          'plot': 1,
          'incredibly': 1,
          'stupid': 1,
          'even': 1,
          'incredible': 1,
          'fact': 1,
          'directors': 1,
          'learn': 1,
          'nafter': 1,
          'thousands': 1,
          'headless': 1,
          'productions': 1,
          'theme': 1,
          'become': 1,
          'clich': 1,
          'devil': 1,
          'sex': 1,
          'addicted': 1,
          'maniac': 1,
          'mental': 1,
          'institution': 1,
          'walking': 1,
          'n': 1,
          'blowing': 1,
          'killing': 1,
          'everyone': 1,
          '5': 1,
          'meter': 1,
          'radius': 1,
          'nall': 1,
          'wants': 1,
          'girl': 1,
          'somehow': 1,
          'special': 1,
          'clever': 1,
          'hidden': 1,
          'church': 1,
          'dare': 1,
          'enter': 1,
          'forced': 1,
          'seduce': 1,
          'good': 1,
          'valuable': 1,
          'information': 1,
          'ncan': 1,
          'give': 1,
          'happiness': 1,
          'dream': 1,
          'ngive': 1,
          'address': 1,
          'nindeed': 1,
          'script': 1,
          'could': 1,
          'make': 1,
          'wonderful': 1,
          'parody': 1,
          'unfortunately': 1,
          'director': 1,
          'taking': 1,
          'subject': 1,
          'seriously': 1,
          'attempting': 1,
          'create': 1,
          'provoking': 1,
          'dramatic': 1,
          'awaited': 1,
          'swartzeneggers': 1,
          'comeback': 1,
          'satisfied': 1,
          'nweve': 1,
          'seen': 1,
          'nthats': 1,
          'worthy': 1,
          'opponent': 1,
          'battled': 1,
          'nuclear': 1,
          'terrorists': 1,
          'power': 1,
          'mad': 1,
          'conspirators': 1,
          'mars': 1,
          'taken': 1,
          'alien': 1,
          'predators': 1,
          'darkest': 1,
          'reaches': 1,
          'jungle': 1,
          'morphing': 1,
          'cyberkillers': 1,
          'seemingly': 1,
          'nothing': 1,
          'fights': 1,
          'whats': 1,
          'left': 1,
          'nhow': 1,
          'nin': 1,
          'opinion': 1,
          'quite': 1,
          'overcome': 1,
          'first': 1,
          'role': 1,
          'deadly': 1,
          'robot': 1,
          'camerons': 1,
          'terminator': 1,
          'schwartzeneggers': 1,
          'strength': 1,
          'emotions': 1,
          'achieve': 1,
          'artistic': 1,
          'level': 1,
          'moving': 1,
          'towards': 1,
          'oscar': 1,
          'adult': 1,
          'successful': 1,
          'flop': 1,
          'unsuccessful': 1,
          'nmake': 1,
          'wild': 1,
          'guess': 1,
          'nhis': 1,
          'character': 1,
          'lost': 1,
          'drinking': 1,
          'problems': 1,
          'requires': 1,
          'least': 1,
          'acting': 1,
          'skills': 1,
          'nregrettably': 1,
          'thing': 1,
          'convincing': 1,
          'old': 1,
          'rest': 1,
          'cast': 1,
          'struggling': 1,
          'characters': 1,
          'otherwise': 1,
          'technically': 1,
          'impressive': 1,
          'solid': 1,
          'cinematography': 1,
          'fine': 1,
          'lighting': 1,
          'doesnt': 1,
          'serve': 1,
          'neither': 1,
          'stupidity': 1,
          'entertainment': 1,
          'tone': 1,
          'real': 1,
          'relief': 1,
          'swartzenegger': 1,
          'cry': 1,
          'sequences': 1,
          'recycled': 1,
          'effects': 1,
          'spectacular': 1,
          'really': 1,
          'hard': 1,
          'recommending': 1,
          'somebody': 1,
          'nunless': 1,
          'diehard': 1,
          'fan': 1,
          'stay': 1,
          'away': 1,
          'nas': 1,
          'hell': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'weapon': 5,
          'would': 4,
          'film': 4,
          'series': 4,
          'people': 3,
          'going': 3,
          'films': 3,
          'lethal': 3,
          'plot': 3,
          'days': 2,
          'nostalgia': 2,
          'already': 2,
          'years': 2,
          'hollywood': 2,
          'products': 2,
          'period': 2,
          'like': 2,
          'loaded': 2,
          '1': 2,
          'many': 2,
          'lack': 2,
          'made': 2,
          'parody': 2,
          'l': 2,
          'authors': 2,
          'projects': 2,
          'fourth': 2,
          'sequel': 2,
          'original': 2,
          'movie': 2,
          'gags': 2,
          'laugh': 2,
          'simply': 2,
          'rather': 1,
          'short': 1,
          'attention': 1,
          'span': 1,
          'hardly': 1,
          'anything': 1,
          'satisfy': 1,
          'long': 1,
          'run': 1,
          'n1970s': 1,
          'wearing': 1,
          'becoming': 1,
          'interested': 1,
          '1980s': 1,
          'nfew': 1,
          'future': 1,
          'early': 1,
          '1990s': 1,
          'regarded': 1,
          'next': 1,
          'golden': 1,
          'age': 1,
          'nhowever': 1,
          'doubt': 1,
          'nostalgic': 1,
          'none': 1,
          'reason': 1,
          'surely': 1,
          'national': 1,
          'lampoons': 1,
          'ways': 1,
          'symbolise': 1,
          'biggest': 1,
          'problem': 1,
          'contemporary': 1,
          'american': 1,
          'industry': 1,
          'originality': 1,
          'ideas': 1,
          'nbeing': 1,
          'kind': 1,
          'pairs': 1,
          'two': 1,
          'policemen': 1,
          'jack': 1,
          'colt': 1,
          'emilio': 1,
          'estevez': 1,
          'burnout': 1,
          'alcoholic': 1,
          'cop': 1,
          'edge': 1,
          'wes': 1,
          'luger': 1,
          'samuel': 1,
          'jackson': 1,
          'bythebook': 1,
          'policeman': 1,
          'away': 1,
          'retirement': 1,
          'ntwo': 1,
          'following': 1,
          'murder': 1,
          'lugers': 1,
          'ex': 1,
          'partner': 1,
          'must': 1,
          'confront': 1,
          'evil': 1,
          'general': 1,
          'mortars': 1,
          'william': 1,
          'shatner': 1,
          'crime': 1,
          'lord': 1,
          'flood': 1,
          'market': 1,
          'cocaine': 1,
          'stashed': 1,
          'wilderness': 1,
          'girl': 1,
          'cookies': 1,
          'whose': 1,
          'director': 1,
          'gene': 1,
          'quintano': 1,
          'worked': 1,
          'third': 1,
          'police': 1,
          'academy': 1,
          'lacked': 1,
          'idea': 1,
          'undertook': 1,
          'reflects': 1,
          'characters': 1,
          'even': 1,
          'lines': 1,
          'goes': 1,
          'nothing': 1,
          'make': 1,
          'popular': 1,
          'previous': 1,
          'apart': 1,
          'borrows': 1,
          'female': 1,
          'lead': 1,
          'basic': 1,
          'instinct': 1,
          'best': 1,
          'similar': 1,
          'movies': 1,
          'shown': 1,
          'trailers': 1,
          'rest': 1,
          'doesnt': 1,
          'work': 1,
          'nonly': 1,
          'used': 1,
          'watch': 1,
          'lot': 1,
          'nothers': 1,
          'probably': 1,
          'wince': 1,
          'lameness': 1,
          'humour': 1,
          'nsome': 1,
          'entertained': 1,
          'celebrity': 1,
          'cameos': 1,
          'pop': 1,
          'every': 1,
          'nbut': 1,
          'end': 1,
          'spending': 1,
          'hour': 1,
          'half': 1,
          'front': 1,
          'disorganised': 1,
          'mess': 1,
          'worth': 1,
          'effort': 1,
          'sometimes': 1,
          'criticised': 1,
          'strong': 1,
          'comic': 1,
          'overtones': 1,
          'returned': 1,
          'favour': 1,
          'using': 1,
          'joke': 1,
          'nneg': 1}),
 Counter({'film': 14,
          'invisible': 8,
          'films': 7,
          'like': 7,
          'nits': 7,
          'man': 7,
          'one': 5,
          'nthe': 5,
          'verhoeven': 4,
          'never': 4,
          'movie': 4,
          'hollow': 4,
          'bacon': 4,
          'scientist': 4,
          'mad': 4,
          'slasher': 4,
          'though': 3,
          'kind': 3,
          'whos': 3,
          'make': 3,
          'even': 3,
          'yet': 3,
          'set': 3,
          'manner': 3,
          'villain': 3,
          'moment': 3,
          'wont': 3,
          'nbut': 3,
          'character': 3,
          'end': 3,
          'rest': 3,
          'animals': 3,
          'invisibility': 3,
          'anyone': 3,
          'paul': 2,
          'dutch': 2,
          'violent': 2,
          'american': 2,
          'director': 2,
          'troopers': 2,
          'hollywood': 2,
          'budget': 2,
          'stimulating': 2,
          'high': 2,
          'soldier': 2,
          'orange': 2,
          'thats': 2,
          'nearly': 2,
          'actually': 2,
          'feels': 2,
          'picture': 2,
          'scenes': 2,
          'completely': 2,
          'made': 2,
          'within': 2,
          'aforementioned': 2,
          'seeing': 2,
          'robocop': 2,
          'violence': 2,
          'purpose': 2,
          'simply': 2,
          'scene': 2,
          'first': 2,
          'wherein': 2,
          'victims': 2,
          'every': 2,
          'nin': 2,
          'kevin': 2,
          'another': 2,
          'always': 2,
          'nhollow': 2,
          'couple': 2,
          'got': 2,
          'look': 2,
          'characters': 2,
          'well': 2,
          'party': 2,
          'become': 2,
          'big': 2,
          'new': 2,
          'time': 2,
          'nas': 2,
          'crew': 2,
          'top': 2,
          'secret': 2,
          'hinted': 2,
          'several': 2,
          'show': 2,
          'pentagon': 2,
          'go': 2,
          'stupid': 2,
          'nit': 2,
          'looking': 2,
          'nverhoeven': 2,
          'flick': 2,
          'reason': 2,
          'bad': 2,
          'verhoven': 2,
          'get': 2,
          'special': 2,
          'effects': 2,
          'auteur': 1,
          'dragged': 1,
          'sexually': 1,
          'aggressive': 1,
          'aesthetic': 1,
          'id': 1,
          'consider': 1,
          'thoughtful': 1,
          'notably': 1,
          'starship': 1,
          'lauded': 1,
          'artistic': 1,
          'achievements': 1,
          'maker': 1,
          'managed': 1,
          'matter': 1,
          'distinctive': 1,
          'sometimes': 1,
          'smuggle': 1,
          'themes': 1,
          'lavish': 1,
          'concepts': 1,
          'toils': 1,
          'nstarship': 1,
          'essentially': 1,
          'bmonster': 1,
          'remake': 1,
          'enthralling': 1,
          'war': 1,
          'great': 1,
          'impossible': 1,
          'find': 1,
          'video': 1,
          'showgirls': 1,
          'everywhere': 1,
          'cast': 1,
          'troop': 1,
          'stunningly': 1,
          'attractive': 1,
          'mannequins': 1,
          'square': 1,
          'jawed': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'denise': 1,
          'richards': 1,
          'may': 1,
          '45': 1,
          'silicone': 1,
          'propaganda': 1,
          'monotonous': 1,
          'graphic': 1,
          'carnage': 1,
          'successful': 1,
          'failure': 1,
          'certainly': 1,
          'interesting': 1,
          'mostly': 1,
          'entertaining': 1,
          'nmy': 1,
          'favorite': 1,
          'ones': 1,
          'hit': 1,
          'shores': 1,
          'spetters': 1,
          'dark': 1,
          'near': 1,
          'pornographic': 1,
          'coming': 1,
          'age': 1,
          'subculture': 1,
          'drag': 1,
          'racing': 1,
          'havent': 1,
          'gotten': 1,
          'around': 1,
          '4th': 1,
          'turkish': 1,
          'delight': 1,
          'ni': 1,
          'believe': 1,
          'best': 1,
          'bleak': 1,
          'superhero': 1,
          'satire': 1,
          'robotic': 1,
          'hero': 1,
          'touching': 1,
          'schwarzeneggers': 1,
          't2': 1,
          'nthat': 1,
          'overdone': 1,
          'cartoonish': 1,
          'recent': 1,
          'pics': 1,
          'seemed': 1,
          'namely': 1,
          'create': 1,
          'atmosphere': 1,
          'unpredictable': 1,
          'dread': 1,
          'titillate': 1,
          'attention': 1,
          'deprived': 1,
          'audience': 1,
          'ntheres': 1,
          'jawdropping': 1,
          'ten': 1,
          'minutes': 1,
          'lead': 1,
          'toys': 1,
          'cop': 1,
          'snuffing': 1,
          'nhe': 1,
          'tortures': 1,
          'officer': 1,
          'taking': 1,
          'glee': 1,
          'fearful': 1,
          'tic': 1,
          'startling': 1,
          'barbaric': 1,
          'maddening': 1,
          'effectively': 1,
          'sets': 1,
          'tone': 1,
          'could': 1,
          'designated': 1,
          'splatter': 1,
          'punknoir': 1,
          'brutally': 1,
          'slays': 1,
          'dog': 1,
          'shut': 1,
          'impales': 1,
          'coworker': 1,
          'drowns': 1,
          'nhis': 1,
          'introduced': 1,
          'smug': 1,
          'genius': 1,
          'impeccably': 1,
          'dressed': 1,
          'races': 1,
          'sports': 1,
          'car': 1,
          'generic': 1,
          'rock': 1,
          'tunes': 1,
          'blare': 1,
          'stereo': 1,
          'world': 1,
          'hear': 1,
          'sort': 1,
          'scheming': 1,
          'uber': 1,
          'dallas': 1,
          'melrose': 1,
          'place': 1,
          'becomes': 1,
          'pull': 1,
          '180': 1,
          'shift': 1,
          'psychotic': 1,
          'monster': 1,
          'die': 1,
          'mans': 1,
          'protagonists': 1,
          'bland': 1,
          'beautiful': 1,
          'linda': 1,
          'elizabeth': 1,
          'shue': 1,
          'acting': 1,
          'rebecca': 1,
          'sunnybrook': 1,
          'farm': 1,
          'lover': 1,
          'hunk': 1,
          'beef': 1,
          'played': 1,
          'josh': 1,
          'brolin': 1,
          'saddled': 1,
          'worst': 1,
          'lines': 1,
          'ive': 1,
          'lost': 1,
          'cohesion': 1,
          'ntheyre': 1,
          'typical': 1,
          'aaron': 1,
          'spelling': 1,
          'goodlooking': 1,
          'vacant': 1,
          'george': 1,
          'w': 1,
          'bushs': 1,
          'republican': 1,
          'national': 1,
          'convention': 1,
          'speech': 1,
          'e': 1,
          'nbush': 1,
          'referring': 1,
          'clinton': 1,
          'much': 1,
          'promise': 1,
          'nto': 1,
          'nthis': 1,
          'applause': 1,
          'nsuddenly': 1,
          'warren': 1,
          'beatty': 1,
          'doesnt': 1,
          'absurd': 1,
          'past': 1,
          'thirty': 1,
          'act': 1,
          'annoying': 1,
          'school': 1,
          'insulting': 1,
          'series': 1,
          'strained': 1,
          'oneliners': 1,
          'labored': 1,
          'insults': 1,
          'hollywoods': 1,
          'developing': 1,
          'technique': 1,
          'nahh': 1,
          'cynical': 1,
          'live': 1,
          'opens': 1,
          'meet': 1,
          'cain': 1,
          'egocentric': 1,
          'working': 1,
          'irritating': 1,
          'scientists': 1,
          'government': 1,
          'provided': 1,
          'dilapidated': 1,
          'warehouse': 1,
          'perform': 1,
          'extensive': 1,
          'experimentations': 1,
          'project': 1,
          'goal': 1,
          'possibility': 1,
          'ntheyve': 1,
          'performed': 1,
          'experiments': 1,
          'solved': 1,
          'quandary': 1,
          'causing': 1,
          'caine': 1,
          'twist': 1,
          'worthy': 1,
          '1950s': 1,
          'late': 1,
          'origins': 1,
          'impulsively': 1,
          'experiment': 1,
          'ncaine': 1,
          'neglects': 1,
          'let': 1,
          'plans': 1,
          'somehow': 1,
          'gets': 1,
          'two': 1,
          'coworkers': 1,
          'lie': 1,
          'think': 1,
          'gave': 1,
          'ahead': 1,
          'nour': 1,
          'turned': 1,
          'fxheavy': 1,
          'complications': 1,
          'inexplicably': 1,
          'process': 1,
          'savage': 1,
          'creatures': 1,
          'explored': 1,
          'case': 1,
          'hell': 1,
          'would': 1,
          'enough': 1,
          'test': 1,
          'human': 1,
          'nbegins': 1,
          'raping': 1,
          'assaulting': 1,
          'murdering': 1,
          'pleases': 1,
          'lame': 1,
          'wisecrack': 1,
          'ready': 1,
          'la': 1,
          'freddy': 1,
          'krueger': 1,
          'grows': 1,
          'abundantly': 1,
          'clear': 1,
          'release': 1,
          'verhoevens': 1,
          'nlike': 1,
          'cold': 1,
          'heartless': 1,
          'full': 1,
          'contempt': 1,
          'humanity': 1,
          'addition': 1,
          'lacks': 1,
          'trace': 1,
          'wit': 1,
          'insight': 1,
          'makes': 1,
          'statement': 1,
          'audiences': 1,
          'pay': 1,
          'anything': 1,
          'days': 1,
          'affront': 1,
          'something': 1,
          'intellectual': 1,
          'level': 1,
          'hoping': 1,
          'spend': 1,
          'saturday': 1,
          'night': 1,
          'fun': 1,
          'thrillaminute': 1,
          'ride': 1,
          'instead': 1,
          'served': 1,
          'utterly': 1,
          'routine': 1,
          'nobody': 1,
          'root': 1,
          'care': 1,
          'previews': 1,
          'irresistible': 1,
          'nhow': 1,
          'good': 1,
          'utilizes': 1,
          'state': 1,
          'art': 1,
          'fx': 1,
          'illustrate': 1,
          'getting': 1,
          'dirty': 1,
          'self': 1,
          'na': 1,
          'weeks': 1,
          'ago': 1,
          'trailer': 1,
          'bunch': 1,
          'friends': 1,
          'long': 1,
          'discussion': 1,
          'flicks': 1,
          'far': 1,
          'individual': 1,
          'indulging': 1,
          'newfound': 1,
          'ability': 1,
          'looked': 1,
          'whoa': 1,
          'serious': 1,
          'boot': 1,
          'oh': 1,
          'yeah': 1,
          'directed': 1,
          'atom': 1,
          'egoyan': 1,
          'peter': 1,
          'greenway': 1,
          'delivers': 1,
          'sleazy': 1,
          'goods': 1,
          'watchable': 1,
          'thrillingly': 1,
          'disturbing': 1,
          'icky': 1,
          'uncomfortable': 1,
          'keeps': 1,
          'camera': 1,
          'trained': 1,
          'nubile': 1,
          'actresses': 1,
          'caressing': 1,
          'breasts': 1,
          'lens': 1,
          'fauxpsycho': 1,
          'music': 1,
          'strains': 1,
          'background': 1,
          'plainly': 1,
          'obvious': 1,
          'isnt': 1,
          'exploring': 1,
          'voyeurism': 1,
          'classic': 1,
          'peeping': 1,
          'tom': 1,
          'exploiting': 1,
          'funny': 1,
          'technology': 1,
          '90': 1,
          'million': 1,
          'stuck': 1,
          'trying': 1,
          'figure': 1,
          'womans': 1,
          'naked': 1,
          'breast': 1,
          'manipulated': 1,
          'hand': 1,
          'nmost': 1,
          'vexing': 1,
          'aspect': 1,
          'used': 1,
          'gimmick': 1,
          'things': 1,
          'pop': 1,
          'attacks': 1,
          'fact': 1,
          'largely': 1,
          'irrelevant': 1,
          'since': 1,
          'potential': 1,
          'inferred': 1,
          'glasses': 1,
          'track': 1,
          'body': 1,
          'heat': 1,
          'killers': 1,
          'pov': 1,
          'spies': 1,
          'neighbor': 1,
          'undresses': 1,
          'triggered': 1,
          'unpleasant': 1,
          'memories': 1,
          'slumber': 1,
          'massacre': 1,
          'lots': 1,
          'people': 1,
          'unknowingly': 1,
          'stalked': 1,
          'provides': 1,
          'found': 1,
          'genuinely': 1,
          'creepy': 1,
          'happens': 1,
          'lab': 1,
          'assistant': 1,
          'kim': 1,
          'dickens': 1,
          'looks': 1,
          'stepped': 1,
          'playboy': 1,
          'middle': 1,
          'chit': 1,
          'chat': 1,
          'suddenly': 1,
          'pauses': 1,
          'n': 1,
          'queries': 1,
          'obviously': 1,
          'haunted': 1,
          'little': 1,
          'nothing': 1,
          'offer': 1,
          'ground': 1,
          'breaking': 1,
          'plot': 1,
          'run': 1,
          'course': 1,
          '1982': 1,
          'apex': 1,
          'craze': 1,
          'nthose': 1,
          'stunning': 1,
          'alone': 1,
          'keep': 1,
          'urban': 1,
          'legend': 1,
          'still': 1,
          'know': 1,
          'last': 1,
          'summer': 1,
          'nand': 1,
          'theyre': 1,
          'check': 1,
          'preferably': 1,
          'midweek': 1,
          'bargain': 1,
          'rental': 1,
          'nyouve': 1,
          'warned': 1,
          'probably': 1,
          'listen': 1,
          'ntis': 1,
          'pity': 1,
          'nneg': 1}),
 Counter({'movie': 9,
          'bronson': 6,
          'movies': 5,
          'could': 5,
          'played': 5,
          'kersey': 4,
          'fact': 3,
          'cannon': 3,
          'probably': 3,
          'nunfortunately': 3,
          'character': 3,
          '3': 3,
          'bronsons': 3,
          'death': 3,
          'wish': 3,
          'new': 3,
          'york': 3,
          'street': 3,
          'urban': 3,
          'charles': 2,
          'represents': 2,
          'one': 2,
          '1980s': 2,
          'decade': 2,
          'quality': 2,
          'work': 2,
          'group': 2,
          'led': 2,
          'next': 2,
          'didnt': 2,
          'end': 2,
          'cinematic': 2,
          'garbage': 2,
          'hero': 2,
          'main': 2,
          'reputation': 2,
          'non': 2,
          'hand': 2,
          'began': 2,
          'nin': 2,
          'original': 2,
          'paul': 2,
          'turns': 2,
          'victim': 2,
          'yet': 2,
          'director': 2,
          'michael': 2,
          'winner': 2,
          'crime': 2,
          'lines': 2,
          'old': 2,
          'friend': 2,
          'east': 2,
          'people': 2,
          'poor': 2,
          'kerseys': 2,
          'role': 2,
          'film': 2,
          'crusade': 2,
          'single': 2,
          'emotions': 2,
          'nthe': 2,
          'give': 2,
          'enough': 2,
          'important': 1,
          'icons': 1,
          'biggest': 1,
          'almost': 1,
          'tragic': 1,
          'ironies': 1,
          'ntragedy': 1,
          'lies': 1,
          'icon': 1,
          'status': 1,
          'earned': 1,
          'less': 1,
          'quantity': 1,
          'nmost': 1,
          'produced': 1,
          'company': 1,
          'israeli': 1,
          'producers': 1,
          'menahem': 1,
          'golan': 1,
          'yoram': 1,
          'globus': 1,
          'nthose': 1,
          'two': 1,
          'men': 1,
          'thought': 1,
          'roger': 1,
          'corman': 1,
          'b': 1,
          'mentors': 1,
          'future': 1,
          'hollywood': 1,
          'legends': 1,
          'happened': 1,
          'finally': 1,
          'went': 1,
          'bankrupt': 1,
          'behind': 1,
          'stood': 1,
          'huge': 1,
          'pile': 1,
          'would': 1,
          'require': 1,
          'least': 1,
          'centuries': 1,
          'reaches': 1,
          'camp': 1,
          'appeal': 1,
          'nsadly': 1,
          'also': 1,
          'contained': 1,
          'numerous': 1,
          'capable': 1,
          'actor': 1,
          'action': 1,
          '1970s': 1,
          'tried': 1,
          'raise': 1,
          'worth': 1,
          'simply': 1,
          'lead': 1,
          'lowering': 1,
          'process': 1,
          'take': 1,
          'comfort': 1,
          'extremely': 1,
          'popular': 1,
          'especially': 1,
          'among': 1,
          'audience': 1,
          '4': 1,
          'times': 1,
          'younger': 1,
          'none': 1,
          'seriously': 1,
          'marred': 1,
          'third': 1,
          'sequel': 1,
          'series': 1,
          '1974': 1,
          'mildmannered': 1,
          'architect': 1,
          'deadly': 1,
          'vigilante': 1,
          'family': 1,
          'fell': 1,
          'violence': 1,
          'nthat': 1,
          'far': 1,
          'masterpiece': 1,
          'skillfully': 1,
          'offering': 1,
          'remedy': 1,
          'real': 1,
          'disease': 1,
          'growing': 1,
          'rates': 1,
          'time': 1,
          'like': 1,
          'siegel': 1,
          'dirty': 1,
          'harry': 1,
          'six': 1,
          'years': 1,
          'later': 1,
          'got': 1,
          'rights': 1,
          'destroying': 1,
          'pumping': 1,
          'sequels': 1,
          'even': 1,
          'presence': 1,
          'stop': 1,
          'rapid': 1,
          'decline': 1,
          'ndeath': 1,
          'begins': 1,
          'comes': 1,
          'visit': 1,
          'living': 1,
          'wasteland': 1,
          'populated': 1,
          'young': 1,
          'criminals': 1,
          'move': 1,
          'nbefore': 1,
          'reunion': 1,
          'falls': 1,
          'gang': 1,
          'evil': 1,
          'fraker': 1,
          'gavan': 1,
          'oherlihy': 1,
          'noteworthy': 1,
          'nkersey': 1,
          'decides': 1,
          'avenge': 1,
          'slowly': 1,
          'prepares': 1,
          'police': 1,
          'inspector': 1,
          'shriker': 1,
          'ed': 1,
          'lauter': 1,
          'ants': 1,
          'use': 1,
          'secret': 1,
          'weapon': 1,
          'losing': 1,
          'war': 1,
          'nbronson': 1,
          'asset': 1,
          'plays': 1,
          'nothing': 1,
          'efficient': 1,
          'killing': 1,
          'machine': 1,
          'nalthough': 1,
          'charisma': 1,
          'help': 1,
          'overcoming': 1,
          'implausibilities': 1,
          'man': 1,
          '60s': 1,
          'armed': 1,
          'pistol': 1,
          'manages': 1,
          'wipe': 1,
          'dozens': 1,
          'opponents': 1,
          'superior': 1,
          'firepower': 1,
          'lack': 1,
          'commitment': 1,
          'seen': 1,
          'spoken': 1,
          'authors': 1,
          'somewhat': 1,
          'aware': 1,
          'emotional': 1,
          'shallowness': 1,
          'added': 1,
          'romantic': 1,
          'interest': 1,
          'public': 1,
          'defender': 1,
          'deborah': 1,
          'raffin': 1,
          'conveniently': 1,
          'terminated': 1,
          'order': 1,
          'motives': 1,
          'much': 1,
          'better': 1,
          'confronting': 1,
          'lawabiding': 1,
          'ethnically': 1,
          'stereotyped': 1,
          'citizens': 1,
          'daily': 1,
          'nemesis': 1,
          'punks': 1,
          'ruthless': 1,
          'exercise': 1,
          'reign': 1,
          'terror': 1,
          'entire': 1,
          'city': 1,
          'blocks': 1,
          'stupid': 1,
          'killed': 1,
          'droves': 1,
          'doesnt': 1,
          'know': 1,
          'plot': 1,
          'torturing': 1,
          'viewers': 1,
          'mostly': 1,
          'uninteresting': 1,
          'characters': 1,
          'cliched': 1,
          'formulaic': 1,
          'situations': 1,
          'ends': 1,
          'bang': 1,
          'big': 1,
          'showdown': 1,
          'sarajevolike': 1,
          'battle': 1,
          'zone': 1,
          'worst': 1,
          'part': 1,
          'editing': 1,
          'cheap': 1,
          'sets': 1,
          'props': 1,
          'away': 1,
          'low': 1,
          'budget': 1,
          'short': 1,
          'recommended': 1,
          'fanatical': 1,
          'fans': 1,
          'already': 1,
          'desperate': 1,
          'nostalgia': 1,
          'n': 1,
          'special': 1,
          'note': 1,
          'trekkies': 1,
          'marina': 1,
          'sirtis': 1,
          'actress': 1,
          'counsellor': 1,
          'deanna': 1,
          'troi': 1,
          'star': 1,
          'trek': 1,
          'generation': 1,
          'spotted': 1,
          'small': 1,
          'portorican': 1,
          'wife': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'original': 4,
          'house': 3,
          'effects': 3,
          'ni': 3,
          'version': 3,
          'gets': 3,
          'time': 3,
          'de': 3,
          'wise': 2,
          'lili': 2,
          'taylor': 2,
          'study': 2,
          'neeson': 2,
          'nhe': 2,
          'mind': 2,
          'cgi': 2,
          'cast': 2,
          'try': 2,
          'psychological': 2,
          'horror': 2,
          'nthis': 2,
          'scary': 2,
          'make': 2,
          'movie': 2,
          'frightening': 2,
          'would': 2,
          'characters': 2,
          'every': 2,
          'made': 2,
          'zetajones': 2,
          'always': 2,
          'going': 2,
          'napparently': 2,
          'filmed': 2,
          'better': 2,
          'jan': 2,
          'bonts': 2,
          'knew': 2,
          'everything': 2,
          'overblown': 1,
          'remake': 1,
          '1963': 1,
          'robert': 1,
          'name': 1,
          'based': 1,
          'shirley': 1,
          'jacksons': 1,
          'novel': 1,
          'haunting': 1,
          'hill': 1,
          'stars': 1,
          'one': 1,
          'three': 1,
          'lab': 1,
          'rats': 1,
          'participate': 1,
          'supposed': 1,
          'insomnia': 1,
          'initiated': 1,
          'liam': 1,
          'actually': 1,
          'conducting': 1,
          'causes': 1,
          'fear': 1,
          'human': 1,
          'still': 1,
          'affected': 1,
          'drags': 1,
          'test': 1,
          'subjects': 1,
          'foreboding': 1,
          'mansion': 1,
          'types': 1,
          'creepy': 1,
          'scare': 1,
          'audiences': 1,
          'patience': 1,
          'know': 1,
          'question': 1,
          'posed': 1,
          'people': 1,
          'keep': 1,
          'remaking': 1,
          'good': 1,
          'movies': 1,
          'nthe': 1,
          'great': 1,
          'new': 1,
          'dull': 1,
          'decidedly': 1,
          'nin': 1,
          'fact': 1,
          'feel': 1,
          'downright': 1,
          'impossible': 1,
          'modern': 1,
          'day': 1,
          'pg13': 1,
          'nunless': 1,
          'find': 1,
          'obvious': 1,
          'computer': 1,
          'generated': 1,
          'special': 1,
          'theres': 1,
          'nothing': 1,
          'raise': 1,
          'hackles': 1,
          'nearly': 1,
          'fell': 1,
          'asleep': 1,
          'twice': 1,
          'probably': 1,
          'guy': 1,
          'two': 1,
          'rows': 1,
          'behind': 1,
          'didnt': 1,
          'seem': 1,
          'personal': 1,
          'relationship': 1,
          'felt': 1,
          'needed': 1,
          'discuss': 1,
          'decision': 1,
          'progressed': 1,
          'nits': 1,
          'sad': 1,
          'see': 1,
          'amazing': 1,
          'wasted': 1,
          'badly': 1,
          'nowen': 1,
          'wilson': 1,
          'spends': 1,
          'wandering': 1,
          'halls': 1,
          'script': 1,
          'justice': 1,
          'wonderful': 1,
          'comic': 1,
          'ability': 1,
          'ncatherine': 1,
          'nice': 1,
          'look': 1,
          'given': 1,
          'woefully': 1,
          'underwritten': 1,
          'role': 1,
          'bisexual': 1,
          'insomniac': 1,
          'run': 1,
          'bedroom': 1,
          'perplexed': 1,
          'strange': 1,
          'noise': 1,
          'occurs': 1,
          'nliam': 1,
          'pops': 1,
          'talk': 1,
          'tape': 1,
          'recorder': 1,
          'attempt': 1,
          'convince': 1,
          'others': 1,
          'much': 1,
          'knowledge': 1,
          'whats': 1,
          'rest': 1,
          'nfinally': 1,
          'poor': 1,
          'center': 1,
          'brunt': 1,
          'thrown': 1,
          'everyone': 1,
          'else': 1,
          'scream': 1,
          'rescue': 1,
          'subplot': 1,
          'involving': 1,
          'tryst': 1,
          'taylors': 1,
          'removed': 1,
          'nthats': 1,
          'bad': 1,
          'might': 1,
          'lent': 1,
          'characterization': 1,
          'narrative': 1,
          'second': 1,
          'straight': 1,
          'misfire': 1,
          'speed': 1,
          '2': 1,
          'cruise': 1,
          'control': 1,
          'first': 1,
          'nwhen': 1,
          'learn': 1,
          'bigger': 1,
          'necessarily': 1,
          'nrobert': 1,
          'makes': 1,
          'blair': 1,
          'witch': 1,
          'project': 1,
          'also': 1,
          'none': 1,
          'approach': 1,
          'haunted': 1,
          'twister': 1,
          'mindset': 1,
          'nif': 1,
          'bont': 1,
          'screenwriter': 1,
          'david': 1,
          'self': 1,
          'let': 1,
          'minds': 1,
          'fill': 1,
          'blanks': 1,
          'happening': 1,
          'instead': 1,
          'showing': 1,
          'us': 1,
          'served': 1,
          'terrifying': 1,
          'nwhat': 1,
          'fashions': 1,
          'thousand': 1,
          'times': 1,
          'completely': 1,
          'led': 1,
          'towards': 1,
          'yet': 1,
          'another': 1,
          'story': 1,
          'title': 1,
          'certainly': 1,
          'hope': 1,
          'newer': 1,
          'rendition': 1,
          'hurt': 1,
          'insanity': 1,
          'retain': 1,
          'impact': 1,
          'release': 1,
          'npg13': 1,
          'nneg': 1}),
 Counter({'tarzan': 19,
          'lost': 10,
          'movie': 8,
          'city': 7,
          'jungle': 7,
          'one': 6,
          'bad': 6,
          'even': 6,
          'jane': 6,
          'like': 5,
          'nthe': 4,
          'come': 3,
          'way': 3,
          'made': 3,
          'good': 3,
          'greystoke': 3,
          'n': 3,
          'also': 3,
          'much': 3,
          'movies': 2,
          'nnot': 2,
          'great': 2,
          'ninstead': 2,
          'screen': 2,
          'question': 2,
          'first': 2,
          'around': 2,
          'nof': 2,
          'course': 2,
          'picture': 2,
          'films': 2,
          'legend': 2,
          'apes': 2,
          'ape': 2,
          'man': 2,
          'bo': 2,
          'nmost': 2,
          'would': 2,
          'new': 2,
          'offer': 2,
          'anything': 2,
          'least': 2,
          'story': 2,
          'last': 2,
          'back': 2,
          'old': 2,
          'starts': 2,
          'casper': 2,
          'van': 2,
          'dien': 2,
          'raised': 2,
          'nwhen': 2,
          'english': 2,
          'march': 2,
          'nhowever': 2,
          'ravens': 2,
          'steve': 2,
          'african': 2,
          'scenes': 2,
          'adventures': 2,
          'attempt': 2,
          'action': 2,
          'nthere': 2,
          'raiders': 2,
          'ark': 2,
          'short': 2,
          'lacking': 2,
          'pyramid': 2,
          'department': 2,
          'treasure': 2,
          'hunters': 2,
          'although': 2,
          'comes': 2,
          'hes': 2,
          'anemic': 1,
          'quite': 1,
          'poorly': 1,
          'written': 1,
          'badly': 1,
          'acted': 1,
          'generally': 1,
          'incompetent': 1,
          'cinematic': 1,
          'areas': 1,
          'thoroughly': 1,
          'uninspired': 1,
          'insipid': 1,
          'nunfortunately': 1,
          'colossal': 1,
          'misfires': 1,
          'heavens': 1,
          'gate': 1,
          '1980': 1,
          'ishtar': 1,
          '1987': 1,
          'literally': 1,
          'drips': 1,
          'nobody': 1,
          'wanted': 1,
          'associated': 1,
          'begs': 1,
          'place': 1,
          'nwith': 1,
          'scripts': 1,
          'lying': 1,
          'hollywood': 1,
          'unproduced': 1,
          'needless': 1,
          'drek': 1,
          'make': 1,
          'big': 1,
          'filmed': 1,
          'characters': 1,
          'motion': 1,
          'history': 1,
          'appeared': 1,
          'forty': 1,
          'ranged': 1,
          '1984s': 1,
          'lord': 1,
          'really': 1,
          '1981s': 1,
          'derek': 1,
          'cheapie': 1,
          'bmovies': 1,
          'thirties': 1,
          'forties': 1,
          'starring': 1,
          'exolympic': 1,
          'athletes': 1,
          'lot': 1,
          'cutsie': 1,
          'chimps': 1,
          'ntherefore': 1,
          'another': 1,
          'might': 1,
          'assume': 1,
          'something': 1,
          'different': 1,
          'angle': 1,
          'original': 1,
          'storyline': 1,
          'set': 1,
          'apart': 1,
          'others': 1,
          'added': 1,
          'neverbeforeseen': 1,
          'level': 1,
          'realism': 1,
          'pulpy': 1,
          'tale': 1,
          'misguided': 1,
          'audacity': 1,
          'sexualize': 1,
          'vehicle': 1,
          'dereks': 1,
          'bare': 1,
          'breasts': 1,
          'hand': 1,
          'absolutely': 1,
          'nothing': 1,
          'bunch': 1,
          'recycled': 1,
          'storylines': 1,
          'dialogue': 1,
          'script': 1,
          'bayard': 1,
          'johnson': 1,
          'j': 1,
          'anderson': 1,
          'black': 1,
          'formulaic': 1,
          'generic': 1,
          'ncomic': 1,
          'books': 1,
          'better': 1,
          'plots': 1,
          'fact': 1,
          'retains': 1,
          'ridiculous': 1,
          'call': 1,
          'tirelessly': 1,
          'mocked': 1,
          'summers': 1,
          'comedy': 1,
          'george': 1,
          'ndidnt': 1,
          'producers': 1,
          'think': 1,
          'leave': 1,
          'weissmuller': 1,
          'pictures': 1,
          'belongs': 1,
          'already': 1,
          'firmly': 1,
          'established': 1,
          'quick': 1,
          'opening': 1,
          'narration': 1,
          'tells': 1,
          'found': 1,
          'return': 1,
          'england': 1,
          'assumes': 1,
          'heritage': 1,
          '1913': 1,
          'civilized': 1,
          'gentleman': 1,
          'without': 1,
          'accent': 1,
          'marry': 1,
          'less': 1,
          'week': 1,
          'wicked': 1,
          'archeologistgraverobber': 1,
          'named': 1,
          'nigel': 1,
          'waddington': 1,
          'begins': 1,
          'hunting': 1,
          'fabled': 1,
          'opar': 1,
          'africas': 1,
          'secrets': 1,
          'witch': 1,
          'doctor': 1,
          'ancient': 1,
          'tribe': 1,
          'summons': 1,
          'nat': 1,
          'refuses': 1,
          'go': 1,
          'pouting': 1,
          'interfere': 1,
          'wedding': 1,
          'leaves': 1,
          'changes': 1,
          'mind': 1,
          'tracks': 1,
          'therefore': 1,
          'assuring': 1,
          'lots': 1,
          'lame': 1,
          'smooch': 1,
          'apeman': 1,
          'nonce': 1,
          'film': 1,
          'gets': 1,
          'going': 1,
          'sluggish': 1,
          'delves': 1,
          'series': 1,
          'natives': 1,
          'thwart': 1,
          'crew': 1,
          'discovering': 1,
          'socalled': 1,
          'cheesy': 1,
          'predictable': 1,
          'unexciting': 1,
          'pace': 1,
          'tension': 1,
          'speak': 1,
          'sequences': 1,
          'stolen': 1,
          'innumerable': 1,
          'recent': 1,
          'adventure': 1,
          'ranging': 1,
          '1981': 1,
          'goonies': 1,
          '1985': 1,
          'running': 1,
          'includes': 1,
          'greenpeacefriendly': 1,
          'freeing': 1,
          'caged': 1,
          'animals': 1,
          'releasing': 1,
          'baby': 1,
          'elephant': 1,
          'trap': 1,
          'throwing': 1,
          'ivory': 1,
          'tusks': 1,
          'river': 1,
          'remote': 1,
          'hint': 1,
          'reality': 1,
          'nfor': 1,
          'instance': 1,
          'bit': 1,
          'cobra': 1,
          'doesnt': 1,
          'suck': 1,
          'venom': 1,
          'semiexperienced': 1,
          'weekend': 1,
          'backpacker': 1,
          'ties': 1,
          'tourniquet': 1,
          'arm': 1,
          'stumbles': 1,
          'plan': 1,
          'survival': 1,
          'cant': 1,
          'help': 1,
          'notice': 1,
          'fundamentally': 1,
          'misleading': 1,
          'title': 1,
          'ruin': 1,
          'ending': 1,
          'however': 1,
          'suppose': 1,
          'resourcestrapped': 1,
          'fx': 1,
          'could': 1,
          'special': 1,
          'effects': 1,
          'worthy': 1,
          'madefortv': 1,
          'nwhich': 1,
          'brings': 1,
          'slog': 1,
          'numerous': 1,
          'underground': 1,
          'caverns': 1,
          'get': 1,
          'sitting': 1,
          'right': 1,
          'middle': 1,
          'open': 1,
          'field': 1,
          'nstrictly': 1,
          'speaking': 1,
          'isnt': 1,
          'enough': 1,
          'camp': 1,
          'quality': 1,
          'diens': 1,
          'laughably': 1,
          'stiff': 1,
          'performance': 1,
          'real': 1,
          'close': 1,
          'nthis': 1,
          'proves': 1,
          'starship': 1,
          'troopers': 1,
          'hinted': 1,
          'act': 1,
          'sure': 1,
          'looks': 1,
          'wellgroomed': 1,
          'deepest': 1,
          'heart': 1,
          'nvan': 1,
          'prettyboy': 1,
          'effective': 1,
          'calvin': 1,
          'klein': 1,
          'model': 1,
          'loin': 1,
          'cloth': 1,
          'ni': 1,
          'wondered': 1,
          'makeup': 1,
          'thinking': 1,
          'outfitted': 1,
          'awful': 1,
          'circa1983': 1,
          'perry': 1,
          'haircut': 1,
          'nwaddington': 1,
          'makes': 1,
          'decent': 1,
          'villain': 1,
          'charmless': 1,
          'version': 1,
          'belloq': 1,
          'exmodel': 1,
          'little': 1,
          'smile': 1,
          'look': 1,
          'pretty': 1,
          'next': 1,
          'nshe': 1,
          'fire': 1,
          'gun': 1,
          'evil': 1,
          'time': 1,
          'two': 1,
          'whenever': 1,
          'snake': 1,
          'reduced': 1,
          'hysterical': 1,
          'mess': 1,
          'amidst': 1,
          'complaining': 1,
          'piece': 1,
          'news': 1,
          'ideas': 1,
          'unable': 1,
          'fill': 1,
          'hour': 1,
          'half': 1,
          'celluloid': 1,
          'nso': 1,
          'say': 1,
          'decency': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'good': 3,
          'phantom': 2,
          'seen': 2,
          'little': 2,
          'williams': 2,
          'looking': 2,
          'like': 2,
          'one': 2,
          'jones': 2,
          'performance': 2,
          'everything': 1,
          'many': 1,
          'times': 1,
          'nothing': 1,
          'new': 1,
          'presented': 1,
          'nwincer': 1,
          'displays': 1,
          'absolutely': 1,
          'skill': 1,
          'setting': 1,
          'exciting': 1,
          'action': 1,
          'sequence': 1,
          'nbilly': 1,
          'zane': 1,
          'wooden': 1,
          'hero': 1,
          'nkristy': 1,
          'swanson': 1,
          'given': 1,
          'ntreat': 1,
          'rhett': 1,
          'butler': 1,
          'sounding': 1,
          'mickey': 1,
          'mouse': 1,
          'worst': 1,
          'villains': 1,
          'ever': 1,
          'nonly': 1,
          'catherine': 1,
          'zeta': 1,
          'cohorts': 1,
          'turns': 1,
          'nshe': 1,
          'energy': 1,
          'spunk': 1,
          'needed': 1,
          'much': 1,
          'noh': 1,
          'yeah': 1,
          'also': 1,
          'secret': 1,
          'identity': 1,
          'poorly': 1,
          'played': 1,
          'wont': 1,
          'even': 1,
          'care': 1,
          'nabout': 1,
          'things': 1,
          'recommend': 1,
          'colorful': 1,
          'scenery': 1,
          'nhowever': 1,
          'youre': 1,
          'fun': 1,
          'family': 1,
          'go': 1,
          'watch': 1,
          'underrated': 1,
          'flipper': 1,
          'nthis': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'robert': 6,
          'celine': 6,
          'life': 5,
          'ordinary': 5,
          'less': 4,
          'nbut': 4,
          'romance': 4,
          'something': 4,
          'romantic': 3,
          'boyle': 3,
          'nthe': 3,
          'two': 3,
          'comes': 3,
          'exactly': 3,
          'movie': 2,
          'attempt': 2,
          'yes': 2,
          'nafter': 2,
          'mcgregor': 2,
          'diaz': 2,
          'ransom': 2,
          'cut': 2,
          'scheme': 2,
          'nand': 2,
          'one': 2,
          'mediocre': 2,
          'nit': 2,
          'earth': 2,
          'angels': 2,
          'hunter': 2,
          'angel': 2,
          'time': 2,
          'much': 2,
          'hard': 2,
          'really': 2,
          'connect': 2,
          'like': 2,
          'sure': 2,
          'trying': 2,
          'accomplish': 2,
          'even': 2,
          'end': 2,
          'name': 2,
          'scene': 2,
          'accept': 2,
          'r': 1,
          'extremely': 1,
          'peculiar': 1,
          'live': 1,
          'title': 1,
          'appropriate': 1,
          'moniker': 1,
          'would': 1,
          'misguided': 1,
          'confused': 1,
          'confusing': 1,
          'comedy': 1,
          'disarming': 1,
          'disaster': 1,
          'talented': 1,
          'trainspotting': 1,
          'team': 1,
          'director': 1,
          'danny': 1,
          'producer': 1,
          'andrew': 1,
          'macdonald': 1,
          'screenwriter': 1,
          'john': 1,
          'hodge': 1,
          'nat': 1,
          'core': 1,
          'strange': 1,
          'fairly': 1,
          'basicand': 1,
          'ordinarypremise': 1,
          'regular': 1,
          'ewan': 1,
          'aspiring': 1,
          'writer': 1,
          'trashy': 1,
          'novels': 1,
          'fired': 1,
          'janitorial': 1,
          'job': 1,
          'naville': 1,
          'corporation': 1,
          'kidnaps': 1,
          'navilles': 1,
          'ian': 1,
          'holm': 1,
          'spoiled': 1,
          'daughter': 1,
          'cameron': 1,
          'holds': 1,
          'joke': 1,
          'willing': 1,
          'victimher': 1,
          'father': 1,
          'threatened': 1,
          'financially': 1,
          'wants': 1,
          'revengeand': 1,
          'soon': 1,
          'becomes': 1,
          'accomplice': 1,
          'brains': 1,
          'behind': 1,
          'teaching': 1,
          'inept': 1,
          'thing': 1,
          'kidnapping': 1,
          'ultimately': 1,
          'didnt': 1,
          'see': 1,
          'coming': 1,
          'nlove': 1,
          'nso': 1,
          'far': 1,
          'better': 1,
          'dreadful': 1,
          'thanks': 1,
          'small': 1,
          'part': 1,
          'hodges': 1,
          'contextual': 1,
          'frame': 1,
          'turns': 1,
          'god': 1,
          'displeased': 1,
          'divorce': 1,
          'breakup': 1,
          'rate': 1,
          'chief': 1,
          'heavens': 1,
          'police': 1,
          'gabriel': 1,
          'dan': 1,
          'hedaya': 1,
          'dispatches': 1,
          'oreilly': 1,
          'holly': 1,
          'jackson': 1,
          'delroy': 1,
          'lindo': 1,
          'hook': 1,
          'robertor': 1,
          'lose': 1,
          'status': 1,
          'nthis': 1,
          'conceit': 1,
          'might': 1,
          'worked': 1,
          'dimension': 1,
          'played': 1,
          'integral': 1,
          'role': 1,
          'entire': 1,
          'picture': 1,
          'could': 1,
          'easily': 1,
          'without': 1,
          'clear': 1,
          'loss': 1,
          'stands': 1,
          'simply': 1,
          'waste': 1,
          'distracts': 1,
          'hand': 1,
          'nnot': 1,
          'begin': 1,
          'ntry': 1,
          'may': 1,
          'onenote': 1,
          'become': 1,
          'endearing': 1,
          'characters': 1,
          'nceline': 1,
          'rich': 1,
          'bitch': 1,
          'dullard': 1,
          'nas': 1,
          'quite': 1,
          'audience': 1,
          'twothen': 1,
          'never': 1,
          'seem': 1,
          'nwhen': 1,
          'start': 1,
          'overtly': 1,
          'act': 1,
          'feelings': 1,
          'scripted': 1,
          'anything': 1,
          'natural': 1,
          'companys': 1,
          'point': 1,
          'honestly': 1,
          'nboyle': 1,
          'juices': 1,
          'visuals': 1,
          'characteristic': 1,
          'razzmatazz': 1,
          'remains': 1,
          'thatenergy': 1,
          'energy': 1,
          'service': 1,
          'story': 1,
          'acting': 1,
          'cast': 1,
          'seems': 1,
          'lost': 1,
          'especially': 1,
          'whose': 1,
          'performance': 1,
          'adrift': 1,
          'baffling': 1,
          'many': 1,
          'eccentricities': 1,
          'splattered': 1,
          'onto': 1,
          'violent': 1,
          'confrontations': 1,
          'involving': 1,
          'angelicin': 1,
          'fact': 1,
          'staging': 1,
          'mystical': 1,
          'hokum': 1,
          'climax': 1,
          'cutesy': 1,
          'claymation': 1,
          'epilogue': 1,
          'nwatching': 1,
          'trapped': 1,
          'indie': 1,
          'hipster': 1,
          'hell': 1,
          'stockpiling': 1,
          'quirks': 1,
          'cool': 1,
          'ninstead': 1,
          'gives': 1,
          'quirky': 1,
          'bad': 1,
          'nmy': 1,
          'best': 1,
          'guess': 1,
          'filmmakers': 1,
          'wanted': 1,
          'atmosphere': 1,
          'warped': 1,
          'womantic': 1,
          'misspelling': 1,
          'intended': 1,
          'whimsy': 1,
          'extended': 1,
          'musical': 1,
          'number': 1,
          'sing': 1,
          'beyond': 1,
          'sea': 1,
          'karaoke': 1,
          'bar': 1,
          'verse': 1,
          'couple': 1,
          'magically': 1,
          'dolled': 1,
          'snazzy': 1,
          'outfits': 1,
          'hairdos': 1,
          'engage': 1,
          'spirited': 1,
          'dance': 1,
          'routine': 1,
          'counter': 1,
          'works': 1,
          'relative': 1,
          'simplicity': 1,
          'also': 1,
          'try': 1,
          'relying': 1,
          'innate': 1,
          'charm': 1,
          'leads': 1,
          'allowing': 1,
          'build': 1,
          'rapport': 1,
          'nalas': 1,
          'nearly': 1,
          'enough': 1,
          'built': 1,
          'moment': 1,
          'abrupt': 1,
          'ni': 1,
          'applaud': 1,
          'bring': 1,
          'fresh': 1,
          'unique': 1,
          'houses': 1,
          'sometimes': 1,
          'cleverness': 1,
          'reach': 1,
          'overkill': 1,
          'na': 1,
          'certainly': 1,
          'delivers': 1,
          'different': 1,
          'clamoring': 1,
          'n': 1,
          'failure': 1,
          'neveryone': 1,
          'fails': 1,
          'cant': 1,
          'doesnt': 1,
          'matter': 1,
          'win': 1,
          'long': 1,
          'give': 1,
          'everything': 1,
          'heart': 1,
          'nmichael': 1,
          'jordan': 1,
          'nneg': 1}),
 Counter({'princess': 7,
          'diaries': 5,
          'film': 4,
          'grated': 3,
          'mia': 3,
          'mias': 3,
          'could': 2,
          'disney': 2,
          'cute': 2,
          'harmless': 2,
          'fun': 2,
          'nand': 2,
          'garry': 2,
          'marshall': 2,
          'cheered': 2,
          'well': 2,
          'would': 2,
          'obvious': 2,
          'movies': 2,
          'pretty': 2,
          'way': 2,
          'hardly': 2,
          'laugh': 2,
          'long': 2,
          'works': 2,
          'royal': 2,
          'miniscule': 2,
          'european': 2,
          'much': 2,
          'queen': 2,
          'like': 2,
          'ugly': 2,
          'good': 2,
          'based': 1,
          'meg': 1,
          'cabots': 1,
          'novel': 1,
          'anything': 1,
          'neasy': 1,
          'ntake': 1,
          'youre': 1,
          'make': 1,
          'borrrring': 1,
          'nthats': 1,
          'director': 1,
          'screenwriter': 1,
          'gina': 1,
          'wendkos': 1,
          'outdone': 1,
          'producer': 1,
          'whitney': 1,
          'houston': 1,
          'done': 1,
          'nyou': 1,
          'couldnt': 1,
          'tell': 1,
          'audience': 1,
          'though': 1,
          'braintree': 1,
          'mass': 1,
          'growing': 1,
          'glowing': 1,
          'prepubescent': 1,
          'girls': 1,
          'odd': 1,
          'parental': 1,
          'popcorn': 1,
          'perched': 1,
          'persons': 1,
          'positively': 1,
          'end': 1,
          'credits': 1,
          'rolled': 1,
          'ah': 1,
          'struck': 1,
          'lovely': 1,
          'nerve': 1,
          'fuddyduddy': 1,
          'old': 1,
          'nwell': 1,
          'might': 1,
          'utter': 1,
          'tripe': 1,
          'truly': 1,
          'ntoo': 1,
          'least': 1,
          'problems': 1,
          'marshalls': 1,
          'made': 1,
          'couple': 1,
          'woman': 1,
          'runaway': 1,
          'bride': 1,
          'ones': 1,
          'without': 1,
          'julia': 1,
          'roberts': 1,
          'maybe': 1,
          'thats': 1,
          'problem': 1,
          'nin': 1,
          'addition': 1,
          'predictable': 1,
          'molasses': 1,
          'got': 1,
          'comedy': 1,
          'bore': 1,
          'pants': 1,
          'abyssinian': 1,
          'stretches': 1,
          'sloppily': 1,
          'edited': 1,
          'principals': 1,
          'refer': 1,
          'scenes': 1,
          'havent': 1,
          'even': 1,
          'seen': 1,
          'yet': 1,
          'probably': 1,
          'never': 1,
          'except': 1,
          'perhaps': 1,
          'dvd': 1,
          'edition': 1,
          'nmarshall': 1,
          'take': 1,
          'virtually': 1,
          'blame': 1,
          'since': 1,
          'hes': 1,
          'time': 1,
          'know': 1,
          'scene': 1,
          'two': 1,
          'isnt': 1,
          'working': 1,
          'alas': 1,
          'implies': 1,
          'cleverness': 1,
          'theres': 1,
          'none': 1,
          'either': 1,
          'nnewcomer': 1,
          'anne': 1,
          'hathaway': 1,
          'stars': 1,
          'thermopolis': 1,
          'bright': 1,
          'socially': 1,
          'invisible': 1,
          'san': 1,
          'franciscan': 1,
          'teen': 1,
          'learns': 1,
          'single': 1,
          'mom': 1,
          'wacky': 1,
          'artist': 1,
          'played': 1,
          'likable': 1,
          'caroline': 1,
          'goodall': 1,
          'bit': 1,
          'fling': 1,
          'member': 1,
          'country': 1,
          'nobody': 1,
          'ever': 1,
          'heard': 1,
          'filmmakers': 1,
          'go': 1,
          'call': 1,
          'serbia': 1,
          'countries': 1,
          'called': 1,
          'mark': 1,
          'words': 1,
          'next': 1,
          'line': 1,
          'rule': 1,
          'genovia': 1,
          'hence': 1,
          'headphonestiara': 1,
          'combo': 1,
          'print': 1,
          'ads': 1,
          'njulie': 1,
          'andrews': 1,
          'luminous': 1,
          'factor': 1,
          'cranked': 1,
          '11': 1,
          'plays': 1,
          'grandmother': 1,
          'aka': 1,
          'clarisse': 1,
          'renaldi': 1,
          'shows': 1,
          'blue': 1,
          'lends': 1,
          'advice': 1,
          'direction': 1,
          'eating': 1,
          'talking': 1,
          'looking': 1,
          'department': 1,
          'although': 1,
          'big': 1,
          'makeover': 1,
          'simply': 1,
          'transforms': 1,
          'duckling': 1,
          'swan': 1,
          'ndoes': 1,
          'julie': 1,
          'lose': 1,
          'dignity': 1,
          'sake': 1,
          'nnot': 1,
          'really': 1,
          'nconsuming': 1,
          'corn': 1,
          'dog': 1,
          'worst': 1,
          'gets': 1,
          'nalso': 1,
          'stereotypical': 1,
          'hand': 1,
          'brainless': 1,
          'jock': 1,
          'evil': 1,
          'cheerleader': 1,
          'dorkylooking': 1,
          'best': 1,
          'friend': 1,
          'welcome': 1,
          'dollhouse': 1,
          'heather': 1,
          'matarazzo': 1,
          'sensitive': 1,
          'auto': 1,
          'mechanicmusician': 1,
          'mainstay': 1,
          'hector': 1,
          'elizondo': 1,
          'joe': 1,
          'driver': 1,
          'imparting': 1,
          'wit': 1,
          'wisdom': 1,
          'front': 1,
          'seat': 1,
          'chauffeurdriven': 1,
          'limousine': 1,
          'every': 1,
          'intersection': 1,
          'na': 1,
          'nonanimated': 1,
          'movie': 1,
          'rarity': 1,
          'days': 1,
          'rating': 1,
          'reflects': 1,
          'fact': 1,
          'guts': 1,
          'stuff': 1,
          'exorcised': 1,
          'finished': 1,
          'product': 1,
          'nlame': 1,
          'labored': 1,
          'lamentable': 1,
          'recommended': 1,
          'eightandahalf': 1,
          'year': 1,
          'olds': 1,
          'feminine': 1,
          'persuasion': 1,
          'others': 1,
          'avoid': 1,
          'potholes': 1,
          'plague': 1,
          'perfect': 1,
          'storm': 1,
          'nneg': 1}),
 Counter({'action': 6,
          'plot': 5,
          'scenes': 5,
          'good': 5,
          'danny': 5,
          'nim': 5,
          'nthe': 5,
          'corruptor': 4,
          'movie': 4,
          'doesnt': 4,
          'make': 4,
          'sense': 4,
          'film': 4,
          'nick': 4,
          'chinatown': 4,
          'hes': 4,
          'also': 4,
          'none': 4,
          'like': 3,
          'chow': 3,
          'cop': 3,
          'sure': 3,
          'henry': 3,
          'lee': 3,
          'never': 3,
          'many': 3,
          'director': 2,
          'foley': 2,
          'lot': 2,
          'characters': 2,
          'nbut': 2,
          'less': 2,
          'nchow': 2,
          'nhes': 2,
          'named': 2,
          'wahlberg': 2,
          'stepping': 2,
          'finally': 2,
          'kind': 2,
          'fukienese': 2,
          'dragons': 2,
          'young': 2,
          'chinese': 2,
          'pretty': 2,
          'stuff': 2,
          'makes': 2,
          'way': 2,
          'ntheres': 2,
          'subplot': 2,
          'dannys': 2,
          'father': 2,
          'brian': 2,
          'story': 2,
          'ni': 2,
          'finger': 2,
          'new': 2,
          'actors': 2,
          'sequences': 2,
          'seen': 2,
          'big': 1,
          'silly': 1,
          'mess': 1,
          'complete': 1,
          'pointless': 1,
          'turns': 1,
          'gratuitous': 1,
          'violence': 1,
          'nits': 1,
          'abhorrent': 1,
          'even': 1,
          'blatantly': 1,
          'unlikable': 1,
          'shred': 1,
          'nand': 1,
          'whose': 1,
          'idea': 1,
          'glengarry': 1,
          'glen': 1,
          'ross': 1,
          'direct': 1,
          'njames': 1,
          'knows': 1,
          'acting': 1,
          'strengths': 1,
          'quiet': 1,
          'clash': 1,
          'ludicrous': 1,
          'nonsense': 1,
          'result': 1,
          'derailed': 1,
          'train': 1,
          'nat': 1,
          'least': 1,
          'yunfat': 1,
          'lead': 1,
          'role': 1,
          'plays': 1,
          'chen': 1,
          'first': 1,
          'establish': 1,
          'familiar': 1,
          'nthats': 1,
          'probably': 1,
          'powersthatbe': 1,
          'decide': 1,
          'team': 1,
          'rookie': 1,
          'wallace': 1,
          'mark': 1,
          'nnick': 1,
          'begin': 1,
          'others': 1,
          'toes': 1,
          'end': 1,
          'liking': 1,
          'get': 1,
          'chance': 1,
          'save': 1,
          'ones': 1,
          'life': 1,
          'nwhat': 1,
          'happens': 1,
          'mystery': 1,
          'fairly': 1,
          'certain': 1,
          'villains': 1,
          'part': 1,
          'led': 1,
          'psycho': 1,
          'bobby': 1,
          'vu': 1,
          'byron': 1,
          'mann': 1,
          'payroll': 1,
          'ric': 1,
          'gangster': 1,
          'dealing': 1,
          'prostitutes': 1,
          'neat': 1,
          'quite': 1,
          'decides': 1,
          'employ': 1,
          'although': 1,
          'ridiculous': 1,
          'albeit': 1,
          'unpredictable': 1,
          'twists': 1,
          'along': 1,
          'interesting': 1,
          'revolving': 1,
          'around': 1,
          'cox': 1,
          'much': 1,
          'main': 1,
          'problems': 1,
          'said': 1,
          'dont': 1,
          'blame': 1,
          'entirely': 1,
          'obviously': 1,
          'inclined': 1,
          'point': 1,
          'robert': 1,
          'puccis': 1,
          'script': 1,
          'seem': 1,
          'tune': 1,
          'normal': 1,
          'people': 1,
          'act': 1,
          'scene': 1,
          'early': 1,
          'particularly': 1,
          'annoyed': 1,
          'confronts': 1,
          'boss': 1,
          'angry': 1,
          'white': 1,
          'partner': 1,
          'shouting': 1,
          'pointing': 1,
          'furniture': 1,
          'thinking': 1,
          'would': 1,
          'fired': 1,
          'done': 1,
          'n': 1,
          'addition': 1,
          'takes': 1,
          'bite': 1,
          'racerelated': 1,
          'issues': 1,
          'develops': 1,
          'nthere': 1,
          'one': 1,
          'coherent': 1,
          'considerable': 1,
          'language': 1,
          'barrier': 1,
          'given': 1,
          'thick': 1,
          'accents': 1,
          'straightens': 1,
          'associated': 1,
          'group': 1,
          'weird': 1,
          'developments': 1,
          'decorated': 1,
          'loud': 1,
          'violent': 1,
          'arent': 1,
          'bad': 1,
          'theyre': 1,
          'car': 1,
          'chases': 1,
          'non': 1,
          'note': 1,
          'movies': 1,
          'id': 1,
          'imagine': 1,
          'nfoleys': 1,
          'strength': 1,
          'clearly': 1,
          'characterization': 1,
          'job': 1,
          'actually': 1,
          'got': 1,
          'feel': 1,
          'bond': 1,
          'forms': 1,
          'holds': 1,
          'parts': 1,
          'together': 1,
          'pro': 1,
          'sleep': 1,
          'nwahlberg': 1,
          'seems': 1,
          'home': 1,
          'atmosphere': 1,
          'still': 1,
          'fun': 1,
          'watch': 1,
          'liked': 1,
          'involving': 1,
          'coxs': 1,
          'performance': 1,
          'powerful': 1,
          'character': 1,
          'compelling': 1,
          'moral': 1,
          'compass': 1,
          'ultimately': 1,
          'fails': 1,
          'mostly': 1,
          'hands': 1,
          'insane': 1,
          'incoherence': 1,
          'overlyfamiliar': 1,
          'na': 1,
          'complicated': 1,
          'successful': 1,
          'needs': 1,
          'manages': 1,
          'keeps': 1,
          'spinning': 1,
          'control': 1,
          'theres': 1,
          'nothing': 1,
          'left': 1,
          'hold': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'horror': 5,
          'high': 5,
          'return': 4,
          'movie': 4,
          'one': 4,
          'wants': 3,
          'nthe': 3,
          'nbut': 3,
          'level': 3,
          'made': 3,
          'nand': 3,
          'story': 2,
          'school': 2,
          'place': 2,
          'know': 2,
          'killer': 2,
          'non': 2,
          'scream': 2,
          'thing': 2,
          'look': 2,
          'director': 2,
          'scene': 2,
          'actors': 2,
          'couple': 1,
          'different': 1,
          'types': 1,
          'movies': 1,
          'tells': 1,
          'lowbudget': 1,
          'filmed': 1,
          'closeddown': 1,
          'crippen': 1,
          'group': 1,
          'serial': 1,
          'murders': 1,
          'took': 1,
          'five': 1,
          'years': 1,
          'cast': 1,
          'crew': 1,
          'dont': 1,
          'real': 1,
          'maybe': 1,
          'never': 1,
          'apprehended': 1,
          'going': 1,
          'action': 1,
          'slasher': 1,
          'works': 1,
          'best': 1,
          'nwatching': 1,
          '1987': 1,
          'couldnt': 1,
          'help': 1,
          'take': 1,
          'notice': 1,
          'killers': 1,
          'costume': 1,
          'almost': 1,
          'identital': 1,
          'ghostface': 1,
          '2': 1,
          'another': 1,
          'slapstick': 1,
          'comedy': 1,
          'many': 1,
          'hints': 1,
          'throughout': 1,
          'nunfortunately': 1,
          'jokes': 1,
          'fall': 1,
          'flat': 1,
          'last': 1,
          'behindthescenes': 1,
          'exploitation': 1,
          'problem': 1,
          'much': 1,
          'supposed': 1,
          'cameras': 1,
          'shown': 1,
          'filming': 1,
          'thus': 1,
          'making': 1,
          'far': 1,
          'confusing': 1,
          'top': 1,
          'twist': 1,
          'ending': 1,
          'makes': 1,
          'little': 1,
          'sense': 1,
          'whatsoever': 1,
          'basically': 1,
          'left': 1,
          'feeling': 1,
          'wasted': 1,
          'time': 1,
          'nthere': 1,
          'developments': 1,
          'beyond': 1,
          'ludicrous': 1,
          'plot': 1,
          'holes': 1,
          'could': 1,
          'drive': 1,
          'winnebago': 1,
          'nif': 1,
          'see': 1,
          'seen': 1,
          'youll': 1,
          'mean': 1,
          'premise': 1,
          'admittedly': 1,
          'pretty': 1,
          'crafty': 1,
          'liked': 1,
          'atmosphere': 1,
          'whole': 1,
          'takes': 1,
          'froehlich': 1,
          'judging': 1,
          'incompetent': 1,
          'except': 1,
          'able': 1,
          'seldom': 1,
          'suspeneful': 1,
          'nwell': 1,
          'come': 1,
          'think': 1,
          'actually': 1,
          'scary': 1,
          'two': 1,
          'locked': 1,
          'room': 1,
          'tries': 1,
          'break': 1,
          'twominute': 1,
          'distraction': 1,
          'certainly': 1,
          'great': 1,
          'shake': 1,
          'nnote': 1,
          'george': 1,
          'clooney': 1,
          'supporting': 1,
          'role': 1,
          'strangely': 1,
          'enough': 1,
          'first': 1,
          'character': 1,
          'get': 1,
          'ax': 1,
          'literally': 1,
          'nneg': 1}),
 Counter({'alessa': 8,
          'art': 7,
          'sweet': 3,
          'vulnerable': 3,
          'nalessa': 3,
          'nthis': 3,
          'wants': 3,
          'woo': 2,
          'like': 2,
          'woman': 2,
          'nthe': 2,
          'problem': 2,
          'helen': 2,
          'lee': 2,
          'seems': 2,
          'happens': 2,
          'scene': 2,
          'paintings': 2,
          'dealers': 2,
          'nshe': 2,
          'ben': 2,
          'really': 2,
          'rich': 2,
          'buddies': 2,
          'decide': 2,
          'everything': 2,
          'scale': 2,
          '4': 2,
          'attempts': 1,
          'one': 1,
          'films': 1,
          'breakfast': 1,
          'tiffanys': 1,
          'audience': 1,
          'rooting': 1,
          'irresistible': 1,
          'work': 1,
          'problems': 1,
          'find': 1,
          'happiness': 1,
          'writes': 1,
          'directs': 1,
          'written': 1,
          'played': 1,
          'sookyin': 1,
          'neither': 1,
          'quite': 1,
          'resistible': 1,
          'young': 1,
          'brilliant': 1,
          'dealer': 1,
          'toronto': 1,
          'sort': 1,
          'alternate': 1,
          'world': 1,
          'people': 1,
          'pay': 1,
          'tens': 1,
          'thousands': 1,
          'dollars': 1,
          'talented': 1,
          'beginners': 1,
          'fly': 1,
          'back': 1,
          'forth': 1,
          'places': 1,
          'switzerland': 1,
          'none': 1,
          'knowledgeable': 1,
          'also': 1,
          'center': 1,
          'adulation': 1,
          'friends': 1,
          'every': 1,
          'party': 1,
          'suitors': 1,
          'camped': 1,
          'outside': 1,
          'window': 1,
          'nnext': 1,
          'door': 1,
          'moves': 1,
          'struggling': 1,
          'genius': 1,
          'artist': 1,
          'native': 1,
          'american': 1,
          'crowchild': 1,
          'adam': 1,
          'beach': 1,
          'nhe': 1,
          'sees': 1,
          'behind': 1,
          'facade': 1,
          'sad': 1,
          'little': 1,
          'girl': 1,
          'within': 1,
          'happy': 1,
          'collector': 1,
          'dating': 1,
          'nben': 1,
          'gets': 1,
          'emotionally': 1,
          'involved': 1,
          'n': 1,
          'delicately': 1,
          'puts': 1,
          'bosom': 1,
          'fuck': 1,
          'nbut': 1,
          'whether': 1,
          'love': 1,
          'wealth': 1,
          'suitor': 1,
          'real': 1,
          'film': 1,
          'lees': 1,
          'inability': 1,
          'saying': 1,
          'undercuts': 1,
          'nearly': 1,
          'us': 1,
          'believe': 1,
          'looking': 1,
          'financial': 1,
          'security': 1,
          'makes': 1,
          'decisions': 1,
          'large': 1,
          'sums': 1,
          'money': 1,
          'clients': 1,
          'appears': 1,
          'high': 1,
          'profile': 1,
          'wellpaid': 1,
          'job': 1,
          'nwe': 1,
          'supposed': 1,
          'care': 1,
          'alessas': 1,
          'feelings': 1,
          'coldly': 1,
          'refuses': 1,
          'visit': 1,
          'ailing': 1,
          'father': 1,
          'portrayed': 1,
          'auction': 1,
          'turns': 1,
          'man': 1,
          'flint': 1,
          'charmless': 1,
          'romantic': 1,
          'comedy': 1,
          'bets': 1,
          'appeal': 1,
          'main': 1,
          'character': 1,
          'comes': 1,
          'doublezero': 1,
          'ni': 1,
          'rate': 1,
          '3': 1,
          '0': 1,
          '10': 1,
          '1': 1,
          'nneg': 1}),
 Counter({'n': 11,
          'na': 4,
          'film': 4,
          'taiwan': 3,
          'apartment': 3,
          'neighbor': 3,
          'virus': 2,
          'cut': 2,
          'water': 2,
          'center': 2,
          'contagion': 2,
          'hole': 2,
          'floor': 2,
          'downstairs': 2,
          '4': 2,
          'woman': 2,
          'upstairs': 2,
          'small': 2,
          'failing': 2,
          'songs': 2,
          'seems': 2,
          'capsule': 1,
          'science': 1,
          'fiction': 1,
          'allegory': 1,
          'nat': 1,
          'millennium': 1,
          'lethal': 1,
          'contagious': 1,
          'hit': 1,
          'nofficials': 1,
          'services': 1,
          'nlife': 1,
          'devolves': 1,
          'degenerates': 1,
          'man': 1,
          'harasses': 1,
          'slow': 1,
          'harrowing': 1,
          'missed': 1,
          'possible': 1,
          'low': 1,
          '1': 1,
          'ravaging': 1,
          'part': 1,
          'city': 1,
          'evacuated': 1,
          'anyone': 1,
          'go': 1,
          'none': 1,
          'building': 1,
          'still': 1,
          'houses': 1,
          'people': 1,
          'formerly': 1,
          'office': 1,
          'worker': 1,
          'yang': 1,
          'kueimei': 1,
          'tormented': 1,
          'lee': 1,
          'kangsheng': 1,
          'plumber': 1,
          'using': 1,
          'drain': 1,
          'nneighbor': 1,
          'runs': 1,
          'grocery': 1,
          'store': 1,
          'make': 1,
          'things': 1,
          'depressing': 1,
          'constantly': 1,
          'raining': 1,
          'hard': 1,
          'vomits': 1,
          'pours': 1,
          'etc': 1,
          'almost': 1,
          'entirely': 1,
          'onesided': 1,
          'war': 1,
          'starts': 1,
          'nallegory': 1,
          'callousness': 1,
          'selfishness': 1,
          'living': 1,
          'pile': 1,
          'rolls': 1,
          'toilet': 1,
          'tissue': 1,
          'incongruous': 1,
          'added': 1,
          'show': 1,
          'neighbors': 1,
          'dreams': 1,
          'nthese': 1,
          'popular': 1,
          'taiwanese': 1,
          'singer': 1,
          'grace': 1,
          'chang': 1,
          'falling': 1,
          'apart': 1,
          'nwallpaper': 1,
          'separating': 1,
          'walls': 1,
          'nplumbing': 1,
          'boredom': 1,
          'shown': 1,
          'long': 1,
          'cuts': 1,
          'nothing': 1,
          'happens': 1,
          'lot': 1,
          'used': 1,
          'story': 1,
          'might': 1,
          'done': 1,
          'much': 1,
          'better': 1,
          'tenminute': 1,
          'animated': 1,
          'stars': 1,
          'considered': 1,
          'great': 1,
          'dramatic': 1,
          'actors': 1,
          'one': 1,
          'reviewer': 1,
          'longer': 1,
          '95': 1,
          'minutes': 1,
          'twohour': 1,
          'films': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'flubber': 8,
          'like': 4,
          'comedy': 3,
          'actually': 3,
          'nthe': 3,
          'phillip': 3,
          'first': 3,
          'seems': 3,
          'forgotten': 3,
          'nbut': 3,
          'even': 3,
          'worse': 3,
          'make': 3,
          'nits': 3,
          'free': 2,
          'cartoons': 2,
          'slapstick': 2,
          'gags': 2,
          'story': 2,
          'time': 2,
          'cartoony': 2,
          'nwe': 2,
          'medfield': 2,
          'college': 2,
          'chemistry': 2,
          'williams': 2,
          'scientist': 2,
          'jokes': 2,
          'one': 2,
          'sara': 2,
          'says': 2,
          'conflicts': 2,
          'wants': 2,
          'phillips': 2,
          'rival': 2,
          'going': 2,
          'invent': 2,
          'something': 2,
          'rules': 2,
          'flying': 2,
          'could': 2,
          'basketball': 2,
          'team': 2,
          'jumping': 2,
          'think': 2,
          'especially': 2,
          'say': 2,
          'nothing': 2,
          'seen': 1,
          'december': 1,
          '2': 1,
          '1997': 1,
          '6': 1,
          '50': 1,
          'p': 1,
          'glenwood': 1,
          'movieplex': 1,
          'cinemas': 1,
          'oneida': 1,
          'ny': 1,
          'theater': 1,
          '3': 1,
          'pass': 1,
          'ntheater': 1,
          'rating': 1,
          'good': 1,
          'seats': 1,
          'sound': 1,
          'picture': 1,
          'nthere': 1,
          'many': 1,
          'philosophies': 1,
          'fascinated': 1,
          'nthey': 1,
          'provide': 1,
          'method': 1,
          'total': 1,
          'escapism': 1,
          'anything': 1,
          'work': 1,
          'within': 1,
          'context': 1,
          'outrageous': 1,
          'looney': 1,
          'tunes': 1,
          'intensity': 1,
          'japanimation': 1,
          'nwatching': 1,
          'really': 1,
          'clinched': 1,
          'idea': 1,
          'live': 1,
          'action': 1,
          'cartoon': 1,
          'presents': 1,
          'regular': 1,
          'nit': 1,
          'proves': 1,
          'painfully': 1,
          'unfunny': 1,
          'would': 1,
          'reality': 1,
          'important': 1,
          'wastes': 1,
          'establishing': 1,
          'lighthearted': 1,
          'atmosphere': 1,
          'meet': 1,
          'professor': 1,
          'brainard': 1,
          'typical': 1,
          'supposedly': 1,
          'likable': 1,
          'mad': 1,
          'nwithin': 1,
          '10': 1,
          'minutes': 1,
          'get': 1,
          'least': 1,
          'half': 1,
          'dozen': 1,
          'forgetful': 1,
          'nphillips': 1,
          'memory': 1,
          'loss': 1,
          'less': 1,
          'gag': 1,
          'real': 1,
          'case': 1,
          'alzhiemers': 1,
          'disease': 1,
          'isnt': 1,
          'rather': 1,
          'lowbrow': 1,
          'nhe': 1,
          'starts': 1,
          'teaching': 1,
          'walking': 1,
          'nude': 1,
          'figure': 1,
          'drawing': 1,
          'class': 1,
          'inappropriate': 1,
          'joke': 1,
          'kids': 1,
          'movie': 1,
          'ever': 1,
          'saw': 1,
          'learn': 1,
          'stood': 1,
          'fiancee': 1,
          'harden': 1,
          'twice': 1,
          'altar': 1,
          'simply': 1,
          'hes': 1,
          'nsara': 1,
          'claims': 1,
          'love': 1,
          'forgets': 1,
          'wedding': 1,
          'shell': 1,
          'stop': 1,
          'loving': 1,
          'sign': 1,
          'childish': 1,
          'attitude': 1,
          'denies': 1,
          'must': 1,
          'resolve': 1,
          'surprise': 1,
          'major': 1,
          'related': 1,
          'nchristopher': 1,
          'mcdonald': 1,
          'version': 1,
          'usual': 1,
          'villain': 1,
          'shtick': 1,
          'wilson': 1,
          'croft': 1,
          'steal': 1,
          'ideas': 1,
          'woman': 1,
          'nwhats': 1,
          'interested': 1,
          'nwilson': 1,
          'works': 1,
          'buy': 1,
          'broke': 1,
          'unless': 1,
          'save': 1,
          'day': 1,
          'none': 1,
          'filmmaking': 1,
          'sure': 1,
          'title': 1,
          'played': 1,
          'introduced': 1,
          'thereafter': 1,
          'obvious': 1,
          'accidentally': 1,
          'rubber': 1,
          'compound': 1,
          'yields': 1,
          'tremendous': 1,
          'energy': 1,
          'promotions': 1,
          'look': 1,
          'realistic': 1,
          'funny': 1,
          'nunfortunately': 1,
          'special': 1,
          'effects': 1,
          'looks': 1,
          'fake': 1,
          'unconvincing': 1,
          'nflubber': 1,
          'also': 1,
          'intelligence': 1,
          'personality': 1,
          'performs': 1,
          'song': 1,
          'dance': 1,
          'routine': 1,
          'give': 1,
          'wondering': 1,
          'life': 1,
          'spontaneously': 1,
          'come': 1,
          'inanimate': 1,
          'object': 1,
          'nmost': 1,
          'wanders': 1,
          'aimlessly': 1,
          'relies': 1,
          'since': 1,
          'absentmindedness': 1,
          'somehow': 1,
          'push': 1,
          'along': 1,
          'clear': 1,
          'weak': 1,
          'premise': 1,
          'getgo': 1,
          'gets': 1,
          'nall': 1,
          'involve': 1,
          'people': 1,
          'getting': 1,
          'hit': 1,
          'fastmoving': 1,
          'flubberpowered': 1,
          'objects': 1,
          'including': 1,
          'bowling': 1,
          'balls': 1,
          'cars': 1,
          'dont': 1,
          'fly': 1,
          'well': 1,
          'capable': 1,
          '100': 1,
          'feet': 1,
          'air': 1,
          'presented': 1,
          'complete': 1,
          'logic': 1,
          'believes': 1,
          'exists': 1,
          'see': 1,
          'eyes': 1,
          'nduring': 1,
          'scene': 1,
          'coach': 1,
          'might': 1,
          'cheating': 1,
          'referee': 1,
          'replies': 1,
          'theres': 1,
          'high': 1,
          'n': 1,
          'predictable': 1,
          'doesnt': 1,
          'begin': 1,
          'describe': 1,
          'motions': 1,
          'goes': 1,
          'halfway': 1,
          'point': 1,
          'nand': 1,
          'terribly': 1,
          'contrived': 1,
          'plot': 1,
          'way': 1,
          'broken': 1,
          'scenebyscene': 1,
          'absolutely': 1,
          'transition': 1,
          'nnot': 1,
          'actors': 1,
          'seem': 1,
          'bored': 1,
          'tears': 1,
          'nid': 1,
          '80': 1,
          'percent': 1,
          'scenes': 1,
          'shot': 1,
          'bluescreen': 1,
          'almost': 1,
          'forgivable': 1,
          'realize': 1,
          'theyre': 1,
          'talking': 1,
          'interacting': 1,
          'safe': 1,
          'everything': 1,
          'bad': 1,
          'original': 1,
          'element': 1,
          'worlds': 1,
          'romance': 1,
          'machine': 1,
          'human': 1,
          'aspect': 1,
          'quite': 1,
          'twisted': 1,
          'rest': 1,
          'wont': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'see': 5,
          'one': 4,
          'really': 4,
          'nthis': 4,
          'freddie': 4,
          'prinze': 4,
          'jr': 4,
          'nits': 4,
          'model': 4,
          'n': 4,
          '510': 4,
          'plot': 3,
          'models': 3,
          'im': 3,
          'like': 3,
          'nand': 3,
          'ask': 3,
          'nwell': 3,
          'character': 3,
          'actually': 3,
          'well': 3,
          'point': 3,
          'goes': 3,
          '6': 3,
          'girl': 2,
          'moves': 2,
          'goofybutloveable': 2,
          'guy': 2,
          'street': 2,
          'naaaaaaaaah': 2,
          'head': 2,
          'maybe': 2,
          'little': 2,
          'nice': 2,
          'dumb': 2,
          'idiocy': 2,
          'thats': 2,
          'may': 2,
          'simple': 2,
          'life': 2,
          'potter': 2,
          'stupid': 2,
          'crap': 2,
          'thing': 2,
          'ni': 2,
          'even': 2,
          'guess': 2,
          'could': 2,
          'comes': 2,
          'time': 2,
          'people': 2,
          'things': 2,
          'funny': 2,
          'person': 2,
          'girls': 2,
          'entire': 2,
          'none': 2,
          'window': 2,
          'last': 2,
          'us': 2,
          'didnt': 2,
          'mention': 2,
          'coming': 2,
          '710': 2,
          'downandout': 1,
          'overthetop': 1,
          'falls': 1,
          'love': 1,
          'across': 1,
          'nthen': 1,
          'day': 1,
          'sees': 1,
          'knock': 1,
          'woman': 1,
          'upside': 1,
          'baseball': 1,
          'bat': 1,
          'nooooooooh': 1,
          'nshe': 1,
          'must': 1,
          'join': 1,
          'together': 1,
          'modelfriends': 1,
          'find': 1,
          'whether': 1,
          'psycho': 1,
          'killer': 1,
          'ncritique': 1,
          'completely': 1,
          'idiotic': 1,
          'nokay': 1,
          'starts': 1,
          'ridiculous': 1,
          'eventually': 1,
          'graduates': 1,
          'nthere': 1,
          'nmore': 1,
          'nfour': 1,
          'dumbest': 1,
          'stereotypical': 1,
          'world': 1,
          'oh': 1,
          'god': 1,
          'found': 1,
          'actresses': 1,
          'playing': 1,
          'parts': 1,
          'real': 1,
          'yipes': 1,
          'njoin': 1,
          'monica': 1,
          'role': 1,
          'described': 1,
          'obvious': 1,
          'cry': 1,
          'help': 1,
          'actor': 1,
          'better': 1,
          'known': 1,
          'farfetched': 1,
          'wonder': 1,
          'gets': 1,
          'hollywood': 1,
          'bigwigs': 1,
          'stinks': 1,
          'highheaven': 1,
          'plain': 1,
          'embarrassing': 1,
          'everyone': 1,
          'involved': 1,
          'felt': 1,
          'iq': 1,
          'dip': 1,
          'usual': 1,
          'low': 1,
          'toilet': 1,
          'humor': 1,
          'somehow': 1,
          'worked': 1,
          'way': 1,
          'socalled': 1,
          'romanticcomedyaction': 1,
          'nugh': 1,
          'nwhat': 1,
          'pile': 1,
          'dung': 1,
          'nhey': 1,
          'starting': 1,
          'sound': 1,
          'harry': 1,
          'knowles': 1,
          'frustration': 1,
          'sad': 1,
          'na': 1,
          'quite': 1,
          'audience': 1,
          'laughing': 1,
          'including': 1,
          'overused': 1,
          'folks': 1,
          'hiding': 1,
          'bathroom': 1,
          'someone': 1,
          'else': 1,
          'take': 1,
          'fart': 1,
          'gag': 1,
          'blonde': 1,
          'keeps': 1,
          'running': 1,
          'npure': 1,
          'hilarity': 1,
          'jaded': 1,
          'much': 1,
          'critic': 1,
          'relaxed': 1,
          'enough': 1,
          'enjoy': 1,
          'fluffpiece': 1,
          'uuuhhmmm': 1,
          'naaaaah': 1,
          'sucks': 1,
          'big': 1,
          'chockfull': 1,
          'characters': 1,
          'delivering': 1,
          'inane': 1,
          'dialogue': 1,
          'fitting': 1,
          'snuggly': 1,
          'preposterous': 1,
          'kind': 1,
          'inserting': 1,
          'another': 1,
          'car': 1,
          'headfirst': 1,
          'floor': 1,
          'supposed': 1,
          'nyou': 1,
          'legs': 1,
          'swinging': 1,
          'persons': 1,
          'face': 1,
          'drive': 1,
          'distracts': 1,
          'driver': 1,
          'kinda': 1,
          'nharumph': 1,
          'yeah': 1,
          'nget': 1,
          'picture': 1,
          'nanyhoo': 1,
          'nuff': 1,
          'nsaid': 1,
          'nmonica': 1,
          'bad': 1,
          'career': 1,
          'move': 1,
          'might': 1,
          'forgive': 1,
          'keep': 1,
          'julia': 1,
          'roberts': 1,
          'bit': 1,
          'nthe': 1,
          'rest': 1,
          'nthanks': 1,
          'something': 1,
          'look': 1,
          'please': 1,
          'apologize': 1,
          'modeling': 1,
          'community': 1,
          'whole': 1,
          'making': 1,
          'complete': 1,
          'imbeciles': 1,
          'nso': 1,
          'three': 1,
          'points': 1,
          'ten': 1,
          'russian': 1,
          'cool': 1,
          'accent': 1,
          'dont': 1,
          'turned': 1,
          'decoration': 1,
          'natch': 1,
          'makers': 1,
          'film': 1,
          'spared': 1,
          'long': 1,
          'sorted': 1,
          'story': 1,
          'made': 1,
          'sure': 1,
          'give': 1,
          'opportunity': 1,
          'leaving': 1,
          'theatre': 1,
          '90': 1,
          'minutes': 1,
          'manufactured': 1,
          'garbage': 1,
          'run': 1,
          'fast': 1,
          'grab': 1,
          'next': 1,
          'walking': 1,
          'warn': 1,
          'devil': 1,
          'nmean': 1,
          'heels': 1,
          'nyouve': 1,
          'warned': 1,
          'good': 1,
          'nps': 1,
          'didja': 1,
          'notice': 1,
          'rear': 1,
          'review': 1,
          'want': 1,
          'taint': 1,
          'memory': 1,
          'classic': 1,
          'flick': 1,
          'uttered': 1,
          'alongside': 1,
          'doesnt': 1,
          'count': 1,
          'ps': 1,
          'section': 1,
          'ndoes': 1,
          'nooooh': 1,
          'whatever': 1,
          'headache': 1,
          'think': 1,
          'brain': 1,
          'back': 1,
          'nwheres': 1,
          'joblo': 1,
          'n10': 1,
          'hate': 1,
          'coyote': 1,
          'ugly': 1,
          'save': 1,
          'dance': 1,
          'shes': 1,
          'wedding': 1,
          'planner': 1,
          '410': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          '5': 1,
          'nneg': 1}),
 Counter({'nthe': 5,
          'movie': 4,
          'todd': 4,
          'plot': 4,
          'actor': 3,
          'birth': 3,
          'time': 3,
          'show': 3,
          'spirit': 2,
          'left': 2,
          'star': 2,
          'made': 2,
          'advance': 2,
          'might': 2,
          'chosen': 2,
          'though': 2,
          'doesnt': 2,
          'soldier': 2,
          'less': 2,
          'trained': 2,
          'years': 2,
          'replaced': 2,
          'instead': 2,
          'class': 2,
          'caine': 2,
          'villain': 2,
          'near': 2,
          'two': 2,
          'stage': 2,
          'anderson': 2,
          'garbage': 2,
          'planet': 2,
          'best': 2,
          'interested': 1,
          'true': 1,
          'moviemaking': 1,
          'whats': 1,
          'mainstream': 1,
          'hollywood': 1,
          'vehicles': 1,
          'terrible': 1,
          'things': 1,
          'nas': 1,
          'rule': 1,
          'ignore': 1,
          'general': 1,
          'principles': 1,
          'cinema': 1,
          'media': 1,
          'rather': 1,
          'career': 1,
          'particular': 1,
          'nan': 1,
          'upandup': 1,
          'give': 1,
          'exposure': 1,
          'way': 1,
          'hand': 1,
          'paycheck': 1,
          'ngenerally': 1,
          'matter': 1,
          'latest': 1,
          'beleaguered': 1,
          'warner': 1,
          'brothers': 1,
          'exemplifies': 1,
          'picture': 1,
          'lacks': 1,
          'pizazz': 1,
          'vehicle': 1,
          'case': 1,
          'kurt': 1,
          'russell': 1,
          'otherwise': 1,
          'known': 1,
          'man': 1,
          'thirty': 1,
          'words': 1,
          'nrussell': 1,
          'plays': 1,
          'human': 1,
          'ways': 1,
          'waging': 1,
          'war': 1,
          'becoming': 1,
          'emotionally': 1,
          'distanced': 1,
          'carnage': 1,
          'wrought': 1,
          'lets': 1,
          'us': 1,
          'see': 1,
          'degenerate': 1,
          'process': 1,
          'real': 1,
          'starts': 1,
          'todds': 1,
          'later': 1,
          'nhes': 1,
          'new': 1,
          'breed': 1,
          'soldiers': 1,
          'ones': 1,
          'genetically': 1,
          'selected': 1,
          'pride': 1,
          '607': 1,
          'jason': 1,
          'scott': 1,
          'lee': 1,
          'know': 1,
          'hes': 1,
          'staring': 1,
          'contest': 1,
          'hero': 1,
          'movies': 1,
          'start': 1,
          'nbetween': 1,
          'leads': 1,
          'full': 1,
          'typed': 1,
          'page': 1,
          'dialogue': 1,
          'spoken': 1,
          'possible': 1,
          'imagine': 1,
          'script': 1,
          'ninety': 1,
          'percent': 1,
          'direction': 1,
          'ndirector': 1,
          'paul': 1,
          'helmed': 1,
          'last': 1,
          'icy': 1,
          'thriller': 1,
          'event': 1,
          'horizon': 1,
          'inventiveness': 1,
          'content': 1,
          'let': 1,
          'actions': 1,
          'play': 1,
          'screen': 1,
          'ad': 1,
          'nauseam': 1,
          'ntodd': 1,
          'upon': 1,
          'die': 1,
          'order': 1,
          'stretch': 1,
          'running': 1,
          'villains': 1,
          'return': 1,
          'routine': 1,
          'patrol': 1,
          'set': 1,
          'final': 1,
          'firefight': 1,
          'nevents': 1,
          'predictable': 1,
          'setups': 1,
          'neither': 1,
          'scriptwriter': 1,
          'david': 1,
          'peoples': 1,
          'attempts': 1,
          'creativeness': 1,
          'annoying': 1,
          'facet': 1,
          'reason': 1,
          'whole': 1,
          'comes': 1,
          'fails': 1,
          'physical': 1,
          'superiority': 1,
          'fact': 1,
          'even': 1,
          'companions': 1,
          'baddie': 1,
          'end': 1,
          'shows': 1,
          'remarkable': 1,
          'prowess': 1,
          'automatic': 1,
          'weaponry': 1,
          'nits': 1,
          'undergoes': 1,
          'significant': 1,
          'character': 1,
          'changes': 1,
          'throughout': 1,
          'story': 1,
          'canned': 1,
          'feeling': 1,
          'route': 1,
          'disaster': 1,
          'take': 1,
          'lighthearted': 1,
          'treat': 1,
          'parody': 1,
          'typical': 1,
          'action': 1,
          'fare': 1,
          'like': 1,
          'universal': 1,
          'na': 1,
          'strict': 1,
          'interpretation': 1,
          'however': 1,
          'reveals': 1,
          'unmistakeable': 1,
          'unforgiveable': 1,
          'lack': 1,
          'style': 1,
          'substance': 1,
          'next': 1,
          'year': 1,
          'large': 1,
          'percentage': 1,
          'people': 1,
          'seen': 1,
          'taped': 1,
          'network': 1,
          'television': 1,
          'nneg': 1}),
 Counter({'sam': 5,
          'nmax': 4,
          'fool': 3,
          'nthe': 3,
          'jay': 3,
          'director': 2,
          'comedy': 2,
          'two': 2,
          'would': 2,
          'intelligence': 2,
          'script': 2,
          'actors': 2,
          'n': 2,
          'max': 2,
          'get': 2,
          'short': 2,
          'makes': 2,
          'test': 2,
          'njay': 2,
          'supposed': 2,
          'sleep': 2,
          'becomes': 2,
          'films': 2,
          'funny': 2,
          'nkissing': 2,
          'doug': 1,
          'ellins': 1,
          'kissing': 1,
          'released': 1,
          'earlier': 1,
          'year': 1,
          'aptly': 1,
          'titled': 1,
          'plastic': 1,
          'couples': 1,
          'housed': 1,
          'artificial': 1,
          'story': 1,
          'nlike': 1,
          'sitcom': 1,
          'jokes': 1,
          'lame': 1,
          'impossible': 1,
          'overlay': 1,
          'laugh': 1,
          'track': 1,
          'movie': 1,
          'meanders': 1,
          'along': 1,
          'insulting': 1,
          'viewers': 1,
          'almost': 1,
          'every': 1,
          'frame': 1,
          'james': 1,
          'frey': 1,
          'filled': 1,
          'vapid': 1,
          'read': 1,
          'meaningless': 1,
          'lines': 1,
          'youve': 1,
          'heard': 1,
          'im': 1,
          'wearing': 1,
          'underwear': 1,
          'bimbo': 1,
          'tells': 1,
          'famous': 1,
          'sportscaster': 1,
          'assumes': 1,
          'surefire': 1,
          'comeon': 1,
          'line': 1,
          'chicagos': 1,
          'biggest': 1,
          'playboy': 1,
          'decides': 1,
          'married': 1,
          'whirlwind': 1,
          'love': 1,
          'affair': 1,
          'samantha': 1,
          'possess': 1,
          'irritating': 1,
          'personalities': 1,
          'hold': 1,
          'little': 1,
          'chemistry': 1,
          'audience': 1,
          'played': 1,
          'without': 1,
          'style': 1,
          'david': 1,
          'schwimmer': 1,
          'nschwimmer': 1,
          'whose': 1,
          'acting': 1,
          'talent': 1,
          'playing': 1,
          'characters': 1,
          'devoid': 1,
          'personality': 1,
          'unlikely': 1,
          'lover': 1,
          'nhis': 1,
          'costar': 1,
          'mili': 1,
          'avital': 1,
          'cut': 1,
          'cloth': 1,
          'argued': 1,
          'matched': 1,
          'pair': 1,
          'nafter': 1,
          'people': 1,
          'naturally': 1,
          'drawn': 1,
          'ditto': 1,
          'similar': 1,
          'looks': 1,
          'shouldnt': 1,
          'personalitychallenged': 1,
          'attracted': 1,
          'implausible': 1,
          'plot': 1,
          'asking': 1,
          'best': 1,
          'friend': 1,
          'jason': 1,
          'lee': 1,
          'hit': 1,
          'try': 1,
          'stop': 1,
          'actual': 1,
          'act': 1,
          'promiscuous': 1,
          'nature': 1,
          'worries': 1,
          'future': 1,
          'bride': 1,
          'may': 1,
          'need': 1,
          'around': 1,
          'idea': 1,
          'flirting': 1,
          'beautiful': 1,
          'sick': 1,
          'unable': 1,
          'eat': 1,
          'work': 1,
          'nneither': 1,
          'make': 1,
          'believable': 1,
          '64': 1,
          '000': 1,
          'question': 1,
          'know': 1,
          'youre': 1,
          'wrong': 1,
          'person': 1,
          'avoid': 1,
          'wreaking': 1,
          'havoc': 1,
          'major': 1,
          'parts': 1,
          'life': 1,
          'asks': 1,
          'one': 1,
          'unsuccessful': 1,
          'attempts': 1,
          'adding': 1,
          'seriousness': 1,
          'film': 1,
          'nfinally': 1,
          'attempt': 1,
          'physical': 1,
          'njays': 1,
          'exgirlfriend': 1,
          'natasha': 1,
          'vanessa': 1,
          'angel': 1,
          'infatuated': 1,
          'thinks': 1,
          'going': 1,
          'someone': 1,
          'else': 1,
          'nnatasha': 1,
          'rips': 1,
          'jays': 1,
          'shirt': 1,
          'open': 1,
          'pushing': 1,
          'onto': 1,
          'sofa': 1,
          'nas': 1,
          'throws': 1,
          'hair': 1,
          'bare': 1,
          'chest': 1,
          'demands': 1,
          'pull': 1,
          'nthis': 1,
          'nmost': 1,
          'saving': 1,
          'grace': 1,
          'nsome': 1,
          'bit': 1,
          'part': 1,
          'done': 1,
          'especially': 1,
          'well': 1,
          'scene': 1,
          'managed': 1,
          'even': 1,
          'rest': 1,
          'picture': 1,
          'wasnt': 1,
          'hand': 1,
          'nothing': 1,
          'recommend': 1,
          'runs': 1,
          '1': 1,
          '45': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'profanity': 1,
          'sexuality': 1,
          'acceptable': 1,
          'teenagers': 1,
          'nneg': 1}),
 Counter({'wild': 6,
          'west': 6,
          'nthe': 6,
          'film': 6,
          'one': 5,
          'gordon': 4,
          'isnt': 4,
          'like': 3,
          'well': 3,
          'fault': 3,
          'comedy': 3,
          'pretty': 3,
          'much': 3,
          'confederate': 3,
          'mcgrath': 3,
          'nas': 3,
          'good': 3,
          'would': 2,
          'script': 2,
          'lot': 2,
          'beautifully': 2,
          'movie': 2,
          'jokes': 2,
          'still': 2,
          'boring': 2,
          'smith': 2,
          'nwest': 2,
          'kline': 2,
          'leads': 2,
          'funny': 2,
          'disgruntled': 2,
          'former': 2,
          'loveless': 2,
          'use': 2,
          'point': 2,
          'unfunny': 2,
          'ni': 2,
          'consider': 2,
          'bye': 2,
          'nhe': 2,
          'look': 2,
          'anything': 2,
          'made': 2,
          'continually': 1,
          'amazed': 1,
          'movies': 1,
          'nthat': 1,
          'producer': 1,
          'waste': 1,
          'abundance': 1,
          'talent': 1,
          'money': 1,
          'abysmal': 1,
          'mindboggeling': 1,
          'seems': 1,
          'happen': 1,
          'nowadays': 1,
          'n': 1,
          'filmed': 1,
          'acted': 1,
          'directed': 1,
          'piece': 1,
          'garbage': 1,
          'insipid': 1,
          'screenplay': 1,
          'completely': 1,
          'nin': 1,
          'short': 1,
          'without': 1,
          'laughs': 1,
          'nso': 1,
          'many': 1,
          'fall': 1,
          'flat': 1,
          'borderlines': 1,
          'surreal': 1,
          'high': 1,
          'production': 1,
          'values': 1,
          'keep': 1,
          'total': 1,
          'fiasco': 1,
          'nwill': 1,
          'stars': 1,
          'jim': 1,
          'old': 1,
          'western': 1,
          'rb': 1,
          'variation': 1,
          'james': 1,
          'bond': 1,
          'character': 1,
          'teamed': 1,
          'artemus': 1,
          'kevin': 1,
          'theyre': 1,
          'polar': 1,
          'oppisites': 1,
          'prefers': 1,
          'solve': 1,
          'problems': 1,
          'array': 1,
          'bullets': 1,
          'traditionally': 1,
          'favors': 1,
          'pacifistic': 1,
          'approach': 1,
          'ntalk': 1,
          'deeply': 1,
          'developed': 1,
          'characters': 1,
          'nat': 1,
          'rate': 1,
          'inevitable': 1,
          'conflicts': 1,
          'methodologies': 1,
          'none': 1,
          'year': 1,
          '1869': 1,
          'nseveral': 1,
          'top': 1,
          'scientists': 1,
          'abducted': 1,
          'suspected': 1,
          'culprit': 1,
          'general': 1,
          'bloodbath': 1,
          'ted': 1,
          'levine': 1,
          'npresident': 1,
          'grant': 1,
          'sends': 1,
          'investigate': 1,
          'ntheres': 1,
          'evidence': 1,
          'attending': 1,
          'sort': 1,
          'reunion': 1,
          'louisiana': 1,
          'show': 1,
          'learn': 1,
          'actually': 1,
          'working': 1,
          'dr': 1,
          'arliss': 1,
          'kenneth': 1,
          'branagh': 1,
          'another': 1,
          'turns': 1,
          'plans': 1,
          'combined': 1,
          'knowledge': 1,
          'scientests': 1,
          'create': 1,
          'ultimate': 1,
          'super': 1,
          'weapon': 1,
          'conquer': 1,
          'united': 1,
          'states': 1,
          'nid': 1,
          'go': 1,
          'plot': 1,
          'nthis': 1,
          'films': 1,
          'narrative': 1,
          'little': 1,
          'jumbled': 1,
          'mess': 1,
          'laughed': 1,
          'couple': 1,
          'lightly': 1,
          'nthere': 1,
          'truly': 1,
          'uprorously': 1,
          'moment': 1,
          'thats': 1,
          'disasterous': 1,
          'primarily': 1,
          'said': 1,
          'totally': 1,
          'nwhen': 1,
          'respective': 1,
          'roles': 1,
          'kevil': 1,
          'could': 1,
          'possibly': 1,
          'done': 1,
          'couldve': 1,
          'played': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'robert': 1,
          'de': 1,
          'niro': 1,
          'wouldve': 1,
          'awful': 1,
          'nno': 1,
          'mean': 1,
          'make': 1,
          'line': 1,
          'mr': 1,
          'knife': 1,
          'guy': 1,
          'nsound': 1,
          'nstill': 1,
          'going': 1,
          'visually': 1,
          'set': 1,
          'design': 1,
          'fantastic': 1,
          'maybe': 1,
          'even': 1,
          'oscar': 1,
          'worthy': 1,
          'cinematogrophy': 1,
          'michael': 1,
          'ballhaus': 1,
          'also': 1,
          'behind': 1,
          'camera': 1,
          'martin': 1,
          'scorseses': 1,
          'brilliant': 1,
          'goodfellas': 1,
          'absolutely': 1,
          'stunning': 1,
          'lends': 1,
          'needed': 1,
          'exciting': 1,
          'comic': 1,
          'bookish': 1,
          'wont': 1,
          'barry': 1,
          'sonnenfeld': 1,
          'either': 1,
          'fine': 1,
          'job': 1,
          'directing': 1,
          'proceedings': 1,
          'rest': 1,
          'people': 1,
          'involved': 1,
          'really': 1,
          'correct': 1,
          'major': 1,
          'flaw': 1,
          'ndespite': 1,
          'becomes': 1,
          'quite': 1,
          'halfway': 1,
          'appeal': 1,
          'visuals': 1,
          'ends': 1,
          'long': 1,
          'nif': 1,
          'didnt': 1,
          'almost': 1,
          'insufferable': 1,
          'somewhat': 1,
          'tolerable': 1,
          'entertaining': 1,
          'nit': 1,
          'hurts': 1,
          'give': 1,
          'score': 1,
          'low': 1,
          'worse': 1,
          'nneg': 1}),
 Counter({'dave': 3,
          'wife': 2,
          'annie': 2,
          'thats': 2,
          'nthe': 2,
          'heavens': 2,
          'prisoners': 2,
          'like': 2,
          'talky': 1,
          'terriblyplotted': 1,
          'thriller': 1,
          'stars': 1,
          'alec': 1,
          'baldwin': 1,
          'robicheaux': 1,
          'exnew': 1,
          'orleans': 1,
          'cop': 1,
          'gets': 1,
          'ensnared': 1,
          'murder': 1,
          'mystery': 1,
          'lightplane': 1,
          'crashes': 1,
          'bayou': 1,
          'beside': 1,
          'fishing': 1,
          'boat': 1,
          'nhe': 1,
          'kelly': 1,
          'lynch': 1,
          'rescue': 1,
          'little': 1,
          'salvadorian': 1,
          'girl': 1,
          'samantha': 1,
          'lagpacan': 1,
          'wreckage': 1,
          'trouble': 1,
          'begins': 1,
          'major': 1,
          'players': 1,
          'include': 1,
          'local': 1,
          'drug': 1,
          'lord': 1,
          'eric': 1,
          'roberts': 1,
          'scheming': 1,
          'teri': 1,
          'hatcher': 1,
          'soused': 1,
          'stripper': 1,
          'mary': 1,
          'stuart': 1,
          'masterson': 1,
          'shady': 1,
          'dea': 1,
          'agent': 1,
          'vondie': 1,
          'curtis': 1,
          'hall': 1,
          'neveryone': 1,
          'knows': 1,
          'everyone': 1,
          'else': 1,
          'makes': 1,
          'collective': 1,
          'curious': 1,
          'never': 1,
          'compelling': 1,
          'nbased': 1,
          'book': 1,
          'james': 1,
          'lee': 1,
          'burke': 1,
          'badly': 1,
          'plotted': 1,
          'entire': 1,
          'scenes': 1,
          'seem': 1,
          'missing': 1,
          'nearly': 1,
          'idea': 1,
          'keep': 1,
          'child': 1,
          'nnor': 1,
          'eluded': 1,
          'coast': 1,
          'guard': 1,
          'faa': 1,
          'nlater': 1,
          'reunited': 1,
          'drugabuser': 1,
          'appears': 1,
          'seemingly': 1,
          'clean': 1,
          'sober': 1,
          'without': 1,
          'explanation': 1,
          'nhuh': 1,
          'whole': 1,
          'movie': 1,
          'perhaps': 1,
          'result': 1,
          'unkind': 1,
          'cuts': 1,
          'happened': 1,
          'eighteen': 1,
          'months': 1,
          'film': 1,
          'sat': 1,
          'shelf': 1,
          'nwhatever': 1,
          'reason': 1,
          'somebody': 1,
          'tell': 1,
          'director': 1,
          'phil': 1,
          'joanou': 1,
          'final': 1,
          'analysis': 1,
          'recut': 1,
          'mess': 1,
          'nin': 1,
          'present': 1,
          'form': 1,
          'runs': 1,
          'two': 1,
          'hours': 1,
          'plus': 1,
          'change': 1,
          'feels': 1,
          'four': 1,
          'nneg': 1}),
 Counter({'kelley': 8,
          'film': 7,
          'town': 5,
          'sam': 5,
          'jasper': 4,
          'people': 4,
          'time': 4,
          'earth': 4,
          'nhe': 3,
          'simply': 3,
          'diner': 3,
          'destroyed': 3,
          'nkelley': 3,
          'sobieski': 3,
          '1': 3,
          'around': 3,
          'nbut': 3,
          'especially': 3,
          'even': 3,
          'nhere': 3,
          'comes': 3,
          'dvd': 3,
          'fox': 3,
          'rich': 2,
          'klein': 2,
          'new': 2,
          'graduation': 2,
          'hes': 2,
          'theyre': 2,
          'station': 2,
          'familys': 2,
          'leelee': 2,
          'soon': 2,
          'takes': 2,
          'feelings': 2,
          'love': 2,
          'speech': 2,
          'caused': 2,
          'destruction': 2,
          'property': 2,
          'nearly': 2,
          'killed': 2,
          'dozens': 2,
          'poem': 2,
          'favorite': 2,
          'well': 2,
          'waste': 2,
          'see': 2,
          'continues': 2,
          'shows': 2,
          'boston': 2,
          'njasper': 2,
          'wrong': 2,
          'completely': 2,
          'two': 2,
          'characters': 2,
          'infuriating': 2,
          'way': 2,
          'actions': 2,
          'one': 2,
          'films': 2,
          'things': 2,
          'nwho': 2,
          'good': 2,
          'entertainment': 2,
          'nit': 2,
          'original': 2,
          'theatrical': 2,
          'releases': 2,
          'enjoy': 2,
          'spoiled': 1,
          'kid': 1,
          'morse': 1,
          'chris': 1,
          'receives': 1,
          'mercedes': 1,
          'present': 1,
          'buddies': 1,
          'take': 1,
          'joyride': 1,
          'small': 1,
          'nearby': 1,
          'proceeds': 1,
          'torment': 1,
          'locals': 1,
          'ends': 1,
          'provoking': 1,
          'josh': 1,
          'hartnett': 1,
          'race': 1,
          'result': 1,
          'local': 1,
          'gas': 1,
          'crash': 1,
          'sentenced': 1,
          'rebuild': 1,
          'live': 1,
          'spare': 1,
          'room': 1,
          'barn': 1,
          'njaspers': 1,
          'girlfriend': 1,
          'liking': 1,
          'however': 1,
          'despite': 1,
          'fact': 1,
          'b': 1,
          'sit': 1,
          'sulk': 1,
          'smart': 1,
          'townspeople': 1,
          'sees': 1,
          'sweaty': 1,
          'shirtless': 1,
          'thats': 1,
          'apparently': 1,
          'needs': 1,
          'lose': 1,
          'whose': 1,
          'fault': 1,
          'seems': 1,
          'perpetual': 1,
          'case': 1,
          'hat': 1,
          'hair': 1,
          'nso': 1,
          'falls': 1,
          'day': 1,
          'follows': 1,
          'woods': 1,
          'hears': 1,
          'giving': 1,
          'unable': 1,
          'deliver': 1,
          'nin': 1,
          'quotes': 1,
          'robert': 1,
          'frost': 1,
          'happens': 1,
          'sams': 1,
          'nawwwww': 1,
          'nsoon': 1,
          'frolicking': 1,
          'fields': 1,
          'reason': 1,
          'letting': 1,
          'jaspers': 1,
          'best': 1,
          'friend': 1,
          'together': 1,
          'make': 1,
          'ass': 1,
          'dance': 1,
          'drunk': 1,
          'steaming': 1,
          'went': 1,
          'runs': 1,
          'decides': 1,
          'leave': 1,
          'nsam': 1,
          'catches': 1,
          'bus': 1,
          'asks': 1,
          'come': 1,
          'tearfully': 1,
          'confesses': 1,
          'much': 1,
          'loves': 1,
          'without': 1,
          'breaking': 1,
          'stride': 1,
          'basically': 1,
          'says': 1,
          'ya': 1,
          'nand': 1,
          'goes': 1,
          'many': 1,
          'directions': 1,
          'start': 1,
          'fairly': 1,
          'decent': 1,
          'ending': 1,
          'worthless': 1,
          'nchris': 1,
          'current': 1,
          'young': 1,
          'performers': 1,
          'presence': 1,
          'watched': 1,
          'first': 1,
          'place': 1,
          'nhowever': 1,
          'long': 1,
          'proceedings': 1,
          'wanted': 1,
          'reach': 1,
          'strangle': 1,
          'ni': 1,
          'shouldnt': 1,
          'towards': 1,
          'like': 1,
          'nwell': 1,
          'trust': 1,
          'youll': 1,
          'feel': 1,
          'neven': 1,
          'though': 1,
          'lead': 1,
          'male': 1,
          'usually': 1,
          'hands': 1,
          'unlikable': 1,
          'jerkish': 1,
          'calculated': 1,
          'intends': 1,
          'jackass': 1,
          'every': 1,
          'hand': 1,
          'reacts': 1,
          'kelleys': 1,
          'provocations': 1,
          'afterwards': 1,
          'across': 1,
          'truly': 1,
          'sorry': 1,
          'impulsive': 1,
          'life': 1,
          'nice': 1,
          'guys': 1,
          'finish': 1,
          'last': 1,
          'nfor': 1,
          'entire': 1,
          'watch': 1,
          'fall': 1,
          'guy': 1,
          'likes': 1,
          'sympathetic': 1,
          'character': 1,
          'gets': 1,
          'crushed': 1,
          'nthen': 1,
          'cancer': 1,
          'subplot': 1,
          'play': 1,
          'get': 1,
          'imagine': 1,
          'nwhat': 1,
          'werent': 1,
          'depressing': 1,
          'enough': 1,
          'mr': 1,
          'screenwriter': 1,
          'greenlit': 1,
          'project': 1,
          'thought': 1,
          'would': 1,
          'entertain': 1,
          'anyone': 1,
          'nperhaps': 1,
          'structured': 1,
          'perhaps': 1,
          'felt': 1,
          'remorse': 1,
          'peoples': 1,
          'lives': 1,
          'snob': 1,
          'ruins': 1,
          'measure': 1,
          'available': 1,
          'home': 1,
          'contains': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'enhanced': 1,
          '16x9': 1,
          'televisions': 1,
          'nextras': 1,
          'include': 1,
          'jessica': 1,
          'simpsons': 1,
          'music': 1,
          'video': 1,
          'commercial': 1,
          'soundtrack': 1,
          'thing': 1,
          'trailer': 1,
          'five': 1,
          'tv': 1,
          'spots': 1,
          'trailers': 1,
          'anna': 1,
          'king': 1,
          'anywhere': 1,
          'beach': 1,
          'drive': 1,
          'crazy': 1,
          'ever': 1,
          'romeo': 1,
          'juliet': 1,
          'irresistible': 1,
          'promo': 1,
          'touting': 1,
          'upcoming': 1,
          'really': 1,
          'nthe': 1,
          'picture': 1,
          'sound': 1,
          'quality': 1,
          'disc': 1,
          'fine': 1,
          'nnothing': 1,
          'challenge': 1,
          'anyones': 1,
          'audiovideo': 1,
          'systems': 1,
          'course': 1,
          'nfans': 1,
          'movie': 1,
          'exist': 1,
          'release': 1,
          'entertaining': 1,
          'compelling': 1,
          'nno': 1,
          'joy': 1,
          'value': 1,
          'derived': 1,
          'events': 1,
          'merely': 1,
          'money': 1,
          'talent': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'nbrooding': 5,
          'hurricane': 4,
          'courtroom': 4,
          'lesra': 4,
          'oscar': 3,
          'nits': 3,
          'three': 3,
          'dont': 3,
          'innocence': 3,
          'formula': 3,
          'movies': 2,
          'theyre': 2,
          'along': 2,
          'nthus': 2,
          'sometimes': 2,
          'become': 2,
          'even': 2,
          'year': 2,
          'received': 2,
          'fun': 2,
          'thats': 2,
          'ok': 2,
          'rubin': 2,
          'carter': 2,
          'african': 2,
          'american': 2,
          'convicted': 2,
          'ever': 2,
          'since': 2,
          'white': 2,
          'man': 2,
          'life': 2,
          'prison': 2,
          'nto': 2,
          'nlesra': 2,
          'canadian': 2,
          'people': 2,
          'go': 2,
          'book': 2,
          'first': 2,
          'rubins': 2,
          'schreibers': 2,
          'character': 2,
          'pick': 2,
          'investigation': 2,
          'though': 2,
          'two': 2,
          'old': 2,
          'course': 2,
          'hurricanes': 2,
          'either': 2,
          'nall': 2,
          'getting': 2,
          'would': 2,
          'except': 2,
          'every': 2,
          'melodrama': 2,
          'nthe': 2,
          'final': 2,
          'nyou': 2,
          'nbut': 2,
          'brooding': 2,
          'ni': 2,
          'wanted': 2,
          'boring': 2,
          'jewison': 2,
          'come': 2,
          'make': 2,
          'real': 2,
          'prerelease': 1,
          'buzz': 1,
          'insistent': 1,
          'high': 1,
          'potential': 1,
          'finally': 1,
          'released': 1,
          'everyone': 1,
          'goes': 1,
          'films': 1,
          'unworthy': 1,
          'award': 1,
          'sans': 1,
          'razzie': 1,
          'hopefuls': 1,
          'score': 1,
          'nominations': 1,
          'nlast': 1,
          'thin': 1,
          'red': 1,
          'line': 1,
          'nthis': 1,
          'years': 1,
          'winner': 1,
          'pure': 1,
          'unadulterated': 1,
          'tripe': 1,
          'sudden': 1,
          'critical': 1,
          'plaudits': 1,
          'votes': 1,
          'office': 1,
          'pool': 1,
          'nacclaimed': 1,
          'director': 1,
          'norman': 1,
          'jewisons': 1,
          'biopic': 1,
          'retreads': 1,
          'conventions': 1,
          'without': 1,
          'nand': 1,
          'supposed': 1,
          'see': 1,
          'true': 1,
          'story': 1,
          'denzel': 1,
          'washington': 1,
          'legendary': 1,
          'prizefighted': 1,
          'unjustly': 1,
          'triple': 1,
          'homicide': 1,
          'help': 1,
          'ghastly': 1,
          'racist': 1,
          'ndetective': 1,
          'dan': 1,
          'hedaya': 1,
          'whos': 1,
          'bigshot': 1,
          'arrested': 1,
          'stabbing': 1,
          'knife': 1,
          'selfdefense': 1,
          'cares': 1,
          'right': 1,
          'nwhen': 1,
          'ten': 1,
          'nhe': 1,
          'serve': 1,
          'sentences': 1,
          'possibility': 1,
          'parole': 1,
          'nmost': 1,
          'film': 1,
          'takes': 1,
          'place': 1,
          '15th': 1,
          'rescue': 1,
          'martin': 1,
          'vicellous': 1,
          'reon': 1,
          'shannon': 1,
          'team': 1,
          'wannabe': 1,
          'detectives': 1,
          'teenager': 1,
          'taken': 1,
          'welloff': 1,
          'hanna': 1,
          'unger': 1,
          'schreiber': 1,
          'get': 1,
          'education': 1,
          'buddies': 1,
          'sale': 1,
          'picks': 1,
          'sixteenth': 1,
          'round': 1,
          'autobiography': 1,
          'nimmediately': 1,
          'thereafter': 1,
          'tells': 1,
          'books': 1,
          'read': 1,
          'us': 1,
          'nhmmm': 1,
          'nafter': 1,
          'visits': 1,
          'convinced': 1,
          'launch': 1,
          'fullscale': 1,
          'juries': 1,
          'nthey': 1,
          'meticulously': 1,
          'files': 1,
          'revisit': 1,
          'witnesses': 1,
          'wonder': 1,
          'might': 1,
          'cranky': 1,
          'women': 1,
          'slam': 1,
          'door': 1,
          'faces': 1,
          'relentlessy': 1,
          'tedious': 1,
          'sleuthing': 1,
          'uncover': 1,
          'obvious': 1,
          'evidence': 1,
          'confirming': 1,
          'ignored': 1,
          'never': 1,
          'seeked': 1,
          'proceedings': 1,
          'nof': 1,
          'already': 1,
          'told': 1,
          'hes': 1,
          'innocent': 1,
          'na': 1,
          'like': 1,
          'especially': 1,
          'frustrating': 1,
          'shown': 1,
          'everything': 1,
          'significant': 1,
          'happened': 1,
          'period': 1,
          'obviously': 1,
          'hollywood': 1,
          'watered': 1,
          'version': 1,
          'nthat': 1,
          'parts': 1,
          'milked': 1,
          'single': 1,
          'drop': 1,
          'filmmakers': 1,
          'could': 1,
          'possibly': 1,
          'squeeze': 1,
          'almost': 1,
          'cruel': 1,
          'isnt': 1,
          'entertaining': 1,
          'kind': 1,
          'hokey': 1,
          'rammeddownyourthroat': 1,
          'variety': 1,
          'emotion': 1,
          'exaggerated': 1,
          'point': 1,
          'absurdity': 1,
          'nwitness': 1,
          'villain': 1,
          'ferociously': 1,
          'grinding': 1,
          'teeth': 1,
          'trial': 1,
          'constant': 1,
          'pseudosaintliness': 1,
          'four': 1,
          'protagonists': 1,
          'basic': 1,
          'nofrills': 1,
          'stripped': 1,
          'bare': 1,
          'necessities': 1,
          'wrongly': 1,
          'accused': 1,
          'black': 1,
          'melodramatic': 1,
          'scene': 1,
          'theres': 1,
          'nothing': 1,
          'else': 1,
          'nyoud': 1,
          'expect': 1,
          'sort': 1,
          'involving': 1,
          'necessary': 1,
          'implicitly': 1,
          'informed': 1,
          'whole': 1,
          'middle': 1,
          'portion': 1,
          'reduced': 1,
          'protagonist': 1,
          'inmates': 1,
          'lesras': 1,
          'friends': 1,
          'letters': 1,
          'think': 1,
          'ill': 1,
          'look': 1,
          'way': 1,
          'nit': 1,
          'wasnt': 1,
          'long': 1,
          'got': 1,
          'tired': 1,
          'hearing': 1,
          'exceedingly': 1,
          'deep': 1,
          'meditations': 1,
          'condition': 1,
          'something': 1,
          'happen': 1,
          'nas': 1,
          'washingtons': 1,
          'performance': 1,
          'title': 1,
          'role': 1,
          'figured': 1,
          'id': 1,
          'address': 1,
          'sooner': 1,
          'later': 1,
          'considering': 1,
          'amount': 1,
          'attention': 1,
          'top': 1,
          'notch': 1,
          'still': 1,
          'nhow': 1,
          'possible': 1,
          'nwell': 1,
          'perfectly': 1,
          'nunfortunately': 1,
          'asked': 1,
          'load': 1,
          'crap': 1,
          'nwhat': 1,
          'waste': 1,
          'great': 1,
          'performer': 1,
          'nspeaking': 1,
          'wastes': 1,
          'hell': 1,
          'john': 1,
          'hannah': 1,
          'agree': 1,
          'nhes': 1,
          'extremely': 1,
          'talented': 1,
          'actor': 1,
          'love': 1,
          'dearly': 1,
          'call': 1,
          'ungers': 1,
          'stick': 1,
          'figure': 1,
          'gross': 1,
          'understatement': 1,
          'veritable': 1,
          'mother': 1,
          'theresas': 1,
          'benevolent': 1,
          'dogooders': 1,
          'nif': 1,
          'play': 1,
          'major': 1,
          'part': 1,
          'feelings': 1,
          'emotions': 1,
          'nlook': 1,
          'youre': 1,
          'going': 1,
          'undermine': 1,
          'ncourtroom': 1,
          'dramas': 1,
          'ridiculous': 1,
          'nnot': 1,
          'trite': 1,
          'nneg': 1}),
 Counter({'jim': 10,
          'basketball': 7,
          'film': 5,
          'kalvert': 5,
          'diaries': 5,
          'one': 4,
          'much': 4,
          'music': 3,
          'story': 3,
          'carroll': 3,
          'character': 3,
          'unsympathetic': 3,
          'like': 3,
          'please': 2,
          'nyour': 2,
          'editing': 2,
          'makes': 2,
          'featuring': 2,
          'care': 2,
          'scott': 2,
          'loud': 2,
          'performance': 2,
          'leonardo': 2,
          'dicaprio': 2,
          'ndicaprio': 2,
          'nas': 2,
          'school': 2,
          'star': 2,
          'mickey': 2,
          'pedro': 2,
          'kicked': 2,
          'mother': 2,
          'becomes': 2,
          'fix': 2,
          'lower': 2,
          'around': 2,
          'intended': 2,
          'long': 2,
          'crowd': 2,
          'every': 2,
          'dramatic': 2,
          'camera': 2,
          'trying': 2,
          'effective': 2,
          'dicaprios': 2,
          'fine': 2,
          'feature': 1,
          'directors': 1,
          'cut': 1,
          'teeth': 1,
          'videos': 1,
          'raise': 1,
          'hands': 1,
          'nthank': 1,
          'identifying': 1,
          'would': 1,
          'go': 1,
          'away': 1,
          'influence': 1,
          'rank': 1,
          'annoying': 1,
          'trends': 1,
          'filmmaking': 1,
          'last': 1,
          'decade': 1,
          'shows': 1,
          'sign': 1,
          'abating': 1,
          'time': 1,
          'soon': 1,
          'nit': 1,
          'isnt': 1,
          'strobe': 1,
          'light': 1,
          'quality': 1,
          'twentycutsperminute': 1,
          'numbing': 1,
          'overuse': 1,
          'popular': 1,
          'artists': 1,
          'soundtracks': 1,
          'suspicious': 1,
          'advertised': 1,
          'kind': 1,
          'cynicism': 1,
          'perfected': 1,
          'banking': 1,
          'idea': 1,
          'lack': 1,
          'include': 1,
          'enough': 1,
          'bells': 1,
          'whistles': 1,
          'nwelcome': 1,
          'club': 1,
          'adaptation': 1,
          'onedimensional': 1,
          'serving': 1,
          'vehicle': 1,
          'better': 1,
          'pieces': 1,
          'whole': 1,
          'stars': 1,
          'new': 1,
          'york': 1,
          'poetsongwriter': 1,
          'performer': 1,
          'whose': 1,
          'autobiographical': 1,
          'writings': 1,
          'based': 1,
          'opens': 1,
          'budding': 1,
          'high': 1,
          'given': 1,
          'petty': 1,
          'thievery': 1,
          'getting': 1,
          'drunk': 1,
          'buddies': 1,
          'mark': 1,
          'wahlberg': 1,
          'james': 1,
          'madio': 1,
          'neutron': 1,
          'patrick': 1,
          'mcgaw': 1,
          'none': 1,
          'night': 1,
          'graduates': 1,
          'inhalants': 1,
          'cocaine': 1,
          'shortly': 1,
          'thereafter': 1,
          'heroin': 1,
          'njims': 1,
          'addiction': 1,
          'drug': 1,
          'starts': 1,
          'downhill': 1,
          'spiral': 1,
          'team': 1,
          'coach': 1,
          'bruno': 1,
          'kirby': 1,
          'home': 1,
          'lorraine': 1,
          'bracco': 1,
          'drops': 1,
          'nalong': 1,
          'victim': 1,
          'street': 1,
          'living': 1,
          'sinking': 1,
          'nthe': 1,
          'bouncing': 1,
          'project': 1,
          'years': 1,
          'sticking': 1,
          'point': 1,
          'always': 1,
          'loner': 1,
          'nscreenwriter': 1,
          'bryan': 1,
          'goluboff': 1,
          'created': 1,
          'three': 1,
          'characters': 1,
          'act': 1,
          'carrolls': 1,
          'posse': 1,
          'resulting': 1,
          'equally': 1,
          'friends': 1,
          'may': 1,
          'primarily': 1,
          'cautionary': 1,
          'tale': 1,
          '100': 1,
          'minute': 1,
          'say': 1,
          'public': 1,
          'service': 1,
          'announcement': 1,
          'drama': 1,
          'monumentally': 1,
          'ineffective': 1,
          'impossible': 1,
          'anyone': 1,
          'movie': 1,
          'njim': 1,
          'sort': 1,
          'jerk': 1,
          'even': 1,
          'junkie': 1,
          'suppose': 1,
          'pseudosensitive': 1,
          'poetry': 1,
          'devotion': 1,
          'terminally': 1,
          'ill': 1,
          'friend': 1,
          'balance': 1,
          'nperhaps': 1,
          'expected': 1,
          'see': 1,
          'good': 1,
          'kids': 1,
          'falls': 1,
          'wrong': 1,
          'parent': 1,
          'believes': 1,
          'troubled': 1,
          'child': 1,
          'saw': 1,
          'simply': 1,
          'part': 1,
          'bad': 1,
          'nwithout': 1,
          'changes': 1,
          'appreciable': 1,
          'way': 1,
          'rapidly': 1,
          'degenerates': 1,
          'collection': 1,
          'crimes': 1,
          'committed': 1,
          'strungout': 1,
          'cohorts': 1,
          'choreographed': 1,
          'oppressively': 1,
          'soundtrack': 1,
          'ndirector': 1,
          'doesnt': 1,
          'many': 1,
          'scenes': 1,
          'intrinsic': 1,
          'impact': 1,
          'work': 1,
          'substitutes': 1,
          'silly': 1,
          'slowmotion': 1,
          'photography': 1,
          'selfconsciously': 1,
          'funky': 1,
          'angles': 1,
          'choppy': 1,
          'non': 1,
          'occasion': 1,
          'steady': 1,
          'pan': 1,
          'room': 1,
          'detox': 1,
          'appear': 1,
          'walls': 1,
          'closing': 1,
          'gimmicks': 1,
          'nmostly': 1,
          'draw': 1,
          'attention': 1,
          'hollow': 1,
          'nthey': 1,
          'also': 1,
          'dont': 1,
          'allow': 1,
          'strong': 1,
          'could': 1,
          'nfor': 1,
          'impressive': 1,
          'moment': 1,
          'desperate': 1,
          'attempt': 1,
          'get': 1,
          'give': 1,
          'money': 1,
          'scene': 1,
          'pulls': 1,
          'focus': 1,
          'theatrics': 1,
          'playing': 1,
          'actors': 1,
          'particularly': 1,
          'sequence': 1,
          'ernie': 1,
          'hudson': 1,
          'exjunkie': 1,
          'tries': 1,
          'help': 1,
          'straighten': 1,
          'wont': 1,
          'let': 1,
          'interaction': 1,
          'define': 1,
          'nhe': 1,
          'wants': 1,
          'turn': 1,
          'rock': 1,
          'shooting': 1,
          'fashion': 1,
          'denying': 1,
          'opportunity': 1,
          'acting': 1,
          'nat': 1,
          'isolate': 1,
          'moments': 1,
          'showcase': 1,
          'talents': 1,
          'nfar': 1,
          'frequently': 1,
          'looks': 1,
          'imagine': 1,
          'form': 1,
          'velvet': 1,
          'underground': 1,
          'video': 1,
          'might': 1,
          'looked': 1,
          'nneg': 1}),
 Counter({'man': 9,
          'last': 5,
          'standing': 5,
          'name': 4,
          'one': 4,
          'smith': 4,
          'narration': 4,
          'prohibitionera': 3,
          'remake': 3,
          'two': 3,
          'nthe': 3,
          'another': 3,
          'way': 3,
          'film': 3,
          'story': 3,
          'hammett': 3,
          'willis': 3,
          'work': 3,
          'wonder': 3,
          'classic': 2,
          'yojimbo': 2,
          'fistful': 2,
          'dollars': 2,
          'c': 2,
          'original': 2,
          'counting': 2,
          'fact': 2,
          'much': 2,
          'recent': 2,
          'material': 2,
          'novel': 2,
          'nit': 2,
          'also': 2,
          'bruce': 2,
          'border': 2,
          'town': 2,
          'jericho': 2,
          'john': 2,
          'doyles': 2,
          'smiths': 2,
          'trying': 2,
          'stay': 2,
          'bosses': 2,
          'becomes': 2,
          'walken': 2,
          'brutal': 2,
          'big': 2,
          'hill': 2,
          'doesnt': 2,
          'characters': 2,
          'even': 2,
          'nwith': 2,
          'us': 2,
          'like': 2,
          'confidence': 2,
          'everyone': 2,
          'else': 2,
          'showdown': 2,
          'depending': 1,
          'degree': 1,
          'cinematic': 1,
          'acumen': 1,
          'either': 1,
          'akira': 1,
          'kurosawas': 1,
          '1961': 1,
          'b': 1,
          'sergio': 1,
          'leones': 1,
          '1964': 1,
          'action': 1,
          'drama': 1,
          'completely': 1,
          'storyline': 1,
          'nnew': 1,
          'line': 1,
          'certainly': 1,
          'far': 1,
          'potential': 1,
          'viewers': 1,
          'category': 1,
          'combined': 1,
          'remakes': 1,
          'diabolique': 1,
          'vanishing': 1,
          'counted': 1,
          'avoiding': 1,
          'comparisons': 1,
          'yet': 1,
          'looking': 1,
          'first': 1,
          'version': 1,
          'nods': 1,
          '_real_': 1,
          'source': 1,
          'dashiell': 1,
          '_red': 1,
          'harvest_': 1,
          'shows': 1,
          'kurosawa': 1,
          'leone': 1,
          'knew': 1,
          'better': 1,
          'nthis': 1,
          'time': 1,
          'around': 1,
          'played': 1,
          'fellow': 1,
          'shady': 1,
          'history': 1,
          'undefined': 1,
          'nature': 1,
          'rolls': 1,
          'texas': 1,
          'day': 1,
          'mexico': 1,
          'nby': 1,
          'appearances': 1,
          'well': 1,
          'becoming': 1,
          'ghost': 1,
          'remaining': 1,
          'inhabitants': 1,
          'generally': 1,
          'belonging': 1,
          'bootlegging': 1,
          'operations': 1,
          'fighting': 1,
          'control': 1,
          'liquor': 1,
          'coming': 1,
          'none': 1,
          'headed': 1,
          'irishman': 1,
          'named': 1,
          'doyle': 1,
          'david': 1,
          'patrick': 1,
          'kelly': 1,
          'run': 1,
          'chicagoconnected': 1,
          'italian': 1,
          'mobster': 1,
          'strozzi': 1,
          'ned': 1,
          'eisenberg': 1,
          'ncalling': 1,
          'decides': 1,
          'money': 1,
          'made': 1,
          'conflict': 1,
          'hires': 1,
          'enforcer': 1,
          'side': 1,
          'nbut': 1,
          'allegiance': 1,
          'uncertain': 1,
          'begins': 1,
          'play': 1,
          'sides': 1,
          'step': 1,
          'ahead': 1,
          'nviewers': 1,
          'familiar': 1,
          'previous': 1,
          'incarnations': 1,
          'find': 1,
          'virtually': 1,
          'nothing': 1,
          'radically': 1,
          'changed': 1,
          'plotting': 1,
          'standpoint': 1,
          'alone': 1,
          'make': 1,
          'somewhat': 1,
          'respectable': 1,
          'hollywood': 1,
          'remakescumbastardizations': 1,
          'nthere': 1,
          'happily': 1,
          'ineffectual': 1,
          'lawman': 1,
          'dern': 1,
          'unhappily': 1,
          'detained': 1,
          'object': 1,
          'affections': 1,
          'karina': 1,
          'lombard': 1,
          'barkeep': 1,
          'antiheros': 1,
          'friend': 1,
          'william': 1,
          'sanderson': 1,
          'suspicious': 1,
          'lieutenants': 1,
          'christopher': 1,
          'michael': 1,
          'imperioli': 1,
          'question': 1,
          'trust': 1,
          'beating': 1,
          'fire': 1,
          'ndirector': 1,
          'walter': 1,
          'gives': 1,
          'proceedings': 1,
          'usual': 1,
          'injection': 1,
          'steroids': 1,
          'including': 1,
          'pair': 1,
          'guns': 1,
          'ability': 1,
          'propel': 1,
          'assailant': 1,
          'backward': 1,
          'sufficient': 1,
          'thrust': 1,
          'achieve': 1,
          'escape': 1,
          'velocity': 1,
          'least': 1,
          'try': 1,
          'turn': 1,
          'slasher': 1,
          'buddy': 1,
          'picture': 1,
          'nwhat': 1,
          '_does_': 1,
          'nearly': 1,
          'mistake': 1,
          'provide': 1,
          'running': 1,
          'voiceover': 1,
          'rings': 1,
          'standard': 1,
          'hardboiled': 1,
          'style': 1,
          'pulp': 1,
          'detective': 1,
          'fiction': 1,
          'nyes': 1,
          'full': 1,
          'cliches': 1,
          'particularly': 1,
          'troubling': 1,
          'problem': 1,
          'succeeded': 1,
          'largely': 1,
          'inscrutability': 1,
          'lead': 1,
          'nthey': 1,
          'mystery': 1,
          'audience': 1,
          'motives': 1,
          'never': 1,
          'entirely': 1,
          'clear': 1,
          'acted': 1,
          'quality': 1,
          'contributed': 1,
          'almost': 1,
          'mythical': 1,
          'status': 1,
          'voice': 1,
          'chattering': 1,
          'background': 1,
          'allowing': 1,
          'every': 1,
          'thought': 1,
          'mundane': 1,
          'tough': 1,
          'guy': 1,
          'alive': 1,
          'feels': 1,
          'right': 1,
          'plead': 1,
          'faithfulness': 1,
          'text': 1,
          'choice': 1,
          'simply': 1,
          'allows': 1,
          'take': 1,
          'takes': 1,
          '_no': 1,
          'one_': 1,
          'neven': 1,
          'walk': 1,
          'blank': 1,
          'slate': 1,
          'cant': 1,
          'imagine': 1,
          'heavily': 1,
          'armed': 1,
          'minor': 1,
          'distraction': 1,
          'nwillis': 1,
          'tones': 1,
          'macho': 1,
          'swagger': 1,
          'taciturn': 1,
          'still': 1,
          'level': 1,
          'always': 1,
          'seems': 1,
          'tougher': 1,
          'rather': 1,
          'smarter': 1,
          'nchristopher': 1,
          'plays': 1,
          'henchman': 1,
          'slight': 1,
          'variation': 1,
          'gallery': 1,
          'softspoken': 1,
          'psychos': 1,
          'isnt': 1,
          'single': 1,
          'character': 1,
          'makes': 1,
          'slightest': 1,
          'impression': 1,
          'compelling': 1,
          'antagonist': 1,
          'buildup': 1,
          'towards': 1,
          'expected': 1,
          'come': 1,
          'quickly': 1,
          'fuss': 1,
          'ncinematographer': 1,
          'lloyd': 1,
          'ahern': 1,
          'noteworthy': 1,
          'hills': 1,
          '1995': 1,
          'flop': 1,
          'wild': 1,
          'bill': 1,
          'creates': 1,
          'nifty': 1,
          'sunburned': 1,
          'vistas': 1,
          'keep': 1,
          'eye': 1,
          'distracted': 1,
          'spurts': 1,
          'gunfire': 1,
          'next': 1,
          'bit': 1,
          'counterproductive': 1,
          'nsometimes': 1,
          'someone': 1,
          'sees': 1,
          'lackluster': 1,
          'revered': 1,
          'theyll': 1,
          'talk': 1,
          'nin': 1,
          'case': 1,
          'know': 1,
          'originals': 1,
          'talking': 1,
          'nneg': 1}),
 Counter({'n': 8,
          'crab': 7,
          'nthe': 6,
          'nand': 5,
          'sometimes': 5,
          'places': 5,
          'first': 4,
          'amanda': 4,
          'movie': 4,
          'okay': 3,
          'nerves': 3,
          'end': 3,
          'tom': 3,
          'fairy': 3,
          'godfather': 3,
          'powers': 3,
          'come': 3,
          'plot': 3,
          'make': 3,
          'bit': 3,
          'romantic': 3,
          'funny': 3,
          'got': 3,
          'get': 2,
          'nwhat': 2,
          'hell': 2,
          'damn': 2,
          'towards': 2,
          'thing': 2,
          'soundtrack': 2,
          'sarah': 2,
          'michelle': 2,
          'gellar': 2,
          'flannery': 2,
          'minutes': 2,
          'along': 2,
          'nit': 2,
          'totally': 2,
          'random': 2,
          'doesnt': 2,
          'im': 2,
          'willing': 2,
          'accept': 2,
          'amandas': 2,
          'life': 2,
          'cant': 2,
          'seem': 2,
          'falling': 2,
          'clips': 2,
          'annoying': 2,
          'long': 2,
          'particular': 2,
          'love': 2,
          'good': 2,
          'peaches': 2,
          'dry': 2,
          'ice': 2,
          'seemed': 2,
          'sudden': 2,
          'making': 2,
          'people': 2,
          'around': 2,
          'theme': 2,
          'humor': 2,
          'nolan': 2,
          'character': 2,
          'see': 2,
          'trying': 2,
          'hard': 2,
          'youve': 2,
          'mail': 2,
          'simply': 2,
          'irresistible': 2,
          'nfemale': 2,
          'like': 2,
          'bear': 1,
          'yall': 1,
          'cause': 1,
          'chest': 1,
          'nwhew': 1,
          'ncause': 1,
          'clip': 1,
          'shown': 1,
          'beginning': 1,
          'cute': 1,
          'maybe': 1,
          'neven': 1,
          'know': 1,
          'need': 1,
          'footage': 1,
          'wasnt': 1,
          'getting': 1,
          'cutesy': 1,
          'gimmicks': 1,
          'saccharine': 1,
          'sweet': 1,
          'score': 1,
          'pretty': 1,
          'young': 1,
          'faces': 1,
          'sean': 1,
          'patrick': 1,
          'might': 1,
          'held': 1,
          'appeal': 1,
          'oh': 1,
          'say': 1,
          '10': 1,
          'nat': 1,
          'moves': 1,
          'quick': 1,
          'interesting': 1,
          'pace': 1,
          'speedily': 1,
          'established': 1,
          'something': 1,
          'magical': 1,
          'happen': 1,
          'encounters': 1,
          'type': 1,
          'person': 1,
          'street': 1,
          'whose': 1,
          'aforementioned': 1,
          'follows': 1,
          'everywhere': 1,
          'die': 1,
          'na': 1,
          'ridiculous': 1,
          'concept': 1,
          'yes': 1,
          'point': 1,
          'changed': 1,
          'received': 1,
          'nlater': 1,
          'decide': 1,
          'whether': 1,
          'werent': 1,
          'repetitive': 1,
          'place': 1,
          'unnecessary': 1,
          'stumbles': 1,
          'uneven': 1,
          'speed': 1,
          'dwelling': 1,
          'development': 1,
          'suddenly': 1,
          'becoming': 1,
          'great': 1,
          'chef': 1,
          'etc': 1,
          'moving': 1,
          'quickly': 1,
          'nsome': 1,
          'sense': 1,
          'way': 1,
          'contrived': 1,
          'example': 1,
          'corny': 1,
          'emitting': 1,
          'ncant': 1,
          'beat': 1,
          'nall': 1,
          'fragmented': 1,
          'unconnected': 1,
          'nnot': 1,
          'nso': 1,
          'magic': 1,
          'nshe': 1,
          'float': 1,
          'instead': 1,
          'put': 1,
          'emotions': 1,
          'food': 1,
          'ntom': 1,
          'accepts': 1,
          'witchcraft': 1,
          'nwould': 1,
          'really': 1,
          'dine': 1,
          'restaurant': 1,
          'resembles': 1,
          'death': 1,
          'tupacs': 1,
          'video': 1,
          'unfortunate': 1,
          'liked': 1,
          'basic': 1,
          'premise': 1,
          'became': 1,
          'fantastical': 1,
          'tiresome': 1,
          'film': 1,
          'skirt': 1,
          'serious': 1,
          'least': 1,
          'resolved': 1,
          'show': 1,
          'us': 1,
          'flashback': 1,
          '5': 1,
          'crying': 1,
          'tables': 1,
          'gets': 1,
          'funniest': 1,
          'bits': 1,
          'including': 1,
          'incomprehensible': 1,
          'dolls': 1,
          'ngellar': 1,
          'qualified': 1,
          'actors': 1,
          'charm': 1,
          'much': 1,
          'prefer': 1,
          'playing': 1,
          'saucy': 1,
          'buffy': 1,
          'even': 1,
          'annette': 1,
          'upcoming': 1,
          'cruel': 1,
          'intentions': 1,
          'sorry': 1,
          'excuse': 1,
          'nits': 1,
          'almost': 1,
          'two': 1,
          'dialogue': 1,
          'sound': 1,
          'better': 1,
          'relationship': 1,
          'plausible': 1,
          'supporting': 1,
          'highlight': 1,
          'though': 1,
          'reminded': 1,
          'kevin': 1,
          'footnotes': 1,
          'always': 1,
          'typical': 1,
          'chick': 1,
          'flick': 1,
          'comedy': 1,
          'theres': 1,
          'seemingly': 1,
          'endless': 1,
          'background': 1,
          'cued': 1,
          'right': 1,
          'nthis': 1,
          'sort': 1,
          'understand': 1,
          'light': 1,
          'generally': 1,
          'disappointing': 1,
          'draw': 1,
          'line': 1,
          'romance': 1,
          'protracted': 1,
          'sap': 1,
          'tired': 1,
          'slapstick': 1,
          'could': 1,
          'refrain': 1,
          'pun': 1,
          'easy': 1,
          'resist': 1,
          'viewing': 1,
          '2699': 1,
          'anyone': 1,
          'else': 1,
          'think': 1,
          'tad': 1,
          'similar': 1,
          'shop': 1,
          'corner': 1,
          'nbusiness': 1,
          'rivals': 1,
          'fall': 1,
          'counterparts': 1,
          'business': 1,
          'danger': 1,
          'shut': 1,
          'mother': 1,
          'figure': 1,
          'guiding': 1,
          'hysterical': 1,
          'exgirlfriends': 1,
          '_really_': 1,
          'gellars': 1,
          'wardrobe': 1,
          'nneg': 1}),
 Counter({'movie': 18,
          'witch': 15,
          'nthe': 15,
          'blair': 10,
          'see': 8,
          'n': 7,
          'ni': 6,
          'never': 6,
          'nthis': 6,
          'bad': 5,
          'horror': 5,
          'know': 5,
          'videotapes': 5,
          'monster': 5,
          'film': 4,
          'young': 4,
          'us': 4,
          'one': 4,
          'nwe': 4,
          'fact': 4,
          'scenes': 4,
          'time': 4,
          'group': 4,
          'woods': 4,
          'nhow': 4,
          'nbecause': 4,
          'five': 4,
          'much': 4,
          'like': 4,
          'tapes': 4,
          'characters': 4,
          'went': 3,
          '2': 3,
          'book': 3,
          'original': 3,
          'terrifying': 3,
          'first': 3,
          'man': 3,
          'sort': 3,
          'movies': 3,
          'around': 3,
          'evil': 3,
          'truly': 3,
          'jeffrey': 3,
          'people': 3,
          'tristen': 3,
          'steven': 3,
          'ntristen': 3,
          'pregnant': 3,
          'kim': 3,
          'party': 3,
          'nthey': 3,
          'team': 3,
          'explained': 3,
          'house': 3,
          'camp': 3,
          'point': 3,
          'showing': 3,
          'goes': 3,
          'get': 3,
          'discover': 3,
          'hours': 3,
          'weird': 3,
          'weak': 3,
          'sympathetic': 3,
          'straight': 3,
          'find': 3,
          'end': 3,
          'project': 2,
          'shadows': 2,
          'hopes': 2,
          'would': 2,
          'soon': 2,
          'audience': 2,
          'shown': 2,
          'result': 2,
          'hysteria': 2,
          'sells': 2,
          'website': 2,
          'cuts': 2,
          'mental': 2,
          'institution': 2,
          'white': 2,
          'goo': 2,
          'explanation': 2,
          'opening': 2,
          'hospital': 2,
          'set': 2,
          'poor': 2,
          'doctors': 2,
          'horrible': 2,
          'character': 2,
          'names': 2,
          'nsteven': 2,
          'mass': 2,
          'complains': 2,
          'also': 2,
          'nauseated': 2,
          'intuition': 2,
          'member': 2,
          'erica': 2,
          'wiccan': 2,
          'cemetery': 2,
          'nkim': 2,
          'completely': 2,
          'makeup': 2,
          'psychic': 2,
          'entire': 2,
          'foundation': 2,
          'equipment': 2,
          'brief': 2,
          'rival': 2,
          'words': 2,
          'long': 2,
          'go': 2,
          'next': 2,
          'manuscript': 2,
          'paper': 2,
          'missing': 2,
          'buried': 2,
          'found': 2,
          'jeffreys': 2,
          'creepy': 2,
          'skip': 2,
          'starts': 2,
          'disturbing': 2,
          'hallucinations': 2,
          'everything': 2,
          'footage': 2,
          'awful': 2,
          'caricatures': 2,
          'antisocial': 2,
          'goth': 2,
          'girl': 2,
          'lot': 2,
          'flesh': 2,
          'writer': 2,
          'nit': 2,
          'didnt': 2,
          'either': 2,
          'gore': 2,
          'worked': 2,
          'saw': 2,
          'nblair': 2,
          'grossout': 2,
          'none': 2,
          'highest': 1,
          'released': 1,
          'last': 1,
          'summer': 1,
          'genuinely': 1,
          'scary': 1,
          'hoped': 1,
          'live': 1,
          'predecessor': 1,
          'nunfortunately': 1,
          'dashed': 1,
          'nas': 1,
          'opens': 1,
          'pseudodocumentary': 1,
          'clips': 1,
          'burkittsville': 1,
          'maryland': 1,
          'residents': 1,
          'interviewed': 1,
          'sudden': 1,
          'tourist': 1,
          'influx': 1,
          'town': 1,
          'nits': 1,
          'mostly': 1,
          'humorous': 1,
          'selfaware': 1,
          'poke': 1,
          'media': 1,
          'hype': 1,
          'surrounding': 1,
          'nduring': 1,
          'segment': 1,
          'introduced': 1,
          'protagonist': 1,
          'witchrelated': 1,
          'memorabilia': 1,
          'title': 1,
          'informs': 1,
          'occurred': 1,
          'year': 1,
          'previously': 1,
          'selling': 1,
          'paraphernalia': 1,
          'confined': 1,
          'finds': 1,
          'disgusting': 1,
          'unconvincingly': 1,
          'forced': 1,
          'nose': 1,
          'cigarettesmoking': 1,
          'doctor': 1,
          'luridly': 1,
          'leers': 1,
          'throwing': 1,
          'wildly': 1,
          'padded': 1,
          'room': 1,
          'cowering': 1,
          'naked': 1,
          'shower': 1,
          'stall': 1,
          'fire': 1,
          'hose': 1,
          'turned': 1,
          'nno': 1,
          'provided': 1,
          'barely': 1,
          'referred': 1,
          'sinking': 1,
          'feeling': 1,
          'generally': 1,
          'scene': 1,
          'lighting': 1,
          'filthy': 1,
          'interiors': 1,
          'sure': 1,
          'sign': 1,
          'throes': 1,
          'present': 1,
          'whose': 1,
          'name': 1,
          'played': 1,
          'donovan': 1,
          'identical': 1,
          'actors': 1,
          'although': 1,
          'admits': 1,
          'front': 1,
          'fictional': 1,
          'theres': 1,
          'reason': 1,
          'practice': 1,
          'rounding': 1,
          'leading': 1,
          'weekend': 1,
          'hunt': 1,
          'promotional': 1,
          'gimmick': 1,
          'came': 1,
          'meet': 1,
          'couple': 1,
          'writing': 1,
          'experience': 1,
          'skeptic': 1,
          'believing': 1,
          'whole': 1,
          'thing': 1,
          'hand': 1,
          'believes': 1,
          'may': 1,
          'truth': 1,
          'rumors': 1,
          'supernatural': 1,
          'occurrence': 1,
          'nshe': 1,
          'wan': 1,
          'softspoken': 1,
          'radio': 1,
          'playing': 1,
          'loudly': 1,
          'feels': 1,
          'knew': 1,
          'immediately': 1,
          'confirmed': 1,
          'later': 1,
          'psychomagically': 1,
          'susses': 1,
          'women': 1,
          'always': 1,
          'fourth': 1,
          'flowing': 1,
          'hair': 1,
          'wide': 1,
          'eyes': 1,
          'wants': 1,
          'prove': 1,
          'good': 1,
          'pick': 1,
          'fifth': 1,
          'final': 1,
          'dressed': 1,
          'black': 1,
          'extreme': 1,
          'gothstyle': 1,
          'occasionally': 1,
          'displays': 1,
          'seemingly': 1,
          'abilities': 1,
          'otherwise': 1,
          'seems': 1,
          'intelligent': 1,
          'reasonable': 1,
          'person': 1,
          'bunch': 1,
          'npresumably': 1,
          'wanted': 1,
          'picked': 1,
          'dramatic': 1,
          'effect': 1,
          'heads': 1,
          'promised': 1,
          'reach': 1,
          'crumbling': 1,
          'ruins': 1,
          'rustin': 1,
          'parrs': 1,
          'complete': 1,
          'extensive': 1,
          'video': 1,
          'record': 1,
          'nights': 1,
          'events': 1,
          'nthere': 1,
          'encounter': 1,
          'tour': 1,
          'planned': 1,
          'site': 1,
          'well': 1,
          'exchanged': 1,
          'huffs': 1,
          'makes': 1,
          'elsewhere': 1,
          'veers': 1,
          'spend': 1,
          'many': 1,
          'minutes': 1,
          'drinking': 1,
          'ensues': 1,
          'sun': 1,
          'nsexual': 1,
          'innuendoes': 1,
          'tossed': 1,
          'hard': 1,
          'liquor': 1,
          'beer': 1,
          'pot': 1,
          'consumed': 1,
          'nothing': 1,
          'else': 1,
          'happens': 1,
          'great': 1,
          'bathroom': 1,
          'necessary': 1,
          'day': 1,
          'wakes': 1,
          'discovers': 1,
          'camera': 1,
          'trashed': 1,
          'tristens': 1,
          'fluttering': 1,
          'sky': 1,
          'shreds': 1,
          'snow': 1,
          'thanks': 1,
          'underneath': 1,
          'right': 1,
          'nooh': 1,
          'nspooky': 1,
          'back': 1,
          'old': 1,
          'civil': 1,
          'warera': 1,
          'warehouse': 1,
          'heart': 1,
          'regroup': 1,
          'review': 1,
          'mysteriously': 1,
          'night': 1,
          'nwacky': 1,
          'hijinks': 1,
          'ensue': 1,
          'dreams': 1,
          'everybody': 1,
          'finding': 1,
          'runelike': 1,
          'burn': 1,
          'marks': 1,
          'bodies': 1,
          'highly': 1,
          'mutual': 1,
          'pretty': 1,
          'hell': 1,
          'handbasket': 1,
          'nthroughout': 1,
          'ordeal': 1,
          'others': 1,
          'continue': 1,
          'scrutinize': 1,
          'seem': 1,
          'kind': 1,
          'images': 1,
          'jumps': 1,
          'eventually': 1,
          'wanders': 1,
          'mutters': 1,
          'something': 1,
          'reverse': 1,
          'somehow': 1,
          'realize': 1,
          'play': 1,
          'backwards': 1,
          'nwhen': 1,
          'really': 1,
          'happened': 1,
          'lost': 1,
          'things': 1,
          'videotape': 1,
          'burying': 1,
          'nokay': 1,
          'recording': 1,
          'oh': 1,
          'nnevermind': 1,
          'nsimply': 1,
          'broadlydrawn': 1,
          'allowed': 1,
          'depth': 1,
          'development': 1,
          'nerica': 1,
          'natureloving': 1,
          'woman': 1,
          'overbearing': 1,
          'asshole': 1,
          'nold': 1,
          'tired': 1,
          'cliches': 1,
          'used': 1,
          'illustrate': 1,
          'shes': 1,
          'wears': 1,
          'eye': 1,
          'local': 1,
          'sheriff': 1,
          'guy': 1,
          'jagged': 1,
          'teeth': 1,
          'talks': 1,
          'hes': 1,
          'deliverance': 1,
          'storytelling': 1,
          'worst': 1,
          'nrather': 1,
          'taking': 1,
          'make': 1,
          'chose': 1,
          'give': 1,
          'stereotypical': 1,
          'characteristics': 1,
          'attempt': 1,
          'use': 1,
          'cinematic': 1,
          'shorthand': 1,
          'thereby': 1,
          'action': 1,
          'work': 1,
          'non': 1,
          'top': 1,
          'poorly': 1,
          'developed': 1,
          'seriously': 1,
          'unlikable': 1,
          'patently': 1,
          'stupid': 1,
          'honey': 1,
          'miscarriage': 1,
          'got': 1,
          'medical': 1,
          'attention': 1,
          'looks': 1,
          'belongs': 1,
          'slasher': 1,
          'nlets': 1,
          'plane': 1,
          'home': 1,
          'bizarre': 1,
          'nightmares': 1,
          'seeing': 1,
          'strange': 1,
          'visions': 1,
          'want': 1,
          'whats': 1,
          'going': 1,
          'ok': 1,
          'nfrankly': 1,
          'rooting': 1,
          'felt': 1,
          'simply': 1,
          'blood': 1,
          'palpable': 1,
          'presence': 1,
          'anything': 1,
          'offscreen': 1,
          'thus': 1,
          'imaginations': 1,
          'overtime': 1,
          'envision': 1,
          'might': 1,
          'possibly': 1,
          'hallmark': 1,
          'dispensed': 1,
          'niceties': 1,
          'evident': 1,
          'mad': 1,
          'forcing': 1,
          'throat': 1,
          'continued': 1,
          'throughout': 1,
          'treated': 1,
          'occasional': 1,
          'confusing': 1,
          'disorienting': 1,
          'appears': 1,
          'ritual': 1,
          'massacre': 1,
          'nknives': 1,
          'plunge': 1,
          'bloody': 1,
          'fingers': 1,
          'trail': 1,
          'darkness': 1,
          'late': 1,
          'care': 1,
          'stop': 1,
          'broke': 1,
          'showed': 1,
          'nby': 1,
          'questions': 1,
          'remaining': 1,
          'onscreen': 1,
          'loving': 1,
          'detail': 1,
          'confess': 1,
          'someone': 1,
          'prefers': 1,
          'glimpses': 1,
          'mere': 1,
          'suggestions': 1,
          'absence': 1,
          'infinitely': 1,
          'seen': 1,
          'interviews': 1,
          'director': 1,
          'suggested': 1,
          'perpetrated': 1,
          'human': 1,
          'mind': 1,
          'miserably': 1,
          'directors': 1,
          'intent': 1,
          'needs': 1,
          'made': 1,
          'clear': 1,
          'parties': 1,
          'drunk': 1,
          'stoned': 1,
          'minds': 1,
          'ever': 1,
          'gone': 1,
          'murderous': 1,
          'rampage': 1,
          'experienced': 1,
          'week': 1,
          'nand': 1,
          'vanishing': 1,
          'tree': 1,
          'snowfall': 1,
          'nhm': 1,
          'nfrom': 1,
          'poorlywritten': 1,
          'implausible': 1,
          'story': 1,
          'plot': 1,
          'inconsistencies': 1,
          'shots': 1,
          'effort': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'mel': 5,
          'brooks': 5,
          'town': 5,
          'would': 4,
          'one': 4,
          'ni': 4,
          'black': 4,
          'nbut': 3,
          'time': 3,
          'thinking': 3,
          'funny': 3,
          'lee': 3,
          'sheriff': 3,
          'ever': 2,
          'blazing': 2,
          'saddles': 2,
          'nim': 2,
          'little': 2,
          'nword': 2,
          'films': 2,
          'going': 2,
          'like': 2,
          'rolling': 2,
          'every': 2,
          'evil': 2,
          'korman': 2,
          'nhe': 2,
          'townsfolk': 2,
          'governor': 2,
          'send': 2,
          'nthe': 2,
          'humor': 2,
          'didnt': 2,
          'think': 2,
          'calling': 2,
          'head': 2,
          'end': 2,
          'day': 2,
          'looks': 2,
          'im': 1,
          'giving': 1,
          'stinker': 1,
          'nnormally': 1,
          'worst': 1,
          'rate': 1,
          'total': 1,
          'waste': 1,
          'compounded': 1,
          'fact': 1,
          'incredibly': 1,
          'offensive': 1,
          'helped': 1,
          'come': 1,
          'big': 1,
          'goose': 1,
          'egg': 1,
          'sure': 1,
          'hell': 1,
          'made': 1,
          'thing': 1,
          'even': 1,
          'nmaybe': 1,
          'mels': 1,
          'mind': 1,
          'horse': 1,
          'knocked': 1,
          'unconscious': 1,
          'punch': 1,
          'face': 1,
          'nin': 1,
          'mine': 1,
          'maybe': 1,
          'graduated': 1,
          'spike': 1,
          'school': 1,
          'filmmaking': 1,
          'nbecause': 1,
          'selfrighteous': 1,
          'uses': 1,
          'often': 1,
          'nat': 1,
          'least': 1,
          'smarts': 1,
          'realize': 1,
          'nobody': 1,
          'find': 1,
          'term': 1,
          'amusing': 1,
          'nbrooks': 1,
          'bandies': 1,
          'figures': 1,
          'audience': 1,
          'aisles': 1,
          'hear': 1,
          'nwrong': 1,
          'call': 1,
          'boob': 1,
          'insults': 1,
          'breasts': 1,
          'everywhere': 1,
          'nthis': 1,
          'idiotic': 1,
          'attempt': 1,
          'comedy': 1,
          'centers': 1,
          'lieutenant': 1,
          'governors': 1,
          'harvey': 1,
          'attempts': 1,
          'clear': 1,
          'buy': 1,
          'land': 1,
          'cheap': 1,
          'sell': 1,
          'railroad': 1,
          'sends': 1,
          'goons': 1,
          'run': 1,
          'appeals': 1,
          'many': 1,
          'uninspired': 1,
          'unfunny': 1,
          'roles': 1,
          'new': 1,
          'protect': 1,
          'pawns': 1,
          'task': 1,
          'kormans': 1,
          'character': 1,
          'hedley': 1,
          'lamarr': 1,
          'n': 1,
          'tell': 1,
          'chairs': 1,
          'right': 1,
          'name': 1,
          'nlamarr': 1,
          'decides': 1,
          'gasp': 1,
          'hopes': 1,
          'disgusted': 1,
          'prospect': 1,
          'man': 1,
          'living': 1,
          'among': 1,
          'leave': 1,
          'nhold': 1,
          'ive': 1,
          'got': 1,
          'stop': 1,
          'gales': 1,
          'laughter': 1,
          'pass': 1,
          'nits': 1,
          'nracism': 1,
          'passing': 1,
          'gosh': 1,
          'anybody': 1,
          'noh': 1,
          'wait': 1,
          'somebody': 1,
          'might': 1,
          'called': 1,
          'kkk': 1,
          'racist': 1,
          'insensitive': 1,
          'bastard': 1,
          'wouldnt': 1,
          'know': 1,
          'hit': 1,
          'digress': 1,
          'nanyway': 1,
          'rides': 1,
          'amid': 1,
          'flurry': 1,
          'using': 1,
          'ngolly': 1,
          'hilarity': 1,
          'never': 1,
          'ends': 1,
          'joining': 1,
          'forces': 1,
          'drunk': 1,
          'gene': 1,
          'wilder': 1,
          'happens': 1,
          'former': 1,
          'fastest': 1,
          'gun': 1,
          'west': 1,
          'ntogether': 1,
          'save': 1,
          'nnot': 1,
          'person': 1,
          'gives': 1,
          'decent': 1,
          'performance': 1,
          'nwilder': 1,
          'recovering': 1,
          'injury': 1,
          'embarrassed': 1,
          'part': 1,
          'nok': 1,
          'really': 1,
          'star': 1,
          'cleavon': 1,
          'goes': 1,
          'along': 1,
          'jokes': 1,
          'discussing': 1,
          'laugh': 1,
          'whole': 1,
          'sorry': 1,
          'experience': 1,
          'admit': 1,
          'starting': 1,
          'snicker': 1,
          'couple': 1,
          'occasions': 1,
          'nactually': 1,
          'started': 1,
          'look': 1,
          'promise': 1,
          'alas': 1,
          'ended': 1,
          'crappy': 1,
          'rest': 1,
          'say': 1,
          'full': 1,
          'confidence': 1,
          'redeeming': 1,
          'qualities': 1,
          'whatsoever': 1,
          'nmel': 1,
          'world': 1,
          'favor': 1,
          'burned': 1,
          'last': 1,
          'copy': 1,
          'film': 1,
          'nneg': 1}),
 Counter({'characters': 6,
          '2': 4,
          'movie': 4,
          'days': 3,
          'valley': 3,
          'much': 3,
          'would': 3,
          'nwhile': 3,
          'half': 3,
          'pulp': 2,
          'fiction': 2,
          'lives': 2,
          'ways': 2,
          'quite': 2,
          'way': 2,
          'nthis': 2,
          'cast': 2,
          'story': 2,
          'isnt': 2,
          'better': 2,
          'least': 2,
          'watch': 2,
          'sort': 2,
          'get': 2,
          'charlize': 2,
          'theron': 2,
          'fairly': 2,
          'intersect': 2,
          'otherwise': 2,
          'interesting': 2,
          'even': 2,
          'less': 1,
          'knock': 1,
          'nit': 1,
          'basically': 1,
          'involves': 1,
          'bunch': 1,
          'quirky': 1,
          'los': 1,
          'angeles': 1,
          'area': 1,
          'end': 1,
          'become': 1,
          'intertwined': 1,
          'unusual': 1,
          'nim': 1,
          'going': 1,
          'greater': 1,
          'detail': 1,
          'since': 1,
          'take': 1,
          'forever': 1,
          'explain': 1,
          'frankly': 1,
          'im': 1,
          'willing': 1,
          'spend': 1,
          'time': 1,
          'hours': 1,
          'ive': 1,
          'already': 1,
          'wasted': 1,
          'tries': 1,
          'hard': 1,
          'falls': 1,
          'short': 1,
          'condemnation': 1,
          'considering': 1,
          'includes': 1,
          'danny': 1,
          'aiello': 1,
          'james': 1,
          'spader': 1,
          'jeff': 1,
          'daniels': 1,
          'dialogue': 1,
          'rate': 1,
          'marginally': 1,
          'couple': 1,
          'bright': 1,
          'spots': 1,
          'njames': 1,
          'spaders': 1,
          'character': 1,
          'rest': 1,
          'fun': 1,
          'sick': 1,
          'nand': 1,
          'see': 1,
          'nice': 1,
          'cat': 1,
          'fight': 1,
          'uber': 1,
          'babes': 1,
          'teri': 1,
          'hatcher': 1,
          'first': 1,
          'role': 1,
          'nyou': 1,
          'know': 1,
          'good': 1,
          'highlight': 1,
          'brawl': 1,
          'two': 1,
          'women': 1,
          'neven': 1,
          'gorgeous': 1,
          'ni': 1,
          'give': 1,
          'writers': 1,
          'credit': 1,
          'clever': 1,
          'managed': 1,
          'group': 1,
          'never': 1,
          'interacted': 1,
          'nbut': 1,
          'marveling': 1,
          'ingenuity': 1,
          'far': 1,
          'cry': 1,
          'actually': 1,
          'enjoying': 1,
          'result': 1,
          'respective': 1,
          'stories': 1,
          'inevitably': 1,
          'brought': 1,
          'really': 1,
          'cared': 1,
          'absolutely': 1,
          'nothing': 1,
          'nif': 1,
          'put': 1,
          'number': 1,
          'particularly': 1,
          'enjoyable': 1,
          'huge': 1,
          'fan': 1,
          'one': 1,
          'members': 1,
          'rent': 1,
          'prepare': 1,
          'disappointment': 1,
          'nnot': 1,
          'naked': 1,
          'sit': 1,
          'anyway': 1,
          'nneg': 1}),
 Counter({'foolish': 6,
          'movie': 5,
          'would': 4,
          'comedy': 4,
          'griffin': 4,
          'p': 3,
          'one': 3,
          'standup': 3,
          'eddie': 3,
          'nhe': 3,
          'scenes': 3,
          'inspire': 2,
          'write': 2,
          'act': 2,
          'star': 2,
          'said': 2,
          'nif': 2,
          'nfoolish': 2,
          'master': 2,
          'otherwise': 2,
          'potential': 2,
          'central': 2,
          'little': 2,
          'two': 2,
          'idiot': 2,
          'everyone': 2,
          'idiotic': 2,
          'hell': 2,
          'nas': 2,
          'nthe': 2,
          'script': 2,
          'expect': 2,
          'much': 2,
          'show': 2,
          'rush': 2,
          'scene': 2,
          'someone': 1,
          'pen': 1,
          'na': 1,
          'better': 1,
          'question': 1,
          'studio': 1,
          'produce': 1,
          'answer': 1,
          'let': 1,
          'know': 1,
          'new': 1,
          'written': 1,
          'starring': 1,
          'jawdroppingly': 1,
          'horrible': 1,
          'film': 1,
          'redeeming': 1,
          'value': 1,
          'socially': 1,
          'cinematically': 1,
          'ncomedically': 1,
          'moments': 1,
          'turn': 1,
          'nmaster': 1,
          'stars': 1,
          'fifty': 1,
          'dollah': 1,
          'beat': 1,
          'mobster': 1,
          'think': 1,
          'trying': 1,
          'start': 1,
          'clubact': 1,
          'brother': 1,
          'nbut': 1,
          'deal': 1,
          'angry': 1,
          'mob': 1,
          'boss': 1,
          'played': 1,
          'andrew': 1,
          'dice': 1,
          'clay': 1,
          'first': 1,
          'time': 1,
          'entertaining': 1,
          'stubborn': 1,
          'club': 1,
          'owner': 1,
          'family': 1,
          'problems': 1,
          'latter': 1,
          'perfect': 1,
          'example': 1,
          'roger': 1,
          'eberts': 1,
          'plot': 1,
          'wasnt': 1,
          'problem': 1,
          'nso': 1,
          'offer': 1,
          'beside': 1,
          'bunch': 1,
          'character': 1,
          'names': 1,
          'nnot': 1,
          'lot': 1,
          'mentioned': 1,
          'acts': 1,
          'like': 1,
          'rapper': 1,
          'occasional': 1,
          'despair': 1,
          'requires': 1,
          'exhibit': 1,
          'excruciatingly': 1,
          'forced': 1,
          'warm': 1,
          'fuzzy': 1,
          'bro': 1,
          'well': 1,
          'suppose': 1,
          'delivers': 1,
          'musical': 1,
          'artist': 1,
          'previous': 1,
          'screenwriting': 1,
          'experience': 1,
          'havent': 1,
          'yet': 1,
          'figured': 1,
          'saying': 1,
          'ncostar': 1,
          'really': 1,
          'quite': 1,
          'different': 1,
          'story': 1,
          'fact': 1,
          'matter': 1,
          'whose': 1,
          'significant': 1,
          'screen': 1,
          'outing': 1,
          'date': 1,
          'probably': 1,
          'mildly': 1,
          'successful': 1,
          'tv': 1,
          'malcolm': 1,
          'fledgling': 1,
          'upn': 1,
          'network': 1,
          'extremely': 1,
          'talented': 1,
          'comedian': 1,
          'common': 1,
          'chris': 1,
          'tucker': 1,
          'hour': 1,
          'money': 1,
          'talks': 1,
          'quickly': 1,
          'effortlessly': 1,
          'speech': 1,
          'flows': 1,
          'lips': 1,
          'spouts': 1,
          'profanity': 1,
          'impressive': 1,
          'dexterity': 1,
          'extent': 1,
          'done': 1,
          'hope': 1,
          'become': 1,
          'trademark': 1,
          'works': 1,
          'nand': 1,
          'indeed': 1,
          'laughed': 1,
          'featurelength': 1,
          'provided': 1,
          'reason': 1,
          'care': 1,
          'characters': 1,
          'nevery': 1,
          'dramatic': 1,
          'impact': 1,
          'effectively': 1,
          'diffused': 1,
          'either': 1,
          'stupid': 1,
          'joke': 1,
          'tension': 1,
          'escalates': 1,
          'brothers': 1,
          'blurts': 1,
          'towards': 1,
          'jewelrysporting': 1,
          'sibling': 1,
          'lay': 1,
          'hand': 1,
          'cemetary': 1,
          'going': 1,
          'gold': 1,
          'something': 1,
          'even': 1,
          'smashing': 1,
          'car': 1,
          'bit': 1,
          'loudly': 1,
          'occasion': 1,
          'huh': 1,
          'getting': 1,
          'slightly': 1,
          'upset': 1,
          'wife': 1,
          'nbelieve': 1,
          'say': 1,
          'nothing': 1,
          'warrants': 1,
          'parting': 1,
          'hardearned': 1,
          '8': 1,
          'nyoull': 1,
          'get': 1,
          'laughs': 1,
          'watching': 1,
          '30': 1,
          'minutes': 1,
          'virtually': 1,
          'sitcom': 1,
          'dont': 1,
          'cable': 1,
          'neddie': 1,
          'fans': 1,
          'may': 1,
          'enjoy': 1,
          'derivative': 1,
          'although': 1,
          'offensive': 1,
          'yarn': 1,
          'else': 1,
          'stay': 1,
          'away': 1,
          'n137': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'nthe': 5,
          'movie': 5,
          'possessed': 5,
          'night': 4,
          'one': 4,
          'brain': 3,
          'loan': 3,
          'shark': 3,
          'really': 3,
          'like': 3,
          'novelist': 2,
          'jar': 2,
          'need': 2,
          'profession': 2,
          'nmost': 2,
          'thing': 2,
          'thriller': 2,
          'bad': 2,
          'plot': 2,
          'much': 2,
          'acting': 2,
          'two': 2,
          'audience': 2,
          'even': 2,
          'something': 2,
          'nas': 2,
          'synopsis': 1,
          'struggling': 1,
          'latest': 1,
          'work': 1,
          'buys': 1,
          'weird': 1,
          'protruding': 1,
          'eyeball': 1,
          'encased': 1,
          'exerts': 1,
          'evil': 1,
          'influence': 1,
          'upon': 1,
          'secretary': 1,
          'wife': 1,
          'disapproves': 1,
          'nmeanwhile': 1,
          'shave': 1,
          'tries': 1,
          'leave': 1,
          'ncomments': 1,
          'called': 1,
          'nits': 1,
          'hard': 1,
          'speculate': 1,
          'takes': 1,
          'place': 1,
          'day': 1,
          'possessing': 1,
          'anyone': 1,
          'icky': 1,
          'pulsating': 1,
          'bubbling': 1,
          'thingie': 1,
          'nin': 1,
          'case': 1,
          'havent': 1,
          'picked': 1,
          'yet': 1,
          'bottomofthebarrel': 1,
          'use': 1,
          'term': 1,
          'loosely': 1,
          'cheap': 1,
          'sounds': 1,
          'cheesy': 1,
          'pulp': 1,
          'science': 1,
          'fiction': 1,
          'story': 1,
          '1950s': 1,
          'actually': 1,
          'serves': 1,
          'purpose': 1,
          'exploit': 1,
          'nude': 1,
          'women': 1,
          'often': 1,
          'possible': 1,
          'nwriting': 1,
          'review': 1,
          'proves': 1,
          'oddly': 1,
          'challenging': 1,
          'ntheres': 1,
          'say': 1,
          'lousy': 1,
          'although': 1,
          'occasionally': 1,
          'attempts': 1,
          'absurd': 1,
          'garner': 1,
          'chuckle': 1,
          'humorous': 1,
          'frank': 1,
          'sivero': 1,
          'plays': 1,
          'murray': 1,
          'novelists': 1,
          'agent': 1,
          'nhe': 1,
          'horrible': 1,
          'role': 1,
          'cant': 1,
          'help': 1,
          'amused': 1,
          'sucks': 1,
          'nnearly': 1,
          'half': 1,
          'devoted': 1,
          'loser': 1,
          'wants': 1,
          'though': 1,
          'limited': 1,
          'relevance': 1,
          'whole': 1,
          'dialogue': 1,
          'stinks': 1,
          'na': 1,
          'instance': 1,
          'tells': 1,
          'another': 1,
          'loves': 1,
          'bimbos': 1,
          'doesnt': 1,
          'know': 1,
          'neverything': 1,
          'second': 1,
          'rate': 1,
          'credits': 1,
          'names': 1,
          'notsotalented': 1,
          'crew': 1,
          'scrolled': 1,
          'end': 1,
          'joseph': 1,
          'scales': 1,
          'came': 1,
          'credited': 1,
          'assistsant': 1,
          'foley': 1,
          'artist': 1,
          'nsomeone': 1,
          'could': 1,
          'used': 1,
          'editor': 1,
          'nto': 1,
          'honest': 1,
          'basically': 1,
          'excuse': 1,
          'flash': 1,
          'frontal': 1,
          'nudity': 1,
          'show': 1,
          'sex': 1,
          'scenes': 1,
          'nplayboy': 1,
          'playmate': 1,
          'shannon': 1,
          'tweed': 1,
          'star': 1,
          'ni': 1,
          'suppose': 1,
          'wanted': 1,
          'sort': 1,
          'would': 1,
          'nwhy': 1,
          'give': 1,
          'turkey': 1,
          'stars': 1,
          'unintentionally': 1,
          'funny': 1,
          'enough': 1,
          'keep': 1,
          'someone': 1,
          'passingly': 1,
          'interested': 1,
          'nif': 1,
          'feel': 1,
          'see': 1,
          'however': 1,
          'id': 1,
          'recommend': 1,
          'exorcise': 1,
          'impulse': 1,
          'watch': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'movie': 11,
          'bad': 6,
          'even': 4,
          'segal': 3,
          'see': 3,
          'like': 3,
          'course': 3,
          'movies': 3,
          'stupid': 3,
          'hero': 3,
          'scene': 3,
          'okay': 2,
          'wasnt': 2,
          'watch': 2,
          'action': 2,
          'liked': 2,
          'look': 2,
          'friends': 2,
          'would': 2,
          'go': 2,
          'die': 2,
          'hard': 2,
          'nin': 2,
          'gratuitous': 2,
          'lines': 2,
          'end': 2,
          'forces': 2,
          'sidekick': 2,
          'one': 2,
          'two': 2,
          'way': 2,
          'unfunny': 2,
          'time': 2,
          'ni': 2,
          'seen': 2,
          'saves': 2,
          'many': 2,
          'guy': 2,
          'hand': 2,
          'nmy': 2,
          'nmaybe': 1,
          'mood': 1,
          'mindless': 1,
          'person': 1,
          'lethal': 1,
          'weapon': 1,
          'iii': 1,
          'admitting': 1,
          'good': 1,
          'others': 1,
          'nhowewer': 1,
          'latest': 1,
          'picture': 1,
          'didnt': 1,
          'since': 1,
          'none': 1,
          'woody': 1,
          'allen': 1,
          'paid': 1,
          'went': 1,
          'expecting': 1,
          'mild': 1,
          'rehash': 1,
          'nboy': 1,
          'wrong': 1,
          'first': 1,
          'half': 1,
          'already': 1,
          'assaulted': 1,
          'segals': 1,
          'acting': 1,
          'simply': 1,
          'wooden': 1,
          'wall': 1,
          'violence': 1,
          'incredible': 1,
          'plot': 1,
          'sexist': 1,
          'nudity': 1,
          'obviously': 1,
          'meant': 1,
          'jokes': 1,
          'nby': 1,
          'obvious': 1,
          'hundreds': 1,
          'navy': 1,
          'men': 1,
          'match': 1,
          'thirty': 1,
          'armed': 1,
          'special': 1,
          'soldiers': 1,
          'nnot': 1,
          'appear': 1,
          'worried': 1,
          'undecided': 1,
          'much': 1,
          'increasing': 1,
          'unexistent': 1,
          'suspense': 1,
          'nof': 1,
          'must': 1,
          'love': 1,
          'interest': 1,
          'given': 1,
          'package': 1,
          'form': 1,
          'playboy': 1,
          'model': 1,
          'functions': 1,
          'supposed': 1,
          'comic': 1,
          'relief': 1,
          'extremely': 1,
          'watering': 1,
          'eyes': 1,
          'away': 1,
          'every': 1,
          'something': 1,
          'happens': 1,
          'noh': 1,
          'appears': 1,
          'naked': 1,
          'waist': 1,
          'kisses': 1,
          'development': 1,
          'relationship': 1,
          'seem': 1,
          'interested': 1,
          'never': 1,
          'little': 1,
          'chemistry': 1,
          'people': 1,
          'noften': 1,
          'villain': 1,
          'unfortunately': 1,
          'villains': 1,
          'cartoonish': 1,
          'unmenacing': 1,
          'nhow': 1,
          'psycho': 1,
          'exspecial': 1,
          'guys': 1,
          'ntoo': 1,
          'able': 1,
          'predict': 1,
          'throughout': 1,
          'including': 1,
          'moment': 1,
          'certain': 1,
          'death': 1,
          'kill': 1,
          'proceeds': 1,
          'explain': 1,
          'plan': 1,
          'shown': 1,
          'heros': 1,
          'superiors': 1,
          'loses': 1,
          'gun': 1,
          'fight': 1,
          'etc': 1,
          'nsimply': 1,
          'said': 1,
          'moviemaking': 1,
          'numbers': 1,
          'boring': 1,
          'potentially': 1,
          'offensive': 1,
          'going': 1,
          'lowest': 1,
          'common': 1,
          'denominator': 1,
          'audience': 1,
          'recommendation': 1,
          'bring': 1,
          'nyoull': 1,
          'looking': 1,
          'nrent': 1,
          'nread': 1,
          'book': 1,
          'nstare': 1,
          'sky': 1,
          'ndo': 1,
          'waste': 1,
          'worthless': 1,
          'piece': 1,
          'celluloid': 1,
          'nthe': 1,
          'real': 1,
          'sad': 1,
          'thing': 1,
          'lot': 1,
          'rather': 1,
          'dragged': 1,
          'halfheartedly': 1,
          'nthey': 1,
          'probably': 1,
          'wrestling': 1,
          'nneg': 1}),
 Counter({'life': 5,
          'murphy': 4,
          'lawrence': 3,
          'movie': 3,
          'like': 3,
          'nbut': 3,
          'people': 3,
          'blacks': 3,
          'eddie': 2,
          'audience': 2,
          'nlife': 2,
          'nits': 2,
          'script': 2,
          'many': 2,
          'nand': 2,
          'write': 2,
          'movies': 2,
          'actors': 2,
          'martin': 1,
          'play': 1,
          'two': 1,
          'young': 1,
          'men': 1,
          'wrongfully': 1,
          'convicted': 1,
          'murder': 1,
          'sentenced': 1,
          'prison': 1,
          'nafter': 1,
          'hour': 1,
          'watching': 1,
          'begin': 1,
          'realize': 1,
          'characters': 1,
          'feel': 1,
          'nfortunately': 1,
          'members': 1,
          'theres': 1,
          'chance': 1,
          'escape': 1,
          'nearest': 1,
          'exit': 1,
          'nthis': 1,
          'undoubtedly': 1,
          'murphys': 1,
          'worst': 1,
          'thats': 1,
          'accomplishment': 1,
          'nremember': 1,
          'golden': 1,
          'child': 1,
          'harlem': 1,
          'nights': 1,
          'ncompared': 1,
          'look': 1,
          'citizen': 1,
          'kane': 1,
          'long': 1,
          'predictable': 1,
          'foulmouthed': 1,
          'intermittently': 1,
          'funny': 1,
          '100minute': 1,
          'running': 1,
          'time': 1,
          'feels': 1,
          '100': 1,
          'years': 1,
          'nrobert': 1,
          'ramsey': 1,
          'matthew': 1,
          'stones': 1,
          'basically': 1,
          'consist': 1,
          'referring': 1,
          'everyone': 1,
          'around': 1,
          'motherf': 1,
          'n': 1,
          'ns': 1,
          'nyou': 1,
          'lose': 1,
          'count': 1,
          'times': 1,
          'obnoxious': 1,
          'offensive': 1,
          'words': 1,
          'used': 1,
          'takes': 1,
          'illiterate': 1,
          'jackass': 1,
          'sit': 1,
          'word': 1,
          'processor': 1,
          'compose': 1,
          'probably': 1,
          'stink': 1,
          'nto': 1,
          'honest': 1,
          'screening': 1,
          'surrounding': 1,
          'theater': 1,
          'yucked': 1,
          'howled': 1,
          'flatulence': 1,
          'fat': 1,
          'jokes': 1,
          'well': 1,
          'sophisticated': 1,
          'belch': 1,
          'crude': 1,
          'stereotypical': 1,
          'nyears': 1,
          'ago': 1,
          'stereotypically': 1,
          'portrayed': 1,
          'subservient': 1,
          'secondclass': 1,
          'good': 1,
          'maids': 1,
          'servants': 1,
          'nfor': 1,
          'part': 1,
          'lot': 1,
          'racial': 1,
          'groups': 1,
          'improved': 1,
          'new': 1,
          'insidious': 1,
          'stereotype': 1,
          'creeping': 1,
          'nin': 1,
          'recent': 1,
          'films': 1,
          'chris': 1,
          'tuckers': 1,
          'presented': 1,
          'fasttalking': 1,
          'conniving': 1,
          'scam': 1,
          'artists': 1,
          'hiphop': 1,
          'guncrazy': 1,
          'sexcrazed': 1,
          'youths': 1,
          'nboth': 1,
          'sets': 1,
          'caricatures': 1,
          'demeaning': 1,
          'fault': 1,
          'rest': 1,
          'nthey': 1,
          'eat': 1,
          'nit': 1,
          'scripts': 1,
          'studios': 1,
          'greenlight': 1,
          'projects': 1,
          'audiences': 1,
          'accept': 1,
          'portrayals': 1,
          'without': 1,
          'protest': 1,
          'nlifes': 1,
          'redeeming': 1,
          'virtue': 1,
          'artistry': 1,
          'makeup': 1,
          'legend': 1,
          'rick': 1,
          'baker': 1,
          'flawlessly': 1,
          'ages': 1,
          '90': 1,
          'year': 1,
          'olds': 1,
          'notherwise': 1,
          'embarrassment': 1,
          'blot': 1,
          'resumes': 1,
          'associated': 1,
          'nsee': 1,
          'risk': 1,
          'nneg': 1}),
 Counter({'rising': 6,
          'monster': 5,
          'anaconda': 4,
          'deep': 4,
          'alive': 3,
          'much': 3,
          'movies': 3,
          'yarn': 3,
          'one': 3,
          'also': 3,
          'show': 3,
          'ni': 2,
          'ndeep': 2,
          'enough': 2,
          'ingredients': 2,
          'cruise': 2,
          'ship': 2,
          'sea': 2,
          'like': 2,
          'crew': 2,
          'squintyeyed': 2,
          'mercenary': 2,
          'make': 2,
          'nits': 2,
          'time': 2,
          'something': 2,
          'bit': 2,
          'point': 2,
          'nin': 2,
          'regurgitated': 2,
          'partially': 2,
          'digested': 2,
          'still': 2,
          'nhe': 2,
          'dont': 2,
          'ask': 2,
          'massive': 2,
          'beast': 2,
          'may': 1,
          'critic': 1,
          'harbors': 1,
          'affection': 1,
          'shlock': 1,
          'delighted': 1,
          'sneakysmart': 1,
          'entertainment': 1,
          'ron': 1,
          'underwoods': 1,
          'bigundergroundworm': 1,
          'tremors': 1,
          'even': 1,
          'giggled': 1,
          'last': 1,
          'years': 1,
          'criticallysavaged': 1,
          'bigunderwatersnake': 1,
          'nsomething': 1,
          'films': 1,
          'causes': 1,
          'lower': 1,
          'inhibitions': 1,
          'return': 1,
          'saturday': 1,
          'afternoons': 1,
          'youth': 1,
          'spent': 1,
          'company': 1,
          'ghidrah': 1,
          'creature': 1,
          'black': 1,
          'lagoon': 1,
          'blob': 1,
          'bigunderseaserpent': 1,
          'doesnt': 1,
          'quite': 1,
          'pass': 1,
          'test': 1,
          'nsure': 1,
          'modern': 1,
          'movie': 1,
          'place': 1,
          'conspicuously': 1,
          'multiethnicmultinational': 1,
          'collection': 1,
          'bait': 1,
          'excuse': 1,
          'nme': 1,
          'characters': 1,
          'isolated': 1,
          'location': 1,
          'derelict': 1,
          'south': 1,
          'china': 1,
          'comic': 1,
          'relief': 1,
          'cgienhanced': 1,
          'grossouts': 1,
          'least': 1,
          'big': 1,
          'explosion': 1,
          'nthere': 1,
          'toocheesytobeaccidental': 1,
          'elements': 1,
          'sleazy': 1,
          'shipping': 1,
          'magnate': 1,
          'anthony': 1,
          'heald': 1,
          'appears': 1,
          'doctorate': 1,
          'marine': 1,
          'biology': 1,
          'slinky': 1,
          'international': 1,
          'jewel': 1,
          'thief': 1,
          'famke': 1,
          'janssen': 1,
          'whose': 1,
          'white': 1,
          'cotton': 1,
          'tank': 1,
          'top': 1,
          'hides': 1,
          'heart': 1,
          'gold': 1,
          'nas': 1,
          'happens': 1,
          'noteworthy': 1,
          'primarily': 1,
          'mechanical': 1,
          'manner': 1,
          'spits': 1,
          'na': 1,
          'terrorist': 1,
          'led': 1,
          'hanover': 1,
          'wes': 1,
          'studi': 1,
          'piloted': 1,
          'boat': 1,
          'captain': 1,
          'finnegan': 1,
          'treat': 1,
          'williams': 1,
          'shows': 1,
          'loot': 1,
          'monsters': 1,
          'eat': 1,
          'survivors': 1,
          'closing': 1,
          'credits': 1,
          'nand': 1,
          'go': 1,
          'lights': 1,
          'hard': 1,
          'work': 1,
          'enthusiasm': 1,
          'sort': 1,
          'joyless': 1,
          'filmmaking': 1,
          'especially': 1,
          'moview': 1,
          'laugh': 1,
          'every': 1,
          'makes': 1,
          'scream': 1,
          'nhere': 1,
          'laughs': 1,
          'provided': 1,
          'almost': 1,
          'entirely': 1,
          'kevin': 1,
          'j': 1,
          'oconnor': 1,
          'generally': 1,
          'amusing': 1,
          'crews': 1,
          'fraidycat': 1,
          'mechanic': 1,
          'nwriterdirector': 1,
          'stephen': 1,
          'sommers': 1,
          'seems': 1,
          'concerned': 1,
          'creating': 1,
          'tone': 1,
          'actionhorror': 1,
          'menace': 1,
          'overpopulated': 1,
          'goredrenched': 1,
          'skeletons': 1,
          'gunfire': 1,
          'special': 1,
          'effects': 1,
          'taken': 1,
          'seriously': 1,
          'missing': 1,
          'unmistakable': 1,
          'cue': 1,
          'expected': 1,
          'ridiculous': 1,
          'good': 1,
          'hide': 1,
          'eyes': 1,
          'ncase': 1,
          'comparing': 1,
          'recent': 1,
          'cousin': 1,
          'creatures': 1,
          'victims': 1,
          'back': 1,
          'view': 1,
          'shrieks': 1,
          'horror': 1,
          'freakish': 1,
          'appearance': 1,
          'pain': 1,
          'moment': 1,
          'disturbing': 1,
          'laughable': 1,
          'see': 1,
          'victim': 1,
          'looks': 1,
          'another': 1,
          'character': 1,
          'nwinks': 1,
          'nmake': 1,
          'mistake': 1,
          'beat': 1,
          'heck': 1,
          'comes': 1,
          'technical': 1,
          'proficiency': 1,
          'pacing': 1,
          'gloomy': 1,
          'uninspired': 1,
          'nearly': 1,
          'fun': 1,
          'act': 1,
          'nyou': 1,
          'fantastically': 1,
          'impressive': 1,
          'tentacles': 1,
          'aflailing': 1,
          'njust': 1,
          'burping': 1,
          'ill': 1,
          'figure': 1,
          'get': 1,
          'nneg': 1}),
 Counter({'sonias': 4,
          'zellweger': 3,
          'sonia': 3,
          'job': 3,
          'jewelry': 3,
          'know': 3,
          'sex': 2,
          'rebbe': 2,
          'far': 2,
          'dont': 2,
          'react': 2,
          'renee': 1,
          'stars': 1,
          'young': 1,
          'jewish': 1,
          'wife': 1,
          'mother': 1,
          'frustrated': 1,
          'constraints': 1,
          'hasidic': 1,
          'community': 1,
          'brooklyn': 1,
          'nher': 1,
          'husband': 1,
          'glenn': 1,
          'fitzgerald': 1,
          'religious': 1,
          'scholar': 1,
          'whose': 1,
          'allinadayswork': 1,
          'attitude': 1,
          'fails': 1,
          'tame': 1,
          'fire': 1,
          'feels': 1,
          'within': 1,
          'confesses': 1,
          'hearing': 1,
          'fiery': 1,
          'confession': 1,
          'suddenly': 1,
          'gets': 1,
          'frisky': 1,
          'pleasantly': 1,
          'surprised': 1,
          'wifeand': 1,
          'dies': 1,
          'next': 1,
          'morning': 1,
          'nsensing': 1,
          'frustration': 1,
          'husbands': 1,
          'brother': 1,
          'christopher': 1,
          'eccleston': 1,
          'gives': 1,
          'brokering': 1,
          'business': 1,
          'exchange': 1,
          'raw': 1,
          'passionless': 1,
          'fans': 1,
          'stillburning': 1,
          'flame': 1,
          'non': 1,
          'befriends': 1,
          'ramon': 1,
          'allen': 1,
          'payne': 1,
          'cool': 1,
          'blast': 1,
          'hunky': 1,
          'puerto': 1,
          'rican': 1,
          'water': 1,
          'designs': 1,
          'working': 1,
          'grunt': 1,
          'upscale': 1,
          'store': 1,
          'ncan': 1,
          'firetaming': 1,
          'behind': 1,
          'eversmoldering': 1,
          'njust': 1,
          'everything': 1,
          'writerdirector': 1,
          'boaz': 1,
          'yakins': 1,
          'rings': 1,
          'false': 1,
          'starting': 1,
          'improbably': 1,
          'cast': 1,
          'adequate': 1,
          'enough': 1,
          'acting': 1,
          'simply': 1,
          'looks': 1,
          'waspy': 1,
          'role': 1,
          'na': 1,
          'better': 1,
          'fit': 1,
          'would': 1,
          'julianna': 1,
          'margulies': 1,
          'outshines': 1,
          'takenocrap': 1,
          'sisterinlaw': 1,
          'nsome': 1,
          'baby': 1,
          'steps': 1,
          'toward': 1,
          'liberation': 1,
          'indulging': 1,
          'nonkosher': 1,
          'egg': 1,
          'roll': 1,
          'chinatown': 1,
          'come': 1,
          'silly': 1,
          'nyakin': 1,
          'attempts': 1,
          'spice': 1,
          'proceedings': 1,
          'touch': 1,
          'magical': 1,
          'realismin': 1,
          'form': 1,
          'recurring': 1,
          'presence': 1,
          'longdead': 1,
          'brothers': 1,
          'ghostmake': 1,
          'story': 1,
          'feel': 1,
          'even': 1,
          'trite': 1,
          'already': 1,
          'n': 1,
          'didnt': 1,
          'expect': 1,
          'nits': 1,
          'like': 1,
          'something': 1,
          'chase': 1,
          'long': 1,
          'get': 1,
          'ni': 1,
          'still': 1,
          'nmichael': 1,
          'jordan': 1,
          'winning': 1,
          'first': 1,
          'nba': 1,
          'championship': 1,
          '1991': 1,
          'nmy': 1,
          'thoughts': 1,
          'meeting': 1,
          'november': 1,
          '21': 1,
          '1997': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'caves': 5,
          'e': 4,
          'holes': 4,
          'dont': 3,
          'think': 3,
          'story': 3,
          'good': 3,
          'two': 3,
          'one': 3,
          'plot': 3,
          'impact': 3,
          'nthe': 3,
          'president': 3,
          'many': 2,
          'like': 2,
          'rating': 2,
          'much': 2,
          'comet': 2,
          'l': 2,
          'nwhat': 2,
          'people': 2,
          'reporter': 2,
          'teenagers': 2,
          'messiah': 2,
          'world': 2,
          'nothing': 2,
          'outstandingly': 2,
          'making': 2,
          'isnt': 2,
          'peacemaker': 2,
          'big': 2,
          'also': 2,
          'human': 2,
          'director': 2,
          'still': 2,
          'character': 2,
          'news': 2,
          'nbut': 2,
          'means': 2,
          'nnow': 2,
          'ones': 2,
          'even': 2,
          'years': 2,
          'matter': 2,
          'dr': 2,
          'nstrangelove': 2,
          'hundred': 2,
          'plants': 2,
          'cant': 2,
          'countries': 2,
          'say': 2,
          'mission': 2,
          'therere': 1,
          'things': 1,
          'criticize': 1,
          'know': 1,
          'start': 1,
          'nrecommendation': 1,
          'turn': 1,
          'brain': 1,
          'decreasing': 1,
          'everyday': 1,
          'na': 1,
          'strike': 1,
          'earth': 1,
          'causing': 1,
          'catastrophe': 1,
          'similar': 1,
          'extinction': 1,
          'level': 1,
          'event': 1,
          'wiped': 1,
          'dinosaurs': 1,
          'follows': 1,
          'presidents': 1,
          'bid': 1,
          'rising': 1,
          'love': 1,
          'discovered': 1,
          'team': 1,
          'astronauts': 1,
          'ship': 1,
          'save': 1,
          'nfirstly': 1,
          'inferior': 1,
          'anything': 1,
          'make': 1,
          'corny': 1,
          'stupid': 1,
          'nto': 1,
          'honest': 1,
          'moved': 1,
          'trailer': 1,
          'saying': 1,
          'nmimi': 1,
          'leders': 1,
          'followup': 1,
          'equally': 1,
          'incompetent': 1,
          'stars': 1,
          'wasted': 1,
          'n': 1,
          'perhaps': 1,
          'im': 1,
          'annoyed': 1,
          'release': 1,
          'us': 1,
          'overshadowed': 1,
          'far': 1,
          'superior': 1,
          'thriller': 1,
          'assignment': 1,
          'nit': 1,
          'obvious': 1,
          'title': 1,
          'represents': 1,
          'boom': 1,
          'result': 1,
          'collision': 1,
          'connotes': 1,
          'heavy': 1,
          'lives': 1,
          'nhowever': 1,
          'simply': 1,
          'fails': 1,
          'note': 1,
          'effects': 1,
          'wornout': 1,
          'substandard': 1,
          'screenplay': 1,
          'limited': 1,
          'acting': 1,
          'continued': 1,
          'sad': 1,
          'run': 1,
          'terms': 1,
          'goodfilmmaking': 1,
          'credentials': 1,
          'nshes': 1,
          'money': 1,
          'though': 1,
          'nt': 1,
          'leonis': 1,
          'unfortunate': 1,
          'foundation': 1,
          'cast': 1,
          'suffers': 1,
          'characters': 1,
          'need': 1,
          'explored': 1,
          'nrobert': 1,
          'duvalls': 1,
          'aging': 1,
          'astronaut': 1,
          'lifeless': 1,
          'morgan': 1,
          'freemans': 1,
          'restricted': 1,
          'well': 1,
          'righteous': 1,
          'hes': 1,
          'interesting': 1,
          'nleonis': 1,
          'appealing': 1,
          'played': 1,
          'reasonable': 1,
          'conviction': 1,
          'rather': 1,
          'peculiar': 1,
          'showing': 1,
          'reporting': 1,
          'msnbc': 1,
          'definitely': 1,
          'undervalued': 1,
          'screenwriters': 1,
          'nwarning': 1,
          'spoilers': 1,
          'included': 1,
          'lot': 1,
          'irrelevant': 1,
          'predictable': 1,
          'anyway': 1,
          'nplot': 1,
          'nis': 1,
          'threatening': 1,
          'exterminate': 1,
          '99': 1,
          'race': 1,
          'send': 1,
          'eight': 1,
          'puny': 1,
          'little': 1,
          'nuclear': 1,
          'bombs': 1,
          'nwheres': 1,
          'logic': 1,
          'nleder': 1,
          'could': 1,
          'least': 1,
          'made': 1,
          'plausible': 1,
          '20': 1,
          'nand': 1,
          'turns': 1,
          'percent': 1,
          'population': 1,
          'actually': 1,
          'perish': 1,
          'less': 1,
          'selfish': 1,
          'stayed': 1,
          'home': 1,
          'victims': 1,
          'almost': 1,
          'mocking': 1,
          'telling': 1,
          'died': 1,
          'ni': 1,
          'fail': 1,
          'see': 1,
          'carrying': 1,
          'baby': 1,
          'would': 1,
          'first': 1,
          'climb': 1,
          'mountainhill': 1,
          'motorbike': 1,
          'headstart': 1,
          'nits': 1,
          'unlikely': 1,
          'dust': 1,
          'take': 1,
          'settle': 1,
          'doesnt': 1,
          'really': 1,
          'nbuilding': 1,
          'strategy': 1,
          'mentioned': 1,
          'proposed': 1,
          'lived': 1,
          'underground': 1,
          'practical': 1,
          'use': 1,
          'point': 1,
          'living': 1,
          'nthere': 1,
          'unlike': 1,
          'radioactivity': 1,
          'outside': 1,
          'restrict': 1,
          'exposure': 1,
          'nhow': 1,
          'grow': 1,
          'nif': 1,
          'humans': 1,
          'technology': 1,
          'keep': 1,
          'alive': 1,
          'theres': 1,
          'reason': 1,
          'open': 1,
          'disclosed': 1,
          'preparing': 1,
          'nobviously': 1,
          'informed': 1,
          'long': 1,
          'time': 1,
          'ago': 1,
          'serious': 1,
          'nobody': 1,
          'leaked': 1,
          'media': 1,
          'nin': 1,
          'important': 1,
          'impossible': 1,
          'sufficient': 1,
          'fuel': 1,
          'extra': 1,
          'couple': 1,
          'metres': 1,
          'needless': 1,
          'tens': 1,
          'kilometres': 1,
          'nthis': 1,
          'deep': 1,
          'frivolous': 1,
          'cheap': 1,
          'overacting': 1,
          '3': 1,
          '4': 1,
          'watchable': 1,
          'nokay': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'life': 4,
          'man': 3,
          'shakespeare': 2,
          'one': 2,
          'soul': 2,
          'work': 2,
          'rather': 2,
          'well': 2,
          'probably': 2,
          'assume': 2,
          'beautiful': 2,
          'gwyneth': 2,
          'plays': 2,
          'develop': 2,
          'guess': 2,
          'ni': 2,
          'think': 2,
          'dont': 1,
          'let': 1,
          'fool': 1,
          'believing': 1,
          'romantic': 1,
          'noirs': 1,
          'william': 1,
          'nno': 1,
          'truly': 1,
          'understand': 1,
          'heart': 1,
          'except': 1,
          'makes': 1,
          'vain': 1,
          'attempt': 1,
          'nany': 1,
          'moves': 1,
          'glamorise': 1,
          'hollywood': 1,
          'annoying': 1,
          'tendency': 1,
          'subtract': 1,
          'achievement': 1,
          'expound': 1,
          'greatness': 1,
          'nthis': 1,
          'although': 1,
          'written': 1,
          'puts': 1,
          'much': 1,
          'makeup': 1,
          'whose': 1,
          'pork': 1,
          'potatoes': 1,
          'lobster': 1,
          'champagne': 1,
          'noh': 1,
          'lets': 1,
          'fantasise': 1,
          'onwards': 1,
          'bit': 1,
          'flirtatious': 1,
          'playwrite': 1,
          'falls': 1,
          'love': 1,
          'woman': 1,
          'paltrow': 1,
          'inspiration': 1,
          'several': 1,
          'romeo': 1,
          'juliet': 1,
          'twelfth': 1,
          'night': 1,
          'nit': 1,
          'easier': 1,
          'believe': 1,
          'wet': 1,
          'dream': 1,
          'thats': 1,
          'please': 1,
          'spare': 1,
          'unnecessary': 1,
          'melodrama': 1,
          'nbut': 1,
          'version': 1,
          'wouldnt': 1,
          'draw': 1,
          'crowd': 1,
          'make': 1,
          'dollar': 1,
          'screen': 1,
          'nso': 1,
          'justification': 1,
          'romanticising': 1,
          'need': 1,
          'read': 1,
          'order': 1,
          'find': 1,
          'nas': 1,
          'oscars': 1,
          'deserved': 1,
          'nin': 1,
          'many': 1,
          'aspects': 1,
          'private': 1,
          'ryan': 1,
          'far': 1,
          'superior': 1,
          'movies': 1,
          'never': 1,
          'criteria': 1,
          'winning': 1,
          'oscar': 1,
          'time': 1,
          'reasons': 1,
          'unexplained': 1,
          'undeserving': 1,
          'win': 1,
          'accolade': 1,
          'nanother': 1,
          'sore': 1,
          'point': 1,
          'fact': 1,
          'best': 1,
          'female': 1,
          'lead': 1,
          'polished': 1,
          'cate': 1,
          'go': 1,
          'enough': 1,
          'grandfather': 1,
          'dying': 1,
          'nephew': 1,
          'hospitalised': 1,
          'people': 1,
          'start': 1,
          'feeling': 1,
          'sorry': 1,
          'nneg': 1}),
 Counter({'scifi': 3,
          'animated': 2,
          'dont': 2,
          'movie': 2,
          'nthe': 2,
          'story': 2,
          'characters': 2,
          'galaxy': 2,
          'fights': 2,
          'much': 2,
          'good': 1,
          'thing': 1,
          'movies': 1,
          'come': 1,
          'japan': 1,
          'titan': 1,
          'e': 1,
          'proof': 1,
          'hollywood': 1,
          'doesnt': 1,
          'clue': 1,
          'ni': 1,
          'know': 1,
          'film': 1,
          'supposed': 1,
          'nfrom': 1,
          'tell': 1,
          'young': 1,
          'man': 1,
          'named': 1,
          'kale': 1,
          'whos': 1,
          'one': 1,
          'last': 1,
          'survivors': 1,
          'earth': 1,
          'early': 1,
          '31st': 1,
          'century': 1,
          'unknowingly': 1,
          'possesses': 1,
          'key': 1,
          'saving': 1,
          'regenerating': 1,
          'left': 1,
          'human': 1,
          'race': 1,
          'nthats': 1,
          'fine': 1,
          'premise': 1,
          'actionpacked': 1,
          'theres': 1,
          'payoff': 1,
          'takes': 1,
          'main': 1,
          'search': 1,
          'legendary': 1,
          'ship': 1,
          'evil': 1,
          'dredge': 1,
          'aliens': 1,
          'want': 1,
          'destroy': 1,
          'apparent': 1,
          'reason': 1,
          'nso': 1,
          'process': 1,
          'get': 1,
          'lot': 1,
          'spaceship': 1,
          'fistfights': 1,
          'blaster': 1,
          'doublecrosses': 1,
          'shake': 1,
          'stick': 1,
          'ntheres': 1,
          'pointless': 1,
          'banter': 1,
          'take': 1,
          'total': 1,
          'ripoff': 1,
          'star': 1,
          'wars': 1,
          'universe': 1,
          'creators': 1,
          'bother': 1,
          'filling': 1,
          'basic': 1,
          'details': 1,
          'makes': 1,
          'confusing': 1,
          'unmotivated': 1,
          'superficial': 1,
          'plot': 1,
          'plain': 1,
          'boring': 1,
          'ndespite': 1,
          'fantastic': 1,
          'animation': 1,
          'special': 1,
          'effects': 1,
          'interesting': 1,
          'nneg': 1}),
 Counter({'apes': 8,
          'nthe': 5,
          'leo': 3,
          'planet': 3,
          'impressive': 3,
          'work': 3,
          'davidson': 2,
          'mark': 2,
          'pericles': 2,
          'pod': 2,
          'lands': 2,
          'set': 2,
          'tim': 2,
          'burtons': 2,
          'look': 2,
          'found': 2,
          'hes': 2,
          'carter': 2,
          'senator': 2,
          'warner': 2,
          'roth': 2,
          'ari': 2,
          'going': 2,
          'attempt': 2,
          'human': 2,
          'looks': 2,
          'also': 2,
          'thades': 2,
          'ape': 2,
          'real': 2,
          '2001': 2,
          'thats': 2,
          'right': 2,
          'given': 2,
          'delivers': 2,
          'undone': 2,
          'year': 1,
          '2029': 1,
          'captain': 1,
          'wahlberg': 1,
          'boogie': 1,
          'nights': 1,
          'training': 1,
          'chimp': 1,
          'pilot': 1,
          'usaf': 1,
          'oberon': 1,
          'space': 1,
          'station': 1,
          'nwhen': 1,
          'electromagnetic': 1,
          'storm': 1,
          'encountered': 1,
          'lost': 1,
          'sets': 1,
          'unauthorized': 1,
          'thousands': 1,
          'years': 1,
          'future': 1,
          'nmaybe': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'proverbial': 1,
          '100': 1,
          'chimps': 1,
          'front': 1,
          'typewriters': 1,
          'would': 1,
          'gotten': 1,
          'better': 1,
          'results': 1,
          'adaptation': 1,
          'pierre': 1,
          'boulle': 1,
          'novel': 1,
          'william': 1,
          'broyles': 1,
          'jr': 1,
          'cast': 1,
          'away': 1,
          'lawrence': 1,
          'konner': 1,
          'rosenthal': 1,
          'mighty': 1,
          'joe': 1,
          'young': 1,
          'ndirector': 1,
          'unique': 1,
          'style': 1,
          'nowhere': 1,
          'silly': 1,
          'pointless': 1,
          'remake': 1,
          'ndavidson': 1,
          'sooner': 1,
          'finds': 1,
          'swarmed': 1,
          'savages': 1,
          'running': 1,
          'terror': 1,
          'wisely': 1,
          'joins': 1,
          'nhowever': 1,
          'rounded': 1,
          'lot': 1,
          'rule': 1,
          'plant': 1,
          'handed': 1,
          'slave': 1,
          'trader': 1,
          'limbo': 1,
          'paul': 1,
          'giamatti': 1,
          'duets': 1,
          'nari': 1,
          'helena': 1,
          'bonham': 1,
          'fight': 1,
          'club': 1,
          'daughter': 1,
          'illustrious': 1,
          'sandar': 1,
          'david': 1,
          'titanic': 1,
          'simian': 1,
          'bleeding': 1,
          'heart': 1,
          'believes': 1,
          'humans': 1,
          'live': 1,
          'equal': 1,
          'standing': 1,
          'unpopular': 1,
          'notion': 1,
          'nshe': 1,
          'takes': 1,
          'liking': 1,
          'deems': 1,
          'unusual': 1,
          'ngeneral': 1,
          'thade': 1,
          'lucky': 1,
          'numbers': 1,
          'opposite': 1,
          'opinion': 1,
          'wishing': 1,
          'declaration': 1,
          'martial': 1,
          'law': 1,
          'allow': 1,
          'annihilate': 1,
          'race': 1,
          'nhes': 1,
          'sweet': 1,
          'nits': 1,
          'relatively': 1,
          'easy': 1,
          'see': 1,
          'new': 1,
          'story': 1,
          'onset': 1,
          'yet': 1,
          'ultimate': 1,
          'revelation': 1,
          'gaping': 1,
          'logic': 1,
          'holes': 1,
          'much': 1,
          'ballyhooed': 1,
          'surprise': 1,
          'ending': 1,
          'nonsensical': 1,
          'let': 1,
          'nan': 1,
          'love': 1,
          'triangle': 1,
          'conveyed': 1,
          'daena': 1,
          'estella': 1,
          'warren': 1,
          'driven': 1,
          'giving': 1,
          'back': 1,
          'fails': 1,
          'never': 1,
          'develops': 1,
          'relationship': 1,
          'either': 1,
          'lone': 1,
          'sex': 1,
          'scene': 1,
          'hilarious': 1,
          'foreplay': 1,
          'elder': 1,
          'orangutan': 1,
          'nado': 1,
          'glenn': 1,
          'shadix': 1,
          'trophy': 1,
          'wife': 1,
          'nova': 1,
          'squeeze': 1,
          'lisa': 1,
          'marie': 1,
          'nguffaws': 1,
          'likely': 1,
          'greet': 1,
          'charlton': 1,
          'hestons': 1,
          'cameo': 1,
          'father': 1,
          'one': 1,
          'harboring': 1,
          'firearm': 1,
          'sputters': 1,
          'familiar': 1,
          'lines': 1,
          'dying': 1,
          'success': 1,
          'rick': 1,
          'bakers': 1,
          'makeup': 1,
          'even': 1,
          'iffy': 1,
          'affair': 1,
          'nno': 1,
          'made': 1,
          'change': 1,
          'whiteness': 1,
          'actors': 1,
          'eyes': 1,
          'distraction': 1,
          'amidst': 1,
          'otherwise': 1,
          'nroth': 1,
          'michael': 1,
          'clarke': 1,
          'duncan': 1,
          'hand': 1,
          'man': 1,
          'attar': 1,
          'makeovers': 1,
          'ngiamatti': 1,
          'like': 1,
          'skull': 1,
          'female': 1,
          'humanized': 1,
          'sexual': 1,
          'appeal': 1,
          'ntim': 1,
          'acting': 1,
          'job': 1,
          'getting': 1,
          'body': 1,
          'language': 1,
          'nasty': 1,
          'chimpanzee': 1,
          'character': 1,
          'leaps': 1,
          'spectacularly': 1,
          'mounting': 1,
          'steed': 1,
          'evens': 1,
          'obvious': 1,
          'wire': 1,
          'nbonham': 1,
          'goodly': 1,
          'range': 1,
          'emotion': 1,
          'behind': 1,
          'stiff': 1,
          'prosthetic': 1,
          'turn': 1,
          'silliness': 1,
          'writing': 1,
          'nmost': 1,
          'film': 1,
          'bound': 1,
          'amount': 1,
          'mist': 1,
          'cover': 1,
          'city': 1,
          'resembles': 1,
          'dank': 1,
          'complex': 1,
          'tree': 1,
          'houses': 1,
          'military': 1,
          'costumes': 1,
          'colleen': 1,
          'atwood': 1,
          'sleepy': 1,
          'hollow': 1,
          'well': 1,
          'field': 1,
          'tents': 1,
          'reminiscent': 1,
          'eiko': 1,
          'ishiokas': 1,
          'coppolas': 1,
          'dracula': 1,
          'nthat': 1,
          'oriental': 1,
          'flavor': 1,
          'danny': 1,
          'elfmans': 1,
          'tribal': 1,
          'percussive': 1,
          'score': 1,
          'n': 1,
          'last': 1,
          'blockbuster': 1,
          'hope': 1,
          'summer': 1,
          'dismal': 1,
          'movie': 1,
          'season': 1,
          'dogs': 1,
          'nneg': 1}),
 Counter({'movie': 10,
          'jackal': 10,
          'good': 9,
          'guy': 8,
          'like': 8,
          'bad': 7,
          'great': 6,
          'gere': 6,
          'kill': 4,
          'get': 4,
          'nthe': 4,
          'writing': 3,
          'screenplay': 3,
          'hard': 3,
          'nand': 3,
          'big': 3,
          'something': 3,
          'trying': 3,
          'two': 3,
          'jackals': 3,
          'plan': 3,
          'fbi': 3,
          'hes': 3,
          'thriller': 2,
          'nharder': 2,
          'whole': 2,
          'nyou': 2,
          'interesting': 2,
          'nthis': 2,
          'formula': 2,
          'lead': 2,
          'movies': 2,
          'black': 2,
          'enough': 2,
          'extra': 2,
          'better': 2,
          'last': 2,
          'surprise': 2,
          'people': 2,
          'whether': 2,
          'plot': 2,
          'performances': 2,
          'nbruce': 2,
          'willis': 2,
          'nrichard': 2,
          'stop': 2,
          'count': 2,
          'script': 2,
          'ripped': 2,
          'straight': 2,
          'nits': 2,
          'millennium': 2,
          'ninstead': 2,
          'never': 2,
          'go': 2,
          'major': 2,
          'see': 2,
          'performance': 2,
          'disappointing': 2,
          'done': 2,
          'nit': 2,
          'fire': 2,
          'pouring': 1,
          'concrete': 1,
          'texas': 1,
          'sun': 1,
          'building': 1,
          'bridge': 1,
          'troubled': 1,
          'waters': 1,
          'incidentally': 1,
          'heck': 1,
          'lot': 1,
          'harder': 1,
          'review': 1,
          'nthrillers': 1,
          'variations': 1,
          'theme': 1,
          'smart': 1,
          'resourceful': 1,
          'powerful': 1,
          'goal': 1,
          'meet': 1,
          'noble': 1,
          'brave': 1,
          'protect': 1,
          'innocent': 1,
          'killed': 1,
          'process': 1,
          'trick': 1,
          'novel': 1,
          'manner': 1,
          'simple': 1,
          'classic': 1,
          'north': 1,
          'northwest': 1,
          'high': 1,
          'noon': 1,
          'silence': 1,
          'lambs': 1,
          'summer': 1,
          'blockbusters': 1,
          'men': 1,
          'fugitive': 1,
          'air': 1,
          'force': 1,
          'one': 1,
          'utter': 1,
          'dreck': 1,
          'masterminds': 1,
          'event': 1,
          'horizon': 1,
          'kull': 1,
          'conqueror': 1,
          'nis': 1,
          'anyone': 1,
          'else': 1,
          'getting': 1,
          'depressed': 1,
          'npoint': 1,
          'follow': 1,
          'nyouve': 1,
          'got': 1,
          'throw': 1,
          'new': 1,
          'version': 1,
          'nsomething': 1,
          'move': 1,
          'us': 1,
          'buy': 1,
          'tickets': 1,
          'popcorn': 1,
          'happy': 1,
          'meals': 1,
          'thing': 1,
          'absolutely': 1,
          'necessary': 1,
          'every': 1,
          'way': 1,
          'nwithout': 1,
          'wellwritten': 1,
          'special': 1,
          'effects': 1,
          'locations': 1,
          'casting': 1,
          'hungry': 1,
          'dinosaurs': 1,
          'fails': 1,
          'nthats': 1,
          'starpower': 1,
          'budget': 1,
          'hype': 1,
          'gets': 1,
          'fat': 1,
          'f': 1,
          'legendary': 1,
          'killer': 1,
          'hire': 1,
          'former': 1,
          'ira': 1,
          'assassin': 1,
          'vendetta': 1,
          'someone': 1,
          'ngere': 1,
          'nwill': 1,
          'able': 1,
          'assassination': 1,
          'time': 1,
          'n': 1,
          'ill': 1,
          'give': 1,
          'three': 1,
          'guesses': 1,
          'first': 1,
          'dont': 1,
          'nthere': 1,
          'surprises': 1,
          'awaiting': 1,
          'audience': 1,
          'moment': 1,
          'say': 1,
          'wonder': 1,
          'happens': 1,
          'next': 1,
          'isnt': 1,
          'todays': 1,
          'headlines': 1,
          'episode': 1,
          'nthroughout': 1,
          'learn': 1,
          'plans': 1,
          'intends': 1,
          'accomplish': 1,
          'nno': 1,
          'fun': 1,
          'come': 1,
          'richard': 1,
          'figuring': 1,
          'developing': 1,
          'clever': 1,
          'foil': 1,
          'em': 1,
          'scenes': 1,
          'sitting': 1,
          'conference': 1,
          'room': 1,
          'somewhere': 1,
          'instantly': 1,
          'divines': 1,
          'frank': 1,
          'likely': 1,
          'handed': 1,
          'copy': 1,
          'superficial': 1,
          'clue': 1,
          'flash': 1,
          'insight': 1,
          'geres': 1,
          'character': 1,
          'psychic': 1,
          'neither': 1,
          'screenwriters': 1,
          'seem': 1,
          'know': 1,
          'overwhelming': 1,
          'need': 1,
          'cares': 1,
          'important': 1,
          'nwhats': 1,
          'half': 1,
          'supposedly': 1,
          'supersmart': 1,
          'professional': 1,
          'terrorist': 1,
          'makes': 1,
          'mistake': 1,
          'comes': 1,
          'case': 1,
          'stupids': 1,
          'nas': 1,
          'manages': 1,
          'without': 1,
          'wisecrack': 1,
          'achievement': 1,
          'reason': 1,
          'nhis': 1,
          'disguises': 1,
          'val': 1,
          'kilmers': 1,
          'saint': 1,
          'made': 1,
          'talk': 1,
          'entire': 1,
          'irish': 1,
          'accent': 1,
          'detracts': 1,
          'otherwise': 1,
          'lifeless': 1,
          'dull': 1,
          'nsidney': 1,
          'poitier': 1,
          'probably': 1,
          'element': 1,
          'overwhelmingly': 1,
          'anything': 1,
          'sad': 1,
          'hollywood': 1,
          'wont': 1,
          'use': 1,
          'talented': 1,
          'actor': 1,
          'part': 1,
          'agent': 1,
          'shoot': 1,
          'sneakers': 1,
          'nwriting': 1,
          'said': 1,
          'wasnt': 1,
          'job': 1,
          'consumers': 1,
          'reward': 1,
          'screenplays': 1,
          'denounce': 1,
          'uninteresting': 1,
          'ones': 1,
          'ndo': 1,
          'nyoull': 1,
          'encourage': 1,
          'producers': 1,
          'make': 1,
          'stay': 1,
          'home': 1,
          'rent': 1,
          'day': 1,
          'line': 1,
          'safety': 1,
          'video': 1,
          'crying': 1,
          'loud': 1,
          'nanything': 1,
          'lives': 1,
          'name': 1,
          'gnawing': 1,
          'dead': 1,
          'bones': 1,
          'nneg': 1}),
 Counter({'speechless': 6,
          'campaign': 6,
          'one': 6,
          'kevin': 5,
          'julia': 4,
          'story': 3,
          'romantic': 3,
          'keaton': 3,
          'nthe': 3,
          'theyre': 3,
          'right': 2,
          'get': 2,
          'romance': 2,
          '1992': 2,
          'carville': 2,
          'nin': 2,
          'script': 2,
          'well': 2,
          'realizes': 2,
          'speech': 2,
          'actually': 2,
          'nspeechless': 2,
          'comedy': 2,
          'michael': 2,
          'geena': 2,
          'davis': 2,
          'neither': 2,
          'writer': 2,
          'punch': 2,
          'first': 2,
          'nbut': 2,
          'julias': 2,
          'love': 2,
          'politics': 2,
          'like': 2,
          'end': 2,
          'robert': 2,
          'king': 2,
          'completely': 2,
          'even': 2,
          'characters': 2,
          'already': 2,
          'waiting': 2,
          'kings': 2,
          'performances': 2,
          'scenes': 2,
          'nothing': 2,
          'character': 2,
          'happens': 2,
          'seems': 2,
          'never': 2,
          'underwood': 2,
          'paper': 2,
          'point': 1,
          'despite': 1,
          'similarities': 1,
          'bestselling': 1,
          'based': 1,
          'presidential': 1,
          'rivals': 1,
          'james': 1,
          'mary': 1,
          'matalin': 1,
          'fact': 1,
          'development': 1,
          'nstill': 1,
          'comparisons': 1,
          'inevitable': 1,
          'critical': 1,
          'difference': 1,
          'nno': 1,
          'twosome': 1,
          'writers': 1,
          'managers': 1,
          'matalins': 1,
          'interesting': 1,
          'limp': 1,
          'poorly': 1,
          'structured': 1,
          'wouldbe': 1,
          'set': 1,
          'new': 1,
          'mexico': 1,
          'senatorial': 1,
          'vallick': 1,
          'mann': 1,
          'meet': 1,
          'night': 1,
          'sleep': 1,
          'nwhat': 1,
          'opposite': 1,
          'sides': 1,
          'sitcom': 1,
          'brought': 1,
          'republican': 1,
          'candidates': 1,
          'speeches': 1,
          'chief': 1,
          'democratic': 1,
          'candidate': 1,
          'nat': 1,
          'believes': 1,
          'ulterior': 1,
          'motive': 1,
          'relationship': 1,
          'eventually': 1,
          'let': 1,
          'guard': 1,
          'become': 1,
          'closer': 1,
          'plent': 1,
          'obstacles': 1,
          'way': 1,
          'including': 1,
          'studreporter': 1,
          'fiance': 1,
          'christopher': 1,
          'reeve': 1,
          'series': 1,
          'stunts': 1,
          'continue': 1,
          'prove': 1,
          'alls': 1,
          'fair': 1,
          'standard': 1,
          'formula': 1,
          'movie': 1,
          'would': 1,
          'two': 1,
          'principles': 1,
          'starting': 1,
          'antagonists': 1,
          'realizing': 1,
          'crazy': 1,
          'nscreenwriter': 1,
          'subverts': 1,
          'expectations': 1,
          'throwing': 1,
          'others': 1,
          'arms': 1,
          'fifteen': 1,
          'minutes': 1,
          'developing': 1,
          'antagonism': 1,
          'nits': 1,
          'noble': 1,
          'attempt': 1,
          'shake': 1,
          'things': 1,
          'unfortunately': 1,
          'doesnt': 1,
          'work': 1,
          'npart': 1,
          'fun': 1,
          'watching': 1,
          'sparring': 1,
          'comes': 1,
          'recognizing': 1,
          'chemistry': 1,
          'know': 1,
          'attracted': 1,
          'left': 1,
          'theyll': 1,
          'admit': 1,
          'nthere': 1,
          'herkyjerky': 1,
          'feel': 1,
          'constant': 1,
          'bickering': 1,
          'making': 1,
          'sharp': 1,
          'dialogue': 1,
          'cant': 1,
          'prevent': 1,
          'becoming': 1,
          'repetitive': 1,
          'half': 1,
          'hour': 1,
          'ninconsistency': 1,
          'also': 1,
          'defining': 1,
          'characteristic': 1,
          'together': 1,
          'problems': 1,
          'begin': 1,
          'initial': 1,
          'courtship': 1,
          'virtually': 1,
          'establish': 1,
          'merely': 1,
          'establishes': 1,
          'wiseass': 1,
          'ndavis': 1,
          'radiantly': 1,
          'beautiful': 1,
          'generally': 1,
          'entertaining': 1,
          'plastic': 1,
          'matter': 1,
          'bit': 1,
          'couple': 1,
          'quiet': 1,
          'moment': 1,
          'sitting': 1,
          'fountain': 1,
          'achieve': 1,
          'measure': 1,
          'connection': 1,
          'nfor': 1,
          'part': 1,
          'however': 1,
          'actors': 1,
          'spouting': 1,
          'lines': 1,
          'nyou': 1,
          'keep': 1,
          'little': 1,
          'spark': 1,
          'nperhaps': 1,
          'disappointing': 1,
          'director': 1,
          'ron': 1,
          'waste': 1,
          'premise': 1,
          'removing': 1,
          'speechlesss': 1,
          'setting': 1,
          'perfect': 1,
          'high': 1,
          'energy': 1,
          'battle': 1,
          'sexes': 1,
          'partisanship': 1,
          'thrown': 1,
          'mix': 1,
          'thats': 1,
          'tone': 1,
          'going': 1,
          'nhe': 1,
          'wants': 1,
          'warm': 1,
          'fuzzy': 1,
          'compatible': 1,
          'marc': 1,
          'shaimans': 1,
          'fluteandwind': 1,
          'musical': 1,
          'score': 1,
          'defined': 1,
          'conflict': 1,
          'fades': 1,
          'background': 1,
          'nit': 1,
          'might': 1,
          'rival': 1,
          'grocers': 1,
          'every': 1,
          'single': 1,
          'uninspired': 1,
          'could': 1,
          'possibly': 1,
          'ni': 1,
          'reviewer': 1,
          'civilized': 1,
          'world': 1,
          'seemed': 1,
          'enjoy': 1,
          'previous': 1,
          'screenplay': 1,
          'dana': 1,
          'carvey': 1,
          'flop': 1,
          'clean': 1,
          'slate': 1,
          'hopes': 1,
          'wit': 1,
          'words': 1,
          'probably': 1,
          'much': 1,
          'better': 1,
          'non': 1,
          'screen': 1,
          'still': 1,
          'thin': 1,
          'nneg': 1}),
 Counter({'film': 10,
          'one': 9,
          'high': 8,
          'school': 8,
          'nthe': 7,
          'teenage': 4,
          'never': 4,
          'josie': 4,
          'two': 4,
          'character': 4,
          'movie': 4,
          'absolutely': 4,
          'audience': 3,
          'particular': 3,
          'don92t': 3,
          'trash': 3,
          'kissed': 3,
          'barrymore': 3,
          'nshe': 3,
          'nbut': 3,
          'life': 3,
          'reporter': 3,
          'field': 3,
          'assignment': 3,
          'otherwise': 3,
          'even': 3,
          'scenes': 3,
          'arquette': 3,
          'scene': 3,
          'humor': 3,
          'acting': 3,
          'seems': 3,
          'performance': 3,
          'teenagers': 2,
          'hollywood': 2,
          'films': 2,
          'population': 2,
          'saturday': 2,
          'simple': 2,
          'make': 2,
          'add': 2,
          'environment': 2,
          'features': 2,
          'conflict': 2,
          'minutes': 2,
          'attention': 2,
          'relate': 2,
          'quality': 2,
          'piece': 2,
          'drew': 2,
          'chicago': 2,
          'office': 2,
          'much': 2,
          'play': 2,
          'quite': 2,
          'work': 2,
          'molly': 2,
          'shannon': 2,
          'since': 2,
          'interesting': 2,
          'scenario': 2,
          'become': 2,
          'ever': 2,
          'show': 2,
          'predictable': 2,
          'love': 2,
          'teacher': 2,
          'david': 2,
          'comes': 2,
          'found': 2,
          'condom': 2,
          'nfollowing': 2,
          'trend': 2,
          'nit': 2,
          'nin': 2,
          'watch': 2,
          'nand': 2,
          'gray': 2,
          'time': 2,
          'lot': 1,
          'power': 1,
          'nevery': 1,
          'year': 1,
          'countless': 1,
          'made': 1,
          'targeting': 1,
          'rely': 1,
          'entire': 1,
          'turn': 1,
          'friday': 1,
          'nights': 1,
          'wallets': 1,
          'hand': 1,
          'formula': 1,
          'big': 1,
          'name': 1,
          'young': 1,
          'actor': 1,
          'actress': 1,
          'sex': 1,
          'appeal': 1,
          'nyou': 1,
          'everyone': 1,
          'prom': 1,
          'queens': 1,
          'math': 1,
          'club': 1,
          'nerds': 1,
          'relationship': 1,
          'worked': 1,
          '90': 1,
          'typical': 1,
          'span': 1,
          'response': 1,
          'enormous': 1,
          'part': 1,
          'waste': 1,
          'it92s': 1,
          'money': 1,
          'almost': 1,
          'set': 1,
          'importantly': 1,
          'care': 1,
          'judge': 1,
          'films92': 1,
          'due': 1,
          'nthat': 1,
          'latest': 1,
          'director': 1,
          'raja': 1,
          'gosnell': 1,
          'njosie': 1,
          'geller': 1,
          'youngest': 1,
          'copy': 1,
          'editor': 1,
          'history': 1,
          'sun': 1,
          'times': 1,
          'personal': 1,
          'assistant': 1,
          'unlimited': 1,
          'supplies': 1,
          'dismayed': 1,
          'position': 1,
          'nthere': 1,
          'nothing': 1,
          'wants': 1,
          'go': 1,
          'active': 1,
          'role': 1,
          'media': 1,
          'nso': 1,
          'literally': 1,
          'thrown': 1,
          'nowhere': 1,
          'jumps': 1,
          'elation': 1,
          'nconstantly': 1,
          'smothering': 1,
          'place': 1,
          'friend': 1,
          'anita': 1,
          'amicable': 1,
          'superior': 1,
          'gus': 1,
          'john': 1,
          'c': 1,
          'reilly': 1,
          'stricken': 1,
          'horror': 1,
          'upon': 1,
          'hearing': 1,
          'news': 1,
          'first': 1,
          'deem': 1,
          'worker': 1,
          'nhowever': 1,
          'aimed': 1,
          'little': 1,
          'patience': 1,
          'resolved': 1,
          'within': 1,
          'headed': 1,
          'nobviously': 1,
          'involves': 1,
          'nspecifically': 1,
          'undercover': 1,
          'enrolling': 1,
          'senior': 1,
          'class': 1,
          'becoming': 1,
          'ni': 1,
          'think': 1,
          'need': 1,
          'begin': 1,
          'explain': 1,
          'impossibilities': 1,
          'situation': 1,
          'occurring': 1,
          'won92t': 1,
          'develops': 1,
          'trying': 1,
          'find': 1,
          'led': 1,
          'ninterwoven': 1,
          'flashback': 1,
          'us': 1,
          'dork': 1,
          'truly': 1,
          'appears': 1,
          'heading': 1,
          'road': 1,
          'nfortunately': 1,
          'lame': 1,
          'production': 1,
          'characters': 1,
          'appear': 1,
          'humorous': 1,
          'remotely': 1,
          'nthey': 1,
          'include': 1,
          'stories': 1,
          'student': 1,
          'jeremy': 1,
          'jordan': 1,
          'michael': 1,
          'vartan': 1,
          'really': 1,
          'people': 1,
          'body': 1,
          'nalso': 1,
          'younger': 1,
          'brother': 1,
          'opposite': 1,
          'rob': 1,
          'new': 1,
          'causes': 1,
          'rare': 1,
          'mildly': 1,
          'provocative': 1,
          'actually': 1,
          'amusing': 1,
          'ntypical': 1,
          'chalk': 1,
          'full': 1,
          'sexual': 1,
          'innuendoes': 1,
          'none': 1,
          'certain': 1,
          'classroom': 1,
          'activity': 1,
          'involving': 1,
          'bananas': 1,
          'latex': 1,
          'hysterical': 1,
          'nmost': 1,
          'jokes': 1,
          'straight': 1,
          'forward': 1,
          'anyone': 1,
          'appreciate': 1,
          'enjoy': 1,
          'still': 1,
          'recover': 1,
          'total': 1,
          'lack': 1,
          'rules': 1,
          'general': 1,
          'worse': 1,
          'overplaying': 1,
          'case': 1,
          'painful': 1,
          'required': 1,
          'levels': 1,
          'black': 1,
          'white': 1,
          'transitions': 1,
          'although': 1,
          'written': 1,
          'shades': 1,
          'hold': 1,
          'color': 1,
          'throughout': 1,
          'screen': 1,
          'nat': 1,
          'point': 1,
          'alone': 1,
          'obvious': 1,
          'interest': 1,
          'ferris': 1,
          'wheel': 1,
          'expected': 1,
          'adult': 1,
          'level': 1,
          'get': 1,
          'area': 1,
          'makes': 1,
          'mockery': 1,
          'good': 1,
          'pitiful': 1,
          'night': 1,
          'live': 1,
          'limited': 1,
          'playing': 1,
          'ecstatic': 1,
          'draws': 1,
          'simply': 1,
          'unrealistic': 1,
          'qualities': 1,
          'prevent': 1,
          'aforementioned': 1,
          'decent': 1,
          'nluckily': 1,
          'great': 1,
          'emerge': 1,
          'bleak': 1,
          'ndavid': 1,
          'scream': 1,
          'takes': 1,
          'home': 1,
          'prize': 1,
          'able': 1,
          'stand': 1,
          'ensemble': 1,
          'pathetic': 1,
          'brilliant': 1,
          'ruined': 1,
          'central': 1,
          'gets': 1,
          'take': 1,
          'miniplot': 1,
          'well': 1,
          'done': 1,
          'parts': 1,
          'dazzling': 1,
          'cherryonthesundae': 1,
          'type': 1,
          'hilarious': 1,
          'tom': 1,
          'cruise': 1,
          'impression': 1,
          '1983': 1,
          'hit': 1,
          'risky': 1,
          'business': 1,
          'nnever': 1,
          'mediocre': 1,
          'best': 1,
          'plot': 1,
          'overplayed': 1,
          'sickening': 1,
          'exception': 1,
          'bad': 1,
          'positive': 1,
          'presence': 1,
          'light': 1,
          'nunfortunately': 1,
          'bottom': 1,
          'line': 1,
          'success': 1,
          'pay': 1,
          'see': 1,
          'nneg': 1}),
 Counter({'film': 3,
          'crosses': 3,
          'walken': 2,
          'mobster': 2,
          'four': 2,
          'rich': 2,
          'nit': 2,
          'another': 2,
          'kings': 2,
          'nofallon': 2,
          'types': 2,
          'nin': 2,
          'scene': 2,
          'plot': 2,
          'entirely': 2,
          'story': 2,
          'never': 2,
          'movie': 2,
          'guys': 2,
          'niche': 2,
          'stars': 1,
          'kidnapped': 1,
          'held': 1,
          'ransom': 1,
          'bratty': 1,
          'kids': 1,
          'seems': 1,
          'woman': 1,
          'also': 1,
          'kidnappedshe': 1,
          'sister': 1,
          'one': 1,
          'e': 1,
          'nhenry': 1,
          'thomas': 1,
          'girlfriend': 1,
          'flannery': 1,
          'asking': 1,
          'price': 1,
          '2': 1,
          'million': 1,
          'said': 1,
          'snots': 1,
          'unable': 1,
          'cough': 1,
          'alone': 1,
          'nthey': 1,
          'even': 1,
          'cut': 1,
          'walkens': 1,
          'finger': 1,
          'show': 1,
          'mean': 1,
          'business': 1,
          'desperate': 1,
          'save': 1,
          'womans': 1,
          'life': 1,
          'nsuicide': 1,
          'terrible': 1,
          'nwalken': 1,
          'aside': 1,
          'isnt': 1,
          'single': 1,
          'appealing': 1,
          'cast': 1,
          'member': 1,
          'creates': 1,
          'characters': 1,
          'functional': 1,
          'without': 1,
          'resonance': 1,
          'amusingly': 1,
          'unironic': 1,
          'plays': 1,
          'poker': 1,
          'foursome': 1,
          'describes': 1,
          'personalities': 1,
          'teeits': 1,
          'reading': 1,
          'summary': 1,
          'sheet': 1,
          'casting': 1,
          'director': 1,
          'nthe': 1,
          'issue': 1,
          'someone': 1,
          'im': 1,
          'betting': 1,
          'seen': 1,
          'reservoir': 1,
          'dogs': 1,
          'usual': 1,
          'suspects': 1,
          'many': 1,
          'times': 1,
          'veer': 1,
          'bizarre': 1,
          'tangents': 1,
          'whence': 1,
          'return': 1,
          'really': 1,
          'need': 1,
          'dennis': 1,
          'leary': 1,
          'beats': 1,
          'abusive': 1,
          'father': 1,
          'toaster': 1,
          'unrelated': 1,
          'learys': 1,
          'character': 1,
          'numerous': 1,
          'anecdotal': 1,
          'sequences': 1,
          'central': 1,
          'serpentine': 1,
          'mess': 1,
          'filled': 1,
          'double': 1,
          'triple': 1,
          'nby': 1,
          'fourth': 1,
          'big': 1,
          'revelationtwist': 1,
          'completely': 1,
          'tuned': 1,
          'wondering': 1,
          'earth': 1,
          'attracted': 1,
          'actors': 1,
          'material': 1,
          'nrecently': 1,
          'peer': 1,
          'fellow': 1,
          'young': 1,
          'filmmaker': 1,
          'informed': 1,
          'idea': 1,
          'mob': 1,
          'fbi': 1,
          'occurred': 1,
          'whats': 1,
          'wrong': 1,
          'indies': 1,
          'like': 1,
          'suicide': 1,
          'suspect': 1,
          'ofallon': 1,
          'met': 1,
          'man': 1,
          'doesnt': 1,
          'deliver': 1,
          'endless': 1,
          'clever': 1,
          'monologues': 1,
          'friends': 1,
          'favourite': 1,
          'boots': 1,
          'short': 1,
          'riffing': 1,
          'movies': 1,
          'making': 1,
          'ntarantino': 1,
          'found': 1,
          'hundreds': 1,
          'genxers': 1,
          'cameras': 1,
          'trying': 1,
          'find': 1,
          'tarantinos': 1,
          'instead': 1,
          'carving': 1,
          'nreviewed': 1,
          'toronto': 1,
          'international': 1,
          'festival': 1,
          'nneg': 1}),
 Counter({'julie': 5,
          'film': 5,
          'character': 5,
          'get': 5,
          'jawbreaker': 4,
          'played': 4,
          'like': 4,
          'one': 4,
          'acting': 4,
          'annoying': 4,
          'prank': 3,
          'mcgowan': 3,
          'group': 3,
          'death': 3,
          'teen': 3,
          'time': 3,
          'greer': 3,
          'even': 3,
          'strong': 3,
          'nthe': 3,
          'tale': 2,
          'innocent': 2,
          'birthday': 2,
          'four': 2,
          'ncourtney': 2,
          'rose': 2,
          'school': 2,
          'also': 2,
          'rebecca': 2,
          'gayheart': 2,
          'liz': 2,
          'marcie': 2,
          'benz': 2,
          'three': 2,
          'directed': 2,
          'nand': 2,
          'movies': 2,
          'dont': 2,
          'trying': 2,
          'well': 2,
          'turns': 2,
          'bad': 2,
          'script': 2,
          'undeniably': 2,
          'dimensional': 2,
          'line': 2,
          'side': 2,
          'wickedly': 2,
          'always': 2,
          'roles': 2,
          'njawbreaker': 2,
          'anything': 2,
          'die': 2,
          'writer': 1,
          'director': 1,
          'darren': 1,
          'stein': 1,
          'comes': 1,
          'poorly': 1,
          'told': 1,
          'happen': 1,
          'goes': 1,
          'wrong': 1,
          'nat': 1,
          'reagan': 1,
          'high': 1,
          'girls': 1,
          'sitting': 1,
          'top': 1,
          'world': 1,
          'shane': 1,
          'holds': 1,
          'title': 1,
          'meanest': 1,
          'disrespectful': 1,
          'soul': 1,
          'neveryone': 1,
          'hates': 1,
          'everyone': 1,
          'envies': 1,
          'due': 1,
          'popularity': 1,
          'leader': 1,
          'clique': 1,
          'includes': 1,
          'purr': 1,
          'charlotte': 1,
          'roldan': 1,
          'nit': 1,
          'lizs': 1,
          'seventeenth': 1,
          'courtney': 1,
          'concur': 1,
          'play': 1,
          'seemingly': 1,
          'results': 1,
          'njust': 1,
          'stupid': 1,
          'teens': 1,
          'foursome': 1,
          'decide': 1,
          'cover': 1,
          'make': 1,
          'look': 1,
          'murder': 1,
          'committed': 1,
          'someone': 1,
          'else': 1,
          'agree': 1,
          'hiding': 1,
          'finally': 1,
          'witness': 1,
          'outside': 1,
          'hide': 1,
          'truth': 1,
          'nthis': 1,
          'fern': 1,
          'mayo': 1,
          'judy': 1,
          'subject': 1,
          'many': 1,
          'cracks': 1,
          'courtneys': 1,
          'entire': 1,
          'nfrom': 1,
          'predictable': 1,
          'revenge': 1,
          'morals': 1,
          'least': 1,
          'right': 1,
          'thing': 1,
          'nnot': 1,
          'weak': 1,
          'whole': 1,
          'horrid': 1,
          'thanks': 1,
          'large': 1,
          'amount': 1,
          'main': 1,
          'cast': 1,
          'njudy': 1,
          'awful': 1,
          'overacts': 1,
          'every': 1,
          'nalso': 1,
          'almost': 1,
          'falling': 1,
          'factor': 1,
          'delivers': 1,
          'non': 1,
          'positive': 1,
          'performs': 1,
          'doesnt': 1,
          'match': 1,
          'clever': 1,
          'performance': 1,
          'tatum': 1,
          '1996s': 1,
          'scream': 1,
          'nmcgowans': 1,
          'role': 1,
          'adds': 1,
          'nshe': 1,
          'mean': 1,
          'though': 1,
          'wellwritten': 1,
          'downright': 1,
          'hate': 1,
          'nfaring': 1,
          'better': 1,
          'exceptionally': 1,
          'believable': 1,
          'nwhen': 1,
          'feeds': 1,
          'two': 1,
          'putting': 1,
          'emotion': 1,
          'power': 1,
          'ngayheart': 1,
          'isnt': 1,
          'given': 1,
          'much': 1,
          '1998s': 1,
          'urban': 1,
          'legend': 1,
          'still': 1,
          'taste': 1,
          'skills': 1,
          'drifts': 1,
          'mianders': 1,
          'different': 1,
          'sub': 1,
          'plots': 1,
          'throughout': 1,
          'hardly': 1,
          'throwing': 1,
          'viewer': 1,
          'absorbed': 1,
          'nwe': 1,
          'way': 1,
          'topic': 1,
          'incident': 1,
          'things': 1,
          'actual': 1,
          'beginning': 1,
          'ending': 1,
          'middle': 1,
          'needs': 1,
          'lot': 1,
          'help': 1,
          'nduring': 1,
          'body': 1,
          'movie': 1,
          'repetitive': 1,
          'never': 1,
          'progressing': 1,
          'towards': 1,
          'conclusion': 1,
          'nnothing': 1,
          'grab': 1,
          'viewers': 1,
          'interest': 1,
          'around': 1,
          'extremely': 1,
          'song': 1,
          'plays': 1,
          'tries': 1,
          'humor': 1,
          'used': 1,
          '1995': 1,
          'clueless': 1,
          'falls': 1,
          'flat': 1,
          'gags': 1,
          'actually': 1,
          'work': 1,
          'quickly': 1,
          'bang': 1,
          'nall': 1,
          'horrible': 1,
          'disappointment': 1,
          'bottom': 1,
          'tagline': 1,
          'reads': 1,
          'sweetest': 1,
          'candies': 1,
          'sour': 1,
          'inside': 1,
          'nyes': 1,
          'true': 1,
          'nno': 1,
          'matter': 1,
          'good': 1,
          'may': 1,
          'looked': 1,
          'fails': 1,
          'deliver': 1,
          'nneg': 1}),
 Counter({'good': 12,
          'bad': 11,
          'movie': 10,
          'nthe': 6,
          'really': 6,
          'one': 5,
          'performance': 5,
          'get': 5,
          'movies': 4,
          'would': 4,
          'unfunny': 4,
          'doesnt': 4,
          'chris': 4,
          'odonnell': 4,
          'seems': 4,
          'even': 4,
          'minutes': 4,
          'time': 4,
          'well': 3,
          'like': 3,
          'year': 3,
          'bachelor': 3,
          'give': 3,
          'two': 3,
          'date': 3,
          'jimmie': 3,
          'anne': 3,
          'wants': 3,
          'nhe': 3,
          'help': 3,
          'money': 3,
          'neven': 3,
          'old': 3,
          'funny': 3,
          'terrible': 3,
          'film': 3,
          'another': 2,
          'acting': 2,
          'work': 2,
          'levels': 2,
          'fact': 2,
          'rene': 2,
          'zellwegar': 2,
          'brooke': 2,
          'shields': 2,
          'mariah': 2,
          'carey': 2,
          'also': 2,
          'worst': 2,
          'stupid': 2,
          'plot': 2,
          'shelton': 2,
          'hit': 2,
          'three': 2,
          'little': 2,
          'marry': 2,
          'nothing': 2,
          'could': 2,
          'romantic': 2,
          'roles': 2,
          'lange': 2,
          'hal': 2,
          'holbrook': 2,
          'anser': 2,
          'idea': 2,
          'five': 2,
          'dialogue': 2,
          'dont': 2,
          'though': 2,
          'gave': 2,
          'showed': 2,
          'cant': 2,
          'think': 2,
          'nits': 2,
          'career': 2,
          'back': 2,
          'filmmakers': 2,
          'want': 2,
          'parts': 2,
          'sure': 2,
          'thier': 2,
          'goes': 1,
          'nsadly': 1,
          'wasnt': 1,
          'nthis': 1,
          'almost': 1,
          'omega': 1,
          'code': 1,
          'quite': 1,
          'nfrom': 1,
          'opening': 1,
          'credits': 1,
          'feeling': 1,
          'guess': 1,
          'right': 1,
          'nwith': 1,
          'excuses': 1,
          'horrible': 1,
          'screenplay': 1,
          'straightout': 1,
          'direction': 1,
          'terribly': 1,
          'accept': 1,
          'cameos': 1,
          'best': 1,
          'troubled': 1,
          'start': 1,
          'hugely': 1,
          'miscast': 1,
          'gives': 1,
          'performances': 1,
          'nhere': 1,
          'plays': 1,
          'man': 1,
          'broken': 1,
          'girlfriend': 1,
          'meets': 1,
          'instantly': 1,
          'together': 1,
          'years': 1,
          'njimmie': 1,
          'decides': 1,
          'bring': 1,
          'relationship': 1,
          'bit': 1,
          'realize': 1,
          'thinks': 1,
          'never': 1,
          'catch': 1,
          'nso': 1,
          'proposes': 1,
          'way': 1,
          'shoots': 1,
          'mad': 1,
          'course': 1,
          'tries': 1,
          'apologize': 1,
          'nthen': 1,
          'grandfather': 1,
          'dies': 1,
          'learns': 1,
          'left': 1,
          '100': 1,
          'million': 1,
          'dollars': 1,
          'nlong': 1,
          'marries': 1,
          'next': 1,
          'day': 1,
          '6': 1,
          '05': 1,
          'pm': 1,
          'nnow': 1,
          'must': 1,
          'find': 1,
          'try': 1,
          'loves': 1,
          'married': 1,
          'someone': 1,
          'else': 1,
          'leading': 1,
          'predictable': 1,
          'ending': 1,
          'leaves': 1,
          'taste': 1,
          'mouths': 1,
          'nok': 1,
          'maybe': 1,
          'dumbest': 1,
          'cliched': 1,
          'silliest': 1,
          'comedy': 1,
          'real': 1,
          'big': 1,
          'laughs': 1,
          'supporting': 1,
          'artie': 1,
          'ed': 1,
          'arent': 1,
          'script': 1,
          'written': 1,
          'less': 1,
          'choppy': 1,
          'directing': 1,
          'things': 1,
          'ok': 1,
          'batman': 1,
          'remotely': 1,
          'wanted': 1,
          'boo': 1,
          'throw': 1,
          'pop': 1,
          'screen': 1,
          'rid': 1,
          'nrene': 1,
          'zelweggar': 1,
          'different': 1,
          'story': 1,
          'charming': 1,
          'sweet': 1,
          'likable': 1,
          'usual': 1,
          'thing': 1,
          'saved': 1,
          'confused': 1,
          'total': 1,
          'huge': 1,
          'washout': 1,
          'nher': 1,
          'sister': 1,
          'played': 1,
          'marley': 1,
          'chemistry': 1,
          'onscreen': 1,
          'nbrooke': 1,
          'bigheaded': 1,
          'mogul': 1,
          'became': 1,
          'routine': 1,
          'none': 1,
          'seen': 1,
          'stuff': 1,
          'original': 1,
          'end': 1,
          'everyone': 1,
          'knows': 1,
          'going': 1,
          'happen': 1,
          'due': 1,
          'cliches': 1,
          'typicalness': 1,
          'works': 1,
          'ned': 1,
          'wasted': 1,
          'act': 1,
          'save': 1,
          'soul': 1,
          'dispite': 1,
          'terrific': 1,
          'music': 1,
          'nchris': 1,
          'actor': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'saying': 1,
          'great': 1,
          'deal': 1,
          'held': 1,
          'character': 1,
          'much': 1,
          'first': 1,
          '30': 1,
          'gets': 1,
          'annoying': 1,
          'nartie': 1,
          'trying': 1,
          'farley': 1,
          'completely': 1,
          'unnerving': 1,
          'nwhy': 1,
          'waste': 1,
          'cast': 1,
          'question': 1,
          'know': 1,
          'nmaybe': 1,
          'thought': 1,
          'become': 1,
          'critical': 1,
          'success': 1,
          'sometimes': 1,
          'agree': 1,
          'critics': 1,
          'trailers': 1,
          'made': 1,
          'look': 1,
          'mildly': 1,
          'based': 1,
          '1925': 1,
          'silent': 1,
          'seven': 1,
          'chances': 1,
          'better': 1,
          'mess': 1,
          'may': 1,
          'see': 1,
          'pull': 1,
          'hair': 1,
          'scream': 1,
          'nbesides': 1,
          'nit': 1,
          'worth': 1,
          'recommending': 1,
          'therefore': 1,
          'recommend': 1,
          'ni': 1,
          'laughed': 1,
          'times': 1,
          'running': 1,
          '106': 1,
          'wayyyy': 1,
          'needs': 1,
          'shortened': 1,
          'least': 1,
          'thirty': 1,
          'nparts': 1,
          'go': 1,
          'forever': 1,
          'seem': 1,
          'last': 1,
          'enough': 1,
          'nbeing': 1,
          'hope': 1,
          'make': 1,
          'anymore': 1,
          'comedies': 1,
          'nneg': 1}),
 Counter({'webb': 18,
          'movie': 10,
          'one': 10,
          'owens': 8,
          'nthe': 6,
          'n': 5,
          'scene': 5,
          'jack': 4,
          'webbs': 4,
          'would': 4,
          'ni': 4,
          'nwebb': 4,
          'girl': 4,
          'dragnet': 3,
          'least': 3,
          'like': 3,
          'im': 3,
          'nhe': 3,
          'gives': 3,
          'nthis': 3,
          'way': 3,
          'man': 3,
          'doesnt': 3,
          'killed': 3,
          'little': 3,
          'hes': 3,
          'male': 3,
          'flea': 3,
          'sir': 3,
          'year': 2,
          'laughs': 2,
          'military': 2,
          'hilarious': 2,
          'nfor': 2,
          'got': 2,
          'speeches': 2,
          'seriousness': 2,
          'think': 2,
          'ever': 2,
          'old': 2,
          'nin': 2,
          'another': 2,
          'card': 2,
          'much': 2,
          'goes': 2,
          'first': 2,
          'even': 2,
          'half': 2,
          'make': 2,
          'private': 2,
          'local': 2,
          'captain': 2,
          'days': 2,
          'marine': 2,
          'lace': 2,
          'panties': 2,
          'focus': 2,
          'making': 2,
          'life': 2,
          'watching': 2,
          'talking': 2,
          'youll': 2,
          'every': 2,
          'time': 2,
          'youre': 2,
          'na': 2,
          'around': 2,
          'couldnt': 2,
          'lines': 2,
          'orders': 2,
          'tomato': 2,
          'juice': 2,
          'woman': 2,
          'also': 2,
          'aint': 2,
          'memorable': 2,
          'jealous': 2,
          'later': 2,
          'store': 2,
          'know': 2,
          'entire': 2,
          'platoon': 2,
          'replies': 2,
          'marines': 2,
          'tell': 2,
          'inner': 1,
          'flag': 1,
          'halfmast': 1,
          'last': 1,
          'nick': 1,
          'nite': 1,
          'pulled': 1,
          'reruns': 1,
          'air': 1,
          'nsure': 1,
          'id': 1,
          'seen': 1,
          'could': 1,
          'always': 1,
          'count': 1,
          'inadvertent': 1,
          'ultraserious': 1,
          'nothing': 1,
          'else': 1,
          'tv': 1,
          'neven': 1,
          'though': 1,
          'circulation': 1,
          'moment': 1,
          'antifans': 1,
          'still': 1,
          '50s': 1,
          'propaganda': 1,
          'piece': 1,
          'almost': 1,
          'famous': 1,
          'blue': 1,
          'boy': 1,
          'episode': 1,
          'anyone': 1,
          'rapidfire': 1,
          'straightfaced': 1,
          'nas': 1,
          'happen': 1,
          'sgt': 1,
          'njoe': 1,
          'friday': 1,
          'enlisted': 1,
          'plays': 1,
          'exactly': 1,
          'character': 1,
          'nononsense': 1,
          'fart': 1,
          'looks': 1,
          'disdain': 1,
          'younger': 1,
          'generation': 1,
          'loves': 1,
          'give': 1,
          'long': 1,
          'winded': 1,
          'melodramatic': 1,
          'topic': 1,
          'election': 1,
          'convinced': 1,
          'bob': 1,
          'dole': 1,
          'separated': 1,
          'birth': 1,
          'opens': 1,
          'characteristic': 1,
          'fashion': 1,
          'recruit': 1,
          'knocks': 1,
          'office': 1,
          'door': 1,
          'enters': 1,
          'different': 1,
          'series': 1,
          'cranky': 1,
          'criticisms': 1,
          'credits': 1,
          'come': 1,
          'produced': 1,
          'directed': 1,
          'pretty': 1,
          'without': 1,
          'saying': 1,
          'twenty': 1,
          'minutes': 1,
          'chewing': 1,
          'recruits': 1,
          'reason': 1,
          'wondering': 1,
          'plot': 1,
          'certainly': 1,
          'entertained': 1,
          'hour': 1,
          'trademark': 1,
          'rants': 1,
          'ngives': 1,
          'us': 1,
          'nwebbs': 1,
          'mission': 1,
          'screwup': 1,
          'three': 1,
          'convert': 1,
          'material': 1,
          'personally': 1,
          'cut': 1,
          'ship': 1,
          'whether': 1,
          'part': 1,
          'refers': 1,
          'remains': 1,
          'unanswered': 1,
          'course': 1,
          'excuse': 1,
          'crotchety': 1,
          'energy': 1,
          'living': 1,
          'hell': 1,
          'havent': 1,
          'indoctrinated': 1,
          'pleasures': 1,
          'heres': 1,
          'reprint': 1,
          'typical': 1,
          'monologue': 1,
          'cant': 1,
          'duplicate': 1,
          'delivery': 1,
          'paper': 1,
          'words': 1,
          'partially': 1,
          'convey': 1,
          'listen': 1,
          'youngster': 1,
          'nsomeday': 1,
          'wake': 1,
          'fighting': 1,
          'beach': 1,
          'pray': 1,
          'god': 1,
          'somebody': 1,
          'get': 1,
          'foolishness': 1,
          'nive': 1,
          'headline': 1,
          'mistakes': 1,
          'gon': 1,
          'turn': 1,
          'ill': 1,
          'standing': 1,
          'right': 1,
          'write': 1,
          'reprintable': 1,
          'dialogue': 1,
          'nearly': 1,
          'belongs': 1,
          'bad': 1,
          'hall': 1,
          'fame': 1,
          'tried': 1,
          'include': 1,
          'noteworthy': 1,
          'unwinds': 1,
          'hard': 1,
          'work': 1,
          'going': 1,
          'bar': 1,
          'meets': 1,
          'coincidentally': 1,
          'walks': 1,
          'away': 1,
          'typicallystimulating': 1,
          'conversation': 1,
          'flirt': 1,
          'archrival': 1,
          'marches': 1,
          'table': 1,
          'gets': 1,
          'face': 1,
          'says': 1,
          'kind': 1,
          'dame': 1,
          'nbogart': 1,
          'ngets': 1,
          'nonwebb': 1,
          'confesses': 1,
          'damn': 1,
          'good': 1,
          'guess': 1,
          'njoin': 1,
          'club': 1,
          'women': 1,
          'showcased': 1,
          'amusingly': 1,
          'finds': 1,
          'womans': 1,
          'place': 1,
          'employment': 1,
          'lingerie': 1,
          'stands': 1,
          'looking': 1,
          'incredibly': 1,
          'flustered': 1,
          'negligees': 1,
          'display': 1,
          'expect': 1,
          'talk': 1,
          '_here_': 1,
          'exclaims': 1,
          'doubt': 1,
          'intimidated': 1,
          'barrage': 1,
          'bras': 1,
          'help': 1,
          'customer': 1,
          'leaving': 1,
          'fend': 1,
          'palace': 1,
          'estrogen': 1,
          'spots': 1,
          'demands': 1,
          'arent': 1,
          'reply': 1,
          'thinking': 1,
          'head': 1,
          'odd': 1,
          'species': 1,
          'human': 1,
          'small': 1,
          'nmust': 1,
          'children': 1,
          'everyones': 1,
          'poor': 1,
          'scarred': 1,
          'early': 1,
          'encounter': 1,
          'swear': 1,
          'gender': 1,
          'entirely': 1,
          'many': 1,
          'lesbian': 1,
          'conversions': 1,
          'responsible': 1,
          'closely': 1,
          'romance': 1,
          'continues': 1,
          'subplot': 1,
          'probably': 1,
          'forces': 1,
          'spend': 1,
          'night': 1,
          'searching': 1,
          'ground': 1,
          'drills': 1,
          'nafter': 1,
          'two': 1,
          'privates': 1,
          'hatch': 1,
          'scheme': 1,
          'present': 1,
          'wrong': 1,
          'dead': 1,
          'asks': 1,
          'female': 1,
          'nowens': 1,
          'yells': 1,
          'nthat': 1,
          'along': 1,
          'rest': 1,
          'intended': 1,
          'taken': 1,
          'seriously': 1,
          'defies': 1,
          'comment': 1,
          'nbut': 1,
          'presented': 1,
          'utmost': 1,
          'title': 1,
          'end': 1,
          'thanks': 1,
          'cooperation': 1,
          'iwo': 1,
          'jima': 1,
          'guadalcanal': 1,
          'major': 1,
          'battle': 1,
          '20th': 1,
          'century': 1,
          'held': 1,
          'high': 1,
          'esteem': 1,
          'soldiers': 1,
          'exception': 1,
          'played': 1,
          'actual': 1,
          'nsomeone': 1,
          'wanting': 1,
          'parody': 1,
          'comical': 1,
          'job': 1,
          'nit': 1,
          'makes': 1,
          'ironic': 1,
          'raeeyain': 1,
          'wedding': 1,
          'day': 1,
          'sense': 1,
          'humor': 1,
          'ntheres': 1,
          'guys': 1,
          'break': 1,
          'discussing': 1,
          'something': 1,
          'breaks': 1,
          'laughter': 1,
          'bursts': 1,
          'room': 1,
          'shouts': 1,
          'laughing': 1,
          'nto': 1,
          'nineyearold': 1,
          'girls': 1,
          'laugh': 1,
          'nand': 1,
          'let': 1,
          'happy': 1,
          'nineyear': 1,
          'nneg': 1}),
 Counter({'frank': 5,
          'voice': 4,
          'osmosis': 4,
          'jones': 4,
          'farrellys': 3,
          'bill': 2,
          'murray': 2,
          'city': 2,
          'one': 2,
          'nthe': 2,
          'animated': 2,
          'animation': 2,
          'drix': 2,
          'hyde': 2,
          'pierce': 2,
          'capsule': 2,
          'thrax': 2,
          'nwhile': 2,
          'story': 2,
          'like': 2,
          'joke': 2,
          'watching': 2,
          'family': 2,
          'audience': 2,
          'detorris': 1,
          'single': 1,
          'dad': 1,
          'lives': 1,
          'beer': 1,
          'junk': 1,
          'food': 1,
          'apparent': 1,
          'understanding': 1,
          'sanitation': 1,
          'hygiene': 1,
          'much': 1,
          'dismay': 1,
          'preteen': 1,
          'daughter': 1,
          'shane': 1,
          'elena': 1,
          'franklin': 1,
          'nwhen': 1,
          'uses': 1,
          '10': 1,
          'second': 1,
          'rule': 1,
          'retrieve': 1,
          'hard': 1,
          'boiled': 1,
          'egg': 1,
          'chimps': 1,
          'cage': 1,
          'zoo': 1,
          'downs': 1,
          'introduces': 1,
          'lethal': 1,
          'bacteria': 1,
          'system': 1,
          'ninside': 1,
          'skin': 1,
          'turmoil': 1,
          'thanks': 1,
          'votepandering': 1,
          'mayor': 1,
          'phlegmming': 1,
          'william': 1,
          'shatner': 1,
          'pd': 1,
          'white': 1,
          'blood': 1,
          'cell': 1,
          'chris': 1,
          'rock': 1,
          'save': 1,
          'day': 1,
          'peter': 1,
          'bobby': 1,
          'brightly': 1,
          'directed': 1,
          'piet': 1,
          'kroon': 1,
          'tom': 1,
          'sito': 1,
          'cellular': 1,
          'municipality': 1,
          'typical': 1,
          'rogue': 1,
          'cop': 1,
          'looking': 1,
          'another': 1,
          'chance': 1,
          'nhes': 1,
          'inadvertently': 1,
          'teamed': 1,
          'david': 1,
          'tvs': 1,
          'frasier': 1,
          'cold': 1,
          '12': 1,
          'hours': 1,
          'worth': 1,
          'painkillers': 1,
          'dispense': 1,
          'nthis': 1,
          'quarrelling': 1,
          'duo': 1,
          'go': 1,
          'fantastic': 1,
          'voyage': 1,
          'order': 1,
          'hunt': 1,
          'laurence': 1,
          'fishburne': 1,
          'virus': 1,
          'intent': 1,
          'shutting': 1,
          'certainly': 1,
          'colorful': 1,
          'look': 1,
          'hackneyed': 1,
          'cries': 1,
          'puny': 1,
          'puns': 1,
          'get': 1,
          'occasional': 1,
          'sprinklings': 1,
          'wit': 1,
          'bodily': 1,
          'humor': 1,
          'graduated': 1,
          'phi': 1,
          'beta': 1,
          'departs': 1,
          'bus': 1,
          'headed': 1,
          'bladder': 1,
          'nneither': 1,
          'hero': 1,
          'villain': 1,
          'particularly': 1,
          'interesting': 1,
          'looks': 1,
          'predator': 1,
          'although': 1,
          'delightful': 1,
          'sidekick': 1,
          'nadults': 1,
          'desperately': 1,
          'keep': 1,
          'eyes': 1,
          'peeled': 1,
          'small': 1,
          'amusements': 1,
          'animators': 1,
          'dot': 1,
          'along': 1,
          'landscape': 1,
          'nmeanwhile': 1,
          'back': 1,
          'live': 1,
          'action': 1,
          'land': 1,
          'reduced': 1,
          'nothing': 1,
          'walking': 1,
          'grossout': 1,
          'ntheres': 1,
          'particular': 1,
          'enjoyment': 1,
          'found': 1,
          'vomit': 1,
          'molly': 1,
          'shannon': 1,
          'plays': 1,
          'shanes': 1,
          'teacher': 1,
          'mrs': 1,
          'boyd': 1,
          'hoisting': 1,
          'ingrown': 1,
          'toenail': 1,
          'onto': 1,
          'restaurant': 1,
          'table': 1,
          'none': 1,
          'must': 1,
          'wonder': 1,
          'climatic': 1,
          'flatlining': 1,
          'childs': 1,
          'father': 1,
          'play': 1,
          'well': 1,
          'nrest': 1,
          'assured': 1,
          'whole': 1,
          'enchilada': 1,
          'wrapped': 1,
          'fart': 1,
          'far': 1,
          'less': 1,
          'offensive': 1,
          'last': 1,
          'effort': 1,
          'irene': 1,
          'film': 1,
          'least': 1,
          'spiked': 1,
          'comic': 1,
          'highs': 1,
          'jim': 1,
          'carreys': 1,
          'hijinx': 1,
          'n': 1,
          'probably': 1,
          'ok': 1,
          'kids': 1,
          'playing': 1,
          'marilyn': 1,
          'manson': 1,
          'croon': 1,
          'phil': 1,
          'collins': 1,
          'tune': 1,
          'nneg': 1}),
 Counter({'willis': 4,
          'group': 3,
          'leap': 2,
          'starring': 2,
          'bruce': 2,
          'since': 2,
          'take': 2,
          'goes': 2,
          'film': 2,
          'nthe': 2,
          'death': 2,
          'threats': 2,
          'nfor': 2,
          'jane': 2,
          'march': 2,
          'worst': 2,
          'movie': 2,
          'help': 2,
          'awful': 2,
          'kept': 2,
          'straight': 2,
          'faces': 2,
          'filming': 2,
          'woof': 1,
          'bad': 1,
          'faith': 1,
          'title': 1,
          '1992': 1,
          'comedy': 1,
          'steve': 1,
          'martin': 1,
          'debra': 1,
          'winger': 1,
          'thats': 1,
          'whats': 1,
          'required': 1,
          'watch': 1,
          'incredulous': 1,
          'howler': 1,
          'asof': 1,
          'thingsa': 1,
          'psychologist': 1,
          'nnot': 1,
          'reagan': 1,
          'administration': 1,
          'acting': 1,
          'stretch': 1,
          'magnitude': 1,
          'nalas': 1,
          'mickey': 1,
          'rourke': 1,
          'hardly': 1,
          'knew': 1,
          'ye': 1,
          'nstory': 1,
          'opens': 1,
          'campy': 1,
          'kickwillis': 1,
          'treating': 1,
          'patient': 1,
          'abruptly': 1,
          'steps': 1,
          'window': 1,
          'best': 1,
          'flying': 1,
          'charles': 1,
          'durning': 1,
          'dove': 1,
          'hudsucker': 1,
          'proxy': 1,
          'nshe': 1,
          'splat': 1,
          'ugh': 1,
          'character': 1,
          'spends': 1,
          'rest': 1,
          'colorblind': 1,
          'nreally': 1,
          'good': 1,
          'doctor': 1,
          'moves': 1,
          'sunny': 1,
          'l': 1,
          'rooms': 1,
          'old': 1,
          'college': 1,
          'chum': 1,
          'scott': 1,
          'bakula': 1,
          'therapist': 1,
          'whos': 1,
          'getting': 1,
          'someone': 1,
          'monday': 1,
          'evening': 1,
          'nbuddy': 1,
          'bites': 1,
          'second': 1,
          'reel': 1,
          'surprise': 1,
          'agrees': 1,
          'troubles': 1,
          'therapy': 1,
          'man': 1,
          'gets': 1,
          'share': 1,
          'cutfromnc17': 1,
          'love': 1,
          'scenes': 1,
          'lovers': 1,
          'dodging': 1,
          'nails': 1,
          'cars': 1,
          'rattlesnakes': 1,
          'nwhyd': 1,
          'snakes': 1,
          'ncolor': 1,
          'night': 1,
          'year': 1,
          'nperiod': 1,
          'nforget': 1,
          'north': 1,
          'clifford': 1,
          'heaven': 1,
          'us': 1,
          'even': 1,
          'deadly': 1,
          'ground': 1,
          'nhere': 1,
          'misfire': 1,
          'audaciously': 1,
          'cant': 1,
          'wonder': 1,
          'actors': 1,
          'starters': 1,
          'collection': 1,
          'mixed': 1,
          'nuts': 1,
          'better': 1,
          'suited': 1,
          'bob': 1,
          'newhart': 1,
          'nthese': 1,
          'realistic': 1,
          'portrayals': 1,
          'mentally': 1,
          'unhealthy': 1,
          'nplaying': 1,
          'prissy': 1,
          'obsessivecompulsive': 1,
          'cuckoos': 1,
          'nest': 1,
          'alumni': 1,
          'brad': 1,
          'dourif': 1,
          'alone': 1,
          'may': 1,
          'set': 1,
          'psychology': 1,
          'profession': 1,
          'back': 1,
          'ten': 1,
          'years': 1,
          'plots': 1,
          'wreck': 1,
          'laughable': 1,
          'dialogue': 1,
          'pointless': 1,
          'pov': 1,
          'shifts': 1,
          'one': 1,
          'big': 1,
          'secret': 1,
          'solvable': 1,
          'first': 1,
          'fifteen': 1,
          'minutes': 1,
          'ndirector': 1,
          'richard': 1,
          'rush': 1,
          'helmed': 1,
          'freebie': 1,
          'bean': 1,
          'doesnt': 1,
          'seem': 1,
          'mind': 1,
          'nunfazed': 1,
          'nincompoop': 1,
          'plot': 1,
          'cuckoo': 1,
          'characterizations': 1,
          'overfills': 1,
          'enough': 1,
          'canny': 1,
          'camera': 1,
          'shots': 1,
          'zany': 1,
          'setpieces': 1,
          'make': 1,
          'effort': 1,
          'almost': 1,
          'worth': 1,
          'watching': 1,
          'nhis': 1,
          'token': 1,
          'freeway': 1,
          'chase': 1,
          'ok': 1,
          'director': 1,
          'fun': 1,
          'vertiginous': 1,
          'ending': 1,
          'ala': 1,
          'recently': 1,
          'fatal': 1,
          'analysis': 1,
          'nacting': 1,
          'credits': 1,
          'acrosstheboard': 1,
          'nwillis': 1,
          'forgiven': 1,
          'hes': 1,
          'die': 1,
          'hard': 1,
          '3': 1,
          'speak': 1,
          'nbut': 1,
          'ruben': 1,
          'blades': 1,
          'insulting': 1,
          'presence': 1,
          'cop': 1,
          'lesley': 1,
          'ann': 1,
          'warrens': 1,
          'stereotypical': 1,
          'sex': 1,
          'addict': 1,
          'offender': 1,
          'mysterygirlwhosnorealmystery': 1,
          'nshudder': 1,
          'nbottom': 1,
          'line': 1,
          'ill': 1,
          'never': 1,
          'know': 1,
          'nneg': 1}),
 Counter({'one': 5,
          'movie': 5,
          'snipes': 5,
          'murder': 4,
          '1600': 4,
          'white': 4,
          'house': 4,
          'nsnipes': 4,
          'every': 3,
          'lame': 3,
          'action': 3,
          'head': 3,
          'security': 3,
          'lane': 3,
          'doesnt': 3,
          'presidential': 2,
          'like': 2,
          'get': 2,
          'conspiracy': 2,
          'nin': 2,
          'old': 2,
          'flick': 2,
          'time': 2,
          'nits': 2,
          'night': 2,
          'na': 2,
          'nthe': 2,
          'hotshot': 2,
          'seen': 2,
          'clever': 2,
          'secret': 2,
          'service': 2,
          'liaison': 2,
          'miller': 2,
          'first': 2,
          'break': 2,
          'interesting': 2,
          'never': 2,
          'bad': 2,
          'theres': 1,
          'election': 1,
          'four': 1,
          'years': 1,
          'seems': 1,
          'months': 1,
          'another': 1,
          'painted': 1,
          '_the_': 1,
          'thriller': 1,
          'year': 1,
          '1997': 1,
          'weve': 1,
          'absolute': 1,
          'power': 1,
          'air': 1,
          'force': 1,
          'shadow': 1,
          'nthis': 1,
          'duck': 1,
          'gerald': 1,
          'ford': 1,
          'trying': 1,
          'bring': 1,
          'us': 1,
          'complex': 1,
          'plot': 1,
          'coverup': 1,
          'intrigue': 1,
          'copping': 1,
          'rehashes': 1,
          'standbys': 1,
          'nheres': 1,
          'happens': 1,
          'secretary': 1,
          'sex': 1,
          'unidentified': 1,
          'guy': 1,
          'cute': 1,
          'butt': 1,
          'next': 1,
          'day': 1,
          'shes': 1,
          'dead': 1,
          'detective': 1,
          'wesley': 1,
          'called': 1,
          'nhow': 1,
          'know': 1,
          'hes': 1,
          'nweve': 1,
          'traditional': 1,
          'opener': 1,
          'hostage': 1,
          'negotiation': 1,
          'scene': 1,
          'consisting': 1,
          'disarming': 1,
          'suicidal': 1,
          'exgovernment': 1,
          'employee': 1,
          'holding': 1,
          'gun': 1,
          'middle': 1,
          'street': 1,
          'finds': 1,
          'shiny': 1,
          'bald': 1,
          'daniel': 1,
          'benzali': 1,
          'wont': 1,
          'cooperate': 1,
          'fact': 1,
          'intervention': 1,
          'national': 1,
          'adviser': 1,
          'alan': 1,
          'alda': 1,
          'wouldnt': 1,
          'allowed': 1,
          'nalda': 1,
          'helps': 1,
          'assigning': 1,
          'sexy': 1,
          'agent': 1,
          'diane': 1,
          'act': 1,
          'dangerous': 1,
          'nwell': 1,
          'really': 1,
          'wanted': 1,
          'say': 1,
          'nalmost': 1,
          'immediately': 1,
          'suspect': 1,
          'found': 1,
          'eccentric': 1,
          'janitor': 1,
          'flirting': 1,
          'deceased': 1,
          'videos': 1,
          'buy': 1,
          'launches': 1,
          'independent': 1,
          'investigation': 1,
          'reveals': 1,
          'planted': 1,
          'evidence': 1,
          'romantic': 1,
          'involvement': 1,
          'presidents': 1,
          'son': 1,
          'partner': 1,
          'always': 1,
          'wisecracking': 1,
          'dennis': 1,
          'calls': 1,
          'awhile': 1,
          'news': 1,
          'believe': 1,
          'eventually': 1,
          'predictably': 1,
          'comes': 1,
          'around': 1,
          'risks': 1,
          'ass': 1,
          'social': 1,
          'storage': 1,
          'classified': 1,
          'information': 1,
          'nfor': 1,
          'hour': 1,
          'looks': 1,
          'could': 1,
          'going': 1,
          'somewhere': 1,
          'nsure': 1,
          'sit': 1,
          'opening': 1,
          'sequence': 1,
          'plenty': 1,
          'scenes': 1,
          'whole': 1,
          'thing': 1,
          'makes': 1,
          'premise': 1,
          'quite': 1,
          'delivered': 1,
          'upon': 1,
          'dont': 1,
          'make': 1,
          'team': 1,
          'nothing': 1,
          'work': 1,
          'theyre': 1,
          'cogs': 1,
          'machine': 1,
          'ndennis': 1,
          'might': 1,
          'well': 1,
          'even': 1,
          'waste': 1,
          'talents': 1,
          'bordello': 1,
          'blood': 1,
          'thats': 1,
          'saying': 1,
          'lot': 1,
          'nwhen': 1,
          'last': 1,
          'halfhour': 1,
          'descended': 1,
          'metaphorically': 1,
          'literally': 1,
          'wet': 1,
          'sewer': 1,
          'busting': 1,
          'breakintothebuilding': 1,
          'underground': 1,
          'climax': 1,
          'nand': 1,
          'finally': 1,
          'reveal': 1,
          'killed': 1,
          'woman': 1,
          'youll': 1,
          'wish': 1,
          'sat': 1,
          'movies': 1,
          'title': 1,
          'represent': 1,
          'address': 1,
          'represents': 1,
          'number': 1,
          'satisfied': 1,
          'customers': 1,
          'worldwide': 1,
          'nserving': 1,
          'world': 1,
          'nearly': 1,
          '125th': 1,
          'century': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'bad': 5,
          'n': 4,
          'shes': 4,
          'cook': 4,
          'film': 4,
          'time': 4,
          'seen': 3,
          'nand': 3,
          'dont': 3,
          'popular': 3,
          'nas': 3,
          'like': 3,
          'one': 3,
          'nthe': 3,
          'ni': 3,
          'never': 3,
          'ive': 2,
          'quite': 2,
          'see': 2,
          'anything': 2,
          'equally': 2,
          'school': 2,
          'freddie': 2,
          'prinze': 2,
          'jr': 2,
          'rachel': 2,
          'leigh': 2,
          'nthat': 2,
          'storyline': 2,
          'character': 2,
          'good': 2,
          'think': 2,
          'hearing': 2,
          'aids': 2,
          'nthats': 2,
          'happy': 2,
          'ah': 1,
          '1999': 1,
          'going': 1,
          'along': 1,
          'well': 1,
          'dubious': 1,
          'distinction': 1,
          'worst': 1,
          'far': 1,
          'year': 1,
          'frankly': 1,
          'doubt': 1,
          'ill': 1,
          'least': 1,
          'hope': 1,
          'tells': 1,
          'story': 1,
          'guy': 1,
          'played': 1,
          'accepts': 1,
          'bet': 1,
          'transform': 1,
          'geekiest': 1,
          'girl': 1,
          'right': 1,
          'problem': 1,
          '1': 1,
          'nhow': 1,
          'many': 1,
          'times': 1,
          'comments': 1,
          'near': 1,
          'end': 1,
          'kind': 1,
          'pretty': 1,
          'woman': 1,
          'except': 1,
          'without': 1,
          'prostitution': 1,
          'nof': 1,
          'course': 1,
          'filmmakers': 1,
          'attempted': 1,
          'try': 1,
          'something': 1,
          'new': 1,
          'material': 1,
          'wellworn': 1,
          'would': 1,
          'device': 1,
          'propell': 1,
          'forward': 1,
          'though': 1,
          'relies': 1,
          'completely': 1,
          'lame': 1,
          'overused': 1,
          'formula': 1,
          'push': 1,
          'ahead': 1,
          'ntheres': 1,
          'original': 1,
          'interesting': 1,
          'either': 1,
          'wasnt': 1,
          'enough': 1,
          'theres': 1,
          'performance': 1,
          'featured': 1,
          'star': 1,
          'simply': 1,
          'horrible': 1,
          'usually': 1,
          'get': 1,
          'personal': 1,
          'case': 1,
          'needs': 1,
          'said': 1,
          'ncook': 1,
          'wears': 1,
          'expression': 1,
          'throughout': 1,
          'flick': 1,
          'looks': 1,
          'miserable': 1,
          'convinced': 1,
          'nerd': 1,
          'transformation': 1,
          'unconvincing': 1,
          'unnecessary': 1,
          'seems': 1,
          'saying': 1,
          'better': 1,
          'actor': 1,
          'ordinarily': 1,
          'enjoy': 1,
          'nhe': 1,
          'coasts': 1,
          'socalled': 1,
          'charm': 1,
          'establishes': 1,
          'real': 1,
          'nkieren': 1,
          'culkin': 1,
          'brother': 1,
          'indiscernable': 1,
          'reason': 1,
          'hes': 1,
          'got': 1,
          'nno': 1,
          'explanation': 1,
          'given': 1,
          'theyre': 1,
          'brought': 1,
          'nwere': 1,
          'supposed': 1,
          'feel': 1,
          'sorry': 1,
          'wore': 1,
          'single': 1,
          'element': 1,
          'offensive': 1,
          'things': 1,
          'long': 1,
          'sucks': 1,
          'boils': 1,
          'nits': 1,
          'entertaining': 1,
          'even': 1,
          'passer': 1,
          'hour': 1,
          'half': 1,
          'running': 1,
          'goes': 1,
          'slower': 1,
          '5': 1,
          'minute': 1,
          'hairremoval': 1,
          'system': 1,
          'informercial': 1,
          'whats': 1,
          'worse': 1,
          'sends': 1,
          'message': 1,
          'teens': 1,
          'nit': 1,
          'appears': 1,
          'telling': 1,
          'hey': 1,
          'doesnt': 1,
          'matter': 1,
          'youre': 1,
          'way': 1,
          'unimportant': 1,
          'nif': 1,
          'want': 1,
          'truly': 1,
          'dress': 1,
          'latest': 1,
          'fashions': 1,
          'act': 1,
          'bubbleheaded': 1,
          'moron': 1,
          'nugh': 1,
          'nneg': 1}),
 Counter({'reeves': 5,
          'nthe': 5,
          'hardball': 4,
          'kids': 4,
          'movie': 4,
          'heartfelt': 3,
          'never': 3,
          'ni': 3,
          'see': 3,
          'mcglone': 3,
          'like': 3,
          'robbins': 2,
          'cinematic': 2,
          'life': 2,
          'gambler': 2,
          'good': 2,
          'big': 2,
          'game': 2,
          'anyone': 2,
          'thats': 2,
          'guy': 2,
          'cant': 2,
          'coach': 2,
          'baseball': 2,
          'team': 2,
          'nreeves': 2,
          'maybe': 2,
          'john': 2,
          'moment': 2,
          'bad': 2,
          'characters': 2,
          'time': 2,
          'also': 2,
          'dont': 2,
          'trust': 2,
          'seen': 2,
          'nrobbins': 2,
          'michael': 1,
          'quite': 1,
          'achievement': 1,
          'nin': 1,
          'two': 1,
          'hours': 1,
          'get': 1,
          'glancing': 1,
          'examination': 1,
          'ghetto': 1,
          'funeral': 1,
          'eulogy': 1,
          'speeches': 1,
          'giving': 1,
          'cache': 1,
          'cute': 1,
          'including': 1,
          'fat': 1,
          'one': 1,
          'asthma': 1,
          'hardluck': 1,
          'finds': 1,
          'salvation': 1,
          'woman': 1,
          'climactic': 1,
          'underdogs': 1,
          'prove': 1,
          'bigger': 1,
          'bite': 1,
          'ever': 1,
          'imagined': 1,
          'nall': 1,
          'needed': 1,
          'getting': 1,
          'hit': 1,
          'nuts': 1,
          'food': 1,
          'fight': 1,
          'first': 1,
          'film': 1,
          'solely': 1,
          'based': 1,
          'clich': 1,
          'wait': 1,
          'deleted': 1,
          'scenes': 1,
          'comes': 1,
          'dvd': 1,
          'nobviously': 1,
          'strikeout': 1,
          'gets': 1,
          'bat': 1,
          'anywhere': 1,
          'near': 1,
          'ball': 1,
          'nit': 1,
          'stars': 1,
          'keanu': 1,
          'aforementioned': 1,
          'seems': 1,
          'owe': 1,
          'every': 1,
          'bookie': 1,
          'chicago': 1,
          'amount': 1,
          'money': 1,
          'rivals': 1,
          'gross': 1,
          'national': 1,
          'product': 1,
          'guam': 1,
          'nout': 1,
          'solutions': 1,
          'begs': 1,
          'successful': 1,
          'corporate': 1,
          'friend': 1,
          'always': 1,
          'welcome': 1,
          'mike': 1,
          'lend': 1,
          '5': 1,
          '000': 1,
          'ninstead': 1,
          'offers': 1,
          'chance': 1,
          'help': 1,
          'youth': 1,
          'projects': 1,
          'nice': 1,
          'weekly': 1,
          'stipend': 1,
          'wants': 1,
          'keep': 1,
          'fingers': 1,
          'accepts': 1,
          'offer': 1,
          'discovers': 1,
          'happy': 1,
          'let': 1,
          'handle': 1,
          'entirely': 1,
          'drowsyvoiced': 1,
          'protagonist': 1,
          'must': 1,
          'teach': 1,
          'sassy': 1,
          'inner': 1,
          'city': 1,
          'basics': 1,
          'absentee': 1,
          'parents': 1,
          'merciless': 1,
          'gangs': 1,
          'nand': 1,
          'theyll': 1,
          'play': 1,
          'championship': 1,
          'none': 1,
          'glorious': 1,
          'surprises': 1,
          'screenplay': 1,
          'gatins': 1,
          'summer': 1,
          'catch': 1,
          'adapted': 1,
          'daniel': 1,
          'coyles': 1,
          'nonfiction': 1,
          'book': 1,
          'arent': 1,
          'coasts': 1,
          'zombie': 1,
          'nthat': 1,
          'wouldnt': 1,
          'ounce': 1,
          'subtlety': 1,
          'humanity': 1,
          'nmost': 1,
          'spent': 1,
          'yelling': 1,
          'talking': 1,
          'slang': 1,
          'acting': 1,
          'surprised': 1,
          'ntheres': 1,
          'little': 1,
          'naturally': 1,
          'amusing': 1,
          'seem': 1,
          'know': 1,
          'cameras': 1,
          'rolling': 1,
          'worst': 1,
          'lot': 1,
          'toughtalking': 1,
          'younger': 1,
          'player': 1,
          'dewayne': 1,
          'warren': 1,
          'whose': 1,
          'sole': 1,
          'purpose': 1,
          'unfolds': 1,
          'emotional': 1,
          'pawn': 1,
          'tactic': 1,
          'utterly': 1,
          'despicable': 1,
          'find': 1,
          'right': 1,
          'words': 1,
          'express': 1,
          'adults': 1,
          'fare': 1,
          'well': 1,
          'impressively': 1,
          'uninspiring': 1,
          'downonhisluck': 1,
          'loser': 1,
          'character': 1,
          'poorly': 1,
          'written': 1,
          'gives': 1,
          'another': 1,
          'charismafree': 1,
          'performance': 1,
          'nevery': 1,
          'speaks': 1,
          'sounds': 1,
          'got': 1,
          'long': 1,
          'nap': 1,
          'gradually': 1,
          'waking': 1,
          'nkids': 1,
          'supposed': 1,
          'rally': 1,
          'around': 1,
          'ndiane': 1,
          'lane': 1,
          'costars': 1,
          'obligatory': 1,
          'love': 1,
          'interest': 1,
          'remains': 1,
          'glowing': 1,
          'screen': 1,
          'presence': 1,
          'dog': 1,
          'skip': 1,
          'better': 1,
          'proof': 1,
          'nits': 1,
          'role': 1,
          'consists': 1,
          'uttering': 1,
          'lines': 1,
          'nthen': 1,
          'theres': 1,
          'b': 1,
          'nsweeney': 1,
          'evil': 1,
          'rival': 1,
          'hawkes': 1,
          'scummy': 1,
          'betting': 1,
          'buddy': 1,
          'unoriginal': 1,
          'youve': 1,
          'hope': 1,
          'wanted': 1,
          'varsity': 1,
          'blues': 1,
          'funny': 1,
          'alternately': 1,
          'taut': 1,
          'tale': 1,
          'texas': 1,
          'high': 1,
          'school': 1,
          'football': 1,
          'ali': 1,
          'larter': 1,
          'smothered': 1,
          'whipped': 1,
          'cream': 1,
          'jon': 1,
          'voight': 1,
          'sneering': 1,
          'everything': 1,
          'moved': 1,
          'havent': 1,
          'goofy': 1,
          'ready': 1,
          'rumble': 1,
          'entirety': 1,
          'intrigued': 1,
          'macho': 1,
          'man': 1,
          'randy': 1,
          'savage': 1,
          'martin': 1,
          'landau': 1,
          'exist': 1,
          'without': 1,
          'serious': 1,
          'worldwide': 1,
          'repercussions': 1,
          'obviously': 1,
          'needs': 1,
          'go': 1,
          'back': 1,
          'forte': 1,
          'making': 1,
          'sports': 1,
          'movies': 1,
          'guys': 1,
          'cutesy': 1,
          'cuddly': 1,
          'pap': 1,
          'manages': 1,
          'annoy': 1,
          'insult': 1,
          'audience': 1,
          'nheres': 1,
          'hoping': 1,
          'happens': 1,
          'immediate': 1,
          'future': 1,
          'nneg': 1}),
 Counter({'grinch': 11,
          'christmas': 6,
          'movie': 4,
          'carrey': 4,
          'nthe': 4,
          'cindy': 4,
          'lou': 4,
          'whoville': 3,
          'grinchs': 3,
          'momsen': 3,
          'like': 3,
          'role': 3,
          'seems': 3,
          'know': 2,
          'nits': 2,
          'holiday': 2,
          'would': 2,
          'us': 2,
          'season': 2,
          'plot': 2,
          'whos': 2,
          'steal': 2,
          'version': 2,
          'book': 2,
          'tv': 2,
          'jones': 2,
          'big': 2,
          'one': 2,
          'choices': 2,
          'jeffrey': 2,
          'taylor': 2,
          'nshe': 2,
          'hate': 2,
          'filled': 2,
          'nnot': 2,
          'brings': 2,
          'else': 2,
          'stealing': 2,
          'something': 1,
          'presents': 1,
          'overhyped': 1,
          'films': 1,
          'lots': 1,
          'merchandising': 1,
          'product': 1,
          'tieins': 1,
          'nat': 1,
          'least': 1,
          'seem': 1,
          'message': 1,
          'advertised': 1,
          'since': 1,
          'last': 1,
          'whose': 1,
          'logo': 1,
          'currently': 1,
          'plastered': 1,
          'stores': 1,
          'nhollywood': 1,
          'expects': 1,
          'ignore': 1,
          'cynical': 1,
          'greed': 1,
          'scolds': 1,
          'losing': 1,
          'true': 1,
          'spirit': 1,
          'nyou': 1,
          'theres': 1,
          'evil': 1,
          'furry': 1,
          'green': 1,
          'guy': 1,
          'called': 1,
          'jim': 1,
          'lives': 1,
          'mountain': 1,
          'overlooking': 1,
          'ndown': 1,
          'preparing': 1,
          'whobilation': 1,
          'determined': 1,
          'course': 1,
          'liveaction': 1,
          'beloved': 1,
          'childrens': 1,
          'previously': 1,
          'adapted': 1,
          '1966': 1,
          'special': 1,
          'looney': 1,
          'tunes': 1,
          'animator': 1,
          'chuck': 1,
          'rare': 1,
          'budget': 1,
          'hollywood': 1,
          'release': 1,
          'shamed': 1,
          'thirtyyearold': 1,
          'halfhour': 1,
          'cartoon': 1,
          'thats': 1,
          'case': 1,
          'compared': 1,
          'ron': 1,
          'howards': 1,
          'hit': 1,
          'right': 1,
          'notes': 1,
          'boris': 1,
          'karloffs': 1,
          'soft': 1,
          'deep': 1,
          'narration': 1,
          'thurl': 1,
          'ravenscroft': 1,
          'singing': 1,
          'mr': 1,
          'max': 1,
          'dog': 1,
          'weighed': 1,
          'gigantic': 1,
          'antler': 1,
          'tied': 1,
          'head': 1,
          'wide': 1,
          'toothless': 1,
          'grin': 1,
          'nby': 1,
          'contrast': 1,
          'hits': 1,
          'sour': 1,
          'note': 1,
          'another': 1,
          'nfirst': 1,
          'numerous': 1,
          'bad': 1,
          'price': 1,
          'peter': 1,
          'seaman': 1,
          'made': 1,
          'padding': 1,
          'short': 1,
          '105minute': 1,
          'nyoung': 1,
          'wideeyed': 1,
          'depressed': 1,
          'misplaced': 1,
          'priorities': 1,
          'parents': 1,
          'bill': 1,
          'irwin': 1,
          'molly': 1,
          'shannon': 1,
          'begins': 1,
          'sympathize': 1,
          'turns': 1,
          'surprisingly': 1,
          'sympathetic': 1,
          'ncindy': 1,
          'discovers': 1,
          'turned': 1,
          'tearfully': 1,
          'away': 1,
          'grammar': 1,
          'school': 1,
          'publicly': 1,
          'humiliated': 1,
          'expressing': 1,
          'love': 1,
          'prettiest': 1,
          'girl': 1,
          'class': 1,
          'martha': 1,
          'may': 1,
          'whovier': 1,
          'played': 1,
          'adult': 1,
          'christine': 1,
          'baranski': 1,
          'nare': 1,
          'expected': 1,
          'want': 1,
          'isnt': 1,
          'even': 1,
          'villain': 1,
          'corrupt': 1,
          'mayor': 1,
          'tambor': 1,
          'rival': 1,
          'marthas': 1,
          'affection': 1,
          'characters': 1,
          'needlessly': 1,
          'complex': 1,
          'oncesimple': 1,
          'becomes': 1,
          'convoluted': 1,
          'actual': 1,
          'theft': 1,
          'afterthought': 1,
          'casting': 1,
          'arent': 1,
          'better': 1,
          'screenwriting': 1,
          'decisions': 1,
          'njim': 1,
          'woefully': 1,
          'miscast': 1,
          'nwhile': 1,
          'face': 1,
          'supple': 1,
          'rubber': 1,
          'makeup': 1,
          'superfluous': 1,
          'nothing': 1,
          'nhis': 1,
          'accent': 1,
          'keeps': 1,
          'changing': 1,
          'assume': 1,
          'shooting': 1,
          'karloff': 1,
          'ends': 1,
          'sounding': 1,
          'weird': 1,
          'slurry': 1,
          'richard': 1,
          'nixon': 1,
          'sean': 1,
          'connery': 1,
          'cartman': 1,
          'south': 1,
          'park': 1,
          'knowing': 1,
          'many': 1,
          'scenes': 1,
          'alone': 1,
          'home': 1,
          'falls': 1,
          'back': 1,
          'standup': 1,
          'comedy': 1,
          'clowns': 1,
          'around': 1,
          'ace': 1,
          'venturastyle': 1,
          'nneedless': 1,
          'say': 1,
          'wisecracking': 1,
          'antics': 1,
          'dont': 1,
          'quite': 1,
          'fit': 1,
          'character': 1,
          'embittered': 1,
          'loner': 1,
          'nlittle': 1,
          'little': 1,
          'except': 1,
          'eyes': 1,
          'cute': 1,
          'smile': 1,
          'fine': 1,
          'limited': 1,
          'original': 1,
          'purpose': 1,
          'seuss': 1,
          'story': 1,
          'finding': 1,
          'santa': 1,
          'living': 1,
          'room': 1,
          'tree': 1,
          'nhowever': 1,
          'expanded': 1,
          'script': 1,
          'makes': 1,
          'important': 1,
          'challenge': 1,
          'nbottom': 1,
          'line': 1,
          'youre': 1,
          'movies': 1,
          'leave': 1,
          'behind': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'prison': 5,
          'christopher': 4,
          'nthe': 4,
          'escape': 4,
          'following': 3,
          'lambert': 3,
          'even': 3,
          'fortress': 3,
          'begins': 3,
          'highlander': 2,
          'like': 2,
          'acting': 2,
          'meant': 2,
          'became': 2,
          'films': 2,
          'often': 2,
          'science': 2,
          'fiction': 2,
          'talent': 2,
          'end': 2,
          'movie': 2,
          'reason': 2,
          'population': 2,
          'njake': 2,
          'karen': 2,
          'brennick': 2,
          'laughlin': 2,
          'authorities': 2,
          'equiped': 2,
          'futuristic': 2,
          'inmates': 2,
          'help': 2,
          'warden': 2,
          'smith': 2,
          'rather': 2,
          'interesting': 2,
          'situations': 2,
          'predictable': 2,
          'performance': 2,
          'mid1980s': 1,
          'splendid': 1,
          'debut': 1,
          'hugh': 1,
          'hudsons': 1,
          'greystoke': 1,
          'relative': 1,
          'success': 1,
          'first': 1,
          'looked': 1,
          'lamberts': 1,
          'career': 1,
          'might': 1,
          'go': 1,
          'somewhere': 1,
          'nbut': 1,
          'wasnt': 1,
          'obvious': 1,
          'ii': 1,
          'nin': 1,
          'decade': 1,
          'associated': 1,
          'low': 1,
          'budgets': 1,
          'lower': 1,
          'quality': 1,
          'nvery': 1,
          'fans': 1,
          'genre': 1,
          'learned': 1,
          'hard': 1,
          'way': 1,
          'evade': 1,
          'anything': 1,
          'starring': 1,
          'nwhether': 1,
          'real': 1,
          'lack': 1,
          'terrible': 1,
          'miscasting': 1,
          'simple': 1,
          'bad': 1,
          'luck': 1,
          'isnt': 1,
          'important': 1,
          'result': 1,
          'almost': 1,
          'always': 1,
          'horrible': 1,
          'said': 1,
          '1993': 1,
          'directed': 1,
          'stuart': 1,
          'gordon': 1,
          'director': 1,
          'created': 1,
          'cult': 1,
          '1980s': 1,
          'horror': 1,
          'gorefests': 1,
          'reanimator': 1,
          'beyond': 1,
          'set': 1,
          '2018': 1,
          'nfor': 1,
          'undisclosed': 1,
          'usa': 1,
          'introduced': 1,
          'strict': 1,
          'control': 1,
          'couples': 1,
          'barred': 1,
          'one': 1,
          'child': 1,
          'lori': 1,
          'broke': 1,
          'law': 1,
          'caught': 1,
          'border': 1,
          'nsentenced': 1,
          '31': 1,
          'years': 1,
          'thrown': 1,
          'privately': 1,
          'owned': 1,
          'correctional': 1,
          'facility': 1,
          'stateoftheart': 1,
          'technology': 1,
          'run': 1,
          'computer': 1,
          'called': 1,
          'zed': 1,
          'nalthough': 1,
          'gismos': 1,
          'regulate': 1,
          'every': 1,
          'aspect': 1,
          'lives': 1,
          'make': 1,
          'impossible': 1,
          'use': 1,
          'violence': 1,
          'survives': 1,
          'many': 1,
          'ordeals': 1,
          'earns': 1,
          'respect': 1,
          'would': 1,
          'planing': 1,
          'nsuch': 1,
          'become': 1,
          'necessity': 1,
          'poe': 1,
          'kurtwood': 1,
          'showing': 1,
          'unhealthy': 1,
          'interest': 1,
          'nafter': 1,
          'intriguing': 1,
          'beginning': 1,
          'special': 1,
          'effects': 1,
          'depict': 1,
          'settings': 1,
          'soon': 1,
          'starts': 1,
          'sinking': 1,
          'mediocrity': 1,
          'screenplay': 1,
          'quickly': 1,
          'degenerates': 1,
          'whole': 1,
          'series': 1,
          'clich': 1,
          'painfully': 1,
          'nby': 1,
          'time': 1,
          'begin': 1,
          'look': 1,
          'utterly': 1,
          'implausible': 1,
          'nof': 1,
          'course': 1,
          'never': 1,
          'tried': 1,
          'explain': 1,
          'country': 1,
          'lacks': 1,
          'resources': 1,
          'support': 1,
          'present': 1,
          'happens': 1,
          'spend': 1,
          'bucketloads': 1,
          'money': 1,
          'ultraexpensive': 1,
          'supertechnology': 1,
          'sole': 1,
          'intention': 1,
          'keeping': 1,
          'alive': 1,
          'useless': 1,
          'dangerous': 1,
          'members': 1,
          'society': 1,
          'initially': 1,
          'plot': 1,
          'done': 1,
          'wrong': 1,
          'stereotyped': 1,
          'characters': 1,
          'played': 1,
          'interested': 1,
          'talented': 1,
          'actors': 1,
          'nlori': 1,
          'although': 1,
          'physically': 1,
          'attractive': 1,
          'shows': 1,
          'ability': 1,
          'sequoia': 1,
          'nkurtwood': 1,
          'uninspired': 1,
          'capable': 1,
          'solid': 1,
          'yet': 1,
          'forgettable': 1,
          'nlamberts': 1,
          'also': 1,
          'good': 1,
          'bigger': 1,
          'couldnt': 1,
          'destined': 1,
          'oblivion': 1,
          'nneg': 1}),
 Counter({'musketeer': 3,
          'nthe': 2,
          'dartagnan': 2,
          'justin': 2,
          'chambers': 2,
          'royal': 2,
          'suvari': 2,
          'france': 2,
          'one': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'universal': 1,
          'pictures': 1,
          'nhollywood': 1,
          'launches': 1,
          'another': 1,
          'assault': 1,
          'classic': 1,
          'literature': 1,
          '50': 1,
          'million': 1,
          'adaptation': 1,
          'alexandre': 1,
          'dumass': 1,
          'novel': 1,
          'thats': 1,
          'strong': 1,
          'action': 1,
          'weak': 1,
          'drama': 1,
          'fusing': 1,
          'hong': 1,
          'kong': 1,
          'martial': 1,
          'arts': 1,
          '17th': 1,
          'century': 1,
          'swordplay': 1,
          'story': 1,
          'chronicles': 1,
          'adventures': 1,
          'dashing': 1,
          'leaves': 1,
          'village': 1,
          'gascogne': 1,
          'headed': 1,
          'paris': 1,
          'join': 1,
          'king': 1,
          'louis': 1,
          'xiiis': 1,
          'elite': 1,
          'guard': 1,
          'musketeers': 1,
          'search': 1,
          'man': 1,
          'killed': 1,
          'parents': 1,
          '14': 1,
          'years': 1,
          'earlier': 1,
          'nthis': 1,
          'puts': 1,
          'conflict': 1,
          'formidable': 1,
          'febre': 1,
          'tim': 1,
          'roth': 1,
          'vicious': 1,
          'henchman': 1,
          'conniving': 1,
          'cardinal': 1,
          'richelieu': 1,
          'stephen': 1,
          'rea': 1,
          'traditional': 1,
          'trio': 1,
          'aramis': 1,
          'nick': 1,
          'moran': 1,
          'athos': 1,
          'jan': 1,
          'gregor': 1,
          'kremp': 1,
          'porthos': 1,
          'steve': 1,
          'speirs': 1,
          'dont': 1,
          'offer': 1,
          'much': 1,
          'help': 1,
          'turns': 1,
          'feisty': 1,
          'francesca': 1,
          'mena': 1,
          'chambermaid': 1,
          'queen': 1,
          'catherine': 1,
          'deneuve': 1,
          'nscripter': 1,
          'gene': 1,
          'quintano': 1,
          'directorcinematographer': 1,
          'peter': 1,
          'hyams': 1,
          'primarily': 1,
          'interested': 1,
          'derringdo': 1,
          'evidenced': 1,
          'choreographer': 1,
          'xinxin': 1,
          'xiongs': 1,
          'elaborate': 1,
          'original': 1,
          'stunts': 1,
          'including': 1,
          'fastpaced': 1,
          'stagecoach': 1,
          'chase': 1,
          'tavern': 1,
          'brawl': 1,
          'rolling': 1,
          'barrels': 1,
          'highwire': 1,
          'acrobatics': 1,
          'combatants': 1,
          'dangling': 1,
          'ropes': 1,
          'ladderfight': 1,
          'sequence': 1,
          'nfilmed': 1,
          'southern': 1,
          'scenery': 1,
          'sets': 1,
          'costumes': 1,
          'spectacular': 1,
          'lighting': 1,
          'dark': 1,
          'editing': 1,
          'filled': 1,
          'choppy': 1,
          'restless': 1,
          'mtvish': 1,
          'cuts': 1,
          'nas': 1,
          'swashbuckling': 1,
          'bland': 1,
          'calvin': 1,
          'klein': 1,
          'model': 1,
          'buckles': 1,
          'swashing': 1,
          'totally': 1,
          'lacking': 1,
          'onscreen': 1,
          'charisma': 1,
          'mention': 1,
          'acting': 1,
          'skill': 1,
          'nmena': 1,
          'impressive': 1,
          'american': 1,
          'beauty': 1,
          'seems': 1,
          'like': 1,
          'contemporary': 1,
          'interloper': 1,
          'court': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'cinematic': 1,
          'shallow': 1,
          '3': 1,
          'n': 1,
          'nnot': 1,
          'time': 1,
          'round': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'avengers': 6,
          'lack': 4,
          'peel': 4,
          'steed': 4,
          'may': 3,
          'nat': 3,
          'nthis': 3,
          'early': 3,
          'picture': 3,
          'plot': 3,
          'even': 3,
          'never': 3,
          'nthe': 3,
          'sir': 3,
          'august': 3,
          'note': 2,
          'upon': 2,
          'would': 2,
          'well': 2,
          'take': 2,
          'made': 2,
          'originally': 2,
          'opening': 2,
          'studios': 2,
          'good': 2,
          'barely': 2,
          'wit': 2,
          'style': 2,
          'n': 2,
          'films': 2,
          'feature': 2,
          'characters': 2,
          'role': 2,
          'emma': 2,
          'amidst': 2,
          'fiennes': 2,
          'new': 2,
          'two': 2,
          'theyre': 2,
          'make': 2,
          'man': 2,
          'part': 2,
          'pictures': 2,
          'least': 2,
          'entertaining': 2,
          'sight': 2,
          'connery': 2,
          'far': 2,
          'production': 2,
          'design': 2,
          'shot': 2,
          'nthere': 2,
          'visual': 2,
          'interest': 2,
          'trailer': 2,
          'year': 2,
          'consider': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'end': 1,
          'day': 1,
          'reflecting': 1,
          'debacle': 1,
          'warning': 1,
          'clouds': 1,
          'loomed': 1,
          'horizon': 1,
          'project': 1,
          'warner': 1,
          'bros': 1,
          'contentious': 1,
          'decision': 1,
          'abandon': 1,
          'preview': 1,
          'press': 1,
          'screenings': 1,
          'scrapped': 1,
          'plans': 1,
          'gala': 1,
          'premiere': 1,
          'highlyanticipated': 1,
          'rendition': 1,
          'cult': 1,
          'television': 1,
          'show': 1,
          'slotted': 1,
          'june': 1,
          'gone': 1,
          'headtohead': 1,
          'rival': 1,
          'heavy': 1,
          'hitters': 1,
          'eventual': 1,
          'demotion': 1,
          'less': 1,
          'potent': 1,
          'midaugust': 1,
          'obvious': 1,
          'indication': 1,
          'confidence': 1,
          'nand': 1,
          'reason': 1,
          'joyless': 1,
          'exercise': 1,
          'held': 1,
          'together': 1,
          'coherent': 1,
          'lacking': 1,
          'semblance': 1,
          'excitement': 1,
          'thrills': 1,
          'nremarkable': 1,
          'banality': 1,
          'brutally': 1,
          'uninvolving': 1,
          'catastrophic': 1,
          'mess': 1,
          'immediately': 1,
          'invites': 1,
          'comparisons': 1,
          'last': 1,
          'years': 1,
          'case': 1,
          'study': 1,
          'substance': 1,
          'joel': 1,
          'schumachers': 1,
          'muchloathed': 1,
          'batman': 1,
          'robin': 1,
          'indeed': 1,
          'appalling': 1,
          'ridiculous': 1,
          'sequences': 1,
          'find': 1,
          'central': 1,
          'dressed': 1,
          'fuzzy': 1,
          'oversized': 1,
          'costumes': 1,
          'numa': 1,
          'thurman': 1,
          'takes': 1,
          'salacious': 1,
          'catsuitclad': 1,
          'karatechopping': 1,
          'immortalized': 1,
          'diana': 1,
          'rigg': 1,
          'bright': 1,
          'spot': 1,
          'aforementioned': 1,
          'schumacher': 1,
          'disaster': 1,
          'imbuing': 1,
          'poison': 1,
          'ivy': 1,
          'dose': 1,
          'sassiness': 1,
          'sly': 1,
          'gave': 1,
          'audiences': 1,
          'something': 1,
          'smile': 1,
          'cinematic': 1,
          'carnage': 1,
          'nunfortunately': 1,
          'cant': 1,
          'said': 1,
          'cohort': 1,
          'ralph': 1,
          'john': 1,
          'taking': 1,
          'patrick': 1,
          'macnee': 1,
          'demonstrate': 1,
          'appreciable': 1,
          'chemistry': 1,
          'whatsoever': 1,
          'fatally': 1,
          'crippling': 1,
          'volley': 1,
          'fizzling': 1,
          'repartee': 1,
          'back': 1,
          'forth': 1,
          'trade': 1,
          'doubleentendres': 1,
          'enthusiasm': 1,
          'actors': 1,
          'painfully': 1,
          'aware': 1,
          'board': 1,
          'sinking': 1,
          'ship': 1,
          'rate': 1,
          'usuallysplendid': 1,
          'actor': 1,
          'mr': 1,
          'transition': 1,
          'arthouse': 1,
          'apollo': 1,
          'mainstream': 1,
          'leading': 1,
          'tepid': 1,
          'turn': 1,
          'much': 1,
          'inroad': 1,
          'commendably': 1,
          'seedy': 1,
          'performance': 1,
          'regrettablyneglected': 1,
          'kathyrn': 1,
          'bigelow': 1,
          'strange': 1,
          'days': 1,
          'duo': 1,
          'look': 1,
          'admittedly': 1,
          'heavily': 1,
          'dependent': 1,
          'fun': 1,
          'watch': 1,
          'found': 1,
          'growing': 1,
          'increasingly': 1,
          'distant': 1,
          'annoyed': 1,
          'spark': 1,
          'cheekily': 1,
          'ironic': 1,
          'navigated': 1,
          'caperesque': 1,
          'nwhen': 1,
          'checking': 1,
          'wristwatch': 1,
          'shifting': 1,
          'restlessly': 1,
          'seat': 1,
          'began': 1,
          'alleviate': 1,
          'boredom': 1,
          'considering': 1,
          'might': 1,
          'played': 1,
          'filmmakers': 1,
          'chose': 1,
          'go': 1,
          'instead': 1,
          'erstwhile': 1,
          'mrs': 1,
          'kate': 1,
          'beckinsale': 1,
          'although': 1,
          'notion': 1,
          'intrigues': 1,
          'gwyneth': 1,
          'paltrow': 1,
          'running': 1,
          'veritably': 1,
          'handle': 1,
          'spoton': 1,
          'english': 1,
          'accent': 1,
          'nif': 1,
          'nothing': 1,
          'else': 1,
          'itd': 1,
          'highly': 1,
          'incongruous': 1,
          'vaguely': 1,
          'twiggish': 1,
          'young': 1,
          'actress': 1,
          'kicking': 1,
          'butt': 1,
          'story': 1,
          'involves': 1,
          'everbemused': 1,
          'tandem': 1,
          'combating': 1,
          'malevolent': 1,
          'de': 1,
          'wynter': 1,
          'sean': 1,
          'eccentric': 1,
          'aristocrat': 1,
          'threatening': 1,
          'safety': 1,
          'nation': 1,
          'climatecontrolling': 1,
          'contraption': 1,
          'also': 1,
          'sip': 1,
          'lot': 1,
          'tea': 1,
          'noverlooking': 1,
          'goofy': 1,
          'cloning': 1,
          'nonsense': 1,
          'quirky': 1,
          'hijinx': 1,
          'involving': 1,
          'protagonists': 1,
          'superiors': 1,
          'sounds': 1,
          'better': 1,
          'plays': 1,
          'rendered': 1,
          'almost': 1,
          'indecipherable': 1,
          'blatant': 1,
          'postproduction': 1,
          'tinkering': 1,
          'clearly': 1,
          'evident': 1,
          'cut': 1,
          'shreds': 1,
          'gripping': 1,
          'drama': 1,
          'heroes': 1,
          'accordingly': 1,
          'villainous': 1,
          'seriously': 1,
          'given': 1,
          'cohesion': 1,
          'menace': 1,
          'conveyed': 1,
          'buffoonish': 1,
          'maniac': 1,
          'decidedly': 1,
          'uncompelling': 1,
          'nmr': 1,
          'whos': 1,
          'onscreen': 1,
          'long': 1,
          'enough': 1,
          'register': 1,
          'impression': 1,
          'approaches': 1,
          'like': 1,
          'fulfilling': 1,
          'contractual': 1,
          'obligation': 1,
          'simultaneously': 1,
          'chewing': 1,
          'scenery': 1,
          'unable': 1,
          'hide': 1,
          'disinterest': 1,
          'looks': 1,
          'genuinely': 1,
          'handsome': 1,
          'fine': 1,
          'costume': 1,
          'anthony': 1,
          'powell': 1,
          'crisply': 1,
          'roger': 1,
          'pratt': 1,
          'nin': 1,
          'particular': 1,
          'gleaming': 1,
          'stuart': 1,
          'craig': 1,
          'commands': 1,
          'attention': 1,
          'adeptly': 1,
          'drawing': 1,
          'elements': 1,
          'old': 1,
          'order': 1,
          'depict': 1,
          'great': 1,
          'britain': 1,
          'handful': 1,
          'striking': 1,
          'moments': 1,
          'including': 1,
          'attack': 1,
          'swarm': 1,
          'giant': 1,
          'robotic': 1,
          'bees': 1,
          'nice': 1,
          'finding': 1,
          'way': 1,
          'walk': 1,
          'water': 1,
          'unremittingly': 1,
          'dull': 1,
          'instances': 1,
          'fail': 1,
          'stir': 1,
          'raise': 1,
          'pulse': 1,
          'rates': 1,
          'nby': 1,
          'time': 1,
          'climax': 1,
          'arrived': 1,
          'slugging': 1,
          'crashing': 1,
          'waves': 1,
          'thundering': 1,
          'rain': 1,
          'quickest': 1,
          'escape': 1,
          'route': 1,
          'theatre': 1,
          'nnot': 1,
          'coincidentally': 1,
          'enticing': 1,
          'bits': 1,
          'bravura': 1,
          'shots': 1,
          'assembled': 1,
          'movies': 1,
          'remarkable': 1,
          'savvy': 1,
          'piece': 1,
          'work': 1,
          'ironically': 1,
          'infinitely': 1,
          'appealing': 1,
          'first': 1,
          'promo': 1,
          'rounds': 1,
          'spring': 1,
          'probably': 1,
          'favourite': 1,
          'studio': 1,
          'nits': 1,
          'everything': 1,
          'saucy': 1,
          'clever': 1,
          'engaging': 1,
          'na': 1,
          'crushing': 1,
          'disappointment': 1,
          'one': 1,
          'worst': 1,
          'outings': 1,
          'drearily': 1,
          'awful': 1,
          'savoured': 1,
          'gleefully': 1,
          'bad': 1,
          'polished': 1,
          'overlook': 1,
          'deficiencies': 1,
          'upcoming': 1,
          'lifeless': 1,
          'sure': 1,
          'hope': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'stallone': 6,
          'good': 6,
          'scenes': 4,
          'nin': 4,
          'nthe': 3,
          'really': 3,
          'nhowever': 3,
          'dull': 3,
          'fact': 3,
          'kietal': 2,
          'rappaport': 2,
          'involved': 2,
          'de': 2,
          'niro': 2,
          'work': 2,
          'going': 2,
          'plot': 2,
          'performance': 2,
          'cant': 2,
          'bad': 2,
          'long': 2,
          'action': 2,
          'delivering': 2,
          'well': 2,
          'ending': 2,
          'attempts': 1,
          'act': 1,
          'cop': 1,
          'drama': 1,
          'set': 1,
          'neighbourhood': 1,
          'pratically': 1,
          'built': 1,
          'whos': 1,
          'nephew': 1,
          'played': 1,
          'michael': 1,
          'car': 1,
          'crash': 1,
          'killing': 1,
          'two': 1,
          'black': 1,
          'youths': 1,
          'nkeital': 1,
          'dosent': 1,
          'want': 1,
          'get': 1,
          'anything': 1,
          'gets': 1,
          'rid': 1,
          'try': 1,
          'hell': 1,
          'nthis': 1,
          'brilliant': 1,
          'nit': 1,
          'sounds': 1,
          'like': 1,
          'great': 1,
          'actors': 1,
          'first': 1,
          'grade': 1,
          'supporting': 1,
          'cast': 1,
          'aswell': 1,
          'attempting': 1,
          'deliver': 1,
          'hold': 1,
          'nalthough': 1,
          'acting': 1,
          'fantastic': 1,
          'even': 1,
          'isnt': 1,
          'directing': 1,
          'story': 1,
          'winded': 1,
          'nsome': 1,
          'go': 1,
          'nothing': 1,
          'happening': 1,
          'suspect': 1,
          'trying': 1,
          'avoid': 1,
          'serious': 1,
          'means': 1,
          'dialogue': 1,
          'warbling': 1,
          'basically': 1,
          'repeats': 1,
          'points': 1,
          'matter': 1,
          'potential': 1,
          'wasted': 1,
          'cliched': 1,
          'thing': 1,
          'keep': 1,
          'usual': 1,
          'performances': 1,
          'although': 1,
          'given': 1,
          'much': 1,
          'say': 1,
          'gives': 1,
          'nas': 1,
          'said': 1,
          'done': 1,
          'ntheres': 1,
          'also': 1,
          'uses': 1,
          'cinemas': 1,
          'sound': 1,
          'system': 1,
          'last': 1,
          '10': 1,
          'minutes': 1,
          '2': 1,
          'hour': 1,
          'one': 1,
          'best': 1,
          'endings': 1,
          '1997': 1,
          'nif': 1,
          'rest': 1,
          'ncop': 1,
          'land': 1,
          'turns': 1,
          'power': 1,
          'house': 1,
          'rather': 1,
          'every': 1,
          'exciting': 1,
          'nhugely': 1,
          'disappointing': 1,
          'recommend': 1,
          'nneg': 1}),
 Counter({'species': 12,
          '2': 9,
          'film': 4,
          'special': 3,
          'effects': 3,
          'natasha': 3,
          'movie': 3,
          'movies': 3,
          'sex': 3,
          'would': 3,
          'theres': 3,
          'way': 3,
          'patrick': 3,
          'first': 2,
          'science': 2,
          'diverted': 2,
          'henstridge': 2,
          'obvious': 2,
          'nthe': 2,
          'recommend': 2,
          'audience': 2,
          'least': 2,
          'get': 2,
          'bad': 2,
          'enough': 2,
          'blood': 2,
          'gore': 2,
          'bare': 2,
          'nthis': 2,
          'theater': 2,
          'described': 2,
          'ni': 2,
          'played': 2,
          'another': 2,
          'eve': 2,
          'marg': 2,
          'helgenberger': 2,
          'nmeanwhile': 2,
          'justin': 2,
          'like': 2,
          'madsen': 2,
          'one': 2,
          'patricks': 2,
          'mykelti': 2,
          'williamson': 2,
          'kind': 2,
          'significant': 2,
          'little': 2,
          'moderatelysuccessful': 1,
          'fiction': 1,
          'yarn': 1,
          'audiences': 1,
          'nifty': 1,
          'well': 1,
          'paced': 1,
          'action': 1,
          'sequences': 1,
          'frequent': 1,
          'views': 1,
          'modelturnedactress': 1,
          'sans': 1,
          'clothing': 1,
          'nhowever': 1,
          'definitely': 1,
          'cried': 1,
          'sequel': 1,
          'nand': 1,
          'considering': 1,
          'quality': 1,
          'mgm': 1,
          'stopped': 1,
          'ahead': 1,
          'thing': 1,
          'distinguishes': 1,
          'awful': 1,
          'nif': 1,
          'throw': 1,
          'away': 1,
          'plot': 1,
          'characterized': 1,
          'blatant': 1,
          'disregard': 1,
          'intelligence': 1,
          'logic': 1,
          'coherence': 1,
          'consistency': 1,
          'actually': 1,
          'things': 1,
          'select': 1,
          'nof': 1,
          'course': 1,
          'primarily': 1,
          'comprised': 1,
          'teenage': 1,
          'boys': 1,
          'theory': 1,
          'shouldnt': 1,
          'able': 1,
          'r': 1,
          'rated': 1,
          'connoisseurs': 1,
          'ntheres': 1,
          'simulated': 1,
          'flesh': 1,
          'prevent': 1,
          'ever': 1,
          'becoming': 1,
          'boring': 1,
          'grade': 1,
          'z': 1,
          'exploitation': 1,
          'flick': 1,
          'thats': 1,
          'ripe': 1,
          'mystery': 1,
          '3000': 1,
          'treatment': 1,
          'nsomewhere': 1,
          'someplace': 1,
          'recall': 1,
          'hearing': 1,
          'erotic': 1,
          'love': 1,
          'know': 1,
          'used': 1,
          'adjective': 1,
          'peculiar': 1,
          'notion': 1,
          'eroticism': 1,
          'nsure': 1,
          'lot': 1,
          'nudity': 1,
          'almost': 1,
          'always': 1,
          'accompanied': 1,
          'ripping': 1,
          'open': 1,
          'womans': 1,
          'abdomen': 1,
          'alien': 1,
          'baby': 1,
          'claws': 1,
          'free': 1,
          'splattering': 1,
          'directions': 1,
          'nanyone': 1,
          'turned': 1,
          'someone': 1,
          'care': 1,
          'sitting': 1,
          'next': 1,
          'suppose': 1,
          'main': 1,
          'attraction': 1,
          'question': 1,
          'yes': 1,
          'remove': 1,
          'top': 1,
          'briefly': 1,
          'nalthough': 1,
          'character': 1,
          'original': 1,
          'dead': 1,
          'government': 1,
          'scientists': 1,
          'still': 1,
          'dna': 1,
          'suicidal': 1,
          'impulse': 1,
          'decide': 1,
          'create': 1,
          'clone': 1,
          'creature': 1,
          'dubbed': 1,
          'creator': 1,
          'dr': 1,
          'laura': 1,
          'baker': 1,
          'reprising': 1,
          'role': 1,
          'genetically': 1,
          'engineered': 1,
          'kinder': 1,
          'docile': 1,
          'man': 1,
          'finally': 1,
          'set': 1,
          'foot': 1,
          'mars': 1,
          'na': 1,
          'team': 1,
          'three': 1,
          'led': 1,
          'ross': 1,
          'lazard': 1,
          'traveled': 1,
          'red': 1,
          'planet': 1,
          'return': 1,
          'earth': 1,
          'bring': 1,
          'something': 1,
          'nross': 1,
          'become': 1,
          'halfhumanhalfalien': 1,
          'hybrid': 1,
          'hes': 1,
          'soon': 1,
          'mating': 1,
          'crazy': 1,
          'collecting': 1,
          'bloodsoaked': 1,
          'children': 1,
          'result': 1,
          'session': 1,
          'nhis': 1,
          'intention': 1,
          'obviously': 1,
          'world': 1,
          'domination': 1,
          'nstanding': 1,
          'indomitable': 1,
          'soldier': 1,
          'fortune': 1,
          'preston': 1,
          'lennox': 1,
          'michael': 1,
          'fellow': 1,
          'astronauts': 1,
          'dennis': 1,
          'gamble': 1,
          'nbut': 1,
          'learns': 1,
          'female': 1,
          'damping': 1,
          'ardor': 1,
          'nim': 1,
          'sure': 1,
          'budget': 1,
          'portion': 1,
          'must': 1,
          'gone': 1,
          'paying': 1,
          'handsome': 1,
          'salaries': 1,
          'several': 1,
          'recognizable': 1,
          'actors': 1,
          'opposed': 1,
          'nmichael': 1,
          'back': 1,
          'second': 1,
          'round': 1,
          'clearly': 1,
          'hand': 1,
          'grab': 1,
          'money': 1,
          'run': 1,
          'nditto': 1,
          'james': 1,
          'cromwell': 1,
          'plays': 1,
          'father': 1,
          'underused': 1,
          'word': 1,
          'describe': 1,
          'involvement': 1,
          'invisible': 1,
          'ngeorge': 1,
          'dzundza': 1,
          'gets': 1,
          'scenery': 1,
          'chewing': 1,
          'angrybutinept': 1,
          'general': 1,
          'lazards': 1,
          'performance': 1,
          'flat': 1,
          'makes': 1,
          'henstridges': 1,
          'limited': 1,
          'abilities': 1,
          'look': 1,
          'good': 1,
          'comparison': 1,
          'whole': 1,
          'production': 1,
          'energy': 1,
          'cast': 1,
          'part': 1,
          'wisecracking': 1,
          'black': 1,
          'sidekick': 1,
          'ncomplete': 1,
          'cheesy': 1,
          'breasts': 1,
          'around': 1,
          'every': 1,
          'narrative': 1,
          'corner': 1,
          'dialogue': 1,
          'capable': 1,
          'producing': 1,
          'howls': 1,
          'laughter': 1,
          'dumped': 1,
          'marketplace': 1,
          'without': 1,
          'advance': 1,
          'screenings': 1,
          'critics': 1,
          'ndirector': 1,
          'peter': 1,
          'medak': 1,
          'journeyman': 1,
          'maker': 1,
          'list': 1,
          'mediocre': 1,
          'resume': 1,
          'added': 1,
          'forgettable': 1,
          'title': 1,
          'appears': 1,
          'fun': 1,
          'said': 1,
          'anyone': 1,
          'trying': 1,
          'take': 1,
          'even': 1,
          'scintilla': 1,
          'seriousness': 1,
          'ndo': 1,
          'nabsolutely': 1,
          'admit': 1,
          'dopey': 1,
          'didnt': 1,
          'try': 1,
          'patience': 1,
          'degree': 1,
          'pseudointellectual': 1,
          'nheres': 1,
          'hoping': 1,
          '3': 1,
          'nneg': 1}),
 Counter({'prinze': 4,
          'nthe': 4,
          'blucas': 4,
          'summer': 3,
          'time': 3,
          'movie': 3,
          'freddie': 2,
          'jr': 2,
          'young': 2,
          'actor': 2,
          'utterly': 2,
          'boy': 2,
          'like': 2,
          'nwhile': 2,
          'comedy': 2,
          'brother': 2,
          'one': 2,
          'catch': 2,
          'story': 2,
          'love': 2,
          'tenley': 2,
          'cape': 2,
          'cod': 2,
          'baseball': 2,
          'fighting': 2,
          'dad': 2,
          'fred': 2,
          'teammates': 2,
          'make': 2,
          'woman': 2,
          'ass': 2,
          'lillard': 2,
          'nice': 2,
          'character': 2,
          'film': 2,
          'scooby': 2,
          'doo': 2,
          'number': 1,
          'critics': 1,
          'decided': 1,
          'open': 1,
          'season': 1,
          'prize': 1,
          'slamming': 1,
          'talentless': 1,
          'pretty': 1,
          'career': 1,
          'cruise': 1,
          'control': 1,
          'soundalike': 1,
          'disposable': 1,
          'teen': 1,
          'fluff': 1,
          'head': 1,
          'heels': 1,
          'boys': 1,
          'girls': 1,
          'shes': 1,
          'oeuvre': 1,
          'hard': 1,
          'defend': 1,
          'talent': 1,
          'ni': 1,
          'first': 1,
          'saw': 1,
          'independent': 1,
          'dark': 1,
          'house': 1,
          'yes': 1,
          'gave': 1,
          'subtle': 1,
          'impressive': 1,
          'performance': 1,
          'younger': 1,
          'americas': 1,
          'freakiest': 1,
          'families': 1,
          'nprinze': 1,
          'acting': 1,
          'chops': 1,
          'needs': 1,
          'take': 1,
          'supporting': 1,
          'roles': 1,
          'grownup': 1,
          'movies': 1,
          'show': 1,
          'nonbelievers': 1,
          'takes': 1,
          'n': 1,
          'certainly': 1,
          'wont': 1,
          'help': 1,
          'case': 1,
          'ninoffensive': 1,
          'generic': 1,
          'baseballrelated': 1,
          'romantic': 1,
          'little': 1,
          'kill': 1,
          'deals': 1,
          'affair': 1,
          'jessica': 1,
          'biel': 1,
          'wealthy': 1,
          'girl': 1,
          'ryan': 1,
          'local': 1,
          'working': 1,
          'class': 1,
          'family': 1,
          'dreams': 1,
          'becoming': 1,
          'bigtime': 1,
          'star': 1,
          'nryans': 1,
          'preoccupation': 1,
          'new': 1,
          'honeybunny': 1,
          'drives': 1,
          'elitist': 1,
          'father': 1,
          'bruce': 1,
          'davison': 1,
          'crazy': 1,
          'endangers': 1,
          'position': 1,
          'pitcher': 1,
          'league': 1,
          'team': 1,
          'nits': 1,
          'wonder': 1,
          'kid': 1,
          'pitch': 1,
          'occupied': 1,
          'making': 1,
          'bonding': 1,
          'ward': 1,
          'deserves': 1,
          'better': 1,
          'jason': 1,
          'gedrick': 1,
          'carousing': 1,
          'neighborhood': 1,
          'bar': 1,
          'filmmakers': 1,
          'desperately': 1,
          'want': 1,
          'quirky': 1,
          'characterheavy': 1,
          'bull': 1,
          'durham': 1,
          'havent': 1,
          'got': 1,
          'clue': 1,
          'get': 1,
          'nand': 1,
          'glide': 1,
          'clich': 1,
          'next': 1,
          '108': 1,
          'minutes': 1,
          'bit': 1,
          'originality': 1,
          'comes': 1,
          'marc': 1,
          'minor': 1,
          'role': 1,
          'centerfielder': 1,
          'texas': 1,
          'nin': 1,
          'early': 1,
          'barroom': 1,
          'scene': 1,
          'best': 1,
          'known': 1,
          'demonfighting': 1,
          'riley': 1,
          'finn': 1,
          'buffy': 1,
          'vampire': 1,
          'slayer': 1,
          'hears': 1,
          'compliment': 1,
          'guy': 1,
          'turns': 1,
          'teammate': 1,
          'matthew': 1,
          'states': 1,
          'na': 1,
          'bubble': 1,
          'butt': 1,
          'nwhen': 1,
          'gives': 1,
          'insane': 1,
          'nlook': 1,
          'calmly': 1,
          'says': 1,
          'nothing': 1,
          'sexual': 1,
          'goes': 1,
          'evaluate': 1,
          'hindends': 1,
          'players': 1,
          'including': 1,
          'lillards': 1,
          'nspeaking': 1,
          'asses': 1,
          'bare': 1,
          'nudity': 1,
          'clause': 1,
          'contract': 1,
          'two': 1,
          'stuntbutts': 1,
          'employed': 1,
          'couple': 1,
          'seminude': 1,
          'shots': 1,
          'nblucas': 1,
          'whose': 1,
          'secretly': 1,
          'dates': 1,
          'large': 1,
          'throughout': 1,
          'gets': 1,
          'another': 1,
          'unique': 1,
          'moment': 1,
          'late': 1,
          'nsick': 1,
          'hearing': 1,
          'fat': 1,
          'chick': 1,
          'jokes': 1,
          'climbs': 1,
          'top': 1,
          'table': 1,
          'loudly': 1,
          'declares': 1,
          'amplysized': 1,
          'ladies': 1,
          'speech': 1,
          'still': 1,
          'ends': 1,
          'objectifying': 1,
          'women': 1,
          'remains': 1,
          'change': 1,
          'pace': 1,
          'numbingly': 1,
          'ordinary': 1,
          'ntrivial': 1,
          'tidbit': 1,
          'marks': 1,
          'summit': 1,
          'nmarc': 1,
          'appears': 1,
          'jay': 1,
          'silent': 1,
          'bob': 1,
          'strike': 1,
          'back': 1,
          'gang': 1,
          'plays': 1,
          'upcoming': 1,
          'big': 1,
          'budget': 1,
          'version': 1,
          'old': 1,
          'cartoon': 1,
          'nneg': 1}),
 Counter({'one': 11,
          'alicia': 8,
          'nthe': 6,
          'film': 5,
          'george': 4,
          'like': 3,
          'theres': 3,
          'night': 3,
          'lee': 3,
          'garlington': 3,
          'shows': 3,
          'characters': 3,
          'thoughts': 3,
          'jeremy': 3,
          'kind': 3,
          'babysitting': 3,
          'see': 3,
          'ni': 3,
          'films': 2,
          'erotic': 2,
          'thrillers': 2,
          'shannon': 2,
          'tweed': 2,
          'nfirst': 2,
          'care': 2,
          'j': 2,
          'party': 2,
          'alicias': 2,
          'thing': 2,
          'nicky': 2,
          'little': 2,
          'segal': 2,
          'even': 2,
          'bed': 2,
          'guess': 2,
          'big': 2,
          'shes': 2,
          'nso': 2,
          'sometimes': 2,
          'featuring': 2,
          'sadly': 2,
          'everybody': 1,
          'thinking': 1,
          'nno': 1,
          'documentary': 1,
          'us': 1,
          'first': 1,
          'saw': 1,
          'cryin': 1,
          'video': 1,
          'nthis': 1,
          'starring': 1,
          'whirry': 1,
          'zero': 1,
          'sex': 1,
          'almost': 1,
          'nudity': 1,
          'wellplotted': 1,
          'flicks': 1,
          'nwell': 1,
          'anyway': 1,
          'plot': 1,
          'nalicia': 1,
          'plays': 1,
          'well': 1,
          'babysitter': 1,
          'taking': 1,
          'kids': 1,
          'parents': 1,
          'nwalsh': 1,
          'go': 1,
          'trying': 1,
          'introspective': 1,
          'every': 1,
          'except': 1,
          'cases': 1,
          'arent': 1,
          'kosher': 1,
          'boyfriend': 1,
          'london': 1,
          'gave': 1,
          'alltime': 1,
          'lousy': 1,
          'performances': 1,
          'mallrats': 1,
          'notch': 1,
          'better': 1,
          'whos': 1,
          'dorky': 1,
          'kid': 1,
          'hangs': 1,
          'bully': 1,
          'played': 1,
          'katt': 1,
          'suburbia': 1,
          'hes': 1,
          'got': 1,
          'quiet': 1,
          'creepiness': 1,
          'pat': 1,
          'nthey': 1,
          'decide': 1,
          'want': 1,
          'crash': 1,
          'job': 1,
          'looking': 1,
          'typical': 1,
          'hankypanky': 1,
          'nsomethine': 1,
          'intercuts': 1,
          'subplots': 1,
          'nwe': 1,
          'get': 1,
          'nickys': 1,
          'dreams': 1,
          'threeway': 1,
          'nthinking': 1,
          'coming': 1,
          'home': 1,
          'find': 1,
          'naked': 1,
          'bathtub': 1,
          'covered': 1,
          'tease': 1,
          'worst': 1,
          'dreaming': 1,
          'hunk': 1,
          'nit': 1,
          'together': 1,
          'nyea': 1,
          'wanted': 1,
          'though': 1,
          'im': 1,
          'used': 1,
          'seeing': 1,
          'mary': 1,
          'tyler': 1,
          'moore': 1,
          'fooling': 1,
          'around': 1,
          'flirting': 1,
          'disaster': 1,
          'ending': 1,
          'tragedy': 1,
          'come': 1,
          'nlike': 1,
          'interesting': 1,
          'mainly': 1,
          'mostly': 1,
          'fantasies': 1,
          'mystery': 1,
          'something': 1,
          'nbut': 1,
          'never': 1,
          'explored': 1,
          'basically': 1,
          'series': 1,
          'mastabatory': 1,
          'images': 1,
          'nonnude': 1,
          'scantilyclad': 1,
          'watched': 1,
          'free': 1,
          'previews': 1,
          'showtime': 1,
          'cinemax': 1,
          'let': 1,
          'tell': 1,
          'way': 1,
          'watch': 1,
          'mean': 1,
          'reason': 1,
          'put': 1,
          'kinds': 1,
          'late': 1,
          'theyre': 1,
          'good': 1,
          'sleeping': 1,
          'pills': 1,
          'nand': 1,
          'fat': 1,
          'waste': 1,
          'time': 1,
          'nneg': 1}),
 Counter({'ni': 16,
          'effects': 12,
          'lucas': 11,
          'film': 11,
          'phantom': 9,
          'menace': 9,
          'nthe': 9,
          'special': 9,
          'characters': 8,
          'one': 7,
          'see': 6,
          'first': 6,
          'star': 5,
          'wars': 5,
          'george': 5,
          'young': 5,
          'nand': 5,
          'wanted': 5,
          'movie': 5,
          'jedi': 5,
          'looking': 5,
          'character': 5,
          'anakin': 5,
          'original': 4,
          'movies': 4,
          'got': 4,
          'minutes': 4,
          'n': 4,
          'dont': 4,
          'neeson': 3,
          'portman': 3,
          'lloyd': 3,
          'every': 3,
          'trilogy': 3,
          'people': 3,
          'time': 3,
          'seen': 3,
          'hype': 3,
          'picture': 3,
          'tired': 3,
          'films': 3,
          'shot': 3,
          'fifteen': 3,
          'scene': 3,
          'isnt': 3,
          'digital': 3,
          'didnt': 3,
          'story': 3,
          'quigon': 3,
          'jar': 3,
          'tatooine': 3,
          'darth': 3,
          'thing': 3,
          'like': 3,
          '1999': 2,
          'liam': 2,
          'ewan': 2,
          'mcgregor': 2,
          'natalie': 2,
          'jake': 2,
          'pernilla': 2,
          'august': 2,
          'ahmed': 2,
          'best': 2,
          'nive': 2,
          'would': 2,
          'impossible': 2,
          'fact': 2,
          'nearly': 2,
          'much': 2,
          'many': 2,
          'moving': 2,
          'pretty': 2,
          'well': 2,
          'theater': 2,
          'less': 2,
          'back': 2,
          'three': 2,
          'nwhen': 2,
          'series': 2,
          'released': 2,
          'last': 2,
          'nbut': 2,
          'outside': 2,
          'knights': 2,
          'asked': 2,
          'magic': 2,
          'end': 2,
          'away': 2,
          'force': 2,
          'nits': 2,
          'looked': 2,
          'nthere': 2,
          'attempts': 2,
          'bad': 2,
          'good': 2,
          'nthis': 2,
          'around': 2,
          'jinn': 2,
          'lost': 2,
          'obiwan': 2,
          'naboo': 2,
          'truly': 2,
          'binks': 2,
          'cgi': 2,
          'mother': 2,
          'maul': 2,
          'lines': 2,
          'way': 2,
          'nwhat': 2,
          'role': 2,
          'hes': 2,
          'really': 2,
          'interesting': 2,
          'great': 2,
          'look': 2,
          'two': 2,
          'also': 2,
          'action': 2,
          'found': 2,
          'depth': 2,
          'ive': 2,
          'sick': 2,
          'cant': 2,
          'spaceships': 2,
          'go': 2,
          'hours': 2,
          'episode': 1,
          'ndirector': 1,
          'cast': 1,
          'ian': 1,
          'mcdiarmid': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'oliver': 1,
          'ford': 1,
          'davies': 1,
          'terence': 1,
          'stamp': 1,
          'frank': 1,
          'oz': 1,
          'kenny': 1,
          'baker': 1,
          'anthony': 1,
          'daniels': 1,
          'screenplay': 1,
          'producers': 1,
          'rick': 1,
          'mccallum': 1,
          'runtime': 1,
          '131': 1,
          'min': 1,
          'nus': 1,
          'distribution': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'rated': 1,
          'pg': 1,
          'mild': 1,
          'violence': 1,
          'thematic': 1,
          'elements': 1,
          'ncopyright': 1,
          'nathaniel': 1,
          'r': 1,
          'atcheson': 1,
          'na': 1,
          'fellow': 1,
          'critic': 1,
          'stated': 1,
          'belief': 1,
          'reviewer': 1,
          'speak': 1,
          'review': 1,
          'attempted': 1,
          'obey': 1,
          'rule': 1,
          'recent': 1,
          'months': 1,
          'case': 1,
          'person': 1,
          'goes': 1,
          'brings': 1,
          'baggage': 1,
          'means': 1,
          'nfor': 1,
          'calibrated': 1,
          'creativity': 1,
          'child': 1,
          'masterful': 1,
          'works': 1,
          'art': 1,
          'mix': 1,
          'stories': 1,
          'astonishing': 1,
          'still': 1,
          'hold': 1,
          'darn': 1,
          'release': 1,
          'doesnt': 1,
          'make': 1,
          'dedicated': 1,
          'non': 1,
          'contrary': 1,
          'empire': 1,
          'strikes': 1,
          'particular': 1,
          'items': 1,
          'short': 1,
          'list': 1,
          'love': 1,
          'heard': 1,
          'making': 1,
          'ninefilm': 1,
          'exited': 1,
          'saw': 1,
          'screenshots': 1,
          'year': 1,
          'ago': 1,
          'embarked': 1,
          'yearlong': 1,
          'drool': 1,
          'anticipation': 1,
          'previews': 1,
          'thanksgiving': 1,
          'ready': 1,
          'insane': 1,
          'marketing': 1,
          'campaign': 1,
          'lucasfilms': 1,
          'secretive': 1,
          'snobbery': 1,
          'nin': 1,
          'weeks': 1,
          'opened': 1,
          'multitudes': 1,
          'fans': 1,
          'waited': 1,
          'theaters': 1,
          'stood': 1,
          'boiling': 1,
          'sun': 1,
          'days': 1,
          'advance': 1,
          'ones': 1,
          'hearing': 1,
          'seeing': 1,
          'cardboard': 1,
          'cutouts': 1,
          'whenever': 1,
          'went': 1,
          'kfc': 1,
          'taco': 1,
          'bell': 1,
          'nreader': 1,
          'misunderstand': 1,
          'antihype': 1,
          'reaction': 1,
          'unavoidable': 1,
          'understand': 1,
          'accept': 1,
          'happens': 1,
          'prequel': 1,
          'widely': 1,
          'beloved': 1,
          'get': 1,
          'nfive': 1,
          'knew': 1,
          'problem': 1,
          'churning': 1,
          'stale': 1,
          'dialogue': 1,
          'machinegun': 1,
          'rapidity': 1,
          'arent': 1,
          'developed': 1,
          'adventures': 1,
          'frame': 1,
          'entire': 1,
          'nthese': 1,
          'questions': 1,
          'early': 1,
          'nlater': 1,
          'wheres': 1,
          'watch': 1,
          'nby': 1,
          'maddened': 1,
          'depressed': 1,
          'ngeorge': 1,
          'funneled': 1,
          'wonderful': 1,
          'pointless': 1,
          'mindless': 1,
          'summer': 1,
          'blockbuster': 1,
          'ntake': 1,
          'title': 1,
          'talk': 1,
          'youre': 1,
          'left': 1,
          'easily': 1,
          'vacuous': 1,
          'embarrassment': 1,
          'desperately': 1,
          'explored': 1,
          'new': 1,
          'theme': 1,
          'examined': 1,
          'used': 1,
          'theyre': 1,
          'token': 1,
          'created': 1,
          'simultaneously': 1,
          'abysmally': 1,
          'excuse': 1,
          'showcase': 1,
          'want': 1,
          'leave': 1,
          'headache': 1,
          'bitter': 1,
          'taste': 1,
          'mouth': 1,
          'centers': 1,
          'mostly': 1,
          'confused': 1,
          'apprentice': 1,
          'kenobi': 1,
          'scarcely': 1,
          'line': 1,
          'liberate': 1,
          'planet': 1,
          'nnaboo': 1,
          'victim': 1,
          'bureaucratic': 1,
          'war': 1,
          'trade': 1,
          'federation': 1,
          'contact': 1,
          'queen': 1,
          'amidala': 1,
          'teenage': 1,
          'ruler': 1,
          'cares': 1,
          'nafter': 1,
          'picking': 1,
          'completely': 1,
          'voiced': 1,
          'head': 1,
          'meet': 1,
          'skywalker': 1,
          'nquigon': 1,
          'knows': 1,
          'strong': 1,
          'take': 1,
          'boy': 1,
          'journeys': 1,
          'guys': 1,
          'sidious': 1,
          'neither': 1,
          'enough': 1,
          'register': 1,
          'anything': 1,
          'particularly': 1,
          'wrong': 1,
          'synopsis': 1,
          'form': 1,
          'handled': 1,
          'however': 1,
          'unsatisfactory': 1,
          'nfirst': 1,
          'learn': 1,
          'single': 1,
          'nnot': 1,
          'life': 1,
          'nwell': 1,
          'imagine': 1,
          'nthats': 1,
          'feels': 1,
          'plot': 1,
          'device': 1,
          'probably': 1,
          'explains': 1,
          'looks': 1,
          'hopeless': 1,
          'recently': 1,
          'retired': 1,
          'blame': 1,
          'honestly': 1,
          'nobiwan': 1,
          'forward': 1,
          'learning': 1,
          'even': 1,
          'nmcgregor': 1,
          'anyone': 1,
          'hoping': 1,
          'engaging': 1,
          'actor': 1,
          'performance': 1,
          'urged': 1,
          'elsewhere': 1,
          'nsince': 1,
          'men': 1,
          'focus': 1,
          'served': 1,
          'us': 1,
          'big': 1,
          'emotional': 1,
          'void': 1,
          'centerpiece': 1,
          'nthings': 1,
          'start': 1,
          'pick': 1,
          'reach': 1,
          'perhaps': 1,
          'fleshedout': 1,
          'thoughtful': 1,
          'job': 1,
          'hugely': 1,
          'impressed': 1,
          'sand': 1,
          'speeder': 1,
          'rarely': 1,
          'sequence': 1,
          'fast': 1,
          'exciting': 1,
          'says': 1,
          'goodbye': 1,
          'nalso': 1,
          'fairly': 1,
          'manages': 1,
          'give': 1,
          'little': 1,
          'written': 1,
          'njar': 1,
          'annoying': 1,
          'ever': 1,
          'endure': 1,
          'humans': 1,
          'nas': 1,
          'soon': 1,
          'relativelybrief': 1,
          'segment': 1,
          'mindnumbing': 1,
          'depthless': 1,
          'scenes': 1,
          'qualify': 1,
          'extravaganzas': 1,
          'reason': 1,
          'obvious': 1,
          'restraint': 1,
          'say': 1,
          'find': 1,
          'final': 1,
          'battle': 1,
          'visually': 1,
          'exceptional': 1,
          'deadening': 1,
          'tiresome': 1,
          'nmy': 1,
          'breaking': 1,
          'point': 1,
          'near': 1,
          'getting': 1,
          'questioned': 1,
          'yoda': 1,
          'masters': 1,
          'background': 1,
          'hundreds': 1,
          'flying': 1,
          'sky': 1,
          'ncant': 1,
          'stinking': 1,
          'bursting': 1,
          'seems': 1,
          'planets': 1,
          'backgrounds': 1,
          'physical': 1,
          'landscape': 1,
          'theres': 1,
          'question': 1,
          'sixteen': 1,
          'years': 1,
          'return': 1,
          'feeling': 1,
          'focused': 1,
          'forgot': 1,
          'entirely': 1,
          'feel': 1,
          'njohn': 1,
          'williams': 1,
          'familiar': 1,
          'score': 1,
          'help': 1,
          'direction': 1,
          'think': 1,
          'comes': 1,
          'right': 1,
          'none': 1,
          'longed': 1,
          'magnetic': 1,
          'presence': 1,
          'han': 1,
          'luke': 1,
          'leia': 1,
          'ridiculous': 1,
          'expectations': 1,
          'nmine': 1,
          'werent': 1,
          'high': 1,
          'simply': 1,
          'showed': 1,
          'roots': 1,
          'grew': 1,
          'loving': 1,
          'ninstead': 1,
          'lifeless': 1,
          'imaginative': 1,
          'computer': 1,
          'graphics': 1,
          'show': 1,
          'hate': 1,
          'resent': 1,
          'id': 1,
          'forget': 1,
          'exists': 1,
          'yet': 1,
          'stay': 1,
          'hope': 1,
          'episodes': 1,
          'ii': 1,
          'iii': 1,
          'something': 1,
          'substance': 1,
          'pulled': 1,
          'task': 1,
          'destroying': 1,
          'indestructible': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'film': 6,
          'actors': 6,
          'years': 5,
          'movie': 4,
          'harry': 4,
          'ross': 4,
          'doesnt': 4,
          'past': 3,
          'live': 3,
          'mexico': 3,
          'jack': 3,
          'former': 3,
          'rosss': 3,
          'make': 3,
          'better': 3,
          'lives': 2,
          'older': 2,
          'come': 2,
          'nin': 2,
          'another': 2,
          'noir': 2,
          'set': 2,
          'enjoyable': 2,
          'watch': 2,
          'story': 2,
          'nhes': 2,
          'well': 2,
          'daughter': 2,
          'im': 2,
          'na': 2,
          'catherine': 2,
          'ames': 2,
          'three': 2,
          'friends': 2,
          'gets': 2,
          'something': 2,
          'time': 2,
          'jobs': 2,
          'even': 2,
          'turn': 2,
          'expects': 2,
          'excop': 2,
          'partner': 2,
          'exactly': 2,
          'everyone': 2,
          'nits': 2,
          'side': 2,
          'goofier': 2,
          'relationship': 2,
          'didnt': 2,
          'also': 2,
          'long': 2,
          'run': 2,
          'course': 2,
          'screen': 2,
          'across': 2,
          'old': 2,
          'world': 2,
          'would': 2,
          'secondrate': 2,
          'people': 1,
          'twilight': 1,
          'attempting': 1,
          'grips': 1,
          'shared': 1,
          'histories': 1,
          'possible': 1,
          'futures': 1,
          'fascinating': 1,
          'topic': 1,
          'nfinding': 1,
          'allstar': 1,
          'cast': 1,
          'stroke': 1,
          'genius': 1,
          'ncombining': 1,
          'threetime': 1,
          'oscarwinning': 1,
          'director': 1,
          'robert': 1,
          'benton': 1,
          'kramer': 1,
          'vs': 1,
          'nkramer': 1,
          'creating': 1,
          'decidedly': 1,
          'mediocre': 1,
          'stuff': 1,
          'disappointment': 1,
          'yet': 1,
          'mystery': 1,
          'hollywood': 1,
          'many': 1,
          'seen': 1,
          'n': 1,
          'atmosphere': 1,
          'moody': 1,
          'goes': 1,
          'nowhere': 1,
          'nover70': 1,
          'paul': 1,
          'newman': 1,
          'washed': 1,
          'copturnedprivate': 1,
          'eyeturned': 1,
          'man': 1,
          'friday': 1,
          'trying': 1,
          'figure': 1,
          'remains': 1,
          'life': 1,
          'screwed': 1,
          'things': 1,
          'pretty': 1,
          'wife': 1,
          'nnow': 1,
          'drunk': 1,
          'crossroads': 1,
          'couple': 1,
          'ago': 1,
          'traveled': 1,
          'bring': 1,
          'back': 1,
          'mel': 1,
          'reese': 1,
          'witherspoon': 1,
          'underage': 1,
          'gene': 1,
          'hackman': 1,
          'susan': 1,
          'sarandon': 1,
          'stars': 1,
          'prime': 1,
          'become': 1,
          'fast': 1,
          'none': 1,
          'impression': 1,
          'hanging': 1,
          'waiting': 1,
          'wake': 1,
          'nto': 1,
          'fill': 1,
          'odd': 1,
          'falls': 1,
          'love': 1,
          'njack': 1,
          'worse': 1,
          'shape': 1,
          'dying': 1,
          'cancer': 1,
          'year': 1,
          'nthings': 1,
          'exciting': 1,
          'asks': 1,
          'drop': 1,
          'sealed': 1,
          'manila': 1,
          'envelope': 1,
          'ninstead': 1,
          'routine': 1,
          'errand': 1,
          'walks': 1,
          'barrage': 1,
          'bullets': 1,
          'gun': 1,
          'full': 1,
          'bloody': 1,
          'holes': 1,
          'nthis': 1,
          'unsettling': 1,
          'event': 1,
          'gives': 1,
          'detective': 1,
          'project': 1,
          'throw': 1,
          'launches': 1,
          'investigation': 1,
          'revolves': 1,
          'around': 1,
          'mysterious': 1,
          'disappearance': 1,
          'catherines': 1,
          'first': 1,
          'husband': 1,
          '20': 1,
          'nthrough': 1,
          'series': 1,
          'complex': 1,
          'convoluted': 1,
          'plot': 1,
          'devices': 1,
          'involve': 1,
          'murder': 1,
          'blackmail': 1,
          'guns': 1,
          'mels': 1,
          'traveling': 1,
          'parole': 1,
          'officer': 1,
          'cop': 1,
          'buddies': 1,
          'exlover': 1,
          'wouldbe': 1,
          'sidekick': 1,
          'tale': 1,
          'finally': 1,
          'ends': 1,
          'tradition': 1,
          'twists': 1,
          'turns': 1,
          'roads': 1,
          'unexpected': 1,
          'finale': 1,
          'journey': 1,
          'meanders': 1,
          'towards': 1,
          'ending': 1,
          'one': 1,
          'cares': 1,
          'surprises': 1,
          'whose': 1,
          'face': 1,
          'fits': 1,
          'role': 1,
          'scenario': 1,
          'nby': 1,
          'show': 1,
          'matter': 1,
          'storyline': 1,
          'exemplified': 1,
          'rubin': 1,
          'giancarlo': 1,
          'esposito': 1,
          'wannabe': 1,
          'nthese': 1,
          'scenes': 1,
          'obviously': 1,
          'designed': 1,
          'comic': 1,
          'relief': 1,
          'however': 1,
          'neither': 1,
          'nrubin': 1,
          'either': 1,
          'explained': 1,
          'care': 1,
          'enough': 1,
          'point': 1,
          'remember': 1,
          'running': 1,
          'joke': 1,
          'supposedly': 1,
          'shot': 1,
          'probably': 1,
          'meant': 1,
          'mirror': 1,
          'questions': 1,
          'whether': 1,
          'still': 1,
          'able': 1,
          'perform': 1,
          'funny': 1,
          'connect': 1,
          'keeps': 1,
          'showing': 1,
          'non': 1,
          'positive': 1,
          'often': 1,
          'seasoned': 1,
          'leads': 1,
          'welldeserved': 1,
          'academy': 1,
          'awards': 1,
          'accomplished': 1,
          'extraordinary': 1,
          'nnewman': 1,
          'grand': 1,
          'actor': 1,
          'seem': 1,
          'quite': 1,
          'suited': 1,
          'dark': 1,
          'style': 1,
          'nhe': 1,
          'bit': 1,
          'clean': 1,
          'understated': 1,
          'desperate': 1,
          'nhackman': 1,
          'lowkey': 1,
          'believable': 1,
          'lacks': 1,
          'sparkle': 1,
          'nsarandon': 1,
          'comes': 1,
          'sultry': 1,
          'babe': 1,
          'although': 1,
          'onedimensional': 1,
          'lame': 1,
          'dialog': 1,
          'cant': 1,
          'pull': 1,
          'hole': 1,
          'dug': 1,
          'njames': 1,
          'garner': 1,
          'plays': 1,
          'buddy': 1,
          'raymond': 1,
          'hope': 1,
          'always': 1,
          'treat': 1,
          'halfheartedly': 1,
          'struggles': 1,
          'lines': 1,
          'like': 1,
          'glad': 1,
          'shoot': 1,
          'pecker': 1,
          'best': 1,
          'part': 1,
          'look': 1,
          'relationships': 1,
          'change': 1,
          'difficult': 1,
          'choices': 1,
          'must': 1,
          'genuinely': 1,
          'easy': 1,
          'casual': 1,
          'interactions': 1,
          'among': 1,
          'hint': 1,
          'much': 1,
          'interesting': 1,
          'ended': 1,
          'audience': 1,
          'realizes': 1,
          'hopeless': 1,
          'reason': 1,
          'watching': 1,
          'nit': 1,
          'reminds': 1,
          'disaster': 1,
          'movies': 1,
          'towering': 1,
          'inferno': 1,
          'star': 1,
          'power': 1,
          'supposed': 1,
          'ignore': 1,
          'films': 1,
          'problems': 1,
          'ones': 1,
          'saved': 1,
          'nof': 1,
          'dont': 1,
          'could': 1,
          'little': 1,
          'nicer': 1,
          'choosing': 1,
          'different': 1,
          'nneg': 1}),
 Counter({'seagal': 16,
          'one': 12,
          'message': 8,
          'film': 6,
          'ni': 5,
          'villain': 5,
          'movies': 4,
          'nof': 4,
          'course': 4,
          'nbut': 4,
          'doesnt': 4,
          'movie': 4,
          'caine': 4,
          'speech': 4,
          'suspense': 4,
          'martial': 3,
          'never': 3,
          'also': 3,
          'good': 3,
          'seems': 3,
          'guy': 3,
          'although': 3,
          'makes': 3,
          'goes': 3,
          'mind': 3,
          'kills': 3,
          'watch': 3,
          'dont': 3,
          'hes': 3,
          'executive': 3,
          'decision': 3,
          'nthis': 3,
          'even': 3,
          'last': 3,
          'time': 3,
          'factory': 3,
          'played': 3,
          'oil': 3,
          'john': 3,
          'take': 3,
          'nhe': 3,
          'violence': 3,
          'films': 3,
          'seriously': 3,
          'arts': 2,
          'gets': 2,
          'talks': 2,
          'squints': 2,
          'nthey': 2,
          'basically': 2,
          'art': 2,
          'nim': 2,
          'sure': 2,
          'like': 2,
          'maybe': 2,
          'back': 2,
          'kinda': 2,
          'liked': 2,
          'siege': 2,
          'blows': 2,
          'lot': 2,
          'stuff': 2,
          'bunch': 2,
          'crap': 2,
          'pay': 2,
          'unless': 2,
          'e': 2,
          'n': 2,
          'mean': 2,
          'uncle': 2,
          'mystery': 2,
          'science': 2,
          'theatre': 2,
          '3000': 2,
          'couple': 2,
          'nin': 2,
          'typical': 2,
          'shallow': 2,
          'something': 2,
          'inuit': 2,
          'point': 2,
          'chen': 2,
          'c': 2,
          'mcginley': 2,
          'nat': 2,
          'far': 2,
          'say': 2,
          'someone': 2,
          'skill': 2,
          'depth': 2,
          'either': 2,
          'talking': 2,
          'big': 2,
          'corny': 2,
          'hokey': 2,
          'way': 2,
          'didnt': 2,
          'case': 2,
          'present': 2,
          '10': 2,
          'minutes': 2,
          'get': 2,
          'trailers': 2,
          'stupid': 2,
          'boring': 2,
          'star': 2,
          'supposed': 2,
          'look': 2,
          'well': 2,
          'performance': 2,
          'nand': 2,
          'seagals': 2,
          'judge': 2,
          'master': 1,
          'steven': 1,
          'mention': 1,
          'director': 1,
          'built': 1,
          'career': 1,
          'playing': 1,
          'allegedly': 1,
          'fictitious': 1,
          'superman': 1,
          'hurt': 1,
          'fights': 1,
          'hushed': 1,
          'tone': 1,
          'sign': 1,
          'danger': 1,
          'nhes': 1,
          'consistent': 1,
          'individual': 1,
          'hollywood': 1,
          'today': 1,
          'since': 1,
          'suck': 1,
          'represent': 1,
          'egotisitical': 1,
          'tendencies': 1,
          'guys': 1,
          'nice': 1,
          'talk': 1,
          'shows': 1,
          'tad': 1,
          'haughty': 1,
          'indestructable': 1,
          'wounded': 1,
          'supposedly': 1,
          'mortally': 1,
          'comes': 1,
          'vengeance': 1,
          'buddha': 1,
          'baddies': 1,
          'asses': 1,
          'change': 1,
          'drilled': 1,
          'ncourse': 1,
          'people': 1,
          'nso': 1,
          'usually': 1,
          'hold': 1,
          'see': 1,
          'mans': 1,
          'supporting': 1,
          'role': 1,
          'id': 1,
          'definitely': 1,
          'dies': 1,
          'special': 1,
          'place': 1,
          'heart': 1,
          'watched': 1,
          'deceased': 1,
          'hell': 1,
          'ripping': 1,
          'apart': 1,
          'la': 1,
          'years': 1,
          'heard': 1,
          'plays': 1,
          'worker': 1,
          'mining': 1,
          'set': 1,
          'alaska': 1,
          'run': 1,
          'greasedup': 1,
          'oscarwinner': 1,
          'give': 1,
          'clout': 1,
          'michael': 1,
          'nit': 1,
          'wants': 1,
          'includes': 1,
          'dumping': 1,
          'land': 1,
          'naround': 1,
          '2030': 1,
          'minute': 1,
          'speaks': 1,
          'vain': 1,
          'entrepeneurs': 1,
          'new': 1,
          'fire': 1,
          'another': 1,
          'bumped': 1,
          'ndoes': 1,
          'nseagal': 1,
          'rescued': 1,
          'inuits': 1,
          'falls': 1,
          'love': 1,
          'joan': 1,
          'act': 1,
          'hypothetically': 1,
          'reason': 1,
          'none': 1,
          'caines': 1,
          'cliched': 1,
          'henchmen': 1,
          'overacting': 1,
          'shoots': 1,
          'cheif': 1,
          'clan': 1,
          'go': 1,
          'voyage': 1,
          'literally': 1,
          'gives': 1,
          'wonderfully': 1,
          'hysterical': 1,
          'options': 1,
          'blow': 1,
          'want': 1,
          'kill': 1,
          'breath': 1,
          'asks': 1,
          'arsenal': 1,
          'problem': 1,
          'huge': 1,
          'woo': 1,
          'fan': 1,
          'paints': 1,
          'style': 1,
          'characterization': 1,
          'plain': 1,
          'cool': 1,
          'mainly': 1,
          'consists': 1,
          'baddie': 1,
          'attacking': 1,
          'stupidly': 1,
          'wounding': 1,
          'killing': 1,
          'points': 1,
          'use': 1,
          'cliche': 1,
          'advantage': 1,
          'shoot': 1,
          'begins': 1,
          'telling': 1,
          'secret': 1,
          'plan': 1,
          'saying': 1,
          'line': 1,
          'says': 1,
          'enough': 1,
          'devise': 1,
          'away': 1,
          'would': 1,
          'okay': 1,
          'summers': 1,
          'con': 1,
          'air': 1,
          'serious': 1,
          'wouldnt': 1,
          'evidence': 1,
          'idea': 1,
          'subtle': 1,
          'pounded': 1,
          'viewers': 1,
          'nthe': 1,
          'totally': 1,
          'cartoonish': 1,
          'thus': 1,
          'cant': 1,
          'motives': 1,
          'kind': 1,
          'environment': 1,
          'ahead': 1,
          'square': 1,
          'mile': 1,
          'rig': 1,
          'workers': 1,
          'job': 1,
          'nthen': 1,
          'end': 1,
          'spends': 1,
          'giving': 1,
          'nwhat': 1,
          'realize': 1,
          'takes': 1,
          'redundant': 1,
          'comfortably': 1,
          'fit': 1,
          'filled': 1,
          'brim': 1,
          'melodrama': 1,
          'characters': 1,
          'much': 1,
          'emotional': 1,
          'petri': 1,
          'dish': 1,
          'nas': 1,
          'acting': 1,
          'rather': 1,
          'nperiod': 1,
          'nnothing': 1,
          'else': 1,
          'noh': 1,
          'yeah': 1,
          'theres': 1,
          'oneliners': 1,
          'im': 1,
          'gon': 1,
          'na': 1,
          'reach': 1,
          'touch': 1,
          'root': 1,
          'villains': 1,
          'unbelievably': 1,
          'jerks': 1,
          'nmichael': 1,
          'whos': 1,
          'great': 1,
          'actor': 1,
          'yell': 1,
          'cold': 1,
          'guess': 1,
          'alfie': 1,
          'coure': 1,
          'expecting': 1,
          'caliber': 1,
          'nhis': 1,
          'henchman': 1,
          'horrible': 1,
          'small': 1,
          'god': 1,
          'drill': 1,
          'sergeants': 1,
          'celluloid': 1,
          'r': 1,
          'lee': 1,
          'ermey': 1,
          'full': 1,
          'metal': 1,
          'jacket': 1,
          'hired': 1,
          'assasin': 1,
          'squad': 1,
          'leader': 1,
          'obligatory': 1,
          'dangerous': 1,
          'ego': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'ermeys': 1,
          'assasins': 1,
          'nanyway': 1,
          'conclude': 1,
          'except': 1,
          'though': 1,
          'latter': 1,
          'really': 1,
          'formula': 1,
          'action': 1,
          'plot': 1,
          'excrucitating': 1,
          'rent': 1,
          'reccomend': 1,
          'make': 1,
          'skip': 1,
          'put': 1,
          'creating': 1,
          'bad': 1,
          'viewed': 1,
          'pleasurable': 1,
          'nmy': 1,
          'extra': 1,
          'fun': 1,
          'mock': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'stereotypical': 5,
          'love': 4,
          'said': 4,
          'seen': 3,
          'best': 3,
          'lot': 3,
          'cross': 2,
          'cox': 2,
          'nwell': 2,
          'might': 2,
          'nthis': 2,
          'amusing': 2,
          'falls': 2,
          'friend': 2,
          'funny': 2,
          'woman': 2,
          'brown': 2,
          'really': 2,
          'arye': 1,
          'courteney': 1,
          'star': 1,
          'pair': 1,
          'bostonians': 1,
          'meet': 1,
          'bar': 1,
          'go': 1,
          'movies': 1,
          'fall': 1,
          'move': 1,
          'together': 1,
          'etc': 1,
          'nreview': 1,
          'havent': 1,
          'harry': 1,
          'met': 1,
          'sally': 1,
          'dont': 1,
          'watch': 1,
          'war': 1,
          'television': 1,
          'think': 1,
          'inventive': 1,
          'come': 1,
          'along': 1,
          'ages': 1,
          'nhowever': 1,
          'youve': 1,
          'course': 1,
          'doesnt': 1,
          'mean': 1,
          'bad': 1,
          'nsome': 1,
          'overall': 1,
          'ask': 1,
          'whats': 1,
          'point': 1,
          'narye': 1,
          'single': 1,
          'male': 1,
          'nkevin': 1,
          'pollack': 1,
          'femalefearing': 1,
          'make': 1,
          'rather': 1,
          'sexist': 1,
          'vulgar': 1,
          'jokes': 1,
          'werent': 1,
          'ncouteney': 1,
          'careerminded': 1,
          'njulie': 1,
          'bizarre': 1,
          'n': 1,
          'notice': 1,
          'frequent': 1,
          'use': 1,
          'word': 1,
          'uses': 1,
          'formula': 1,
          'plot': 1,
          'basically': 1,
          'known': 1,
          'opening': 1,
          'credits': 1,
          'nso': 1,
          'good': 1,
          'movie': 1,
          'moments': 1,
          'nsurprisingly': 1,
          'julie': 1,
          'usually': 1,
          'find': 1,
          'plain': 1,
          'goofy': 1,
          'thing': 1,
          'nalso': 1,
          'several': 1,
          'sequences': 1,
          'involving': 1,
          'analysis': 1,
          'human': 1,
          'mating': 1,
          'ritual': 1,
          'ngee': 1,
          'short': 1,
          'nnot': 1,
          'much': 1,
          'say': 1,
          'nit': 1,
          'kind': 1,
          'nwatching': 1,
          'video': 1,
          'complete': 1,
          'waste': 1,
          'time': 1,
          'wouldnt': 1,
          'recommend': 1,
          'hiring': 1,
          'baby': 1,
          'sitter': 1,
          'spending': 1,
          'money': 1,
          'see': 1,
          'theatre': 1,
          'nneg': 1}),
 Counter({'todd': 6,
          'bad': 4,
          '_soldier_': 3,
          'film': 3,
          'nafter': 3,
          'wars': 3,
          'could': 2,
          'doesnt': 2,
          'hollywood': 2,
          'nif': 2,
          'movie': 2,
          'nthe': 2,
          'future': 2,
          'like': 2,
          'battle': 2,
          'guys': 2,
          'trash': 2,
          'see': 2,
          'new': 2,
          'flying': 2,
          'planet': 2,
          'bunch': 2,
          'plenty': 2,
          'hands': 1,
          'one': 1,
          'worst': 1,
          'movies': 1,
          'person': 1,
          'ever': 1,
          'sit': 1,
          'jean': 1,
          'claude': 1,
          'van': 1,
          'damme': 1,
          'ni': 1,
          'liken': 1,
          'scifi': 1,
          'cheese': 1,
          'productofchoice': 1,
          'back': 1,
          'early': 1,
          '80s': 1,
          'would': 1,
          'much': 1,
          'compliment': 1,
          'theater': 1,
          'hell': 1,
          'playing': 1,
          '24': 1,
          'hours': 1,
          'day': 1,
          'story': 1,
          'revolves': 1,
          'around': 1,
          'kurt': 1,
          'russell': 1,
          'automaton': 1,
          'man': 1,
          'raised': 1,
          'birth': 1,
          'merciless': 1,
          'soldier': 1,
          'nottoodistant': 1,
          'ultraconservative': 1,
          'kind': 1,
          'years': 1,
          'desensitization': 1,
          'military': 1,
          'academy': 1,
          'full': 1,
          'boys': 1,
          'becomes': 1,
          'ground': 1,
          'fighter': 1,
          'series': 1,
          'galaxy': 1,
          'nwho': 1,
          'enemies': 1,
          'never': 1,
          'revealed': 1,
          'glimpses': 1,
          'show': 1,
          'matter': 1,
          'innocent': 1,
          'hostages': 1,
          'wiped': 1,
          'indifferently': 1,
          'ten': 1,
          'minutes': 1,
          'nihilistic': 1,
          'yes': 1,
          'folks': 1,
          'theres': 1,
          'buff': 1,
          'scarred': 1,
          'adult': 1,
          'accustomed': 1,
          'carnage': 1,
          'confrontation': 1,
          'causes': 1,
          'break': 1,
          'sweat': 1,
          'ntheres': 1,
          'wrinkle': 1,
          'though': 1,
          'ntodd': 1,
          'brethren': 1,
          'declared': 1,
          'obsolete': 1,
          'batch': 1,
          'soldiers': 1,
          'takes': 1,
          'place': 1,
          'losing': 1,
          'sanctioned': 1,
          '_dragon_s': 1,
          'jason': 1,
          'scott': 1,
          'lee': 1,
          'seemingly': 1,
          'dead': 1,
          'dumped': 1,
          'icecube': 1,
          'tray': 1,
          'well': 1,
          'thats': 1,
          'looked': 1,
          'remote': 1,
          'garbage': 1,
          'predict': 1,
          'meets': 1,
          'outcast': 1,
          'settlers': 1,
          'band': 1,
          'together': 1,
          'fight': 1,
          'coming': 1,
          'destroy': 1,
          'youre': 1,
          'way': 1,
          'ahead': 1,
          'game': 1,
          'renegade': 1,
          'society': 1,
          'heap': 1,
          'clich': 1,
          'halfexpect': 1,
          'tina': 1,
          'turner': 1,
          'master': 1,
          'blaster': 1,
          'come': 1,
          'strolling': 1,
          'frame': 1,
          'minute': 1,
          'nits': 1,
          'surprising': 1,
          'brainchild': 1,
          '_blade': 1,
          'runner_': 1,
          'cowriter': 1,
          'david': 1,
          'webb': 1,
          'peoples': 1,
          'nunlike': 1,
          'mindtwisting': 1,
          'classic': 1,
          'contains': 1,
          'barely': 1,
          'enough': 1,
          'dialogue': 1,
          'fill': 1,
          'three': 1,
          'doublespaced': 1,
          'pages': 1,
          'nadd': 1,
          'mix': 1,
          '_mortal': 1,
          'kombat_s': 1,
          'paul': 1,
          'anderson': 1,
          'inept': 1,
          'direction': 1,
          'easy': 1,
          'turned': 1,
          'nand': 1,
          'special': 1,
          'effects': 1,
          'nremember': 1,
          'steam': 1,
          'irons': 1,
          'hardware': 1,
          'ngary': 1,
          'busey': 1,
          'nnuff': 1,
          'said': 1,
          'n_soldier_': 1,
          'proof': 1,
          'still': 1,
          'ideas': 1,
          'sitting': 1,
          'script': 1,
          'vaults': 1,
          'nthat': 1,
          'sad': 1,
          'made': 1,
          'silver': 1,
          'screen': 1,
          'encourage': 1,
          'aspiring': 1,
          'screenwriters': 1,
          'hope': 1,
          'nnow': 1,
          'youll': 1,
          'excuse': 1,
          'go': 1,
          'weep': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'nthe': 4,
          'film': 3,
          'last': 3,
          'samurai_': 3,
          'quite': 3,
          'endo': 3,
          'samurai': 3,
          'henriksen': 3,
          'back': 2,
          'blurb': 2,
          '_the': 2,
          'filled': 2,
          'japanese': 2,
          'john': 2,
          'aspirations': 2,
          'africa': 2,
          'girlfriend': 2,
          'african': 2,
          'revolutionary': 2,
          'sword': 2,
          'end': 2,
          'one': 2,
          'enough': 2,
          'nit': 2,
          'never': 2,
          'possible': 2,
          'sad': 1,
          'state': 1,
          'affairs': 1,
          'box': 1,
          'exciting': 1,
          'contained': 1,
          'within': 1,
          'nsuch': 1,
          'case': 1,
          '1990': 1,
          'paul': 1,
          'mayersberg': 1,
          'nthough': 1,
          'alludes': 1,
          'jungle': 1,
          'political': 1,
          'intrigue': 1,
          'uneasy': 1,
          'alliances': 1,
          'murderous': 1,
          'enemies': 1,
          'every': 1,
          'turn': 1,
          'story': 1,
          'actually': 1,
          'simple': 1,
          'prosaic': 1,
          'middleaged': 1,
          'businessman': 1,
          'named': 1,
          'played': 1,
          'fujioka': 1,
          'assistant': 1,
          'travel': 1,
          'search': 1,
          'ancestor': 1,
          'went': 1,
          'bring': 1,
          'buddhism': 1,
          'nhe': 1,
          'hires': 1,
          'services': 1,
          'downattheheels': 1,
          'vietnam': 1,
          'veteran': 1,
          'pilot': 1,
          'johnny': 1,
          'congo': 1,
          'redoubtable': 1,
          'lance': 1,
          'arabella': 1,
          'holzbog': 1,
          'travels': 1,
          'camp': 1,
          'armsmerchantcumsafarihost': 1,
          'cumislamicmissionary': 1,
          'saxon': 1,
          'wife': 1,
          'lisa': 1,
          'eilbacher': 1,
          'nthey': 1,
          'kidnapped': 1,
          'guerilla': 1,
          'witchdoctor': 1,
          'conceal': 1,
          'prearranged': 1,
          'arms': 1,
          'deal': 1,
          'subsequently': 1,
          'falls': 1,
          'ncongo': 1,
          'escapes': 1,
          'finds': 1,
          'endos': 1,
          'ancestors': 1,
          'comes': 1,
          'guns': 1,
          'blazing': 1,
          'free': 1,
          'rest': 1,
          'kills': 1,
          'n_the': 1,
          'movies': 1,
          'neither': 1,
          'bad': 1,
          'good': 1,
          'enjoyable': 1,
          'merely': 1,
          '_there_': 1,
          'murky': 1,
          'plot': 1,
          'subtexts': 1,
          'elaborated': 1,
          'subplots': 1,
          'explained': 1,
          'many': 1,
          'scenes': 1,
          'make': 1,
          'little': 1,
          'sense': 1,
          'shot': 1,
          'tired': 1,
          'old': 1,
          'inscrutable': 1,
          'zen': 1,
          'stereotypes': 1,
          'expected': 1,
          'american': 1,
          'slowpaced': 1,
          'bit': 1,
          'action': 1,
          'near': 1,
          'final': 1,
          'duel': 1,
          'terrorist': 1,
          'anticlimactic': 1,
          'nmost': 1,
          'acting': 1,
          'fair': 1,
          'exception': 1,
          'congos': 1,
          'nlance': 1,
          'usual': 1,
          'scenechewing': 1,
          'self': 1,
          'reasons': 1,
          'anyone': 1,
          'might': 1,
          'conceivably': 1,
          'seeing': 1,
          'bright': 1,
          'spot': 1,
          'sweeping': 1,
          'scenery': 1,
          'ni': 1,
          'paid': 1,
          '3': 1,
          'discount': 1,
          'rack': 1,
          'best': 1,
          'buy': 1,
          'halfway': 1,
          'suspect': 1,
          'overpaid': 1,
          'nif': 1,
          'mood': 1,
          'read': 1,
          'clavell': 1,
          'novel': 1,
          'watch': 1,
          'kurusawa': 1,
          'nskip': 1,
          'unless': 1,
          'diehard': 1,
          'fan': 1,
          'nneg': 1}),
 Counter({'nthe': 7,
          'film': 3,
          'want': 2,
          'new': 2,
          'old': 2,
          'years': 2,
          'nricky': 2,
          'career': 2,
          'sales': 2,
          'kate': 2,
          'nwhen': 2,
          'g': 2,
          'murphy': 2,
          'television': 2,
          'set': 2,
          'movie': 2,
          'nit': 2,
          'even': 2,
          'ni': 2,
          'time': 2,
          'theres': 2,
          'screen': 2,
          'birthdays': 1,
          'often': 1,
          'cause': 1,
          'individuals': 1,
          'access': 1,
          'lives': 1,
          'nare': 1,
          'nwhat': 1,
          'happened': 1,
          'dreams': 1,
          'nwith': 1,
          'millennium': 1,
          'collective': 1,
          'big': 1,
          'birthday': 1,
          'around': 1,
          'corner': 1,
          'people': 1,
          'sensing': 1,
          'certain': 1,
          'dissatisfaction': 1,
          'existence': 1,
          'standbys': 1,
          'traditional': 1,
          'religion': 1,
          'science': 1,
          'arent': 1,
          'many': 1,
          'anymore': 1,
          'theyre': 1,
          'looking': 1,
          'something': 1,
          'else': 1,
          'nwell': 1,
          'seeing': 1,
          'films': 1,
          'metaphysical': 1,
          'theme': 1,
          'next': 1,
          'hayman': 1,
          'jeff': 1,
          'goldblum': 1,
          'crisis': 1,
          'programming': 1,
          'director': 1,
          'good': 1,
          'buy': 1,
          'home': 1,
          'shopping': 1,
          'network': 1,
          'hes': 1,
          'going': 1,
          'fired': 1,
          'unless': 1,
          'increase': 1,
          'dramatically': 1,
          'nnew': 1,
          'producer': 1,
          'newell': 1,
          'kelly': 1,
          'preston': 1,
          'supposed': 1,
          'whip': 1,
          'things': 1,
          'shape': 1,
          'two': 1,
          'fixing': 1,
          'flat': 1,
          'almost': 1,
          'run': 1,
          'age': 1,
          'pilgrim': 1,
          'ng': 1,
          'wanders': 1,
          'onto': 1,
          'connects': 1,
          'viewers': 1,
          'telling': 1,
          'dont': 1,
          'really': 1,
          'commercial': 1,
          'crap': 1,
          'nin': 1,
          'unexplained': 1,
          'manner': 1,
          'causes': 1,
          'sour': 1,
          'saved': 1,
          'tries': 1,
          'much': 1,
          'fails': 1,
          'nits': 1,
          'overthetop': 1,
          'comedy': 1,
          'heartwarming': 1,
          'message': 1,
          'humanity': 1,
          '_is_': 1,
          'mishmosh': 1,
          'poorly': 1,
          'directed': 1,
          'scenes': 1,
          'made': 1,
          'worse': 1,
          'insipid': 1,
          'dialog': 1,
          'willing': 1,
          'put': 1,
          'preaching': 1,
          'messages': 1,
          'hat': 1,
          'nyou': 1,
          'take': 1,
          'smell': 1,
          'roses': 1,
          'nselling': 1,
          'soul': 1,
          'cash': 1,
          'bad': 1,
          'idea': 1,
          'ngolly': 1,
          'nim': 1,
          'glad': 1,
          'saw': 1,
          'never': 1,
          'would': 1,
          'thought': 1,
          'opportunity': 1,
          'poke': 1,
          'fun': 1,
          'goofy': 1,
          'products': 1,
          'mostly': 1,
          'missed': 1,
          'takes': 1,
          'chainsaw': 1,
          'obvious': 1,
          'chance': 1,
          'hilarious': 1,
          'doesnt': 1,
          'happen': 1,
          'bits': 1,
          'subdued': 1,
          'overlylong': 1,
          'hint': 1,
          'laughter': 1,
          'audience': 1,
          'nmurphy': 1,
          'changed': 1,
          'roles': 1,
          'recent': 1,
          'better': 1,
          'nthere': 1,
          'hints': 1,
          'promise': 1,
          'one': 1,
          'picks': 1,
          'little': 1,
          'shavedheaded': 1,
          'character': 1,
          'long': 1,
          'flowing': 1,
          'white': 1,
          'caftan': 1,
          'shows': 1,
          'others': 1,
          'horrendous': 1,
          'ngoldblum': 1,
          'episodes': 1,
          'brilliance': 1,
          'seems': 1,
          'replaced': 1,
          'lifeless': 1,
          'pod': 1,
          'invasion': 1,
          'body': 1,
          'snatchers': 1,
          'nhis': 1,
          'relationship': 1,
          'makes': 1,
          'sense': 1,
          'nthey': 1,
          'move': 1,
          'antagonism': 1,
          'love': 1,
          'somewhere': 1,
          'npreston': 1,
          'uninteresting': 1,
          'could': 1,
          'possibly': 1,
          'nsomewhere': 1,
          'hidden': 1,
          'deep': 1,
          'inside': 1,
          'ten': 1,
          'minutes': 1,
          'value': 1,
          'nan': 1,
          'attempt': 1,
          'satirize': 1,
          'stupid': 1,
          'get': 1,
          'selfparody': 1,
          'instead': 1,
          'nneg': 1}),
 Counter({'film': 20,
          'nthe': 9,
          'virus': 6,
          'like': 5,
          'one': 5,
          'terrorists': 5,
          'mission': 4,
          'impossible': 4,
          'story': 4,
          'action': 4,
          'good': 4,
          'way': 4,
          'antidote': 4,
          'nhe': 4,
          'villain': 4,
          'world': 4,
          'sean': 4,
          'nyah': 4,
          'even': 3,
          'nit': 3,
          'movie': 3,
          'looks': 3,
          'thing': 3,
          'violence': 3,
          'scenes': 3,
          'films': 3,
          'makes': 3,
          'make': 3,
          'car': 3,
          'thandie': 3,
          'nwe': 3,
          'sydney': 3,
          'scientist': 3,
          'also': 3,
          'plane': 3,
          'dimitri': 3,
          'imf': 3,
          'mask': 3,
          'peeling': 3,
          'team': 3,
          'company': 3,
          'nethan': 3,
          'rescue': 3,
          'i2': 2,
          'sequel': 2,
          'james': 2,
          'bond': 2,
          'fails': 2,
          'tries': 2,
          'without': 2,
          'suspense': 2,
          'commercial': 2,
          'look': 2,
          'cool': 2,
          'sunglasses': 2,
          'techie': 2,
          'choreographed': 2,
          'romance': 2,
          'might': 2,
          'opens': 2,
          'get': 2,
          'middle': 2,
          'part': 2,
          'dialogue': 2,
          'computer': 2,
          'point': 2,
          'wrong': 2,
          'nbut': 2,
          'success': 2,
          'star': 2,
          'faceoff': 2,
          'kicks': 2,
          'two': 2,
          'seem': 2,
          'cruise': 2,
          'carry': 2,
          'role': 2,
          'american': 2,
          'southwest': 2,
          'seville': 2,
          'australia': 2,
          'mentions': 2,
          'called': 2,
          'chimera': 2,
          'hero': 2,
          'scott': 2,
          'talking': 2,
          'crash': 2,
          'ambrose': 2,
          'package': 2,
          'ethan': 2,
          'hunt': 2,
          'plan': 2,
          'sell': 2,
          'used': 2,
          'still': 2,
          'much': 2,
          'character': 2,
          'another': 2,
          'mountain': 2,
          'hopkins': 2,
          'learns': 2,
          'john': 2,
          'luther': 2,
          'jewel': 2,
          'nin': 2,
          'f': 2,
          'ck': 2,
          'first': 2,
          'biotech': 2,
          'getting': 2,
          'stock': 2,
          'made': 2,
          'game': 2,
          'wannabe': 1,
          'come': 1,
          'close': 1,
          'wit': 1,
          'humor': 1,
          'entertainment': 1,
          'value': 1,
          'spyromance': 1,
          'extended': 1,
          'dudes': 1,
          'think': 1,
          'throwaway': 1,
          'prefers': 1,
          'gadgets': 1,
          'anything': 1,
          'human': 1,
          'coolest': 1,
          'holes': 1,
          'trite': 1,
          'usage': 1,
          'doves': 1,
          'throughout': 1,
          'peace': 1,
          'symbols': 1,
          'plays': 1,
          'wet': 1,
          'fantasy': 1,
          'dream': 1,
          'nexcept': 1,
          'sequences': 1,
          'dull': 1,
          'threequarters': 1,
          'time': 1,
          'filled': 1,
          'many': 1,
          'dead': 1,
          'spots': 1,
          'garner': 1,
          'concern': 1,
          'wooden': 1,
          'characters': 1,
          'superficial': 1,
          'developed': 1,
          'nas': 1,
          'converts': 1,
          'advertisement': 1,
          'sadistic': 1,
          'responses': 1,
          'nothing': 1,
          'short': 1,
          'mindless': 1,
          'cartoon': 1,
          'difficult': 1,
          'sit': 1,
          'back': 1,
          'applaud': 1,
          'feeling': 1,
          'put': 1,
          'gratuitous': 1,
          'cruelty': 1,
          'seen': 1,
          'nm': 1,
          'closes': 1,
          'fastpaced': 1,
          'hard': 1,
          'past': 1,
          'drags': 1,
          'banal': 1,
          'invaded': 1,
          'kept': 1,
          'awake': 1,
          'horrible': 1,
          'music': 1,
          'composed': 1,
          'hans': 1,
          'zimmer': 1,
          'became': 1,
          'loud': 1,
          'supposedly': 1,
          'momentous': 1,
          'seemed': 1,
          'uninteresting': 1,
          'scene': 1,
          'noticeable': 1,
          'nits': 1,
          'megabuck': 1,
          'adapted': 1,
          'popular': 1,
          'hightech': 1,
          'gadgetry': 1,
          'tv': 1,
          'series': 1,
          'artistic': 1,
          'task': 1,
          'accomplish': 1,
          'hired': 1,
          'director': 1,
          'actors': 1,
          'failed': 1,
          'produce': 1,
          'substance': 1,
          'njohn': 1,
          'woo': 1,
          'broken': 1,
          'arrow': 1,
          'chases': 1,
          'fights': 1,
          'midair': 1,
          'flips': 1,
          'kungfu': 1,
          'slomo': 1,
          'shots': 1,
          'guns': 1,
          'blazing': 1,
          'fire': 1,
          'explosions': 1,
          'cant': 1,
          'handle': 1,
          'coproducer': 1,
          'tom': 1,
          'romantic': 1,
          'interest': 1,
          'newton': 1,
          'miscast': 1,
          'ncruise': 1,
          'yuppie': 1,
          'superhero': 1,
          'stylish': 1,
          'long': 1,
          'hair': 1,
          'innocuous': 1,
          'smile': 1,
          'macho': 1,
          'actionfilm': 1,
          'girl': 1,
          'seems': 1,
          'fish': 1,
          'outofwater': 1,
          'ntheir': 1,
          'didnt': 1,
          'work': 1,
          'tepid': 1,
          'sexy': 1,
          'wasnt': 1,
          'convincing': 1,
          'dizzying': 1,
          'speed': 1,
          'perhaps': 1,
          'hope': 1,
          'befuddled': 1,
          'audience': 1,
          'best': 1,
          'bet': 1,
          'three': 1,
          'different': 1,
          'locations': 1,
          'instantaneously': 1,
          'nfirst': 1,
          'muffled': 1,
          'russian': 1,
          'accent': 1,
          'dr': 1,
          'nekhorvich': 1,
          'rade': 1,
          'created': 1,
          'deadly': 1,
          'killer': 1,
          'every': 1,
          'needs': 1,
          'worthy': 1,
          'nwhich': 1,
          'explains': 1,
          'mythic': 1,
          'theme': 1,
          'enter': 1,
          'comic': 1,
          'book': 1,
          'myths': 1,
          'evil': 1,
          'played': 1,
          'dougray': 1,
          'onedimensional': 1,
          'gruff': 1,
          'tone': 1,
          'distinguish': 1,
          'nat': 1,
          'least': 1,
          'got': 1,
          'right': 1,
          'fun': 1,
          'nonsense': 1,
          'nsoon': 1,
          'diabolical': 1,
          'someone': 1,
          'trusts': 1,
          'taken': 1,
          'set': 1,
          'automatic': 1,
          'pilot': 1,
          'rocky': 1,
          'mountains': 1,
          'nbefore': 1,
          'parachute': 1,
          'posing': 1,
          'turns': 1,
          'rogue': 1,
          'member': 1,
          'cialike': 1,
          'clone': 1,
          'steals': 1,
          'peels': 1,
          'latex': 1,
          'replica': 1,
          'posed': 1,
          'thereby': 1,
          'gained': 1,
          'trust': 1,
          'nsean': 1,
          'group': 1,
          'attack': 1,
          'plague': 1,
          'victims': 1,
          'marked': 1,
          'prices': 1,
          'already': 1,
          'saw': 1,
          'gimmick': 1,
          'masks': 1,
          'original': 1,
          'convoluted': 1,
          'plot': 1,
          'superior': 1,
          'nwoo': 1,
          'run': 1,
          'routine': 1,
          'ground': 1,
          'often': 1,
          'sides': 1,
          'blurs': 1,
          'ethical': 1,
          'differences': 1,
          'guy': 1,
          'anyone': 1,
          'could': 1,
          'distorts': 1,
          'reality': 1,
          'sense': 1,
          'nnext': 1,
          'range': 1,
          'vacation': 1,
          'hanging': 1,
          'fingertips': 1,
          'climbing': 1,
          'looking': 1,
          'helicopter': 1,
          'boss': 1,
          'anthony': 1,
          'aboard': 1,
          'delivers': 1,
          'via': 1,
          'rocket': 1,
          'launcher': 1,
          'pair': 1,
          'nhunt': 1,
          'next': 1,
          'retrieve': 1,
          'allowed': 1,
          'pick': 1,
          'regular': 1,
          'agents': 1,
          'help': 1,
          'billy': 1,
          'baird': 1,
          'polson': 1,
          'stickell': 1,
          'ving': 1,
          'rhames': 1,
          'running': 1,
          'highgadget': 1,
          'must': 1,
          'thief': 1,
          'named': 1,
          'hall': 1,
          'join': 1,
          'told': 1,
          'incentive': 1,
          'recruit': 1,
          'criminal': 1,
          'charges': 1,
          'dropped': 1,
          'nhopkins': 1,
          'signs': 1,
          'tag': 1,
          'line': 1,
          'message': 1,
          'selfdestruct': 1,
          'five': 1,
          'seconds': 1,
          'nactually': 1,
          'departure': 1,
          'disposable': 1,
          'actually': 1,
          'selfdestructed': 1,
          'recruits': 1,
          'heist': 1,
          'subsequent': 1,
          'chase': 1,
          'nearly': 1,
          'runs': 1,
          'audi': 1,
          'sports': 1,
          'side': 1,
          'road': 1,
          'falls': 1,
          'supposed': 1,
          'business': 1,
          'deal': 1,
          'valuable': 1,
          'exboyfriend': 1,
          'wants': 1,
          'inject': 1,
          'location': 1,
          'tracer': 1,
          'chip': 1,
          'spot': 1,
          'go': 1,
          'leads': 1,
          'hideout': 1,
          'seaside': 1,
          'shares': 1,
          'sneering': 1,
          'villainous': 1,
          'cohort': 1,
          'south': 1,
          'african': 1,
          'hugh': 1,
          'stamp': 1,
          'richard': 1,
          'roxburgh': 1,
          'nrobert': 1,
          'towne': 1,
          'screenwriter': 1,
          'contributed': 1,
          'noted': 1,
          'chinatown': 1,
          'writes': 1,
          'colorless': 1,
          'pedestrian': 1,
          'script': 1,
          'funny': 1,
          'camp': 1,
          'aim': 1,
          'rule': 1,
          'interested': 1,
          'owning': 1,
          '51': 1,
          'percent': 1,
          'options': 1,
          'infect': 1,
          'insuring': 1,
          'billions': 1,
          'comes': 1,
          'conflict': 1,
          'important': 1,
          'save': 1,
          'odds': 1,
          'finds': 1,
          'penetrate': 1,
          'security': 1,
          'tight': 1,
          'fight': 1,
          'injected': 1,
          'hinder': 1,
          'seans': 1,
          'transport': 1,
          'person': 1,
          'vaccine': 1,
          'needle': 1,
          'rescues': 1,
          'stunt': 1,
          'riding': 1,
          'motorcycle': 1,
          'using': 1,
          'kickboxing': 1,
          'winning': 1,
          'shootout': 1,
          'throwing': 1,
          'full': 1,
          'wayne': 1,
          'supply': 1,
          'grenades': 1,
          'making': 1,
          'use': 1,
          'bit': 1,
          'completely': 1,
          'fearless': 1,
          'larger': 1,
          'life': 1,
          'everyones': 1,
          'ass': 1,
          'nif': 1,
          'entertained': 1,
          'ncould': 1,
          'lived': 1,
          'badly': 1,
          'watching': 1,
          'highlight': 1,
          'basketball': 1,
          'seeing': 1,
          'slamdunks': 1,
          'excluded': 1,
          'telecast': 1,
          'case': 1,
          'criticproof': 1,
          'probability': 1,
          'well': 1,
          'box': 1,
          'office': 1,
          'appeal': 1,
          'demographics': 1,
          'find': 1,
          'ventures': 1,
          'easy': 1,
          'buy': 1,
          'nneg': 1}),
 Counter({'film': 11,
          'soldier': 9,
          'luc': 9,
          'van': 6,
          'action': 6,
          'universal': 5,
          'battle': 4,
          'group': 4,
          'damme': 4,
          'return': 4,
          'many': 4,
          'films': 4,
          'nhe': 4,
          'nthe': 3,
          'could': 3,
          'better': 3,
          'work': 3,
          'martial': 3,
          'model': 3,
          'good': 3,
          'jeanclaude': 3,
          'soldiers': 3,
          'unisol': 3,
          'program': 3,
          'erin': 3,
          'moments': 3,
          'scene': 3,
          'like': 3,
          'engineered': 2,
          'early': 2,
          'entire': 2,
          'dammes': 2,
          'genres': 2,
          'arts': 2,
          'inside': 2,
          'fellow': 2,
          'watch': 2,
          'truly': 2,
          'poor': 2,
          'plot': 2,
          'terminator': 2,
          'sent': 2,
          'planet': 2,
          't2': 2,
          'save': 2,
          'john': 2,
          'newer': 2,
          'killing': 2,
          'former': 2,
          'given': 2,
          'nluc': 2,
          'human': 2,
          'straighttovideo': 2,
          'seth': 2,
          'reporter': 2,
          'goldberg': 2,
          'nthere': 2,
          'fights': 2,
          'gun': 2,
          'almost': 2,
          'painful': 2,
          'saving': 2,
          'single': 2,
          'go': 2,
          'getting': 2,
          'time': 2,
          'going': 2,
          'strip': 2,
          'club': 2,
          'internet': 2,
          'access': 2,
          'weapons': 2,
          'useless': 2,
          'rodgers': 2,
          'sure': 2,
          'even': 2,
          'mutters': 2,
          'every': 2,
          'exuniversal': 1,
          'newermodel': 1,
          'fighters': 1,
          'gone': 1,
          'bad': 1,
          'review': 1,
          'njeanclaude': 1,
          'oneliner': 1,
          'latest': 1,
          'attempt': 1,
          'remain': 1,
          'relevant': 1,
          'sums': 1,
          'movie': 1,
          'says': 1,
          'done': 1,
          'nno': 1,
          'critic': 1,
          'possibly': 1,
          'sum': 1,
          'recent': 1,
          'choices': 1,
          'nwhile': 1,
          'ageing': 1,
          'stars': 1,
          'wisely': 1,
          'moved': 1,
          'schwarzenegger': 1,
          'makes': 1,
          'family': 1,
          'comedies': 1,
          'stubbornly': 1,
          'persists': 1,
          'sticking': 1,
          'used': 1,
          'guns': 1,
          'nthis': 1,
          'unwillingness': 1,
          'perhaps': 1,
          'inability': 1,
          'move': 1,
          'new': 1,
          'caused': 1,
          'enter': 1,
          'straight': 1,
          'video': 1,
          'world': 1,
          'legionnaire': 1,
          'never': 1,
          'seeing': 1,
          'multiplex': 1,
          'joins': 1,
          'artistaction': 1,
          'star': 1,
          'steven': 1,
          'seagal': 1,
          'careers': 1,
          'rapidly': 1,
          'fizzle': 1,
          'away': 1,
          'nuniversal': 1,
          'complete': 1,
          'copy': 1,
          'several': 1,
          'decade': 1,
          'specifically': 1,
          '2': 1,
          'judgement': 1,
          'day': 1,
          'similarly': 1,
          'named': 1,
          'nsoldiers': 1,
          'kurt': 1,
          'russell': 1,
          'older': 1,
          'supersoldier': 1,
          'retirement': 1,
          'circumstances': 1,
          'forced': 1,
          'successors': 1,
          'schwarzeneggers': 1,
          'tried': 1,
          'connor': 1,
          'machine': 1,
          't1000': 1,
          'rampage': 1,
          'guessed': 1,
          'nconsidering': 1,
          'box': 1,
          'office': 1,
          'performance': 1,
          'amazing': 1,
          'project': 1,
          'ever': 1,
          'goahead': 1,
          'devereaux': 1,
          'sole': 1,
          'remaining': 1,
          'short': 1,
          'returned': 1,
          'normal': 1,
          'muscular': 1,
          'form': 1,
          'nin': 1,
          'sequel': 1,
          'technically': 1,
          'fourth': 1,
          'series': 1,
          'following': 1,
          'two': 1,
          'duds': 1,
          'ignored': 1,
          'plotwise': 1,
          'trainerconsultant': 1,
          'sorts': 1,
          'nworking': 1,
          'dylan': 1,
          'cotner': 1,
          'xander': 1,
          'berkeley': 1,
          'interestingly': 1,
          'also': 1,
          'appeared': 1,
          'tougher': 1,
          'fiercer': 1,
          'fighting': 1,
          'force': 1,
          'help': 1,
          'supercomputer': 1,
          'nunfortunately': 1,
          'upon': 1,
          'hearing': 1,
          'axed': 1,
          'government': 1,
          'takes': 1,
          'control': 1,
          'everyone': 1,
          'building': 1,
          'except': 1,
          'partner': 1,
          'maggie': 1,
          'daughter': 1,
          'hillary': 1,
          'trapped': 1,
          'rest': 1,
          'involves': 1,
          'trying': 1,
          'keep': 1,
          'alive': 1,
          'beating': 1,
          'nearindestructible': 1,
          'notably': 1,
          'romeo': 1,
          'popular': 1,
          'wrestler': 1,
          'lots': 1,
          'battles': 1,
          'lame': 1,
          'developments': 1,
          'noticeable': 1,
          'lack': 1,
          'plausibility': 1,
          'clich': 1,
          'gets': 1,
          'saddled': 1,
          'task': 1,
          'course': 1,
          'night': 1,
          'bickering': 1,
          'falling': 1,
          'kissing': 1,
          'nerin': 1,
          'patheticallywritten': 1,
          'character': 1,
          'people': 1,
          'brutally': 1,
          'gunned': 1,
          'around': 1,
          'yet': 1,
          'seem': 1,
          'frighten': 1,
          'finds': 1,
          'remind': 1,
          'isnt': 1,
          'leaving': 1,
          'without': 1,
          'story': 1,
          'nwhatever': 1,
          'nother': 1,
          'laughable': 1,
          'include': 1,
          'get': 1,
          'b': 1,
          'rangers': 1,
          'advice': 1,
          'tells': 1,
          'shows': 1,
          'specific': 1,
          'choose': 1,
          'anyway': 1,
          'guess': 1,
          'wins': 1,
          'nnot': 1,
          'one': 1,
          'originality': 1,
          'nwhen': 1,
          'fuelled': 1,
          'davis': 1,
          'loud': 1,
          'driving': 1,
          'music': 1,
          'score': 1,
          'become': 1,
          'passable': 1,
          'mostly': 1,
          'full': 1,
          'ol': 1,
          'moves': 1,
          'ndirector': 1,
          'mic': 1,
          'stunt': 1,
          'coordinator': 1,
          'keeps': 1,
          'coming': 1,
          'rapid': 1,
          'pace': 1,
          'token': 1,
          'serious': 1,
          'found': 1,
          'nhis': 1,
          'past': 1,
          'evident': 1,
          'characters': 1,
          'thrown': 1,
          'windows': 1,
          'tossed': 1,
          'buildings': 1,
          'flying': 1,
          'air': 1,
          'thanks': 1,
          'explosion': 1,
          'nif': 1,
          'werent': 1,
          'old': 1,
          'slow': 1,
          'compared': 1,
          'younger': 1,
          'actors': 1,
          'jet': 1,
          'li': 1,
          'probably': 1,
          'made': 1,
          'decent': 1,
          'nto': 1,
          'place': 1,
          'blame': 1,
          'squarely': 1,
          'feet': 1,
          'however': 1,
          'injustice': 1,
          'nim': 1,
          'anyone': 1,
          'robert': 1,
          'deniro': 1,
          'edward': 1,
          'norton': 1,
          'make': 1,
          'writers': 1,
          'william': 1,
          'malone': 1,
          'fasanos': 1,
          'script': 1,
          'sound': 1,
          'none': 1,
          'particularly': 1,
          'asks': 1,
          'aforementioned': 1,
          'cringes': 1,
          'looks': 1,
          'uh': 1,
          'uhm': 1,
          'nthey': 1,
          'saw': 1,
          '60': 1,
          'minutes': 1,
          'neh': 1,
          'scripts': 1,
          'indeed': 1,
          'grace': 1,
          'chews': 1,
          'obviously': 1,
          'enjoying': 1,
          'role': 1,
          'immensely': 1,
          'gives': 1,
          'laughs': 1,
          'things': 1,
          'really': 1,
          'dont': 1,
          'guy': 1,
          'fails': 1,
          'kill': 1,
          'nsadly': 1,
          'presence': 1,
          'enough': 1,
          'turn': 1,
          'anything': 1,
          'belowaverage': 1,
          'deserves': 1,
          'joined': 1,
          'sequels': 1,
          'nneg': 1}),
 Counter({'big': 17,
          'mommas': 9,
          'malcolm': 8,
          'house': 7,
          'momma': 7,
          'sherry': 6,
          'lawrence': 5,
          'one': 5,
          'plot': 4,
          'martin': 4,
          'nothing': 4,
          'time': 4,
          'film': 4,
          'fat': 3,
          'suit': 3,
          'dress': 3,
          'idea': 3,
          'character': 3,
          'get': 3,
          'way': 3,
          'characters': 3,
          'person': 3,
          'laughs': 3,
          'real': 3,
          'highconcept': 2,
          'summer': 2,
          'back': 2,
          'adam': 2,
          'sandler': 2,
          'incompetent': 2,
          'surrogate': 2,
          'parent': 2,
          'nthe': 2,
          'better': 2,
          'find': 2,
          'may': 2,
          'lester': 2,
          'escaped': 2,
          'hes': 2,
          'headed': 2,
          'nia': 2,
          'appears': 2,
          'town': 2,
          'without': 2,
          'nbig': 2,
          'makeup': 2,
          'theres': 2,
          'nunfortunately': 2,
          'ridiculous': 2,
          'several': 2,
          'every': 2,
          'since': 2,
          'funny': 2,
          'involved': 2,
          'never': 2,
          'waste': 2,
          'appealing': 2,
          'might': 2,
          'tolerable': 2,
          'nits': 2,
          'nthats': 1,
          'premise': 1,
          'fullyrealized': 1,
          'allencompassing': 1,
          'nsuch': 1,
          'emphasis': 1,
          'unheardof': 1,
          'world': 1,
          'hollywood': 1,
          'entertainment': 1,
          'none': 1,
          'need': 1,
          'merely': 1,
          'look': 1,
          'last': 1,
          'daddy': 1,
          'trap': 1,
          'inherent': 1,
          'approach': 1,
          'pretty': 1,
          'wellrealized': 1,
          'rest': 1,
          'shoulders': 1,
          'extremely': 1,
          'talented': 1,
          'performer': 1,
          'bet': 1,
          'else': 1,
          'worth': 1,
          'second': 1,
          'developed': 1,
          'provocative': 1,
          'theme': 1,
          'witty': 1,
          'twist': 1,
          'nyou': 1,
          '90plus': 1,
          'minutes': 1,
          'less': 1,
          'nthose': 1,
          'occasionally': 1,
          'amusing': 1,
          'screen': 1,
          'presence': 1,
          'shot': 1,
          'enjoying': 1,
          'onenote': 1,
          'dud': 1,
          'nothers': 1,
          'simply': 1,
          'stare': 1,
          'mouth': 1,
          'agape': 1,
          'sheer': 1,
          'unapologetic': 1,
          'laziness': 1,
          'nlawrence': 1,
          'plays': 1,
          'fbi': 1,
          'agent': 1,
          'turner': 1,
          'undercover': 1,
          'expert': 1,
          'stakeout': 1,
          'assignment': 1,
          'partner': 1,
          'john': 1,
          'paul': 1,
          'giamatti': 1,
          'ndangerous': 1,
          'convicted': 1,
          'bank': 1,
          'robber': 1,
          'murderer': 1,
          'vesco': 1,
          'terrence': 1,
          'howard': 1,
          'prison': 1,
          'feds': 1,
          'think': 1,
          'former': 1,
          'girlfriend': 1,
          'presumedbutneverproved': 1,
          'accomplice': 1,
          'long': 1,
          'nsherry': 1,
          'however': 1,
          'fled': 1,
          'son': 1,
          'trent': 1,
          'jascha': 1,
          'washington': 1,
          'possibly': 1,
          'visit': 1,
          'grandmother': 1,
          'hattie': 1,
          'mae': 1,
          'ella': 1,
          'mitchell': 1,
          'known': 1,
          'nindeed': 1,
          'knowing': 1,
          'coming': 1,
          'nthat': 1,
          'leaves': 1,
          'master': 1,
          'disguise': 1,
          'go': 1,
          'heavy': 1,
          'cover': 1,
          'knows': 1,
          'houses': 1,
          'bloodlines': 1,
          'certainly': 1,
          'traceable': 1,
          'mrs': 1,
          'ndoubtfire': 1,
          'director': 1,
          'raja': 1,
          'gosnell': 1,
          'edited': 1,
          'effects': 1,
          'similarly': 1,
          'created': 1,
          'greg': 1,
          'cannom': 1,
          'strong': 1,
          'whiff': 1,
          'tootsie': 1,
          'main': 1,
          'attempt': 1,
          'use': 1,
          'alternate': 1,
          'identity': 1,
          'closer': 1,
          'woman': 1,
          'makes': 1,
          'decision': 1,
          'neither': 1,
          'films': 1,
          'made': 1,
          'instead': 1,
          'protagonist': 1,
          'pose': 1,
          'completely': 1,
          'manufactured': 1,
          'unfamiliar': 1,
          'anyone': 1,
          'elses': 1,
          'places': 1,
          'position': 1,
          'playing': 1,
          'friend': 1,
          'family': 1,
          'member': 1,
          'nsuspension': 1,
          'disbelief': 1,
          'requires': 1,
          'believe': 1,
          'blind': 1,
          'andor': 1,
          'stupid': 1,
          'notices': 1,
          'looks': 1,
          'sounds': 1,
          'absolutely': 1,
          'like': 1,
          'nof': 1,
          'course': 1,
          'trumps': 1,
          'logic': 1,
          'probably': 1,
          'still': 1,
          'would': 1,
          'worked': 1,
          'spite': 1,
          'utter': 1,
          'disdain': 1,
          'common': 1,
          'sense': 1,
          'managed': 1,
          'nand': 1,
          'misses': 1,
          'best': 1,
          'possible': 1,
          'opportunity': 1,
          'great': 1,
          'farce': 1,
          'ignoring': 1,
          'simple': 1,
          'fact': 1,
          'set': 1,
          'foultempered': 1,
          'beast': 1,
          'nurturing': 1,
          'order': 1,
          'information': 1,
          'wants': 1,
          'faintest': 1,
          'deal': 1,
          'comic': 1,
          'gold': 1,
          'mine': 1,
          'pretending': 1,
          'another': 1,
          'different': 1,
          'fall': 1,
          'endless': 1,
          'parade': 1,
          'sight': 1,
          'gags': 1,
          'reacting': 1,
          'violently': 1,
          'explosive': 1,
          'diarrhea': 1,
          'attack': 1,
          'malcolmasmomma': 1,
          'schooling': 1,
          'pair': 1,
          'cocky': 1,
          'teens': 1,
          'basketball': 1,
          'trying': 1,
          'avoid': 1,
          'detection': 1,
          'various': 1,
          'prostheses': 1,
          'give': 1,
          'inopportune': 1,
          'moments': 1,
          'delivering': 1,
          'baby': 1,
          'midwife': 1,
          'sequences': 1,
          'works': 1,
          'nmartin': 1,
          'likeable': 1,
          'enough': 1,
          'times': 1,
          'reason': 1,
          'care': 1,
          'whit': 1,
          'budding': 1,
          'romance': 1,
          'independently': 1,
          'significant': 1,
          'nhes': 1,
          'ni': 1,
          'wont': 1,
          'commenting': 1,
          'ineptly': 1,
          'setup': 1,
          'convict': 1,
          'employed': 1,
          'clearly': 1,
          'filmmakers': 1,
          'nthere': 1,
          'token': 1,
          'scenes': 1,
          'looming': 1,
          'threatening': 1,
          'figure': 1,
          'ultimately': 1,
          'distraction': 1,
          'thats': 1,
          'really': 1,
          'central': 1,
          'visual': 1,
          'incongruity': 1,
          'accompanying': 1,
          'lascivious': 1,
          'glances': 1,
          'longs': 1,
          'posterior': 1,
          'nim': 1,
          'prepared': 1,
          'underestimate': 1,
          'people': 1,
          'million': 1,
          'apparently': 1,
          'found': 1,
          'know': 1,
          'filmmaker': 1,
          'tries': 1,
          'throw': 1,
          'concept': 1,
          'pretend': 1,
          'entire': 1,
          'duck': 1,
          'gross': 1,
          'implausibility': 1,
          'seasoned': 1,
          'cleverlyconstructed': 1,
          'lack': 1,
          'relevant': 1,
          '_and_': 1,
          'sad': 1,
          'exercise': 1,
          'jaded': 1,
          'presumption': 1,
          'scene': 1,
          'considered': 1,
          'wacky': 1,
          'hilarious': 1,
          'involves': 1,
          'nneg': 1}),
 Counter({'cindy': 10,
          'crawford': 7,
          'movie': 6,
          'baldwin': 5,
          'bad': 5,
          'fair': 3,
          'acting': 3,
          'plot': 3,
          'isnt': 3,
          'nthe': 3,
          'idea': 3,
          'william': 2,
          'steven': 2,
          'right': 2,
          'first': 2,
          'game': 2,
          'casting': 2,
          'film': 2,
          'cindys': 2,
          'extraordinary': 2,
          'skills': 2,
          'ability': 2,
          'look': 2,
          'situations': 2,
          'either': 2,
          'wet': 2,
          'im': 2,
          'sure': 2,
          'coincidence': 2,
          'doubt': 2,
          'looks': 2,
          'thats': 2,
          'nunfortunately': 2,
          'doesnt': 2,
          'lines': 2,
          'good': 2,
          'nif': 2,
          'ncindy': 2,
          'kinda': 2,
          'sort': 2,
          'target': 2,
          'much': 2,
          'police': 2,
          'writers': 2,
          'since': 2,
          'time': 2,
          'starring': 1,
          'berkoff': 1,
          'problem': 1,
          'supermodel': 1,
          'lead': 1,
          'role': 1,
          'nnot': 1,
          'anyone': 1,
          'watches': 1,
          'knows': 1,
          'moment': 1,
          'one': 1,
          'little': 1,
          'bit': 1,
          'done': 1,
          'drop': 1,
          'dead': 1,
          'gorgeous': 1,
          'situation': 1,
          'nand': 1,
          'tend': 1,
          'find': 1,
          'soaking': 1,
          'hot': 1,
          'sweaty': 1,
          'essential': 1,
          'fact': 1,
          'great': 1,
          'well': 1,
          'happy': 1,
          'nsure': 1,
          'nwilliam': 1,
          'actor': 1,
          'demonstrate': 1,
          'nim': 1,
          'hokey': 1,
          'trying': 1,
          'make': 1,
          'latter': 1,
          'worked': 1,
          'surprisingly': 1,
          'job': 1,
          'nwhich': 1,
          'say': 1,
          'room': 1,
          'improvement': 1,
          'nalthough': 1,
          'cheesy': 1,
          'places': 1,
          'nso': 1,
          'asking': 1,
          'arguably': 1,
          'beautiful': 1,
          'woman': 1,
          'planet': 1,
          'chose': 1,
          'foray': 1,
          'world': 1,
          'cinema': 1,
          'nwell': 1,
          'glad': 1,
          'asked': 1,
          'question': 1,
          'plays': 1,
          'lawyer': 1,
          'convoluted': 1,
          'twists': 1,
          'becomes': 1,
          'former': 1,
          'elite': 1,
          'kgb': 1,
          'agents': 1,
          'nwhy': 1,
          'woud': 1,
          'someone': 1,
          'likable': 1,
          'ask': 1,
          'nby': 1,
          'end': 1,
          'wont': 1,
          'care': 1,
          'story': 1,
          'contrived': 1,
          'funny': 1,
          'nanyway': 1,
          'gets': 1,
          'blown': 1,
          'window': 1,
          'house': 1,
          'without': 1,
          'getting': 1,
          'scratch': 1,
          'might': 1,
          'add': 1,
          'placed': 1,
          'protective': 1,
          'custody': 1,
          'watchful': 1,
          'eve': 1,
          'nwhos': 1,
          'character': 1,
          'max': 1,
          'kilpatric': 1,
          'detective': 1,
          'seems': 1,
          'possess': 1,
          'fighting': 1,
          'machine': 1,
          'guess': 1,
          'seen': 1,
          'way': 1,
          'many': 1,
          'seagals': 1,
          'early': 1,
          'films': 1,
          'point': 1,
          'baldwins': 1,
          'characters': 1,
          'run': 1,
          'killer': 1,
          'russians': 1,
          'everything': 1,
          'around': 1,
          'basic': 1,
          'stinks': 1,
          'loud': 1,
          'supporting': 1,
          'cast': 1,
          'members': 1,
          'nothing': 1,
          'acted': 1,
          'stereotypes': 1,
          'id': 1,
          'hope': 1,
          'disappears': 1,
          'nas': 1,
          'may': 1,
          'indeed': 1,
          'obscured': 1,
          'writing': 1,
          'goes': 1,
          'beyond': 1,
          'nthis': 1,
          'obviously': 1,
          'written': 1,
          'mind': 1,
          'spend': 1,
          'finding': 1,
          'ways': 1,
          'capitalize': 1,
          'nits': 1,
          'hadnt': 1,
          'spent': 1,
          'half': 1,
          'decent': 1,
          'ms': 1,
          'capable': 1,
          'looking': 1,
          'fine': 1,
          'thank': 1,
          'nunless': 1,
          'huge': 1,
          'fan': 1,
          'disappoint': 1,
          'nneg': 1}),
 Counter({'christmas': 6,
          'cross': 5,
          'minutes': 5,
          'film': 5,
          'effects': 4,
          'also': 4,
          'make': 4,
          'look': 3,
          'funny': 3,
          'murray': 3,
          'plays': 3,
          'ghost': 3,
          'much': 3,
          'suffer': 3,
          'mean': 3,
          'isnt': 3,
          'good': 3,
          'ten': 3,
          'great': 3,
          'audience': 3,
          'nthe': 3,
          'comedy': 2,
          'nscrooged': 2,
          'played': 2,
          'mitchum': 2,
          'visited': 2,
          'exec': 2,
          'past': 2,
          'present': 2,
          'changes': 2,
          'nhowever': 2,
          'special': 2,
          'emotional': 2,
          'scenes': 2,
          'last': 2,
          'speech': 2,
          'bad': 2,
          'kane': 2,
          'smacking': 2,
          'nand': 2,
          'take': 1,
          'following': 1,
          'equation': 1,
          'na': 1,
          'carolghostbustersscrooged': 1,
          'nyes': 1,
          'scrooged': 1,
          'odd': 1,
          'mixture': 1,
          'sentiment': 1,
          'horror': 1,
          'would': 1,
          'get': 1,
          'mixed': 1,
          'two': 1,
          'elements': 1,
          'toghether': 1,
          'alternatively': 1,
          'sick': 1,
          'gross': 1,
          'sickly': 1,
          'soppy': 1,
          'nbill': 1,
          'frank': 1,
          'v': 1,
          'executive': 1,
          'horrible': 1,
          'personality': 1,
          'nhes': 1,
          'evil': 1,
          'secretary': 1,
          'actors': 1,
          'crew': 1,
          'everyone': 1,
          'except': 1,
          'vs': 1,
          'stations': 1,
          'boss': 1,
          'course': 1,
          'late': 1,
          'robert': 1,
          'however': 1,
          'dead': 1,
          'warns': 1,
          'three': 1,
          'ghosts': 1,
          'future': 1,
          'called': 1,
          'yet': 1,
          'come': 1,
          'reason': 1,
          'sure': 1,
          'enough': 1,
          'arrive': 1,
          'show': 1,
          'b': 1,
          'way': 1,
          'throughout': 1,
          'simple': 1,
          'plot': 1,
          'weve': 1,
          'got': 1,
          'outlandish': 1,
          'poor': 1,
          'performance': 1,
          'bill': 1,
          'nfrank': 1,
          'hes': 1,
          'nhe': 1,
          'totally': 1,
          'destroys': 1,
          'utterly': 1,
          'desperate': 1,
          'saying': 1,
          'changed': 1,
          'supporting': 1,
          'cast': 1,
          'ok': 1,
          'performances': 1,
          'allen': 1,
          'girlfriend': 1,
          'john': 1,
          'glover': 1,
          'crosss': 1,
          'partner': 1,
          'either': 1,
          'nsadly': 1,
          'though': 1,
          '25': 1,
          'home': 1,
          'alone': 1,
          'style': 1,
          'violence': 1,
          'carol': 1,
          'nwhoever': 1,
          'thought': 1,
          'head': 1,
          'toaster': 1,
          'fired': 1,
          'straight': 1,
          'away': 1,
          'bobcat': 1,
          'goldthwait': 1,
          'guy': 1,
          'annoying': 1,
          'voice': 1,
          'police': 1,
          'academy': 1,
          '3': 1,
          'remeber': 1,
          'correctly': 1,
          'nwho': 1,
          'thankfully': 1,
          'dosent': 1,
          'say': 1,
          'script': 1,
          'horrendous': 1,
          'nmichael': 1,
          'odonaghue': 1,
          'churns': 1,
          'terrible': 1,
          'taste': 1,
          'jokes': 1,
          'guess': 1,
          'whole': 1,
          'point': 1,
          'really': 1,
          'direction': 1,
          'completely': 1,
          'must': 1,
          'drug': 1,
          'wrote': 1,
          'final': 1,
          'awful': 1,
          'nice': 1,
          'nothing': 1,
          'ntheres': 1,
          'impressive': 1,
          'music': 1,
          'scored': 1,
          'danny': 1,
          'elfman': 1,
          'nbut': 1,
          'dont': 1,
          'appaling': 1,
          'attempt': 1,
          'inject': 1,
          'spirit': 1,
          'seeing': 1,
          'first': 1,
          '1': 1,
          'hour': 1,
          '20': 1,
          'depressing': 1,
          'anyway': 1,
          'godawful': 1,
          'nwhy': 1,
          'didnt': 1,
          'window': 1,
          'ask': 1,
          'young': 1,
          'boy': 1,
          'buy': 1,
          'goose': 1,
          'noverall': 1,
          'youd': 1,
          'better': 1,
          'avoid': 1,
          'like': 1,
          'something': 1,
          'avoided': 1,
          'perhaps': 1,
          'plague': 1,
          'nneg': 1}),
 Counter({'henstridge': 6,
          'film': 5,
          'movie': 5,
          'fear': 4,
          'rush': 4,
          'nthis': 4,
          'fans': 3,
          'lambert': 3,
          'fake': 3,
          'people': 2,
          'small': 2,
          'however': 2,
          'two': 2,
          'cops': 2,
          'shot': 2,
          'seven': 2,
          'times': 2,
          'clothes': 2,
          'films': 2,
          'even': 2,
          'disappoint': 2,
          'though': 2,
          'doesnt': 2,
          'nadrenalin': 2,
          'boston': 2,
          'ten': 2,
          'years': 2,
          'changed': 2,
          'good': 2,
          'go': 2,
          'minutes': 2,
          'scene': 2,
          'nthe': 2,
          'plot': 2,
          'learn': 2,
          'character': 2,
          'henstridges': 2,
          'next': 2,
          'son': 2,
          'nin': 2,
          'monologue': 2,
          'passport': 2,
          'nlamberts': 2,
          'cop': 2,
          'synopsis': 1,
          'maniac': 1,
          'crazed': 1,
          'virulent': 1,
          'microphage': 1,
          'slaughters': 1,
          'twenty': 1,
          'including': 1,
          'street': 1,
          'gang': 1,
          'heavilyarmed': 1,
          'troops': 1,
          'knife': 1,
          'neven': 1,
          'handgun': 1,
          'cant': 1,
          'take': 1,
          'despite': 1,
          'one': 1,
          'total': 1,
          'ncomments': 1,
          'notable': 1,
          'aspect': 1,
          'adrenalin': 1,
          'marks': 1,
          'striking': 1,
          'career': 1,
          'move': 1,
          'natasha': 1,
          'nnot': 1,
          'manage': 1,
          'keep': 1,
          'trademark': 1,
          'earlier': 1,
          'species': 1,
          'maximum': 1,
          'risk': 1,
          'strip': 1,
          'naked': 1,
          'often': 1,
          'possible': 1,
          'actually': 1,
          'puts': 1,
          'progresses': 1,
          'probably': 1,
          'many': 1,
          'welcome': 1,
          'change': 1,
          'attractive': 1,
          'capable': 1,
          'actress': 1,
          'deserves': 1,
          'less': 1,
          'exploitative': 1,
          'roles': 1,
          'admit': 1,
          'show': 1,
          'mess': 1,
          'nhenstridge': 1,
          'like': 1,
          'every': 1,
          'actor': 1,
          'delivers': 1,
          'wooden': 1,
          'performance': 1,
          'monumental': 1,
          'turkey': 1,
          'n': 1,
          'cast': 1,
          'also': 1,
          'includes': 1,
          'christopher': 1,
          'appeared': 1,
          'highlander': 1,
          'mortal': 1,
          'kombat': 1,
          'nhow': 1,
          'earth': 1,
          'got': 1,
          'bigname': 1,
          'stars': 1,
          'appear': 1,
          'beyond': 1,
          'set': 1,
          'future': 1,
          '2007': 1,
          'nboston': 1,
          'dramatically': 1,
          'nit': 1,
          'home': 1,
          'bunch': 1,
          'interred': 1,
          'foreigners': 1,
          'policed': 1,
          'drive': 1,
          'around': 1,
          'cars': 1,
          'policia': 1,
          'printed': 1,
          'doors': 1,
          'nsome': 1,
          'guy': 1,
          'really': 1,
          'bad': 1,
          'virus': 1,
          'hes': 1,
          'killing': 1,
          'nso': 1,
          'brave': 1,
          'guys': 1,
          'nthats': 1,
          'n76': 1,
          'never': 1,
          'seemed': 1,
          'long': 1,
          'drawnout': 1,
          'chase': 1,
          'dimlylit': 1,
          'abandoned': 1,
          'buildings': 1,
          'turned': 1,
          'entire': 1,
          'development': 1,
          'nil': 1,
          'absolutely': 1,
          'nothing': 1,
          'lamberts': 1,
          'little': 1,
          'dialogue': 1,
          'littered': 1,
          'unnecessary': 1,
          'obscenities': 1,
          'concerns': 1,
          'mindnumbingly': 1,
          'idiotic': 1,
          'arguments': 1,
          'dark': 1,
          'corridortunnelairduct': 1,
          'carry': 1,
          'flashlight': 1,
          'na': 1,
          'subplot': 1,
          'exist': 1,
          'involving': 1,
          'characters': 1,
          'illegal': 1,
          'attempt': 1,
          'get': 1,
          'opening': 1,
          'sounds': 1,
          'reading': 1,
          'cue': 1,
          'cards': 1,
          'gone': 1,
          'great': 1,
          'lengths': 1,
          'secure': 1,
          'ntwenty': 1,
          'wondered': 1,
          'would': 1,
          'better': 1,
          'focused': 1,
          'defining': 1,
          'mind': 1,
          'drops': 1,
          'ground': 1,
          'immediately': 1,
          'recognizes': 1,
          'fraud': 1,
          'six': 1,
          'feet': 1,
          'away': 1,
          'nmust': 1,
          'emphasizes': 1,
          'another': 1,
          'fault': 1,
          'nthings': 1,
          'defy': 1,
          'common': 1,
          'sense': 1,
          'instance': 1,
          'yet': 1,
          'still': 1,
          'able': 1,
          'talk': 1,
          'slide': 1,
          'ends': 1,
          'trite': 1,
          'manner': 1,
          'seem': 1,
          'fit': 1,
          'mood': 1,
          'filmmakers': 1,
          'trying': 1,
          'ni': 1,
          'found': 1,
          'rather': 1,
          'bored': 1,
          'scifihorror': 1,
          'ndont': 1,
          'nfear': 1,
          'nwatch': 1,
          'something': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'jay': 5,
          'lee': 4,
          'fool': 3,
          'love': 3,
          'schwimmers': 3,
          'amy': 2,
          'kissing': 2,
          'chasing': 2,
          'falls': 2,
          'kevin': 2,
          'film': 2,
          'stars': 2,
          'friend': 2,
          'max': 2,
          'best': 2,
          'book': 2,
          'samantha': 2,
          'avital': 2,
          'nthe': 2,
          'trouble': 2,
          'man': 2,
          'girlfriend': 2,
          'comic': 2,
          'anyone': 2,
          'dialogue': 2,
          'character': 2,
          'hes': 2,
          'anything': 2,
          'also': 2,
          'nthere': 2,
          'back': 2,
          'postchasing': 1,
          'slew': 1,
          'lovetriangle': 1,
          'movies': 1,
          'month': 1,
          'costarring': 1,
          'amys': 1,
          'april': 1,
          'brings': 1,
          'us': 1,
          'object': 1,
          'affection': 1,
          'may': 1,
          'well': 1,
          'titled': 1,
          'allan': 1,
          'story': 1,
          'woman': 1,
          'gay': 1,
          'roommate': 1,
          'n': 1,
          'absolutely': 1,
          'six': 1,
          'degrees': 1,
          'bacon': 1,
          'jennifer': 1,
          'aniston': 1,
          'nif': 1,
          'smith': 1,
          'could': 1,
          'write': 1,
          'nschwimmer': 1,
          'womanizing': 1,
          'chicago': 1,
          'sportscaster': 1,
          'editor': 1,
          'mere': 1,
          'twentyfour': 1,
          'hours': 1,
          'meeting': 1,
          'nthey': 1,
          'soon': 1,
          'engaged': 1,
          'raging': 1,
          'libido': 1,
          'grows': 1,
          'suspicious': 1,
          'samanthas': 1,
          'fidelity': 1,
          'nhe': 1,
          'convinces': 1,
          'flirt': 1,
          'development': 1,
          'test': 1,
          'might': 1,
          'secretly': 1,
          'nto': 1,
          'stretch': 1,
          'flat': 1,
          'sitcom': 1,
          'premise': 1,
          'feature': 1,
          'length': 1,
          'plot': 1,
          'framed': 1,
          'climactic': 1,
          'wedding': 1,
          'bonnie': 1,
          'hunt': 1,
          'recounts': 1,
          'triangular': 1,
          'talethe': 1,
          'events': 1,
          'leading': 1,
          'nuptialsto': 1,
          'annoying': 1,
          'fat': 1,
          'silly': 1,
          'nhunt': 1,
          'timing': 1,
          'schwimmer': 1,
          'spin': 1,
          'bad': 1,
          'mildly': 1,
          'humorous': 1,
          'poor': 1,
          'miscast': 1,
          'nso': 1,
          'hysterically': 1,
          'funny': 1,
          'forced': 1,
          'repress': 1,
          'instincts': 1,
          'swear': 1,
          'yell': 1,
          'talk': 1,
          'oral': 1,
          'sex': 1,
          'scripts': 1,
          'idea': 1,
          'trait': 1,
          'stress': 1,
          'sensitive': 1,
          'show': 1,
          'drinking': 1,
          'pepto': 1,
          'bismol': 1,
          'stewing': 1,
          'girl': 1,
          'nas': 1,
          'israeli': 1,
          'actress': 1,
          'warm': 1,
          'sweet': 1,
          'dont': 1,
          'know': 1,
          'takes': 1,
          'incredibly': 1,
          'long': 1,
          'time': 1,
          'realize': 1,
          'obvious': 1,
          'things': 1,
          'nshe': 1,
          'closely': 1,
          'resembles': 1,
          'stunningly': 1,
          'beautiful': 1,
          'kari': 1,
          'wuhrer': 1,
          'plays': 1,
          'assistant': 1,
          'personal': 1,
          'temptress': 1,
          'turning': 1,
          'particular': 1,
          'subplot': 1,
          'unintentional': 1,
          'riff': 1,
          'vertigo': 1,
          'handful': 1,
          'smattering': 1,
          'good': 1,
          'scenes': 1,
          'ni': 1,
          'enjoyed': 1,
          'moment': 1,
          'comedy': 1,
          'club': 1,
          'gets': 1,
          'asks': 1,
          'ever': 1,
          'hated': 1,
          'much': 1,
          'wanted': 1,
          'kill': 1,
          'nover': 1,
          'booted': 1,
          'stage': 1,
          'obviously': 1,
          'improvised': 1,
          'lines': 1,
          'fresher': 1,
          'thats': 1,
          'page': 1,
          'nkissing': 1,
          'never': 1,
          'clever': 1,
          'thursday': 1,
          'night': 1,
          'jokemachine': 1,
          'friends': 1,
          'spawned': 1,
          'movie': 1,
          'career': 1,
          'save': 1,
          'eight': 1,
          'dollars': 1,
          'watch': 1,
          'three': 1,
          'episodes': 1,
          'series': 1,
          'nneg': 1}),
 Counter({'nthe': 4,
          'surprise': 3,
          'characters': 2,
          'ending': 2,
          'film': 2,
          'go': 2,
          'dawsons': 2,
          'creek': 2,
          'yet': 1,
          'another': 1,
          'brainless': 1,
          'teen': 1,
          'flick': 1,
          'one': 1,
          'drugs': 1,
          'sex': 1,
          'nstars': 1,
          'katie': 1,
          'holmes': 1,
          'sarah': 1,
          'polly': 1,
          'couldnt': 1,
          'look': 1,
          'bored': 1,
          'ntheir': 1,
          'cardboard': 1,
          'cutouts': 1,
          'every': 1,
          'cliched': 1,
          'teenager': 1,
          'none': 1,
          'thing': 1,
          'need': 1,
          'know': 1,
          'really': 1,
          'hated': 1,
          'movie': 1,
          'neverything': 1,
          'annoyed': 1,
          'hell': 1,
          'acting': 1,
          'script': 1,
          'plot': 1,
          'director': 1,
          'fluke': 1,
          'hit': 1,
          'swingers': 1,
          'could': 1,
          'well': 1,
          'directed': 1,
          'bunch': 1,
          'noname': 1,
          'actors': 1,
          'watchabe': 1,
          'big': 1,
          'stars': 1,
          'pretty': 1,
          'much': 1,
          'drown': 1,
          'project': 1,
          'originality': 1,
          'ni': 1,
          'felt': 1,
          'like': 1,
          'watching': 1,
          'episode': 1,
          '200': 1,
          'nalthough': 1,
          'still': 1,
          'would': 1,
          'stayed': 1,
          'red': 1,
          'despite': 1,
          'cast': 1,
          'sooo': 1,
          'predictable': 1,
          'nsince': 1,
          'male': 1,
          'sudden': 1,
          'outing': 1,
          'closet': 1,
          'considered': 1,
          'hollywood': 1,
          'anymore': 1,
          'ngo': 1,
          'varsity': 1,
          'blues': 1,
          'shes': 1,
          'home': 1,
          'watch': 1,
          'something': 1,
          'else': 1,
          'nneg': 1}),
 Counter({'queen': 8,
          'leader': 7,
          'dutch': 6,
          'movie': 6,
          'lucky': 5,
          'harlem': 4,
          'families': 4,
          'nthe': 4,
          'lottery': 3,
          'luciano': 3,
          'queens': 3,
          'army': 3,
          'time': 3,
          'many': 3,
          'similarities': 3,
          'way': 3,
          'gangster': 2,
          'war': 2,
          'control': 2,
          'numbers': 2,
          'runners': 2,
          'bets': 2,
          'cicely': 2,
          'tyson': 2,
          'tim': 2,
          'roth': 2,
          'andy': 2,
          'garcia': 2,
          'bumpy': 2,
          'johnson': 2,
          'lawrence': 2,
          'short': 2,
          'reign': 2,
          'nhis': 2,
          'questions': 2,
          'girlfriend': 2,
          'vanessa': 2,
          'williams': 2,
          'violent': 2,
          'dealing': 2,
          'original': 2,
          'story': 2,
          'nthis': 2,
          'godfather': 2,
          'borrow': 2,
          'give': 2,
          'credit': 2,
          'screenwriter': 2,
          'cop': 2,
          'relative': 2,
          'officer': 2,
          'family': 2,
          'involved': 2,
          'setup': 2,
          'done': 2,
          'well': 2,
          'ni': 2,
          'enjoyed': 2,
          'one': 2,
          'insult': 2,
          'performances': 2,
          'convincing': 2,
          'set': 1,
          'great': 1,
          'depression': 1,
          'rival': 1,
          'go': 1,
          'illegal': 1,
          'gambling': 1,
          'n': 1,
          'take': 1,
          'potential': 1,
          'winners': 1,
          'deliver': 1,
          'private': 1,
          'locations': 1,
          'drawings': 1,
          'undisputed': 1,
          'madame': 1,
          'challenged': 1,
          'schulz': 1,
          'ruthless': 1,
          'hoodlum': 1,
          'nby': 1,
          'turning': 1,
          'defies': 1,
          'partner': 1,
          'infamous': 1,
          'wishes': 1,
          'respect': 1,
          'keep': 1,
          'peace': 1,
          'strengthens': 1,
          'acquaintance': 1,
          'ellsworth': 1,
          'fishburne': 1,
          'released': 1,
          'prison': 1,
          'becomes': 1,
          'bodyguard': 1,
          'nhe': 1,
          'proves': 1,
          'worthy': 1,
          'thwarts': 1,
          'assassination': 1,
          'attempt': 1,
          'later': 1,
          'takes': 1,
          'jailed': 1,
          'tax': 1,
          'evasion': 1,
          'nbumpys': 1,
          'restrained': 1,
          'subdued': 1,
          'declares': 1,
          'nbloody': 1,
          'gang': 1,
          'warfare': 1,
          'ensues': 1,
          'nbumpy': 1,
          'faces': 1,
          'obstacles': 1,
          'new': 1,
          'methods': 1,
          'l': 1,
          'disagree': 1,
          'solutions': 1,
          'nmost': 1,
          'importantly': 1,
          'eyes': 1,
          'become': 1,
          'formidable': 1,
          'foe': 1,
          'imagined': 1,
          'seeks': 1,
          'help': 1,
          'assassinate': 1,
          'nthere': 1,
          'movies': 1,
          'organized': 1,
          'crime': 1,
          'must': 1,
          'hard': 1,
          'write': 1,
          'nin': 1,
          'fact': 1,
          'angered': 1,
          'film': 1,
          'arguably': 1,
          'best': 1,
          'nif': 1,
          'going': 1,
          'ideas': 1,
          'another': 1,
          'lesser': 1,
          'known': 1,
          'say': 1,
          'millers': 1,
          'crossing': 1,
          'nhow': 1,
          'could': 1,
          'credited': 1,
          'chris': 1,
          'brancato': 1,
          'mario': 1,
          'puzo': 1,
          'nhere': 1,
          'major': 1,
          'stopped': 1,
          'counting': 1,
          '10': 1,
          'ncrooked': 1,
          'assaults': 1,
          'blood': 1,
          'ngang': 1,
          'extracts': 1,
          'revenge': 1,
          'crooked': 1,
          'nwife': 1,
          'partners': 1,
          'murderous': 1,
          'activities': 1,
          'leaves': 1,
          'nhigh': 1,
          'ranking': 1,
          'betrays': 1,
          'nblood': 1,
          'murdered': 1,
          'nwar': 1,
          'erupting': 1,
          'nhighranking': 1,
          'disapproves': 1,
          'front': 1,
          'members': 1,
          'nnew': 1,
          'runs': 1,
          'differently': 1,
          'previous': 1,
          'nlarge': 1,
          'meeting': 1,
          'rather': 1,
          'portrayal': 1,
          'network': 1,
          'sprinting': 1,
          'streets': 1,
          'collecting': 1,
          'life': 1,
          'people': 1,
          'support': 1,
          'put': 1,
          'food': 1,
          'table': 1,
          'nnumber': 1,
          'running': 1,
          'population': 1,
          'find': 1,
          'work': 1,
          'also': 1,
          'interaction': 1,
          'angry': 1,
          'calm': 1,
          'patient': 1,
          'nafter': 1,
          '3040': 1,
          'minute': 1,
          'mark': 1,
          'start': 1,
          'appearing': 1,
          'order': 1,
          'nit': 1,
          'huge': 1,
          'distraction': 1,
          'intelligence': 1,
          'nwho': 1,
          'kidding': 1,
          'nsome': 1,
          'individual': 1,
          'nandy': 1,
          'unfortunately': 1,
          'screen': 1,
          'reduced': 1,
          'supporting': 1,
          'role': 1,
          'ntim': 1,
          'effectively': 1,
          'plays': 1,
          'cocky': 1,
          'villain': 1,
          'much': 1,
          'like': 1,
          'roles': 1,
          'cook': 1,
          'thief': 1,
          'wife': 1,
          'lover': 1,
          'rob': 1,
          'roy': 1,
          'good': 1,
          'first': 1,
          'third': 1,
          'make': 1,
          'lackluster': 1,
          'follows': 1,
          'na': 1,
          'couple': 1,
          'coincidences': 1,
          'thing': 1,
          'dozen': 1,
          'ndirected': 1,
          'bill': 1,
          'duke': 1,
          'nellsworth': 1,
          'nfishburne': 1,
          'schultz': 1,
          'nroth': 1,
          'ngarcia': 1,
          'francine': 1,
          'hughes': 1,
          'nl': 1,
          'illinois': 1,
          'gordon': 1,
          'chi': 1,
          'nmcbride': 1,
          'nwritten': 1,
          'randy': 1,
          'turgeon': 1,
          'january': 1,
          '22': 1,
          '1998': 1,
          'nneg': 1}),
 Counter({'sword': 7,
          'cromwell': 7,
          'film': 6,
          'xusia': 5,
          'sorcerer': 4,
          'scenes': 4,
          'take': 3,
          'ehdan': 3,
          'talon': 3,
          'vows': 3,
          'alana': 3,
          'help': 3,
          'good': 3,
          'would': 3,
          'completely': 3,
          'bloody': 3,
          'extremely': 3,
          'never': 3,
          'right': 3,
          'sorceror': 2,
          'plotline': 2,
          'like': 2,
          'evil': 2,
          'resurrects': 2,
          'ancient': 2,
          'kingdom': 2,
          'bad': 2,
          'brother': 2,
          'ends': 2,
          'alanas': 2,
          'crucified': 2,
          'battle': 2,
          'blade': 2,
          'even': 2,
          'great': 2,
          'uneven': 2,
          'plot': 2,
          'jumping': 2,
          'acting': 2,
          'needs': 2,
          'minute': 2,
          'moment': 2,
          'see': 2,
          'instead': 2,
          'nin': 2,
          'fantasy': 2,
          'dont': 2,
          'nthe': 2,
          'score': 2,
          'better': 2,
          'called': 2,
          'reviews': 2,
          'ni': 2,
          'hope': 2,
          'first': 1,
          'glance': 1,
          'thought': 1,
          'promise': 1,
          'nits': 1,
          'goes': 1,
          'king': 1,
          'desiring': 1,
          'world': 1,
          'power': 1,
          'nhe': 1,
          'attacks': 1,
          'kills': 1,
          'young': 1,
          'prince': 1,
          'talons': 1,
          'parents': 1,
          'ngiven': 1,
          'triplebladed': 1,
          'shoot': 1,
          'guys': 1,
          'gun': 1,
          'dying': 1,
          'father': 1,
          'revenge': 1,
          'neleven': 1,
          'years': 1,
          'later': 1,
          'hes': 1,
          'established': 1,
          'army': 1,
          'mercaneries': 1,
          'back': 1,
          'nalong': 1,
          'way': 1,
          'meets': 1,
          'whose': 1,
          'village': 1,
          'attacked': 1,
          'drunken': 1,
          'guards': 1,
          'kidnapped': 1,
          'ntalon': 1,
          'series': 1,
          'minor': 1,
          'escapades': 1,
          'eventually': 1,
          'rescuing': 1,
          'several': 1,
          'prisoners': 1,
          'captured': 1,
          'words': 1,
          'put': 1,
          'cross': 1,
          'nfortunately': 1,
          'frees': 1,
          'rescues': 1,
          'marrying': 1,
          'defeats': 1,
          'triple': 1,
          'bladed': 1,
          'final': 1,
          'breaks': 1,
          'finishes': 1,
          'using': 1,
          'hidden': 1,
          'dagger': 1,
          'nthen': 1,
          'everything': 1,
          'happily': 1,
          'nunfortunately': 1,
          'half': 1,
          'sounds': 1,
          'nwhat': 1,
          'destroyed': 1,
          'gruesomely': 1,
          'gory': 1,
          'nnever': 1,
          'story': 1,
          'seem': 1,
          'connect': 1,
          'together': 1,
          'jumps': 1,
          'around': 1,
          'repeatedly': 1,
          'nthis': 1,
          'problem': 1,
          'noticeable': 1,
          'opening': 1,
          'scene': 1,
          'nafter': 1,
          'telling': 1,
          'leads': 1,
          'warlock': 1,
          'daylight': 1,
          'stabs': 1,
          'sends': 1,
          'careening': 1,
          'cliff': 1,
          'afterwards': 1,
          'nwait': 1,
          'didnt': 1,
          'say': 1,
          'order': 1,
          'invade': 1,
          'military': 1,
          'force': 1,
          'nif': 1,
          'case': 1,
          'dispose': 1,
          'resurrecting': 1,
          'nand': 1,
          'manage': 1,
          'anyway': 1,
          'nthese': 1,
          'questions': 1,
          'answered': 1,
          'nanother': 1,
          'example': 1,
          'one': 1,
          'fighting': 1,
          'life': 1,
          'another': 1,
          'wedding': 1,
          'finally': 1,
          'end': 1,
          'settling': 1,
          'tells': 1,
          'wait': 1,
          'rides': 1,
          'addition': 1,
          'destroys': 1,
          'adventure': 1,
          'neven': 1,
          'attempts': 1,
          'make': 1,
          'exciting': 1,
          'fire': 1,
          'work': 1,
          'nit': 1,
          'fails': 1,
          'altogether': 1,
          'miserably': 1,
          'thing': 1,
          'musical': 1,
          'contributed': 1,
          'david': 1,
          'whittaker': 1,
          'short': 1,
          'music': 1,
          'composing': 1,
          'career': 1,
          'boomy': 1,
          'adventurous': 1,
          'powerful': 1,
          'billion': 1,
          'times': 1,
          'nmy': 1,
          'suggestion': 1,
          'steer': 1,
          'hell': 1,
          'away': 1,
          'mess': 1,
          'buy': 1,
          'soundtrack': 1,
          'album': 1,
          'find': 1,
          'nironically': 1,
          'though': 1,
          'films': 1,
          'credits': 1,
          'roll': 1,
          'message': 1,
          'indicating': 1,
          'sequel': 1,
          'tales': 1,
          'empire': 1,
          'follow': 1,
          'nto': 1,
          'relief': 1,
          'delight': 1,
          'got': 1,
          'production': 1,
          'laid': 1,
          'egg': 1,
          'box': 1,
          'office': 1,
          'grossing': 1,
          '39': 1,
          'million': 1,
          'ncritics': 1,
          'slamming': 1,
          'nleonard': 1,
          'maltin': 1,
          'rightfully': 1,
          'second': 1,
          'rate': 1,
          'scripting': 1,
          'ataglance': 1,
          'confusing': 1,
          'stupid': 1,
          'unimaginative': 1,
          'unengaging': 1,
          'bloodfilled': 1,
          'bore': 1,
          'totally': 1,
          'agree': 1,
          'piece': 1,
          'nwill': 1,
          'forgotten': 1,
          'nthere': 1,
          'far': 1,
          'movies': 1,
          'get': 1,
          'laugh': 1,
          'review': 1,
          'laughing': 1,
          'fact': 1,
          'insults': 1,
          'come': 1,
          'close': 1,
          'gruesome': 1,
          'sickness': 1,
          'gave': 1,
          'throughout': 1,
          '100': 1,
          'running': 1,
          'time': 1,
          'nneg': 1}),
 Counter({'military': 7,
          'brenner': 6,
          'rape': 4,
          'ni': 3,
          'like': 3,
          'investigating': 3,
          'west': 3,
          'point': 3,
          'film': 2,
          'officer': 2,
          'paul': 2,
          'identification': 2,
          'might': 2,
          'cards': 2,
          'suspect': 2,
          'even': 2,
          'story': 2,
          'gets': 2,
          'killing': 2,
          'nthe': 2,
          'assigned': 2,
          'murder': 2,
          'generals': 2,
          'daughter': 2,
          'nno': 2,
          'totally': 2,
          'crime': 2,
          'one': 2,
          'occurred': 2,
          'georgia': 2,
          'new': 2,
          'york': 2,
          'nhe': 2,
          'deadline': 2,
          'psychiatrist': 2,
          'transport': 2,
          'movie': 1,
          'stinks': 1,
          'nalthough': 1,
          'professionally': 1,
          'crafted': 1,
          'decent': 1,
          'performances': 1,
          'plot': 1,
          'bad': 1,
          'drags': 1,
          'abyss': 1,
          'knew': 1,
          'trouble': 1,
          'opening': 1,
          'establishment': 1,
          'shots': 1,
          'see': 1,
          'detailed': 1,
          'closeup': 1,
          'warrant': 1,
          'brenners': 1,
          'john': 1,
          'travolta': 1,
          'card': 1,
          'wrong': 1,
          'color': 1,
          'nthis': 1,
          'seem': 1,
          'minor': 1,
          'detail': 1,
          'anyone': 1,
          'spent': 1,
          'anytime': 1,
          'knows': 1,
          'active': 1,
          'duty': 1,
          'green': 1,
          'dependant': 1,
          'yellow': 1,
          'nand': 1,
          'senior': 1,
          'whose': 1,
          'uniform': 1,
          'shirt': 1,
          'wrinkled': 1,
          'looks': 1,
          'recruit': 1,
          'first': 1,
          'day': 1,
          'training': 1,
          'tells': 1,
          'doesnt': 1,
          'right': 1,
          'answer': 1,
          'questions': 1,
          'though': 1,
          'rights': 1,
          'central': 1,
          'law': 1,
          'well': 1,
          'miranda': 1,
          'decision': 1,
          'nhow': 1,
          'hard': 1,
          'get': 1,
          'someone': 1,
          'familiar': 1,
          'check': 1,
          'facts': 1,
          'nnow': 1,
          'details': 1,
          'could': 1,
          'overlooked': 1,
          'underlying': 1,
          'held': 1,
          'full': 1,
          'holes': 1,
          'painful': 1,
          'sit': 1,
          'nfor': 1,
          'example': 1,
          'beginning': 1,
          'undercover': 1,
          'army': 1,
          'investigator': 1,
          'gun': 1,
          'knife': 1,
          'battle': 1,
          'offpost': 1,
          'houseboat': 1,
          'windsup': 1,
          'arms': 1,
          'dealer': 1,
          'local': 1,
          'police': 1,
          'death': 1,
          'openly': 1,
          'hostile': 1,
          'discover': 1,
          'lying': 1,
          'nbut': 1,
          'instead': 1,
          'arresting': 1,
          'least': 1,
          'take': 1,
          'custody': 1,
          'questioning': 1,
          'release': 1,
          'nduh': 1,
          'nultimately': 1,
          'investigate': 1,
          'possible': 1,
          'commanding': 1,
          'young': 1,
          'captain': 1,
          'also': 1,
          'post': 1,
          'nwhen': 1,
          'finds': 1,
          'graphic': 1,
          'sex': 1,
          'tapes': 1,
          'featuring': 1,
          'use': 1,
          'generate': 1,
          'list': 1,
          'begin': 1,
          'grilling': 1,
          'suspects': 1,
          'instinct': 1,
          'suppress': 1,
          'potentially': 1,
          'embarrassing': 1,
          'neventually': 1,
          'discovers': 1,
          'related': 1,
          'violent': 1,
          'gang': 1,
          'eight': 1,
          'years': 1,
          'earlier': 1,
          'wont': 1,
          'go': 1,
          'unbelievable': 1,
          'rationale': 1,
          'armys': 1,
          'suppression': 1,
          'horrendous': 1,
          'mention': 1,
          'final': 1,
          'flaw': 1,
          'nbrenner': 1,
          'tight': 1,
          'implausible': 1,
          '36hour': 1,
          'solve': 1,
          'case': 1,
          'needs': 1,
          'discuss': 1,
          'ndoes': 1,
          'phone': 1,
          'doctor': 1,
          'travels': 1,
          'via': 1,
          'unexplained': 1,
          'fast': 1,
          'question': 1,
          'person': 1,
          'returns': 1,
          'miracle': 1,
          'without': 1,
          'worrying': 1,
          'impact': 1,
          'nyou': 1,
          'warned': 1,
          'stay': 1,
          'away': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'vampire': 6,
          'crow': 6,
          '_vampires_': 4,
          'even': 4,
          'scary': 3,
          'carpenter': 3,
          'film': 3,
          'master': 3,
          'named': 3,
          'montoya': 3,
          'guiteau': 3,
          'first': 2,
          'words': 2,
          'associated': 2,
          'nbut': 2,
          '_the': 2,
          'action': 2,
          'new': 2,
          'plot': 2,
          'carpenters': 2,
          'vampires_': 2,
          'least': 2,
          'fan': 2,
          'nthe': 2,
          'concerned': 2,
          'nest': 2,
          'vampires': 2,
          'ntheir': 2,
          'nto': 2,
          'away': 2,
          'valek': 2,
          'nwoods': 2,
          'jack': 2,
          'woman': 2,
          'katrina': 2,
          'rest': 2,
          'pick': 2,
          'much': 2,
          'n_vampires_': 2,
          'flick': 2,
          'seems': 2,
          '_blade_': 2,
          '_____': 2,
          'wanted': 2,
          'nthese': 1,
          'came': 1,
          'mind': 1,
          'nwhen': 1,
          'called': 1,
          'arent': 1,
          'wasnt': 1,
          'gripe': 1,
          'njohn': 1,
          'name': 1,
          'cuttingedge': 1,
          'cinema': 1,
          'intense': 1,
          'scares': 1,
          '_halloween_': 1,
          'thing_': 1,
          'prince': 1,
          'darkness_': 1,
          'offbeat': 1,
          '_they': 1,
          'live_': 1,
          '_escape': 1,
          'york_': 1,
          'nunfortunately': 1,
          'thing': 1,
          'cutting': 1,
          'edge': 1,
          'level': 1,
          'boredom': 1,
          'able': 1,
          'reach': 1,
          'nwith': 1,
          'anemic': 1,
          'notquitekosher': 1,
          'special': 1,
          'effects': 1,
          '_john': 1,
          'barely': 1,
          'enough': 1,
          'substance': 1,
          'slake': 1,
          'thirst': 1,
          'discerning': 1,
          'genre': 1,
          'group': 1,
          'roaming': 1,
          'slayers': 1,
          'led': 1,
          'james': 1,
          'woods': 1,
          'people': 1,
          'nlike': 1,
          'sort': 1,
          'holy': 1,
          'ateam': 1,
          'soupedup': 1,
          'van': 1,
          'bunch': 1,
          'invade': 1,
          'wipe': 1,
          'mexico': 1,
          'shack': 1,
          'method': 1,
          'amusingly': 1,
          'innovative': 1,
          'bloodsuckers': 1,
          'reeled': 1,
          'harpoons': 1,
          'flare': 1,
          'sun': 1,
          'like': 1,
          'matchsticks': 1,
          'commemorate': 1,
          'victory': 1,
          'loutish': 1,
          'band': 1,
          'decorates': 1,
          'motel': 1,
          'room': 1,
          'hookers': 1,
          'parties': 1,
          'night': 1,
          'celebration': 1,
          'shortlived': 1,
          'however': 1,
          'ambushes': 1,
          'singlehandedly': 1,
          'destroys': 1,
          'team': 1,
          'buddy': 1,
          'daniel': 1,
          'baldwin': 1,
          'escape': 1,
          'lives': 1,
          'along': 1,
          'sheryl': 1,
          'lee': 1,
          'nalthough': 1,
          'bitten': 1,
          'decide': 1,
          'keep': 1,
          'psychic': 1,
          'link': 1,
          'boys': 1,
          'hunt': 1,
          'thomas': 1,
          'ian': 1,
          'griffith': 1,
          'freaky': 1,
          'marilyn': 1,
          'mansontype': 1,
          'whos': 1,
          'mission': 1,
          'dates': 1,
          'back': 1,
          '600': 1,
          'years': 1,
          'nalong': 1,
          'way': 1,
          'priest': 1,
          'tim': 1,
          'guinee': 1,
          'character': 1,
          'serves': 1,
          'pretty': 1,
          'purpose': 1,
          'jittery': 1,
          'cpl': 1,
          'nupham': 1,
          '_saving': 1,
          'private': 1,
          'ryan_': 1,
          'nsome': 1,
          'stuff': 1,
          'happens': 1,
          'middle': 1,
          'cant': 1,
          'remember': 1,
          'often': 1,
          'found': 1,
          'twitching': 1,
          'hair': 1,
          'corner': 1,
          'frame': 1,
          'interesting': 1,
          'happening': 1,
          'screen': 1,
          'finally': 1,
          'starts': 1,
          '90': 1,
          'minutes': 1,
          'mix': 1,
          'assault': 1,
          'abandoned': 1,
          'prisonturned': 1,
          'nonly': 1,
          'begin': 1,
          'resemble': 1,
          'little': 1,
          'late': 1,
          'nwe': 1,
          'get': 1,
          'inevitable': 1,
          'final': 1,
          'confrontation': 1,
          'tacked': 1,
          'rather': 1,
          'anticlimactic': 1,
          'come': 1,
          'dealing': 1,
          '_the_': 1,
          'ninterestingly': 1,
          'last': 1,
          'summers': 1,
          'actioner': 1,
          'derived': 1,
          'comic': 1,
          'book': 1,
          'novel': 1,
          'yet': 1,
          'latter': 1,
          'steeped': 1,
          'campy': 1,
          'cheesiness': 1,
          'former': 1,
          'deliberate': 1,
          'superhero': 1,
          'spouts': 1,
          'glib': 1,
          'offthecuff': 1,
          'oneliners': 1,
          'strolls': 1,
          'exploding': 1,
          'buildings': 1,
          'ohsocool': 1,
          'stride': 1,
          'nand': 1,
          'motive': 1,
          'killing': 1,
          'ntake': 1,
          'wild': 1,
          'guess': 1,
          'n': 1,
          'hint': 1,
          '______': 1,
          'killed': 1,
          'nat': 1,
          'decent': 1,
          'slick': 1,
          'stylishness': 1,
          'lacks': 1,
          'cheap': 1,
          'thrills': 1,
          'mask': 1,
          'gossamerthin': 1,
          'make': 1,
          'resorts': 1,
          'shocks': 1,
          'generally': 1,
          'condescending': 1,
          'attitude': 1,
          'towards': 1,
          'women': 1,
          'slaps': 1,
          'around': 1,
          'fun': 1,
          'overplayed': 1,
          'contempt': 1,
          'religion': 1,
          'teases': 1,
          'incessantly': 1,
          'whether': 1,
          'vow': 1,
          'celibacy': 1,
          'made': 1,
          'prone': 1,
          'getting': 1,
          'woodies': 1,
          'nit': 1,
          'argued': 1,
          'maybe': 1,
          'nif': 1,
          'gory': 1,
          'tense': 1,
          'relentless': 1,
          'exhausting': 1,
          'n_john': 1,
          'none': 1,
          'ni': 1,
          'recommended': 1,
          'hardcore': 1,
          'nfor': 1,
          'looking': 1,
          'good': 1,
          'scare': 1,
          'beware': 1,
          'teeth': 1,
          'nneg': 1}),
 Counter({'dirty': 5,
          'work': 5,
          'two': 5,
          'live': 3,
          'always': 3,
          'norm': 3,
          'macdonald': 3,
          'says': 3,
          'go': 3,
          'car': 3,
          'funny': 3,
          'note': 3,
          'self': 3,
          'best': 2,
          'news': 2,
          'saturday': 2,
          'night': 2,
          'nin': 2,
          'movie': 2,
          'saying': 2,
          'feel': 2,
          'real': 2,
          'one': 2,
          'getting': 2,
          'jack': 2,
          'warden': 2,
          'ntheir': 2,
          'scene': 2,
          'possibly': 2,
          'television': 2,
          'used': 2,
          'lot': 2,
          'revenge': 2,
          'material': 2,
          'like': 2,
          'perhaps': 1,
          'remembered': 1,
          'recently': 1,
          'departed': 1,
          'anchor': 1,
          'started': 1,
          'segment': 1,
          'fake': 1,
          'times': 1,
          'could': 1,
          'elicit': 1,
          'laughter': 1,
          'blurting': 1,
          'semioffensive': 1,
          'phrases': 1,
          'raspy': 1,
          'voice': 1,
          'coated': 1,
          'condescending': 1,
          'attitude': 1,
          'nhis': 1,
          'shtick': 1,
          'marked': 1,
          'crassness': 1,
          'example': 1,
          'girlfriend': 1,
          'shes': 1,
          'kicking': 1,
          'hes': 1,
          'fired': 1,
          '14': 1,
          'different': 1,
          'jobs': 1,
          'last': 1,
          '3': 1,
          'months': 1,
          'tries': 1,
          'calm': 1,
          'situation': 1,
          'maybe': 1,
          'youll': 1,
          'better': 1,
          'sex': 1,
          'nthis': 1,
          'kind': 1,
          'humor': 1,
          'far': 1,
          'certainly': 1,
          'cant': 1,
          'distance': 1,
          'fulllength': 1,
          'feature': 1,
          'n': 1,
          'nothing': 1,
          'sophomoric': 1,
          'comedy': 1,
          'friends': 1,
          'grow': 1,
          'physically': 1,
          'nemotionally': 1,
          'theyve': 1,
          'never': 1,
          'outgrown': 1,
          'pubescent': 1,
          'years': 1,
          'somewhat': 1,
          'amusingly': 1,
          'explored': 1,
          'beginning': 1,
          'flashback': 1,
          'nalthough': 1,
          'apparent': 1,
          'world': 1,
          'skills': 1,
          'thing': 1,
          'adept': 1,
          'back': 1,
          'people': 1,
          'nif': 1,
          'meter': 1,
          'maid': 1,
          'unjust': 1,
          'giving': 1,
          'ticket': 1,
          'dump': 1,
          'bunch': 1,
          'unpopped': 1,
          'kernels': 1,
          'corn': 1,
          'onto': 1,
          'engine': 1,
          'block': 1,
          'watch': 1,
          'burst': 1,
          'apart': 1,
          'nmitch': 1,
          'sam': 1,
          'artie': 1,
          'lange': 1,
          'need': 1,
          'come': 1,
          '50': 1,
          '000': 1,
          'period': 1,
          'weeks': 1,
          'sams': 1,
          'dad': 1,
          'heart': 1,
          'operation': 1,
          'idea': 1,
          'start': 1,
          'revengeforhire': 1,
          'business': 1,
          'theyll': 1,
          'funniest': 1,
          'take': 1,
          'advantage': 1,
          'shoot': 1,
          'nearby': 1,
          'presence': 1,
          'established': 1,
          'lessthanhonorable': 1,
          'estate': 1,
          'developer': 1,
          'hires': 1,
          'reneges': 1,
          'payment': 1,
          'exact': 1,
          'sordid': 1,
          'brand': 1,
          'nby': 1,
          'default': 1,
          'treat': 1,
          'us': 1,
          'outrageous': 1,
          'plots': 1,
          'delivers': 1,
          'jerky': 1,
          'boys': 1,
          'level': 1,
          'nexcept': 1,
          'bit': 1,
          'another': 1,
          'episode': 1,
          'involves': 1,
          'frat': 1,
          'brothers': 1,
          'uninspired': 1,
          'becomes': 1,
          'prank': 1,
          'phone': 1,
          'call': 1,
          'nalready': 1,
          'weak': 1,
          'spirals': 1,
          'towards': 1,
          'video': 1,
          'store': 1,
          'constantly': 1,
          'blurt': 1,
          'unsatisfied': 1,
          'libido': 1,
          'needs': 1,
          'broads': 1,
          'also': 1,
          'includes': 1,
          'unfunny': 1,
          'chevy': 1,
          'chase': 1,
          'bumbling': 1,
          'doctor': 1,
          'gambling': 1,
          'addiction': 1,
          'nbut': 1,
          'whats': 1,
          'really': 1,
          'painfully': 1,
          'evident': 1,
          'versatility': 1,
          'actor': 1,
          'nrelying': 1,
          'trademark': 1,
          'speaking': 1,
          'personal': 1,
          'recorder': 1,
          'learn': 1,
          'fight': 1,
          'beat': 1,
          'theres': 1,
          'beer': 1,
          'hitting': 1,
          'rock': 1,
          'bottom': 1,
          'etc': 1,
          'watching': 1,
          'elongated': 1,
          'rehash': 1,
          'notsoglorious': 1,
          'days': 1,
          'nmuch': 1,
          'show': 1,
          '90': 1,
          'minutes': 1,
          'get': 1,
          'bits': 1,
          'nthe': 1,
          'rest': 1,
          'story': 1,
          'dead': 1,
          'space': 1,
          'nneg': 1}),
 Counter({'wild': 8,
          'west': 8,
          'smith': 6,
          'also': 6,
          'film': 6,
          'kline': 5,
          'even': 5,
          'nthe': 5,
          'much': 4,
          'nice': 4,
          'affair': 3,
          'two': 3,
          'loveless': 3,
          'branagh': 3,
          'ntheres': 3,
          'always': 3,
          'little': 3,
          'comes': 3,
          'nits': 3,
          'rather': 3,
          'summer': 2,
          'movies': 2,
          'make': 2,
          'money': 2,
          'nwild': 2,
          'nwill': 2,
          'jim': 2,
          'black': 2,
          'top': 2,
          'scientists': 2,
          'artemus': 2,
          'gordon': 2,
          'missing': 2,
          'pleasing': 2,
          'one': 2,
          'salma': 2,
          'hayek': 2,
          'theres': 2,
          'appears': 2,
          'purely': 2,
          'none': 2,
          'plot': 2,
          'although': 2,
          'doesnt': 2,
          'character': 2,
          'script': 2,
          'humour': 2,
          'could': 2,
          'save': 2,
          'funny': 2,
          'racist': 2,
          'scene': 2,
          'way': 2,
          'thing': 2,
          'makes': 2,
          'unfunny': 2,
          'get': 2,
          'piece': 2,
          'nature': 1,
          'dumb': 1,
          'affairs': 1,
          'usually': 1,
          'made': 1,
          'quick': 1,
          'enjoyment': 1,
          'latest': 1,
          'follows': 1,
          'formula': 1,
          'except': 1,
          'dumber': 1,
          'less': 1,
          'enjoying': 1,
          'plays': 1,
          'sheriff': 1,
          'line': 1,
          'sunglasses': 1,
          'nhe': 1,
          'called': 1,
          'president': 1,
          'grant': 1,
          'go': 1,
          'mission': 1,
          'find': 1,
          'government': 1,
          'disappearing': 1,
          'nwest': 1,
          'paired': 1,
          'scientist': 1,
          'track': 1,
          'legless': 1,
          'mastermind': 1,
          'named': 1,
          'dr': 1,
          'zany': 1,
          'moustache': 1,
          'nbefore': 1,
          'pile': 1,
          'many': 1,
          'negatives': 1,
          'sorry': 1,
          'ill': 1,
          'give': 1,
          'chance': 1,
          'positives': 1,
          'credit': 1,
          'sequence': 1,
          'production': 1,
          'design': 1,
          'bo': 1,
          'welch': 1,
          'eye': 1,
          'special': 1,
          'effects': 1,
          'decent': 1,
          'enough': 1,
          'pleasant': 1,
          'soundtrack': 1,
          'nburied': 1,
          'deep': 1,
          'dross': 1,
          'amusing': 1,
          'jokes': 1,
          'nand': 1,
          'pops': 1,
          'female': 1,
          'interest': 1,
          'see': 1,
          'napart': 1,
          'factors': 1,
          'though': 1,
          'nothing': 1,
          'else': 1,
          'works': 1,
          'nfirstly': 1,
          'chemistry': 1,
          'would': 1,
          'expect': 1,
          'zingers': 1,
          'passing': 1,
          'arise': 1,
          'nboth': 1,
          'plod': 1,
          'standard': 1,
          'knowing': 1,
          'pay': 1,
          'cheque': 1,
          'waiting': 1,
          'end': 1,
          'nnot': 1,
          'kenneth': 1,
          'provides': 1,
          'entertainment': 1,
          'material': 1,
          'present': 1,
          'opportunity': 1,
          'truly': 1,
          'crazy': 1,
          'ntherefore': 1,
          'across': 1,
          'loud': 1,
          'obnoxious': 1,
          'enjoyable': 1,
          'performance': 1,
          'sexy': 1,
          'given': 1,
          'screen': 1,
          'time': 1,
          'embarrassing': 1,
          'nshe': 1,
          'merely': 1,
          'show': 1,
          'body': 1,
          'ogled': 1,
          'nher': 1,
          'changes': 1,
          'whim': 1,
          'fit': 1,
          'mechanics': 1,
          'sense': 1,
          'realism': 1,
          'put': 1,
          'spin': 1,
          'daft': 1,
          'lines': 1,
          'men': 1,
          'display': 1,
          'largely': 1,
          'boils': 1,
          'insults': 1,
          'arent': 1,
          'oneliners': 1,
          'barely': 1,
          'raise': 1,
          'smirk': 1,
          'somewhat': 1,
          'intend': 1,
          'trying': 1,
          'wisecrack': 1,
          'lynching': 1,
          'actually': 1,
          'says': 1,
          'slavery': 1,
          'good': 1,
          'whole': 1,
          'uncomfortably': 1,
          'tragic': 1,
          'mistake': 1,
          'man': 1,
          'case': 1,
          'dress': 1,
          'automatically': 1,
          'isnt': 1,
          'joke': 1,
          'painful': 1,
          'watch': 1,
          'pure': 1,
          'ineptness': 1,
          'problems': 1,
          'njim': 1,
          'caught': 1,
          'kinds': 1,
          'sticky': 1,
          'situations': 1,
          'unsatisfying': 1,
          'rely': 1,
          'luck': 1,
          'audience': 1,
          'skill': 1,
          'nplot': 1,
          'elements': 1,
          'introduced': 1,
          'thrown': 1,
          'away': 1,
          'quickly': 1,
          'main': 1,
          'story': 1,
          '80': 1,
          'foot': 1,
          'mechanical': 1,
          'steam': 1,
          'driven': 1,
          'spider': 1,
          'devised': 1,
          'looks': 1,
          'impressive': 1,
          'particular': 1,
          'reason': 1,
          'built': 1,
          'nwhy': 1,
          'build': 1,
          'great': 1,
          'big': 1,
          'tank': 1,
          'instead': 1,
          'ungainly': 1,
          'fragile': 1,
          'machinery': 1,
          'thats': 1,
          'begging': 1,
          'blown': 1,
          'ndirector': 1,
          'barry': 1,
          'sonnenfeld': 1,
          'breezy': 1,
          'look': 1,
          'camera': 1,
          'tricks': 1,
          'stilted': 1,
          'benefited': 1,
          'sonnenfelds': 1,
          'whacked': 1,
          'style': 1,
          'directing': 1,
          'evident': 1,
          'making': 1,
          'drag': 1,
          'sad': 1,
          '_four_': 1,
          'credited': 1,
          'screenwriters': 1,
          'talented': 1,
          'director': 1,
          'willing': 1,
          'star': 1,
          'cant': 1,
          'work': 1,
          'eventually': 1,
          'collapses': 1,
          'sexist': 1,
          'mildly': 1,
          'weight': 1,
          'nneg': 1}),
 Counter({'get': 3,
          'eighties': 2,
          'film': 2,
          'used': 2,
          'weddings': 2,
          'know': 2,
          'going': 2,
          'doesnt': 2,
          'face': 2,
          'nthe': 2,
          'could': 2,
          'nostalgia': 2,
          'years': 2,
          'thinking': 1,
          'nnostalgia': 1,
          'seventies': 1,
          'bad': 1,
          'enough': 1,
          'really': 1,
          'need': 1,
          'nrobbie': 1,
          'hart': 1,
          'adam': 1,
          'sandler': 1,
          'want': 1,
          'rock': 1,
          'roll': 1,
          'star': 1,
          '1985': 1,
          'hes': 1,
          'singing': 1,
          'good': 1,
          'time': 1,
          'na': 1,
          'romantic': 1,
          'heart': 1,
          'loves': 1,
          'married': 1,
          'highschool': 1,
          'sweetie': 1,
          'nwhen': 1,
          'leaves': 1,
          'waiting': 1,
          'altar': 1,
          'tune': 1,
          'changes': 1,
          'love': 1,
          'stinks': 1,
          'nhe': 1,
          'meets': 1,
          'waitress': 1,
          'julia': 1,
          'drew': 1,
          'barrymore': 1,
          'engaged': 1,
          'junkbonds': 1,
          'salesman': 1,
          'together': 1,
          'nin': 1,
          'fact': 1,
          'everything': 1,
          'happen': 1,
          'movie': 1,
          'nsandler': 1,
          'somewhat': 1,
          'adequate': 1,
          'leading': 1,
          'man': 1,
          'role': 1,
          'spark': 1,
          'nbarrymore': 1,
          'seem': 1,
          'able': 1,
          'convey': 1,
          'anything': 1,
          'pretty': 1,
          'nothing': 1,
          'behind': 1,
          'beauty': 1,
          'attitude': 1,
          'nboth': 1,
          'characters': 1,
          'nbit': 1,
          'parts': 1,
          'steve': 1,
          'buscemi': 1,
          'jon': 1,
          'lovitz': 1,
          'steal': 1,
          'show': 1,
          'shoved': 1,
          'nreferences': 1,
          'deloreans': 1,
          'madonna': 1,
          'dallas': 1,
          'ivana': 1,
          'donald': 1,
          'burt': 1,
          'loni': 1,
          'miami': 1,
          'vice': 1,
          'old': 1,
          'fast': 1,
          'filmmakers': 1,
          'must': 1,
          'realized': 1,
          'wasnt': 1,
          'much': 1,
          'entertainment': 1,
          'story': 1,
          'thought': 1,
          'dazzle': 1,
          'audience': 1,
          'humorous': 1,
          'period': 1,
          'allusions': 1,
          'ntheyre': 1,
          'funny': 1,
          'work': 1,
          'nwith': 1,
          'change': 1,
          'fronts': 1,
          'accelerating': 1,
          'appears': 1,
          'great': 1,
          'appeal': 1,
          'dont': 1,
          'think': 1,
          '14': 1,
          'yearn': 1,
          'past': 1,
          'nmaybe': 1,
          'look': 1,
          'forward': 1,
          'next': 1,
          'year': 1,
          'waxing': 1,
          'nostalgically': 1,
          'el': 1,
          'nino': 1,
          'n': 1,
          'michael': 1,
          'redman': 1,
          'written': 1,
          'column': 1,
          '23': 1,
          'knows': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'anything': 4,
          'even': 4,
          'time': 4,
          'highlander': 4,
          'doesnt': 4,
          'present': 4,
          'film': 4,
          'series': 4,
          'nthe': 4,
          'know': 3,
          'one': 3,
          'fight': 3,
          'little': 2,
          'around': 2,
          'along': 2,
          'comes': 2,
          'think': 2,
          'seeing': 2,
          'original': 2,
          'seem': 2,
          'noh': 2,
          'bad': 2,
          'dudes': 2,
          'nthis': 2,
          'anyone': 2,
          'include': 2,
          'group': 2,
          'moment': 2,
          'theyre': 2,
          'nwho': 2,
          'knows': 2,
          'mixed': 2,
          'every': 2,
          'flashback': 2,
          'scene': 2,
          'director': 2,
          'swordplay': 2,
          'put': 2,
          'lambert': 2,
          'also': 2,
          'could': 2,
          'scenes': 2,
          'nand': 2,
          'man': 2,
          'piece': 2,
          'thought': 1,
          'joblo': 1,
          'getting': 1,
          'soft': 1,
          'corners': 1,
          'rating': 1,
          'lower': 1,
          'standard': 1,
          'sucks': 1,
          'cinematic': 1,
          'atrocity': 1,
          'hes': 1,
          'forced': 1,
          'take': 1,
          'secret': 1,
          'weapon': 1,
          'spray': 1,
          'stench': 1,
          'thick': 1,
          'bravest': 1,
          'moviegoer': 1,
          'would': 1,
          'twice': 1,
          'waste': 1,
          'nyes': 1,
          'despite': 1,
          'third': 1,
          'sequel': 1,
          'successful': 1,
          'latest': 1,
          'going': 1,
          'stinky': 1,
          'let': 1,
          'count': 1,
          'thee': 1,
          'ways': 1,
          'nplot': 1,
          'understood': 1,
          'really': 1,
          'dude': 1,
          'looking': 1,
          'whack': 1,
          'nice': 1,
          'order': 1,
          'gain': 1,
          'power': 1,
          'become': 1,
          'mightiest': 1,
          'immortal': 1,
          'nsomething': 1,
          'lines': 1,
          'ncritique': 1,
          'complete': 1,
          'utter': 1,
          'mess': 1,
          'ndisjointed': 1,
          'incoherent': 1,
          'boring': 1,
          'corny': 1,
          'filled': 1,
          'dialogue': 1,
          'nthats': 1,
          'first': 1,
          'thirty': 1,
          'minutes': 1,
          'nits': 1,
          'confusing': 1,
          'apparently': 1,
          'idiotic': 1,
          'diehard': 1,
          'fan': 1,
          'arrow': 1,
          'explain': 1,
          'njust': 1,
          'goes': 1,
          'inexplicable': 1,
          'situation': 1,
          'another': 1,
          'none': 1,
          'next': 1,
          'italy': 1,
          '1600s': 1,
          'nwhy': 1,
          'nwhat': 1,
          'talking': 1,
          'nno': 1,
          'idea': 1,
          'nflashbacks': 1,
          'spontaneously': 1,
          'cheesy': 1,
          'sequences': 1,
          'remember': 1,
          'went': 1,
          'nhullo': 1,
          'nconfused': 1,
          'yet': 1,
          'ni': 1,
          'basically': 1,
          'stopped': 1,
          'giving': 1,
          'crap': 1,
          'realized': 1,
          'neither': 1,
          'writer': 1,
          'interested': 1,
          'presenting': 1,
          'kind': 1,
          'semblance': 1,
          'story': 1,
          'nrandom': 1,
          'mad': 1,
          'maxlike': 1,
          'showing': 1,
          'motorcycles': 1,
          '1800s': 1,
          'honest': 1,
          'nseriously': 1,
          'cares': 1,
          'shot': 1,
          'head': 1,
          'misery': 1,
          'long': 1,
          'ago': 1,
          'sadly': 1,
          'someone': 1,
          'studio': 1,
          'decided': 1,
          'still': 1,
          'life': 1,
          'left': 1,
          'nplease': 1,
          'please': 1,
          'love': 1,
          'god': 1,
          'holy': 1,
          'world': 1,
          'moviemaking': 1,
          'mostly': 1,
          'respect': 1,
          'loved': 1,
          'bed': 1,
          'end': 1,
          'neven': 1,
          'christopher': 1,
          'knew': 1,
          'enough': 1,
          'play': 1,
          'second': 1,
          'fiddle': 1,
          'adrian': 1,
          'paul': 1,
          'tries': 1,
          'best': 1,
          'muddled': 1,
          'material': 1,
          'come': 1,
          'plenty': 1,
          'slomo': 1,
          'action': 1,
          'fastmotion': 1,
          'lots': 1,
          'smoke': 1,
          'everywhere': 1,
          'spectacular': 1,
          'nnope': 1,
          'done': 1,
          'without': 1,
          'zooming': 1,
          'face': 1,
          'closeups': 1,
          'yipes': 1,
          'aging': 1,
          'gracefully': 1,
          'boy': 1,
          'havent': 1,
          'gotten': 1,
          'greatest': 1,
          'overacting': 1,
          'ive': 1,
          'seen': 1,
          'years': 1,
          'plays': 1,
          'kell': 1,
          'bruce': 1,
          'payne': 1,
          'get': 1,
          'ham': 1,
          'trophy': 1,
          'literally': 1,
          'chewing': 1,
          'scenery': 1,
          'gets': 1,
          'near': 1,
          'noveracting': 1,
          'hobby': 1,
          'guy': 1,
          'na': 1,
          'living': 1,
          'nhes': 1,
          'funny': 1,
          'purposely': 1,
          'though': 1,
          'nall': 1,
          'stinks': 1,
          'nnuff': 1,
          'said': 1,
          'nneg': 1}),
 Counter({'bats': 18,
          'nthe': 9,
          'movie': 7,
          'could': 5,
          'like': 4,
          'film': 4,
          'fun': 3,
          'big': 3,
          'scientist': 3,
          'dr': 3,
          'horror': 2,
          'something': 2,
          'style': 2,
          'nsomething': 2,
          'supporting': 2,
          'mainly': 2,
          'premise': 2,
          'amusing': 2,
          'nunfortunately': 2,
          'terribly': 2,
          'audience': 2,
          'ni': 2,
          'lot': 2,
          'people': 2,
          'ugly': 2,
          'nthey': 2,
          'virus': 2,
          'smart': 2,
          'bunch': 2,
          'texas': 2,
          'sheriff': 2,
          'make': 2,
          'nbut': 2,
          'screen': 2,
          'poorly': 2,
          'cheesy': 2,
          'attack': 2,
          'every': 2,
          'casper': 2,
          'flying': 2,
          'became': 2,
          'constructed': 2,
          'nin': 2,
          'one': 2,
          'comic': 2,
          'gunton': 2,
          'entire': 2,
          'swarm': 2,
          'even': 2,
          'way': 2,
          'insulting': 1,
          'slap': 1,
          'across': 1,
          'face': 1,
          'dedicated': 1,
          'fan': 1,
          'nto': 1,
          'pull': 1,
          'need': 1,
          'sense': 1,
          'wit': 1,
          'heavy': 1,
          'dosage': 1,
          'humor': 1,
          'back': 1,
          'process': 1,
          'fright': 1,
          'factor': 1,
          'ever': 1,
          'declines': 1,
          'underground': 1,
          'worm': 1,
          'thriller': 1,
          'tremors': 1,
          'perfect': 1,
          'mixture': 1,
          'elements': 1,
          'return': 1,
          'tremendous': 1,
          'nwith': 1,
          'notable': 1,
          'exception': 1,
          'wisecracking': 1,
          'player': 1,
          'plays': 1,
          'straightarrow': 1,
          'njudging': 1,
          'ridiculous': 1,
          'exactly': 1,
          'wise': 1,
          'move': 1,
          'attempts': 1,
          'capture': 1,
          'essence': 1,
          'alfred': 1,
          'hitchcocks': 1,
          'birds': 1,
          'fails': 1,
          'miserably': 1,
          'ndone': 1,
          'right': 1,
          'adequately': 1,
          'halloween': 1,
          'cinema': 1,
          'prime': 1,
          'example': 1,
          'formula': 1,
          'done': 1,
          'wrong': 1,
          'thing': 1,
          'festering': 1,
          'pile': 1,
          'guano': 1,
          'intelligible': 1,
          'filmmakers': 1,
          'anticipate': 1,
          'core': 1,
          'recite': 1,
          'following': 1,
          'paragraph': 1,
          'manner': 1,
          'reach': 1,
          'individuals': 1,
          'aimed': 1,
          'toward': 1,
          'nthose': 1,
          'guys': 1,
          'hollywood': 1,
          'made': 1,
          'nthese': 1,
          'nice': 1,
          'eat': 1,
          'nboy': 1,
          'infected': 1,
          'bogus': 1,
          'makes': 1,
          'superduper': 1,
          'ntheyve': 1,
          'got': 1,
          'claws': 1,
          'red': 1,
          'eyes': 1,
          'friendly': 1,
          'na': 1,
          'whole': 1,
          'get': 1,
          'killed': 1,
          'guy': 1,
          'lady': 1,
          'brought': 1,
          'kill': 1,
          'guns': 1,
          'cool': 1,
          'things': 1,
          'fight': 1,
          'pretty': 1,
          'sorta': 1,
          'hard': 1,
          'swoop': 1,
          'shoot': 1,
          'go': 1,
          'away': 1,
          'good': 1,
          'probably': 1,
          'violent': 1,
          'preschoolers': 1,
          'directed': 1,
          'louis': 1,
          'morneau': 1,
          'ventured': 1,
          'straight': 1,
          'video': 1,
          'stores': 1,
          'non': 1,
          'small': 1,
          'perhaps': 1,
          'derived': 1,
          'lower': 1,
          'expectations': 1,
          'sitting': 1,
          'crapper': 1,
          'almost': 1,
          'awkward': 1,
          'although': 1,
          'moments': 1,
          'becomes': 1,
          'guilty': 1,
          'pleasure': 1,
          'written': 1,
          'acted': 1,
          'executed': 1,
          'glaring': 1,
          'ineptitude': 1,
          'neven': 1,
          'sequences': 1,
          'rushed': 1,
          'jittery': 1,
          'properly': 1,
          'enjoyed': 1,
          'story': 1,
          'emmett': 1,
          'kimsey': 1,
          'lou': 1,
          'diamond': 1,
          'phillips': 1,
          'embodies': 1,
          'pathetic': 1,
          'stereotype': 1,
          'smalltown': 1,
          'authority': 1,
          'figure': 1,
          'usually': 1,
          'portrays': 1,
          'chomps': 1,
          'cigar': 1,
          'struts': 1,
          'contentedly': 1,
          'boots': 1,
          'etc': 1,
          'sheila': 1,
          'dina': 1,
          'meyer': 1,
          'specializes': 1,
          'mammals': 1,
          'classified': 1,
          'best': 1,
          'field': 1,
          'nmeyer': 1,
          'uses': 1,
          'technical': 1,
          'terms': 1,
          'designed': 1,
          'seem': 1,
          'intellectually': 1,
          'capable': 1,
          'everything': 1,
          'recycled': 1,
          'beyond': 1,
          'recognition': 1,
          'nher': 1,
          'memories': 1,
          'hooked': 1,
          'topic': 1,
          'sounds': 1,
          'suspiciously': 1,
          'oceanographic': 1,
          'student': 1,
          'matt': 1,
          'hoopers': 1,
          'tale': 1,
          'infatuated': 1,
          'sharks': 1,
          'jaws': 1,
          'neverything': 1,
          'revolving': 1,
          'around': 1,
          'tired': 1,
          'drivel': 1,
          'desperately': 1,
          'requires': 1,
          'directorial': 1,
          'acting': 1,
          'capabilities': 1,
          'spruce': 1,
          'cast': 1,
          'straw': 1,
          'voices': 1,
          'dubbed': 1,
          'later': 1,
          'fact': 1,
          'may': 1,
          'worked': 1,
          'better': 1,
          'end': 1,
          'ntake': 1,
          'glance': 1,
          'caspers': 1,
          'batloathing': 1,
          'sidekick': 1,
          'jimmy': 1,
          'leon': 1,
          'youll': 1,
          'immediate': 1,
          'deja': 1,
          'vu': 1,
          'hes': 1,
          'exact': 1,
          'humorous': 1,
          'buddy': 1,
          'caricature': 1,
          'specifically': 1,
          'timed': 1,
          'relief': 1,
          'none': 1,
          'interludes': 1,
          'funny': 1,
          'role': 1,
          'deranged': 1,
          'mad': 1,
          'mccabe': 1,
          'reliable': 1,
          'bob': 1,
          'gets': 1,
          'cornered': 1,
          'hideously': 1,
          'idiotic': 1,
          'character': 1,
          'nmccabe': 1,
          'accidentally': 1,
          'released': 1,
          'two': 1,
          'experimental': 1,
          'test': 1,
          'subjects': 1,
          'spread': 1,
          'town': 1,
          'gallup': 1,
          'enormous': 1,
          'creatures': 1,
          'appears': 1,
          'inconspicuously': 1,
          'contemplating': 1,
          'else': 1,
          'damn': 1,
          'going': 1,
          'want': 1,
          'money': 1,
          'must': 1,
          'say': 1,
          'ntheres': 1,
          'occasional': 1,
          'moment': 1,
          'look': 1,
          'moderately': 1,
          'convincing': 1,
          'represented': 1,
          'digital': 1,
          'imagery': 1,
          'nonly': 1,
          'bits': 1,
          'bloody': 1,
          'action': 1,
          'hint': 1,
          'campy': 1,
          'absurdly': 1,
          'stupid': 1,
          'climax': 1,
          'late': 1,
          'game': 1,
          'decent': 1,
          'recovery': 1,
          'ncharacters': 1,
          'experiment': 1,
          'slaughtering': 1,
          'gunfire': 1,
          'nlets': 1,
          'explore': 1,
          'logic': 1,
          'really': 1,
          'efficient': 1,
          'decrease': 1,
          'bat': 1,
          'population': 1,
          'nyou': 1,
          'empty': 1,
          'clip': 1,
          'winged': 1,
          'serpents': 1,
          'wound': 1,
          '18': 1,
          '000': 1,
          'nthis': 1,
          'kind': 1,
          'behavior': 1,
          'represents': 1,
          'regular': 1,
          'level': 1,
          'intelligence': 1,
          'behind': 1,
          'nneg': 1}),
 Counter({'film': 24,
          'characters': 10,
          'character': 9,
          'even': 9,
          'nthe': 7,
          'party': 7,
          'high': 6,
          'school': 6,
          'denise': 5,
          'everything': 5,
          'nwe': 5,
          'actually': 5,
          'bunch': 5,
          'stereotypes': 5,
          'follow': 5,
          'though': 5,
          'many': 4,
          'us': 4,
          'one': 4,
          'main': 4,
          'bit': 4,
          'dont': 4,
          'thing': 4,
          'really': 4,
          'like': 4,
          'work': 4,
          'cant': 3,
          'films': 3,
          'point': 3,
          'totally': 3,
          'almost': 3,
          'going': 3,
          'wigger': 3,
          'etc': 3,
          'take': 3,
          'let': 3,
          'big': 3,
          'shes': 3,
          'give': 3,
          'two': 3,
          'things': 3,
          'feel': 3,
          'least': 3,
          'try': 3,
          'interesting': 2,
          'part': 2,
          'hardly': 2,
          'wait': 2,
          'easily': 2,
          'lauren': 2,
          'ambrose': 2,
          'goes': 2,
          'moment': 2,
          'nicely': 2,
          'basically': 2,
          'sit': 2,
          'go': 2,
          'first': 2,
          'ni': 2,
          'would': 2,
          'much': 2,
          'queen': 2,
          'nerd': 2,
          'dominions': 2,
          'alienated': 2,
          'writer': 2,
          'superficial': 2,
          'lame': 2,
          'likable': 2,
          'several': 2,
          'admirable': 2,
          'nhowever': 2,
          'perhaps': 2,
          'tell': 2,
          'nand': 2,
          'american': 2,
          'grafitti': 2,
          'dazed': 2,
          'confused': 2,
          'little': 2,
          'keg': 2,
          'aimless': 2,
          'driving': 2,
          'around': 2,
          'preston': 2,
          'whos': 2,
          'amanda': 2,
          'love': 2,
          'entirety': 2,
          'mike': 2,
          'note': 2,
          'hes': 2,
          'vonnegut': 2,
          'okay': 2,
          'plot': 2,
          'finally': 2,
          'gets': 2,
          'kenny': 2,
          'seth': 2,
          'green': 2,
          'get': 2,
          'ultimately': 2,
          'entertaining': 2,
          'satirize': 2,
          'couple': 2,
          'capture': 2,
          'time': 2,
          'doesnt': 2,
          'nshes': 2,
          'realized': 2,
          'well': 2,
          'movies': 2,
          'happens': 1,
          'human': 1,
          'relate': 1,
          'nthat': 1,
          'sole': 1,
          'sarcastic': 1,
          'member': 1,
          'mocks': 1,
          'sits': 1,
          'couch': 1,
          'looks': 1,
          'bored': 1,
          'wisely': 1,
          'holds': 1,
          'showing': 1,
          'alienation': 1,
          'midst': 1,
          'large': 1,
          'ntoo': 1,
          'nfor': 1,
          'members': 1,
          'audience': 1,
          'read': 1,
          'mirror': 1,
          'whats': 1,
          'watching': 1,
          'wondering': 1,
          'weve': 1,
          'bothered': 1,
          'see': 1,
          'long': 1,
          'probably': 1,
          'never': 1,
          'felt': 1,
          'desire': 1,
          'place': 1,
          'highly': 1,
          'recommend': 1,
          'satirized': 1,
          'nafter': 1,
          'filled': 1,
          'pathetic': 1,
          'went': 1,
          'neveryones': 1,
          'jock': 1,
          'homecoming': 1,
          'trekkies': 1,
          'xphiles': 1,
          'wannabe': 1,
          'spirit': 1,
          'girl': 1,
          'pothead': 1,
          'weirdly': 1,
          'enough': 1,
          'shows': 1,
          'losers': 1,
          'nexcept': 1,
          'rolls': 1,
          'eyes': 1,
          'becomes': 1,
          'speaks': 1,
          'yearbook': 1,
          'entry': 1,
          'something': 1,
          'done': 1,
          'quotes': 1,
          'oscar': 1,
          'wilde': 1,
          'definite': 1,
          'pointers': 1,
          'nunfortunately': 1,
          'writers': 1,
          'directors': 1,
          'major': 1,
          'misteps': 1,
          'way': 1,
          'making': 1,
          'said': 1,
          'portrays': 1,
          'ignorant': 1,
          'instead': 1,
          'sticking': 1,
          'lie': 1,
          'make': 1,
          'heroes': 1,
          'moronic': 1,
          'shread': 1,
          'humanity': 1,
          'realism': 1,
          'tries': 1,
          'boring': 1,
          'overly': 1,
          'melodramatic': 1,
          'tales': 1,
          'cared': 1,
          'andor': 1,
          'identified': 1,
          'certainly': 1,
          'want': 1,
          'revisit': 1,
          'state': 1,
          'nheres': 1,
          'quick': 1,
          'lowdown': 1,
          'graduation': 1,
          'seniors': 1,
          'last': 1,
          'night': 1,
          'otherwise': 1,
          'known': 1,
          'lesser': 1,
          'extent': 1,
          'cliche': 1,
          'formal': 1,
          'followed': 1,
          'drove': 1,
          'aimlessly': 1,
          'latter': 1,
          'featured': 1,
          'outdoor': 1,
          'n': 1,
          'opts': 1,
          'indoor': 1,
          'albeit': 1,
          'imwhiningbecauseicantgetagirliwant': 1,
          'brand': 1,
          'people': 1,
          'mostly': 1,
          'trail': 1,
          'ethan': 1,
          'embry': 1,
          'pining': 1,
          'homcoming': 1,
          'overrated': 1,
          'jennifer': 1,
          'hewitt': 1,
          'thinks': 1,
          'shared': 1,
          'freshman': 1,
          'year': 1,
          'freaking': 1,
          'pop': 1,
          'tart': 1,
          'nnow': 1,
          'broken': 1,
          'football': 1,
          'player': 1,
          'boyfriend': 1,
          'peter': 1,
          'facinelli': 1,
          'decides': 1,
          'written': 1,
          'declaring': 1,
          'hopes': 1,
          'hell': 1,
          'build': 1,
          'guts': 1,
          'nthough': 1,
          'leaving': 1,
          'multiweek': 1,
          'intensive': 1,
          'writing': 1,
          'program': 1,
          'hosted': 1,
          'none': 1,
          'kurt': 1,
          'ingenius': 1,
          'icky': 1,
          'noxema': 1,
          'spokesperson': 1,
          'nsince': 1,
          'incredibly': 1,
          'track': 1,
          'record': 1,
          'wouldnt': 1,
          'able': 1,
          'carry': 1,
          'commercial': 1,
          'alone': 1,
          'feature': 1,
          'william': 1,
          'charlie': 1,
          'korsmo': 1,
          'surfacing': 1,
          'dick': 1,
          'tracy': 1,
          'come': 1,
          'ridiculous': 1,
          'plan': 1,
          'publically': 1,
          'sabotage': 1,
          'humiliated': 1,
          'years': 1,
          'caught': 1,
          'drinking': 1,
          'decided': 1,
          'laid': 1,
          'uh': 1,
          'huh': 1,
          'exceptional': 1,
          'unfortunately': 1,
          'stuck': 1,
          'bathroom': 1,
          'ask': 1,
          'allowed': 1,
          'laws': 1,
          'cliches': 1,
          'b': 1,
          'nary': 1,
          'characterization': 1,
          'involved': 1,
          'awhile': 1,
          'nugh': 1,
          'comparison': 1,
          'getting': 1,
          'another': 1,
          'embraced': 1,
          'made': 1,
          'humans': 1,
          'schoolers': 1,
          'mention': 1,
          'extremely': 1,
          'john': 1,
          'hughes': 1,
          '80s': 1,
          'notably': 1,
          'sixteen': 1,
          'candles': 1,
          'difference': 1,
          'managed': 1,
          'embrace': 1,
          'equally': 1,
          'fashion': 1,
          'nthis': 1,
          'forgets': 1,
          'tells': 1,
          'story': 1,
          'uninteresting': 1,
          'nthen': 1,
          'says': 1,
          'seriously': 1,
          'fun': 1,
          'good': 1,
          'nbut': 1,
          'liked': 1,
          'direction': 1,
          'except': 1,
          'toooverthetop': 1,
          'features': 1,
          'waytooglossy': 1,
          'jump': 1,
          'cuts': 1,
          'oxymoron': 1,
          'obscurities': 1,
          'ngenerally': 1,
          'elfont': 1,
          'kaplan': 1,
          'graceful': 1,
          'camera': 1,
          'movement': 1,
          'manage': 1,
          'altmanesque': 1,
          'hokey': 1,
          'decade': 1,
          'played': 1,
          'young': 1,
          'woody': 1,
          'allen': 1,
          'radio': 1,
          'days': 1,
          'desintegration': 1,
          'believable': 1,
          'course': 1,
          'wonderful': 1,
          'could': 1,
          'used': 1,
          'changed': 1,
          'thought': 1,
          'far': 1,
          'witty': 1,
          'half': 1,
          'belong': 1,
          'whenever': 1,
          'appears': 1,
          'automatically': 1,
          'gives': 1,
          'delightfully': 1,
          'satirical': 1,
          'tone': 1,
          'cynic': 1,
          'intellectual': 1,
          'provides': 1,
          'entertainment': 1,
          'damages': 1,
          'already': 1,
          'damaged': 1,
          'nshe': 1,
          'may': 1,
          'ruin': 1,
          'screen': 1,
          'think': 1,
          'entertained': 1,
          'na': 1,
          'mikes': 1,
          'suffers': 1,
          'epiphany': 1,
          'throughout': 1,
          'end': 1,
          'acts': 1,
          'forgotten': 1,
          'sacrificial': 1,
          'lamb': 1,
          'general': 1,
          'bitchy': 1,
          'inability': 1,
          'shack': 1,
          'break': 1,
          'jenna': 1,
          'eflmans': 1,
          'uncredited': 1,
          'cameo': 1,
          'angel': 1,
          'didnt': 1,
          'nice': 1,
          'nbasically': 1,
          'worst': 1,
          'real': 1,
          'reason': 1,
          'im': 1,
          'giving': 1,
          'low': 1,
          'rating': 1,
          'refuses': 1,
          'fully': 1,
          'insists': 1,
          'complete': 1,
          'inane': 1,
          'unlike': 1,
          'anything': 1,
          'wed': 1,
          'arent': 1,
          'motions': 1,
          'worn': 1,
          'subplots': 1,
          'acid': 1,
          'test': 1,
          'portraying': 1,
          'answer': 1,
          'nnice': 1,
          'nneg': 1}),
 Counter({'rising': 7,
          'simon': 7,
          'mercury': 6,
          'nthe': 6,
          'man': 5,
          'like': 5,
          'may': 4,
          'government': 4,
          'autistic': 4,
          'even': 4,
          'action': 4,
          'good': 4,
          'willis': 4,
          'miko': 3,
          'hughes': 3,
          'hard': 3,
          'elements': 3,
          'agent': 3,
          'bruce': 3,
          'art': 3,
          'evil': 3,
          'hit': 3,
          'looks': 3,
          'exfootball': 3,
          'player': 3,
          'one': 3,
          'film': 2,
          'called': 2,
          'doesnt': 2,
          'routine': 2,
          'thriller': 2,
          'buddy': 2,
          'story': 2,
          'make': 2,
          'young': 2,
          'performance': 2,
          'particular': 2,
          'plot': 2,
          'see': 2,
          'nmercury': 2,
          'thrillers': 2,
          'exceptionally': 2,
          'movie': 2,
          'possible': 2,
          'hero': 2,
          'well': 2,
          'outing': 2,
          'tension': 2,
          'tough': 2,
          'fbi': 2,
          'heart': 2,
          'gold': 2,
          'time': 2,
          'parents': 2,
          'everyone': 2,
          'best': 2,
          'course': 2,
          'baldwin': 2,
          'nfor': 2,
          'real': 2,
          'isnt': 2,
          'star': 2,
          'title': 1,
          'describe': 1,
          'trajectory': 1,
          'taken': 1,
          'motion': 1,
          'picture': 1,
          'combines': 1,
          'coverups': 1,
          'cloying': 1,
          'poorlymotivated': 1,
          'hook': 1,
          'supposed': 1,
          'unique': 1,
          'protagonist': 1,
          'nhowever': 1,
          'aside': 1,
          'giving': 1,
          'actor': 1,
          'chance': 1,
          'win': 1,
          'raves': 1,
          'aspect': 1,
          'comes': 1,
          'across': 1,
          'nothing': 1,
          'convenient': 1,
          'device': 1,
          'nthose': 1,
          'expecting': 1,
          'semithorough': 1,
          'exploration': 1,
          'condition': 1,
          'disappointed': 1,
          'treats': 1,
          'autism': 1,
          'degree': 1,
          'efficiency': 1,
          'many': 1,
          'accord': 1,
          'alcoholism': 1,
          'script': 1,
          'tiresome': 1,
          'toswallow': 1,
          'ni': 1,
          'dont': 1,
          'know': 1,
          'whether': 1,
          'problem': 1,
          'original': 1,
          'book': 1,
          'simple': 1,
          'screenplay': 1,
          'adaptation': 1,
          'easily': 1,
          'exceeds': 1,
          'intangible': 1,
          'threshold': 1,
          'beyond': 1,
          'suspension': 1,
          'disbelief': 1,
          'longer': 1,
          'nonce': 1,
          'certain': 1,
          'standby': 1,
          'highlevel': 1,
          'conspiracy': 1,
          'maverick': 1,
          'law': 1,
          'enforcement': 1,
          'recycled': 1,
          'effect': 1,
          'nwhile': 1,
          'play': 1,
          'anyone': 1,
          'hollywood': 1,
          'leaves': 1,
          'marooned': 1,
          'situations': 1,
          'characterized': 1,
          'little': 1,
          'much': 1,
          'nonsense': 1,
          'begins': 1,
          'formulaic': 1,
          'sequence': 1,
          'jeffries': 1,
          'confronted': 1,
          'failure': 1,
          'nunable': 1,
          'resolve': 1,
          'hostage': 1,
          'crisis': 1,
          'forced': 1,
          'observe': 1,
          'two': 1,
          'teenagers': 1,
          'shot': 1,
          'death': 1,
          'event': 1,
          'weighs': 1,
          'heavily': 1,
          'conscience': 1,
          'heavyhandedly': 1,
          'establishes': 1,
          'motivation': 1,
          'protecting': 1,
          '9year': 1,
          'old': 1,
          'lynch': 1,
          'discovers': 1,
          'child': 1,
          'hiding': 1,
          'closet': 1,
          'gunned': 1,
          'nsoon': 1,
          'run': 1,
          'seemingly': 1,
          'fleeing': 1,
          'lives': 1,
          'bonding': 1,
          'always': 1,
          'step': 1,
          'behind': 1,
          'nalong': 1,
          'way': 1,
          'helped': 1,
          'friend': 1,
          'defies': 1,
          'orders': 1,
          'help': 1,
          'chi': 1,
          'mcbride': 1,
          'supporting': 1,
          'female': 1,
          'become': 1,
          'love': 1,
          'interest': 1,
          'kim': 1,
          'dickens': 1,
          'nwhy': 1,
          'danger': 1,
          'turned': 1,
          'swiss': 1,
          'cheese': 1,
          'napparently': 1,
          'spent': 1,
          'millions': 1,
          'dollars': 1,
          'developing': 1,
          'ultrasecret': 1,
          'code': 1,
          'nto': 1,
          'sure': 1,
          'cant': 1,
          'cracked': 1,
          'intuitive': 1,
          'thing': 1,
          'place': 1,
          'sample': 1,
          'nerds': 1,
          'puzzle': 1,
          'magazine': 1,
          'nof': 1,
          'solve': 1,
          'except': 1,
          'nwhen': 1,
          'calls': 1,
          'phone': 1,
          'number': 1,
          'listed': 1,
          'solution': 1,
          'gets': 1,
          'nsa': 1,
          'nas': 1,
          'result': 1,
          'coldhearted': 1,
          'sneering': 1,
          'alec': 1,
          'decides': 1,
          'eliminated': 1,
          'country': 1,
          'nbut': 1,
          'hasnt': 1,
          'counted': 1,
          'though': 1,
          'audience': 1,
          'nits': 1,
          'get': 1,
          'worked': 1,
          'anything': 1,
          'quite': 1,
          'things': 1,
          'rather': 1,
          'poorly': 1,
          'desperate': 1,
          'find': 1,
          'manages': 1,
          'manufacture': 1,
          'timetotime': 1,
          'exciting': 1,
          'scenes': 1,
          'crouched': 1,
          'avoiding': 1,
          'passing': 1,
          'trains': 1,
          'arent': 1,
          'pulsepounding': 1,
          'climactic': 1,
          'struggle': 1,
          'hohum': 1,
          'affair': 1,
          'leads': 1,
          'finale': 1,
          'painful': 1,
          'obviousness': 1,
          'noverall': 1,
          'director': 1,
          'harold': 1,
          'becker': 1,
          'constantly': 1,
          'struggling': 1,
          'failing': 1,
          'generate': 1,
          'moment': 1,
          'derivative': 1,
          'obligatory': 1,
          'nbruce': 1,
          'seems': 1,
          'fading': 1,
          'nthis': 1,
          'fourth': 1,
          'straight': 1,
          'lackluster': 1,
          'following': 1,
          'last': 1,
          'standing': 1,
          'fifth': 1,
          'element': 1,
          'jackal': 1,
          'nwillis': 1,
          'terrible': 1,
          'kind': 1,
          'role': 1,
          'sleepwalk': 1,
          'often': 1,
          'nalec': 1,
          'combining': 1,
          'characters': 1,
          'glengarry': 1,
          'glenn': 1,
          'ross': 1,
          'malice': 1,
          'scenery': 1,
          'chewing': 1,
          'surprisingly': 1,
          'lacking': 1,
          'menace': 1,
          'films': 1,
          'heather': 1,
          'langenkamps': 1,
          'son': 1,
          'wes': 1,
          'cravens': 1,
          'new': 1,
          'nightmare': 1,
          'job': 1,
          'dustin': 1,
          'hoffman': 1,
          'playing': 1,
          'individual': 1,
          '50': 1,
          'years': 1,
          'younger': 1,
          'joins': 1,
          'likes': 1,
          'rain': 1,
          'replacement': 1,
          'killers': 1,
          'u': 1,
          'marshals': 1,
          'heap': 1,
          'pallid': 1,
          '1998': 1,
          'adventure': 1,
          'theater': 1,
          'year': 1,
          'nhopefully': 1,
          'advent': 1,
          'summer': 1,
          'change': 1,
          'nuntil': 1,
          'choices': 1,
          'video': 1,
          'nand': 1,
          'youre': 1,
          'determined': 1,
          'check': 1,
          'morning': 1,
          'sky': 1,
          'early': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'days': 5,
          '28': 5,
          'life': 4,
          'alcohol': 3,
          'nfor': 3,
          'big': 3,
          'thing': 3,
          'important': 3,
          'place': 3,
          'like': 3,
          'actually': 3,
          'watch': 3,
          'drugs': 2,
          'seen': 2,
          'young': 2,
          'problems': 2,
          'one': 2,
          'stories': 2,
          'sandra': 2,
          'bullock': 2,
          'woman': 2,
          'party': 2,
          'nthis': 2,
          'west': 2,
          'elizabeth': 2,
          'perkins': 2,
          'stay': 2,
          'rehab': 2,
          'must': 2,
          'realize': 2,
          'nthe': 2,
          'nit': 2,
          'na': 2,
          'girl': 2,
          'interrupted': 2,
          'great': 2,
          'betty': 2,
          'thomas': 2,
          'many': 2,
          'characters': 2,
          'issues': 2,
          'nand': 2,
          'steve': 2,
          'nin': 2,
          'lost': 2,
          'aspect': 2,
          'youre': 2,
          'bad': 1,
          'nnot': 1,
          'good': 1,
          'ngot': 1,
          'njust': 1,
          'though': 1,
          'youve': 1,
          'enough': 1,
          'brave': 1,
          'women': 1,
          'dealing': 1,
          'personal': 1,
          'screen': 1,
          'insanity': 1,
          'alcoholism': 1,
          'hollywood': 1,
          'releases': 1,
          'yet': 1,
          'another': 1,
          'deep': 1,
          'emotional': 1,
          'finding': 1,
          'n28': 1,
          'practically': 1,
          'visualization': 1,
          'usual': 1,
          'meaningful': 1,
          'true': 1,
          'people': 1,
          'proudly': 1,
          'retelling': 1,
          'aameetings': 1,
          'ngwennie': 1,
          'drowned': 1,
          'beginning': 1,
          'end': 1,
          'behavior': 1,
          'course': 1,
          'estranged': 1,
          'sister': 1,
          'nher': 1,
          'existence': 1,
          'filled': 1,
          'endless': 1,
          'parties': 1,
          'comic': 1,
          'episodes': 1,
          'nsuch': 1,
          'got': 1,
          'drunk': 1,
          'boyfriend': 1,
          'jasper': 1,
          'dominic': 1,
          'borrowed': 1,
          'sisters': 1,
          'wedding': 1,
          'limo': 1,
          'crashed': 1,
          'someones': 1,
          'house': 1,
          'time': 1,
          'pay': 1,
          'day': 1,
          'courtordered': 1,
          'nhere': 1,
          'save': 1,
          'redemption': 1,
          'willpower': 1,
          'commitment': 1,
          'nmost': 1,
          'direction': 1,
          'understand': 1,
          'feels': 1,
          'program': 1,
          'whining': 1,
          'moaning': 1,
          'things': 1,
          'said': 1,
          'written': 1,
          'million': 1,
          'times': 1,
          'classic': 1,
          'cautionary': 1,
          'tale': 1,
          'nan': 1,
          'echo': 1,
          'fat': 1,
          'expensive': 1,
          'clich': 1,
          'shadow': 1,
          'last': 1,
          'years': 1,
          'likewise': 1,
          'followed': 1,
          'footsteps': 1,
          'masterpieces': 1,
          'cuckoos': 1,
          'nest': 1,
          'trainspotting': 1,
          'ndirector': 1,
          'stuffed': 1,
          'failures': 1,
          'errors': 1,
          'impossible': 1,
          'sum': 1,
          'review': 1,
          'paranoid': 1,
          'reason': 1,
          'decided': 1,
          'make': 1,
          'dramacomedy': 1,
          'njokes': 1,
          'funny': 1,
          'almost': 1,
          'deliberately': 1,
          'delude': 1,
          'really': 1,
          'complex': 1,
          'alienation': 1,
          'despair': 1,
          'terror': 1,
          'confusion': 1,
          'loneliness': 1,
          'awesome': 1,
          'power': 1,
          'strength': 1,
          'character': 1,
          'takes': 1,
          'overcome': 1,
          'become': 1,
          'clean': 1,
          'nisnt': 1,
          'filmmakers': 1,
          'wanted': 1,
          'show': 1,
          'first': 1,
          'neven': 1,
          'transition': 1,
          'process': 1,
          'seems': 1,
          'walk': 1,
          'park': 1,
          'idea': 1,
          'hell': 1,
          'cozy': 1,
          'homey': 1,
          'happy': 1,
          'alcoholics': 1,
          'cheerful': 1,
          'drug': 1,
          'addicts': 1,
          'allowed': 1,
          'smoke': 1,
          'drink': 1,
          'tv': 1,
          '11': 1,
          'simply': 1,
          'light': 1,
          'simplified': 1,
          'unnecessary': 1,
          'sweet': 1,
          'taken': 1,
          'seriously': 1,
          'nbut': 1,
          'worst': 1,
          'thinks': 1,
          'saying': 1,
          'something': 1,
          'significance': 1,
          'nthat': 1,
          'tries': 1,
          'educate': 1,
          'audience': 1,
          'extremely': 1,
          'predictable': 1,
          'primitive': 1,
          'story': 1,
          'n': 1,
          'need': 1,
          'say': 1,
          'says': 1,
          'dr': 1,
          'cornell': 1,
          'buscemi': 1,
          'revelation': 1,
          'century': 1,
          'thats': 1,
          'simple': 1,
          'fact': 1,
          'would': 1,
          'rather': 1,
          'space': 1,
          'return': 1,
          'nas': 1,
          'acting': 1,
          'acceptable': 1,
          'hardly': 1,
          'anything': 1,
          'else': 1,
          'opportunity': 1,
          'demonstrate': 1,
          'capable': 1,
          'speed': 1,
          'nshe': 1,
          'handles': 1,
          'part': 1,
          'surprising': 1,
          'professionalism': 1,
          'ease': 1,
          'certainly': 1,
          'saves': 1,
          'complete': 1,
          'flop': 1,
          'ndominic': 1,
          'shines': 1,
          'source': 1,
          'gwenies': 1,
          'devilish': 1,
          'temptations': 1,
          'buscemis': 1,
          'talents': 1,
          'wasted': 1,
          'unnoticeable': 1,
          'shallow': 1,
          'nalthough': 1,
          'intellectually': 1,
          'greater': 1,
          'achievement': 1,
          'superior': 1,
          'visual': 1,
          'nthere': 1,
          'nice': 1,
          'flash': 1,
          'back': 1,
          'sequences': 1,
          'occasionally': 1,
          'impressive': 1,
          'pacing': 1,
          'overall': 1,
          'technical': 1,
          'ground': 1,
          'floor': 1,
          'weve': 1,
          'lot': 1,
          'better': 1,
          'nclean': 1,
          'sober': 1,
          'laugh': 1,
          'man': 1,
          'loves': 1,
          'leaving': 1,
          'las': 1,
          'vegas': 1,
          'stronger': 1,
          'films': 1,
          'made': 1,
          'nso': 1,
          'whats': 1,
          'point': 1,
          'words': 1,
          'doesnt': 1,
          'contribute': 1,
          'moviemaking': 1,
          'business': 1,
          'level': 1,
          'nif': 1,
          'caught': 1,
          'snowstorm': 1,
          'bolts': 1,
          'lightning': 1,
          'fall': 1,
          'sky': 1,
          'standing': 1,
          'front': 1,
          'movie': 1,
          'theatre': 1,
          'might': 1,
          'well': 1,
          'go': 1,
          'nunder': 1,
          'circumstances': 1,
          'away': 1,
          'equals': 1,
          '8': 1,
          '103': 1,
          'minutes': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'nthe': 6,
          'even': 4,
          'one': 3,
          'good': 3,
          'doesnt': 3,
          'scene': 3,
          'raiders': 2,
          'lost': 2,
          'ark': 2,
          'jackie': 2,
          'phantom': 2,
          'many': 2,
          'movies': 2,
          'nits': 2,
          'hard': 2,
          'ive': 2,
          'seen': 2,
          'least': 2,
          'stupid': 2,
          'list': 2,
          'sequence': 2,
          'looks': 2,
          'like': 2,
          'given': 2,
          'got': 2,
          'nwe': 2,
          'go': 2,
          'jungle': 2,
          'well': 2,
          'nthere': 2,
          'isnt': 2,
          'thing': 2,
          'girl': 2,
          'else': 2,
          'another': 2,
          'hokey': 2,
          'script': 2,
          'sure': 2,
          'capsule': 1,
          'combine': 1,
          'quart': 1,
          'dash': 1,
          'chan': 1,
          'sans': 1,
          'two': 1,
          'teaspoons': 1,
          'gun': 1,
          'swordplay': 1,
          'dollop': 1,
          'cgi': 1,
          'nsimmer': 1,
          '100': 1,
          'minutes': 1,
          'nyields': 1,
          'zilch': 1,
          'depressing': 1,
          'tired': 1,
          'retread': 1,
          'earlier': 1,
          'better': 1,
          'fifteenminute': 1,
          'mark': 1,
          'started': 1,
          'cataloguing': 1,
          'loud': 1,
          'make': 1,
          'actionadventure': 1,
          'simply': 1,
          'recycle': 1,
          'predecessors': 1,
          'recycling': 1,
          'gracefully': 1,
          'allegedly': 1,
          'based': 1,
          'longrunning': 1,
          'comic': 1,
          'name': 1,
          'bother': 1,
          'graceful': 1,
          'incompetent': 1,
          'ways': 1,
          'ill': 1,
          'try': 1,
          'film': 1,
          'opens': 1,
          'prelude': 1,
          'slashed': 1,
          'ribbons': 1,
          'editing': 1,
          'heavy': 1,
          'voiceover': 1,
          'compensate': 1,
          'whatever': 1,
          'thrown': 1,
          'swear': 1,
          'god': 1,
          'recycles': 1,
          'truckchase': 1,
          'notefornote': 1,
          'possibly': 1,
          'shotforshot': 1,
          'right': 1,
          'moment': 1,
          'indy': 1,
          'wrenched': 1,
          'open': 1,
          'door': 1,
          'slung': 1,
          'drivers': 1,
          'brush': 1,
          'goes': 1,
          'rip': 1,
          'ropebridge': 1,
          'sorcerer': 1,
          'nsorcerer': 1,
          'may': 1,
          'remember': 1,
          'remake': 1,
          'french': 1,
          'wages': 1,
          'fear': 1,
          'bunch': 1,
          'lowlifes': 1,
          'paid': 1,
          'piles': 1,
          'money': 1,
          'drive': 1,
          'truck': 1,
          'loaded': 1,
          'nitro': 1,
          'horrible': 1,
          'terrain': 1,
          'nboth': 1,
          'versions': 1,
          'far': 1,
          'interesting': 1,
          'flick': 1,
          'job': 1,
          'back': 1,
          'salt': 1,
          'mines': 1,
          'nanyway': 1,
          'cinematic': 1,
          'theft': 1,
          'stop': 1,
          'lack': 1,
          'inspiration': 1,
          'single': 1,
          'havent': 1,
          'us': 1,
          'way': 1,
          'remotely': 1,
          'evokes': 1,
          'interest': 1,
          'wheres': 1,
          'na': 1,
          'bad': 1,
          'tough': 1,
          'secret': 1,
          'cave': 1,
          'hideaway': 1,
          'seems': 1,
          'inspired': 1,
          'dr': 1,
          'nno': 1,
          'anything': 1,
          'boardroom': 1,
          'meeting': 1,
          'drips': 1,
          'greed': 1,
          'venality': 1,
          'magical': 1,
          'artifacts': 1,
          'terrible': 1,
          'power': 1,
          'caryhiroyuki': 1,
          'tagawa': 1,
          'wasted': 1,
          'role': 1,
          'gets': 1,
          'wear': 1,
          'fu': 1,
          'manchu': 1,
          'mustache': 1,
          'sneer': 1,
          'lot': 1,
          'generally': 1,
          'humiliate': 1,
          'nwhat': 1,
          'plot': 1,
          'waste': 1,
          'time': 1,
          'sets': 1,
          'alternate': 1,
          'big': 1,
          'tiny': 1,
          'still': 1,
          'lines': 1,
          'begging': 1,
          'mst3ked': 1,
          'im': 1,
          'mike': 1,
          'bots': 1,
          'get': 1,
          'cash': 1,
          'theyll': 1,
          'stick': 1,
          'sked': 1,
          'worth': 1,
          'noting': 1,
          'billy': 1,
          'zane': 1,
          'hes': 1,
          'actor': 1,
          'tries': 1,
          'sending': 1,
          'dead': 1,
          'alley': 1,
          'nall': 1,
          'say': 1,
          'pray': 1,
          'beginning': 1,
          'end': 1,
          'although': 1,
          'final': 1,
          'nail': 1,
          'coffin': 1,
          'comicbook': 1,
          'superhero': 1,
          'nneg': 1}),
 Counter({'film': 7,
          'dick': 6,
          'girls': 5,
          'nthe': 5,
          'movie': 5,
          'two': 4,
          'dunst': 4,
          'nixon': 4,
          'woodward': 4,
          'bernstein': 4,
          'presidential': 3,
          'scandal': 3,
          'williams': 3,
          'watergate': 3,
          'every': 3,
          'throat': 3,
          'humor': 3,
          'comedy': 3,
          'ni': 3,
          'cast': 3,
          'see': 3,
          'characters': 3,
          'could': 3,
          'trying': 2,
          'room': 2,
          'liddy': 2,
          'deadon': 2,
          'nwhen': 2,
          'trip': 2,
          'dog': 2,
          'thanks': 2,
          'make': 2,
          'deep': 2,
          'one': 2,
          'band': 2,
          'stop': 2,
          'smarter': 2,
          'juvenile': 2,
          'made': 2,
          'major': 2,
          'audience': 2,
          'course': 2,
          'mccullochs': 2,
          'given': 2,
          'constant': 2,
          'excellent': 2,
          'particular': 2,
          'nothing': 2,
          'nas': 2,
          'best': 2,
          'though': 2,
          'new': 1,
          'entry': 1,
          'revisionist': 1,
          'history': 1,
          'genre': 1,
          'filmmaking': 1,
          'suggests': 1,
          'nottoobright': 1,
          'teenage': 1,
          'cause': 1,
          'uncovering': 1,
          'nations': 1,
          'biggest': 1,
          'nkirsten': 1,
          'michelle': 1,
          'star': 1,
          'betsy': 1,
          'arlene': 1,
          'deliver': 1,
          'fan': 1,
          'letter': 1,
          'arlenes': 1,
          'hotel': 1,
          'accidentally': 1,
          'stumble': 1,
          'across': 1,
          'g': 1,
          'gordon': 1,
          'played': 1,
          'harry': 1,
          'shearer': 1,
          'infamous': 1,
          'breakin': 1,
          'recognize': 1,
          'later': 1,
          'white': 1,
          'house': 1,
          'field': 1,
          'ushered': 1,
          'conference': 1,
          'questioned': 1,
          'know': 1,
          'leave': 1,
          'official': 1,
          'walkers': 1,
          'manage': 1,
          'unwittingly': 1,
          'uncover': 1,
          'bit': 1,
          'performing': 1,
          'duties': 1,
          'clue': 1,
          'getting': 1,
          'involved': 1,
          'discover': 1,
          'another': 1,
          'performance': 1,
          'dan': 1,
          'hedaya': 1,
          'actually': 1,
          'favors': 1,
          'slightly': 1,
          'unlike': 1,
          'anthony': 1,
          'hopkins': 1,
          'abusive': 1,
          'checkers': 1,
          'conversations': 1,
          'always': 1,
          'recorded': 1,
          'quit': 1,
          'become': 1,
          'disillusioned': 1,
          'nduring': 1,
          'prank': 1,
          'phone': 1,
          'call': 1,
          'events': 1,
          'set': 1,
          'motion': 1,
          'eventually': 1,
          'lead': 1,
          'presidents': 1,
          'resignation': 1,
          'nthis': 1,
          'starts': 1,
          'promisingly': 1,
          'aged': 1,
          'arguing': 1,
          'obvious': 1,
          'larry': 1,
          'kingtype': 1,
          'talk': 1,
          'show': 1,
          'featuring': 1,
          'cameo': 1,
          'french': 1,
          'stewart': 1,
          'revealing': 1,
          'identity': 1,
          'nfrom': 1,
          'subjected': 1,
          'bodily': 1,
          'function': 1,
          'bad': 1,
          'joke': 1,
          'derive': 1,
          'type': 1,
          'supposed': 1,
          'nat': 1,
          'point': 1,
          'scream': 1,
          'high': 1,
          'school': 1,
          'playing': 1,
          'steps': 1,
          'lincoln': 1,
          'memorial': 1,
          'manages': 1,
          'right': 1,
          'screams': 1,
          'letting': 1,
          'run': 1,
          'life': 1,
          'nmuch': 1,
          'horror': 1,
          'everyone': 1,
          'standing': 1,
          'within': 1,
          'earshot': 1,
          'nseveral': 1,
          'variations': 1,
          'wordplay': 1,
          'surface': 1,
          'throughout': 1,
          'nif': 1,
          'would': 1,
          'less': 1,
          'likely': 1,
          'fault': 1,
          'bathroom': 1,
          'apparently': 1,
          'relatively': 1,
          'younger': 1,
          'people': 1,
          'player': 1,
          'introduced': 1,
          'shoved': 1,
          'audiences': 1,
          'least': 1,
          'subtle': 1,
          'way': 1,
          'possible': 1,
          'dont': 1,
          'recall': 1,
          'oliver': 1,
          'stones': 1,
          'pander': 1,
          'wasnt': 1,
          'aimed': 1,
          'squarely': 1,
          '1320': 1,
          'yearold': 1,
          'going': 1,
          'redeeming': 1,
          'thing': 1,
          'remarkable': 1,
          'supporting': 1,
          'wanted': 1,
          'ferrell': 1,
          'nthose': 1,
          'sole': 1,
          'basis': 1,
          'rating': 1,
          'wish': 1,
          'screen': 1,
          'time': 1,
          'unfortunately': 1,
          'relegated': 1,
          'final': 1,
          'halfhour': 1,
          'ntheir': 1,
          'bickering': 1,
          'fighting': 1,
          'get': 1,
          'story': 1,
          'highlight': 1,
          'especially': 1,
          'thwarting': 1,
          'ferrells': 1,
          'attempts': 1,
          'gather': 1,
          'information': 1,
          'narrative': 1,
          'revealed': 1,
          'named': 1,
          'ill': 1,
          'planned': 1,
          'porno': 1,
          'theater': 1,
          'betsys': 1,
          'brother': 1,
          'members': 1,
          'portrayals': 1,
          'work': 1,
          'nid': 1,
          'like': 1,
          'portray': 1,
          'script': 1,
          'suited': 1,
          'towards': 1,
          'comedic': 1,
          'abilities': 1,
          'leads': 1,
          'definitely': 1,
          'better': 1,
          'nthey': 1,
          'come': 1,
          'described': 1,
          'romy': 1,
          'michele': 1,
          'early': 1,
          'years': 1,
          'highly': 1,
          'dubious': 1,
          'distinction': 1,
          'nstay': 1,
          'first': 1,
          'half': 1,
          'end': 1,
          'credits': 1,
          'interesting': 1,
          'scene': 1,
          'involving': 1,
          'suggestively': 1,
          'sucking': 1,
          'lollipops': 1,
          'emblazoned': 1,
          'title': 1,
          'nan': 1,
          'idea': 1,
          'marred': 1,
          'poor': 1,
          'execution': 1,
          'great': 1,
          'nless': 1,
          'displayed': 1,
          'scenes': 1,
          'wonderful': 1,
          'satire': 1,
          'presidency': 1,
          'seen': 1,
          'eyes': 1,
          'naive': 1,
          'fifteen': 1,
          'year': 1,
          'olds': 1,
          'stands': 1,
          'offers': 1,
          'filmmaker': 1,
          'kevin': 1,
          'smith': 1,
          'accurately': 1,
          'defines': 1,
          'poopie': 1,
          'jokes': 1,
          'nand': 1,
          'funny': 1,
          'npg13': 1,
          'nneg': 1}),
 Counter({'film': 5,
          'urban': 4,
          'horror': 4,
          'legends': 4,
          'one': 4,
          'nthe': 4,
          'never': 3,
          'legend': 3,
          'nurban': 3,
          'killer': 3,
          'character': 3,
          'original': 2,
          'put': 2,
          'misery': 2,
          'final': 2,
          'cut': 2,
          'script': 2,
          'become': 2,
          'blair': 2,
          'witch': 2,
          'project': 2,
          'people': 2,
          'victims': 2,
          'films': 2,
          'dead': 2,
          'fiction': 2,
          'killings': 2,
          'like': 2,
          'recurring': 2,
          'seen': 2,
          'words': 1,
          'thought': 1,
          'id': 1,
          'write': 1,
          'sequel': 1,
          'lacks': 1,
          'grace': 1,
          'wit': 1,
          'power': 1,
          'nput': 1,
          'gun': 1,
          'head': 1,
          'pull': 1,
          'trigger': 1,
          'nbetter': 1,
          'yet': 1,
          'genre': 1,
          'nwhen': 1,
          'youve': 1,
          'finished': 1,
          'watching': 1,
          'youll': 1,
          'share': 1,
          'grim': 1,
          'point': 1,
          'view': 1,
          'thanks': 1,
          'horrible': 1,
          'acting': 1,
          'terrible': 1,
          'ridiculous': 1,
          'directing': 1,
          'common': 1,
          'today': 1,
          'smorgasbord': 1,
          'stolen': 1,
          'movie': 1,
          'ideas': 1,
          'mainly': 1,
          'scream': 1,
          'fabulous': 1,
          'perfect': 1,
          'teeth': 1,
          'skin': 1,
          'creepy': 1,
          'school': 1,
          'dog': 1,
          'eating': 1,
          'freshly': 1,
          'removed': 1,
          'kidney': 1,
          'movies': 1,
          'hapless': 1,
          'delivers': 1,
          'story': 1,
          'bunch': 1,
          'students': 1,
          'working': 1,
          'thesis': 1,
          'win': 1,
          'coveted': 1,
          'hitchcock': 1,
          'award': 1,
          'guarantees': 1,
          'winner': 1,
          'director': 1,
          'deal': 1,
          'hollywood': 1,
          'none': 1,
          'female': 1,
          'filmmaker': 1,
          'jennifer': 1,
          'morrison': 1,
          'freaky': 1,
          'girl': 1,
          'stir': 1,
          'echoes': 1,
          'writes': 1,
          'based': 1,
          'serial': 1,
          'kills': 1,
          'according': 1,
          'tales': 1,
          'nsuddenly': 1,
          'entire': 1,
          'crew': 1,
          'starts': 1,
          'getting': 1,
          'bumped': 1,
          'urbanlegendary': 1,
          'homicides': 1,
          'bodies': 1,
          'always': 1,
          'missing': 1,
          'often': 1,
          'witness': 1,
          'wears': 1,
          'fencing': 1,
          'mask': 1,
          'long': 1,
          'black': 1,
          'overcoat': 1,
          'looking': 1,
          'scorned': 1,
          'olympian': 1,
          'avenge': 1,
          'defeat': 1,
          'sydney': 1,
          'nwhy': 1,
          'scary': 1,
          'explained': 1,
          'nof': 1,
          'course': 1,
          'golden': 1,
          'rule': 1,
          'sequels': 1,
          'must': 1,
          'least': 1,
          'continuitys': 1,
          'sake': 1,
          'minor': 1,
          'cared': 1,
          'anyway': 1,
          'security': 1,
          'guard': 1,
          'central': 1,
          'problem': 1,
          'already': 1,
          'shes': 1,
          'utterly': 1,
          'clueless': 1,
          'whats': 1,
          'going': 1,
          'around': 1,
          'ncall': 1,
          'suspension': 1,
          'disbelief': 1,
          'nthis': 1,
          'also': 1,
          'prime': 1,
          'example': 1,
          'completely': 1,
          'water': 1,
          'last': 1,
          'decent': 1,
          'seemed': 1,
          'snuff': 1,
          'stalking': 1,
          'crazy': 1,
          'motivation': 1,
          'tired': 1,
          'clich': 1,
          'everyone': 1,
          'seems': 1,
          'forgotten': 1,
          'real': 1,
          'unknown': 1,
          'nneg': 1}),
 Counter({'godzilla': 15,
          'new': 7,
          'movie': 6,
          'film': 6,
          'nthe': 5,
          'ngodzilla': 5,
          'day': 5,
          'york': 5,
          'monster': 4,
          'isnt': 4,
          'special': 4,
          'say': 4,
          'like': 4,
          'nin': 4,
          'nicks': 4,
          'king': 3,
          'emmerich': 3,
          'effects': 3,
          'see': 3,
          'even': 3,
          'ntheres': 3,
          'lizard': 3,
          'never': 3,
          'movies': 3,
          'big': 3,
          'would': 3,
          'around': 3,
          'time': 3,
          'matter': 3,
          'plot': 2,
          'summer': 2,
          'monsters': 2,
          'pretty': 2,
          'disaster': 2,
          'likely': 2,
          'nthats': 2,
          'theyre': 2,
          'nthis': 2,
          'devlin': 2,
          'computergenerated': 2,
          'visuals': 2,
          'write': 2,
          'nindependence': 2,
          'nand': 2,
          'could': 2,
          'although': 2,
          'close': 2,
          'manhattan': 2,
          'park': 2,
          'independence': 2,
          'really': 2,
          'kong': 2,
          'chosen': 2,
          'may': 2,
          'capable': 2,
          'many': 2,
          'supposed': 2,
          'stop': 2,
          'rather': 2,
          'nhe': 2,
          'building': 2,
          'hand': 2,
          'military': 2,
          'nick': 2,
          'theory': 2,
          'french': 2,
          'first': 2,
          'pitillo': 2,
          'animal': 2,
          'hank': 2,
          'azaria': 2,
          'nthen': 2,
          'jean': 2,
          'reno': 2,
          'city': 2,
          'times': 2,
          'plays': 2,
          'one': 2,
          'ebert': 2,
          'gene': 2,
          'doesnt': 2,
          'want': 2,
          'arent': 2,
          'much': 2,
          'ultimate': 1,
          'culmination': 1,
          'cares': 1,
          'na': 1,
          'loose': 1,
          'remake': 1,
          '1954': 1,
          'classic': 1,
          'japanese': 1,
          'thin': 1,
          'story': 1,
          'department': 1,
          'roland': 1,
          'dean': 1,
          'devlins': 1,
          'bigbudget': 1,
          'lizardstompsmanhattan': 1,
          'flick': 1,
          'written': 1,
          'brain': 1,
          'dead': 1,
          'mind': 1,
          'script': 1,
          'dumbed': 1,
          'lobotomized': 1,
          'lives': 1,
          'dies': 1,
          'alone': 1,
          'npresumably': 1,
          'primary': 1,
          'target': 1,
          'group': 1,
          'teenage': 1,
          'boys': 1,
          'demographic': 1,
          'shell': 1,
          '7': 1,
          'repeatedly': 1,
          'images': 1,
          'monsterinstigated': 1,
          'carnage': 1,
          'females': 1,
          'age': 1,
          'groups': 1,
          'immune': 1,
          'seduction': 1,
          'readily': 1,
          'susceptible': 1,
          'third': 1,
          'straight': 1,
          'row': 1,
          'demonstrated': 1,
          'mastery': 1,
          'far': 1,
          'important': 1,
          'making': 1,
          'money': 1,
          'ability': 1,
          'direct': 1,
          'actors': 1,
          'nstargate': 1,
          'financial': 1,
          'success': 1,
          'runaway': 1,
          'hit': 1,
          'already': 1,
          'drowning': 1,
          'hype': 1,
          'merchandising': 1,
          'tieins': 1,
          'opens': 1,
          'virtually': 1,
          'guaranteed': 1,
          'least': 1,
          '100': 1,
          'million': 1,
          'nnice': 1,
          'numbers': 1,
          'penned': 1,
          'nottooprecocious': 1,
          'grade': 1,
          'school': 1,
          'kid': 1,
          'completely': 1,
          'without': 1,
          'merit': 1,
          'certain': 1,
          'visceral': 1,
          'thrill': 1,
          'inherent': 1,
          'watching': 1,
          'giant': 1,
          'rip': 1,
          'way': 1,
          'wears': 1,
          'quickly': 1,
          'nfrankly': 1,
          'competent': 1,
          'stunning': 1,
          'nothing': 1,
          'jurassic': 1,
          'meets': 1,
          'aliens': 1,
          'little': 1,
          'thrown': 1,
          'bad': 1,
          'measure': 1,
          'nmaybe': 1,
          'require': 1,
          'george': 1,
          'lucas': 1,
          'star': 1,
          'wars': 1,
          'take': 1,
          'next': 1,
          'level': 1,
          'pushes': 1,
          'envelope': 1,
          'preferring': 1,
          'remain': 1,
          'within': 1,
          'comfort': 1,
          'zone': 1,
          'imagination': 1,
          'replaced': 1,
          'crass': 1,
          'formulaic': 1,
          'approach': 1,
          'disallows': 1,
          'creativity': 1,
          'n': 1,
          'disturbing': 1,
          'know': 1,
          '51st': 1,
          'cannes': 1,
          'festival': 1,
          'nworst': 1,
          'exciting': 1,
          'nwith': 1,
          'possible': 1,
          'exception': 1,
          'mildly': 1,
          'enjoyable': 1,
          'car': 1,
          'chase': 1,
          'near': 1,
          'end': 1,
          'sequence': 1,
          'raises': 1,
          'pulse': 1,
          'neven': 1,
          'scenes': 1,
          'dozens': 1,
          'aircraft': 1,
          'attacking': 1,
          'devoid': 1,
          'tension': 1,
          'suspense': 1,
          'yawnprovoking': 1,
          'dumb': 1,
          'full': 1,
          'adrenaline': 1,
          'moments': 1,
          'getting': 1,
          'audience': 1,
          'involved': 1,
          'action': 1,
          'aspect': 1,
          'production': 1,
          'others': 1,
          'lacking': 1,
          'nactually': 1,
          'part': 1,
          'problem': 1,
          'sure': 1,
          'rooting': 1,
          'green': 1,
          'attitude': 1,
          'paperthin': 1,
          'humans': 1,
          'trying': 1,
          'summed': 1,
          'simply': 1,
          'nafter': 1,
          'sinking': 1,
          'ships': 1,
          'leaving': 1,
          'footprints': 1,
          'tropical': 1,
          'islands': 1,
          'shows': 1,
          'apple': 1,
          'usual': 1,
          'tourist': 1,
          'things': 1,
          'stops': 1,
          'madison': 1,
          'square': 1,
          'garden': 1,
          'visits': 1,
          'chrysler': 1,
          'goes': 1,
          'walk': 1,
          'central': 1,
          'takes': 1,
          'subway': 1,
          'process': 1,
          'knocks': 1,
          'buildings': 1,
          'steps': 1,
          'countless': 1,
          'cabs': 1,
          'trouble': 1,
          'traffic': 1,
          'jams': 1,
          'non': 1,
          'elite': 1,
          'u': 1,
          'army': 1,
          'unit': 1,
          'led': 1,
          'slightly': 1,
          'lessarrogantthanusual': 1,
          'man': 1,
          'kevin': 1,
          'dunn': 1,
          'biologist': 1,
          'named': 1,
          'tatopoulos': 1,
          'opinion': 1,
          'guy': 1,
          'actually': 1,
          'grown': 1,
          'enormous': 1,
          'proportions': 1,
          'result': 1,
          'radiation': 1,
          'given': 1,
          'atomic': 1,
          'bomb': 1,
          'tests': 1,
          'south': 1,
          'pacific': 1,
          'words': 1,
          'mutated': 1,
          'aberration': 1,
          'incipient': 1,
          'creature': 1,
          'kind': 1,
          'nas': 1,
          'luck': 1,
          'old': 1,
          'girlfriend': 1,
          'audrey': 1,
          'maria': 1,
          'reporter': 1,
          'based': 1,
          'tv': 1,
          'station': 1,
          'nalong': 1,
          'cameraman': 1,
          'friend': 1,
          'decides': 1,
          'follow': 1,
          'trails': 1,
          'rejected': 1,
          'member': 1,
          'secret': 1,
          'service': 1,
          'recruits': 1,
          'assignment': 1,
          'ninstead': 1,
          'stomping': 1,
          'tokyo': 1,
          'nunfortunately': 1,
          'destroyed': 1,
          'recent': 1,
          'deep': 1,
          'impact': 1,
          'armageddon': 1,
          'becoming': 1,
          'boring': 1,
          'whole': 1,
          'tradition': 1,
          'roaming': 1,
          'started': 1,
          'ape': 1,
          '30': 1,
          'feet': 1,
          'tall': 1,
          'climb': 1,
          'empire': 1,
          'state': 1,
          'nat': 1,
          'ten': 1,
          'height': 1,
          'knock': 1,
          'contains': 1,
          'lame': 1,
          'attempts': 1,
          'humor': 1,
          'ongoing': 1,
          'feud': 1,
          'wife': 1,
          'sitcom': 1,
          'material': 1,
          'unfunny': 1,
          'repetitive': 1,
          'gag': 1,
          'pronounce': 1,
          'last': 1,
          'name': 1,
          'properly': 1,
          'tame': 1,
          'attack': 1,
          'critics': 1,
          'roger': 1,
          'siskel': 1,
          'nboth': 1,
          'popular': 1,
          'personalities': 1,
          'alter': 1,
          'egos': 1,
          'mayor': 1,
          'played': 1,
          'michael': 1,
          'lerner': 1,
          'lorry': 1,
          'goldman': 1,
          'campaign': 1,
          'manager': 1,
          'neberts': 1,
          'reelection': 1,
          'slogan': 1,
          'surprisingly': 1,
          'thumbs': 1,
          'siskelebert': 1,
          'stuff': 1,
          'amusing': 1,
          'used': 1,
          'grows': 1,
          'tiresome': 1,
          'characters': 1,
          'dont': 1,
          'serve': 1,
          'real': 1,
          'purpose': 1,
          'keep': 1,
          'popping': 1,
          'saddled': 1,
          'unimpressive': 1,
          'cast': 1,
          'largely': 1,
          'risk': 1,
          'human': 1,
          'performance': 1,
          'upstaging': 1,
          'matthew': 1,
          'broderick': 1,
          'good': 1,
          'performances': 1,
          'done': 1,
          'share': 1,
          'solid': 1,
          'acting': 1,
          'past': 1,
          'alist': 1,
          'names': 1,
          'considering': 1,
          'quality': 1,
          'writing': 1,
          'pacino': 1,
          'deniro': 1,
          'hard': 1,
          'pressed': 1,
          'shine': 1,
          'nmaria': 1,
          'dear': 1,
          'god': 1,
          'love': 1,
          'interest': 1,
          'great': 1,
          'expectations': 1,
          'present': 1,
          'comic': 1,
          'relief': 1,
          'nultimately': 1,
          'critic': 1,
          'ntristar': 1,
          'assumed': 1,
          'selfproclaimed': 1,
          'event': 1,
          'motion': 1,
          'pictures': 1,
          'criticproof': 1,
          'nit': 1,
          'also': 1,
          'wordofmouthproof': 1,
          'nthose': 1,
          'friends': 1,
          'nso': 1,
          'go': 1,
          'record': 1,
          'assert': 1,
          'idiotic': 1,
          'blockbuster': 1,
          'spitting': 1,
          'wind': 1,
          'nemmerich': 1,
          'master': 1,
          'illusionists': 1,
          'waving': 1,
          'wands': 1,
          'mesmerizing': 1,
          'audiences': 1,
          'smoke': 1,
          'mirrors': 1,
          'nits': 1,
          'probably': 1,
          'hope': 1,
          'moviegoers': 1,
          'wake': 1,
          'realize': 1,
          'theyve': 1,
          'nneg': 1}),
 Counter({'nand': 6,
          'n': 6,
          'nhe': 3,
          'work': 3,
          'never': 3,
          'nthe': 3,
          'film': 3,
          'filming': 3,
          'doesnt': 3,
          'tries': 3,
          'moved': 2,
          'nthen': 2,
          'took': 2,
          'shakespeares': 2,
          'read': 2,
          'cover': 2,
          'camera': 2,
          'result': 2,
          'romeo': 2,
          'complete': 2,
          'failure': 2,
          'films': 2,
          'nthis': 2,
          'action': 2,
          'ni': 2,
          'play': 2,
          'look': 2,
          'hes': 2,
          'us': 2,
          'recently': 1,
          'one': 1,
          'night': 1,
          'young': 1,
          'director': 1,
          'named': 1,
          'baz': 1,
          'luhrmann': 1,
          'couldnt': 1,
          'sleep': 1,
          'tumbled': 1,
          'bed': 1,
          'television': 1,
          'watched': 1,
          'mtv': 1,
          'hour': 1,
          'kitchen': 1,
          'spent': 1,
          'amount': 1,
          'time': 1,
          'eating': 1,
          'spoiled': 1,
          'food': 1,
          'volume': 1,
          'really': 1,
          'paying': 1,
          'attention': 1,
          'words': 1,
          'plot': 1,
          'climax': 1,
          'video': 1,
          'pressed': 1,
          'button': 1,
          'nwilliam': 1,
          'juliet': 1,
          'worst': 1,
          'ever': 1,
          'made': 1,
          'nthough': 1,
          'fair': 1,
          'interesting': 1,
          'idea': 1,
          'core': 1,
          'make': 1,
          'shakespeare': 1,
          'appealing': 1,
          'crowds': 1,
          'done': 1,
          'moving': 1,
          'around': 1,
          'rapid': 1,
          'rate': 1,
          'cant': 1,
          'see': 1,
          'going': 1,
          'dialogue': 1,
          'voice': 1,
          'shooting': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'like': 1,
          'calvin': 1,
          'klein': 1,
          'model': 1,
          'making': 1,
          'frame': 1,
          'go': 1,
          'still': 1,
          'flashing': 1,
          'characters': 1,
          'name': 1,
          'bottom': 1,
          'long': 1,
          'tedious': 1,
          'sequences': 1,
          'slow': 1,
          'motion': 1,
          'mean': 1,
          'man': 1,
          '90s': 1,
          'dude': 1,
          'nhowever': 1,
          'ive': 1,
          'seen': 1,
          'terrible': 1,
          'fun': 1,
          'watch': 1,
          'examples': 1,
          'batman': 1,
          'robin': 1,
          'island': 1,
          'doctor': 1,
          'moreau': 1,
          'rule': 1,
          'apply': 1,
          'takes': 1,
          'seriously': 1,
          'nthat': 1,
          'major': 1,
          'fault': 1,
          'nanother': 1,
          'problem': 1,
          'pointed': 1,
          'friend': 1,
          'alex': 1,
          'singing': 1,
          'songs': 1,
          'leonard': 1,
          'bernstein': 1,
          'throughout': 1,
          'original': 1,
          'powerful': 1,
          'piece': 1,
          'author': 1,
          'remained': 1,
          'neutral': 1,
          'didnt': 1,
          'take': 1,
          'sides': 1,
          'nhere': 1,
          'clear': 1,
          'supposed': 1,
          'side': 1,
          'way': 1,
          'begining': 1,
          'hero': 1,
          'dicaprios': 1,
          'awful': 1,
          'performance': 1,
          'help': 1,
          'nluhrmann': 1,
          'decides': 1,
          'wants': 1,
          'entertain': 1,
          'enlighten': 1,
          'mess': 1,
          'nyou': 1,
          'feel': 1,
          'striving': 1,
          'something': 1,
          'isnt': 1,
          'pull': 1,
          'mix': 1,
          'drag': 1,
          'queens': 1,
          'filmed': 1,
          'purposefully': 1,
          'arty': 1,
          'angles': 1,
          'hard': 1,
          'nkey': 1,
          'word': 1,
          'oh': 1,
          'water': 1,
          'npretty': 1,
          'nwhat': 1,
          'represent': 1,
          'nwhy': 1,
          'people': 1,
          'ugly': 1,
          'things': 1,
          'scrambled': 1,
          'away': 1,
          'tv': 1,
          'set': 1,
          'feeling': 1,
          'guilty': 1,
          'could': 1,
          'keep': 1,
          'straight': 1,
          'face': 1,
          'nneg': 1}),
 Counter({'person': 4,
          'wife': 4,
          'nthe': 4,
          'movie': 4,
          'would': 4,
          'david': 3,
          'kill': 3,
          'films': 3,
          'make': 3,
          'think': 3,
          'might': 3,
          'film': 3,
          'suspense': 3,
          'crisis': 2,
          'may': 2,
          'one': 2,
          'nas': 2,
          'steven': 2,
          'nhes': 2,
          'money': 2,
          'nin': 2,
          'matter': 2,
          'paltrow': 2,
          'life': 2,
          'new': 2,
          'lover': 2,
          'million': 2,
          'nstevens': 2,
          'murder': 2,
          'summer': 2,
          'style': 2,
          'nand': 2,
          'much': 2,
          'every': 2,
          'turn': 2,
          'walking': 2,
          'sense': 2,
          'first': 2,
          'happen': 2,
          'going': 2,
          'deciding': 2,
          'plan': 2,
          'choice': 2,
          'nwhy': 2,
          'times': 1,
          'people': 1,
          'driven': 1,
          'desperate': 1,
          'measures': 1,
          'nof': 1,
          'course': 1,
          'constitutes': 1,
          'differs': 1,
          'nwhat': 1,
          'disastrous': 1,
          'situation': 1,
          'seen': 1,
          'challenge': 1,
          'another': 1,
          'deepak': 1,
          'chopra': 1,
          'known': 1,
          'say': 1,
          'ride': 1,
          'rider': 1,
          'nunfortunately': 1,
          'clearthinking': 1,
          'always': 1,
          'reaction': 1,
          'problems': 1,
          'nwall': 1,
          'street': 1,
          'wheeler': 1,
          'dealer': 1,
          'taylor': 1,
          'michael': 1,
          'douglas': 1,
          'man': 1,
          'troubles': 1,
          'sunk': 1,
          'illegal': 1,
          'financial': 1,
          'activities': 1,
          'blown': 1,
          'face': 1,
          'days': 1,
          'lose': 1,
          'nhis': 1,
          'emily': 1,
          'gwyneth': 1,
          'highlyplaced': 1,
          'un': 1,
          'interpreter': 1,
          'happy': 1,
          'either': 1,
          'nher': 1,
          'marriage': 1,
          'cold': 1,
          'unfulfilling': 1,
          'nunknown': 1,
          'shaw': 1,
          'viggo': 1,
          'mortensen': 1,
          'painter': 1,
          'excon': 1,
          'history': 1,
          'bilking': 1,
          'wealthy': 1,
          'women': 1,
          'nemily': 1,
          'prime': 1,
          'target': 1,
          'shes': 1,
          'worth': 1,
          '100': 1,
          'solution': 1,
          'predicament': 1,
          'offer': 1,
          'half': 1,
          'artist': 1,
          'accepts': 1,
          'underway': 1,
          'ndrawing': 1,
          'frederick': 1,
          'knotts': 1,
          'play': 1,
          'loosely': 1,
          'based': 1,
          'hitchcocks': 1,
          'dial': 1,
          'alltoo': 1,
          'typical': 1,
          'releases': 1,
          'nall': 1,
          'substance': 1,
          'theres': 1,
          'really': 1,
          'ndirector': 1,
          'andrew': 1,
          'davis': 1,
          'accomplished': 1,
          'witness': 1,
          'bestforgotten': 1,
          'made': 1,
          'exactly': 1,
          'wrong': 1,
          'choices': 1,
          'almost': 1,
          'ndouglas': 1,
          'shown': 1,
          'us': 1,
          'skillful': 1,
          'actors': 1,
          'previous': 1,
          'nmortensen': 1,
          'showed': 1,
          'promise': 1,
          'past': 1,
          'nhere': 1,
          'three': 1,
          'uninterestingly': 1,
          'roles': 1,
          'oddly': 1,
          'waxen': 1,
          'faces': 1,
          'shows': 1,
          'suchet': 1,
          'york': 1,
          'detective': 1,
          'mohamed': 1,
          'karaman': 1,
          'onscreen': 1,
          'long': 1,
          'enough': 1,
          'likable': 1,
          'disappears': 1,
          'concern': 1,
          'create': 1,
          'nsurprises': 1,
          'important': 1,
          'audience': 1,
          'keeps': 1,
          'waiting': 1,
          'something': 1,
          'nothing': 1,
          'ever': 1,
          'nnearly': 1,
          'event': 1,
          'telegraphed': 1,
          'advance': 1,
          'ncloseup': 1,
          'object': 1,
          'action': 1,
          'easy': 1,
          'guess': 1,
          'whats': 1,
          'plods': 1,
          'towards': 1,
          'inevitable': 1,
          'conclusion': 1,
          'keep': 1,
          'expecting': 1,
          'plot': 1,
          'twist': 1,
          'worthwhile': 1,
          'nits': 1,
          'hopeless': 1,
          'quest': 1,
          'story': 1,
          'doesnt': 1,
          'loaded': 1,
          'neven': 1,
          'unfriendly': 1,
          'relations': 1,
          'youd': 1,
          'could': 1,
          'talked': 1,
          'difficulty': 1,
          'rather': 1,
          'nwhen': 1,
          'decide': 1,
          'dire': 1,
          'makes': 1,
          'unreasonable': 1,
          'nif': 1,
          'hire': 1,
          'someone': 1,
          'nno': 1,
          'sleazy': 1,
          'chance': 1,
          'opportunity': 1,
          'breakin': 1,
          'apartment': 1,
          'take': 1,
          'davids': 1,
          'loft': 1,
          'bad': 1,
          'neighborhood': 1,
          'nwhile': 1,
          'among': 1,
          'numerous': 1,
          'well': 1,
          'skip': 1,
          'nyoull': 1,
          'find': 1,
          'offers': 1,
          'watching': 1,
          'weather': 1,
          'channel': 1,
          'nneg': 1}),
 Counter({'movie': 11,
          'virus': 7,
          'monster': 6,
          'nthe': 4,
          'big': 4,
          'boat': 3,
          'would': 3,
          'better': 2,
          'russian': 2,
          'space': 2,
          'mir': 2,
          'transmit': 2,
          'something': 2,
          'lots': 2,
          'satellites': 2,
          'donald': 2,
          'sutherland': 2,
          'looking': 2,
          'least': 2,
          'many': 2,
          'reason': 2,
          'isnt': 2,
          'really': 2,
          'nso': 2,
          'upon': 2,
          'borg': 2,
          'alien': 2,
          'lifeform': 2,
          'machines': 2,
          'spare': 2,
          'blah': 2,
          'ni': 2,
          'could': 2,
          'plot': 2,
          'say': 2,
          'thing': 2,
          'man': 2,
          'movies': 2,
          'nfor': 2,
          'example': 2,
          'aliens': 2,
          'actually': 2,
          'makes': 2,
          'real': 2,
          'person': 2,
          'ever': 2,
          'scary': 2,
          'without': 1,
          'nany': 1,
          'hurdle': 1,
          'large': 1,
          'overcome': 1,
          'pretty': 1,
          'damn': 1,
          'good': 1,
          'otherwise': 1,
          'nsadly': 1,
          'deliver': 1,
          'level': 1,
          'opens': 1,
          'station': 1,
          'never': 1,
          'find': 1,
          'nsudddenly': 1,
          'wave': 1,
          'colorful': 1,
          'lightning': 1,
          'comes': 1,
          'flying': 1,
          'winds': 1,
          'destroying': 1,
          'using': 1,
          'aforementioned': 1,
          'ncut': 1,
          'seven': 1,
          'days': 1,
          'later': 1,
          'meet': 1,
          'band': 1,
          'seafaring': 1,
          'vultures': 1,
          'nsee': 1,
          'spend': 1,
          'time': 1,
          'sailing': 1,
          'around': 1,
          'deadinthewater': 1,
          'ships': 1,
          'rescue': 1,
          'collect': 1,
          'reward': 1,
          'money': 1,
          'nat': 1,
          'think': 1,
          'thats': 1,
          'nalong': 1,
          'things': 1,
          'film': 1,
          'middle': 1,
          'ocean': 1,
          'explained': 1,
          'stumble': 1,
          'decide': 1,
          'haul': 1,
          'back': 1,
          'waters': 1,
          'problem': 1,
          'crew': 1,
          'starts': 1,
          'disappearing': 1,
          'onebyone': 1,
          'turning': 1,
          'nyes': 1,
          'ncomplete': 1,
          'red': 1,
          'laser': 1,
          'beam': 1,
          'place': 1,
          'eye': 1,
          'napparently': 1,
          'survive': 1,
          'inside': 1,
          'electrical': 1,
          'creates': 1,
          'makeshift': 1,
          'uses': 1,
          'humans': 1,
          'parts': 1,
          'nblah': 1,
          'go': 1,
          'forever': 1,
          'describing': 1,
          'ludicrous': 1,
          'socalled': 1,
          'wont': 1,
          'nsuffice': 1,
          'original': 1,
          'play': 1,
          'irish': 1,
          'neverything': 1,
          'else': 1,
          'taken': 1,
          'resemble': 1,
          'found': 1,
          'littleseen': 1,
          'japanese': 1,
          'tetsuothe': 1,
          'iron': 1,
          'nand': 1,
          'right': 1,
          'funny': 1,
          'expecting': 1,
          'enjoy': 1,
          'soft': 1,
          'spot': 1,
          'cheesy': 1,
          'like': 1,
          'last': 1,
          'years': 1,
          'underappreciated': 1,
          'deep': 1,
          'rising': 1,
          'nbut': 1,
          'mentioned': 1,
          'earlier': 1,
          'doesnt': 1,
          'even': 1,
          'nit': 1,
          'pile': 1,
          'circuits': 1,
          'wires': 1,
          'expects': 1,
          'audience': 1,
          'fear': 1,
          'ridiculous': 1,
          'contraption': 1,
          'n': 1,
          'type': 1,
          'wonder': 1,
          'screenwriter': 1,
          'thinking': 1,
          'wrote': 1,
          'nbesides': 1,
          'lame': 1,
          'chock': 1,
          'full': 1,
          'dialogue': 1,
          'situations': 1,
          'allow': 1,
          'get': 1,
          'scene': 1,
          'late': 1,
          'one': 1,
          'characters': 1,
          'attempts': 1,
          'negotiate': 1,
          'nnow': 1,
          'dont': 1,
          'know': 1,
          'came': 1,
          'viewed': 1,
          'mankind': 1,
          'eliminated': 1,
          'doubt': 1,
          'attempt': 1,
          'nthat': 1,
          'much': 1,
          'sense': 1,
          'baby': 1,
          'squirrel': 1,
          'calmly': 1,
          'asking': 1,
          'fierce': 1,
          'predator': 1,
          'life': 1,
          'nfinally': 1,
          'filmmakers': 1,
          'done': 1,
          'make': 1,
          'little': 1,
          'nas': 1,
          'frightening': 1,
          'box': 1,
          'cookies': 1,
          'nskip': 1,
          'nif': 1,
          'cool': 1,
          'want': 1,
          'rent': 1,
          'far': 1,
          'superior': 1,
          'granddaddy': 1,
          'genre': 1,
          'nneg': 1}),
 Counter({'jurassic': 6,
          'park': 6,
          'kirbys': 4,
          'young': 4,
          'new': 4,
          'nthe': 4,
          'dr': 3,
          'grant': 3,
          'man': 3,
          'lost': 3,
          'iii': 3,
          'neill': 2,
          'longer': 2,
          'isla': 2,
          'rather': 2,
          'william': 2,
          'h': 2,
          'macy': 2,
          'family': 2,
          'site': 2,
          'world': 2,
          'given': 2,
          'eric': 2,
          'morgan': 2,
          'election': 2,
          'goes': 2,
          'billy': 2,
          'son': 2,
          'couple': 2,
          'michael': 2,
          'jeter': 2,
          'n': 2,
          'october': 2,
          'sky': 2,
          'head': 2,
          'alan': 1,
          'sam': 1,
          'becoming': 1,
          'disillusioned': 1,
          'npaleontology': 1,
          'sexy': 1,
          'science': 1,
          'since': 1,
          'ingen': 1,
          'corporation': 1,
          'cloned': 1,
          'subject': 1,
          'matter': 1,
          'nhis': 1,
          'lectures': 1,
          'bring': 1,
          'people': 1,
          'interested': 1,
          'adventures': 1,
          'nubla': 1,
          'research': 1,
          'funding': 1,
          'dollars': 1,
          'drying': 1,
          'nwhen': 1,
          'fargo': 1,
          'tea': 1,
          'leoni': 1,
          'ask': 1,
          'guide': 1,
          'anniversary': 1,
          'flyover': 1,
          'sorna': 1,
          'notorious': 1,
          'b': 1,
          'hes': 1,
          'disdainful': 1,
          'wave': 1,
          'checkbook': 1,
          'reconsiders': 1,
          'nhowever': 1,
          'havent': 1,
          'real': 1,
          'agenda': 1,
          'nof': 1,
          'course': 1,
          'audience': 1,
          'tipped': 1,
          'film': 1,
          'begins': 1,
          'showing': 1,
          'us': 1,
          'trevor': 1,
          'patriot': 1,
          'boy': 1,
          'ben': 1,
          'mark': 1,
          'harelik': 1,
          'going': 1,
          'paragliding': 1,
          'adventure': 1,
          'island': 1,
          'awry': 1,
          'looks': 1,
          'like': 1,
          'cheesy': 1,
          'rear': 1,
          'projection': 1,
          'ngrants': 1,
          'established': 1,
          'back': 1,
          'home': 1,
          'right': 1,
          'hand': 1,
          'brennan': 1,
          'alessandro': 1,
          'nivola': 1,
          'loves': 1,
          'labours': 1,
          'dig': 1,
          'montana': 1,
          'sorely': 1,
          'lacking': 1,
          'funds': 1,
          'nhe': 1,
          'also': 1,
          'pays': 1,
          'visit': 1,
          'old': 1,
          'flame': 1,
          'ellie': 1,
          'sattler': 1,
          'laura': 1,
          'dern': 1,
          'married': 1,
          'another': 1,
          'calls': 1,
          'dinosaur': 1,
          'apparently': 1,
          'sole': 1,
          'purpose': 1,
          'dredging': 1,
          'films': 1,
          'poorly': 1,
          'imagined': 1,
          'finale': 1,
          'ngrant': 1,
          'takes': 1,
          'along': 1,
          'trip': 1,
          'really': 1,
          'illegal': 1,
          'gambit': 1,
          'save': 1,
          'paraglider': 1,
          'arent': 1,
          'millionaires': 1,
          'making': 1,
          'grants': 1,
          'check': 1,
          'bogus': 1,
          'theyre': 1,
          'separated': 1,
          'well': 1,
          'amandas': 1,
          'boyfriend': 1,
          'makes': 1,
          'much': 1,
          'sense': 1,
          'meaning': 1,
          'gooey': 1,
          'dynamics': 1,
          'waiting': 1,
          'dino': 1,
          'dining': 1,
          'hired': 1,
          'hands': 1,
          'obvious': 1,
          'bait': 1,
          'threesome': 1,
          'led': 1,
          'mr': 1,
          'udesky': 1,
          'gift': 1,
          'didnt': 1,
          'anyone': 1,
          'consider': 1,
          'casting': 1,
          'together': 1,
          'related': 1,
          'little': 1,
          'odd': 1,
          'nas': 1,
          'directed': 1,
          'joe': 1,
          'johnston': 1,
          'jumanji': 1,
          'spielberg': 1,
          'produced': 1,
          'one': 1,
          'risible': 1,
          'script': 1,
          'peter': 1,
          'buchman': 1,
          'team': 1,
          'alexander': 1,
          'payne': 1,
          'jim': 1,
          'taylor': 1,
          'nothing': 1,
          'quickie': 1,
          'monster': 1,
          'flick': 1,
          'dinos': 1,
          'spinosauraus': 1,
          'trex': 1,
          'pteranodons': 1,
          'plot': 1,
          'series': 1,
          'coincidences': 1,
          'combined': 1,
          'extreme': 1,
          'leaps': 1,
          'faith': 1,
          'trifecta': 1,
          'stupid': 1,
          'cell': 1,
          'phone': 1,
          'tricks': 1,
          'effects': 1,
          'shot': 1,
          'television': 1,
          'cinematographer': 1,
          'shelly': 1,
          'johnson': 1,
          'murky': 1,
          'looking': 1,
          'times': 1,
          'nfilm': 1,
          'editing': 1,
          'robert': 1,
          'dalva': 1,
          'presumably': 1,
          'done': 1,
          'machete': 1,
          'keep': 1,
          '90': 1,
          'minute': 1,
          'run': 1,
          'time': 1,
          'ni': 1,
          'know': 1,
          'reason': 1,
          'explain': 1,
          'ridiculous': 1,
          'ending': 1,
          'features': 1,
          'survivors': 1,
          'confronting': 1,
          'pack': 1,
          'raptors': 1,
          'saved': 1,
          'ludicrous': 1,
          'logic': 1,
          'jumps': 1,
          'within': 1,
          'minutes': 1,
          'noriginal': 1,
          'music': 1,
          'davis': 1,
          'repeats': 1,
          'john': 1,
          'williams': 1,
          'original': 1,
          'themes': 1,
          'nwhile': 1,
          'attempt': 1,
          'inject': 1,
          'humor': 1,
          'humanity': 1,
          'proceedings': 1,
          'rest': 1,
          'cast': 1,
          'plodding': 1,
          'unexceptional': 1,
          'probably': 1,
          'provide': 1,
          'quick': 1,
          'entertainment': 1,
          'go': 1,
          'knowing': 1,
          'expect': 1,
          'crowd': 1,
          'maybe': 1,
          'liked': 1,
          'nneg': 1}),
 Counter({'wire': 6,
          'barb': 5,
          'anderson': 4,
          'babe': 3,
          'movie': 3,
          'breasts': 3,
          'one': 3,
          'pamela': 2,
          'characters': 2,
          'call': 2,
          'casablanca': 2,
          'former': 2,
          'resistance': 2,
          'airport': 2,
          'film': 2,
          'lees': 1,
          'first': 1,
          'foray': 1,
          'films': 1,
          'highlights': 1,
          'fact': 1,
          'talent': 1,
          'lies': 1,
          'silicone': 1,
          'enhanced': 1,
          'assets': 1,
          'nbeing': 1,
          'notable': 1,
          'member': 1,
          'cast': 1,
          'camera': 1,
          'lingers': 1,
          'lustily': 1,
          'n': 1,
          'body': 1,
          'every': 1,
          'opportunity': 1,
          'making': 1,
          'catch': 1,
          'line': 1,
          'dont': 1,
          'sound': 1,
          'ironic': 1,
          'indeed': 1,
          'nfrom': 1,
          'opening': 1,
          'treated': 1,
          'striptease': 1,
          'routine': 1,
          'ending': 1,
          'hurling': 1,
          'stiletto': 1,
          'smack': 1,
          'eyes': 1,
          'lusty': 1,
          'male': 1,
          'happened': 1,
          'nthroughout': 1,
          'ample': 1,
          'footage': 1,
          'enormous': 1,
          'cleavage': 1,
          'andersons': 1,
          'least': 1,
          'female': 1,
          'extras': 1,
          'nthis': 1,
          'alone': 1,
          'enough': 1,
          'retitle': 1,
          'nfor': 1,
          'plot': 1,
          'rehashes': 1,
          'storyline': 1,
          'nit': 1,
          '2017': 1,
          'middle': 1,
          'second': 1,
          'american': 1,
          'civil': 1,
          'war': 1,
          'fighter': 1,
          'runs': 1,
          'joint': 1,
          'steel': 1,
          'harbour': 1,
          'called': 1,
          'hammerhead': 1,
          'nknown': 1,
          'attracting': 1,
          'fighters': 1,
          'sorts': 1,
          'bar': 1,
          'attracts': 1,
          'attention': 1,
          'government': 1,
          'forces': 1,
          'appear': 1,
          'dressed': 1,
          'nazistyle': 1,
          'uniforms': 1,
          'nin': 1,
          'bashing': 1,
          'helpless': 1,
          'males': 1,
          'showing': 1,
          'trademark': 1,
          'help': 1,
          'lover': 1,
          'wife': 1,
          'get': 1,
          'side': 1,
          'town': 1,
          'past': 1,
          'governmentcontrolled': 1,
          'areas': 1,
          'freedom': 1,
          'neven': 1,
          'looks': 1,
          'like': 1,
          'except': 1,
          'plane': 1,
          'background': 1,
          'modern': 1,
          'private': 1,
          'jet': 1,
          'nthere': 1,
          'hardly': 1,
          'significant': 1,
          'moments': 1,
          'gets': 1,
          'impression': 1,
          'designed': 1,
          'young': 1,
          'teenagers': 1,
          'familiar': 1,
          'dark': 1,
          'horse': 1,
          'comics': 1,
          'version': 1,
          'nif': 1,
          'anything': 1,
          'leaves': 1,
          'confirmation': 1,
          'di': 1,
          'stunts': 1,
          'nwho': 1,
          'could': 1,
          'fight': 1,
          'jump': 1,
          'skimpy': 1,
          'strapless': 1,
          'leather': 1,
          'top': 1,
          'yet': 1,
          'keep': 1,
          'spilling': 1,
          'nonly': 1,
          'stuntwoman': 1,
          'nnot': 1,
          'lee': 1,
          'nneg': 1}),
 Counter({'nthe': 6,
          'snake': 6,
          'movie': 6,
          'giant': 5,
          'anaconda': 5,
          'one': 4,
          'team': 3,
          'sarone': 3,
          'catch': 3,
          'nour': 3,
          'first': 3,
          'nbut': 3,
          'viewer': 3,
          'see': 3,
          'credits': 3,
          'nso': 2,
          'tribe': 2,
          'stoltz': 2,
          'terri': 2,
          'nthey': 2,
          'well': 2,
          'soon': 2,
          'group': 2,
          'without': 2,
          'zoo': 2,
          'nwe': 2,
          'dont': 2,
          'looking': 2,
          'around': 2,
          'victim': 2,
          'would': 2,
          'shows': 2,
          'rest': 2,
          'scenes': 2,
          'may': 2,
          'go': 2,
          'real': 2,
          'work': 2,
          'humanities': 1,
          'quest': 1,
          'knowledge': 1,
          'never': 1,
          'ends': 1,
          'scientists': 1,
          'filmmakers': 1,
          'travel': 1,
          'amazon': 1,
          'search': 1,
          'legendary': 1,
          'indian': 1,
          'party': 1,
          'consists': 1,
          'anthropologist': 1,
          'steven': 1,
          'cale': 1,
          'eric': 1,
          'camera': 1,
          'consisting': 1,
          'flores': 1,
          'jennifer': 1,
          'lopez': 1,
          'danny': 1,
          'rich': 1,
          'ice': 1,
          'cube': 1,
          'gary': 1,
          'dixon': 1,
          'owen': 1,
          'wilson': 1,
          'denise': 1,
          'kahlberg': 1,
          'kari': 1,
          'wuhrer': 1,
          'warren': 1,
          'westridge': 1,
          'jonathan': 1,
          'hyde': 1,
          'nearly': 1,
          'journey': 1,
          'meet': 1,
          'paul': 1,
          'jon': 1,
          'voight': 1,
          'whose': 1,
          'boat': 1,
          'stuck': 1,
          'shore': 1,
          'agree': 1,
          'give': 1,
          'ride': 1,
          'next': 1,
          'village': 1,
          'nhe': 1,
          'claims': 1,
          'know': 1,
          'area': 1,
          'useful': 1,
          'locating': 1,
          'native': 1,
          'nvery': 1,
          'friendliness': 1,
          'backfires': 1,
          'turns': 1,
          'hunter': 1,
          'scruples': 1,
          'wants': 1,
          'sell': 1,
          'wait': 1,
          'long': 1,
          'nshe': 1,
          'panther': 1,
          'hors': 1,
          'doevre': 1,
          'main': 1,
          'course': 1,
          'heroes': 1,
          'paddle': 1,
          'amazonas': 1,
          'pool': 1,
          'backyard': 1,
          'nno': 1,
          'wonder': 1,
          'animals': 1,
          'mistake': 1,
          'splashing': 1,
          'dinner': 1,
          'bell': 1,
          'polite': 1,
          'swallows': 1,
          'big': 1,
          'gulp': 1,
          'nenjoy': 1,
          'much': 1,
          'attempt': 1,
          'want': 1,
          'fishing': 1,
          'pole': 1,
          'villain': 1,
          'soft': 1,
          'side': 1,
          'stops': 1,
          'shooting': 1,
          'ntoo': 1,
          'bad': 1,
          'strangle': 1,
          'another': 1,
          'member': 1,
          'expedition': 1,
          'none': 1,
          'goes': 1,
          'others': 1,
          'neric': 1,
          'stung': 1,
          'wasp': 1,
          'right': 1,
          'beginning': 1,
          'mercifully': 1,
          'unconcious': 1,
          'adventure': 1,
          'crew': 1,
          'keeps': 1,
          'entertaining': 1,
          'although': 1,
          'way': 1,
          'makers': 1,
          'planned': 1,
          'nhowever': 1,
          'rather': 1,
          'boring': 1,
          'nwhenever': 1,
          'leading': 1,
          'lady': 1,
          'laugh': 1,
          'reminds': 1,
          'us': 1,
          'favorite': 1,
          'character': 1,
          'famous': 1,
          'animated': 1,
          'even': 1,
          'aweinspiring': 1,
          'monster': 1,
          'nher': 1,
          'attacks': 1,
          'always': 1,
          'follow': 1,
          'plan': 1,
          'last': 1,
          'hypnotic': 1,
          'look': 1,
          'shes': 1,
          'kid': 1,
          'speedily': 1,
          'wraps': 1,
          'starts': 1,
          'gush': 1,
          'nmostly': 1,
          'act': 1,
          'devouring': 1,
          'looks': 1,
          'nice': 1,
          'wiggles': 1,
          'away': 1,
          'bulging': 1,
          'middle': 1,
          'part': 1,
          'nwhoever': 1,
          'special': 1,
          'effects': 1,
          'wanted': 1,
          'study': 1,
          'snakes': 1,
          'nmaybe': 1,
          'model': 1,
          'looked': 1,
          'animatronics': 1,
          'somewhat': 1,
          'believable': 1,
          'didnt': 1,
          'strangling': 1,
          'ndont': 1,
          'fx': 1,
          'everything': 1,
          'uptodate': 1,
          'likes': 1,
          'watch': 1,
          'end': 1,
          'hisher': 1,
          'surprise': 1,
          'expert': 1,
          'consultant': 1,
          'doubt': 1,
          'though': 1,
          'ever': 1,
          'seen': 1,
          'final': 1,
          'result': 1,
          'na': 1,
          'known': 1,
          'american': 1,
          'science': 1,
          'magazine': 1,
          'also': 1,
          'mentioned': 1,
          'refrain': 1,
          'naming': 1,
          'avoid': 1,
          'damage': 1,
          'reputation': 1,
          'majority': 1,
          'left': 1,
          'theater': 1,
          'start': 1,
          'rolling': 1,
          'anyway': 1,
          'nwhat': 1,
          'kind': 1,
          'audience': 1,
          'target': 1,
          'nhard': 1,
          'say': 1,
          'nthis': 1,
          'cant': 1,
          'serious': 1,
          'horror': 1,
          'nsee': 1,
          'nneg': 1}),
 Counter({'eastwood': 11,
          'nthe': 7,
          'power': 6,
          'film': 6,
          'clint': 6,
          'one': 5,
          'men': 5,
          'absolute': 4,
          'like': 4,
          'story': 4,
          'two': 4,
          'man': 4,
          'scene': 4,
          'trap': 4,
          'produced': 3,
          'could': 3,
          'ever': 3,
          'screenplay': 3,
          'buildup': 3,
          'hit': 3,
          'directed': 2,
          'set': 2,
          'nit': 2,
          'script': 2,
          'nnot': 2,
          'even': 2,
          'audience': 2,
          'convenient': 2,
          'secret': 2,
          'service': 2,
          'enough': 2,
          'played': 2,
          'wife': 2,
          'nwhile': 2,
          'robbing': 2,
          'woman': 2,
          'nhe': 2,
          'president': 2,
          'dramatic': 2,
          'suspense': 2,
          'resolved': 2,
          'exciting': 2,
          'tense': 2,
          'end': 2,
          'giving': 2,
          'police': 2,
          'course': 2,
          'preparing': 2,
          'arrives': 2,
          'get': 2,
          'brilliant': 2,
          'nhowever': 2,
          'simply': 2,
          'minutes': 2,
          'line': 2,
          'relationship': 2,
          'father': 2,
          'daughter': 2,
          'nhow': 2,
          'ndirector': 2,
          'new': 1,
          'attempts': 1,
          'thriller': 1,
          'world': 1,
          'hypocritical': 1,
          'presidents': 1,
          'murderous': 1,
          'political': 1,
          'staff': 1,
          'thrilling': 1,
          'lecture': 1,
          'mating': 1,
          'habits': 1,
          'south': 1,
          'american': 1,
          'grasshopper': 1,
          'none': 1,
          'wonder': 1,
          'utterly': 1,
          'absurd': 1,
          'written': 1,
          'william': 1,
          'goldman': 1,
          'interested': 1,
          'plot': 1,
          'unbelievable': 1,
          'contrived': 1,
          'writing': 1,
          'lacks': 1,
          'consistency': 1,
          'intelligence': 1,
          'ncontinually': 1,
          'underestimating': 1,
          'gives': 1,
          'us': 1,
          'information': 1,
          'already': 1,
          'know': 1,
          'dont': 1,
          'need': 1,
          'ndetails': 1,
          'essential': 1,
          'improbably': 1,
          'annoying': 1,
          'would': 1,
          'unprepared': 1,
          'carry': 1,
          'nightvision': 1,
          'goggles': 1,
          'car': 1,
          'noddly': 1,
          'initial': 1,
          'setup': 1,
          'offers': 1,
          'interesting': 1,
          'possibilities': 1,
          'na': 1,
          'masterful': 1,
          'jewelthief': 1,
          'witnesses': 1,
          'murder': 1,
          'powerful': 1,
          'millionaire': 1,
          'e': 1,
          'g': 1,
          'nmarshall': 1,
          'marshalls': 1,
          'mansions': 1,
          'forced': 1,
          'hide': 1,
          'bedrooms': 1,
          'vault': 1,
          'nthere': 1,
          'twoway': 1,
          'mirror': 1,
          'sees': 1,
          'another': 1,
          'engage': 1,
          'passionate': 1,
          'foreplay': 1,
          'ntheir': 1,
          'game': 1,
          'love': 1,
          'quickly': 1,
          'turns': 1,
          'violent': 1,
          'struggle': 1,
          'starts': 1,
          'beating': 1,
          'nin': 1,
          'self': 1,
          'defense': 1,
          'grabs': 1,
          'letteropener': 1,
          'stabs': 1,
          'elbow': 1,
          'nshe': 1,
          'raises': 1,
          'arm': 1,
          'stab': 1,
          'fatally': 1,
          'shot': 1,
          'united': 1,
          'states': 1,
          'america': 1,
          'nwhere': 1,
          'go': 1,
          'wrong': 1,
          'acting': 1,
          'nclint': 1,
          'ed': 1,
          'harris': 1,
          'gene': 1,
          'hackman': 1,
          'give': 1,
          'typecast': 1,
          'decent': 1,
          'performances': 1,
          'cinematography': 1,
          'sufficient': 1,
          'wild': 1,
          'erratic': 1,
          'action': 1,
          'sequences': 1,
          'dark': 1,
          'mysterious': 1,
          'psychologically': 1,
          'suspenseful': 1,
          'scenes': 1,
          'calm': 1,
          'warm': 1,
          'dialogue': 1,
          'neven': 1,
          'music': 1,
          'bombastic': 1,
          'usually': 1,
          'tends': 1,
          'thrillersuspense': 1,
          'genre': 1,
          'fault': 1,
          'clearly': 1,
          'lies': 1,
          'alone': 1,
          'setting': 1,
          'misuse': 1,
          'true': 1,
          'possessors': 1,
          'intrigue': 1,
          'doublecrossing': 1,
          'resolve': 1,
          'climax': 1,
          'nrather': 1,
          'situations': 1,
          'left': 1,
          'dangling': 1,
          'viewer': 1,
          'uneasy': 1,
          'sense': 1,
          'incompleteness': 1,
          'nan': 1,
          'example': 1,
          'promising': 1,
          'attempt': 1,
          'arrest': 1,
          'small': 1,
          'restaurant': 1,
          'npolice': 1,
          'officers': 1,
          'everywhere': 1,
          'incognito': 1,
          'nat': 1,
          'time': 1,
          'kill': 1,
          'nall': 1,
          'three': 1,
          'parties': 1,
          'unaware': 1,
          'others': 1,
          'presence': 1,
          'nthis': 1,
          'tremendously': 1,
          'wondering': 1,
          'might': 1,
          'suspect': 1,
          'difficult': 1,
          'position': 1,
          'probably': 1,
          'plan': 1,
          'involving': 1,
          'ingenious': 1,
          'preparations': 1,
          'miss': 1,
          'confusion': 1,
          'walks': 1,
          'away': 1,
          'took': 1,
          'ten': 1,
          'nten': 1,
          'close': 1,
          'ups': 1,
          'loading': 1,
          'weapons': 1,
          'intercut': 1,
          'less': 1,
          '20': 1,
          'seconds': 1,
          'nparallel': 1,
          'catching': 1,
          'real': 1,
          'killer': 1,
          'cliche': 1,
          'emotional': 1,
          'tale': 1,
          'estranged': 1,
          'blames': 1,
          'never': 1,
          'either': 1,
          'jail': 1,
          'house': 1,
          'somewhere': 1,
          'nof': 1,
          'takes': 1,
          'turn': 1,
          'better': 1,
          'adventure': 1,
          'happy': 1,
          'family': 1,
          'nagain': 1,
          'commendable': 1,
          'tries': 1,
          'deviate': 1,
          'mainstream': 1,
          'room': 1,
          'subplot': 1,
          'trying': 1,
          'second': 1,
          'subtle': 1,
          'original': 1,
          'preferably': 1,
          'unpredictable': 1,
          'neverything': 1,
          'funding': 1,
          'successfully': 1,
          'many': 1,
          'outstanding': 1,
          'films': 1,
          'unforgiven': 1,
          'believe': 1,
          'project': 1,
          'ni': 1,
          'sad': 1,
          'say': 1,
          'respect': 1,
          'actordirectorproducer': 1,
          'diminished': 1,
          'substantially': 1,
          'due': 1,
          'quentin': 1,
          'tarantino': 1,
          'said': 1,
          'make': 1,
          'good': 1,
          'movie': 1,
          'bad': 1,
          'obviously': 1,
          'nneg': 1}),
 Counter({'phone': 9,
          'movie': 6,
          'get': 5,
          'characters': 5,
          'n': 5,
          'calls': 4,
          'nthe': 4,
          'friends': 4,
          'net': 3,
          'despite': 3,
          'moments': 3,
          'enough': 3,
          'ever': 2,
          'web': 2,
          'nthat': 2,
          'relationships': 2,
          'best': 2,
          'sex': 2,
          'would': 2,
          'nas': 2,
          'talking': 2,
          'ndenise': 2,
          'funny': 2,
          'one': 2,
          'callwaiting': 2,
          'answering': 2,
          'denise': 2,
          'idea': 2,
          'good': 2,
          'still': 2,
          'nand': 2,
          'salwens': 2,
          'movies': 2,
          'party': 2,
          'going': 2,
          'martin': 2,
          'courtesy': 2,
          'barbara': 2,
          'cordless': 2,
          'everyone': 2,
          'friend': 2,
          'gales': 2,
          'appears': 2,
          'feel': 1,
          'youre': 1,
          'spending': 1,
          'whole': 1,
          'life': 1,
          'ouch': 1,
          'eating': 1,
          'breathing': 1,
          'excreting': 1,
          'sites': 1,
          'meaningful': 1,
          'formed': 1,
          'nif': 1,
          'firsttime': 1,
          'director': 1,
          'hal': 1,
          'salwen': 1,
          'could': 1,
          'shoot': 1,
          'entire': 1,
          'typing': 1,
          'computers': 1,
          'settles': 1,
          'electronic': 1,
          'generation': 1,
          'caught': 1,
          'work': 1,
          'insecurities': 1,
          'prefer': 1,
          'live': 1,
          'fantasies': 1,
          'nits': 1,
          'satire': 1,
          'sometimes': 1,
          'let': 1,
          'handphones': 1,
          'machines': 1,
          'run': 1,
          'lives': 1,
          'problem': 1,
          'na': 1,
          'darn': 1,
          '80': 1,
          'minutelong': 1,
          'attempt': 1,
          'plots': 1,
          'subplots': 1,
          'genuinely': 1,
          'predict': 1,
          'outcome': 1,
          'within': 1,
          'first': 1,
          'fifteen': 1,
          'minutes': 1,
          'nyou': 1,
          'drift': 1,
          'series': 1,
          'shots': 1,
          'explaining': 1,
          'couldnt': 1,
          'make': 1,
          'nobody': 1,
          'meeting': 1,
          'anybody': 1,
          'film': 1,
          'rather': 1,
          'nheres': 1,
          'plot': 1,
          'dysfunctional': 1,
          'telefixated': 1,
          'limbo': 1,
          'loud': 1,
          'quirky': 1,
          'stranger': 1,
          'announce': 1,
          'pregnant': 1,
          'child': 1,
          'sperm': 1,
          'donated': 1,
          'local': 1,
          'bank': 1,
          'progresses': 1,
          'slamming': 1,
          'long': 1,
          'conversations': 1,
          'babys': 1,
          'name': 1,
          'involved': 1,
          'doublelines': 1,
          'nin': 1,
          'tigher': 1,
          'tantalizing': 1,
          'subplot': 1,
          'jerry': 1,
          'set': 1,
          'blind': 1,
          'date': 1,
          'neither': 1,
          'turns': 1,
          'nboth': 1,
          'profess': 1,
          'complicated': 1,
          'schedules': 1,
          'meet': 1,
          'nwith': 1,
          'repeated': 1,
          'comes': 1,
          'glitch': 1,
          'person': 1,
          'simply': 1,
          'faking': 1,
          'scores': 1,
          'inspired': 1,
          'nmousy': 1,
          'metamorphoses': 1,
          'vamp': 1,
          'shares': 1,
          'excitement': 1,
          'denises': 1,
          'delivery': 1,
          'conference': 1,
          'call': 1,
          'handphone': 1,
          'barbaras': 1,
          'gale': 1,
          'killed': 1,
          'car': 1,
          'accident': 1,
          'taling': 1,
          'animatedly': 1,
          'another': 1,
          'machine': 1,
          'overlychatty': 1,
          'aunt': 1,
          'recounts': 1,
          'knicked': 1,
          'ear': 1,
          'lodged': 1,
          'brain': 1,
          'nbut': 1,
          'sustain': 1,
          'pace': 1,
          'sags': 1,
          'dialogue': 1,
          'drags': 1,
          'much': 1,
          'acting': 1,
          'required': 1,
          'telephonetouters': 1,
          'ending': 1,
          'literally': 1,
          'nonevent': 1,
          'expected': 1,
          'chicken': 1,
          'turn': 1,
          'frank': 1,
          'throws': 1,
          'memory': 1,
          'promising': 1,
          'nwe': 1,
          'point': 1,
          'intent': 1,
          'flogging': 1,
          'terribly90s': 1,
          'statement': 1,
          'coming': 1,
          'ears': 1,
          'npun': 1,
          'intended': 1,
          'ntheres': 1,
          'even': 1,
          'site': 1,
          'win': 1,
          'cellular': 1,
          'phones': 1,
          'havent': 1,
          'things': 1,
          'already': 1,
          'nwatch': 1,
          'find': 1,
          'philosophy': 1,
          'compelling': 1,
          'earful': 1,
          'flying': 1,
          'inkpots': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'video': 1,
          'little': 1,
          'creaky': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'nthe': 12,
          'film': 8,
          'one': 5,
          'first': 5,
          'movie': 5,
          'book': 4,
          'shadows': 4,
          'blair': 4,
          'witch': 4,
          'neven': 4,
          'old': 4,
          'cute': 4,
          'chick': 4,
          'na': 3,
          'inevitable': 3,
          'nwe': 3,
          'nits': 3,
          'big': 3,
          'sequel': 3,
          'n': 3,
          'real': 3,
          'would': 3,
          'woods': 3,
          'people': 3,
          'unaccomplished': 3,
          'actors': 3,
          'michael': 2,
          'redman': 2,
          '2000': 2,
          'lives': 2,
          'know': 2,
          'even': 2,
          'always': 2,
          'nin': 2,
          'story': 2,
          'doesnt': 2,
          'project': 2,
          'made': 2,
          'screen': 2,
          'lightning': 2,
          'bottle': 2,
          'new': 2,
          'nit': 2,
          'easy': 2,
          'group': 2,
          'kids': 2,
          'night': 2,
          'stuff': 2,
          'happens': 2,
          'research': 2,
          'house': 2,
          'bad': 2,
          'promise': 2,
          'films': 2,
          'across': 2,
          'hours': 2,
          'see': 2,
          'triumph': 2,
          'remained': 1,
          'nbook': 1,
          '2': 1,
          'review': 1,
          'copyright': 1,
          'ncertain': 1,
          'things': 1,
          'ndeath': 1,
          'sorrow': 1,
          'love': 1,
          'heartbreak': 1,
          'pain': 1,
          'joy': 1,
          'expect': 1,
          'events': 1,
          'theyre': 1,
          'going': 1,
          'happen': 1,
          'look': 1,
          'forward': 1,
          'part': 1,
          'human': 1,
          'condition': 1,
          'also': 1,
          'become': 1,
          'accustomed': 1,
          'occurrences': 1,
          'society': 1,
          'nas': 1,
          'near': 1,
          'fall': 1,
          'election': 1,
          'several': 1,
          'hitting': 1,
          'us': 1,
          'face': 1,
          'npoliticians': 1,
          'exaggerate': 1,
          'importance': 1,
          'nour': 1,
          'side': 1,
          'right': 1,
          'wrong': 1,
          'end': 1,
          'voters': 1,
          'usually': 1,
          'forced': 1,
          'choose': 1,
          'lesser': 1,
          'two': 1,
          'whocares': 1,
          'hollywood': 1,
          'indisputable': 1,
          'makes': 1,
          'money': 1,
          'original': 1,
          'merit': 1,
          'complete': 1,
          'success': 1,
          'fluke': 1,
          'budget': 1,
          '1': 1,
          '75': 1,
          'exploded': 1,
          'raking': 1,
          'huge': 1,
          'profits': 1,
          'concept': 1,
          'brilliant': 1,
          'filmmakers': 1,
          'created': 1,
          'remarkable': 1,
          'buzz': 1,
          'might': 1,
          'convincing': 1,
          '_must_': 1,
          'authentic': 1,
          'nwhy': 1,
          'else': 1,
          'amateurish': 1,
          'footage': 1,
          'caught': 1,
          'proves': 1,
          'cant': 1,
          'pour': 1,
          'nyou': 1,
          'give': 1,
          'effort': 1,
          'credit': 1,
          'course': 1,
          'wouldnt': 1,
          'worked': 1,
          'ninstead': 1,
          'acknowledges': 1,
          'concentrates': 1,
          'hysteria': 1,
          'following': 1,
          'release': 1,
          'great': 1,
          'scheme': 1,
          'possibly': 1,
          'entertaining': 1,
          'way': 1,
          'nunfortunately': 1,
          'work': 1,
          'either': 1,
          'nfive': 1,
          'spend': 1,
          'scene': 1,
          'nweird': 1,
          'retreat': 1,
          'factory': 1,
          'weirder': 1,
          'nsome': 1,
          'die': 1,
          'theres': 1,
          'blood': 1,
          'knives': 1,
          'none': 1,
          'characters': 1,
          'lick': 1,
          'common': 1,
          'sense': 1,
          'nwhile': 1,
          'supposedly': 1,
          'serious': 1,
          'sets': 1,
          'circle': 1,
          'surveillance': 1,
          'cameras': 1,
          'ruins': 1,
          'vows': 1,
          'stay': 1,
          'alert': 1,
          'awaiting': 1,
          'visitation': 1,
          'nthen': 1,
          'proceed': 1,
          'get': 1,
          'totally': 1,
          'trashed': 1,
          'drugs': 1,
          'alcohol': 1,
          'party': 1,
          'loud': 1,
          'obnoxious': 1,
          'heavy': 1,
          'metal': 1,
          'music': 1,
          'plan': 1,
          'cast': 1,
          'shows': 1,
          'early': 1,
          'couple': 1,
          'tour': 1,
          'guide': 1,
          'former': 1,
          'mental': 1,
          'patient': 1,
          'turned': 1,
          'ebay': 1,
          'aficionado': 1,
          'goth': 1,
          'amazon': 1,
          'princess': 1,
          'adds': 1,
          'bit': 1,
          'comedic': 1,
          'relief': 1,
          'obligatory': 1,
          'hot': 1,
          'babe': 1,
          'spiritual': 1,
          'cinematic': 1,
          'descendent': 1,
          'hippie': 1,
          'rock': 1,
          'roll': 1,
          'disco': 1,
          'wiccan': 1,
          'came': 1,
          'situation': 1,
          'video': 1,
          'shot': 1,
          'days': 1,
          'nthis': 1,
          'time': 1,
          'come': 1,
          'ntheres': 1,
          'character': 1,
          'care': 1,
          'start': 1,
          'shouting': 1,
          'reason': 1,
          'nalthough': 1,
          'passes': 1,
          'plot': 1,
          'starts': 1,
          'solid': 1,
          'idea': 1,
          'ruined': 1,
          'poor': 1,
          'execution': 1,
          'followup': 1,
          'successful': 1,
          'horror': 1,
          'ever': 1,
          'nothing': 1,
          'slasher': 1,
          'ntheyre': 1,
          'trapped': 1,
          'weird': 1,
          'nthey': 1,
          'stupidly': 1,
          'separate': 1,
          'various': 1,
          'rooms': 1,
          'nthere': 1,
          'strange': 1,
          'noises': 1,
          'scary': 1,
          'apparitions': 1,
          'disappear': 1,
          'never': 1,
          'nseasoned': 1,
          'documentary': 1,
          'director': 1,
          'joe': 1,
          'berlinger': 1,
          'better': 1,
          'features': 1,
          'mostly': 1,
          'cheap': 1,
          'tricks': 1,
          'unnecessary': 1,
          'gore': 1,
          'nfor': 1,
          'storyline': 1,
          'filled': 1,
          'surprises': 1,
          'oddly': 1,
          'predicable': 1,
          'rare': 1,
          'style': 1,
          'substance': 1,
          'tedium': 1,
          'nneg': 1}),
 Counter({'nthe': 9,
          'town': 6,
          'country': 6,
          'get': 5,
          'film': 5,
          'porter': 4,
          'beatty': 3,
          'sexual': 3,
          'great': 3,
          'wealthy': 3,
          'time': 3,
          'never': 3,
          'nbut': 3,
          'life': 3,
          'hollywood': 3,
          'griffin': 3,
          'like': 3,
          'doesnt': 3,
          'diane': 2,
          'keaton': 2,
          'goldie': 2,
          'hawn': 2,
          'shandling': 2,
          'pair': 2,
          'romantic': 2,
          'comedy': 2,
          'farce': 2,
          'deal': 2,
          'impossibly': 2,
          'much': 2,
          'free': 2,
          'would': 2,
          'end': 2,
          'see': 2,
          'story': 2,
          'kind': 2,
          'people': 2,
          'script': 2,
          'naught': 2,
          'nand': 2,
          'nporter': 2,
          'nhis': 2,
          'ellie': 2,
          'surface': 2,
          'best': 2,
          'friends': 2,
          'mona': 2,
          'ni': 2,
          'around': 2,
          'character': 2,
          'problems': 2,
          'know': 2,
          'want': 2,
          'cast': 2,
          'given': 2,
          'material': 2,
          'anyway': 2,
          'one': 2,
          'movie': 2,
          'production': 2,
          'warren': 1,
          'gary': 1,
          'star': 1,
          'married': 1,
          'couples': 1,
          'whose': 1,
          'complacent': 1,
          'lives': 1,
          'shaken': 1,
          'director': 1,
          'peter': 1,
          'chelsoms': 1,
          'version': 1,
          'classic': 1,
          'screwball': 1,
          'drawing': 1,
          'room': 1,
          '30s': 1,
          'dealt': 1,
          'innuendo': 1,
          'relied': 1,
          'wit': 1,
          'commotion': 1,
          'noise': 1,
          'place': 1,
          'viewer': 1,
          'thick': 1,
          'duplicitous': 1,
          'action': 1,
          'nback': 1,
          'scions': 1,
          'society': 1,
          'wrapped': 1,
          'sorts': 1,
          'peccadilloes': 1,
          'spouses': 1,
          'lovers': 1,
          'everything': 1,
          'come': 1,
          'right': 1,
          'philadelphia': 1,
          'n': 1,
          'protagonists': 1,
          'jobs': 1,
          'seem': 1,
          'work': 1,
          'misconduct': 1,
          'several': 1,
          'levels': 1,
          'almost': 1,
          'original': 1,
          'michael': 1,
          'laughlin': 1,
          'buck': 1,
          'henry': 1,
          'tcs': 1,
          'downfall': 1,
          'nthere': 1,
          'obviously': 1,
          'talent': 1,
          'front': 1,
          'behind': 1,
          'camera': 1,
          'involved': 1,
          'without': 1,
          'likable': 1,
          'least': 1,
          'interesting': 1,
          'carry': 1,
          'efforts': 1,
          'thats': 1,
          'stoddard': 1,
          'highpowered': 1,
          'new': 1,
          'york': 1,
          'architect': 1,
          'good': 1,
          'indeed': 1,
          '25year': 1,
          'marriage': 1,
          'appears': 1,
          'perfect': 1,
          'cracks': 1,
          'pristine': 1,
          'wife': 1,
          'suspicious': 1,
          'whereabouts': 1,
          'kids': 1,
          'dont': 1,
          'need': 1,
          'garry': 1,
          'midst': 1,
          'divorce': 1,
          'tries': 1,
          'control': 1,
          'late': 1,
          'man': 1,
          'fighting': 1,
          'quicksand': 1,
          'struggle': 1,
          'sinks': 1,
          'deeper': 1,
          'nat': 1,
          '90minute': 1,
          'mark': 1,
          'asked': 1,
          'whats': 1,
          'point': 1,
          'wasnt': 1,
          'entertained': 1,
          'laughed': 1,
          'three': 1,
          'times': 1,
          'silly': 1,
          'little': 1,
          'pratfalls': 1,
          'spent': 1,
          'marking': 1,
          'til': 1,
          'nwarren': 1,
          'wanders': 1,
          'bewildered': 1,
          'fog': 1,
          'making': 1,
          'thinking': 1,
          'part': 1,
          'anatomy': 1,
          'head': 1,
          'nkeatons': 1,
          'empty': 1,
          'headed': 1,
          'flake': 1,
          'cant': 1,
          'obvious': 1,
          'screws': 1,
          'supporting': 1,
          'nothing': 1,
          'sometimes': 1,
          'harm': 1,
          'forced': 1,
          'use': 1,
          'nnastassja': 1,
          'kinski': 1,
          'plays': 1,
          'cellist': 1,
          'fling': 1,
          'actress': 1,
          'eerily': 1,
          'failed': 1,
          'age': 1,
          'years': 1,
          'miscast': 1,
          'airheaded': 1,
          'musician': 1,
          'belong': 1,
          'njenna': 1,
          'elfman': 1,
          'sweet': 1,
          'smart': 1,
          'ditz': 1,
          'joins': 1,
          'tacked': 1,
          'misadventures': 1,
          'nandie': 1,
          'macdowell': 1,
          'absolutely': 1,
          'painful': 1,
          'watch': 1,
          'heiress': 1,
          'nwho': 1,
          'comes': 1,
          'saving': 1,
          'grace': 1,
          'quirky': 1,
          'perfs': 1,
          'charlton': 1,
          'heston': 1,
          'marian': 1,
          'seldes': 1,
          'macdowells': 1,
          'strange': 1,
          'parents': 1,
          'nglib': 1,
          'rationalization': 1,
          'infidelity': 1,
          'speak': 1,
          'english': 1,
          'count': 1,
          'staple': 1,
          'screenplay': 1,
          'morality': 1,
          'seems': 1,
          'away': 1,
          'go': 1,
          'characters': 1,
          'mostly': 1,
          'wouldnt': 1,
          'mind': 1,
          'befriend': 1,
          'actors': 1,
          'hamstrung': 1,
          'weak': 1,
          'nhelmer': 1,
          'chelsom': 1,
          'made': 1,
          'outstanding': 1,
          'offbeat': 1,
          'funny': 1,
          'bones': 1,
          'mired': 1,
          'mess': 1,
          'puts': 1,
          'imprint': 1,
          'values': 1,
          'high': 1,
          'expects': 1,
          'big': 1,
          'budget': 1,
          'opulent': 1,
          'sets': 1,
          'caroline': 1,
          'hanania': 1,
          'lavish': 1,
          'wardrobes': 1,
          'molly': 1,
          'maginnis': 1,
          'topnotch': 1,
          'photography': 1,
          'william': 1,
          'fraker': 1,
          'save': 1,
          'long': 1,
          'list': 1,
          'distribution': 1,
          'might': 1,
          'better': 1,
          'said': 1,
          'give': 1,
          'nneg': 1}),
 Counter({'ship': 9,
          'hackman': 6,
          'scene': 5,
          'poseidon': 4,
          'adventure': 4,
          'movie': 4,
          'nthe': 4,
          'new': 4,
          'years': 3,
          'people': 3,
          'see': 3,
          'buttons': 3,
          'winters': 3,
          'ballroom': 3,
          'top': 3,
          'water': 3,
          'borgnine': 2,
          'cruise': 2,
          'begins': 2,
          'theres': 2,
          'ntheres': 2,
          'stevens': 2,
          'hippie': 2,
          'turns': 2,
          'man': 2,
          'red': 2,
          'brother': 2,
          'albertson': 2,
          'live': 2,
          'beautiful': 2,
          'get': 2,
          'first': 2,
          'giant': 2,
          'bottom': 2,
          'way': 2,
          'two': 2,
          'scenes': 2,
          'rooms': 2,
          'nits': 2,
          'one': 2,
          'even': 2,
          'swimming': 2,
          'three': 2,
          'seventeen': 2,
          'much': 2,
          'crown': 1,
          'jewel': 1,
          '1970s': 1,
          'irwin': 1,
          'allen': 1,
          'disaster': 1,
          'movies': 1,
          'features': 1,
          'allstar': 1,
          'cast': 1,
          'including': 1,
          'gene': 1,
          'ernest': 1,
          'spouting': 1,
          'laughable': 1,
          'dramatic': 1,
          'dialogue': 1,
          'history': 1,
          'trapped': 1,
          'story': 1,
          'u': 1,
          'nposeidons': 1,
          'big': 1,
          'introduced': 1,
          'ensemble': 1,
          'soon': 1,
          'passengers': 1,
          'left': 1,
          'alive': 1,
          'nlets': 1,
          'age': 1,
          'preacher': 1,
          'advises': 1,
          'pray': 1,
          'part': 1,
          'god': 1,
          'within': 1,
          'excop': 1,
          'busted': 1,
          'hooker': 1,
          'stella': 1,
          'six': 1,
          'times': 1,
          'married': 1,
          'singer': 1,
          'got': 1,
          'morning': 1,
          'company': 1,
          'lonely': 1,
          'killed': 1,
          'nand': 1,
          'round': 1,
          'group': 1,
          'elderly': 1,
          'couple': 1,
          'jack': 1,
          'shelley': 1,
          'aboard': 1,
          'teenage': 1,
          'girl': 1,
          'sailing': 1,
          'alone': 1,
          'adventurous': 1,
          'scotsman': 1,
          'roddy': 1,
          'mcdowall': 1,
          'nwe': 1,
          'know': 1,
          'little': 1,
          'well': 1,
          'thirty': 1,
          'minutes': 1,
          'straight': 1,
          'faced': 1,
          'captain': 1,
          'leslie': 1,
          'nielson': 1,
          'looks': 1,
          'horror': 1,
          'tidal': 1,
          'wave': 1,
          'headed': 1,
          'right': 1,
          'neveryones': 1,
          'time': 1,
          'shortly': 1,
          'past': 1,
          'midnight': 1,
          'year': 1,
          'side': 1,
          'completely': 1,
          'upside': 1,
          'second': 1,
          'incommand': 1,
          'wants': 1,
          'everyone': 1,
          'wait': 1,
          'help': 1,
          'arrives': 1,
          'rebel': 1,
          'leads': 1,
          'small': 1,
          'band': 1,
          'followers': 1,
          'quest': 1,
          'nin': 1,
          'case': 1,
          'overturned': 1,
          'neither': 1,
          'lot': 1,
          'bottoms': 1,
          'women': 1,
          'crew': 1,
          'conveniently': 1,
          'wearing': 1,
          'hot': 1,
          'pants': 1,
          'camera': 1,
          'shoots': 1,
          'upwards': 1,
          'climb': 1,
          'ladders': 1,
          'christmas': 1,
          'trees': 1,
          'nthus': 1,
          'hour': 1,
          'hushed': 1,
          'trips': 1,
          'long': 1,
          'corridors': 1,
          'burning': 1,
          'etc': 1,
          'slowly': 1,
          'fills': 1,
          'behind': 1,
          'race': 1,
          'clock': 1,
          'mildly': 1,
          'interesting': 1,
          'works': 1,
          'bad': 1,
          'laugh': 1,
          'melodrama': 1,
          'comes': 1,
          'inbetween': 1,
          'nonthrilling': 1,
          'action': 1,
          'note': 1,
          'borgnines': 1,
          'onenote': 1,
          'performance': 1,
          'cranky': 1,
          'old': 1,
          'argues': 1,
          'every': 1,
          'step': 1,
          'fall': 1,
          'love': 1,
          'although': 1,
          'since': 1,
          'isnt': 1,
          'sex': 1,
          'never': 1,
          'find': 1,
          'really': 1,
          'wonder': 1,
          'theyll': 1,
          'grandsons': 1,
          'birth': 1,
          'nshelley': 1,
          'provides': 1,
          'hilarious': 1,
          'toward': 1,
          'end': 1,
          'flooded': 1,
          'next': 1,
          'preparing': 1,
          'dive': 1,
          'rope': 1,
          'rest': 1,
          'pull': 1,
          'along': 1,
          'nwinters': 1,
          'whiny': 1,
          'fat': 1,
          'woman': 1,
          'throughout': 1,
          'notso': 1,
          'affectionately': 1,
          'calls': 1,
          'fatass': 1,
          'finally': 1,
          'finds': 1,
          'purpose': 1,
          'n': 1,
          'underwater': 1,
          'champ': 1,
          'york': 1,
          'running': 1,
          'brags': 1,
          'ask': 1,
          'could': 1,
          'shes': 1,
          'skirt': 1,
          'billowing': 1,
          'around': 1,
          'hips': 1,
          'showing': 1,
          'cellulite': 1,
          'call': 1,
          'shellulite': 1,
          'nridden': 1,
          'thighs': 1,
          'funny': 1,
          'innately': 1,
          'disgusting': 1,
          'pretty': 1,
          'sums': 1,
          'whole': 1,
          'nneg': 1}),
 Counter({'loser': 10,
          'heckerling': 6,
          'paul': 6,
          'guy': 4,
          'npaul': 4,
          'alcott': 4,
          'film': 4,
          'comic': 4,
          'characters': 4,
          'casting': 3,
          'nin': 3,
          'found': 3,
          'nshe': 3,
          'like': 3,
          'appealing': 3,
          'kind': 3,
          'dora': 3,
          'professor': 3,
          'even': 3,
          'scenes': 3,
          'nice': 3,
          'arent': 3,
          'ninstead': 3,
          'would': 3,
          'isnt': 3,
          'amy': 2,
          'heckerlings': 2,
          'us': 2,
          'clueless': 2,
          'understand': 2,
          'may': 2,
          'also': 2,
          'ngiving': 2,
          'actors': 2,
          'script': 2,
          'makes': 2,
          'films': 2,
          'swell': 2,
          'biggs': 2,
          'boy': 2,
          'finds': 2,
          'gives': 2,
          'roommates': 2,
          'suvari': 2,
          'slightly': 2,
          'ntheyre': 2,
          'two': 2,
          'kids': 2,
          'love': 2,
          'people': 2,
          'ni': 2,
          'make': 2,
          'watch': 2,
          'establishing': 2,
          'theres': 2,
          'situations': 2,
          'shows': 2,
          'turns': 2,
          'character': 2,
          'hes': 2,
          'giving': 2,
          'nand': 2,
          'manipulative': 2,
          'one': 2,
          'exaggerations': 2,
          'somehow': 2,
          'hope': 2,
          'sequence': 2,
          'hall': 2,
          'watching': 1,
          'occurred': 1,
          'true': 1,
          'genius': 1,
          'filmmaker': 1,
          'fast': 1,
          'times': 1,
          'ridgemont': 1,
          'high': 1,
          'gave': 1,
          'sean': 1,
          'penns': 1,
          'jeff': 1,
          'spicoli': 1,
          'look': 1,
          'whos': 1,
          'talking': 1,
          'turned': 1,
          'bruce': 1,
          'willis': 1,
          'wisecracking': 1,
          'baby': 1,
          'provided': 1,
          'john': 1,
          'travolta': 1,
          'first': 1,
          'career': 1,
          'revival': 1,
          'star': 1,
          'vehicle': 1,
          'adorableness': 1,
          'alicia': 1,
          'silverstone': 1,
          'seems': 1,
          'instinctively': 1,
          'find': 1,
          'performers': 1,
          'audience': 1,
          'spite': 1,
          'flaws': 1,
          'nunfortunately': 1,
          'starting': 1,
          'understands': 1,
          'creates': 1,
          'likeable': 1,
          'movies': 1,
          'appeal': 1,
          '_is_': 1,
          'movie': 1,
          'unexpectedly': 1,
          'awful': 1,
          'nnaturally': 1,
          'protagonist': 1,
          'allaround': 1,
          'tannek': 1,
          'jason': 1,
          'smalltown': 1,
          'gets': 1,
          'scholarship': 1,
          'nyu': 1,
          'instantly': 1,
          'island': 1,
          'compassion': 1,
          'diligence': 1,
          'coldhearted': 1,
          'big': 1,
          'city': 1,
          'seat': 1,
          'subway': 1,
          'elderly': 1,
          'woman': 1,
          'adam': 1,
          'zak': 1,
          'orth': 1,
          'chris': 1,
          'tom': 1,
          'sadoski': 1,
          'noah': 1,
          'jimmi': 1,
          'simpson': 1,
          'guys': 1,
          'blast': 1,
          'music': 1,
          'let': 1,
          'waterbeds': 1,
          'leak': 1,
          'adores': 1,
          'girls': 1,
          'afar': 1,
          'case': 1,
          'lovely': 1,
          'diamond': 1,
          'mena': 1,
          'ndora': 1,
          'problems': 1,
          'including': 1,
          'shortage': 1,
          'funds': 1,
          'pay': 1,
          'tuition': 1,
          'relationship': 1,
          'edward': 1,
          'greg': 1,
          'kinnear': 1,
          'thats': 1,
          'onesided': 1,
          'conscientious': 1,
          'animals': 1,
          'homeless': 1,
          'clearly': 1,
          'belong': 1,
          'together': 1,
          'must': 1,
          'confess': 1,
          'suckered': 1,
          'njason': 1,
          'engaging': 1,
          'performer': 1,
          'whose': 1,
          'unconventional': 1,
          'looks': 1,
          'easier': 1,
          'embrace': 1,
          'coquette': 1,
          'undercurrent': 1,
          'intelligence': 1,
          'pleasant': 1,
          'enough': 1,
          'plenty': 1,
          'respective': 1,
          'antagonists': 1,
          'nthen': 1,
          'gradually': 1,
          'becomes': 1,
          'clear': 1,
          'virtually': 1,
          'nothing': 1,
          'sort': 1,
          'theory': 1,
          'romantic': 1,
          'comedy': 1,
          'scarcely': 1,
          'laugh': 1,
          'entire': 1,
          'notable': 1,
          'exception': 1,
          'cameo': 1,
          'scenestealing': 1,
          'actor': 1,
          'video': 1,
          'store': 1,
          'clerk': 1,
          'taking': 1,
          'time': 1,
          'funny': 1,
          'spends': 1,
          '98': 1,
          'minutes': 1,
          'making': 1,
          'pathetic': 1,
          'none': 1,
          'ear': 1,
          'quirky': 1,
          'dialogue': 1,
          'sparked': 1,
          'interest': 1,
          'lively': 1,
          'plotting': 1,
          'surprisingly': 1,
          'since': 1,
          'cluelesss': 1,
          'plot': 1,
          'came': 1,
          'via': 1,
          'jane': 1,
          'austens': 1,
          'emma': 1,
          'simply': 1,
          'pity': 1,
          'party': 1,
          'nsince': 1,
          'composed': 1,
          'almost': 1,
          'entirely': 1,
          'might': 1,
          'think': 1,
          'interesting': 1,
          'least': 1,
          'complicated': 1,
          'either': 1,
          'perfect': 1,
          'unredeemable': 1,
          'reason': 1,
          'flawless': 1,
          'consequently': 1,
          'central': 1,
          'absolutely': 1,
          'growing': 1,
          'nhis': 1,
          'inconsiderate': 1,
          'theyre': 1,
          'actively': 1,
          'evilblackmailing': 1,
          'drugging': 1,
          'women': 1,
          'rohypnol': 1,
          'generally': 1,
          'humanity': 1,
          'bad': 1,
          'name': 1,
          'house': 1,
          'slave': 1,
          'ndoras': 1,
          'unthinking': 1,
          'devotion': 1,
          'whiff': 1,
          'basic': 1,
          'human': 1,
          'frailty': 1,
          'explored': 1,
          'sufficient': 1,
          'detail': 1,
          'ntheres': 1,
          'ambiguity': 1,
          '30second': 1,
          'snippet': 1,
          'alan': 1,
          'cummings': 1,
          'broadway': 1,
          'performance': 1,
          'emcee': 1,
          'cabaret': 1,
          'rest': 1,
          'thing': 1,
          'turn': 1,
          'supporting': 1,
          'another': 1,
          'flatten': 1,
          'leads': 1,
          'easily': 1,
          'digestible': 1,
          'mush': 1,
          'help': 1,
          'dont': 1,
          'know': 1,
          'ncomic': 1,
          'nstill': 1,
          'spent': 1,
          'much': 1,
          'holding': 1,
          'ridiculous': 1,
          'salvage': 1,
          'tedium': 1,
          'justify': 1,
          'desire': 1,
          'nthat': 1,
          'dissolved': 1,
          'moment': 1,
          'underscored': 1,
          'throes': 1,
          'unrequited': 1,
          'simon': 1,
          'garfunkels': 1,
          'scarborough': 1,
          'faircanticle': 1,
          'knowing': 1,
          'winka': 1,
          'reference': 1,
          'graduate': 1,
          'hint': 1,
          'becoming': 1,
          'overlysensitive': 1,
          'clichheckerling': 1,
          'plays': 1,
          'deadly': 1,
          'straight': 1,
          'neven': 1,
          'scream': 1,
          'light': 1,
          'touch': 1,
          'bit': 1,
          'poke': 1,
          'protagonists': 1,
          'foibles': 1,
          'impossible': 1,
          'stray': 1,
          'gospel': 1,
          'saint': 1,
          'ncluelesss': 1,
          'cher': 1,
          'selfabsorption': 1,
          'tendencies': 1,
          'balance': 1,
          'cuteness': 1,
          'leaden': 1,
          'hand': 1,
          'material': 1,
          'demands': 1,
          'friskiness': 1,
          'show': 1,
          'wit': 1,
          'involves': 1,
          'naming': 1,
          'pauls': 1,
          'dorm': 1,
          'hunts': 1,
          'erstwhile': 1,
          'bowery': 1,
          'huntz': 1,
          'nher': 1,
          'gift': 1,
          'proved': 1,
          'curse': 1,
          'nloser': 1,
          'crashing': 1,
          'bore': 1,
          'gee': 1,
          'nneg': 1}),
 Counter({'n': 10,
          'john': 7,
          'baptist': 3,
          'newfoundland': 3,
          'sent': 2,
          'world': 2,
          'must': 2,
          'hope': 2,
          'nit': 2,
          '4': 2,
          'reason': 2,
          'one': 2,
          'result': 2,
          'like': 2,
          'capsule': 1,
          'heaven': 1,
          'see': 1,
          'worth': 1,
          'saving': 1,
          'nhe': 1,
          'find': 1,
          'sign': 1,
          'people': 1,
          'nthis': 1,
          'little': 1,
          'tv': 1,
          'skit': 1,
          'movie': 1,
          'form': 1,
          'watchable': 1,
          'apparently': 1,
          'released': 1,
          'theaters': 1,
          'canada': 1,
          'unlikely': 1,
          'seen': 1,
          'international': 1,
          'market': 1,
          'diverting': 1,
          'hardly': 1,
          'serious': 1,
          'piece': 1,
          'cinema': 1,
          '0': 1,
          'minor': 1,
          'spoilers': 1,
          'review': 1,
          'written': 1,
          'directed': 1,
          'w': 1,
          'doyle': 1,
          'st': 1,
          'ngets': 1,
          'invitation': 1,
          'live': 1,
          'family': 1,
          'nthat': 1,
          'extraordinary': 1,
          'hospitality': 1,
          'count': 1,
          'script': 1,
          'lot': 1,
          'holes': 1,
          'friend': 1,
          'adopts': 1,
          'surprisingly': 1,
          'militant': 1,
          'planning': 1,
          'actions': 1,
          'destabilize': 1,
          'wall': 1,
          'street': 1,
          'look': 1,
          'middle': 1,
          'eastern': 1,
          'somehow': 1,
          'expects': 1,
          'dramatic': 1,
          'conspiracy': 1,
          'vatican': 1,
          'riding': 1,
          'visit': 1,
          'though': 1,
          'seems': 1,
          'small': 1,
          'compared': 1,
          'end': 1,
          'big': 1,
          'yucks': 1,
          'seeing': 1,
          'nun': 1,
          'give': 1,
          'pope': 1,
          'pedicure': 1,
          'evil': 1,
          'popes': 1,
          'aid': 1,
          'praying': 1,
          'mendes': 1,
          'goat': 1,
          'large': 1,
          'part': 1,
          'satire': 1,
          'life': 1,
          'taking': 1,
          'licks': 1,
          'things': 1,
          'poor': 1,
          'produce': 1,
          'nthe': 1,
          'good': 1,
          'tomato': 1,
          'grocery': 1,
          'virtue': 1,
          'miracle': 1,
          'fallen': 1,
          'truck': 1,
          'toronto': 1,
          'based': 1,
          '20minute': 1,
          'short': 1,
          'film': 1,
          'nneg': 1}),
 Counter({'gadget': 8,
          'movie': 6,
          'inspector': 5,
          'go': 4,
          'one': 4,
          'features': 3,
          'make': 3,
          'trying': 3,
          'film': 3,
          'films': 3,
          'like': 3,
          'yet': 3,
          'john': 3,
          'save': 3,
          'father': 3,
          'good': 3,
          'really': 3,
          'slug': 3,
          'rule': 2,
          'try': 2,
          'liveaction': 2,
          'kids': 2,
          'entertainment': 2,
          'nthis': 2,
          'popular': 2,
          'worst': 2,
          'expensive': 2,
          'childrens': 2,
          'nit': 2,
          'running': 2,
          'time': 2,
          'nits': 2,
          'want': 2,
          'days': 2,
          'fancy': 2,
          'effects': 2,
          'long': 2,
          'dr': 2,
          'brenda': 2,
          'dream': 2,
          'would': 2,
          'becoming': 2,
          'kinds': 2,
          'bang': 2,
          'nin': 2,
          'evil': 2,
          'dollar': 2,
          'director': 2,
          'replaced': 2,
          'see': 2,
          'nthey': 2,
          'probably': 2,
          'ntheres': 2,
          'studios': 2,
          'death': 2,
          'script': 2,
          'could': 2,
          'disney': 1,
          'sticktowhatyoudobest': 1,
          'states': 1,
          'disneys': 1,
          'animated': 1,
          'invariably': 1,
          'sublime': 1,
          'whenever': 1,
          'hand': 1,
          'fail': 1,
          'miserably': 1,
          'goes': 1,
          'double': 1,
          'occasions': 1,
          'adaptation': 1,
          'cartoon': 1,
          'remember': 1,
          '1996': 1,
          'version': 1,
          '101': 1,
          'dalmations': 1,
          'nim': 1,
          'still': 1,
          'forget': 1,
          'nthat': 1,
          'proves': 1,
          'dependable': 1,
          'ever': 1,
          'insulting': 1,
          'despicable': 1,
          'piece': 1,
          'trash': 1,
          'pass': 1,
          'viable': 1,
          'bore': 1,
          'anyone': 1,
          'five': 1,
          'prove': 1,
          'unbearable': 1,
          'adults': 1,
          'even': 1,
          'relatively': 1,
          'skinny': 1,
          '80': 1,
          'minutes': 1,
          'local': 1,
          'blockbuster': 1,
          'rent': 1,
          'something': 1,
          'brains': 1,
          'important': 1,
          'budgets': 1,
          'wit': 1,
          'compensated': 1,
          'lack': 1,
          'njust': 1,
          'matthew': 1,
          'broderick': 1,
          'began': 1,
          'convince': 1,
          'hope': 1,
          'actor': 1,
          'career': 1,
          'takes': 1,
          'nosedive': 1,
          'hell': 1,
          'role': 1,
          'brown': 1,
          'depressed': 1,
          'security': 1,
          'guard': 1,
          'big': 1,
          'heart': 1,
          'hopes': 1,
          'day': 1,
          'become': 1,
          'real': 1,
          'policemen': 1,
          'help': 1,
          'people': 1,
          'around': 1,
          'nhe': 1,
          'dreams': 1,
          'heroic': 1,
          'deeds': 1,
          'subsequent': 1,
          'admiration': 1,
          'crush': 1,
          'bradford': 1,
          'joely': 1,
          'fisher': 1,
          'nbut': 1,
          'bizarre': 1,
          'coincidences': 1,
          'seems': 1,
          'longer': 1,
          'njohn': 1,
          'breaks': 1,
          'every': 1,
          'bone': 1,
          'body': 1,
          'brendas': 1,
          'ndr': 1,
          'working': 1,
          'project': 1,
          'halfman': 1,
          'halfmachine': 1,
          'superpoliceman': 1,
          'fight': 1,
          'crime': 1,
          'nfeeling': 1,
          'indebted': 1,
          'decides': 1,
          'life': 1,
          'making': 1,
          'subject': 1,
          'realizing': 1,
          'policeman': 1,
          'nnow': 1,
          'says': 1,
          'insert': 1,
          'name': 1,
          'gizmo': 1,
          'use': 1,
          'nifty': 1,
          'gadgets': 1,
          'capture': 1,
          'crooks': 1,
          'bandits': 1,
          'mangle': 1,
          'murderers': 1,
          'meantime': 1,
          'claw': 1,
          'rupert': 1,
          'everett': 1,
          'man': 1,
          'responsible': 1,
          'murder': 1,
          'doctors': 1,
          'building': 1,
          'carbon': 1,
          'copy': 1,
          'except': 1,
          'browns': 1,
          'nemesis': 1,
          'nclaw': 1,
          'plans': 1,
          'world': 1,
          'domination': 1,
          'leaves': 1,
          'mobile': 1,
          'voice': 1,
          'l': 1,
          'nhughley': 1,
          'humanity': 1,
          'wrath': 1,
          'nstate': 1,
          'art': 1,
          'fly': 1,
          'mad': 1,
          'pace': 1,
          '90': 1,
          'million': 1,
          'david': 1,
          'kelogg': 1,
          'never': 1,
          'sets': 1,
          'convincing': 1,
          'atmosphere': 1,
          'nhad': 1,
          'gizmos': 1,
          'bills': 1,
          'wound': 1,
          'effect': 1,
          'nwhat': 1,
          'screen': 1,
          'raw': 1,
          'ingredients': 1,
          'meal': 1,
          'fx': 1,
          'amounts': 1,
          'nothing': 1,
          'npart': 1,
          'charm': 1,
          'tv': 1,
          'series': 1,
          'sly': 1,
          'irreverence': 1,
          'gone': 1,
          'toilet': 1,
          'condescending': 1,
          'ncan': 1,
          'admire': 1,
          'hero': 1,
          'goodytwoshoes': 1,
          'screams': 1,
          'hey': 1,
          'nyou': 1,
          'ran': 1,
          'stop': 1,
          'sign': 1,
          'nwhile': 1,
          'hanging': 1,
          'back': 1,
          'bumper': 1,
          'quickly': 1,
          'moving': 1,
          'vehicle': 1,
          'ni': 1,
          'think': 1,
          'todays': 1,
          'children': 1,
          'respond': 1,
          'better': 1,
          'somebody': 1,
          'dashing': 1,
          'someone': 1,
          'ultracool': 1,
          'receive': 1,
          'enough': 1,
          'preaching': 1,
          'parents': 1,
          'insult': 1,
          'intelligence': 1,
          'assume': 1,
          'action': 1,
          'figure': 1,
          'kick': 1,
          'butt': 1,
          'addition': 1,
          'complex': 1,
          'complaints': 1,
          'theres': 1,
          'also': 1,
          'simple': 1,
          'stuff': 1,
          'boring': 1,
          'formulaic': 1,
          'achingly': 1,
          'implausible': 1,
          'feeling': 1,
          'cares': 1,
          'story': 1,
          'ive': 1,
          'seen': 1,
          'year': 1,
          'feels': 1,
          'made': 1,
          'assembly': 1,
          'line': 1,
          'commercial': 1,
          'sprite': 1,
          'thats': 1,
          'irrelevant': 1,
          'theaters': 1,
          'spoofs': 1,
          'way': 1,
          'major': 1,
          'deal': 1,
          'projects': 1,
          'consists': 1,
          'studio': 1,
          'suits': 1,
          'discussing': 1,
          'fictitious': 1,
          'thank': 1,
          'god': 1,
          'called': 1,
          'neach': 1,
          'executive': 1,
          'gleefully': 1,
          'presents': 1,
          'different': 1,
          'merchandise': 1,
          'tiein': 1,
          'taco': 1,
          'nslug': 1,
          'stick': 1,
          'nat': 1,
          'end': 1,
          'asks': 1,
          'nanother': 1,
          'answers': 1,
          'well': 1,
          'dont': 1,
          'friday': 1,
          'contains': 1,
          'sort': 1,
          'logical': 1,
          'contradictions': 1,
          'blatantly': 1,
          'obvious': 1,
          'adherence': 1,
          'formula': 1,
          'eliminated': 1,
          'attention': 1,
          'payed': 1,
          'coincidence': 1,
          'comes': 1,
          'animation': 1,
          'nanimated': 1,
          'take': 1,
          'maker': 1,
          'becomes': 1,
          'labor': 1,
          'love': 1,
          'filmmakers': 1,
          'put': 1,
          'care': 1,
          'pride': 1,
          'work': 1,
          'nthese': 1,
          'banged': 1,
          'quicker': 1,
          'percentage': 1,
          'turn': 1,
          'worthless': 1,
          'sloppy': 1,
          'impersonal': 1,
          'nthe': 1,
          'factories': 1,
          'assembled': 1,
          'products': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'nas': 5,
          'phil': 4,
          'like': 4,
          'deedles': 4,
          'film': 4,
          'stunts': 4,
          'deedle': 3,
          'meet': 3,
          'bad': 3,
          'one': 3,
          'yellowstone': 3,
          'worst': 3,
          'stew': 2,
          'nthis': 2,
          'humor': 2,
          'n': 2,
          'looking': 2,
          'nand': 2,
          'boyum': 2,
          'whose': 2,
          'long': 2,
          'background': 2,
          'road': 2,
          'classic': 2,
          'nmeet': 2,
          'nit': 2,
          'us': 2,
          'dialog': 2,
          'point': 2,
          'birthday': 2,
          'camp': 2,
          'two': 2,
          'nthe': 2,
          'prairie': 2,
          'movies': 2,
          'little': 2,
          'dog': 2,
          'petey': 2,
          'hennings': 2,
          'make': 2,
          'look': 2,
          'lips': 2,
          'many': 2,
          'stunt': 2,
          'back': 2,
          'nthey': 2,
          'worm': 2,
          'jeffrey': 2,
          'circus': 2,
          'twin': 1,
          'surfer': 1,
          'dudes': 1,
          'lay': 1,
          'bandaged': 1,
          'unconscious': 1,
          'hospital': 1,
          'comes': 1,
          'first': 1,
          'chooses': 1,
          'coolest': 1,
          'way': 1,
          'wake': 1,
          'brother': 1,
          'nyanking': 1,
          'iv': 1,
          'uses': 1,
          'water': 1,
          'pistol': 1,
          'soak': 1,
          'brothers': 1,
          'face': 1,
          'bit': 1,
          'lame': 1,
          'physical': 1,
          'typical': 1,
          'disneys': 1,
          'endured': 1,
          'watched': 1,
          'stopped': 1,
          'wife': 1,
          'screening': 1,
          'since': 1,
          'every': 1,
          'time': 1,
          'shed': 1,
          'start': 1,
          'sticking': 1,
          'finger': 1,
          'throat': 1,
          'shes': 1,
          'right': 1,
          'ndirected': 1,
          'without': 1,
          'imagination': 1,
          'steve': 1,
          'mainly': 1,
          'second': 1,
          'unit': 1,
          'direction': 1,
          'limps': 1,
          'along': 1,
          'best': 1,
          'nboyum': 1,
          'attempts': 1,
          'keep': 1,
          'pace': 1,
          'moving': 1,
          'staging': 1,
          'namazingly': 1,
          'someone': 1,
          'seems': 1,
          'incapable': 1,
          'finding': 1,
          'fresh': 1,
          'ones': 1,
          'car': 1,
          'go': 1,
          'five': 1,
          'different': 1,
          'times': 1,
          'maybe': 1,
          'nbut': 1,
          'whos': 1,
          'counting': 1,
          'script': 1,
          'james': 1,
          'herzfeld': 1,
          'tapeheads': 1,
          'decade': 1,
          'ago': 1,
          'awful': 1,
          'considered': 1,
          'cult': 1,
          'however': 1,
          'painfully': 1,
          'rather': 1,
          'laughably': 1,
          'probably': 1,
          'theaters': 1,
          'tornado': 1,
          'danger': 1,
          'becoming': 1,
          'anything': 1,
          'nherzfeld': 1,
          'treats': 1,
          'gratingly': 1,
          'abysmal': 1,
          'includes': 1,
          'geysers': 1,
          'geezer': 1,
          'id': 1,
          'put': 1,
          'haystack': 1,
          'opens': 1,
          'twins': 1,
          'describe': 1,
          'modestly': 1,
          'walking': 1,
          'kodak': 1,
          'moment': 1,
          'celebrating': 1,
          '18th': 1,
          'ride': 1,
          'parasail': 1,
          'high': 1,
          'waters': 1,
          'waikiki': 1,
          'truant': 1,
          'officer': 1,
          'pursues': 1,
          'jet': 1,
          'ski': 1,
          'heirs': 1,
          'fabulous': 1,
          'fortune': 1,
          'empire': 1,
          'boys': 1,
          'sent': 1,
          'father': 1,
          'broken': 1,
          'spirit': 1,
          'transform': 1,
          'laidback': 1,
          'beach': 1,
          'bums': 1,
          'men': 1,
          'arrive': 1,
          'wetsuits': 1,
          'theyve': 1,
          'got': 1,
          'surfboards': 1,
          'skateboards': 1,
          'hawaiian': 1,
          'drink': 1,
          'machine': 1,
          'size': 1,
          'armoire': 1,
          'ntheir': 1,
          'gone': 1,
          'business': 1,
          'mistaken': 1,
          'new': 1,
          'park': 1,
          'rangers': 1,
          'rest': 1,
          'fighting': 1,
          'parks': 1,
          'overpopulation': 1,
          'dogs': 1,
          'well': 1,
          'deranged': 1,
          'exranger': 1,
          'played': 1,
          'dennis': 1,
          'hopper': 1,
          'stop': 1,
          'old': 1,
          'faithful': 1,
          'billionth': 1,
          'celebration': 1,
          'scheduled': 1,
          'later': 1,
          'week': 1,
          'nhopper': 1,
          'made': 1,
          'wonderful': 1,
          'carried': 1,
          'away': 1,
          'recent': 1,
          'favorite': 1,
          'propensity': 1,
          'choosing': 1,
          'truly': 1,
          'odoriferous': 1,
          'material': 1,
          'isnt': 1,
          'acting': 1,
          'arguably': 1,
          'hes': 1,
          'ever': 1,
          'nsteve': 1,
          'van': 1,
          'wormer': 1,
          'paul': 1,
          'walker': 1,
          'give': 1,
          'lifeless': 1,
          'performances': 1,
          'actor': 1,
          'demonstrable': 1,
          'talent': 1,
          'cute': 1,
          'named': 1,
          'neven': 1,
          'cinematography': 1,
          'david': 1,
          'prosaic': 1,
          'manages': 1,
          'dull': 1,
          'nto': 1,
          'add': 1,
          'insult': 1,
          'injury': 1,
          'fond': 1,
          'inappropriate': 1,
          'closeups': 1,
          'serve': 1,
          'remind': 1,
          'inanity': 1,
          'nput': 1,
          'tenfoot': 1,
          'pair': 1,
          'screen': 1,
          'naturally': 1,
          'pay': 1,
          'extra': 1,
          'attention': 1,
          'said': 1,
          'nalthough': 1,
          'says': 1,
          'notes': 1,
          'proud': 1,
          'appropriate': 1,
          'families': 1,
          'wonders': 1,
          'skateboarders': 1,
          'attempt': 1,
          'lying': 1,
          'skateboard': 1,
          'negotiating': 1,
          'busy': 1,
          'twisting': 1,
          'mountain': 1,
          'much': 1,
          'fun': 1,
          'im': 1,
          'sure': 1,
          'try': 1,
          'variation': 1,
          'could': 1,
          'possibly': 1,
          'asks': 1,
          'njust': 1,
          'suspect': 1,
          'cant': 1,
          'takes': 1,
          'turn': 1,
          'downhill': 1,
          'nits': 1,
          'low': 1,
          'may': 1,
          'airline': 1,
          'barf': 1,
          'bag': 1,
          'nafter': 1,
          'phils': 1,
          'girlfriend': 1,
          'digs': 1,
          'big': 1,
          'mount': 1,
          'moist': 1,
          'soil': 1,
          'suck': 1,
          'nlike': 1,
          'lovers': 1,
          'eating': 1,
          'spaghetti': 1,
          'lady': 1,
          'tramp': 1,
          'finally': 1,
          'kiss': 1,
          'pull': 1,
          'faces': 1,
          'full': 1,
          'dirt': 1,
          'encased': 1,
          'ingested': 1,
          'runs': 1,
          'hour': 1,
          'half': 1,
          'rated': 1,
          'pg': 1,
          'bathroom': 1,
          'would': 1,
          'acceptable': 1,
          'kids': 1,
          'around': 1,
          '6': 1,
          'nmy': 1,
          'son': 1,
          'friend': 1,
          'nickolas': 1,
          'almost': 1,
          '9': 1,
          'gave': 1,
          'show': 1,
          'thought': 1,
          'scenes': 1,
          'among': 1,
          'favorites': 1,
          'nnickolas': 1,
          'also': 1,
          'mentioned': 1,
          'scene': 1,
          'bear': 1,
          'drives': 1,
          'jeep': 1,
          'especially': 1,
          'liked': 1,
          'elephant': 1,
          'referred': 1,
          'dumbo': 1,
          'nneg': 1}),
 Counter({'film': 6,
          'story': 6,
          'human': 6,
          'robot': 4,
          'future': 4,
          'andrew': 4,
          'nit': 4,
          'nthe': 4,
          'years': 4,
          'science': 3,
          'shows': 3,
          'makes': 3,
          'nthis': 3,
          'still': 3,
          'us': 3,
          'possible': 3,
          'nwhen': 3,
          'really': 3,
          'time': 3,
          'seemed': 3,
          'family': 2,
          'columbus': 2,
          'point': 2,
          'isaac': 2,
          'asimov': 2,
          'fiction': 2,
          'wants': 2,
          'imagine': 2,
          'difficult': 2,
          'house': 2,
          'nsoon': 2,
          'williams': 2,
          'mr': 2,
          'martin': 2,
          'sam': 2,
          'neill': 2,
          'nandrew': 2,
          'emotions': 2,
          'one': 2,
          'serious': 2,
          'obvious': 2,
          'think': 2,
          'lack': 2,
          'society': 2,
          'far': 2,
          'reality': 2,
          'reasons': 2,
          'primitive': 2,
          'world': 2,
          'fashion': 2,
          'today': 2,
          'ni': 2,
          'change': 2,
          'unlikely': 2,
          'hard': 2,
          'doesnt': 2,
          'magical': 2,
          'bicentennial': 1,
          'man': 1,
          'without': 1,
          'external': 1,
          'motive': 1,
          'exception': 1,
          'providing': 1,
          'minimum': 1,
          'dose': 1,
          'entertainment': 1,
          'nchris': 1,
          'director': 1,
          'gave': 1,
          'mrs': 1,
          'doubtfire': 1,
          'plays': 1,
          'sentimental': 1,
          'strings': 1,
          'mushy': 1,
          'dialogue': 1,
          'make': 1,
          'nbased': 1,
          'short': 1,
          'supposed': 1,
          'nstarting': 1,
          'distant': 1,
          'concentrates': 1,
          'wealthy': 1,
          'buys': 1,
          'android': 1,
          'help': 1,
          'children': 1,
          'called': 1,
          'robin': 1,
          'abilities': 1,
          'owner': 1,
          'curious': 1,
          'interested': 1,
          'art': 1,
          'music': 1,
          'enjoys': 1,
          'making': 1,
          'clocks': 1,
          'clearly': 1,
          'genuine': 1,
          'small': 1,
          'failure': 1,
          'electrical': 1,
          'circuits': 1,
          'positronic': 1,
          'brain': 1,
          'accidentally': 1,
          'gained': 1,
          'soul': 1,
          'unique': 1,
          'evil': 1,
          'creators': 1,
          'worried': 1,
          'nthen': 1,
          'decides': 1,
          'teach': 1,
          'things': 1,
          'wasnt': 1,
          'programmed': 1,
          'leave': 1,
          'pursuit': 1,
          'freedom': 1,
          'destiny': 1,
          'love': 1,
          'described': 1,
          'disney': 1,
          'version': 1,
          'blade': 1,
          'runner': 1,
          'shines': 1,
          'biggest': 1,
          'gem': 1,
          'crown': 1,
          'never': 1,
          'since': 1,
          'subject': 1,
          'humanity': 1,
          'stands': 1,
          'big': 1,
          'controversy': 1,
          'nwhat': 1,
          'thoughts': 1,
          'nis': 1,
          'become': 1,
          'nat': 1,
          'say': 1,
          'nthese': 1,
          'tough': 1,
          'questions': 1,
          'require': 1,
          'thurral': 1,
          'approach': 1,
          'didnt': 1,
          'take': 1,
          'seriously': 1,
          'meditating': 1,
          'question': 1,
          'longer': 1,
          'machine': 1,
          'tells': 1,
          'racial': 1,
          'discrimination': 1,
          'understanding': 1,
          'complex': 1,
          'emotional': 1,
          'beginning': 1,
          'audience': 1,
          'immediately': 1,
          'accepts': 1,
          'troubles': 1,
          'nin': 1,
          'words': 1,
          'academy': 1,
          'awards': 1,
          'nfurther': 1,
          'annoying': 1,
          'problems': 1,
          'nto': 1,
          'day': 1,
          'filmmaker': 1,
          'dared': 1,
          'speculate': 1,
          '50': 1,
          'done': 1,
          'filmmakers': 1,
          'well': 1,
          'aware': 1,
          'fact': 1,
          'knowledge': 1,
          'imagination': 1,
          'perform': 1,
          'task': 1,
          'ncolumbus': 1,
          'first': 1,
          'crossed': 1,
          'line': 1,
          'result': 1,
          'might': 1,
          'unrealistic': 1,
          'incredibly': 1,
          'disappointing': 1,
          'effort': 1,
          'simply': 1,
          'frozen': 1,
          'nneither': 1,
          'culture': 1,
          'values': 1,
          'changed': 1,
          '200': 1,
          'nmom': 1,
          'working': 1,
          'kitchen': 1,
          'dishes': 1,
          'back': 1,
          'late': 1,
          '17th': 1,
          'century': 1,
          'compare': 1,
          'live': 1,
          'youll': 1,
          'see': 1,
          'slightly': 1,
          'bigger': 1,
          'difference': 1,
          'saying': 1,
          'everything': 1,
          'rights': 1,
          'even': 1,
          'progress': 1,
          'technology': 1,
          'suppose': 1,
          'watch': 1,
          'sort': 1,
          'bizarre': 1,
          'fairytale': 1,
          'nrobin': 1,
          'hidden': 1,
          'behind': 1,
          'c': 1,
          'speaking': 1,
          'robotic': 1,
          'way': 1,
          'nas': 1,
          'always': 1,
          'decent': 1,
          'job': 1,
          'nbut': 1,
          'matter': 1,
          'sentimentality': 1,
          'length': 1,
          'turns': 1,
          'picture': 1,
          'tiresome': 1,
          'experience': 1,
          'npretty': 1,
          'much': 1,
          'like': 1,
          'last': 1,
          'meet': 1,
          'joe': 1,
          'black': 1,
          'unresolved': 1,
          'presented': 1,
          'splendor': 1,
          'professionalism': 1,
          'deserve': 1,
          'ngreat': 1,
          'actors': 1,
          'talented': 1,
          'crew': 1,
          'worked': 1,
          'achieve': 1,
          'something': 1,
          'instantly': 1,
          'forgotten': 1,
          'wrote': 1,
          'away': 1,
          'neverything': 1,
          'nnow': 1,
          'asimovs': 1,
          'know': 1,
          'perfect': 1,
          'long': 1,
          'ago': 1,
          'nfor': 1,
          'young': 1,
          'generation': 1,
          'amazed': 1,
          'julius': 1,
          'vernes': 1,
          '20': 1,
          '000': 1,
          'leagues': 1,
          'sea': 1,
          'cant': 1,
          'accept': 1,
          'potential': 1,
          'nlet': 1,
          'hope': 1,
          'next': 1,
          'nwill': 1,
          'rewarding': 1,
          'nneg': 1}),
 Counter({'film': 15,
          'nthe': 11,
          'one': 6,
          'series': 6,
          'set': 6,
          'nthis': 5,
          'freeze': 5,
          'nnow': 5,
          'robin': 5,
          'batman': 5,
          'scenes': 5,
          'almost': 4,
          'even': 4,
          'look': 4,
          'tv': 4,
          'schumacher': 3,
          'scene': 3,
          'mr': 3,
          'back': 3,
          'poison': 3,
          'ivy': 3,
          'less': 3,
          'nshe': 3,
          'plant': 3,
          'performance': 3,
          'nhis': 3,
          'nthere': 3,
          'comes': 3,
          'old': 3,
          'action': 3,
          'effects': 3,
          'warner': 2,
          'brothers': 2,
          'franchise': 2,
          'successfully': 2,
          'talented': 2,
          'another': 2,
          'client': 2,
          'thought': 2,
          'reason': 2,
          'characters': 2,
          'point': 2,
          'alicia': 2,
          'silverstones': 2,
          'batgirl': 2,
          'dr': 2,
          'dialogue': 2,
          'cure': 2,
          'wife': 2,
          'man': 2,
          'course': 2,
          'world': 2,
          'live': 2,
          'logic': 2,
          'wanted': 2,
          'would': 2,
          'breed': 2,
          'life': 2,
          'animal': 2,
          'age': 2,
          'destroying': 2,
          'trying': 2,
          'films': 2,
          'burt': 2,
          'ward': 2,
          'bruce': 2,
          'wayne': 2,
          'time': 2,
          'keep': 2,
          'performances': 2,
          'brings': 2,
          'question': 2,
          'forever': 2,
          'nand': 2,
          'except': 2,
          'nothing': 2,
          'good': 2,
          'villains': 2,
          'part': 2,
          'freezes': 2,
          'michael': 2,
          'growing': 2,
          'sex': 2,
          'come': 2,
          'may': 2,
          'nmr': 2,
          'team': 2,
          'nevery': 2,
          'succeeded': 2,
          'special': 2,
          'dykstra': 2,
          'njoel': 2,
          'nit': 2,
          'continuation': 1,
          'joel': 1,
          'killed': 1,
          'cash': 1,
          'cow': 1,
          'nwhat': 1,
          'makes': 1,
          'grand': 1,
          'disappointment': 1,
          'tremendous': 1,
          'line': 1,
          'people': 1,
          'involved': 1,
          'navika': 1,
          'goldsmans': 1,
          'screenplay': 1,
          'cluttered': 1,
          'mess': 1,
          'suspense': 1,
          'built': 1,
          'coming': 1,
          'heals': 1,
          'marvelously': 1,
          'written': 1,
          'project': 1,
          'shock': 1,
          'gives': 1,
          'rise': 1,
          'thoughts': 1,
          'latter': 1,
          'fluke': 1,
          'nsituations': 1,
          'developed': 1,
          'executed': 1,
          'get': 1,
          'glaringly': 1,
          'brought': 1,
          'appearance': 1,
          'happens': 1,
          'alfreds': 1,
          'niece': 1,
          'story': 1,
          'victor': 1,
          'told': 1,
          'completely': 1,
          'afterthought': 1,
          'nwhile': 1,
          'working': 1,
          'tragic': 1,
          'decease': 1,
          'contracted': 1,
          'injured': 1,
          'cryogenic': 1,
          'procedure': 1,
          'becomes': 1,
          'survive': 1,
          'sub': 1,
          'zero': 1,
          'environment': 1,
          'become': 1,
          'terrorist': 1,
          'intent': 1,
          'turning': 1,
          'frozen': 1,
          'planet': 1,
          'little': 1,
          'subplot': 1,
          'escapes': 1,
          'nif': 1,
          'find': 1,
          'bring': 1,
          'brink': 1,
          'death': 1,
          'want': 1,
          'warmth': 1,
          'indeed': 1,
          'cold': 1,
          'hearted': 1,
          'development': 1,
          'contradictory': 1,
          'wants': 1,
          'form': 1,
          'defend': 1,
          'like': 1,
          'joins': 1,
          'plan': 1,
          'start': 1,
          'new': 1,
          'ice': 1,
          'therefore': 1,
          'giving': 1,
          'creations': 1,
          'defense': 1,
          'mechanism': 1,
          'nbatman': 1,
          'longer': 1,
          'dark': 1,
          'knight': 1,
          'earlier': 1,
          'adoptive': 1,
          'son': 1,
          'father': 1,
          'figure': 1,
          'constantly': 1,
          'spouting': 1,
          'homilies': 1,
          'family': 1,
          'relationships': 1,
          'really': 1,
          'ngeorge': 1,
          'clooney': 1,
          'tries': 1,
          'vain': 1,
          'rolling': 1,
          'eyes': 1,
          'reciting': 1,
          'given': 1,
          'nto': 1,
          'say': 1,
          'workmanlike': 1,
          'generous': 1,
          'best': 1,
          'still': 1,
          'e': 1,
          'r': 1,
          'nbruce': 1,
          'unromantic': 1,
          'evening': 1,
          'girlfriend': 1,
          'played': 1,
          'elle': 1,
          'macpherson': 1,
          'bruces': 1,
          'latent': 1,
          'homosexuality': 1,
          'spark': 1,
          'passion': 1,
          'nicole': 1,
          'kidmans': 1,
          'psychologist': 1,
          'anyone': 1,
          'alfred': 1,
          'relationship': 1,
          'reserved': 1,
          'nrobin': 1,
          'charismatic': 1,
          'last': 1,
          'hes': 1,
          'spoiled': 1,
          'kid': 1,
          'nin': 1,
          'batmans': 1,
          'partner': 1,
          'friend': 1,
          'suffering': 1,
          'ego': 1,
          'deficiency': 1,
          'nrobins': 1,
          'attraction': 1,
          'believable': 1,
          'boy': 1,
          'around': 1,
          '15': 1,
          'later': 1,
          'flirtation': 1,
          'smacks': 1,
          'incest': 1,
          'though': 1,
          'related': 1,
          'traditional': 1,
          'sense': 1,
          'nchris': 1,
          'odonnell': 1,
          'considered': 1,
          'rising': 1,
          'star': 1,
          'burns': 1,
          'reentry': 1,
          'needs': 1,
          'spanking': 1,
          'said': 1,
          'better': 1,
          'young': 1,
          'actress': 1,
          'reads': 1,
          'lines': 1,
          'aplomb': 1,
          'dubbing': 1,
          'actor': 1,
          'godzilla': 1,
          'cast': 1,
          'strictly': 1,
          'commercial': 1,
          'value': 1,
          'knew': 1,
          'us': 1,
          'narnold': 1,
          'scharzenegger': 1,
          'walks': 1,
          'concern': 1,
          'someone': 1,
          'waiting': 1,
          'payday': 1,
          'rediculous': 1,
          'imprisonment': 1,
          'guards': 1,
          'least': 1,
          'foot': 1,
          'taller': 1,
          'arnold': 1,
          'yet': 1,
          'fall': 1,
          'hand': 1,
          'unbelievable': 1,
          'fights': 1,
          'caught': 1,
          'nits': 1,
          'ludicrous': 1,
          'seeing': 1,
          'jackson': 1,
          'gang': 1,
          'member': 1,
          'numu': 1,
          'thurman': 1,
          'struts': 1,
          'coos': 1,
          'way': 1,
          'showing': 1,
          'discomfort': 1,
          'symbol': 1,
          'status': 1,
          'nher': 1,
          'hither': 1,
          'appeal': 1,
          'west': 1,
          'sextette': 1,
          '1978': 1,
          'worthy': 1,
          'notice': 1,
          'pat': 1,
          'hingle': 1,
          'gough': 1,
          'nthese': 1,
          'two': 1,
          'seasoned': 1,
          'veterans': 1,
          'carry': 1,
          'dignity': 1,
          'sorely': 1,
          'lacking': 1,
          'rest': 1,
          'nwithout': 1,
          'going': 1,
          'intricacies': 1,
          'plot': 1,
          'always': 1,
          'mind': 1,
          'first': 1,
          'super': 1,
          'manage': 1,
          'hire': 1,
          'many': 1,
          'thugs': 1,
          'abandon': 1,
          'final': 1,
          'reel': 1,
          'introduced': 1,
          'hockey': 1,
          'playing': 1,
          'hoodlums': 1,
          'seem': 1,
          'stepped': 1,
          'kiss': 1,
          'music': 1,
          'video': 1,
          'villain': 1,
          'minor': 1,
          'ones': 1,
          'individual': 1,
          'day': 1,
          'glow': 1,
          'paint': 1,
          'face': 1,
          'sort': 1,
          'elaborate': 1,
          'costume': 1,
          'nwith': 1,
          'retrograding': 1,
          'incarnation': 1,
          'thing': 1,
          'missing': 1,
          'superimposed': 1,
          'titles': 1,
          'detailing': 1,
          'pows': 1,
          'ngwaaaas': 1,
          'clangs': 1,
          'associated': 1,
          'nyou': 1,
          'wonder': 1,
          'william': 1,
          'dozier': 1,
          'producer': 1,
          'collecting': 1,
          'royalties': 1,
          'john': 1,
          'production': 1,
          'design': 1,
          'barbara': 1,
          'ling': 1,
          'primary': 1,
          'stars': 1,
          'case': 1,
          'extravagance': 1,
          'pursuit': 1,
          'ivys': 1,
          'lair': 1,
          'batcave': 1,
          'hideout': 1,
          'enough': 1,
          'neon': 1,
          'fiberglass': 1,
          'epa': 1,
          'paperwork': 1,
          'years': 1,
          'realistic': 1,
          'piece': 1,
          'neverything': 1,
          'maximum': 1,
          'exposure': 1,
          'strange': 1,
          'cartoon': 1,
          'rushed': 1,
          'cgi': 1,
          'homage': 1,
          'thrown': 1,
          'gene': 1,
          'warren': 1,
          'work': 1,
          'machine': 1,
          'wroth': 1,
          'glaring': 1,
          'color': 1,
          'art': 1,
          'obscured': 1,
          'directed': 1,
          'flair': 1,
          'ncamera': 1,
          'angles': 1,
          'poorly': 1,
          'chosen': 1,
          'rehashing': 1,
          'ups': 1,
          'nmaster': 1,
          'shots': 1,
          'pepper': 1,
          'flow': 1,
          'kinetic': 1,
          'quality': 1,
          'director': 1,
          'none': 1,
          'lost': 1,
          'boys': 1,
          'cousins': 1,
          'underrated': 1,
          'know': 1,
          'nbut': 1,
          'mated': 1,
          'made': 1,
          'movie': 1,
          'style': 1,
          'individuality': 1,
          'cinematic': 1,
          'equivalent': 1,
          'jello': 1,
          'pretty': 1,
          'empty': 1,
          'unfortunate': 1,
          'surprisingly': 1,
          'strong': 1,
          'box': 1,
          'office': 1,
          'warners': 1,
          'tim': 1,
          'burton': 1,
          'nkill': 1,
          'schumachers': 1,
          'loud': 1,
          'colorful': 1,
          'packed': 1,
          'ultimately': 1,
          'nboring': 1,
          'nstars': 1,
          'nneg': 1}),
 Counter({'film': 3,
          'heart': 3,
          'novalee': 3,
          'boyfriend': 3,
          'walmart': 3,
          'na': 3,
          'one': 3,
          'characters': 2,
          'acting': 2,
          'nthis': 2,
          'family': 2,
          'tragic': 2,
          'natalie': 2,
          'portman': 2,
          'decides': 2,
          'wacky': 2,
          'librarian': 2,
          'work': 2,
          'seems': 2,
          'long': 1,
          'ago': 1,
          'films': 1,
          'constructed': 1,
          'strong': 1,
          'dialogue': 1,
          'original': 1,
          'memorable': 1,
          'plot': 1,
          'points': 1,
          'solid': 1,
          'none': 1,
          'best': 1,
          'examples': 1,
          'hollywood': 1,
          'completely': 1,
          'ignore': 1,
          'qualities': 1,
          'found': 1,
          'new': 1,
          'opus': 1,
          'power': 1,
          'love': 1,
          'redemption': 1,
          'follows': 1,
          'mean': 1,
          'life': 1,
          'nation': 1,
          'nhitting': 1,
          'road': 1,
          'hick': 1,
          'guitarplaying': 1,
          'rustedout': 1,
          'gm': 1,
          'dreams': 1,
          'blue': 1,
          'skies': 1,
          'bakersfield': 1,
          'sipping': 1,
          'chocolate': 1,
          'milk': 1,
          'beneath': 1,
          'plastic': 1,
          'umbrella': 1,
          'unborn': 1,
          'baby': 1,
          'due': 1,
          'month': 1,
          'nstopping': 1,
          'nearby': 1,
          'quick': 1,
          'rest': 1,
          'novalees': 1,
          'take': 1,
          'leaves': 1,
          'nnovalee': 1,
          'secretly': 1,
          'hole': 1,
          'shes': 1,
          'brightest': 1,
          'bulb': 1,
          'stagelights': 1,
          'keith': 1,
          'david': 1,
          'comes': 1,
          'rescue': 1,
          'goes': 1,
          'labor': 1,
          'night': 1,
          'camped': 1,
          'outdoors': 1,
          'section': 1,
          'store': 1,
          'nthen': 1,
          'moves': 1,
          'befriends': 1,
          'everyone': 1,
          'town': 1,
          'including': 1,
          'ashley': 1,
          'judds': 1,
          'character': 1,
          'five': 1,
          'kids': 1,
          'still': 1,
          'parttime': 1,
          'nurse': 1,
          'fights': 1,
          'religious': 1,
          'freaks': 1,
          'survives': 1,
          'tornado': 1,
          'breaks': 1,
          'saved': 1,
          'receives': 1,
          'inheritance': 1,
          'builds': 1,
          'martha': 1,
          'stewartesque': 1,
          'house': 1,
          'becomes': 1,
          'awardwinning': 1,
          'photographer': 1,
          'manages': 1,
          'always': 1,
          'look': 1,
          'like': 1,
          'stepped': 1,
          'cosmo': 1,
          'shoot': 1,
          'anything': 1,
          'kid': 1,
          'terrible': 1,
          'nthe': 1,
          'directing': 1,
          'awful': 1,
          'director': 1,
          'matt': 1,
          'williams': 1,
          'index': 1,
          'card': 1,
          'six': 1,
          'angles': 1,
          'written': 1,
          'used': 1,
          'every': 1,
          'nwe': 1,
          'get': 1,
          'pathetic': 1,
          'ugly': 1,
          'good': 1,
          'disjointed': 1,
          'pacing': 1,
          'key': 1,
          'scenes': 1,
          'time': 1,
          'structure': 1,
          'confusing': 1,
          'would': 1,
          'throw': 1,
          'steve': 1,
          'prefontaine': 1,
          'subplot': 1,
          'actually': 1,
          'validates': 1,
          'actions': 1,
          'abandoned': 1,
          'parking': 1,
          'lot': 1,
          'nan': 1,
          'embarrassing': 1,
          'display': 1,
          'emotions': 1,
          'making': 1,
          'audience': 1,
          'ill': 1,
          'ntaking': 1,
          'two': 1,
          'great': 1,
          'comedic': 1,
          'screenwriters': 1,
          'babaloo': 1,
          'mandel': 1,
          'lowell': 1,
          'ganz': 1,
          'forcing': 1,
          'write': 1,
          'drama': 1,
          'par': 1,
          'oprahs': 1,
          'book': 1,
          'club': 1,
          'naltogether': 1,
          'feeling': 1,
          'trapped': 1,
          'home': 1,
          'watching': 1,
          'bad': 1,
          'television': 1,
          'miniseries': 1,
          'wishing': 1,
          'end': 1,
          'remote': 1,
          'broken': 1,
          'nhowever': 1,
          'main': 1,
          'problem': 1,
          'never': 1,
          'answers': 1,
          'poignant': 1,
          'question': 1,
          'brought': 1,
          'nno': 1,
          'ever': 1,
          'find': 1,
          'piece': 1,
          'junk': 1,
          'nneg': 1}),
 Counter({'movie': 14,
          'hammer': 12,
          'nthe': 9,
          'hammers': 9,
          'jury': 8,
          'book': 7,
          'film': 6,
          'one': 6,
          'character': 6,
          'spillanes': 5,
          'like': 5,
          'spillane': 5,
          'updating': 4,
          'sex': 4,
          'code': 4,
          'mike': 3,
          'carrera': 3,
          'alan': 3,
          'king': 3,
          'charles': 3,
          'paul': 3,
          'sorvino': 3,
          'detective': 3,
          'best': 3,
          'books': 3,
          'version': 3,
          'made': 3,
          'way': 3,
          'violence': 3,
          'wrote': 3,
          'could': 3,
          'never': 3,
          'screen': 3,
          'woman': 3,
          'television': 3,
          'personal': 3,
          'barbara': 2,
          'bennett': 2,
          'laurene': 2,
          'landon': 2,
          'velda': 2,
          'kalecki': 2,
          'pat': 2,
          'chambers': 2,
          'judson': 2,
          'scott': 2,
          'nin': 2,
          '1982': 2,
          'vietnam': 2,
          'vet': 2,
          'still': 2,
          'updated': 2,
          'original': 2,
          'cheesy': 2,
          'seek': 2,
          'death': 2,
          'police': 2,
          'tale': 2,
          'cia': 2,
          'clinic': 2,
          'nmany': 2,
          'take': 2,
          'turns': 2,
          'interest': 2,
          'n': 2,
          'includes': 2,
          'treatment': 2,
          'production': 2,
          'takes': 2,
          'aspect': 2,
          'many': 2,
          'great': 2,
          'deal': 2,
          'nudity': 2,
          'violent': 2,
          'especially': 2,
          'nit': 2,
          'features': 2,
          'shot': 2,
          'misogynistic': 2,
          'much': 2,
          'played': 2,
          'well': 2,
          'script': 2,
          'written': 2,
          'effective': 2,
          'movies': 2,
          'ncohen': 2,
          'nhe': 2,
          'quickly': 2,
          'heffron': 2,
          'three': 2,
          'make': 2,
          'scenes': 2,
          'despite': 2,
          'madefortv': 2,
          'central': 2,
          'lost': 2,
          'first': 2,
          'get': 2,
          'bad': 2,
          'moral': 2,
          'always': 2,
          'notion': 2,
          'law': 2,
          'terms': 2,
          'wife': 2,
          'nmaybe': 2,
          'appeared': 2,
          'short': 2,
          'stars': 1,
          'armand': 1,
          'assante': 1,
          'dr': 1,
          'ncharlotte': 1,
          'geoffrey': 1,
          'lewis': 1,
          'joe': 1,
          'butler': 1,
          'hendricks': 1,
          'barry': 1,
          'snider': 1,
          'romero': 1,
          'julia': 1,
          'barr': 1,
          'norma': 1,
          'childs': 1,
          'mpaa': 1,
          'rating': 1,
          'r': 1,
          'review': 1,
          'mickey': 1,
          '1947': 1,
          'novel': 1,
          'hardboiled': 1,
          'drives': 1,
          'shiny': 1,
          'bronze': 1,
          'trans': 1,
          'dresses': 1,
          'johnson': 1,
          'miami': 1,
          'vice': 1,
          'less': 1,
          'pastels': 1,
          'sworn': 1,
          'alcohol': 1,
          'nhowever': 1,
          'smokes': 1,
          'lucky': 1,
          'strikes': 1,
          'detests': 1,
          'forms': 1,
          'authority': 1,
          'kills': 1,
          'whim': 1,
          'nbeyond': 1,
          'retains': 1,
          'little': 1,
          'resemblance': 1,
          'pulpy': 1,
          'pageturner': 1,
          'probably': 1,
          'infamous': 1,
          'often': 1,
          'reviled': 1,
          'mystery': 1,
          'writers': 1,
          'starts': 1,
          'bang': 1,
          'howler': 1,
          'opening': 1,
          'credits': 1,
          'sequence': 1,
          'cheap': 1,
          'steal': 1,
          'james': 1,
          'bond': 1,
          'series': 1,
          'complete': 1,
          'graphics': 1,
          'overbearing': 1,
          'jazz': 1,
          'score': 1,
          'bill': 1,
          'conti': 1,
          'rocky': 1,
          'nafter': 1,
          'begin': 1,
          'murder': 1,
          'jack': 1,
          'williams': 1,
          'frederick': 1,
          'downs': 1,
          'onearmed': 1,
          'friend': 1,
          'nhammer': 1,
          'declares': 1,
          'vengeance': 1,
          'jacks': 1,
          'help': 1,
          'devoted': 1,
          'secretary': 1,
          'blond': 1,
          'shapely': 1,
          'alternately': 1,
          'friendly': 1,
          'antagonistic': 1,
          'chief': 1,
          'immediately': 1,
          'killers': 1,
          'trail': 1,
          'nhere': 1,
          'splits': 1,
          'completely': 1,
          'dives': 1,
          'convoluted': 1,
          'improbable': 1,
          'government': 1,
          'conspiracy': 1,
          'mind': 1,
          'control': 1,
          'tactics': 1,
          'involving': 1,
          'mafia': 1,
          'buddies': 1,
          'kinky': 1,
          'characters': 1,
          'appear': 1,
          'slightly': 1,
          'different': 1,
          'roles': 1,
          'nfor': 1,
          'instance': 1,
          'numbers': 1,
          'runner': 1,
          'narcotics': 1,
          'dealer': 1,
          'suave': 1,
          'mob': 1,
          'boss': 1,
          'nand': 1,
          'importantly': 1,
          'suspicious': 1,
          'love': 1,
          'charlotte': 1,
          'morphs': 1,
          'runofthemill': 1,
          'psychiatrist': 1,
          'coordinator': 1,
          'founder': 1,
          'several': 1,
          'cinematic': 1,
          'renditions': 1,
          'including': 1,
          '1953': 1,
          '3d': 1,
          'differs': 1,
          'earlier': 1,
          'versions': 1,
          'major': 1,
          'given': 1,
          'due': 1,
          'hollywoods': 1,
          'nalthough': 1,
          'closer': 1,
          'core': 1,
          'subject': 1,
          'matter': 1,
          'received': 1,
          'criticism': 1,
          'took': 1,
          'new': 1,
          'license': 1,
          'extremes': 1,
          'argued': 1,
          'surpassed': 1,
          'nrest': 1,
          'assured': 1,
          'thoroughly': 1,
          'toward': 1,
          'women': 1,
          'neck': 1,
          'slashed': 1,
          'set': 1,
          'twins': 1,
          'forced': 1,
          'strip': 1,
          'stabbed': 1,
          'psychotic': 1,
          'sexual': 1,
          'deviant': 1,
          'programmed': 1,
          'another': 1,
          'pointblank': 1,
          'belly': 1,
          'nno': 1,
          'would': 1,
          'deny': 1,
          'writing': 1,
          'definite': 1,
          'nature': 1,
          'seems': 1,
          'step': 1,
          'giving': 1,
          'glorious': 1,
          'constant': 1,
          'equation': 1,
          'intention': 1,
          'erotic': 1,
          'quite': 1,
          'unsettling': 1,
          'nits': 1,
          'surprise': 1,
          'fades': 1,
          'black': 1,
          'dead': 1,
          'floor': 1,
          'troubled': 1,
          'wellsupported': 1,
          'studio': 1,
          'explanation': 1,
          'didnt': 1,
          'theaters': 1,
          'people': 1,
          'forgotten': 1,
          'ever': 1,
          'larry': 1,
          'cohen': 1,
          'known': 1,
          'creatively': 1,
          'nonetheless': 1,
          'monster': 1,
          'alive': 1,
          '1974': 1,
          'two': 1,
          'sequels': 1,
          'q': 1,
          '1981': 1,
          'stuff': 1,
          '1985': 1,
          'thinking': 1,
          'going': 1,
          'helm': 1,
          'project': 1,
          'yanked': 1,
          'directors': 1,
          'chair': 1,
          'weeks': 1,
          'worth': 1,
          'shooting': 1,
          'already': 1,
          '100': 1,
          '000': 1,
          'budget': 1,
          'replaced': 1,
          'richard': 1,
          'worked': 1,
          'last': 1,
          'decades': 1,
          'handful': 1,
          'undistinguished': 1,
          'dozens': 1,
          'projects': 1,
          'nheffron': 1,
          'obviously': 1,
          'brought': 1,
          'talent': 1,
          'rapidly': 1,
          'efficiently': 1,
          'shows': 1,
          'final': 1,
          'product': 1,
          'none': 1,
          'clumsily': 1,
          'although': 1,
          'ring': 1,
          'true': 1,
          'flat': 1,
          'trite': 1,
          'invariably': 1,
          'dull': 1,
          'numerous': 1,
          'car': 1,
          'chases': 1,
          'shootouts': 1,
          'stunts': 1,
          'heffrons': 1,
          'background': 1,
          'dominant': 1,
          'tone': 1,
          'graphic': 1,
          'fullfrontal': 1,
          'air': 1,
          'quickie': 1,
          'real': 1,
          'punch': 1,
          'depth': 1,
          'nbut': 1,
          'problems': 1,
          'run': 1,
          'deeper': 1,
          'technical': 1,
          'fault': 1,
          'whose': 1,
          'shuffle': 1,
          'fifties': 1,
          'eighties': 1,
          'nbecause': 1,
          'mysteries': 1,
          'person': 1,
          'events': 1,
          'filtered': 1,
          'persona': 1,
          'nwe': 1,
          'really': 1,
          'impression': 1,
          'firstperson': 1,
          'voiceover': 1,
          'narration': 1,
          'dont': 1,
          'nconsequently': 1,
          'texture': 1,
          'storytelling': 1,
          'period': 1,
          'detrimentally': 1,
          'idea': 1,
          'thrown': 1,
          'wind': 1,
          'ndespite': 1,
          'characterization': 1,
          'hardnosed': 1,
          'killer': 1,
          'stuck': 1,
          'fervently': 1,
          'title': 1,
          'refers': 1,
          'antiestablishment': 1,
          'nunlike': 1,
          'private': 1,
          'eyes': 1,
          'guys': 1,
          'turn': 1,
          'pursues': 1,
          'criminal': 1,
          'exacts': 1,
          'punishment': 1,
          'seen': 1,
          'adheres': 1,
          'strictly': 1,
          'conduct': 1,
          'morality': 1,
          'forgoes': 1,
          'comes': 1,
          'amoral': 1,
          'societys': 1,
          'nif': 1,
          'anything': 1,
          'professionalism': 1,
          'away': 1,
          'minutes': 1,
          'showing': 1,
          'rolling': 1,
          'sack': 1,
          'client': 1,
          'paid': 1,
          'find': 1,
          'unfaithful': 1,
          'scene': 1,
          'intended': 1,
          'laughs': 1,
          'cheapens': 1,
          'accounts': 1,
          'lousy': 1,
          'start': 1,
          'blame': 1,
          'cant': 1,
          'laid': 1,
          'assantes': 1,
          'shoulders': 1,
          'unnecessary': 1,
          'marlon': 1,
          'brandonlike': 1,
          'mumbling': 1,
          'delivers': 1,
          'fine': 1,
          'performance': 1,
          'nspillane': 1,
          'described': 1,
          'physical': 1,
          'attributes': 1,
          'dozen': 1,
          'actor': 1,
          'conceivably': 1,
          'portray': 1,
          'nof': 1,
          'course': 1,
          'lack': 1,
          'description': 1,
          'read': 1,
          'strong': 1,
          'looks': 1,
          'therefore': 1,
          'almost': 1,
          'incarnation': 1,
          'somehow': 1,
          'fall': 1,
          'expectations': 1,
          '1963s': 1,
          'girl': 1,
          'hunters': 1,
          'generally': 1,
          'considered': 1,
          'rest': 1,
          'actors': 1,
          'unnoteworthy': 1,
          'nwith': 1,
          'exceptions': 1,
          'everyone': 1,
          'upandcomers': 1,
          'basically': 1,
          'went': 1,
          'nowhere': 1,
          'ended': 1,
          'working': 1,
          'stint': 1,
          'dallas': 1,
          'mideighties': 1,
          'adds': 1,
          'atmosphere': 1,
          'someday': 1,
          'someone': 1,
          'manage': 1,
          'right': 1,
          'elements': 1,
          'together': 1,
          'rendition': 1,
          'certainly': 1,
          'nneg': 1}),
 Counter({'film': 9,
          'one': 4,
          'comedy': 3,
          'doesnt': 3,
          'nthe': 3,
          'thurgood': 3,
          'williams': 3,
          'role': 3,
          'marijuana': 2,
          'run': 2,
          'make': 2,
          'chong': 2,
          'four': 2,
          'chappelle': 2,
          'police': 2,
          '000': 2,
          'bail': 2,
          'raise': 2,
          'pretty': 2,
          'nnot': 2,
          'obvious': 2,
          'nearly': 2,
          'character': 2,
          'level': 2,
          'much': 2,
          'another': 2,
          'nto': 2,
          'work': 2,
          'tone': 2,
          'nher': 2,
          'drugs': 2,
          'nostalgia': 1,
          '70s': 1,
          'continues': 1,
          'see': 1,
          'revival': 1,
          'decades': 1,
          'greatest': 1,
          'achievements': 1,
          'nhowever': 1,
          'half': 1,
          'baked': 1,
          'quite': 1,
          'brain': 1,
          'cells': 1,
          'appreciate': 1,
          'questionable': 1,
          'talents': 1,
          'cheech': 1,
          'plot': 1,
          'follows': 1,
          'misadventures': 1,
          'neerdowell': 1,
          'stoners': 1,
          'ntheres': 1,
          'groups': 1,
          'unofficial': 1,
          'leader': 1,
          'david': 1,
          'scarface': 1,
          'guillermo': 1,
          'diaz': 1,
          'brian': 1,
          'jim': 1,
          'breuer': 1,
          'kenny': 1,
          'harland': 1,
          'nkenny': 1,
          'gets': 1,
          'trouble': 1,
          'munchie': 1,
          'feeds': 1,
          'snack': 1,
          'foods': 1,
          'diabetic': 1,
          'horse': 1,
          'nwhen': 1,
          'animal': 1,
          'keels': 1,
          'finds': 1,
          'accused': 1,
          'killing': 1,
          'officer': 1,
          'facing': 1,
          '1': 1,
          'nhis': 1,
          'friends': 1,
          'promise': 1,
          'money': 1,
          '10': 1,
          'bond': 1,
          'idea': 1,
          'nthat': 1,
          'stumbles': 1,
          'upon': 1,
          'stash': 1,
          'pharmaceutical': 1,
          'tested': 1,
          'company': 1,
          'works': 1,
          'janitor': 1,
          'nsoon': 1,
          'three': 1,
          'guys': 1,
          'dealing': 1,
          'dope': 1,
          'funds': 1,
          'avoiding': 1,
          'cops': 1,
          'rival': 1,
          'dealer': 1,
          'sampson': 1,
          'simpson': 1,
          'clarence': 1,
          'iii': 1,
          'nfor': 1,
          'humorless': 1,
          'try': 1,
          'njust': 1,
          'comic': 1,
          'setups': 1,
          'payoffs': 1,
          'fall': 1,
          'flat': 1,
          'leads': 1,
          'playing': 1,
          'nonly': 1,
          'stands': 1,
          'still': 1,
          'performing': 1,
          'humorfree': 1,
          'rocket': 1,
          'man': 1,
          'hes': 1,
          'imprisoned': 1,
          'throughout': 1,
          'giving': 1,
          'needed': 1,
          'change': 1,
          'pace': 1,
          'mostly': 1,
          'swapping': 1,
          'set': 1,
          'gags': 1,
          'help': 1,
          'packed': 1,
          'full': 1,
          'cameos': 1,
          'nsteven': 1,
          'wright': 1,
          'tommy': 1,
          'janeane': 1,
          'garofalo': 1,
          'willie': 1,
          'nelson': 1,
          'snoop': 1,
          'doggy': 1,
          'dogg': 1,
          'jon': 1,
          'stewart': 1,
          'appearances': 1,
          'point': 1,
          'nnone': 1,
          'beyond': 1,
          'simple': 1,
          'hey': 1,
          'thats': 1,
          '_____': 1,
          'nin': 1,
          'fact': 1,
          'funniest': 1,
          'comes': 1,
          'bland': 1,
          'pothead': 1,
          'lead': 1,
          'second': 1,
          'potobsessed': 1,
          'rapper': 1,
          'sir': 1,
          'smokealot': 1,
          'ngranted': 1,
          'onejoke': 1,
          'arent': 1,
          'ton': 1,
          'laughs': 1,
          'needs': 1,
          'every': 1,
          'scrape': 1,
          'top': 1,
          'move': 1,
          'contrasting': 1,
          'rest': 1,
          'given': 1,
          'love': 1,
          'interest': 1,
          'mary': 1,
          'jane': 1,
          'rachel': 1,
          'true': 1,
          'public': 1,
          'service': 1,
          'announcement': 1,
          'inform': 1,
          'us': 1,
          'including': 1,
          'pot': 1,
          'wrong': 1,
          'seems': 1,
          'fabricated': 1,
          'merely': 1,
          'defense': 1,
          'promotes': 1,
          'use': 1,
          'camp': 1,
          'would': 1,
          'better': 1,
          'sticking': 1,
          'rebel': 1,
          'eagerly': 1,
          'tries': 1,
          'claim': 1,
          'nyet': 1,
          'end': 1,
          'really': 1,
          'matter': 1,
          'nwatching': 1,
          'clean': 1,
          'sober': 1,
          'bound': 1,
          'recognize': 1,
          'truly': 1,
          'awful': 1,
          'nneg': 1}),
 Counter({'film': 8,
          'nthe': 6,
          'movie': 5,
          'one': 5,
          'rooms': 3,
          'jennifer': 3,
          'beals': 3,
          'antonio': 3,
          'banderas': 3,
          'tarantino': 3,
          'biggest': 3,
          'year': 3,
          'plot': 3,
          'worst': 3,
          'room': 3,
          'man': 3,
          'christmas': 2,
          'day': 2,
          'upbeat': 2,
          'comedy': 2,
          'theater': 2,
          'nfour': 2,
          'roth': 2,
          'quentin': 2,
          'valeria': 2,
          'golino': 2,
          'madonna': 2,
          'willis': 2,
          'tomei': 2,
          'alicia': 2,
          'witt': 2,
          'ione': 2,
          'skye': 2,
          'four': 2,
          'supposed': 2,
          'word': 2,
          'directors': 2,
          'big': 2,
          'cast': 2,
          'turned': 2,
          'could': 2,
          'great': 2,
          'hotel': 2,
          'wrote': 2,
          'nit': 2,
          'nthis': 2,
          'every': 2,
          'trash': 2,
          'suite': 2,
          'bellboy': 2,
          'finger': 2,
          'call': 2,
          'classic': 2,
          'reviews': 2,
          'saw': 1,
          'expecting': 1,
          'nboy': 1,
          'dissapointment': 1,
          'nafter': 1,
          'hour': 1,
          'ready': 1,
          'change': 1,
          'roomsinto': 1,
          'another': 1,
          'nread': 1,
          'see': 1,
          'say': 1,
          'nstarring': 1,
          'tim': 1,
          'bruce': 1,
          'marisa': 1,
          'lili': 1,
          'taylor': 1,
          'npossible': 1,
          'stars': 1,
          'n': 1,
          'hits': 1,
          'nkey': 1,
          'hollywood': 1,
          'robert': 1,
          'rodriguez': 1,
          'alexander': 1,
          'rockwell': 1,
          'alison': 1,
          'anders': 1,
          'directing': 1,
          'popular': 1,
          'ni': 1,
          'guess': 1,
          'much': 1,
          'flop': 1,
          'new': 1,
          'years': 1,
          'eve': 1,
          'bellboys': 1,
          'first': 1,
          'job': 1,
          'nhe': 1,
          'encounters': 1,
          'many': 1,
          'mysterious': 1,
          'kinky': 1,
          'guests': 1,
          'tries': 1,
          'handle': 1,
          'problems': 1,
          'ntarantino': 1,
          'told': 1,
          'script': 1,
          'written': 1,
          'dark': 1,
          'nanders': 1,
          'directed': 1,
          'tale': 1,
          'coven': 1,
          'witches': 1,
          'second': 1,
          'better': 1,
          'lacking': 1,
          'accuses': 1,
          'sleeping': 1,
          'wife': 1,
          'third': 1,
          'best': 1,
          'roomm': 1,
          'two': 1,
          'rambunctous': 1,
          'kids': 1,
          'final': 1,
          'star': 1,
          'wanting': 1,
          'chop': 1,
          'someones': 1,
          'plain': 1,
          'nthere': 1,
          'nothing': 1,
          'even': 1,
          'makes': 1,
          'quality': 1,
          'funny': 1,
          'didnt': 1,
          'hear': 1,
          'laugh': 1,
          'throughout': 1,
          'whole': 1,
          'ntim': 1,
          'horrible': 1,
          'bumbling': 1,
          'mumbling': 1,
          'ruins': 1,
          'joke': 1,
          'supporting': 1,
          'loses': 1,
          'meaning': 1,
          'support': 1,
          'mentionable': 1,
          'actorsactresses': 1,
          'nmarisa': 1,
          'appears': 1,
          'stupid': 1,
          'cameo': 1,
          'role': 1,
          'perhaps': 1,
          'like': 1,
          'plaza': 1,
          'wasnt': 1,
          'nas': 1,
          'trashy': 1,
          'people': 1,
          'ndo': 1,
          'chopping': 1,
          'madonnas': 1,
          'chest': 1,
          'showing': 1,
          'nlook': 1,
          'kens': 1,
          'kritic': 1,
          'korner': 1,
          'coming': 1,
          'soon': 1,
          'nplease': 1,
          'check': 1,
          'newsgroups': 1,
          'section': 1,
          'updated': 1,
          'np': 1,
          'made': 1,
          'number': 1,
          '1': 1,
          'top': 1,
          'ten': 1,
          'list': 1,
          '1995': 1,
          'nneg': 1}),
 Counter({'anna': 8,
          'king': 8,
          'nthe': 6,
          'movie': 5,
          'nthis': 4,
          'comes': 4,
          'british': 3,
          'siam': 3,
          'kings': 3,
          'ways': 3,
          'film': 2,
          'lavish': 2,
          'sets': 2,
          'emotional': 2,
          'much': 2,
          'make': 2,
          'two': 2,
          'stoic': 2,
          'schoolteacher': 2,
          'son': 2,
          'yunfat': 2,
          'whole': 2,
          'way': 2,
          'father': 2,
          'like': 2,
          'suspect': 2,
          'ever': 2,
          'develop': 2,
          'scene': 2,
          'one': 2,
          'classic': 2,
          'viewer': 2,
          'remains': 2,
          'nwe': 2,
          'never': 2,
          'characters': 2,
          'epic': 2,
          'tennant': 2,
          'ni': 2,
          'least': 1,
          'fourth': 1,
          'adaptation': 1,
          'margaret': 1,
          'landons': 1,
          'fact': 1,
          'based': 1,
          'novel': 1,
          'big': 1,
          'expensive': 1,
          'soulless': 1,
          'nthough': 1,
          'goodlooking': 1,
          'fancy': 1,
          'costumes': 1,
          'luscious': 1,
          'cinematography': 1,
          'little': 1,
          'compensate': 1,
          'wasteland': 1,
          'peter': 1,
          'krikes': 1,
          'steve': 1,
          'meersons': 1,
          'script': 1,
          'nso': 1,
          'money': 1,
          'spent': 1,
          'pretty': 1,
          'pictures': 1,
          'forgot': 1,
          'actually': 1,
          'interesting': 1,
          'jodie': 1,
          'fosters': 1,
          'first': 1,
          'since': 1,
          'jawdroppingly': 1,
          'brilliant': 1,
          'contact': 1,
          'came': 1,
          'years': 1,
          'ago': 1,
          'isnt': 1,
          'best': 1,
          'choice': 1,
          'show': 1,
          'acting': 1,
          'chops': 1,
          'nshes': 1,
          'trapped': 1,
          'role': 1,
          'leonowens': 1,
          'uptight': 1,
          'widowed': 1,
          'thailand': 1,
          'instruct': 1,
          'chow': 1,
          'west': 1,
          'england': 1,
          'world': 1,
          'likes': 1,
          'puts': 1,
          'charge': 1,
          'educating': 1,
          'royal': 1,
          'family': 1,
          '58': 1,
          'kids': 1,
          '10': 1,
          'impressive': 1,
          'eldest': 1,
          'prince': 1,
          'none': 1,
          'happy': 1,
          'offended': 1,
          'nwhy': 1,
          'punish': 1,
          'imperialist': 1,
          'soon': 1,
          'gets': 1,
          'know': 1,
          'stern': 1,
          'motherwholovesyou': 1,
          'personality': 1,
          'better': 1,
          'nmeanwhile': 1,
          'attack': 1,
          'neighboring': 1,
          'colony': 1,
          'burma': 1,
          'close': 1,
          'advisors': 1,
          'britains': 1,
          'arouses': 1,
          'suspicion': 1,
          'putting': 1,
          'uncomfortable': 1,
          'position': 1,
          'nshe': 1,
          'sure': 1,
          'seems': 1,
          'involvement': 1,
          'crisis': 1,
          'works': 1,
          'diffuse': 1,
          'prejudices': 1,
          'nhe': 1,
          'though': 1,
          'selfrighteous': 1,
          'cant': 1,
          'help': 1,
          'influenced': 1,
          'eloquent': 1,
          'slowly': 1,
          'quietly': 1,
          'affections': 1,
          'nthere': 1,
          'middle': 1,
          'younger': 1,
          'daughters': 1,
          'dies': 1,
          'nits': 1,
          'deathbed': 1,
          'girls': 1,
          'mournful': 1,
          'eyes': 1,
          'staring': 1,
          'tries': 1,
          'semi': 1,
          'successfully': 1,
          'maintain': 1,
          'composure': 1,
          'nanna': 1,
          'cries': 1,
          'bit': 1,
          'sequence': 1,
          'purpose': 1,
          'evoke': 1,
          'strong': 1,
          'response': 1,
          'nim': 1,
          'usually': 1,
          'sucker': 1,
          'scenes': 1,
          'yet': 1,
          'time': 1,
          'sitting': 1,
          'emotions': 1,
          'untouched': 1,
          'true': 1,
          'emotionally': 1,
          'barren': 1,
          'connections': 1,
          'given': 1,
          'reason': 1,
          'care': 1,
          'ludicrously': 1,
          'long': 1,
          'directed': 1,
          'andy': 1,
          'whose': 1,
          'last': 1,
          'favorites': 1,
          '1998': 1,
          'doubt': 1,
          'tennants': 1,
          'ability': 1,
          'put': 1,
          'together': 1,
          'decent': 1,
          'aside': 1,
          'psychologically': 1,
          'inept': 1,
          'also': 1,
          'technologically': 1,
          'deficient': 1,
          'scenery': 1,
          'gorgeous': 1,
          'camerawork': 1,
          'nothing': 1,
          'convey': 1,
          'grandeur': 1,
          'neven': 1,
          'terrence': 1,
          'malick': 1,
          'managed': 1,
          'flora': 1,
          'fauna': 1,
          'otherwise': 1,
          'abysmal': 1,
          'thin': 1,
          'red': 1,
          'line': 1,
          'muster': 1,
          '75': 1,
          'million': 1,
          'worth': 1,
          'props': 1,
          'shoot': 1,
          'malaysia': 1,
          'feel': 1,
          'camera': 1,
          'restricted': 1,
          'immediate': 1,
          'point': 1,
          'view': 1,
          'wide': 1,
          'tracking': 1,
          'shots': 1,
          'sweeping': 1,
          'zooms': 1,
          'fill': 1,
          'us': 1,
          'largerthanlife': 1,
          'awe': 1,
          'liked': 1,
          'foster': 1,
          'give': 1,
          'entertaining': 1,
          'terribly': 1,
          'involving': 1,
          'performances': 1,
          'lead': 1,
          'roles': 1,
          'nfosters': 1,
          'generally': 1,
          'persona': 1,
          'serves': 1,
          'well': 1,
          'playing': 1,
          'reserved': 1,
          'formal': 1,
          'rather': 1,
          'underdeveloped': 1,
          'character': 1,
          'nyunfat': 1,
          'especially': 1,
          'effective': 1,
          'perfectly': 1,
          'conveying': 1,
          'siams': 1,
          'sangfroid': 1,
          'permeated': 1,
          'violent': 1,
          'outbursts': 1,
          'nwhat': 1,
          'inability': 1,
          'involve': 1,
          'situations': 1,
          'cast': 1,
          'great': 1,
          'director': 1,
          'talented': 1,
          'budget': 1,
          'illadvised': 1,
          'remake': 1,
          'rogers': 1,
          'hammerstein': 1,
          'unable': 1,
          'utilize': 1,
          'things': 1,
          'form': 1,
          'compelling': 1,
          'emotionless': 1,
          'costume': 1,
          'nneg': 1}),
 Counter({'movie': 7,
          'nthe': 6,
          'robin': 5,
          'dialogue': 5,
          'brooks': 4,
          'none': 4,
          'could': 4,
          'man': 4,
          'richard': 4,
          'funny': 4,
          'simply': 4,
          'hood': 3,
          'men': 3,
          'film': 3,
          'movies': 3,
          'nmel': 3,
          'comic': 3,
          'acting': 3,
          'good': 3,
          'plot': 3,
          'scenes': 3,
          'nhe': 3,
          'also': 3,
          'offensive': 3,
          'tights': 2,
          'like': 2,
          'blazing': 2,
          'saddles': 2,
          'young': 2,
          'frankenstein': 2,
          'well': 2,
          'look': 2,
          'humor': 2,
          'even': 2,
          'one': 2,
          'worst': 2,
          'prince': 2,
          'nthis': 2,
          'ideas': 2,
          'around': 2,
          'hard': 2,
          'plays': 2,
          'captured': 2,
          'king': 2,
          'see': 2,
          'evil': 2,
          'lewis': 2,
          'tries': 2,
          'maid': 2,
          'marian': 2,
          'excruciating': 2,
          'actor': 2,
          'nperhaps': 2,
          'miserable': 2,
          'theatre': 2,
          'audience': 2,
          'visual': 2,
          'jokes': 2,
          'old': 2,
          'another': 1,
          'melbrooksproduced': 1,
          'classic': 1,
          'tradition': 1,
          'known': 1,
          'regular': 1,
          'life': 1,
          'fast': 1,
          'paced': 1,
          'sharp': 1,
          'wit': 1,
          'nunfortunately': 1,
          'easy': 1,
          'going': 1,
          'fun': 1,
          'devoid': 1,
          'charm': 1,
          'spaceballs': 1,
          'lacking': 1,
          'solid': 1,
          'history': 1,
          'world': 1,
          'nit': 1,
          'short': 1,
          'seen': 1,
          'mel': 1,
          'anybody': 1,
          'else': 1,
          'produce': 1,
          'borrows': 1,
          'heavily': 1,
          'wellreceived': 1,
          'kevin': 1,
          'costner': 1,
          'last': 1,
          'year': 1,
          'thieves': 1,
          'surprising': 1,
          'used': 1,
          'great': 1,
          'effect': 1,
          'mainly': 1,
          'parodying': 1,
          'orginal': 1,
          'take': 1,
          'advantage': 1,
          'however': 1,
          'uses': 1,
          'launch': 1,
          'several': 1,
          'air': 1,
          'connect': 1,
          'explained': 1,
          'later': 1,
          'shuffled': 1,
          'order': 1,
          'would': 1,
          'pressed': 1,
          'notice': 1,
          'ncary': 1,
          'elwes': 1,
          'princess': 1,
          'bride': 1,
          'fame': 1,
          'loxley': 1,
          'crusades': 1,
          'fighting': 1,
          'escapes': 1,
          'joining': 1,
          'named': 1,
          'achoo': 1,
          'sure': 1,
          'obvious': 1,
          'joke': 1,
          'fights': 1,
          'england': 1,
          'reclaim': 1,
          'name': 1,
          'throne': 1,
          'john': 1,
          'played': 1,
          'love': 1,
          'attempts': 1,
          'overthrow': 1,
          'sheriff': 1,
          'rottingham': 1,
          'na': 1,
          'adventure': 1,
          'sadly': 1,
          'unused': 1,
          'nelwes': 1,
          'excellent': 1,
          'comics': 1,
          'nneither': 1,
          'words': 1,
          'work': 1,
          'lines': 1,
          'arent': 1,
          'believable': 1,
          'example': 1,
          'group': 1,
          'merry': 1,
          'encounter': 1,
          'playing': 1,
          'macaulay': 1,
          'culkin': 1,
          'clone': 1,
          'hit': 1,
          'home': 1,
          'alone': 1,
          'particular': 1,
          'scene': 1,
          'place': 1,
          'badly': 1,
          'acted': 1,
          'followed': 1,
          'many': 1,
          'equal': 1,
          'really': 1,
          'felt': 1,
          'leaving': 1,
          'nmuch': 1,
          'continued': 1,
          'watches': 1,
          'throughout': 1,
          'left': 1,
          'nchuckles': 1,
          'far': 1,
          'mostly': 1,
          'dealt': 1,
          'beaten': 1,
          'horse': 1,
          'rentawreck': 1,
          'whatsoever': 1,
          'nscenes': 1,
          'classics': 1,
          'archery': 1,
          'contest': 1,
          'ruined': 1,
          'poor': 1,
          'largest': 1,
          'problem': 1,
          'basic': 1,
          'received': 1,
          'key': 1,
          'unlock': 1,
          'chastity': 1,
          'belt': 1,
          'witty': 1,
          'circumcisiongiving': 1,
          'rabbi': 1,
          'others': 1,
          'jewish': 1,
          'either': 1,
          'trying': 1,
          'large': 1,
          'fails': 1,
          'addition': 1,
          'blind': 1,
          'stumbles': 1,
          'falling': 1,
          'cliffs': 1,
          'walking': 1,
          'ledges': 1,
          'general': 1,
          'buffoon': 1,
          'humorous': 1,
          'potential': 1,
          'made': 1,
          'terribly': 1,
          'reason': 1,
          'surprise': 1,
          'end': 1,
          'worth': 1,
          'waiting': 1,
          'stand': 1,
          'hour': 1,
          'half': 1,
          'unfunny': 1,
          'puns': 1,
          'ancient': 1,
          'bad': 1,
          'nif': 1,
          'cant': 1,
          'dont': 1,
          'bother': 1,
          'watching': 1,
          'nneg': 1}),
 Counter({'nthe': 12,
          'sphere': 9,
          'film': 7,
          'crichton': 5,
          'movie': 5,
          'squid': 4,
          'seems': 3,
          'dull': 3,
          'budget': 3,
          'hoffman': 3,
          'scene': 3,
          'nbut': 3,
          'scenes': 3,
          'much': 3,
          'theres': 3,
          'films': 2,
          'entertaining': 2,
          'nhowever': 2,
          'wrong': 2,
          '100': 2,
          'million': 2,
          'good': 2,
          'director': 2,
          'barry': 2,
          'levison': 2,
          'disclosure': 2,
          'long': 2,
          'huge': 2,
          'goodman': 2,
          'peter': 2,
          'coyote': 2,
          'mathematician': 2,
          'jackson': 2,
          'stone': 2,
          'massive': 2,
          'went': 2,
          'along': 2,
          'throughout': 2,
          'sillier': 2,
          'help': 2,
          'either': 2,
          'probably': 2,
          'hell': 2,
          'audience': 2,
          'goes': 2,
          'hes': 2,
          'drama': 2,
          'action': 2,
          'like': 2,
          'every': 2,
          'line': 2,
          'hoping': 2,
          'would': 2,
          'bit': 2,
          'picture': 2,
          'see': 2,
          'though': 2,
          'plot': 2,
          'abyss': 2,
          'although': 2,
          'successful': 1,
          'books': 1,
          'movies': 1,
          'michael': 1,
          'well': 1,
          'nwith': 1,
          'early': 1,
          'successes': 1,
          'westworld': 1,
          '1973': 1,
          'coma': 1,
          '1978': 1,
          'recent': 1,
          'jurassic': 1,
          'park': 1,
          '1993': 1,
          'taken': 1,
          'turn': 1,
          'somewhere': 1,
          'nthis': 1,
          'mess': 1,
          'winded': 1,
          'disappointment': 1,
          'nconsidering': 1,
          'star': 1,
          'cast': 1,
          'story': 1,
          'majorly': 1,
          'disappointing': 1,
          'opens': 1,
          'norman': 1,
          'psychologist': 1,
          'thinks': 1,
          'visiting': 1,
          'airplane': 1,
          'crash': 1,
          'console': 1,
          'survivors': 1,
          'arrives': 1,
          'told': 1,
          'supervisor': 1,
          'barnes': 1,
          'actually': 1,
          'investigating': 1,
          'spacecraft': 1,
          'nalong': 1,
          'harry': 1,
          'adams': 1,
          'biologist': 1,
          'beth': 1,
          'halperin': 1,
          'ted': 1,
          'fielding': 1,
          'liev': 1,
          'schrieber': 1,
          'nthey': 1,
          'investigate': 1,
          'spaceship': 1,
          'find': 1,
          'inside': 1,
          'meet': 1,
          'alien': 1,
          'intelligence': 1,
          'called': 1,
          'jerry': 1,
          'basically': 1,
          'weird': 1,
          'crap': 1,
          'happens': 1,
          'nunfortunately': 1,
          'something': 1,
          'way': 1,
          'starts': 1,
          'enough': 1,
          'gets': 1,
          'jaunts': 1,
          'never': 1,
          'fully': 1,
          'explaining': 1,
          'going': 1,
          'actors': 1,
          'directing': 1,
          'dont': 1,
          'nhoffman': 1,
          'autopilot': 1,
          'almost': 1,
          'embarrassed': 1,
          'churning': 1,
          'lines': 1,
          'wondering': 1,
          'nstone': 1,
          'useless': 1,
          'displaying': 1,
          'emotion': 1,
          'fails': 1,
          'convince': 1,
          'feelings': 1,
          'person': 1,
          'fun': 1,
          'whos': 1,
          'funny': 1,
          'slowly': 1,
          'crazy': 1,
          'entering': 1,
          'hardly': 1,
          'end': 1,
          'hams': 1,
          'officer': 1,
          'killed': 1,
          'halfway': 1,
          'levinson': 1,
          'directed': 1,
          'better': 1,
          'adaptation': 1,
          '1994': 1,
          'messes': 1,
          'quite': 1,
          'frankly': 1,
          'boring': 1,
          'suffer': 1,
          'overkill': 1,
          'throwing': 1,
          'camera': 1,
          'place': 1,
          'godawful': 1,
          'speed': 1,
          '2': 1,
          '1997': 1,
          'writing': 1,
          'doesnt': 1,
          'nalthough': 1,
          'great': 1,
          'plots': 1,
          'terrible': 1,
          'dialogue': 1,
          'practically': 1,
          'dud': 1,
          'speech': 1,
          'simple': 1,
          'intelligent': 1,
          'npractically': 1,
          'stating': 1,
          'obvious': 1,
          'nnone': 1,
          'smart': 1,
          'nalso': 1,
          'go': 1,
          'impressive': 1,
          'nice': 1,
          'special': 1,
          'effect': 1,
          'shots': 1,
          'anyones': 1,
          'guess': 1,
          'ntheres': 1,
          'giant': 1,
          'attack': 1,
          'even': 1,
          'ni': 1,
          'assume': 1,
          'trying': 1,
          'build': 1,
          'tension': 1,
          'showing': 1,
          'handled': 1,
          'correctly': 1,
          'whole': 1,
          'done': 1,
          'badly': 1,
          'could': 1,
          'stupid': 1,
          'nfinally': 1,
          'idea': 1,
          'genre': 1,
          'nlevison': 1,
          'cant': 1,
          'handle': 1,
          'nit': 1,
          'leaps': 1,
          'hokey': 1,
          'scifi': 1,
          'horror': 1,
          'finally': 1,
          'shiningevent': 1,
          'horizon': 1,
          'psychological': 1,
          'thriller': 1,
          'nand': 1,
          'course': 1,
          '1988': 1,
          'defense': 1,
          'write': 1,
          'released': 1,
          'far': 1,
          'superior': 1,
          'rubbish': 1,
          'nits': 1,
          'bad': 1,
          'right': 1,
          'jump': 1,
          'nothing': 1,
          'scary': 1,
          'occasionally': 1,
          'interesting': 1,
          'overall': 1,
          'big': 1,
          'waste': 1,
          'fine': 1,
          'talent': 1,
          'lot': 1,
          'money': 1,
          'potentially': 1,
          'nnot': 1,
          'really': 1,
          'worth': 1,
          'seeing': 1,
          'noverall': 1,
          'rating': 1,
          'review': 1,
          'david': 1,
          'wilcock': 1,
          'nneg': 1}),
 Counter({'bottle': 10,
          'message': 8,
          'film': 5,
          'movie': 5,
          'theresa': 5,
          'finds': 5,
          'type': 4,
          'letter': 4,
          'garrett': 4,
          'man': 3,
          'since': 3,
          'great': 3,
          'one': 3,
          'find': 3,
          'know': 3,
          'say': 3,
          'characters': 3,
          'last': 2,
          'drama': 2,
          'woman': 2,
          'luck': 2,
          'ultimately': 2,
          'story': 2,
          'trying': 2,
          'make': 2,
          'robin': 2,
          'wright': 2,
          'penn': 2,
          'chicago': 2,
          'tribune': 2,
          'love': 2,
          'named': 2,
          'catherine': 2,
          'around': 2,
          'based': 2,
          'theresas': 2,
          'costner': 2,
          'immediately': 2,
          'garretts': 2,
          'years': 2,
          'wouldnt': 2,
          'melodrama': 2,
          'city': 2,
          'nit': 2,
          'seems': 2,
          'set': 2,
          'main': 2,
          'nthe': 2,
          'dialogue': 2,
          'felt': 2,
          'read': 2,
          'similar': 2,
          'director': 1,
          'luis': 1,
          'mandokis': 1,
          'superb': 1,
          'serious': 1,
          '1994': 1,
          'loves': 1,
          'run': 1,
          'latest': 1,
          'picture': 1,
          'worst': 1,
          'romance': 1,
          'tugs': 1,
          'relentlessly': 1,
          'violently': 1,
          'heartstrings': 1,
          'miraculously': 1,
          'manages': 1,
          'dry': 1,
          'eyes': 1,
          'rather': 1,
          'tear': 1,
          'neverything': 1,
          'occurs': 1,
          'telegraphed': 1,
          'way': 1,
          'advance': 1,
          'done': 1,
          'many': 1,
          'times': 1,
          'beforeand': 1,
          'much': 1,
          'betterso': 1,
          'theres': 1,
          'absence': 1,
          'suspense': 1,
          'moves': 1,
          'deliberate': 1,
          'pace': 1,
          'meaningful': 1,
          'statements': 1,
          'plot': 1,
          'developments': 1,
          'becomes': 1,
          'tedious': 1,
          'bore': 1,
          'sit': 1,
          'n': 1,
          'begins': 1,
          'osborne': 1,
          'single': 1,
          'mother': 1,
          'researcher': 1,
          'washed': 1,
          'shore': 1,
          'jogging': 1,
          'day': 1,
          'ninside': 1,
          'anonymous': 1,
          'addressed': 1,
          'mystery': 1,
          'taken': 1,
          'aback': 1,
          'honesty': 1,
          'sweetness': 1,
          'shows': 1,
          'work': 1,
          'objection': 1,
          'editor': 1,
          'placed': 1,
          'newspaper': 1,
          'nsoon': 1,
          'heavy': 1,
          'research': 1,
          'conducted': 1,
          'wrote': 1,
          'ship': 1,
          'logo': 1,
          'top': 1,
          'typed': 1,
          'traced': 1,
          'blake': 1,
          'traveling': 1,
          'outer': 1,
          'banks': 1,
          'boating': 1,
          'town': 1,
          'north': 1,
          'carolina': 1,
          'specifics': 1,
          'nof': 1,
          'course': 1,
          'turns': 1,
          'handsome': 1,
          'rugged': 1,
          'age': 1,
          'played': 1,
          'kevin': 1,
          'nshe': 1,
          'charmed': 1,
          'hesitant': 1,
          'unveil': 1,
          'truth': 1,
          'late': 1,
          'wife': 1,
          'died': 1,
          'earlier': 1,
          'ndo': 1,
          'think': 1,
          'headed': 1,
          'nmost': 1,
          'likely': 1,
          'call': 1,
          'giving': 1,
          'away': 1,
          'anything': 1,
          'pictures': 1,
          'end': 1,
          'fallen': 1,
          'deep': 1,
          'artificial': 1,
          'didnt': 1,
          'buy': 1,
          'second': 1,
          'nif': 1,
          'positive': 1,
          'things': 1,
          'performances': 1,
          'paul': 1,
          'newman': 1,
          'stubborn': 1,
          'loving': 1,
          'father': 1,
          'far': 1,
          'par': 1,
          'wasteful': 1,
          'shaggy': 1,
          'dog': 1,
          'cinematography': 1,
          'caleb': 1,
          'deschanel': 1,
          'takes': 1,
          'advantage': 1,
          'beautiful': 1,
          'eastern': 1,
          'coast': 1,
          'paints': 1,
          'equally': 1,
          'alluring': 1,
          'nmeanwhile': 1,
          'yet': 1,
          'redeem': 1,
          'lessthanstellar': 1,
          'films': 1,
          'made': 1,
          'recently': 1,
          'bad': 1,
          'want': 1,
          'another': 1,
          'near': 1,
          'water': 1,
          'ridiculous': 1,
          'centerpieces': 1,
          'stormswept': 1,
          'sea': 1,
          'actors': 1,
          'sadly': 1,
          'wasted': 1,
          'including': 1,
          'illeana': 1,
          'douglas': 1,
          'underused': 1,
          'actress': 1,
          'always': 1,
          'get': 1,
          'stuck': 1,
          'friend': 1,
          'roles': 1,
          'playing': 1,
          'penns': 1,
          'confidante': 1,
          'coworker': 1,
          'first': 1,
          'half': 1,
          'plays': 1,
          'like': 1,
          'humdrum': 1,
          'trite': 1,
          'television': 1,
          'lifetime': 1,
          'channel': 1,
          'spends': 1,
          'deal': 1,
          'time': 1,
          'getting': 1,
          'least': 1,
          'bit': 1,
          'stimulating': 1,
          'entertaining': 1,
          'nusually': 1,
          'person': 1,
          'practically': 1,
          'salivate': 1,
          'dialogueladen': 1,
          'sequences': 1,
          'doubt': 1,
          'develop': 1,
          'relationships': 1,
          'rang': 1,
          'resounding': 1,
          'falseness': 1,
          'written': 1,
          'people': 1,
          'really': 1,
          'talking': 1,
          'nwhen': 1,
          'little': 1,
          'interest': 1,
          'particularly': 1,
          'interesting': 1,
          'trouble': 1,
          'ni': 1,
          'swear': 1,
          'watching': 1,
          'screenplay': 1,
          'entirety': 1,
          'arriving': 1,
          'theater': 1,
          'heck': 1,
          'actuality': 1,
          'im': 1,
          'even': 1,
          'familiar': 1,
          'novel': 1,
          'nicholas': 1,
          'sparks': 1,
          'nalways': 1,
          'step': 1,
          'ahead': 1,
          'ran': 1,
          'closely': 1,
          'tightly': 1,
          'constraints': 1,
          'triedandtrue': 1,
          'hollywood': 1,
          'strip': 1,
          'often': 1,
          'seemed': 1,
          'almost': 1,
          'danger': 1,
          'tearing': 1,
          'nnobody': 1,
          'wins': 1,
          'prizes': 1,
          'guessing': 1,
          'eventually': 1,
          'secret': 1,
          'several': 1,
          'obstacles': 1,
          'come': 1,
          'within': 1,
          'ways': 1,
          'living': 1,
          'happily': 1,
          'ever': 1,
          'nthis': 1,
          'exact': 1,
          'problem': 1,
          'occurred': 1,
          'watch': 1,
          'realize': 1,
          'mean': 1,
          'meg': 1,
          'ryannicolas': 1,
          'cage': 1,
          'romantic': 1,
          'angels': 1,
          'nalthough': 1,
          'deeply': 1,
          'touched': 1,
          'heartfelt': 1,
          'perhaps': 1,
          'filmakers': 1,
          'might': 1,
          'better': 1,
          'finding': 1,
          'preferably': 1,
          'filming': 1,
          'began': 1,
          'memo': 1,
          'screenwriters': 1,
          'use': 1,
          'brain': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'really': 4,
          'little': 4,
          'funny': 4,
          'nthe': 4,
          'far': 4,
          'scenes': 4,
          'nthere': 3,
          'involving': 3,
          'thing': 3,
          'ni': 2,
          'guess': 2,
          'caddyshack': 2,
          'laughs': 2,
          'caddy': 2,
          'club': 2,
          'cast': 2,
          'unknown': 2,
          'fairly': 2,
          'completely': 2,
          'real': 2,
          'rest': 2,
          'camera': 2,
          'story': 2,
          'murray': 2,
          'nmost': 2,
          'dangerfield': 2,
          'knight': 2,
          'painfully': 2,
          'chevy': 2,
          'chase': 2,
          'nim': 2,
          'sure': 2,
          'writers': 2,
          'comedy': 2,
          'remember': 1,
          'enjoying': 1,
          'saw': 1,
          'years': 1,
          'ago': 1,
          'memory': 1,
          'sucks': 1,
          'arent': 1,
          'great': 1,
          'ncaddyshack': 1,
          'name': 1,
          'implies': 1,
          'less': 1,
          'centers': 1,
          'one': 1,
          'young': 1,
          'working': 1,
          'exclusive': 1,
          'country': 1,
          'nmichael': 1,
          'okeefe': 1,
          'plays': 1,
          'said': 1,
          'nwhy': 1,
          'untalented': 1,
          'actor': 1,
          'lead': 1,
          'role': 1,
          'beyond': 1,
          'doesnt': 1,
          'seem': 1,
          'plot': 1,
          'series': 1,
          'opportunities': 1,
          'mug': 1,
          'call': 1,
          'subplot': 1,
          'mentally': 1,
          'disturbed': 1,
          'greens': 1,
          'keeper': 1,
          'bill': 1,
          'private': 1,
          'war': 1,
          'gopher': 1,
          'ruining': 1,
          'course': 1,
          'marginal': 1,
          'come': 1,
          'rodney': 1,
          'ted': 1,
          'mugging': 1,
          'overacting': 1,
          'limited': 1,
          'success': 1,
          'nbill': 1,
          'slightly': 1,
          'amusing': 1,
          'places': 1,
          'wasted': 1,
          'biggest': 1,
          'waste': 1,
          'didnt': 1,
          'even': 1,
          'crack': 1,
          'smile': 1,
          'face': 1,
          'characters': 1,
          'lame': 1,
          'zenlike': 1,
          'approach': 1,
          'golfing': 1,
          'decent': 1,
          'interaction': 1,
          'infrequent': 1,
          'carry': 1,
          'thats': 1,
          'get': 1,
          'basing': 1,
          'around': 1,
          'kid': 1,
          'thinking': 1,
          'think': 1,
          'something': 1,
          'removed': 1,
          'putting': 1,
          'pen': 1,
          'paper': 1,
          'nnothing': 1,
          'works': 1,
          'nit': 1,
          'wouldnt': 1,
          'taken': 1,
          'genius': 1,
          'figure': 1,
          'wasnt': 1,
          'going': 1,
          'fly': 1,
          'couldnt': 1,
          'possibly': 1,
          'nits': 1,
          'brain': 1,
          'damaged': 1,
          'world': 1,
          'oneness': 1,
          'golf': 1,
          'ball': 1,
          'supposed': 1,
          'nin': 1,
          'reality': 1,
          'embarrassing': 1,
          'watch': 1,
          'scene': 1,
          'pool': 1,
          'caddies': 1,
          'go': 1,
          'wild': 1,
          'hot': 1,
          'babe': 1,
          'walking': 1,
          'bikini': 1,
          'nolive': 1,
          'oil': 1,
          'would': 1,
          'filled': 1,
          'swimsuit': 1,
          'better': 1,
          'girl': 1,
          'neverything': 1,
          'implausible': 1,
          'concerned': 1,
          'nmaybe': 1,
          'drunk': 1,
          'mind': 1,
          'high': 1,
          'sort': 1,
          'illegal': 1,
          'narcotic': 1,
          'might': 1,
          'nbut': 1,
          'us': 1,
          'stay': 1,
          'hell': 1,
          'away': 1,
          'nneg': 1}),
 Counter({'libby': 7,
          'fugitive': 6,
          'jones': 5,
          'time': 5,
          'movie': 4,
          'tommy': 3,
          'lee': 3,
          'innocent': 3,
          'nthe': 3,
          'double': 3,
          'jeopardy': 3,
          'one': 3,
          'parole': 3,
          'officer': 3,
          'judd': 3,
          'husband': 3,
          'bruce': 3,
          'movies': 3,
          'son': 3,
          'like': 3,
          'trying': 2,
          'kill': 2,
          'another': 2,
          'action': 2,
          'good': 2,
          'nthere': 2,
          'greenwood': 2,
          'needed': 2,
          'money': 2,
          'prison': 2,
          'parsons': 2,
          'never': 2,
          'crime': 2,
          'still': 2,
          'decides': 2,
          'way': 2,
          'break': 2,
          'continue': 2,
          'scene': 2,
          'picture': 2,
          'get': 2,
          'oscar': 2,
          'chases': 1,
          'victim': 1,
          'around': 1,
          'america': 1,
          'prove': 1,
          'spouse': 1,
          'nnot': 1,
          'quite': 1,
          'plot': 1,
          'copycat': 1,
          'without': 1,
          'excitement': 1,
          'acting': 1,
          'original': 1,
          'slight': 1,
          'differences': 1,
          'besides': 1,
          'bad': 1,
          'plays': 1,
          'us': 1,
          'marshall': 1,
          'clever': 1,
          'huh': 1,
          'noh': 1,
          'ashley': 1,
          'framed': 1,
          'collect': 1,
          'two': 1,
          'million': 1,
          'dollars': 1,
          'life': 1,
          'insurance': 1,
          'armed': 1,
          'man': 1,
          'nboth': 1,
          'video': 1,
          'nmake': 1,
          'wise': 1,
          'choice': 1,
          'pick': 1,
          'many': 1,
          'flaws': 1,
          'laughable': 1,
          'nwhile': 1,
          'serving': 1,
          'discovers': 1,
          'charged': 1,
          'committing': 1,
          'twice': 1,
          'nlearning': 1,
          'alive': 1,
          'serve': 1,
          'find': 1,
          'retrieve': 1,
          'necessary': 1,
          'nwhen': 1,
          'strict': 1,
          'travis': 1,
          'lehman': 1,
          'stands': 1,
          'rules': 1,
          'knows': 1,
          'plan': 1,
          'despite': 1,
          'fact': 1,
          'gets': 1,
          'caught': 1,
          'shes': 1,
          'going': 1,
          'back': 1,
          'jail': 1,
          'ndirector': 1,
          'beresford': 1,
          'spends': 1,
          'much': 1,
          'convince': 1,
          'audience': 1,
          'misses': 1,
          'nevery': 1,
          'given': 1,
          'shot': 1,
          'staring': 1,
          'crying': 1,
          'nin': 1,
          'valuable': 1,
          'wasted': 1,
          'shots': 1,
          'takes': 1,
          'away': 1,
          'opportunities': 1,
          'something': 1,
          'nall': 1,
          'type': 1,
          'short': 1,
          'tells': 1,
          'friend': 1,
          'miss': 1,
          'nnothing': 1,
          'nothing': 1,
          'less': 1,
          'ndr': 1,
          'kimble': 1,
          'didnt': 1,
          'look': 1,
          'dead': 1,
          'wife': 1,
          'primary': 1,
          'concern': 1,
          'save': 1,
          'nlibby': 1,
          'times': 1,
          'shows': 1,
          'determination': 1,
          'nearly': 1,
          'enough': 1,
          'nashley': 1,
          'excellent': 1,
          'actors': 1,
          'typecast': 1,
          'rest': 1,
          'careers': 1,
          'kind': 1,
          'doomed': 1,
          'costar': 1,
          'nwinning': 1,
          'must': 1,
          'convinced': 1,
          'audiences': 1,
          'tired': 1,
          'idomyjobwhethertheyareinnocentorguilty': 1,
          'roles': 1,
          'npeople': 1,
          'pay': 1,
          'see': 1,
          'makes': 1,
          'plenty': 1,
          'guess': 1,
          'right': 1,
          'nthough': 1,
          'dont': 1,
          'think': 1,
          'win': 1,
          'ultimate': 1,
          'mistake': 1,
          'script': 1,
          'eventually': 1,
          'becomes': 1,
          'neven': 1,
          'excused': 1,
          'disobeying': 1,
          'number': 1,
          'crimes': 1,
          'commits': 1,
          'run': 1,
          'numerous': 1,
          'count': 1,
          'nburglary': 1,
          'assault': 1,
          'grand': 1,
          'theft': 1,
          'auto': 1,
          'libbys': 1,
          'slipups': 1,
          'message': 1,
          'small': 1,
          'laws': 1,
          'long': 1,
          'youre': 1,
          'major': 1,
          'nhopefully': 1,
          'criminals': 1,
          'wont': 1,
          'use': 1,
          'reference': 1,
          'court': 1,
          'nthat': 1,
          'would': 1,
          'plain': 1,
          'stupid': 1,
          'nneg': 1}),
 Counter({'josh': 6,
          'cooper': 5,
          'life': 4,
          'student': 3,
          'roommate': 3,
          'nso': 2,
          '_dead_man_on_campus_': 2,
          'academic': 2,
          'sex': 2,
          'two': 2,
          'students': 2,
          'suicide': 2,
          'cohn': 2,
          'time': 2,
          'build': 2,
          'booze': 2,
          'said': 2,
          'nthe': 2,
          'cliff': 2,
          'grow': 2,
          'fond': 1,
          'writers': 1,
          'use': 1,
          'cheap': 1,
          'easy': 1,
          'puns': 1,
          'completely': 1,
          'using': 1,
          'situation': 1,
          'merits': 1,
          'witness': 1,
          'review': 1,
          '_pecker_': 1,
          'couple': 1,
          'issues': 1,
          'ago': 1,
          'goes': 1,
          'juvenile': 1,
          'collegeset': 1,
          'black': 1,
          'comedy': 1,
          'dead': 1,
          'arrival': 1,
          'nstraitlaced': 1,
          'med': 1,
          'tom': 1,
          'everett': 1,
          'scott': 1,
          'manages': 1,
          'remain': 1,
          'somewhat': 1,
          'likable': 1,
          'throughout': 1,
          'blemishfree': 1,
          'record': 1,
          'breaks': 1,
          'fs': 1,
          'thanks': 1,
          'influence': 1,
          'everpartying': 1,
          'markpaul': 1,
          'gosselaar': 1,
          'introduces': 1,
          'boozefilled': 1,
          'nights': 1,
          'come': 1,
          'university': 1,
          'nwith': 1,
          'threat': 1,
          'losing': 1,
          'scholarship': 1,
          'cleaning': 1,
          'toilets': 1,
          'dad': 1,
          'looming': 1,
          'goodhearted': 1,
          'slackers': 1,
          'neasylook': 1,
          'loophole': 1,
          'find': 1,
          'form': 1,
          'unbelievable': 1,
          'rule': 1,
          'school': 1,
          'charter': 1,
          'states': 1,
          'commits': 1,
          'surviving': 1,
          'shall': 1,
          'receive': 1,
          'straight': 1,
          'instead': 1,
          'studying': 1,
          'attempt': 1,
          'seek': 1,
          'depressed': 1,
          'move': 1,
          'dorm': 1,
          'room': 1,
          'drive': 1,
          'semester': 1,
          'ends': 1,
          'ndirector': 1,
          'alan': 1,
          'screenwriters': 1,
          'michael': 1,
          'traeger': 1,
          'mike': 1,
          'white': 1,
          'working': 1,
          'story': 1,
          'anthony': 1,
          'abrams': 1,
          'adam': 1,
          'larson': 1,
          'broder': 1,
          'take': 1,
          'sweet': 1,
          'head': 1,
          'steam': 1,
          'comes': 1,
          'coopers': 1,
          'diabolical': 1,
          'plot': 1,
          'nuntil': 1,
          'usual': 1,
          'boring': 1,
          'cliches': 1,
          'college': 1,
          'fill': 1,
          'made': 1,
          'feel': 1,
          'longer': 1,
          '_saved_by_the_bell_': 1,
          'alumnus': 1,
          'gosselaars': 1,
          'sitcombred': 1,
          'mugging': 1,
          'nthat': 1,
          'company': 1,
          'comic': 1,
          'momentum': 1,
          'mishandle': 1,
          'introduction': 1,
          'manic': 1,
          'psychotic': 1,
          'lochlyn': 1,
          'munro': 1,
          'potential': 1,
          'brings': 1,
          'demented': 1,
          'uninspired': 1,
          'proceedings': 1,
          'hastily': 1,
          'written': 1,
          'favor': 1,
          'less': 1,
          'interesting': 1,
          'candidates': 1,
          'paranoid': 1,
          'nerd': 1,
          'buckley': 1,
          'randy': 1,
          'pearlstein': 1,
          'british': 1,
          'death': 1,
          'rocker': 1,
          'matt': 1,
          'corey': 1,
          'page': 1,
          'none': 1,
          'wishes': 1,
          'would': 1,
          'reappear': 1,
          'say': 1,
          'careful': 1,
          'wish': 1,
          'nnot': 1,
          'surprisingly': 1,
          'resurface': 1,
          'becomes': 1,
          'clear': 1,
          'character': 1,
          'best': 1,
          'taken': 1,
          'small': 1,
          'dose': 1,
          'almost': 1,
          'immediately': 1,
          'extended': 1,
          'boorish': 1,
          'sociopathic': 1,
          'antics': 1,
          'loses': 1,
          'novelty': 1,
          'nwhatever': 1,
          'morbid': 1,
          'appeal': 1,
          'farfetched': 1,
          'premise': 1,
          'quickly': 1,
          'evaporates': 1,
          'selfabsorbed': 1,
          'characters': 1,
          'especially': 1,
          'pretty': 1,
          'much': 1,
          'grate': 1,
          'getgo': 1,
          'n_dead_man_': 1,
          'doesnt': 1,
          'tiresome': 1,
          'already': 1,
          '_is_': 1,
          'clever': 1,
          'opening': 1,
          'titles': 1,
          'nas': 1,
          'slogs': 1,
          'along': 1,
          'cheesy': 1,
          'happyforallparties': 1,
          'conclusion': 1,
          '_dead_man_': 1,
          'lives': 1,
          'title': 1,
          'somenot': 1,
          'movie': 1,
          'even': 1,
          'tired': 1,
          'die': 1,
          'still': 1,
          'insists': 1,
          'going': 1,
          'nlike': 1,
          'zombie': 1,
          'nneg': 1}),
 Counter({'movie': 6,
          'project': 6,
          'reeves': 5,
          'keanu': 5,
          'really': 5,
          'much': 4,
          'get': 4,
          'doesnt': 4,
          'nthe': 4,
          'time': 4,
          'n': 4,
          'great': 3,
          'morgan': 3,
          'freeman': 3,
          'fugitive': 3,
          'rachel': 3,
          'could': 3,
          'help': 3,
          'nhe': 3,
          'world': 3,
          'ford': 3,
          'characters': 3,
          'well': 3,
          'andrew': 2,
          'davis': 2,
          'give': 2,
          'us': 2,
          'weisz': 2,
          'eddie': 2,
          'kasalivich': 2,
          'machinist': 2,
          'university': 2,
          'chicago': 2,
          'making': 2,
          'hydrogen': 2,
          'solution': 2,
          'nthis': 2,
          'energy': 2,
          'problems': 2,
          'paul': 2,
          'shannon': 2,
          'leader': 2,
          'quickly': 2,
          'released': 2,
          'like': 2,
          'thing': 2,
          'english': 2,
          'chase': 2,
          'chain': 2,
          'reaction': 2,
          'given': 2,
          'better': 2,
          'alone': 2,
          'didnt': 2,
          'know': 2,
          'nwe': 2,
          'dont': 2,
          'still': 2,
          'probably': 2,
          'hit': 2,
          'boy': 1,
          'nkeanu': 1,
          'acting': 1,
          'together': 1,
          'director': 1,
          'back': 1,
          'another': 1,
          'thriller': 1,
          'beautiful': 1,
          'stealing': 1,
          'beauty': 1,
          'thrown': 1,
          'boot': 1,
          'nhow': 1,
          'blockbuster': 1,
          'nall': 1,
          'diehard': 1,
          'fans': 1,
          'read': 1,
          'nol': 1,
          'ado': 1,
          'nothing': 1,
          'plays': 1,
          'studying': 1,
          'nto': 1,
          'pay': 1,
          'rent': 1,
          'takes': 1,
          'job': 1,
          'machinery': 1,
          'conducted': 1,
          'nby': 1,
          'happy': 1,
          'coincidence': 1,
          'also': 1,
          'happens': 1,
          'stumble': 1,
          'final': 1,
          'problem': 1,
          'thus': 1,
          'one': 1,
          'knows': 1,
          'key': 1,
          'performing': 1,
          'feat': 1,
          'miracle': 1,
          'physics': 1,
          'holds': 1,
          'promise': 1,
          'taking': 1,
          'water': 1,
          'giving': 1,
          'put': 1,
          'na': 1,
          'potential': 1,
          'earths': 1,
          'without': 1,
          'pollution': 1,
          'cost': 1,
          'nsurely': 1,
          'nobody': 1,
          'nmorgan': 1,
          'projects': 1,
          'sponsor': 1,
          'works': 1,
          'powerful': 1,
          'organization': 1,
          'disagrees': 1,
          'paternal': 1,
          'technology': 1,
          'public': 1,
          'figures': 1,
          'disintegrate': 1,
          'anarchy': 1,
          'results': 1,
          'nso': 1,
          'murders': 1,
          'blows': 1,
          'short': 1,
          'scene': 1,
          'sort': 1,
          'mini': 1,
          'id4': 1,
          'citydevastation': 1,
          'tries': 1,
          'simulate': 1,
          'experiment': 1,
          'hitech': 1,
          'hushhush': 1,
          'location': 1,
          'nunfortunately': 1,
          'intrepid': 1,
          'physicist': 1,
          'manage': 1,
          'away': 1,
          'follows': 1,
          'fugitivelike': 1,
          'using': 1,
          'dissimilar': 1,
          'rehash': 1,
          'script': 1,
          'dying': 1,
          'comparison': 1,
          'nboth': 1,
          'movies': 1,
          'use': 1,
          'main': 1,
          'city': 1,
          'since': 1,
          'place': 1,
          'change': 1,
          'guess': 1,
          'cant': 1,
          'blame': 1,
          'setting': 1,
          'paucity': 1,
          'atmosphere': 1,
          'trouble': 1,
          'harrison': 1,
          'tommy': 1,
          'lee': 1,
          'jones': 1,
          'fred': 1,
          'ward': 1,
          'ncredit': 1,
          'arent': 1,
          'chance': 1,
          'empathise': 1,
          'nwhere': 1,
          'able': 1,
          'work': 1,
          'within': 1,
          'confines': 1,
          'evoke': 1,
          'sympathy': 1,
          'doesn9t': 1,
          'seem': 1,
          'believeable': 1,
          'character': 1,
          'never': 1,
          'develop': 1,
          'nit': 1,
          'might': 1,
          'investment': 1,
          'film': 1,
          'depth': 1,
          'spend': 1,
          'less': 1,
          'sequences': 1,
          'frankly': 1,
          'quite': 1,
          'boring': 1,
          'nharrison': 1,
          'man': 1,
          'trust': 1,
          'came': 1,
          'across': 1,
          'real': 1,
          'nin': 1,
          'isnt': 1,
          'nnow': 1,
          'would': 1,
          'fine': 1,
          'fleeing': 1,
          'couple': 1,
          'chemistry': 1,
          'portray': 1,
          'paranoia': 1,
          'vulnerability': 1,
          'confusion': 1,
          'thinking': 1,
          'hes': 1,
          'speed': 1,
          'sandra': 1,
          'bullock': 1,
          'accent': 1,
          'drive': 1,
          'bus': 1,
          'hardly': 1,
          'contributes': 1,
          'anything': 1,
          'producers': 1,
          'thought': 1,
          'hey': 1,
          'nlets': 1,
          'rope': 1,
          'nwell': 1,
          'screen': 1,
          'unfortunately': 1,
          'either': 1,
          'come': 1,
          'always': 1,
          'full': 1,
          'load': 1,
          'cigars': 1,
          'cigar': 1,
          'holder': 1,
          'nits': 1,
          'fault': 1,
          'nonce': 1,
          'take': 1,
          'build': 1,
          'nsomeone': 1,
          'must': 1,
          'convinced': 1,
          'round': 1,
          'cinema': 1,
          'dollars': 1,
          'best': 1,
          'earned': 1,
          'run': 1,
          'headless': 1,
          'chicken': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'little': 1,
          'creaky': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'good': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'nneg': 1}),
 Counter({'wrongfully': 5,
          'accused': 5,
          'n': 4,
          'proft': 4,
          'gun': 3,
          'movie': 3,
          'however': 3,
          'like': 3,
          'nielsen': 2,
          'man': 2,
          'hysterical': 2,
          'naked': 2,
          'wavering': 2,
          'spoof': 2,
          'committed': 2,
          'since': 2,
          'nthe': 2,
          'nielsens': 2,
          'really': 2,
          'needs': 2,
          'instead': 2,
          'harrison': 2,
          'u': 2,
          'youre': 2,
          'sure': 2,
          'stick': 2,
          'colleague': 2,
          'us': 1,
          'think': 1,
          'leslie': 1,
          'bumbling': 1,
          'hapless': 1,
          'straight': 1,
          'films': 1,
          'crack': 1,
          'immediate': 1,
          'smile': 1,
          'forgive': 1,
          'whatever': 1,
          'hes': 1,
          'starring': 1,
          'spoofs': 1,
          'less': 1,
          'forgivable': 1,
          'nto': 1,
          'fair': 1,
          'sendup': 1,
          'question': 1,
          'third': 1,
          'parody': 1,
          'last': 1,
          'isnt': 1,
          'quite': 1,
          'excruciatingly': 1,
          'humorless': 1,
          'dracula': 1,
          'dead': 1,
          'loving': 1,
          'spy': 1,
          'hard': 1,
          'mighty': 1,
          'good': 1,
          'thing': 1,
          'nnielsen': 1,
          'still': 1,
          'tiptop': 1,
          'comedic': 1,
          'form': 1,
          'able': 1,
          'ever': 1,
          'deadpan': 1,
          'way': 1,
          'even': 1,
          'horrible': 1,
          'puns': 1,
          'screenplay': 1,
          'plays': 1,
          'talents': 1,
          'relying': 1,
          'one': 1,
          'soon': 1,
          'meshes': 1,
          'together': 1,
          'premises': 1,
          'fugitive': 1,
          'patriot': 1,
          'games': 1,
          'casting': 1,
          'always': 1,
          'game': 1,
          'star': 1,
          'ryan': 1,
          'get': 1,
          'master': 1,
          'violinist': 1,
          'drawn': 1,
          'affair': 1,
          'married': 1,
          'temptress': 1,
          'kelly': 1,
          'le': 1,
          'brock': 1,
          'nshe': 1,
          'sets': 1,
          'take': 1,
          'rap': 1,
          'murder': 1,
          'husband': 1,
          'michael': 1,
          'york': 1,
          'crime': 1,
          'actually': 1,
          'onearmed': 1,
          'onelegged': 1,
          'oneeyed': 1,
          'aaron': 1,
          'pearl': 1,
          'nharrison': 1,
          'arrested': 1,
          'found': 1,
          'guilty': 1,
          'sentenced': 1,
          'death': 1,
          'escapes': 1,
          'prison': 1,
          'bus': 1,
          'course': 1,
          'pursued': 1,
          'determined': 1,
          'marshal': 1,
          'named': 1,
          'fergus': 1,
          'falls': 1,
          'richard': 1,
          'crenna': 1,
          'unnecessarily': 1,
          'riffing': 1,
          'tommy': 1,
          'lee': 1,
          'jones': 1,
          'already': 1,
          'smirky': 1,
          'oscarwinning': 1,
          'role': 1,
          'ntheres': 1,
          'also': 1,
          'mystery': 1,
          'brunette': 1,
          'melinda': 1,
          'mcgraw': 1,
          'assassination': 1,
          'subplot': 1,
          'involving': 1,
          'secretary': 1,
          'general': 1,
          'matters': 1,
          'gets': 1,
          'assured': 1,
          'start': 1,
          'inconcert': 1,
          'touted': 1,
          'lord': 1,
          'violin': 1,
          'barechested': 1,
          'posters': 1,
          'pulling': 1,
          'jimi': 1,
          'hendrix': 1,
          'musical': 1,
          'instrument': 1,
          'hundreds': 1,
          'tuxedoclad': 1,
          'mosh': 1,
          'front': 1,
          'stage': 1,
          'nnice': 1,
          'touch': 1,
          'nmost': 1,
          'scenes': 1,
          'follow': 1,
          'never': 1,
          'top': 1,
          'opener': 1,
          'exceptions': 1,
          'mentos': 1,
          'baywatch': 1,
          'goofs': 1,
          'nmovie': 1,
          'parodies': 1,
          'crammed': 1,
          'almostsubliminal': 1,
          'rate': 1,
          'empty': 1,
          'nwhen': 1,
          'giant': 1,
          'snake': 1,
          'lunges': 1,
          'onto': 1,
          'screen': 1,
          'snatches': 1,
          'cast': 1,
          'member': 1,
          'la': 1,
          'anaconda': 1,
          'baseball': 1,
          'players': 1,
          'disappear': 1,
          'field': 1,
          'dreams': 1,
          'esque': 1,
          'cornfield': 1,
          'theres': 1,
          'nothing': 1,
          'laugh': 1,
          'nother': 1,
          'moments': 1,
          'interlude': 1,
          'fishing': 1,
          'shop': 1,
          'unfocused': 1,
          'supposed': 1,
          'laughing': 1,
          'nthere': 1,
          'seem': 1,
          'cheap': 1,
          'references': 1,
          'frenzied': 1,
          'sendups': 1,
          'possible': 1,
          'directorwriter': 1,
          'pat': 1,
          'bombarding': 1,
          'viewer': 1,
          'careless': 1,
          'mixture': 1,
          'two': 1,
          'guarantees': 1,
          'something': 1,
          'nand': 1,
          'sticks': 1,
          'well': 1,
          'particularly': 1,
          'jabs': 1,
          'genre': 1,
          'conventions': 1,
          'stylized': 1,
          'flashbacks': 1,
          'hardboiled': 1,
          'dialogue': 1,
          'collaborated': 1,
          'great': 1,
          'bits': 1,
          'ontarget': 1,
          'allow': 1,
          'remember': 1,
          'almosthalfwaythere': 1,
          'lamebrained': 1,
          'failure': 1,
          'might': 1,
          'cursed': 1,
          'begin': 1,
          'opening': 1,
          'fast': 1,
          'heels': 1,
          'mafia': 1,
          'jim': 1,
          'abrahams': 1,
          'baseketball': 1,
          'david': 1,
          'zucker': 1,
          'strong': 1,
          'possibility': 1,
          'nobody': 1,
          'going': 1,
          'accusing': 1,
          'funniest': 1,
          'nneg': 1}),
 Counter({'snakes': 6,
          'anaconda': 5,
          'one': 5,
          'movie': 5,
          'worth': 4,
          'would': 4,
          'ni': 4,
          'guy': 4,
          'n': 4,
          'could': 4,
          'evil': 4,
          'even': 3,
          'friend': 3,
          'snake': 3,
          'anacondas': 3,
          'people': 3,
          'cant': 3,
          'character': 3,
          'trying': 3,
          'plot': 3,
          'dude': 3,
          'dont': 2,
          'nits': 2,
          'rydains': 2,
          'come': 2,
          'nas': 2,
          'tell': 2,
          'human': 2,
          'kill': 2,
          'eat': 2,
          'like': 2,
          'everybody': 2,
          'funny': 2,
          'nthat': 2,
          'nthe': 2,
          'writers': 2,
          'scene': 2,
          'young': 2,
          'im': 2,
          'work': 2,
          'crap': 2,
          'comebacks': 2,
          'go': 2,
          'find': 2,
          'nthis': 2,
          'get': 2,
          'harrier': 2,
          'please': 1,
          'mind': 1,
          'windbag': 1,
          'letting': 1,
          'bit': 1,
          'steam': 1,
          'njust': 1,
          'want': 1,
          'warn': 1,
          'yall': 1,
          'waste': 1,
          'hardearned': 1,
          '99cent': 1,
          'video': 1,
          'rental': 1,
          'ndont': 1,
          'listen': 1,
          'ebert': 1,
          'clue': 1,
          'hes': 1,
          'talking': 1,
          'nbtw': 1,
          'accompanied': 1,
          'required': 1,
          'watch': 1,
          'assignment': 1,
          'reviews': 1,
          'movies': 1,
          'local': 1,
          'paper': 1,
          'nnow': 1,
          'ill': 1,
          'actually': 1,
          'back': 1,
          'huffing': 1,
          'puffing': 1,
          'nhere': 1,
          'goes': 1,
          'nmovie': 1,
          'bottom': 1,
          'line': 1,
          'wait': 1,
          'usa': 1,
          'night': 1,
          'neven': 1,
          'doubt': 1,
          'price': 1,
          'jolt': 1,
          'help': 1,
          'stay': 1,
          'late': 1,
          'nwhy': 1,
          'hate': 1,
          'nlet': 1,
          'count': 1,
          'ways': 1,
          'nfirst': 1,
          'gets': 1,
          'way': 1,
          'many': 1,
          'facts': 1,
          'wrong': 1,
          'ophiophile': 1,
          'lover': 1,
          'never': 1,
          'reach': 1,
          'length': 1,
          '40': 1,
          'feet': 1,
          'b': 1,
          'theyre': 1,
          'scared': 1,
          'c': 1,
          'cases': 1,
          'eating': 1,
          'adult': 1,
          'humans': 1,
          'extremely': 1,
          'rare': 1,
          'shoulders': 1,
          'wide': 1,
          'fit': 1,
          'mouth': 1,
          'constrictor': 1,
          'outrun': 1,
          'trouble': 1,
          'especially': 1,
          'heavy': 1,
          'ones': 1,
          'e': 1,
          'need': 1,
          'least': 1,
          '6': 1,
          'months': 1,
          'sitting': 1,
          'butt': 1,
          'digest': 1,
          'huge': 1,
          'meal': 1,
          'therefore': 1,
          'couldnt': 1,
          'run': 1,
          'around': 1,
          'gobbling': 1,
          'else': 1,
          'cast': 1,
          'f': 1,
          'vocal': 1,
          'cords': 1,
          'make': 1,
          'squealing': 1,
          'noises': 1,
          'nwhew': 1,
          'prepared': 1,
          'suspend': 1,
          'reality': 1,
          'nunfortunately': 1,
          'suspenseful': 1,
          'exciting': 1,
          'watching': 1,
          'paint': 1,
          'peel': 1,
          'nmy': 1,
          'successfully': 1,
          'predicted': 1,
          'live': 1,
          'end': 1,
          'nanybody': 1,
          'bad': 1,
          'going': 1,
          'die': 1,
          'eventually': 1,
          'pity': 1,
          'reasons': 1,
          'didnt': 1,
          'give': 1,
          'fall': 1,
          'asleep': 1,
          'nhe': 1,
          'likable': 1,
          'nwho': 1,
          'wouldnt': 1,
          'enjoy': 1,
          'somebody': 1,
          'looks': 1,
          'deranged': 1,
          'walt': 1,
          'whitman': 1,
          'nanaconda': 1,
          'cute': 1,
          'moments': 1,
          'arguments': 1,
          'ice': 1,
          'cubes': 1,
          'british': 1,
          'instance': 1,
          'nhowever': 1,
          'small': 1,
          'flashes': 1,
          'wit': 1,
          'hour': 1,
          'twentyeight': 1,
          'minutes': 1,
          'boring': 1,
          'schlock': 1,
          'blew': 1,
          'multitude': 1,
          'opportunities': 1,
          'insert': 1,
          'lines': 1,
          'quite': 1,
          'disappointed': 1,
          'tells': 1,
          'lady': 1,
          'jungle': 1,
          'makes': 1,
          'horny': 1,
          'ndid': 1,
          'retort': 1,
          'clever': 1,
          'egowithering': 1,
          'comeback': 1,
          'nof': 1,
          'course': 1,
          'ngee': 1,
          'thats': 1,
          'dumber': 1,
          'nshe': 1,
          'told': 1,
          'knothole': 1,
          'something': 1,
          'p': 1,
          'admit': 1,
          'surprised': 1,
          'outcome': 1,
          'hint': 1,
          'involves': 1,
          'miss': 1,
          'still': 1,
          'basically': 1,
          'excuse': 1,
          'boatload': 1,
          'dangerous': 1,
          'territory': 1,
          'snarfed': 1,
          'ridiculous': 1,
          'computergenerated': 1,
          'eyes': 1,
          'fangs': 1,
          'vipers': 1,
          'fasterthangravity': 1,
          'downward': 1,
          'acceleration': 1,
          'jet': 1,
          'nnot': 1,
          'mention': 1,
          'instant': 1,
          'digestion': 1,
          'snarf': 1,
          'countless': 1,
          'victims': 1,
          'tried': 1,
          'throw': 1,
          'sort': 1,
          'twist': 1,
          'call': 1,
          'knot': 1,
          'made': 1,
          'sense': 1,
          'sick': 1,
          'guys': 1,
          'gfriend': 1,
          'kisses': 1,
          'suddenly': 1,
          'hates': 1,
          'said': 1,
          'starts': 1,
          'clear': 1,
          'understandable': 1,
          'mission': 1,
          'impossible': 1,
          'someone': 1,
          'explain': 1,
          'id': 1,
          'grateful': 1,
          'nall': 1,
          'oldguy': 1,
          'double': 1,
          'agents': 1,
          'looked': 1,
          'wasnt': 1,
          'inspired': 1,
          'acting': 1,
          'save': 1,
          'blame': 1,
          'actors': 1,
          'though': 1,
          'fault': 1,
          'cruddy': 1,
          'script': 1,
          'concludes': 1,
          'diatribe': 1,
          'shameless': 1,
          'exploitation': 1,
          'perpetuation': 1,
          'public': 1,
          'fear': 1,
          'ncomments': 1,
          'flames': 1,
          'anyone': 1,
          'nrydain': 1,
          'atomic': 1,
          'cheese': 1,
          'fresh': 1,
          'chernobyl': 1,
          'dairies': 1,
          'nneg': 1}),
 Counter({'movie': 8,
          'nhe': 6,
          'film': 6,
          'also': 5,
          '810': 4,
          '510': 4,
          'mrs': 4,
          'know': 3,
          'last': 3,
          'summer': 3,
          '7': 3,
          'first': 3,
          'based': 3,
          'script': 3,
          'go': 3,
          'teacher': 3,
          'nthis': 3,
          'williamson': 3,
          'holmes': 3,
          'character': 3,
          'kevin': 3,
          'tvs': 3,
          'written': 2,
          'man': 2,
          'created': 2,
          'tv': 2,
          'dawsons': 2,
          'creek': 2,
          'said': 2,
          'watson': 2,
          'tingle': 2,
          'fact': 2,
          'onedimensional': 2,
          'characters': 2,
          'thrills': 2,
          'ass': 2,
          'played': 2,
          'unfortunately': 2,
          'exorcist': 2,
          'marisa': 2,
          'coughlan': 2,
          'poor': 2,
          'mans': 2,
          'version': 2,
          'provided': 2,
          'anything': 2,
          'williamsons': 2,
          'mirren': 2,
          'see': 2,
          'actor': 2,
          'killing': 2,
          'deemed': 1,
          'one': 1,
          'hottest': 1,
          'writers': 1,
          'hollywood': 1,
          'wrote': 1,
          'groundbreaking': 1,
          'screenplay': 1,
          'scream': 1,
          'added': 1,
          'successful': 1,
          'nscript': 1,
          'mix': 1,
          'popular': 1,
          'series': 1,
          'nso': 1,
          'asked': 1,
          'direct': 1,
          'ever': 1,
          'everyone': 1,
          'grandma': 1,
          'sure': 1,
          'nuhhm': 1,
          'question': 1,
          'anyone': 1,
          'bother': 1,
          'reading': 1,
          'stupid': 1,
          'nplot': 1,
          'ace': 1,
          'student': 1,
          'leigh': 1,
          'ann': 1,
          'mistakenly': 1,
          'caught': 1,
          'cheating': 1,
          'papers': 1,
          'bitchiest': 1,
          'west': 1,
          'set': 1,
          'lose': 1,
          'scholarship': 1,
          'college': 1,
          'nwhen': 1,
          'friends': 1,
          'visit': 1,
          'home': 1,
          'order': 1,
          'explain': 1,
          'side': 1,
          'story': 1,
          'end': 1,
          'tying': 1,
          'slowly': 1,
          'trying': 1,
          'talk': 1,
          'sense': 1,
          'hardheaded': 1,
          'woman': 1,
          'ncritique': 1,
          'much': 1,
          'bad': 1,
          'sucks': 1,
          'chockfull': 1,
          'contains': 1,
          'actual': 1,
          'humor': 1,
          'able': 1,
          'zone': 1,
          'zero': 1,
          'tension': 1,
          'plot': 1,
          'holes': 1,
          'size': 1,
          'big': 1,
          'lame': 1,
          'pop': 1,
          'tunes': 1,
          'mask': 1,
          'nothing': 1,
          'going': 1,
          'molly': 1,
          'ringwald': 1,
          'vivica': 1,
          'fox': 1,
          'lesley': 1,
          'anne': 1,
          'warren': 1,
          'tossed': 1,
          'away': 1,
          'throwaway': 1,
          'roles': 1,
          'ni': 1,
          'primed': 1,
          'interesting': 1,
          'premise': 1,
          'thinking': 1,
          'misery': 1,
          '9': 1,
          '5': 1,
          'went': 1,
          'nowhere': 1,
          'bright': 1,
          'foundation': 1,
          'making': 1,
          'references': 1,
          'dr': 1,
          'nzhivago': 1,
          'doubt': 1,
          'many': 1,
          'target': 1,
          'market': 1,
          'appreciate': 1,
          'forgot': 1,
          'suspense': 1,
          'incomprehensible': 1,
          'decisions': 1,
          'unbelievable': 1,
          'motivations': 1,
          'simply': 1,
          'boring': 1,
          'us': 1,
          'trite': 1,
          'dialogue': 1,
          'nsure': 1,
          'katie': 1,
          'cute': 1,
          'costar': 1,
          'reasonably': 1,
          'amusing': 1,
          'impression': 1,
          'worth': 1,
          'two': 1,
          'points': 1,
          'three': 1,
          'ten': 1,
          'forgive': 1,
          'biggest': 1,
          'rival': 1,
          'tingles': 1,
          'complete': 1,
          'unprofessionalism': 1,
          'let': 1,
          'others': 1,
          'around': 1,
          'teachers': 1,
          'allowed': 1,
          'behave': 1,
          'way': 1,
          'nowadays': 1,
          'transparent': 1,
          'romance': 1,
          'longhaired': 1,
          'dude': 1,
          'hired': 1,
          'skeet': 1,
          'ulrich': 1,
          'johnny': 1,
          'depp': 1,
          'nall': 1,
          'laughable': 1,
          'insight': 1,
          'demonstrated': 1,
          'genuine': 1,
          'lack': 1,
          'directorial': 1,
          'skills': 1,
          'alongside': 1,
          'juvenile': 1,
          'helen': 1,
          'great': 1,
          'role': 1,
          'chew': 1,
          'forgetting': 1,
          'give': 1,
          'believability': 1,
          'humanity': 1,
          'capacity': 1,
          'comprehend': 1,
          'nno': 1,
          'hip': 1,
          'lines': 1,
          'cheap': 1,
          'dull': 1,
          'time': 1,
          'theater': 1,
          'nif': 1,
          'want': 1,
          'funny': 1,
          'teenage': 1,
          'detroit': 1,
          'rock': 1,
          'city': 1,
          'thank': 1,
          'drunken': 1,
          'sorry': 1,
          'morning': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'stars': 1,
          'father': 1,
          'fisherman': 1,
          'nkevin': 1,
          'used': 1,
          'knowledge': 1,
          'fishing': 1,
          'hooks': 1,
          'winches': 1,
          'creating': 1,
          'killer': 1,
          'huge': 1,
          'fan': 1,
          'steven': 1,
          'spielberg': 1,
          'coincidentally': 1,
          'dawson': 1,
          'leery': 1,
          'show': 1,
          'aspiring': 1,
          'nin': 1,
          'even': 1,
          'landed': 1,
          'bit': 1,
          'part': 1,
          'another': 1,
          'world': 1,
          'nalso': 1,
          'gone': 1,
          'record': 1,
          'say': 1,
          'unsupportive': 1,
          'english': 1,
          'told': 1,
          'would': 1,
          'never': 1,
          'amount': 1,
          'inspiration': 1,
          'loosely': 1,
          'book': 1,
          'mr': 1,
          'griffin': 1,
          'writer': 1,
          'nlois': 1,
          'duncan': 1,
          'come': 1,
          'gay': 1,
          'nhelen': 1,
          'born': 1,
          'london': 1,
          'england': 1,
          'name': 1,
          'ilynea': 1,
          'lydia': 1,
          'mironoff': 1,
          'nshe': 1,
          'married': 1,
          'director': 1,
          'taylor': 1,
          'hackford': 1,
          'whose': 1,
          'works': 1,
          'include': 1,
          'devils': 1,
          'advocate': 1,
          'officer': 1,
          'gentleman': 1,
          '8': 1,
          'originally': 1,
          'titled': 1,
          'ntingle': 1,
          'changed': 1,
          'columbine': 1,
          'high': 1,
          'school': 1,
          'shooting': 1,
          'incident': 1,
          'nactress': 1,
          'star': 1,
          'next': 1,
          'project': 1,
          'called': 1,
          'wasteland': 1,
          'barry': 1,
          'full': 1,
          'feature': 1,
          'seth': 1,
          'malibu': 1,
          'shores': 1,
          'several': 1,
          'times': 1,
          'nneg': 1}),
 Counter({'movie': 5,
          'carrie': 4,
          'n': 4,
          'sex': 3,
          'little': 3,
          'nas': 3,
          'isnt': 3,
          'one': 3,
          'nthe': 3,
          'school': 2,
          'girls': 2,
          'boys': 2,
          'black': 2,
          'like': 2,
          'rage': 2,
          '2': 2,
          'rest': 2,
          'rachel': 2,
          'horror': 2,
          'asks': 2,
          'gets': 2,
          'girlfriend': 2,
          'would': 2,
          'neven': 2,
          'teenagers': 2,
          'typical': 1,
          'cinematic': 1,
          'high': 1,
          'football': 1,
          'jocks': 1,
          'dump': 1,
          'scores': 1,
          'dutifully': 1,
          'recorded': 1,
          'books': 1,
          'sexual': 1,
          'acts': 1,
          'take': 1,
          'place': 1,
          'guys': 1,
          'hang': 1,
          'nearby': 1,
          'guzzling': 1,
          'beer': 1,
          'grunting': 1,
          'pigs': 1,
          'nin': 1,
          'robert': 1,
          'mandels': 1,
          'terminally': 1,
          'bland': 1,
          'sequel': 1,
          'single': 1,
          'original': 1,
          'moment': 1,
          'nonly': 1,
          'amy': 1,
          'irving': 1,
          'returns': 1,
          'talent': 1,
          'sequels': 1,
          'cast': 1,
          'impossible': 1,
          'determine': 1,
          'given': 1,
          'stupefying': 1,
          'mediocrity': 1,
          'rafael': 1,
          'moreus': 1,
          'script': 1,
          'storys': 1,
          'lead': 1,
          'emily': 1,
          'bergl': 1,
          'gives': 1,
          'least': 1,
          'scary': 1,
          'performances': 1,
          'recent': 1,
          'memory': 1,
          'exactly': 1,
          'fault': 1,
          'director': 1,
          'actors': 1,
          'precisely': 1,
          'nsporadically': 1,
          'lame': 1,
          'lifeless': 1,
          'cause': 1,
          'lockers': 1,
          'windows': 1,
          'fly': 1,
          'open': 1,
          'generally': 1,
          'mopes': 1,
          'around': 1,
          'looking': 1,
          'victim': 1,
          'nher': 1,
          'fellow': 1,
          'students': 1,
          'delight': 1,
          'tormenting': 1,
          'nof': 1,
          'course': 1,
          'get': 1,
          'revenge': 1,
          'obligatory': 1,
          'ending': 1,
          'bloodbath': 1,
          'decapitate': 1,
          'castrate': 1,
          'crush': 1,
          'burning': 1,
          'timbers': 1,
          'marks': 1,
          'time': 1,
          'big': 1,
          'finale': 1,
          'throws': 1,
          'repugnant': 1,
          'scenes': 1,
          'hoping': 1,
          'turn': 1,
          'audiences': 1,
          'stomachs': 1,
          'nrachels': 1,
          'commits': 1,
          'horrible': 1,
          'realistic': 1,
          'suicide': 1,
          'boy': 1,
          'made': 1,
          'love': 1,
          'night': 1,
          'spurns': 1,
          'major': 1,
          'points': 1,
          'book': 1,
          'buddies': 1,
          'say': 1,
          'gotten': 1,
          'death': 1,
          'helpless': 1,
          'puppy': 1,
          'run': 1,
          'see': 1,
          'poor': 1,
          'body': 1,
          'flipping': 1,
          'truck': 1,
          'completely': 1,
          'blas': 1,
          'doesnt': 1,
          'offend': 1,
          'girl': 1,
          'offed': 1,
          'yesterday': 1,
          'kids': 1,
          'conscience': 1,
          'nresponds': 1,
          'nonplussed': 1,
          'wasnt': 1,
          'anybody': 1,
          'nremarkably': 1,
          'devoid': 1,
          'energy': 1,
          'especially': 1,
          'flick': 1,
          'makes': 1,
          'yearn': 1,
          'fast': 1,
          'forward': 1,
          'button': 1,
          'theaters': 1,
          'armrest': 1,
          'nwith': 1,
          'material': 1,
          'bad': 1,
          'films': 1,
          'hope': 1,
          'go': 1,
          'parody': 1,
          'smart': 1,
          'enough': 1,
          'realize': 1,
          'mandatory': 1,
          'epilogue': 1,
          'pointless': 1,
          'predictable': 1,
          'runs': 1,
          '1': 1,
          '45': 1,
          'nit': 1,
          'rated': 1,
          'r': 1,
          'graphic': 1,
          'violence': 1,
          'teen': 1,
          'alcohol': 1,
          'abuse': 1,
          'nudity': 1,
          'profanity': 1,
          'acceptable': 1,
          'older': 1,
          'nneg': 1}),
 Counter({'movie': 4,
          'nthe': 4,
          'nthere': 3,
          'one': 2,
          'hour': 2,
          'aliens': 2,
          'nthis': 2,
          'scare': 2,
          'camera': 2,
          'crew': 2,
          'new': 2,
          'work': 2,
          'man': 1,
          'wierd': 1,
          'nsimilar': 1,
          'conspiracy': 1,
          'theory': 1,
          'couldnt': 1,
          'decide': 1,
          'genre': 1,
          'first': 1,
          'standard': 1,
          'stock': 1,
          'clone': 1,
          'nicely': 1,
          'created': 1,
          'eerie': 1,
          'atmosphere': 1,
          'ship': 1,
          'last': 1,
          'half': 1,
          'makers': 1,
          'blew': 1,
          'script': 1,
          'airlock': 1,
          'decided': 1,
          'screw': 1,
          'lets': 1,
          'kill': 1,
          'everybody': 1,
          'nfrom': 1,
          'forget': 1,
          'scifi': 1,
          'nmovie': 1,
          'becomes': 1,
          '100': 1,
          'horror': 1,
          'nwhat': 1,
          'really': 1,
          'dissappointed': 1,
          'tried': 1,
          'entirely': 1,
          'wrong': 1,
          'way': 1,
          'ninstead': 1,
          'using': 1,
          'clever': 1,
          'tricks': 1,
          'trying': 1,
          'build': 1,
          'uses': 1,
          'loud': 1,
          'noises': 1,
          'sudden': 1,
          'shifts': 1,
          'short': 1,
          'quick': 1,
          'bursts': 1,
          'gore': 1,
          'yawn': 1,
          'everyones': 1,
          'nseen': 1,
          'knows': 1,
          'expect': 1,
          'thing': 1,
          'done': 1,
          'well': 1,
          'lead': 1,
          'finding': 1,
          'happened': 1,
          'previous': 1,
          'skeletons': 1,
          'lying': 1,
          'around': 1,
          'mangled': 1,
          'mashed': 1,
          'nthen': 1,
          'finally': 1,
          'painfully': 1,
          'restored': 1,
          'views': 1,
          'video': 1,
          'acting': 1,
          'isnt': 1,
          'bad': 1,
          'considering': 1,
          'actors': 1,
          'anyway': 1,
          'complex': 1,
          'interesting': 1,
          'dialogue': 1,
          'speak': 1,
          'nice': 1,
          'camerawork': 1,
          'certain': 1,
          'sequences': 1,
          'though': 1,
          'like': 1,
          'hull': 1,
          'near': 1,
          'bridge': 1,
          'event': 1,
          'horizon': 1,
          'breached': 1,
          'pans': 1,
          'back': 1,
          'follow': 1,
          'specific': 1,
          'objects': 1,
          'bounce': 1,
          'across': 1,
          'deck': 1,
          'sucked': 1,
          'space': 1,
          'could': 1,
          'much': 1,
          'better': 1,
          'nit': 1,
          'good': 1,
          'experienced': 1,
          'cast': 1,
          'deserved': 1,
          'nothing': 1,
          'us': 1,
          'havent': 1,
          'seen': 1,
          'hellraiser': 1,
          'nneg': 1}),
 Counter({'king': 19,
          'film': 7,
          'nthe': 6,
          'etc': 6,
          'anna': 5,
          'animated': 4,
          'would': 4,
          'worst': 4,
          'movie': 4,
          'richardson': 3,
          'kings': 3,
          'children': 3,
          'nnot': 3,
          'even': 3,
          'could': 3,
          'written': 3,
          'play': 3,
          'dialogue': 3,
          'personality': 3,
          'classic': 2,
          'miranda': 2,
          'saim': 2,
          'vidnovic': 2,
          'prime': 2,
          'pages': 2,
          'ni': 2,
          'take': 2,
          'every': 2,
          'screenplay': 2,
          'oscar': 2,
          'within': 2,
          'time': 2,
          'bit': 2,
          'terrible': 2,
          'whole': 2,
          'songs': 2,
          'song': 2,
          'used': 2,
          'shows': 2,
          'never': 2,
          'dont': 2,
          'voices': 2,
          'completely': 2,
          'change': 2,
          'supposed': 2,
          'share': 2,
          'well': 2,
          'hate': 2,
          'films': 2,
          'animation': 2,
          'among': 2,
          'warner': 1,
          'brothers': 1,
          'musical': 1,
          'feature': 1,
          'recycles': 1,
          'story': 1,
          'woman': 1,
          'challenges': 1,
          'heart': 1,
          'obvious': 1,
          'results': 1,
          'nwhen': 1,
          'british': 1,
          'schoolteacher': 1,
          'travels': 1,
          'educate': 1,
          'martin': 1,
          'learns': 1,
          'treating': 1,
          'people': 1,
          'unfairly': 1,
          'must': 1,
          'say': 1,
          'something': 1,
          'greedy': 1,
          'ruler': 1,
          'nmeanwhile': 1,
          'minister': 1,
          'ian': 1,
          'stereotypical': 1,
          'villain': 1,
          'plots': 1,
          'overthrow': 1,
          'taking': 1,
          'throne': 1,
          'last': 1,
          'predictable': 1,
          'main': 1,
          'subplot': 1,
          'deals': 1,
          'son': 1,
          'allen': 1,
          'hong': 1,
          'love': 1,
          'servant': 1,
          'tuptim': 1,
          'armi': 1,
          'arabe': 1,
          'conflicts': 1,
          'feelings': 1,
          'ancient': 1,
          'laws': 1,
          'lone': 1,
          'strong': 1,
          'character': 1,
          'save': 1,
          'unbelievably': 1,
          'horrible': 1,
          'waste': 1,
          'talent': 1,
          'problems': 1,
          'fill': 1,
          'blank': 1,
          'journal': 1,
          'note': 1,
          'major': 1,
          'difficulties': 1,
          'elaborate': 1,
          'detail': 1,
          'arthur': 1,
          'rankin': 1,
          'peter': 1,
          'bakalian': 1,
          'jacqeline': 1,
          'feather': 1,
          'david': 1,
          'seidler': 1,
          'based': 1,
          'upon': 1,
          'richard': 1,
          'rodgers': 1,
          'hammerstein': 1,
          'recent': 1,
          'memory': 1,
          'obnoxious': 1,
          'shout': 1,
          'cringe': 1,
          'nliterally': 1,
          'nspeaking': 1,
          'cringing': 1,
          'quite': 1,
          'rather': 1,
          'short': 1,
          'display': 1,
          'filmmaking': 1,
          'nbesides': 1,
          'repetitive': 1,
          'seem': 1,
          'place': 1,
          'unlike': 1,
          'lyrics': 1,
          'unmagical': 1,
          'sole': 1,
          'cleverly': 1,
          'getting': 1,
          'know': 1,
          'great': 1,
          'outdoors': 1,
          'exposed': 1,
          'nunlike': 1,
          'disney': 1,
          'features': 1,
          'add': 1,
          'uneffective': 1,
          'ntake': 1,
          'following': 1,
          'scenario': 1,
          'example': 1,
          'sheer': 1,
          'horror': 1,
          'music': 1,
          'nyoure': 1,
          'hunted': 1,
          'dragon': 1,
          'nwhat': 1,
          'nsing': 1,
          'happy': 1,
          'nmartin': 1,
          'without': 1,
          'effort': 1,
          'emotion': 1,
          'hear': 1,
          'saying': 1,
          'two': 1,
          'negatives': 1,
          'make': 1,
          'positive': 1,
          'nbelieve': 1,
          'nwith': 1,
          'along': 1,
          'awful': 1,
          'voice': 1,
          'track': 1,
          'unbelievable': 1,
          'mild': 1,
          'signs': 1,
          'thing': 1,
          'changes': 1,
          'says': 1,
          'progresses': 1,
          'nno': 1,
          'beginning': 1,
          'none': 1,
          'end': 1,
          'nand': 1,
          'characters': 1,
          'nhey': 1,
          'thought': 1,
          'nisnt': 1,
          'plot': 1,
          'ministers': 1,
          'hideous': 1,
          'sidekick': 1,
          'darrell': 1,
          'hammond': 1,
          'brings': 1,
          'cringes': 1,
          'oh': 1,
          'nanother': 1,
          'one': 1,
          'teeth': 1,
          'fell': 1,
          'nhardyharhar': 1,
          'nhe': 1,
          'bring': 1,
          'laughs': 1,
          'kidlets': 1,
          'age': 1,
          'five': 1,
          'cringed': 1,
          'watching': 1,
          'nby': 1,
          'way': 1,
          'review': 1,
          'going': 1,
          'may': 1,
          'think': 1,
          'reasoning': 1,
          'due': 1,
          'liking': 1,
          'hence': 1,
          'disgrace': 1,
          'nanimated': 1,
          '1994s': 1,
          'lion': 1,
          '1998s': 1,
          'prince': 1,
          'egypt': 1,
          'favorite': 1,
          'movies': 1,
          'team': 1,
          'design': 1,
          'settings': 1,
          'makes': 1,
          'easier': 1,
          'mind': 1,
          'annoying': 1,
          'realize': 1,
          'day': 1,
          'night': 1,
          'switch': 1,
          'back': 1,
          'fourth': 1,
          'seconds': 1,
          'read': 1,
          'seen': 1,
          'winning': 1,
          '1956': 1,
          'adaption': 1,
          'tell': 1,
          '1999': 1,
          'version': 1,
          'butchers': 1,
          'magical': 1,
          'interesting': 1,
          'nif': 1,
          'wasnt': 1,
          'feeling': 1,
          'earn': 1,
          'title': 1,
          'decade': 1,
          'ninstead': 1,
          'go': 1,
          'years': 1,
          'bottom': 1,
          'line': 1,
          'avoid': 1,
          'costs': 1,
          'young': 1,
          'target': 1,
          'audience': 1,
          'enjoy': 1,
          'slightest': 1,
          'nneg': 1}),
 Counter({'nthe': 15,
          'bear': 9,
          'movie': 9,
          'clan': 8,
          'cave': 7,
          'ayla': 5,
          'hannah': 5,
          'audience': 5,
          'ni': 5,
          'like': 5,
          'man': 4,
          'serious': 4,
          'book': 4,
          'people': 4,
          'earthquake': 3,
          'neanderthal': 3,
          'daryl': 3,
          'tries': 3,
          'bad': 3,
          'film': 3,
          'im': 3,
          'na': 3,
          'get': 3,
          'makeup': 3,
          'films': 3,
          'think': 3,
          'cromagnon': 2,
          'mother': 2,
          'lion': 2,
          'sex': 2,
          'blond': 2,
          'challenges': 2,
          'find': 2,
          'movies': 2,
          'quite': 2,
          'point': 2,
          'even': 2,
          'turkey': 2,
          'dealing': 2,
          'upon': 2,
          'novel': 2,
          'read': 2,
          'never': 2,
          'sure': 2,
          'better': 2,
          'immediately': 2,
          'much': 2,
          'fur': 2,
          'prehistory': 2,
          'looks': 2,
          'nas': 2,
          'interested': 2,
          'wont': 2,
          'nthis': 2,
          'nit': 2,
          'message': 2,
          'new': 2,
          'nwe': 2,
          'lot': 2,
          'time': 2,
          'characters': 2,
          'seen': 2,
          'mind': 2,
          'music': 2,
          'sounds': 2,
          'though': 2,
          'probably': 2,
          'scenes': 2,
          'synopsis': 1,
          'loses': 1,
          'escapes': 1,
          'certain': 1,
          'death': 1,
          'nreluctantly': 1,
          'rescued': 1,
          'likes': 1,
          'doggystyle': 1,
          'grows': 1,
          'become': 1,
          'feminist': 1,
          'supermodel': 1,
          'patriarchy': 1,
          'throwing': 1,
          'rocks': 1,
          'giving': 1,
          'birth': 1,
          'without': 1,
          'mate': 1,
          'ncomments': 1,
          'allow': 1,
          'state': 1,
          'record': 1,
          'appealing': 1,
          'presence': 1,
          'nshe': 1,
          'proved': 1,
          'charming': 1,
          'intelligent': 1,
          'astronomer': 1,
          'romantic': 1,
          'comedy': 1,
          'roxanne': 1,
          'equally': 1,
          'creepy': 1,
          'pris': 1,
          'scifi': 1,
          'classic': 1,
          'blade': 1,
          'runner': 1,
          'clearly': 1,
          'capitalize': 1,
          'selling': 1,
          'poster': 1,
          'art': 1,
          'bears': 1,
          'striking': 1,
          'closeup': 1,
          'tribal': 1,
          'paint': 1,
          'video': 1,
          'box': 1,
          'prominently': 1,
          'features': 1,
          'name': 1,
          'lettering': 1,
          'size': 1,
          'title': 1,
          'nnot': 1,
          'starring': 1,
          'role': 1,
          'unfortunately': 1,
          'save': 1,
          'unbelievable': 1,
          'exercise': 1,
          'cheese': 1,
          'nits': 1,
          'uniquely': 1,
          'prehistoric': 1,
          'actually': 1,
          'miserably': 1,
          'fails': 1,
          'oddly': 1,
          'fascinating': 1,
          'ridiculous': 1,
          'attempt': 1,
          'drama': 1,
          'leaves': 1,
          'somehow': 1,
          'transfixed': 1,
          'wanting': 1,
          'see': 1,
          'dud': 1,
          'plays': 1,
          'based': 1,
          'popular': 1,
          'jean': 1,
          'auel': 1,
          'nto': 1,
          'day': 1,
          'possesses': 1,
          'loyal': 1,
          'cult': 1,
          'following': 1,
          'remember': 1,
          'dear': 1,
          'friend': 1,
          'mine': 1,
          'dogeared': 1,
          'copy': 1,
          'child': 1,
          'socalled': 1,
          'dirty': 1,
          'parts': 1,
          'blacked': 1,
          'marker': 1,
          'grandmother': 1,
          'hope': 1,
          '10': 1,
          '000': 1,
          'times': 1,
          'adaptation': 1,
          'nif': 1,
          'complete': 1,
          'loss': 1,
          'explain': 1,
          'popularity': 1,
          'opens': 1,
          'comically': 1,
          'absurd': 1,
          'scene': 1,
          'young': 1,
          'looking': 1,
          'drew': 1,
          'barrymore': 1,
          'e': 1,
          'ntramps': 1,
          'woods': 1,
          'nwith': 1,
          'cute': 1,
          'little': 1,
          'ponytails': 1,
          'wrapped': 1,
          'audiences': 1,
          'expectations': 1,
          'convincing': 1,
          'portrayal': 1,
          'shattered': 1,
          'nwhat': 1,
          'follows': 1,
          'laughably': 1,
          'choreographed': 1,
          'sequence': 1,
          'swallows': 1,
          'aylas': 1,
          'blonde': 1,
          'pants': 1,
          'er': 1,
          'nleggings': 1,
          'ntearful': 1,
          'cameraman': 1,
          'shakes': 1,
          'camera': 1,
          'well': 1,
          'slowly': 1,
          'recedes': 1,
          'hungry': 1,
          'becomes': 1,
          'lunch': 1,
          'screaming': 1,
          'sixyearold': 1,
          'manages': 1,
          'outrun': 1,
          'king': 1,
          'wild': 1,
          'safe': 1,
          'detail': 1,
          'story': 1,
          'seems': 1,
          'enough': 1,
          'illustrate': 1,
          'really': 1,
          'stupid': 1,
          'gives': 1,
          'chance': 1,
          'suspend': 1,
          'disbelief': 1,
          'nalso': 1,
          'obvious': 1,
          'comparison': 1,
          'appearance': 1,
          'rise': 1,
          'feminism': 1,
          'century': 1,
          'subtle': 1,
          'burning': 1,
          'wonderbra': 1,
          'front': 1,
          'charlton': 1,
          'heston': 1,
          'doesnt': 1,
          'suggest': 1,
          'whacks': 1,
          'twobyfour': 1,
          'gorgeous': 1,
          'woman': 1,
          'social': 1,
          'laws': 1,
          'bunch': 1,
          'gaudy': 1,
          'brown': 1,
          'wigs': 1,
          'nshes': 1,
          'theyre': 1,
          'old': 1,
          'memories': 1,
          'nyep': 1,
          'apparently': 1,
          'received': 1,
          'academy': 1,
          'award': 1,
          'nomination': 1,
          'best': 1,
          'surprises': 1,
          'depends': 1,
          'obviously': 1,
          'unconvincing': 1,
          'stated': 1,
          'stepped': 1,
          'shower': 1,
          'rest': 1,
          'dark': 1,
          'sort': 1,
          'smeared': 1,
          'look': 1,
          'dirt': 1,
          'facepainting': 1,
          'thats': 1,
          'occasionally': 1,
          'perhaps': 1,
          'notable': 1,
          'work': 1,
          'also': 1,
          'suffers': 1,
          'age': 1,
          'trappings': 1,
          'nmaybe': 1,
          'sounded': 1,
          'fresh': 1,
          'original': 1,
          '1985': 1,
          'dated': 1,
          'cliched': 1,
          'poorly': 1,
          'conceived': 1,
          'elevator': 1,
          'nadd': 1,
          'fauxmysticism': 1,
          'including': 1,
          'spirit': 1,
          'animals': 1,
          'dream': 1,
          'visions': 1,
          'narrator': 1,
          'psychic': 1,
          'youd': 1,
          'expect': 1,
          'hear': 1,
          '1900': 1,
          'number': 1,
          'problems': 1,
          'rated': 1,
          'r': 1,
          'one': 1,
          'inoffensive': 1,
          'offensive': 1,
          'ive': 1,
          'contains': 1,
          'several': 1,
          'sans': 1,
          'nudity': 1,
          'violence': 1,
          'mostly': 1,
          'consists': 1,
          'hunting': 1,
          'funniest': 1,
          'moment': 1,
          'occurs': 1,
          'love': 1,
          'attempts': 1,
          'rescue': 1,
          'ferocious': 1,
          'bites': 1,
          'head': 1,
          'sees': 1,
          'rolling': 1,
          'nalthough': 1,
          'may': 1,
          'sound': 1,
          'gratuitous': 1,
          'cheesy': 1,
          'bother': 1,
          'nhowever': 1,
          'wrote': 1,
          'beginning': 1,
          'review': 1,
          'distinction': 1,
          'originality': 1,
          'ntypically': 1,
          'bottomofthebarrel': 1,
          'early': 1,
          'fantasy': 1,
          'involving': 1,
          'dinosaurs': 1,
          'exist': 1,
          'raquel': 1,
          'welch': 1,
          'come': 1,
          'hard': 1,
          'still': 1,
          'unique': 1,
          'setting': 1,
          'awarded': 1,
          'two': 1,
          'stars': 1,
          'fans': 1,
          'would': 1,
          'disappointed': 1,
          'version': 1,
          'however': 1,
          'basing': 1,
          'observation': 1,
          'fact': 1,
          'almost': 1,
          'invariably': 1,
          'shudder': 1,
          'could': 1,
          'otherwise': 1,
          'nneg': 1}),
 Counter({'tonya': 5,
          'film': 5,
          'harding': 4,
          'movies': 3,
          'salaries': 2,
          'many': 2,
          'main': 2,
          'quite': 2,
          'even': 2,
          'breakaway': 2,
          'figure': 2,
          'skater': 2,
          'star': 2,
          'thompson': 2,
          'myra': 2,
          'anything': 2,
          'life': 2,
          'hollywood': 1,
          'top': 1,
          'actors': 1,
          'getting': 1,
          'obscenely': 1,
          'large': 1,
          'days': 1,
          'find': 1,
          'reason': 1,
          'skyrocketing': 1,
          'movie': 1,
          'budgets': 1,
          'nactors': 1,
          'demand': 1,
          'might': 1,
          'greedy': 1,
          'instances': 1,
          'justified': 1,
          'films': 1,
          'would': 1,
          'never': 1,
          'watched': 1,
          'made': 1,
          'without': 1,
          'participation': 1,
          'nproof': 1,
          'found': 1,
          'realm': 1,
          'lowbudget': 1,
          'one': 1,
          'fine': 1,
          'example': 1,
          '1995': 1,
          'thriller': 1,
          'directed': 1,
          'sean': 1,
          'dash': 1,
          'starring': 1,
          'famous': 1,
          'nface': 1,
          'prominently': 1,
          'featured': 1,
          'poster': 1,
          'terri': 1,
          'plays': 1,
          'attractive': 1,
          'woman': 1,
          'works': 1,
          'courier': 1,
          'gangster': 1,
          'none': 1,
          'day': 1,
          'decides': 1,
          'retire': 1,
          'employers': 1,
          'enthusiastic': 1,
          'nrealising': 1,
          'suddenly': 1,
          'became': 1,
          'worthless': 1,
          'starts': 1,
          'running': 1,
          'followed': 1,
          'professional': 1,
          'assassins': 1,
          'nterri': 1,
          'actual': 1,
          'instead': 1,
          'becomes': 1,
          'understandable': 1,
          'scenes': 1,
          'feature': 1,
          'former': 1,
          'nalthough': 1,
          'displays': 1,
          'convincing': 1,
          'martial': 1,
          'arts': 1,
          'abilities': 1,
          'acting': 1,
          'leaves': 1,
          'much': 1,
          'desired': 1,
          'non': 1,
          'hand': 1,
          'disappointing': 1,
          'efforts': 1,
          'hardly': 1,
          'place': 1,
          'lacks': 1,
          'originality': 1,
          'believable': 1,
          'characters': 1,
          'situations': 1,
          'actually': 1,
          'represents': 1,
          'gave': 1,
          'bfilms': 1,
          'bad': 1,
          'name': 1,
          'nmartin': 1,
          'sheens': 1,
          'brother': 1,
          'joe': 1,
          'estevez': 1,
          'whose': 1,
          'character': 1,
          'looks': 1,
          'like': 1,
          'entered': 1,
          'another': 1,
          'set': 1,
          'bright': 1,
          'spot': 1,
          'nunfortunately': 1,
          'appears': 1,
          'little': 1,
          'late': 1,
          'prevent': 1,
          'viewers': 1,
          'realising': 1,
          'hardings': 1,
          'silver': 1,
          'screen': 1,
          'debut': 1,
          'proved': 1,
          'last': 1,
          'nneg': 1}),
 Counter({'ford': 7,
          'like': 6,
          'make': 6,
          'get': 6,
          'six': 5,
          'days': 5,
          'seven': 5,
          'nights': 5,
          'harrison': 5,
          'heche': 5,
          'nthe': 5,
          'n': 5,
          'script': 4,
          'good': 4,
          'fianc': 4,
          'e': 4,
          'story': 4,
          'anne': 3,
          'even': 3,
          'action': 3,
          'actors': 3,
          'see': 3,
          'island': 3,
          'ni': 3,
          'subplot': 3,
          'movie': 3,
          'film': 3,
          'movies': 2,
          'people': 2,
          'reitman': 2,
          'lot': 2,
          'hard': 2,
          'worth': 2,
          'ten': 2,
          'cents': 2,
          'new': 2,
          'character': 2,
          'throw': 2,
          'pirates': 2,
          'sequences': 2,
          'scripts': 2,
          'instance': 2,
          'alone': 2,
          'nso': 2,
          'nwell': 2,
          'well': 2,
          'nbut': 2,
          'wait': 2,
          'schwimmer': 2,
          'crash': 2,
          'know': 2,
          'theyll': 2,
          'funny': 2,
          'five': 2,
          'noh': 2,
          'sex': 2,
          'really': 2,
          'woman': 2,
          'bimbo': 2,
          'feel': 2,
          'guilty': 2,
          'nthen': 2,
          'kiss': 2,
          'completely': 2,
          'picture': 2,
          'films': 2,
          'least': 2,
          'pirate': 2,
          'dumb': 2,
          'think': 2,
          'feels': 2,
          'glimpse': 2,
          'nthis': 2,
          'device': 2,
          'summer': 2,
          'didnt': 2,
          'mad': 1,
          'talented': 1,
          'ivan': 1,
          'put': 1,
          'work': 1,
          'written': 1,
          'michael': 1,
          'browning': 1,
          'decided': 1,
          'instead': 1,
          'thinking': 1,
          'ideas': 1,
          'hed': 1,
          'rehash': 1,
          'cliches': 1,
          'omit': 1,
          'slightest': 1,
          'bit': 1,
          'development': 1,
          'drugdealing': 1,
          'provide': 1,
          'highlevel': 1,
          'explosions': 1,
          'nthere': 1,
          'highprofile': 1,
          'truman': 1,
          'show': 1,
          'nsix': 1,
          'simply': 1,
          'waste': 1,
          'nlets': 1,
          'nwe': 1,
          'feisty': 1,
          'magazine': 1,
          'editor': 1,
          'crusty': 1,
          'old': 1,
          'pilot': 1,
          'david': 1,
          'ntheyll': 1,
          'vacation': 1,
          'spot': 1,
          'shell': 1,
          'called': 1,
          'back': 1,
          'nyessssss': 1,
          'minutes': 1,
          'nshucks': 1,
          'ive': 1,
          'got': 1,
          'distracting': 1,
          'attractive': 1,
          'acts': 1,
          'kisses': 1,
          'otherwise': 1,
          'nobody': 1,
          'want': 1,
          'vindicated': 1,
          'already': 1,
          'cheated': 1,
          'obvious': 1,
          'reason': 1,
          'accidentally': 1,
          'run': 1,
          'try': 1,
          'kill': 1,
          'yes': 1,
          'ninstead': 1,
          'using': 1,
          'characterization': 1,
          'propel': 1,
          'events': 1,
          'random': 1,
          'yet': 1,
          'totally': 1,
          'predictable': 1,
          'nimagine': 1,
          'ndont': 1,
          'wrong': 1,
          'boring': 1,
          'great': 1,
          'job': 1,
          'sparks': 1,
          'fly': 1,
          'brownings': 1,
          'inane': 1,
          'dialogue': 1,
          'drowned': 1,
          'sheer': 1,
          'force': 1,
          'talent': 1,
          'almost': 1,
          'every': 1,
          'scene': 1,
          'energy': 1,
          'performers': 1,
          'bring': 1,
          'screen': 1,
          'found': 1,
          'laughing': 1,
          'pretty': 1,
          'nschwimmer': 1,
          'also': 1,
          'manages': 1,
          'milk': 1,
          'scenes': 1,
          'whatever': 1,
          'nand': 1,
          'made': 1,
          'tries': 1,
          'things': 1,
          'exciting': 1,
          'neven': 1,
          'though': 1,
          'profoundly': 1,
          'prepared': 1,
          'pleasantly': 1,
          'sidetracked': 1,
          'nits': 1,
          'start': 1,
          'contempt': 1,
          'surfaces': 1,
          'hacked': 1,
          'pieces': 1,
          'wouldnt': 1,
          'surprised': 1,
          'inept': 1,
          'subplots': 1,
          'edited': 1,
          'ones': 1,
          'bad': 1,
          'come': 1,
          'let': 1,
          'audible': 1,
          'groan': 1,
          'first': 1,
          'ships': 1,
          'id': 1,
          'shake': 1,
          'producers': 1,
          'shoulders': 1,
          'scream': 1,
          'pick': 1,
          'awful': 1,
          'outright': 1,
          'stupid': 1,
          'elements': 1,
          'subtly': 1,
          'horrifying': 1,
          'nfor': 1,
          'take': 1,
          'serious': 1,
          'problem': 1,
          'real': 1,
          'life': 1,
          'reduces': 1,
          'chance': 1,
          'complexity': 1,
          'weak': 1,
          'plot': 1,
          'actions': 1,
          'makes': 1,
          'okay': 1,
          'nin': 1,
          'lacks': 1,
          'intelligent': 1,
          'subtlety': 1,
          'find': 1,
          'odd': 1,
          'strangely': 1,
          'insulting': 1,
          'ended': 1,
          'season': 1,
          'doesnt': 1,
          'mean': 1,
          'n1998': 1,
          'far': 1,
          'one': 1,
          'worst': 1,
          'years': 1,
          'recent': 1,
          'memory': 1,
          'blockbusters': 1,
          'nwhen': 1,
          'line': 1,
          'heard': 1,
          'front': 1,
          'ask': 1,
          'two': 1,
          'tickets': 1,
          'name': 1,
          'suppose': 1,
          'care': 1,
          'bothers': 1,
          'bigbudget': 1,
          'pictures': 1,
          'dont': 1,
          'realize': 1,
          'becoming': 1,
          'parodies': 1,
          'ngood': 1,
          'sign': 1,
          'hollywood': 1,
          'insists': 1,
          'making': 1,
          'flicks': 1,
          'rake': 1,
          'cash': 1,
          'could': 1,
          'assume': 1,
          'wed': 1,
          'spend': 1,
          'money': 1,
          'nneg': 1}),
 Counter({'stigmata': 12,
          'film': 12,
          'frankie': 8,
          'nthe': 7,
          'one': 6,
          'church': 6,
          'story': 6,
          'catholic': 6,
          'like': 5,
          'n': 5,
          'nim': 5,
          'fact': 5,
          'camera': 5,
          'anything': 4,
          'priest': 4,
          'pryce': 4,
          'wainwright': 4,
          'character': 4,
          'seems': 4,
          'though': 4,
          'films': 3,
          'another': 3,
          'horror': 3,
          'arquette': 3,
          'page': 3,
          'rosary': 3,
          'nas': 3,
          'turns': 3,
          'kiernan': 3,
          'byrne': 3,
          'bleeding': 3,
          'nfather': 3,
          'supposed': 3,
          'time': 3,
          'something': 3,
          'starts': 3,
          'shes': 3,
          'eventually': 3,
          'gospel': 3,
          'music': 3,
          'would': 3,
          'interesting': 3,
          'sure': 3,
          'trickery': 3,
          'see': 3,
          'scary': 3,
          'nif': 3,
          'get': 3,
          'characters': 3,
          'doesnt': 3,
          'posessed': 3,
          'nothing': 3,
          'much': 3,
          'many': 3,
          'clearly': 2,
          'ni': 2,
          'seen': 2,
          'sense': 2,
          'summer': 2,
          'really': 2,
          'hairdresser': 2,
          'priests': 2,
          'investigation': 2,
          'father': 2,
          'andrew': 2,
          'mysterious': 2,
          'statue': 2,
          'religious': 2,
          'signs': 2,
          'nhis': 2,
          'wounds': 2,
          'atheist': 2,
          'cardinal': 2,
          'houseman': 2,
          'dead': 2,
          'video': 2,
          'worse': 2,
          'trying': 2,
          'slowmotion': 2,
          'doubleexposure': 2,
          'director': 2,
          'school': 2,
          'little': 2,
          'audience': 2,
          'nmaybe': 2,
          'explain': 2,
          'start': 2,
          'scenes': 2,
          'shots': 2,
          'superfluous': 2,
          'reason': 2,
          'whatsoever': 2,
          'bother': 2,
          'remotely': 2,
          'help': 2,
          'given': 2,
          'plot': 2,
          'development': 2,
          'need': 2,
          'point': 2,
          'back': 2,
          'first': 2,
          'almost': 2,
          'neven': 2,
          'still': 2,
          'dramatic': 2,
          'im': 2,
          'simple': 2,
          'spirit': 2,
          'later': 2,
          'st': 2,
          'thomas': 2,
          'means': 2,
          'dog': 2,
          'taken': 1,
          'warning': 1,
          'releasing': 1,
          'similarlythemed': 1,
          'relatively': 1,
          'close': 1,
          'nof': 1,
          'four': 1,
          'supernatural': 1,
          'flicks': 1,
          'released': 1,
          'year': 1,
          'worst': 1,
          'suppose': 1,
          'coming': 1,
          'nafter': 1,
          'blair': 1,
          'witch': 1,
          'thoroughly': 1,
          'creeped': 1,
          'sixth': 1,
          'mildly': 1,
          'spooky': 1,
          'stir': 1,
          'echoes': 1,
          'moments': 1,
          'wasnt': 1,
          'id': 1,
          'lose': 1,
          'sleep': 1,
          'nclearly': 1,
          'quality': 1,
          'slowly': 1,
          'dropping': 1,
          'nis': 1,
          'surprise': 1,
          'dullest': 1,
          'horribly': 1,
          'executed': 1,
          'piece': 1,
          'mtvinfluenced': 1,
          'tripe': 1,
          'long': 1,
          'nno': 1,
          'npatricia': 1,
          'plays': 1,
          'pittsburgh': 1,
          'receives': 1,
          'gift': 1,
          'globetrotting': 1,
          'mother': 1,
          'belonged': 1,
          'recentlydeceased': 1,
          'brazilian': 1,
          'gabriel': 1,
          'appearance': 1,
          'investigator': 1,
          'made': 1,
          'career': 1,
          'disproving': 1,
          'believes': 1,
          'soon': 1,
          'called': 1,
          'however': 1,
          'exhibiting': 1,
          'person': 1,
          'inflicted': 1,
          'jesus': 1,
          'christ': 1,
          'initially': 1,
          'skeptical': 1,
          'considering': 1,
          'witnesses': 1,
          'attacks': 1,
          'dedicates': 1,
          'finding': 1,
          'going': 1,
          'nhe': 1,
          'begins': 1,
          'suspect': 1,
          'boss': 1,
          'jonathan': 1,
          'concealing': 1,
          'could': 1,
          'bring': 1,
          'working': 1,
          'translation': 1,
          'fifth': 1,
          'excommunicated': 1,
          'new': 1,
          'rupert': 1,
          'mean': 1,
          'sort': 1,
          'ok': 1,
          'gets': 1,
          'nindeed': 1,
          'good': 1,
          'five': 1,
          'minutes': 1,
          'prove': 1,
          'endless': 1,
          'parade': 1,
          'extreme': 1,
          'closeups': 1,
          'whoaaaaaa': 1,
          'swelled': 1,
          'head': 1,
          'hollywood': 1,
          'yes': 1,
          'becomes': 1,
          'headacheinducing': 1,
          'nwhat': 1,
          'needed': 1,
          'second': 1,
          'audio': 1,
          'track': 1,
          'played': 1,
          'dialogue': 1,
          'screaming': 1,
          'nlook': 1,
          'excellent': 1,
          'hed': 1,
          'decided': 1,
          'half': 1,
          'water': 1,
          'dripping': 1,
          'reverse': 1,
          'included': 1,
          'random': 1,
          'egg': 1,
          'frying': 1,
          'ooh': 1,
          'underlying': 1,
          'meaning': 1,
          'behind': 1,
          'didnt': 1,
          'njust': 1,
          'thought': 1,
          'safe': 1,
          'involved': 1,
          'comes': 1,
          'shot': 1,
          'two': 1,
          'patricia': 1,
          'arquettes': 1,
          'collapsing': 1,
          'bed': 1,
          'narrrrrrrghhhh': 1,
          'nthen': 1,
          'wouldnt': 1,
          'engaging': 1,
          'nthough': 1,
          'wainwrights': 1,
          'vanity': 1,
          'certainly': 1,
          'seem': 1,
          'nearly': 1,
          'unworkable': 1,
          'script': 1,
          'nwhere': 1,
          'continuity': 1,
          'ncase': 1,
          'assume': 1,
          'identify': 1,
          'sympathize': 1,
          'arent': 1,
          'extent': 1,
          'hardworking': 1,
          'somehow': 1,
          'afford': 1,
          'cavernous': 1,
          'apartment': 1,
          'top': 1,
          'floor': 1,
          'building': 1,
          'kind': 1,
          'cute': 1,
          'lets': 1,
          'brightest': 1,
          'bulb': 1,
          'drawer': 1,
          'either': 1,
          'naccording': 1,
          'thing': 1,
          'receiving': 1,
          'wrists': 1,
          'ngo': 1,
          'clubbing': 1,
          'nsure': 1,
          'makes': 1,
          'narquette': 1,
          'give': 1,
          'old': 1,
          'college': 1,
          'try': 1,
          'onedimensional': 1,
          'appear': 1,
          'sleepwalking': 1,
          'nscenes': 1,
          'probably': 1,
          'sexually': 1,
          'charged': 1,
          'fall': 1,
          'embarrassingly': 1,
          'flat': 1,
          'setup': 1,
          'romantic': 1,
          'subplot': 1,
          'clumsily': 1,
          'handled': 1,
          'reaches': 1,
          'becoming': 1,
          'laughable': 1,
          'pages': 1,
          'life': 1,
          'falling': 1,
          'apart': 1,
          'eyes': 1,
          'finds': 1,
          'hit': 1,
          'wanders': 1,
          'hair': 1,
          'salon': 1,
          'curiously': 1,
          'interested': 1,
          'advances': 1,
          'andrews': 1,
          'doubt': 1,
          'pops': 1,
          'suddenly': 1,
          'silly': 1,
          'may': 1,
          'well': 1,
          'wear': 1,
          'curled': 1,
          'mustache': 1,
          'cackle': 1,
          'ill': 1,
          'pretty': 1,
          'depth': 1,
          'afforded': 1,
          'ntrust': 1,
          'revealing': 1,
          'telling': 1,
          'villain': 1,
          'nwhats': 1,
          'faced': 1,
          'dull': 1,
          'prospect': 1,
          'annoying': 1,
          'tricks': 1,
          'loud': 1,
          'jammed': 1,
          'throats': 1,
          'contend': 1,
          'direction': 1,
          'veers': 1,
          'ends': 1,
          'totally': 1,
          'incomprehensible': 1,
          'nfirst': 1,
          'even': 1,
          'details': 1,
          'merely': 1,
          'touching': 1,
          'nhow': 1,
          'come': 1,
          'chosen': 1,
          'since': 1,
          'mentions': 1,
          'devout': 1,
          'believers': 1,
          'ever': 1,
          'received': 1,
          'nactually': 1,
          'nsupposedly': 1,
          'occurs': 1,
          'holy': 1,
          'evil': 1,
          'think': 1,
          'nwhich': 1,
          'answer': 1,
          'question': 1,
          'course': 1,
          'possessing': 1,
          'entity': 1,
          'scene': 1,
          'determined': 1,
          'whichever': 1,
          'effects': 1,
          'flashy': 1,
          'work': 1,
          'mr': 1,
          'wants': 1,
          'use': 1,
          'nfurthermore': 1,
          'ending': 1,
          'ridiculously': 1,
          'neat': 1,
          'wrapup': 1,
          'filmmakers': 1,
          'compound': 1,
          'problem': 1,
          'ultimately': 1,
          'turning': 1,
          'diatribe': 1,
          'research': 1,
          'youll': 1,
          'find': 1,
          'suppressed': 1,
          'claim': 1,
          'readily': 1,
          'available': 1,
          'local': 1,
          'library': 1,
          'ntheres': 1,
          'catholics': 1,
          'worry': 1,
          'stigmatas': 1,
          'religion': 1,
          'offbase': 1,
          'cant': 1,
          'confused': 1,
          'resembling': 1,
          'real': 1,
          'wanted': 1,
          'portray': 1,
          'mobsters': 1,
          'gone': 1,
          'allout': 1,
          'equipped': 1,
          'sharkskin': 1,
          'suits': 1,
          'tommy': 1,
          'guns': 1,
          'far': 1,
          'care': 1,
          'cartoonish': 1,
          'misrepresentation': 1,
          'considered': 1,
          'realistic': 1,
          'nits': 1,
          'rare': 1,
          'fails': 1,
          'levels': 1,
          'nit': 1,
          'thoughtprovoking': 1,
          'definitely': 1,
          'pretends': 1,
          'tried': 1,
          'pass': 1,
          'absolutely': 1,
          'attempt': 1,
          'cover': 1,
          'none': 1,
          'weight': 1,
          'initial': 1,
          'shock': 1,
          'seeing': 1,
          'covered': 1,
          'blood': 1,
          'dulled': 1,
          'happens': 1,
          'nlike': 1,
          'mtv': 1,
          'generation': 1,
          'suffers': 1,
          'overkill': 1,
          'nso': 1,
          'overdone': 1,
          'effect': 1,
          'leaving': 1,
          'us': 1,
          'pick': 1,
          'flaws': 1,
          'also': 1,
          'figure': 1,
          'quotation': 1,
          'take': 1,
          'earthshattering': 1,
          'nwhen': 1,
          'finally': 1,
          'hear': 1,
          'saying': 1,
          'sounds': 1,
          'every': 1,
          'fiveyearold': 1,
          'learns': 1,
          'day': 1,
          'sunday': 1,
          'flash': 1,
          'whole': 1,
          'ado': 1,
          'days': 1,
          'usually': 1,
          'produce': 1,
          'monstrous': 1,
          'nneg': 1}),
 Counter({'zardoz': 9,
          'boorman': 7,
          'film': 6,
          'one': 5,
          'made': 5,
          'like': 5,
          'movie': 4,
          'connery': 4,
          'movies': 4,
          'immortals': 4,
          'talent': 3,
          'nboorman': 3,
          'world': 3,
          'never': 3,
          'nthe': 3,
          'people': 3,
          'live': 3,
          'aged': 3,
          'frayn': 3,
          'flying': 3,
          'stone': 3,
          'head': 3,
          'boormans': 2,
          'takes': 2,
          'time': 2,
          'career': 2,
          'two': 2,
          'things': 2,
          'equally': 2,
          'ii': 2,
          'sean': 2,
          'although': 2,
          'man': 2,
          'deliverance': 2,
          'arthurian': 2,
          'nhis': 2,
          'show': 2,
          'nif': 2,
          'anything': 2,
          'grand': 2,
          'around': 2,
          'n': 2,
          'place': 2,
          'among': 2,
          'even': 2,
          'wizard': 2,
          'oz': 2,
          'take': 2,
          'moved': 2,
          'outlands': 2,
          'vortex': 2,
          'group': 2,
          'life': 2,
          'old': 2,
          'society': 2,
          'everyone': 2,
          'breaks': 2,
          'rules': 2,
          'enough': 2,
          'eternal': 2,
          'none': 2,
          'mustache': 2,
          'giant': 2,
          'bunch': 2,
          'outlanders': 2,
          'whose': 2,
          'statements': 2,
          'good': 2,
          'zed': 2,
          'back': 2,
          'hilarious': 2,
          'exactly': 2,
          'didnt': 2,
          'looking': 2,
          'would': 2,
          'imagine': 2,
          'nhe': 2,
          'thing': 2,
          'nis': 2,
          'john': 1,
          'goofy': 1,
          'cinematic': 1,
          'debacle': 1,
          'fundamentally': 1,
          'misconceived': 1,
          'laughably': 1,
          'executed': 1,
          'bizarre': 1,
          'enjoyment': 1,
          'quality': 1,
          'nnot': 1,
          'since': 1,
          'rampant': 1,
          'bumblings': 1,
          'edward': 1,
          'wood': 1,
          'jr': 1,
          'silly': 1,
          'serious': 1,
          'nof': 1,
          'course': 1,
          'woods': 1,
          'explained': 1,
          'money': 1,
          'hand': 1,
          'court': 1,
          'excuses': 1,
          'explain': 1,
          'followup': 1,
          'awful': 1,
          'exorcist': 1,
          'heretic': 1,
          'obviously': 1,
          'sizable': 1,
          'budget': 1,
          'matinee': 1,
          'idol': 1,
          'star': 1,
          'lead': 1,
          'role': 1,
          'wouldnt': 1,
          'know': 1,
          'indeed': 1,
          'nthis': 1,
          'slick': 1,
          'modern': 1,
          'masterpiece': 1,
          '1972': 1,
          'well': 1,
          'autobiographical': 1,
          'war': 1,
          'drama': 1,
          'hope': 1,
          'glory': 1,
          '1987': 1,
          'slightly': 1,
          'overconceived': 1,
          'epic': 1,
          'excalibur': 1,
          '1981': 1,
          'fatherson': 1,
          'jungle': 1,
          'adventure': 1,
          'emerald': 1,
          'forest': 1,
          '1985': 1,
          'films': 1,
          'lacking': 1,
          'imagination': 1,
          'sometimes': 1,
          'comes': 1,
          'cost': 1,
          'coherence': 1,
          'taste': 1,
          'hes': 1,
          'ambitious': 1,
          'succeeds': 1,
          'fashion': 1,
          'nunfortunately': 1,
          'bigger': 1,
          'harder': 1,
          'fall': 1,
          'falls': 1,
          'resounding': 1,
          'impact': 1,
          'heard': 1,
          'miles': 1,
          'meant': 1,
          'grandest': 1,
          'mystical': 1,
          'obsession': 1,
          'screenplay': 1,
          'tries': 1,
          'elicit': 1,
          'mythological': 1,
          'connotations': 1,
          'legends': 1,
          'book': 1,
          'figures': 1,
          'plot': 1,
          'nbut': 1,
          'despite': 1,
          'reaching': 1,
          'resulting': 1,
          'unintentionally': 1,
          'funny': 1,
          'intentionally': 1,
          'enigmatical': 1,
          'compelling': 1,
          'events': 1,
          'distant': 1,
          'year': 1,
          '2293': 1,
          'little': 1,
          'typical': 1,
          'futuristic': 1,
          'movieness': 1,
          'found': 1,
          'nin': 1,
          'fact': 1,
          'seems': 1,
          'backwards': 1,
          'riding': 1,
          'horses': 1,
          'shooting': 1,
          'oldstyle': 1,
          'guns': 1,
          'living': 1,
          'large': 1,
          'victorian': 1,
          'mansions': 1,
          'nits': 1,
          'middle': 1,
          'ages': 1,
          'space': 1,
          'age': 1,
          'divided': 1,
          'distinct': 1,
          'hemispheres': 1,
          'poor': 1,
          'pathetic': 1,
          'select': 1,
          'wealthy': 1,
          'intellectuals': 1,
          'comfort': 1,
          'everlasting': 1,
          'nthese': 1,
          'grow': 1,
          'engage': 1,
          'sexual': 1,
          'activity': 1,
          'possess': 1,
          'psychological': 1,
          'powers': 1,
          'sort': 1,
          'quasiutopian': 1,
          'marxist': 1,
          'equal': 1,
          'contributes': 1,
          'nhowever': 1,
          'person': 1,
          'punished': 1,
          'many': 1,
          'years': 1,
          'someone': 1,
          'point': 1,
          'senility': 1,
          'imprisoned': 1,
          'existence': 1,
          'geriatric': 1,
          'home': 1,
          'others': 1,
          'criminals': 1,
          'arthur': 1,
          'niall': 1,
          'buggy': 1,
          'squirmy': 1,
          'goatee': 1,
          'tattooed': 1,
          'face': 1,
          'charged': 1,
          'keeping': 1,
          'order': 1,
          'forcing': 1,
          'residents': 1,
          'farm': 1,
          'fed': 1,
          'nlike': 1,
          'adopts': 1,
          'godlike': 1,
          'status': 1,
          'part': 1,
          'carved': 1,
          'menacing': 1,
          'opening': 1,
          'images': 1,
          'dead': 1,
          'giveaway': 1,
          'lunacy': 1,
          'come': 1,
          'ncalling': 1,
          'gathers': 1,
          'makes': 1,
          'called': 1,
          'exterminators': 1,
          'purpose': 1,
          'kill': 1,
          'cant': 1,
          'procreate': 1,
          'resources': 1,
          'nfrom': 1,
          'inside': 1,
          'bellows': 1,
          'seriously': 1,
          'laughinducting': 1,
          'gun': 1,
          'penis': 1,
          'evil': 1,
          'nthat': 1,
          'line': 1,
          'alone': 1,
          'worth': 1,
          'cult': 1,
          'following': 1,
          'day': 1,
          'exterminator': 1,
          'named': 1,
          'sneaks': 1,
          'zardozs': 1,
          'pushes': 1,
          'goes': 1,
          'nonce': 1,
          'label': 1,
          'brutal': 1,
          'study': 1,
          'lab': 1,
          'rat': 1,
          'taking': 1,
          'great': 1,
          'perverse': 1,
          'care': 1,
          'exploring': 1,
          'sexuality': 1,
          'mystery': 1,
          'nthey': 1,
          'seem': 1,
          'especially': 1,
          'interested': 1,
          'ability': 1,
          'gain': 1,
          'erection': 1,
          'downright': 1,
          'sequence': 1,
          'scantilyclad': 1,
          'female': 1,
          'scientists': 1,
          'erotic': 1,
          'footage': 1,
          'video': 1,
          'screen': 1,
          'attempt': 1,
          'determine': 1,
          'gets': 1,
          'worked': 1,
          'ni': 1,
          'say': 1,
          'nit': 1,
          'obvious': 1,
          'intend': 1,
          'straightest': 1,
          'faces': 1,
          'hard': 1,
          'believing': 1,
          'production': 1,
          'forward': 1,
          'get': 1,
          'slightest': 1,
          'inkling': 1,
          'patently': 1,
          'ridiculous': 1,
          'becoming': 1,
          'njust': 1,
          'give': 1,
          'giggles': 1,
          'spends': 1,
          'running': 1,
          'red': 1,
          'loin': 1,
          'cloth': 1,
          'resembles': 1,
          'diaper': 1,
          'mane': 1,
          'hair': 1,
          'braided': 1,
          'halfway': 1,
          'wyatt': 1,
          'earpstyle': 1,
          'handlebar': 1,
          'pair': 1,
          'thighhigh': 1,
          'patent': 1,
          'leather': 1,
          'boots': 1,
          'look': 1,
          'appropriate': 1,
          'cheap': 1,
          'hollywood': 1,
          'hooker': 1,
          'right': 1,
          'critical': 1,
          'financial': 1,
          'success': 1,
          'reason': 1,
          'studio': 1,
          'greenlight': 1,
          'effort': 1,
          'attracted': 1,
          'rich': 1,
          'sides': 1,
          'camera': 1,
          'including': 1,
          'cinematographer': 1,
          'geoffrey': 1,
          'unsworth': 1,
          '2001': 1,
          'striking': 1,
          'visuals': 1,
          'besides': 1,
          'inadvertent': 1,
          'humor': 1,
          'nsean': 1,
          'last': 1,
          'james': 1,
          'bond': 1,
          '1971': 1,
          'perhaps': 1,
          'change': 1,
          'pace': 1,
          'got': 1,
          'wonder': 1,
          'end': 1,
          'nim': 1,
          'sure': 1,
          'intended': 1,
          'make': 1,
          'treatise': 1,
          'infallibility': 1,
          'condemnation': 1,
          'consider': 1,
          'growing': 1,
          'bad': 1,
          'social': 1,
          'statement': 1,
          'something': 1,
          'inherent': 1,
          'negativity': 1,
          'class': 1,
          'distinctions': 1,
          'violence': 1,
          'creates': 1,
          'nkarl': 1,
          'marx': 1,
          'might': 1,
          'timothy': 1,
          'leary': 1,
          'ncome': 1,
          'think': 1,
          'maybe': 1,
          'extended': 1,
          'lsd': 1,
          'trip': 1,
          'npeople': 1,
          'high': 1,
          'illicit': 1,
          'substances': 1,
          'ones': 1,
          'enjoying': 1,
          'asinine': 1,
          'silliness': 1,
          'completely': 1,
          'unintentional': 1,
          'comedy': 1,
          'nneg': 1}),
 Counter({'kids': 6,
          'nthe': 5,
          'show': 3,
          'film': 3,
          'tv': 3,
          'make': 3,
          'drug': 3,
          'hall': 2,
          'watching': 2,
          'big': 2,
          'go': 2,
          'makes': 2,
          'candy': 2,
          'story': 2,
          'new': 2,
          'nin': 2,
          'several': 2,
          'cooper': 2,
          'roritor': 2,
          'best': 2,
          'laughs': 2,
          'enough': 2,
          'one': 2,
          'thompsons': 2,
          'acquired': 1,
          'taste': 1,
          'nit': 1,
          'took': 1,
          'least': 1,
          'season': 1,
          'hbo': 1,
          'became': 1,
          'believer': 1,
          'nmaybe': 1,
          'half': 1,
          'dozen': 1,
          'movies': 1,
          'would': 1,
          'grow': 1,
          'screen': 1,
          'nmy': 1,
          'recommendation': 1,
          'unless': 1,
          'fan': 1,
          'skip': 1,
          'nas': 1,
          'firstand': 1,
          'likely': 1,
          'onlyattempt': 1,
          'full': 1,
          'length': 1,
          'lacks': 1,
          'qualities': 1,
          'made': 1,
          'comedy': 1,
          'work': 1,
          'na': 1,
          'bigbudget': 1,
          'glossy': 1,
          'production': 1,
          'lack': 1,
          'spontaneity': 1,
          'permeates': 1,
          'motions': 1,
          'get': 1,
          'feeling': 1,
          'arent': 1,
          'really': 1,
          'fun': 1,
          'nand': 1,
          'difficult': 1,
          'audience': 1,
          'enjoy': 1,
          'antics': 1,
          'nbrain': 1,
          'bunch': 1,
          'skits': 1,
          'tied': 1,
          'together': 1,
          'pharmaceutical': 1,
          'company': 1,
          'develops': 1,
          'cure': 1,
          'depression': 1,
          'typical': 1,
          'sketchcomedy': 1,
          'tradition': 1,
          'actor': 1,
          'plays': 1,
          'roles': 1,
          'ndoctor': 1,
          'kevin': 1,
          'mcdonald': 1,
          'team': 1,
          'create': 1,
          'nthen': 1,
          'pressure': 1,
          'mark': 1,
          'mckinney': 1,
          'founder': 1,
          'president': 1,
          'pharmaceuticals': 1,
          'dr': 1,
          'releases': 1,
          'marketplace': 1,
          'ensuing': 1,
          'distribution': 1,
          'happy': 1,
          'pill': 1,
          'throughout': 1,
          'populace': 1,
          'drives': 1,
          'rest': 1,
          'nat': 1,
          '90': 1,
          'minutes': 1,
          'brain': 1,
          'still': 1,
          'seems': 1,
          'long': 1,
          'thing': 1,
          'sketch': 1,
          'comedyand': 1,
          'exceptionis': 1,
          'ability': 1,
          'quickly': 1,
          'deliver': 1,
          'another': 1,
          'quick': 1,
          'skit': 1,
          'nbut': 1,
          'additional': 1,
          'setup': 1,
          'necessary': 1,
          'telling': 1,
          'longer': 1,
          'coherent': 1,
          'dont': 1,
          'come': 1,
          'fast': 1,
          'nstrangely': 1,
          'even': 1,
          'tame': 1,
          'cable': 1,
          'movie': 1,
          'attempts': 1,
          'risquenessmostly': 1,
          'pointing': 1,
          'gayness': 1,
          'scott': 1,
          'charactersbut': 1,
          'seem': 1,
          'almost': 1,
          'forced': 1,
          'live': 1,
          'pg': 1,
          'rating': 1,
          'none': 1,
          'bits': 1,
          'though': 1,
          'use': 1,
          'naked': 1,
          'buttocks': 1,
          'see': 1,
          'charging': 1,
          'battlegoing': 1,
          'sex': 1,
          'guys': 1,
          'taking': 1,
          'shower': 1,
          'classic': 1,
          'genre': 1,
          'monty': 1,
          'python': 1,
          'pulled': 1,
          'delicate': 1,
          'balancing': 1,
          'act': 1,
          'plot': 1,
          'advancement': 1,
          'punchline': 1,
          'delivery': 1,
          'holy': 1,
          'grail': 1,
          'unfortunately': 1,
          'task': 1,
          'nthere': 1,
          'amusing': 1,
          'moments': 1,
          'sure': 1,
          'experience': 1,
          'enjoyable': 1,
          'nneg': 1}),
 Counter({'carpenters': 5,
          'vampires': 5,
          'john': 4,
          'carpenter': 4,
          'story': 4,
          'time': 3,
          'film': 3,
          'made': 3,
          'even': 3,
          'like': 3,
          'crow': 3,
          'vampire': 3,
          'one': 3,
          'nand': 3,
          'horror': 2,
          'halloween': 2,
          'good': 2,
          '1995': 2,
          'something': 2,
          'lost': 2,
          'sequel': 2,
          'nit': 2,
          'filmed': 2,
          'nthe': 2,
          'woods': 2,
          'along': 2,
          'baldwin': 2,
          'katrina': 2,
          'sheryl': 2,
          'lee': 2,
          'attack': 2,
          'valek': 2,
          'bitten': 2,
          'couple': 2,
          'many': 2,
          'seen': 2,
          'better': 2,
          'isnt': 2,
          'work': 2,
          'nthere': 2,
          'characters': 2,
          'excitement': 2,
          'said': 2,
          'great': 1,
          'director': 1,
          'nof': 1,
          'course': 1,
          'best': 1,
          '1978s': 1,
          'masterpiece': 1,
          'also': 1,
          '1980s': 1,
          'fog': 1,
          '1987s': 1,
          'underrated': 1,
          'prince': 1,
          'darkness': 1,
          'nheck': 1,
          'mouth': 1,
          'madness': 1,
          'nbut': 1,
          'terribly': 1,
          'wrong': 1,
          'happened': 1,
          '1992': 1,
          'terrible': 1,
          'comedy': 1,
          'memoirs': 1,
          'invisible': 1,
          'man': 1,
          'nsomehow': 1,
          'touch': 1,
          'junk': 1,
          'failed': 1,
          'remake': 1,
          'village': 1,
          'damned': 1,
          'uninspired': 1,
          '1996': 1,
          'escape': 1,
          'l': 1,
          'movies': 1,
          'however': 1,
          'look': 1,
          'cinematic': 1,
          'works': 1,
          'art': 1,
          'compared': 1,
          'latest': 1,
          'nif': 1,
          'definately': 1,
          'wouldnt': 1,
          'want': 1,
          'put': 1,
          'name': 1,
          'title': 1,
          'sad': 1,
          'state': 1,
          'affairs': 1,
          'make': 1,
          'misguided': 1,
          'flatly': 1,
          'written': 1,
          'simple': 1,
          'njack': 1,
          'james': 1,
          'hunter': 1,
          'partners': 1,
          'montoya': 1,
          'daniel': 1,
          'prostitute': 1,
          'survives': 1,
          'master': 1,
          'thomas': 1,
          'ian': 1,
          'griffith': 1,
          'nsince': 1,
          'previously': 1,
          'takes': 1,
          'anyone': 1,
          'becomes': 1,
          'telepathically': 1,
          'linked': 1,
          'turn': 1,
          'days': 1,
          'later': 1,
          'hoping': 1,
          'find': 1,
          'help': 1,
          'seems': 1,
          'valeks': 1,
          'mission': 1,
          'steal': 1,
          'black': 1,
          'wooden': 1,
          'cross': 1,
          'roman': 1,
          'catholic': 1,
          'church': 1,
          'enable': 1,
          'become': 1,
          'powerful': 1,
          'sunlight': 1,
          'destroy': 1,
          'nmy': 1,
          'question': 1,
          'played': 1,
          'nwell': 1,
          'answer': 1,
          'times': 1,
          'version': 1,
          'n': 1,
          'sadly': 1,
          'enough': 1,
          'unscary': 1,
          'films': 1,
          'ive': 1,
          'ever': 1,
          'nin': 1,
          'fact': 1,
          'suspenseful': 1,
          'moment': 1,
          'whole': 1,
          '105minute': 1,
          'running': 1,
          'nonstop': 1,
          'sequences': 1,
          'stylelessly': 1,
          'without': 1,
          'interesting': 1,
          'camera': 1,
          'usually': 1,
          'trademark': 1,
          'come': 1,
          'screenplay': 1,
          'far': 1,
          'tell': 1,
          'nearly': 1,
          'nonexistent': 1,
          'development': 1,
          'attempt': 1,
          'flesh': 1,
          'njames': 1,
          'actor': 1,
          'nothing': 1,
          'say': 1,
          'pseudo': 1,
          'clever': 1,
          'lines': 1,
          'dialogue': 1,
          'ndaniel': 1,
          'potential': 1,
          'character': 1,
          'comes': 1,
          'dense': 1,
          'faring': 1,
          'much': 1,
          'laura': 1,
          'palmer': 1,
          'twin': 1,
          'peaks': 1,
          'female': 1,
          'plays': 1,
          'offensive': 1,
          'stereotypical': 1,
          'whore': 1,
          'ounce': 1,
          'intelligence': 1,
          'vamires': 1,
          'disheartening': 1,
          'coming': 1,
          'exfan': 1,
          'nhe': 1,
          'turned': 1,
          'directing': 1,
          'h20': 1,
          'couldnt': 1,
          'yet': 1,
          'asked': 1,
          'would': 1,
          'happy': 1,
          'ni': 1,
          'think': 1,
          'thats': 1,
          'definite': 1,
          'sign': 1,
          'finally': 1,
          'trace': 1,
          'lasting': 1,
          'talent': 1,
          'mention': 1,
          'significant': 1,
          'number': 1,
          'iq': 1,
          'points': 1,
          'nneg': 1}),
 Counter({'guys': 5,
          'roxbury': 5,
          'nthe': 5,
          'one': 4,
          'characters': 4,
          'bob': 3,
          'heads': 3,
          'love': 3,
          'sketch': 3,
          'would': 3,
          'skits': 3,
          'steve': 3,
          'nthere': 3,
          'film': 3,
          'two': 2,
          'nightclub': 2,
          'enough': 2,
          '_saturday_night_live_': 2,
          'presumably': 2,
          'takes': 2,
          '_roxbury_': 2,
          'doug': 2,
          'kattan': 2,
          'ferrell': 2,
          'nthat': 2,
          'fact': 2,
          'films': 2,
          'new': 2,
          'doors': 2,
          'thats': 2,
          'comic': 2,
          'run': 2,
          'rather': 2,
          'club': 2,
          'father': 2,
          'big': 2,
          'people': 2,
          'seen': 2,
          'lot': 2,
          'lack': 2,
          'inspiration': 2,
          'nafter': 2,
          'watching': 2,
          'party': 1,
          'haddaways': 1,
          'dance': 1,
          'hit': 1,
          'nwhile': 1,
          'getting': 1,
          'trouble': 1,
          'nits': 1,
          'barely': 1,
          'sustain': 1,
          'threeminute': 1,
          'skit': 1,
          '_snl_': 1,
          'producer': 1,
          'lorne': 1,
          'michaels': 1,
          '_clueless_': 1,
          'creator': 1,
          'amy': 1,
          'heckerling': 1,
          'paramount': 1,
          'pictures': 1,
          'saw': 1,
          'something': 1,
          'late': 1,
          'night': 1,
          'television': 1,
          'institutions': 1,
          'recurring': 1,
          'make': 1,
          'good': 1,
          'feature': 1,
          'nemphasis': 1,
          'word': 1,
          'n_a_night_at_the_roxbury_': 1,
          'alreadythin': 1,
          'concept': 1,
          'tediously': 1,
          'stretches': 1,
          'far': 1,
          'beyond': 1,
          'breaking': 1,
          'pointand': 1,
          'viewers': 1,
          'patience': 1,
          'levels': 1,
          'first': 1,
          'five': 1,
          'minutes': 1,
          'play': 1,
          'much': 1,
          'like': 1,
          'original': 1,
          'nwith': 1,
          'nblaring': 1,
          'soundtrack': 1,
          'brotherly': 1,
          'duo': 1,
          'butabi': 1,
          'chris': 1,
          'scope': 1,
          'hotties': 1,
          'clubs': 1,
          'bump': 1,
          'select': 1,
          'violent': 1,
          'pelvic': 1,
          'thrusts': 1,
          'crucial': 1,
          'difference': 1,
          'howeverthese': 1,
          'speak': 1,
          'little': 1,
          'used': 1,
          'justification': 1,
          'existence': 1,
          'butabis': 1,
          'newfound': 1,
          'capacity': 1,
          'speech': 1,
          'open': 1,
          'whole': 1,
          'set': 1,
          'opened': 1,
          'director': 1,
          'john': 1,
          'fortenberry': 1,
          'screenwriters': 1,
          'koren': 1,
          'sure': 1,
          'lead': 1,
          'dead': 1,
          'ends': 1,
          'story': 1,
          'per': 1,
          'se': 1,
          'loosely': 1,
          'structured': 1,
          'linked': 1,
          'series': 1,
          'subplots': 1,
          'brothers': 1,
          'literally': 1,
          'get': 1,
          'car': 1,
          'richard': 1,
          'grieco': 1,
          '_21_jump_street_': 1,
          'fame': 1,
          'gain': 1,
          'entrance': 1,
          'exclusive': 1,
          'meet': 1,
          'hotshot': 1,
          'owner': 1,
          'chazz': 1,
          'palminteri': 1,
          'conspicuously': 1,
          'uncreditedcan': 1,
          'blame': 1,
          'interest': 1,
          'idea': 1,
          'nmeanwhile': 1,
          'bros': 1,
          'overbearing': 1,
          'dan': 1,
          'hedaya': 1,
          'wants': 1,
          'stop': 1,
          'clubbing': 1,
          'nwhen': 1,
          'refuses': 1,
          'dimwitted': 1,
          'obeys': 1,
          'rift': 1,
          'created': 1,
          'narrative': 1,
          'messiness': 1,
          'forgivable': 1,
          'went': 1,
          'slightest': 1,
          'bit': 1,
          'funny': 1,
          'virtually': 1,
          'none': 1,
          'assembled': 1,
          'press': 1,
          'audience': 1,
          'mostly': 1,
          'sat': 1,
          'stonily': 1,
          'silent': 1,
          'throughout': 1,
          'entire': 1,
          'exception': 1,
          'laugh': 1,
          'near': 1,
          'end': 1,
          'nalas': 1,
          'jokea': 1,
          'lazy': 1,
          'takeoff': 1,
          '_jerry_maguire_will': 1,
          'strike': 1,
          'chord': 1,
          'ngranted': 1,
          '_have_': 1,
          '_jerry_maguire_': 1,
          'best': 1,
          'joke': 1,
          'completely': 1,
          'dependent': 1,
          'ones': 1,
          'familiarity': 1,
          'another': 1,
          'says': 1,
          '_roxbury_s': 1,
          'traced': 1,
          'back': 1,
          'insipid': 1,
          'nlike': 1,
          'many': 1,
          'current': 1,
          'incarnation': 1,
          'onejoke': 1,
          'never': 1,
          'suggests': 1,
          'life': 1,
          'survive': 1,
          'outside': 1,
          'context': 1,
          'snl': 1,
          'come': 1,
          'away': 1,
          'nbump': 1,
          'unsuspecting': 1,
          'women': 1,
          '_a_night_at_the_roxbury_': 1,
          'youll': 1,
          'left': 1,
          'exactly': 1,
          'nneg': 1}),
 Counter({'comic': 5,
          'film': 5,
          'like': 4,
          'say': 4,
          'nthe': 4,
          'dont': 4,
          'book': 3,
          'moore': 3,
          'campbell': 3,
          'ripper': 3,
          'hells': 3,
          'world': 2,
          'never': 2,
          'really': 2,
          'hell': 2,
          'whole': 2,
          'called': 2,
          'jack': 2,
          'starting': 2,
          'little': 2,
          'nin': 2,
          'get': 2,
          'hughes': 2,
          'direct': 2,
          'seems': 2,
          'ghetto': 2,
          'whitechapel': 2,
          'end': 2,
          'nits': 2,
          'place': 2,
          'first': 2,
          'turns': 2,
          'peter': 2,
          'enough': 2,
          'depp': 2,
          'graham': 2,
          'even': 2,
          'ni': 2,
          'identity': 2,
          'good': 2,
          'make': 2,
          'see': 2,
          'wasnt': 2,
          'strong': 2,
          'accent': 2,
          'films': 1,
          'adapted': 1,
          'books': 1,
          'plenty': 1,
          'success': 1,
          'whether': 1,
          'theyre': 1,
          'superheroes': 1,
          'batman': 1,
          'superman': 1,
          'spawn': 1,
          'geared': 1,
          'toward': 1,
          'kids': 1,
          'casper': 1,
          'arthouse': 1,
          'crowd': 1,
          'ghost': 1,
          'theres': 1,
          'nfor': 1,
          'starters': 1,
          'created': 1,
          'alan': 1,
          'eddie': 1,
          'brought': 1,
          'medium': 1,
          'new': 1,
          'level': 1,
          'mid': 1,
          '80s': 1,
          '12part': 1,
          'series': 1,
          'watchmen': 1,
          'nto': 1,
          'thoroughly': 1,
          'researched': 1,
          'subject': 1,
          'would': 1,
          'saying': 1,
          'michael': 1,
          'jackson': 1,
          'look': 1,
          'odd': 1,
          'graphic': 1,
          'novel': 1,
          '500': 1,
          'pages': 1,
          'long': 1,
          'includes': 1,
          'nearly': 1,
          '30': 1,
          'consist': 1,
          'nothing': 1,
          'footnotes': 1,
          'words': 1,
          'dismiss': 1,
          'source': 1,
          'nif': 1,
          'past': 1,
          'thing': 1,
          'might': 1,
          'find': 1,
          'another': 1,
          'stumbling': 1,
          'block': 1,
          'directors': 1,
          'albert': 1,
          'allen': 1,
          'ngetting': 1,
          'brothers': 1,
          'almost': 1,
          'ludicrous': 1,
          'casting': 1,
          'carrot': 1,
          'top': 1,
          'well': 1,
          'anything': 1,
          'riddle': 1,
          'better': 1,
          'thats': 1,
          'set': 1,
          'features': 1,
          'violent': 1,
          'street': 1,
          'crime': 1,
          'mad': 1,
          'geniuses': 1,
          'behind': 1,
          'menace': 1,
          'ii': 1,
          'society': 1,
          'question': 1,
          'course': 1,
          '1888': 1,
          'londons': 1,
          'east': 1,
          'filthy': 1,
          'sooty': 1,
          'whores': 1,
          'unfortunates': 1,
          'nervous': 1,
          'mysterious': 1,
          'psychopath': 1,
          'carving': 1,
          'profession': 1,
          'surgical': 1,
          'precision': 1,
          'nwhen': 1,
          'stiff': 1,
          'copper': 1,
          'godley': 1,
          'robbie': 1,
          'coltrane': 1,
          'calls': 1,
          'inspector': 1,
          'frederick': 1,
          'abberline': 1,
          'johnny': 1,
          'blow': 1,
          'crack': 1,
          'case': 1,
          'nabberline': 1,
          'widower': 1,
          'prophetic': 1,
          'dreams': 1,
          'unsuccessfully': 1,
          'tries': 1,
          'quell': 1,
          'copious': 1,
          'amounts': 1,
          'absinthe': 1,
          'opium': 1,
          'nupon': 1,
          'arriving': 1,
          'befriends': 1,
          'unfortunate': 1,
          'named': 1,
          'mary': 1,
          'kelly': 1,
          'heather': 1,
          'isnt': 1,
          'proceeds': 1,
          'investigate': 1,
          'horribly': 1,
          'gruesome': 1,
          'crimes': 1,
          'police': 1,
          'surgeon': 1,
          'cant': 1,
          'stomach': 1,
          'think': 1,
          'anyone': 1,
          'needs': 1,
          'briefed': 1,
          'wont': 1,
          'go': 1,
          'particulars': 1,
          'unique': 1,
          'interesting': 1,
          'theory': 1,
          'killer': 1,
          'reasons': 1,
          'chooses': 1,
          'slay': 1,
          'bother': 1,
          'cloaking': 1,
          'screenwriters': 1,
          'terry': 1,
          'hayes': 1,
          'vertical': 1,
          'limit': 1,
          'rafael': 1,
          'yglesias': 1,
          'les': 1,
          'mis': 1,
          'rables': 1,
          'job': 1,
          'keeping': 1,
          'hidden': 1,
          'viewers': 1,
          'funny': 1,
          'watch': 1,
          'locals': 1,
          'blindly': 1,
          'point': 1,
          'finger': 1,
          'blame': 1,
          'jews': 1,
          'indians': 1,
          'englishman': 1,
          'could': 1,
          'capable': 1,
          'committing': 1,
          'ghastly': 1,
          'acts': 1,
          'nand': 1,
          'ending': 1,
          'whistling': 1,
          'stonecutters': 1,
          'song': 1,
          'simpsons': 1,
          'days': 1,
          'holds': 1,
          'back': 1,
          'electric': 1,
          'carwho': 1,
          'made': 1,
          'steve': 1,
          'guttenberg': 1,
          'star': 1,
          'ndont': 1,
          'worry': 1,
          'itll': 1,
          'sense': 1,
          'nnow': 1,
          'onto': 1,
          'appearance': 1,
          'certainly': 1,
          'dark': 1,
          'bleak': 1,
          'surprising': 1,
          'much': 1,
          'looks': 1,
          'tim': 1,
          'burton': 1,
          'planet': 1,
          'apes': 1,
          'times': 1,
          'sleepy': 1,
          'hollow': 1,
          '2': 1,
          'print': 1,
          'saw': 1,
          'completely': 1,
          'finished': 1,
          'color': 1,
          'music': 1,
          'finalized': 1,
          'comments': 1,
          'marilyn': 1,
          'manson': 1,
          'cinematographer': 1,
          'deming': 1,
          'word': 1,
          'ably': 1,
          'captures': 1,
          'dreariness': 1,
          'victorianera': 1,
          'london': 1,
          'helped': 1,
          'flashy': 1,
          'killing': 1,
          'scenes': 1,
          'remind': 1,
          'crazy': 1,
          'flashbacks': 1,
          'twin': 1,
          'peaks': 1,
          'though': 1,
          'violence': 1,
          'pales': 1,
          'comparison': 1,
          'blackandwhite': 1,
          'noscar': 1,
          'winner': 1,
          'martin': 1,
          'childs': 1,
          'shakespeare': 1,
          'love': 1,
          'production': 1,
          'design': 1,
          'original': 1,
          'prague': 1,
          'surroundings': 1,
          'one': 1,
          'creepy': 1,
          'neven': 1,
          'acting': 1,
          'solid': 1,
          'dreamy': 1,
          'turning': 1,
          'typically': 1,
          'performance': 1,
          'deftly': 1,
          'handling': 1,
          'british': 1,
          'nians': 1,
          'holm': 1,
          'joe': 1,
          'goulds': 1,
          'secret': 1,
          'richardson': 1,
          '102': 1,
          'dalmatians': 1,
          'log': 1,
          'great': 1,
          'supporting': 1,
          'roles': 1,
          'big': 1,
          'surprise': 1,
          'cringed': 1,
          'time': 1,
          'opened': 1,
          'mouth': 1,
          'imagining': 1,
          'attempt': 1,
          'irish': 1,
          'actually': 1,
          'half': 1,
          'bad': 1,
          'however': 1,
          'n2': 1,
          '00': 1,
          'r': 1,
          'violencegore': 1,
          'sexuality': 1,
          'language': 1,
          'drug': 1,
          'content': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          '_election_': 7,
          '_rushmore_': 6,
          'gets': 6,
          'film': 5,
          'school': 5,
          'even': 4,
          'high': 4,
          'broderick': 4,
          'witherspoon': 4,
          'plot': 4,
          'student': 4,
          'significant': 4,
          'like': 4,
          'every': 3,
          'films': 3,
          'matthew': 3,
          'ntracy': 3,
          'flick': 3,
          'nand': 3,
          'going': 3,
          'extraordinary': 3,
          'relationship': 3,
          'affair': 3,
          'mr': 3,
          'movie': 2,
          'studio': 2,
          'comedy': 2,
          'reese': 2,
          'way': 2,
          'pauls': 2,
          'sister': 2,
          'made': 2,
          'reviews': 2,
          'baggage': 2,
          'nwhat': 2,
          'similarities': 2,
          'president': 2,
          'number': 2,
          'clubs': 2,
          'involved': 2,
          'play': 2,
          'nmax': 2,
          'fischer': 2,
          'tension': 2,
          'potential': 2,
          'teacher': 2,
          'single': 2,
          'parent': 2,
          'home': 2,
          'contributed': 2,
          'drive': 2,
          'male': 2,
          'bumbling': 2,
          'adult': 2,
          'pursues': 2,
          'extramarital': 2,
          'caught': 2,
          'whole': 2,
          'life': 2,
          'ruined': 2,
          'nhe': 2,
          'bee': 2,
          'yet': 2,
          'neven': 2,
          'fantastic': 2,
          'since': 2,
          'comes': 1,
          'along': 1,
          'suspect': 1,
          'indication': 1,
          'stinker': 1,
          'everybodys': 1,
          'surprise': 1,
          'perhaps': 1,
          'becomes': 1,
          'critical': 1,
          'darling': 1,
          'nmtv': 1,
          '_election': 1,
          'starring': 1,
          'current': 1,
          'example': 1,
          'ndid': 1,
          'anybody': 1,
          'know': 1,
          'existed': 1,
          'week': 1,
          'opened': 1,
          'deceptively': 1,
          'simple': 1,
          'ngeorge': 1,
          'washington': 1,
          'carver': 1,
          'elections': 1,
          'overachiever': 1,
          'hand': 1,
          'raised': 1,
          'nearly': 1,
          'question': 1,
          'nmr': 1,
          'sick': 1,
          'megalomaniac': 1,
          'encourages': 1,
          'paul': 1,
          'popularbutslow': 1,
          'jock': 1,
          'run': 1,
          'nihilistic': 1,
          'jumps': 1,
          'race': 1,
          'well': 1,
          'personal': 1,
          'reasons': 1,
          'dark': 1,
          'side': 1,
          'sleeper': 1,
          'success': 1,
          'expectations': 1,
          'low': 1,
          'fact': 1,
          'quality': 1,
          'stuff': 1,
          'enthusiastic': 1,
          'right': 1,
          'nyou': 1,
          'cant': 1,
          'help': 1,
          'glowing': 1,
          'contrast': 1,
          'negative': 1,
          'reviewers': 1,
          'likely': 1,
          'n_election': 1,
          'good': 1,
          'live': 1,
          'hype': 1,
          'makes': 1,
          'disappointing': 1,
          'contains': 1,
          'details': 1,
          'lifted': 1,
          'directly': 1,
          'released': 1,
          'months': 1,
          'earlier': 1,
          'staggering': 1,
          'sting': 1,
          'bill': 1,
          'murray': 1,
          'several': 1,
          'stings': 1,
          'happened': 1,
          'nhow': 1,
          'individual': 1,
          'screenplay': 1,
          'novel': 1,
          'contain': 1,
          'many': 1,
          'points': 1,
          'probably': 1,
          'aware': 1,
          'two': 1,
          'different': 1,
          'studios': 1,
          'genre': 1,
          'geeks': 1,
          'revenge': 1,
          'hadnt': 1,
          'fully': 1,
          'formed': 1,
          'strengths': 1,
          'rely': 1,
          'upon': 1,
          'performances': 1,
          'newcomer': 1,
          'jessica': 1,
          'campbell': 1,
          'antisocial': 1,
          'tammy': 1,
          'nbroderick': 1,
          'playing': 1,
          'rooney': 1,
          'role': 1,
          '_ferris': 1,
          'bueller_': 1,
          'seems': 1,
          'fun': 1,
          'hes': 1,
          'nwitherspoon': 1,
          'revelation': 1,
          'nits': 1,
          'early': 1,
          'year': 1,
          'teenagers': 1,
          'little': 1,
          'clout': 1,
          'money': 1,
          'deserves': 1,
          'oscar': 1,
          'nomination': 1,
          'campbells': 1,
          'character': 1,
          'speech': 1,
          'gymnasium': 1,
          'youre': 1,
          'none': 1,
          'thing': 1,
          'thats': 1,
          'bothering': 1,
          'ive': 1,
          'seen': 1,
          'nthere': 1,
          'amount': 1,
          'sexuality': 1,
          'ni': 1,
          'suppose': 1,
          'coming': 1,
          'mtv': 1,
          'expect': 1,
          'less': 1,
          'nbut': 1,
          'starts': 1,
          'light': 1,
          'airy': 1,
          'sitcom': 1,
          'nas': 1,
          'screws': 1,
          'tighten': 1,
          'tensions': 1,
          'mount': 1,
          'alexander': 1,
          'payne': 1,
          'decides': 1,
          'add': 1,
          'elements': 1,
          'frankly': 1,
          'distract': 1,
          'story': 1,
          'nit': 1,
          'bad': 1,
          'enough': 1,
          'doesnt': 1,
          'tracys': 1,
          'determination': 1,
          'win': 1,
          'costs': 1,
          'throw': 1,
          'studentteacher': 1,
          'theres': 1,
          'logical': 1,
          'reason': 1,
          'ntheres': 1,
          'lot': 1,
          'tonal': 1,
          'nosedive': 1,
          'takes': 1,
          'explicitly': 1,
          'sexdriven': 1,
          'mark': 1,
          'disappointment': 1,
          'npos': 1}),
 Counter({'two': 3,
          'shop': 3,
          'nbut': 3,
          'much': 3,
          'youve': 2,
          'got': 2,
          'mail': 2,
          'better': 2,
          'stars': 2,
          'share': 2,
          'screen': 2,
          'around': 2,
          'corner': 2,
          'manipulation': 2,
          'something': 2,
          'movie': 2,
          'important': 2,
          'even': 2,
          'plays': 2,
          'fox': 2,
          'insanely': 2,
          'likeable': 2,
          'book': 2,
          'ryan': 2,
          'kelley': 2,
          'love': 2,
          'true': 2,
          'identity': 2,
          'year': 2,
          'works': 1,
          'alot': 1,
          'deserves': 1,
          'nin': 1,
          'order': 1,
          'make': 1,
          'film': 1,
          'success': 1,
          'cast': 1,
          'extremely': 1,
          'popular': 1,
          'attractive': 1,
          'hours': 1,
          'collect': 1,
          'profits': 1,
          'nno': 1,
          'real': 1,
          'acting': 1,
          'involved': 1,
          'original': 1,
          'inventive': 1,
          'bone': 1,
          'body': 1,
          'basically': 1,
          'complete': 1,
          'reshoot': 1,
          'adding': 1,
          'modern': 1,
          'twists': 1,
          'nessentially': 1,
          'goes': 1,
          'defies': 1,
          'concepts': 1,
          'good': 1,
          'contemporary': 1,
          'filmmaking': 1,
          'nits': 1,
          'overly': 1,
          'sentimental': 1,
          'times': 1,
          'terribly': 1,
          'mushy': 1,
          'mention': 1,
          'manipulative': 1,
          'oh': 1,
          'enjoyable': 1,
          'must': 1,
          'casting': 1,
          'makes': 1,
          'work': 1,
          'well': 1,
          'absolutely': 1,
          'hated': 1,
          'previous': 1,
          'ryanhanks': 1,
          'teaming': 1,
          'sleepless': 1,
          'seattle': 1,
          'nit': 1,
          'couldnt': 1,
          'directing': 1,
          'films': 1,
          'helmed': 1,
          'woman': 1,
          'ni': 1,
          'havent': 1,
          'quite': 1,
          'yet': 1,
          'figured': 1,
          'liked': 1,
          'really': 1,
          'nif': 1,
          'like': 1,
          'question': 1,
          'nagain': 1,
          'storyline': 1,
          'cliched': 1,
          'come': 1,
          'ntom': 1,
          'hanks': 1,
          'joe': 1,
          'owner': 1,
          'discount': 1,
          'chain': 1,
          'meg': 1,
          'kathleen': 1,
          'proprietor': 1,
          'familyrun': 1,
          'childrens': 1,
          'called': 1,
          'nice': 1,
          'homage': 1,
          'nfox': 1,
          'soon': 1,
          'become': 1,
          'bitter': 1,
          'rivals': 1,
          'new': 1,
          'books': 1,
          'store': 1,
          'opening': 1,
          'right': 1,
          'across': 1,
          'block': 1,
          'small': 1,
          'business': 1,
          'nlittle': 1,
          'know': 1,
          'already': 1,
          'internet': 1,
          'neither': 1,
          'party': 1,
          'knows': 1,
          'persons': 1,
          'nthe': 1,
          'rest': 1,
          'story': 1,
          'isnt': 1,
          'serve': 1,
          'mere': 1,
          'backdrop': 1,
          'nsure': 1,
          'mildly': 1,
          'interesting': 1,
          'subplots': 1,
          'fail': 1,
          'comparison': 1,
          'utter': 1,
          'cuteness': 1,
          'main': 1,
          'relationship': 1,
          'nall': 1,
          'course': 1,
          'leads': 1,
          'predictable': 1,
          'climax': 1,
          'foreseeable': 1,
          'ending': 1,
          'damn': 1,
          'cute': 1,
          'welldone': 1,
          'doubt': 1,
          'entire': 1,
          'contains': 1,
          'scene': 1,
          'evokes': 1,
          'pure': 1,
          'joy': 1,
          'part': 1,
          'nwhen': 1,
          'discovers': 1,
          'online': 1,
          'filled': 1,
          'lack': 1,
          'word': 1,
          'happiness': 1,
          'first': 1,
          'time': 1,
          'actually': 1,
          'left': 1,
          'theater': 1,
          'smiling': 1,
          'npos': 1}),
 Counter({'shark': 15,
          'jaws': 8,
          'film': 7,
          'nthe': 6,
          'us': 6,
          'spielberg': 5,
          'act': 5,
          'one': 5,
          'performance': 5,
          'first': 4,
          'time': 4,
          'sharks': 4,
          'brody': 4,
          'shaw': 4,
          'underwater': 3,
          'outstanding': 3,
          'like': 3,
          'second': 3,
          'great': 3,
          'new': 3,
          'island': 3,
          'right': 3,
          'vaughn': 3,
          'summer': 3,
          'hooper': 3,
          'robert': 3,
          'orca': 3,
          'movies': 3,
          'actually': 3,
          'screen': 2,
          'movie': 2,
          'opens': 2,
          'comes': 2,
          'williams': 2,
          'taking': 2,
          'water': 2,
          'lets': 2,
          'know': 2,
          'floating': 2,
          'never': 2,
          'nhe': 2,
          'production': 2,
          'subjective': 2,
          'shots': 2,
          'nhes': 2,
          'tension': 2,
          'bit': 2,
          'terrifying': 2,
          'doesnt': 2,
          'police': 2,
          'town': 2,
          'several': 2,
          'mayor': 2,
          'money': 2,
          'dreyfuss': 2,
          'perfect': 2,
          'old': 2,
          'quint': 2,
          'entire': 2,
          'men': 2,
          'n': 2,
          'sense': 2,
          'pacing': 2,
          '1975': 2,
          'makes': 2,
          'technical': 2,
          'mechanical': 2,
          'none': 2,
          'nscheider': 2,
          'nhowever': 2,
          'story': 2,
          'see': 2,
          'different': 2,
          'rare': 1,
          'grabs': 1,
          'attention': 1,
          'shows': 1,
          'single': 1,
          'image': 1,
          'blackness': 1,
          'distant': 1,
          'alienlike': 1,
          'sounds': 1,
          'nthen': 1,
          'ominous': 1,
          'bars': 1,
          'composer': 1,
          'john': 1,
          'infamous': 1,
          'score': 1,
          'ndahdum': 1,
          'nfrom': 1,
          'director': 1,
          'steven': 1,
          'wastes': 1,
          'midnight': 1,
          'swim': 1,
          'beautiful': 1,
          'girl': 1,
          'turns': 1,
          'deadly': 1,
          'nright': 1,
          'away': 1,
          'vulnerable': 1,
          'ocean': 1,
          'attacked': 1,
          'relinquishes': 1,
          'grip': 1,
          'nperhaps': 1,
          'builds': 1,
          'works': 1,
          'theatrical': 1,
          'nunlike': 1,
          'many': 1,
          'modern': 1,
          'filmmakers': 1,
          'deal': 1,
          'restraint': 1,
          'refuses': 1,
          'show': 1,
          'middle': 1,
          'nuntil': 1,
          'merely': 1,
          'suggests': 1,
          'presence': 1,
          'creepy': 1,
          'music': 1,
          'building': 1,
          'climax': 1,
          'arrival': 1,
          'truly': 1,
          'let': 1,
          'get': 1,
          'bored': 1,
          'imagery': 1,
          'chief': 1,
          'martin': 1,
          'roy': 1,
          'scheider': 1,
          'york': 1,
          'cop': 1,
          'taken': 1,
          'easy': 1,
          'peaceful': 1,
          'job': 1,
          'running': 1,
          'station': 1,
          'amity': 1,
          'fictitious': 1,
          'england': 1,
          'resort': 1,
          'hasnt': 1,
          'murder': 1,
          'gun': 1,
          'fired': 1,
          '25': 1,
          'years': 1,
          'shaken': 1,
          'vicious': 1,
          'white': 1,
          'attacks': 1,
          'fourth': 1,
          'july': 1,
          'larry': 1,
          'murray': 1,
          'hamilton': 1,
          'want': 1,
          'shut': 1,
          'beaches': 1,
          'reliant': 1,
          'tourist': 1,
          'nbrody': 1,
          'joined': 1,
          'matt': 1,
          'richard': 1,
          'young': 1,
          'ambitious': 1,
          'expert': 1,
          'marine': 1,
          'institute': 1,
          'nhooper': 1,
          'fascinated': 1,
          'determined': 1,
          'help': 1,
          'stop': 1,
          'knowledge': 1,
          'exact': 1,
          'workings': 1,
          'engine': 1,
          'eating': 1,
          'machine': 1,
          'make': 1,
          'much': 1,
          'nwhen': 1,
          'finally': 1,
          'relents': 1,
          'join': 1,
          'crusty': 1,
          'killer': 1,
          'named': 1,
          'decrepit': 1,
          'boat': 1,
          'search': 1,
          'takes': 1,
          'place': 1,
          'three': 1,
          'hunt': 1,
          'inevitably': 1,
          'hunted': 1,
          'thriller': 1,
          'keen': 1,
          'humor': 1,
          'incredible': 1,
          'horror': 1,
          'nit': 1,
          'ten': 1,
          'rolled': 1,
          'wonder': 1,
          'took': 1,
          'america': 1,
          'storm': 1,
          'enough': 1,
          'crown': 1,
          'box': 1,
          'office': 1,
          'champ': 1,
          'unceremoniously': 1,
          'dethroned': 1,
          '1977': 1,
          'star': 1,
          'wars': 1,
          'neven': 1,
          'today': 1,
          'fascination': 1,
          'par': 1,
          'hitchcocks': 1,
          'psycho': 1,
          'seems': 1,
          'age': 1,
          'nalthough': 1,
          'grand': 1,
          'technology': 1,
          'exists': 1,
          'sequences': 1,
          'including': 1,
          'obsolete': 1,
          'could': 1,
          'improve': 1,
          'would': 1,
          'lead': 1,
          'overkill': 1,
          'limitations': 1,
          'faced': 1,
          'may': 1,
          'produced': 1,
          'better': 1,
          'forced': 1,
          'rely': 1,
          'traditional': 1,
          'cinematic': 1,
          'elements': 1,
          'characterization': 1,
          'sharp': 1,
          'editing': 1,
          'creative': 1,
          'photography': 1,
          'instead': 1,
          'simply': 1,
          'dousing': 1,
          'audience': 1,
          'digital': 1,
          'effects': 1,
          'known': 1,
          'actors': 1,
          'made': 1,
          'draw': 1,
          'redford': 1,
          'paul': 1,
          'newman': 1,
          'nnevertheless': 1,
          'guaranteed': 1,
          'successful': 1,
          'careers': 1,
          'gave': 1,
          'refused': 1,
          'overshadowed': 1,
          'hits': 1,
          'notes': 1,
          'sympathetic': 1,
          'husband': 1,
          'father': 1,
          'caught': 1,
          'political': 1,
          'quagmire': 1,
          'whats': 1,
          'going': 1,
          'warns': 1,
          'ndreyfuss': 1,
          'previously': 1,
          'seen': 1,
          'american': 1,
          'graffiti': 1,
          '1973': 1,
          'apprenticeship': 1,
          'duddy': 1,
          'kravitz': 1,
          '1974': 1,
          'gives': 1,
          'surprisingly': 1,
          'mature': 1,
          'complex': 1,
          'someone': 1,
          'literally': 1,
          'played': 1,
          'kids': 1,
          'teenagers': 1,
          'gnarled': 1,
          'captain': 1,
          'ahab': 1,
          'sorely': 1,
          'overlooked': 1,
          'academy': 1,
          'awards': 1,
          'nbordering': 1,
          'parody': 1,
          'plays': 1,
          'grizzled': 1,
          'loner': 1,
          'whose': 1,
          'machismo': 1,
          'borders': 1,
          'masochism': 1,
          'slightly': 1,
          'deranged': 1,
          'shaws': 1,
          'almost': 1,
          'caricature': 1,
          'scene': 1,
          'late': 1,
          'deck': 1,
          'comparing': 1,
          'scars': 1,
          'nquint': 1,
          'drawn': 1,
          'telling': 1,
          'experiences': 1,
          'aboard': 1,
          'u': 1,
          'nindianapolis': 1,
          'navy': 1,
          'ship': 1,
          'world': 1,
          'war': 1,
          'ii': 1,
          'sunk': 1,
          'japanese': 1,
          'nhis': 1,
          'tale': 1,
          'week': 1,
          '1': 1,
          '000': 1,
          'swarms': 1,
          'slowly': 1,
          'devoured': 1,
          'hairraising': 1,
          'anything': 1,
          'put': 1,
          'nshaw': 1,
          'delivers': 1,
          'long': 1,
          'take': 1,
          'best': 1,
          'acting': 1,
          'nof': 1,
          'course': 1,
          'cant': 1,
          'leave': 1,
          'black': 1,
          'eyes': 1,
          'endless': 1,
          'rows': 1,
          'teeth': 1,
          'insatiable': 1,
          'urge': 1,
          'eat': 1,
          'basically': 1,
          'epitome': 1,
          'mankinds': 1,
          'fears': 1,
          'unknown': 1,
          'threatening': 1,
          'nature': 1,
          'na': 1,
          'nemesis': 1,
          'real': 1,
          'survived': 1,
          'sinch': 1,
          'dinosaurs': 1,
          'whites': 1,
          'exist': 1,
          'large': 1,
          'threat': 1,
          'nevery': 1,
          'spielbergs': 1,
          'feel': 1,
          'queasy': 1,
          'look': 1,
          'bunch': 1,
          'writihing': 1,
          'dangling': 1,
          'completely': 1,
          'unprotected': 1,
          'legs': 1,
          'ready': 1,
          'chomped': 1,
          'combination': 1,
          'actual': 1,
          'footage': 1,
          'five': 1,
          'nicknamed': 1,
          'bruce': 1,
          'crew': 1,
          'built': 1,
          'shot': 1,
          'angles': 1,
          'nmany': 1,
          'forgotten': 1,
          'sort': 1,
          'precursor': 1,
          'waterworld': 1,
          '1995': 1,
          'soggy': 1,
          'cost': 1,
          'overruns': 1,
          'universal': 1,
          'studios': 1,
          'worried': 1,
          'bomb': 1,
          'nbut': 1,
          'overcame': 1,
          'obstacles': 1,
          'delivered': 1,
          'finest': 1,
          'primal': 1,
          'scarethrillers': 1,
          'ever': 1,
          'come': 1,
          'hollywood': 1,
          'npos': 1}),
 Counter({'like': 9,
          'jackie': 8,
          'chan': 7,
          'youve': 4,
          'got': 4,
          'one': 4,
          'money': 4,
          'sanders': 4,
          'condor': 4,
          'movie': 4,
          'nin': 3,
          'doesnt': 3,
          'nthis': 3,
          'nazi': 3,
          'secret': 3,
          'base': 3,
          'moviemaking': 2,
          'nfl': 2,
          'dollar': 2,
          'spent': 2,
          'defensive': 2,
          'less': 2,
          'lions': 2,
          'running': 2,
          'back': 2,
          'huge': 2,
          'block': 2,
          'movies': 2,
          'films': 2,
          'enough': 2,
          'njackie': 2,
          'nhe': 2,
          'across': 2,
          'motorcycle': 2,
          'except': 2,
          'worry': 2,
          'thats': 2,
          'goes': 2,
          'stunts': 2,
          'pay': 2,
          'things': 2,
          'sequence': 2,
          'chase': 2,
          'even': 2,
          'hes': 2,
          'kungfu': 2,
          'lost': 2,
          'desert': 2,
          'two': 2,
          'legs': 2,
          'broken': 2,
          'fight': 2,
          'exactly': 2,
          'go': 2,
          'raiders': 2,
          'could': 2,
          'lot': 1,
          'general': 1,
          'manager': 1,
          'team': 1,
          'postsalary': 1,
          'cap': 1,
          'era': 1,
          'know': 1,
          'allocate': 1,
          'resources': 1,
          'nevery': 1,
          'freeagent': 1,
          'tackle': 1,
          'spend': 1,
          'linebackers': 1,
          'safeties': 1,
          'centers': 1,
          'leads': 1,
          'teams': 1,
          'detroit': 1,
          'boast': 1,
          'superstar': 1,
          'contract': 1,
          'field': 1,
          'five': 1,
          'guys': 1,
          'named': 1,
          'herb': 1,
          'end': 1,
          'spawn': 1,
          'specialeffects': 1,
          'budget': 1,
          'hire': 1,
          'recognizable': 1,
          'actors': 1,
          'barry': 1,
          'spins': 1,
          'darts': 1,
          'screen': 1,
          'cutting': 1,
          'line': 1,
          'nwatching': 1,
          'operation': 1,
          'drives': 1,
          'crowded': 1,
          'streets': 1,
          'madrid': 1,
          'fleeing': 1,
          'armada': 1,
          'pursuers': 1,
          'identical': 1,
          'black': 1,
          'compact': 1,
          'cars': 1,
          'reminiscent': 1,
          'daylight': 1,
          'chicago': 1,
          'bears': 1,
          'hot': 1,
          'pursuit': 1,
          'rescuing': 1,
          'runaway': 1,
          'baby': 1,
          'carriages': 1,
          'nbut': 1,
          'star': 1,
          'anybody': 1,
          'nalmost': 1,
          'every': 1,
          'cent': 1,
          'invested': 1,
          'rest': 1,
          'hospital': 1,
          'bills': 1,
          'leaves': 1,
          '75': 1,
          'cents': 1,
          'directors': 1,
          'directs': 1,
          'scripts': 1,
          'dubbing': 1,
          'supporting': 1,
          'characters': 1,
          'mention': 1,
          'hideous': 1,
          'title': 1,
          'also': 1,
          'explains': 1,
          'shot': 1,
          'odd': 1,
          'places': 1,
          'morocco': 1,
          'spain': 1,
          'n': 1,
          'chans': 1,
          'first': 1,
          'release': 1,
          'country': 1,
          'rumble': 1,
          'bronx': 1,
          'supposedly': 1,
          'set': 1,
          'new': 1,
          'york': 1,
          'filmed': 1,
          'vancouver': 1,
          'scenes': 1,
          'canadian': 1,
          'rockies': 1,
          'clearly': 1,
          'visible': 1,
          'nheck': 1,
          'haircut': 1,
          'looks': 1,
          'much': 1,
          'personal': 1,
          'hairstylist': 1,
          'plays': 1,
          'character': 1,
          'always': 1,
          'played': 1,
          'mixture': 1,
          'bruce': 1,
          'lee': 1,
          'tim': 1,
          'allen': 1,
          'master': 1,
          'slapstickfu': 1,
          'sent': 1,
          'un': 1,
          'retrieve': 1,
          'cache': 1,
          'gold': 1,
          'north': 1,
          'african': 1,
          'chased': 1,
          'horde': 1,
          'neonazi': 1,
          'sympathizers': 1,
          'stereotypical': 1,
          'arabs': 1,
          'political': 1,
          'correctness': 1,
          'joined': 1,
          'three': 1,
          'women': 1,
          'little': 1,
          'scream': 1,
          'save': 1,
          'us': 1,
          'misuse': 1,
          'firearms': 1,
          'nthe': 1,
          'villain': 1,
          'old': 1,
          'whose': 1,
          'carried': 1,
          'everywhere': 1,
          'pathetic': 1,
          'evil': 1,
          'nen': 1,
          'route': 1,
          'extended': 1,
          'scene': 1,
          'hilarious': 1,
          'moroccan': 1,
          'version': 1,
          'motel': 1,
          '6': 1,
          'neonazis': 1,
          'confrontations': 1,
          'savage': 1,
          'natives': 1,
          'nonce': 1,
          'long': 1,
          'chopsocky': 1,
          'followed': 1,
          'centerpiece': 1,
          'windtunnel': 1,
          'better': 1,
          'faceoff': 1,
          'wellchoreographed': 1,
          'sequences': 1,
          'giant': 1,
          'kevlar': 1,
          'hamster': 1,
          'balls': 1,
          'smashedup': 1,
          'crates': 1,
          'bananas': 1,
          'scorpions': 1,
          'nignore': 1,
          'gaping': 1,
          'holes': 1,
          'plot': 1,
          'villains': 1,
          'escape': 1,
          'didnt': 1,
          'take': 1,
          'key': 1,
          'ndont': 1,
          'production': 1,
          'values': 1,
          'japanese': 1,
          'girl': 1,
          'hitchhiking': 1,
          'sahara': 1,
          'njust': 1,
          'see': 1,
          'noperation': 1,
          'pretentions': 1,
          'ark': 1,
          'knockoff': 1,
          'wonders': 1,
          'franchise': 1,
          'blocking': 1,
          'lawrence': 1,
          'kazdan': 1,
          'screenplay': 1,
          'john': 1,
          'williams': 1,
          'score': 1,
          'spielberg': 1,
          'directing': 1,
          'george': 1,
          'lucas': 1,
          'producing': 1,
          'might': 1,
          'nhowever': 1,
          'something': 1,
          'special': 1,
          'talent': 1,
          'mainstream': 1,
          'hollywood': 1,
          'ought': 1,
          'utilize': 1,
          'npos': 1}),
 Counter({'lumumba': 10,
          'nthe': 9,
          'story': 7,
          'man': 4,
          'patrice': 4,
          'life': 4,
          'first': 3,
          'government': 3,
          'african': 3,
          'belgian': 3,
          'told': 3,
          'peck': 3,
          'new': 3,
          'political': 3,
          'time': 3,
          'world': 3,
          'independence': 3,
          'nations': 3,
          'country': 3,
          'history': 3,
          'side': 3,
          'good': 3,
          'young': 2,
          'congo': 2,
          'months': 2,
          'powerful': 2,
          'position': 2,
          'troops': 2,
          'two': 2,
          'nthis': 2,
          'fall': 2,
          'lumumbas': 2,
          'eriq': 2,
          'ebouaney': 2,
          'death': 2,
          'true': 2,
          'npeck': 2,
          'pascal': 2,
          'leader': 2,
          'men': 2,
          'black': 2,
          'national': 2,
          'nhis': 2,
          'small': 2,
          'mnc': 2,
          'known': 2,
          'colonial': 2,
          'right': 2,
          'place': 2,
          'leadership': 2,
          'minister': 2,
          'supporting': 2,
          'masters': 2,
          'struggling': 2,
          'strive': 2,
          'us': 2,
          'period': 2,
          'give': 2,
          'honest': 2,
          'n': 2,
          'feel': 2,
          'nit': 2,
          'family': 2,
          'docudrama': 2,
          'june': 1,
          '30': 1,
          '1960': 1,
          'selftaught': 1,
          'idealistic': 1,
          'yet': 1,
          'pragmatic': 1,
          'became': 1,
          'age': 1,
          '36': 1,
          'head': 1,
          'newly': 1,
          'independent': 1,
          'state': 1,
          'formerly': 1,
          'ntwo': 1,
          'later': 1,
          'ousted': 1,
          'hunted': 1,
          'captured': 1,
          'brutally': 1,
          'murdered': 1,
          'along': 1,
          'aides': 1,
          'littleknown': 1,
          'meteoric': 1,
          'rise': 1,
          'international': 1,
          'filmmaker': 1,
          'raoul': 1,
          'npatrice': 1,
          'previously': 1,
          'helmer': 1,
          '1991': 1,
          'award': 1,
          'winning': 1,
          'documentary': 1,
          'prophet': 1,
          'virtually': 1,
          'guaranteeing': 1,
          'fictional': 1,
          'account': 1,
          'patriot': 1,
          'remains': 1,
          'subject': 1,
          'cowriter': 1,
          'bonitzer': 1,
          'begins': 1,
          'end': 1,
          'nwe': 1,
          'watch': 1,
          'white': 1,
          'perform': 1,
          'gruesome': 1,
          'task': 1,
          'dismembering': 1,
          'bodies': 1,
          'three': 1,
          'nimages': 1,
          'hatchets': 1,
          'saws': 1,
          'fastemptying': 1,
          'whiskey': 1,
          'bottles': 1,
          'accompany': 1,
          'grisly': 1,
          'image': 1,
          'njump': 1,
          'back': 1,
          'years': 1,
          'meeting': 1,
          'among': 1,
          'leaders': 1,
          'belgianowned': 1,
          'na': 1,
          'third': 1,
          'class': 1,
          'postal': 1,
          'worker': 1,
          'speaks': 1,
          'mind': 1,
          'heads': 1,
          'tribes': 1,
          'proclaiming': 1,
          'tribal': 1,
          'regional': 1,
          'mobile': 1,
          'party': 1,
          'congolese': 1,
          'movement': 1,
          'gaining': 1,
          'prominence': 1,
          'leaves': 1,
          'clerical': 1,
          'job': 1,
          'sell': 1,
          'beer': 1,
          'get': 1,
          'face': 1,
          'bustling': 1,
          'capital': 1,
          'stanleyville': 1,
          'nat': 1,
          'empires': 1,
          'falling': 1,
          'around': 1,
          'savvy': 1,
          'chesslike': 1,
          'manipulation': 1,
          'achieves': 1,
          'nas': 1,
          'date': 1,
          'approaches': 1,
          'tactically': 1,
          'positions': 1,
          'prime': 1,
          'defense': 1,
          'presidency': 1,
          'joseph': 1,
          'kasa': 1,
          'vubu': 1,
          'maka': 1,
          'kotto': 1,
          'coalition': 1,
          'created': 1,
          'soon': 1,
          'starts': 1,
          'apart': 1,
          'former': 1,
          'continue': 1,
          'exert': 1,
          'influence': 1,
          'nation': 1,
          'maintain': 1,
          'economic': 1,
          'hold': 1,
          'countrys': 1,
          'vast': 1,
          'natural': 1,
          'resources': 1,
          'copper': 1,
          'diamonds': 1,
          'gold': 1,
          'nlumumba': 1,
          'wont': 1,
          'seek': 1,
          'help': 1,
          'knowing': 1,
          'would': 1,
          'try': 1,
          'create': 1,
          'de': 1,
          'facto': 1,
          'american': 1,
          'control': 1,
          'fledgling': 1,
          'initial': 1,
          'investigation': 1,
          'soviet': 1,
          'assistance': 1,
          'immediately': 1,
          'tags': 1,
          'communist': 1,
          'integrity': 1,
          'overshadowed': 1,
          'cold': 1,
          'war': 1,
          'threat': 1,
          'russian': 1,
          'domination': 1,
          'situation': 1,
          'goes': 1,
          'bad': 1,
          'worse': 1,
          'army': 1,
          'mutinies': 1,
          'remaining': 1,
          'whites': 1,
          'begin': 1,
          'evacuate': 1,
          'arm': 1,
          'violently': 1,
          'intervene': 1,
          'lucrative': 1,
          'katanga': 1,
          'province': 1,
          'succeeds': 1,
          'rival': 1,
          'moise': 1,
          'tschombe': 1,
          'nzonzi': 1,
          'refused': 1,
          'access': 1,
          'returns': 1,
          'conference': 1,
          'abroad': 1,
          'tumultuous': 1,
          'little': 1,
          'modern': 1,
          'saw': 1,
          'score': 1,
          'sometimesodious': 1,
          'colonialists': 1,
          'ruled': 1,
          'much': 1,
          'european': 1,
          'seats': 1,
          'power': 1,
          'centuries': 1,
          'focuses': 1,
          'familiar': 1,
          'material': 1,
          'strives': 1,
          'portrayal': 1,
          'friend': 1,
          'foes': 1,
          'movements': 1,
          'gripped': 1,
          'africa': 1,
          '50s': 1,
          '60s': 1,
          'takes': 1,
          'many': 1,
          'including': 1,
          'nigeria': 1,
          'somalia': 1,
          'born': 1,
          'varying': 1,
          'degrees': 1,
          'success': 1,
          'failure': 1,
          'usually': 1,
          'dependent': 1,
          'upon': 1,
          'colonized': 1,
          'nsome': 1,
          'better': 1,
          'others': 1,
          'effort': 1,
          'involved': 1,
          'quite': 1,
          'ambitious': 1,
          'crew': 1,
          'behind': 1,
          'camera': 1,
          'bring': 1,
          'slice': 1,
          'might': 1,
          'gone': 1,
          'unexplored': 1,
          'decades': 1,
          'nproduction': 1,
          'values': 1,
          'rate': 1,
          'must': 1,
          'standards': 1,
          'budget': 1,
          'realistic': 1,
          'settings': 1,
          'nicely': 1,
          'maintained': 1,
          'production': 1,
          'traveled': 1,
          'zimbabwe': 1,
          'mozambique': 1,
          'screenplay': 1,
          'covers': 1,
          'lot': 1,
          'ground': 1,
          'yeomans': 1,
          'work': 1,
          'providing': 1,
          'great': 1,
          'deal': 1,
          'detailed': 1,
          'trying': 1,
          'justice': 1,
          'things': 1,
          'evenly': 1,
          'linear': 1,
          'straightforward': 1,
          'manner': 1,
          'teaches': 1,
          'preaches': 1,
          'concentrates': 1,
          'deeds': 1,
          'bit': 1,
          'stalwart': 1,
          'saint': 1,
          'doesnt': 1,
          'embellish': 1,
          'larger': 1,
          'persona': 1,
          'patrices': 1,
          'handled': 1,
          'several': 1,
          'perfunctory': 1,
          'brief': 1,
          'interludes': 1,
          'show': 1,
          'talking': 1,
          'one': 1,
          'children': 1,
          'embracing': 1,
          'wife': 1,
          'lamenting': 1,
          'child': 1,
          'ni': 1,
          'know': 1,
          'intent': 1,
          'flesh': 1,
          'short': 1,
          'shrift': 1,
          'given': 1,
          'lopsided': 1,
          'nhigh': 1,
          'marks': 1,
          'go': 1,
          'title': 1,
          'character': 1,
          'actor': 1,
          'gives': 1,
          'convincing': 1,
          'charismatic': 1,
          'performance': 1,
          'multifaceted': 1,
          'politically': 1,
          'deft': 1,
          'people': 1,
          'force': 1,
          'driving': 1,
          'ambitions': 1,
          'nin': 1,
          'tradition': 1,
          'cast': 1,
          'outshine': 1,
          'star': 1,
          'complementing': 1,
          'efforts': 1,
          'instead': 1,
          'solid': 1,
          'interesting': 1,
          'educational': 1,
          'appeal': 1,
          'film': 1,
          'buffs': 1,
          'politicos': 1,
          'intelligence': 1,
          'telling': 1,
          'anything': 1,
          'ive': 1,
          'seen': 1,
          'hollywood': 1,
          'b': 1,
          'npos': 1}),
 Counter({'film': 11,
          'derek': 7,
          'american': 6,
          'history': 6,
          'x': 6,
          'kaye': 5,
          'nits': 5,
          'way': 5,
          'hes': 5,
          'racism': 4,
          'norton': 4,
          'skinhead': 4,
          'brother': 4,
          'danny': 4,
          'tony': 3,
          'makes': 3,
          'hard': 3,
          'two': 3,
          'becomes': 3,
          'character': 3,
          'nthe': 3,
          'men': 3,
          'interesting': 3,
          'people': 3,
          'make': 3,
          'lot': 3,
          'director': 2,
          'new': 2,
          'final': 2,
          'wonder': 2,
          'found': 2,
          'good': 2,
          'look': 2,
          'powerful': 2,
          'edward': 2,
          'years': 2,
          'role': 2,
          'one': 2,
          'work': 2,
          'performances': 2,
          'young': 2,
          'man': 2,
          'furlong': 2,
          'dangelo': 2,
          'lien': 2,
          'flashback': 2,
          'black': 2,
          'prison': 2,
          'point': 2,
          'nin': 2,
          'school': 2,
          'violence': 2,
          'nwhat': 2,
          'beliefs': 2,
          'movie': 2,
          'right': 2,
          'partially': 2,
          'smart': 2,
          'killed': 2,
          'depth': 2,
          'story': 2,
          'like': 2,
          'movies': 2,
          'last': 2,
          'scene': 2,
          'apparently': 1,
          'major': 1,
          'battle': 1,
          'line': 1,
          'regarding': 1,
          'dont': 1,
          'know': 1,
          'details': 1,
          'fight': 1,
          'seems': 1,
          'happy': 1,
          'product': 1,
          'nearly': 1,
          'removed': 1,
          'name': 1,
          'credits': 1,
          'altogether': 1,
          'nive': 1,
          'heard': 1,
          'kind': 1,
          'thing': 1,
          'happening': 1,
          'much': 1,
          'input': 1,
          'studio': 1,
          'films': 1,
          'produce': 1,
          'nas': 1,
          'extremely': 1,
          'kayes': 1,
          'focused': 1,
          'touchy': 1,
          'subject': 1,
          'charismatic': 1,
          'performance': 1,
          'believe': 1,
          'since': 1,
          'nortons': 1,
          'fantastic': 1,
          'primal': 1,
          'fear': 1,
          'starring': 1,
          'making': 1,
          'star': 1,
          'nnorton': 1,
          'performers': 1,
          'best': 1,
          'year': 1,
          'nhe': 1,
          'plays': 1,
          'named': 1,
          'vinyard': 1,
          'living': 1,
          'venice': 1,
          'beach': 1,
          'mother': 1,
          'beverly': 1,
          'sister': 1,
          'davin': 1,
          'jennifer': 1,
          'opens': 1,
          'brutally': 1,
          'kills': 1,
          'vandalizing': 1,
          'car': 1,
          'nwe': 1,
          'find': 1,
          'lands': 1,
          'seen': 1,
          'eyes': 1,
          'presenttime': 1,
          'high': 1,
          'eager': 1,
          'follow': 1,
          'footsteps': 1,
          'nmuch': 1,
          'told': 1,
          'see': 1,
          'path': 1,
          'leads': 1,
          'dereks': 1,
          'adoption': 1,
          'white': 1,
          'supremacy': 1,
          'nwhen': 1,
          'released': 1,
          'served': 1,
          'three': 1,
          'finds': 1,
          'fullblown': 1,
          'however': 1,
          'given': 1,
          'tries': 1,
          'get': 1,
          'understand': 1,
          'comes': 1,
          'bad': 1,
          'things': 1,
          'stupid': 1,
          'thoughtless': 1,
          'intelligent': 1,
          'articulate': 1,
          'voice': 1,
          'disturbingly': 1,
          'straightforward': 1,
          'terms': 1,
          'controversial': 1,
          'preach': 1,
          'note': 1,
          'material': 1,
          'nbecause': 1,
          'mainstream': 1,
          'redemption': 1,
          'phase': 1,
          'main': 1,
          'may': 1,
          'think': 1,
          'sympathetic': 1,
          'ni': 1,
          'disagree': 1,
          'although': 1,
          'advocate': 1,
          'presents': 1,
          'loud': 1,
          'obnoxious': 1,
          'also': 1,
          'reasons': 1,
          'believable': 1,
          'father': 1,
          'arbitrarily': 1,
          'group': 1,
          'clear': 1,
          'passionate': 1,
          'punk': 1,
          'looking': 1,
          'excuse': 1,
          'beat': 1,
          'nof': 1,
          'course': 1,
          'helps': 1,
          'actor': 1,
          'talented': 1,
          'play': 1,
          'part': 1,
          'astonishing': 1,
          'frightening': 1,
          'looks': 1,
          'shaved': 1,
          'head': 1,
          'swastika': 1,
          'chest': 1,
          'addition': 1,
          'getting': 1,
          'perfect': 1,
          'requires': 1,
          'intelligence': 1,
          'whole': 1,
          'shouting': 1,
          'ease': 1,
          'neven': 1,
          'meanest': 1,
          'likable': 1,
          'quality': 1,
          'thats': 1,
          'gutsy': 1,
          'approach': 1,
          'telling': 1,
          'adds': 1,
          'subplot': 1,
          'principal': 1,
          'dannys': 1,
          'avery': 1,
          'brooks': 1,
          'obsessed': 1,
          'purging': 1,
          'hatred': 1,
          'terrific': 1,
          'standouts': 1,
          'nvisually': 1,
          'nkaye': 1,
          'indulges': 1,
          'artistic': 1,
          'choices': 1,
          'nicely': 1,
          'lots': 1,
          'slowmotion': 1,
          'strange': 1,
          'camera': 1,
          'angles': 1,
          'add': 1,
          'moody': 1,
          'atmosphere': 1,
          'nbut': 1,
          'lately': 1,
          'skims': 1,
          'past': 1,
          'greatness': 1,
          'minutes': 1,
          'nalthough': 1,
          'climactic': 1,
          'moving': 1,
          'picture': 1,
          'ends': 1,
          'pretentious': 1,
          'preachy': 1,
          'resolution': 1,
          'featuring': 1,
          'brief': 1,
          'narration': 1,
          'nfor': 1,
          'subtle': 1,
          'felt': 1,
          'slap': 1,
          'face': 1,
          'handfed': 1,
          'theme': 1,
          'simplistic': 1,
          'nit': 1,
          'exactly': 1,
          'disliked': 1,
          'version': 1,
          'nperhaps': 1,
          'problem': 1,
          'imagine': 1,
          'least': 1,
          'pleased': 1,
          'time': 1,
          'many': 1,
          'timid': 1,
          'weak': 1,
          'manages': 1,
          'compelling': 1,
          'argument': 1,
          'without': 1,
          'advocating': 1,
          'npos': 1}),
 Counter({'alda': 6,
          'wedding': 5,
          'nand': 5,
          'film': 5,
          'one': 4,
          'ringwald': 4,
          'comic': 4,
          'performance': 4,
          'sheedy': 4,
          'betsys': 3,
          'nthe': 3,
          'lapaglia': 3,
          'acting': 3,
          'aldas': 3,
          'molly': 2,
          'humor': 2,
          'nas': 2,
          'characters': 2,
          'far': 2,
          'screen': 2,
          'looks': 2,
          'make': 2,
          'ringwalds': 2,
          'brides': 2,
          'family': 2,
          'father': 2,
          'two': 2,
          'character': 2,
          'however': 2,
          'nlapaglia': 2,
          'de': 2,
          'niro': 2,
          'partly': 2,
          'know': 2,
          'star': 2,
          'colleagues': 1,
          'surprised': 1,
          'told': 1,
          'willing': 1,
          'see': 1,
          'shocked': 1,
          'hear': 1,
          'actually': 1,
          'liked': 1,
          'nher': 1,
          'reaction': 1,
          'understandable': 1,
          'consider': 1,
          'revolves': 1,
          'around': 1,
          'hasnt': 1,
          'made': 1,
          'worthwhile': 1,
          'since': 1,
          '1986': 1,
          'nbut': 1,
          'fact': 1,
          'also': 1,
          'alan': 1,
          'making': 1,
          'duds': 1,
          'last': 1,
          'four': 1,
          'years': 1,
          'involved': 1,
          'several': 1,
          'noteworthy': 1,
          'projects': 1,
          'including': 1,
          'crimes': 1,
          'misdemeanors': 1,
          'new': 1,
          'life': 1,
          'nwritten': 1,
          'directed': 1,
          'vibrant': 1,
          'sliceoflife': 1,
          'mixing': 1,
          'dramatic': 1,
          'moments': 1,
          'big': 1,
          'bowl': 1,
          'whimsical': 1,
          'naldas': 1,
          'elixir': 1,
          'smooth': 1,
          'refreshingand': 1,
          'welcome': 1,
          'change': 1,
          'pace': 1,
          'usual': 1,
          'summer': 1,
          'fare': 1,
          'bride': 1,
          'groom': 1,
          'dylan': 1,
          'walsh': 1,
          'pivotal': 1,
          'least': 1,
          'interesting': 1,
          'nwalsh': 1,
          'nonentity': 1,
          'presence': 1,
          'door': 1,
          'knob': 1,
          'nringwald': 1,
          'simply': 1,
          'unbearable': 1,
          'easily': 1,
          'weakest': 1,
          'link': 1,
          'chain': 1,
          'nshe': 1,
          'hideous': 1,
          'shortcropped': 1,
          'orange': 1,
          'hair': 1,
          'red': 1,
          'lipstick': 1,
          'grotesque': 1,
          'outfits': 1,
          'nshes': 1,
          'supposed': 1,
          'dress': 1,
          'designer': 1,
          'like': 1,
          'clown': 1,
          'matters': 1,
          'worse': 1,
          'matches': 1,
          'appearance': 1,
          'nthankfully': 1,
          'keeps': 1,
          'time': 1,
          'minimum': 1,
          'interested': 1,
          'colorful': 1,
          'periphery': 1,
          'device': 1,
          'bring': 1,
          'together': 1,
          'workingclass': 1,
          'italian': 1,
          'grooms': 1,
          'rich': 1,
          'gentile': 1,
          'nringwalds': 1,
          'folks': 1,
          'homey': 1,
          'downtoearth': 1,
          'freespirited': 1,
          'madeline': 1,
          'kahn': 1,
          'practical': 1,
          'mother': 1,
          'ally': 1,
          'lonely': 1,
          'sister': 1,
          'nwalshs': 1,
          'clan': 1,
          'hand': 1,
          'prim': 1,
          'proper': 1,
          'ostentatious': 1,
          'nwhen': 1,
          'families': 1,
          'meet': 1,
          'mingle': 1,
          'movie': 1,
          'becomes': 1,
          'story': 1,
          'culture': 1,
          'clash': 1,
          'puts': 1,
          'money': 1,
          'versus': 1,
          'values': 1,
          'nally': 1,
          'wonderfully': 1,
          'understated': 1,
          'films': 1,
          'pleasant': 1,
          'surprises': 1,
          'nsheedy': 1,
          'expresses': 1,
          'eyes': 1,
          'entire': 1,
          'body': 1,
          'nits': 1,
          'anthony': 1,
          'seizes': 1,
          'spotlight': 1,
          'plays': 1,
          'stevie': 1,
          'dee': 1,
          'suave': 1,
          'overly': 1,
          'polite': 1,
          'mafioso': 1,
          'formally': 1,
          'courting': 1,
          'oldfashioned': 1,
          'chivalry': 1,
          'nlapaglias': 1,
          'sincere': 1,
          'dimwitted': 1,
          'riot': 1,
          'whats': 1,
          'uncanny': 1,
          'dead': 1,
          'ringer': 1,
          'robert': 1,
          'little': 1,
          'bit': 1,
          'alec': 1,
          'baldwin': 1,
          'thrown': 1,
          'good': 1,
          'measure': 1,
          'seems': 1,
          'attended': 1,
          'school': 1,
          'gangster': 1,
          'inspired': 1,
          'tribute': 1,
          'rolemodel': 1,
          'ripoff': 1,
          'ni': 1,
          'dont': 1,
          'whether': 1,
          'say': 1,
          'born': 1,
          'reborn': 1,
          'lapaglias': 1,
          'overthetop': 1,
          'missed': 1,
          'scrumptious': 1,
          'extends': 1,
          'well': 1,
          'beyond': 1,
          'njoe': 1,
          'pesci': 1,
          'particular': 1,
          'sinks': 1,
          'teeth': 1,
          'role': 1,
          'unscrupulous': 1,
          'brotherinlaw': 1,
          'slum': 1,
          'lord': 1,
          'mob': 1,
          'ties': 1,
          'cheating': 1,
          'wife': 1,
          'catherine': 1,
          'ohara': 1,
          'nalda': 1,
          'faced': 1,
          'challenge': 1,
          'directing': 1,
          'somehow': 1,
          'finds': 1,
          'right': 1,
          'touch': 1,
          'financiallystrapped': 1,
          'carpenter': 1,
          'whose': 1,
          'dreams': 1,
          'bigger': 1,
          'wallet': 1,
          'adopts': 1,
          'psychological': 1,
          'point': 1,
          'view': 1,
          'tries': 1,
          'plan': 1,
          'pay': 1,
          'filmmaker': 1,
          'style': 1,
          'remarkably': 1,
          'restrained': 1,
          'tasteful': 1,
          'doesnt': 1,
          'genius': 1,
          'woody': 1,
          'allen': 1,
          'possess': 1,
          'inspiration': 1,
          'movies': 1,
          'ten': 1,
          'times': 1,
          'entertaining': 1,
          'slop': 1,
          'usually': 1,
          'passes': 1,
          'comedy': 1,
          'npos': 1}),
 Counter({'lumumba': 5,
          'npecks': 3,
          'particularly': 2,
          'janssens': 2,
          'life': 2,
          'like': 2,
          'ebouaney': 2,
          'bloody': 1,
          'clashes': 1,
          'independence': 1,
          'refused': 1,
          'pander': 1,
          'belgians': 1,
          'continued': 1,
          'condescending': 1,
          'paternalistic': 1,
          'relationship': 1,
          'congo': 1,
          'ntheir': 1,
          'officers': 1,
          'general': 1,
          'rudi': 1,
          'delhem': 1,
          'force': 1,
          'publique': 1,
          'congos': 1,
          'army': 1,
          'caused': 1,
          'rebellions': 1,
          'undermining': 1,
          'outraged': 1,
          'rape': 1,
          'murder': 1,
          'belgian': 1,
          'nationals': 1,
          'nwith': 1,
          'unrest': 1,
          'building': 1,
          'moise': 1,
          'tshombe': 1,
          'pascal': 1,
          'nzonzi': 1,
          'province': 1,
          'katanga': 1,
          'contained': 1,
          '70': 1,
          'percent': 1,
          'countrys': 1,
          'resources': 1,
          'proclaimed': 1,
          'secession': 1,
          'nlumumba': 1,
          'replaced': 1,
          'making': 1,
          'mobutu': 1,
          'colonel': 1,
          'went': 1,
          'pacification': 1,
          'ntour': 1,
          'congolese': 1,
          'president': 1,
          'joseph': 1,
          'kasa': 1,
          'vubu': 1,
          'maka': 1,
          'kotto': 1,
          'late': 1,
          'nwhen': 1,
          'want': 1,
          'drown': 1,
          'dog': 1,
          'say': 1,
          'rabies': 1,
          'prophesies': 1,
          'fate': 1,
          'npeck': 1,
          'bonitzer': 1,
          'exemplary': 1,
          'job': 1,
          'telling': 1,
          'complicated': 1,
          'tale': 1,
          'myriad': 1,
          'players': 1,
          'although': 1,
          'frequently': 1,
          'succumb': 1,
          'cliche': 1,
          'regarding': 1,
          'lumumbas': 1,
          'private': 1,
          'script': 1,
          'illuminates': 1,
          'bantu': 1,
          'sayings': 1,
          'hand': 1,
          'gives': 1,
          'rules': 1,
          'uses': 1,
          'american': 1,
          'ambassador': 1,
          'direction': 1,
          'less': 1,
          'assured': 1,
          'many': 1,
          'scenes': 1,
          'unfortunately': 1,
          'playing': 1,
          'standard': 1,
          'television': 1,
          'fare': 1,
          'nhes': 1,
          'served': 1,
          'well': 1,
          'though': 1,
          'casting': 1,
          'title': 1,
          'role': 1,
          'nebouaney': 1,
          'dynamic': 1,
          'radiating': 1,
          'characters': 1,
          'fierce': 1,
          'passion': 1,
          'people': 1,
          'country': 1,
          'nlumumbas': 1,
          'intelligence': 1,
          'ability': 1,
          'strategize': 1,
          'even': 1,
          'hes': 1,
          'cornered': 1,
          'insurmountable': 1,
          'odds': 1,
          'given': 1,
          'subject': 1,
          'lead': 1,
          'actor': 1,
          'elevate': 1,
          'film': 1,
          'mediocre': 1,
          'production': 1,
          'n': 1,
          'story': 1,
          'deserves': 1,
          'told': 1,
          'ebouaneys': 1,
          'performance': 1,
          'makes': 1,
          'tragedy': 1,
          'personally': 1,
          'felt': 1,
          'npos': 1}),
 Counter({'monkey': 8,
          'kung': 6,
          'fu': 6,
          'film': 5,
          'iron': 5,
          'drunken': 5,
          'master': 5,
          'action': 4,
          '2': 4,
          'asian': 3,
          'nbut': 3,
          'chinese': 3,
          'niron': 3,
          'wong': 3,
          'feihong': 3,
          'death': 2,
          'sea': 2,
          'stunt': 2,
          'matrix': 2,
          'floating': 2,
          'nin': 2,
          'fighting': 2,
          'hero': 2,
          'films': 2,
          'like': 2,
          'crouching': 2,
          'tiger': 2,
          'moments': 2,
          'american': 1,
          'slowly': 1,
          'drowning': 1,
          'wirefu': 1,
          'copycats': 1,
          'nits': 1,
          'pretty': 1,
          'leaving': 1,
          'likes': 1,
          'schwartznager': 1,
          'stallone': 1,
          'van': 1,
          'damme': 1,
          'wearing': 1,
          'cement': 1,
          'galoshes': 1,
          'bottom': 1,
          'nsometimes': 1,
          'mix': 1,
          'results': 1,
          'mindblowing': 1,
          'spectacle': 1,
          'unlike': 1,
          'nquality': 1,
          'amazing': 1,
          'exciting': 1,
          'work': 1,
          '1999s': 1,
          'real': 1,
          'gem': 1,
          'often': 1,
          'hollywood': 1,
          'gets': 1,
          'wrong': 1,
          'even': 1,
          'pay': 1,
          'directors': 1,
          'nflying': 1,
          'ninjas': 1,
          'karate': 1,
          'masters': 1,
          'replaced': 1,
          'soaring': 1,
          'bronx': 1,
          'detectives': 1,
          'slow': 1,
          'motion': 1,
          'kicking': 1,
          'scientists': 1,
          'nmostly': 1,
          'laughable': 1,
          'hollywoods': 1,
          'rush': 1,
          'emulate': 1,
          'success': 1,
          'trademark': 1,
          'choreography': 1,
          'become': 1,
          'joke': 1,
          'art': 1,
          'form': 1,
          'latest': 1,
          'import': 1,
          'shows': 1,
          'us': 1,
          'get': 1,
          'right': 1,
          'actually': 1,
          'reissue': 1,
          '1993': 1,
          'story': 1,
          '19th': 1,
          'vigilante': 1,
          'rongguang': 1,
          'yu': 1,
          'unique': 1,
          'style': 1,
          'shaolin': 1,
          'rights': 1,
          'oppressed': 1,
          'bellies': 1,
          'hungry': 1,
          'also': 1,
          'piece': 1,
          'narrative': 1,
          'legendary': 1,
          'recently': 1,
          'seen': 1,
          'one': 1,
          'overlooked': 1,
          'possibly': 1,
          'best': 1,
          '2000': 1,
          'released': 1,
          'u': 1,
          'legend': 1,
          'nunlike': 1,
          'stars': 1,
          'jackie': 1,
          'chan': 1,
          'adult': 1,
          'finds': 1,
          'much': 1,
          'younger': 1,
          'szeman': 1,
          'tsang': 1,
          'father': 1,
          'keiying': 1,
          'yen': 1,
          'chi': 1,
          'dan': 1,
          'thrust': 1,
          'middle': 1,
          'monkeys': 1,
          'fight': 1,
          'oppression': 1,
          'succeeds': 1,
          'since': 1,
          'times': 1,
          'styles': 1,
          'especially': 1,
          'devolve': 1,
          'ridiculous': 1,
          'twinkletoed': 1,
          'hidden': 1,
          'dragon': 1,
          'director': 1,
          'yuen': 1,
          'wo': 1,
          'ping': 1,
          'eventually': 1,
          'remembers': 1,
          'bring': 1,
          'scenes': 1,
          'back': 1,
          'earth': 1,
          'heart': 1,
          'hardcore': 1,
          'rather': 1,
          'kind': 1,
          'drama': 1,
          'la': 1,
          'nhowever': 1,
          'brief': 1,
          'profoundness': 1,
          'shared': 1,
          'characters': 1,
          'pass': 1,
          'outlaw': 1,
          'goodhearted': 1,
          'misguided': 1,
          'enemy': 1,
          'chief': 1,
          'fox': 1,
          'others': 1,
          'manages': 1,
          'transcend': 1,
          'mindless': 1,
          'nature': 1,
          'touch': 1,
          'hearts': 1,
          'minds': 1,
          'audience': 1,
          'nwhile': 1,
          'way': 1,
          'equal': 1,
          'masterpiece': 1,
          'dances': 1,
          'quite': 1,
          'nicely': 1,
          'invading': 1,
          'tune': 1,
          'naka': 1,
          'siunin': 1,
          'feihung': 1,
          'tsi': 1,
          'titmalau': 1,
          'npos': 1}),
 Counter({'race': 5,
          'movie': 4,
          'nthe': 4,
          'key': 4,
          'would': 4,
          'rat': 3,
          'another': 3,
          'first': 3,
          'n': 3,
          'sinclair': 3,
          'las': 3,
          'vegas': 3,
          'together': 3,
          'gets': 3,
          'man': 3,
          'driver': 3,
          'performances': 2,
          'comedy': 2,
          'cast': 2,
          'comes': 2,
          'bets': 2,
          'game': 2,
          'contestant': 2,
          'locker': 2,
          'silver': 2,
          'city': 2,
          'money': 2,
          'jokes': 2,
          'little': 2,
          'bit': 2,
          'america': 2,
          'gamblers': 2,
          'country': 2,
          'also': 2,
          'jon': 2,
          'lovitz': 2,
          'beverly': 2,
          'kathy': 2,
          'family': 2,
          'duane': 2,
          'tracy': 2,
          'zucker': 2,
          'racer': 2,
          'bizarre': 2,
          'watching': 1,
          'last': 1,
          'week': 1,
          'noticed': 1,
          'cheeks': 1,
          'sore': 1,
          'realized': 1,
          'laughing': 1,
          'aloud': 1,
          'held': 1,
          'grin': 1,
          'virtually': 1,
          'films': 1,
          '112': 1,
          'minutes': 1,
          'nsaturday': 1,
          'night': 1,
          'attended': 1,
          'sneak': 1,
          'preview': 1,
          'damned': 1,
          'didnt': 1,
          'enjoy': 1,
          'much': 1,
          'second': 1,
          'time': 1,
          'great': 1,
          'goofy': 1,
          'delight': 1,
          'dandy': 1,
          'mix': 1,
          'energetic': 1,
          'inspired': 1,
          'sight': 1,
          'gags': 1,
          'flatout': 1,
          'silliness': 1,
          'nhands': 1,
          'fun': 1,
          'film': 1,
          'summer': 1,
          'begins': 1,
          'zippy': 1,
          'retrostyle': 1,
          'opening': 1,
          'credits': 1,
          'look': 1,
          'like': 1,
          'torn': 1,
          'straight': 1,
          '60s': 1,
          'slapstick': 1,
          'featuring': 1,
          'animated': 1,
          'photos': 1,
          'attached': 1,
          'herkyjerky': 1,
          'bodies': 1,
          'bounding': 1,
          'around': 1,
          'screen': 1,
          'nthen': 1,
          'setup': 1,
          'ndonald': 1,
          'john': 1,
          'cleese': 1,
          'extremely': 1,
          'rich': 1,
          'owner': 1,
          'venetian': 1,
          'hotel': 1,
          'casino': 1,
          'enjoys': 1,
          'concocting': 1,
          'unusual': 1,
          'high': 1,
          'rolling': 1,
          'clients': 1,
          'nto': 1,
          'end': 1,
          'places': 1,
          'half': 1,
          'dozen': 1,
          'special': 1,
          'tokens': 1,
          'slot': 1,
          'machines': 1,
          'ngathering': 1,
          'lucky': 1,
          'token': 1,
          'holders': 1,
          'explains': 1,
          'today': 1,
          'chance': 1,
          'play': 1,
          'odds': 1,
          'winning': 1,
          'one': 1,
          'six': 1,
          'competition': 1,
          'simple': 1,
          'opens': 1,
          'containing': 1,
          '2': 1,
          'million': 1,
          'cash': 1,
          'nthere': 1,
          'transmitter': 1,
          'every': 1,
          'cronies': 1,
          'keep': 1,
          'track': 1,
          'ahead': 1,
          'rules': 1,
          'whichever': 1,
          'reaches': 1,
          'nsince': 1,
          'wrong': 1,
          'spoil': 1,
          'lets': 1,
          'use': 1,
          'next': 1,
          'paragraphs': 1,
          'profile': 1,
          'racers': 1,
          'ndecked': 1,
          'flashy': 1,
          'trashy': 1,
          'clothing': 1,
          'sporting': 1,
          'big': 1,
          'hair': 1,
          'vera': 1,
          'baker': 1,
          'whoopi': 1,
          'goldberg': 1,
          'town': 1,
          'reunite': 1,
          'daughter': 1,
          'gave': 1,
          'adoption': 1,
          'baby': 1,
          'nshe': 1,
          'finds': 1,
          'grownup': 1,
          'merrill': 1,
          'lanai': 1,
          'chapman': 1,
          'erudite': 1,
          'conservative': 1,
          'wary': 1,
          'stranger': 1,
          'trying': 1,
          'jump': 1,
          'life': 1,
          'nthrown': 1,
          'becomes': 1,
          'clear': 1,
          'women': 1,
          'share': 1,
          'fierce': 1,
          'competitive': 1,
          'nature': 1,
          'nowen': 1,
          'templeton': 1,
          'cuba': 1,
          'gooding': 1,
          'jr': 1,
          'currently': 1,
          'hated': 1,
          'nan': 1,
          'nfl': 1,
          'referee': 1,
          'cost': 1,
          'enormous': 1,
          'amounts': 1,
          'blowing': 1,
          'call': 1,
          'highprofile': 1,
          'nafter': 1,
          'escaping': 1,
          'vengeful': 1,
          'cab': 1,
          'owen': 1,
          'new': 1,
          'mexico': 1,
          'masquerading': 1,
          'busload': 1,
          'lucy': 1,
          'ricardo': 1,
          'impersonators': 1,
          'heading': 1,
          'convention': 1,
          'nmr': 1,
          'pollini': 1,
          'rowan': 1,
          'atkinson': 1,
          'cheerful': 1,
          'odd': 1,
          'italian': 1,
          'holiday': 1,
          'nhe': 1,
          'narcoleptic': 1,
          'falls': 1,
          'asleep': 1,
          'inopportune': 1,
          'times': 1,
          'npollini': 1,
          'hitches': 1,
          'ride': 1,
          'zack': 1,
          'wayne': 1,
          'knight': 1,
          'hypertense': 1,
          'ambulance': 1,
          'carrying': 1,
          'human': 1,
          'heart': 1,
          'across': 1,
          'transplant': 1,
          'operation': 1,
          'nrandy': 1,
          'pear': 1,
          'promised': 1,
          'wife': 1,
          'najimy': 1,
          'two': 1,
          'kids': 1,
          'funfilled': 1,
          'vacation': 1,
          'nfearful': 1,
          'angry': 1,
          'involvement': 1,
          'claims': 1,
          'must': 1,
          'travel': 1,
          'job': 1,
          'interview': 1,
          'nbeverly': 1,
          'insists': 1,
          'stay': 1,
          'hop': 1,
          'minivan': 1,
          'tear': 1,
          'desert': 1,
          'nbrothers': 1,
          'seth': 1,
          'green': 1,
          'blaine': 1,
          'vince': 1,
          'vieluf': 1,
          'cody': 1,
          'young': 1,
          'crooked': 1,
          'stupid': 1,
          'nblaine': 1,
          'speech': 1,
          'impediment': 1,
          'due': 1,
          'poorly': 1,
          'selfdone': 1,
          'tongue': 1,
          'piercing': 1,
          'person': 1,
          'come': 1,
          'close': 1,
          'understanding': 1,
          'boys': 1,
          'stop': 1,
          'nothing': 1,
          'reach': 1,
          'goal': 1,
          'nfinally': 1,
          'nick': 1,
          'shaffer': 1,
          'breckin': 1,
          'meyer': 1,
          'nononsense': 1,
          'lawyerintraining': 1,
          'recruits': 1,
          'helicopter': 1,
          'pilot': 1,
          'faucet': 1,
          'amy': 1,
          'smart': 1,
          'journey': 1,
          'nat': 1,
          'glance': 1,
          'seem': 1,
          'blandly': 1,
          'wholesome': 1,
          'changes': 1,
          'buzzes': 1,
          'home': 1,
          'boyfriend': 1,
          'shawn': 1,
          'dean': 1,
          'cain': 1,
          'spies': 1,
          'swimming': 1,
          'woman': 1,
          'ndirector': 1,
          'jerry': 1,
          'airplane': 1,
          'ghost': 1,
          'leaps': 1,
          'periodically': 1,
          'returning': 1,
          'mr': 1,
          'grisham': 1,
          'dave': 1,
          'thomas': 1,
          'personalityimpaired': 1,
          'right': 1,
          'hand': 1,
          'continue': 1,
          'cooking': 1,
          'nas': 1,
          'production': 1,
          'fall': 1,
          'flat': 1,
          'momentum': 1,
          'zooms': 1,
          'past': 1,
          'missteps': 1,
          'nhigh': 1,
          'points': 1,
          'include': 1,
          'involving': 1,
          'bates': 1,
          'roadside': 1,
          'squirrel': 1,
          'salesperson': 1,
          'intricately': 1,
          'set': 1,
          'gag': 1,
          'carries': 1,
          'museum': 1,
          'outdoor': 1,
          'rally': 1,
          'utterly': 1,
          'tasteless': 1,
          'screamingly': 1,
          'funny': 1,
          'payoff': 1,
          'nhad': 1,
          'part': 1,
          'filmmaking': 1,
          'team': 1,
          'ditched': 1,
          'joke': 1,
          'dropped': 1,
          'babys': 1,
          'clothes': 1,
          'instead': 1,
          'get': 1,
          'lost': 1,
          'cleavage': 1,
          'dozing': 1,
          'society': 1,
          'matron': 1,
          'nit': 1,
          'drawn': 1,
          'laugh': 1,
          'without': 1,
          'squirminducing': 1,
          'hint': 1,
          'child': 1,
          'molestation': 1,
          'ni': 1,
          'selected': 1,
          'different': 1,
          'band': 1,
          'concert': 1,
          'sequence': 1,
          'nmy': 1,
          'god': 1,
          'really': 1,
          'need': 1,
          'yet': 1,
          'smash': 1,
          'mouth': 1,
          'performing': 1,
          'star': 1,
          'nbut': 1,
          'enough': 1,
          'carping': 1,
          'riot': 1,
          'terrific': 1,
          'noholdsbarred': 1,
          'diverse': 1,
          'nsee': 1,
          'see': 1,
          'dvd': 1,
          'buy': 1,
          'hilarious': 1,
          'surely': 1,
          'outtakes': 1,
          'die': 1,
          'npos': 1}),
 Counter({'angels': 7,
          'movie': 5,
          'city': 5,
          'never': 4,
          'even': 4,
          'much': 4,
          'maggie': 4,
          'us': 4,
          'film': 3,
          'going': 3,
          'nthe': 3,
          'like': 3,
          'ryan': 3,
          'quite': 3,
          'ive': 2,
          'something': 2,
          'films': 2,
          'seen': 2,
          'well': 2,
          'experience': 2,
          'presented': 2,
          'poetic': 2,
          'ending': 2,
          'though': 2,
          'nbut': 2,
          'seth': 2,
          'angel': 2,
          'humans': 2,
          'doctor': 2,
          'begins': 2,
          'patient': 2,
          'taste': 2,
          'touch': 2,
          'make': 2,
          'desire': 2,
          'seems': 2,
          'nice': 2,
          'nits': 2,
          'roles': 2,
          'one': 2,
          'two': 2,
          'impressive': 2,
          'goers': 2,
          'final': 2,
          'know': 2,
          'enough': 2,
          'noticed': 1,
          'lately': 1,
          'thought': 1,
          'npseudo': 1,
          'substance': 1,
          'hollywood': 1,
          'faking': 1,
          'deep': 1,
          'meanings': 1,
          'nhave': 1,
          'ever': 1,
          'really': 1,
          'enjoyed': 1,
          'look': 1,
          'back': 1,
          'realize': 1,
          'missing': 1,
          'nmore': 1,
          'filmmakers': 1,
          'seem': 1,
          'putting': 1,
          'rehearsed': 1,
          'melodramatic': 1,
          'evoke': 1,
          'strong': 1,
          'connotations': 1,
          'great': 1,
          'step': 1,
          'aside': 1,
          'reflect': 1,
          'may': 1,
          'discover': 1,
          'nothing': 1,
          'elegantly': 1,
          'fluff': 1,
          'nim': 1,
          'trying': 1,
          'say': 1,
          'bad': 1,
          'nit': 1,
          'lot': 1,
          'somewhere': 1,
          'along': 1,
          'way': 1,
          'faltered': 1,
          'nsomehow': 1,
          'underneath': 1,
          'seemingly': 1,
          'beauty': 1,
          'gigantic': 1,
          'hole': 1,
          'somebody': 1,
          'covered': 1,
          'iridescent': 1,
          'performances': 1,
          'glossy': 1,
          'cinematography': 1,
          'predictable': 1,
          'shattered': 1,
          'hopes': 1,
          'saw': 1,
          'coming': 1,
          'added': 1,
          'disappointment': 1,
          'hour': 1,
          'worth': 1,
          'time': 1,
          'nnicolas': 1,
          'cage': 1,
          'guardian': 1,
          'hundreds': 1,
          'likely': 1,
          'thousands': 1,
          'millions': 1,
          'spends': 1,
          'eternity': 1,
          'watching': 1,
          'citizens': 1,
          'mortality': 1,
          'aware': 1,
          'celestial': 1,
          'intervention': 1,
          'occurs': 1,
          'life': 1,
          'nmeg': 1,
          'subdued': 1,
          'performance': 1,
          'yet': 1,
          'plays': 1,
          'ponder': 1,
          'exactly': 1,
          'fighting': 1,
          'fight': 1,
          'keep': 1,
          'someone': 1,
          'alive': 1,
          'nafter': 1,
          'losing': 1,
          'surgery': 1,
          'table': 1,
          'questions': 1,
          'envelope': 1,
          'oversee': 1,
          'patients': 1,
          'transition': 1,
          'afterlife': 1,
          'immediately': 1,
          'captivated': 1,
          'nhe': 1,
          'following': 1,
          'observing': 1,
          'falling': 1,
          'love': 1,
          'everyday': 1,
          'nangels': 1,
          'quickly': 1,
          'learn': 1,
          'human': 1,
          'sensations': 1,
          'ability': 1,
          'anyone': 1,
          'nseths': 1,
          'adoration': 1,
          'resist': 1,
          'eventually': 1,
          'appear': 1,
          'regularly': 1,
          'although': 1,
          'thing': 1,
          'taboo': 1,
          'among': 1,
          'angelic': 1,
          'community': 1,
          'interestingly': 1,
          'dressed': 1,
          'black': 1,
          'reminiscent': 1,
          'hitmen': 1,
          'traditional': 1,
          'glowing': 1,
          'white': 1,
          'entities': 1,
          'mere': 1,
          'attempt': 1,
          'uniqueness': 1,
          'ncage': 1,
          'wonderfully': 1,
          'versatile': 1,
          'actor': 1,
          'think': 1,
          'faceoff': 1,
          'raising': 1,
          'arizona': 1,
          'could': 1,
          'happen': 1,
          'combo': 1,
          'slips': 1,
          'role': 1,
          'heavenly': 1,
          'agent': 1,
          'nicely': 1,
          'threatens': 1,
          'sappiness': 1,
          'see': 1,
          'pick': 1,
          'courage': 1,
          'fire': 1,
          'arent': 1,
          'comparable': 1,
          'deviate': 1,
          'usual': 1,
          'intelligently': 1,
          'ditzy': 1,
          'romantic': 1,
          'comedy': 1,
          'side': 1,
          'rarely': 1,
          'chance': 1,
          'enjoy': 1,
          'leads': 1,
          'job': 1,
          'dennis': 1,
          'franz': 1,
          'grabs': 1,
          'interpretation': 1,
          'hospital': 1,
          'knows': 1,
          'meets': 1,
          'eye': 1,
          'shame': 1,
          'falters': 1,
          'stages': 1,
          'leaving': 1,
          'realization': 1,
          'emotionally': 1,
          'incredible': 1,
          'didnt': 1,
          'get': 1,
          'nthey': 1,
          'struggle': 1,
          'impacting': 1,
          'conclusion': 1,
          'wind': 1,
          'painful': 1,
          'thud': 1,
          'rather': 1,
          'exhilarating': 1,
          'high': 1,
          'nfilmmakers': 1,
          'impression': 1,
          'linger': 1,
          'remember': 1,
          'convey': 1,
          'others': 1,
          'thru': 1,
          'word': 1,
          'mouth': 1,
          'telling': 1,
          '60': 1,
          'minutes': 1,
          'glorious': 1,
          'masterpiece': 1,
          'sure': 1,
          'leave': 1,
          'disheartening': 1,
          'mediocrity': 1,
          'mouths': 1,
          'nbased': 1,
          'german': 1,
          'wings': 1,
          'english': 1,
          'title': 1,
          'course': 1,
          'ninety': 1,
          'percent': 1,
          'success': 1,
          'people': 1,
          'forgive': 1,
          'shortcomings': 1,
          'devastatingly': 1,
          'disappointing': 1,
          'nmost': 1,
          'noncynics': 1,
          'anyway': 1,
          'wrapped': 1,
          'surreal': 1,
          'atmosphere': 1,
          'give': 1,
          'criticism': 1,
          'needs': 1,
          'criticized': 1,
          'nnonetheless': 1,
          'beautifully': 1,
          'captivating': 1,
          'probably': 1,
          'satisfy': 1,
          'viewers': 1,
          'appreciate': 1,
          'delve': 1,
          'rich': 1,
          'emotional': 1,
          'territories': 1,
          'npos': 1}),
 Counter({'bobby': 6,
          'hearts': 3,
          'stand': 3,
          'lives': 2,
          'small': 2,
          'davis': 2,
          'friends': 2,
          'carol': 2,
          'boorem': 2,
          'hopkins': 2,
          'ted': 2,
          'film': 2,
          'good': 2,
          'despite': 2,
          'attention': 2,
          'whose': 2,
          'movies': 2,
          'synopsis': 1,
          'garfield': 1,
          'yelchin': 1,
          'town': 1,
          'mirthless': 1,
          'widowed': 1,
          'mother': 1,
          'hope': 1,
          'nbobbys': 1,
          'world': 1,
          'revolves': 1,
          'around': 1,
          'especially': 1,
          'spritely': 1,
          'nthen': 1,
          'one': 1,
          'day': 1,
          'new': 1,
          'boarder': 1,
          'arrives': 1,
          'bobbys': 1,
          'house': 1,
          'nted': 1,
          'brautigan': 1,
          'enigmatic': 1,
          'man': 1,
          'takes': 1,
          'immediate': 1,
          'liking': 1,
          'nas': 1,
          'bond': 1,
          'deepens': 1,
          'becomes': 1,
          'privy': 1,
          'teds': 1,
          'great': 1,
          'secret': 1,
          'event': 1,
          'change': 1,
          'forever': 1,
          'nreview': 1,
          'enchanting': 1,
          'movie': 1,
          'atlantis': 1,
          'easily': 1,
          'recalls': 1,
          'another': 1,
          'kinginspired': 1,
          'comingofage': 1,
          'terms': 1,
          'setting': 1,
          'sentiment': 1,
          'conveys': 1,
          'n': 1,
          'tribute': 1,
          'magic': 1,
          'childhood': 1,
          'summers': 1,
          'days': 1,
          'seem': 1,
          'neverending': 1,
          'nothing': 1,
          'means': 1,
          'closest': 1,
          'nunlike': 1,
          'supernatural': 1,
          'element': 1,
          'although': 1,
          'key': 1,
          'plot': 1,
          'prominent': 1,
          'nlike': 1,
          'mostly': 1,
          'characterdriven': 1,
          'benefits': 1,
          'greatly': 1,
          'superb': 1,
          'casting': 1,
          'nyelchin': 1,
          'finding': 1,
          'mix': 1,
          'innocence': 1,
          'resignation': 1,
          'nmore': 1,
          'splendid': 1,
          'still': 1,
          'praised': 1,
          'highly': 1,
          'work': 1,
          'along': 1,
          'came': 1,
          'spider': 1,
          'simply': 1,
          'radiant': 1,
          'nand': 1,
          'playing': 1,
          'quiet': 1,
          'introspective': 1,
          'character': 1,
          'nonetheless': 1,
          'commands': 1,
          'every': 1,
          'time': 1,
          'onscreen': 1,
          'nless': 1,
          'successful': 1,
          'strident': 1,
          'elizabeth': 1,
          'comes': 1,
          'across': 1,
          'overly': 1,
          'cartoonish': 1,
          'ni': 1,
          'also': 1,
          'found': 1,
          'odd': 1,
          'carols': 1,
          'friend': 1,
          'sully': 1,
          'death': 1,
          'adult': 1,
          'sets': 1,
          'flashback': 1,
          'framing': 1,
          'device': 1,
          'paid': 1,
          'virtually': 1,
          'nbut': 1,
          'hicks': 1,
          'direction': 1,
          'lovely': 1,
          'without': 1,
          'cloying': 1,
          'general': 1,
          'lack': 1,
          'incident': 1,
          'never': 1,
          'ceases': 1,
          'weave': 1,
          'spell': 1,
          'audience': 1,
          'npos': 1}),
 Counter({'one': 4,
          'slave': 4,
          'cinque': 3,
          'slavery': 3,
          'characters': 3,
          'life': 3,
          'movie': 2,
          'story': 2,
          'long': 2,
          'hounsou': 2,
          'kidnapped': 2,
          'since': 2,
          'men': 2,
          'court': 2,
          'legally': 2,
          'slaves': 2,
          'born': 2,
          'adams': 2,
          'anthony': 2,
          'hopkins': 2,
          'dramatic': 2,
          'making': 2,
          'fictional': 2,
          'real': 2,
          'guys': 2,
          'synopsis': 1,
          'steven': 1,
          'spielberg': 1,
          'todays': 1,
          'finest': 1,
          'directors': 1,
          'attempts': 1,
          'spice': 1,
          '1800s': 1,
          'courtroom': 1,
          'battle': 1,
          'fate': 1,
          'prisoner': 1,
          'djimon': 1,
          'young': 1,
          'angry': 1,
          'man': 1,
          'sierra': 1,
          'leone': 1,
          'fellow': 1,
          'prisoners': 1,
          'ncinque': 1,
          'friends': 1,
          'landed': 1,
          'ship': 1,
          'shores': 1,
          'america': 1,
          'escaping': 1,
          'spanish': 1,
          'traders': 1,
          'americans': 1,
          'dont': 1,
          'speak': 1,
          'cinques': 1,
          'language': 1,
          'black': 1,
          'hauled': 1,
          'determine': 1,
          'whether': 1,
          'ntechnically': 1,
          'international': 1,
          'trade': 1,
          'outlawed': 1,
          'time': 1,
          'people': 1,
          'like': 1,
          'couldnt': 1,
          'considered': 1,
          'nlawyers': 1,
          'baldwin': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'must': 1,
          'prove': 1,
          'others': 1,
          'captured': 1,
          'rather': 1,
          'order': 1,
          'get': 1,
          'prison': 1,
          'free': 1,
          'nthree': 1,
          'lengthy': 1,
          'cases': 1,
          'portrayed': 1,
          'spielbergs': 1,
          'trademark': 1,
          'panache': 1,
          'flashy': 1,
          'beginning': 1,
          'lots': 1,
          'facial': 1,
          'closeups': 1,
          'big': 1,
          'music': 1,
          'imagery': 1,
          'na': 1,
          'final': 1,
          'speech': 1,
          'followed': 1,
          'anticlimax': 1,
          'subtitles': 1,
          'show': 1,
          'eventually': 1,
          'happened': 1,
          'various': 1,
          'nopinion': 1,
          'easier': 1,
          'nin': 1,
          'fiction': 1,
          'invents': 1,
          'purposeful': 1,
          'clearcut': 1,
          'good': 1,
          'bad': 1,
          'puts': 1,
          'conflict': 1,
          'takes': 1,
          'tale': 1,
          'exciting': 1,
          'conclusion': 1,
          'nreal': 1,
          'however': 1,
          'consists': 1,
          'stretches': 1,
          'boredom': 1,
          'moments': 1,
          'stand': 1,
          'around': 1,
          'think': 1,
          'thoughts': 1,
          'nothing': 1,
          'come': 1,
          'go': 1,
          'events': 1,
          'resolved': 1,
          'nspielberg': 1,
          'gives': 1,
          'us': 1,
          'visually': 1,
          'spicy': 1,
          'historically': 1,
          'accurate': 1,
          'ndjimon': 1,
          'turn': 1,
          'excellent': 1,
          'performances': 1,
          'npos': 1}),
 Counter({'negotiator': 10,
          'police': 9,
          'roman': 8,
          'film': 7,
          'actor': 6,
          'one': 6,
          'nthe': 5,
          'also': 5,
          'spacey': 5,
          'good': 5,
          'must': 4,
          'situation': 4,
          'nin': 4,
          'nwhen': 4,
          'character': 4,
          'walsh': 4,
          'best': 4,
          'talk': 3,
          'criminal': 3,
          'able': 3,
          'hes': 3,
          'jackson': 3,
          'internal': 3,
          'affairs': 3,
          'scenes': 3,
          'soon': 3,
          'inspector': 3,
          'hostage': 3,
          'role': 3,
          'commander': 3,
          'morse': 3,
          'played': 3,
          'person': 2,
          'going': 2,
          'often': 2,
          'turn': 2,
          'moments': 2,
          'think': 2,
          'feet': 2,
          'without': 2,
          'quickly': 2,
          'dominate': 2,
          'end': 2,
          'conflict': 2,
          'really': 2,
          'nit': 2,
          'pretty': 2,
          'smart': 2,
          'l': 2,
          'partner': 2,
          'romans': 2,
          'becomes': 2,
          'forced': 2,
          'office': 2,
          'actually': 2,
          'nalthough': 2,
          'interesting': 2,
          'premise': 2,
          'prove': 2,
          'innocence': 2,
          'niebaum': 2,
          'nwalsh': 2,
          'gray': 2,
          'negotiations': 2,
          'sabian': 2,
          'become': 2,
          'protagonist': 2,
          'notable': 2,
          'audience': 2,
          'time': 2,
          'trying': 2,
          'anything': 2,
          'acting': 2,
          'nhis': 2,
          'set': 2,
          'man': 2,
          'says': 2,
          'however': 2,
          'expect': 2,
          'take': 2,
          'nas': 2,
          'cast': 2,
          'rifkin': 2,
          'spencer': 2,
          'level': 2,
          'giamatti': 2,
          'provides': 2,
          'performances': 2,
          'talented': 2,
          'men': 2,
          'actors': 2,
          'two': 2,
          'entirely': 1,
          'unenviable': 1,
          'job': 1,
          'ground': 1,
          'zero': 1,
          'attempting': 1,
          'dangerous': 1,
          'whatever': 1,
          'intends': 1,
          'nlives': 1,
          'stake': 1,
          'usually': 1,
          'armed': 1,
          'likely': 1,
          'mentally': 1,
          'unstable': 1,
          'prone': 1,
          'notice': 1,
          'therefore': 1,
          'something': 1,
          'psychologist': 1,
          'sham': 1,
          'artist': 1,
          'addition': 1,
          'officer': 1,
          'either': 1,
          'work': 1,
          'toward': 1,
          'goal': 1,
          'ending': 1,
          'confrontation': 1,
          'violence': 1,
          'failing': 1,
          'prepared': 1,
          'facilitate': 1,
          'conclusion': 1,
          'crisis': 1,
          'firepower': 1,
          'nmost': 1,
          'enter': 1,
          'little': 1,
          'intelligence': 1,
          'scenario': 1,
          'possible': 1,
          'gain': 1,
          'control': 1,
          'conversation': 1,
          'influence': 1,
          'perpetrator': 1,
          'thinking': 1,
          'wants': 1,
          'takes': 1,
          'nbut': 1,
          'hostageholding': 1,
          'nwhat': 1,
          'fact': 1,
          'knows': 1,
          'tricks': 1,
          'turning': 1,
          'favor': 1,
          'circumstance': 1,
          'forms': 1,
          'basis': 1,
          'f': 1,
          'gary': 1,
          'grays': 1,
          'danny': 1,
          'samuel': 1,
          'tipped': 1,
          'corruption': 1,
          'within': 1,
          'chicago': 1,
          'force': 1,
          'turns': 1,
          'shot': 1,
          'death': 1,
          'finds': 1,
          'incriminating': 1,
          'evidence': 1,
          'home': 1,
          'prime': 1,
          'suspect': 1,
          'embezzling': 1,
          'disability': 1,
          'fund': 1,
          'murder': 1,
          'nfaced': 1,
          'scorn': 1,
          'department': 1,
          'close': 1,
          'scrutiny': 1,
          'media': 1,
          'badge': 1,
          'typical': 1,
          'captains': 1,
          'ni': 1,
          'dont': 1,
          'quite': 1,
          'remember': 1,
          'captain': 1,
          'said': 1,
          'hate': 1,
          'wouldnt': 1,
          'surprise': 1,
          'nluckily': 1,
          'shakes': 1,
          'conventionalism': 1,
          'concentrates': 1,
          'mentioned': 1,
          'nafter': 1,
          'offered': 1,
          'takeitorleaveit': 1,
          'deal': 1,
          'district': 1,
          'attorney': 1,
          'resolves': 1,
          'walking': 1,
          'j': 1,
          'taking': 1,
          'others': 1,
          'proclaiming': 1,
          'framed': 1,
          'actions': 1,
          'seem': 1,
          'due': 1,
          'compressed': 1,
          'nature': 1,
          'motivational': 1,
          'buildup': 1,
          'redeems': 1,
          'involving': 1,
          'us': 1,
          'fellow': 1,
          'chris': 1,
          'kevin': 1,
          'ensue': 1,
          'njackson': 1,
          'superb': 1,
          'miscast': 1,
          'popular': 1,
          'identified': 1,
          'exceptions': 1,
          'found': 1,
          'jackie': 1,
          'brown': 1,
          'difficult': 1,
          'believing': 1,
          'carry': 1,
          'threats': 1,
          'script': 1,
          'clearly': 1,
          'sets': 1,
          'guy': 1,
          'nhow': 1,
          'believe': 1,
          'shoot': 1,
          'matter': 1,
          'tried': 1,
          'kill': 1,
          'earlier': 1,
          'nunfortunately': 1,
          'preconception': 1,
          'saps': 1,
          'wouldbe': 1,
          'suspenseful': 1,
          'left': 1,
          'largely': 1,
          'attributed': 1,
          'jacksons': 1,
          'ability': 1,
          'nalmost': 1,
          'every': 1,
          'scene': 1,
          'steals': 1,
          'looking': 1,
          'back': 1,
          'appears': 1,
          'already': 1,
          'run': 1,
          'third': 1,
          'course': 1,
          'nmade': 1,
          'kind': 1,
          'negotiating': 1,
          'superman': 1,
          'first': 1,
          'look': 1,
          'hopelessly': 1,
          'get': 1,
          'family': 1,
          'moving': 1,
          'vacation': 1,
          'n': 1,
          'blowing': 1,
          'sears': 1,
          'tower': 1,
          'cant': 1,
          'wife': 1,
          'bedroom': 1,
          'daughter': 1,
          'phone': 1,
          'gets': 1,
          'call': 1,
          'action': 1,
          'changes': 1,
          'gears': 1,
          'nsoon': 1,
          'negotiate': 1,
          'swat': 1,
          'david': 1,
          'itching': 1,
          'send': 1,
          'team': 1,
          'keeping': 1,
          'wary': 1,
          'fbi': 1,
          'agents': 1,
          'waiting': 1,
          'operation': 1,
          'fail': 1,
          'nthis': 1,
          'complex': 1,
          'pressures': 1,
          'reflected': 1,
          'well': 1,
          'second': 1,
          'measures': 1,
          'nicely': 1,
          'ngray': 1,
          'lucked': 1,
          'ndavid': 1,
          'beck': 1,
          'ron': 1,
          'frost': 1,
          'john': 1,
          'chief': 1,
          'al': 1,
          'travis': 1,
          'competent': 1,
          'hold': 1,
          'problem': 1,
          'bit': 1,
          'typecasting': 1,
          'results': 1,
          'choices': 1,
          'similar': 1,
          'rock': 1,
          'confidential': 1,
          'detective': 1,
          'cop': 1,
          'land': 1,
          'nwith': 1,
          'forgiven': 1,
          'nalso': 1,
          'supporting': 1,
          'paul': 1,
          'rudy': 1,
          'hostages': 1,
          'comic': 1,
          'relief': 1,
          'initially': 1,
          'slimy': 1,
          'looks': 1,
          'shifty': 1,
          'laugh': 1,
          'even': 1,
          'nfortunately': 1,
          'doesnt': 1,
          'distract': 1,
          'seriousness': 1,
          'rest': 1,
          'instead': 1,
          'nice': 1,
          'breathers': 1,
          'tension': 1,
          'manages': 1,
          'sustain': 1,
          'throughout': 1,
          'nj': 1,
          'suspicious': 1,
          'clocks': 1,
          'final': 1,
          'nsadly': 1,
          'underrated': 1,
          'passed': 1,
          'away': 1,
          'late': 1,
          'february': 1,
          'year': 1,
          'released': 1,
          'pleasantville': 1,
          'mark': 1,
          'last': 1,
          'appeared': 1,
          'dozens': 1,
          'movies': 1,
          'morning': 1,
          'vietnam': 1,
          'backdraft': 1,
          'nixon': 1,
          'nfor': 1,
          'check': 1,
          'sling': 1,
          'blade': 1,
          'plays': 1,
          'mental': 1,
          'patient': 1,
          'sharing': 1,
          'ward': 1,
          'billy': 1,
          'bob': 1,
          'thornton': 1,
          'jack': 1,
          'nicholson': 1,
          'accepted': 1,
          'oscar': 1,
          'march': 1,
          'credited': 1,
          'success': 1,
          'performed': 1,
          'together': 1,
          'dedicated': 1,
          'may': 1,
          'certainly': 1,
          'characterizes': 1,
          'type': 1,
          'famous': 1,
          'playing': 1,
          'plotline': 1,
          'parallels': 1,
          'reality': 1,
          'nwere': 1,
          'served': 1,
          'equally': 1,
          'deft': 1,
          'negotiators': 1,
          'battling': 1,
          'resolve': 1,
          'manner': 1,
          'suit': 1,
          'given': 1,
          'wonderfully': 1,
          'thrown': 1,
          'movie': 1,
          'wed': 1,
          'like': 1,
          'see': 1,
          'nboth': 1,
          'provide': 1,
          'entertainment': 1,
          'npos': 1}),
 Counter({'film': 9,
          'music': 6,
          'band': 6,
          'metal': 5,
          'heavy': 4,
          'singer': 4,
          'like': 4,
          'one': 4,
          'also': 4,
          'young': 3,
          'man': 3,
          'loves': 3,
          'dreams': 3,
          'hard': 3,
          'way': 3,
          'whole': 3,
          'movie': 3,
          '810': 3,
          'real': 2,
          'im': 2,
          'movies': 2,
          'luck': 2,
          'would': 2,
          'work': 2,
          'rock': 2,
          'fun': 2,
          'love': 2,
          'even': 2,
          'live': 2,
          'performances': 2,
          'wahlberg': 2,
          'original': 2,
          'much': 2,
          'nhe': 2,
          'plot': 1,
          'especially': 1,
          'steel': 1,
          'dragon': 1,
          'hes': 1,
          'devoted': 1,
          'tribute': 1,
          'sings': 1,
          'gets': 1,
          'launched': 1,
          'stardom': 1,
          'group': 1,
          'get': 1,
          'rid': 1,
          'lead': 1,
          'call': 1,
          'take': 1,
          'place': 1,
          'ncritique': 1,
          'sucker': 1,
          'na': 1,
          'humble': 1,
          'background': 1,
          'lofty': 1,
          'works': 1,
          'devotes': 1,
          'time': 1,
          'energy': 1,
          'patience': 1,
          'ultimately': 1,
          'hits': 1,
          'bigtime': 1,
          'nin': 1,
          'case': 1,
          'boy': 1,
          'certain': 1,
          'yup': 1,
          'always': 1,
          'finds': 1,
          'types': 1,
          'equations': 1,
          'although': 1,
          'generally': 1,
          'tied': 1,
          'closely': 1,
          'need': 1,
          'new': 1,
          'nhis': 1,
          'entry': 1,
          'adaptation': 1,
          'n': 1,
          'roll': 1,
          'lifestyle': 1,
          'fills': 1,
          'rest': 1,
          'really': 1,
          'watch': 1,
          'nalthough': 1,
          'preface': 1,
          'saying': 1,
          'thing': 1,
          'definitely': 1,
          'enhance': 1,
          'appreciation': 1,
          'past': 1,
          'scene': 1,
          'around': 1,
          'nmetal': 1,
          'first': 1,
          'teen': 1,
          'though': 1,
          'genre': 1,
          'isnt': 1,
          'prominent': 1,
          'anymore': 1,
          'still': 1,
          'check': 1,
          'motley': 1,
          'crue': 1,
          'twisted': 1,
          'sister': 1,
          'anthrax': 1,
          'cds': 1,
          'every': 1,
          'nthats': 1,
          'say': 1,
          'wont': 1,
          'dont': 1,
          'play': 1,
          'big': 1,
          'part': 1,
          'blast': 1,
          'watching': 1,
          'listening': 1,
          'nbut': 1,
          'greater': 1,
          'draw': 1,
          'standout': 1,
          'performance': 1,
          'given': 1,
          'mark': 1,
          'nwow': 1,
          'hand': 1,
          'fella': 1,
          'major': 1,
          'props': 1,
          'totally': 1,
          'becomes': 1,
          'geekgod': 1,
          'incidentally': 1,
          'god': 1,
          'films': 1,
          'title': 1,
          'better': 1,
          'ask': 1,
          'quite': 1,
          'taken': 1,
          'character': 1,
          'pretty': 1,
          'came': 1,
          'regular': 1,
          'guy': 1,
          'extremely': 1,
          'passionate': 1,
          'goals': 1,
          'ethic': 1,
          'willing': 1,
          'anything': 1,
          'order': 1,
          'fulfill': 1,
          'naniston': 1,
          'surprisingly': 1,
          'good': 1,
          'girlfriend': 1,
          'romance': 1,
          'angle': 1,
          'sweet': 1,
          'didnt': 1,
          'pull': 1,
          'enough': 1,
          'emotional': 1,
          'scenes': 1,
          'ni': 1,
          'impressed': 1,
          'musicians': 1,
          'played': 1,
          'zakk': 1,
          'wylde': 1,
          'ozzy': 1,
          'osbourne': 1,
          'jeff': 1,
          'pilson': 1,
          'dokken': 1,
          'stephan': 1,
          'jenkins': 1,
          'third': 1,
          'eye': 1,
          'blind': 1,
          'blas': 1,
          'elias': 1,
          'slaughter': 1,
          'actor': 1,
          'dominic': 1,
          'west': 1,
          'kirk': 1,
          'cuddy': 1,
          'made': 1,
          'biggest': 1,
          'impression': 1,
          'among': 1,
          'members': 1,
          'nits': 1,
          'note': 1,
          'based': 1,
          'reallife': 1,
          'tale': 1,
          'used': 1,
          'sing': 1,
          'judas': 1,
          'priest': 1,
          'cover': 1,
          'went': 1,
          'become': 1,
          'actual': 1,
          'admitted': 1,
          'gay': 1,
          'njust': 1,
          'record': 1,
          'certainly': 1,
          'recommending': 1,
          'originality': 1,
          'surprise': 1,
          'elements': 1,
          'since': 1,
          'stuff': 1,
          'already': 1,
          'covered': 1,
          'another': 1,
          'uplifting': 1,
          'wellpaced': 1,
          'solid': 1,
          'central': 1,
          'showing': 1,
          'energetic': 1,
          'noh': 1,
          'yeah': 1,
          'dig': 1,
          'heavier': 1,
          'side': 1,
          'soundtrack': 1,
          'rocks': 1,
          'nyou': 1,
          'see': 1,
          'ncan': 1,
          'come': 1,
          'true': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'nalmost': 1,
          'famous': 1,
          'blow': 1,
          'boogie': 1,
          'nights': 1,
          '910': 1,
          'detroit': 1,
          'city': 1,
          'girlfight': 1,
          '610': 1,
          'goodfellas': 1,
          '1010': 1,
          'npos': 1}),
 Counter({'matron': 5,
          'film': 4,
          'james': 4,
          'nthe': 4,
          'pills': 3,
          'kenneth': 3,
          'jacques': 3,
          'hawtrey': 3,
          'good': 3,
          'seems': 3,
          'movie': 3,
          'great': 2,
          'still': 2,
          'nsid': 2,
          'head': 2,
          'gang': 2,
          'hospital': 2,
          'williams': 2,
          'sir': 2,
          'bernard': 2,
          'hattie': 2,
          'charles': 2,
          'dr': 2,
          'goode': 2,
          'nthis': 2,
          'time': 2,
          'needs': 2,
          'prove': 2,
          'go': 2,
          'thinks': 2,
          'nthere': 2,
          'expectant': 2,
          'every': 2,
          'scene': 2,
          'cyril': 2,
          'nurse': 2,
          'barbara': 2,
          'sid': 2,
          'carry': 1,
          'last': 1,
          'carryon': 1,
          'opinion': 1,
          'nmade': 1,
          '1972': 1,
          'features': 1,
          'regulars': 1,
          'genre': 1,
          'plays': 1,
          'crooks': 1,
          'intent': 1,
          'stealing': 1,
          'contraceptive': 1,
          'local': 1,
          'maternity': 1,
          'selling': 1,
          'make': 1,
          'profit': 1,
          'cutting': 1,
          'also': 1,
          'hypochondriac': 1,
          'retakes': 1,
          'role': 1,
          'psychiatrist': 1,
          'jokes': 1,
          'come': 1,
          'fast': 1,
          'laughs': 1,
          'humorous': 1,
          'antics': 1,
          'man': 1,
          'visiting': 1,
          'doctor': 1,
          'sworn': 1,
          'secrecy': 1,
          'assure': 1,
          'anything': 1,
          'say': 1,
          'today': 1,
          'one': 1,
          'ear': 1,
          'straight': 1,
          'nbernard': 1,
          'sex': 1,
          'change': 1,
          'cameos': 1,
          'joan': 1,
          'sims': 1,
          'mother': 1,
          'many': 1,
          'weeks': 1,
          'overdue': 1,
          'eating': 1,
          'constantly': 1,
          'connor': 1,
          'father': 1,
          'hes': 1,
          'work': 1,
          'railway': 1,
          'station': 1,
          'including': 1,
          'son': 1,
          'cope': 1,
          'try': 1,
          'find': 1,
          'getting': 1,
          'dress': 1,
          'live': 1,
          'nurses': 1,
          'home': 1,
          'nhe': 1,
          'share': 1,
          'room': 1,
          'ball': 1,
          'windsor': 1,
          'soon': 1,
          'sees': 1,
          'ends': 1,
          'attempted': 1,
          'robbery': 1,
          'hospitals': 1,
          'panic': 1,
          'ensuing': 1,
          'performances': 1,
          'however': 1,
          'character': 1,
          'little': 1,
          'subdued': 1,
          'quieter': 1,
          'previous': 1,
          'matrons': 1,
          'nwilliams': 1,
          'usual': 1,
          'top': 1,
          'form': 1,
          'isnt': 1,
          'given': 1,
          'part': 1,
          'would': 1,
          'forgive': 1,
          'anyone': 1,
          'forget': 1,
          'although': 1,
          'first': 1,
          'appears': 1,
          '30': 1,
          'minutes': 1,
          'gone': 1,
          'scarce': 1,
          'screen': 1,
          'steal': 1,
          'nby': 1,
          'making': 1,
          'use': 1,
          'windsors': 1,
          'talent': 1,
          'full': 1,
          'effect': 1,
          'flounder': 1,
          'certainly': 1,
          'makes': 1,
          'storyline': 1,
          'appealing': 1,
          'characters': 1,
          'genuinely': 1,
          'funny': 1,
          'could': 1,
          'watch': 1,
          'get': 1,
          'bored': 1,
          'npos': 1}),
 Counter({'film': 10,
          'nthe': 9,
          'capone': 9,
          'ness': 8,
          'untouchables': 7,
          'also': 6,
          'scenes': 5,
          'action': 4,
          'begins': 4,
          'man': 4,
          'great': 4,
          'evil': 3,
          'may': 3,
          'men': 3,
          'laws': 3,
          'first': 3,
          'hatred': 3,
          'amount': 3,
          'member': 3,
          'nhe': 3,
          'excellent': 2,
          'real': 2,
          'life': 2,
          'place': 2,
          'perfectly': 2,
          'beautifully': 2,
          'acting': 2,
          'score': 2,
          'clever': 2,
          'chicago': 2,
          'run': 2,
          'nelliot': 2,
          'small': 2,
          'trying': 2,
          'stop': 2,
          'peace': 2,
          'order': 2,
          'nhowever': 2,
          'played': 2,
          'one': 2,
          'capones': 2,
          'contains': 2,
          'nfrom': 2,
          'point': 2,
          'must': 2,
          'films': 2,
          'group': 2,
          'walk': 2,
          'nas': 2,
          'image': 2,
          'mind': 2,
          'matrix': 2,
          'members': 2,
          'perfect': 2,
          'character': 2,
          'grows': 2,
          'nhis': 2,
          'role': 2,
          'plays': 2,
          'malone': 2,
          'make': 2,
          'final': 2,
          'attack': 2,
          'stone': 2,
          'valuable': 2,
          'adds': 2,
          'train': 2,
          'station': 2,
          'well': 2,
          'ultimate': 1,
          'match': 1,
          'good': 1,
          'movie': 1,
          'looks': 1,
          'deeper': 1,
          'already': 1,
          'examined': 1,
          'rivalry': 1,
          'nbased': 1,
          '1959': 1,
          'television': 1,
          'show': 1,
          'title': 1,
          'exaggeration': 1,
          'events': 1,
          'took': 1,
          'fits': 1,
          'together': 1,
          'filmed': 1,
          'sequences': 1,
          'memorable': 1,
          'script': 1,
          'takes': 1,
          'prohibition': 1,
          'era': 1,
          'mobsters': 1,
          'led': 1,
          'ruthless': 1,
          'al': 1,
          'underground': 1,
          'market': 1,
          'liquor': 1,
          'demanding': 1,
          'public': 1,
          'force': 1,
          'known': 1,
          'attempt': 1,
          'impossible': 1,
          'maintain': 1,
          'soon': 1,
          'learns': 1,
          'stabilize': 1,
          'bend': 1,
          'fact': 1,
          'apparent': 1,
          'deniro': 1,
          'declaring': 1,
          'violent': 1,
          'firm': 1,
          'believer': 1,
          'following': 1,
          'quickly': 1,
          'transfers': 1,
          'next': 1,
          'scene': 1,
          'bombs': 1,
          'restaurant': 1,
          'many': 1,
          'innocent': 1,
          'people': 1,
          'including': 1,
          'little': 1,
          'girl': 1,
          'know': 1,
          'kills': 1,
          'without': 1,
          'hesitation': 1,
          'lying': 1,
          'bastard': 1,
          'nright': 1,
          'five': 1,
          'minutes': 1,
          'de': 1,
          'palma': 1,
          'created': 1,
          'towards': 1,
          'shows': 1,
          'brought': 1,
          'costs': 1,
          'nthis': 1,
          'developed': 1,
          'hero': 1,
          'even': 1,
          'introduced': 1,
          'ni': 1,
          'found': 1,
          'approach': 1,
          'duration': 1,
          'time': 1,
          'admiration': 1,
          'equal': 1,
          'gets': 1,
          'better': 1,
          'nwith': 1,
          'formation': 1,
          'wearing': 1,
          'long': 1,
          'dark': 1,
          'overcoats': 1,
          'hats': 1,
          'nthey': 1,
          'unison': 1,
          'look': 1,
          'forward': 1,
          'streets': 1,
          'observed': 1,
          'feared': 1,
          'citizens': 1,
          'nholding': 1,
          'shot': 1,
          'guns': 1,
          'pistols': 1,
          'hands': 1,
          'criminals': 1,
          'vigilantes': 1,
          'influenced': 1,
          'future': 1,
          'none': 1,
          'comes': 1,
          'neo': 1,
          'morpheus': 1,
          'trinity': 1,
          'rest': 1,
          'gang': 1,
          'come': 1,
          'virtual': 1,
          'world': 1,
          'nwearing': 1,
          'futuristic': 1,
          'outfits': 1,
          '1930s': 1,
          'style': 1,
          'similarities': 1,
          'two': 1,
          'countless': 1,
          'n': 1,
          'hippest': 1,
          'bravest': 1,
          'heroes': 1,
          'four': 1,
          'ones': 1,
          'willing': 1,
          'go': 1,
          'army': 1,
          'neach': 1,
          'special': 1,
          'characteristics': 1,
          'separated': 1,
          'others': 1,
          'ingenuity': 1,
          'kevin': 1,
          'costner': 1,
          'surely': 1,
          'course': 1,
          'determined': 1,
          'follow': 1,
          'matter': 1,
          'unfair': 1,
          'develops': 1,
          'beliefs': 1,
          'involving': 1,
          'law': 1,
          'shattered': 1,
          'realizes': 1,
          'trusted': 1,
          'actually': 1,
          'side': 1,
          'lose': 1,
          'stability': 1,
          'adversaries': 1,
          'begin': 1,
          'murder': 1,
          'friends': 1,
          'anger': 1,
          'becomes': 1,
          'thunderous': 1,
          'longer': 1,
          'hold': 1,
          'nsean': 1,
          'connery': 1,
          'academy': 1,
          'award': 1,
          'best': 1,
          'supporting': 1,
          'actor': 1,
          'aging': 1,
          'cop': 1,
          'decides': 1,
          'nmalone': 1,
          'acts': 1,
          'mentor': 1,
          'teaches': 1,
          'way': 1,
          'things': 1,
          'knife': 1,
          'gun': 1,
          'nconnery': 1,
          'exact': 1,
          'wit': 1,
          'experience': 1,
          'needed': 1,
          'nandy': 1,
          'garcia': 1,
          'wonderful': 1,
          'job': 1,
          'george': 1,
          'young': 1,
          'becoming': 1,
          'police': 1,
          'officer': 1,
          'teach': 1,
          'lessons': 1,
          'taught': 1,
          'ncharles': 1,
          'martin': 1,
          'smith': 1,
          'fantastic': 1,
          'attempts': 1,
          'use': 1,
          'income': 1,
          'tax': 1,
          'offense': 1,
          'nsmith': 1,
          'comic': 1,
          'relief': 1,
          'choreographed': 1,
          'ever': 1,
          'seen': 1,
          'nalso': 1,
          'similar': 1,
          'exciting': 1,
          'intense': 1,
          'westernlike': 1,
          'battle': 1,
          'famous': 1,
          'confrontation': 1,
          'steps': 1,
          'thought': 1,
          'executed': 1,
          'ingeniously': 1,
          'excitement': 1,
          'nits': 1,
          'pounding': 1,
          'drum': 1,
          'beats': 1,
          'act': 1,
          'rhythm': 1,
          'actors': 1,
          'combination': 1,
          'music': 1,
          'impressive': 1,
          'effective': 1,
          'nalthough': 1,
          'excessively': 1,
          'glorified': 1,
          'pure': 1,
          'entertainment': 1,
          'unique': 1,
          'blend': 1,
          'directing': 1,
          'nsome': 1,
          'baseball': 1,
          'bat': 1,
          'stuck': 1,
          'years': 1,
          'seeing': 1,
          'vivid': 1,
          'npos': 1}),
 Counter({'roger': 8,
          'characters': 6,
          'rabbit': 5,
          'cartoon': 5,
          'film': 4,
          'framed': 3,
          'takes': 3,
          'work': 3,
          'hoskins': 3,
          'get': 3,
          'rogers': 3,
          'rent': 2,
          'animation': 2,
          'real': 2,
          'great': 2,
          'may': 2,
          'nthe': 2,
          'mind': 2,
          'eddie': 2,
          'valiant': 2,
          'bob': 2,
          'nmaroon': 2,
          'photos': 2,
          'act': 2,
          'acme': 2,
          'toontown': 2,
          'rest': 2,
          'movie': 2,
          'way': 2,
          'judge': 2,
          'doom': 2,
          'one': 2,
          'nwho': 2,
          'williams': 2,
          'frame': 2,
          'young': 2,
          'seen': 1,
          '10': 1,
          'years': 1,
          'remembering': 1,
          'much': 1,
          'besides': 1,
          'liked': 1,
          'decided': 1,
          'recently': 1,
          'nwatching': 1,
          'struck': 1,
          'brilliant': 1,
          'naside': 1,
          'fact': 1,
          'milestone': 1,
          'movies': 1,
          'first': 1,
          'combine': 1,
          'actors': 1,
          'interact': 1,
          'make': 1,
          'convincingly': 1,
          'entertainment': 1,
          'also': 1,
          'quite': 1,
          'effective': 1,
          'comedymystery': 1,
          'nwhile': 1,
          'plot': 1,
          'somewhat': 1,
          'familiar': 1,
          'original': 1,
          'especially': 1,
          'baby': 1,
          'herman': 1,
          'watching': 1,
          'together': 1,
          'lot': 1,
          'fun': 1,
          'story': 1,
          'begins': 1,
          'hollywood': 1,
          '1947': 1,
          'ncartoon': 1,
          'star': 1,
          'blowing': 1,
          'trouble': 1,
          'keeping': 1,
          'hardboiled': 1,
          'private': 1,
          'detective': 1,
          'called': 1,
          'studio': 1,
          'head': 1,
          'r': 1,
          'k': 1,
          'alan': 1,
          'tilvern': 1,
          'try': 1,
          'help': 1,
          'back': 1,
          'thinks': 1,
          'wife': 1,
          'jessicas': 1,
          'possible': 1,
          'unfaithfulness': 1,
          'might': 1,
          'cause': 1,
          'distraction': 1,
          'tells': 1,
          'costs': 1,
          'money': 1,
          'reshoots': 1,
          'nvaliant': 1,
          'jessica': 1,
          'playing': 1,
          'patty': 1,
          'cake': 1,
          'marvin': 1,
          'stubby': 1,
          'kaye': 1,
          'owner': 1,
          'live': 1,
          'maroon': 1,
          'nupon': 1,
          'seeing': 1,
          'emotionally': 1,
          'destroyed': 1,
          'soon': 1,
          'found': 1,
          'dead': 1,
          'prime': 1,
          'suspect': 1,
          'follows': 1,
          'run': 1,
          'around': 1,
          'town': 1,
          'eventually': 1,
          'trying': 1,
          'clear': 1,
          'good': 1,
          'name': 1,
          'nalong': 1,
          'meet': 1,
          'christopher': 1,
          'lloyd': 1,
          'judgejuryand': 1,
          'executioner': 1,
          'type': 1,
          'whos': 1,
          'discovered': 1,
          'kill': 1,
          'toon': 1,
          '4': 1,
          'academy': 1,
          'awards': 1,
          'including': 1,
          'special': 1,
          'achievement': 1,
          'award': 1,
          'richard': 1,
          'direction': 1,
          'creation': 1,
          'teams': 1,
          'went': 1,
          'hand': 1,
          'drew': 1,
          'ndirector': 1,
          'robert': 1,
          'zemekis': 1,
          'must': 1,
          'given': 1,
          'equal': 1,
          'amount': 1,
          'praise': 1,
          'overseeing': 1,
          'entire': 1,
          'production': 1,
          'included': 1,
          'hundreds': 1,
          'animators': 1,
          'nalso': 1,
          'performance': 1,
          'credited': 1,
          'nhe': 1,
          'addition': 1,
          'human': 1,
          'cast': 1,
          'finds': 1,
          'right': 1,
          'note': 1,
          'play': 1,
          'scenes': 1,
          'costars': 1,
          'naccording': 1,
          'internet': 1,
          'database': 1,
          'studied': 1,
          'daughter': 1,
          'learn': 1,
          'imaginary': 1,
          'guess': 1,
          'hard': 1,
          'paid': 1,
          'rare': 1,
          'none': 1,
          'presented': 1,
          'challenge': 1,
          'filmmakers': 1,
          'enjoyed': 1,
          'whole': 1,
          'family': 1,
          'although': 1,
          'viewers': 1,
          'little': 1,
          'scared': 1,
          'ndo': 1,
          'favor': 1,
          'ppppplease': 1,
          'npos': 1}),
 Counter({'stahl': 7,
          'permanent': 6,
          'midnight': 6,
          'stiller': 5,
          'theres': 3,
          'something': 3,
          'successful': 3,
          'film': 3,
          'nstiller': 2,
          'playing': 2,
          'called': 2,
          'jerry': 2,
          'one': 2,
          'writer': 2,
          'pushes': 2,
          'like': 2,
          'trainspotting': 2,
          'nthe': 2,
          'appears': 2,
          'em': 2,
          'n': 2,
          'hollywood': 2,
          '000aweek': 2,
          'tv': 2,
          'heroin': 2,
          'habit': 2,
          'stahls': 2,
          'words': 2,
          'performance': 2,
          'drug': 2,
          'burroughs': 2,
          'nstahl': 2,
          'time': 2,
          'around': 2,
          'ben': 1,
          'makes': 1,
          'popular': 1,
          'choice': 1,
          'among': 1,
          'casting': 1,
          'directors': 1,
          'days': 1,
          'currently': 1,
          'three': 1,
          'projects': 1,
          'circulation': 1,
          'actor': 1,
          'lay': 1,
          'claim': 1,
          'nhes': 1,
          'mary': 1,
          'still': 1,
          'havent': 1,
          'seen': 1,
          'nand': 1,
          'hes': 1,
          'acerbic': 1,
          'friends': 1,
          'neighbors': 1,
          'talkative': 1,
          'sexuallyfrustrated': 1,
          'drama': 1,
          'coach': 1,
          'jerri': 1,
          'nnow': 1,
          'plays': 1,
          'another': 1,
          'heroinaddicted': 1,
          'television': 1,
          'last': 1,
          'name': 1,
          'ntheres': 1,
          'also': 1,
          'industry': 1,
          'bankable': 1,
          'stars': 1,
          'drugaddiction': 1,
          'pictures': 1,
          'minute': 1,
          'theyve': 1,
          'proved': 1,
          'commercially': 1,
          'newan': 1,
          'mcgregor': 1,
          'springs': 1,
          'mind': 1,
          'turns': 1,
          'emma': 1,
          'brassed': 1,
          'received': 1,
          'greater': 1,
          'respect': 1,
          'admiration': 1,
          'mindblowing': 1,
          'realization': 1,
          'renton': 1,
          'danny': 1,
          'boyles': 1,
          'transatlantic': 1,
          'junkfest': 1,
          'philosophy': 1,
          'simple': 1,
          'want': 1,
          'taken': 1,
          'seriously': 1,
          'make': 1,
          'drugs': 1,
          'based': 1,
          'true': 1,
          'life': 1,
          'experiences': 1,
          'mideighties': 1,
          '5': 1,
          'job': 1,
          'churning': 1,
          'plotlines': 1,
          'disposable': 1,
          'sitcoms': 1,
          '6': 1,
          'na': 1,
          'size': 1,
          'utah': 1,
          'nas': 1,
          'contributes': 1,
          'commanding': 1,
          'nunlike': 1,
          'ways': 1,
          'chronicling': 1,
          'highs': 1,
          'lows': 1,
          'abuse': 1,
          'instead': 1,
          'focuses': 1,
          'concept': 1,
          'addiction': 1,
          'maintenance': 1,
          'none': 1,
          'earliest': 1,
          'observations': 1,
          'casual': 1,
          'reference': 1,
          'naked': 1,
          'lunch': 1,
          'author': 1,
          'william': 1,
          'asked': 1,
          'shoots': 1,
          'first': 1,
          'thing': 1,
          'morning': 1,
          'responds': 1,
          'shave': 1,
          'rarely': 1,
          'puncturing': 1,
          'veins': 1,
          'thrill': 1,
          'talk': 1,
          'mother': 1,
          'phone': 1,
          'show': 1,
          'work': 1,
          'even': 1,
          'pay': 1,
          'bills': 1,
          'nwhile': 1,
          'occasionally': 1,
          'wobbles': 1,
          'along': 1,
          'writing': 1,
          'adapted': 1,
          'autobiography': 1,
          'director': 1,
          'david': 1,
          'veloz': 1,
          'controlled': 1,
          'pointed': 1,
          'shows': 1,
          'moved': 1,
          'new': 1,
          'york': 1,
          'l': 1,
          'toagain': 1,
          'authors': 1,
          'escape': 1,
          'scene': 1,
          'yeah': 1,
          'right': 1,
          'entered': 1,
          'convenient': 1,
          'marriage': 1,
          'british': 1,
          'exec': 1,
          'elizabeth': 1,
          'hurley': 1,
          'impossibly': 1,
          'polite': 1,
          'youd': 1,
          'swear': 1,
          'single': 1,
          'profanity': 1,
          'dubbed': 1,
          'conceived': 1,
          'child': 1,
          'random': 1,
          'hirings': 1,
          'firings': 1,
          'narrates': 1,
          'motel': 1,
          'bedroom': 1,
          'sympathetic': 1,
          'lover': 1,
          'kitty': 1,
          'norristowns': 1,
          'maria': 1,
          'bello': 1,
          'spent': 1,
          'rehab': 1,
          'njaneane': 1,
          'garofalo': 1,
          'wastedand': 1,
          'miscastas': 1,
          'heavilybespectacled': 1,
          'talent': 1,
          'agent': 1,
          'fails': 1,
          'get': 1,
          'hooks': 1,
          'dopedup': 1,
          'wordsmith': 1,
          'thats': 1,
          'jaded': 1,
          'clinic': 1,
          'counselor': 1,
          'unshaven': 1,
          'take': 1,
          'note': 1,
          'lots': 1,
          'mascara': 1,
          'eyes': 1,
          'stumble': 1,
          'looking': 1,
          'train': 1,
          'wreck': 1,
          'credit': 1,
          'never': 1,
          'pillpopping': 1,
          'needlejabbing': 1,
          'top': 1,
          'ubiquitous': 1,
          'reason': 1,
          'see': 1,
          'dark': 1,
          'comic': 1,
          'strangely': 1,
          'absorbing': 1,
          'study': 1,
          'assisted': 1,
          'living': 1,
          'npos': 1}),
 Counter({'film': 5,
          'gibson': 3,
          'ransom': 3,
          'played': 3,
          'sinise': 3,
          'movie': 3,
          'performance': 2,
          'ngibson': 2,
          'tom': 2,
          'forrest': 2,
          'gump': 2,
          'kidnap': 2,
          'nthe': 2,
          'plot': 2,
          'makes': 2,
          'nbut': 2,
          'phones': 2,
          'phil': 1,
          'curtolo': 1,
          'mel': 1,
          'braveheart': 1,
          'gave': 1,
          'gripping': 1,
          'father': 1,
          'young': 1,
          'kidnapped': 1,
          'boy': 1,
          'ron': 1,
          'howards': 1,
          'plays': 1,
          'mullen': 1,
          'wealthy': 1,
          'business': 1,
          'tycoon': 1,
          'whose': 1,
          'past': 1,
          'actions': 1,
          'coming': 1,
          'back': 1,
          'haunt': 1,
          'deranged': 1,
          'psychopath': 1,
          'gary': 1,
          'band': 1,
          'lowlife': 1,
          'thugs': 1,
          'son': 1,
          '2': 1,
          'million': 1,
          'ntom': 1,
          'wife': 1,
          'kate': 1,
          'rene': 1,
          'russo': 1,
          'tin': 1,
          'cup': 1,
          'instructed': 1,
          'inform': 1,
          'police': 1,
          'contacted': 1,
          'fbi': 1,
          'nminutes': 1,
          'later': 1,
          'elite': 1,
          'team': 1,
          'agents': 1,
          'led': 1,
          'delroy': 1,
          'lindo': 1,
          'broken': 1,
          'arrow': 1,
          'toms': 1,
          'house': 1,
          'wiring': 1,
          'every': 1,
          'phone': 1,
          'sounds': 1,
          'average': 1,
          'like': 1,
          'movies': 1,
          'youve': 1,
          'already': 1,
          'seen': 1,
          'nothing': 1,
          'nthat': 1,
          'halfway': 1,
          'nsuddenly': 1,
          'goes': 1,
          'fox': 1,
          '5': 1,
          'news': 1,
          'room': 1,
          'live': 1,
          'broadcast': 1,
          'saying': 1,
          'close': 1,
          'ever': 1,
          'get': 1,
          'ninstead': 1,
          'offering': 1,
          'money': 1,
          'reward': 1,
          'head': 1,
          'dead': 1,
          'alive': 1,
          'nat': 1,
          'point': 1,
          'thickened': 1,
          'unusually': 1,
          'slow': 1,
          'start': 1,
          'turned': 1,
          'suspensefilled': 1,
          'action': 1,
          'great': 1,
          'stunts': 1,
          'last': 1,
          'half': 1,
          'well': 1,
          'done': 1,
          'nanother': 1,
          'thing': 1,
          'carries': 1,
          'superb': 1,
          'performances': 1,
          'collide': 1,
          'game': 1,
          'wits': 1,
          'cellular': 1,
          'nowen': 1,
          'gleiberman': 1,
          'entertainment': 1,
          'weekly': 1,
          'commented': 1,
          'subject': 1,
          'wonder': 1,
          'kidnappers': 1,
          'cell': 1,
          'nbefore': 1,
          'mostly': 1,
          'good': 1,
          'guys': 1,
          'first': 1,
          'mice': 1,
          'men': 1,
          'recently': 1,
          'apollo': 1,
          '13': 1,
          'surprisingly': 1,
          'devilish': 1,
          'cold': 1,
          'portrayal': 1,
          'copgonebad': 1,
          'course': 1,
          'oscarworthy': 1,
          'nalthough': 1,
          'scenes': 1,
          'quite': 1,
          'predictable': 1,
          'entertaining': 1,
          'suspenseful': 1,
          'n': 1,
          'npos': 1}),
 Counter({'film': 10,
          'trek': 8,
          'baku': 8,
          'star': 7,
          'series': 4,
          'nthe': 3,
          'first': 3,
          'special': 3,
          'effects': 3,
          'ni': 3,
          'ninsurrection': 3,
          'sona': 3,
          'deal': 3,
          'federation': 3,
          'one': 2,
          'movie': 2,
          'nsometimes': 2,
          'exception': 2,
          'little': 2,
          'insurrection': 2,
          'actually': 2,
          'really': 2,
          'exciting': 2,
          'next': 2,
          'say': 2,
          'light': 2,
          'episode': 2,
          'us': 2,
          'race': 2,
          'people': 2,
          'old': 2,
          'rings': 2,
          'planet': 2,
          'abraham': 2,
          'move': 2,
          'keep': 2,
          'picard': 2,
          'also': 2,
          'characters': 2,
          'nthis': 2,
          'order': 2,
          'enjoy': 2,
          'good': 2,
          'like': 2,
          'moral': 2,
          'big': 2,
          'observe': 1,
          'expect': 1,
          'see': 1,
          'serious': 1,
          'science': 1,
          'fiction': 1,
          'purpose': 1,
          'provide': 1,
          'flashy': 1,
          'innocent': 1,
          'fun': 1,
          'stories': 1,
          'compelling': 1,
          'theyre': 1,
          'nbut': 1,
          'provides': 1,
          'endless': 1,
          'shots': 1,
          'amazed': 1,
          'faces': 1,
          'ive': 1,
          'never': 1,
          'bored': 1,
          'enterprises': 1,
          'numerous': 1,
          'missions': 1,
          'nstar': 1,
          'gotten': 1,
          'negative': 1,
          'reviews': 1,
          'friend': 1,
          'mine': 1,
          'thinks': 1,
          'worst': 1,
          'im': 1,
          'sure': 1,
          'nits': 1,
          'often': 1,
          'hilarious': 1,
          'engaged': 1,
          'left': 1,
          'ready': 1,
          'nsome': 1,
          'bit': 1,
          'long': 1,
          'nothers': 1,
          'cheesy': 1,
          'boring': 1,
          'simply': 1,
          'enjoyed': 1,
          'second': 1,
          'feature': 1,
          'strictly': 1,
          'generation': 1,
          'cast': 1,
          'introduces': 1,
          'called': 1,
          'three': 1,
          'hundred': 1,
          'years': 1,
          'appear': 1,
          'younger': 1,
          'age': 1,
          'due': 1,
          'strange': 1,
          'radiation': 1,
          'nof': 1,
          'course': 1,
          'peaceful': 1,
          'cant': 1,
          'horde': 1,
          'fountain': 1,
          'youth': 1,
          'leave': 1,
          'archenemies': 1,
          'led': 1,
          'ruafo': 1,
          'f': 1,
          'nmurray': 1,
          'mess': 1,
          'everything': 1,
          'horribly': 1,
          'disfigured': 1,
          'rely': 1,
          'daily': 1,
          'reconstructive': 1,
          'surgery': 1,
          'aesthetically': 1,
          'acceptable': 1,
          'strike': 1,
          'elsewhere': 1,
          'exploit': 1,
          'secret': 1,
          'dying': 1,
          'nthats': 1,
          'captain': 1,
          'patrick': 1,
          'stewart': 1,
          'steps': 1,
          'realizes': 1,
          'moving': 1,
          'would': 1,
          'kill': 1,
          'helps': 1,
          'falls': 1,
          'love': 1,
          'woman': 1,
          'donna': 1,
          'murphy': 1,
          'nso': 1,
          'trusty': 1,
          'crew': 1,
          'defies': 1,
          'natural': 1,
          'habitat': 1,
          'nwhen': 1,
          'dealing': 1,
          'much': 1,
          'history': 1,
          'entirely': 1,
          'necessary': 1,
          'reintroduce': 1,
          'believe': 1,
          'nonfans': 1,
          'hard': 1,
          'time': 1,
          'getting': 1,
          'understand': 1,
          'approach': 1,
          'however': 1,
          'surprisingly': 1,
          'job': 1,
          'new': 1,
          'aspects': 1,
          'nstewart': 1,
          'bold': 1,
          'always': 1,
          'magnetic': 1,
          'screen': 1,
          'presence': 1,
          'perfectly': 1,
          'capable': 1,
          'holding': 1,
          'entire': 1,
          'together': 1,
          'njonathan': 1,
          'frakes': 1,
          'directed': 1,
          'funny': 1,
          'commander': 1,
          'riker': 1,
          'subplot': 1,
          'data': 1,
          'brent': 1,
          'spiner': 1,
          'discovering': 1,
          'lost': 1,
          'childhood': 1,
          'fairly': 1,
          'interesting': 1,
          'makes': 1,
          'perfect': 1,
          'villain': 1,
          'overacting': 1,
          'crazy': 1,
          'nfrakes': 1,
          'showed': 1,
          'similar': 1,
          'aptitude': 1,
          'direction': 1,
          'contact': 1,
          'attractive': 1,
          'lot': 1,
          'action': 1,
          'apparently': 1,
          'utilize': 1,
          'computer': 1,
          'animation': 1,
          'result': 1,
          'pleasing': 1,
          'eye': 1,
          'particularly': 1,
          'climactic': 1,
          'scenes': 1,
          'employ': 1,
          'giant': 1,
          'space': 1,
          'ship': 1,
          'suck': 1,
          'clean': 1,
          'impressively': 1,
          'sharp': 1,
          'look': 1,
          'nif': 1,
          'complaint': 1,
          'tries': 1,
          'take': 1,
          'stance': 1,
          'appropriate': 1,
          'dont': 1,
          'think': 1,
          'wanted': 1,
          '600': 1,
          'save': 1,
          'lives': 1,
          'thousands': 1,
          'nbetter': 1,
          'yet': 1,
          'couldnt': 1,
          'coexisted': 1,
          'feels': 1,
          'spring': 1,
          'kinds': 1,
          'questions': 1,
          'audience': 1,
          'nwith': 1,
          'inherent': 1,
          'camp': 1,
          'factor': 1,
          'doesnt': 1,
          'seem': 1,
          'wellequipped': 1,
          'issues': 1,
          'prefer': 1,
          'spectacle': 1,
          'npos': 1}),
 Counter({'cable': 8,
          'guy': 7,
          'rather': 4,
          'steven': 4,
          'carrey': 3,
          'nthe': 3,
          'didnt': 3,
          'like': 3,
          'movie': 3,
          'stevens': 3,
          'whole': 2,
          'characters': 2,
          'darker': 2,
          'nas': 2,
          'film': 2,
          'critics': 2,
          'time': 2,
          'really': 2,
          'fact': 2,
          'hbo': 2,
          'every': 2,
          'day': 2,
          'nand': 2,
          'relationship': 2,
          'girlfriend': 2,
          'think': 2,
          'friend': 2,
          'nalso': 2,
          'thats': 2,
          'scenes': 2,
          'karaoke': 2,
          'jam': 2,
          'liar': 2,
          'comes': 2,
          'wait': 2,
          'fully': 1,
          'loaded': 1,
          'entertainment': 1,
          'review': 1,
          'website': 1,
          'coming': 1,
          'july': 1,
          'nfrom': 1,
          'ace': 1,
          'ventura': 1,
          'truman': 1,
          'burbank': 1,
          'jim': 1,
          'run': 1,
          'gamut': 1,
          'comic': 1,
          'yet': 1,
          'sympathetic': 1,
          'n1996s': 1,
          'supposed': 1,
          'big': 1,
          'breakthrough': 1,
          'role': 1,
          'zany': 1,
          'humor': 1,
          'dramatic': 1,
          'acting': 1,
          'everyone': 1,
          'knows': 1,
          'results': 1,
          'well': 1,
          'lessthanstellar': 1,
          'nnot': 1,
          'hot': 1,
          'box': 1,
          'office': 1,
          'also': 1,
          'panned': 1,
          'far': 1,
          'know': 1,
          'gene': 1,
          'siskel': 1,
          'ones': 1,
          'willing': 1,
          'admit': 1,
          'dug': 1,
          'first': 1,
          'saw': 1,
          'theatres': 1,
          'super': 1,
          'criticmode': 1,
          'nhowever': 1,
          'due': 1,
          'shows': 1,
          'single': 1,
          'ive': 1,
          'lean': 1,
          'back': 1,
          'relax': 1,
          'take': 1,
          'surprise': 1,
          'grew': 1,
          'plot': 1,
          'simple': 1,
          'broderick': 1,
          'plays': 1,
          'named': 1,
          'befriends': 1,
          'played': 1,
          'stalked': 1,
          'tries': 1,
          'break': 1,
          'nsee': 1,
          'problems': 1,
          'robin': 1,
          'leslie': 1,
          'mann': 1,
          'doesnt': 1,
          'room': 1,
          'life': 1,
          'new': 1,
          'guys': 1,
          'antics': 1,
          'creeping': 1,
          'ncarrey': 1,
          'gives': 1,
          'various': 1,
          'aliases': 1,
          'later': 1,
          'find': 1,
          'tv': 1,
          'larry': 1,
          'tate': 1,
          'chip': 1,
          'douglas': 1,
          'ricky': 1,
          'ricardo': 1,
          'etc': 1,
          'apparently': 1,
          'lives': 1,
          'van': 1,
          'many': 1,
          'enjoy': 1,
          'newer': 1,
          'lessmanic': 1,
          'performance': 1,
          'thought': 1,
          'interesting': 1,
          'welldone': 1,
          'nfor': 1,
          'enjoyable': 1,
          'several': 1,
          'individual': 1,
          'apartment': 1,
          'medieval': 1,
          'fight': 1,
          'theme': 1,
          'restaurant': 1,
          'bathroom': 1,
          'beating': 1,
          'la': 1,
          'name': 1,
          'nperhaps': 1,
          'carreys': 1,
          'humorous': 1,
          'side': 1,
          'makes': 1,
          'funny': 1,
          'want': 1,
          'see': 1,
          'something': 1,
          'youve': 1,
          'got': 1,
          'hear': 1,
          'version': 1,
          'jefferson': 1,
          'airplanes': 1,
          'somebody': 1,
          'love': 1,
          'sung': 1,
          'aformentioned': 1,
          'bad': 1,
          'spots': 1,
          'ni': 1,
          'particularly': 1,
          'felt': 1,
          'focus': 1,
          'used': 1,
          'best': 1,
          'ending': 1,
          'fooled': 1,
          'moment': 1,
          'contrived': 1,
          'somewhat': 1,
          'dissapointing': 1,
          'nstill': 1,
          'found': 1,
          'worthwhile': 1,
          'venture': 1,
          'youre': 1,
          'video': 1,
          'store': 1,
          'cant': 1,
          'anything': 1,
          'rent': 1,
          'suggest': 1,
          'try': 1,
          'till': 1,
          'wont': 1,
          'long': 1,
          'nhell': 1,
          'npos': 1}),
 Counter({'bulworth': 11,
          'film': 11,
          'n': 10,
          'hes': 6,
          'political': 5,
          'funny': 4,
          'beatty': 4,
          'ni': 4,
          'also': 3,
          'character': 3,
          'care': 3,
          'story': 3,
          'nthe': 3,
          'politics': 3,
          'work': 3,
          'adds': 3,
          'satire': 2,
          'recent': 2,
          'didnt': 2,
          'intelligent': 2,
          'nbulworth': 2,
          'far': 2,
          'nits': 2,
          'picture': 2,
          'like': 2,
          'democratic': 2,
          'see': 2,
          'television': 2,
          'almost': 2,
          'goes': 2,
          'weekend': 2,
          'platt': 2,
          'speech': 2,
          'people': 2,
          'suddenly': 2,
          'doesnt': 2,
          'isnt': 2,
          'man': 2,
          'nina': 2,
          'despite': 2,
          'way': 2,
          'although': 2,
          'fun': 2,
          'much': 2,
          'watch': 2,
          'always': 2,
          'good': 2,
          'supporting': 2,
          'may': 2,
          'offensive': 2,
          'ended': 1,
          'allowed': 1,
          'sigh': 1,
          'relief': 1,
          'possible': 1,
          'enjoy': 1,
          'nthere': 1,
          'several': 1,
          'films': 1,
          'whole': 1,
          'lot': 1,
          'wag': 1,
          'dog': 1,
          'instance': 1,
          'found': 1,
          'heartless': 1,
          'primary': 1,
          'colors': 1,
          'unbearable': 1,
          'unwatchable': 1,
          'awfulness': 1,
          'better': 1,
          'execution': 1,
          'lasting': 1,
          'impression': 1,
          'tremendously': 1,
          'emotional': 1,
          'center': 1,
          'writerdirectorstar': 1,
          'warren': 1,
          'allows': 1,
          'audience': 1,
          'identify': 1,
          'turn': 1,
          'actually': 1,
          'nbeatty': 1,
          'plays': 1,
          'incumbent': 1,
          'senator': 1,
          'jay': 1,
          'billington': 1,
          'opens': 1,
          'sobbing': 1,
          'watches': 1,
          'spots': 1,
          'nhe': 1,
          'hasnt': 1,
          'slept': 1,
          'days': 1,
          'eaten': 1,
          'instantaneously': 1,
          'insane': 1,
          'stark': 1,
          'raving': 1,
          'mad': 1,
          'outright': 1,
          'anyway': 1,
          'definitely': 1,
          'bonkers': 1,
          'final': 1,
          'campaign': 1,
          'assistant': 1,
          'murphy': 1,
          'oliver': 1,
          'written': 1,
          'feed': 1,
          'group': 1,
          'black': 1,
          'church': 1,
          'ghetto': 1,
          'begins': 1,
          'track': 1,
          'starts': 1,
          'honest': 1,
          'mean': 1,
          'one': 1,
          'lady': 1,
          'asks': 1,
          'party': 1,
          'african': 1,
          'american': 1,
          'community': 1,
          'well': 1,
          'shouts': 1,
          'laughing': 1,
          'obvious': 1,
          'propelled': 1,
          'device': 1,
          'puts': 1,
          'contract': 1,
          'life': 1,
          'muses': 1,
          'later': 1,
          'bad': 1,
          'thing': 1,
          'make': 1,
          'decisions': 1,
          'youre': 1,
          'suicidal': 1,
          'keeps': 1,
          'seeing': 1,
          'sunglasses': 1,
          'graham': 1,
          'beckel': 1,
          'believes': 1,
          'hitman': 1,
          'meets': 1,
          'halle': 1,
          'berry': 1,
          'becomes': 1,
          'infatuated': 1,
          'short': 1,
          'span': 1,
          'bulworths': 1,
          'nononsense': 1,
          'truth': 1,
          'methods': 1,
          'become': 1,
          'national': 1,
          'sensation': 1,
          'shoots': 1,
          'ahead': 1,
          'polls': 1,
          'fact': 1,
          'appearing': 1,
          'wearing': 1,
          'gang': 1,
          'clothes': 1,
          'spewing': 1,
          'profanity': 1,
          'coherent': 1,
          'sentences': 1,
          'nbeattys': 1,
          'sides': 1,
          'camera': 1,
          'excellent': 1,
          'nhis': 1,
          'script': 1,
          'direction': 1,
          'extremely': 1,
          'sharp': 1,
          'surprisingly': 1,
          'strong': 1,
          'characterization': 1,
          'nhere': 1,
          'whos': 1,
          'reached': 1,
          'limit': 1,
          'lashing': 1,
          'back': 1,
          'screwing': 1,
          'entire': 1,
          'structure': 1,
          'take': 1,
          'clear': 1,
          'shot': 1,
          'parties': 1,
          'affiliations': 1,
          'general': 1,
          'everything': 1,
          'run': 1,
          'rich': 1,
          'antirich': 1,
          'sentiments': 1,
          'get': 1,
          'bit': 1,
          'tiresome': 1,
          'end': 1,
          'nsome': 1,
          'segments': 1,
          'simply': 1,
          'hilarious': 1,
          'lengthy': 1,
          'rap': 1,
          'delivers': 1,
          'luncheon': 1,
          'dedicated': 1,
          'nmuch': 1,
          'completely': 1,
          'absurd': 1,
          'thats': 1,
          'part': 1,
          'angry': 1,
          'serious': 1,
          'core': 1,
          'package': 1,
          'created': 1,
          'accessible': 1,
          'attempts': 1,
          'genre': 1,
          'nwhat': 1,
          'feeling': 1,
          'beattys': 1,
          'portrayal': 1,
          'performance': 1,
          'deserves': 1,
          'recognition': 1,
          'higher': 1,
          'scale': 1,
          'subtle': 1,
          'ways': 1,
          'flesh': 1,
          'without': 1,
          'dialogue': 1,
          'hugely': 1,
          'noticeable': 1,
          'actions': 1,
          'shortcomings': 1,
          'human': 1,
          'entirely': 1,
          'sympathetic': 1,
          'likable': 1,
          'beginning': 1,
          'cast': 1,
          'vast': 1,
          'colorful': 1,
          'nberry': 1,
          'luminous': 1,
          'repertoire': 1,
          'solid': 1,
          'roles': 1,
          'ndon': 1,
          'cheadle': 1,
          'role': 1,
          'drug': 1,
          'dealer': 1,
          'uses': 1,
          'guntoting': 1,
          'toddlers': 1,
          'dirty': 1,
          'noliver': 1,
          'actor': 1,
          'careful': 1,
          'someday': 1,
          'fear': 1,
          'induce': 1,
          'heart': 1,
          'attack': 1,
          'intensity': 1,
          'acting': 1,
          'though': 1,
          'paul': 1,
          'sorvino': 1,
          'southern': 1,
          'accent': 1,
          'list': 1,
          'mastered': 1,
          'inflections': 1,
          'nis': 1,
          'suppose': 1,
          'wasnt': 1,
          'offended': 1,
          'hardly': 1,
          'think': 1,
          'find': 1,
          'blindsided': 1,
          'honesty': 1,
          'perfect': 1,
          'course': 1,
          'ending': 1,
          'quite': 1,
          'scenes': 1,
          'feel': 1,
          'forced': 1,
          'eclectic': 1,
          'dance': 1,
          'sequence': 1,
          'fantastic': 1,
          'nbut': 1,
          'minor': 1,
          'quibbles': 1,
          'otherwise': 1,
          'brilliant': 1,
          'smart': 1,
          'uproariously': 1,
          'proves': 1,
          'scratch': 1,
          'deeper': 1,
          'surface': 1,
          'npos': 1}),
 Counter({'stretch': 12,
          'spoon': 11,
          'get': 8,
          'gridlockd': 7,
          'eyes': 6,
          'shakur': 6,
          'nthe': 5,
          'nin': 5,
          'drug': 5,
          'characters': 4,
          'police': 3,
          'play': 3,
          'roth': 3,
          'cookie': 3,
          'new': 3,
          'years': 3,
          'time': 3,
          'enough': 3,
          'hall': 3,
          'day': 3,
          'falling': 3,
          'expect': 3,
          'world': 3,
          'much': 3,
          'plays': 3,
          'life': 3,
          'films': 2,
          'screen': 2,
          'going': 2,
          'chance': 2,
          'could': 2,
          'social': 2,
          'make': 2,
          'pure': 2,
          'talent': 2,
          'two': 2,
          'addiction': 2,
          'living': 2,
          'rehab': 2,
          'also': 2,
          'find': 2,
          'clean': 2,
          'government': 2,
          'might': 2,
          'vondie': 2,
          'curtis': 2,
          'odyssey': 2,
          'urban': 2,
          'entire': 2,
          'case': 2,
          'another': 2,
          'system': 2,
          'dfens': 2,
          'none': 2,
          'moments': 2,
          'nhall': 2,
          'perhaps': 2,
          'stretchs': 2,
          'dreper': 2,
          'scene': 2,
          'scares': 2,
          'events': 2,
          'seen': 2,
          'call': 1,
          '911': 1,
          'cliche': 1,
          'must': 1,
          'window': 1,
          'soul': 1,
          'finest': 1,
          'actors': 1,
          'working': 1,
          'command': 1,
          'gaze': 1,
          'paul': 1,
          'newman': 1,
          'ralph': 1,
          'fiennes': 1,
          'anthony': 1,
          'hopkins': 1,
          'morgan': 1,
          'freeman': 1,
          'nyou': 1,
          'look': 1,
          'men': 1,
          'tell': 1,
          'without': 1,
          'saying': 1,
          'word': 1,
          'something': 1,
          'minds': 1,
          'real': 1,
          'human': 1,
          'beings': 1,
          'nwe': 1,
          'never': 1,
          'discover': 1,
          'tupac': 1,
          'great': 1,
          'actor': 1,
          'unique': 1,
          'quality': 1,
          'oddly': 1,
          'effective': 1,
          'combination': 1,
          'gritty': 1,
          'drama': 1,
          'satire': 1,
          'costar': 1,
          'tim': 1,
          'take': 1,
          'sketchy': 1,
          'exciting': 1,
          'watch': 1,
          'energy': 1,
          'chemistry': 1,
          'nshakur': 1,
          'ezekiel': 1,
          'whitmore': 1,
          'alexander': 1,
          'rome': 1,
          'detroit': 1,
          'buddies': 1,
          'share': 1,
          'spoken': 1,
          'wordjazz': 1,
          'trio': 1,
          'apartment': 1,
          'thandie': 1,
          'newton': 1,
          'nwhen': 1,
          'eve': 1,
          'party': 1,
          'ends': 1,
          'comatose': 1,
          'overdose': 1,
          'begin': 1,
          'wonder': 1,
          'borrowed': 1,
          'nthey': 1,
          'soon': 1,
          'resolution': 1,
          'proves': 1,
          'easier': 1,
          'said': 1,
          'done': 1,
          'nas': 1,
          'though': 1,
          'temptation': 1,
          'fix': 1,
          'hindrance': 1,
          'attempts': 1,
          'hitting': 1,
          'road': 1,
          'block': 1,
          'bureaucracy': 1,
          'confusion': 1,
          'red': 1,
          'tape': 1,
          'least': 1,
          'obstacles': 1,
          'however': 1,
          'suspects': 1,
          'murder': 1,
          'dealer': 1,
          'run': 1,
          'nasty': 1,
          'thug': 1,
          'order': 1,
          'buy': 1,
          'accept': 1,
          'surreal': 1,
          'rather': 1,
          'realism': 1,
          'unless': 1,
          'sleep': 1,
          'hospital': 1,
          'bringing': 1,
          'offices': 1,
          'thankful': 1,
          'help': 1,
          'ngridlockd': 1,
          'may': 1,
          'actually': 1,
          'response': 1,
          'fatuous': 1,
          'commentary': 1,
          '1991s': 1,
          'found': 1,
          'besieged': 1,
          'middle': 1,
          'class': 1,
          'white': 1,
          'male': 1,
          'venting': 1,
          'righteous': 1,
          'anger': 1,
          'trek': 1,
          'inner': 1,
          'city': 1,
          'los': 1,
          'angeles': 1,
          'michael': 1,
          'douglas': 1,
          'personalized': 1,
          'license': 1,
          'plate': 1,
          'echoed': 1,
          'lord': 1,
          'drepers': 1,
          'plates': 1,
          'whips': 1,
          'gun': 1,
          'cant': 1,
          'breakfast': 1,
          'mcdonalds': 1,
          'unarmed': 1,
          'demands': 1,
          'placed': 1,
          'center': 1,
          'nand': 1,
          'unhinged': 1,
          'became': 1,
          'heroic': 1,
          'surrogate': 1,
          'audiences': 1,
          'writerdirector': 1,
          'refuses': 1,
          'let': 1,
          'hook': 1,
          'part': 1,
          'situation': 1,
          'bureaucrat': 1,
          'responds': 1,
          'tirade': 1,
          'question': 1,
          'stop': 1,
          'nbecause': 1,
          'picked': 1,
          '_today_': 1,
          'frustrating': 1,
          'cathartic': 1,
          'yield': 1,
          'easy': 1,
          'answers': 1,
          'interesting': 1,
          'things': 1,
          'say': 1,
          'na': 1,
          'significant': 1,
          'chunk': 1,
          'devoted': 1,
          'flight': 1,
          'subplots': 1,
          'serve': 1,
          'thoroughly': 1,
          'predictable': 1,
          'one': 1,
          'getting': 1,
          'chummy': 1,
          'officer': 1,
          'presents': 1,
          'old': 1,
          'chestnut': 1,
          'mistakenlysuspected': 1,
          'heroes': 1,
          'public': 1,
          'place': 1,
          'watching': 1,
          'television': 1,
          'news': 1,
          'report': 1,
          'crime': 1,
          'shows': 1,
          'pictures': 1,
          'sequence': 1,
          'seems': 1,
          'designed': 1,
          'merely': 1,
          'excuse': 1,
          'running': 1,
          'primary': 1,
          'plot': 1,
          'standing': 1,
          'line': 1,
          'sitting': 1,
          'gratuitous': 1,
          'inserts': 1,
          'paraphernalia': 1,
          'flashbacks': 1,
          'main': 1,
          'making': 1,
          'particular': 1,
          'effort': 1,
          'point': 1,
          'wasting': 1,
          'selfdestructive': 1,
          'behavior': 1,
          'noh': 1,
          'irony': 1,
          'ntupac': 1,
          'made': 1,
          'career': 1,
          'music': 1,
          'movies': 1,
          'playing': 1,
          'hard': 1,
          'back': 1,
          'gets': 1,
          'someone': 1,
          'way': 1,
          'go': 1,
          'know': 1,
          'nspoon': 1,
          'idea': 1,
          'character': 1,
          'best': 1,
          'written': 1,
          'displays': 1,
          'intelligence': 1,
          'survival': 1,
          'instinct': 1,
          'struggle': 1,
          'nmostly': 1,
          'comes': 1,
          'hardness': 1,
          'infamous': 1,
          'gangsta': 1,
          'nit': 1,
          'conscience': 1,
          'appetite': 1,
          'gleeful': 1,
          'selfdestructiveness': 1,
          'reveals': 1,
          'hiv': 1,
          'positive': 1,
          'even': 1,
          'preparing': 1,
          'shoot': 1,
          'obstacle': 1,
          'spoons': 1,
          'goal': 1,
          'agency': 1,
          'enemy': 1,
          'ngridlockds': 1,
          'cruelly': 1,
          'comic': 1,
          'finds': 1,
          'helping': 1,
          'emergency': 1,
          'room': 1,
          'repeatedly': 1,
          'stabbing': 1,
          'tiny': 1,
          'pocket': 1,
          'knife': 1,
          'becomes': 1,
          'appropriate': 1,
          'symbol': 1,
          'company': 1,
          'keeps': 1,
          'slowly': 1,
          'drained': 1,
          'nwith': 1,
          'friends': 1,
          'like': 1,
          'doesnt': 1,
          'need': 1,
          'enemies': 1,
          'looks': 1,
          'tired': 1,
          'man': 1,
          'tragedy': 1,
          'wont': 1,
          'chances': 1,
          'see': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          'film': 6,
          'day': 3,
          'story': 3,
          'bank': 3,
          'gets': 3,
          'john': 3,
          'early': 3,
          'star': 3,
          'trek': 3,
          'scene': 3,
          'budget': 2,
          'comedy': 2,
          'life': 2,
          'two': 2,
          'spend': 2,
          'premise': 2,
          'still': 2,
          'get': 2,
          'half': 2,
          'zoe': 2,
          'french': 2,
          'art': 2,
          'writerdirector': 2,
          'failed': 2,
          'job': 2,
          'go': 2,
          'pulp': 2,
          'fiction': 2,
          'nin': 2,
          'road': 2,
          'wellville': 2,
          'boyle': 2,
          'doesnt': 2,
          'bowels': 2,
          'nhe': 2,
          'many': 2,
          'direction': 2,
          'nwhat': 2,
          'ends': 2,
          'cant': 2,
          'scifi': 2,
          'else': 2,
          'ndirector': 2,
          'fans': 2,
          'james': 2,
          'interesting': 2,
          'costars': 2,
          'generations': 2,
          'best': 2,
          'goes': 2,
          '34th': 2,
          'street': 2,
          'claus': 2,
          'nothing': 2,
          'expect': 2,
          'hilarious': 1,
          'ultralow': 1,
          'school': 1,
          'dropout': 1,
          'kevin': 1,
          'smith': 1,
          'chronicles': 1,
          'convenience': 1,
          'store': 1,
          'slackers': 1,
          'brian': 1,
          'ohalloran': 1,
          'jeff': 1,
          'anderson': 1,
          'nthey': 1,
          'ignoring': 1,
          'customers': 1,
          'discussing': 1,
          'everything': 1,
          'fellatio': 1,
          'selffulfillment': 1,
          'strictly': 1,
          'sitcom': 1,
          'photography': 1,
          'grainy': 1,
          'getout': 1,
          'could': 1,
          'ten': 1,
          'times': 1,
          'films': 1,
          'reported': 1,
          '27': 1,
          '000': 1,
          'dialogue': 1,
          'good': 1,
          'noriginally': 1,
          'rated': 1,
          'nc17': 1,
          'language': 1,
          'nnot': 1,
          'recommended': 1,
          'viewers': 1,
          'sensitive': 1,
          'ears': 1,
          'nkilling': 1,
          'nremake': 1,
          'reservoir': 1,
          'dogs': 1,
          'youre': 1,
          'halfway': 1,
          'killing': 1,
          'roger': 1,
          'avarys': 1,
          'slowmoving': 1,
          'bastille': 1,
          'robbery': 1,
          'neric': 1,
          'stoltz': 1,
          'stars': 1,
          'american': 1,
          'paris': 1,
          'way': 1,
          'head': 1,
          'hooks': 1,
          'band': 1,
          'nihilistic': 1,
          'robbers': 1,
          'nhes': 1,
          'safecracker': 1,
          'whos': 1,
          'blissful': 1,
          'unaware': 1,
          'botch': 1,
          'word': 1,
          'nthough': 1,
          'intriguing': 1,
          'fronts': 1,
          'paced': 1,
          'speed': 1,
          'avary': 1,
          'cowrote': 1,
          'quentin': 1,
          'tarantino': 1,
          'english': 1,
          'nbased': 1,
          'novel': 1,
          'coraghessan': 1,
          'far': 1,
          'nbowels': 1,
          'explored': 1,
          'dr': 1,
          'harvey': 1,
          'kellogg': 1,
          'bucktoothed': 1,
          'bespectacled': 1,
          'anthony': 1,
          'hopkins': 1,
          '1900s': 1,
          'advocated': 1,
          'abstinence': 1,
          'vegetarianism': 1,
          'frequent': 1,
          'defecation': 1,
          'also': 1,
          'invented': 1,
          'cornflake': 1,
          'nreally': 1,
          'ncheckingin': 1,
          'kelloggs': 1,
          'battle': 1,
          'creek': 1,
          'sanitarium': 1,
          'matthew': 1,
          'broderick': 1,
          'bridget': 1,
          'fonda': 1,
          'wellknown': 1,
          'faces': 1,
          'nleave': 1,
          'laughter': 1,
          'door': 1,
          'marvel': 1,
          'unfunny': 1,
          'antics': 1,
          'cusack': 1,
          'michael': 1,
          'lerner': 1,
          'lara': 1,
          'flynn': 1,
          'neville': 1,
          'dana': 1,
          'carvey': 1,
          'impeccable': 1,
          'sequences': 1,
          'amusing': 1,
          'novelty': 1,
          'quickly': 1,
          'wears': 1,
          'alan': 1,
          'parkers': 1,
          'tries': 1,
          'darnedness': 1,
          'turn': 1,
          'doodoo': 1,
          'drama': 1,
          'something': 1,
          'print': 1,
          'nphew': 1,
          'nstargate': 1,
          'nlawrence': 1,
          'arabia': 1,
          'meets': 1,
          'wars': 1,
          'nthis': 1,
          'epic': 1,
          'sheer': 1,
          'spectacle': 1,
          'anything': 1,
          'roland': 1,
          'emmerich': 1,
          'universal': 1,
          'solider': 1,
          'shamelessly': 1,
          'rips': 1,
          'lucas': 1,
          'spielberg': 1,
          'cosmic': 1,
          'cliche': 1,
          'lay': 1,
          'hands': 1,
          'overlong': 1,
          'characters': 1,
          'cardboard': 1,
          'script': 1,
          'filled': 1,
          'laughable': 1,
          'details': 1,
          'modern': 1,
          'history': 1,
          'nthat': 1,
          'said': 1,
          'theres': 1,
          'plenty': 1,
          'watch': 1,
          'nscifi': 1,
          'enjoy': 1,
          'sculpted': 1,
          'sands': 1,
          'morphing': 1,
          'headdresses': 1,
          'surprisingly': 1,
          'spunky': 1,
          'spader': 1,
          'plays': 1,
          'egyptologist': 1,
          'prove': 1,
          'theory': 1,
          'somebody': 1,
          'built': 1,
          'pyramids': 1,
          'nless': 1,
          'kurt': 1,
          'russell': 1,
          'jaye': 1,
          'davidson': 1,
          'crying': 1,
          'game': 1,
          'fame': 1,
          'nstar': 1,
          'ntrek': 1,
          'may': 1,
          'forgiving': 1,
          'rest': 1,
          'us': 1,
          'sluggish': 1,
          'mixed': 1,
          'bag': 1,
          'long': 1,
          'cast': 1,
          'earnest': 1,
          'lacks': 1,
          'punch': 1,
          'nand': 1,
          'n': 1,
          'example': 1,
          'latter': 1,
          'klingon': 1,
          'comeuppance': 1,
          'delivers': 1,
          'none': 1,
          'impact': 1,
          'similar': 1,
          'ii': 1,
          'noriginal': 1,
          'enterprise': 1,
          'captain': 1,
          'kirk': 1,
          'appears': 1,
          'though': 1,
          'cut': 1,
          'shatner': 1,
          'turns': 1,
          'screen': 1,
          'plead': 1,
          'nremarkably': 1,
          'unremarkable': 1,
          'nmiracle': 1,
          'season': 1,
          'specialist': 1,
          'et': 1,
          'al': 1,
          'maybe': 1,
          'remake': 1,
          'miracle': 1,
          'necessary': 1,
          'njohn': 1,
          'hughes': 1,
          'certainly': 1,
          'believes': 1,
          'santa': 1,
          'les': 1,
          'mayfielddirected': 1,
          'production': 1,
          'tarnish': 1,
          'memory': 1,
          '1947': 1,
          'original': 1,
          'romance': 1,
          'dylan': 1,
          'mcdermott': 1,
          'elizabeth': 1,
          'perkins': 1,
          'work': 1,
          'well': 1,
          'makes': 1,
          'strong': 1,
          'case': 1,
          'richard': 1,
          'attenborough': 1,
          'definitive': 1,
          'kriss': 1,
          'kringle': 1,
          'nhis': 1,
          'chemistry': 1,
          'children': 1,
          'moisten': 1,
          'eye': 1,
          'nno': 1,
          'alarm': 1,
          'njunior': 1,
          'narnold': 1,
          'schwarzenegger': 1,
          'pregnant': 1,
          'nsure': 1,
          'billy': 1,
          'crystal': 1,
          'rabbit': 1,
          'test': 1,
          'sight': 1,
          'schwarz': 1,
          'bulging': 1,
          'belly': 1,
          'casting': 1,
          'coup': 1,
          'comparable': 1,
          'dustin': 1,
          'hoffman': 1,
          'tootsie': 1,
          'onejoke': 1,
          'actually': 1,
          'better': 1,
          'along': 1,
          'ivan': 1,
          'reitman': 1,
          'dave': 1,
          'twins': 1,
          'wisely': 1,
          'keeps': 1,
          'farce': 1,
          'minimum': 1,
          'first': 1,
          'hour': 1,
          'moves': 1,
          'slower': 1,
          'might': 1,
          'ndont': 1,
          'yuks': 1,
          'danny': 1,
          'devito': 1,
          'beat': 1,
          'romantic': 1,
          'scenes': 1,
          'emma': 1,
          'arnie': 1,
          'nhows': 1,
          'collision': 1,
          'acting': 1,
          'styles': 1,
          'npos': 1}),
 Counter({'music': 5,
          'film': 5,
          'time': 4,
          'audience': 3,
          'watching': 3,
          'nthe': 3,
          'one': 3,
          'band': 3,
          'love': 3,
          'minutes': 3,
          'us': 2,
          'monterey': 2,
          'pop': 2,
          'otis': 2,
          'redding': 2,
          'jimi': 2,
          'hendrix': 2,
          'janis': 2,
          'joplin': 2,
          'mamas': 2,
          'papas': 2,
          'reveal': 2,
          'ending': 2,
          'concert': 2,
          'show': 2,
          'seats': 2,
          'moments': 2,
          'get': 2,
          'nand': 2,
          'nits': 2,
          'nall': 2,
          'bands': 2,
          'still': 2,
          'screen': 2,
          'thats': 2,
          'much': 2,
          'stuck': 2,
          'werent': 1,
          'yet': 1,
          'born': 1,
          '1960s': 1,
          'rock': 1,
          'n': 1,
          'rolled': 1,
          'around': 1,
          'affords': 1,
          'affectionate': 1,
          'glimpse': 1,
          'influenced': 1,
          'parents': 1,
          'hippies': 1,
          'nfrom': 1,
          'jefferson': 1,
          'airplane': 1,
          'documentary': 1,
          'jampacked': 1,
          'contagious': 1,
          'energy': 1,
          'nbut': 1,
          'give': 1,
          'fair': 1,
          'warning': 1,
          'rest': 1,
          'justice': 1,
          'deserves': 1,
          'nshot': 1,
          '1969': 1,
          'outdoor': 1,
          'precluded': 1,
          'woodstock': 1,
          'defies': 1,
          'stereotype': 1,
          'general': 1,
          'population': 1,
          'nsure': 1,
          'painted': 1,
          'faces': 1,
          'smoke': 1,
          'joints': 1,
          'npennebaker': 1,
          'war': 1,
          'room': 1,
          'moon': 1,
          'broadway': 1,
          'surprisingly': 1,
          'chooses': 1,
          'broad': 1,
          'spectrum': 1,
          'nno': 1,
          'matter': 1,
          'comes': 1,
          'back': 1,
          'talented': 1,
          'musicians': 1,
          'stir': 1,
          'soul': 1,
          'excitement': 1,
          'starts': 1,
          'even': 1,
          'begins': 1,
          'na': 1,
          'young': 1,
          'girl': 1,
          'cleaning': 1,
          'thousands': 1,
          'asked': 1,
          'interviewer': 1,
          'replies': 1,
          'feels': 1,
          'lucky': 1,
          'nthere': 1,
          'organized': 1,
          'craziness': 1,
          'john': 1,
          'phillips': 1,
          'leader': 1,
          'organizers': 1,
          'tries': 1,
          'touch': 1,
          'dionne': 1,
          'warwick': 1,
          'tuning': 1,
          'member': 1,
          'remarks': 1,
          'finally': 1,
          'decent': 1,
          'sound': 1,
          'system': 1,
          'nyou': 1,
          'tell': 1,
          'first': 1,
          'isnt': 1,
          'vanity': 1,
          'playing': 1,
          'appreciation': 1,
          'twoway': 1,
          'street': 1,
          'nthis': 1,
          'interaction': 1,
          'performer': 1,
          'continues': 1,
          'throughout': 1,
          'becomes': 1,
          'infectious': 1,
          'impossible': 1,
          'tear': 1,
          'eyes': 1,
          'away': 1,
          'belts': 1,
          'ballad': 1,
          'ball': 1,
          'chain': 1,
          'lyrics': 1,
          'wild': 1,
          'thing': 1,
          'may': 1,
          'complicated': 1,
          'mime': 1,
          'sex': 1,
          'guitar': 1,
          'captivating': 1,
          'singing': 1,
          'neven': 1,
          'dont': 1,
          'recognize': 1,
          'every': 1,
          'see': 1,
          'stage': 1,
          'imagine': 1,
          'enthralled': 1,
          'work': 1,
          'public': 1,
          'sitting': 1,
          'drawback': 1,
          'unfortunately': 1,
          'must': 1,
          'big': 1,
          'names': 1,
          'today': 1,
          'got': 1,
          'approximately': 1,
          '7': 1,
          '10': 1,
          'nin': 1,
          'contrast': 1,
          'last': 1,
          'camera': 1,
          'wholly': 1,
          'forgettable': 1,
          'gets': 1,
          'entire': 1,
          '18': 1,
          'nfor': 1,
          '78': 1,
          'long': 1,
          'large': 1,
          'chunk': 1,
          'especially': 1,
          'previous': 1,
          'acts': 1,
          'stimulating': 1,
          'precious': 1,
          'rare': 1,
          'look': 1,
          'period': 1,
          'holds': 1,
          'sway': 1,
          'variety': 1,
          'well': 1,
          'beautifully': 1,
          'shot': 1,
          'performances': 1,
          'easy': 1,
          'become': 1,
          'immersed': 1,
          'nif': 1,
          'ever': 1,
          'question': 1,
          'popular': 1,
          'quickly': 1,
          'dispelled': 1,
          'almost': 1,
          'depressing': 1,
          'think': 1,
          'moving': 1,
          'doesnt': 1,
          'made': 1,
          'anymore': 1,
          'ninstead': 1,
          'nsync': 1,
          'backstreet': 1,
          'boys': 1,
          'jennifer': 1,
          'lopez': 1,
          'modeling': 1,
          'npos': 1}),
 Counter({'film': 17,
          'would': 8,
          'scorsese': 6,
          'criminal': 6,
          'ironic': 6,
          'years': 5,
          'best': 5,
          'played': 5,
          'effective': 5,
          'among': 5,
          'mafia': 4,
          'goodfellas': 4,
          'life': 4,
          'hill': 4,
          'violence': 4,
          'make': 4,
          'characters': 4,
          'great': 4,
          'another': 3,
          'organised': 3,
          'crime': 3,
          'influence': 3,
          'new': 3,
          'black': 3,
          'films': 3,
          '1990s': 3,
          'henry': 3,
          'gradually': 3,
          'de': 3,
          'friends': 3,
          'drug': 3,
          'nscorsese': 3,
          'also': 3,
          'truly': 3,
          'scenes': 3,
          'soundtrack': 3,
          'shots': 3,
          'became': 3,
          'popular': 3,
          'narrator': 3,
          'character': 3,
          'coppolas': 2,
          'loyalty': 2,
          'vision': 2,
          'mean': 2,
          'streets': 2,
          'dealt': 2,
          'movies': 2,
          'later': 2,
          'york': 2,
          'american': 2,
          'nthis': 2,
          'one': 2,
          'ngoodfellas': 2,
          'based': 2,
          'book': 2,
          'screenplay': 2,
          'nthe': 2,
          'liotta': 2,
          'gets': 2,
          'sorvino': 2,
          'nafter': 2,
          'couple': 2,
          'tommy': 2,
          'pesci': 2,
          'robert': 2,
          'niro': 2,
          'history': 2,
          'connected': 2,
          'future': 2,
          'wife': 2,
          'karen': 2,
          'bracco': 2,
          'afterwards': 2,
          'husband': 2,
          'despite': 2,
          'nbut': 2,
          'apart': 2,
          'homicidal': 2,
          'excellent': 2,
          'represents': 2,
          'work': 2,
          'full': 2,
          'talented': 2,
          'filmmaker': 2,
          'paranoia': 2,
          'manages': 2,
          'funny': 2,
          'two': 2,
          'audience': 2,
          'material': 2,
          'bloodshed': 2,
          'humour': 2,
          'talents': 2,
          'original': 2,
          'structure': 2,
          'plot': 2,
          'used': 2,
          'instead': 2,
          'distance': 2,
          'choice': 2,
          'times': 2,
          'songs': 2,
          'large': 2,
          'although': 2,
          'doesnt': 2,
          'element': 2,
          'supporting': 2,
          'memorable': 2,
          'hand': 2,
          'common': 1,
          'many': 1,
          'cases': 1,
          'complaint': 1,
          'francis': 1,
          'ford': 1,
          '1972': 1,
          'masterpiece': 1,
          'godfather': 1,
          'glamorising': 1,
          'presented': 1,
          'institution': 1,
          'guided': 1,
          'ancient': 1,
          'tradition': 1,
          'virtues': 1,
          'like': 1,
          'honour': 1,
          'solidarity': 1,
          'suitable': 1,
          'gentler': 1,
          'kinder': 1,
          'ages': 1,
          'nmartin': 1,
          'italoamerican': 1,
          'moviemaker': 1,
          'confronted': 1,
          'perspective': 1,
          'downtoearth': 1,
          '1973': 1,
          'movie': 1,
          'lower': 1,
          'echelons': 1,
          'nunfortunately': 1,
          'unspectacular': 1,
          'artsy': 1,
          'compete': 1,
          'portrayals': 1,
          'nseventeen': 1,
          'returned': 1,
          'darker': 1,
          'side': 1,
          'epic': 1,
          'comedy': 1,
          'today': 1,
          'considered': 1,
          'influential': 1,
          'owes': 1,
          'initial': 1,
          'success': 1,
          'popularity': 1,
          'fact': 1,
          'true': 1,
          'story': 1,
          'told': 1,
          'bestseller': 1,
          'wiseguy': 1,
          'nicholas': 1,
          'pileggi': 1,
          'cowrite': 1,
          'well': 1,
          'chronicled': 1,
          'thirty': 1,
          'ray': 1,
          'irishitalian': 1,
          'nat': 1,
          'age': 1,
          '13': 1,
          'recruited': 1,
          'organisation': 1,
          'paulie': 1,
          'cicero': 1,
          'paul': 1,
          'local': 1,
          'mob': 1,
          'boss': 1,
          'climbs': 1,
          'ladder': 1,
          'starting': 1,
          'small': 1,
          'errands': 1,
          'together': 1,
          'childhood': 1,
          'friend': 1,
          'vito': 1,
          'joe': 1,
          'joins': 1,
          'crew': 1,
          'expert': 1,
          'thieves': 1,
          'led': 1,
          'jimmy': 1,
          'conway': 1,
          'nthree': 1,
          'spend': 1,
          'associates': 1,
          'gathering': 1,
          'enormous': 1,
          'wealth': 1,
          'enterprises': 1,
          'culminate': 1,
          'spectacular': 1,
          'robberies': 1,
          'nwealth': 1,
          'privileges': 1,
          'men': 1,
          'enough': 1,
          'seduce': 1,
          'lorraine': 1,
          'remain': 1,
          'loyal': 1,
          'infidelities': 1,
          'domestic': 1,
          'abuse': 1,
          'arrests': 1,
          'even': 1,
          'accomplice': 1,
          'private': 1,
          'dealing': 1,
          'business': 1,
          'perfect': 1,
          'world': 1,
          'wiseguys': 1,
          'begins': 1,
          'fall': 1,
          'tommys': 1,
          'unpredictable': 1,
          'outbursts': 1,
          'jimmys': 1,
          'reluctance': 1,
          'share': 1,
          'part': 1,
          'loot': 1,
          'partners': 1,
          'finally': 1,
          'henrys': 1,
          'habit': 1,
          'lead': 1,
          'downfall': 1,
          'question': 1,
          'example': 1,
          'genius': 1,
          'glory': 1,
          'managed': 1,
          'create': 1,
          'complete': 1,
          'contradictions': 1,
          'ripped': 1,
          'hands': 1,
          'less': 1,
          'nworld': 1,
          'depicted': 1,
          'ordinary': 1,
          'fascinating': 1,
          'spares': 1,
          'effort': 1,
          'show': 1,
          'us': 1,
          'hypocrisy': 1,
          'inherent': 1,
          'yet': 1,
          'seductive': 1,
          'exposed': 1,
          'half': 1,
          'hours': 1,
          'three': 1,
          'decades': 1,
          'notorious': 1,
          'real': 1,
          'events': 1,
          'understands': 1,
          'chose': 1,
          'dangerous': 1,
          'paths': 1,
          'trading': 1,
          'superficial': 1,
          'shortlasting': 1,
          'glamour': 1,
          'prosperity': 1,
          'dullness': 1,
          'poverty': 1,
          'honest': 1,
          'citizens': 1,
          'break': 1,
          'viewers': 1,
          'moralistic': 1,
          'inhibitions': 1,
          'showing': 1,
          'revolting': 1,
          'depict': 1,
          'personal': 1,
          'tragedies': 1,
          'broken': 1,
          'homes': 1,
          'human': 1,
          'depravity': 1,
          'murder': 1,
          'uncompromising': 1,
          'reality': 1,
          'manner': 1,
          'amusing': 1,
          'nwith': 1,
          'use': 1,
          'manipulative': 1,
          'dialogue': 1,
          'narrators': 1,
          'commentary': 1,
          'standards': 1,
          'tarantino': 1,
          'era': 1,
          'neven': 1,
          'dont': 1,
          'pay': 1,
          'attention': 1,
          'skills': 1,
          'potentially': 1,
          'disturbing': 1,
          'becomes': 1,
          'eye': 1,
          'pleasing': 1,
          'entertaining': 1,
          'admit': 1,
          'displays': 1,
          'creative': 1,
          'nfirst': 1,
          'might': 1,
          'notice': 1,
          'unusual': 1,
          'relatively': 1,
          'minor': 1,
          'subplot': 1,
          'prologue': 1,
          'nthen': 1,
          'single': 1,
          'switches': 1,
          'second': 1,
          'middle': 1,
          'switch': 1,
          'back': 1,
          'shortly': 1,
          'multiple': 1,
          'points': 1,
          'views': 1,
          'terms': 1,
          'narration': 1,
          'various': 1,
          'subjective': 1,
          'lengthens': 1,
          'towards': 1,
          'situation': 1,
          'nsame': 1,
          'comes': 1,
          'extremely': 1,
          'nnostalgia': 1,
          'good': 1,
          'old': 1,
          'illustrated': 1,
          'easylistening': 1,
          '1950s': 1,
          'pop': 1,
          'depression': 1,
          'bad': 1,
          'find': 1,
          'expression': 1,
          'neurotic': 1,
          'rock': 1,
          'late': 1,
          '1960s': 1,
          '1970s': 1,
          'comment': 1,
          'almost': 1,
          'pastoral': 1,
          'easy': 1,
          'listening': 1,
          'tunes': 1,
          'strong': 1,
          'contrast': 1,
          'nhowever': 1,
          'thing': 1,
          'associated': 1,
          'continuos': 1,
          'feature': 1,
          'moving': 1,
          'rooms': 1,
          'interacting': 1,
          'dozens': 1,
          'hundreds': 1,
          'people': 1,
          'nsuch': 1,
          'require': 1,
          'skill': 1,
          'patience': 1,
          'shootings': 1,
          'directors': 1,
          'nfragmentary': 1,
          'straight': 1,
          'bases': 1,
          'series': 1,
          'loosely': 1,
          'vignettes': 1,
          'gives': 1,
          'interesting': 1,
          'opportunity': 1,
          'nhe': 1,
          'uses': 1,
          'experiment': 1,
          'successful': 1,
          'experiments': 1,
          'hilarious': 1,
          'day': 1,
          'segment': 1,
          'near': 1,
          'end': 1,
          'nanother': 1,
          'essential': 1,
          'superb': 1,
          'collection': 1,
          'acting': 1,
          'respectable': 1,
          'happen': 1,
          'quiet': 1,
          'businesslike': 1,
          'member': 1,
          'trio': 1,
          'overshadowed': 1,
          'colleagues': 1,
          'njoe': 1,
          'deserved': 1,
          'oscar': 1,
          'role': 1,
          'psychopath': 1,
          'lines': 1,
          'including': 1,
          'adlibs': 1,
          'probably': 1,
          'represent': 1,
          'nray': 1,
          'equally': 1,
          'perhaps': 1,
          'look': 1,
          'nominal': 1,
          'hero': 1,
          'nliottas': 1,
          'looks': 1,
          'somewhat': 1,
          'hollywoodised': 1,
          'glamorous': 1,
          'bunch': 1,
          'lowlevel': 1,
          'street': 1,
          'thugs': 1,
          'nliotta': 1,
          'improves': 1,
          'general': 1,
          'impression': 1,
          'realistic': 1,
          'menacing': 1,
          'portrayal': 1,
          'addiction': 1,
          'nlorraine': 1,
          'believable': 1,
          'descends': 1,
          'moral': 1,
          'cesspool': 1,
          'npaul': 1,
          'patriarch': 1,
          'mafioso': 1,
          'cast': 1,
          'chuck': 1,
          'low': 1,
          'pestering': 1,
          'smalltime': 1,
          'gangster': 1,
          'unknowingly': 1,
          'digs': 1,
          'grave': 1,
          'nas': 1,
          'combination': 1,
          'clever': 1,
          'sociological': 1,
          'study': 1,
          'innovative': 1,
          'filmmaking': 1,
          'something': 1,
          'could': 1,
          'art': 1,
          'entertainment': 1,
          'time': 1,
          'nbecause': 1,
          'achievement': 1,
          'filmmakers': 1,
          'cinematic': 1,
          'gem': 1,
          'deserves': 1,
          'rightful': 1,
          'place': 1,
          'npos': 1}),
 Counter({'blair': 14,
          'witch': 14,
          'film': 12,
          'project': 8,
          'nthe': 8,
          'first': 8,
          'sequel': 5,
          'movie': 5,
          'woods': 5,
          'book': 4,
          'different': 4,
          'story': 4,
          'nin': 4,
          'original': 4,
          'one': 3,
          'nits': 3,
          'nafter': 3,
          'get': 3,
          'hysteria': 3,
          'strange': 3,
          'lost': 3,
          'nbut': 3,
          'simply': 3,
          'n': 3,
          'incredibly': 3,
          'shadows': 3,
          'less': 3,
          'doesnt': 3,
          'completely': 2,
          'even': 2,
          'horror': 2,
          'success': 2,
          'practically': 2,
          'small': 2,
          'town': 2,
          'business': 2,
          'like': 2,
          'nthere': 2,
          'people': 2,
          'back': 2,
          'nthis': 2,
          'experience': 2,
          'nthey': 2,
          'time': 2,
          'nightmares': 2,
          'soon': 2,
          'berlinger': 2,
          'background': 2,
          'opening': 2,
          'similar': 2,
          'ground': 2,
          'makes': 2,
          'way': 2,
          'important': 2,
          'acting': 2,
          'cinematography': 2,
          'look': 2,
          'nand': 2,
          'obviously': 2,
          'predecessor': 2,
          'imagination': 2,
          'effect': 2,
          'artistic': 2,
          'bad': 2,
          'certainly': 2,
          'films': 2,
          'perhaps': 1,
          'kind': 1,
          'unique': 1,
          'played': 1,
          'merit': 1,
          'managing': 1,
          'scare': 1,
          'experienced': 1,
          'fans': 1,
          'senses': 1,
          'made': 1,
          'inevitable': 1,
          'suspect': 1,
          'anyone': 1,
          'much': 1,
          'wanted': 1,
          'release': 1,
          'tourists': 1,
          'invaded': 1,
          'burkettsville': 1,
          'order': 1,
          'glimpse': 1,
          'nlocals': 1,
          'turned': 1,
          'mass': 1,
          'great': 1,
          'opportunity': 1,
          'selling': 1,
          'twigsculptures': 1,
          'stones': 1,
          'dirt': 1,
          'exasperated': 1,
          'local': 1,
          'sheriff': 1,
          'patrols': 1,
          'bullhorn': 1,
          'shouting': 1,
          'go': 1,
          'home': 1,
          'goddamned': 1,
          'njeff': 1,
          'used': 1,
          'sudden': 1,
          'popularity': 1,
          'advantage': 1,
          'got': 1,
          'released': 1,
          'mental': 1,
          'institution': 1,
          'created': 1,
          'mobile': 1,
          'attracts': 1,
          'thousands': 1,
          'customers': 1,
          'internet': 1,
          'nas': 1,
          'starts': 1,
          'leading': 1,
          'groups': 1,
          'hunt': 1,
          'namong': 1,
          'five': 1,
          'strangers': 1,
          'stephen': 1,
          'girlfriend': 1,
          'pregnant': 1,
          'tristen': 1,
          'writing': 1,
          'caused': 1,
          'called': 1,
          'history': 1,
          'kim': 1,
          'dresses': 1,
          'black': 1,
          'psychic': 1,
          'powers': 1,
          'last': 1,
          'member': 1,
          'crew': 1,
          'erica': 1,
          'young': 1,
          'beautiful': 1,
          'witchwannabe': 1,
          'constantly': 1,
          'quotes': 1,
          'wiccan': 1,
          'lore': 1,
          'saying': 1,
          'rule': 1,
          'wicca': 1,
          'harm': 1,
          'whatever': 1,
          'come': 1,
          'threefold': 1,
          'group': 1,
          'plunges': 1,
          'begin': 1,
          'argue': 1,
          'approaches': 1,
          'non': 1,
          'night': 1,
          'decide': 1,
          'spend': 1,
          'stars': 1,
          'amidst': 1,
          'ruins': 1,
          'parrs': 1,
          'abandoned': 1,
          'house': 1,
          'things': 1,
          'start': 1,
          'happening': 1,
          'nwhen': 1,
          'wake': 1,
          'equipment': 1,
          'gone': 1,
          'tapes': 1,
          'remain': 1,
          'discover': 1,
          'markings': 1,
          'bodies': 1,
          'somehow': 1,
          'loops': 1,
          'uncontrollably': 1,
          'forth': 1,
          'haunted': 1,
          'hallucinations': 1,
          'horrible': 1,
          'see': 1,
          'difference': 1,
          'dreams': 1,
          'reality': 1,
          'thing': 1,
          'sure': 1,
          'brought': 1,
          'something': 1,
          'someone': 1,
          'ndocumentary': 1,
          'director': 1,
          'joe': 1,
          'paradice': 1,
          'helms': 1,
          '2': 1,
          'leaving': 1,
          'creators': 1,
          'dan': 1,
          'myrick': 1,
          'ed': 1,
          'sanches': 1,
          'scenesthe': 1,
          'documentary': 1,
          'showing': 1,
          'townspeople': 1,
          'affected': 1,
          'promising': 1,
          'approach': 1,
          'instead': 1,
          'trying': 1,
          'cover': 1,
          'goes': 1,
          'outside': 1,
          'stand': 1,
          'gets': 1,
          'confused': 1,
          'sidetracked': 1,
          'never': 1,
          'resolved': 1,
          'ends': 1,
          'anticlimaxic': 1,
          'epilogue': 1,
          'typical': 1,
          'hollywood': 1,
          'nmore': 1,
          'money': 1,
          'spent': 1,
          'worked': 1,
          'doomed': 1,
          'fail': 1,
          'suspense': 1,
          'could': 1,
          'repeated': 1,
          'nof': 1,
          'course': 1,
          'situations': 1,
          'quantity': 1,
          'quality': 1,
          'profit': 1,
          'artistical': 1,
          'values': 1,
          'nfrom': 1,
          'scenes': 1,
          'camera': 1,
          'gracefully': 1,
          'panes': 1,
          'bloodyred': 1,
          'forest': 1,
          'carter': 1,
          'burwells': 1,
          'john': 1,
          'malkovich': 1,
          'fargo': 1,
          'musical': 1,
          'score': 1,
          'realize': 1,
          'exception': 1,
          'title': 1,
          'absolutely': 1,
          'nothing': 1,
          'nwas': 1,
          'filmed': 1,
          'handheld': 1,
          'videocameras': 1,
          'nfeatured': 1,
          'mostly': 1,
          'based': 1,
          'improvisation': 1,
          'technical': 1,
          'aspect': 1,
          'close': 1,
          'perfection': 1,
          'creating': 1,
          'atmosphere': 1,
          'nwith': 1,
          'graceful': 1,
          'production': 1,
          'design': 1,
          'flashy': 1,
          'editing': 1,
          'polished': 1,
          'impossible': 1,
          'associate': 1,
          'installment': 1,
          'though': 1,
          'directs': 1,
          'energy': 1,
          'pace': 1,
          'adrenaline': 1,
          'rush': 1,
          'body': 1,
          'couple': 1,
          'times': 1,
          'misunderstood': 1,
          'nature': 1,
          'key': 1,
          'simplicity': 1,
          'simple': 1,
          'nthat': 1,
          'allowed': 1,
          'audience': 1,
          'fill': 1,
          'gaps': 1,
          'empty': 1,
          'screen': 1,
          'projected': 1,
          'frightening': 1,
          'powerful': 1,
          'lasting': 1,
          'entir': 1,
          'e': 1,
          'everyone': 1,
          'feels': 1,
          'controlled': 1,
          'restrict': 1,
          'nhere': 1,
          'little': 1,
          'left': 1,
          'complex': 1,
          'clever': 1,
          'screenwriters': 1,
          'conclusion': 1,
          'satisfied': 1,
          'talent': 1,
          'originality': 1,
          'nit': 1,
          'resorts': 1,
          'fancy': 1,
          'special': 1,
          'effects': 1,
          'create': 1,
          'right': 1,
          'always': 1,
          'succeed': 1,
          'importantly': 1,
          'stands': 1,
          'almost': 1,
          'connection': 1,
          'allow': 1,
          'destroy': 1,
          'end': 1,
          'cant': 1,
          'call': 1,
          'effort': 1,
          'scary': 1,
          'fact': 1,
          'havent': 1,
          'seen': 1,
          'might': 1,
          'cross': 1,
          'scream': 1,
          'element': 1,
          'remains': 1,
          'constant': 1,
          'two': 1,
          'solid': 1,
          'jeffrey': 1,
          'donovan': 1,
          'tristine': 1,
          'skyler': 1,
          'mentioned': 1,
          'incredible': 1,
          'sense': 1,
          'surrealism': 1,
          'common': 1,
          'knowledge': 1,
          'exceptions': 1,
          'every': 1,
          'worse': 1,
          'worth': 1,
          'making': 1,
          'nto': 1,
          'seemed': 1,
          'completed': 1,
          'limits': 1,
          'commercial': 1,
          'assured': 1,
          'already': 1,
          'forward': 1,
          '3': 1,
          'npos': 1}),
 Counter({'film': 12,
          'city': 8,
          'nthe': 8,
          'john': 6,
          'also': 6,
          'dark': 5,
          'story': 5,
          'films': 4,
          'human': 4,
          'old': 4,
          'man': 4,
          'look': 4,
          'idea': 4,
          'appears': 4,
          'world': 4,
          'never': 4,
          'movies': 3,
          'might': 3,
          'much': 3,
          'memory': 3,
          'made': 3,
          'could': 3,
          'way': 3,
          'time': 3,
          'dont': 3,
          'begin': 3,
          'seemingly': 3,
          'fact': 3,
          'mysterious': 3,
          'know': 3,
          'either': 3,
          'nbut': 3,
          'schreber': 3,
          'emma': 3,
          'like': 3,
          'reasons': 3,
          'makes': 3,
          'able': 3,
          'real': 3,
          'aliens': 3,
          'things': 2,
          'start': 2,
          'life': 2,
          'nwith': 2,
          'nearly': 2,
          'theme': 2,
          'absolutely': 2,
          'setting': 2,
          'ntheres': 2,
          'game': 2,
          'premise': 2,
          'unlike': 2,
          'nwe': 2,
          'actually': 2,
          'whole': 2,
          'murdoch': 2,
          'whats': 2,
          'going': 2,
          'right': 2,
          'goes': 2,
          'feeling': 2,
          'nthis': 2,
          'interesting': 2,
          'follow': 2,
          'since': 2,
          'nin': 2,
          'plot': 2,
          'killer': 2,
          'hurt': 2,
          'characters': 2,
          'dr': 2,
          'connelly': 2,
          'throughout': 2,
          'nhe': 2,
          'complex': 2,
          'scenes': 2,
          'us': 2,
          'see': 2,
          'every': 2,
          'nhowever': 2,
          'come': 2,
          'humans': 2,
          'somehow': 2,
          'night': 2,
          'one': 2,
          'nfor': 2,
          'process': 2,
          'change': 2,
          'proyas': 2,
          'consistently': 2,
          'within': 2,
          'yet': 2,
          'expected': 2,
          'seems': 2,
          'seen': 1,
          'may': 1,
          '31': 1,
          '1999': 1,
          'home': 1,
          'video': 1,
          'rented': 1,
          'none': 1,
          'best': 1,
          'make': 1,
          'really': 1,
          'wonder': 1,
          'analyze': 1,
          'everyday': 1,
          'thought': 1,
          'otherwise': 1,
          'secondary': 1,
          'issue': 1,
          'get': 1,
          'entire': 1,
          'committed': 1,
          'philosophizing': 1,
          'theorizing': 1,
          'defines': 1,
          'poignant': 1,
          'beautifullyconstructed': 1,
          'kind': 1,
          'happen': 1,
          'movie': 1,
          'roleplaying': 1,
          'computer': 1,
          'called': 1,
          'ja': 1,
          'v': 1,
          'wherein': 1,
          'player': 1,
          'takes': 1,
          'role': 1,
          'cant': 1,
          'remember': 1,
          'got': 1,
          'goal': 1,
          'gather': 1,
          'many': 1,
          'clues': 1,
          'possible': 1,
          'figure': 1,
          'along': 1,
          'overcome': 1,
          'conflict': 1,
          'control': 1,
          'protagonist': 1,
          'meeting': 1,
          'ordinary': 1,
          'living': 1,
          'extremely': 1,
          'dirty': 1,
          'reality': 1,
          'isnt': 1,
          'neogothic': 1,
          'la': 1,
          'batman': 1,
          'blade': 1,
          'runner': 1,
          'fully': 1,
          'developed': 1,
          'almost': 1,
          'different': 1,
          'genre': 1,
          'completely': 1,
          'nlater': 1,
          'learn': 1,
          'name': 1,
          'sewell': 1,
          'something': 1,
          'theres': 1,
          'dead': 1,
          'body': 1,
          'corner': 1,
          'enhance': 1,
          'paranoia': 1,
          'hurried': 1,
          'call': 1,
          'telling': 1,
          'leave': 1,
          'immediately': 1,
          'chilling': 1,
          'opening': 1,
          'scene': 1,
          'alone': 1,
          'long': 1,
          'define': 1,
          'bizarre': 1,
          'horrific': 1,
          'tone': 1,
          'doesnt': 1,
          'hes': 1,
          'viewers': 1,
          'sympathize': 1,
          'identify': 1,
          'stories': 1,
          'impossible': 1,
          'history': 1,
          'character': 1,
          'feelings': 1,
          'values': 1,
          'morals': 1,
          'etc': 1,
          'weve': 1,
          'observed': 1,
          'case': 1,
          'total': 1,
          'amnesia': 1,
          'excellent': 1,
          'tool': 1,
          'towards': 1,
          'characterization': 1,
          'developing': 1,
          'mood': 1,
          'outlining': 1,
          'neventually': 1,
          'semblance': 1,
          'begins': 1,
          'unfold': 1,
          'serial': 1,
          'wanted': 1,
          'police': 1,
          'met': 1,
          'inspector': 1,
          'frank': 1,
          'bumstead': 1,
          'quiet': 1,
          'unemotional': 1,
          'softspoken': 1,
          'deadpan': 1,
          'trail': 1,
          'ntwo': 1,
          'important': 1,
          'introduced': 1,
          'daniel': 1,
          'p': 1,
          'sutherland': 1,
          'neurotic': 1,
          'psychiatrist': 1,
          'claims': 1,
          'johns': 1,
          'doctor': 1,
          'jazz': 1,
          'singer': 1,
          'dolled': 1,
          'caraciture': 1,
          'dick': 1,
          'tracy': 1,
          'serials': 1,
          'given': 1,
          'leading': 1,
          'lady': 1,
          'filmnoir': 1,
          'nit': 1,
          'contacted': 1,
          'continually': 1,
          'revealed': 1,
          'course': 1,
          'contacts': 1,
          'helps': 1,
          'reveal': 1,
          'back': 1,
          'nothing': 1,
          'fascinating': 1,
          'continual': 1,
          'confusion': 1,
          'vertigo': 1,
          'neverything': 1,
          'filmmakers': 1,
          'want': 1,
          'significance': 1,
          'considering': 1,
          'intricate': 1,
          'detail': 1,
          'single': 1,
          'shot': 1,
          'lighting': 1,
          'art': 1,
          'direction': 1,
          'overall': 1,
          'production': 1,
          'design': 1,
          'seem': 1,
          'afford': 1,
          'gratuities': 1,
          'keeping': 1,
          'reaching': 1,
          'maximum': 1,
          'potential': 1,
          'nby': 1,
          'continuing': 1,
          'wanders': 1,
          'around': 1,
          'strange': 1,
          'place': 1,
          'realize': 1,
          'hoax': 1,
          'neveryone': 1,
          'subject': 1,
          'experiment': 1,
          'conducted': 1,
          'race': 1,
          'understand': 1,
          'tick': 1,
          'efforts': 1,
          'save': 1,
          'extinction': 1,
          'tagline': 1,
          'says': 1,
          'last': 1,
          'went': 1,
          'clearly': 1,
          'explained': 1,
          'possesses': 1,
          'telekinetic': 1,
          'powers': 1,
          'pretty': 1,
          'whatever': 1,
          'mind': 1,
          'conceive': 1,
          'known': 1,
          'tuning': 1,
          'bald': 1,
          'men': 1,
          'pasty': 1,
          'skin': 1,
          'possess': 1,
          'power': 1,
          'en': 1,
          'masse': 1,
          'use': 1,
          'midnight': 1,
          'nat': 1,
          'fall': 1,
          'asleep': 1,
          'changes': 1,
          'awake': 1,
          'continue': 1,
          'left': 1,
          'new': 1,
          'certainly': 1,
          'director': 1,
          'coscreenwriter': 1,
          'alex': 1,
          'keep': 1,
          'regard': 1,
          'provide': 1,
          'explanations': 1,
          'assistant': 1,
          'strangers': 1,
          'synthesize': 1,
          'chemical': 1,
          'form': 1,
          'mix': 1,
          'match': 1,
          'memories': 1,
          'citys': 1,
          'population': 1,
          'creates': 1,
          'good': 1,
          'deal': 1,
          'deep': 1,
          'thoughtprovoking': 1,
          'philosophies': 1,
          'applied': 1,
          'errs': 1,
          'playing': 1,
          'versus': 1,
          'heart': 1,
          'person': 1,
          'main': 1,
          'closely': 1,
          'intertwined': 1,
          'murder': 1,
          'mystery': 1,
          'happened': 1,
          'go': 1,
          'emotions': 1,
          'comes': 1,
          'distant': 1,
          'static': 1,
          'cold': 1,
          'mediocre': 1,
          'performances': 1,
          'help': 1,
          'example': 1,
          'realizes': 1,
          'probably': 1,
          'wife': 1,
          'feel': 1,
          'emotional': 1,
          'bond': 1,
          'crucial': 1,
          'believe': 1,
          'genuine': 1,
          'love': 1,
          'part': 1,
          'climax': 1,
          'ending': 1,
          'nand': 1,
          'thats': 1,
          'inferring': 1,
          'quite': 1,
          'manages': 1,
          'convey': 1,
          'fullest': 1,
          'sense': 1,
          'nironically': 1,
          'first': 1,
          'crow': 1,
          'work': 1,
          'well': 1,
          'similar': 1,
          'struggling': 1,
          'find': 1,
          'hope': 1,
          'spirit': 1,
          'identical': 1,
          'twisted': 1,
          'messenger': 1,
          'mistaken': 1,
          'message': 1,
          'nstill': 1,
          'means': 1,
          'bad': 1,
          'entertaining': 1,
          'enjoyable': 1,
          'lot': 1,
          'notably': 1,
          'sheer': 1,
          'visual': 1,
          'style': 1,
          'accounts': 1,
          'least': 1,
          'half': 1,
          'tell': 1,
          'original': 1,
          'hollywood': 1,
          'years': 1,
          'ndark': 1,
          'escape': 1,
          'npos': 1}),
 Counter({'dogma': 5,
          'last': 4,
          'dogmas': 4,
          'smith': 4,
          'nits': 4,
          'one': 4,
          'films': 3,
          'point': 3,
          'bartleby': 3,
          'n': 3,
          'much': 3,
          'nothing': 2,
          'still': 2,
          'form': 2,
          'bethany': 2,
          'faith': 2,
          'heaven': 2,
          'makes': 2,
          'god': 2,
          'two': 2,
          'new': 2,
          'would': 2,
          'heard': 2,
          'silent': 2,
          'bob': 2,
          'smiths': 2,
          'nat': 2,
          'rock': 2,
          'damon': 2,
          'affleck': 2,
          'ever': 2,
          'way': 2,
          'sins': 2,
          'director': 2,
          'least': 2,
          'ndogma': 2,
          'big': 2,
          'person': 2,
          'time': 2,
          'enough': 2,
          'feel': 2,
          'movies': 2,
          'nsmith': 2,
          'also': 2,
          'ni': 2,
          'disclaimer': 2,
          'temptation': 2,
          'scorseses': 2,
          'thats': 2,
          'catholic': 2,
          'religion': 2,
          'im': 2,
          'linda': 1,
          'fiorentino': 1,
          'disappeared': 1,
          'radar': 1,
          'deservedly': 1,
          'heralded': 1,
          'turn': 1,
          'cable': 1,
          'pic': 1,
          'seduction': 1,
          'cast': 1,
          'lead': 1,
          'short': 1,
          'inexplicable': 1,
          'nshes': 1,
          'fine': 1,
          'abortion': 1,
          'clinic': 1,
          'worker': 1,
          'whos': 1,
          'lost': 1,
          'none': 1,
          'night': 1,
          'visitor': 1,
          'fiery': 1,
          'entrance': 1,
          'bethanys': 1,
          'bedroom': 1,
          'nhe': 1,
          'metatron': 1,
          'alan': 1,
          'rickman': 1,
          'voice': 1,
          'needs': 1,
          'help': 1,
          'must': 1,
          'stop': 1,
          'fallen': 1,
          'angels': 1,
          'entering': 1,
          'jersey': 1,
          'churchthe': 1,
          'fate': 1,
          'universe': 1,
          'depends': 1,
          'ngod': 1,
          'himherself': 1,
          'heshe': 1,
          'missing': 1,
          'taken': 1,
          'human': 1,
          'somewhere': 1,
          'earth': 1,
          'never': 1,
          'nbethany': 1,
          'joined': 1,
          'road': 1,
          'trip': 1,
          'garden': 1,
          'state': 1,
          'prophets': 1,
          'jay': 1,
          'jason': 1,
          'mewes': 1,
          'kevin': 1,
          'doubleduty': 1,
          'slacker': 1,
          'minstrels': 1,
          'appeared': 1,
          'thus': 1,
          'far': 1,
          'drops': 1,
          'naked': 1,
          'sky': 1,
          'rufus': 1,
          'undocumented': 1,
          'black': 1,
          'thirteenth': 1,
          'apostle': 1,
          'offers': 1,
          'assistance': 1,
          'divine': 1,
          'stripper': 1,
          'serendipity': 1,
          'salma': 1,
          'hayek': 1,
          'wild': 1,
          'ride': 1,
          'ntheyre': 1,
          'pursuit': 1,
          'loki': 1,
          'respectivelythis': 1,
          'probably': 1,
          'sharpest': 1,
          'either': 1,
          'banished': 1,
          'wisconsin': 1,
          'discovered': 1,
          'dogmatic': 1,
          'loophole': 1,
          'enable': 1,
          'return': 1,
          'nloki': 1,
          'decides': 1,
          'wreak': 1,
          'havoc': 1,
          'along': 1,
          'knowledge': 1,
          'absolved': 1,
          'pearly': 1,
          'gates': 1,
          'terrorizes': 1,
          'boardroom': 1,
          'full': 1,
          'suits': 1,
          'angry': 1,
          'combination': 1,
          'words': 1,
          'bullets': 1,
          'nasty': 1,
          'guiltily': 1,
          'enjoyable': 1,
          'little': 1,
          'scene': 1,
          'asks': 1,
          'corrupt': 1,
          'nwings': 1,
          'desire': 1,
          'aint': 1,
          'nsince': 1,
          'debuting': 1,
          'clerks': 1,
          'grown': 1,
          'particularly': 1,
          'terms': 1,
          'working': 1,
          'actors': 1,
          'chris': 1,
          'weak': 1,
          'linkbetween': 1,
          'jokes': 1,
          'hes': 1,
          'wooden': 1,
          'nhis': 1,
          'nofrills': 1,
          'visual': 1,
          'style': 1,
          'hasnt': 1,
          'changed': 1,
          'years': 1,
          'though': 1,
          'widescreen': 1,
          'compositions': 1,
          'blockbuster': 1,
          'affectations': 1,
          'writinghis': 1,
          'characters': 1,
          'sit': 1,
          'around': 1,
          'delivering': 1,
          'caustic': 1,
          'hilarious': 1,
          'speech': 1,
          'another': 1,
          'chips': 1,
          'away': 1,
          'religious': 1,
          'issuesnamely': 1,
          'hypocrisy': 1,
          'accompanies': 1,
          'organized': 1,
          'system': 1,
          'beliefseloquently': 1,
          'articulately': 1,
          'monologues': 1,
          'sound': 1,
          'like': 1,
          'blatant': 1,
          'exposition': 1,
          'nas': 1,
          'well': 1,
          'verbal': 1,
          'introduction': 1,
          'seems': 1,
          'take': 1,
          'forever': 1,
          'nany': 1,
          'movie': 1,
          'weighty': 1,
          'talk': 1,
          'hard': 1,
          'maintaining': 1,
          'momentum': 1,
          'hurlyburly': 1,
          'anyone': 1,
          'eventually': 1,
          'pacing': 1,
          'goes': 1,
          'slack': 1,
          'na': 1,
          'long': 1,
          'diatribe': 1,
          'late': 1,
          'game': 1,
          'laments': 1,
          'destiny': 1,
          'celestial': 1,
          'beings': 1,
          'comes': 1,
          'weve': 1,
          'nbecause': 1,
          'change': 1,
          'heart': 1,
          'initially': 1,
          'good': 1,
          'cop': 1,
          'lokis': 1,
          'bad': 1,
          'drives': 1,
          'climax': 1,
          'said': 1,
          'rant': 1,
          'given': 1,
          'great': 1,
          'deal': 1,
          'screen': 1,
          'nsure': 1,
          'deserved': 1,
          'moment': 1,
          'steals': 1,
          'scenes': 1,
          'together': 1,
          'prior': 1,
          'ultimately': 1,
          'film': 1,
          'us': 1,
          'bloated': 1,
          'nlike': 1,
          'tarantino': 1,
          'videoage': 1,
          'sponge': 1,
          'became': 1,
          'samplemad': 1,
          'indie': 1,
          'filmmaker': 1,
          'pays': 1,
          'welcome': 1,
          'homage': 1,
          'eclectic': 1,
          'batch': 1,
          'including': 1,
          'indiana': 1,
          'jones': 1,
          'crusade': 1,
          'best': 1,
          'harrison': 1,
          'ford': 1,
          'weird': 1,
          'sciencea': 1,
          'shit': 1,
          'demon': 1,
          'attacks': 1,
          'heroes': 1,
          'kitchen': 1,
          'sink': 1,
          'brand': 1,
          'humour': 1,
          'dexterous': 1,
          'maneuvering': 1,
          'satirical': 1,
          'cardinal': 1,
          'played': 1,
          'george': 1,
          'carlin': 1,
          'attempts': 1,
          'mount': 1,
          'publicity': 1,
          'campaign': 1,
          'slogan': 1,
          'catholicism': 1,
          'wow': 1,
          'scatalogical': 1,
          'ensures': 1,
          'lover': 1,
          'comedy': 1,
          'leave': 1,
          'feeling': 1,
          'malnourished': 1,
          'bust': 1,
          'ed': 1,
          'gut': 1,
          'several': 1,
          'occasions': 1,
          'nproceedings': 1,
          'get': 1,
          'right': 1,
          'foot': 1,
          'opening': 1,
          'funniest': 1,
          'unlikely': 1,
          'put': 1,
          'protestors': 1,
          'ease': 1,
          'read': 1,
          'actually': 1,
          'see': 1,
          'nthe': 1,
          'prerelease': 1,
          'ballyhoo': 1,
          'tradition': 1,
          'christs': 1,
          'martin': 1,
          '1988': 1,
          'adaptation': 1,
          'nikos': 1,
          'kazantzakis': 1,
          'controversial': 1,
          'novel': 1,
          'directly': 1,
          'linked': 1,
          'pictures': 1,
          'content': 1,
          'rumours': 1,
          'heresy': 1,
          'ntheres': 1,
          'famous': 1,
          'anecdote': 1,
          'fletch': 1,
          'michael': 1,
          'ritchie': 1,
          'inviting': 1,
          'picketers': 1,
          'christ': 1,
          'screening': 1,
          'dime': 1,
          'could': 1,
          'know': 1,
          'certain': 1,
          'rallying': 1,
          'watched': 1,
          'nevery': 1,
          'single': 1,
          'refused': 1,
          'scorsese': 1,
          'lot': 1,
          'common': 1,
          'question': 1,
          'jesus': 1,
          'hollow': 1,
          'shells': 1,
          'without': 1,
          'nin': 1,
          'fact': 1,
          'denouement': 1,
          'follows': 1,
          'thrilling': 1,
          'showdown': 1,
          'worth': 1,
          'wait': 1,
          'lovein': 1,
          'veritable': 1,
          'recruitment': 1,
          'poster': 1,
          'felt': 1,
          'sentimental': 1,
          'dont': 1,
          'belong': 1,
          'nnow': 1,
          'powerful': 1,
          'filmmaking': 1,
          'sincere': 1,
          'devotion': 1,
          'spirituality': 1,
          'shines': 1,
          'make': 1,
          'forgive': 1,
          'editorial': 1,
          'nmy': 1,
          'nwhen': 1,
          'league': 1,
          'beats': 1,
          'imaginary': 1,
          'crimes': 1,
          'doctrine': 1,
          'roundabout': 1,
          'theyre': 1,
          'attacking': 1,
          'live': 1,
          'freedom': 1,
          'expression': 1,
          'celluloid': 1,
          'therefore': 1,
          'although': 1,
          'biblethumper': 1,
          'qualified': 1,
          'criticize': 1,
          'william': 1,
          'donohue': 1,
          'followers': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'characters': 10,
          'obiwan': 8,
          'nthe': 8,
          'one': 8,
          'film': 8,
          'young': 7,
          'lucas': 7,
          'quigon': 6,
          'queen': 5,
          'kenobi': 4,
          'anakin': 4,
          'doesnt': 4,
          'nbut': 4,
          'jedi': 4,
          'time': 4,
          'future': 4,
          'nothing': 4,
          'films': 4,
          'darth': 4,
          'making': 4,
          'like': 4,
          'jar': 4,
          'youve': 3,
          'heard': 3,
          'jinn': 3,
          'mcgregor': 3,
          'also': 3,
          'humanity': 3,
          'effects': 3,
          'isnt': 3,
          'presence': 3,
          'nhe': 3,
          'nand': 3,
          'makes': 3,
          'role': 3,
          'good': 3,
          'job': 3,
          'ni': 3,
          'never': 3,
          'star': 3,
          'wars': 3,
          'empire': 3,
          'nbecause': 3,
          'tatooine': 3,
          'actually': 3,
          'gets': 3,
          'course': 3,
          'n': 3,
          'hype': 2,
          'seen': 2,
          'amidala': 2,
          'liam': 2,
          'neeson': 2,
          'jake': 2,
          'way': 2,
          'skywalker': 2,
          'nif': 2,
          'first': 2,
          'may': 2,
          'enough': 2,
          'digitalized': 2,
          'lightsaber': 2,
          'amazing': 2,
          'theres': 2,
          'struggle': 2,
          'master': 2,
          'character': 2,
          'apparently': 2,
          'dont': 2,
          'nearly': 2,
          'mother': 2,
          'luke': 2,
          'planet': 2,
          'stilted': 2,
          'though': 2,
          'hes': 2,
          'nhowever': 2,
          'surprisingly': 2,
          'spark': 2,
          'really': 2,
          'profound': 2,
          'nin': 2,
          'fact': 2,
          'seems': 2,
          'preexisting': 2,
          'would': 2,
          'america': 2,
          'recently': 2,
          'nfor': 2,
          'main': 2,
          'palpatine': 2,
          'scary': 2,
          'strikes': 2,
          'back': 2,
          'nso': 2,
          'meaningful': 2,
          'c3po': 2,
          'make': 2,
          'appearances': 2,
          'much': 2,
          'look': 2,
          'planets': 2,
          'foreshadowing': 2,
          'see': 2,
          'many': 2,
          'plot': 2,
          'want': 2,
          'two': 2,
          'evil': 2,
          'becomes': 2,
          'often': 2,
          'boy': 2,
          'nthats': 2,
          'cute': 2,
          'kid': 2,
          'vader': 2,
          'ahead': 2,
          'entire': 2,
          'train': 2,
          'apprentice': 2,
          'end': 2,
          'fun': 2,
          'next': 2,
          'nyouve': 1,
          'faces': 1,
          'natalie': 1,
          'portman': 1,
          'professional': 1,
          'schindlers': 1,
          'list': 1,
          'ewan': 1,
          'trainspotting': 1,
          'lloyd': 1,
          'jingle': 1,
          'read': 1,
          'reviews': 1,
          'probably': 1,
          'fails': 1,
          'live': 1,
          'magic': 1,
          'trilogy': 1,
          'nyou': 1,
          'ones': 1,
          'kiddiefriendly': 1,
          'content': 1,
          'adults': 1,
          'nbelieve': 1,
          'stunning': 1,
          'creatures': 1,
          'amazingly': 1,
          'realistic': 1,
          'duels': 1,
          'amidalas': 1,
          'sumptuous': 1,
          'robes': 1,
          'fit': 1,
          'worn': 1,
          'elizabeth': 1,
          'something': 1,
          'missing': 1,
          'budget': 1,
          'everything': 1,
          'money': 1,
          'cant': 1,
          'buy': 1,
          'actors': 1,
          'best': 1,
          'flesh': 1,
          'broadstroked': 1,
          'flat': 1,
          'successful': 1,
          'quiet': 1,
          'dignity': 1,
          'wise': 1,
          'commanding': 1,
          'anchor': 1,
          'george': 1,
          'spent': 1,
          'fleshing': 1,
          'nportmans': 1,
          'mcgregors': 1,
          'fare': 1,
          'well': 1,
          'namidala': 1,
          'leia': 1,
          'peaceful': 1,
          'invaded': 1,
          'trade': 1,
          'federation': 1,
          'comes': 1,
          'stoic': 1,
          'caricatured': 1,
          'appears': 1,
          'vulcan': 1,
          'geisha': 1,
          'former': 1,
          'life': 1,
          'although': 1,
          'endearing': 1,
          'little': 1,
          'screen': 1,
          'robin': 1,
          'jinns': 1,
          'batman': 1,
          'manfully': 1,
          'infuse': 1,
          'small': 1,
          'supporting': 1,
          'genuine': 1,
          'insight': 1,
          'absolutely': 1,
          'nails': 1,
          'alec': 1,
          'guiness': 1,
          'episode': 1,
          '4': 1,
          '6': 1,
          'scottish': 1,
          'accent': 1,
          'might': 1,
          'otherwise': 1,
          'bank': 1,
          'knowledge': 1,
          'quite': 1,
          'bit': 1,
          'thats': 1,
          'problems': 1,
          'call': 1,
          'fan': 1,
          'especially': 1,
          'considering': 1,
          'means': 1,
          'fanatic': 1,
          'days': 1,
          'ive': 1,
          'always': 1,
          'enjoyed': 1,
          'along': 1,
          'everyone': 1,
          'else': 1,
          'person': 1,
          'hasnt': 1,
          'even': 1,
          'bother': 1,
          'brushup': 1,
          'names': 1,
          'obscure': 1,
          'hopelessly': 1,
          'lost': 1,
          'example': 1,
          'nefarious': 1,
          'senator': 1,
          'steeped': 1,
          'trivia': 1,
          'emperor': 1,
          'hooded': 1,
          'apparition': 1,
          'vaders': 1,
          'return': 1,
          'obviously': 1,
          'appearance': 1,
          'phantom': 1,
          'menace': 1,
          'meant': 1,
          'stir': 1,
          'echoes': 1,
          'later': 1,
          'series': 1,
          'thus': 1,
          'na': 1,
          'lot': 1,
          'nr2d2': 1,
          'token': 1,
          'obvious': 1,
          'banking': 1,
          'audiences': 1,
          'fondness': 1,
          'add': 1,
          'nsame': 1,
          'goes': 1,
          'jabba': 1,
          'hutt': 1,
          'mean': 1,
          'corpulent': 1,
          'lazy': 1,
          'neven': 1,
          'guest': 1,
          'desert': 1,
          'world': 1,
          'grew': 1,
          'coruscant': 1,
          'cloud': 1,
          'city': 1,
          'alderaan': 1,
          'leias': 1,
          'home': 1,
          'blown': 1,
          'show': 1,
          'mentioned': 1,
          'briefly': 1,
          'passing': 1,
          'nwhats': 1,
          'result': 1,
          'tying': 1,
          'points': 1,
          'answer': 1,
          'empty': 1,
          'ntheres': 1,
          'meat': 1,
          'substance': 1,
          'love': 1,
          'nanother': 1,
          'problem': 1,
          'alien': 1,
          'distracted': 1,
          'strange': 1,
          'looking': 1,
          'aliens': 1,
          'looked': 1,
          'gila': 1,
          'monsters': 1,
          'mouths': 1,
          'barely': 1,
          'moved': 1,
          'muppets': 1,
          'actual': 1,
          'binks': 1,
          'silly': 1,
          'roger': 1,
          'rabbitish': 1,
          'amphibious': 1,
          'intended': 1,
          'comic': 1,
          'relief': 1,
          'annoying': 1,
          'fast': 1,
          'nunlike': 1,
          'chewbacca': 1,
          'got': 1,
          'youll': 1,
          'pardon': 1,
          'expression': 1,
          'interactions': 1,
          'human': 1,
          'left': 1,
          'interact': 1,
          'mostly': 1,
          'others': 1,
          'kind': 1,
          'times': 1,
          'seem': 1,
          'expensive': 1,
          'teenage': 1,
          'mutant': 1,
          'ninja': 1,
          'turtles': 1,
          'nfurthermore': 1,
          'dialogue': 1,
          'corny': 1,
          'sometimes': 1,
          'downright': 1,
          'infantile': 1,
          'thereby': 1,
          'rendering': 1,
          'bystanders': 1,
          'noddly': 1,
          'judgment': 1,
          'said': 1,
          'designed': 1,
          'kids': 1,
          'nwell': 1,
          'done': 1,
          'hero': 1,
          'hard': 1,
          'feel': 1,
          'kinship': 1,
          'identify': 1,
          'eightyearold': 1,
          'lloyds': 1,
          'fault': 1,
          'asked': 1,
          'another': 1,
          'mistake': 1,
          'tyke': 1,
          'nwarning': 1,
          'spoilers': 1,
          'opinion': 1,
          'anakins': 1,
          'blond': 1,
          'flowing': 1,
          'hair': 1,
          'rosy': 1,
          'cheeks': 1,
          'aggression': 1,
          'throughout': 1,
          'doting': 1,
          'pernilla': 1,
          'august': 1,
          'english': 1,
          'language': 1,
          'slave': 1,
          'gross': 1,
          'flying': 1,
          'gnome': 1,
          'indication': 1,
          'audience': 1,
          'hearts': 1,
          'roses': 1,
          'yodas': 1,
          'hesitation': 1,
          'allowing': 1,
          'nhis': 1,
          'explanation': 1,
          'clouded': 1,
          'warning': 1,
          'major': 1,
          'spoiler': 1,
          'nenter': 1,
          'risk': 1,
          'nof': 1,
          'noble': 1,
          'dies': 1,
          'hand': 1,
          'maul': 1,
          'scarylooking': 1,
          'sith': 1,
          'lord': 1,
          'excels': 1,
          'arts': 1,
          'turned': 1,
          'dark': 1,
          'side': 1,
          'nthis': 1,
          'dude': 1,
          'maybe': 1,
          'lines': 1,
          'establishes': 1,
          'moves': 1,
          'doublesided': 1,
          'facial': 1,
          'makeup': 1,
          'chance': 1,
          'ways': 1,
          'force': 1,
          'quigons': 1,
          'padawan': 1,
          'level': 1,
          'knightdom': 1,
          'must': 1,
          'take': 1,
          'training': 1,
          'saga': 1,
          'begins': 1,
          'ndid': 1,
          'story': 1,
          'need': 1,
          'told': 1,
          'say': 1,
          'worthwhile': 1,
          'nabsolutely': 1,
          'enter': 1,
          'theater': 1,
          'jedisize': 1,
          'expectations': 1,
          'simply': 1,
          'treated': 1,
          'enjoyable': 1,
          'visual': 1,
          'spectacle': 1,
          'pod': 1,
          'races': 1,
          'triumph': 1,
          'computer': 1,
          'animation': 1,
          'backgrounds': 1,
          'astonishing': 1,
          'sight': 1,
          'yoda': 1,
          'worth': 1,
          'seeing': 1,
          'origins': 1,
          'simpler': 1,
          'happier': 1,
          'nabove': 1,
          'nnot': 1,
          'deep': 1,
          'nmaybe': 1,
          'hire': 1,
          'lawrence': 1,
          'kasdan': 1,
          'cowrite': 1,
          'script': 1,
          'guy': 1,
          'directed': 1,
          'direct': 1,
          'lacking': 1,
          'thing': 1,
          'needs': 1,
          'potential': 1,
          'npos': 1}),
 Counter({'tibbs': 15,
          'film': 8,
          'nhe': 6,
          'best': 5,
          'nthe': 4,
          'see': 4,
          'characters': 4,
          'nas': 4,
          'given': 4,
          'heat': 4,
          'night': 4,
          'would': 4,
          'detective': 3,
          'white': 3,
          'shot': 3,
          'face': 3,
          'bars': 3,
          'investigation': 3,
          'town': 3,
          'matter': 3,
          'nit': 3,
          'n': 3,
          'jewison': 3,
          'racism': 3,
          'excellent': 3,
          'also': 3,
          'officer': 3,
          'character': 3,
          'end': 3,
          'african': 2,
          'american': 2,
          'vergil': 2,
          'main': 2,
          'message': 2,
          'completely': 2,
          'rest': 2,
          'bigots': 2,
          'still': 2,
          'seen': 2,
          'show': 2,
          'nthis': 2,
          'one': 2,
          'three': 2,
          'films': 2,
          'afraid': 2,
          'hurricane': 2,
          'classic': 2,
          'memorable': 2,
          '1967': 2,
          'poitier': 2,
          'police': 2,
          'around': 2,
          'always': 2,
          'nhowever': 2,
          'steiger': 2,
          'actor': 2,
          'sheriff': 2,
          'shows': 2,
          'refer': 2,
          'movies': 2,
          'minutes': 2,
          'realistic': 2,
          'believe': 2,
          'something': 2,
          'day': 2,
          'rushed': 2,
          'towards': 2,
          'questions': 1,
          'suspected': 1,
          'murderer': 1,
          'inside': 1,
          'jail': 1,
          'cell': 1,
          'wonderful': 1,
          'eyecatching': 1,
          'instantaneously': 1,
          'presents': 1,
          'entire': 1,
          'covered': 1,
          'shadows': 1,
          'prison': 1,
          'nto': 1,
          'blocking': 1,
          'separated': 1,
          'black': 1,
          'conducting': 1,
          'southern': 1,
          'full': 1,
          'violent': 1,
          'innocent': 1,
          'threat': 1,
          'simply': 1,
          'color': 1,
          'skin': 1,
          'fair': 1,
          'chance': 1,
          'exactly': 1,
          'instead': 1,
          'others': 1,
          'chosen': 1,
          'different': 1,
          'dangerous': 1,
          'amazes': 1,
          'captures': 1,
          'whole': 1,
          'theme': 1,
          'seconds': 1,
          'perhaps': 1,
          'may': 1,
          'powerful': 1,
          'image': 1,
          'first': 1,
          'norman': 1,
          'directed': 1,
          'concerning': 1,
          'america': 1,
          'njewison': 1,
          'keen': 1,
          'style': 1,
          'displaying': 1,
          'various': 1,
          'cases': 1,
          'neither': 1,
          'pedantic': 1,
          'overly': 1,
          'sentimental': 1,
          'nin': 1,
          'job': 1,
          'creating': 1,
          'detailed': 1,
          'equal': 1,
          'analyses': 1,
          'abused': 1,
          'abusers': 1,
          'tell': 1,
          'absolute': 1,
          'truth': 1,
          'corrupt': 1,
          'society': 1,
          'past': 1,
          'present': 1,
          'npreceding': 1,
          'original': 1,
          'soldiers': 1,
          'story': 1,
          'recently': 1,
          'released': 1,
          'contains': 1,
          'lines': 1,
          'picture': 1,
          'focuses': 1,
          'played': 1,
          'superbly': 1,
          'sidney': 1,
          'fearless': 1,
          'philadelphia': 1,
          'refuses': 1,
          'give': 1,
          'wanted': 1,
          'ntibbs': 1,
          'man': 1,
          'rarely': 1,
          'loses': 1,
          'temper': 1,
          'worth': 1,
          'mentioning': 1,
          'constantly': 1,
          'facing': 1,
          'abuse': 1,
          'hero': 1,
          'five': 1,
          'men': 1,
          'chains': 1,
          'perfect': 1,
          'protagonist': 1,
          'npoitier': 1,
          'gives': 1,
          'noteworthy': 1,
          'voice': 1,
          'nnever': 1,
          'nervous': 1,
          'commanding': 1,
          'speech': 1,
          'patterns': 1,
          'manipulative': 1,
          'range': 1,
          'stentorian': 1,
          'soothing': 1,
          'unlike': 1,
          'denzel': 1,
          'washington': 1,
          'dominated': 1,
          'cast': 1,
          'shares': 1,
          'spotlight': 1,
          'rod': 1,
          'performance': 1,
          'helps': 1,
          'warns': 1,
          'dangers': 1,
          'great': 1,
          'amount': 1,
          'skill': 1,
          'role': 1,
          'starts': 1,
          'racist': 1,
          'blind': 1,
          'townspeople': 1,
          'boy': 1,
          'suspiciously': 1,
          'keep': 1,
          'eye': 1,
          'progresses': 1,
          'though': 1,
          'gradual': 1,
          'change': 1,
          'begins': 1,
          'hardships': 1,
          'faces': 1,
          'sees': 1,
          'foolishness': 1,
          'neighbors': 1,
          'nwhat': 1,
          'really': 1,
          'enjoyed': 1,
          'steigers': 1,
          'abandon': 1,
          'friends': 1,
          'connect': 1,
          'could': 1,
          'mister': 1,
          'rather': 1,
          'settled': 1,
          'virgil': 1,
          'ninstead': 1,
          'apparent': 1,
          'eventually': 1,
          'going': 1,
          'world': 1,
          'differently': 1,
          'future': 1,
          'nmost': 1,
          'reversing': 1,
          'beliefs': 1,
          'influences': 1,
          'action': 1,
          'since': 1,
          'nearly': 1,
          'impossible': 1,
          'someone': 1,
          'else': 1,
          'next': 1,
          'njewisons': 1,
          'determination': 1,
          'make': 1,
          'possible': 1,
          'obvious': 1,
          'appropriate': 1,
          'difference': 1,
          'north': 1,
          'south': 1,
          'major': 1,
          'city': 1,
          'small': 1,
          'united': 1,
          'states': 1,
          '1960s': 1,
          'displays': 1,
          'perfectly': 1,
          'actual': 1,
          'although': 1,
          'focus': 1,
          'lacks': 1,
          'interest': 1,
          'seemed': 1,
          'especially': 1,
          'feel': 1,
          'like': 1,
          'giving': 1,
          'credible': 1,
          'explanation': 1,
          'involving': 1,
          'murder': 1,
          'victim': 1,
          'nthere': 1,
          'way': 1,
          'many': 1,
          'added': 1,
          'last': 1,
          'fifteen': 1,
          'scenes': 1,
          'time': 1,
          'period': 1,
          'inane': 1,
          'sam': 1,
          'suspect': 1,
          'needed': 1,
          'nalso': 1,
          'vigilant': 1,
          'homicide': 1,
          'discoveries': 1,
          'came': 1,
          'nowhere': 1,
          'found': 1,
          'important': 1,
          'case': 1,
          'details': 1,
          'never': 1,
          'answered': 1,
          'ending': 1,
          'mistake': 1,
          'otherwise': 1,
          'congratulations': 1,
          'scott': 1,
          'wilson': 1,
          'managed': 1,
          'two': 1,
          'even': 1,
          'better': 1,
          'cold': 1,
          'blood': 1,
          'npos': 1}),
 Counter({'wonder': 7,
          'boys': 7,
          'film': 7,
          'like': 6,
          'nthe': 6,
          'douglas': 5,
          'man': 5,
          'would': 5,
          'nhe': 4,
          'found': 4,
          'im': 4,
          'films': 4,
          'comedy': 4,
          'plays': 3,
          'may': 3,
          'grady': 3,
          'ngrady': 3,
          'put': 3,
          'maguire': 3,
          'great': 3,
          'hannah': 3,
          'maybe': 3,
          'wish': 3,
          'movie': 3,
          'place': 3,
          'movies': 3,
          'characters': 3,
          'writer': 2,
          'professor': 2,
          'believe': 2,
          'performance': 2,
          'part': 2,
          'gordon': 2,
          'gecko': 2,
          'character': 2,
          'nin': 2,
          'much': 2,
          'think': 2,
          'played': 2,
          'role': 2,
          'open': 2,
          'isnt': 2,
          'old': 2,
          'writers': 2,
          'workshop': 2,
          'first': 2,
          'narration': 2,
          'one': 2,
          'points': 2,
          'student': 2,
          'nleer': 2,
          'seems': 2,
          'dry': 2,
          'wit': 2,
          'nhes': 2,
          'little': 2,
          'jarmusch': 2,
          'dog': 2,
          'happen': 2,
          'depth': 2,
          'fits': 2,
          'cort': 2,
          'artistic': 2,
          'holmes': 2,
          'beautiful': 2,
          'plot': 2,
          'line': 2,
          'age': 2,
          'sex': 2,
          'desire': 2,
          'life': 2,
          'jones': 2,
          'hand': 2,
          'completely': 2,
          'nthere': 2,
          'somewhere': 2,
          'rather': 2,
          'sara': 2,
          'word': 2,
          'actor': 2,
          'tom': 2,
          'among': 2,
          'thats': 2,
          'bit': 2,
          'literary': 2,
          'rarely': 2,
          'american': 2,
          'privy': 2,
          'types': 2,
          'hanson': 2,
          'story': 2,
          'often': 2,
          'early': 2,
          'gags': 2,
          'jokes': 2,
          'party': 2,
          'michael': 1,
          'aged': 1,
          'livedin': 1,
          'naturalism': 1,
          'best': 1,
          'never': 1,
          'since': 1,
          'wall': 1,
          'street': 1,
          'spent': 1,
          'greater': 1,
          'career': 1,
          'playing': 1,
          'variations': 1,
          'shark': 1,
          'suit': 1,
          'personified': 1,
          'mid80s': 1,
          'performances': 1,
          'tended': 1,
          'exaggerate': 1,
          'vehemence': 1,
          'cutthroat': 1,
          'businessmen': 1,
          'frothing': 1,
          'mouth': 1,
          'projecting': 1,
          'bad': 1,
          'intentions': 1,
          'world': 1,
          'nyoud': 1,
          'keep': 1,
          'evil': 1,
          'wrapped': 1,
          'tightly': 1,
          'underneath': 1,
          'goodnatured': 1,
          'veneer': 1,
          'nicholas': 1,
          'van': 1,
          'orton': 1,
          'straight': 1,
          'showy': 1,
          'tour': 1,
          'de': 1,
          'force': 1,
          'simple': 1,
          'yet': 1,
          'truthful': 1,
          'embodies': 1,
          'craggy': 1,
          'predilection': 1,
          'pot': 1,
          'pink': 1,
          'bathrobes': 1,
          'instructs': 1,
          'working': 1,
          'tirelessly': 1,
          'follow': 1,
          'novel': 1,
          'map': 1,
          'nwhen': 1,
          'encounter': 1,
          'curmudgeon': 1,
          'midst': 1,
          'hear': 1,
          'sardonic': 1,
          'soundtrack': 1,
          'students': 1,
          'bombard': 1,
          'unfair': 1,
          'criticisms': 1,
          'jealousy': 1,
          'ntheir': 1,
          'target': 1,
          'writerly': 1,
          'named': 1,
          'james': 1,
          'leer': 1,
          'always': 1,
          'understated': 1,
          'tobey': 1,
          'full': 1,
          'potential': 1,
          'develops': 1,
          'mild': 1,
          'affection': 1,
          'kind': 1,
          'youth': 1,
          'mechanically': 1,
          'block': 1,
          'emotions': 1,
          'speaks': 1,
          'intellectualized': 1,
          'monotone': 1,
          'hint': 1,
          'around': 1,
          'edges': 1,
          'portentous': 1,
          'gloomy': 1,
          'modeling': 1,
          'depressed': 1,
          'though': 1,
          'act': 1,
          'calculated': 1,
          'reminds': 1,
          'selfimposed': 1,
          'outcast': 1,
          'director': 1,
          'jim': 1,
          'dead': 1,
          'ghost': 1,
          'nwhenever': 1,
          'catch': 1,
          'interview': 1,
          'see': 1,
          'speaking': 1,
          'toneless': 1,
          'manner': 1,
          'monotonous': 1,
          'drawl': 1,
          'supposedly': 1,
          'masking': 1,
          'contempt': 1,
          'interviewer': 1,
          'exclusively': 1,
          'dressed': 1,
          'black': 1,
          'spiked': 1,
          'hair': 1,
          'dyed': 1,
          'snow': 1,
          'white': 1,
          'similar': 1,
          'guy': 1,
          'equates': 1,
          'quirks': 1,
          'ntobey': 1,
          'well': 1,
          'nwith': 1,
          'round': 1,
          'sweeteerie': 1,
          'face': 1,
          'resembles': 1,
          'bud': 1,
          'harold': 1,
          'maude': 1,
          'nbut': 1,
          'unlike': 1,
          'easier': 1,
          'warm': 1,
          'hes': 1,
          'messed': 1,
          'kid': 1,
          'reaching': 1,
          'credibility': 1,
          'nkatie': 1,
          'talented': 1,
          'writing': 1,
          'itching': 1,
          'get': 1,
          'gradys': 1,
          'pants': 1,
          'nthis': 1,
          'trouble': 1,
          'ndouglas': 1,
          'beginning': 1,
          'resemble': 1,
          'jerry': 1,
          'springer': 1,
          'actually': 1,
          'paid': 1,
          'numerous': 1,
          'documented': 1,
          'occasions': 1,
          'nat': 1,
          'extremely': 1,
          'difficult': 1,
          'someone': 1,
          'jealous': 1,
          'throwing': 1,
          'lowly': 1,
          'internet': 1,
          'critic': 1,
          'least': 1,
          'still': 1,
          'teeth': 1,
          'douglass': 1,
          'real': 1,
          'companion': 1,
          'breathtaking': 1,
          'catherine': 1,
          'zeta': 1,
          'nseeing': 1,
          'two': 1,
          'together': 1,
          'looks': 1,
          'lot': 1,
          'kidnapping': 1,
          'nsuddenly': 1,
          'mind': 1,
          'shifted': 1,
          'task': 1,
          'reviewing': 1,
          'wonderful': 1,
          'pontificating': 1,
          'hell': 1,
          'chivalrously': 1,
          'ask': 1,
          'resists': 1,
          'charms': 1,
          'gaskell': 1,
          'droll': 1,
          'frances': 1,
          'mcdormand': 1,
          'also': 1,
          'married': 1,
          'another': 1,
          'nokay': 1,
          'chivalrous': 1,
          'spoken': 1,
          'says': 1,
          'junkie': 1,
          'printed': 1,
          'nlucky': 1,
          'manufactured': 1,
          'drug': 1,
          'choice': 1,
          'nrobert': 1,
          'downy': 1,
          'j': 1,
          'r': 1,
          'bisexual': 1,
          'editor': 1,
          'makes': 1,
          'entrance': 1,
          'towering': 1,
          'transvestite': 1,
          'arm': 1,
          'ndowny': 1,
          'mastered': 1,
          'gleefully': 1,
          'hyper': 1,
          'articulate': 1,
          'many': 1,
          'hipster': 1,
          'intellectual': 1,
          'arrogant': 1,
          'likeable': 1,
          'utter': 1,
          'arrogance': 1,
          'perfectly': 1,
          'cast': 1,
          'remains': 1,
          'joyous': 1,
          'presence': 1,
          'typical': 1,
          'hanksian': 1,
          'comic': 1,
          'leading': 1,
          'edgy': 1,
          'ni': 1,
          'nsearching': 1,
          'elements': 1,
          'pointless': 1,
          'meanders': 1,
          'running': 1,
          'time': 1,
          'charm': 1,
          'nand': 1,
          'biased': 1,
          'towards': 1,
          'takes': 1,
          'academia': 1,
          'greatly': 1,
          'fond': 1,
          'explored': 1,
          'cinema': 1,
          'neveryone': 1,
          'subgenre': 1,
          'war': 1,
          'westerns': 1,
          'dance': 1,
          'nim': 1,
          'e': 1,
          'nthose': 1,
          'individuals': 1,
          'enthralled': 1,
          'written': 1,
          'inclined': 1,
          'wise': 1,
          'knock': 1,
          'grade': 1,
          'half': 1,
          'notch': 1,
          'direction': 1,
          'curtis': 1,
          'akin': 1,
          'european': 1,
          'leisurely': 1,
          'pace': 1,
          'situations': 1,
          'grow': 1,
          'generic': 1,
          'mapped': 1,
          'nsometimes': 1,
          'dialogue': 1,
          'clever': 1,
          'problem': 1,
          'nanother': 1,
          'minor': 1,
          'quibble': 1,
          'introverted': 1,
          'progresses': 1,
          'begins': 1,
          'nfor': 1,
          'works': 1,
          'subtle': 1,
          'drama': 1,
          'insight': 1,
          'lowkey': 1,
          'chuckleworthy': 1,
          'throwaway': 1,
          'robert': 1,
          'altman': 1,
          'h': 1,
          'long': 1,
          'goodbye': 1,
          'exist': 1,
          'asides': 1,
          'fringes': 1,
          'broader': 1,
          'killing': 1,
          'blind': 1,
          'incessant': 1,
          'smoking': 1,
          'marijuana': 1,
          'ineffective': 1,
          'nearly': 1,
          'memorable': 1,
          'things': 1,
          'ncurtis': 1,
          'last': 1,
          'la': 1,
          'confidential': 1,
          'toiled': 1,
          'exploitation': 1,
          'fare': 1,
          'losin': 1,
          'cruise': 1,
          'rocks': 1,
          'cradle': 1,
          'graduated': 1,
          'meaningful': 1,
          'directs': 1,
          'appropriately': 1,
          'dour': 1,
          'style': 1,
          'coming': 1,
          'false': 1,
          'gloom': 1,
          'morose': 1,
          'crooning': 1,
          'leonard': 1,
          'cohen': 1,
          'seem': 1,
          'odd': 1,
          'song': 1,
          'background': 1,
          'piece': 1,
          'literature': 1,
          'big': 1,
          'screen': 1,
          'nits': 1,
          'cinematic': 1,
          'equivalent': 1,
          'good': 1,
          'read': 1,
          'novelistic': 1,
          'approach': 1,
          'themes': 1,
          'nmany': 1,
          'find': 1,
          'slight': 1,
          'savor': 1,
          'subtleties': 1,
          'npos': 1}),
 Counter({'also': 6,
          'many': 6,
          'zoolander': 5,
          'dumb': 5,
          'ni': 5,
          'movie': 4,
          '710': 4,
          'derek': 3,
          'stupid': 3,
          'comedies': 3,
          'seriously': 3,
          'youre': 3,
          'see': 3,
          'film': 3,
          'powers': 3,
          'doesnt': 2,
          'fashion': 2,
          'country': 2,
          'nwill': 2,
          'world': 2,
          'look': 2,
          'funny': 2,
          'dont': 2,
          'time': 2,
          'something': 2,
          'could': 2,
          'simply': 2,
          'others': 2,
          'instead': 2,
          'character': 2,
          'nice': 2,
          'nand': 2,
          'type': 2,
          'films': 2,
          'well': 2,
          'david': 2,
          'liked': 2,
          'nbut': 2,
          'work': 2,
          'strike': 2,
          'taylor': 2,
          'get': 2,
          'less': 2,
          'dude': 2,
          'monkey': 2,
          'trailer': 2,
          'austin': 2,
          '510': 2,
          '810': 2,
          'plot': 1,
          'male': 1,
          'model': 1,
          'nhe': 1,
          'impressionable': 1,
          'nfor': 1,
          'reason': 1,
          'secretly': 1,
          'hired': 1,
          'trained': 1,
          'secret': 1,
          'even': 1,
          'know': 1,
          'underground': 1,
          'syndicate': 1,
          'assassinate': 1,
          'prime': 1,
          'minister': 1,
          'malaysia': 1,
          'wants': 1,
          'abolish': 1,
          'child': 1,
          'labor': 1,
          'fulfill': 1,
          'dirty': 1,
          'deed': 1,
          'ever': 1,
          'grace': 1,
          'new': 1,
          'nis': 1,
          'nfind': 1,
          'ncritique': 1,
          'theres': 1,
          'place': 1,
          'nfilms': 1,
          'pretend': 1,
          'take': 1,
          'based': 1,
          'idiotic': 1,
          'premises': 1,
          'filled': 1,
          'jokes': 1,
          'ntheres': 1,
          'would': 1,
          'argue': 1,
          'difficult': 1,
          'period': 1,
          'history': 1,
          'might': 1,
          'ideal': 1,
          'circumstance': 1,
          'relax': 1,
          'watching': 1,
          'completely': 1,
          'frivolous': 1,
          'nwell': 1,
          'mood': 1,
          'mindless': 1,
          'entertainment': 1,
          'ben': 1,
          'stiller': 1,
          'cast': 1,
          'assembled': 1,
          'one': 1,
          'original': 1,
          'nof': 1,
          'course': 1,
          'usually': 1,
          'subjective': 1,
          'unfunny': 1,
          'grant': 1,
          'consider': 1,
          'personally': 1,
          'enjoyed': 1,
          'part': 1,
          'cracked': 1,
          'loudly': 1,
          'couple': 1,
          'specific': 1,
          'sequences': 1,
          'loved': 1,
          'unrestrained': 1,
          'whipping': 1,
          'released': 1,
          'upon': 1,
          'industry': 1,
          'nsnap': 1,
          'nit': 1,
          'several': 1,
          'reallife': 1,
          'models': 1,
          'small': 1,
          'roles': 1,
          'taking': 1,
          'person': 1,
          'likes': 1,
          'celebrity': 1,
          'cameos': 1,
          'dozens': 1,
          'famous': 1,
          'faces': 1,
          'show': 1,
          'including': 1,
          'vince': 1,
          'vaughn': 1,
          'billy': 1,
          'zane': 1,
          'winona': 1,
          'ryder': 1,
          'christian': 1,
          'slater': 1,
          'duchovny': 1,
          'natalie': 1,
          'portman': 1,
          'especially': 1,
          'andy': 1,
          'dicks': 1,
          'complete': 1,
          'makeover': 1,
          'masseuse': 1,
          'nhilarious': 1,
          'bound': 1,
          'stuff': 1,
          'na': 1,
          'particulars': 1,
          'didnt': 1,
          'fancy': 1,
          'included': 1,
          'bulimia': 1,
          'orgy': 1,
          'sequence': 1,
          'christine': 1,
          'breakdance': 1,
          'fighting': 1,
          'never': 1,
          'use': 1,
          'real': 1,
          'countries': 1,
          'plots': 1,
          'like': 1,
          'make': 1,
          'zeroing': 1,
          'certain': 1,
          'people': 1,
          'done': 1,
          'general': 1,
          'since': 1,
          'wasnt': 1,
          'interesting': 1,
          'seemed': 1,
          'slow': 1,
          'things': 1,
          'every': 1,
          'missteps': 1,
          'nothing': 1,
          'compared': 1,
          'memorable': 1,
          'scenes': 1,
          'definitely': 1,
          'almost': 1,
          'pissed': 1,
          'gas': 1,
          'station': 1,
          'disaster': 1,
          'absolutely': 1,
          'adored': 1,
          'walkoff': 1,
          'contest': 1,
          'bowie': 1,
          'judge': 1,
          'appreciated': 1,
          'zoolanders': 1,
          'moronic': 1,
          'oneliners': 1,
          'merman': 1,
          'nmerman': 1,
          'dare': 1,
          'photo': 1,
          'shoot': 1,
          'head': 1,
          'seeing': 1,
          'nmonkey': 1,
          'really': 1,
          'soundtrack': 1,
          'pace': 1,
          'zipped': 1,
          'zagged': 1,
          'established': 1,
          'rhythm': 1,
          'nagain': 1,
          'note': 1,
          'everyone': 1,
          'guess': 1,
          'laughed': 1,
          'likely': 1,
          'enjoy': 1,
          'quips': 1,
          'actual': 1,
          'picture': 1,
          'nif': 1,
          'thought': 1,
          'skip': 1,
          'dodo': 1,
          'bird': 1,
          'go': 1,
          'rent': 1,
          'obvious': 1,
          'influence': 1,
          'nblue': 1,
          'steel': 1,
          'baby': 1,
          'yeah': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'naustin': 1,
          '2': 1,
          'deuce': 1,
          'bigalow': 1,
          'wheres': 1,
          'car': 1,
          'freddy': 1,
          'got': 1,
          'fingered': 1,
          'jay': 1,
          'silent': 1,
          'bob': 1,
          'back': 1,
          'joe': 1,
          'dirt': 1,
          'meet': 1,
          'parents': 1,
          'say': 1,
          'isnt': 1,
          '310': 1,
          'npos': 1}),
 Counter({'unzipped': 7,
          'fashion': 6,
          'mizrahi': 4,
          'film': 3,
          'designer': 3,
          'show': 3,
          'isaac': 2,
          'documentary': 2,
          'scenes': 2,
          'nthe': 2,
          'like': 2,
          'cindy': 2,
          'crawford': 2,
          'keeve': 2,
          'mizrahis': 2,
          'however': 2,
          'nwhile': 2,
          'industry': 2,
          'everything': 2,
          'look': 2,
          'style': 2,
          'almost': 2,
          'variety': 2,
          'including': 2,
          'number': 2,
          'models': 2,
          'used': 2,
          'mm': 2,
          'blackandwhite': 2,
          'color': 2,
          'movie': 2,
          'perspective': 2,
          'cinematic': 1,
          'portrait': 1,
          'artist': 1,
          'whose': 1,
          'palette': 1,
          'fabric': 1,
          'nostensibly': 1,
          'use': 1,
          'term': 1,
          'requires': 1,
          'stretching': 1,
          'meaning': 1,
          'nmany': 1,
          'appear': 1,
          'staged': 1,
          'great': 1,
          'deal': 1,
          'cuttingandpasting': 1,
          'done': 1,
          'editing': 1,
          'room': 1,
          'cinema': 1,
          'verite': 1,
          'effect': 1,
          'conceit': 1,
          'genuine': 1,
          'spontaneity': 1,
          'premium': 1,
          'everyone': 1,
          'aware': 1,
          'playing': 1,
          'camera': 1,
          'especially': 1,
          'wouldbe': 1,
          'actresses': 1,
          'ndirector': 1,
          'douglas': 1,
          'lover': 1,
          'time': 1,
          'freely': 1,
          'admits': 1,
          'couldnt': 1,
          'care': 1,
          'less': 1,
          'truth': 1,
          'interested': 1,
          'capturing': 1,
          'spirit': 1,
          'love': 1,
          'ndespite': 1,
          'violating': 1,
          'nearly': 1,
          'every': 1,
          'rule': 1,
          'legitimate': 1,
          'making': 1,
          'remarkably': 1,
          'enjoyable': 1,
          'piece': 1,
          'entertainment': 1,
          'sheds': 1,
          'little': 1,
          'light': 1,
          'behindthescenes': 1,
          'world': 1,
          'presents': 1,
          'fascinating': 1,
          'incomplete': 1,
          'picture': 1,
          'nthis': 1,
          'man': 1,
          'perfect': 1,
          'subject': 1,
          'kind': 1,
          'study': 1,
          'hes': 1,
          'funny': 1,
          'energetic': 1,
          'eminently': 1,
          'quotable': 1,
          'nhe': 1,
          'unusual': 1,
          'views': 1,
          'women': 1,
          'wanting': 1,
          'cows': 1,
          'mary': 1,
          'tyler': 1,
          'moore': 1,
          'jackie': 1,
          'kennedy': 1,
          'shaped': 1,
          'country': 1,
          'impossible': 1,
          'nowadays': 1,
          'without': 1,
          'right': 1,
          'dogs': 1,
          'nunzipped': 1,
          'also': 1,
          'gives': 1,
          'glimpse': 1,
          'creative': 1,
          'process': 1,
          'turns': 1,
          'idea': 1,
          'dress': 1,
          'nits': 1,
          'certainly': 1,
          'different': 1,
          'anyone': 1,
          'would': 1,
          'imagine': 1,
          'draws': 1,
          'sources': 1,
          'nanook': 1,
          'north': 1,
          'old': 1,
          'bette': 1,
          'davis': 1,
          'movies': 1,
          'enlists': 1,
          'aid': 1,
          'ouija': 1,
          'board': 1,
          'help': 1,
          'form': 1,
          'collection': 1,
          'nin': 1,
          'particular': 1,
          'traces': 1,
          'development': 1,
          'fall': 1,
          '1994': 1,
          'line': 1,
          'inception': 1,
          'spring': 1,
          'final': 1,
          'highlights': 1,
          'prominent': 1,
          'naomi': 1,
          'campbell': 1,
          'kate': 1,
          'bush': 1,
          'linda': 1,
          'evangelista': 1,
          'non': 1,
          'technical': 1,
          'side': 1,
          'interesting': 1,
          'choices': 1,
          'made': 1,
          'filming': 1,
          'na': 1,
          'stocks': 1,
          'super': 1,
          '8': 1,
          '16': 1,
          '35': 1,
          'nthere': 1,
          'purpose': 1,
          'beyond': 1,
          'simple': 1,
          'artiness': 1,
          'stock': 1,
          'often': 1,
          'serves': 1,
          'emotional': 1,
          'key': 1,
          'climactic': 1,
          'audiences': 1,
          'behindthe': 1,
          'sequences': 1,
          'nnevertheless': 1,
          'viewers': 1,
          'put': 1,
          'treatment': 1,
          'isnt': 1,
          'expose': 1,
          'per': 1,
          'se': 1,
          'enough': 1,
          'clips': 1,
          'petulant': 1,
          'make': 1,
          'viewer': 1,
          'realize': 1,
          'tame': 1,
          'robert': 1,
          'altman': 1,
          'ready': 1,
          'wear': 1,
          'noverall': 1,
          'far': 1,
          'anything': 1,
          'else': 1,
          'viewed': 1,
          'succeed': 1,
          'nwhen': 1,
          'declares': 1,
          'frustrating': 1,
          'except': 1,
          'designing': 1,
          'clothes': 1,
          'thats': 1,
          'beautiful': 1,
          'liberating': 1,
          'fits': 1,
          'perfectly': 1,
          'image': 1,
          'constructed': 1,
          'npos': 1}),
 Counter({'dora': 4,
          'nshe': 3,
          'letters': 3,
          'find': 3,
          'josu': 3,
          'montenegro': 2,
          'station': 2,
          'states': 2,
          'lost': 2,
          'love': 2,
          'shes': 2,
          'never': 2,
          'son': 2,
          'father': 2,
          'religious': 2,
          'like': 2,
          'nit': 2,
          'backdrop': 2,
          'nthe': 2,
          'amount': 2,
          'true': 2,
          'nhe': 2,
          'discoveries': 2,
          'fernanda': 1,
          'sits': 1,
          'behind': 1,
          'makeshift': 1,
          'desk': 1,
          'rios': 1,
          'major': 1,
          'train': 1,
          'colorful': 1,
          'demeanor': 1,
          'offers': 1,
          'service': 1,
          'unheard': 1,
          'writes': 1,
          'illiterate': 1,
          'pass': 1,
          'try': 1,
          'relatives': 1,
          'search': 1,
          'debts': 1,
          'nshes': 1,
          'quirky': 1,
          'elderly': 1,
          'caring': 1,
          'ntotally': 1,
          'trustworthy': 1,
          'right': 1,
          'nnot': 1,
          'chance': 1,
          'nonce': 1,
          'home': 1,
          'sends': 1,
          'saving': 1,
          'money': 1,
          'postage': 1,
          'relishing': 1,
          'drama': 1,
          'contained': 1,
          'therein': 1,
          'neighbor': 1,
          'irene': 1,
          'mar': 1,
          'lia': 1,
          'p': 1,
          'ra': 1,
          'none': 1,
          'sent': 1,
          'young': 1,
          'mother': 1,
          'nineyear': 1,
          'old': 1,
          'looking': 1,
          'nshortly': 1,
          'thereafter': 1,
          'gets': 1,
          'hit': 1,
          'bus': 1,
          'orphaned': 1,
          'ndays': 1,
          'go': 1,
          'boy': 1,
          'named': 1,
          'roams': 1,
          'around': 1,
          'hungry': 1,
          'desperate': 1,
          'somewhat': 1,
          'clueless': 1,
          'predictament': 1,
          'nthrough': 1,
          'series': 1,
          'circumstances': 1,
          'precious': 1,
          'elaborate': 1,
          'upon': 1,
          'somehow': 1,
          'takes': 1,
          'responsibility': 1,
          'trying': 1,
          'nthis': 1,
          'means': 1,
          'leaving': 1,
          'security': 1,
          'rio': 1,
          'traveling': 1,
          'outskirts': 1,
          'brazil': 1,
          'unpaved': 1,
          'roads': 1,
          'devotees': 1,
          'povertystricken': 1,
          'become': 1,
          'commonplace': 1,
          'nfilms': 1,
          'remind': 1,
          'enjoy': 1,
          'foreign': 1,
          'films': 1,
          'opportunity': 1,
          'get': 1,
          'fresh': 1,
          'breath': 1,
          'another': 1,
          'part': 1,
          'world': 1,
          'distant': 1,
          'entertainingly': 1,
          'heartwrenchingly': 1,
          'nand': 1,
          'yet': 1,
          'merely': 1,
          'focus': 1,
          'minute': 1,
          'transformation': 1,
          'learns': 1,
          'little': 1,
          'kid': 1,
          'without': 1,
          'cloying': 1,
          'sentimental': 1,
          'interesting': 1,
          'dedication': 1,
          'film': 1,
          'ndora': 1,
          'amoral': 1,
          'scamartist': 1,
          'could': 1,
          'care': 1,
          'less': 1,
          'bickering': 1,
          'candlelighting': 1,
          'catholics': 1,
          'versus': 1,
          'bumpersticker': 1,
          'mentality': 1,
          'evangelicals': 1,
          'nbut': 1,
          'neither': 1,
          'side': 1,
          'trivialized': 1,
          'even': 1,
          'begins': 1,
          'develop': 1,
          'affection': 1,
          'nondrinking': 1,
          'evangelical': 1,
          'sees': 1,
          'problems': 1,
          'initially': 1,
          'nfernanda': 1,
          'surprisingly': 1,
          'got': 1,
          'oscar': 1,
          'nomination': 1,
          'delicate': 1,
          'performance': 1,
          'marvel': 1,
          'vinicius': 1,
          'de': 1,
          'oliveira': 1,
          'plays': 1,
          'j': 1,
          'r': 1,
          'mie': 1,
          'renier': 1,
          '_la': 1,
          'promesse_': 1,
          'giorgio': 1,
          'cantarini': 1,
          '_life': 1,
          'beautiful_': 1,
          'prove': 1,
          'acting': 1,
          'may': 1,
          'outside': 1,
          'united': 1,
          'natural': 1,
          'grating': 1,
          'nsend': 1,
          'memo': 1,
          'jonathan': 1,
          'taylor': 1,
          'thomas': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'star': 7,
          'wars': 7,
          'nthe': 7,
          'nit': 6,
          'jedi': 6,
          'get': 5,
          'see': 4,
          'far': 4,
          'phantom': 4,
          'menace': 4,
          'know': 4,
          'although': 4,
          'events': 3,
          'ni': 3,
          'film': 3,
          'republic': 3,
          'naboo': 3,
          'anakin': 3,
          'like': 3,
          'often': 3,
          'away': 3,
          'feel': 3,
          'years': 2,
          'think': 2,
          'actually': 2,
          'seeing': 2,
          'generated': 2,
          'people': 2,
          'place': 2,
          'planet': 2,
          'force': 2,
          'way': 2,
          'young': 2,
          'skywalker': 2,
          'boy': 2,
          'trained': 2,
          'give': 2,
          'beginning': 2,
          'computer': 2,
          'though': 2,
          'effects': 2,
          'lacks': 2,
          'human': 2,
          'installment': 2,
          'saga': 2,
          'go': 2,
          'things': 2,
          'also': 2,
          'didnt': 2,
          'nostalgia': 2,
          'exciting': 2,
          'story': 2,
          'works': 2,
          'event': 1,
          'upon': 1,
          'us': 1,
          'npeople': 1,
          'waited': 1,
          'twentytwo': 1,
          'prequel': 1,
          'diehard': 1,
          'fans': 1,
          'camping': 1,
          'theaters': 1,
          'months': 1,
          'tickets': 1,
          'dont': 1,
          'america': 1,
          'ever': 1,
          'recover': 1,
          'hurricane': 1,
          'caused': 1,
          'bit': 1,
          'exaggeration': 1,
          'say': 1,
          'highly': 1,
          'anticipated': 1,
          'history': 1,
          'nanyone': 1,
          'tells': 1,
          'either': 1,
          'lying': 1,
          'clueless': 1,
          'clearly': 1,
          'obvious': 1,
          'waiting': 1,
          'hype': 1,
          'anticlimactic': 1,
          'second': 1,
          'coming': 1,
          'lord': 1,
          'could': 1,
          'live': 1,
          'kind': 1,
          'buzz': 1,
          'weak': 1,
          'word': 1,
          'epsode': 1,
          'effortlessly': 1,
          'nbut': 1,
          'mean': 1,
          'bad': 1,
          'nin': 1,
          'fact': 1,
          'terrific': 1,
          'strongly': 1,
          'suspect': 1,
          'many': 1,
          'dissappointed': 1,
          'simply': 1,
          'surrendered': 1,
          'media': 1,
          'machine': 1,
          'inevitable': 1,
          'backlash': 1,
          'set': 1,
          'decades': 1,
          'original': 1,
          '1977': 1,
          'took': 1,
          'focuses': 1,
          'fledgling': 1,
          'planets': 1,
          'conflict': 1,
          'raging': 1,
          'trade': 1,
          'federation': 1,
          'angry': 1,
          'tax': 1,
          'raise': 1,
          'recently': 1,
          'put': 1,
          'invaded': 1,
          'small': 1,
          'peaceful': 1,
          'sent': 1,
          'two': 1,
          'knights': 1,
          'actively': 1,
          'communicate': 1,
          'affectionately': 1,
          'known': 1,
          'quigon': 1,
          'jinn': 1,
          'liam': 1,
          'neeson': 1,
          'obiwan': 1,
          'kenobi': 1,
          'ewan': 1,
          'mcgregor': 1,
          'negotiate': 1,
          'nunable': 1,
          'stop': 1,
          'tide': 1,
          'occur': 1,
          'queen': 1,
          'natalie': 1,
          'portman': 1,
          'escape': 1,
          'head': 1,
          'coruscant': 1,
          'try': 1,
          'senate': 1,
          'intervene': 1,
          'non': 1,
          'sidetracked': 1,
          'called': 1,
          'tatooine': 1,
          'meet': 1,
          'movies': 1,
          'real': 1,
          'focal': 1,
          'point': 1,
          'jake': 1,
          'lloyd': 1,
          'nhe': 1,
          'innocent': 1,
          'slave': 1,
          'strong': 1,
          'qui': 1,
          'gon': 1,
          'determined': 1,
          'take': 1,
          'counsel': 1,
          'nas': 1,
          'selfrespecting': 1,
          'fan': 1,
          'grow': 1,
          'darth': 1,
          'vader': 1,
          'birth': 1,
          'luke': 1,
          'nfrom': 1,
          'evident': 1,
          'actors': 1,
          'naround': 1,
          '70': 1,
          'characters': 1,
          'one': 1,
          'form': 1,
          'another': 1,
          'seamless': 1,
          'soul': 1,
          'played': 1,
          'incredibly': 1,
          'instrumental': 1,
          'part': 1,
          'moviemaking': 1,
          'decade': 1,
          'cinema': 1,
          'still': 1,
          'art': 1,
          'nearly': 1,
          'defies': 1,
          'nthis': 1,
          'lightest': 1,
          'thus': 1,
          'plenty': 1,
          'broad': 1,
          'comic': 1,
          'relief': 1,
          'around': 1,
          'much': 1,
          'courtesy': 1,
          'irritating': 1,
          'knew': 1,
          'character': 1,
          'named': 1,
          'jarjar': 1,
          'binks': 1,
          'nhes': 1,
          'essentially': 1,
          'computeranimated': 1,
          'sidekick': 1,
          'says': 1,
          'exqueeze': 1,
          'nand': 1,
          'mesa': 1,
          'okeday': 1,
          'amusing': 1,
          'inherently': 1,
          'annoying': 1,
          'visual': 1,
          'astounding': 1,
          'director': 1,
          'george': 1,
          'lucas': 1,
          'chickens': 1,
          'cutting': 1,
          'thrilling': 1,
          'triumph': 1,
          'nif': 1,
          'plot': 1,
          'acting': 1,
          'makes': 1,
          'imagination': 1,
          'excitement': 1,
          'climactic': 1,
          'lightsaber': 1,
          'battle': 1,
          'oh': 1,
          'come': 1,
          'already': 1,
          'among': 1,
          'outrageously': 1,
          'entertaining': 1,
          'defines': 1,
          'term': 1,
          'popcorn': 1,
          'nwhat': 1,
          'made': 1,
          'surrender': 1,
          '12': 1,
          'stars': 1,
          'score': 1,
          'john': 1,
          'williams': 1,
          'neven': 1,
          'seem': 1,
          'man': 1,
          'scores': 1,
          'every': 1,
          'single': 1,
          'comes': 1,
          'days': 1,
          'work': 1,
          'nothing': 1,
          'short': 1,
          'brilliant': 1,
          'nhis': 1,
          'use': 1,
          'opera': 1,
          'climax': 1,
          'really': 1,
          'add': 1,
          'punch': 1,
          'ingenious': 1,
          'utilizing': 1,
          'imperial': 1,
          'march': 1,
          'sort': 1,
          'prophecy': 1,
          'chilling': 1,
          'probably': 1,
          'effective': 1,
          'pop': 1,
          'nwhen': 1,
          'long': 1,
          'time': 1,
          'ago': 1,
          'galaxy': 1,
          'familiar': 1,
          'music': 1,
          'plays': 1,
          'words': 1,
          'appear': 1,
          'screen': 1,
          'youll': 1,
          'tingle': 1,
          'even': 1,
          'first': 1,
          'came': 1,
          '77': 1,
          'feels': 1,
          'oddly': 1,
          'introduced': 1,
          'whose': 1,
          'innocence': 1,
          'taken': 1,
          'soon': 1,
          'cross': 1,
          'dark': 1,
          'side': 1,
          'perfect': 1,
          'example': 1,
          'dramatic': 1,
          'irony': 1,
          'masters': 1,
          'aspire': 1,
          'arts': 1,
          'harm': 1,
          'good': 1,
          'nwe': 1,
          'involved': 1,
          'cherished': 1,
          'lacking': 1,
          'aspects': 1,
          'worthy': 1,
          'action': 1,
          'flick': 1,
          'visually': 1,
          'eyepopping': 1,
          'paralyzingly': 1,
          'elicitor': 1,
          'memories': 1,
          'piece': 1,
          'exquisite': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'npos': 1}),
 Counter({'na': 4,
          'life': 4,
          'less': 4,
          'ordinary': 4,
          'movie': 3,
          'somewhat': 3,
          'film': 3,
          'comes': 2,
          'nsome': 2,
          'people': 2,
          'call': 2,
          'grasp': 2,
          'definitely': 2,
          'typical': 2,
          'audience': 2,
          'works': 2,
          'us': 2,
          'trainspotting': 2,
          'know': 2,
          'mcgregor': 2,
          'nyou': 2,
          'bet': 2,
          'even': 2,
          'dollar': 2,
          'sometimes': 1,
          'along': 1,
          'falls': 1,
          'askew': 1,
          'rest': 1,
          'original': 1,
          'artsy': 1,
          'abstract': 1,
          'simply': 1,
          'trash': 1,
          'sure': 1,
          'bring': 1,
          'mixed': 1,
          'feelings': 1,
          'ndefinitely': 1,
          'generationx': 1,
          'aimed': 1,
          'everything': 1,
          'claymation': 1,
          'profane': 1,
          'angels': 1,
          'karaokebased': 1,
          'musical': 1,
          'dream': 1,
          'sequence': 1,
          'nwhew': 1,
          'nanyone': 1,
          '30s': 1,
          'probably': 1,
          'going': 1,
          'enjoyed': 1,
          'nits': 1,
          'silly': 1,
          'outrageous': 1,
          'romance': 1,
          'story': 1,
          'right': 1,
          'lot': 1,
          'hype': 1,
          'surrounding': 1,
          'due': 1,
          'fact': 1,
          'team': 1,
          'brought': 1,
          'nwell': 1,
          'sorry': 1,
          'folks': 1,
          'havent': 1,
          'seen': 1,
          'cant': 1,
          'really': 1,
          'compare': 1,
          'nwhether': 1,
          'films': 1,
          'favor': 1,
          'beyond': 1,
          'nbut': 1,
          'ewan': 1,
          'never': 1,
          'pleasure': 1,
          'watching': 1,
          'charmed': 1,
          'nhe': 1,
          'great': 1,
          'ncameron': 1,
          'diazs': 1,
          'character': 1,
          'uneven': 1,
          'bit': 1,
          'hard': 1,
          'nthe': 1,
          'may': 1,
          'find': 1,
          'difficult': 1,
          'care': 1,
          'thus': 1,
          'discouraging': 1,
          'hopes': 1,
          'seeing': 1,
          'unite': 1,
          'immediately': 1,
          'sucked': 1,
          'caring': 1,
          'identifying': 1,
          'nmisguided': 1,
          'nloveable': 1,
          'delight': 1,
          'bonus': 1,
          'realized': 1,
          'filmed': 1,
          'hometown': 1,
          'salt': 1,
          'lake': 1,
          'city': 1,
          'utah': 1,
          'nthis': 1,
          'one': 1,
          'thing': 1,
          'didnt': 1,
          'sat': 1,
          'five': 1,
          'order': 1,
          'nachos': 1,
          'three': 1,
          'coke': 1,
          'nmaybe': 1,
          'knowing': 1,
          'premise': 1,
          'behind': 1,
          'made': 1,
          'pleasant': 1,
          'surprise': 1,
          'think': 1,
          'known': 1,
          'would': 1,
          'happy': 1,
          'quirky': 1,
          'eccentric': 1,
          'downright': 1,
          'charming': 1,
          'nnot': 1,
          'everyone': 1,
          'definite': 1,
          'change': 1,
          'pace': 1,
          'night': 1,
          'movies': 1,
          'npos': 1}),
 Counter({'thing': 9,
          'hanks': 4,
          'nice': 3,
          'wonders': 3,
          'nthe': 3,
          'film': 3,
          'days': 3,
          'tom': 2,
          'hankss': 2,
          'moment': 2,
          'nit': 2,
          'becomes': 2,
          '60s': 2,
          'nostalgia': 2,
          'bland': 2,
          '1964': 2,
          'theres': 2,
          'lead': 2,
          'films': 2,
          'scott': 2,
          'success': 2,
          'tyler': 2,
          'innocent': 2,
          'spirit': 2,
          'period': 2,
          'music': 2,
          'long': 2,
          'end': 2,
          'work': 2,
          'song': 2,
          'try': 2,
          'n': 1,
          'r': 1,
          'screenwriting': 1,
          'directorial': 1,
          'debut': 1,
          'qualities': 1,
          'would': 1,
          'associate': 1,
          'beloved': 1,
          'screen': 1,
          'actor': 1,
          'fun': 1,
          'lively': 1,
          'ohsonice': 1,
          'latter': 1,
          'quality': 1,
          'however': 1,
          'hindrance': 1,
          'trifle': 1,
          'sweet': 1,
          'teeters': 1,
          'becoming': 1,
          'milquetoast': 1,
          'nthat': 1,
          'focuses': 1,
          'teen': 1,
          'rock': 1,
          'band': 1,
          'erie': 1,
          'pennsylvania': 1,
          'suddenly': 1,
          'thrust': 1,
          'national': 1,
          'spotlight': 1,
          'score': 1,
          'major': 1,
          'dance': 1,
          'hit': 1,
          'called': 1,
          'course': 1,
          'groups': 1,
          'members': 1,
          'naturally': 1,
          'diverse': 1,
          'group': 1,
          'brooding': 1,
          'singer': 1,
          'songwriter': 1,
          'jimmy': 1,
          'johnathon': 1,
          'schaech': 1,
          'girlcrazy': 1,
          'lenny': 1,
          'steve': 1,
          'zahn': 1,
          'guitarist': 1,
          'goofy': 1,
          'geeky': 1,
          'type': 1,
          'known': 1,
          'bass': 1,
          'player': 1,
          'ethan': 1,
          'embry': 1,
          'center': 1,
          'guy': 1,
          'everett': 1,
          'drummer': 1,
          'aspirations': 1,
          'jazz': 1,
          'nalong': 1,
          'ride': 1,
          'jimmys': 1,
          'perpetually': 1,
          'neglected': 1,
          'galpal': 1,
          'faye': 1,
          'liv': 1,
          'nhanks': 1,
          'proves': 1,
          'capable': 1,
          'writerdirector': 1,
          'deftly': 1,
          'recreating': 1,
          'calls': 1,
          'last': 1,
          'year': 1,
          'reflected': 1,
          'clothes': 1,
          'settings': 1,
          'also': 1,
          'like': 1,
          'recent': 1,
          'grace': 1,
          'heart': 1,
          'expressly': 1,
          'written': 1,
          'hand': 1,
          'writing': 1,
          'four': 1,
          'tunesbut': 1,
          'infectious': 1,
          'title': 1,
          'cut': 1,
          'adam': 1,
          'schlesinger': 1,
          'guaranteed': 1,
          'stay': 1,
          'head': 1,
          'credits': 1,
          'rolled': 1,
          'still': 1,
          'playing': 1,
          'mind': 1,
          'write': 1,
          'come': 1,
          'surprise': 1,
          'director': 1,
          'works': 1,
          'well': 1,
          'actors': 1,
          'eliciting': 1,
          'charming': 1,
          'likable': 1,
          'entire': 1,
          'cast': 1,
          'notably': 1,
          'lookalike': 1,
          'remarkable': 1,
          'delivering': 1,
          'biggest': 1,
          'best': 1,
          'dramatic': 1,
          'young': 1,
          'ensemble': 1,
          'natural': 1,
          'truly': 1,
          'convince': 1,
          'teens': 1,
          'early': 1,
          'appear': 1,
          '90s': 1,
          'grungers': 1,
          'playacting': 1,
          'retro': 1,
          'nyet': 1,
          'light': 1,
          'frothy': 1,
          'charms': 1,
          'nearly': 1,
          'fault': 1,
          'nwhile': 1,
          'unbridled': 1,
          'innocence': 1,
          'refreshing': 1,
          'change': 1,
          'sinful': 1,
          'cinema': 1,
          'around': 1,
          'enough': 1,
          'conflict': 1,
          'keep': 1,
          'things': 1,
          'consistently': 1,
          'interesting': 1,
          'neveryone': 1,
          'happy': 1,
          'basking': 1,
          'glow': 1,
          'overnight': 1,
          'marvelling': 1,
          'allexcept': 1,
          'toward': 1,
          'even': 1,
          'tone': 1,
          'quickly': 1,
          'reverts': 1,
          'sweetness': 1,
          'ending': 1,
          'appropriately': 1,
          'feelgood': 1,
          'note': 1,
          'nthere': 1,
          'isnt': 1,
          'much': 1,
          'edge': 1,
          'throughout': 1,
          'thingthe': 1,
          'remotely': 1,
          'edgy': 1,
          'turn': 1,
          'managerand': 1,
          'thus': 1,
          'danger': 1,
          'nbut': 1,
          'little': 1,
          'niceness': 1,
          'goes': 1,
          'way': 1,
          'denying': 1,
          'entertainment': 1,
          'value': 1,
          'impossible': 1,
          'hate': 1,
          'nits': 1,
          'inoffensive': 1,
          'enjoyable': 1,
          'piece': 1,
          'sure': 1,
          'leave': 1,
          'audiences': 1,
          'smiling': 1,
          'humming': 1,
          'singing': 1,
          'quite': 1,
          'npossibly': 1,
          'nto': 1,
          'paraphrase': 1,
          'passage': 1,
          'though': 1,
          'forget': 1,
          'hard': 1,
          'every': 1,
          'time': 1,
          'play': 1,
          'npos': 1}),
 Counter({'doctor': 10,
          'nthe': 6,
          'master': 5,
          'movie': 5,
          'time': 4,
          'series': 4,
          'daleks': 4,
          'good': 4,
          'role': 4,
          'would': 4,
          'lot': 3,
          'eric': 3,
          'roberts': 3,
          'nis': 3,
          'shows': 3,
          'star': 3,
          'back': 2,
          'motto': 2,
          'pilot': 2,
          'fox': 2,
          'network': 2,
          'revival': 2,
          'british': 2,
          'show': 2,
          'smart': 2,
          'news': 2,
          'people': 2,
          'well': 2,
          'called': 2,
          'including': 2,
          'appears': 2,
          'played': 2,
          'acting': 2,
          'mcgann': 2,
          'nhe': 2,
          'actor': 2,
          'ashbrook': 2,
          'dr': 2,
          'grace': 2,
          'holloway': 2,
          'companion': 2,
          'kisses': 2,
          'screen': 2,
          'female': 2,
          'american': 2,
          'chang': 2,
          'problem': 2,
          'always': 2,
          'occasion': 2,
          'said': 2,
          'like': 2,
          'less': 2,
          'one': 2,
          'ni': 2,
          'theyre': 2,
          'fans': 2,
          'script': 2,
          'whole': 2,
          'plot': 2,
          'help': 2,
          'wouldve': 2,
          'hes': 1,
          'nwas': 1,
          'television': 1,
          'call': 1,
          'dont': 1,
          'care': 1,
          'says': 1,
          'cult': 1,
          'classic': 1,
          'tv': 1,
          'spawned': 1,
          'means': 1,
          'execs': 1,
          'exactly': 1,
          'know': 1,
          'chosen': 1,
          'simple': 1,
          'lord': 1,
          'scientist': 1,
          'thirteen': 1,
          'lives': 1,
          'traveled': 1,
          'around': 1,
          'type': 1,
          'forty': 1,
          'spaceship': 1,
          'tardis': 1,
          'outsmarting': 1,
          'kind': 1,
          'alien': 1,
          'baddies': 1,
          'evil': 1,
          'feature': 1,
          'badly': 1,
          'nas': 1,
          'something': 1,
          'missing': 1,
          'make': 1,
          'sure': 1,
          'really': 1,
          'nhell': 1,
          'npaul': 1,
          'seven': 1,
          'guys': 1,
          'whove': 1,
          'predecessor': 1,
          'offscreen': 1,
          'friend': 1,
          'sylvester': 1,
          'mccoy': 1,
          'regeneration': 1,
          'scene': 1,
          'looks': 1,
          'right': 1,
          'brilliant': 1,
          'slips': 1,
          'effortlessly': 1,
          'way': 1,
          'two': 1,
          'favorites': 1,
          'jon': 1,
          'pertwee': 1,
          'tom': 1,
          'baker': 1,
          'ndaphne': 1,
          'brings': 1,
          'class': 1,
          'doctors': 1,
          'first': 1,
          'typical': 1,
          'screams': 1,
          'spends': 1,
          'free': 1,
          'making': 1,
          'coffee': 1,
          'tough': 1,
          'spunky': 1,
          'nyoung': 1,
          'yee': 1,
          'jee': 1,
          'tso': 1,
          'promise': 1,
          'lee': 1,
          'ive': 1,
          'seen': 1,
          'stuff': 1,
          'usually': 1,
          'plays': 1,
          'punk': 1,
          'kid': 1,
          'dies': 1,
          'end': 1,
          'film': 1,
          'included': 1,
          'imho': 1,
          'wastes': 1,
          'talent': 1,
          'none': 1,
          'say': 1,
          'mcganns': 1,
          'dress': 1,
          'nbut': 1,
          'broke': 1,
          'slowly': 1,
          'wounded': 1,
          'sounding': 1,
          'song': 1,
          'lyric': 1,
          'ndress': 1,
          'nfor': 1,
          'nyou': 1,
          'need': 1,
          'slow': 1,
          'reliant': 1,
          'moving': 1,
          'hands': 1,
          'act': 1,
          'whos': 1,
          'also': 1,
          'nexecutive': 1,
          'producer': 1,
          'phil': 1,
          'segal': 1,
          'casted': 1,
          'insisted': 1,
          'dunno': 1,
          'thought': 1,
          'casting': 1,
          'reading': 1,
          'flash': 1,
          'rides': 1,
          'sisters': 1,
          'coattails': 1,
          'hit': 1,
          'makes': 1,
          'nothing': 1,
          'past': 1,
          'nthey': 1,
          'references': 1,
          'subtle': 1,
          'non': 1,
          'notice': 1,
          'whovians': 1,
          'classy': 1,
          'piece': 1,
          'work': 1,
          'featuring': 1,
          'spit': 1,
          'slime': 1,
          'mouth': 1,
          'nice': 1,
          'dialogue': 1,
          'love': 1,
          'stand': 1,
          'alone': 1,
          'viewing': 1,
          'nonfans': 1,
          'enjoy': 1,
          'nso': 1,
          'nsimple': 1,
          'last': 1,
          'legs': 1,
          'sends': 1,
          'rescue': 1,
          'put': 1,
          'trial': 1,
          'planet': 1,
          'skaro': 1,
          'exterminate': 1,
          'attempts': 1,
          'take': 1,
          'remains': 1,
          'gallifrey': 1,
          'accidentally': 1,
          'land': 1,
          'san': 1,
          'francisco': 1,
          '1999': 1,
          'december': 1,
          '31': 1,
          'young': 1,
          'street': 1,
          'hood': 1,
          'lees': 1,
          'opens': 1,
          'eye': 1,
          'harmony': 1,
          'suck': 1,
          'earth': 1,
          'midnight': 1,
          'surgeon': 1,
          'doesnt': 1,
          'close': 1,
          'nvirtually': 1,
          'told': 1,
          'featured': 1,
          'started': 1,
          'courtroom': 1,
          'drama': 1,
          'rewriting': 1,
          'went': 1,
          'set': 1,
          'nthat': 1,
          'made': 1,
          'hell': 1,
          'interesting': 1,
          'gotten': 1,
          'four': 1,
          'rating': 1,
          'npos': 1}),
 Counter({'one': 11,
          'life': 7,
          'burnham': 6,
          'performance': 6,
          'film': 5,
          'lester': 5,
          'man': 5,
          'nhis': 5,
          'growing': 5,
          'nthe': 5,
          'character': 5,
          'almost': 5,
          'years': 5,
          'bening': 4,
          'beauty': 4,
          'birch': 4,
          'chris': 4,
          'daughter': 4,
          'family': 4,
          'spacey': 3,
          'american': 3,
          'bentley': 3,
          'cooper': 3,
          'ball': 3,
          'wife': 3,
          'nand': 3,
          'job': 3,
          'starts': 3,
          'nshe': 3,
          'best': 3,
          'young': 3,
          'also': 3,
          'come': 3,
          'characters': 3,
          'fitts': 3,
          'caught': 3,
          'subtle': 3,
          'carolyn': 3,
          'jinks': 2,
          'cohen': 2,
          'production': 2,
          'kevin': 2,
          'annette': 2,
          'thora': 2,
          'allison': 2,
          'janney': 2,
          'mena': 2,
          'suvari': 2,
          'wes': 2,
          'alan': 2,
          'designer': 2,
          'conrad': 2,
          'hall': 2,
          'directed': 2,
          'sam': 2,
          'mendes': 2,
          'think': 2,
          'im': 2,
          'ni': 2,
          'lost': 2,
          'something': 2,
          'didnt': 2,
          'dialogue': 2,
          'year': 2,
          'old': 2,
          'suffering': 2,
          'series': 2,
          'ncarolyn': 2,
          'prototypical': 2,
          'career': 2,
          'woman': 2,
          'home': 2,
          'denial': 2,
          'self': 2,
          'resentment': 2,
          'na': 2,
          'girl': 2,
          'frightening': 2,
          'nnot': 2,
          'ncolonel': 2,
          'angry': 2,
          'ricky': 2,
          'next': 2,
          'door': 2,
          'many': 2,
          'hit': 2,
          'insightful': 2,
          'depth': 2,
          'tries': 2,
          'time': 2,
          'marvelous': 2,
          'turns': 2,
          'become': 2,
          'nmr': 2,
          'may': 2,
          'nthora': 2,
          'cast': 2,
          'child': 2,
          'yet': 2,
          'finn': 2,
          'complete': 2,
          'simply': 2,
          'dreamworks': 1,
          'pictures': 1,
          'presents': 1,
          'company': 1,
          'peter': 1,
          'gallagher': 1,
          'coproducers': 1,
          'stan': 1,
          'wlodkowski': 1,
          'music': 1,
          'thomas': 1,
          'newman': 1,
          'costume': 1,
          'julie': 1,
          'weiss': 1,
          'editor': 1,
          'tariq': 1,
          'anway': 1,
          'greenbury': 1,
          'naomi': 1,
          'shohan': 1,
          'director': 1,
          'photography': 1,
          'l': 1,
          'c': 1,
          'nproduced': 1,
          'bruce': 1,
          'dan': 1,
          'written': 1,
          'n': 1,
          'gigantic': 1,
          'loser': 1,
          'theyre': 1,
          'right': 1,
          'always': 1,
          'feel': 1,
          'sedated': 1,
          'nwith': 1,
          'piece': 1,
          'fully': 1,
          'introduced': 1,
          '42': 1,
          'trapped': 1,
          'within': 1,
          'nlester': 1,
          'works': 1,
          'advertising': 1,
          'agency': 1,
          'dissatisfaction': 1,
          'midlife': 1,
          'crisis': 1,
          'nestranged': 1,
          'crack': 1,
          'stress': 1,
          'becomes': 1,
          'nothing': 1,
          'mastubatory': 1,
          'fantasies': 1,
          'sullen': 1,
          'apathy': 1,
          'homemaker': 1,
          'carefully': 1,
          'tends': 1,
          'rose': 1,
          'garden': 1,
          'decorates': 1,
          'furnishings': 1,
          'nbut': 1,
          'inside': 1,
          'desperate': 1,
          'nunsuccessful': 1,
          'profession': 1,
          'real': 1,
          'estate': 1,
          'agent': 1,
          'drives': 1,
          'states': 1,
          'loathing': 1,
          'feed': 1,
          'towards': 1,
          'third': 1,
          'member': 1,
          'antifamily': 1,
          'jane': 1,
          'carolyns': 1,
          'going': 1,
          'typical': 1,
          'stages': 1,
          'adolescence': 1,
          'terms': 1,
          'families': 1,
          'dysfunction': 1,
          'nthis': 1,
          'funny': 1,
          'slice': 1,
          'refreshingly': 1,
          'simple': 1,
          'given': 1,
          'less': 1,
          'needed': 1,
          'identify': 1,
          'nsome': 1,
          'telling': 1,
          'serve': 1,
          'highlight': 1,
          'nmost': 1,
          'notably': 1,
          'barbara': 1,
          'catatonic': 1,
          'retired': 1,
          'marine': 1,
          'colonel': 1,
          'seems': 1,
          'either': 1,
          'recovering': 1,
          'stroke': 1,
          'frightened': 1,
          'rage': 1,
          'singularly': 1,
          'son': 1,
          'moved': 1,
          'neighborhood': 1,
          'burnhams': 1,
          'nin': 1,
          'fact': 1,
          'neighbors': 1,
          'nanymore': 1,
          'detail': 1,
          'personalities': 1,
          'marvelously': 1,
          'diverse': 1,
          'would': 1,
          'deprive': 1,
          'pleasures': 1,
          'surprises': 1,
          'nalan': 1,
          'coexecutive': 1,
          'producer': 1,
          'tv': 1,
          'cybil': 1,
          'creator': 1,
          'new': 1,
          'sitcom': 1,
          'oh': 1,
          'grow': 1,
          'fashioned': 1,
          'expertly': 1,
          'tuned': 1,
          'screenplays': 1,
          'screen': 1,
          'past': 1,
          'ten': 1,
          'rings': 1,
          'falsely': 1,
          'personality': 1,
          'achingly': 1,
          'honest': 1,
          'plot': 1,
          'detailing': 1,
          'last': 1,
          'find': 1,
          'worth': 1,
          'resoundingly': 1,
          'cliched': 1,
          'original': 1,
          'bring': 1,
          'mind': 1,
          'work': 1,
          'graduate': 1,
          'lolita': 1,
          'nkevin': 1,
          'pragmatic': 1,
          'performances': 1,
          'everyman': 1,
          'middle': 1,
          'spiraling': 1,
          'age': 1,
          'nfinally': 1,
          'unable': 1,
          'deal': 1,
          'soul': 1,
          'return': 1,
          'youth': 1,
          'nhe': 1,
          'quits': 1,
          'actually': 1,
          'blackmailing': 1,
          'employer': 1,
          'salary': 1,
          'smoking': 1,
          'pot': 1,
          'fantasizes': 1,
          'daughters': 1,
          'girlfriend': 1,
          'angela': 1,
          'working': 1,
          'finally': 1,
          'takes': 1,
          'local': 1,
          'fast': 1,
          'food': 1,
          'outlet': 1,
          'spaceys': 1,
          'remarkably': 1,
          'ingenuous': 1,
          'certain': 1,
          'oscar': 1,
          'assured': 1,
          'see': 1,
          'name': 1,
          'among': 1,
          'five': 1,
          'nominees': 1,
          'nannette': 1,
          'insecure': 1,
          'maintaining': 1,
          'facade': 1,
          'normalcy': 1,
          'nunable': 1,
          'cope': 1,
          'disillusionment': 1,
          'forces': 1,
          'maintain': 1,
          'demeanor': 1,
          'driving': 1,
          'desperation': 1,
          'adultery': 1,
          'possibly': 1,
          'murder': 1,
          'nms': 1,
          'makes': 1,
          'compelling': 1,
          'identifiable': 1,
          'anyone': 1,
          'slow': 1,
          'methodical': 1,
          'turn': 1,
          'happy': 1,
          'maker': 1,
          'charnel': 1,
          'house': 1,
          'martha': 1,
          'stewart': 1,
          'express': 1,
          'words': 1,
          'holds': 1,
          'talents': 1,
          'njane': 1,
          'innocent': 1,
          'dysfunctional': 1,
          'rebellious': 1,
          'ready': 1,
          'abandon': 1,
          'moment': 1,
          'nher': 1,
          'distrust': 1,
          'isolation': 1,
          'parents': 1,
          'view': 1,
          'warning': 1,
          'trophy': 1,
          'nwhen': 1,
          'praises': 1,
          'cheerleading': 1,
          'team': 1,
          'proud': 1,
          'honey': 1,
          'nyou': 1,
          'screw': 1,
          'bitterness': 1,
          'palpable': 1,
          'actress': 1,
          'watch': 1,
          'npraise': 1,
          'must': 1,
          'go': 1,
          'brings': 1,
          'another': 1,
          'father': 1,
          'role': 1,
          'resonance': 1,
          'military': 1,
          'upbringing': 1,
          'masking': 1,
          'desire': 1,
          'repulsed': 1,
          'even': 1,
          'comprehend': 1,
          'nwes': 1,
          'fine': 1,
          'enigma': 1,
          'boy': 1,
          'foe': 1,
          'friend': 1,
          'deceitful': 1,
          'calculating': 1,
          'whose': 1,
          'voyeuristic': 1,
          'proclivities': 1,
          'mask': 1,
          'deeper': 1,
          'profound': 1,
          'understanding': 1,
          'adults': 1,
          'around': 1,
          'bentleys': 1,
          'troublesome': 1,
          'note': 1,
          'nthat': 1,
          'grand': 1,
          'liar': 1,
          'faults': 1,
          'ndirector': 1,
          'handles': 1,
          'particulars': 1,
          'settings': 1,
          'sure': 1,
          'composed': 1,
          'style': 1,
          'neither': 1,
          'intrusive': 1,
          'nscenes': 1,
          'walking': 1,
          'rain': 1,
          'carry': 1,
          'ominous': 1,
          'fission': 1,
          'calls': 1,
          'attention': 1,
          'emotions': 1,
          'cinematography': 1,
          'wonderful': 1,
          'capturing': 1,
          'season': 1,
          'harsh': 1,
          'fall': 1,
          'never': 1,
          'looked': 1,
          'inviting': 1,
          'depressing': 1,
          'nevery': 1,
          'nuance': 1,
          'begs': 1,
          'audience': 1,
          'examine': 1,
          'nit': 1,
          'discussed': 1,
          'debated': 1,
          'well': 1,
          'npos': 1}),
 Counter({'good': 7,
          'movie': 5,
          'nhe': 5,
          'nits': 4,
          'nwill': 4,
          'knows': 4,
          'sean': 4,
          'hunting': 3,
          'thats': 3,
          'like': 3,
          'quite': 3,
          'get': 3,
          'nlambeau': 3,
          'mathematics': 3,
          'time': 3,
          'therapy': 3,
          'sessions': 3,
          'lambeau': 3,
          'take': 3,
          'foster': 3,
          'child': 3,
          'great': 3,
          'damon': 2,
          'genius': 2,
          'character': 2,
          'doesnt': 2,
          'nthis': 2,
          'nin': 2,
          'anything': 2,
          'works': 2,
          'hes': 2,
          'janitor': 2,
          'construction': 2,
          'fights': 2,
          'math': 2,
          'prison': 2,
          'long': 2,
          'agrees': 2,
          'go': 2,
          'nhes': 2,
          'wills': 2,
          'einstein': 2,
          'isnt': 2,
          'would': 2,
          'lambeaus': 2,
          'psychology': 2,
          'know': 2,
          'college': 2,
          'williams': 2,
          'attacks': 2,
          'nbut': 2,
          'nlike': 2,
          'mother': 2,
          'quiet': 2,
          'actor': 2,
          'right': 2,
          'learn': 2,
          'life': 2,
          'help': 2,
          'grow': 2,
          'didnt': 2,
          'direction': 2,
          'nif': 2,
          'drama': 2,
          'melodrama': 2,
          'nit': 2,
          'matt': 1,
          'natural': 1,
          'nfor': 1,
          'usually': 1,
          'death': 1,
          'sentence': 1,
          'trait': 1,
          'associated': 1,
          'brother': 1,
          'calls': 1,
          'world': 1,
          'movies': 1,
          'phenomenon': 1,
          'powder': 1,
          'nforgive': 1,
          'spoiling': 1,
          'ending': 1,
          'die': 1,
          'formula': 1,
          'fact': 1,
          'fresh': 1,
          'original': 1,
          'study': 1,
          'surprising': 1,
          'considering': 1,
          'written': 1,
          'two': 1,
          'actors': 1,
          'costar': 1,
          'ben': 1,
          'affleck': 1,
          'whatever': 1,
          'kind': 1,
          'job': 1,
          'nfirst': 1,
          'noffscreen': 1,
          'speed': 1,
          'reads': 1,
          'books': 1,
          'academic': 1,
          'subject': 1,
          'interests': 1,
          'nonscreen': 1,
          'hangs': 1,
          'friends': 1,
          'picking': 1,
          'robust': 1,
          'romanticizedhemingway': 1,
          'fashion': 1,
          'stellan': 1,
          'skarsgard': 1,
          'breaking': 1,
          'waves': 1,
          'professor': 1,
          'learns': 1,
          'special': 1,
          'talent': 1,
          'advanced': 1,
          'nhaving': 1,
          'confirmed': 1,
          'fluke': 1,
          'savant': 1,
          'education': 1,
          'system': 1,
          'firmly': 1,
          'rejected': 1,
          'nfinally': 1,
          'lands': 1,
          'jail': 1,
          'one': 1,
          'probation': 1,
          'instead': 1,
          'discussing': 1,
          'barely': 1,
          'decides': 1,
          'treats': 1,
          'son': 1,
          'proud': 1,
          'amazed': 1,
          'accomplishments': 1,
          'encourages': 1,
          'tries': 1,
          'give': 1,
          'structure': 1,
          'knowing': 1,
          'little': 1,
          'discipline': 1,
          'could': 1,
          'bigger': 1,
          'really': 1,
          'interested': 1,
          'academia': 1,
          'best': 1,
          'field': 1,
          'therefore': 1,
          'spend': 1,
          'office': 1,
          'explaining': 1,
          'people': 1,
          'rather': 1,
          'work': 1,
          'breaks': 1,
          'heart': 1,
          'nmeanwhile': 1,
          'attends': 1,
          'mandated': 1,
          'shreds': 1,
          'therapists': 1,
          'list': 1,
          'read': 1,
          'enough': 1,
          'tricks': 1,
          'trade': 1,
          'keep': 1,
          'affecting': 1,
          'nshrink': 1,
          'shrink': 1,
          'refuses': 1,
          'return': 1,
          'mockery': 1,
          'nlambeaus': 1,
          'last': 1,
          'hope': 1,
          'old': 1,
          'roommate': 1,
          'teacher': 1,
          'smalltime': 1,
          'community': 1,
          'nknowing': 1,
          'going': 1,
          'try': 1,
          'shred': 1,
          'robin': 1,
          'favor': 1,
          'chance': 1,
          'meet': 1,
          'next': 1,
          'ntrue': 1,
          'form': 1,
          'finds': 1,
          'seans': 1,
          'emotional': 1,
          'weakness': 1,
          'unlike': 1,
          'shrinks': 1,
          'continues': 1,
          'fussy': 1,
          'defensive': 1,
          'able': 1,
          'stride': 1,
          'patience': 1,
          'approach': 1,
          'nrobin': 1,
          'excellent': 1,
          'role': 1,
          'range': 1,
          'roles': 1,
          'depth': 1,
          'awakenings': 1,
          'comes': 1,
          'point': 1,
          'shy': 1,
          'man': 1,
          'accomplishes': 1,
          'something': 1,
          'personal': 1,
          'importance': 1,
          'smile': 1,
          'pure': 1,
          'joy': 1,
          'spreads': 1,
          'eyes': 1,
          'nwilliams': 1,
          'name': 1,
          'make': 1,
          'audience': 1,
          'cry': 1,
          'smiling': 1,
          'ni': 1,
          'compared': 1,
          'entirely': 1,
          'fair': 1,
          'nemotionally': 1,
          'lot': 1,
          'thought': 1,
          'made': 1,
          'rational': 1,
          'decisions': 1,
          'wants': 1,
          'nsean': 1,
          'girlfriend': 1,
          'pals': 1,
          'start': 1,
          'asking': 1,
          'particularly': 1,
          'needing': 1,
          'nhis': 1,
          'exceptional': 1,
          'gift': 1,
          'singled': 1,
          'love': 1,
          'kept': 1,
          'pushing': 1,
          'say': 1,
          'bad': 1,
          'walks': 1,
          'line': 1,
          'sentimental': 1,
          'uplifiting': 1,
          'straight': 1,
          'emotions': 1,
          'subtle': 1,
          'emotionally': 1,
          'engaging': 1,
          'larger': 1,
          'problem': 1,
          'per': 1,
          'se': 1,
          'times': 1,
          'relatively': 1,
          'small': 1,
          'complaint': 1,
          'na': 1,
          'allows': 1,
          'characters': 1,
          'happen': 1,
          'takes': 1,
          'script': 1,
          'acting': 1,
          'ngood': 1,
          'three': 1,
          'inclined': 1,
          'see': 1,
          'means': 1,
          'npos': 1}),
 Counter({'movie': 5,
          'pleasantville': 5,
          'fine': 4,
          'ideas': 3,
          'ross': 3,
          'well': 3,
          'witherspoon': 3,
          'end': 3,
          'daniels': 3,
          'theres': 2,
          'one': 2,
          'nalthough': 2,
          'fox': 2,
          'line': 2,
          'cinema': 2,
          'like': 2,
          'production': 2,
          'change': 2,
          'atmosphere': 2,
          'true': 2,
          'brings': 2,
          'life': 2,
          'picture': 2,
          'together': 2,
          'two': 2,
          'quite': 2,
          'named': 2,
          'nmaguire': 2,
          'perfect': 2,
          'town': 2,
          'jeff': 2,
          'j': 2,
          'nwalsh': 2,
          'simply': 2,
          'entire': 2,
          'performance': 2,
          'walsh': 2,
          'point': 2,
          'thing': 1,
          'common': 1,
          'hollywoods': 1,
          'major': 1,
          'studios': 1,
          'productions': 1,
          'moving': 1,
          'toward': 1,
          'mainstream': 1,
          'twentieth': 1,
          'century': 1,
          'new': 1,
          'spawned': 1,
          'subsidiaries': 1,
          'specialize': 1,
          'independant': 1,
          'controversial': 1,
          'motion': 1,
          'pictures': 1,
          'searchlight': 1,
          'respectively': 1,
          'obvious': 1,
          'significant': 1,
          'movement': 1,
          'underway': 1,
          'promote': 1,
          'inventive': 1,
          'theater': 1,
          'nso': 1,
          'gary': 1,
          'comes': 1,
          'along': 1,
          'wrapped': 1,
          'blanket': 1,
          'innovative': 1,
          'served': 1,
          'platter': 1,
          'welcome': 1,
          'pace': 1,
          'frequent': 1,
          'cineplexes': 1,
          'buzz': 1,
          'cheery': 1,
          'lighthearted': 1,
          'mistaken': 1,
          'nothought': 1,
          'nquite': 1,
          'opposite': 1,
          'fact': 1,
          'director': 1,
          'skillfully': 1,
          'narrative': 1,
          'intense': 1,
          'intelligent': 1,
          'undertones': 1,
          'screen': 1,
          'nthe': 1,
          'story': 1,
          'joys': 1,
          'living': 1,
          'fullest': 1,
          'social': 1,
          'ills': 1,
          'segregation': 1,
          'captures': 1,
          'essence': 1,
          'statementmaking': 1,
          'nnot': 1,
          'recent': 1,
          'memory': 1,
          'carried': 1,
          'weight': 1,
          'theme': 1,
          'widescale': 1,
          'distribution': 1,
          'even': 1,
          'mass': 1,
          'audiences': 1,
          'fail': 1,
          'see': 1,
          'ingenuity': 1,
          'work': 1,
          'still': 1,
          'testament': 1,
          'considered': 1,
          'worthy': 1,
          'enough': 1,
          'nkudos': 1,
          'staff': 1,
          'putting': 1,
          'nit': 1,
          'stars': 1,
          'tobey': 1,
          'maguire': 1,
          'reese': 1,
          'nineties': 1,
          'teenagers': 1,
          'bit': 1,
          'luck': 1,
          'find': 1,
          'zapped': 1,
          'fifties': 1,
          'sitcom': 1,
          'reserved': 1,
          'bud': 1,
          'parker': 1,
          'pseudoworld': 1,
          'rebellious': 1,
          'mary': 1,
          'sue': 1,
          'made': 1,
          'fatherknowsbest': 1,
          'times': 1,
          'nits': 1,
          'long': 1,
          'sets': 1,
          'begins': 1,
          'teach': 1,
          'townspeople': 1,
          'unlikely': 1,
          'way': 1,
          'really': 1,
          'nsoon': 1,
          'hues': 1,
          'color': 1,
          'creep': 1,
          'black': 1,
          'white': 1,
          'world': 1,
          'embrace': 1,
          'passion': 1,
          'realism': 1,
          'others': 1,
          'fear': 1,
          'strangeness': 1,
          'nat': 1,
          'soda': 1,
          'shop': 1,
          'ownerturnedpainter': 1,
          'mr': 1,
          'johnson': 1,
          'closeminded': 1,
          'mayor': 1,
          'chamber': 1,
          'commerce': 1,
          'sides': 1,
          'fronts': 1,
          'clash': 1,
          'soon': 1,
          'involves': 1,
          'nfine': 1,
          'performances': 1,
          'turned': 1,
          'around': 1,
          'effective': 1,
          'leads': 1,
          'complements': 1,
          'go': 1,
          'latest': 1,
          'final': 1,
          'posthumous': 1,
          'ndaniels': 1,
          'awe': 1,
          'inspiration': 1,
          'hope': 1,
          'character': 1,
          'whereas': 1,
          'drips': 1,
          'sinister': 1,
          'closemindedness': 1,
          'almost': 1,
          'sense': 1,
          'gene': 1,
          'hackmans': 1,
          'envy': 1,
          'nfor': 1,
          'commendable': 1,
          'last': 1,
          'three': 1,
          'years': 1,
          'complementary': 1,
          'exclamation': 1,
          'career': 1,
          'nalso': 1,
          'lesser': 1,
          'note': 1,
          'supporting': 1,
          'role': 1,
          'joan': 1,
          'allen': 1,
          'viewing': 1,
          'cast': 1,
          'works': 1,
          'start': 1,
          'finish': 1,
          'ntheres': 1,
          'much': 1,
          'dislike': 1,
          'dynamic': 1,
          'nature': 1,
          'makes': 1,
          'want': 1,
          'serious': 1,
          'dont': 1,
          'npos': 1}),
 Counter({'indy': 6,
          'snakes': 5,
          'action': 5,
          'film': 5,
          'best': 5,
          'get': 4,
          'movie': 4,
          'ford': 4,
          'indiana': 4,
          'ark': 4,
          'adventure': 4,
          'could': 4,
          'well': 4,
          'script': 4,
          'spielberg': 3,
          'harrison': 3,
          'time': 3,
          'jones': 3,
          'nif': 3,
          'like': 3,
          'souls': 3,
          'nthe': 3,
          'story': 2,
          'george': 2,
          'lucas': 2,
          'one': 2,
          'stars': 2,
          'world': 2,
          'good': 2,
          'thats': 2,
          'hands': 2,
          'romance': 2,
          'interesting': 2,
          'line': 2,
          'cast': 2,
          'fun': 2,
          'dont': 2,
          'enjoy': 2,
          'youre': 2,
          'youll': 2,
          'humor': 2,
          'travelling': 2,
          'different': 2,
          'sequels': 2,
          'whip': 2,
          'picture': 2,
          'fire': 2,
          'originally': 2,
          'sequence': 2,
          'every': 2,
          'cut': 2,
          'gun': 2,
          'nalso': 2,
          'opening': 2,
          'nthis': 2,
          'shot': 2,
          'c3po': 2,
          'nwhen': 2,
          'face': 2,
          'see': 2,
          'slap': 1,
          'together': 1,
          'based': 1,
          'legendary': 1,
          'directed': 1,
          'virtuoso': 1,
          'director': 1,
          'steven': 1,
          'starring': 1,
          'biggest': 1,
          'boxoffice': 1,
          'nyou': 1,
          'hotfudgerockin': 1,
          'nplot': 1,
          'professorarcheologist': 1,
          'sets': 1,
          'find': 1,
          'longlost': 1,
          'mystical': 1,
          'covenant': 1,
          'nazis': 1,
          'grubby': 1,
          'fingers': 1,
          'nadventures': 1,
          'mucho': 1,
          'ensues': 1,
          'ncritique': 1,
          'astounding': 1,
          'packed': 1,
          'nonstop': 1,
          'stunts': 1,
          'galore': 1,
          'great': 1,
          'oneliners': 1,
          'solid': 1,
          'catchy': 1,
          'musical': 1,
          'score': 1,
          'squeeze': 1,
          'twohour': 1,
          'thrill': 1,
          'ride': 1,
          'movies': 1,
          'period': 1,
          'young': 1,
          'cool': 1,
          'sequences': 1,
          'grossout': 1,
          'factor': 1,
          'times': 1,
          'little': 1,
          'older': 1,
          'appreciate': 1,
          'plot': 1,
          'yes': 1,
          'mountains': 1,
          'nwatching': 1,
          'made': 1,
          'feel': 1,
          'kid': 1,
          'dreaming': 1,
          'fantasizing': 1,
          'fighting': 1,
          'bad': 1,
          'guys': 1,
          'countries': 1,
          'making': 1,
          'impossible': 1,
          'possible': 1,
          'nharrison': 1,
          'perfect': 1,
          'everyman': 1,
          'brains': 1,
          'scientist': 1,
          'brawn': 1,
          'outdoors': 1,
          'adventurer': 1,
          'manages': 1,
          'achieve': 1,
          'ideal': 1,
          'balance': 1,
          'nnow': 1,
          'really': 1,
          'want': 1,
          'check': 1,
          'night': 1,
          'two': 1,
          'rent': 1,
          'jug': 1,
          'iced': 1,
          'coke': 1,
          'truckloads': 1,
          'nachos': 1,
          'salsa': 1,
          'hat': 1,
          'prepare': 1,
          'gag': 1,
          'actionmovie': 1,
          'heaven': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'nominated': 1,
          'eight': 1,
          '1981': 1,
          'oscar': 1,
          'nominations': 1,
          'including': 1,
          'nit': 1,
          'lost': 1,
          'award': 1,
          'chariots': 1,
          'manage': 1,
          'win': 1,
          'art': 1,
          'direction': 1,
          'special': 1,
          'effects': 1,
          'editing': 1,
          'sound': 1,
          'nactor': 1,
          'tom': 1,
          'selleck': 1,
          'committed': 1,
          'hit': 1,
          'tv': 1,
          'show': 1,
          'magnum': 1,
          'p': 1,
          'nin': 1,
          'filming': 1,
          'producers': 1,
          'scoured': 1,
          'pet': 1,
          'shop': 1,
          'london': 1,
          'south': 1,
          'england': 1,
          'snake': 1,
          'lay': 1,
          'nhence': 1,
          'identifiable': 1,
          'many': 1,
          'geographical': 1,
          'areas': 1,
          'nhowever': 1,
          'set': 1,
          'became': 1,
          'clear': 1,
          'nearly': 1,
          'enough': 1,
          'several': 1,
          'hoses': 1,
          'lengths': 1,
          'used': 1,
          'nlooking': 1,
          'closely': 1,
          'tell': 1,
          'real': 1,
          'nan': 1,
          'early': 1,
          'draft': 1,
          'shanghai': 1,
          'recover': 1,
          'piece': 1,
          'staff': 1,
          'ra': 1,
          'nduring': 1,
          'escape': 1,
          'museum': 1,
          'housed': 1,
          'sheltered': 1,
          'machine': 1,
          'behind': 1,
          'giant': 1,
          'rolling': 1,
          'gong': 1,
          'marion': 1,
          'flee': 1,
          'chaos': 1,
          'caused': 1,
          'wild': 1,
          'minecart': 1,
          'chase': 1,
          'nboth': 1,
          'scenes': 1,
          'ended': 1,
          '1984s': 1,
          'temple': 1,
          'doom': 1,
          'begins': 1,
          'peak': 1,
          'jungle': 1,
          'reminiscent': 1,
          'paramount': 1,
          'pictures': 1,
          'logo': 1,
          'type': 1,
          'present': 1,
          'njocks': 1,
          'airplane': 1,
          'beginning': 1,
          'registration': 1,
          'number': 1,
          'obcpo': 1,
          'reference': 1,
          'obiwan': 1,
          'star': 1,
          'wars': 1,
          '9': 1,
          '510': 1,
          'hieroglyphics': 1,
          'include': 1,
          'engravings': 1,
          'r2d2': 1,
          'nthey': 1,
          'seen': 1,
          'post': 1,
          'right': 1,
          'sallah': 1,
          'remove': 1,
          'included': 1,
          'long': 1,
          'fight': 1,
          'swordsman': 1,
          'nas': 1,
          'legend': 1,
          'actor': 1,
          'suffering': 1,
          'diarrhea': 1,
          'asked': 1,
          'scene': 1,
          'shortened': 1,
          'nspielberg': 1,
          'said': 1,
          'way': 1,
          'shorten': 1,
          'pulled': 1,
          'guy': 1,
          'entire': 1,
          'crew': 1,
          'laughed': 1,
          'filmed': 1,
          'first': 1,
          'falls': 1,
          'cobra': 1,
          'reflection': 1,
          'glass': 1,
          'dividing': 1,
          'also': 1,
          'fingerprints': 1,
          'stuff': 1,
          'dragging': 1,
          'along': 1,
          'ground': 1,
          'hanging': 1,
          'onto': 1,
          'nazi': 1,
          'soldiers': 1,
          'truck': 1,
          'inside': 1,
          'pad': 1,
          'hes': 1,
          'dragged': 1,
          'npos': 1}),
 Counter({'film': 9,
          'films': 8,
          'nthe': 6,
          'run': 5,
          'jamaican': 5,
          'action': 5,
          'cop': 4,
          'capone': 3,
          'john': 3,
          'also': 3,
          'right': 3,
          'time': 3,
          'well': 3,
          'character': 3,
          'pretty': 3,
          'us': 3,
          'third': 3,
          'world': 3,
          'tings': 2,
          'dont': 2,
          'campbell': 2,
          'partner': 2,
          'shot': 2,
          'video': 2,
          'movie': 2,
          'little': 2,
          'ncapone': 2,
          'back': 2,
          'discovers': 2,
          'crime': 2,
          'boss': 2,
          'wonie': 2,
          'carl': 2,
          'bradshaw': 2,
          'left': 2,
          'friend': 2,
          'ratty': 2,
          'danvers': 2,
          'make': 2,
          'handled': 2,
          'take': 2,
          'woo': 2,
          'scenes': 2,
          'hong': 2,
          'kong': 2,
          'effects': 2,
          'good': 2,
          'could': 2,
          'reggae': 2,
          'song': 2,
          'boxoffice': 2,
          'jamaica': 2,
          'pictures': 2,
          'company': 2,
          'released': 2,
          'entertaining': 2,
          'ntings': 1,
          'nsound': 1,
          'advice': 1,
          'paul': 1,
          'squaddie': 1,
          'floyd': 1,
          'winston': 1,
          'bell': 1,
          'njamaican': 1,
          'entirely': 1,
          'featuring': 1,
          'standard': 1,
          'plot': 1,
          'mixed': 1,
          'dash': 1,
          'woostyled': 1,
          'brotherhood': 1,
          'morals': 1,
          'gunplay': 1,
          'tough': 1,
          'nails': 1,
          'super': 1,
          'gets': 1,
          'transfer': 1,
          'hometown': 1,
          'kingston': 1,
          'successfully': 1,
          'taking': 1,
          'gangsters': 1,
          'broken': 1,
          'home': 1,
          'lady': 1,
          'killed': 1,
          'front': 1,
          'nwhen': 1,
          'arrives': 1,
          'ghetto': 1,
          'grew': 1,
          'gotten': 1,
          'worse': 1,
          'thanks': 1,
          'mainly': 1,
          'veteran': 1,
          'named': 1,
          'hand': 1,
          'amputated': 1,
          'replaced': 1,
          'grasping': 1,
          'hook': 1,
          'smuggling': 1,
          'guns': 1,
          'inside': 1,
          'shipments': 1,
          'charity': 1,
          'supplies': 1,
          'area': 1,
          'churches': 1,
          'much': 1,
          'disappointment': 1,
          'finds': 1,
          'childhood': 1,
          'mark': 1,
          'helping': 1,
          'ntorn': 1,
          'job': 1,
          'protecting': 1,
          'best': 1,
          'must': 1,
          'hard': 1,
          'decisions': 1,
          'order': 1,
          'things': 1,
          'ndirected': 1,
          'deftly': 1,
          'first': 1,
          'filmmaker': 1,
          'chris': 1,
          'browne': 1,
          'assistant': 1,
          'director': 1,
          'american': 1,
          'stella': 1,
          'got': 1,
          'groove': 1,
          'instinct': 1,
          'one': 1,
          'hardly': 1,
          'notices': 1,
          'nshots': 1,
          'efficiently': 1,
          'quickly': 1,
          'nuances': 1,
          'aforementioned': 1,
          'although': 1,
          'isnt': 1,
          'hyperkinetic': 1,
          'woos': 1,
          'kind': 1,
          'flair': 1,
          'though': 1,
          'eventually': 1,
          'begin': 1,
          'life': 1,
          'beyond': 1,
          'obviously': 1,
          'patterned': 1,
          'makeup': 1,
          'particularly': 1,
          'flawless': 1,
          'squib': 1,
          'work': 1,
          'display': 1,
          'team': 1,
          'cast': 1,
          'superb': 1,
          'listening': 1,
          'dialogue': 1,
          'spoken': 1,
          'thick': 1,
          'accents': 1,
          'half': 1,
          'subtitled': 1,
          'extensive': 1,
          'use': 1,
          'slang': 1,
          'adds': 1,
          'interest': 1,
          'npaul': 1,
          'loose': 1,
          'cannon': 1,
          'essays': 1,
          'role': 1,
          'perfectly': 1,
          'displaying': 1,
          'amount': 1,
          'menace': 1,
          'compassion': 1,
          'times': 1,
          'nmark': 1,
          'evokes': 1,
          'sympathy': 1,
          'parttime': 1,
          'gun': 1,
          'smuggler': 1,
          'trying': 1,
          'help': 1,
          'community': 1,
          'building': 1,
          'football': 1,
          'fields': 1,
          'organizing': 1,
          'block': 1,
          'parties': 1,
          'bring': 1,
          'people': 1,
          'together': 1,
          'nunfortunately': 1,
          'given': 1,
          'least': 1,
          'seems': 1,
          'ineffective': 1,
          'largely': 1,
          'underlings': 1,
          'seem': 1,
          'way': 1,
          'intended': 1,
          'portrayed': 1,
          'music': 1,
          'composed': 1,
          'songs': 1,
          'soundtrack': 1,
          'produced': 1,
          'grammy': 1,
          'award': 1,
          'winning': 1,
          'artists': 1,
          'sly': 1,
          'robbie': 1,
          'worked': 1,
          'likes': 1,
          'rolling': 1,
          'stones': 1,
          'maxi': 1,
          'priest': 1,
          'bob': 1,
          'dylan': 1,
          'james': 1,
          'brown': 1,
          'grace': 1,
          'jones': 1,
          'herbie': 1,
          'hancock': 1,
          'bootsy': 1,
          'collins': 1,
          'carly': 1,
          'simon': 1,
          'among': 1,
          'others': 1,
          'end': 1,
          'credit': 1,
          'group': 1,
          'red': 1,
          'dragon': 1,
          'decent': 1,
          'carries': 1,
          'theme': 1,
          'established': 1,
          'early': 1,
          'quote': 1,
          'opens': 1,
          'review': 1,
          'noddly': 1,
          'enough': 1,
          'desmond': 1,
          'ballentine': 1,
          'plays': 1,
          'deportee': 1,
          'known': 1,
          'pioneer': 1,
          'realm': 1,
          'gangsta': 1,
          'performer': 1,
          'ninjaman': 1,
          'doesnt': 1,
          'contribute': 1,
          'single': 1,
          'see': 1,
          'virtually': 1,
          'unheard': 1,
          'nat': 1,
          'writing': 1,
          'put': 1,
          'limited': 1,
          'theatrical': 1,
          'release': 1,
          'coming': 1,
          'sixmonth': 1,
          'breaking': 1,
          'holds': 1,
          'position': 1,
          'highest': 1,
          'grossing': 1,
          'bringing': 1,
          '21': 1,
          'million': 1,
          'roughly': 1,
          '500': 1,
          '000': 1,
          'npalm': 1,
          'offbeat': 1,
          'sixstring': 1,
          'samurai': 1,
          'releasing': 1,
          'considering': 1,
          'main': 1,
          'focus': 1,
          'dvd': 1,
          'market': 1,
          'imagine': 1,
          'disc': 1,
          'available': 1,
          'theaters': 1,
          'nchris': 1,
          'blackwell': 1,
          'founder': 1,
          'palm': 1,
          'involved': 1,
          'production': 1,
          'another': 1,
          'smash': 1,
          '1981': 1,
          'entitled': 1,
          'countryman': 1,
          'id': 1,
          'say': 1,
          'track': 1,
          'record': 1,
          'noverall': 1,
          'homage': 1,
          'ringo': 1,
          'lam': 1,
          'tsui': 1,
          'hark': 1,
          'many': 1,
          'directors': 1,
          'nif': 1,
          'thing': 1,
          'mind': 1,
          'intermittent': 1,
          'subtitles': 1,
          'cant': 1,
          'go': 1,
          'wrong': 1,
          'performances': 1,
          'story': 1,
          'solid': 1,
          'cliched': 1,
          'tight': 1,
          'nim': 1,
          'sure': 1,
          'country': 1,
          'like': 1,
          'apparently': 1,
          'cops': 1,
          'honors': 1,
          'deserved': 1,
          'npos': 1}),
 Counter({'alone': 9,
          'home': 8,
          'nthe': 8,
          'kevin': 7,
          'nhe': 6,
          'family': 6,
          'slapstick': 4,
          'true': 4,
          'way': 4,
          'night': 4,
          'movies': 3,
          'going': 3,
          'doesnt': 3,
          'get': 3,
          'kids': 3,
          'kid': 3,
          'big': 3,
          'never': 3,
          'see': 3,
          'goes': 3,
          'man': 3,
          'santa': 3,
          'last': 3,
          'first': 2,
          '2': 2,
          '3': 2,
          'nbut': 2,
          'actually': 2,
          'lot': 2,
          'cartoon': 2,
          'mcalisters': 2,
          'airport': 2,
          'older': 2,
          'learns': 2,
          'milk': 2,
          'back': 2,
          'non': 2,
          'setup': 2,
          'without': 2,
          'nits': 2,
          'missing': 2,
          'put': 2,
          'wish': 2,
          'come': 2,
          'furnace': 2,
          'scary': 2,
          'snowshovel': 2,
          'murderer': 2,
          'culkin': 2,
          'cute': 2,
          'much': 2,
          'kevins': 2,
          'character': 2,
          'act': 2,
          'movie': 2,
          'holiday': 2,
          'original': 2,
          'problem': 2,
          'im': 2,
          'gon': 2,
          'na': 2,
          'glance': 1,
          'appears': 1,
          'brainless': 1,
          'intended': 1,
          'minds': 1,
          '8year': 1,
          'olds': 1,
          'nthats': 1,
          'id': 1,
          'bet': 1,
          'money': 1,
          'opening': 1,
          'soon': 1,
          '15': 1,
          'france': 1,
          'holidays': 1,
          'nfour': 1,
          'adults': 1,
          'eleven': 1,
          'spending': 1,
          'together': 1,
          'heading': 1,
          'en': 1,
          'masse': 1,
          'littlest': 1,
          'victim': 1,
          'cruelty': 1,
          'nkevins': 1,
          'patience': 1,
          'runs': 1,
          'plaincheese': 1,
          'pizza': 1,
          'already': 1,
          'eaten': 1,
          'hes': 1,
          'starve': 1,
          'attacks': 1,
          'bully': 1,
          'brother': 1,
          'buzz': 1,
          'teasing': 1,
          'fight': 1,
          'disrupts': 1,
          'alreadychaotic': 1,
          'dinner': 1,
          'spilling': 1,
          'soft': 1,
          'drinks': 1,
          'table': 1,
          'cousins': 1,
          'uncle': 1,
          'kneejerk': 1,
          'reaction': 1,
          'everyone': 1,
          'blame': 1,
          'nnobody': 1,
          'came': 1,
          'rescue': 1,
          'teased': 1,
          'point': 1,
          'fingers': 1,
          'fights': 1,
          'ultimate': 1,
          'punishment': 1,
          'comes': 1,
          'mom': 1,
          'catherine': 1,
          'ohara': 1,
          'sends': 1,
          'spare': 1,
          'bedroom': 1,
          'attic': 1,
          'stairs': 1,
          'tells': 1,
          'families': 1,
          'suck': 1,
          'hopes': 1,
          'nthat': 1,
          'power': 1,
          'knocking': 1,
          'alarm': 1,
          'clocks': 1,
          'wake': 1,
          'hurry': 1,
          'nin': 1,
          'surprisingly': 1,
          'plausible': 1,
          'mistakenly': 1,
          'accounted': 1,
          'heads': 1,
          'interesting': 1,
          'subtle': 1,
          'parents': 1,
          'noticed': 1,
          'deliberate': 1,
          'desire': 1,
          'separate': 1,
          'children': 1,
          'nfirst': 1,
          'delegate': 1,
          'headcount': 1,
          'sibling': 1,
          'second': 1,
          'coach': 1,
          'fly': 1,
          'class': 1,
          'ntheyre': 1,
          'twothirds': 1,
          'across': 1,
          'atlantic': 1,
          'realize': 1,
          'child': 1,
          'nmeanwhile': 1,
          'believes': 1,
          'somehow': 1,
          'nhes': 1,
          'finally': 1,
          'rid': 1,
          'nlife': 1,
          'dream': 1,
          'jump': 1,
          'beds': 1,
          'watch': 1,
          'rrated': 1,
          'eat': 1,
          'gobs': 1,
          'ice': 1,
          'cream': 1,
          'potato': 1,
          'chips': 1,
          'dig': 1,
          'brothers': 1,
          'secret': 1,
          'box': 1,
          'nslowly': 1,
          'novelty': 1,
          'wears': 1,
          'settles': 1,
          'mundane': 1,
          'grooms': 1,
          'laundry': 1,
          'shopping': 1,
          'bought': 1,
          'eggs': 1,
          'fabric': 1,
          'softener': 1,
          'also': 1,
          'starts': 1,
          'miss': 1,
          'company': 1,
          'security': 1,
          'bring': 1,
          'basement': 1,
          'monster': 1,
          'old': 1,
          'next': 1,
          'door': 1,
          'two': 1,
          'crooks': 1,
          'trying': 1,
          'break': 1,
          'house': 1,
          'nmacaulay': 1,
          'isnt': 1,
          'actor': 1,
          'nstill': 1,
          'grows': 1,
          'thanks': 1,
          'good': 1,
          'direction': 1,
          'editing': 1,
          'nfor': 1,
          'example': 1,
          'acting': 1,
          'little': 1,
          'emotional': 1,
          'impact': 1,
          'scene': 1,
          'searches': 1,
          'seasonal': 1,
          'getting': 1,
          'car': 1,
          'nkevin': 1,
          'asks': 1,
          'pass': 1,
          'request': 1,
          'wants': 1,
          'real': 1,
          'learned': 1,
          'deal': 1,
          'nyou': 1,
          'turn': 1,
          'lights': 1,
          'anymore': 1,
          'church': 1,
          'one': 1,
          'evening': 1,
          'sees': 1,
          'turns': 1,
          'nice': 1,
          'nthey': 1,
          'talk': 1,
          'fears': 1,
          'age': 1,
          'make': 1,
          'less': 1,
          'afraid': 1,
          'nfinally': 1,
          '20': 1,
          'minutes': 1,
          'confronts': 1,
          'fear': 1,
          'bandits': 1,
          'head': 1,
          'literally': 1,
          'nthis': 1,
          'full': 1,
          'violent': 1,
          'comedic': 1,
          'genuine': 1,
          'dramatic': 1,
          'dessert': 1,
          'fun': 1,
          'overwhelm': 1,
          'rest': 1,
          'whole': 1,
          'great': 1,
          'njohn': 1,
          'williams': 1,
          'score': 1,
          'sound': 1,
          'feel': 1,
          'music': 1,
          'disadvantage': 1,
          'overplayed': 1,
          'malls': 1,
          'christmas': 1,
          'setting': 1,
          'mood': 1,
          'gatherings': 1,
          'flaws': 1,
          'smallest': 1,
          'well': 1,
          'nas': 1,
          'said': 1,
          'repeated': 1,
          'viewings': 1,
          'reveal': 1,
          'columbus': 1,
          'covered': 1,
          'culkins': 1,
          'insight': 1,
          'biggest': 1,
          'cartoony': 1,
          'coda': 1,
          'villains': 1,
          'threaten': 1,
          'life': 1,
          'five': 1,
          'times': 1,
          'ninstead': 1,
          'say': 1,
          'kill': 1,
          'nsome': 1,
          'might': 1,
          'argue': 1,
          'tone': 1,
          'strongly': 1,
          'disagree': 1,
          'nmixing': 1,
          'comedy': 1,
          'specific': 1,
          'viable': 1,
          'threats': 1,
          'murder': 1,
          'sociopathic': 1,
          'fauxpas': 1,
          'nill': 1,
          'probably': 1,
          'skipped': 1,
          'enjoy': 1,
          'almost': 1,
          'every': 1,
          'year': 1,
          'ndont': 1,
          'let': 1,
          'impressions': 1,
          'others': 1,
          'detract': 1,
          'offer': 1,
          'npos': 1}),
 Counter({'film': 13,
          'comedy': 7,
          'goodman': 7,
          'nthe': 7,
          'like': 6,
          'would': 5,
          'ni': 5,
          'many': 4,
          'story': 4,
          'john': 3,
          'teenagers': 3,
          'mant': 3,
          'comedies': 3,
          'laugh': 3,
          'intelligent': 3,
          'characters': 3,
          'one': 3,
          'favorite': 3,
          'brings': 2,
          'key': 2,
          'west': 2,
          'cuban': 2,
          'missile': 2,
          'crisis': 2,
          'nhe': 2,
          'escape': 2,
          'see': 2,
          'four': 2,
          'review': 2,
          'really': 2,
          'enjoyed': 2,
          'matinee': 2,
          'also': 2,
          'particularly': 2,
          'nso': 2,
          'recommend': 2,
          'looking': 2,
          'light': 2,
          'way': 2,
          'reason': 2,
          'today': 2,
          'watch': 2,
          'movie': 2,
          'found': 2,
          'happen': 2,
          'highly': 2,
          'often': 2,
          'scene': 2,
          'tried': 2,
          'nwhile': 2,
          'humorous': 2,
          'none': 2,
          'people': 2,
          'movies': 2,
          'films': 2,
          'real': 2,
          'rated': 1,
          'pg': 1,
          'runs': 1,
          '1': 1,
          '40': 1,
          'starring': 1,
          'kathy': 1,
          'moriarty': 1,
          'bunch': 1,
          'directed': 1,
          'joe': 1,
          'dante': 1,
          'written': 1,
          'charles': 1,
          'hass': 1,
          'nsummary': 1,
          'lawrence': 1,
          'woolsley': 1,
          'new': 1,
          'horror': 1,
          'nto': 1,
          'premiere': 1,
          'height': 1,
          'hopes': 1,
          'capitalize': 1,
          'tense': 1,
          'moment': 1,
          'providing': 1,
          'town': 1,
          'nwe': 1,
          'events': 1,
          'stories': 1,
          'life': 1,
          'affects': 1,
          'nquick': 1,
          'easy': 1,
          'mixture': 1,
          'tension': 1,
          'blended': 1,
          'nicely': 1,
          'nunlike': 1,
          'tries': 1,
          'succeeds': 1,
          'getting': 1,
          'past': 1,
          'stage': 1,
          'anything': 1,
          'makers': 1,
          'cared': 1,
          'telling': 1,
          'performances': 1,
          'principals': 1,
          'right': 1,
          'mark': 1,
          'schlock': 1,
          'master': 1,
          'definitely': 1,
          'anyone': 1,
          'hearted': 1,
          'yet': 1,
          'interesting': 1,
          'spend': 1,
          'couple': 1,
          'hours': 1,
          'nlonger': 1,
          'detailed': 1,
          'beware': 1,
          'spoilers': 1,
          'primary': 1,
          'tell': 1,
          'ntoo': 1,
          'subscribe': 1,
          'notion': 1,
          'need': 1,
          'make': 1,
          'nyou': 1,
          'lot': 1,
          'leave': 1,
          'theatre': 1,
          'take': 1,
          'nothing': 1,
          'nmatinee': 1,
          'left': 1,
          'picture': 1,
          'thinking': 1,
          'faced': 1,
          'wondering': 1,
          'nbut': 1,
          'importantly': 1,
          'caring': 1,
          'centers': 1,
          'around': 1,
          'character': 1,
          'believe': 1,
          'finest': 1,
          'comedic': 1,
          'actors': 1,
          'business': 1,
          'expressive': 1,
          'physically': 1,
          'vocally': 1,
          'felt': 1,
          'least': 1,
          'deserved': 1,
          'oscar': 1,
          'nomination': 1,
          'work': 1,
          'barton': 1,
          'fink': 1,
          'lost': 1,
          'due': 1,
          'commanding': 1,
          'nature': 1,
          'however': 1,
          'star': 1,
          'actually': 1,
          'center': 1,
          'discovering': 1,
          'want': 1,
          'background': 1,
          'minute': 1,
          'could': 1,
          'end': 1,
          'thought': 1,
          'kids': 1,
          'reaction': 1,
          'realistic': 1,
          'nthey': 1,
          'block': 1,
          'concerns': 1,
          'world': 1,
          'nunfortunately': 1,
          'kept': 1,
          'creeping': 1,
          'back': 1,
          'fear': 1,
          'chaos': 1,
          'time': 1,
          'centered': 1,
          'drama': 1,
          'teens': 1,
          'great': 1,
          'deal': 1,
          'overlap': 1,
          'nseveral': 1,
          'aspects': 1,
          'panic': 1,
          'shown': 1,
          'example': 1,
          'fighting': 1,
          'last': 1,
          'cans': 1,
          'boxes': 1,
          'food': 1,
          'grocery': 1,
          'store': 1,
          'nif': 1,
          'think': 1,
          'threat': 1,
          'nuclear': 1,
          'annihilation': 1,
          'seems': 1,
          'hardly': 1,
          'backdrop': 1,
          'works': 1,
          'nanother': 1,
          'b': 1,
          'science': 1,
          'fiction': 1,
          'go': 1,
          'plan': 1,
          '9': 1,
          'outer': 1,
          'space': 1,
          'n': 1,
          'note': 1,
          'say': 1,
          'nnever': 1,
          'got': 1,
          'made': 1,
          'nserves': 1,
          'mostly': 1,
          'dantes': 1,
          'homage': 1,
          'bfilms': 1,
          'loves': 1,
          'anybody': 1,
          'good': 1,
          'nthis': 1,
          'isnt': 1,
          'gag': 1,
          'wellthought': 1,
          'problems': 1,
          'told': 1,
          'hilarious': 1,
          'nenjoy': 1,
          'npos': 1}),
 Counter({'see': 5,
          'ago': 4,
          'image': 4,
          'nit': 4,
          'played': 4,
          'film': 4,
          'one': 4,
          'fail': 4,
          'years': 3,
          'stars': 3,
          'nwhen': 3,
          'sky_': 3,
          'like': 3,
          'way': 3,
          'character': 3,
          'far': 3,
          'traveling': 2,
          'throughout': 2,
          'become': 2,
          'commonplace': 2,
          'lines': 2,
          'going': 2,
          'offers': 2,
          'much': 2,
          'white': 2,
          'dot': 2,
          'forty': 2,
          'advanced': 2,
          'generations': 2,
          '_october': 2,
          'homer': 2,
          'make': 2,
          'rocket': 2,
          'best': 2,
          'know': 2,
          'science': 2,
          'nbut': 2,
          'means': 2,
          'knows': 2,
          'rockets': 2,
          'coalmining': 2,
          'must': 2,
          'sons': 2,
          'nthe': 2,
          'revolution': 2,
          'us': 2,
          'knew': 2,
          'inspirational': 2,
          '_star': 1,
          'wars_': 1,
          'came': 1,
          'twenty': 1,
          'millenium': 1,
          'falcon': 1,
          'moves': 1,
          'constellations': 1,
          'meteor': 1,
          'showers': 1,
          'cool': 1,
          'spaceships': 1,
          'han': 1,
          'solo': 1,
          'goes': 1,
          'light': 1,
          'speed': 1,
          'change': 1,
          'bright': 1,
          'towards': 1,
          'viewer': 1,
          'converge': 1,
          'invisible': 1,
          'point': 1,
          'ncool': 1,
          'n_october': 1,
          'simpler': 1,
          'imagethat': 1,
          'single': 1,
          'horizontally': 1,
          'across': 1,
          'night': 1,
          'sky': 1,
          'nwas': 1,
          'really': 1,
          'sputnik': 1,
          'launched': 1,
          'satellites': 1,
          'ever': 1,
          'existed': 1,
          'nhave': 1,
          'technologically': 1,
          'forgotten': 1,
          'nearly': 1,
          'two': 1,
          'people': 1,
          'stood': 1,
          'outside': 1,
          'breathlessly': 1,
          'thentechnological': 1,
          'achievement': 1,
          'even': 1,
          'though': 1,
          'russians': 1,
          'sounds': 1,
          'hokey': 1,
          'scene': 1,
          'occurs': 1,
          'near': 1,
          'beginning': 1,
          'found': 1,
          'caught': 1,
          'enthusiasm': 1,
          'hickam': 1,
          'jake': 1,
          'gyllenhaal': 1,
          'ndetermined': 1,
          'dent': 1,
          'space': 1,
          'race': 1,
          'becomes': 1,
          'transfixed': 1,
          'desire': 1,
          'could': 1,
          'fly': 1,
          'films': 1,
          'ending': 1,
          'buy': 1,
          'ticket': 1,
          'lovely': 1,
          'teacher': 1,
          'miss': 1,
          'riley': 1,
          'laura': 1,
          'dern': 1,
          'suggests': 1,
          'enters': 1,
          'findings': 1,
          'national': 1,
          'fair': 1,
          'exactly': 1,
          'win': 1,
          'joy': 1,
          'little': 1,
          'details': 1,
          'nfor': 1,
          'example': 1,
          'clearly': 1,
          'strongest': 1,
          'student': 1,
          'class': 1,
          'nif': 1,
          'strengths': 1,
          'whatsoever': 1,
          'undeterring': 1,
          'vision': 1,
          'good': 1,
          'organizer': 1,
          'may': 1,
          'lose': 1,
          'reputation': 1,
          'associating': 1,
          'nerdiest': 1,
          'kid': 1,
          'school': 1,
          'father': 1,
          'forbids': 1,
          'shoot': 1,
          'company': 1,
          'property': 1,
          'entire': 1,
          'town': 1,
          'walk': 1,
          'eight': 1,
          'miles': 1,
          'set': 1,
          'nhomers': 1,
          'dad': 1,
          'chris': 1,
          'cooper': 1,
          'favorite': 1,
          'actor': 1,
          'mine': 1,
          'since': 1,
          '_lone': 1,
          'star_': 1,
          'nhere': 1,
          'plays': 1,
          'antithesis': 1,
          '_matewan_': 1,
          'instead': 1,
          'organizing': 1,
          'union': 1,
          'rallies': 1,
          'head': 1,
          'coalminers': 1,
          'constantly': 1,
          'wringing': 1,
          'hands': 1,
          'unions': 1,
          'nthis': 1,
          'great': 1,
          'unnoticed': 1,
          'performances': 1,
          'year': 1,
          'note': 1,
          'multidimensional': 1,
          'nhe': 1,
          'last': 1,
          'nemesis': 1,
          'likely': 1,
          'interferes': 1,
          'dreams': 1,
          'truly': 1,
          'loves': 1,
          'son': 1,
          'wants': 1,
          'succeed': 1,
          'nthrough': 1,
          'nbecause': 1,
          'weve': 1,
          'come': 1,
          'modern': 1,
          'technology': 1,
          'allowed': 1,
          'society': 1,
          'rate': 1,
          'faster': 1,
          'generation': 1,
          'nwe': 1,
          'dont': 1,
          'understand': 1,
          'industrial': 1,
          'raise': 1,
          'family': 1,
          'paradigm': 1,
          'shifting': 1,
          'fathers': 1,
          'feet': 1,
          'life': 1,
          'nso': 1,
          'merely': 1,
          'feelgood': 1,
          'food': 1,
          'thought': 1,
          'nand': 1,
          'type': 1,
          'take': 1,
          'something': 1,
          'nbtw': 1,
          'final': 1,
          'simple': 1,
          'strong': 1,
          'contrast': 1,
          'aforementioned': 1,
          'horizontalmoving': 1,
          'nightsky': 1,
          'background': 1,
          'nanother': 1,
          'sure': 1,
          'breathtaking': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'effects': 6,
          'matrix': 5,
          'special': 5,
          'world': 5,
          'sat': 4,
          'nbut': 4,
          'keanu': 3,
          'reeves': 3,
          'nnow': 3,
          'first': 3,
          'half': 3,
          'big': 3,
          'fishburne': 2,
          'nsome': 2,
          'may': 2,
          'wait': 2,
          'im': 2,
          'saying': 2,
          'like': 2,
          'trailer': 2,
          'think': 2,
          'story': 2,
          'nok': 2,
          'live': 2,
          'real': 2,
          'anything': 2,
          'wants': 2,
          'hour': 2,
          'nthe': 2,
          'entertained': 2,
          'minutes': 2,
          'warning': 1,
          'contains': 1,
          'nrated': 1,
          'r': 1,
          'scifi': 1,
          'violence': 1,
          'nstarring': 1,
          'laurence': 1,
          'joe': 1,
          'panteliano': 1,
          'disappointed': 1,
          'nill': 1,
          'tell': 1,
          'ni': 1,
          'waiting': 1,
          'something': 1,
          'happen': 1,
          'know': 1,
          'loved': 1,
          'didnt': 1,
          'nwhat': 1,
          'extremely': 1,
          'slow': 1,
          'seeing': 1,
          'makes': 1,
          'whole': 1,
          'entire': 1,
          'one': 1,
          'show': 1,
          'ndont': 1,
          'fooled': 1,
          'nand': 1,
          'chunks': 1,
          'talky': 1,
          'moments': 1,
          'admit': 1,
          'acting': 1,
          'par': 1,
          'deserving': 1,
          'rating': 1,
          'nwell': 1,
          'take': 1,
          'actually': 1,
          'inside': 1,
          'computer': 1,
          'generated': 1,
          'known': 1,
          'na': 1,
          'man': 1,
          'played': 1,
          'find': 1,
          'kidnapped': 1,
          'almost': 1,
          'coaxed': 1,
          'go': 1,
          'nhe': 1,
          'finds': 1,
          'fight': 1,
          'skipping': 1,
          'bad': 1,
          'guy': 1,
          'send': 1,
          'back': 1,
          'destroy': 1,
          'nlaurence': 1,
          'guide': 1,
          'sorts': 1,
          'plays': 1,
          'character': 1,
          'well': 1,
          'theatre': 1,
          'wondering': 1,
          'nyeah': 1,
          'enough': 1,
          'really': 1,
          'decieving': 1,
          'making': 1,
          'people': 1,
          'laden': 1,
          'second': 1,
          'explosive': 1,
          'saves': 1,
          'fighting': 1,
          'breathtaking': 1,
          'sound': 1,
          'music': 1,
          'effective': 1,
          'last': 1,
          'kept': 1,
          'us': 1,
          'running': 1,
          'time': 1,
          '2': 1,
          'hours': 1,
          '20': 1,
          'least': 1,
          '40': 1,
          'long': 1,
          'none': 1,
          'would': 1,
          'wished': 1,
          'better': 1,
          'say': 1,
          'npos': 1}),
 Counter({'nthe': 4,
          'house': 3,
          'made': 3,
          'na': 3,
          'bunch': 3,
          '1962': 2,
          'movie': 2,
          'nand': 2,
          'trying': 2,
          'going': 2,
          'goes': 2,
          'around': 2,
          'wan': 2,
          'boon': 2,
          'man': 2,
          'nhes': 2,
          'may': 2,
          'nbluto': 2,
          'kind': 2,
          'guy': 2,
          'omegas': 2,
          'deltas': 2,
          'go': 2,
          'national': 1,
          'lampoons': 1,
          'animal': 1,
          '1978': 1,
          'set': 1,
          'remains': 1,
          'one': 1,
          'fuck': 1,
          'noise': 1,
          'funniest': 1,
          'ever': 1,
          'isnt': 1,
          'opinion': 1,
          'either': 1,
          'everybody': 1,
          'knows': 1,
          'thats': 1,
          'gazillion': 1,
          'inferior': 1,
          'ripoffs': 1,
          'duplicate': 1,
          'success': 1,
          'n': 1,
          'pcu': 1,
          'anyone': 1,
          'first': 1,
          'person': 1,
          'bring': 1,
          'glory': 1,
          'daze': 1,
          'gets': 1,
          'decked': 1,
          'nanimal': 1,
          'takes': 1,
          'place': 1,
          'fictional': 1,
          'faber': 1,
          'college': 1,
          'circa': 1,
          'omega': 1,
          'frat': 1,
          'calls': 1,
          'shots': 1,
          'nthese': 1,
          'guys': 1,
          'wholesome': 1,
          'cleancut': 1,
          'modelcitizens': 1,
          'ni': 1,
          'e': 1,
          'assholes': 1,
          'ngreg': 1,
          'leader': 1,
          'mandy': 1,
          'pepperidge': 1,
          'since': 1,
          'silly': 1,
          'bastard': 1,
          'doesnt': 1,
          'believe': 1,
          'premarital': 1,
          'sex': 1,
          'relationship': 1,
          'never': 1,
          'quick': 1,
          'jackoff': 1,
          'stars': 1,
          'nneidermeyer': 1,
          'supremebozo': 1,
          'walking': 1,
          'dick': 1,
          'kicking': 1,
          'freshman': 1,
          'ass': 1,
          'impress': 1,
          'muff': 1,
          'nalso': 1,
          'hanging': 1,
          'losers': 1,
          'babs': 1,
          'future': 1,
          'universal': 1,
          'studios': 1,
          'employee': 1,
          'serious': 1,
          'bitch': 1,
          'nnow': 1,
          'lets': 1,
          'take': 1,
          'peak': 1,
          'next': 1,
          'door': 1,
          'delta': 1,
          'nover': 1,
          'anything': 1,
          'throw': 1,
          'shit': 1,
          'window': 1,
          'nokay': 1,
          'nyou': 1,
          'crush': 1,
          'beer': 1,
          'cans': 1,
          'forehead': 1,
          'pour': 1,
          'honeymustard': 1,
          'chest': 1,
          'ngo': 1,
          'right': 1,
          'ahead': 1,
          'frats': 1,
          'leaders': 1,
          'otter': 1,
          'tim': 1,
          'matheson': 1,
          'peter': 1,
          'riegert': 1,
          'notter': 1,
          'ladies': 1,
          'another': 1,
          'girl': 1,
          'every': 1,
          'night': 1,
          'comedian': 1,
          'got': 1,
          'steadydate': 1,
          'katy': 1,
          'karen': 1,
          'allen': 1,
          'shes': 1,
          'sick': 1,
          'playing': 1,
          'secondfiddle': 1,
          'bottle': 1,
          'j': 1,
          'nthen': 1,
          'others': 1,
          'pinto': 1,
          'wimp': 1,
          'flounder': 1,
          'blimp': 1,
          'day': 1,
          'biker': 1,
          'stork': 1,
          'braindamage': 1,
          'last': 1,
          'least': 1,
          'played': 1,
          'late': 1,
          'great': 1,
          'john': 1,
          'belushi': 1,
          'slugs': 1,
          'back': 1,
          'entire': 1,
          'fifths': 1,
          'whiskey': 1,
          'proclaim': 1,
          'needed': 1,
          'puts': 1,
          'creamfilled': 1,
          'snowball': 1,
          'mouth': 1,
          'puffs': 1,
          'cheeks': 1,
          'spits': 1,
          'says': 1,
          'im': 1,
          'zit': 1,
          'get': 1,
          'story': 1,
          'follows': 1,
          'getting': 1,
          'kicked': 1,
          'campus': 1,
          'knowing': 1,
          'fighting': 1,
          'stupid': 1,
          'decide': 1,
          'style': 1,
          'throwing': 1,
          'wild': 1,
          'toga': 1,
          'party': 1,
          'ruining': 1,
          'homecoming': 1,
          'parade': 1,
          'nthis': 1,
          'fucnniest': 1,
          'int': 1,
          'history': 1,
          'world': 1,
          'ndo': 1,
          'favor': 1,
          'see': 1,
          'npos': 1}),
 Counter({'young': 6,
          'damon': 6,
          'rainmaker': 5,
          'hunting': 5,
          'good': 4,
          'wills': 4,
          'actor': 3,
          'mcconaughey': 3,
          'ndamon': 3,
          'role': 3,
          'john': 3,
          'grisham': 3,
          'case': 3,
          'insurance': 3,
          'rudys': 3,
          'nthe': 3,
          'affleck': 3,
          'come': 3,
          'hollywood': 2,
          'major': 2,
          'years': 2,
          'matt': 2,
          'grishams': 2,
          'take': 2,
          'plays': 2,
          'attorney': 2,
          'finds': 2,
          'also': 2,
          'wife': 2,
          'danes': 2,
          'directed': 2,
          'best': 2,
          'mit': 2,
          'college': 2,
          'friend': 2,
          'life': 2,
          'though': 2,
          'one': 2,
          'every': 1,
          'year': 1,
          'crowns': 1,
          'new': 1,
          'boy': 1,
          'pegged': 1,
          'movie': 1,
          'stardom': 1,
          'ninheriting': 1,
          'mantle': 1,
          'last': 1,
          'winner': 1,
          'matthew': 1,
          'like': 1,
          'proves': 1,
          'fresh': 1,
          'face': 1,
          'evidenced': 1,
          'two': 1,
          'radically': 1,
          'different': 1,
          'projects': 1,
          'currently': 1,
          'releasejohn': 1,
          'first': 1,
          'starring': 1,
          'la': 1,
          'adaptationin': 1,
          'francis': 1,
          'ford': 1,
          'coppolas': 1,
          'wetbehindtheears': 1,
          'rudy': 1,
          'baylor': 1,
          'immediately': 1,
          'passing': 1,
          'bar': 1,
          'exam': 1,
          'representing': 1,
          'mother': 1,
          'mary': 1,
          'kay': 1,
          'place': 1,
          'terminally': 1,
          'ill': 1,
          'man': 1,
          'whitworth': 1,
          'bigleague': 1,
          'suit': 1,
          'negligent': 1,
          'company': 1,
          'nwhile': 1,
          'films': 1,
          'main': 1,
          'concern': 1,
          'time': 1,
          'protect': 1,
          'claire': 1,
          'abusive': 1,
          'husband': 1,
          'melrose': 1,
          'placer': 1,
          'andrew': 1,
          'shue': 1,
          'mercifully': 1,
          'brief': 1,
          'nwritten': 1,
          'screen': 1,
          'coppola': 1,
          'film': 1,
          'yet': 1,
          'mostly': 1,
          'seriously': 1,
          'ncoppolas': 1,
          'notableand': 1,
          'effectivecontribution': 1,
          'triedandtrue': 1,
          'formula': 1,
          'sense': 1,
          'humor': 1,
          'largely': 1,
          'comes': 1,
          'presence': 1,
          'danny': 1,
          'devito': 1,
          'unlicensed': 1,
          'cocounsel': 1,
          'golden': 1,
          'globe': 1,
          'nominee': 1,
          'jon': 1,
          'voight': 1,
          'companys': 1,
          'hotshot': 1,
          'inclusion': 1,
          'battered': 1,
          'subplot': 1,
          'feels': 1,
          'rather': 1,
          'superfluous': 1,
          'superb': 1,
          'always': 1,
          'nthen': 1,
          'course': 1,
          'nicely': 1,
          'juggles': 1,
          'weighty': 1,
          'spousal': 1,
          'abuse': 1,
          'humorous': 1,
          'often': 1,
          'comical': 1,
          'naivete': 1,
          'requirements': 1,
          'without': 1,
          'missing': 1,
          'beat': 1,
          'nas': 1,
          'showcases': 1,
          'depth': 1,
          'talent': 1,
          'gus': 1,
          'van': 1,
          'sant': 1,
          'written': 1,
          'ben': 1,
          'title': 1,
          'character': 1,
          'troubled': 1,
          'construction': 1,
          'workerjanitor': 1,
          'happens': 1,
          'supergenius': 1,
          'nin': 1,
          'attempt': 1,
          'steer': 1,
          'brilliant': 1,
          'mind': 1,
          'right': 1,
          'direction': 1,
          'math': 1,
          'professor': 1,
          'stellan': 1,
          'skarsgard': 1,
          'taps': 1,
          'old': 1,
          'community': 1,
          'psychologist': 1,
          'sean': 1,
          'mcguire': 1,
          'robin': 1,
          'williams': 1,
          'counsel': 1,
          'abrasive': 1,
          'standoffish': 1,
          'try': 1,
          'help': 1,
          'terms': 1,
          'turbulent': 1,
          'ngood': 1,
          'touchyfeely': 1,
          'enterprise': 1,
          'plot': 1,
          'synopsis': 1,
          'suggests': 1,
          'simply': 1,
          'dismiss': 1,
          'would': 1,
          'discount': 1,
          'true': 1,
          'emotional': 1,
          'chords': 1,
          'damons': 1,
          'intelligent': 1,
          'script': 1,
          'touches': 1,
          'neven': 1,
          '_very_': 1,
          'people': 1,
          'directly': 1,
          'relate': 1,
          'burden': 1,
          'superhuman': 1,
          'intelligence': 1,
          'insecurities': 1,
          'suffers': 1,
          'universal': 1,
          'material': 1,
          'brought': 1,
          'terrific': 1,
          'ensemble': 1,
          'actors': 1,
          'nwilliams': 1,
          'delivers': 1,
          'nice': 1,
          'dramatic': 1,
          'turn': 1,
          'hot': 1,
          'upandcoming': 1,
          'chasing': 1,
          'amy': 1,
          'turns': 1,
          'warm': 1,
          'charming': 1,
          'performance': 1,
          'everappealing': 1,
          'minnie': 1,
          'driver': 1,
          'shines': 1,
          'harvardschooled': 1,
          'love': 1,
          'interest': 1,
          'clear': 1,
          'standout': 1,
          'cast': 1,
          'bravely': 1,
          'soften': 1,
          'prickly': 1,
          'nature': 1,
          'natural': 1,
          'ease': 1,
          'audience': 1,
          'hard': 1,
          '_not_': 1,
          'care': 1,
          'nso': 1,
          'many': 1,
          'names': 1,
          'go': 1,
          'fluctuations': 1,
          'hype': 1,
          'machine': 1,
          'based': 1,
          'impressive': 1,
          'work': 1,
          'especially': 1,
          'safe': 1,
          'bet': 1,
          'name': 1,
          'hearing': 1,
          'lot': 1,
          'npos': 1}),
 Counter({'memento': 6,
          'leonard': 4,
          'n': 3,
          'time': 2,
          'movie': 2,
          'film': 2,
          'never': 2,
          'nand': 2,
          'top': 2,
          'synopsis': 1,
          'shelby': 1,
          'pearce': 1,
          'former': 1,
          'insurance': 1,
          'investigator': 1,
          'trail': 1,
          'man': 1,
          'killed': 1,
          'wife': 1,
          'nleonard': 1,
          'clues': 1,
          'murderers': 1,
          'identity': 1,
          'make': 1,
          'matters': 1,
          'worse': 1,
          'suffers': 1,
          'condition': 1,
          'inhibits': 1,
          'creation': 1,
          'shortterm': 1,
          'memories': 1,
          'meaning': 1,
          'always': 1,
          'forgetting': 1,
          'happened': 1,
          'minutes': 1,
          'earlier': 1,
          'nbecause': 1,
          'forced': 1,
          'rely': 1,
          'notes': 1,
          'leaves': 1,
          'traces': 1,
          'investigation': 1,
          'back': 1,
          'apparent': 1,
          'culmination': 1,
          'nreview': 1,
          'sort': 1,
          'wish': 1,
          'id': 1,
          'written': 1,
          'think': 1,
          'higher': 1,
          'praise': 1,
          'ni': 1,
          'envious': 1,
          'nolan': 1,
          'concocted': 1,
          'brilliant': 1,
          'involved': 1,
          'original': 1,
          'nan': 1,
          'instant': 1,
          'noir': 1,
          'classic': 1,
          'virtually': 1,
          'flawless': 1,
          'nthe': 1,
          'script': 1,
          'unlike': 1,
          'ever': 1,
          'seen': 1,
          'notable': 1,
          'achievement': 1,
          'days': 1,
          'recycled': 1,
          'hollywood': 1,
          'homogeneity': 1,
          'nalthough': 1,
          'idea': 1,
          'starting': 1,
          'conclusion': 1,
          'plotline': 1,
          'moving': 1,
          'backward': 1,
          'start': 1,
          'entirely': 1,
          'new': 1,
          'witnessed': 1,
          'executed': 1,
          'flair': 1,
          'coherence': 1,
          'endlessly': 1,
          'exciting': 1,
          'inventive': 1,
          'rare': 1,
          'story': 1,
          'keeps': 1,
          'viewers': 1,
          'guessing': 1,
          'mulling': 1,
          'connotations': 1,
          'long': 1,
          'leaving': 1,
          'theatre': 1,
          'merely': 1,
          'exercise': 1,
          'cerebrality': 1,
          'plenty': 1,
          'action': 1,
          'unexpected': 1,
          'dose': 1,
          'humour': 1,
          'keep': 1,
          'proceedings': 1,
          'lively': 1,
          'nnolans': 1,
          'direction': 1,
          'equally': 1,
          'effective': 1,
          'losing': 1,
          'crispness': 1,
          'clarity': 1,
          'despite': 1,
          'challenging': 1,
          'gimmick': 1,
          'everything': 1,
          'performances': 1,
          'rise': 1,
          'occasion': 1,
          'npierce': 1,
          'terrific': 1,
          'troubled': 1,
          'moss': 1,
          'shows': 1,
          'great': 1,
          'range': 1,
          'enigmatic': 1,
          'natalie': 1,
          'pantolianos': 1,
          'teddy': 1,
          'achieves': 1,
          'splendidly': 1,
          'affable': 1,
          'yet': 1,
          'sinister': 1,
          'quality': 1,
          'may': 1,
          'years': 1,
          'best': 1,
          'screenplay': 1,
          'certainly': 1,
          'amongst': 1,
          'theatrical': 1,
          'attractions': 1,
          '2001': 1,
          'npos': 1}),
 Counter({'nthe': 12,
          'shanta': 7,
          'earth': 6,
          'nit': 6,
          'india': 5,
          'muslim': 5,
          'men': 5,
          'dil': 5,
          'hindu': 4,
          'navaz': 4,
          'nbut': 4,
          'country': 3,
          'sikh': 3,
          'story': 3,
          'lenny': 3,
          'group': 3,
          'like': 3,
          'movie': 3,
          'dramas': 3,
          'may': 3,
          'time': 2,
          'independence': 2,
          'bitter': 2,
          'indian': 2,
          'pakistani': 2,
          'parsee': 2,
          'place': 2,
          'might': 2,
          'small': 2,
          'circle': 2,
          'hasan': 2,
          'deepa': 2,
          'mehtas': 2,
          'nin': 2,
          'political': 2,
          'tension': 2,
          'growing': 2,
          'little': 2,
          'last': 2,
          'still': 2,
          'make': 2,
          'easy': 2,
          'violence': 2,
          'around': 2,
          'sense': 2,
          'live': 2,
          'man': 2,
          'navazs': 2,
          'things': 2,
          'us': 2,
          'closure': 2,
          'level': 2,
          'resolution': 2,
          'decades': 2,
          'nearth': 2,
          'issues': 2,
          'movies': 2,
          'films': 2,
          'nuclear': 2,
          'understanding': 2,
          'much': 2,
          'harsh': 1,
          'unconsoling': 1,
          'drama': 1,
          'gained': 1,
          'britain': 1,
          'ensuing': 1,
          'turmoil': 1,
          'engulfed': 1,
          'subcontinent': 1,
          'npeople': 1,
          'supposedly': 1,
          'loved': 1,
          'land': 1,
          'god': 1,
          'found': 1,
          'conflict': 1,
          'divided': 1,
          'factions': 1,
          'fighting': 1,
          'streets': 1,
          'takes': 1,
          'lahore': 1,
          'partition': 1,
          'afterward': 1,
          'regardless': 1,
          'citizens': 1,
          'call': 1,
          'action': 1,
          'seen': 1,
          'eyes': 1,
          'maaia': 1,
          'sethna': 1,
          'young': 1,
          'girl': 1,
          'really': 1,
          'nanny': 1,
          'nshanta': 1,
          'male': 1,
          'admirers': 1,
          'ntwo': 1,
          'suitors': 1,
          'rahul': 1,
          'khanna': 1,
          'aamir': 1,
          'khan': 1,
          'otherssikh': 1,
          'muslimare': 1,
          'older': 1,
          'married': 1,
          'appreciate': 1,
          'played': 1,
          'stirringly': 1,
          'beautiful': 1,
          'nandita': 1,
          'das': 1,
          'n': 1,
          'also': 1,
          'starred': 1,
          'previous': 1,
          'film': 1,
          'fire': 1,
          'first': 1,
          'part': 1,
          'thematic': 1,
          'trilogy': 1,
          'conclude': 1,
          'water': 1,
          'early': 1,
          'scene': 1,
          'sitting': 1,
          'park': 1,
          'talking': 1,
          'day': 1,
          'nears': 1,
          'none': 1,
          'remarks': 1,
          'jokingly': 1,
          'probably': 1,
          'one': 1,
          'places': 1,
          'city': 1,
          'different': 1,
          'religions': 1,
          'get': 1,
          'along': 1,
          'nhe': 1,
          'wrong': 1,
          'barbed': 1,
          'comments': 1,
          'spoken': 1,
          'jokes': 1,
          'undercurrent': 1,
          'fanaticism': 1,
          'tenor': 1,
          'exchanges': 1,
          'grows': 1,
          'darker': 1,
          'progresses': 1,
          'perceive': 1,
          'squabbles': 1,
          'trajectory': 1,
          'ends': 1,
          'mass': 1,
          'slaughter': 1,
          'represents': 1,
          'united': 1,
          'ideal': 1,
          'motherlandone': 1,
          'love': 1,
          'inspires': 1,
          'peacably': 1,
          'together': 1,
          'sundered': 1,
          'state': 1,
          'na': 1,
          'persecuted': 1,
          'hides': 1,
          'flees': 1,
          'nanother': 1,
          'murdered': 1,
          'friends': 1,
          'meet': 1,
          'rife': 1,
          'images': 1,
          'breakage': 1,
          'destruction': 1,
          'plate': 1,
          'shattered': 1,
          'floor': 1,
          'stuffed': 1,
          'toy': 1,
          'torn': 1,
          'apart': 1,
          'upset': 1,
          'child': 1,
          'brutally': 1,
          'escalates': 1,
          'held': 1,
          'tied': 1,
          'two': 1,
          'cars': 1,
          'ripped': 1,
          'half': 1,
          'opposing': 1,
          'movement': 1,
          'vehicles': 1,
          'visceral': 1,
          'effective': 1,
          'metaphor': 1,
          'destroyed': 1,
          'painfully': 1,
          'crux': 1,
          'earths': 1,
          'plot': 1,
          'transformation': 1,
          'undergone': 1,
          'nhis': 1,
          'sisters': 1,
          'killed': 1,
          'brutal': 1,
          'fashion': 1,
          'hindus': 1,
          'ndil': 1,
          'seeks': 1,
          'solace': 1,
          'asks': 1,
          'desperation': 1,
          'marry': 1,
          'loves': 1,
          'tenderly': 1,
          'refuses': 1,
          'offer': 1,
          'combination': 1,
          'familial': 1,
          'anguish': 1,
          'romantic': 1,
          'rejection': 1,
          'twists': 1,
          'inside': 1,
          'see': 1,
          'seduced': 1,
          'mob': 1,
          'mentality': 1,
          'cause': 1,
          'gives': 1,
          'motive': 1,
          'vent': 1,
          'anger': 1,
          'hate': 1,
          'ndespite': 1,
          'later': 1,
          'credit': 1,
          'simply': 1,
          'denounce': 1,
          'shows': 1,
          'circumstances': 1,
          'decent': 1,
          'enough': 1,
          'monstrous': 1,
          'conclusionthe': 1,
          'consequence': 1,
          'transformationis': 1,
          'rather': 1,
          'abrupt': 1,
          'tells': 1,
          'end': 1,
          'stops': 1,
          'appropriate': 1,
          'finish': 1,
          'giving': 1,
          'would': 1,
          'imparted': 1,
          'least': 1,
          'aesthetic': 1,
          'satisfaction': 1,
          'pakistanthey': 1,
          'war': 1,
          'large': 1,
          'scale': 1,
          'nsince': 1,
          'personal': 1,
          'mirror': 1,
          'struggles': 1,
          'nation': 1,
          'right': 1,
          'terminus': 1,
          'nthere': 1,
          'healing': 1,
          'despite': 1,
          'needless': 1,
          'tackedon': 1,
          'ending': 1,
          'voiceover': 1,
          'narration': 1,
          'adult': 1,
          'framing': 1,
          'ways': 1,
          'unexceptional': 1,
          'reinvent': 1,
          'wheel': 1,
          'following': 1,
          'instead': 1,
          'standard': 1,
          'pattern': 1,
          'historical': 1,
          'directon': 1,
          'assured': 1,
          'addresses': 1,
          'run': 1,
          'deep': 1,
          'zhang': 1,
          'yimous': 1,
          'tian': 1,
          'zhuangzhuangs': 1,
          'blue': 1,
          'kite': 1,
          'china': 1,
          'show': 1,
          'agonies': 1,
          'endured': 1,
          'unremarkable': 1,
          'people': 1,
          'bad': 1,
          'luck': 1,
          'caught': 1,
          'smashed': 1,
          'crucible': 1,
          'history': 1,
          'nsuch': 1,
          'strike': 1,
          'inherently': 1,
          'valuable': 1,
          'even': 1,
          'flawed': 1,
          'nthey': 1,
          'biased': 1,
          'inaccurate': 1,
          'bear': 1,
          'weight': 1,
          'human': 1,
          'hardship': 1,
          'confers': 1,
          'nobility': 1,
          'gravity': 1,
          'inventive': 1,
          'often': 1,
          'lack': 1,
          'notable': 1,
          'three': 1,
          'banned': 1,
          'native': 1,
          'countries': 1,
          'events': 1,
          'shown': 1,
          'happened': 1,
          'ago': 1,
          'touch': 1,
          'nerve': 1,
          'tackled': 1,
          'particular': 1,
          'urgency': 1,
          'light': 1,
          'test': 1,
          'bombings': 1,
          'took': 1,
          'year': 1,
          'near': 1,
          'future': 1,
          'pakistan': 1,
          'launch': 1,
          'missiles': 1,
          'nat': 1,
          'tests': 1,
          'reasons': 1,
          'happen': 1,
          'seeing': 1,
          'better': 1,
          'npos': 1}),
 Counter({'whos': 4,
          'travolta': 4,
          'pulp': 4,
          'fiction': 4,
          'shorty': 4,
          'movie': 4,
          'travoltas': 3,
          'career': 3,
          'along': 3,
          'contract': 3,
          'nget': 3,
          'boss': 3,
          'one': 3,
          'year': 2,
          'look': 2,
          'movies': 2,
          'make': 2,
          'nbut': 2,
          'back': 2,
          'better': 2,
          'isnt': 2,
          'everything': 2,
          'hollywood': 2,
          'know': 2,
          'devil': 2,
          'yes': 2,
          'hackman': 2,
          'mob': 2,
          'game': 2,
          'hackmans': 2,
          'star': 2,
          'devito': 2,
          'nit': 2,
          'doesnt': 2,
          'definitely': 2,
          'ago': 1,
          'john': 1,
          'consisted': 1,
          'talking': 1,
          'notice': 1,
          'never': 1,
          'called': 1,
          'talented': 1,
          '1991': 1,
          'bomb': 1,
          'shout': 1,
          'bad': 1,
          'enough': 1,
          'people': 1,
          'scream': 1,
          'somewhere': 1,
          'line': 1,
          'got': 1,
          'starring': 1,
          'role': 1,
          'tarantino': 1,
          'masterpiece': 1,
          'soared': 1,
          'nweird': 1,
          'someone': 1,
          'whose': 1,
          'par': 1,
          'bee': 1,
          'gees': 1,
          '1978': 1,
          'would': 1,
          'experience': 1,
          'fame': 1,
          'fortune': 1,
          'barry': 1,
          'robin': 1,
          'maurice': 1,
          'gibb': 1,
          'could': 1,
          '1993': 1,
          'straighttothecutoutbin': 1,
          'album': 1,
          'aptly': 1,
          'named': 1,
          'size': 1,
          'course': 1,
          'learned': 1,
          'sales': 1,
          'scene': 1,
          'think': 1,
          'nfour': 1,
          'words': 1,
          'nand': 1,
          'nothing': 1,
          'newt': 1,
          'gingrichs': 1,
          'america': 1,
          'nno': 1,
          'satan': 1,
          'much': 1,
          'humane': 1,
          'nanyway': 1,
          'sold': 1,
          'soul': 1,
          'hairy': 1,
          'host': 1,
          'netherworld': 1,
          'nhow': 1,
          'ni': 1,
          'document': 1,
          'question': 1,
          'namazing': 1,
          'buy': 1,
          'collectors': 1,
          'shops': 1,
          'hundred': 1,
          'dollars': 1,
          'continues': 1,
          'vein': 1,
          'crime': 1,
          'minion': 1,
          'chili': 1,
          'palmer': 1,
          'nhe': 1,
          'goes': 1,
          'collect': 1,
          'mafias': 1,
          'money': 1,
          'bgrade': 1,
          'director': 1,
          'gene': 1,
          'suddenly': 1,
          'finds': 1,
          'wants': 1,
          'nsure': 1,
          'ruthless': 1,
          'criminal': 1,
          'like': 1,
          'far': 1,
          'honest': 1,
          'guess': 1,
          'thats': 1,
          'beside': 1,
          'point': 1,
          'npalmer': 1,
          'determined': 1,
          'get': 1,
          'next': 1,
          'project': 1,
          'made': 1,
          'sets': 1,
          'convince': 1,
          'big': 1,
          'martin': 1,
          'weir': 1,
          'danny': 1,
          'bringing': 1,
          'downandout': 1,
          'horror': 1,
          'actress': 1,
          'karen': 1,
          'flores': 1,
          'rene': 1,
          'russo': 1,
          'already': 1,
          'affairs': 1,
          'take': 1,
          'las': 1,
          'vegas': 1,
          'oddsmaker': 1,
          'predict': 1,
          'soon': 1,
          'hitting': 1,
          'sheets': 1,
          'well': 1,
          'customary': 1,
          'sexual': 1,
          'tension': 1,
          'denial': 1,
          'used': 1,
          'every': 1,
          'comedy': 1,
          'nto': 1,
          'speechless': 1,
          'works': 1,
          'case': 1,
          'unlike': 1,
          'nalthough': 1,
          'interesting': 1,
          'note': 1,
          'tony': 1,
          'danza': 1,
          'signed': 1,
          'also': 1,
          'ncomplicating': 1,
          'matters': 1,
          'somewhat': 1,
          'mobsters': 1,
          'backed': 1,
          'films': 1,
          'want': 1,
          'trying': 1,
          'track': 1,
          'defecting': 1,
          'means': 1,
          'level': 1,
          'despite': 1,
          'obvious': 1,
          'similarities': 1,
          'nthis': 1,
          'near': 1,
          'amount': 1,
          'originality': 1,
          'depth': 1,
          'entertaining': 1,
          'ive': 1,
          'seen': 1,
          'even': 1,
          'halloween': 1,
          'vi': 1,
          'kind': 1,
          'mixes': 1,
          'intelligent': 1,
          'humor': 1,
          'action': 1,
          'violence': 1,
          'nim': 1,
          'going': 1,
          'check': 1,
          'novel': 1,
          'based': 1,
          'nare': 1,
          'getting': 1,
          'npos': 1}),
 Counter({'film': 10,
          'jerry': 7,
          'conspiracy': 5,
          'good': 4,
          'movie': 4,
          'nthe': 4,
          'fletcher': 4,
          'performance': 4,
          'character': 4,
          'surprised': 4,
          'alice': 4,
          'advance': 3,
          'screening': 3,
          'theory': 3,
          'get': 3,
          'see': 3,
          'time': 3,
          'next': 3,
          'almost': 3,
          'one': 3,
          'audience': 3,
          'throughout': 3,
          'jerrys': 3,
          'nand': 3,
          'theories': 3,
          'continually': 3,
          'basically': 2,
          'something': 2,
          'like': 2,
          'fastpaced': 2,
          'mel': 2,
          'gibson': 2,
          'witty': 2,
          'ngibsons': 2,
          'terrific': 2,
          'lethal': 2,
          'weapon': 2,
          'films': 2,
          'around': 2,
          'even': 2,
          'imagine': 2,
          'going': 2,
          'nhe': 2,
          'action': 2,
          'situations': 2,
          'nfor': 2,
          'instance': 2,
          'especially': 2,
          'seem': 2,
          'sutton': 2,
          'truth': 2,
          'life': 2,
          'constantly': 2,
          'sure': 2,
          'fortunate': 1,
          'enough': 1,
          'attend': 1,
          'upcoming': 1,
          'thriller': 1,
          'nthis': 1,
          'course': 1,
          'big': 1,
          'deal': 1,
          'reviewing': 1,
          'movies': 1,
          'hobby': 1,
          'never': 1,
          'chance': 1,
          'nnot': 1,
          'able': 1,
          'stars': 1,
          'fasttalking': 1,
          'comical': 1,
          'taxi': 1,
          'driver': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'similar': 1,
          'martin': 1,
          'riggs': 1,
          'ngibson': 1,
          'teams': 1,
          'richard': 1,
          'donner': 1,
          'maverick': 1,
          'combination': 1,
          'works': 1,
          'better': 1,
          'indeed': 1,
          'unique': 1,
          'ntry': 1,
          'toneddowned': 1,
          'version': 1,
          'travis': 1,
          'bickle': 1,
          'jittery': 1,
          'guy': 1,
          'knowledge': 1,
          'government': 1,
          'coverups': 1,
          'nif': 1,
          'youve': 1,
          'got': 1,
          'nin': 1,
          'many': 1,
          'ways': 1,
          'nto': 1,
          'begin': 1,
          'ndont': 1,
          'wrong': 1,
          'accepting': 1,
          'gold': 1,
          'trophies': 1,
          'spring': 1,
          'enjoyable': 1,
          'nsecondly': 1,
          'gibsons': 1,
          'provided': 1,
          'fantastic': 1,
          'previews': 1,
          'led': 1,
          'believe': 1,
          'allout': 1,
          'flick': 1,
          'viewing': 1,
          'opposite': 1,
          'certain': 1,
          'sense': 1,
          'uncountable': 1,
          'number': 1,
          'oneliners': 1,
          'hilarious': 1,
          'tends': 1,
          'side': 1,
          'apartment': 1,
          'security': 1,
          'memorable': 1,
          'last': 1,
          'plot': 1,
          'nwriter': 1,
          'brian': 1,
          'helgeland': 1,
          'created': 1,
          'story': 1,
          'watching': 1,
          'left': 1,
          'wonder': 1,
          'fletchers': 1,
          'farfetched': 1,
          'first': 1,
          'helgelands': 1,
          'opinions': 1,
          'nmel': 1,
          'isnt': 1,
          'standout': 1,
          'njulia': 1,
          'roberts': 1,
          'department': 1,
          'justice': 1,
          'employee': 1,
          'cant': 1,
          'stay': 1,
          'away': 1,
          'visits': 1,
          'hopes': 1,
          'also': 1,
          'seems': 1,
          'obsessed': 1,
          'love': 1,
          'nbut': 1,
          'whenever': 1,
          'approaches': 1,
          'another': 1,
          'shrugs': 1,
          'beliefs': 1,
          'noting': 1,
          'day': 1,
          'slap': 1,
          'restraining': 1,
          'order': 1,
          'njerry': 1,
          'obviously': 1,
          'determined': 1,
          'seek': 1,
          'continues': 1,
          'research': 1,
          'information': 1,
          'printed': 1,
          'newsletter': 1,
          'title': 1,
          'nalthough': 1,
          'five': 1,
          'subscribers': 1,
          'puts': 1,
          'large': 1,
          'amount': 1,
          'effort': 1,
          'work': 1,
          'publishes': 1,
          'edition': 1,
          'nvery': 1,
          'soon': 1,
          'abducted': 1,
          'tortured': 1,
          'sinister': 1,
          'man': 1,
          'refers': 1,
          'dr': 1,
          'jonas': 1,
          'patrick': 1,
          'stewart': 1,
          'nafter': 1,
          'barely': 1,
          'escaping': 1,
          'alive': 1,
          'forced': 1,
          'turn': 1,
          'person': 1,
          'trust': 1,
          'remainder': 1,
          'always': 1,
          'full': 1,
          'suspense': 1,
          'put': 1,
          'jeopardy': 1,
          'along': 1,
          'way': 1,
          'learn': 1,
          'nmany': 1,
          'things': 1,
          'explained': 1,
          'characters': 1,
          'meaning': 1,
          'book': 1,
          'catcher': 1,
          'rye': 1,
          'ties': 1,
          'assassins': 1,
          'reason': 1,
          'lone': 1,
          'gunmen': 1,
          'three': 1,
          'names': 1,
          'e': 1,
          'g': 1,
          'nlee': 1,
          'harvey': 1,
          'oswald': 1,
          'james': 1,
          'earl': 1,
          'ray': 1,
          'real': 1,
          'behind': 1,
          'grateful': 1,
          'dead': 1,
          'nmake': 1,
          'listen': 1,
          'closely': 1,
          'throwing': 1,
          'interesting': 1,
          'tidbits': 1,
          'ndefinitely': 1,
          'hits': 1,
          'theaters': 1,
          'august': 1,
          '8th': 1,
          'make': 1,
          'standing': 1,
          'line': 1,
          'ni': 1,
          'nearly': 1,
          'positive': 1,
          'everyone': 1,
          'enjoy': 1,
          'actionthriller': 1,
          'dialogue': 1,
          'numerous': 1,
          'suspenseful': 1,
          'arent': 1,
          'still': 1,
          'npos': 1}),
 Counter({'mulan': 7,
          'animated': 4,
          'one': 3,
          'make': 3,
          'disney': 2,
          'studios': 2,
          'formula': 2,
          'hard': 2,
          'case': 2,
          'character': 2,
          'female': 2,
          'time': 2,
          'uncle': 2,
          'least': 2,
          'disneys': 2,
          'like': 2,
          'man': 2,
          'imperial': 2,
          'annual': 1,
          'fulllength': 1,
          'features': 1,
          'pat': 1,
          'remember': 1,
          'youre': 1,
          'watching': 1,
          'given': 1,
          'moment': 1,
          'n': 1,
          '36th': 1,
          'adventure': 1,
          'latest': 1,
          'point': 1,
          'nonce': 1,
          'tale': 1,
          'focused': 1,
          'around': 1,
          'strong': 1,
          'central': 1,
          'usual': 1,
          'whose': 1,
          'heroinesariel': 1,
          'belle': 1,
          'pocahontas': 1,
          'mulanget': 1,
          'equal': 1,
          'screen': 1,
          'heroes': 1,
          'recent': 1,
          'years': 1,
          'nadd': 1,
          'requisite': 1,
          'love': 1,
          'interest': 1,
          'wisecracking': 1,
          'sidekick': 1,
          'two': 1,
          'pep': 1,
          'soundtrack': 1,
          'handful': 1,
          'strategically': 1,
          'placed': 1,
          'show': 1,
          'tunes': 1,
          'introspective': 1,
          'number': 1,
          'pool': 1,
          'looking': 1,
          'mirror': 1,
          'rousing': 1,
          'anthem': 1,
          'cutesy': 1,
          'montagebacked': 1,
          'crowd': 1,
          'pleaser': 1,
          'pose': 1,
          'threats': 1,
          'engaging': 1,
          'lead': 1,
          'tie': 1,
          'things': 1,
          'neatly': 1,
          'closing': 1,
          'credits': 1,
          'nbobs': 1,
          'nbetter': 1,
          'walts': 1,
          'nkids': 1,
          'doubt': 1,
          'go': 1,
          'gaga': 1,
          'fast': 1,
          'food': 1,
          'tieins': 1,
          'familiarity': 1,
          'leave': 1,
          'grownupsthis': 1,
          'reviewer': 1,
          'includedwishing': 1,
          'little': 1,
          'nmaybe': 1,
          'feature': 1,
          'withoutshock': 1,
          'nhorror': 1,
          'nsongs': 1,
          'example': 1,
          'maybe': 1,
          'film': 1,
          'cheeky': 1,
          'chihuahua': 1,
          'called': 1,
          'pepe': 1,
          'longs': 1,
          'become': 1,
          'matador': 1,
          'trinidad': 1,
          'nhow': 1,
          'simply': 1,
          'ditching': 1,
          'sidekicks': 1,
          'altogether': 1,
          'nit': 1,
          'isnt': 1,
          'gon': 1,
          'na': 1,
          'happen': 1,
          'nlike': 1,
          'previous': 1,
          'entries': 1,
          'slow': 1,
          'mark': 1,
          'nthe': 1,
          'animation': 1,
          'tends': 1,
          'suffer': 1,
          'slackness': 1,
          'early': 1,
          'going': 1,
          'humorous': 1,
          'element': 1,
          'madcap': 1,
          'dragon': 1,
          'wannabe': 1,
          'guise': 1,
          'loquacious': 1,
          'lizard': 1,
          'dry': 1,
          'mouth': 1,
          'courtesy': 1,
          'eddie': 1,
          'murphys': 1,
          'vocal': 1,
          'talents': 1,
          'plays': 1,
          'inappropriate': 1,
          'necessary': 1,
          'formulawise': 1,
          'afterthought': 1,
          'nhowever': 1,
          'hour': 1,
          'everything': 1,
          'comes': 1,
          'together': 1,
          'clicks': 1,
          'nhighlights': 1,
          'include': 1,
          'spectacular': 1,
          'cavalry': 1,
          'charge': 1,
          'snowcovered': 1,
          'pass': 1,
          'due': 1,
          'sophistication': 1,
          'todays': 1,
          'computergenerated': 1,
          'imagery': 1,
          'tell': 1,
          'real': 1,
          'thing': 1,
          'memorable': 1,
          'showstopping': 1,
          'musical': 1,
          'interlude': 1,
          'ill': 1,
          'penned': 1,
          'matthew': 1,
          'wilder': 1,
          'david': 1,
          'zippel': 1,
          'last': 1,
          'nvoiced': 1,
          'mingna': 1,
          'wen': 1,
          'strongest': 1,
          'date': 1,
          'nwhen': 1,
          'hordes': 1,
          'huns': 1,
          'pour': 1,
          'chinas': 1,
          'great': 1,
          'wall': 1,
          'threaten': 1,
          'overthrow': 1,
          'palace': 1,
          'emperor': 1,
          'decrees': 1,
          'every': 1,
          'family': 1,
          'land': 1,
          'dispatch': 1,
          'serve': 1,
          'army': 1,
          'nsince': 1,
          'mulans': 1,
          'father': 1,
          'infirm': 1,
          'proud': 1,
          'highspirited': 1,
          'steals': 1,
          'fathers': 1,
          'armor': 1,
          'incognito': 1,
          'signs': 1,
          'face': 1,
          'mongolian': 1,
          'menace': 1,
          'nattracted': 1,
          'distracted': 1,
          'commanding': 1,
          'officer': 1,
          'shang': 1,
          'b': 1,
          'nwong': 1,
          'outmatches': 1,
          'fellow': 1,
          'combatants': 1,
          'smarts': 1,
          'wit': 1,
          'physical': 1,
          'ability': 1,
          'nshes': 1,
          'woman': 1,
          '90s': 1,
          'couple': 1,
          'millennia': 1,
          'ahead': 1,
          'npos': 1}),
 Counter({'good': 3,
          'movie': 2,
          'less': 2,
          'twister': 2,
          'plot': 2,
          'one': 2,
          'effects': 2,
          'tommy': 2,
          'small': 2,
          'quake': 2,
          'nthen': 2,
          'hours': 2,
          'nthe': 2,
          'ni': 2,
          'nit': 2,
          'interesting': 2,
          'expecting': 1,
          'thrilling': 1,
          'ntwister': 1,
          'real': 1,
          'simpithize': 1,
          'nbut': 1,
          'amazing': 1,
          'hoping': 1,
          'would': 1,
          'volcano': 1,
          'nvolcano': 1,
          'starts': 1,
          'lee': 1,
          'jones': 1,
          'emo': 1,
          'nhe': 1,
          'worrys': 1,
          'earthquake': 1,
          'enough': 1,
          'leave': 1,
          'daughter': 1,
          'home': 1,
          'baby': 1,
          'sitter': 1,
          'nthere': 1,
          'another': 1,
          'geologist': 1,
          'points': 1,
          'takes': 1,
          'geologic': 1,
          'event': 1,
          'heat': 1,
          'millions': 1,
          'gallons': 1,
          'water': 1,
          '12': 1,
          'na': 1,
          'later': 1,
          'large': 1,
          'amount': 1,
          'ash': 1,
          'start': 1,
          'fall': 1,
          'nstarts': 1,
          'volcanic': 1,
          'eruption': 1,
          'liked': 1,
          'great': 1,
          'hoped': 1,
          'still': 1,
          'none': 1,
          'excellent': 1,
          'special': 1,
          'best': 1,
          'view': 1,
          'nhelecopters': 1,
          'flying': 1,
          'streets': 1,
          'volcanos': 1,
          'nalso': 1,
          'side': 1,
          'stories': 1,
          'made': 1,
          'nso': 1,
          'npos': 1}),
 Counter({'animated': 2,
          'great': 2,
          'disneys': 1,
          '35th': 1,
          'feature': 1,
          'retooling': 1,
          'olympian': 1,
          'legend': 1,
          'crossed': 1,
          'well': 1,
          'superman': 1,
          'story': 1,
          'surprisingly': 1,
          'soft': 1,
          'center': 1,
          'ngreat': 1,
          'wit': 1,
          'art': 1,
          'villain': 1,
          'james': 1,
          'woods': 1,
          'hades': 1,
          'lord': 1,
          'underworld': 1,
          'local': 1,
          'lounge': 1,
          'act': 1,
          'cant': 1,
          'quite': 1,
          'stifle': 1,
          'yawns': 1,
          'induced': 1,
          'bland': 1,
          'hero': 1,
          'colorfully': 1,
          'monotonous': 1,
          'sidekick': 1,
          'danny': 1,
          'devito': 1,
          'satyrical': 1,
          'trainer': 1,
          'phil': 1,
          'largely': 1,
          'unremarkable': 1,
          'soundtrack': 1,
          'n': 1,
          'none': 1,
          'alan': 1,
          'menkendavid': 1,
          'zippel': 1,
          'tunes': 1,
          'particular': 1,
          'ly': 1,
          'noteworthy': 1,
          'nsome': 1,
          'lack': 1,
          'lyrical': 1,
          'snap': 1,
          'nothers': 1,
          'need': 1,
          'memorable': 1,
          'melodies': 1,
          'nboring': 1,
          'ballads': 1,
          'expect': 1,
          'boring': 1,
          'production': 1,
          'numbers': 1,
          'nso': 1,
          'hercules': 1,
          'bit': 1,
          'long': 1,
          'sit': 1,
          'wont': 1,
          'stay': 1,
          'bored': 1,
          'nthe': 1,
          'highlights': 1,
          'include': 1,
          'nifty': 1,
          'round': 1,
          'action': 1,
          'herc': 1,
          'battling': 1,
          'cgi': 1,
          'hydra': 1,
          'steady': 1,
          'stream': 1,
          'anachronisms': 1,
          'somebody': 1,
          'call': 1,
          'ixii': 1,
          'pop': 1,
          'references': 1,
          'lets': 1,
          'get': 1,
          'ready': 1,
          'rumble': 1,
          'la': 1,
          'aladdin': 1,
          'several': 1,
          'longoverdue': 1,
          'jabs': 1,
          'mouses': 1,
          'marketing': 1,
          'merchandising': 1,
          'depart': 1,
          'ments': 1,
          'nwhile': 1,
          'rocksolid': 1,
          'hunchback': 1,
          'still': 1,
          'new': 1,
          'world': 1,
          'improvement': 1,
          'pocohontas': 1,
          'ndirected': 1,
          'ron': 1,
          'clements': 1,
          'john': 1,
          'musker': 1,
          'voice': 1,
          'credits': 1,
          'including': 1,
          'tate': 1,
          'donovan': 1,
          'susan': 1,
          'egan': 1,
          'bob': 1,
          'goldthwait': 1,
          'matt': 1,
          'frewer': 1,
          'samantha': 1,
          'eggar': 1,
          'paul': 1,
          'shaffer': 1,
          'lighting': 1,
          'bolt': 1,
          'zeus': 1,
          'rip': 1,
          'torn': 1,
          'whos': 1,
          'good': 1,
          'summer': 1,
          'also': 1,
          'appearing': 1,
          'trial': 1,
          'error': 1,
          'men': 1,
          'black': 1,
          'npos': 1}),
 Counter({'shrek': 12,
          'nthe': 7,
          'nfor': 4,
          'characters': 4,
          'farquaad': 4,
          'disney': 4,
          'offers': 3,
          'big': 3,
          'jokes': 3,
          'found': 3,
          'lord': 3,
          'castle': 3,
          'like': 3,
          'three': 3,
          'snow': 3,
          'white': 3,
          'make': 3,
          'though': 3,
          'come': 3,
          'farquaads': 3,
          'film': 3,
          'short': 3,
          'different': 2,
          'laughs': 2,
          'family': 2,
          'films': 2,
          'fairy': 2,
          'tale': 2,
          'nall': 2,
          'ride': 2,
          'although': 2,
          'disturbing': 2,
          'nbut': 2,
          'several': 2,
          'life': 2,
          'green': 2,
          'ogre': 2,
          'using': 2,
          'nshrek': 2,
          'take': 2,
          'pinocchio': 2,
          'bad': 2,
          'seven': 2,
          'magic': 2,
          'mirror': 2,
          'shown': 2,
          'lovely': 2,
          'princess': 2,
          'fiona': 2,
          'brings': 2,
          'donkey': 2,
          'eddie': 2,
          'murphy': 2,
          'learn': 2,
          'well': 2,
          'movie': 2,
          'world': 2,
          'one': 2,
          'behind': 2,
          'katzenberg': 2,
          'two': 2,
          'others': 2,
          'people': 2,
          'look': 2,
          'moral': 2,
          'good': 2,
          'computeranimated': 1,
          'comedy': 1,
          'designed': 1,
          'enjoyed': 1,
          'levels': 1,
          'groups': 1,
          'children': 1,
          'imaginative': 1,
          'visuals': 1,
          'appealing': 1,
          'new': 1,
          'mixed': 1,
          'host': 1,
          'familiar': 1,
          'faces': 1,
          'loads': 1,
          'action': 1,
          'barrage': 1,
          'including': 1,
          'numerous': 1,
          'gags': 1,
          'related': 1,
          'body': 1,
          'functions': 1,
          'yucky': 1,
          'substances': 1,
          'apparently': 1,
          'requisite': 1,
          'contemporary': 1,
          'adults': 1,
          'fractured': 1,
          'packed': 1,
          'rude': 1,
          'sail': 1,
          'heads': 1,
          'kids': 1,
          'snappy': 1,
          'couple': 1,
          'points': 1,
          'first': 1,
          'basics': 1,
          'nbased': 1,
          'loosely': 1,
          '1990': 1,
          'childrens': 1,
          'story': 1,
          'follows': 1,
          'momentous': 1,
          'days': 1,
          'title': 1,
          'character': 1,
          'rotund': 1,
          'voiced': 1,
          'mike': 1,
          'myers': 1,
          'pleasant': 1,
          'scottish': 1,
          'accent': 1,
          'fond': 1,
          'grumpy': 1,
          'fellow': 1,
          'living': 1,
          'solitary': 1,
          'deep': 1,
          'swamp': 1,
          'local': 1,
          'nobleman': 1,
          'disturbs': 1,
          'peace': 1,
          'npetty': 1,
          'tyrant': 1,
          'away': 1,
          'awk': 1,
          'middle': 1,
          'basis': 1,
          'string': 1,
          'impolite': 1,
          'oneliners': 1,
          'owns': 1,
          'land': 1,
          'resides': 1,
          'nhe': 1,
          'proceeds': 1,
          'turn': 1,
          'ogres': 1,
          'yard': 1,
          'ellis': 1,
          'island': 1,
          'storybook': 1,
          'banishes': 1,
          'fanciful': 1,
          'beings': 1,
          'nas': 1,
          'result': 1,
          'finds': 1,
          'surrounded': 1,
          'legends': 1,
          'blind': 1,
          'mice': 1,
          'wolf': 1,
          'dwarfs': 1,
          'bears': 1,
          'name': 1,
          'nan': 1,
          'enraged': 1,
          'storms': 1,
          'find': 1,
          'john': 1,
          'lithgow': 1,
          'ready': 1,
          'bargain': 1,
          'nlord': 1,
          'obnoxious': 1,
          'wants': 1,
          'become': 1,
          'king': 1,
          'way': 1,
          'rescue': 1,
          'damsel': 1,
          'distress': 1,
          'wife': 1,
          'unveils': 1,
          'choices': 1,
          'presentation': 1,
          'straight': 1,
          'dating': 1,
          'game': 1,
          'cheeky': 1,
          'announcer': 1,
          'purrs': 1,
          'even': 1,
          'lives': 1,
          'men': 1,
          'shes': 1,
          'easy': 1,
          'nfarquaad': 1,
          'selects': 1,
          'cameron': 1,
          'diaz': 1,
          'deal': 1,
          'snatches': 1,
          'dragonprotected': 1,
          'lava': 1,
          'moatfilled': 1,
          'held': 1,
          'captive': 1,
          'throne': 1,
          'allow': 1,
          'pests': 1,
          'move': 1,
          'back': 1,
          'grounds': 1,
          'reluctantly': 1,
          'agrees': 1,
          'sets': 1,
          'quest': 1,
          'accompanied': 1,
          'motormouthed': 1,
          'determined': 1,
          'grump': 1,
          'best': 1,
          'friend': 1,
          'nthey': 1,
          'finally': 1,
          'hook': 1,
          'helpless': 1,
          'maiden': 1,
          'expected': 1,
          'meet': 1,
          'matter': 1,
          'dragon': 1,
          'surprises': 1,
          'references': 1,
          'great': 1,
          'many': 1,
          'flicks': 1,
          'babe': 1,
          'thatll': 1,
          'nthatll': 1,
          'graduate': 1,
          'lions': 1,
          'share': 1,
          'expense': 1,
          'wonderful': 1,
          'publicdomain': 1,
          'made': 1,
          'icons': 1,
          'various': 1,
          'hits': 1,
          'referred': 1,
          'possessed': 1,
          'toy': 1,
          'spies': 1,
          'sleeping': 1,
          'cabin': 1,
          'bellows': 1,
          'get': 1,
          'dead': 1,
          'broad': 1,
          'table': 1,
          'n': 1,
          'biggest': 1,
          'slams': 1,
          'visits': 1,
          'royal': 1,
          'domicile': 1,
          'closely': 1,
          'resembles': 1,
          'certain': 1,
          'kingdom': 1,
          'souvenir': 1,
          'stands': 1,
          'queue': 1,
          'lines': 1,
          'display': 1,
          'animatronic': 1,
          'figures': 1,
          'sing': 1,
          'palace': 1,
          'rules': 1,
          'relentlessly': 1,
          'peppy': 1,
          'tune': 1,
          'sounds': 1,
          'lot': 1,
          'small': 1,
          'nwhich': 1,
          'point': 1,
          'number': 1,
          'ni': 1,
          'laughed': 1,
          'swipes': 1,
          'mentality': 1,
          'bit': 1,
          'sad': 1,
          'acrimony': 1,
          'dreamworks': 1,
          'honcho': 1,
          'jeff': 1,
          'wheel': 1,
          'michael': 1,
          'eisner': 1,
          'known': 1,
          'years': 1,
          'companies': 1,
          'tried': 1,
          'sabotage': 1,
          'video': 1,
          'releases': 1,
          'issuing': 1,
          'similar': 1,
          'competing': 1,
          'productions': 1,
          'day': 1,
          'nand': 1,
          'entire': 1,
          'attack': 1,
          'former': 1,
          'employer': 1,
          'nheres': 1,
          'suggestion': 1,
          'boys': 1,
          'grow': 1,
          'nput': 1,
          'past': 1,
          'ntheres': 1,
          'room': 1,
          'sandbox': 1,
          'cant': 1,
          'play': 1,
          'nice': 1,
          'go': 1,
          'rooms': 1,
          'area': 1,
          'troubling': 1,
          'came': 1,
          'portrayal': 1,
          'nbeyond': 1,
          'irreverence': 1,
          'actually': 1,
          'message': 1,
          'beyond': 1,
          'physical': 1,
          'appearances': 1,
          'true': 1,
          'beauty': 1,
          'lies': 1,
          'within': 1,
          'nits': 1,
          'notion': 1,
          'betrays': 1,
          'incessantly': 1,
          'taking': 1,
          'cheap': 1,
          'shots': 1,
          'diminutive': 1,
          'stature': 1,
          'ndo': 1,
          'really': 1,
          'need': 1,
          'reinforcing': 1,
          'idea': 1,
          'mocking': 1,
          'acceptable': 1,
          'pompous': 1,
          'selfish': 1,
          'behavior': 1,
          'enough': 1,
          'target': 1,
          'zingers': 1,
          'nadding': 1,
          'simply': 1,
          'mean': 1,
          'nstill': 1,
          'rollicking': 1,
          'time': 1,
          'computer': 1,
          'animation': 1,
          'mostly': 1,
          'impressive': 1,
          'key': 1,
          'animated': 1,
          'rubber': 1,
          'squeeze': 1,
          'toys': 1,
          'human': 1,
          'movements': 1,
          'often': 1,
          'jerky': 1,
          'voice': 1,
          'work': 1,
          'strong': 1,
          'particularly': 1,
          'fast': 1,
          'furious': 1,
          'tainted': 1,
          'may': 1,
          'nto': 1,
          'trot': 1,
          'clich': 1,
          'fun': 1,
          'ages': 1,
          'nparents': 1,
          'remind': 1,
          'young': 1,
          'ones': 1,
          'home': 1,
          'taunting': 1,
          'tall': 1,
          'skinny': 1,
          'fat': 1,
          'etc': 1,
          'thing': 1,
          'npos': 1}),
 Counter({'food': 7,
          'something': 7,
          'film': 6,
          'tampopo': 6,
          'family': 6,
          'eat': 5,
          'scene': 5,
          'shop': 5,
          'nthe': 5,
          'bowl': 4,
          'ramen': 4,
          'one': 4,
          'noodle': 4,
          'noodles': 3,
          'day': 3,
          'goro': 3,
          'tampopos': 3,
          'people': 3,
          'help': 3,
          'make': 3,
          'nthis': 3,
          'soup': 3,
          'store': 3,
          'next': 3,
          'also': 3,
          'even': 3,
          'wife': 3,
          'meal': 3,
          'way': 2,
          'nthere': 2,
          'man': 2,
          'master': 2,
          'would': 2,
          'says': 2,
          'meant': 2,
          'parody': 2,
          'experience': 2,
          'process': 2,
          'sum': 2,
          'brings': 2,
          'sense': 2,
          'making': 2,
          'western': 2,
          'na': 2,
          'comes': 2,
          'finds': 2,
          'small': 2,
          'ngoro': 2,
          'less': 2,
          'filled': 2,
          'little': 2,
          'owner': 2,
          'door': 2,
          'nshe': 2,
          'joy': 2,
          'comical': 2,
          'effective': 2,
          'viewer': 2,
          'watch': 2,
          'kitchen': 2,
          'prepares': 2,
          'vignettes': 2,
          'mother': 2,
          'home': 2,
          'children': 2,
          'obviously': 2,
          'last': 2,
          'life': 2,
          'dinner': 2,
          'knows': 2,
          'normalcy': 2,
          'nin': 2,
          'moment': 2,
          'showdown': 2,
          'watching': 1,
          'first': 1,
          'ten': 1,
          'minutes': 1,
          'japanese': 1,
          'never': 1,
          'old': 1,
          'teaching': 1,
          'young': 1,
          'soupy': 1,
          'teach': 1,
          'eager': 1,
          'apprentice': 1,
          'n': 1,
          'caress': 1,
          'chopsticks': 1,
          'put': 1,
          'roast': 1,
          'pork': 1,
          'side': 1,
          'apologize': 1,
          'saying': 1,
          'see': 1,
          'soon': 1,
          'nof': 1,
          'course': 1,
          'earnestness': 1,
          'underneath': 1,
          'silliness': 1,
          'makes': 1,
          'take': 1,
          'certain': 1,
          'degree': 1,
          'sobriety': 1,
          'nyou': 1,
          'begin': 1,
          'appreciate': 1,
          'merely': 1,
          'like': 1,
          'enjoy': 1,
          'rather': 1,
          'nexperiencing': 1,
          'engages': 1,
          'senses': 1,
          'fulfilling': 1,
          'terms': 1,
          'weaving': 1,
          'total': 1,
          'pleasure': 1,
          'parts': 1,
          'ntrust': 1,
          'really': 1,
          'want': 1,
          'go': 1,
          'find': 1,
          'point': 1,
          'njuzo': 1,
          'itamis': 1,
          'serious': 1,
          'forefront': 1,
          'story': 1,
          'follow': 1,
          'pattern': 1,
          'american': 1,
          'set': 1,
          'modern': 1,
          'japan': 1,
          'stranger': 1,
          'tsutomu': 1,
          'yamazaki': 1,
          'town': 1,
          'nobuko': 1,
          'miyamoto': 1,
          'proprietor': 1,
          'holeinthewall': 1,
          'trying': 1,
          'fend': 1,
          'insults': 1,
          'local': 1,
          'strongman': 1,
          'pisken': 1,
          'rikiya': 1,
          'yasuoka': 1,
          'defend': 1,
          'honor': 1,
          'woman': 1,
          'gets': 1,
          'fight': 1,
          'ringleader': 1,
          'henchmen': 1,
          'emerging': 1,
          'bloodied': 1,
          'victorious': 1,
          'ambition': 1,
          'flock': 1,
          'far': 1,
          'away': 1,
          'problem': 1,
          'fare': 1,
          'popular': 1,
          'appetizing': 1,
          'nhowever': 1,
          'agrees': 1,
          'quest': 1,
          'seek': 1,
          'wisdom': 1,
          'elderly': 1,
          'expert': 1,
          'enlist': 1,
          'aid': 1,
          'wealthy': 1,
          'patron': 1,
          'friends': 1,
          'former': 1,
          'enemy': 1,
          'many': 1,
          'scenes': 1,
          'absolute': 1,
          'gems': 1,
          'ntake': 1,
          'example': 1,
          'tries': 1,
          'buy': 1,
          'recipe': 1,
          'delicious': 1,
          'another': 1,
          'price': 1,
          'high': 1,
          'secretly': 1,
          'sell': 1,
          'affordable': 1,
          'ntampopo': 1,
          'meets': 1,
          'late': 1,
          'night': 1,
          'leads': 1,
          'back': 1,
          'room': 1,
          'protests': 1,
          'thinking': 1,
          'perhaps': 1,
          'ulterior': 1,
          'motives': 1,
          'insists': 1,
          'njust': 1,
          'bolt': 1,
          'exit': 1,
          'shows': 1,
          'gap': 1,
          'wall': 1,
          'adjoining': 1,
          'peers': 1,
          'takes': 1,
          'notes': 1,
          'watches': 1,
          'cook': 1,
          'face': 1,
          'felt': 1,
          'audience': 1,
          'filling': 1,
          'trepidation': 1,
          'relief': 1,
          'discovery': 1,
          'ntheres': 1,
          'interesting': 1,
          'introduces': 1,
          'son': 1,
          'bunch': 1,
          'street': 1,
          'despite': 1,
          'economic': 1,
          'trappings': 1,
          'gourmets': 1,
          'sommeliers': 1,
          'nwe': 1,
          'sneaks': 1,
          'restaurant': 1,
          'expertly': 1,
          'french': 1,
          'omelet': 1,
          'bring': 1,
          'laugh': 1,
          'matter': 1,
          'whether': 1,
          'rich': 1,
          'poor': 1,
          'everyone': 1,
          'common': 1,
          'enjoyment': 1,
          'shared': 1,
          'number': 1,
          'unrelated': 1,
          'appearing': 1,
          'throughout': 1,
          'illustrate': 1,
          'accentuate': 1,
          'role': 1,
          'peoples': 1,
          'lives': 1,
          'particularly': 1,
          'involves': 1,
          'tended': 1,
          'doctor': 1,
          'nsurrounded': 1,
          'hours': 1,
          'nher': 1,
          'husband': 1,
          'seeing': 1,
          'worsened': 1,
          'condition': 1,
          'demands': 1,
          'get': 1,
          'husbands': 1,
          'intention': 1,
          'mean': 1,
          'desperate': 1,
          'deprived': 1,
          'essential': 1,
          'part': 1,
          'near': 1,
          'miracle': 1,
          'drags': 1,
          'quick': 1,
          'awaiting': 1,
          'nas': 1,
          'eats': 1,
          'looks': 1,
          'smiles': 1,
          'npreparing': 1,
          'comfort': 1,
          'brief': 1,
          'enjoys': 1,
          'nthen': 1,
          'falls': 1,
          'dead': 1,
          'nfor': 1,
          'stunned': 1,
          'father': 1,
          'yells': 1,
          'keep': 1,
          'eating': 1,
          'ever': 1,
          'made': 1,
          'ncrying': 1,
          'finishes': 1,
          'awkward': 1,
          'moving': 1,
          'beautiful': 1,
          'nby': 1,
          'including': 1,
          'itami': 1,
          'ran': 1,
          'risk': 1,
          'creating': 1,
          'disjointed': 1,
          'surprisingly': 1,
          'interrupt': 1,
          'pacing': 1,
          'main': 1,
          'storyline': 1,
          'ninstead': 1,
          'contribute': 1,
          'idea': 1,
          'goal': 1,
          'able': 1,
          'serve': 1,
          'exceptional': 1,
          'worthy': 1,
          'noble': 1,
          'nbecause': 1,
          'parodies': 1,
          'construction': 1,
          'plot': 1,
          'fairly': 1,
          'predictable': 1,
          'still': 1,
          'enjoyable': 1,
          'familiar': 1,
          'good': 1,
          'guys': 1,
          'come': 1,
          'together': 1,
          'final': 1,
          'case': 1,
          'nif': 1,
          'succeeded': 1,
          'nits': 1,
          'pretty': 1,
          'obvious': 1,
          'outcome': 1,
          'changes': 1,
          'whole': 1,
          'perspective': 1,
          'consume': 1,
          'every': 1,
          'afford': 1,
          'cut': 1,
          'slack': 1,
          'npos': 1}),
 Counter({'jedi': 8,
          'star': 6,
          'return': 5,
          'vader': 5,
          'emperor': 5,
          'nthe': 4,
          'empire': 4,
          'back': 4,
          'evil': 4,
          'special': 4,
          'effects': 4,
          'wars': 3,
          'nreturn': 3,
          'final': 3,
          'films': 3,
          'strikes': 3,
          'jabba': 3,
          'hutt': 3,
          'space': 3,
          'death': 3,
          'luke': 3,
          'old': 2,
          'lucas': 2,
          'easily': 2,
          'innovative': 2,
          'teddy': 2,
          'darth': 2,
          'time': 2,
          'nwith': 2,
          'creature': 2,
          'ian': 2,
          'mcdiarmid': 2,
          'mark': 2,
          'hamill': 2,
          'carrie': 2,
          'fisher': 2,
          'billy': 2,
          'dee': 2,
          'williams': 2,
          'home': 2,
          'han': 2,
          'harrison': 2,
          'ford': 2,
          'clutches': 2,
          'jabbas': 2,
          'added': 2,
          'come': 2,
          'nfrom': 2,
          'group': 2,
          'nas': 2,
          'battle': 2,
          'ewoks': 2,
          'suitably': 2,
          'previous': 2,
          'many': 2,
          'ships': 2,
          'one': 2,
          'watching': 2,
          'fun': 2,
          'us': 2,
          'new': 2,
          'theres': 1,
          'saying': 1,
          'states': 1,
          'something': 1,
          'leaving': 1,
          'best': 1,
          'last': 1,
          'ngeorge': 1,
          'certainly': 1,
          'followed': 1,
          'adage': 1,
          'crafting': 1,
          'original': 1,
          'trilogy': 1,
          'installment': 1,
          'series': 1,
          'actionpacked': 1,
          'entertaining': 1,
          'three': 1,
          'dark': 1,
          'eerie': 1,
          'atmosphere': 1,
          'oozed': 1,
          'every': 1,
          'frame': 1,
          'gone': 1,
          'ninstead': 1,
          'good': 1,
          'triumphing': 1,
          'decisively': 1,
          'resolution': 1,
          'love': 1,
          'triangle': 1,
          'walking': 1,
          'bears': 1,
          'neven': 1,
          'doesnt': 1,
          'seem': 1,
          'intimidating': 1,
          'around': 1,
          'arrival': 1,
          'apparitionlike': 1,
          'played': 1,
          'turned': 1,
          'somewhat': 1,
          'henchman': 1,
          'picks': 1,
          'unspecified': 1,
          'conclusion': 1,
          'nluke': 1,
          'skywalker': 1,
          'princess': 1,
          'leia': 1,
          'lando': 1,
          'calrissian': 1,
          'chewbacca': 1,
          'peter': 1,
          'mayhew': 1,
          'c3p0': 1,
          'anthony': 1,
          'daniels': 1,
          'r2d2': 1,
          'kenny': 1,
          'baker': 1,
          'rescue': 1,
          'mission': 1,
          'lukes': 1,
          'planet': 1,
          'tatooine': 1,
          'ntheir': 1,
          'goal': 1,
          'save': 1,
          'solo': 1,
          'intergalactic': 1,
          'gangster': 1,
          'nit': 1,
          'creepylooking': 1,
          'stone': 1,
          'fortress': 1,
          'guarded': 1,
          'hognosed': 1,
          'beasts': 1,
          'play': 1,
          'hysterical': 1,
          'scene': 1,
          'involving': 1,
          'music': 1,
          'dreaded': 1,
          'beast': 1,
          'outside': 1,
          'sand': 1,
          'barge': 1,
          'top': 1,
          'notch': 1,
          'soon': 1,
          'freed': 1,
          'cryofreeze': 1,
          'rescued': 1,
          'outer': 1,
          'rebel': 1,
          'alliance': 1,
          'face': 1,
          'empires': 1,
          'newest': 1,
          'threat': 1,
          'second': 1,
          'powerful': 1,
          'activated': 1,
          'could': 1,
          'spell': 1,
          'doom': 1,
          'anyone': 1,
          'stands': 1,
          'nso': 1,
          'fleet': 1,
          'prepares': 1,
          'company': 1,
          'travel': 1,
          'forest': 1,
          'moon': 1,
          'endor': 1,
          'knock': 1,
          'shield': 1,
          'defends': 1,
          'attacks': 1,
          'nthere': 1,
          'befriended': 1,
          'bearlike': 1,
          'native': 1,
          'race': 1,
          'fearing': 1,
          'presence': 1,
          'endangering': 1,
          'turns': 1,
          'interesting': 1,
          'elements': 1,
          'scenes': 1,
          'pitted': 1,
          'tense': 1,
          'wellacted': 1,
          'technical': 1,
          'pointofview': 1,
          'battles': 1,
          'amazing': 1,
          'hindering': 1,
          'anything': 1,
          'depicted': 1,
          'nnot': 1,
          'speed': 1,
          'range': 1,
          'movement': 1,
          'dramatically': 1,
          'improved': 1,
          'non': 1,
          'level': 1,
          'almost': 1,
          'worth': 1,
          'nin': 1,
          'edition': 1,
          'even': 1,
          'making': 1,
          'incredibly': 1,
          'watch': 1,
          'acting': 1,
          'stronger': 1,
          'nby': 1,
          '1983': 1,
          'matured': 1,
          'onscreen': 1,
          'personas': 1,
          'chemistry': 1,
          'amongst': 1,
          'trio': 1,
          'terrific': 1,
          'gives': 1,
          'another': 1,
          'human': 1,
          'hero': 1,
          'root': 1,
          'nnewcomer': 1,
          'plays': 1,
          'creepy': 1,
          'cunning': 1,
          'although': 1,
          'hes': 1,
          'imposing': 1,
          'nalthough': 1,
          'great': 1,
          'big': 1,
          'screen': 1,
          'generates': 1,
          'greater': 1,
          'sense': 1,
          'enjoyment': 1,
          'spectacular': 1,
          'adorable': 1,
          'sinister': 1,
          'millenium': 1,
          'falcon': 1,
          'vaders': 1,
          'incredible': 1,
          'betrayal': 1,
          'destruction': 1,
          'always': 1,
          'lovable': 1,
          'yoda': 1,
          'concludes': 1,
          'greatest': 1,
          'trilogies': 1,
          'ever': 1,
          'made': 1,
          'huge': 1,
          'bang': 1,
          'ncongratulations': 1,
          'george': 1,
          'whose': 1,
          'mind': 1,
          'entertains': 1,
          'continue': 1,
          'entertain': 1,
          'generations': 1,
          'n': 1,
          'npos': 1}),
 Counter({'giant': 20,
          'nthe': 11,
          'iron': 10,
          'film': 8,
          'hogarth': 8,
          'story': 5,
          'many': 4,
          'films': 4,
          'n': 4,
          'young': 4,
          'takes': 4,
          'mansley': 4,
          'actually': 4,
          'characters': 4,
          'audience': 3,
          'cant': 3,
          'children': 3,
          'time': 3,
          'voice': 3,
          'mother': 3,
          'robot': 3,
          'dean': 3,
          'kind': 3,
          'family': 3,
          'simple': 3,
          'nits': 3,
          'go': 3,
          'work': 3,
          'character': 3,
          'rather': 3,
          'real': 3,
          'get': 3,
          'childrens': 2,
          'contempt': 2,
          'movies': 2,
          'kids': 2,
          'handle': 2,
          'serious': 2,
          'thoughtful': 2,
          'discussions': 2,
          'brad': 2,
          'bird': 2,
          'late': 2,
          'animated': 2,
          'simpsons': 2,
          'holds': 2,
          'people': 2,
          'making': 2,
          'adults': 2,
          'nhogarth': 2,
          'eli': 2,
          'marienthal': 2,
          'jennifer': 2,
          'aniston': 2,
          'nafter': 2,
          'watching': 2,
          'away': 2,
          'forest': 2,
          'investigate': 2,
          'nhe': 2,
          'comes': 2,
          'food': 2,
          'befriends': 2,
          'around': 2,
          'keep': 2,
          'connick': 2,
          'jr': 2,
          'becomes': 2,
          'boy': 2,
          'elements': 2,
          'ability': 2,
          'several': 2,
          'messages': 2,
          'ones': 2,
          'teaches': 2,
          'wants': 2,
          'sequence': 2,
          'though': 2,
          'wont': 2,
          'disney': 2,
          'could': 2,
          'enough': 2,
          'make': 2,
          'cartoon': 2,
          'way': 2,
          'quite': 2,
          'well': 2,
          'drawn': 2,
          'features': 2,
          'comic': 2,
          'agent': 2,
          'things': 2,
          'paranoia': 2,
          'na': 2,
          'clearly': 2,
          'also': 2,
          'humor': 2,
          'enjoy': 2,
          'one': 2,
          'clever': 2,
          'nuclear': 2,
          'much': 2,
          'treat': 1,
          'target': 1,
          'utter': 1,
          'ntoo': 1,
          'write': 1,
          'direct': 1,
          'assume': 1,
          'meaningful': 1,
          'issues': 1,
          'directed': 1,
          'cowritten': 1,
          'series': 1,
          'king': 1,
          'hill': 1,
          'assumes': 1,
          'entertained': 1,
          'absolutely': 1,
          'thats': 1,
          'enjoyable': 1,
          'alike': 1,
          'hughes': 1,
          'spirited': 1,
          'lad': 1,
          'lives': 1,
          'hardworking': 1,
          'single': 1,
          'annie': 1,
          'small': 1,
          'town': 1,
          'maine': 1,
          'staying': 1,
          'scary': 1,
          'night': 1,
          'treks': 1,
          'stolen': 1,
          'antenna': 1,
          'ruined': 1,
          'tv': 1,
          'reception': 1,
          'across': 1,
          'vin': 1,
          'diesel': 1,
          'space': 1,
          'eats': 1,
          'metal': 1,
          'saving': 1,
          'nicknamed': 1,
          'electric': 1,
          'shock': 1,
          'creature': 1,
          'pet': 1,
          'sorts': 1,
          'nbecause': 1,
          'damage': 1,
          'suffered': 1,
          'upon': 1,
          'landing': 1,
          'forgotten': 1,
          'original': 1,
          'mission': 1,
          'follows': 1,
          'like': 1,
          'lost': 1,
          'puppy': 1,
          'nrealizing': 1,
          'barn': 1,
          'needs': 1,
          'junkyard': 1,
          'owned': 1,
          'harry': 1,
          'eccentric': 1,
          'artist': 1,
          'assembles': 1,
          'sculptures': 1,
          'scrap': 1,
          'spare': 1,
          'nit': 1,
          'soon': 1,
          'apparent': 1,
          'secret': 1,
          'forever': 1,
          'government': 1,
          'spook': 1,
          'named': 1,
          'kent': 1,
          'christopher': 1,
          'mcdonald': 1,
          'brought': 1,
          'mysterious': 1,
          'sightings': 1,
          'surrounding': 1,
          'area': 1,
          'considers': 1,
          'threat': 1,
          'national': 1,
          'security': 1,
          'suspects': 1,
          'knows': 1,
          'something': 1,
          'residence': 1,
          'hogarths': 1,
          'house': 1,
          'lodger': 1,
          'nmeanwhile': 1,
          'begins': 1,
          'exhibit': 1,
          'ominous': 1,
          'behavior': 1,
          'suggests': 1,
          'built': 1,
          'weapon': 1,
          'exactly': 1,
          'ought': 1,
          'talk': 1,
          'alien': 1,
          'drops': 1,
          'sky': 1,
          'similar': 1,
          'spielberg': 1,
          'classic': 1,
          'e': 1,
          'comparisons': 1,
          'deserved': 1,
          'case': 1,
          'better': 1,
          'spielbergs': 1,
          'sentimental': 1,
          'without': 1,
          'turning': 1,
          'sappy': 1,
          'delivers': 1,
          'important': 1,
          'choose': 1,
          'fate': 1,
          'programming': 1,
          'become': 1,
          'hero': 1,
          'final': 1,
          'touching': 1,
          'appropriate': 1,
          'give': 1,
          'say': 1,
          'disappointed': 1,
          'animation': 1,
          'standards': 1,
          'tarzan': 1,
          'good': 1,
          'forget': 1,
          'youre': 1,
          'computeranimated': 1,
          'human': 1,
          'handdrawn': 1,
          'oldfashioned': 1,
          'faces': 1,
          'done': 1,
          'realistically': 1,
          'personalities': 1,
          'credible': 1,
          'exaggerated': 1,
          'allow': 1,
          'cartoonish': 1,
          'expressions': 1,
          'provide': 1,
          'relief': 1,
          'nfine': 1,
          'turned': 1,
          'surprisingly': 1,
          'convincing': 1,
          'waitress': 1,
          'nharry': 1,
          'nice': 1,
          'characterization': 1,
          'really': 1,
          'enjoyed': 1,
          'john': 1,
          'mahoney': 1,
          'tvs': 1,
          'frasier': 1,
          'army': 1,
          'general': 1,
          'called': 1,
          'nunlike': 1,
          'developed': 1,
          'personality': 1,
          'stereotype': 1,
          'integral': 1,
          'plot': 1,
          'superfluous': 1,
          'comicrelief': 1,
          'sidekick': 1,
          'clich': 1,
          'still': 1,
          'hasnt': 1,
          'ditched': 1,
          'ndean': 1,
          'example': 1,
          'stereotypical': 1,
          'beatnik': 1,
          'profile': 1,
          'seems': 1,
          'suggest': 1,
          'presented': 1,
          'emotions': 1,
          'thoughts': 1,
          'motivations': 1,
          'neven': 1,
          'heavy': 1,
          'villain': 1,
          'bad': 1,
          'simply': 1,
          'fear': 1,
          'lesser': 1,
          'feature': 1,
          'would': 1,
          'paperthin': 1,
          'stereotypes': 1,
          'figure': 1,
          'mind': 1,
          'put': 1,
          'little': 1,
          'pays': 1,
          'isnt': 1,
          'deliver': 1,
          'heavyhanded': 1,
          'funny': 1,
          'scenes': 1,
          'certain': 1,
          'dive': 1,
          'pool': 1,
          'handled': 1,
          'director': 1,
          'sense': 1,
          'timing': 1,
          'worked': 1,
          'years': 1,
          'attempt': 1,
          'outlast': 1,
          'another': 1,
          'trying': 1,
          'stay': 1,
          'awake': 1,
          'nicely': 1,
          'timed': 1,
          'extremely': 1,
          'even': 1,
          'jabs': 1,
          'americas': 1,
          'early': 1,
          'stages': 1,
          'cold': 1,
          'war': 1,
          'satirizing': 1,
          'lame': 1,
          'safety': 1,
          'shown': 1,
          'grade': 1,
          'school': 1,
          'students': 1,
          'tell': 1,
          'duck': 1,
          'cover': 1,
          'event': 1,
          'attack': 1,
          'satirical': 1,
          'edge': 1,
          'edgy': 1,
          'refreshing': 1,
          'ninstead': 1,
          'seeing': 1,
          'bonked': 1,
          'head': 1,
          'welltimed': 1,
          'gags': 1,
          'seem': 1,
          'required': 1,
          'imagination': 1,
          'come': 1,
          'nwhen': 1,
          'right': 1,
          'straightforward': 1,
          'quaint': 1,
          'ultimately': 1,
          'charming': 1,
          'nthough': 1,
          'complex': 1,
          'plotting': 1,
          'noir': 1,
          'next': 1,
          'person': 1,
          'entertainment': 1,
          'akin': 1,
          'bedtime': 1,
          'stories': 1,
          'father': 1,
          'told': 1,
          'hanging': 1,
          'every': 1,
          'word': 1,
          'sets': 1,
          'others': 1,
          'namely': 1,
          'dialogue': 1,
          'spades': 1,
          'npos': 1}),
 Counter({'pignon': 3,
          'job': 3,
          'closet': 2,
          'hes': 2,
          'condom': 2,
          'factory': 2,
          'nbut': 2,
          'belone': 2,
          'man': 2,
          'pignons': 2,
          'gay': 2,
          'sexual': 2,
          'gerard': 2,
          'depardieu': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'miramax': 1,
          'films': 1,
          'nin': 1,
          'hilarious': 1,
          'french': 1,
          'farce': 1,
          'shy': 1,
          'boring': 1,
          'accountant': 1,
          'daniel': 1,
          'auteil': 1,
          'named': 1,
          'francois': 1,
          'discovers': 1,
          'going': 1,
          'fired': 1,
          'nlonely': 1,
          'distraught': 1,
          'contemplates': 1,
          'suicide': 1,
          'runs': 1,
          'michel': 1,
          'aumont': 1,
          'elderly': 1,
          'homosexual': 1,
          'neighbor': 1,
          'suggests': 1,
          'sex': 1,
          'discrimination': 1,
          'lawsuit': 1,
          'intimidate': 1,
          'management': 1,
          'nas': 1,
          'evidence': 1,
          'concocts': 1,
          'provocative': 1,
          'photographs': 1,
          'locked': 1,
          'leatherclad': 1,
          'embrace': 1,
          'another': 1,
          'mails': 1,
          'anonymously': 1,
          'boss': 1,
          'nwhen': 1,
          'racy': 1,
          'snapshots': 1,
          'start': 1,
          'circulating': 1,
          'around': 1,
          'get': 1,
          'back': 1,
          'suddenly': 1,
          'finds': 1,
          'focus': 1,
          'attention': 1,
          'openly': 1,
          'nhis': 1,
          'lusty': 1,
          'supervisor': 1,
          'michele': 1,
          'laroque': 1,
          'intrigued': 1,
          'wonders': 1,
          'perhaps': 1,
          'could': 1,
          'change': 1,
          'preferences': 1,
          'neven': 1,
          'exwife': 1,
          'alexandra': 1,
          'vandernoot': 1,
          'indifferent': 1,
          'teenage': 1,
          'son': 1,
          'stanislas': 1,
          'crevillen': 1,
          'drop': 1,
          'disdain': 1,
          'everyone': 1,
          'enchanted': 1,
          'na': 1,
          'mucho': 1,
          'macho': 1,
          'coworker': 1,
          'felix': 1,
          'selfrighteous': 1,
          'homophobe': 1,
          'stunned': 1,
          'repulsed': 1,
          'forced': 1,
          'pr': 1,
          'director': 1,
          'thierry': 1,
          'lhermite': 1,
          'grovel': 1,
          'court': 1,
          'friendship': 1,
          'risk': 1,
          'losing': 1,
          'nwriterdirector': 1,
          'francis': 1,
          'verber': 1,
          'artfully': 1,
          'milks': 1,
          'farcical': 1,
          'comedy': 1,
          'dissects': 1,
          'hypocrisy': 1,
          'political': 1,
          'correctness': 1,
          'veering': 1,
          'offtrack': 1,
          'occasionally': 1,
          'pedophilia': 1,
          'ndaniel': 1,
          'auteuil': 1,
          'widow': 1,
          'saintpierre': 1,
          'delightful': 1,
          'particularly': 1,
          'blownup': 1,
          'perched': 1,
          'head': 1,
          'riding': 1,
          'float': 1,
          'pride': 1,
          'parade': 1,
          'delivers': 1,
          'one': 1,
          'restrained': 1,
          'effective': 1,
          'performances': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'frankly': 1,
          'adult': 1,
          '8': 1,
          'nits': 1,
          'clever': 1,
          'fact': 1,
          'hollywood': 1,
          'already': 1,
          'planning': 1,
          'remake': 1,
          'english': 1,
          'like': 1,
          'la': 1,
          'cage': 1,
          'aux': 1,
          'folles': 1,
          'npos': 1}),
 Counter({'nits': 7,
          'film': 7,
          'maximus': 5,
          'commodus': 5,
          'reed': 5,
          'gladiator': 5,
          'able': 4,
          'sequence': 4,
          'digital': 4,
          'roman': 3,
          'crowe': 3,
          'phoenix': 3,
          'great': 3,
          'opening': 3,
          'nthe': 3,
          'one': 3,
          'real': 3,
          'effects': 3,
          'emperor': 2,
          'russell': 2,
          'nhowever': 2,
          'nmaximus': 2,
          'executioners': 2,
          'later': 2,
          'proximo': 2,
          'oliver': 2,
          'looking': 2,
          'gladiators': 2,
          'money': 2,
          'new': 2,
          'colisseum': 2,
          'battle': 2,
          'style': 2,
          'used': 2,
          'effective': 2,
          'exactly': 2,
          'tell': 2,
          'blood': 2,
          'whos': 2,
          'thats': 2,
          'nsome': 2,
          'nbut': 2,
          'still': 2,
          'role': 2,
          'computer': 2,
          'never': 2,
          'say': 2,
          'lets': 2,
          'movie': 2,
          'best': 2,
          'scene': 2,
          'movies': 2,
          'character': 2,
          'good': 2,
          'performance': 2,
          'always': 2,
          'fine': 2,
          'probably': 2,
          'like': 2,
          'work': 2,
          'fiction': 2,
          'marcus': 1,
          'aurelius': 1,
          'richard': 1,
          'harris': 1,
          'chooses': 1,
          'trusted': 1,
          'general': 1,
          'successor': 1,
          'emperors': 1,
          'evil': 1,
          'son': 1,
          'joaquin': 1,
          'murders': 1,
          'father': 1,
          'announcement': 1,
          'made': 1,
          'well': 1,
          'family': 1,
          'sentenced': 1,
          'executed': 1,
          'escape': 1,
          'captured': 1,
          'sold': 1,
          'slave': 1,
          'nproximo': 1,
          'earn': 1,
          'former': 1,
          'reluctantly': 1,
          'uses': 1,
          'skills': 1,
          'prove': 1,
          'powerful': 1,
          'nwhen': 1,
          'announces': 1,
          'games': 1,
          'held': 1,
          'takes': 1,
          'sees': 1,
          'chance': 1,
          'exact': 1,
          'revenge': 1,
          'ngladiator': 1,
          'begins': 1,
          'army': 1,
          'germania': 1,
          'actually': 1,
          'maintain': 1,
          'interest': 1,
          'required': 1,
          '40': 1,
          'minutes': 1,
          'exposition': 1,
          'kick': 1,
          'ass': 1,
          'moviemaking': 1,
          'downfall': 1,
          'editing': 1,
          'choppy': 1,
          'slowmotion': 1,
          'unsettling': 1,
          'distracting': 1,
          'similar': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'nowhere': 1,
          'near': 1,
          'actual': 1,
          'battles': 1,
          'thrilling': 1,
          'also': 1,
          'bit': 1,
          'disjointed': 1,
          'nmany': 1,
          'times': 1,
          'unclear': 1,
          'whats': 1,
          'going': 1,
          'nall': 1,
          'audience': 1,
          'spilled': 1,
          'nwere': 1,
          'sure': 1,
          'hand': 1,
          'though': 1,
          'ntheres': 1,
          'instance': 1,
          'earlier': 1,
          'disappointing': 1,
          'comes': 1,
          'escapes': 1,
          'flashes': 1,
          'quick': 1,
          'cuts': 1,
          'free': 1,
          'dont': 1,
          'know': 1,
          'nrussell': 1,
          'become': 1,
          'major': 1,
          'star': 1,
          'gleefully': 1,
          'top': 1,
          'generated': 1,
          'serial': 1,
          'killer': 1,
          '1995s': 1,
          'virtuosity': 1,
          'nfor': 1,
          'whatever': 1,
          'reason': 1,
          'stardom': 1,
          'arrived': 1,
          'nfrom': 1,
          'moviegoers': 1,
          'go': 1,
          'see': 1,
          'nhe': 1,
          'gets': 1,
          'moments': 1,
          'recent': 1,
          'reveals': 1,
          'identity': 1,
          'rousing': 1,
          'chilling': 1,
          'njoaquin': 1,
          'job': 1,
          'making': 1,
          'person': 1,
          'cartoon': 1,
          'could': 1,
          'easily': 1,
          'happened': 1,
          'ncommodus': 1,
          'conniving': 1,
          'sneaky': 1,
          'whiny': 1,
          'get': 1,
          'silly': 1,
          'creepy': 1,
          'noliver': 1,
          'died': 1,
          'filming': 1,
          'huge': 1,
          'loss': 1,
          'acting': 1,
          'world': 1,
          'nive': 1,
          'fascinated': 1,
          'nhes': 1,
          'talented': 1,
          'performers': 1,
          'career': 1,
          'ended': 1,
          'direct': 1,
          'video': 1,
          'junk': 1,
          'twilight': 1,
          'years': 1,
          'ironic': 1,
          'would': 1,
          'gotten': 1,
          'back': 1,
          'gives': 1,
          'fun': 1,
          'sincere': 1,
          'dedicated': 1,
          'surely': 1,
          'missed': 1,
          'nreeds': 1,
          'death': 1,
          'presented': 1,
          'filmmakers': 1,
          'obvious': 1,
          'problem': 1,
          'scenes': 1,
          'completed': 1,
          'nrather': 1,
          'recast': 1,
          'end': 1,
          'reshooting': 1,
          'deal': 1,
          'footage': 1,
          'version': 1,
          'created': 1,
          'reported': 1,
          'cost': 1,
          '2': 1,
          'million': 1,
          'dollars': 1,
          'nironically': 1,
          'ever': 1,
          'earned': 1,
          'single': 1,
          'nanyway': 1,
          'effect': 1,
          'aware': 1,
          'twenty': 1,
          'seconds': 1,
          'arent': 1,
          'wont': 1,
          'even': 1,
          'less': 1,
          'convincing': 1,
          'however': 1,
          'nand': 1,
          'noticable': 1,
          'take': 1,
          'immediately': 1,
          'sad': 1,
          'distractions': 1,
          'nmovies': 1,
          'fall': 1,
          'empire': 1,
          'spartacus': 1,
          'seemed': 1,
          'okay': 1,
          'without': 1,
          'use': 1,
          'nkeep': 1,
          'mind': 1,
          'based': 1,
          'people': 1,
          'events': 1,
          'entirely': 1,
          'entertainment': 1,
          'another': 1,
          'add': 1,
          'list': 1,
          'damn': 1,
          'flicks': 1,
          'released': 1,
          '2000': 1,
          'npos': 1}),
 Counter({'film': 10,
          'great': 7,
          'one': 6,
          'guido': 5,
          'people': 4,
          'best': 4,
          'benigni': 3,
          'society': 3,
          'nbenignis': 3,
          'nit': 3,
          'wife': 3,
          'nits': 3,
          'nhe': 3,
          'nperhaps': 3,
          'moments': 2,
          'na': 2,
          'town': 2,
          'nthey': 2,
          'fascist': 2,
          'president': 2,
          'nheil': 2,
          'nthis': 2,
          'clown': 2,
          'also': 2,
          'jew': 2,
          'chaplins': 2,
          'ni': 2,
          'speech': 2,
          'character': 2,
          'must': 2,
          'subject': 2,
          'concept': 2,
          'scenes': 2,
          'half': 2,
          'although': 2,
          'language': 2,
          'dora': 2,
          'son': 2,
          'seeing': 2,
          'nfor': 2,
          'big': 2,
          'nwith': 2,
          'even': 2,
          'around': 2,
          'alternate': 2,
          'reality': 2,
          'muster': 2,
          'holocaust': 2,
          'awards': 2,
          'nwhat': 1,
          'stunning': 1,
          'touching': 1,
          'heartwrenching': 1,
          'heartwarming': 1,
          'lifeaffirming': 1,
          'miraculous': 1,
          'nfrom': 1,
          'opening': 1,
          '_life': 1,
          'beautiful_': 1,
          'walks': 1,
          'fine': 1,
          'line': 1,
          'serious': 1,
          'tragedy': 1,
          'uplifting': 1,
          'comedy': 1,
          'car': 1,
          'brakes': 1,
          'speeds': 1,
          'roberto': 1,
          'motions': 1,
          'move': 1,
          'way': 1,
          'mistake': 1,
          'traveling': 1,
          'day': 1,
          'nhuh': 1,
          'nshortly': 1,
          'thereafter': 1,
          'drives': 1,
          'stare': 1,
          'blank': 1,
          'faces': 1,
          'standard': 1,
          'somehow': 1,
          'fresh': 1,
          'postmodern': 1,
          'stuff': 1,
          'triumphs': 1,
          'antisemitic': 1,
          'lives': 1,
          'ngranted': 1,
          '_the': 1,
          'dictator_': 1,
          'comes': 1,
          'mindcharlie': 1,
          'almost': 1,
          'masterpiece': 1,
          'think': 1,
          'lib': 1,
          'wrote': 1,
          'directed': 1,
          'trumps': 1,
          'gd': 1,
          'essential': 1,
          'point': 1,
          'jewish': 1,
          'barber': 1,
          'gives': 1,
          'climax': 1,
          'break': 1,
          'completely': 1,
          'nbenigni': 1,
          'given': 1,
          'similar': 1,
          'situation': 1,
          'mistaken': 1,
          'dignitary': 1,
          'explain': 1,
          'classroom': 1,
          'filled': 1,
          'schoolchildren': 1,
          'scientists': 1,
          'concluded': 1,
          'aryans': 1,
          'superior': 1,
          'race': 1,
          'stays': 1,
          'delivers': 1,
          'keeping': 1,
          'matter': 1,
          'intact': 1,
          'showing': 1,
          'absurdity': 1,
          'satirical': 1,
          'modern': 1,
          'cinema': 1,
          'nthere': 1,
          'many': 1,
          'especially': 1,
          'first': 1,
          'bright': 1,
          'loopy': 1,
          'funny': 1,
          'silly': 1,
          'nslapstick': 1,
          'reigns': 1,
          'subtitled': 1,
          'doubt': 1,
          'universal': 1,
          'conveyed': 1,
          'nand': 1,
          'focus': 1,
          'courtship': 1,
          'played': 1,
          'nicoletta': 1,
          'braschi': 1,
          'benignis': 1,
          'real': 1,
          'life': 1,
          'silent': 1,
          'undercurrent': 1,
          'creeps': 1,
          'clearly': 1,
          'racist': 1,
          'evidenced': 1,
          'aforementioned': 1,
          'scene': 1,
          'others': 1,
          'soon': 1,
          'affect': 1,
          'family': 1,
          'nthe': 1,
          'second': 1,
          'takes': 1,
          'place': 1,
          'five': 1,
          'years': 1,
          'later': 1,
          'unnamed': 1,
          'concentration': 1,
          'camp': 1,
          'insistence': 1,
          'fiveyear': 1,
          'old': 1,
          'giosue9': 1,
          'giorgio': 1,
          'cantarini': 1,
          'deported': 1,
          'nguido': 1,
          'horrors': 1,
          'desperate': 1,
          'protect': 1,
          'child': 1,
          'separated': 1,
          'find': 1,
          'ways': 1,
          'communicate': 1,
          'right': 1,
          'controversial': 1,
          'part': 1,
          'convinces': 1,
          'youngster': 1,
          'elaborate': 1,
          'game': 1,
          'rules': 1,
          'include': 1,
          'hiding': 1,
          'quiet': 1,
          'learning': 1,
          'ask': 1,
          'seconds': 1,
          'nwhich': 1,
          'raises': 1,
          'questions': 1,
          'deal': 1,
          'pain': 1,
          'persecution': 1,
          'injustice': 1,
          'worst': 1,
          'level': 1,
          'said': 1,
          'tragedies': 1,
          'bring': 1,
          'finding': 1,
          'strengths': 1,
          'realize': 1,
          'nother': 1,
          'times': 1,
          'deteriorate': 1,
          'become': 1,
          'overwhelmed': 1,
          'little': 1,
          'strength': 1,
          'incentive': 1,
          'swim': 1,
          'nsometimes': 1,
          'giggle': 1,
          'vacant': 1,
          'emotion': 1,
          'behind': 1,
          'yearning': 1,
          'brightness': 1,
          'soothe': 1,
          'wounds': 1,
          'realizes': 1,
          'fool': 1,
          'sees': 1,
          'slurs': 1,
          'vandalism': 1,
          'feeling': 1,
          'weight': 1,
          'verbal': 1,
          'attacks': 1,
          'still': 1,
          'audacity': 1,
          'see': 1,
          'everyone': 1,
          'perhaps': 1,
          'antagonists': 1,
          'laugh': 1,
          'nhis': 1,
          'liberty': 1,
          'stripped': 1,
          'dignity': 1,
          'certainly': 1,
          'dignities': 1,
          'obvious': 1,
          'onset': 1,
          'someone': 1,
          'much': 1,
          'fascism': 1,
          'preposterousness': 1,
          'aryan': 1,
          'nation': 1,
          'grinning': 1,
          'joyful': 1,
          'demeanor': 1,
          'form': 1,
          'denial': 1,
          'could': 1,
          'unlike': 1,
          'different': 1,
          '_brazil_': 1,
          'example': 1,
          'fortitude': 1,
          'weapons': 1,
          'wit': 1,
          'nwhatever': 1,
          'purposes': 1,
          'debate': 1,
          'sure': 1,
          'sign': 1,
          'threedimensional': 1,
          'characters': 1,
          'stranded': 1,
          'amidst': 1,
          'terrifyingly': 1,
          'risky': 1,
          'nsurprisingly': 1,
          'works': 1,
          'important': 1,
          'footnote': 1,
          'intended': 1,
          'accurate': 1,
          'reflection': 1,
          'atrocities': 1,
          'trivialized': 1,
          'far': 1,
          'dont': 1,
          'broadcast': 1,
          'explicitly': 1,
          'shown': 1,
          'horrorless': 1,
          'believe': 1,
          'cautious': 1,
          'preserve': 1,
          'tone': 1,
          'like': 1,
          'theory': 1,
          'guidos': 1,
          'nhowever': 1,
          'criticism': 1,
          'rewriting': 1,
          'history': 1,
          'wasnt': 1,
          'bad': 1,
          'seems': 1,
          'simply': 1,
          'offtarget': 1,
          'audience': 1,
          'cannes': 1,
          'toronto': 1,
          'definite': 1,
          'shooin': 1,
          'foreign': 1,
          'hopefully': 1,
          'picture': 1,
          'well': 1,
          'made': 1,
          'honorary': 1,
          'jerusalem': 1,
          'swept': 1,
          'italian': 1,
          'academy': 1,
          'ncontroversy': 1,
          'notwithstanding': 1,
          'films': 1,
          'year': 1,
          'writing': 1,
          'beat': 1,
          'nmasterful': 1,
          'nmiraculous': 1,
          'mustsee': 1,
          'npos': 1}),
 Counter({'great': 7,
          'expectations': 7,
          'estella': 6,
          'finn': 5,
          'artist': 4,
          '1998': 4,
          'dickens': 4,
          'novel': 3,
          'named': 3,
          'pip': 3,
          'life': 3,
          'convict': 3,
          'benefactor': 3,
          'become': 3,
          'day': 3,
          'becomes': 3,
          'paltrow': 3,
          'romanced': 3,
          'version': 2,
          'charles': 2,
          'nin': 2,
          'classic': 2,
          'learns': 2,
          'escaped': 2,
          'lifetime': 2,
          'infatuation': 2,
          'snobbish': 2,
          'nthe': 2,
          'story': 2,
          'anonymous': 2,
          'london': 2,
          'upper': 2,
          'class': 2,
          'gentleman': 2,
          'npip': 2,
          'leaves': 2,
          'groomed': 2,
          'one': 2,
          'classy': 2,
          'enough': 2,
          'marry': 2,
          'nbut': 2,
          'new': 2,
          'florida': 2,
          'hawke': 2,
          'robert': 2,
          'de': 2,
          'niro': 2,
          'finns': 2,
          'romance': 2,
          'gwyneth': 2,
          'raised': 2,
          'ms': 2,
          'dinsmoor': 2,
          'bancroft': 2,
          'nhe': 2,
          'tease': 2,
          'love': 2,
          'ingredients': 1,
          'starving': 1,
          'lusting': 1,
          'beautiful': 1,
          'woman': 1,
          'childhood': 1,
          'nsynopsis': 1,
          'modernized': 1,
          'original': 1,
          'orphan': 1,
          'boy': 1,
          'friendship': 1,
          'relationship': 1,
          'bitter': 1,
          'old': 1,
          'lady': 1,
          'miss': 1,
          'havisham': 1,
          'hopeless': 1,
          'havishams': 1,
          'adopted': 1,
          'daughter': 1,
          'gist': 1,
          'sends': 1,
          'way': 1,
          'complicating': 1,
          'things': 1,
          'arrogant': 1,
          'b': 1,
          'nuntil': 1,
          'secret': 1,
          'poor': 1,
          'lad': 1,
          'ethan': 1,
          'talent': 1,
          'drawing': 1,
          'early': 1,
          'memory': 1,
          'helping': 1,
          'soon': 1,
          'focus': 1,
          'develops': 1,
          'lifelong': 1,
          'crust': 1,
          'girl': 1,
          'psychological': 1,
          'emotional': 1,
          'issues': 1,
          'due': 1,
          'dysfunctional': 1,
          'environment': 1,
          'nestella': 1,
          'wealth': 1,
          'anne': 1,
          'eccentric': 1,
          'aged': 1,
          'embittered': 1,
          'manhating': 1,
          'single': 1,
          'aunt': 1,
          'whose': 1,
          'groom': 1,
          'left': 1,
          'abandoned': 1,
          'altar': 1,
          'marriage': 1,
          'nthis': 1,
          'causes': 1,
          'fear': 1,
          'daylight': 1,
          'relationships': 1,
          'thinks': 1,
          'case': 1,
          'snobbery': 1,
          'nwhen': 1,
          'young': 1,
          'man': 1,
          'sets': 1,
          'york': 1,
          'connections': 1,
          'publicity': 1,
          'famous': 1,
          'nfinn': 1,
          'successful': 1,
          'might': 1,
          'nwhat': 1,
          'happen': 1,
          'nopinion': 1,
          'youre': 1,
          'looking': 1,
          'happy': 1,
          'ending': 1,
          'look': 1,
          'youve': 1,
          'found': 1,
          'nethan': 1,
          'romantic': 1,
          'lead': 1,
          'n': 1,
          'winona': 1,
          'ryder': 1,
          'reality': 1,
          'bites': 1,
          'julie': 1,
          'delpy': 1,
          'sunrise': 1,
          'uma': 1,
          'thurman': 1,
          'gattaca': 1,
          'nnow': 1,
          'gets': 1,
          'chase': 1,
          'railthin': 1,
          'blonde': 1,
          'nhawke': 1,
          'plays': 1,
          'lovestruck': 1,
          'earnest': 1,
          'unchanged': 1,
          'throughout': 1,
          'film': 1,
          'nmeanwhile': 1,
          'portrays': 1,
          'alternating': 1,
          'infuriating': 1,
          'ice': 1,
          'princess': 1,
          'estellas': 1,
          'whole': 1,
          'purpose': 1,
          'get': 1,
          'men': 1,
          'fall': 1,
          'hurt': 1,
          'rather': 1,
          'intimate': 1,
          'nanne': 1,
          'goes': 1,
          'little': 1,
          'overboard': 1,
          'deranged': 1,
          'pessimistic': 1,
          'carries': 1,
          'part': 1,
          'suitably': 1,
          'difference': 1,
          'adaptation': 1,
          'ripe': 1,
          'deep': 1,
          'timeless': 1,
          'themes': 1,
          'struggle': 1,
          'whereas': 1,
          'artsy': 1,
          'less': 1,
          'complicated': 1,
          '1990s': 1,
          'dealing': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          'cole': 6,
          'sixth': 3,
          'sense': 3,
          'malcolm': 3,
          'us': 3,
          'time': 3,
          'troubled': 2,
          'kind': 2,
          'shot': 2,
          'child': 2,
          'willis': 2,
          'even': 2,
          'malcolms': 2,
          'big': 2,
          'nonly': 2,
          'closet': 2,
          'dead': 2,
          'doctor': 2,
          'first': 2,
          'something': 2,
          'youve': 1,
          'seen': 1,
          'moment': 1,
          'recently': 1,
          'particularly': 1,
          'character': 1,
          'senses': 1,
          'danger': 1,
          'paranormal': 1,
          'room': 1,
          'temperature': 1,
          'inexplicably': 1,
          'plummets': 1,
          'freezing': 1,
          'difference': 1,
          'happens': 1,
          'lili': 1,
          'taylors': 1,
          'nell': 1,
          'haunting': 1,
          'dont': 1,
          'care': 1,
          'hero': 1,
          'young': 1,
          'boy': 1,
          'named': 1,
          'rich': 1,
          'creation': 1,
          'wish': 1,
          'nothing': 1,
          'ghosts': 1,
          'haunt': 1,
          'take': 1,
          'hike': 1,
          'seasons': 1,
          'changed': 1,
          'since': 1,
          'expatient': 1,
          'jaded': 1,
          'psychologist': 1,
          'crowe': 1,
          'comfort': 1,
          'bedroom': 1,
          'ndesperate': 1,
          'get': 1,
          'career': 1,
          'back': 1,
          'track': 1,
          'expense': 1,
          'crumbling': 1,
          'marriage': 1,
          'williams': 1,
          'rushmore': 1,
          'councils': 1,
          'deeply': 1,
          'osment': 1,
          'preteen': 1,
          'displays': 1,
          'quirks': 1,
          'wouldbe': 1,
          'killer': 1,
          'scars': 1,
          'body': 1,
          'antisocial': 1,
          'behaviour': 1,
          'reluctance': 1,
          'reveal': 1,
          'secret': 1,
          'locked': 1,
          'bullies': 1,
          'hospitalized': 1,
          'result': 1,
          'divulge': 1,
          'spinetingling': 1,
          'scene': 1,
          'sees': 1,
          'people': 1,
          'walking': 1,
          'among': 1,
          'nmalcolm': 1,
          'assumes': 1,
          'given': 1,
          'profession': 1,
          'reasonably': 1,
          'schizophrenic': 1,
          'psychic': 1,
          'sincerity': 1,
          'coles': 1,
          'anguished': 1,
          'confession': 1,
          'prevents': 1,
          'taking': 1,
          'drastic': 1,
          'measures': 1,
          'nhe': 1,
          'instead': 1,
          'pursue': 1,
          'supernatural': 1,
          'angle': 1,
          'becoming': 1,
          'surrogate': 1,
          'father': 1,
          'lives': 1,
          'single': 1,
          'mother': 1,
          'lynn': 1,
          'collette': 1,
          'process': 1,
          'common': 1,
          'ghost': 1,
          'poltergeist': 1,
          'n': 1,
          'though': 1,
          'shyamalan': 1,
          'somewhat': 1,
          'unforgiveably': 1,
          'crib': 1,
          'selfrearranging': 1,
          'kitchen': 1,
          'business': 1,
          'latter': 1,
          'nits': 1,
          'far': 1,
          'heartwarming': 1,
          'frightening': 1,
          'film': 1,
          'would': 1,
          'none': 1,
          'worse': 1,
          'wear': 1,
          'without': 1,
          'pulp': 1,
          'shocks': 1,
          'ncole': 1,
          'attracts': 1,
          'reasons': 1,
          'unknown': 1,
          'theyre': 1,
          'harm': 1,
          'reallythey': 1,
          'want': 1,
          'heard': 1,
          'means': 1,
          'scaring': 1,
          'bejesus': 1,
          'innocent': 1,
          'gradeschooler': 1,
          'nperhaps': 1,
          'apparitions': 1,
          'seem': 1,
          'ghastly': 1,
          'really': 1,
          'looking': 1,
          'situation': 1,
          'eyes': 1,
          'eightyearold': 1,
          'nthats': 1,
          'right': 1,
          'years': 1,
          'gives': 1,
          'spotlight': 1,
          'costar': 1,
          'nwe': 1,
          'appreciate': 1,
          'domestic': 1,
          'dilemma': 1,
          'identify': 1,
          'recalling': 1,
          'fears': 1,
          'bogeyman': 1,
          'monster': 1,
          'thing': 1,
          'bed': 1,
          'nboth': 1,
          'actors': 1,
          'deliver': 1,
          'immensely': 1,
          'likable': 1,
          'performances': 1,
          'dynamic': 1,
          'manifest': 1,
          'nwillis': 1,
          'convinces': 1,
          'hes': 1,
          'unable': 1,
          'horndog': 1,
          'shrink': 1,
          'overheated': 1,
          'color': 1,
          'night': 1,
          'nosment': 1,
          'phenomenal': 1,
          'true': 1,
          'professional': 1,
          'resists': 1,
          'mugging': 1,
          'camera': 1,
          'like': 1,
          'stars': 1,
          'much': 1,
          'experience': 1,
          'television': 1,
          'commercials': 1,
          'atmospherically': 1,
          'silence': 1,
          'lambs': 1,
          'cinematographer': 1,
          'tak': 1,
          'fujimoto': 1,
          'actually': 1,
          'dramaits': 1,
          'spooky': 1,
          'effective': 1,
          'ad': 1,
          'campaign': 1,
          'misleading': 1,
          'expecting': 1,
          'different': 1,
          'noticerather': 1,
          'feelthe': 1,
          'movies': 1,
          'running': 1,
          'shy': 1,
          'two': 1,
          'hours': 1,
          'story': 1,
          'unfurls': 1,
          'slowly': 1,
          'engrossingly': 1,
          'unexpected': 1,
          'finish': 1,
          'definitely': 1,
          'worth': 1,
          'wait': 1,
          'nim': 1,
          'sure': 1,
          'said': 1,
          'twist': 1,
          'ending': 1,
          'bulletproof': 1,
          'admired': 1,
          'audacity': 1,
          'npos': 1}),
 Counter({'like': 10,
          'movies': 6,
          'film': 6,
          'done': 5,
          'way': 5,
          'nthe': 5,
          'count': 4,
          'horror': 4,
          'nosferatu': 4,
          'orlock': 4,
          'really': 3,
          'intended': 3,
          'good': 3,
          'mean': 3,
          'nand': 3,
          'even': 3,
          'new': 3,
          'home': 3,
          'hutter': 3,
          'one': 3,
          'nbut': 3,
          'version': 3,
          'dracula': 2,
          'frightening': 2,
          'old': 2,
          'ni': 2,
          'get': 2,
          'named': 2,
          'idea': 2,
          'vampire': 2,
          'well': 2,
          'films': 2,
          'times': 2,
          'nthis': 2,
          'much': 2,
          'watching': 2,
          'original': 2,
          'back': 2,
          'art': 2,
          'seen': 2,
          'intellectual': 2,
          'ground': 2,
          'little': 2,
          'thinking': 2,
          'modern': 2,
          'slasher': 2,
          'gore': 2,
          'made': 2,
          'attention': 2,
          'see': 2,
          'movie': 2,
          'blood': 2,
          'nhe': 2,
          'fiancee': 2,
          'next': 2,
          'hutters': 2,
          'time': 2,
          'copy': 2,
          'arrow': 2,
          'color': 2,
          'nif': 2,
          'turn': 2,
          'hollywood': 1,
          'whole': 1,
          'thing': 1,
          'death': 1,
          'pun': 1,
          'honest': 1,
          'nits': 1,
          'shame': 1,
          'probably': 1,
          'bmovie': 1,
          'monsters': 1,
          'come': 1,
          'nare': 1,
          'people': 1,
          'going': 1,
          'scared': 1,
          'big': 1,
          'green': 1,
          'guy': 1,
          'frankenstein': 1,
          'moves': 1,
          'speed': 1,
          'five': 1,
          'miles': 1,
          'per': 1,
          'hour': 1,
          'nhell': 1,
          'hell': 1,
          'also': 1,
          'carried': 1,
          'kind': 1,
          'sensual': 1,
          'feeling': 1,
          'commonly': 1,
          'associated': 1,
          'many': 1,
          'possible': 1,
          'exception': 1,
          'dusk': 1,
          'till': 1,
          'dawn': 1,
          'lately': 1,
          'either': 1,
          'precisely': 1,
          'fun': 1,
          'got': 1,
          'go': 1,
          'making': 1,
          'considered': 1,
          'form': 1,
          'make': 1,
          'cash': 1,
          'nowadays': 1,
          'exactly': 1,
          'nive': 1,
          'fan': 1,
          'since': 1,
          'eight': 1,
          'years': 1,
          'day': 1,
          'cover': 1,
          'covers': 1,
          'nlet': 1,
          'backtrack': 1,
          'minute': 1,
          'nwhen': 1,
          'say': 1,
          'dont': 1,
          'tackles': 1,
          'philosophical': 1,
          'questions': 1,
          'anything': 1,
          'order': 1,
          'work': 1,
          'bit': 1,
          'involved': 1,
          'nwith': 1,
          'friday': 1,
          '13th': 1,
          'whatnot': 1,
          'simply': 1,
          'sit': 1,
          'chair': 1,
          'frightened': 1,
          'shown': 1,
          'nthose': 1,
          'could': 1,
          'fifth': 1,
          'grader': 1,
          'makeup': 1,
          'kit': 1,
          'require': 1,
          'viewer': 1,
          'actually': 1,
          'pay': 1,
          'ponder': 1,
          'happening': 1,
          'screen': 1,
          'nyou': 1,
          'barely': 1,
          'violence': 1,
          'less': 1,
          'mans': 1,
          'flick': 1,
          'title': 1,
          'max': 1,
          'shreck': 1,
          'strange': 1,
          'hermitlike': 1,
          'opens': 1,
          'looking': 1,
          'buy': 1,
          'employs': 1,
          'help': 1,
          'gustav': 1,
          'von': 1,
          'wangenhein': 1,
          'real': 1,
          'estate': 1,
          'salesman': 1,
          'something': 1,
          'effect': 1,
          'nice': 1,
          'ellen': 1,
          'greta': 1,
          'schroeder': 1,
          'nupon': 1,
          'orders': 1,
          'boss': 1,
          'treks': 1,
          'transylvanian': 1,
          'mountains': 1,
          'visit': 1,
          'orlocks': 1,
          'castle': 1,
          'speak': 1,
          'happens': 1,
          'right': 1,
          'door': 1,
          'morning': 1,
          'wakes': 1,
          'find': 1,
          'teeth': 1,
          'marks': 1,
          'neck': 1,
          'nreally': 1,
          'sign': 1,
          'discovers': 1,
          'reading': 1,
          'undead': 1,
          'feeds': 1,
          'living': 1,
          'humans': 1,
          'pieces': 1,
          'together': 1,
          'late': 1,
          'already': 1,
          'embarked': 1,
          'hometown': 1,
          'via': 1,
          'boat': 1,
          'nwill': 1,
          'reach': 1,
          'destination': 1,
          'save': 1,
          'deadly': 1,
          'clutches': 1,
          'character': 1,
          'course': 1,
          'reason': 1,
          'name': 1,
          'changed': 1,
          'unauthorized': 1,
          'account': 1,
          'bram': 1,
          'strockers': 1,
          'novel': 1,
          'njust': 1,
          'thought': 1,
          'interesting': 1,
          'side': 1,
          'note': 1,
          'nprobably': 1,
          'fine': 1,
          'purchasing': 1,
          'entertainments': 1,
          'digitally': 1,
          'restored': 1,
          'cut': 1,
          'available': 1,
          'stores': 1,
          'nhowever': 1,
          'quite': 1,
          'different': 1,
          'maunaus': 1,
          'masterpiece': 1,
          'sporting': 1,
          'soundtrack': 1,
          'band': 1,
          'type': 1,
          'onegative': 1,
          'tinting': 1,
          '1984': 1,
          'langs': 1,
          'metropolis': 1,
          'nnow': 1,
          'appreciate': 1,
          'entertainment': 1,
          'trying': 1,
          'bringing': 1,
          'classic': 1,
          'wider': 1,
          'audience': 1,
          'might': 1,
          'otherwise': 1,
          'skipped': 1,
          'alas': 1,
          'originally': 1,
          'thats': 1,
          'bag': 1,
          'may': 1,
          'newer': 1,
          'better': 1,
          'neither': 1,
          'suggest': 1,
          'investing': 1,
          'money': 1,
          'pop': 1,
          'vcr': 1,
          'enjoy': 1,
          'youre': 1,
          'ill': 1,
          'future': 1,
          'viewings': 1,
          'television': 1,
          'hit': 1,
          'mute': 1,
          'bach': 1,
          'mozart': 1,
          'whatever': 1,
          'dim': 1,
          'lights': 1,
          'prepare': 1,
          'view': 1,
          'truly': 1,
          'greatest': 1,
          'ever': 1,
          'npos': 1}),
 Counter({'one': 6,
          'syndrome': 5,
          'film': 5,
          'stendhal': 5,
          'argento': 4,
          'films': 4,
          'argentos': 4,
          'nthe': 4,
          'art': 3,
          'morricone': 3,
          'several': 3,
          'alfredo': 3,
          'nbut': 3,
          'nits': 3,
          'painting': 2,
          'may': 2,
          'afterwards': 2,
          'dario': 2,
          'soundtrack': 2,
          'ennio': 2,
          'quite': 2,
          'nit': 2,
          'young': 2,
          'director': 2,
          'anna': 2,
          'kretschmann': 2,
          'gallery': 2,
          'often': 2,
          'themes': 2,
          'perhaps': 2,
          'effective': 2,
          'last': 2,
          'italy': 2,
          'efforts': 2,
          'since': 2,
          'career': 2,
          'long': 2,
          'stendhals': 1,
          'condition': 1,
          'presence': 1,
          'person': 1,
          'becomes': 1,
          'engulfed': 1,
          'hallucinates': 1,
          'suffer': 1,
          'symptoms': 1,
          'depression': 1,
          'suicidal': 1,
          'behaviour': 1,
          'personality': 1,
          'disorder': 1,
          'ngrim': 1,
          'stuff': 1,
          'sure': 1,
          'subject': 1,
          'remarkable': 1,
          'italys': 1,
          'master': 1,
          'horror': 1,
          'thriller': 1,
          'nboasting': 1,
          'unforgettable': 1,
          'grandfather': 1,
          'music': 1,
          'magnificent': 1,
          'return': 1,
          'form': 1,
          'follows': 1,
          'disappointing': 1,
          'american': 1,
          'debut': 1,
          'trauma': 1,
          '1992': 1,
          'patchy': 1,
          'opera': 1,
          '1987': 1,
          'mediocre': 1,
          'produced': 1,
          'italian': 1,
          'michele': 1,
          'soavi': 1,
          'late': 1,
          '1980s': 1,
          'nbased': 1,
          'novel': 1,
          'graziella': 1,
          'magherini': 1,
          'stars': 1,
          'daughter': 1,
          'asia': 1,
          'roman': 1,
          'police': 1,
          'inspector': 1,
          'manni': 1,
          'pursuit': 1,
          'brutal': 1,
          'rapistkiller': 1,
          'nvisiting': 1,
          'florence': 1,
          'follow': 1,
          'leads': 1,
          'lured': 1,
          'killer': 1,
          'thomas': 1,
          'favourite': 1,
          'haunt': 1,
          'hopes': 1,
          'identify': 1,
          'exactly': 1,
          'tail': 1,
          'nat': 1,
          'overwhelmed': 1,
          'faints': 1,
          'nposing': 1,
          'bystander': 1,
          'briefly': 1,
          'comes': 1,
          'aid': 1,
          'identified': 1,
          'pursuer': 1,
          'strange': 1,
          'game': 1,
          'cat': 1,
          'mouse': 1,
          'begins': 1,
          'na': 1,
          'gripping': 1,
          'story': 1,
          'evolves': 1,
          'coherent': 1,
          'surprise': 1,
          'familiar': 1,
          'lumpy': 1,
          'narratives': 1,
          'simple': 1,
          'cophuntingkiller': 1,
          'scenario': 1,
          'disturbing': 1,
          'compelling': 1,
          'study': 1,
          'central': 1,
          'characters': 1,
          'psychological': 1,
          'disintegration': 1,
          'script': 1,
          'explores': 1,
          'psychosexual': 1,
          'intelligence': 1,
          'candour': 1,
          'much': 1,
          'sensitive': 1,
          'viewers': 1,
          'dark': 1,
          'emerges': 1,
          'artful': 1,
          'european': 1,
          'thrillers': 1,
          'ten': 1,
          'years': 1,
          'nargento': 1,
          'working': 1,
          'native': 1,
          'fully': 1,
          'exploits': 1,
          'opportunities': 1,
          'use': 1,
          'architecture': 1,
          'symbolic': 1,
          'statements': 1,
          'departure': 1,
          'points': 1,
          'brilliant': 1,
          'hallucinogenic': 1,
          'sequences': 1,
          'neffects': 1,
          'whiz': 1,
          'sergio': 1,
          'stivaletti': 1,
          'serves': 1,
          'well': 1,
          'cinematography': 1,
          'giuseppe': 1,
          'rotunno': 1,
          'consistently': 1,
          'excellent': 1,
          'opening': 1,
          '20': 1,
          'minutes': 1,
          'segues': 1,
          'hallucination': 1,
          'flashback': 1,
          'realtime': 1,
          'tremendous': 1,
          'style': 1,
          'nproof': 1,
          'inspired': 1,
          'remains': 1,
          'worlds': 1,
          'exhilarating': 1,
          'filmmakers': 1,
          'cast': 1,
          'generally': 1,
          'good': 1,
          'though': 1,
          'marred': 1,
          'times': 1,
          'dubbing': 1,
          'english': 1,
          'renders': 1,
          'speech': 1,
          'emotionless': 1,
          'nasia': 1,
          'performance': 1,
          'turns': 1,
          'risky': 1,
          'awkward': 1,
          'fascinating': 1,
          'difficult': 1,
          'role': 1,
          'given': 1,
          'relative': 1,
          'inexperience': 1,
          'screen': 1,
          'deserves': 1,
          'applause': 1,
          'nthomas': 1,
          'chillingly': 1,
          'marco': 1,
          'leonardi': 1,
          'cinema': 1,
          'paradiso': 1,
          'possibly': 1,
          'gorgeous': 1,
          'looking': 1,
          'man': 1,
          'okay': 1,
          'annas': 1,
          'work': 1,
          'colleague': 1,
          'increasingly': 1,
          'confused': 1,
          'love': 1,
          'interest': 1,
          'syndromes': 1,
          'single': 1,
          'striking': 1,
          'element': 1,
          'morricones': 1,
          'nactive': 1,
          '1960s': 1,
          'scored': 1,
          '100': 1,
          'must': 1,
          'rate': 1,
          'finest': 1,
          'mostly': 1,
          'variation': 1,
          'theme': 1,
          'slow': 1,
          'circular': 1,
          'melody': 1,
          'strings': 1,
          'wordless': 1,
          'female': 1,
          'vocal': 1,
          'possessed': 1,
          'extraordinary': 1,
          'haunting': 1,
          'beauty': 1,
          'lingers': 1,
          'three': 1,
          'decades': 1,
          'worked': 1,
          'together': 1,
          'nthis': 1,
          'welcome': 1,
          'reunion': 1,
          'nif': 1,
          'fault': 1,
          'half': 1,
          'hour': 1,
          'drags': 1,
          'little': 1,
          'doesnt': 1,
          'reach': 1,
          'completely': 1,
          'satisfying': 1,
          'climax': 1,
          'closing': 1,
          'scenes': 1,
          'already': 1,
          'offered': 1,
          'us': 1,
          'enough': 1,
          'qualify': 1,
          'best': 1,
          'n': 1,
          'note': 1,
          'see': 1,
          'uncut': 1,
          'print': 1,
          'japanese': 1,
          'laserdisc': 1,
          'ndubs': 1,
          'version': 1,
          'available': 1,
          'various': 1,
          'video': 1,
          'dealers': 1,
          'world': 1,
          'wide': 1,
          'web': 1,
          'npos': 1}),
 Counter({'brady': 6,
          'butcher': 5,
          'boy': 5,
          'francie': 5,
          'jordans': 4,
          'nits': 4,
          'reas': 3,
          'irish': 3,
          'like': 3,
          'voice': 3,
          'film': 3,
          'da': 3,
          'town': 3,
          'worth': 3,
          'owens': 3,
          'nugent': 3,
          'many': 3,
          'us': 3,
          'eyes': 2,
          'na': 2,
          'schoolboy': 2,
          'nimagine': 2,
          'one': 2,
          'nrea': 2,
          'performance': 2,
          'much': 2,
          'every': 2,
          'mrs': 2,
          'n': 2,
          'pigs': 2,
          'make': 2,
          'close': 1,
          'moment': 1,
          'imagine': 1,
          'sound': 1,
          'stephen': 1,
          'gaelic': 1,
          'brogue': 1,
          'silky': 1,
          'smooth': 1,
          'pint': 1,
          'guinness': 1,
          'lackadaisical': 1,
          'naughty': 1,
          'little': 1,
          'flirts': 1,
          'gambols': 1,
          'nan': 1,
          'acerbic': 1,
          'singsong': 1,
          'metered': 1,
          'evokes': 1,
          'startling': 1,
          'imagery': 1,
          'language': 1,
          'anthony': 1,
          'burgess': 1,
          'clockwork': 1,
          'orange': 1,
          'deliciously': 1,
          'conjures': 1,
          'scenes': 1,
          'porcine': 1,
          'puerile': 1,
          'delicatessen': 1,
          'tin': 1,
          'drum': 1,
          'youll': 1,
          'get': 1,
          'good': 1,
          'sense': 1,
          'expect': 1,
          'nneil': 1,
          'latest': 1,
          'stars': 1,
          'rea': 1,
          'ways': 1,
          'accomplished': 1,
          'actor': 1,
          'notable': 1,
          'star': 1,
          'turn': 1,
          'crying': 1,
          'game': 1,
          'contributes': 1,
          'restrained': 1,
          'managed': 1,
          'small': 1,
          'drunk': 1,
          'unnamed': 1,
          'community': 1,
          '1960s': 1,
          'nbut': 1,
          'walltowall': 1,
          'narration': 1,
          'title': 1,
          'bradys': 1,
          'son': 1,
          'francis': 1,
          'makes': 1,
          'watching': 1,
          'listening': 1,
          'nand': 1,
          'thats': 1,
          'half': 1,
          'fun': 1,
          'nplaying': 1,
          'young': 1,
          'newcomer': 1,
          'eamonn': 1,
          'without': 1,
          'doubt': 1,
          'revelation': 1,
          'nfor': 1,
          'voiceover': 1,
          'permeates': 1,
          'almost': 1,
          'scene': 1,
          'commands': 1,
          'virtually': 1,
          'frame': 1,
          'impossible': 1,
          'take': 1,
          'nwith': 1,
          'crop': 1,
          'carrotcolored': 1,
          'hair': 1,
          'ruddy': 1,
          'complexion': 1,
          'overall': 1,
          'grubby': 1,
          'appearance': 1,
          'unlikely': 1,
          'hero': 1,
          'refusing': 1,
          'done': 1,
          'alcoholic': 1,
          'trumpetplaying': 1,
          'father': 1,
          'depressive': 1,
          'suicidal': 1,
          'mother': 1,
          'neighboring': 1,
          'bespectacled': 1,
          'monster': 1,
          'known': 1,
          'fiona': 1,
          'shaw': 1,
          'nin': 1,
          'fact': 1,
          'everything': 1,
          'ok': 1,
          'came': 1,
          'nnow': 1,
          'poses': 1,
          'threat': 1,
          'safety': 1,
          'security': 1,
          'bully': 1,
          'best': 1,
          'pal': 1,
          'joe': 1,
          'alan': 1,
          'boyle': 1,
          'looming': 1,
          'commie': 1,
          'menace': 1,
          'set': 1,
          'time': 1,
          'fear': 1,
          'nuclear': 1,
          'obliteration': 1,
          'first': 1,
          'foremost': 1,
          'minds': 1,
          'screams': 1,
          'menagerie': 1,
          'youre': 1,
          'start': 1,
          'related': 1,
          'image': 1,
          'nafter': 1,
          'shipped': 1,
          'garage': 1,
          'psychiatric': 1,
          'observation': 1,
          'downs': 1,
          'bottle': 1,
          'whiskey': 1,
          'finally': 1,
          'loses': 1,
          'grip': 1,
          'fantasy': 1,
          'world': 1,
          'cowboys': 1,
          'indians': 1,
          'lone': 1,
          'ranger': 1,
          'comicbook': 1,
          'characters': 1,
          'nsquealing': 1,
          'stuck': 1,
          'pig': 1,
          'likes': 1,
          'nugents': 1,
          'living': 1,
          'room': 1,
          'floor': 1,
          'whisked': 1,
          'away': 1,
          'catholic': 1,
          'remand': 1,
          'home': 1,
          'boney': 1,
          'arsed': 1,
          'bogmen': 1,
          'ever': 1,
          'fertile': 1,
          'imaginationand': 1,
          'clever': 1,
          'chicaneryrunneth': 1,
          'ndirector': 1,
          'vivid': 1,
          'treatment': 1,
          'pat': 1,
          'mccabes': 1,
          'nightmare': 1,
          'novel': 1,
          'produces': 1,
          'sometimes': 1,
          'disturbing': 1,
          'dark': 1,
          'comedy': 1,
          'littered': 1,
          'surreal': 1,
          'touches': 1,
          'sin': 1,
          'ad': 1,
          'oconnor': 1,
          'playing': 1,
          'virgin': 1,
          'mary': 1,
          'outlandish': 1,
          'trailers': 1,
          'instead': 1,
          'remarkable': 1,
          'focuses': 1,
          'effects': 1,
          'external': 1,
          'influences': 1,
          'friendship': 1,
          'two': 1,
          'boys': 1,
          'chums': 1,
          'real': 1,
          'life': 1,
          'allowing': 1,
          'empathize': 1,
          'plight': 1,
          'presence': 1,
          'extraordinary': 1,
          'behavior': 1,
          'bleak': 1,
          'black': 1,
          'fundamentally': 1,
          'funny': 1,
          'talks': 1,
          'beautifully': 1,
          'drags': 1,
          'though': 1,
          'admirably': 1,
          'tandem': 1,
          'sure': 1,
          'hand': 1,
          'contributions': 1,
          'savoring': 1,
          'npos': 1}),
 Counter({'film': 13,
          'zero': 7,
          'funny': 7,
          'private': 6,
          'one': 6,
          'ni': 6,
          'kind': 6,
          'character': 5,
          'nzero': 5,
          'hes': 5,
          'great': 5,
          'effect': 4,
          'investigator': 4,
          'like': 4,
          'makes': 4,
          'stark': 4,
          'ever': 3,
          'job': 3,
          'actually': 3,
          'many': 3,
          'nhis': 3,
          'gloria': 3,
          'first': 3,
          'find': 3,
          'kasdan': 3,
          'seen': 3,
          'also': 3,
          'humor': 3,
          'gets': 2,
          'dont': 2,
          'last': 2,
          'best': 2,
          'every': 2,
          'fact': 2,
          'certainly': 2,
          'talents': 2,
          'eye': 2,
          'even': 2,
          'steve': 2,
          'stiller': 2,
          'normal': 2,
          'guy': 2,
          'side': 2,
          'zeros': 2,
          'greatness': 2,
          'scene': 2,
          'turns': 2,
          'something': 2,
          'nothing': 2,
          'young': 2,
          'kim': 2,
          'dickens': 2,
          'without': 2,
          'feelings': 2,
          'particular': 2,
          'genre': 2,
          'comes': 2,
          'away': 2,
          'kasdans': 2,
          'writerdirector': 2,
          'original': 2,
          'involving': 2,
          'characters': 2,
          'really': 2,
          'sound': 2,
          'n': 2,
          'ill': 2,
          'point': 2,
          'talent': 2,
          'see': 2,
          'cant': 2,
          'theater': 2,
          'title': 1,
          'main': 1,
          'daryl': 1,
          'bill': 1,
          'pullman': 1,
          'although': 1,
          'understand': 1,
          'truly': 1,
          'means': 1,
          'line': 1,
          'dialogue': 1,
          'perhaps': 1,
          'lived': 1,
          'least': 1,
          'hed': 1,
          'think': 1,
          'nhowever': 1,
          'socially': 1,
          'inept': 1,
          'eccentric': 1,
          'possible': 1,
          'way': 1,
          'bewildering': 1,
          'already': 1,
          'nzeros': 1,
          'accomplice': 1,
          'arlo': 1,
          'ben': 1,
          'business': 1,
          'speaks': 1,
          'clients': 1,
          'explains': 1,
          'nthe': 1,
          'opening': 1,
          'explaining': 1,
          'virtues': 1,
          'soontobe': 1,
          'client': 1,
          'gregory': 1,
          'ryan': 1,
          'oneal': 1,
          'nit': 1,
          'lost': 1,
          'key': 1,
          'safe': 1,
          'deposit': 1,
          'box': 1,
          'blackmailed': 1,
          'apparently': 1,
          'knows': 1,
          'takes': 1,
          'case': 1,
          'plot': 1,
          'thickens': 1,
          'path': 1,
          'leads': 1,
          'pretty': 1,
          'paramedic': 1,
          'named': 1,
          'sullivan': 1,
          'ndespite': 1,
          'luminous': 1,
          'seeminglyharmless': 1,
          'presence': 1,
          'blackmailing': 1,
          'nthrough': 1,
          'investigations': 1,
          'learns': 1,
          'developing': 1,
          'reclusive': 1,
          'behavior': 1,
          'new': 1,
          'confusing': 1,
          'affinity': 1,
          'towards': 1,
          'mystery': 1,
          'idly': 1,
          'enjoy': 1,
          'movies': 1,
          'investigators': 1,
          'chinatown': 1,
          'long': 1,
          'blows': 1,
          'reached': 1,
          'chinatowns': 1,
          'jake': 1,
          'effort': 1,
          'succeeds': 1,
          'attempts': 1,
          'completely': 1,
          'motion': 1,
          'picture': 1,
          'nwith': 1,
          'cliches': 1,
          'available': 1,
          'amazing': 1,
          'avoided': 1,
          'nbut': 1,
          'didnt': 1,
          'successfully': 1,
          'avoid': 1,
          'flaws': 1,
          'created': 1,
          'interested': 1,
          'fascinated': 1,
          'shot': 1,
          'final': 1,
          'moment': 1,
          'ntake': 1,
          'starters': 1,
          'cast': 1,
          'npullman': 1,
          'terrific': 1,
          'showing': 1,
          'comic': 1,
          'flair': 1,
          'havent': 1,
          'since': 1,
          'spaceballs': 1,
          'seems': 1,
          'ease': 1,
          'switching': 1,
          'personalities': 1,
          'frequently': 1,
          'almost': 1,
          'exaggeratedly': 1,
          'twisted': 1,
          'emotionally': 1,
          'unstable': 1,
          'man': 1,
          'outside': 1,
          'profession': 1,
          'difficult': 1,
          'believe': 1,
          'npullmans': 1,
          'performance': 1,
          'much': 1,
          'layered': 1,
          'might': 1,
          'seem': 1,
          'glance': 1,
          'occasional': 1,
          'voiceover': 1,
          'going': 1,
          'motions': 1,
          'insightful': 1,
          'often': 1,
          'hilarious': 1,
          'nben': 1,
          'individual': 1,
          'comedian': 1,
          'lines': 1,
          'shoot': 1,
          'says': 1,
          'gun': 1,
          'everything': 1,
          'welldrawn': 1,
          'interesting': 1,
          'subplot': 1,
          'girlfriend': 1,
          'angela': 1,
          'featherstone': 1,
          'happy': 1,
          'extensive': 1,
          'amounts': 1,
          'time': 1,
          'must': 1,
          'spend': 1,
          'due': 1,
          'unpredictability': 1,
          'noneal': 1,
          'gives': 1,
          'bit': 1,
          'depth': 1,
          'underused': 1,
          'mercury': 1,
          'rising': 1,
          'chance': 1,
          'show': 1,
          'us': 1,
          'giving': 1,
          'realism': 1,
          'needs': 1,
          'immensely': 1,
          'witty': 1,
          'nkasdans': 1,
          'soft': 1,
          'spoken': 1,
          'mostly': 1,
          'dialoguedriven': 1,
          'though': 1,
          'visual': 1,
          'jokes': 1,
          'nits': 1,
          'thats': 1,
          'youve': 1,
          'five': 1,
          'six': 1,
          'times': 1,
          'ntheres': 1,
          'talks': 1,
          'detached': 1,
          'detective': 1,
          'nwhat': 1,
          'narration': 1,
          'various': 1,
          'shots': 1,
          'sitting': 1,
          'bed': 1,
          'standing': 1,
          'motionlessly': 1,
          'hair': 1,
          'destroyed': 1,
          'utterly': 1,
          'blank': 1,
          'look': 1,
          'painted': 1,
          'unshaven': 1,
          'face': 1,
          'eyes': 1,
          'pointing': 1,
          'camera': 1,
          'obviously': 1,
          'convey': 1,
          'making': 1,
          'scenes': 1,
          'frequent': 1,
          'provide': 1,
          'solid': 1,
          'characterization': 1,
          'nas': 1,
          'note': 1,
          'consider': 1,
          'average': 1,
          'viewer': 1,
          'comedy': 1,
          'elitist': 1,
          'things': 1,
          'vice': 1,
          'versa': 1,
          'nthere': 1,
          'clump': 1,
          'people': 1,
          'near': 1,
          'laughing': 1,
          'uproariously': 1,
          'rest': 1,
          'relatively': 1,
          'silent': 1,
          'feeling': 1,
          'wont': 1,
          'appeal': 1,
          'everyone': 1,
          'theres': 1,
          'enough': 1,
          'story': 1,
          'development': 1,
          'keep': 1,
          'anyones': 1,
          'interest': 1,
          'njake': 1,
          'son': 1,
          'lawrence': 1,
          '22': 1,
          'years': 1,
          'old': 1,
          'found': 1,
          'seeing': 1,
          'remember': 1,
          'impressed': 1,
          'maker': 1,
          'direction': 1,
          'stylish': 1,
          'pretentious': 1,
          'writing': 1,
          'mature': 1,
          'full': 1,
          'developed': 1,
          'buy': 1,
          'collection': 1,
          'smart': 1,
          'films': 1,
          'rare': 1,
          'heart': 1,
          'soul': 1,
          'nat': 1,
          'end': 1,
          'involved': 1,
          'satisfied': 1,
          'outcome': 1,
          'nand': 1,
          'undeniable': 1,
          'age': 1,
          'hope': 1,
          'lot': 1,
          'future': 1,
          'npos': 1}),
 Counter({'davis': 6,
          'action': 5,
          'kiss': 4,
          'long': 3,
          'first': 3,
          'goodnight': 2,
          'streep': 2,
          'failed': 2,
          'lee': 2,
          'could': 2,
          'well': 2,
          'female': 2,
          'preposterous': 2,
          'fun': 2,
          'help': 2,
          'say': 2,
          'comes': 2,
          'script': 2,
          'work': 2,
          'funny': 2,
          'especially': 2,
          'things': 2,
          'taking': 2,
          'seriously': 2,
          'nbut': 2,
          'njackson': 2,
          'good': 2,
          'team': 2,
          'ever': 2,
          'one': 2,
          'much': 2,
          'doesnt': 2,
          'film': 2,
          'r': 1,
          'meryl': 1,
          'tried': 1,
          'neven': 1,
          'pamela': 1,
          'anderson': 1,
          'made': 1,
          'attempt': 1,
          'fell': 1,
          'flat': 1,
          'wellbared': 1,
          'assets': 1,
          'nhowever': 1,
          'geena': 1,
          'become': 1,
          'bankable': 1,
          'american': 1,
          'star': 1,
          'incredibly': 1,
          'thriller': 1,
          'directed': 1,
          'husband': 1,
          'renny': 1,
          'harlin': 1,
          'ndavis': 1,
          'plays': 1,
          'samantha': 1,
          'caine': 1,
          'mousy': 1,
          'suburban': 1,
          'school': 1,
          'teacher': 1,
          'mother': 1,
          'whose': 1,
          'memories': 1,
          'go': 1,
          'back': 1,
          'eight': 1,
          'years': 1,
          'nwith': 1,
          'ethically': 1,
          'questionable': 1,
          'private': 1,
          'detective': 1,
          'mitch': 1,
          'hennessey': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'slowly': 1,
          'remembersand': 1,
          'reclaimsher': 1,
          'past': 1,
          'charly': 1,
          'baltimore': 1,
          'toughasnails': 1,
          'cia': 1,
          'operative': 1,
          'nneedless': 1,
          'reappearance': 1,
          'samanthacharly': 1,
          'appearance': 1,
          'assortment': 1,
          'nogoodniks': 1,
          'erase': 1,
          'memory': 1,
          'nshane': 1,
          'black': 1,
          'netted': 1,
          'cool': 1,
          '4': 1,
          'mil': 1,
          'im': 1,
          'sure': 1,
          'prose': 1,
          'truly': 1,
          'deserving': 1,
          'hefty': 1,
          'price': 1,
          'tag': 1,
          'worth': 1,
          'delivers': 1,
          'goods': 1,
          'nlike': 1,
          'blacks': 1,
          'previous': 1,
          'lethal': 1,
          'weapon': 1,
          'last': 1,
          'boy': 1,
          'scout': 1,
          'juggles': 1,
          'impressive': 1,
          'scenes': 1,
          'quirky': 1,
          'dialogue': 1,
          'nthe': 1,
          'humor': 1,
          'works': 1,
          'case': 1,
          'story': 1,
          'laughs': 1,
          'keep': 1,
          'theres': 1,
          'argument': 1,
          'unbelievable': 1,
          'sequences': 1,
          'original': 1,
          'entertaining': 1,
          'hell': 1,
          'resist': 1,
          'sight': 1,
          'tossing': 1,
          'daughter': 1,
          'hole': 1,
          'house': 1,
          'nearby': 1,
          'treehouse': 1,
          'chasing': 1,
          'car': 1,
          'nwhile': 1,
          'ice': 1,
          'skating': 1,
          'make': 1,
          'fact': 1,
          'spirited': 1,
          'line': 1,
          'deliveries': 1,
          'appears': 1,
          'reminiscent': 1,
          'jules': 1,
          'pulp': 1,
          'fiction': 1,
          'nas': 1,
          'benefit': 1,
          'project': 1,
          'shows': 1,
          'promise': 1,
          'heroine': 1,
          'nwhat': 1,
          'makes': 1,
          'effective': 1,
          'succeed': 1,
          'take': 1,
          'nshe': 1,
          'obviously': 1,
          'joke': 1,
          'slyly': 1,
          'jabs': 1,
          'situation': 1,
          'nthis': 1,
          'need': 1,
          'worksometimes': 1,
          'lays': 1,
          'toughness': 1,
          'bit': 1,
          'thick': 1,
          'caricature': 1,
          'public': 1,
          'embrace': 1,
          'turn': 1,
          'notion': 1,
          'kickass': 1,
          'found': 1,
          'special': 1,
          'niche': 1,
          'nit': 1,
          'seems': 1,
          'harlins': 1,
          'collaboration': 1,
          'middling': 1,
          'pirate': 1,
          'epic': 1,
          'cutthroat': 1,
          'island': 1,
          'dress': 1,
          'rehearsal': 1,
          'albeit': 1,
          'costly': 1,
          'wifehusband': 1,
          'hit': 1,
          'stride': 1,
          'nanyone': 1,
          'simply': 1,
          'looking': 1,
          'escapist': 1,
          'entertainment': 1,
          'requires': 1,
          'littletono': 1,
          'thinking': 1,
          'find': 1,
          'morethanwelcome': 1,
          'npos': 1}),
 Counter({'hollow': 9,
          'sleepy': 7,
          'movies': 7,
          'film': 5,
          'kevin': 4,
          'walker': 4,
          'crane': 4,
          'horror': 4,
          'movie': 4,
          'story': 3,
          'tim': 3,
          'burton': 3,
          'depp': 3,
          'ichabod': 3,
          'films': 3,
          'quite': 3,
          'obviously': 3,
          'nthe': 3,
          'actors': 3,
          'one': 3,
          'andrew': 2,
          'christina': 2,
          'ricci': 2,
          'christopher': 2,
          'lee': 2,
          'investigator': 2,
          'investigate': 2,
          'series': 2,
          'murders': 2,
          'entertaining': 2,
          'years': 2,
          'less': 2,
          'nhes': 2,
          'work': 2,
          'ed': 2,
          'wood': 2,
          'nsleepy': 2,
          'fans': 2,
          'especially': 2,
          'hammer': 2,
          'frankenstein': 2,
          'also': 2,
          'none': 2,
          'recent': 2,
          'witch': 2,
          'like': 2,
          'plot': 2,
          'plays': 2,
          'adequate': 2,
          'good': 2,
          'two': 2,
          'however': 2,
          'wrote': 2,
          'lot': 2,
          'definately': 2,
          'young': 2,
          'screen': 1,
          'yagher': 1,
          'nscreenplay': 1,
          'ninspired': 1,
          'short': 1,
          'legend': 1,
          'washington': 1,
          'irving': 1,
          'ndirected': 1,
          'nstarring': 1,
          'johnny': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'nspecial': 1,
          'appearances': 1,
          'walken': 1,
          'nsynopsis': 1,
          'journeys': 1,
          '1799': 1,
          'involving': 1,
          'decapitation': 1,
          'ntownspeople': 1,
          'believe': 1,
          'spirit': 1,
          'dead': 1,
          'german': 1,
          'mercenary': 1,
          'threatening': 1,
          'ncute': 1,
          'blonde': 1,
          'katrina': 1,
          'listless': 1,
          'orphan': 1,
          'help': 1,
          'solve': 1,
          'mystery': 1,
          'ncomments': 1,
          'directed': 1,
          'number': 1,
          'groundbreaking': 1,
          'nbatman': 1,
          'course': 1,
          'perhaps': 1,
          'bestknown': 1,
          'led': 1,
          'string': 1,
          'successful': 1,
          'sequels': 1,
          'done': 1,
          'biographical': 1,
          'director': 1,
          'childrens': 1,
          'nightmare': 1,
          'christmas': 1,
          'homage': 1,
          'alien': 1,
          'invasion': 1,
          'mars': 1,
          'attacks': 1,
          'newest': 1,
          'feature': 1,
          'anticipating': 1,
          'shares': 1,
          'similar': 1,
          'dark': 1,
          'atmospheric': 1,
          'style': 1,
          'earlier': 1,
          'counts': 1,
          'among': 1,
          'better': 1,
          'draws': 1,
          'inspiration': 1,
          'old': 1,
          'period': 1,
          '1950s': 1,
          '1960s': 1,
          'studios': 1,
          'reworkings': 1,
          'dracula': 1,
          'american': 1,
          'internationals': 1,
          'based': 1,
          'works': 1,
          'edgar': 1,
          'allan': 1,
          'poe': 1,
          'nchristopher': 1,
          'fact': 1,
          'star': 1,
          'many': 1,
          'productions': 1,
          'appears': 1,
          'beginning': 1,
          'judge': 1,
          'sends': 1,
          'borrows': 1,
          'universal': 1,
          'monster': 1,
          '1930s': 1,
          'climatic': 1,
          'scenes': 1,
          'involves': 1,
          'windmill': 1,
          'takes': 1,
          'cue': 1,
          'ni': 1,
          'mention': 1,
          'allusions': 1,
          'reason': 1,
          'nseasoned': 1,
          'including': 1,
          'smile': 1,
          'inclusion': 1,
          'nwith': 1,
          'disappointments': 1,
          'theatrically': 1,
          'released': 1,
          'blair': 1,
          'project': 1,
          'overblown': 1,
          'turkey': 1,
          'decade': 1,
          'needed': 1,
          'nnot': 1,
          'sense': 1,
          'history': 1,
          'burtons': 1,
          'skillful': 1,
          'use': 1,
          'setting': 1,
          'mood': 1,
          'make': 1,
          'exercise': 1,
          'eerie': 1,
          'landscapes': 1,
          'foggy': 1,
          'towns': 1,
          'indeed': 1,
          'overshadow': 1,
          'noteworthy': 1,
          'aspect': 1,
          'njohnny': 1,
          'veteran': 1,
          'actor': 1,
          'appeared': 1,
          'edward': 1,
          'scissorhands': 1,
          'apparently': 1,
          'changed': 1,
          'occupations': 1,
          'irvings': 1,
          'original': 1,
          'ndepp': 1,
          'role': 1,
          'nno': 1,
          'nequally': 1,
          'love': 1,
          'interest': 1,
          'nshes': 1,
          'nhow': 1,
          'cute': 1,
          'weak': 1,
          'parts': 1,
          'wooden': 1,
          'cliched': 1,
          'dialogue': 1,
          'main': 1,
          'characters': 1,
          'carry': 1,
          'well': 1,
          'enough': 1,
          'supporting': 1,
          'cast': 1,
          'makes': 1,
          'shine': 1,
          'nveteran': 1,
          'jeffrey': 1,
          'jones': 1,
          'michael': 1,
          'gough': 1,
          'played': 1,
          'butler': 1,
          'alfred': 1,
          'four': 1,
          'batman': 1,
          'flicks': 1,
          'terrific': 1,
          'aging': 1,
          'townsfolk': 1,
          'involved': 1,
          'conspiracy': 1,
          'uncovers': 1,
          'nwhile': 1,
          'wish': 1,
          'reveal': 1,
          'crucial': 1,
          'points': 1,
          'say': 1,
          'storyline': 1,
          'becomes': 1,
          'confusing': 1,
          'nyou': 1,
          'pay': 1,
          'attention': 1,
          'nandrew': 1,
          'screenplay': 1,
          '8': 1,
          'mm': 1,
          'seven': 1,
          'nwalker': 1,
          'quickly': 1,
          'becoming': 1,
          'premiere': 1,
          'suspense': 1,
          'writers': 1,
          'hollywood': 1,
          'certainly': 1,
          'doesnt': 1,
          'hurt': 1,
          'growing': 1,
          'reputation': 1,
          'nas': 1,
          'might': 1,
          'imagine': 1,
          'gentleman': 1,
          'graphic': 1,
          'ntheres': 1,
          'blood': 1,
          'beheadings': 1,
          'nthis': 1,
          'flick': 1,
          'take': 1,
          'kids': 1,
          'na': 1,
          'lady': 1,
          'front': 1,
          'us': 1,
          'took': 1,
          'sons': 1,
          'see': 1,
          'spent': 1,
          '25': 1,
          '30': 1,
          'minutes': 1,
          'covering': 1,
          'youngests': 1,
          'eyes': 1,
          'hand': 1,
          'nhe': 1,
          'upset': 1,
          'intense': 1,
          'violence': 1,
          'nif': 1,
          'youre': 1,
          'looking': 1,
          'scare': 1,
          'recommended': 1,
          'npos': 1}),
 Counter({'jackie': 22,
          'master': 18,
          'drunken': 15,
          'films': 12,
          'chan': 10,
          'arts': 10,
          'kung': 10,
          'fu': 10,
          'martial': 9,
          'early': 9,
          'movies': 7,
          'n': 7,
          'like': 7,
          'feihong': 7,
          'seen': 6,
          'though': 5,
          'movie': 5,
          'often': 5,
          'film': 5,
          'really': 5,
          'big': 4,
          'similar': 4,
          'wong': 4,
          'good': 4,
          'fights': 4,
          'one': 3,
          'action': 3,
          'time': 3,
          'starring': 3,
          'hong': 3,
          'kong': 3,
          'wonderful': 3,
          'nin': 3,
          'fearless': 3,
          'hyena': 3,
          'ii': 3,
          'think': 3,
          'something': 3,
          'fight': 3,
          'student': 3,
          'american': 3,
          'hit': 3,
          'punishment': 3,
          'nits': 3,
          'theyre': 3,
          'thing': 3,
          'rather': 3,
          'three': 2,
          'america': 2,
          'least': 2,
          'way': 2,
          'stardom': 2,
          'years': 2,
          'jackies': 2,
          'sense': 2,
          'comedy': 2,
          'first': 2,
          'set': 2,
          'nim': 2,
          'many': 2,
          'ways': 2,
          'cracked': 2,
          'fingers': 2,
          'half': 2,
          'loaf': 2,
          'spiritual': 2,
          'others': 2,
          'fact': 2,
          'together': 2,
          'style': 2,
          'six': 2,
          'year': 2,
          'different': 2,
          'know': 2,
          'chinese': 2,
          'sometime': 2,
          'slow': 2,
          'far': 2,
          'sometimes': 2,
          'seem': 2,
          'scenes': 2,
          'plot': 2,
          'ever': 2,
          'saw': 2,
          'meant': 2,
          'part': 2,
          'asian': 2,
          'anything': 2,
          'special': 2,
          'nafter': 2,
          'kind': 2,
          'bad': 2,
          'end': 2,
          'beating': 2,
          'bully': 2,
          'father': 2,
          'thrash': 2,
          'take': 2,
          'drunkenstyle': 2,
          'series': 2,
          'jugs': 2,
          'actually': 2,
          'winning': 2,
          'makes': 2,
          'new': 2,
          'nthe': 2,
          'particularly': 2,
          'see': 2,
          'funny': 2,
          'thats': 2,
          'going': 2,
          'several': 2,
          'still': 2,
          'plenty': 2,
          'sequel': 2,
          'later': 2,
          'youre': 2,
          'fun': 2,
          'making': 2,
          'even': 2,
          'give': 2,
          'video': 2,
          'form': 2,
          'available': 2,
          'dubbed': 2,
          'else': 2,
          'nif': 2,
          'enjoy': 2,
          'nalso': 2,
          'hope': 2,
          'mpaa': 1,
          'rated': 1,
          'feel': 1,
          'would': 1,
          'likely': 1,
          'pg': 1,
          'martialarts': 1,
          'violence': 1,
          'nwith': 1,
          'already': 1,
          'released': 1,
          'theatrically': 1,
          'newest': 1,
          'hot': 1,
          'properties': 1,
          'adventure': 1,
          'nfor': 1,
          'twentyfive': 1,
          'thrilling': 1,
          'audiences': 1,
          'incredible': 1,
          'grasp': 1,
          'acrobatics': 1,
          'distinction': 1,
          'make': 1,
          'supposedly': 1,
          'entirely': 1,
          'sure': 1,
          'exactly': 1,
          'looking': 1,
          'gets': 1,
          'impression': 1,
          'stamped': 1,
          'cookiecutter': 1,
          'rate': 1,
          'four': 1,
          'per': 1,
          'using': 1,
          'casts': 1,
          'telling': 1,
          'stories': 1,
          'nto': 1,
          'honest': 1,
          'acquired': 1,
          'taste': 1,
          'ntheyre': 1,
          'quite': 1,
          'nthese': 1,
          'tend': 1,
          'countryside': 1,
          'indeterminate': 1,
          'period': 1,
          'distant': 1,
          'past': 1,
          'fairly': 1,
          'plots': 1,
          'meander': 1,
          'afield': 1,
          'exist': 1,
          'intention': 1,
          'stringing': 1,
          'tighter': 1,
          'exception': 1,
          'aside': 1,
          'na': 1,
          'theater': 1,
          'seattle': 1,
          'festival': 1,
          'nat': 1,
          'didnt': 1,
          'grown': 1,
          'storyline': 1,
          'slacker': 1,
          'taught': 1,
          'harshseeming': 1,
          'evil': 1,
          'guy': 1,
          'formula': 1,
          'adapted': 1,
          'put': 1,
          'kindly': 1,
          'karate': 1,
          'kid': 1,
          'nmore': 1,
          'specifically': 1,
          'plays': 1,
          'aka': 1,
          'naughty': 1,
          'panther': 1,
          'funloving': 1,
          'practicaljoking': 1,
          '_quite_': 1,
          'enough': 1,
          'embarrassing': 1,
          'instructors': 1,
          'assistant': 1,
          'roundly': 1,
          'marketplace': 1,
          'tries': 1,
          'pretty': 1,
          'girl': 1,
          'discovers': 1,
          'mother': 1,
          'back': 1,
          'better': 1,
          'nis': 1,
          'chagrinned': 1,
          'discover': 1,
          'two': 1,
          'women': 1,
          'cousin': 1,
          'aunt': 1,
          'respectively': 1,
          'nhis': 1,
          'keiying': 1,
          'unhappy': 1,
          'annoyed': 1,
          'brother': 1,
          'show': 1,
          'sue': 1,
          'damages': 1,
          'nkeiying': 1,
          'soon': 1,
          'institutes': 1,
          'harsh': 1,
          'regimen': 1,
          'nwhile': 1,
          'escaping': 1,
          'meets': 1,
          'old': 1,
          'man': 1,
          'proceeds': 1,
          'soundly': 1,
          'nthis': 1,
          'turns': 1,
          'su': 1,
          'huachi': 1,
          'legendary': 1,
          'nhe': 1,
          'assigns': 1,
          'bizarre': 1,
          'tasks': 1,
          'filling': 1,
          'water': 1,
          'hanging': 1,
          'upside': 1,
          'frame': 1,
          'cracking': 1,
          'walnuts': 1,
          'hands': 1,
          'exercises': 1,
          'pointless': 1,
          'cruelty': 1,
          'strengthening': 1,
          'nthen': 1,
          'hes': 1,
          'ready': 1,
          'teaches': 1,
          'seven': 1,
          'styles': 1,
          'nunfortunately': 1,
          'lazy': 1,
          'practices': 1,
          'features': 1,
          'sequences': 1,
          'losing': 1,
          'said': 1,
          'ill': 1,
          'say': 1,
          'againthese': 1,
          'dont': 1,
          '_happen_': 1,
          'carefully': 1,
          'choreographed': 1,
          'ballet': 1,
          'performance': 1,
          'shows': 1,
          'use': 1,
          'objects': 1,
          'found': 1,
          'environment': 1,
          'benches': 1,
          'cups': 1,
          'bowls': 1,
          'fruits': 1,
          'vegetablesoften': 1,
          'surprising': 1,
          'toward': 1,
          'unparallelled': 1,
          'nwhether': 1,
          'wins': 1,
          'loses': 1,
          'nand': 1,
          'ntheres': 1,
          'little': 1,
          'moviejackie': 1,
          'getting': 1,
          'beaten': 1,
          'badly': 1,
          'training': 1,
          'nschticks': 1,
          'dozen': 1,
          'seventies': 1,
          'eighties': 1,
          'nbut': 1,
          'hilarious': 1,
          'nlikewise': 1,
          '_great_': 1,
          'supporting': 1,
          'cast': 1,
          'also': 1,
          'source': 1,
          'hilarity': 1,
          'inspired': 1,
          'copycats': 1,
          'including': 1,
          'couple': 1,
          'fifteen': 1,
          'certain': 1,
          'whether': 1,
          'genuine': 1,
          'principle': 1,
          'behind': 1,
          'imitate': 1,
          'wobbly': 1,
          'movements': 1,
          'drunkard': 1,
          'lull': 1,
          'enemy': 1,
          'false': 1,
          'security': 1,
          'nit': 1,
          'apparently': 1,
          'helps': 1,
          'drunk': 1,
          'ngenuine': 1,
          'admit': 1,
          'theres': 1,
          'incredibly': 1,
          'watching': 1,
          'fellow': 1,
          'looks': 1,
          'utterly': 1,
          'sloshed': 1,
          'wading': 1,
          'group': 1,
          'startled': 1,
          'opponents': 1,
          'mincemeat': 1,
          'realize': 1,
          'whats': 1,
          'ncome': 1,
          'perhaps': 1,
          'element': 1,
          'accounts': 1,
          'success': 1,
          'nnot': 1,
          'stop': 1,
          'go': 1,
          'whoa': 1,
          'non': 1,
          'negative': 1,
          'side': 1,
          'cinematography': 1,
          'nothing': 1,
          'stock': 1,
          'primitive': 1,
          'subtitles': 1,
          'extremely': 1,
          'hard': 1,
          'read': 1,
          'background': 1,
          'gone': 1,
          'wind': 1,
          'isnt': 1,
          'nstill': 1,
          'youve': 1,
          'want': 1,
          'shot': 1,
          'much': 1,
          'real': 1,
          'chuck': 1,
          'norris': 1,
          'jeanclaude': 1,
          'van': 1,
          'damme': 1,
          'nyou': 1,
          'might': 1,
          'well': 1,
          'nanother': 1,
          'interesting': 1,
          'availability': 1,
          'us': 1,
          'find': 1,
          'original': 1,
          'letterboxed': 1,
          'subtitled': 1,
          'commercially': 1,
          'vhs': 1,
          'magnum': 1,
          'gold': 1,
          'box': 1,
          '10': 1,
          'nthere': 1,
          'around': 1,
          'typically': 1,
          'either': 1,
          'panandscanned': 1,
          'import': 1,
          'tapes': 1,
          'priced': 1,
          'rental': 1,
          'instead': 1,
          'purchase': 1,
          'nthankfully': 1,
          'aspect': 1,
          'ratio': 1,
          'affordable': 1,
          'price': 1,
          'look': 1,
          'numerous': 1,
          'ones': 1,
          'arent': 1,
          '_too_': 1,
          'nnothing': 1,
          'choreography': 1,
          'dialogue': 1,
          'ni': 1,
          'recommend': 1,
          'snake': 1,
          'crane': 1,
          'shaolin': 1,
          'mostlyunrelatedstorywise': 1,
          'theaters': 1,
          'release': 1,
          'americanrelease': 1,
          'title': 1,
          'uncertain': 1,
          'comes': 1,
          '_highly_': 1,
          'recommended': 1,
          'reviewer': 1,
          'interpretation': 1,
          'character': 1,
          'popular': 1,
          'figure': 1,
          'folklore': 1,
          'ive': 1,
          'told': 1,
          'suggest': 1,
          'upon': 1,
          'china': 1,
          'jet': 1,
          'li': 1,
          'havent': 1,
          'personally': 1,
          'yet': 1,
          'choose': 1,
          'watch': 1,
          'starts': 1,
          'open': 1,
          'eyes': 1,
          'world': 1,
          'cinema': 1,
          'nall': 1,
          'npos': 1}),
 Counter({'great': 3,
          'na': 3,
          'action': 3,
          'film': 3,
          'well': 2,
          'know': 2,
          'ndaylight': 2,
          'movie': 2,
          'tunnel': 2,
          'new': 2,
          'collapses': 2,
          'seat': 2,
          'work': 2,
          'nthere': 2,
          'stallone': 1,
          '50': 1,
          'years': 1,
          'old': 1,
          'daylight': 1,
          'doesnt': 1,
          'look': 1,
          'disaster': 1,
          'nif': 1,
          'youve': 1,
          'seen': 1,
          'cliffhanger': 1,
          'youll': 1,
          'stallones': 1,
          'character': 1,
          'already': 1,
          'guy': 1,
          'bad': 1,
          'past': 1,
          'right': 1,
          'place': 1,
          'wrong': 1,
          'time': 1,
          'connecting': 1,
          'york': 1,
          'jersey': 1,
          'sides': 1,
          'group': 1,
          'robbers': 1,
          'collide': 1,
          'truck': 1,
          'carrying': 1,
          'flammable': 1,
          'toxic': 1,
          'waste': 1,
          'dozen': 1,
          'people': 1,
          'survive': 1,
          'incinerating': 1,
          'fireball': 1,
          'fire': 1,
          'ball': 1,
          'nstallone': 1,
          'former': 1,
          'emergency': 1,
          'medical': 1,
          'service': 1,
          'man': 1,
          'chauffeuring': 1,
          'rich': 1,
          'couple': 1,
          'around': 1,
          'reach': 1,
          'outside': 1,
          'explosion': 1,
          'nthen': 1,
          '30': 1,
          'minutes': 1,
          'boom': 1,
          'nfrom': 1,
          'plot': 1,
          'takes': 1,
          'back': 1,
          'treated': 1,
          'best': 1,
          'camera': 1,
          'staged': 1,
          'nmost': 1,
          'plausible': 1,
          'hold': 1,
          'edge': 1,
          'melodramatic': 1,
          'parts': 1,
          'tend': 1,
          'general': 1,
          'antagonist': 1,
          'suspense': 1,
          'makes': 1,
          'forget': 1,
          'saw': 1,
          'nonmatinee': 1,
          'showing': 1,
          'thought': 1,
          'worth': 1,
          'every': 1,
          'penny': 1,
          'nthe': 1,
          'characterizations': 1,
          'mostly': 1,
          'flat': 1,
          'one': 1,
          'dimesional': 1,
          'enough': 1,
          'get': 1,
          'care': 1,
          'characters': 1,
          'nrob': 1,
          'cohen': 1,
          'dragonheart': 1,
          'job': 1,
          'npos': 1}),
 Counter({'john': 13,
          'film': 10,
          'frequency': 10,
          'nthe': 9,
          'frank': 9,
          'one': 6,
          'time': 5,
          'gets': 5,
          'logical': 4,
          'idea': 4,
          'dont': 4,
          'future': 4,
          'plot': 4,
          'life': 4,
          'franks': 4,
          'world': 4,
          'like': 4,
          'ni': 4,
          'best': 3,
          'realities': 3,
          'new': 3,
          '1969': 3,
          'julia': 3,
          'son': 3,
          'father': 3,
          'concept': 3,
          'good': 3,
          'care': 3,
          'liked': 3,
          'baseball': 3,
          'series': 3,
          'may': 3,
          'scene': 3,
          'relationship': 3,
          'travel': 2,
          'script': 2,
          'get': 2,
          'nbut': 2,
          'films': 2,
          'nthere': 2,
          'question': 2,
          'action': 2,
          'story': 2,
          'really': 2,
          'job': 2,
          'goes': 2,
          'wife': 2,
          'mitchell': 2,
          'johnny': 2,
          'forward': 2,
          '1999': 2,
          'caviezel': 2,
          'communicate': 2,
          'initially': 2,
          'fire': 2,
          'nnow': 2,
          'changes': 2,
          'timeline': 2,
          'serial': 2,
          'would': 2,
          'work': 2,
          'right': 2,
          'information': 2,
          'past': 2,
          'result': 2,
          'nwhen': 2,
          'remembers': 2,
          'way': 2,
          'also': 2,
          'two': 2,
          'something': 2,
          'johns': 2,
          'explanations': 2,
          'come': 2,
          'enough': 2,
          'advance': 2,
          'change': 2,
          'already': 2,
          'little': 2,
          'thriller': 2,
          'even': 2,
          'confusing': 2,
          'sense': 2,
          'characters': 2,
          'us': 2,
          'see': 2,
          'uses': 2,
          'outcome': 2,
          'believe': 2,
          'n': 2,
          'simultaneously': 2,
          'find': 2,
          'give': 2,
          'movie': 2,
          'thing': 2,
          'fatherson': 2,
          'easily': 2,
          'actors': 2,
          'human': 2,
          'supporting': 2,
          'turn': 2,
          'movies': 1,
          'nearimpossibility': 1,
          'nconsidering': 1,
          'skeptics': 1,
          'argument': 1,
          'possibility': 1,
          'altered': 1,
          'writing': 1,
          'deals': 1,
          'problem': 1,
          'imposing': 1,
          'task': 1,
          'noccasionally': 1,
          'manage': 1,
          'nterry': 1,
          'gilliams': 1,
          '12': 1,
          'monkeys': 1,
          'frequently': 1,
          'much': 1,
          'deal': 1,
          'ask': 1,
          'case': 1,
          'virtues': 1,
          'override': 1,
          'existing': 1,
          'inconsistencies': 1,
          'terminator': 1,
          'made': 1,
          'exciting': 1,
          'back': 1,
          'entertaining': 1,
          'pulls': 1,
          'trick': 1,
          'strong': 1,
          'package': 1,
          'nis': 1,
          'filled': 1,
          'holes': 1,
          'nyes': 1,
          'ndoes': 1,
          'matter': 1,
          'nnot': 1,
          'opens': 1,
          'october': 1,
          'nfirefighter': 1,
          'sullivan': 1,
          'dennis': 1,
          'quaid': 1,
          'puts': 1,
          'line': 1,
          'every': 1,
          'suits': 1,
          'home': 1,
          'loving': 1,
          'elizabeth': 1,
          'daniel': 1,
          'henson': 1,
          'doublepronged': 1,
          'flashes': 1,
          'jim': 1,
          'grown': 1,
          'working': 1,
          'police': 1,
          'detective': 1,
          'na': 1,
          'strange': 1,
          'occurrence': 1,
          'appearance': 1,
          'aurora': 1,
          'borealis': 1,
          'york': 1,
          'city': 1,
          'allows': 1,
          'ham': 1,
          'radio': 1,
          'used': 1,
          '69': 1,
          'found': 1,
          'present': 1,
          'day': 1,
          'nthough': 1,
          'skeptical': 1,
          'eventually': 1,
          'takes': 1,
          'opportunity': 1,
          'warn': 1,
          'impending': 1,
          'death': 1,
          'warehouse': 1,
          'succeeds': 1,
          'saving': 1,
          'certain': 1,
          'doom': 1,
          'flooded': 1,
          'memories': 1,
          'full': 1,
          'alive': 1,
          'overjoyed': 1,
          'discovers': 1,
          'disastrous': 1,
          'killer': 1,
          'died': 1,
          'instead': 1,
          'lived': 1,
          'kill': 1,
          'seven': 1,
          'women': 1,
          'nfrank': 1,
          'must': 1,
          'together': 1,
          'set': 1,
          'things': 1,
          'using': 1,
          'gathered': 1,
          'instruct': 1,
          'premise': 1,
          'unusual': 1,
          'requires': 1,
          'getting': 1,
          'important': 1,
          'mental': 1,
          'hurdle': 1,
          'fully': 1,
          'accept': 1,
          'ones': 1,
          'conscious': 1,
          'changed': 1,
          'actions': 1,
          'nthis': 1,
          'isnt': 1,
          'explained': 1,
          'go': 1,
          'doesnt': 1,
          'die': 1,
          'differently': 1,
          'everyone': 1,
          'else': 1,
          'runs': 1,
          'problems': 1,
          'concerning': 1,
          'synchronous': 1,
          'nsometimes': 1,
          'changing': 1,
          'results': 1,
          'happening': 1,
          'away': 1,
          'sometimes': 1,
          'ahead': 1,
          'filmmakers': 1,
          'might': 1,
          'perfectly': 1,
          'could': 1,
          'probably': 1,
          'fairly': 1,
          'convoluted': 1,
          'nevertheless': 1,
          'thought': 1,
          'hard': 1,
          'example': 1,
          'reason': 1,
          'killers': 1,
          'murders': 1,
          'happened': 1,
          'witnessing': 1,
          'projection': 1,
          'arent': 1,
          'point': 1,
          'cooking': 1,
          'riveting': 1,
          'nwhat': 1,
          'matters': 1,
          'makes': 1,
          'moment': 1,
          'works': 1,
          'long': 1,
          'keeps': 1,
          'moving': 1,
          'manages': 1,
          'engaging': 1,
          'despite': 1,
          'confusion': 1,
          'ndirector': 1,
          'gregory': 1,
          'hoblit': 1,
          'screenwriter': 1,
          'toby': 1,
          'emmerich': 1,
          'structure': 1,
          'hollywood': 1,
          'entertainment': 1,
          'establishing': 1,
          'decent': 1,
          'likable': 1,
          'making': 1,
          'setting': 1,
          'goal': 1,
          'reached': 1,
          'conflict': 1,
          'resolved': 1,
          'many': 1,
          'creative': 1,
          'touches': 1,
          'split': 1,
          'screens': 1,
          'allowing': 1,
          'universe': 1,
          'affected': 1,
          'greater': 1,
          'framework': 1,
          'drive': 1,
          'nit': 1,
          'actually': 1,
          'metsorioles': 1,
          'featured': 1,
          'amazin': 1,
          'mets': 1,
          'great': 1,
          'effect': 1,
          'knowledge': 1,
          'convince': 1,
          'friends': 1,
          'admittedly': 1,
          'device': 1,
          'interest': 1,
          'fan': 1,
          'final': 1,
          'features': 1,
          'fighting': 1,
          'man': 1,
          'different': 1,
          'periods': 1,
          'nsome': 1,
          'blindingly': 1,
          'reality': 1,
          'shifts': 1,
          'start': 1,
          'coming': 1,
          'fast': 1,
          'furious': 1,
          'make': 1,
          'think': 1,
          'lot': 1,
          'leeway': 1,
          'lets': 1,
          'face': 1,
          'darn': 1,
          'cool': 1,
          'end': 1,
          'surprises': 1,
          'twists': 1,
          'keep': 1,
          'toes': 1,
          'avoids': 1,
          'growing': 1,
          'stagnant': 1,
          'major': 1,
          'appreciate': 1,
          'handling': 1,
          'nquaid': 1,
          'carry': 1,
          'parts': 1,
          'rocksolid': 1,
          'instantly': 1,
          'credible': 1,
          'truth': 1,
          'behind': 1,
          'high': 1,
          'react': 1,
          'able': 1,
          'dead': 1,
          'relative': 1,
          'descendant': 1,
          'nwatching': 1,
          'exchanges': 1,
          'pretty': 1,
          'answer': 1,
          'credibility': 1,
          'absolutely': 1,
          'crucial': 1,
          'rest': 1,
          'nhere': 1,
          'lead': 1,
          'cast': 1,
          'members': 1,
          'nelizabeth': 1,
          'stuck': 1,
          'thankless': 1,
          'roles': 1,
          'playing': 1,
          'doting': 1,
          'mother': 1,
          'still': 1,
          'performs': 1,
          'admirably': 1,
          'nandre': 1,
          'braugher': 1,
          'late': 1,
          'television': 1,
          'show': 1,
          'homicide': 1,
          'street': 1,
          'gives': 1,
          'nice': 1,
          'friend': 1,
          'colleague': 1,
          'nhe': 1,
          'lovely': 1,
          'diner': 1,
          'tries': 1,
          'explain': 1,
          'situation': 1,
          'predictions': 1,
          'true': 1,
          'eyes': 1,
          'nbraugher': 1,
          'strikes': 1,
          'perfect': 1,
          'facial': 1,
          'expression': 1,
          'dismayed': 1,
          'amused': 1,
          'nperhaps': 1,
          'didnt': 1,
          'overly': 1,
          'sentimental': 1,
          'coda': 1,
          'cameras': 1,
          'focus': 1,
          'soft': 1,
          'theme': 1,
          'carried': 1,
          'overboard': 1,
          'thats': 1,
          'earned': 1,
          'poignancy': 1,
          'without': 1,
          'resorting': 1,
          'cheap': 1,
          'tactics': 1,
          'freely': 1,
          'acknowledge': 1,
          'guy': 1,
          'since': 1,
          'focuses': 1,
          'maleoriented': 1,
          'relationships': 1,
          'echoes': 1,
          'field': 1,
          'dreams': 1,
          'heard': 1,
          'underlying': 1,
          'universally': 1,
          'applicable': 1,
          'nwho': 1,
          'wouldnt': 1,
          'want': 1,
          'speak': 1,
          'longdead': 1,
          'parent': 1,
          'children': 1,
          'tell': 1,
          'excuse': 1,
          'mist': 1,
          'nand': 1,
          'call': 1,
          'sissy': 1,
          'npos': 1}),
 Counter({'vampire': 11,
          'movie': 9,
          'blade': 8,
          'vampires': 7,
          'nthe': 6,
          'one': 5,
          'nblade': 5,
          'story': 3,
          'get': 3,
          'isnt': 3,
          'fun': 3,
          'snipes': 2,
          'really': 2,
          'live': 2,
          'comic': 2,
          'book': 2,
          'kind': 2,
          'style': 2,
          'well': 2,
          'nalthough': 2,
          'thought': 2,
          'nbut': 2,
          'things': 2,
          'bit': 2,
          'many': 2,
          'doesnt': 2,
          'take': 2,
          'half': 2,
          'mother': 2,
          'classic': 2,
          'blood': 2,
          'life': 2,
          'seems': 2,
          'world': 2,
          'find': 2,
          'know': 2,
          'run': 2,
          'nhe': 2,
          'nits': 2,
          'nthis': 2,
          'otherwise': 2,
          'sequences': 2,
          'shows': 1,
          'wesley': 1,
          'potential': 1,
          'hollywoods': 1,
          'premier': 1,
          'leading': 1,
          'men': 1,
          'based': 1,
          'character': 1,
          'name': 1,
          'feel': 1,
          'nit': 1,
          'stylish': 1,
          'part': 1,
          'works': 1,
          'points': 1,
          'watching': 1,
          'music': 1,
          'video': 1,
          'opposed': 1,
          'ideas': 1,
          'behind': 1,
          'good': 1,
          'basic': 1,
          'plot': 1,
          'times': 1,
          'seem': 1,
          'muddled': 1,
          'writers': 1,
          'appear': 1,
          'want': 1,
          'nthat': 1,
          'away': 1,
          'much': 1,
          'hurt': 1,
          'little': 1,
          'man': 1,
          'nhis': 1,
          'bitten': 1,
          'pregnant': 1,
          'result': 1,
          'traits': 1,
          'nincluding': 1,
          'thirst': 1,
          'human': 1,
          'must': 1,
          'kept': 1,
          'control': 1,
          'special': 1,
          'serum': 1,
          'quenches': 1,
          'lust': 1,
          'spent': 1,
          'hunting': 1,
          'killing': 1,
          'sort': 1,
          'revenge': 1,
          'fact': 1,
          'killed': 1,
          'easy': 1,
          'blades': 1,
          'sophisticated': 1,
          'ones': 1,
          'films': 1,
          'government': 1,
          'authorities': 1,
          'existence': 1,
          'let': 1,
          'feast': 1,
          'population': 1,
          'large': 1,
          'taking': 1,
          'bribes': 1,
          'nwhere': 1,
          'money': 1,
          'nwell': 1,
          'multinational': 1,
          'companies': 1,
          'order': 1,
          'finance': 1,
          'organizations': 1,
          'ni': 1,
          'personally': 1,
          'whole': 1,
          'secret': 1,
          'corporate': 1,
          'clever': 1,
          'idea': 1,
          'great': 1,
          'addition': 1,
          'runs': 1,
          'evil': 1,
          'deacon': 1,
          'frost': 1,
          'stephen': 1,
          'dorff': 1,
          'maverick': 1,
          'community': 1,
          'content': 1,
          'among': 1,
          'humans': 1,
          'convinced': 1,
          'race': 1,
          'superior': 1,
          'means': 1,
          'insure': 1,
          'superiority': 1,
          'managed': 1,
          'translate': 1,
          'ancient': 1,
          'scrolls': 1,
          'tell': 1,
          'method': 1,
          'making': 1,
          'allpowerful': 1,
          'rendering': 1,
          'virtually': 1,
          'unstoppable': 1,
          'see': 1,
          'transpire': 1,
          'nadmittedly': 1,
          'substance': 1,
          'relatively': 1,
          'forgettable': 1,
          'none': 1,
          'less': 1,
          'acting': 1,
          'would': 1,
          'expect': 1,
          'type': 1,
          'film': 1,
          'going': 1,
          'win': 1,
          'accolades': 1,
          'performances': 1,
          'actors': 1,
          'played': 1,
          'nobody': 1,
          'think': 1,
          'popcorn': 1,
          'involved': 1,
          'illusions': 1,
          'nblades': 1,
          'production': 1,
          'values': 1,
          'slick': 1,
          'typical': 1,
          'summer': 1,
          'blockbuster': 1,
          'combat': 1,
          'targets': 1,
          'incredibly': 1,
          'done': 1,
          'mtvstyle': 1,
          'cuts': 1,
          'nerves': 1,
          'long': 1,
          'interesting': 1,
          'genre': 1,
          'like': 1,
          'tuxedos': 1,
          'living': 1,
          'coffins': 1,
          'basement': 1,
          'gothic': 1,
          'castle': 1,
          'nwhat': 1,
          'excels': 1,
          'bringing': 1,
          'lore': 1,
          'next': 1,
          'century': 1,
          'fresh': 1,
          'outlook': 1,
          'nvery': 1,
          'cool': 1,
          'npos': 1}),
 Counter({'film': 11,
          'truman': 5,
          'show': 5,
          'carrey': 5,
          'nthe': 5,
          'perfect': 4,
          'hour': 3,
          'harris': 3,
          'life': 3,
          'seahaven': 3,
          'christoff': 3,
          'would': 3,
          'character': 3,
          'audience': 3,
          'nalso': 3,
          'jim': 2,
          'weir': 2,
          'carreys': 2,
          'dramatic': 2,
          'plot': 2,
          'burbank': 2,
          'town': 2,
          'nhis': 2,
          'seems': 2,
          'however': 2,
          'creator': 2,
          'far': 2,
          'different': 2,
          'easy': 2,
          'screenwriter': 2,
          'dumb': 2,
          'appeal': 2,
          'never': 2,
          'movie': 2,
          'hes': 2,
          'role': 2,
          'completely': 2,
          'silly': 2,
          'well': 2,
          'disappointing': 2,
          'used': 2,
          'excellent': 2,
          'slightly': 2,
          'niccol': 2,
          'keep': 2,
          'noverall': 2,
          'paramount': 1,
          'pictures': 1,
          'running': 1,
          'time': 1,
          '1': 1,
          '42': 1,
          'minutes': 1,
          'starring': 1,
          'ed': 1,
          'directed': 1,
          'peter': 1,
          'long': 1,
          'wait': 1,
          'debut': 1,
          'finally': 1,
          'makes': 1,
          'big': 1,
          'screen': 1,
          'nin': 1,
          'case': 1,
          'youve': 1,
          'asleep': 1,
          'last': 1,
          'months': 1,
          'centres': 1,
          'leads': 1,
          'seemingly': 1,
          'idyllic': 1,
          'beautiful': 1,
          'controlled': 1,
          'program': 1,
          'unwittingly': 1,
          'hero': 1,
          'nthats': 1,
          'right': 1,
          'burbanks': 1,
          'broadcast': 1,
          'live': 1,
          'american': 1,
          'public': 1,
          'inhabitants': 1,
          'inclosed': 1,
          'massive': 1,
          'sound': 1,
          'stage': 1,
          'takes': 1,
          'jerry': 1,
          'springer': 1,
          'format': 1,
          'one': 1,
          'step': 1,
          'nwith': 1,
          'idea': 1,
          'director': 1,
          'lowest': 1,
          'common': 1,
          'denominator': 1,
          'nluckily': 1,
          'remains': 1,
          'sensible': 1,
          'enough': 1,
          'ages': 1,
          'yet': 1,
          'ntalking': 1,
          'enjoying': 1,
          'best': 1,
          'career': 1,
          'reinforced': 1,
          'stanley': 1,
          'ipkiss': 1,
          'mask': 1,
          '1994': 1,
          'suited': 1,
          'persona': 1,
          'nhe': 1,
          'occasionally': 1,
          'falls': 1,
          'ace': 1,
          'ventura': 1,
          'mode': 1,
          'shrieking': 1,
          'generally': 1,
          'watching': 1,
          'subdued': 1,
          'nhes': 1,
          'like': 1,
          'promises': 1,
          'ned': 1,
          'brings': 1,
          'extreme': 1,
          'intensity': 1,
          'megalomaniac': 1,
          'nquiet': 1,
          'spoken': 1,
          'burns': 1,
          'image': 1,
          'viewer': 1,
          'nunfortunately': 1,
          'barely': 1,
          'first': 1,
          'dosent': 1,
          'appear': 1,
          'natascha': 1,
          'mcelhones': 1,
          'sylvia': 1,
          'nshe': 1,
          'plays': 1,
          'sadly': 1,
          'underwritten': 1,
          'pushed': 1,
          'sidelines': 1,
          'supporting': 1,
          'cast': 1,
          'looks': 1,
          'delightfully': 1,
          'creepy': 1,
          'philip': 1,
          'glass': 1,
          'soundtrack': 1,
          'also': 1,
          'superb': 1,
          'great': 1,
          'effect': 1,
          'npeter': 1,
          'keeps': 1,
          'going': 1,
          'clearly': 1,
          'fun': 1,
          'upbeat': 1,
          'previous': 1,
          'films': 1,
          'dead': 1,
          'poets': 1,
          'society': 1,
          'green': 1,
          'card': 1,
          'nalthough': 1,
          'slow': 1,
          'begin': 1,
          'half': 1,
          'pace': 1,
          'really': 1,
          'picks': 1,
          'introduced': 1,
          'fully': 1,
          'roll': 1,
          'nsadly': 1,
          'though': 1,
          'practically': 1,
          'full': 1,
          'steam': 1,
          'concerning': 1,
          'ending': 1,
          'ambiguous': 1,
          'andrew': 1,
          'bought': 1,
          'us': 1,
          'gattaca': 1,
          '1997': 1,
          'delivers': 1,
          'entertaining': 1,
          'script': 1,
          'manages': 1,
          'trim': 1,
          'nwhile': 1,
          'christoffs': 1,
          'plans': 1,
          'get': 1,
          'increasingly': 1,
          'go': 1,
          'line': 1,
          'theres': 1,
          'funny': 1,
          'gags': 1,
          'involving': 1,
          'product': 1,
          'placement': 1,
          'people': 1,
          'watch': 1,
          'entertainment': 1,
          'ncertainly': 1,
          'usual': 1,
          'crap': 1,
          'hollywood': 1,
          'produces': 1,
          'viewed': 1,
          'everyone': 1,
          'nit': 1,
          'offers': 1,
          'something': 1,
          'every': 1,
          'member': 1,
          'almost': 1,
          'certainly': 1,
          'come': 1,
          'disappointed': 1,
          'rating': 1,
          'nreview': 1,
          'david': 1,
          'wilcock': 1,
          '1998': 1,
          'n': 1,
          'know': 1,
          'kids': 1,
          'norville': 1,
          'barnes': 1,
          'npos': 1}),
 Counter({'film': 4,
          'francie': 4,
          'owens': 3,
          'non': 3,
          'one': 3,
          'hand': 3,
          'difficult': 3,
          'francies': 3,
          'yet': 3,
          'know': 3,
          'another': 2,
          'found': 2,
          'rea': 2,
          'also': 2,
          'butcher': 2,
          'whole': 2,
          'disturbing': 2,
          'dont': 2,
          'react': 2,
          'recent': 1,
          'left': 1,
          'conflicted': 1,
          'feelings': 1,
          'neil': 1,
          'jordans': 1,
          'harrowing': 1,
          'humorous': 1,
          'horrifying': 1,
          'adaptation': 1,
          'patrick': 1,
          'mccabes': 1,
          'novel': 1,
          'young': 1,
          'lad': 1,
          'bradys': 1,
          'eamonn': 1,
          'descent': 1,
          'madness': 1,
          '1960s': 1,
          'ireland': 1,
          'become': 1,
          'invested': 1,
          'story': 1,
          'unsavory': 1,
          'character': 1,
          'unjustifyably': 1,
          'venting': 1,
          'rage': 1,
          'nosy': 1,
          'otherwise': 1,
          'harmless': 1,
          'neighbor': 1,
          'mrs': 1,
          'nugent': 1,
          'fiona': 1,
          'shaw': 1,
          'laugh': 1,
          'darkly': 1,
          'comic': 1,
          'shenanigans': 1,
          'obviously': 1,
          'sick': 1,
          'needy': 1,
          'child': 1,
          'raised': 1,
          'drunken': 1,
          'father': 1,
          'stephen': 1,
          'suicidal': 1,
          'mother': 1,
          'aisling': 1,
          'osullivan': 1,
          'completely': 1,
          'sympathize': 1,
          'emotional': 1,
          'scenes': 1,
          'lack': 1,
          'better': 1,
          'word': 1,
          'bad': 1,
          'deeds': 1,
          'incredibly': 1,
          'shocking': 1,
          'brutality': 1,
          'malicious': 1,
          'glee': 1,
          'performs': 1,
          'nhowever': 1,
          'boys': 1,
          'power': 1,
          'undeniable': 1,
          'unforgettableperhaps': 1,
          'nwhat': 1,
          'makes': 1,
          'unsettling': 1,
          'overall': 1,
          'winkwink': 1,
          'matteroffact': 1,
          'attitude': 1,
          'everything': 1,
          'expressed': 1,
          'cheeky': 1,
          'voiceover': 1,
          'narration': 1,
          'delivered': 1,
          'adult': 1,
          'nthink': 1,
          'heavenly': 1,
          'creatures': 1,
          'played': 1,
          'largely': 1,
          'laughs': 1,
          'youll': 1,
          'sort': 1,
          'understand': 1,
          'nanchoring': 1,
          'astonishing': 1,
          'debut': 1,
          'performance': 1,
          'love': 1,
          'hate': 1,
          'take': 1,
          'eyes': 1,
          'nthe': 1,
          'boy': 1,
          'truly': 1,
          'twisted': 1,
          'unusual': 1,
          'bound': 1,
          'make': 1,
          'anyone': 1,
          'uncomfortable': 1,
          'nin': 1,
          'lobby': 1,
          'screening': 1,
          'overheard': 1,
          'man': 1,
          'raving': 1,
          'great': 1,
          'heard': 1,
          'particularly': 1,
          'offended': 1,
          'woman': 1,
          'say': 1,
          'disgust': 1,
          'movie': 1,
          'unfunny': 1,
          'n': 1,
          'didnt': 1,
          'expect': 1,
          'nits': 1,
          'like': 1,
          'something': 1,
          'chase': 1,
          'long': 1,
          'get': 1,
          'ni': 1,
          'still': 1,
          'nmichael': 1,
          'jordan': 1,
          'winning': 1,
          'first': 1,
          'nba': 1,
          'championship': 1,
          '1991': 1,
          'nmy': 1,
          'thoughts': 1,
          'meeting': 1,
          'november': 1,
          '21': 1,
          '1997': 1,
          'npos': 1}),
 Counter({'detectives': 4,
          'one': 3,
          'partner': 3,
          'two': 3,
          'action': 3,
          'team': 2,
          'sgt': 2,
          'riggs': 2,
          'glover': 2,
          'asks': 2,
          'pesci': 2,
          'rock': 2,
          'go': 2,
          'film': 2,
          'freighter': 2,
          'crime': 2,
          'lord': 2,
          'theyre': 2,
          'jet': 2,
          'li': 2,
          'nothing': 2,
          'less': 2,
          'make': 2,
          'terrific': 2,
          'explosions': 2,
          'summer': 2,
          'get': 2,
          'fight': 2,
          'guns': 2,
          'funny': 2,
          'mano': 2,
          'inseparable': 1,
          'nmartin': 1,
          'mel': 1,
          'gibson': 1,
          'nroger': 1,
          'murtaugh': 1,
          'danny': 1,
          'nlets': 1,
          'say': 1,
          'strip': 1,
          'boxer': 1,
          'shorts': 1,
          'run': 1,
          'middle': 1,
          'road': 1,
          'flapping': 1,
          'arms': 1,
          'feverishly': 1,
          'cackling': 1,
          'like': 1,
          'chicken': 1,
          'create': 1,
          'distraction': 1,
          'actually': 1,
          'nthe': 1,
          'familiar': 1,
          'lethal': 1,
          'weapon': 1,
          'family': 1,
          'back': 1,
          'including': 1,
          'rene': 1,
          'russo': 1,
          'expectant': 1,
          'mother': 1,
          'child': 1,
          'joe': 1,
          'sopranalike': 1,
          'foulmouthed': 1,
          'former': 1,
          'accountant': 1,
          'decided': 1,
          'become': 1,
          'private': 1,
          'eye': 1,
          'nnew': 1,
          'chris': 1,
          'also': 1,
          'fasttalking': 1,
          'coming': 1,
          'detective': 1,
          'ntrouble': 1,
          'seems': 1,
          'follow': 1,
          'veteran': 1,
          'ever': 1,
          'exception': 1,
          'neven': 1,
          'taking': 1,
          'leisurely': 1,
          'boat': 1,
          'ride': 1,
          'somehow': 1,
          'manage': 1,
          'collide': 1,
          'ship': 1,
          'nwe': 1,
          'ominous': 1,
          'music': 1,
          'clues': 1,
          'us': 1,
          'confrontation': 1,
          'happen': 1,
          'ngunfire': 1,
          'ensues': 1,
          'want': 1,
          'learn': 1,
          'questioning': 1,
          'chinatown': 1,
          'nalthough': 1,
          'dont': 1,
          'know': 1,
          'looking': 1,
          'inquisitiveness': 1,
          'causes': 1,
          'bad': 1,
          'guys': 1,
          'take': 1,
          'nand': 1,
          'theres': 1,
          'plenty': 1,
          'movies': 1,
          'nled': 1,
          'fighting': 1,
          'sensation': 1,
          'whose': 1,
          'martial': 1,
          'arts': 1,
          'skill': 1,
          'impressive': 1,
          'sure': 1,
          'finds': 1,
          'nli': 1,
          'ruthless': 1,
          'approach': 1,
          'kill': 1,
          'anyone': 1,
          'point': 1,
          'develops': 1,
          'enormous': 1,
          'disdain': 1,
          'nthere': 1,
          'car': 1,
          'chases': 1,
          'gunshot': 1,
          'galore': 1,
          'nits': 1,
          'recipe': 1,
          'followed': 1,
          'letter': 1,
          'result': 1,
          'pure': 1,
          'unadulterated': 1,
          'fun': 1,
          'nbut': 1,
          'even': 1,
          'many': 1,
          'boring': 1,
          'nto': 1,
          'counter': 1,
          'treated': 1,
          'several': 1,
          'amazingly': 1,
          'choreographed': 1,
          'sequences': 1,
          'nluckily': 1,
          'hed': 1,
          'rather': 1,
          'handtohand': 1,
          'instead': 1,
          'firing': 1,
          'nmeanwhile': 1,
          'arent': 1,
          'reloading': 1,
          'running': 1,
          'fireballs': 1,
          'engaged': 1,
          'sophomoric': 1,
          'banter': 1,
          'silly': 1,
          'conversations': 1,
          'provide': 1,
          'nice': 1,
          'diversion': 1,
          'hail': 1,
          'bullets': 1,
          'neverybody': 1,
          'gets': 1,
          'shtick': 1,
          'nrusso': 1,
          'screams': 1,
          'delivery': 1,
          'bits': 1,
          'hes': 1,
          'interrogated': 1,
          'given': 1,
          'laughing': 1,
          'gas': 1,
          'discussing': 1,
          'drawbacks': 1,
          'cellular': 1,
          'phones': 1,
          'ngibson': 1,
          'always': 1,
          'sync': 1,
          'moves': 1,
          'brisk': 1,
          'pace': 1,
          'final': 1,
          'nscore': 1,
          'old': 1,
          'guard': 1,
          'npos': 1}),
 Counter({'homer': 5,
          'sky': 4,
          'nthe': 4,
          'mine': 4,
          'homers': 4,
          'however': 3,
          'like': 3,
          'true': 3,
          'boys': 3,
          'father': 3,
          'role': 3,
          'moments': 3,
          'dramatic': 2,
          'certain': 2,
          'change': 2,
          'style': 2,
          'instead': 2,
          'characters': 2,
          'struggle': 2,
          'times': 2,
          'turn': 2,
          'october': 2,
          'welcome': 2,
          'movie': 2,
          'town': 2,
          'nits': 2,
          'wellknown': 2,
          'cooper': 2,
          'world': 2,
          'see': 2,
          'history': 2,
          'teacher': 2,
          'dern': 2,
          'workers': 2,
          'noctober': 2,
          'film': 2,
          'star': 2,
          'certainly': 2,
          'nhe': 2,
          'life': 2,
          'plot': 2,
          'need': 2,
          'likeable': 2,
          'since': 1,
          '1990': 1,
          'picture': 1,
          'undergone': 1,
          'nnow': 1,
          'emphasizing': 1,
          'feelgood': 1,
          'stories': 1,
          'replete': 1,
          'noble': 1,
          'virtues': 1,
          'screenplays': 1,
          'direction': 1,
          'point': 1,
          'toward': 1,
          'human': 1,
          'sorrow': 1,
          'nthis': 1,
          'realist': 1,
          'tendancy': 1,
          'inspiring': 1,
          '1993s': 1,
          'schindlers': 1,
          'list': 1,
          'shows': 1,
          'nmost': 1,
          'todays': 1,
          'mainstream': 1,
          'drama': 1,
          'creates': 1,
          'overabundance': 1,
          'emoting': 1,
          'members': 1,
          'audience': 1,
          'nthats': 1,
          'pictures': 1,
          'throwback': 1,
          'good': 1,
          'ol': 1,
          'dramas': 1,
          'yesteryear': 1,
          'relief': 1,
          'contemporary': 1,
          'cinema': 1,
          'based': 1,
          'story': 1,
          'hickam': 1,
          'jake': 1,
          'gyllenhaal': 1,
          'teenager': 1,
          '1950s': 1,
          'company': 1,
          'coalwood': 1,
          'west': 1,
          'virginia': 1,
          'fact': 1,
          'make': 1,
          'name': 1,
          'ones': 1,
          'get': 1,
          'football': 1,
          'scholarships': 1,
          'rest': 1,
          'grow': 1,
          'work': 1,
          'coal': 1,
          'run': 1,
          'chris': 1,
          'place': 1,
          'nafter': 1,
          'watching': 1,
          'soviet': 1,
          'satellite': 1,
          'sputnik': 1,
          'shoot': 1,
          'across': 1,
          '1957': 1,
          'feels': 1,
          'connection': 1,
          'outside': 1,
          'puts': 1,
          'anyone': 1,
          'could': 1,
          'look': 1,
          'thing': 1,
          'ndrafting': 1,
          'two': 1,
          'best': 1,
          'friends': 1,
          'brainiac': 1,
          'outcast': 1,
          'begins': 1,
          'construct': 1,
          'rockets': 1,
          'nwith': 1,
          'help': 1,
          'miss': 1,
          'riley': 1,
          'laura': 1,
          'several': 1,
          'four': 1,
          'soon': 1,
          'bound': 1,
          'great': 1,
          'things': 1,
          'skillfully': 1,
          'crafted': 1,
          'credit': 1,
          'must': 1,
          'go': 1,
          'director': 1,
          'joe': 1,
          'johnston': 1,
          'njohnston': 1,
          'whose': 1,
          'career': 1,
          'industry': 1,
          'includes': 1,
          'everything': 1,
          'directing': 1,
          'titles': 1,
          'jumanji': 1,
          'rocketeer': 1,
          'uncredited': 1,
          'death': 1,
          'trooper': 1,
          'wars': 1,
          'knows': 1,
          'hes': 1,
          'molds': 1,
          'also': 1,
          'fun': 1,
          'watch': 1,
          'straightforward': 1,
          'robust': 1,
          'push': 1,
          'barriers': 1,
          'adopts': 1,
          'conservative': 1,
          'filmmaking': 1,
          'enhances': 1,
          'films': 1,
          'charm': 1,
          'nhis': 1,
          'finesse': 1,
          'brings': 1,
          'elements': 1,
          'might': 1,
          'otherwise': 1,
          'lost': 1,
          'relationships': 1,
          'various': 1,
          'silent': 1,
          'mother': 1,
          'cast': 1,
          'well': 1,
          'chosen': 1,
          'although': 1,
          'bright': 1,
          'spots': 1,
          'supporting': 1,
          'roles': 1,
          'nlaura': 1,
          'jurassic': 1,
          'park': 1,
          'lends': 1,
          'strong': 1,
          'performance': 1,
          'giving': 1,
          'support': 1,
          'guidance': 1,
          'nher': 1,
          'instantly': 1,
          'nchris': 1,
          'horse': 1,
          'whisperer': 1,
          'less': 1,
          'even': 1,
          'downright': 1,
          'despicable': 1,
          'gives': 1,
          'gravity': 1,
          'nhes': 1,
          'definitely': 1,
          'driving': 1,
          'force': 1,
          'humane': 1,
          'give': 1,
          'piece': 1,
          'dynamic': 1,
          'commendable': 1,
          'script': 1,
          'generally': 1,
          'cheerful': 1,
          'projecting': 1,
          'endeavors': 1,
          'lighthearted': 1,
          'manner': 1,
          'nthere': 1,
          'becomes': 1,
          'predictable': 1,
          'train': 1,
          'tracks': 1,
          'scene': 1,
          'sacrifices': 1,
          'orginality': 1,
          'come': 1,
          'emotional': 1,
          'twist': 1,
          'nit': 1,
          'highlights': 1,
          'essence': 1,
          'youth': 1,
          'exceptional': 1,
          'job': 1,
          'forgiven': 1,
          'missteps': 1,
          'success': 1,
          'audiences': 1,
          'nalthough': 1,
          'doesnt': 1,
          'appeal': 1,
          'current': 1,
          'teen': 1,
          'flicks': 1,
          'varsity': 1,
          'blues': 1,
          'shes': 1,
          'holds': 1,
          'undeniable': 1,
          'quality': 1,
          'older': 1,
          'crowds': 1,
          'lean': 1,
          'towards': 1,
          'genre': 1,
          'one': 1,
          'everyone': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'good': 4,
          'blues': 4,
          'problems': 4,
          'john': 3,
          'really': 3,
          'music': 3,
          'brothers': 2,
          'sing': 2,
          'another': 2,
          'film': 2,
          'mean': 2,
          'less': 2,
          'great': 2,
          'musicians': 2,
          'n': 2,
          'big': 1,
          'surprise': 1,
          'trailer': 1,
          'hinted': 1,
          'pulled': 1,
          'impossible': 1,
          'making': 1,
          'movie': 1,
          'without': 1,
          'jake': 1,
          'belushi': 1,
          'dumb': 1,
          'idea': 1,
          'hope': 1,
          'nthey': 1,
          'replaced': 1,
          'fine': 1,
          'nnot': 1,
          'goodman': 1,
          'didnt': 1,
          'much': 1,
          'anything': 1,
          'brilliant': 1,
          'actor': 1,
          'joe': 1,
          'morton': 1,
          'fourth': 1,
          'brother': 1,
          'j': 1,
          'evan': 1,
          'bonifant': 1,
          'whos': 1,
          'ten': 1,
          'nthis': 1,
          'fears': 1,
          'hes': 1,
          'dancer': 1,
          'plays': 1,
          'harmonica': 1,
          'although': 1,
          'may': 1,
          'dubbed': 1,
          'nthings': 1,
          'intellectually': 1,
          'bothered': 1,
          'like': 1,
          'mission': 1,
          'god': 1,
          'everyone': 1,
          'richer': 1,
          'filmed': 1,
          'chicago': 1,
          'gave': 1,
          'nim': 1,
          'quite': 1,
          'pleased': 1,
          'car': 1,
          'pileups': 1,
          'meant': 1,
          'landis': 1,
          'seems': 1,
          'lost': 1,
          'interest': 1,
          'whole': 1,
          'thing': 1,
          'ntheres': 1,
          'early': 1,
          'crashes': 1,
          'one': 1,
          'huge': 1,
          'pileup': 1,
          'stops': 1,
          'nits': 1,
          'none': 1,
          'first': 1,
          'cab': 1,
          'calloways': 1,
          'song': 1,
          'actually': 1,
          'look': 1,
          'dull': 1,
          'theres': 1,
          'ever': 1,
          'tons': 1,
          'showing': 1,
          'exception': 1,
          'johnny': 1,
          'lang': 1,
          'cant': 1,
          'job': 1,
          'real': 1,
          'special': 1,
          'effects': 1,
          'nthese': 1,
          'superfluous': 1,
          'waste': 1,
          'money': 1,
          'nsince': 1,
          'isnt': 1,
          'well': 1,
          'could': 1,
          'possibility': 1,
          'sequel': 1,
          'want': 1,
          'see': 1,
          'bluegrass': 1,
          'version': 1,
          'riders': 1,
          'sky': 1,
          'even': 1,
          'better': 1,
          'rawhide': 1,
          'http': 1,
          'www': 1,
          'geocities': 1,
          'comhollywoodacademy8034': 1,
          'nremove': 1,
          'spam': 1,
          'reply': 1,
          'drive': 1,
          'carefully': 1,
          'recklessly': 1,
          'mama': 1,
          'childs': 1,
          'toy': 1,
          'excercise': 1,
          'take': 1,
          'walking': 1,
          'behind': 1,
          'coffins': 1,
          'friends': 1,
          'took': 1,
          'exercise': 1,
          'npeter': 1,
          'otoole': 1,
          'npos': 1}),
 Counter({'return': 8,
          'nthe': 7,
          'film': 6,
          'oldfashioned': 5,
          'hollywood': 5,
          'love': 5,
          'grace': 5,
          'going': 4,
          'way': 4,
          'nwe': 4,
          'nfrom': 4,
          'family': 4,
          'heart': 4,
          'many': 3,
          'romance': 3,
          'romances': 3,
          'nit': 3,
          'bonnie': 3,
          'hunt': 3,
          'chicago': 3,
          'bob': 3,
          'characters': 3,
          'hint': 3,
          'know': 3,
          'driver': 3,
          'much': 3,
          'fox': 3,
          'mulder': 3,
          'entire': 3,
          'story': 3,
          'critics': 2,
          'movie': 2,
          'nwas': 2,
          'feel': 2,
          'two': 2,
          'real': 2,
          'see': 2,
          'ni': 2,
          'dont': 2,
          'fellow': 2,
          'perceive': 2,
          'old': 2,
          'couldnt': 2,
          'endearing': 2,
          'help': 2,
          'charm': 2,
          'hunts': 2,
          'david': 2,
          'duchovny': 2,
          'tell': 2,
          'sweet': 2,
          'scenes': 2,
          'people': 2,
          'yet': 2,
          'seems': 2,
          'fairytale': 2,
          'little': 2,
          'screen': 2,
          'excellent': 2,
          'job': 2,
          'actors': 2,
          'actually': 2,
          'however': 2,
          'like': 2,
          'nduchovny': 2,
          'shows': 2,
          'nothing': 2,
          'line': 2,
          'main': 2,
          'might': 2,
          'heard': 1,
          'describe': 1,
          'kept': 1,
          'asking': 1,
          'exactly': 1,
          'nwhat': 1,
          'made': 1,
          'oldhollywood': 1,
          'tunes': 1,
          'sinatra': 1,
          'etc': 1,
          'legendary': 1,
          'singers': 1,
          'senior': 1,
          'citizens': 1,
          'constantly': 1,
          'harp': 1,
          'glamorous': 1,
          'sophisticated': 1,
          'charisma': 1,
          'leads': 1,
          'neven': 1,
          'cant': 1,
          'say': 1,
          'gotten': 1,
          'closer': 1,
          'answer': 1,
          'havent': 1,
          'think': 1,
          'ive': 1,
          'seen': 1,
          'classified': 1,
          'nwhich': 1,
          'leaves': 1,
          'option': 1,
          'vaguely': 1,
          'agreeing': 1,
          'sense': 1,
          'reminded': 1,
          'younger': 1,
          'generation': 1,
          'venerated': 1,
          'magic': 1,
          'cinnamon': 1,
          'spice': 1,
          'apple': 1,
          'cider': 1,
          'traditional': 1,
          'magical': 1,
          'knew': 1,
          'daring': 1,
          'surprising': 1,
          'plot': 1,
          'twists': 1,
          'cynical': 1,
          'modern': 1,
          'apt': 1,
          'throw': 1,
          'told': 1,
          'simplicity': 1,
          'tenderness': 1,
          'director': 1,
          'sparkle': 1,
          'despite': 1,
          'shortcomings': 1,
          'owes': 1,
          'lot': 1,
          'direction': 1,
          'first': 1,
          'birds': 1,
          'eye': 1,
          'view': 1,
          'zooming': 1,
          'slowly': 1,
          'toward': 1,
          'insignificant': 1,
          'rueland': 1,
          'accompanied': 1,
          'ballad': 1,
          'something': 1,
          'truthful': 1,
          'fantasy': 1,
          'nreal': 1,
          'act': 1,
          'arent': 1,
          'nice': 1,
          'want': 1,
          'believe': 1,
          'folks': 1,
          'existence': 1,
          'premise': 1,
          'sprung': 1,
          'rooting': 1,
          'common': 1,
          'folk': 1,
          'simultaneously': 1,
          'lends': 1,
          'credit': 1,
          'scenario': 1,
          'tinges': 1,
          'everyday': 1,
          'urban': 1,
          'life': 1,
          'ethereal': 1,
          'neverything': 1,
          'ordinaryyet': 1,
          'beautifulin': 1,
          'festive': 1,
          'restaurant': 1,
          'minnie': 1,
          'bobs': 1,
          'wardrobes': 1,
          'eloquent': 1,
          'notinahurry': 1,
          'progress': 1,
          'storyline': 1,
          'dainty': 1,
          'watercolors': 1,
          'paints': 1,
          'animal': 1,
          'stars': 1,
          'interact': 1,
          'beautiful': 1,
          'part': 1,
          'n': 1,
          'done': 1,
          'assembling': 1,
          'together': 1,
          'group': 1,
          'blend': 1,
          'effortlessly': 1,
          'audience': 1,
          'trouble': 1,
          'believing': 1,
          'rambunctious': 1,
          'exist': 1,
          'care': 1,
          'laugh': 1,
          'cry': 1,
          'concerned': 1,
          'boy': 1,
          'pick': 1,
          'cursing': 1,
          'father': 1,
          'nwhatever': 1,
          'brought': 1,
          'naturalism': 1,
          'ndisappointingly': 1,
          'alan': 1,
          'griers': 1,
          'charlie': 1,
          'flatlywritten': 1,
          'laudable': 1,
          'shaking': 1,
          'persona': 1,
          'costars': 1,
          'rarely': 1,
          'special': 1,
          'agent': 1,
          'ninstead': 1,
          'normal': 1,
          'guy': 1,
          'falls': 1,
          'delight': 1,
          'show': 1,
          'span': 1,
          'season': 1,
          'xfiles': 1,
          'understatement': 1,
          'selfdeprecation': 1,
          'actor': 1,
          'showcases': 1,
          'considerable': 1,
          'comedic': 1,
          'talent': 1,
          'nminnie': 1,
          'engaging': 1,
          'always': 1,
          'innocent': 1,
          'good': 1,
          'offer': 1,
          'nthough': 1,
          'unlikely': 1,
          'pair': 1,
          'gradually': 1,
          'warm': 1,
          'progresses': 1,
          'nwhile': 1,
          'functions': 1,
          'remarkably': 1,
          'laughoutloud': 1,
          'comedy': 1,
          'romantic': 1,
          'scenic': 1,
          'tour': 1,
          'tearjerker': 1,
          'set': 1,
          'ends': 1,
          'nowhere': 1,
          'develop': 1,
          'climax': 1,
          'hinges': 1,
          'recipient': 1,
          'wifes': 1,
          'already': 1,
          'theres': 1,
          'happy': 1,
          'ending': 1,
          'spend': 1,
          'enjoyably': 1,
          'straight': 1,
          'towards': 1,
          'point': 1,
          'nas': 1,
          'result': 1,
          'click': 1,
          'almost': 1,
          'quicklyyes': 1,
          'shes': 1,
          'supposed': 1,
          'exwifes': 1,
          'everythingit': 1,
          'effortless': 1,
          'subject': 1,
          'unfortunately': 1,
          'overused': 1,
          'distract': 1,
          'turmoil': 1,
          'whose': 1,
          'meat': 1,
          'nhowever': 1,
          'spirit': 1,
          'wont': 1,
          'picky': 1,
          'tells': 1,
          'stories': 1,
          'loved': 1,
          'knowing': 1,
          'labor': 1,
          'bottom': 1,
          'remarkable': 1,
          'sweetness': 1,
          'sincerity': 1,
          'touch': 1,
          'ways': 1,
          'hadnt': 1,
          'imagined': 1,
          'npos': 1}),
 Counter({'film': 12,
          'sam': 11,
          'kelly': 8,
          'suzie': 6,
          'character': 6,
          'richards': 4,
          'nit': 4,
          'first': 4,
          'mother': 4,
          'gives': 4,
          'performance': 4,
          'things': 3,
          'dillon': 3,
          'senior': 3,
          'guidance': 3,
          'counselor': 3,
          'van': 3,
          'ryan': 3,
          'raped': 3,
          'nthis': 3,
          'sandra': 3,
          'nhowever': 3,
          'revealed': 3,
          'wild': 2,
          'thriller': 2,
          'denise': 2,
          'campbell': 2,
          'issues': 2,
          'sex': 2,
          'nthe': 2,
          'blue': 2,
          'bay': 2,
          'many': 2,
          'rich': 2,
          'towns': 2,
          'beginning': 2,
          'characters': 2,
          'lombardo': 2,
          'ray': 2,
          'duquette': 2,
          'gloria': 2,
          'perez': 2,
          'toller': 2,
          'head': 2,
          'cheerleader': 2,
          'see': 2,
          'girls': 2,
          'none': 2,
          'well': 2,
          'kellys': 2,
          'never': 2,
          'like': 2,
          'obviously': 2,
          'obvious': 2,
          'seem': 2,
          'making': 2,
          'scream': 2,
          'plays': 2,
          'adding': 2,
          'sexy': 2,
          'interesting': 2,
          'relationship': 2,
          'press': 2,
          'nin': 2,
          'looks': 2,
          'adds': 2,
          'one': 2,
          'much': 2,
          'murray': 2,
          'good': 2,
          'plot': 2,
          'suspenseful': 1,
          'starring': 1,
          'matt': 1,
          'neve': 1,
          'deals': 1,
          'love': 1,
          'murder': 1,
          'betrayal': 1,
          'setting': 1,
          'town': 1,
          'named': 1,
          'consists': 1,
          'swamps': 1,
          'slums': 1,
          'hand': 1,
          'estates': 1,
          'owned': 1,
          'different': 1,
          'benefactors': 1,
          'opens': 1,
          'seminar': 1,
          'ritzy': 1,
          'expensive': 1,
          'high': 1,
          'school': 1,
          'meet': 1,
          'core': 1,
          'ntheres': 1,
          'police': 1,
          'officers': 1,
          'dark': 1,
          'mysterious': 1,
          'popular': 1,
          'nwe': 1,
          'smitten': 1,
          'handsome': 1,
          'nthroughout': 1,
          'portion': 1,
          'far': 1,
          'go': 1,
          'get': 1,
          'accuses': 1,
          'rape': 1,
          'nshortly': 1,
          'confesses': 1,
          'pushes': 1,
          'craving': 1,
          'stop': 1,
          'nothing': 1,
          'convicted': 1,
          'nduring': 1,
          'trial': 1,
          'teary': 1,
          'confession': 1,
          'later': 1,
          'either': 1,
          'vengeful': 1,
          'plan': 1,
          'nafter': 1,
          'cleared': 1,
          'pays': 1,
          'substantial': 1,
          'amount': 1,
          'cash': 1,
          'order': 1,
          'sue': 1,
          'together': 1,
          'starts': 1,
          'reveal': 1,
          'honest': 1,
          'hidden': 1,
          'agenda': 1,
          'nmatt': 1,
          'stars': 1,
          'nsam': 1,
          'kind': 1,
          'guy': 1,
          'every': 1,
          'woman': 1,
          'would': 1,
          'sink': 1,
          'claws': 1,
          'knows': 1,
          'uses': 1,
          'advantage': 1,
          'nhe': 1,
          'isnt': 1,
          'best': 1,
          'actors': 1,
          'give': 1,
          'convincing': 1,
          'talents': 1,
          'rendered': 1,
          'useless': 1,
          'near': 1,
          'end': 1,
          'look': 1,
          'though': 1,
          'lost': 1,
          'ethics': 1,
          'principles': 1,
          'although': 1,
          'start': 1,
          'place': 1,
          'nneve': 1,
          'people': 1,
          'relate': 1,
          '2': 1,
          'outcast': 1,
          'nsuzie': 1,
          'serious': 1,
          'deal': 1,
          'scene': 1,
          'ncampbell': 1,
          'successful': 1,
          'slightest': 1,
          'bit': 1,
          'charm': 1,
          'seemingly': 1,
          'repulsive': 1,
          'fun': 1,
          'watch': 1,
          'nplaying': 1,
          'nkelly': 1,
          'typical': 1,
          'thinks': 1,
          'man': 1,
          'choses': 1,
          'sexpot': 1,
          'compares': 1,
          'contrasts': 1,
          'ndenise': 1,
          'still': 1,
          'hot': 1,
          'starship': 1,
          'troopers': 1,
          'entire': 1,
          'paper': 1,
          'thin': 1,
          'little': 1,
          'spice': 1,
          'ultimately': 1,
          'makes': 1,
          'dominating': 1,
          'nkevin': 1,
          'bacon': 1,
          'fair': 1,
          'performances': 1,
          'boring': 1,
          'predictable': 1,
          'depth': 1,
          'story': 1,
          'nstill': 1,
          'doesnt': 1,
          'gain': 1,
          'bacons': 1,
          'name': 1,
          'supporting': 1,
          'cast': 1,
          'theresa': 1,
          'russell': 1,
          'oversexed': 1,
          'daphne': 1,
          'rubinvega': 1,
          'unappealing': 1,
          'cop': 1,
          'bill': 1,
          'shines': 1,
          'sams': 1,
          'lawyer': 1,
          'ken': 1,
          'bowden': 1,
          'nhats': 1,
          'perfect': 1,
          'touch': 1,
          'comedy': 1,
          'nalthough': 1,
          'displayed': 1,
          'erotic': 1,
          'eroticism': 1,
          'portrayed': 1,
          'taste': 1,
          'kept': 1,
          'minimum': 1,
          'focuses': 1,
          'relationships': 1,
          'truly': 1,
          'worth': 1,
          'seeing': 1,
          'looking': 1,
          'movie': 1,
          'thick': 1,
          'filled': 1,
          'share': 1,
          'twists': 1,
          'npos': 1}),
 Counter({'alien': 18,
          'film': 10,
          'nthe': 9,
          'aliens': 9,
          '3': 7,
          'ripley': 7,
          'nthis': 6,
          'much': 4,
          'see': 4,
          'prisoners': 4,
          'new': 4,
          'ni': 4,
          'score': 4,
          'nand': 3,
          'scene': 3,
          'sulaco': 3,
          'leads': 3,
          'vessel': 3,
          '109': 3,
          'years': 3,
          'planet': 3,
          'would': 3,
          'also': 3,
          '4': 3,
          'another': 3,
          'fincher': 3,
          'spoilers': 2,
          'review': 2,
          'two': 2,
          'films': 2,
          'seen': 2,
          'story': 2,
          'left': 2,
          'one': 2,
          'egg': 2,
          'nin': 2,
          'find': 2,
          'facehugger': 2,
          'escape': 2,
          'crash': 2,
          'fury': 2,
          'guess': 2,
          'finds': 2,
          'doctor': 2,
          'sex': 2,
          'nit': 2,
          'fact': 2,
          'even': 2,
          'nthere': 2,
          'say': 2,
          'back': 2,
          'excellent': 2,
          'quite': 2,
          'good': 2,
          'nalien': 2,
          'music': 2,
          'done': 2,
          'direction': 2,
          'come': 2,
          'lends': 2,
          'times': 2,
          'ending': 2,
          'minor': 1,
          'plot': 1,
          'major': 1,
          'previous': 1,
          'unique': 1,
          'styles': 1,
          'ridley': 1,
          'scotts': 1,
          'stylistic': 1,
          'suspense': 1,
          'njames': 1,
          'camerons': 1,
          'action': 1,
          'liked': 1,
          'separately': 1,
          'nnow': 1,
          'right': 1,
          'nunlike': 1,
          'requires': 1,
          'important': 1,
          'picks': 1,
          'exactly': 1,
          'survivors': 1,
          'expedition': 1,
          'lv426': 1,
          'returning': 1,
          'home': 1,
          'battling': 1,
          'beating': 1,
          'climactic': 1,
          'fight': 1,
          'mother': 1,
          'behind': 1,
          'item': 1,
          'opening': 1,
          'sequence': 1,
          'hatch': 1,
          'quarry': 1,
          'fire': 1,
          'aboard': 1,
          'injured': 1,
          'jettison': 1,
          'hypersleep': 1,
          'tubes': 1,
          'lands': 1,
          'neveryone': 1,
          'killed': 1,
          'except': 1,
          'jettisoned': 1,
          'survives': 1,
          'nfury': 1,
          'exminingmaximum': 1,
          'security': 1,
          'prison': 1,
          'nwhen': 1,
          'closed': 1,
          'lifer': 1,
          'decided': 1,
          'stay': 1,
          'live': 1,
          'remaining': 1,
          'nall': 1,
          'men': 1,
          'woman': 1,
          'many': 1,
          'nripleys': 1,
          'arrival': 1,
          'sparks': 1,
          'problem': 1,
          'inmates': 1,
          'nas': 1,
          'haircut': 1,
          'sport': 1,
          'infestation': 1,
          'lice': 1,
          'nbeing': 1,
          'exprison': 1,
          'means': 1,
          'way': 1,
          'weapons': 1,
          'nso': 1,
          'face': 1,
          'go': 1,
          'detail': 1,
          'happens': 1,
          'loose': 1,
          'believes': 1,
          'ripleys': 1,
          'outstanding': 1,
          'nshe': 1,
          'comfort': 1,
          'arms': 1,
          'colonys': 1,
          'nyes': 1,
          '57': 1,
          'gratuitous': 1,
          'dont': 1,
          'kiss': 1,
          'well': 1,
          'na': 1,
          'sweaty': 1,
          'worked': 1,
          'context': 1,
          'lot': 1,
          'gore': 1,
          'either': 1,
          'earlier': 1,
          'sports': 1,
          'legs': 1,
          'wont': 1,
          'us': 1,
          'believe': 1,
          'things': 1,
          'cycle': 1,
          'sure': 1,
          'explored': 1,
          'nsigourney': 1,
          'weaver': 1,
          'provides': 1,
          'performance': 1,
          'character': 1,
          'nher': 1,
          'autopsy': 1,
          'newt': 1,
          'enough': 1,
          'garnish': 1,
          'academy': 1,
          'nomination': 1,
          'rest': 1,
          'cast': 1,
          'nnotably': 1,
          'charles': 1,
          'dance': 1,
          'momentary': 1,
          'distinct': 1,
          'look': 1,
          'due': 1,
          'largely': 1,
          'director': 1,
          'david': 1,
          'nmr': 1,
          'directed': 1,
          'videos': 1,
          'commercials': 1,
          'incredible': 1,
          'job': 1,
          'nhis': 1,
          'makes': 1,
          'life': 1,
          'ways': 1,
          'nfor': 1,
          'mr': 1,
          'long': 1,
          'prosperous': 1,
          'career': 1,
          'ahead': 1,
          'newcomer': 1,
          'industry': 1,
          'nelliot': 1,
          'goldenthal': 1,
          'created': 1,
          'deeply': 1,
          'moving': 1,
          'claustrophobic': 1,
          'setting': 1,
          'series': 1,
          'set': 1,
          'time': 1,
          'rip': 1,
          'star': 1,
          'trek': 1,
          'ii': 1,
          'james': 1,
          'horners': 1,
          'choral': 1,
          'old': 1,
          'style': 1,
          'ennio': 1,
          'morricone': 1,
          'scoring': 1,
          'great': 1,
          'thought': 1,
          'hollywood': 1,
          'screw': 1,
          'played': 1,
          'nicely': 1,
          'ruin': 1,
          'ngo': 1,
          'consider': 1,
          'involved': 1,
          'released': 1,
          'far': 1,
          'season': 1,
          'worthy': 1,
          'successor': 1,
          'make': 1,
          'perhaps': 1,
          'able': 1,
          'yet': 1,
          'take': 1,
          'npos': 1}),
 Counter({'war': 7,
          'henderson': 6,
          'sarajevo': 5,
          'nthe': 5,
          'group': 5,
          'horror': 4,
          'picture': 4,
          'nhe': 4,
          'dangerous': 4,
          'one': 4,
          'emira': 4,
          'nthis': 4,
          'get': 3,
          'com': 3,
          'america': 3,
          'world': 3,
          'events': 3,
          'mother': 3,
          'reporter': 3,
          'help': 3,
          'also': 3,
          'dillane': 3,
          'nhenderson': 3,
          'well': 3,
          'take': 3,
          'place': 3,
          'children': 3,
          'living': 3,
          'movie': 3,
          'tired': 2,
          'video': 2,
          'wafflemovies': 2,
          'film': 2,
          'chance': 2,
          'nin': 2,
          'reminder': 2,
          'years': 2,
          'actual': 2,
          'human': 2,
          'societal': 2,
          'young': 2,
          'bride': 2,
          'way': 2,
          'torn': 2,
          'escape': 2,
          'flynn': 2,
          'harrelson': 2,
          'reporting': 2,
          'carry': 2,
          'cocky': 2,
          'heart': 2,
          'continues': 2,
          'people': 2,
          'michael': 2,
          'girl': 2,
          'finds': 2,
          'delegation': 2,
          'earth': 2,
          'front': 2,
          'lines': 2,
          'taking': 2,
          'without': 2,
          'nhowever': 2,
          'nina': 2,
          'boyce': 2,
          'small': 2,
          'trying': 2,
          'nwinterbottom': 2,
          'scenes': 2,
          'give': 2,
          'thousands': 2,
          'miles': 2,
          'away': 2,
          'room': 2,
          'city': 2,
          'portrayal': 2,
          'reporters': 2,
          'struggle': 2,
          'wonderful': 2,
          'character': 2,
          'nharrelson': 2,
          'roles': 2,
          'men': 2,
          'history': 2,
          'us': 2,
          'hot': 1,
          'new': 1,
          'releases': 1,
          'gone': 1,
          'time': 1,
          'store': 1,
          'nwafflemovies': 1,
          'dedicated': 1,
          'finding': 1,
          'hidden': 1,
          'gems': 1,
          'lie': 1,
          'shelves': 1,
          'neveryweek': 1,
          'nreviews': 1,
          'independent': 1,
          'big': 1,
          'studio': 1,
          'pictures': 1,
          'deserve': 1,
          'second': 1,
          'nhere': 1,
          'sample': 1,
          'review': 1,
          'nwelcome': 1,
          'light': 1,
          'americas': 1,
          'recent': 1,
          'intervention': 1,
          'kosovo': 1,
          'welcome': 1,
          'ignored': 1,
          'nset': 1,
          '1992': 1,
          'based': 1,
          'examines': 1,
          'casualties': 1,
          'opens': 1,
          'family': 1,
          'escorting': 1,
          'wedding': 1,
          'nas': 1,
          'make': 1,
          'street': 1,
          'sniper': 1,
          'shoots': 1,
          'nyet': 1,
          'another': 1,
          'daily': 1,
          'life': 1,
          'never': 1,
          'scene': 1,
          'meet': 1,
          'joe': 1,
          'woody': 1,
          'american': 1,
          'stops': 1,
          'priest': 1,
          'mortally': 1,
          'wounded': 1,
          'church': 1,
          'njoe': 1,
          'good': 1,
          'kind': 1,
          'deeds': 1,
          'doesnt': 1,
          'even': 1,
          'know': 1,
          'nhis': 1,
          'fellow': 1,
          'british': 1,
          'stephen': 1,
          'nmichael': 1,
          'quickly': 1,
          'growing': 1,
          'surrounds': 1,
          'worlds': 1,
          'lack': 1,
          'interest': 1,
          'haunted': 1,
          'memory': 1,
          'altar': 1,
          'boy': 1,
          'witnesses': 1,
          'mothers': 1,
          'death': 1,
          'orphaned': 1,
          'hospital': 1,
          'mortar': 1,
          'attack': 1,
          'citizens': 1,
          'waiting': 1,
          'line': 1,
          'bread': 1,
          'decides': 1,
          'action': 1,
          'united': 1,
          'nations': 1,
          'descends': 1,
          'upon': 1,
          'area': 1,
          'declare': 1,
          'yugoslavia': 1,
          'fourteenth': 1,
          'begins': 1,
          'series': 1,
          'profiling': 1,
          'orphanage': 1,
          'located': 1,
          'ages': 1,
          'fear': 1,
          'care': 1,
          'adult': 1,
          'nduring': 1,
          'visits': 1,
          'befriends': 1,
          'preteen': 1,
          'nuseric': 1,
          'serves': 1,
          'surrogate': 1,
          'baby': 1,
          'roadrunner': 1,
          'promises': 1,
          'harms': 1,
          'gets': 1,
          'nafter': 1,
          'un': 1,
          'leaves': 1,
          'country': 1,
          'rescuing': 1,
          'loses': 1,
          'hope': 1,
          'grabbed': 1,
          'attention': 1,
          'marisa': 1,
          'tomei': 1,
          'childrens': 1,
          'aid': 1,
          'helps': 1,
          'find': 1,
          'homes': 1,
          'yugoslavian': 1,
          'orphans': 1,
          'nunfortunately': 1,
          'babies': 1,
          'wanted': 1,
          'adoption': 1,
          'pledges': 1,
          'england': 1,
          'depart': 1,
          'italy': 1,
          'ncan': 1,
          'complete': 1,
          'trek': 1,
          'countryside': 1,
          'avoid': 1,
          'hostile': 1,
          'troops': 1,
          'gathering': 1,
          'muslims': 1,
          'concentration': 1,
          'camps': 1,
          'beautifully': 1,
          'sensitively': 1,
          'made': 1,
          'ndirector': 1,
          'winterbottom': 1,
          'screenwriter': 1,
          'frank': 1,
          'cottrell': 1,
          'vividly': 1,
          'express': 1,
          'destruction': 1,
          'occurred': 1,
          'nthey': 1,
          'show': 1,
          'destroyed': 1,
          'lives': 1,
          'families': 1,
          'split': 1,
          'desolation': 1,
          'everyone': 1,
          'attempts': 1,
          'cope': 1,
          'best': 1,
          'exemplified': 1,
          'yugoslavians': 1,
          'producer': 1,
          'befriended': 1,
          'twentysomethings': 1,
          'reside': 1,
          'bombed': 1,
          'bar': 1,
          'lifes': 1,
          'simplest': 1,
          'pleasures': 1,
          'amenities': 1,
          'none': 1,
          'accomplished': 1,
          'musician': 1,
          'spends': 1,
          'days': 1,
          'playing': 1,
          'piano': 1,
          'promising': 1,
          'play': 1,
          'concert': 1,
          'declared': 1,
          'nlike': 1,
          'rest': 1,
          'deeply': 1,
          'effected': 1,
          'tries': 1,
          'survive': 1,
          'instead': 1,
          'live': 1,
          'brilliantly': 1,
          'intersplices': 1,
          'news': 1,
          'footage': 1,
          'feel': 1,
          'documentary': 1,
          'keeps': 1,
          'viewer': 1,
          'aware': 1,
          'many': 1,
          'horrors': 1,
          'carried': 1,
          'sit': 1,
          'safely': 1,
          'bolstered': 1,
          'beautiful': 1,
          'cinematography': 1,
          'captures': 1,
          'devastation': 1,
          'hosted': 1,
          '1984': 1,
          'olympics': 1,
          'produce': 1,
          'realistic': 1,
          'covering': 1,
          'atrocities': 1,
          'much': 1,
          'flattering': 1,
          'earlier': 1,
          'nselection': 1,
          'mad': 1,
          'nwe': 1,
          'watch': 1,
          'cover': 1,
          'remain': 1,
          'professionally': 1,
          'detached': 1,
          'question': 1,
          'reason': 1,
          'behind': 1,
          'cares': 1,
          'nstephen': 1,
          'portrays': 1,
          'everyman': 1,
          'caught': 1,
          'middle': 1,
          'extraordinary': 1,
          'ndillane': 1,
          'avoids': 1,
          'making': 1,
          'overly': 1,
          'heroic': 1,
          'preachy': 1,
          'realizes': 1,
          'save': 1,
          'nit': 1,
          'opportunity': 1,
          'suffer': 1,
          'denis': 1,
          'learysandra': 1,
          'bullock': 1,
          'disaster': 1,
          'two': 1,
          'sea': 1,
          'nwoody': 1,
          'prove': 1,
          'finest': 1,
          'versatile': 1,
          'actors': 1,
          'generation': 1,
          'plays': 1,
          'celebrity': 1,
          'gold': 1,
          'allowing': 1,
          'characters': 1,
          'caring': 1,
          'nature': 1,
          'vulnerability': 1,
          'shine': 1,
          'equally': 1,
          'adept': 1,
          'zany': 1,
          'leading': 1,
          'cheers': 1,
          'white': 1,
          'cant': 1,
          'jump': 1,
          'excellent': 1,
          'supporting': 1,
          'ability': 1,
          'serve': 1,
          'long': 1,
          'successful': 1,
          'career': 1,
          'namericas': 1,
          'involvement': 1,
          'comes': 1,
          'seven': 1,
          'nfor': 1,
          'full': 1,
          'understanding': 1,
          'conflict': 1,
          'entire': 1,
          'importantly': 1,
          'opening': 1,
          'provide': 1,
          'lesson': 1,
          'nwar': 1,
          'foreign': 1,
          'concept': 1,
          'nbattles': 1,
          'fought': 1,
          'among': 1,
          'attachment': 1,
          'ntelevised': 1,
          'images': 1,
          'gulf': 1,
          'experience': 1,
          'brings': 1,
          'right': 1,
          'makes': 1,
          'think': 1,
          'outside': 1,
          'something': 1,
          'dont': 1,
          'enough': 1,
          '90s': 1,
          'npos': 1}),
 Counter({'movie': 16,
          'stephane': 11,
          'almost': 9,
          'camille': 9,
          'characters': 9,
          'nthe': 7,
          'nin': 6,
          'nhowever': 6,
          'ni': 6,
          'relationship': 5,
          'people': 4,
          'film': 4,
          'nstephane': 4,
          'violin': 4,
          'love': 4,
          'emotions': 4,
          'see': 4,
          'becomes': 4,
          'development': 4,
          'films': 3,
          'sense': 3,
          'master': 3,
          'music': 3,
          'maxime': 3,
          'controlled': 3,
          'audience': 3,
          'left': 3,
          'violinist': 3,
          'new': 3,
          'two': 3,
          'one': 3,
          'life': 3,
          'due': 3,
          'believe': 3,
          'playing': 3,
          'growth': 3,
          'many': 2,
          'french': 2,
          'closure': 2,
          'nwhile': 2,
          'un': 2,
          'coeur': 2,
          'daniel': 2,
          'auteuil': 2,
          'craft': 2,
          'squash': 2,
          'wonder': 2,
          'emotion': 2,
          'emmanuelle': 2,
          'beart': 2,
          'meet': 2,
          'become': 2,
          'approach': 2,
          'led': 2,
          'may': 2,
          'could': 2,
          'successfully': 2,
          'hints': 2,
          'would': 2,
          'character': 2,
          'nthis': 2,
          'ending': 2,
          'accomplished': 2,
          'ravel': 2,
          'tension': 2,
          'seen': 2,
          'part': 2,
          'beautiful': 2,
          'say': 2,
          'little': 2,
          'attitude': 2,
          'towards': 2,
          'complicated': 2,
          'american': 2,
          'dislike': 1,
          'lack': 1,
          'possibly': 1,
          'shallow': 1,
          'ive': 1,
          'often': 1,
          'desire': 1,
          'epiphany': 1,
          'least': 1,
          'resolution': 1,
          'view': 1,
          'nthere': 1,
          'revelation': 1,
          'en': 1,
          'hiver': 1,
          'traditional': 1,
          'however': 1,
          'incredibly': 1,
          'successful': 1,
          'passionate': 1,
          'dramatization': 1,
          'passiondenying': 1,
          'protagonist': 1,
          'maker': 1,
          'nhe': 1,
          'passionless': 1,
          'surrounds': 1,
          'except': 1,
          'responsible': 1,
          'producing': 1,
          'neven': 1,
          'boss': 1,
          'andre': 1,
          'dussollier': 1,
          'manipulated': 1,
          'association': 1,
          'highlighted': 1,
          'fact': 1,
          'permits': 1,
          'win': 1,
          'close': 1,
          'matches': 1,
          'beginning': 1,
          'closed': 1,
          'solitary': 1,
          'individual': 1,
          'carefully': 1,
          'depth': 1,
          'behind': 1,
          'enigmatic': 1,
          'man': 1,
          'ncamille': 1,
          'kessler': 1,
          'maximes': 1,
          'nmaxime': 1,
          'much': 1,
          'plans': 1,
          'leave': 1,
          'wife': 1,
          'nlike': 1,
          'outwardly': 1,
          'reserved': 1,
          'sacrificing': 1,
          'thought': 1,
          'emerges': 1,
          'nwhen': 1,
          'recognition': 1,
          'bonding': 1,
          'individuals': 1,
          'whereas': 1,
          'submits': 1,
          'wild': 1,
          'interplay': 1,
          'feels': 1,
          'admits': 1,
          'attracted': 1,
          'ignores': 1,
          'feelings': 1,
          'help': 1,
          'present': 1,
          'nas': 1,
          'progresses': 1,
          'polarized': 1,
          'views': 1,
          'another': 1,
          'nthese': 1,
          'similar': 1,
          'approaches': 1,
          'initially': 1,
          'react': 1,
          'circumstance': 1,
          'differently': 1,
          'even': 1,
          'rational': 1,
          'tempestuous': 1,
          'borders': 1,
          'suffering': 1,
          'nervous': 1,
          'breakdown': 1,
          'inability': 1,
          'consummate': 1,
          'perhaps': 1,
          'surprising': 1,
          'considering': 1,
          'vocation': 1,
          'genius': 1,
          'well': 1,
          'teacher': 1,
          'apparently': 1,
          'intolerance': 1,
          'flaws': 1,
          'nconsequently': 1,
          'precision': 1,
          'craftsmen': 1,
          'instrument': 1,
          'longer': 1,
          'plays': 1,
          'contrast': 1,
          'given': 1,
          'years': 1,
          'earlier': 1,
          'aid': 1,
          'manager': 1,
          'progressed': 1,
          'worlds': 1,
          'finest': 1,
          'submerging': 1,
          'nduring': 1,
          'course': 1,
          'evolve': 1,
          'struggle': 1,
          'challenge': 1,
          'attempts': 1,
          'remain': 1,
          'unchanged': 1,
          'subtle': 1,
          'transformation': 1,
          'none': 1,
          'obvious': 1,
          'defeats': 1,
          'included': 1,
          'synopsis': 1,
          'incredible': 1,
          'namerican': 1,
          'movies': 1,
          'rare': 1,
          'exceptions': 1,
          'daresay': 1,
          'foreign': 1,
          'essence': 1,
          'portrayal': 1,
          'including': 1,
          'death': 1,
          'camilles': 1,
          'stepahnes': 1,
          'sure': 1,
          'berardinelli': 1,
          'says': 1,
          'times': 1,
          'difficult': 1,
          'determine': 1,
          'whether': 1,
          'pitied': 1,
          'vilified': 1,
          'auteuils': 1,
          'credit': 1,
          'manages': 1,
          'maintain': 1,
          'uncertainty': 1,
          'judging': 1,
          'stephanes': 1,
          'actions': 1,
          'right': 1,
          'wrong': 1,
          'viewing': 1,
          'accepting': 1,
          'find': 1,
          'appropriate': 1,
          'unfortunately': 1,
          'found': 1,
          'last': 1,
          'ten': 1,
          'minutes': 1,
          'final': 1,
          'scene': 1,
          'unfulfilling': 1,
          'portion': 1,
          'nunfortunately': 1,
          'hurried': 1,
          'soap': 1,
          'operatype': 1,
          'surge': 1,
          'quite': 1,
          'schubert': 1,
          'mozart': 1,
          'day': 1,
          'synergism': 1,
          'ravels': 1,
          'screen': 1,
          'best': 1,
          'ever': 1,
          'directing': 1,
          'wonderful': 1,
          'actors': 1,
          'actresses': 1,
          'excellent': 1,
          'great': 1,
          'sincerity': 1,
          'warmth': 1,
          'nemmanuelle': 1,
          'bearts': 1,
          'personality': 1,
          'nand': 1,
          'needless': 1,
          'must': 1,
          'nbesides': 1,
          'near': 1,
          'criticism': 1,
          'cerebral': 1,
          'happened': 1,
          'changes': 1,
          'occur': 1,
          'happen': 1,
          'deep': 1,
          'psyches': 1,
          'personalities': 1,
          'situations': 1,
          'end': 1,
          'question': 1,
          'accepted': 1,
          'lot': 1,
          'changed': 1,
          'several': 1,
          'possibilities': 1,
          'unsure': 1,
          'director': 1,
          'espousing': 1,
          'summary': 1,
          'solely': 1,
          'develop': 1,
          'process': 1,
          'nwhere': 1,
          'juxtapose': 1,
          'scenes': 1,
          'greater': 1,
          'walk': 1,
          'americans': 1,
          'preconceived': 1,
          'notions': 1,
          'translates': 1,
          'viewed': 1,
          'within': 1,
          'native': 1,
          'culture': 1,
          'bringing': 1,
          'preconceptions': 1,
          'enjoyed': 1,
          'welcome': 1,
          'comments': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'henry': 5,
          'life': 5,
          'money': 4,
          'ncarol': 4,
          'hospital': 3,
          'little': 3,
          'begins': 3,
          'something': 3,
          'carols': 3,
          'heist': 3,
          'elderly': 2,
          'bank': 2,
          'robber': 2,
          'nurse': 2,
          'two': 2,
          'newman': 2,
          'nhe': 2,
          'stashed': 2,
          'away': 2,
          'plan': 2,
          'get': 2,
          'nthis': 2,
          'nwhen': 2,
          'stroke': 2,
          'fiorentino': 2,
          'shes': 2,
          'deadend': 2,
          'wayne': 2,
          'sense': 2,
          'story': 2,
          'nwayne': 2,
          'equally': 2,
          'many': 2,
          'see': 2,
          'nhowever': 2,
          'may': 2,
          'state': 2,
          'maybe': 2,
          'filled': 2,
          'pushing': 2,
          'lake': 2,
          'presence': 2,
          'situation': 2,
          'nhenry': 2,
          'needs': 2,
          'fun': 2,
          'keen': 1,
          'wisdom': 1,
          'naive': 1,
          'ambitions': 1,
          'sexy': 1,
          'partnership': 1,
          'blossoms': 1,
          'fine': 1,
          'components': 1,
          'make': 1,
          'modest': 1,
          'caper': 1,
          'adventure': 1,
          'entitled': 1,
          'paul': 1,
          'famous': 1,
          'criminal': 1,
          'recently': 1,
          'caught': 1,
          'pulled': 1,
          'dozens': 1,
          'successful': 1,
          'heists': 1,
          'probably': 1,
          'small': 1,
          'fortune': 1,
          'nalways': 1,
          'shrewd': 1,
          'thinker': 1,
          'working': 1,
          'jail': 1,
          'involves': 1,
          'years': 1,
          'studying': 1,
          'buddhism': 1,
          'selfhypnosis': 1,
          'prepared': 1,
          'execute': 1,
          'uses': 1,
          'learned': 1,
          'fake': 1,
          'nnow': 1,
          'seemingly': 1,
          'twitching': 1,
          'vegetable': 1,
          'temporarily': 1,
          'transferred': 1,
          'staterun': 1,
          'home': 1,
          'linda': 1,
          'cares': 1,
          'nshes': 1,
          'bright': 1,
          'person': 1,
          'good': 1,
          'heart': 1,
          'nyet': 1,
          'miserable': 1,
          'waste': 1,
          'time': 1,
          'exciting': 1,
          'thing': 1,
          'town': 1,
          'fix': 1,
          'cars': 1,
          'nher': 1,
          'days': 1,
          'facility': 1,
          'spent': 1,
          'leading': 1,
          'wheelchair': 1,
          'calisthenics': 1,
          'nworse': 1,
          'relationship': 1,
          'highschool': 1,
          'sweetheart': 1,
          'dylan': 1,
          'mcdermott': 1,
          'nthey': 1,
          'became': 1,
          'couple': 1,
          'king': 1,
          'queen': 1,
          'prom': 1,
          'nto': 1,
          'made': 1,
          'long': 1,
          'ago': 1,
          'nbut': 1,
          'different': 1,
          'seems': 1,
          'bored': 1,
          'content': 1,
          'enough': 1,
          'stay': 1,
          'put': 1,
          'nwaynes': 1,
          'greatest': 1,
          'ambition': 1,
          'become': 1,
          'night': 1,
          'shift': 1,
          'supervising': 1,
          'foreman': 1,
          'feels': 1,
          'lifeless': 1,
          'patients': 1,
          'never': 1,
          'anywhere': 1,
          'else': 1,
          'doesnt': 1,
          'opportunities': 1,
          'falls': 1,
          'care': 1,
          'outlook': 1,
          'change': 1,
          'medical': 1,
          'reports': 1,
          'suffered': 1,
          'massive': 1,
          'however': 1,
          'grow': 1,
          'suspicious': 1,
          'faking': 1,
          'nmaybe': 1,
          'learn': 1,
          'opening': 1,
          '30': 1,
          'minutes': 1,
          'hilarious': 1,
          'attempts': 1,
          'carol': 1,
          'trying': 1,
          'bring': 1,
          'back': 1,
          'nand': 1,
          'resuscitation': 1,
          'techniques': 1,
          'nperhaps': 1,
          'erotic': 1,
          'lapdance': 1,
          'might': 1,
          'stir': 1,
          'senses': 1,
          'nif': 1,
          'fails': 1,
          'shell': 1,
          'try': 1,
          'shock': 1,
          'therapy': 1,
          '20foot': 1,
          'high': 1,
          'pier': 1,
          'cold': 1,
          'finally': 1,
          'comes': 1,
          'selftrance': 1,
          'movies': 1,
          'direction': 1,
          'changes': 1,
          'though': 1,
          'remains': 1,
          'entertaining': 1,
          'sees': 1,
          'charisma': 1,
          'selfassuredness': 1,
          'nshe': 1,
          'invigorated': 1,
          'commanding': 1,
          'refreshed': 1,
          'vibrancy': 1,
          'course': 1,
          'puts': 1,
          'odd': 1,
          'bond': 1,
          'grows': 1,
          'stronger': 1,
          'enter': 1,
          'agreement': 1,
          'rob': 1,
          'armored': 1,
          'car': 1,
          'unable': 1,
          'retrieve': 1,
          'original': 1,
          'stash': 1,
          'nmeanwhile': 1,
          'ticket': 1,
          'better': 1,
          'uncomfortable': 1,
          'helps': 1,
          'nonetheless': 1,
          'lack': 1,
          'commitment': 1,
          'threatens': 1,
          'success': 1,
          'sequence': 1,
          'suspenseful': 1,
          'well': 1,
          'paced': 1,
          'casts': 1,
          'uneasy': 1,
          'feeling': 1,
          'horribly': 1,
          'go': 1,
          'wrong': 1,
          'nwhere': 1,
          'spotlight': 1,
          'showcase': 1,
          'nifty': 1,
          'nnewman': 1,
          'real': 1,
          'joy': 1,
          'film': 1,
          'adroitly': 1,
          'showing': 1,
          'age': 1,
          '75': 1,
          'hes': 1,
          'still': 1,
          'really': 1,
          'hot': 1,
          'stuff': 1,
          'possesses': 1,
          'sly': 1,
          'smile': 1,
          'displays': 1,
          'dominating': 1,
          'attitude': 1,
          'projects': 1,
          'demeanor': 1,
          'undeniably': 1,
          'attractive': 1,
          'nfiorentino': 1,
          'also': 1,
          'nyou': 1,
          'root': 1,
          'despite': 1,
          'amorality': 1,
          'nsure': 1,
          'wants': 1,
          'commit': 1,
          'robbery': 1,
          'compunction': 1,
          'wheelchairstricken': 1,
          'man': 1,
          'escape': 1,
          'world': 1,
          'drastic': 1,
          'nwith': 1,
          'charismatic': 1,
          'characters': 1,
          'hard': 1,
          'ignore': 1,
          'npos': 1}),
 Counter({'cast': 5,
          'film': 5,
          'twilight': 4,
          'newman': 3,
          'hackman': 3,
          'sarandon': 3,
          'former': 3,
          'harrys': 3,
          'theres': 3,
          'lot': 3,
          'mystery': 2,
          'stars': 2,
          'detective': 2,
          'harry': 2,
          'jack': 2,
          'ames': 2,
          'actors': 2,
          'plays': 2,
          'nstockard': 2,
          'nwith': 2,
          'worth': 2,
          'solid': 2,
          'plot': 2,
          'nthe': 2,
          'little': 2,
          'character': 2,
          'time': 2,
          'nits': 2,
          'flaw': 2,
          'robert': 1,
          'benton': 1,
          'assembled': 1,
          'stellar': 1,
          'mature': 1,
          'latest': 1,
          'feature': 1,
          'noir': 1,
          'set': 1,
          'amid': 1,
          'fading': 1,
          'hollywood': 1,
          'npaul': 1,
          'retired': 1,
          'ross': 1,
          'nharry': 1,
          'spent': 1,
          'last': 1,
          'couple': 1,
          'years': 1,
          'odd': 1,
          'jobs': 1,
          'catherine': 1,
          'gene': 1,
          'susan': 1,
          'pair': 1,
          'married': 1,
          'fallen': 1,
          'limelight': 1,
          'nwhen': 1,
          'sends': 1,
          'routine': 1,
          'delivery': 1,
          'job': 1,
          'however': 1,
          'old': 1,
          'instincts': 1,
          'kick': 1,
          'nsoon': 1,
          'wading': 1,
          'friendships': 1,
          'lives': 1,
          'line': 1,
          'longer': 1,
          'knows': 1,
          'trust': 1,
          'nthere': 1,
          'plenty': 1,
          'familiar': 1,
          'faces': 1,
          'throughout': 1,
          'addition': 1,
          'njames': 1,
          'garner': 1,
          'raymond': 1,
          'hope': 1,
          'cop': 1,
          'one': 1,
          'best': 1,
          'friends': 1,
          'channing': 1,
          'verna': 1,
          'partner': 1,
          'possibly': 1,
          'love': 1,
          'interest': 1,
          'nreese': 1,
          'witherspoon': 1,
          'mel': 1,
          'distrustful': 1,
          'daughter': 1,
          'liev': 1,
          'schrieber': 1,
          'scuzzy': 1,
          'boyfriend': 1,
          'ngiancarlo': 1,
          'esposito': 1,
          'appears': 1,
          'bumbling': 1,
          'protigi': 1,
          'john': 1,
          'spencer': 1,
          'suspicious': 1,
          'police': 1,
          'captain': 1,
          'like': 1,
          'almost': 1,
          'watching': 1,
          'stargaze': 1,
          'nluckily': 1,
          'sort': 1,
          'recognition': 1,
          'ceremony': 1,
          'ntwilight': 1,
          'noirish': 1,
          'nit': 1,
          'may': 1,
          'many': 1,
          'twists': 1,
          'turns': 1,
          'classics': 1,
          'much': 1,
          'passes': 1,
          'days': 1,
          'major': 1,
          'members': 1,
          'deliver': 1,
          'strong': 1,
          'performances': 1,
          'expected': 1,
          'caliber': 1,
          'nhowever': 1,
          'none': 1,
          'extra': 1,
          'oomph': 1,
          'would': 1,
          'make': 1,
          'memorable': 1,
          'supporting': 1,
          'enjoyable': 1,
          'underdrawn': 1,
          'channings': 1,
          'particular': 1,
          'cipher': 1,
          'ntheres': 1,
          'takes': 1,
          'describe': 1,
          'minor': 1,
          'irritating': 1,
          'good': 1,
          'recommend': 1,
          'biggest': 1,
          'actually': 1,
          'short': 1,
          'running': 1,
          'nat': 1,
          'slim': 1,
          '94': 1,
          'minutes': 1,
          'stuff': 1,
          'thats': 1,
          'packed': 1,
          'awfully': 1,
          'small': 1,
          'package': 1,
          'nstill': 1,
          'chance': 1,
          'see': 1,
          'working': 1,
          'together': 1,
          'cramp': 1,
          'two': 1,
          'npos': 1}),
 Counter({'film': 5,
          'lots': 3,
          'good': 3,
          'anyone': 2,
          'men': 2,
          'stuff': 2,
          'nin': 2,
          'walter': 2,
          'hill': 2,
          'script': 2,
          'ni': 2,
          'always': 2,
          'guys': 2,
          'movie': 2,
          'characters': 2,
          'got': 2,
          'pretty': 2,
          'secret': 2,
          'army': 2,
          'drug': 2,
          'texas': 2,
          'look': 2,
          'keep': 2,
          'warning': 1,
          'offended': 1,
          'blatant': 1,
          'leering': 1,
          'machismo': 1,
          'better': 1,
          'avoid': 1,
          'blood': 1,
          'guts': 1,
          'manoetmano': 1,
          'words': 1,
          'nwith': 1,
          'john': 1,
          'milius': 1,
          'picture': 1,
          'getting': 1,
          'together': 1,
          'producing': 1,
          'armwrestling': 1,
          'matches': 1,
          'nthese': 1,
          'films': 1,
          'contain': 1,
          'male': 1,
          'hard': 1,
          'time': 1,
          'identifying': 1,
          'probably': 1,
          'due': 1,
          'likelihood': 1,
          'meeting': 1,
          'would': 1,
          'result': 1,
          'arm': 1,
          'ripped': 1,
          'subsequent': 1,
          'death': 1,
          'beating': 1,
          'said': 1,
          'limb': 1,
          'nand': 1,
          'tough': 1,
          'galore': 1,
          'drugrunning': 1,
          'banditos': 1,
          'dozens': 1,
          'dirty': 1,
          'sweaty': 1,
          'illtempered': 1,
          'overall': 1,
          'task': 1,
          'force': 1,
          'commandos': 1,
          'area': 1,
          'coverup': 1,
          'supposedly': 1,
          'connection': 1,
          'government': 1,
          'runners': 1,
          'shitkicking': 1,
          'dirt': 1,
          'farmers': 1,
          'whod': 1,
          'soon': 1,
          'shoot': 1,
          'eyes': 1,
          'particular': 1,
          'nick': 1,
          'nolte': 1,
          'one': 1,
          'hardass': 1,
          'ranger': 1,
          'powers': 1,
          'boothe': 1,
          'kingpin': 1,
          'michael': 1,
          'ironsides': 1,
          'leader': 1,
          'rip': 1,
          'torn': 1,
          'local': 1,
          'sheriff': 1,
          'ntorn': 1,
          'sympathetic': 1,
          'figure': 1,
          'group': 1,
          'smiles': 1,
          'shooting': 1,
          'nas': 1,
          'women': 1,
          'nwell': 1,
          'ive': 1,
          'never': 1,
          'seen': 1,
          'jane': 1,
          'fonda': 1,
          'meryl': 1,
          'streep': 1,
          'rate': 1,
          'doubt': 1,
          'ever': 1,
          'nwomen': 1,
          'exist': 1,
          'comfort': 1,
          'man': 1,
          'get': 1,
          'argued': 1,
          'ngosh': 1,
          'njust': 1,
          'like': 1,
          'old': 1,
          'days': 1,
          'nfrankly': 1,
          'accept': 1,
          'premise': 1,
          'take': 1,
          'macho': 1,
          'nthe': 1,
          'cinematography': 1,
          'excellent': 1,
          'cast': 1,
          'broad': 1,
          'texture': 1,
          'quite': 1,
          'lets': 1,
          'whats': 1,
          'happening': 1,
          'without': 1,
          'spelling': 1,
          'appreciate': 1,
          'makes': 1,
          'think': 1,
          'nfinally': 1,
          'theres': 1,
          'sam': 1,
          'peckinpah': 1,
          'slowmotion': 1,
          'shootups': 1,
          'npos': 1}),
 Counter({'film': 5,
          'emotional': 4,
          'nbut': 3,
          'years': 2,
          'cup': 2,
          'screen': 2,
          'nin': 2,
          'nyet': 2,
          'love': 2,
          'story': 2,
          'whose': 2,
          'character': 2,
          'memory': 2,
          'help': 2,
          'never': 2,
          'learn': 2,
          'enough': 2,
          'man': 2,
          'feel': 2,
          'remains': 2,
          'many': 2,
          'close': 2,
          'time': 2,
          'accepting': 1,
          'oscar': 1,
          'producer': 1,
          'best': 1,
          'picture': 1,
          'winner': 1,
          'saul': 1,
          'zaentz': 1,
          'remarked': 1,
          'runneth': 1,
          'none': 1,
          'could': 1,
          'almost': 1,
          'say': 1,
          'muchprized': 1,
          'nrarely': 1,
          'overflowing': 1,
          'potent': 1,
          'imagery': 1,
          'symbolism': 1,
          'ideas': 1,
          'metaphors': 1,
          'complex': 1,
          'literate': 1,
          'storytelling': 1,
          'possessed': 1,
          'intelligence': 1,
          'invites': 1,
          'even': 1,
          'demands': 1,
          'constant': 1,
          'scrutiny': 1,
          'acuity': 1,
          'perception': 1,
          'observation': 1,
          'must': 1,
          'somehow': 1,
          'yield': 1,
          'truth': 1,
          'short': 1,
          'antithesis': 1,
          'things': 1,
          'hollywood': 1,
          'surfeit': 1,
          'signals': 1,
          'made': 1,
          'serve': 1,
          'rather': 1,
          'pale': 1,
          'thinly': 1,
          'realized': 1,
          'impact': 1,
          'dry': 1,
          'desert': 1,
          'wind': 1,
          'nralph': 1,
          'fiennes': 1,
          'title': 1,
          'amnesiac': 1,
          'burn': 1,
          'victim': 1,
          'gradual': 1,
          'return': 1,
          'particularly': 1,
          'ostensible': 1,
          'focus': 1,
          'despite': 1,
          'use': 1,
          'numerous': 1,
          'flashbacks': 1,
          'put': 1,
          'pieces': 1,
          'personal': 1,
          'puzzle': 1,
          'together': 1,
          'much': 1,
          'empathy': 1,
          'nhis': 1,
          'life': 1,
          'begins': 1,
          'essential': 1,
          'clue': 1,
          'withheld': 1,
          'nthe': 1,
          'easily': 1,
          'said': 1,
          'every': 1,
          'njuliette': 1,
          'binoches': 1,
          'nurse': 1,
          'comes': 1,
          'gets': 1,
          'heart': 1,
          'nat': 1,
          'least': 1,
          'early': 1,
          'scarred': 1,
          'deaths': 1,
          'understand': 1,
          'eager': 1,
          'escape': 1,
          'company': 1,
          'comrades': 1,
          'order': 1,
          'seek': 1,
          'refuge': 1,
          'convalescence': 1,
          'mysterious': 1,
          'disfigured': 1,
          'dying': 1,
          'stranger': 1,
          'neven': 1,
          'information': 1,
          'imparted': 1,
          'quickly': 1,
          'cursory': 1,
          'fashion': 1,
          'however': 1,
          'verges': 1,
          'comical': 1,
          'nwith': 1,
          'characters': 1,
          'enjoying': 1,
          'little': 1,
          'films': 1,
          '160': 1,
          'minutes': 1,
          'taxing': 1,
          'something': 1,
          'captivating': 1,
          'sensibility': 1,
          'behind': 1,
          'camera': 1,
          'couldnt': 1,
          'greatness': 1,
          'air': 1,
          'nhints': 1,
          'everywhere': 1,
          'hates': 1,
          'ownership': 1,
          'wants': 1,
          'desperately': 1,
          'possess': 1,
          'lover': 1,
          'ancient': 1,
          'cave': 1,
          'paintings': 1,
          'swimmers': 1,
          'copied': 1,
          'casually': 1,
          'modernday': 1,
          'swimmer': 1,
          'sahara': 1,
          'way': 1,
          'shifting': 1,
          'sands': 1,
          'obliterate': 1,
          'everything': 1,
          'completely': 1,
          'world': 1,
          'war': 1,
          'nthere': 1,
          'latent': 1,
          'meaning': 1,
          'supply': 1,
          'college': 1,
          'students': 1,
          'paper': 1,
          'topics': 1,
          'ultimately': 1,
          'truths': 1,
          'writerdirector': 1,
          'anthony': 1,
          'minghella': 1,
          'grasping': 1,
          'revealed': 1,
          'end': 1,
          'left': 1,
          'impression': 1,
          'witnessed': 1,
          'quite': 1,
          'oxymoron': 1,
          'haunting': 1,
          'bore': 1,
          'nbore': 1,
          'perhaps': 1,
          'strong': 1,
          'word': 1,
          'drinking': 1,
          'rich': 1,
          'production': 1,
          'values': 1,
          'slightly': 1,
          'halffull': 1,
          'npos': 1}),
 Counter({'nhe': 6,
          'bank': 6,
          'coyle': 5,
          'gives': 5,
          'nthe': 4,
          'dillon': 4,
          'young': 4,
          'foley': 4,
          'underworld': 3,
          'film': 3,
          'mob': 3,
          'boss': 3,
          'new': 3,
          'hampshire': 3,
          'something': 3,
          'sentence': 3,
          'robbers': 3,
          'even': 3,
          'long': 3,
          'takes': 3,
          'look': 2,
          'boston': 2,
          'nit': 2,
          'mitchum': 2,
          'got': 2,
          'caught': 2,
          'life': 2,
          'could': 2,
          'prison': 2,
          'go': 2,
          'cut': 2,
          'deal': 2,
          'live': 2,
          'operate': 2,
          'going': 2,
          'family': 2,
          'friend': 2,
          'agent': 2,
          'lowlevel': 2,
          'getting': 2,
          'jail': 2,
          'guns': 2,
          'like': 2,
          'nbut': 2,
          'take': 2,
          'next': 2,
          'bruin': 2,
          'hockey': 2,
          'nmitchum': 2,
          'bleak': 1,
          'operates': 1,
          'based': 1,
          'bestseller': 1,
          'george': 1,
          'v': 1,
          'higgins': 1,
          'seen': 1,
          'weary': 1,
          'eyes': 1,
          '51yearold': 1,
          'smalltime': 1,
          'hood': 1,
          'eddie': 1,
          'fingers': 1,
          'nickname': 1,
          'element': 1,
          'shut': 1,
          'draw': 1,
          'hand': 1,
          'punishment': 1,
          'nhis': 1,
          'current': 1,
          'dilemma': 1,
          'running': 1,
          'illegal': 1,
          'booze': 1,
          'truck': 1,
          'faces': 1,
          '35': 1,
          'year': 1,
          'stretch': 1,
          'feels': 1,
          'since': 1,
          'doesnt': 1,
          'think': 1,
          'survive': 1,
          'age': 1,
          'also': 1,
          'concerned': 1,
          'wife': 1,
          'three': 1,
          'kids': 1,
          'welfare': 1,
          'gotten': 1,
          'turned': 1,
          'figured': 1,
          'would': 1,
          'never': 1,
          'currently': 1,
          'gunrunning': 1,
          'gang': 1,
          'successful': 1,
          'led': 1,
          'scalise': 1,
          'rocco': 1,
          'masked': 1,
          'always': 1,
          'first': 1,
          'managers': 1,
          'house': 1,
          'holding': 1,
          'hostage': 1,
          'force': 1,
          'manager': 1,
          'open': 1,
          'vault': 1,
          'else': 1,
          'gets': 1,
          'non': 1,
          'one': 1,
          'heists': 1,
          'kill': 1,
          'officer': 1,
          'pushes': 1,
          'alarm': 1,
          'ncoyles': 1,
          'best': 1,
          'boyle': 1,
          'hit': 1,
          'man': 1,
          'working': 1,
          'bartender': 1,
          'permanent': 1,
          'stoolie': 1,
          'treasury': 1,
          'agents': 1,
          'aggressive': 1,
          'named': 1,
          'jordan': 1,
          'likes': 1,
          'called': 1,
          'uncle': 1,
          'breathing': 1,
          'room': 1,
          'crime': 1,
          'activities': 1,
          'work': 1,
          'bar': 1,
          'though': 1,
          'record': 1,
          'keeps': 1,
          'valuable': 1,
          'info': 1,
          'things': 1,
          'happening': 1,
          'gangs': 1,
          'nwith': 1,
          'sentencing': 1,
          'date': 1,
          'closing': 1,
          'already': 1,
          'convicted': 1,
          'bail': 1,
          'looking': 1,
          'angle': 1,
          'time': 1,
          'contacts': 1,
          'inconsequential': 1,
          'tips': 1,
          'decides': 1,
          'goes': 1,
          'grain': 1,
          'nthinking': 1,
          'made': 1,
          'ironclad': 1,
          'get': 1,
          'sentenced': 1,
          'squashed': 1,
          'place': 1,
          'sale': 1,
          'machine': 1,
          'knowing': 1,
          'fullwell': 1,
          'hustler': 1,
          'keats': 1,
          'selling': 1,
          'lot': 1,
          'youth': 1,
          'arrested': 1,
          'facing': 1,
          'tells': 1,
          'arrests': 1,
          'gundealer': 1,
          'wants': 1,
          'away': 1,
          'want': 1,
          'fulltime': 1,
          'informer': 1,
          'nwarning': 1,
          'spoiler': 1,
          'follows': 1,
          'paragraph': 1,
          'setup': 1,
          'act': 1,
          'convinced': 1,
          'contract': 1,
          'care': 1,
          'contemptuous': 1,
          'befriends': 1,
          'treats': 1,
          'steak': 1,
          'dinner': 1,
          'game': 1,
          'boozed': 1,
          'ncoyle': 1,
          'star': 1,
          'bobby': 1,
          'orr': 1,
          'upper': 1,
          'deck': 1,
          'seat': 1,
          'says': 1,
          'future': 1,
          'hes': 1,
          'greatest': 1,
          'player': 1,
          'world': 1,
          'ndillon': 1,
          'drunken': 1,
          'drive': 1,
          'executes': 1,
          'mobstyle': 1,
          'kid': 1,
          'works': 1,
          'dump': 1,
          'body': 1,
          'bad': 1,
          'section': 1,
          'nthis': 1,
          'great': 1,
          'atmospheric': 1,
          'due': 1,
          'realistic': 1,
          'noir': 1,
          'mood': 1,
          'sets': 1,
          'hopeless': 1,
          'situation': 1,
          'criminals': 1,
          'forced': 1,
          'fear': 1,
          'uncertainty': 1,
          'horrible': 1,
          'thing': 1,
          'happen': 1,
          'city': 1,
          'streets': 1,
          'ugly': 1,
          'gangsters': 1,
          'shown': 1,
          'capable': 1,
          'action': 1,
          'defend': 1,
          'interests': 1,
          'whether': 1,
          'betrayal': 1,
          'murder': 1,
          'nthere': 1,
          'fatalistic': 1,
          'feel': 1,
          'lives': 1,
          'robert': 1,
          'wears': 1,
          'easily': 1,
          'others': 1,
          'put': 1,
          'hat': 1,
          'intensity': 1,
          'purpose': 1,
          'needs': 1,
          'overcomes': 1,
          'thin': 1,
          'plot': 1,
          'makes': 1,
          'see': 1,
          'characters': 1,
          'without': 1,
          'false': 1,
          'sympathy': 1,
          'loser': 1,
          'lived': 1,
          'tribute': 1,
          'skills': 1,
          'survivor': 1,
          'end': 1,
          'loses': 1,
          'respect': 1,
          'among': 1,
          'friends': 1,
          'standup': 1,
          'guy': 1,
          'wrestled': 1,
          'code': 1,
          'honor': 1,
          'lost': 1,
          'battle': 1,
          'npos': 1}),
 Counter({'footloose': 3,
          'nthe': 3,
          'bacon': 3,
          'lithgow': 3,
          'one': 2,
          'nand': 2,
          'town': 2,
          'dancing': 2,
          'daughter': 2,
          'singer': 2,
          'cast': 2,
          'start': 2,
          'rebel': 2,
          'playing': 2,
          'would': 2,
          'music': 2,
          'little': 2,
          'goal': 1,
          'mind': 1,
          'reel': 1,
          'audience': 1,
          'cheesy': 1,
          'sentiment': 1,
          'feelgood': 1,
          'antics': 1,
          'hate': 1,
          'admit': 1,
          'fell': 1,
          'movie': 1,
          'teenager': 1,
          'moves': 1,
          'small': 1,
          'big': 1,
          'city': 1,
          'discovers': 1,
          'banned': 1,
          'local': 1,
          'reverend': 1,
          'nhe': 1,
          'ends': 1,
          'falling': 1,
          'preachers': 1,
          'showing': 1,
          'whole': 1,
          'magic': 1,
          'dance': 1,
          'nas': 1,
          'mentioned': 1,
          'beginning': 1,
          'review': 1,
          'extremely': 1,
          'hokey': 1,
          'predictable': 1,
          'teen': 1,
          'drama': 1,
          'nthere': 1,
          'virtually': 1,
          'surprises': 1,
          'writing': 1,
          'secondrate': 1,
          'nso': 1,
          'enjoy': 1,
          'much': 1,
          'nfor': 1,
          'thing': 1,
          'great': 1,
          'nkevin': 1,
          'oozes': 1,
          'charisma': 1,
          'early': 1,
          'role': 1,
          'nwere': 1,
          'rooting': 1,
          'right': 1,
          'unlike': 1,
          'films': 1,
          'genre': 1,
          'doesnt': 1,
          'play': 1,
          'without': 1,
          'clue': 1,
          'sort': 1,
          'nyes': 1,
          'hes': 1,
          'also': 1,
          'polite': 1,
          'needs': 1,
          'never': 1,
          'broods': 1,
          'rest': 1,
          'equally': 1,
          'impressive': 1,
          'njohn': 1,
          'seen': 1,
          'normal': 1,
          'guy': 1,
          'change': 1,
          'man': 1,
          'normally': 1,
          'flat': 1,
          'villian': 1,
          'nbut': 1,
          'plays': 1,
          'concerned': 1,
          'father': 1,
          'trying': 1,
          'feels': 1,
          'best': 1,
          'nby': 1,
          'end': 1,
          'film': 1,
          'feel': 1,
          'genuine': 1,
          'sense': 1,
          'love': 1,
          'understanding': 1,
          'lori': 1,
          'character': 1,
          'nanother': 1,
          'nice': 1,
          'touch': 1,
          'nwe': 1,
          'see': 1,
          'parents': 1,
          'kids': 1,
          'complaining': 1,
          'listen': 1,
          'filled': 1,
          'sexual': 1,
          'innuendos': 1,
          'thats': 1,
          'true': 1,
          'title': 1,
          'track': 1,
          'performed': 1,
          'kenny': 1,
          'loggins': 1,
          'upbeat': 1,
          'fun': 1,
          'nduring': 1,
          'final': 1,
          'sequence': 1,
          'overcome': 1,
          'urge': 1,
          'get': 1,
          'couch': 1,
          'nof': 1,
          'course': 1,
          'soon': 1,
          'realized': 1,
          'pathetic': 1,
          'nanyway': 1,
          'charming': 1,
          'surprise': 1,
          'ndont': 1,
          'let': 1,
          'premise': 1,
          'prevent': 1,
          'watching': 1,
          'nit': 1,
          'sucked': 1,
          'itll': 1,
          'npos': 1}),
 Counter({'art': 5,
          'nthe': 4,
          'tiger': 3,
          'hidden': 3,
          'dragon': 3,
          'film': 3,
          'work': 3,
          'nas': 3,
          'master': 3,
          'oriental': 3,
          'life': 3,
          'martial': 3,
          'evil': 3,
          'director': 3,
          'great': 2,
          'question': 2,
          'masterpiece': 2,
          'must': 2,
          'quality': 2,
          'ncrouching': 2,
          'legend': 2,
          'fantasy': 2,
          'magic': 2,
          'nit': 2,
          'wagnerian': 2,
          'human': 2,
          'classic': 2,
          'elements': 2,
          'including': 2,
          'masters': 2,
          'pupil': 2,
          'two': 2,
          'heart': 2,
          'romance': 2,
          'levels': 2,
          'pair': 2,
          'side': 2,
          'nthere': 2,
          'one': 2,
          'project': 2,
          'pei': 2,
          'walked': 1,
          'crouching': 1,
          'thought': 1,
          'seen': 1,
          'nwith': 1,
          'passage': 1,
          'hours': 1,
          'tempered': 1,
          'enthusiasm': 1,
          'started': 1,
          'pondering': 1,
          'whether': 1,
          'implicitly': 1,
          'piece': 1,
          'viceversa': 1,
          'nattempting': 1,
          'make': 1,
          'distinction': 1,
          'may': 1,
          'matter': 1,
          'splitting': 1,
          'hairs': 1,
          'ni': 1,
          'avoided': 1,
          'commitment': 1,
          'appealing': 1,
          'etymology': 1,
          'word': 1,
          'implies': 1,
          'embodies': 1,
          'skills': 1,
          'suffice': 1,
          'say': 1,
          'product': 1,
          'exceptional': 1,
          'fits': 1,
          'comfortably': 1,
          'category': 1,
          'immerses': 1,
          'viewer': 1,
          'idealized': 1,
          'world': 1,
          'folklore': 1,
          'requisite': 1,
          'blend': 1,
          'mythology': 1,
          'reminiscent': 1,
          'epic': 1,
          'characters': 1,
          'might': 1,
          'well': 1,
          'halfgods': 1,
          'greater': 1,
          'purer': 1,
          'stronger': 1,
          'physically': 1,
          'invincible': 1,
          'able': 1,
          'accomplish': 1,
          'superhuman': 1,
          'feats': 1,
          'soul': 1,
          'makes': 1,
          'ultimately': 1,
          'vulnerable': 1,
          'nall': 1,
          'mystique': 1,
          'thrown': 1,
          'mix': 1,
          'contemplation': 1,
          'concept': 1,
          'dexterity': 1,
          'physical': 1,
          'equivalent': 1,
          'spiritual': 1,
          'advancement': 1,
          'struggle': 1,
          'good': 1,
          'inevitable': 1,
          'backdrop': 1,
          'advanced': 1,
          'golden': 1,
          'choose': 1,
          'gifted': 1,
          'influence': 1,
          'steals': 1,
          'holy': 1,
          'grail': 1,
          'form': 1,
          'sword': 1,
          'focus': 1,
          'conflict': 1,
          'different': 1,
          'enlightenment': 1,
          'youngsters': 1,
          'poignantly': 1,
          'represented': 1,
          'paradox': 1,
          'restraint': 1,
          'existing': 1,
          'consuming': 1,
          'passion': 1,
          'breast': 1,
          'projected': 1,
          'effectively': 1,
          'fight': 1,
          'scenes': 1,
          'stunning': 1,
          'balletic': 1,
          'toursdeforce': 1,
          'taken': 1,
          'literally': 1,
          'clearly': 1,
          'enjoyed': 1,
          'superb': 1,
          'cinematic': 1,
          'prodigious': 1,
          'leaps': 1,
          'flights': 1,
          'rooftops': 1,
          'combat': 1,
          'top': 1,
          'swaying': 1,
          'bamboo': 1,
          'branches': 1,
          'combatants': 1,
          'skipping': 1,
          'like': 1,
          'pebbles': 1,
          'along': 1,
          'surface': 1,
          'lake': 1,
          'need': 1,
          'suspended': 1,
          'disbelief': 1,
          'presence': 1,
          'poetry': 1,
          'opera': 1,
          'substantial': 1,
          'story': 1,
          'line': 1,
          'takes': 1,
          'place': 1,
          'ordinary': 1,
          'level': 1,
          'yet': 1,
          'entire': 1,
          'accepted': 1,
          'rooted': 1,
          'ndo': 1,
          'assume': 1,
          'however': 1,
          'limpwristed': 1,
          'nfor': 1,
          'put': 1,
          'label': 1,
          'confidently': 1,
          'recommended': 1,
          'engrossing': 1,
          'entertainment': 1,
          'adventure': 1,
          'action': 1,
          'weak': 1,
          'performances': 1,
          'movie': 1,
          'nmichelle': 1,
          'yeoh': 1,
          'imbues': 1,
          'character': 1,
          'depth': 1,
          'humanity': 1,
          'wisdom': 1,
          'nchow': 1,
          'yon': 1,
          'fat': 1,
          'projects': 1,
          'dignity': 1,
          'purity': 1,
          'nzhang': 1,
          'ziyi': 1,
          'budding': 1,
          'superstar': 1,
          'nshe': 1,
          'radiantly': 1,
          'beautiful': 1,
          'totally': 1,
          'persuasive': 1,
          'multifaceted': 1,
          'role': 1,
          'ncheng': 1,
          'chang': 1,
          'cheng': 1,
          'bandit': 1,
          'prince': 1,
          'acquit': 1,
          'admirably': 1,
          'nkudos': 1,
          'screenwriters': 1,
          'james': 1,
          'schamus': 1,
          'wang': 1,
          'hui': 1,
          'ling': 1,
          'tsai': 1,
          'kuo': 1,
          'jing': 1,
          'choreographer': 1,
          'yuen': 1,
          'woping': 1,
          'photography': 1,
          'peter': 1,
          'pau': 1,
          'music': 1,
          'tan': 1,
          'dun': 1,
          'contribute': 1,
          'components': 1,
          'extraordinary': 1,
          'nang': 1,
          'lee': 1,
          'coproducer': 1,
          'mastermind': 1,
          'gets': 1,
          'lion': 1,
          'share': 1,
          'credit': 1,
          'nthis': 1,
          'destined': 1,
          'films': 1,
          'everybody': 1,
          'likes': 1,
          'hate': 1,
          'arts': 1,
          'movies': 1,
          'ndont': 1,
          'miss': 1,
          'npos': 1}),
 Counter({'crazybeautiful': 5,
          'carlos': 4,
          'n': 3,
          'enough': 3,
          'nafter': 2,
          'story': 2,
          'afterschool': 2,
          'special': 2,
          'young': 2,
          'people': 2,
          'trying': 2,
          'make': 2,
          'behavior': 2,
          'away': 2,
          'film': 2,
          'works': 2,
          'stereotypes': 2,
          'pacific': 2,
          'hernandez': 2,
          'takes': 2,
          'dunst': 2,
          'real': 2,
          'nas': 2,
          'situations': 2,
          'characters': 2,
          'instead': 2,
          'credible': 2,
          'suffers': 1,
          'damnedifyoudo': 1,
          'damnedifyoudont': 1,
          'syndrome': 1,
          'spate': 1,
          'flighty': 1,
          'cookiecutter': 1,
          'teen': 1,
          'films': 1,
          'romantic': 1,
          'drama': 1,
          'addresses': 1,
          'alcoholism': 1,
          'parental': 1,
          'loss': 1,
          'along': 1,
          'love': 1,
          'nbut': 1,
          'rather': 1,
          'applaud': 1,
          'production': 1,
          'early': 1,
          'reviews': 1,
          'dismissed': 1,
          'overblown': 1,
          'neven': 1,
          'worse': 1,
          'wake': 1,
          'federal': 1,
          'trade': 1,
          'commission': 1,
          'hearings': 1,
          'blasted': 1,
          'industry': 1,
          'marketing': 1,
          'violent': 1,
          'sexual': 1,
          'movies': 1,
          'studio': 1,
          'got': 1,
          'case': 1,
          'heebiejeebies': 1,
          'forced': 1,
          'director': 1,
          'john': 1,
          'stockwell': 1,
          'reshoot': 1,
          'scenes': 1,
          'cut': 1,
          'footage': 1,
          'tone': 1,
          'things': 1,
          'nneedless': 1,
          'say': 1,
          'filmmaker': 1,
          'frustrated': 1,
          'cautionary': 1,
          'tale': 1,
          'told': 1,
          'newsweek': 1,
          'couldnt': 1,
          'show': 1,
          'caution': 1,
          'nregardless': 1,
          'thanks': 1,
          'exceptional': 1,
          'performances': 1,
          'lead': 1,
          'players': 1,
          'script': 1,
          'determined': 1,
          'transcend': 1,
          'quality': 1,
          'fare': 1,
          'good': 1,
          'halfexpected': 1,
          'summer': 1,
          'movie': 1,
          'crap': 1,
          'police': 1,
          'walk': 1,
          'press': 1,
          'screening': 1,
          'confiscate': 1,
          'print': 1,
          'failure': 1,
          'incorporate': 1,
          'explosions': 1,
          'poop': 1,
          'jokes': 1,
          'nset': 1,
          'palisades': 1,
          'calif': 1,
          'follows': 1,
          'burgeoning': 1,
          'relationship': 1,
          'two': 1,
          'teens': 1,
          'nevery': 1,
          'morning': 1,
          'evening': 1,
          'nunez': 1,
          'jay': 1,
          'twohour': 1,
          'bus': 1,
          'ride': 1,
          'order': 1,
          'attend': 1,
          'high': 1,
          'school': 1,
          'nan': 1,
          'honor': 1,
          'student': 1,
          'star': 1,
          'athlete': 1,
          'responsible': 1,
          'modest': 1,
          'focused': 1,
          'securing': 1,
          'place': 1,
          'naval': 1,
          'academy': 1,
          'nall': 1,
          'well': 1,
          'meets': 1,
          'nicole': 1,
          'oakley': 1,
          'kirsten': 1,
          'daughter': 1,
          'rich': 1,
          'congressman': 1,
          'bruce': 1,
          'davison': 1,
          'nnicole': 1,
          'drunk': 1,
          'apparently': 1,
          'hellbent': 1,
          'selfdestruction': 1,
          'ncarlos': 1,
          'smart': 1,
          'recognize': 1,
          'danger': 1,
          'getting': 1,
          'involved': 1,
          'human': 1,
          'greatest': 1,
          'smile': 1,
          'nplus': 1,
          'father': 1,
          'notes': 1,
          'knack': 1,
          'drawing': 1,
          'others': 1,
          'downward': 1,
          'spiral': 1,
          'save': 1,
          'last': 1,
          'dance': 1,
          'god': 1,
          'hate': 1,
          'lowercase': 1,
          'titles': 1,
          'look': 1,
          'stale': 1,
          'paper': 1,
          'makes': 1,
          'seem': 1,
          'fresh': 1,
          'nwhile': 1,
          'noting': 1,
          'racial': 1,
          'social': 1,
          'differences': 1,
          'kids': 1,
          'screenplay': 1,
          'dances': 1,
          'around': 1,
          'clich': 1,
          'still': 1,
          'several': 1,
          'mtv': 1,
          'moments': 1,
          'though': 1,
          'nthe': 1,
          'filmmakers': 1,
          'point': 1,
          'give': 1,
          'crucial': 1,
          'extra': 1,
          'bit': 1,
          'shading': 1,
          'turns': 1,
          'individuals': 1,
          'actors': 1,
          'take': 1,
          'ncuteasabutton': 1,
          'forces': 1,
          'viewer': 1,
          'share': 1,
          'pain': 1,
          'beneath': 1,
          'nicoles': 1,
          'nshe': 1,
          'dad': 1,
          'urges': 1,
          'get': 1,
          'drags': 1,
          'hoped': 1,
          'boy': 1,
          'would': 1,
          'listen': 1,
          'revelation': 1,
          'nhunky': 1,
          'without': 1,
          'looking': 1,
          'like': 1,
          'product': 1,
          'hollywood': 1,
          'design': 1,
          'team': 1,
          'man': 1,
          'really': 1,
          'act': 1,
          'see': 1,
          'lot': 1,
          'guy': 1,
          'future': 1,
          'naside': 1,
          'title': 1,
          'biggest': 1,
          'problem': 1,
          'ending': 1,
          'wraps': 1,
          'everything': 1,
          'fast': 1,
          'tidy': 1,
          'carefully': 1,
          'presenting': 1,
          'conclusion': 1,
          'feels': 1,
          'rushed': 1,
          'lazy': 1,
          'nstill': 1,
          'kind': 1,
          'deserves': 1,
          'accolades': 1,
          'critics': 1,
          'cheap': 1,
          'shots': 1,
          'ass': 1,
          'deal': 1,
          'npos': 1}),
 Counter({'giles': 16,
          'death': 4,
          'long': 4,
          'one': 4,
          'love': 4,
          'film': 4,
          'movie': 4,
          'ronnie': 4,
          'like': 3,
          'ngiles': 3,
          'bostock': 3,
          'island': 3,
          'nin': 3,
          'could': 2,
          'kind': 2,
          'needs': 2,
          'house': 2,
          'hes': 2,
          'role': 2,
          'motion': 2,
          'picture': 2,
          'affection': 2,
          'forster': 2,
          'doesnt': 2,
          'realize': 2,
          'teen': 2,
          'hotpants': 2,
          'college': 2,
          'ii': 2,
          'priestley': 2,
          'first': 2,
          'tapes': 2,
          'must': 2,
          'vcr': 2,
          'neventually': 2,
          'home': 2,
          'arrives': 2,
          'ronnies': 2,
          'fiona': 2,
          'loewi': 2,
          'actor': 2,
          'nlove': 2,
          'comedy': 2,
          'nit': 2,
          'things': 2,
          'makes': 2,
          'many': 2,
          'everyone': 1,
          'knows': 1,
          'someone': 1,
          'stuffy': 1,
          'arrogant': 1,
          'set': 1,
          'ways': 1,
          'war': 1,
          'anything': 1,
          'way': 1,
          'associated': 1,
          'progress': 1,
          'writer': 1,
          'product': 1,
          'typewriter': 1,
          'scholarly': 1,
          'stuff': 1,
          'immediately': 1,
          'put': 1,
          'onto': 1,
          'library': 1,
          'stacks': 1,
          'gather': 1,
          'dust': 1,
          'graduate': 1,
          'student': 1,
          'another': 1,
          'reference': 1,
          'thesis': 1,
          'nhis': 1,
          'looks': 1,
          'immaculate': 1,
          'museum': 1,
          'television': 1,
          'microwave': 1,
          'word': 1,
          'processor': 1,
          'technological': 1,
          'gadgets': 1,
          'electric': 1,
          'lights': 1,
          'betray': 1,
          'living': 1,
          'twentieth': 1,
          'century': 1,
          'nineteenth': 1,
          'nthis': 1,
          'easily': 1,
          'turned': 1,
          'flat': 1,
          'stereotype': 1,
          'john': 1,
          'hurt': 1,
          'certainly': 1,
          'best': 1,
          'performance': 1,
          'decade': 1,
          'possibly': 1,
          'impressive': 1,
          'distinguished': 1,
          'career': 1,
          'turns': 1,
          'erstwhile': 1,
          'fogy': 1,
          'threedimensional': 1,
          'human': 1,
          'ndespite': 1,
          'tunnel': 1,
          'vision': 1,
          'impossible': 1,
          'man': 1,
          'especially': 1,
          'entire': 1,
          'transformed': 1,
          'singular': 1,
          'affliction': 1,
          'immune': 1,
          'nand': 1,
          'discovers': 1,
          'course': 1,
          'amusing': 1,
          'warmhearted': 1,
          'possible': 1,
          'find': 1,
          'object': 1,
          'ones': 1,
          'unusual': 1,
          'places': 1,
          'widower': 1,
          'recluse': 1,
          'frequent': 1,
          'cinema': 1,
          'learns': 1,
          'e': 1,
          'playing': 1,
          'local': 1,
          'theater': 1,
          'screws': 1,
          'courage': 1,
          'decides': 1,
          'go': 1,
          'nwhat': 1,
          'showing': 1,
          'two': 1,
          'films': 1,
          'adaptation': 1,
          'exploitation': 1,
          'flick': 1,
          'called': 1,
          'na': 1,
          'nonplused': 1,
          'ends': 1,
          'sitting': 1,
          'darkened': 1,
          'room': 1,
          'watching': 1,
          'buff': 1,
          'male': 1,
          'female': 1,
          'bodies': 1,
          'various': 1,
          'states': 1,
          'undress': 1,
          'njust': 1,
          'leave': 1,
          'however': 1,
          'notices': 1,
          'jason': 1,
          'suddenly': 1,
          'sight': 1,
          'enraptured': 1,
          'moment': 1,
          'beings': 1,
          'scour': 1,
          'stores': 1,
          'memorabilia': 1,
          'including': 1,
          'magazines': 1,
          'video': 1,
          'n': 1,
          'order': 1,
          'watch': 1,
          'buy': 1,
          'initially': 1,
          'tv': 1,
          'use': 1,
          'satisfied': 1,
          'worlds': 1,
          'foremost': 1,
          'authority': 1,
          'boards': 1,
          'plane': 1,
          'travels': 1,
          'idols': 1,
          'located': 1,
          'nbostock': 1,
          'away': 1,
          'wily': 1,
          'englishman': 1,
          'manages': 1,
          'befriend': 1,
          'supermodel': 1,
          'girlfriend': 1,
          'audrey': 1,
          'impressed': 1,
          'demeanor': 1,
          'intelligence': 1,
          'begins': 1,
          'rely': 1,
          'older': 1,
          'mans': 1,
          'advice': 1,
          'nbut': 1,
          'runs': 1,
          'deep': 1,
          'feelings': 1,
          'less': 1,
          'constant': 1,
          'funny': 1,
          'fact': 1,
          'half': 1,
          'nearlyperfect': 1,
          'suffers': 1,
          'falloff': 1,
          'reaches': 1,
          'new': 1,
          'york': 1,
          'ending': 1,
          'nonetoosubtle': 1,
          'homosexual': 1,
          'overtones': 1,
          'little': 1,
          'overbearing': 1,
          'lighthearted': 1,
          'material': 1,
          'precedes': 1,
          'gently': 1,
          'satirical': 1,
          'approach': 1,
          'popular': 1,
          'culture': 1,
          'stardom': 1,
          'writerdirector': 1,
          'richard': 1,
          'kwietniowski': 1,
          'adapting': 1,
          'novel': 1,
          'gilbert': 1,
          'adair': 1,
          '100': 1,
          'target': 1,
          'process': 1,
          'creates': 1,
          'truly': 1,
          'likable': 1,
          'memorable': 1,
          'character': 1,
          'says': 1,
          'transforming': 1,
          'power': 1,
          'even': 1,
          'unrequited': 1,
          'nfrom': 1,
          'start': 1,
          'finish': 1,
          'clearly': 1,
          'hurts': 1,
          'almost': 1,
          'every': 1,
          'frame': 1,
          'nits': 1,
          'veteran': 1,
          'relished': 1,
          'unforgettable': 1,
          'figure': 1,
          'means': 1,
          'dialogue': 1,
          'delivery': 1,
          'body': 1,
          'language': 1,
          'everchanging': 1,
          'facial': 1,
          'expressions': 1,
          'njason': 1,
          'cashing': 1,
          'beverly': 1,
          'hills': 1,
          '90210': 1,
          'image': 1,
          'surprisingly': 1,
          'effective': 1,
          'shallow': 1,
          'nhe': 1,
          'charismatic': 1,
          'hard': 1,
          'understand': 1,
          'attracted': 1,
          'nmeanwhile': 1,
          'solid': 1,
          'support': 1,
          'provided': 1,
          'appealing': 1,
          'alwaysreliable': 1,
          'maury': 1,
          'chaykin': 1,
          'wrapped': 1,
          'social': 1,
          'commentary': 1,
          'tackles': 1,
          'thorny': 1,
          'issue': 1,
          'pure': 1,
          'art': 1,
          'versus': 1,
          'mindless': 1,
          'entertainment': 1,
          'buddy': 1,
          'picturelove': 1,
          'story': 1,
          'interesting': 1,
          'relationships': 1,
          'found': 1,
          'anywhere': 1,
          'screen': 1,
          'days': 1,
          'fish': 1,
          'water': 1,
          'tale': 1,
          'victorian': 1,
          'relic': 1,
          'forced': 1,
          'modern': 1,
          'world': 1,
          'nyet': 1,
          'despite': 1,
          'laughs': 1,
          'offers': 1,
          'never': 1,
          'takes': 1,
          'cheap': 1,
          'shots': 1,
          'vibrant': 1,
          'beating': 1,
          'heart': 1,
          'worthwhile': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'first': 4,
          'much': 4,
          'people': 3,
          'time': 3,
          'second': 3,
          'hes': 3,
          'day': 3,
          'midlife': 3,
          'crisis': 3,
          'makes': 3,
          'film': 3,
          'gradys': 3,
          'isnt': 2,
          'column': 2,
          'get': 2,
          'made': 2,
          'done': 2,
          'neventually': 2,
          'theres': 2,
          'finishing': 2,
          'nand': 2,
          'next': 2,
          'professor': 2,
          'tripp': 2,
          'michael': 2,
          'book': 2,
          'working': 2,
          'cant': 2,
          'finish': 2,
          'writers': 2,
          'wife': 2,
          'married': 2,
          'agent': 2,
          'suicidal': 2,
          'student': 2,
          'nthis': 2,
          'real': 2,
          'career': 2,
          'nhe': 2,
          'life': 2,
          'james': 2,
          'comfort': 2,
          'interesting': 2,
          'nas': 2,
          'relationships': 2,
          'sara': 2,
          'never': 2,
          'see': 2,
          'many': 1,
          'procrastination': 1,
          'problem': 1,
          'overcome': 1,
          'high': 1,
          'art': 1,
          'nwell': 1,
          'anything': 1,
          'put': 1,
          'task': 1,
          'nwhen': 1,
          'deadline': 1,
          'nears': 1,
          'week': 1,
          'dishes': 1,
          'washed': 1,
          'bed': 1,
          'laundry': 1,
          'plants': 1,
          'watered': 1,
          'hopefully': 1,
          'sometimes': 1,
          'breakthrough': 1,
          'actually': 1,
          'work': 1,
          'namazingly': 1,
          'almost': 1,
          'always': 1,
          'easier': 1,
          'dreaded': 1,
          'sense': 1,
          'oppressive': 1,
          'apprehension': 1,
          'melts': 1,
          'away': 1,
          'nenglish': 1,
          'grady': 1,
          'douglas': 1,
          'master': 1,
          'nseven': 1,
          'years': 1,
          'ago': 1,
          'hit': 1,
          'nhes': 1,
          'short': 1,
          '200page': 1,
          'piece': 1,
          'since': 1,
          'nfearful': 1,
          'live': 1,
          'bring': 1,
          'nno': 1,
          'block': 1,
          'nearing': 1,
          '3': 1,
          '000': 1,
          'pages': 1,
          'end': 1,
          'sight': 1,
          'nnow': 1,
          'particularly': 1,
          'difficult': 1,
          'colleges': 1,
          'annual': 1,
          'conference': 1,
          'bringing': 1,
          'accomplished': 1,
          'novelists': 1,
          'reminding': 1,
          '_their_': 1,
          'books': 1,
          'nduring': 1,
          'left': 1,
          'girlfriend': 1,
          'informs': 1,
          'shes': 1,
          'pregnant': 1,
          'town': 1,
          'sixfoot': 1,
          'transvestite': 1,
          'tow': 1,
          'nby': 1,
          'evening': 1,
          'besieged': 1,
          'writer': 1,
          'driving': 1,
          'though': 1,
          'snowcovered': 1,
          'streets': 1,
          'pittsburgh': 1,
          'beside': 1,
          'stolen': 1,
          'jacket': 1,
          'marilyn': 1,
          'monroe': 1,
          'wore': 1,
          'wedding': 1,
          'back': 1,
          'seat': 1,
          'murdered': 1,
          'blind': 1,
          'dog': 1,
          'stuffed': 1,
          'trunk': 1,
          'could': 1,
          'pivotal': 1,
          'point': 1,
          'morning': 1,
          'ntheres': 1,
          'lot': 1,
          'like': 1,
          'movie': 1,
          'nthere': 1,
          'huge': 1,
          'explosions': 1,
          'shattering': 1,
          'glass': 1,
          'computergenerated': 1,
          'dinosaurs': 1,
          'distract': 1,
          'human': 1,
          'issues': 1,
          'ngrady': 1,
          'caught': 1,
          'curse': 1,
          'accomplish': 1,
          'great': 1,
          'things': 1,
          'early': 1,
          'nin': 1,
          'world': 1,
          'lately': 1,
          'knows': 1,
          'better': 1,
          'ninstead': 1,
          'finding': 1,
          'drifts': 1,
          'comfortable': 1,
          'insular': 1,
          'cocoon': 1,
          'academic': 1,
          'peter': 1,
          'panhood': 1,
          'doesnt': 1,
          'neither': 1,
          'star': 1,
          'pupil': 1,
          'leer': 1,
          'tobey': 1,
          'maguire': 1,
          'njames': 1,
          'may': 1,
          'psychotic': 1,
          'ncertainly': 1,
          'everything': 1,
          'comes': 1,
          'mouth': 1,
          'lie': 1,
          'past': 1,
          'clash': 1,
          'anguish': 1,
          'truth': 1,
          'wealth': 1,
          'enough': 1,
          'weekend': 1,
          'progresses': 1,
          'forced': 1,
          'fully': 1,
          'engage': 1,
          'nthats': 1,
          'question': 1,
          'must': 1,
          'face': 1,
          'experiences': 1,
          'takes': 1,
          'chances': 1,
          'nnontraditional': 1,
          'presented': 1,
          'matteroffact': 1,
          'nextramarital': 1,
          'gay': 1,
          'interracial': 1,
          'professorstudent': 1,
          'arent': 1,
          'judged': 1,
          'merely': 1,
          'choices': 1,
          'actors': 1,
          'firstrate': 1,
          'ndouglas': 1,
          'triumphs': 1,
          'playing': 1,
          'type': 1,
          'spends': 1,
          'disheveled': 1,
          'unshaven': 1,
          'clad': 1,
          'pink': 1,
          'womens': 1,
          'house': 1,
          'robe': 1,
          'nmaguires': 1,
          'disengaged': 1,
          'alienation': 1,
          'works': 1,
          'perfectly': 1,
          'nrobert': 1,
          'downey': 1,
          'jr': 1,
          'livens': 1,
          'scenes': 1,
          'ndirector': 1,
          'curtis': 1,
          'hanson': 1,
          'l': 1,
          'nconfidential': 1,
          'missteps': 1,
          'women': 1,
          'underused': 1,
          'nfrances': 1,
          'mcdormand': 1,
          'good': 1,
          'job': 1,
          'limited': 1,
          'role': 1,
          'lover': 1,
          'understand': 1,
          'chemistry': 1,
          'two': 1,
          'nonexistent': 1,
          'ending': 1,
          'unconvincing': 1,
          'nkatie': 1,
          'holmes': 1,
          'major': 1,
          'crush': 1,
          'character': 1,
          'goes': 1,
          'nowhere': 1,
          'nwe': 1,
          'even': 1,
          'exiting': 1,
          'guys': 1,
          'varied': 1,
          'men': 1,
          'convincing': 1,
          'others': 1,
          'ngradys': 1,
          'alternating': 1,
          'mentoring': 1,
          'rejection': 1,
          'centerpoint': 1,
          'boomers': 1,
          'age': 1,
          'expect': 1,
          'films': 1,
          'catch': 1,
          'attention': 1,
          'demographic': 1,
          'itll': 1,
          'probably': 1,
          'become': 1,
          'cliche': 1,
          'right': 1,
          'weve': 1,
          'got': 1,
          'winner': 1,
          'nill': 1,
          'nright': 1,
          'grab': 1,
          'paint': 1,
          'ni': 1,
          'noticed': 1,
          'trim': 1,
          'room': 1,
          'needs': 1,
          'little': 1,
          'touchup': 1,
          'n': 1,
          'redman': 1,
          'written': 1,
          'long': 1,
          'choice': 1,
          'npos': 1}),
 Counter({'meet': 5,
          'joe': 5,
          'black': 5,
          'hopkins': 5,
          'pitt': 4,
          'brad': 3,
          'claire': 3,
          'forlani': 3,
          'death': 3,
          'really': 3,
          'movie': 3,
          'good': 3,
          'performance': 3,
          'time': 3,
          'anthony': 2,
          'three': 2,
          'ndeath': 2,
          'take': 2,
          'one': 2,
          'love': 2,
          'course': 2,
          'forlanis': 2,
          'n': 2,
          'running': 2,
          'historical': 2,
          'though': 2,
          'minutes': 2,
          'nand': 2,
          'could': 2,
          'excellent': 2,
          'ni': 2,
          'would': 2,
          'little': 2,
          'reviewed': 1,
          'nov': 1,
          '2798': 1,
          'nstarring': 1,
          'nin': 1,
          'plays': 1,
          'nthats': 1,
          'needs': 1,
          'said': 1,
          'nevertheless': 1,
          'provide': 1,
          'seemingly': 1,
          'living': 1,
          'cave': 1,
          'plot': 1,
          'description': 1,
          'decides': 1,
          'holiday': 1,
          'rigors': 1,
          'soulcollecting': 1,
          'forces': 1,
          'showing': 1,
          'like': 1,
          'human': 1,
          'assumes': 1,
          'body': 1,
          'much': 1,
          'trouble': 1,
          'ensues': 1,
          'nfor': 1,
          'thing': 1,
          'deathaspitt': 1,
          'falls': 1,
          'daughter': 1,
          'played': 1,
          'nobviously': 1,
          'enrages': 1,
          'offer': 1,
          'nbesides': 1,
          'eternal': 1,
          'damnation': 1,
          'nthere': 1,
          'also': 1,
          'subplot': 1,
          'exboyfriend': 1,
          'dumps': 1,
          'trying': 1,
          'company': 1,
          'runs': 1,
          'hours': 1,
          'nive': 1,
          'always': 1,
          'thought': 1,
          'obscene': 1,
          'times': 1,
          'limited': 1,
          'epics': 1,
          'neither': 1,
          'epic': 1,
          'get': 1,
          'feeling': 1,
          'martin': 1,
          'brest': 1,
          'director': 1,
          'desperately': 1,
          'wants': 1,
          'nevery': 1,
          'single': 1,
          'scene': 1,
          'goes': 1,
          '34': 1,
          'long': 1,
          'ending': 1,
          'takes': 1,
          '20': 1,
          'longer': 1,
          'na': 1,
          'severe': 1,
          'editing': 1,
          'job': 1,
          'made': 1,
          'instead': 1,
          'npitt': 1,
          'actor': 1,
          'normally': 1,
          'loathe': 1,
          'actually': 1,
          'quite': 1,
          'engaging': 1,
          'believed': 1,
          'see': 1,
          'character': 1,
          'fall': 1,
          'agree': 1,
          'roger': 1,
          'ebert': 1,
          'found': 1,
          'hard': 1,
          'believe': 1,
          'entity': 1,
          'thats': 1,
          'around': 1,
          'wouldnt': 1,
          'know': 1,
          'peanut': 1,
          'butter': 1,
          'nthat': 1,
          'nothing': 1,
          'pitts': 1,
          'distracting': 1,
          'nhopkins': 1,
          'gives': 1,
          'usual': 1,
          'nhes': 1,
          'able': 1,
          'portray': 1,
          'angst': 1,
          'man': 1,
          'knows': 1,
          'left': 1,
          'without': 1,
          'making': 1,
          'obnoxious': 1,
          'whiner': 1,
          'first': 1,
          'major': 1,
          'studio': 1,
          'role': 1,
          'surprisingly': 1,
          'nshe': 1,
          'sweet': 1,
          'tenderness': 1,
          'allows': 1,
          'audience': 1,
          'instantly': 1,
          'root': 1,
          'nso': 1,
          'hampered': 1,
          'ridiculous': 1,
          'nhad': 1,
          'film': 1,
          'cut': 1,
          'hour': 1,
          'doubt': 1,
          'calling': 1,
          'best': 1,
          'movies': 1,
          'year': 1,
          'review': 1,
          'npos': 1}),
 Counter({'fallen': 7,
          'film': 6,
          'like': 6,
          'nthe': 6,
          'hobbes': 6,
          'body': 5,
          'azazel': 5,
          'plot': 5,
          'one': 4,
          'kind': 4,
          'way': 4,
          'dark': 3,
          'denzel': 3,
          'washington': 3,
          'last': 3,
          'hes': 3,
          'walk': 3,
          'scenes': 3,
          'however': 3,
          'touched': 2,
          'serial': 2,
          'killer': 2,
          'unusual': 2,
          'nin': 2,
          'theres': 2,
          'little': 2,
          'although': 2,
          'interesting': 2,
          'elias': 2,
          'koteas': 2,
          'john': 2,
          'hours': 2,
          'death': 2,
          'goes': 2,
          'around': 2,
          'time': 2,
          'reese': 2,
          'nbut': 2,
          'angel': 2,
          'nand': 2,
          'theology': 2,
          'embeth': 2,
          'davidtz': 2,
          'including': 2,
          'goodman': 2,
          'stanton': 2,
          'donald': 2,
          'sutherland': 2,
          'dont': 2,
          'nas': 2,
          'city': 2,
          'rather': 2,
          'appear': 2,
          'night': 2,
          'nthis': 2,
          'expected': 2,
          'several': 2,
          'also': 2,
          'best': 2,
          'despite': 2,
          'ten': 2,
          'minutes': 2,
          'performance': 2,
          'two': 2,
          'nwashingtons': 2,
          'surprise': 2,
          'nits': 2,
          'bad': 2,
          'sense': 2,
          'become': 2,
          'nhowever': 2,
          'said': 2,
          'nat': 2,
          'face': 2,
          'movies': 2,
          'call': 1,
          'demon': 1,
          'ngregory': 1,
          'hoblits': 1,
          'movie': 1,
          'horrific': 1,
          'twist': 1,
          'nif': 1,
          'marketed': 1,
          'properly': 1,
          'could': 1,
          'crossover': 1,
          'appeal': 1,
          'appreciate': 1,
          'supernatural': 1,
          'tales': 1,
          'prophesy': 1,
          'crave': 1,
          'grim': 1,
          'thrillers': 1,
          'silence': 1,
          'lambs': 1,
          'seven': 1,
          'fact': 1,
          'even': 1,
          'twin': 1,
          'peaks': 1,
          'found': 1,
          'albeit': 1,
          'lions': 1,
          'share': 1,
          'weirdness': 1,
          'distilled': 1,
          'n': 1,
          'remember': 1,
          'bob': 1,
          'biggest': 1,
          'failing': 1,
          'consistently': 1,
          'always': 1,
          'edgy': 1,
          'suspenseful': 1,
          'might': 1,
          'hope': 1,
          'na': 1,
          'loose': 1,
          'philadephia': 1,
          'detective': 1,
          'noblest': 1,
          'man': 1,
          'police': 1,
          'force': 1,
          'brought': 1,
          'justice': 1,
          'nnow': 1,
          'row': 1,
          'awaiting': 1,
          'inevitable': 1,
          'date': 1,
          'gas': 1,
          'chamber': 1,
          'mass': 1,
          'murderer': 1,
          'cryptically': 1,
          'tells': 1,
          'really': 1,
          'nshortly': 1,
          'thereafter': 1,
          'begins': 1,
          'sing': 1,
          'side': 1,
          'taken': 1,
          'nminutes': 1,
          'later': 1,
          'state': 1,
          'pennsylvania': 1,
          'carried': 1,
          'execution': 1,
          'edgar': 1,
          'dead': 1,
          'nightmare': 1,
          'beginning': 1,
          'wasnt': 1,
          'normal': 1,
          'psychopath': 1,
          'host': 1,
          'mythical': 1,
          'named': 1,
          'reeses': 1,
          'free': 1,
          'hop': 1,
          'murdering': 1,
          'wreaking': 1,
          'havoc': 1,
          'nonly': 1,
          'pretty': 1,
          'female': 1,
          'teacher': 1,
          'inkling': 1,
          'theyre': 1,
          'rest': 1,
          'cops': 1,
          'partner': 1,
          'jonesy': 1,
          'lou': 1,
          'james': 1,
          'gandolfini': 1,
          'newcomer': 1,
          'department': 1,
          'lieutenant': 1,
          'clue': 1,
          'result': 1,
          'mortal': 1,
          'danger': 1,
          'depicted': 1,
          'hoblit': 1,
          'primal': 1,
          'fear': 1,
          'cinematographer': 1,
          'newton': 1,
          'thomas': 1,
          'sigel': 1,
          'philadelphia': 1,
          'dreary': 1,
          'place': 1,
          'gothic': 1,
          'modern': 1,
          'nno': 1,
          'skyscrapers': 1,
          'monoliths': 1,
          'current': 1,
          'architecture': 1,
          'technology': 1,
          'shown': 1,
          'famous': 1,
          'landmark': 1,
          'isnt': 1,
          'liberty': 1,
          'bell': 1,
          'independence': 1,
          'hall': 1,
          'genos': 1,
          'steaks': 1,
          'nshadows': 1,
          'abound': 1,
          'days': 1,
          'cloudy': 1,
          'unpromising': 1,
          'setting': 1,
          'easy': 1,
          'believe': 1,
          'angels': 1,
          'among': 1,
          'men': 1,
          'nfallens': 1,
          'brimming': 1,
          'potential': 1,
          'realized': 1,
          'nsomehow': 1,
          'would': 1,
          'frightening': 1,
          'tale': 1,
          'emerge': 1,
          'something': 1,
          'premise': 1,
          'level': 1,
          'terror': 1,
          'gore': 1,
          'kept': 1,
          'check': 1,
          'nnevertheless': 1,
          'creepily': 1,
          'effective': 1,
          'spirit': 1,
          'moves': 1,
          'people': 1,
          'bump': 1,
          'crowded': 1,
          'sidewalks': 1,
          'boasts': 1,
          'chase': 1,
          'sequence': 1,
          'described': 1,
          'nof': 1,
          'dozen': 1,
          'actors': 1,
          'play': 1,
          'far': 1,
          'exotica': 1,
          'crash': 1,
          'screen': 1,
          'gives': 1,
          'fantastically': 1,
          'charged': 1,
          'njohn': 1,
          'seems': 1,
          'enjoying': 1,
          'role': 1,
          'relegated': 1,
          'burly': 1,
          'sidekick': 1,
          'nsadly': 1,
          'ones': 1,
          'excel': 1,
          'neveryone': 1,
          'else': 1,
          'boring': 1,
          'flat': 1,
          'disappointing': 1,
          'per': 1,
          'se': 1,
          'ntheres': 1,
          'real': 1,
          'vulnerability': 1,
          'desperation': 1,
          'portrays': 1,
          'character': 1,
          'keeps': 1,
          'us': 1,
          'distanced': 1,
          'slightly': 1,
          'circumstances': 1,
          'progressively': 1,
          'dire': 1,
          'cop': 1,
          'lifeordeath': 1,
          'chess': 1,
          'game': 1,
          'approaches': 1,
          'point': 1,
          'checkmate': 1,
          'edge': 1,
          'seat': 1,
          'subdued': 1,
          'approach': 1,
          'part': 1,
          'reason': 1,
          'never': 1,
          'felt': 1,
          'urgency': 1,
          'least': 1,
          'believable': 1,
          'schindlers': 1,
          'list': 1,
          'nto': 1,
          'fair': 1,
          'flaws': 1,
          'characters': 1,
          'arent': 1,
          'actingrelated': 1,
          'neither': 1,
          'gretta': 1,
          'milano': 1,
          'wellwritten': 1,
          'nthat': 1,
          'nothing': 1,
          'inspired': 1,
          'either': 1,
          'davidtzs': 1,
          'sutherlands': 1,
          'work': 1,
          'nboth': 1,
          'sleepwalking': 1,
          'parts': 1,
          'know': 1,
          'contribution': 1,
          'advancing': 1,
          'developing': 1,
          'multidimensional': 1,
          'individual': 1,
          'nnarratively': 1,
          'glaring': 1,
          'weaknesses': 1,
          'nalthough': 1,
          'proceeds': 1,
          'convoluted': 1,
          'gamelike': 1,
          'structure': 1,
          'uses': 1,
          'washingtonsupplied': 1,
          'voiceover': 1,
          'overexplain': 1,
          'matters': 1,
          'times': 1,
          'actually': 1,
          'helpful': 1,
          'use': 1,
          'beyond': 1,
          'obvious': 1,
          'occasions': 1,
          'ponderous': 1,
          'lines': 1,
          'sometimes': 1,
          'come': 1,
          'hard': 1,
          'swallow': 1,
          'addition': 1,
          'saddled': 1,
          'disgustingly': 1,
          'bland': 1,
          'generic': 1,
          'embraced': 1,
          'numerous': 1,
          'tv': 1,
          'shows': 1,
          'negatives': 1,
          'im': 1,
          'still': 1,
          'recommending': 1,
          'strength': 1,
          'complex': 1,
          'especially': 1,
          'ending': 1,
          'loved': 1,
          'final': 1,
          'startling': 1,
          'audacious': 1,
          'unexpected': 1,
          'often': 1,
          'development': 1,
          'takes': 1,
          'fall': 1,
          'apart': 1,
          'manages': 1,
          'buck': 1,
          'trend': 1,
          'redeem': 1,
          'great': 1,
          'motion': 1,
          'picture': 1,
          'considering': 1,
          'january': 1,
          'releases': 1,
          'reasonably': 1,
          'entertaining': 1,
          'spend': 1,
          'whatever': 1,
          'end': 1,
          'credits': 1,
          'begun': 1,
          'roll': 1,
          'npos': 1}),
 Counter({'good': 15,
          'character': 6,
          'melvin': 5,
          'carol': 5,
          'nicholson': 5,
          'would': 5,
          'though': 4,
          'gets': 4,
          'also': 4,
          'hes': 4,
          'fun': 4,
          'simpsons': 3,
          'screen': 3,
          'comedy': 3,
          'anyone': 3,
          'bit': 3,
          'seems': 3,
          'nbut': 3,
          'much': 3,
          'film': 3,
          'nice': 3,
          'movie': 3,
          'director': 2,
          'slightly': 2,
          'nnicholson': 2,
          'udall': 2,
          'person': 2,
          'ever': 2,
          'nhes': 2,
          'talks': 2,
          'waitress': 2,
          'conelly': 2,
          '1996': 2,
          'gay': 2,
          'neighbor': 2,
          'end': 2,
          '1997': 2,
          'even': 2,
          'get': 2,
          'ntheres': 2,
          'role': 2,
          'performance': 2,
          'scene': 2,
          'gooding': 2,
          'maguire': 2,
          'although': 2,
          'still': 2,
          'nhe': 2,
          'nicholsons': 2,
          'fall': 2,
          'love': 2,
          'melvins': 2,
          'quickly': 2,
          'like': 2,
          'time': 2,
          'make': 2,
          'audience': 2,
          'generally': 2,
          'james': 1,
          'l': 1,
          'brooks': 1,
          'one': 1,
          'developers': 1,
          'broadcast': 1,
          'news': 1,
          'returns': 1,
          'big': 1,
          'entertaining': 1,
          'flawed': 1,
          'plays': 1,
          'probably': 1,
          'horrible': 1,
          'racist': 1,
          'homophobic': 1,
          'never': 1,
          'word': 1,
          'say': 1,
          'nso': 1,
          'nobody': 1,
          'except': 1,
          'v': 1,
          'nsitcom': 1,
          'star': 1,
          'hunt': 1,
          'last': 1,
          'seen': 1,
          'twister': 1,
          'nnaturally': 1,
          'simon': 1,
          'bishop': 1,
          'kinnear': 1,
          'hates': 1,
          'hit': 1,
          'nlike': 1,
          'hunting': 1,
          'titanic': 1,
          'outcome': 1,
          'completely': 1,
          'obvious': 1,
          'enjoyable': 1,
          'funny': 1,
          'warm': 1,
          'hilarious': 1,
          'churning': 1,
          'insults': 1,
          'superb': 1,
          'relish': 1,
          'nonly': 1,
          'could': 1,
          'away': 1,
          'lines': 1,
          'delivers': 1,
          'nhunt': 1,
          'easily': 1,
          'rises': 1,
          'challenge': 1,
          'thankfully': 1,
          'chemistry': 1,
          'nkinnear': 1,
          'underwritten': 1,
          'plot': 1,
          'convience': 1,
          'nalthough': 1,
          'exist': 1,
          'help': 1,
          'come': 1,
          'together': 1,
          'nin': 1,
          'fact': 1,
          'stealer': 1,
          'simons': 1,
          'dog': 1,
          'funnier': 1,
          'pets': 1,
          'always': 1,
          'cute': 1,
          'nproviding': 1,
          'solid': 1,
          'support': 1,
          'cuba': 1,
          'jnr': 1,
          'jerry': 1,
          'yeardly': 1,
          'smith': 1,
          'voice': 1,
          'lisa': 1,
          'isnt': 1,
          'overacts': 1,
          'little': 1,
          'annoying': 1,
          'nsmith': 1,
          'fairly': 1,
          'small': 1,
          'neven': 1,
          'lawrence': 1,
          'kasdan': 1,
          'body': 1,
          'heat': 1,
          '1981': 1,
          'makes': 1,
          'appearance': 1,
          'doctor': 1,
          'primarily': 1,
          'every': 1,
          'steals': 1,
          'hateful': 1,
          'amazing': 1,
          'especially': 1,
          'nand': 1,
          'films': 1,
          'main': 1,
          'problem': 1,
          'nits': 1,
          'totally': 1,
          'unbelievable': 1,
          'consider': 1,
          'liking': 1,
          'nshe': 1,
          'doesnt': 1,
          'naturally': 1,
          'forces': 1,
          'nalso': 1,
          'go': 1,
          'ni': 1,
          'doubt': 1,
          'able': 1,
          'turn': 1,
          'back': 1,
          'loving': 1,
          'nit': 1,
          'take': 1,
          'helluva': 1,
          'long': 1,
          'longer': 1,
          'nbrooks': 1,
          'direction': 1,
          'average': 1,
          'usually': 1,
          'manages': 1,
          'emotion': 1,
          'handles': 1,
          'scenes': 1,
          'better': 1,
          'sentimental': 1,
          'ones': 1,
          'tends': 1,
          'pile': 1,
          'schmaltz': 1,
          'soundtrack': 1,
          'veteran': 1,
          'composer': 1,
          'hans': 1,
          'zimmer': 1,
          'achieves': 1,
          'sets': 1,
          'feel': 1,
          'nthe': 1,
          'overlong': 1,
          'running': 1,
          'passes': 1,
          'pretty': 1,
          'noverall': 1,
          'may': 1,
          'unbelivable': 1,
          'certainly': 1,
          'worth': 1,
          'seeing': 1,
          'jack': 1,
          'nnot': 1,
          'quite': 1,
          'pardon': 1,
          'bad': 1,
          'joke': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'love': 7,
          'marianne': 6,
          'rudolph': 5,
          'characters': 5,
          'lucky': 5,
          'phyllis': 5,
          'jeffrey': 4,
          'mrs': 3,
          'nparker': 3,
          'movie': 3,
          'film': 3,
          'afterglow': 3,
          'picture': 3,
          'rudolphs': 3,
          'ni': 3,
          'one': 3,
          'two': 3,
          'much': 3,
          'director': 2,
          'making': 2,
          'romantic': 2,
          'motion': 2,
          'approach': 2,
          'equinox': 2,
          'seems': 2,
          'real': 2,
          'short': 2,
          'nafterglow': 2,
          'married': 2,
          'lee': 2,
          'miller': 2,
          'businessman': 2,
          'flynn': 2,
          'boyle': 2,
          'shes': 2,
          'find': 2,
          'else': 2,
          'nolte': 2,
          'julie': 2,
          'christie': 2,
          'older': 2,
          'theyre': 2,
          'emotional': 2,
          'doesnt': 2,
          'means': 2,
          'however': 2,
          'character': 2,
          'stylistic': 1,
          'detour': 1,
          'vicious': 1,
          'circle': 1,
          'despite': 1,
          'uncomfortable': 1,
          'tone': 1,
          'close': 1,
          'conventional': 1,
          'alan': 1,
          'returned': 1,
          'unique': 1,
          'brand': 1,
          'black': 1,
          'comedy': 1,
          'betrayal': 1,
          'selfabsorption': 1,
          'nwhile': 1,
          'may': 1,
          'unusual': 1,
          'themes': 1,
          'fashion': 1,
          'atypical': 1,
          'situations': 1,
          'makes': 1,
          'intriguing': 1,
          'always': 1,
          'pleasant': 1,
          'nit': 1,
          'said': 1,
          'polarizing': 1,
          'meaning': 1,
          'viewers': 1,
          'either': 1,
          'work': 1,
          'hate': 1,
          'nuntil': 1,
          'overly': 1,
          'impressed': 1,
          'movies': 1,
          'found': 1,
          'last': 1,
          'pre': 1,
          'effort': 1,
          'irritating': 1,
          'frustrating': 1,
          'somewhat': 1,
          'surprised': 1,
          'therefore': 1,
          'discover': 1,
          'liked': 1,
          'nthere': 1,
          'several': 1,
          'reasons': 1,
          'paramount': 1,
          'muted': 1,
          'strident': 1,
          'mannered': 1,
          'aspects': 1,
          'like': 1,
          'people': 1,
          'genuine': 1,
          'problems': 1,
          'story': 1,
          'absorbing': 1,
          'acting': 1,
          'topnotch': 1,
          'nin': 1,
          'created': 1,
          'world': 1,
          'worth': 1,
          'spending': 1,
          'hours': 1,
          'introduces': 1,
          'us': 1,
          'unhappily': 1,
          'couples': 1,
          'njeffrey': 1,
          'byron': 1,
          'jonny': 1,
          'cold': 1,
          'seeminglyheartless': 1,
          'sexually': 1,
          'indifferent': 1,
          'young': 1,
          'wife': 1,
          'lara': 1,
          'nfor': 1,
          'part': 1,
          'obsessed': 1,
          'baby': 1,
          'never': 1,
          'attempts': 1,
          'interact': 1,
          'husband': 1,
          'human': 1,
          'level': 1,
          'nall': 1,
          'interested': 1,
          'seducing': 1,
          'days': 1,
          'ovulating': 1,
          'nafter': 1,
          'refuses': 1,
          'make': 1,
          'decides': 1,
          'someone': 1,
          'play': 1,
          'role': 1,
          'sperm': 1,
          'donor': 1,
          'couple': 1,
          'nick': 1,
          'mann': 1,
          'pair': 1,
          'content': 1,
          'na': 1,
          'mysterious': 1,
          'fracture': 1,
          'past': 1,
          'relationship': 1,
          'driven': 1,
          'apart': 1,
          'nthey': 1,
          'remain': 1,
          'matter': 1,
          'convenience': 1,
          'since': 1,
          'wont': 1,
          'allow': 1,
          'touch': 1,
          'unspoken': 1,
          'agreement': 1,
          'whereby': 1,
          'fool': 1,
          'around': 1,
          'wants': 1,
          'provided': 1,
          'lasting': 1,
          'bond': 1,
          'established': 1,
          'result': 1,
          'affairs': 1,
          'landscape': 1,
          'pain': 1,
          'palpable': 1,
          'four': 1,
          'begin': 1,
          'interacting': 1,
          'hires': 1,
          'handyman': 1,
          'fix': 1,
          'inside': 1,
          'apartment': 1,
          'shares': 1,
          'immediately': 1,
          'attracted': 1,
          'another': 1,
          'take': 1,
          'long': 1,
          'lounging': 1,
          'together': 1,
          'naked': 1,
          'pool': 1,
          'nmeanwhile': 1,
          'captivated': 1,
          'women': 1,
          'runs': 1,
          'hotel': 1,
          'bar': 1,
          'smitten': 1,
          'invites': 1,
          'accompany': 1,
          'weekend': 1,
          'retreat': 1,
          'mountains': 1,
          'couplings': 1,
          'interesting': 1,
          'illustrate': 1,
          'multiple': 1,
          'faces': 1,
          'nsex': 1,
          'something': 1,
          'different': 1,
          'everyone': 1,
          'unpleasant': 1,
          'chore': 1,
          'loss': 1,
          'control': 1,
          'maternal': 1,
          'end': 1,
          'enjoyable': 1,
          'distraction': 1,
          'blocks': 1,
          'marital': 1,
          'troubles': 1,
          'method': 1,
          'establishing': 1,
          'denying': 1,
          'closeness': 1,
          'nultimately': 1,
          'none': 1,
          'appears': 1,
          'anyone': 1,
          'greatest': 1,
          'strength': 1,
          'lies': 1,
          'script': 1,
          'performances': 1,
          'njonny': 1,
          'perfect': 1,
          'selfish': 1,
          'callous': 1,
          'suitandtie': 1,
          'nthose': 1,
          'recall': 1,
          'sickboy': 1,
          'trainspotting': 1,
          'almost': 1,
          'unrecognizable': 1,
          'image': 1,
          'conformity': 1,
          'nlara': 1,
          'wasnt': 1,
          'impressive': 1,
          'greatly': 1,
          'improved': 1,
          'jumble': 1,
          'sexiness': 1,
          'vulnerability': 1,
          'nnick': 1,
          'delightful': 1,
          'uninhibited': 1,
          'manages': 1,
          'deliver': 1,
          'pregnant': 1,
          'lines': 1,
          'practiced': 1,
          'ease': 1,
          'clear': 1,
          'standout': 1,
          'nothing': 1,
          'delicious': 1,
          'worldweary': 1,
          'nher': 1,
          'often': 1,
          'wry': 1,
          'occasionally': 1,
          'cutting': 1,
          'asides': 1,
          'source': 1,
          'films': 1,
          'humor': 1,
          'theres': 1,
          'hardly': 1,
          'ever': 1,
          'moment': 1,
          'steal': 1,
          'spotlight': 1,
          'costars': 1,
          'dont': 1,
          'know': 1,
          'convert': 1,
          'detractors': 1,
          'little': 1,
          'accessible': 1,
          'directors': 1,
          'earlier': 1,
          'productions': 1,
          'nenough': 1,
          'trademark': 1,
          'style': 1,
          'remains': 1,
          'reassure': 1,
          'supporters': 1,
          'basically': 1,
          'fourpronged': 1,
          'study': 1,
          'plot': 1,
          'especially': 1,
          'compelling': 1,
          'interaction': 1,
          'thats': 1,
          'reason': 1,
          'see': 1,
          'nrudolph': 1,
          'painted': 1,
          'able': 1,
          'nonromantic': 1,
          'side': 1,
          'tolerance': 1,
          'familiarity': 1,
          'affection': 1,
          'attraction': 1,
          'npos': 1}),
 Counter({'story': 6,
          'gerard': 6,
          'believable': 4,
          'richard': 4,
          'man': 4,
          'wife': 4,
          'nthe': 4,
          'kimbles': 4,
          'much': 4,
          'film': 4,
          'great': 4,
          'one': 3,
          'greatest': 3,
          'action': 3,
          'sense': 3,
          'murder': 3,
          'nwe': 3,
          'see': 3,
          'get': 3,
          'make': 3,
          'fugitive': 2,
          'characters': 2,
          'nthis': 2,
          'mystery': 2,
          'manner': 2,
          'constantly': 2,
          'dont': 2,
          'killer': 2,
          'little': 2,
          'innocence': 2,
          'time': 2,
          'point': 2,
          'none': 2,
          'ensues': 2,
          'movie': 2,
          'like': 2,
          'show': 2,
          'know': 2,
          'killed': 2,
          'chase': 2,
          'scene': 2,
          'makes': 2,
          'go': 2,
          'probably': 1,
          'thrillers': 1,
          'ever': 1,
          'made': 1,
          'nit': 1,
          'takes': 1,
          'realistic': 1,
          'tells': 1,
          'exciting': 1,
          'thats': 1,
          'totally': 1,
          'throughout': 1,
          'isnt': 1,
          'overthetop': 1,
          'flick': 1,
          'sake': 1,
          'intelligent': 1,
          'adventure': 1,
          'real': 1,
          'works': 1,
          'perfectly': 1,
          'nharrison': 1,
          'ford': 1,
          'stars': 1,
          'dr': 1,
          'kimble': 1,
          'wrongly': 1,
          'accused': 1,
          'convicted': 1,
          'murdering': 1,
          'entire': 1,
          'premise': 1,
          'revolves': 1,
          'around': 1,
          'told': 1,
          'straightforward': 1,
          'flashbacks': 1,
          'perspective': 1,
          'nhints': 1,
          'dropped': 1,
          'various': 1,
          'times': 1,
          'night': 1,
          'helen': 1,
          'sela': 1,
          'ward': 1,
          'murdered': 1,
          'nin': 1,
          'fact': 1,
          'might': 1,
          'even': 1,
          'doubt': 1,
          'doesnt': 1,
          'spend': 1,
          'details': 1,
          'trial': 1,
          'conviction': 1,
          'scenes': 1,
          'botched': 1,
          'escape': 1,
          'attempt': 1,
          'fellow': 1,
          'inmates': 1,
          'leads': 1,
          'fantastic': 1,
          'train': 1,
          'wreck': 1,
          'nbut': 1,
          'seem': 1,
          'gratuitous': 1,
          'formulated': 1,
          'actually': 1,
          'suspenseful': 1,
          'watch': 1,
          'incredible': 1,
          'able': 1,
          'take': 1,
          'elements': 1,
          'wholly': 1,
          'original': 1,
          'ntommy': 1,
          'lee': 1,
          'jones': 1,
          'almost': 1,
          'steals': 1,
          'deputy': 1,
          'sam': 1,
          'u': 1,
          'marshall': 1,
          'expert': 1,
          'hunting': 1,
          'fugitives': 1,
          'nfrom': 1,
          'moment': 1,
          'appears': 1,
          'huge': 1,
          'game': 1,
          'cat': 1,
          'mouse': 1,
          'occur': 1,
          'nkimble': 1,
          'equally': 1,
          'matched': 1,
          'way': 1,
          'tell': 1,
          'going': 1,
          'outsmart': 1,
          'nmost': 1,
          'deals': 1,
          'richards': 1,
          'complex': 1,
          'investigation': 1,
          'tries': 1,
          'find': 1,
          'onearmed': 1,
          'nford': 1,
          'lot': 1,
          'lines': 1,
          'stuart': 1,
          'twohys': 1,
          'script': 1,
          'daviss': 1,
          'outstanding': 1,
          'direction': 1,
          'njust': 1,
          'watching': 1,
          'use': 1,
          'keen': 1,
          'intelligence': 1,
          'wits': 1,
          'disguising': 1,
          'detective': 1,
          'work': 1,
          'interesting': 1,
          'learns': 1,
          'nmeanwhile': 1,
          'staff': 1,
          'using': 1,
          'skills': 1,
          'hunt': 1,
          'nat': 1,
          'run': 1,
          'smart': 1,
          'nhe': 1,
          'leaves': 1,
          'clues': 1,
          'help': 1,
          'solve': 1,
          'charms': 1,
          'humor': 1,
          'nthere': 1,
          'comradeship': 1,
          'two': 1,
          'closest': 1,
          'deputies': 1,
          'cosmo': 1,
          'renfo': 1,
          'pantoliano': 1,
          'biggs': 1,
          'roebuck': 1,
          'nthey': 1,
          'trying': 1,
          'catch': 1,
          'believe': 1,
          'dangerous': 1,
          'murderer': 1,
          'yet': 1,
          'start': 1,
          'small': 1,
          'talk': 1,
          'making': 1,
          'funny': 1,
          'wisecracks': 1,
          'oneliners': 1,
          'kind': 1,
          'distracting': 1,
          'final': 1,
          'act': 1,
          'concludes': 1,
          'another': 1,
          'terrific': 1,
          'nrichard': 1,
          'figures': 1,
          'confronts': 1,
          'although': 1,
          'typical': 1,
          'fight': 1,
          'case': 1,
          'far': 1,
          'solved': 1,
          'ordered': 1,
          'nose': 1,
          'along': 1,
          'realize': 1,
          'end': 1,
          'put': 1,
          'pieces': 1,
          'together': 1,
          'nmaybe': 1,
          'finally': 1,
          'bit': 1,
          'still': 1,
          'atmosphere': 1,
          'nwere': 1,
          'relieved': 1,
          'justice': 1,
          'served': 1,
          'nits': 1,
          'plot': 1,
          'motions': 1,
          'intriguing': 1,
          'nwatching': 1,
          'seemingly': 1,
          'average': 1,
          'adventurous': 1,
          'nif': 1,
          'hollywood': 1,
          'could': 1,
          'produce': 1,
          'movies': 1,
          'n': 1,
          '103196': 1,
          '12997': 1,
          '61397': 1,
          'also': 1,
          'nick': 1,
          'npos': 1}),
 Counter({'wedding': 9,
          'film': 7,
          'singer': 6,
          'good': 5,
          'romantic': 4,
          'sandler': 4,
          'movie': 4,
          'funny': 4,
          'nand': 4,
          'seen': 3,
          'hard': 3,
          'ni': 3,
          'robby': 3,
          'nin': 3,
          'like': 3,
          'really': 3,
          'julia': 3,
          'think': 2,
          'ever': 2,
          'predict': 2,
          'films': 2,
          'im': 2,
          'watching': 2,
          'comedies': 2,
          'plot': 2,
          'actually': 2,
          'nnot': 2,
          'even': 2,
          'little': 2,
          'nmy': 2,
          'great': 2,
          'barrymore': 2,
          'left': 2,
          'air': 2,
          'laughed': 2,
          'writing': 2,
          'music': 2,
          'job': 2,
          'life': 2,
          'na': 2,
          'e': 2,
          'glenn': 2,
          'jerk': 2,
          'anyone': 2,
          'something': 2,
          'truly': 2,
          'makes': 2,
          'simply': 2,
          'ive': 2,
          'look': 2,
          'character': 2,
          'likable': 2,
          'comedy': 2,
          'hilarious': 2,
          'first': 2,
          'nthe': 2,
          'competent': 1,
          'member': 1,
          'human': 1,
          'race': 1,
          'whos': 1,
          'movieany': 1,
          'moviecould': 1,
          'probably': 1,
          'every': 1,
          'turn': 1,
          'neven': 1,
          'though': 1,
          'try': 1,
          'especially': 1,
          'particular': 1,
          'advanced': 1,
          'seconds': 1,
          'sometimes': 1,
          'minutes': 1,
          'saw': 1,
          'happen': 1,
          'screen': 1,
          'nbut': 1,
          'dont': 1,
          'care': 1,
          'reasons': 1,
          'simple': 1,
          '1': 1,
          'adam': 1,
          'n2': 1,
          'drew': 1,
          'n3': 1,
          'nthere': 1,
          'parts': 1,
          'gasping': 1,
          'laughing': 1,
          'havent': 1,
          'since': 1,
          'austin': 1,
          'powers': 1,
          'nsandler': 1,
          'plays': 1,
          'hart': 1,
          'dreams': 1,
          'rock': 1,
          'band': 1,
          'opening': 1,
          'scenes': 1,
          'seems': 1,
          'happygolucky': 1,
          'least': 1,
          'partially': 1,
          'enjoying': 1,
          'profession': 1,
          'rather': 1,
          'talking': 1,
          'drunk': 1,
          'individual': 1,
          'steve': 1,
          'buscemi': 1,
          'decides': 1,
          'brothers': 1,
          'place': 1,
          'tell': 1,
          'whole': 1,
          'world': 1,
          'point': 1,
          'utter': 1,
          'pointlessness': 1,
          'week': 1,
          'later': 1,
          'standing': 1,
          'altar': 1,
          'exfianc': 1,
          'linda': 1,
          'angela': 1,
          'featherstone': 1,
          'nwith': 1,
          'complete': 1,
          'disarray': 1,
          'meets': 1,
          'waitress': 1,
          'nshe': 1,
          'engaged': 1,
          'matthew': 1,
          'glave': 1,
          'marry': 1,
          'three': 1,
          'months': 1,
          'njulia': 1,
          'become': 1,
          'friends': 1,
          'enlists': 1,
          'help': 1,
          'plans': 1,
          'nsoon': 1,
          'predictably': 1,
          'becomes': 1,
          'pretty': 1,
          'clear': 1,
          'love': 1,
          'noh': 1,
          'sure': 1,
          'trite': 1,
          'making': 1,
          'expected': 1,
          'us': 1,
          'feel': 1,
          'suspense': 1,
          'underestimated': 1,
          'audience': 1,
          'nwhat': 1,
          'story': 1,
          'bearable': 1,
          'aside': 1,
          'terrific': 1,
          'costumes': 1,
          '80s': 1,
          'performances': 1,
          'nbarrymore': 1,
          'adorable': 1,
          'never': 1,
          'close': 1,
          'way': 1,
          'et': 1,
          'pleasant': 1,
          'acting': 1,
          'oneand': 1,
          'doesnt': 1,
          'hurt': 1,
          'adequately': 1,
          'wellwritten': 1,
          'played': 1,
          'fullforce': 1,
          'graves': 1,
          'despicable': 1,
          'villain': 1,
          'nnaturally': 1,
          'true': 1,
          'star': 1,
          'guy': 1,
          'flatout': 1,
          'nhe': 1,
          'say': 1,
          'isnt': 1,
          'delivery': 1,
          'laugh': 1,
          'nhis': 1,
          'comedic': 1,
          'performance': 1,
          'equals': 1,
          'happy': 1,
          'gilmore': 1,
          'goes': 1,
          'much': 1,
          'proves': 1,
          'indeed': 1,
          'hold': 1,
          'leading': 1,
          'man': 1,
          'nwhereas': 1,
          'roles': 1,
          'previous': 1,
          'kind': 1,
          'playing': 1,
          'gives': 1,
          'time': 1,
          'fit': 1,
          'nas': 1,
          'far': 1,
          'concerned': 1,
          'succeeded': 1,
          'testimony': 1,
          'fact': 1,
          'range': 1,
          'talents': 1,
          'nperhaps': 1,
          'best': 1,
          'moment': 1,
          'sings': 1,
          'song': 1,
          'claims': 1,
          'uneven': 1,
          'began': 1,
          'mood': 1,
          'finished': 1,
          'fianc': 1,
          'abandoned': 1,
          'nthis': 1,
          'part': 1,
          'literally': 1,
          'groping': 1,
          'breath': 1,
          'takes': 1,
          'hiatus': 1,
          'laughs': 1,
          'towards': 1,
          'end': 1,
          'finish': 1,
          'enough': 1,
          'moments': 1,
          'hour': 1,
          'make': 1,
          'slumps': 1,
          'progress': 1,
          'second': 1,
          'half': 1,
          'formal': 1,
          'complaints': 1,
          'arent': 1,
          'important': 1,
          'predicable': 1,
          'cares': 1,
          'characters': 1,
          'extremely': 1,
          'ridiculously': 1,
          'experience': 1,
          'enjoyable': 1,
          'addition': 1,
          'cant': 1,
          'imagine': 1,
          'seeing': 1,
          'preview': 1,
          'wanting': 1,
          'see': 1,
          'order': 1,
          'conclude': 1,
          'pointless': 1,
          'written': 1,
          'review': 1,
          'want': 1,
          'everyone': 1,
          'know': 1,
          'lot': 1,
          'npos': 1}),
 Counter({'film': 7,
          'mummy': 4,
          'nthe': 4,
          'would': 4,
          'rick': 3,
          'played': 3,
          'movie': 3,
          'non': 3,
          'one': 3,
          'make': 3,
          'nwhile': 3,
          'end': 3,
          'sound': 3,
          'mistress': 2,
          'way': 2,
          'flesheating': 2,
          'scarab': 2,
          'beetles': 2,
          'named': 2,
          'fraser': 2,
          'evelyn': 2,
          'good': 2,
          'cgi': 2,
          'done': 2,
          'scenes': 2,
          'involving': 2,
          'mummies': 2,
          'moments': 2,
          'action': 2,
          'nand': 2,
          'comedy': 2,
          'serving': 2,
          'comic': 2,
          'relief': 2,
          'least': 2,
          'slapstick': 2,
          'army': 2,
          'really': 2,
          'entertaining': 2,
          'nbut': 2,
          'lot': 2,
          'theatre': 2,
          'based': 1,
          'boris': 1,
          'karloffs': 1,
          'classic': 1,
          'name': 1,
          'starts': 1,
          'highpriest': 1,
          'osiris': 1,
          'imhotep': 1,
          'murders': 1,
          'pharoah': 1,
          'punished': 1,
          'mummified': 1,
          'horrifying': 1,
          'possible': 1,
          'bandaged': 1,
          'tongue': 1,
          'removed': 1,
          'covered': 1,
          'entombed': 1,
          'still': 1,
          'alive': 1,
          'nrecap': 1,
          'thousand': 1,
          'years': 1,
          'later': 1,
          'soldier': 1,
          'brandan': 1,
          'aids': 1,
          'young': 1,
          'historian': 1,
          'rachel': 1,
          'wiesz': 1,
          'brother': 1,
          'jonathan': 1,
          'john': 1,
          'hannah': 1,
          'finding': 1,
          'book': 1,
          'amon': 1,
          'ra': 1,
          'process': 1,
          'inadvertently': 1,
          'freeing': 1,
          'nproblem': 1,
          'wants': 1,
          'revive': 1,
          'using': 1,
          'sacrifice': 1,
          'nwalking': 1,
          'relatively': 1,
          'low': 1,
          'expectations': 1,
          'thought': 1,
          'actually': 1,
          'pretty': 1,
          'visuals': 1,
          'astounding': 1,
          'obviously': 1,
          'cheaply': 1,
          'nthey': 1,
          'pack': 1,
          'ton': 1,
          'detail': 1,
          'images': 1,
          'especially': 1,
          'rendered': 1,
          'completely': 1,
          'computer': 1,
          'special': 1,
          'effects': 1,
          'makes': 1,
          'brilliant': 1,
          'unnerving': 1,
          'goes': 1,
          'people': 1,
          'freed': 1,
          'took': 1,
          'artifacts': 1,
          'cursed': 1,
          'nunfortunately': 1,
          'attempts': 1,
          'much': 1,
          'short': 1,
          'span': 1,
          'time': 1,
          'becoming': 1,
          'tug': 1,
          'war': 1,
          'control': 1,
          'genres': 1,
          'hand': 1,
          'fast': 1,
          'paced': 1,
          'frightening': 1,
          'horror': 1,
          'side': 1,
          'hilarious': 1,
          'nideally': 1,
          'successful': 1,
          'focus': 1,
          'oriented': 1,
          'aspect': 1,
          'character': 1,
          'johnson': 1,
          'problem': 1,
          'three': 1,
          'characters': 1,
          'occasionally': 1,
          'delivering': 1,
          'witty': 1,
          'oneliner': 1,
          'nif': 1,
          'trying': 1,
          'horroractioncomedy': 1,
          'helped': 1,
          'established': 1,
          'early': 1,
          'unfortunately': 1,
          'backstory': 1,
          'imhoteps': 1,
          'entombment': 1,
          'impossible': 1,
          'theres': 1,
          'fight': 1,
          'scene': 1,
          'swordwielding': 1,
          'well': 1,
          'feel': 1,
          'nreplace': 1,
          'sword': 1,
          'chainsaw': 1,
          'youd': 1,
          'effectively': 1,
          'ash': 1,
          'fighting': 1,
          'zombies': 1,
          'darkness': 1,
          'funny': 1,
          'feels': 1,
          'place': 1,
          'break': 1,
          'naive': 1,
          'heroes': 1,
          'brendan': 1,
          'playing': 1,
          'whole': 1,
          'pure': 1,
          'popcorn': 1,
          'fare': 1,
          'beginning': 1,
          'audience': 1,
          'must': 1,
          'review': 1,
          'plea': 1,
          'owners': 1,
          'turn': 1,
          'theatres': 1,
          'systems': 1,
          'ears': 1,
          'almost': 1,
          'ringing': 1,
          'walked': 1,
          'particularly': 1,
          'irritating': 1,
          'crap': 1,
          'pants': 1,
          'youre': 1,
          'careful': 1,
          'nwhen': 1,
          'showing': 1,
          'trailer': 1,
          'upcoming': 1,
          'schwarzenegger': 1,
          'days': 1,
          'loud': 1,
          'couldnt': 1,
          'anything': 1,
          'npos': 1}),
 Counter({'tenebrae': 7,
          'argento': 7,
          'film': 7,
          'neal': 7,
          'murder': 6,
          'nthe': 6,
          'argentos': 5,
          'killer': 5,
          'films': 5,
          'mystery': 4,
          'back': 4,
          'nhe': 4,
          'much': 3,
          'nin': 3,
          'still': 3,
          'giallo': 3,
          'story': 3,
          'peter': 3,
          'serial': 3,
          'personal': 3,
          'world': 3,
          'may': 3,
          'deep': 3,
          'scenes': 3,
          'nand': 3,
          'way': 3,
          'time': 3,
          'nbut': 3,
          'scene': 3,
          'end': 3,
          'girl': 3,
          'italian': 2,
          'style': 2,
          'matters': 2,
          'somewhat': 2,
          'mysteries': 2,
          'perfect': 2,
          'viewings': 2,
          'reveal': 2,
          'stylish': 2,
          'thriller': 2,
          'franciosa': 2,
          'decides': 2,
          'take': 2,
          'seems': 2,
          'character': 2,
          'business': 2,
          'ntenebrae': 2,
          'least': 2,
          'two': 2,
          'three': 2,
          'themes': 2,
          'version': 2,
          'fans': 2,
          'say': 2,
          'impressive': 2,
          'earlier': 2,
          'like': 2,
          'red': 2,
          'set': 2,
          'rock': 2,
          'viewers': 2,
          'mind': 2,
          'narrative': 2,
          'doesnt': 2,
          'point': 2,
          'dont': 2,
          'nby': 2,
          'twist': 2,
          'could': 2,
          'nwe': 2,
          'witness': 2,
          'later': 2,
          'us': 2,
          'bloody': 2,
          'see': 2,
          'whole': 2,
          'killers': 2,
          'almost': 2,
          'also': 2,
          'injury': 2,
          'look': 2,
          'problem': 2,
          'boy': 2,
          'flaws': 2,
          'visuals': 2,
          'one': 2,
          'exciting': 2,
          'ntake': 2,
          'nits': 2,
          'rewatching': 1,
          'writerdirector': 1,
          'dario': 1,
          'lauded': 1,
          'struck': 1,
          'anything': 1,
          'else': 1,
          'many': 1,
          'sins': 1,
          'commits': 1,
          'storyteller': 1,
          'manages': 1,
          'get': 1,
          'away': 1,
          'emphasising': 1,
          'plot': 1,
          'notorious': 1,
          'cult': 1,
          'circles': 1,
          'aficionados': 1,
          'praise': 1,
          'greatest': 1,
          'nwhile': 1,
          'certainly': 1,
          'repeated': 1,
          'nonetheless': 1,
          'densely': 1,
          'plotted': 1,
          'terrifically': 1,
          'follows': 1,
          'promotional': 1,
          'visit': 1,
          'rome': 1,
          'famous': 1,
          'american': 1,
          'novelist': 1,
          'anthony': 1,
          'discovers': 1,
          'loose': 1,
          'inspired': 1,
          'latest': 1,
          'book': 1,
          'nwith': 1,
          'police': 1,
          'leads': 1,
          'interest': 1,
          'case': 1,
          'soon': 1,
          'becomes': 1,
          'drawn': 1,
          'benefits': 1,
          'enormously': 1,
          'fine': 1,
          'central': 1,
          'performance': 1,
          'brings': 1,
          'grace': 1,
          'charm': 1,
          'deceptive': 1,
          'benigness': 1,
          'provides': 1,
          'interesting': 1,
          'foil': 1,
          'violence': 1,
          'books': 1,
          'writes': 1,
          'unfolding': 1,
          'reallife': 1,
          'horror': 1,
          'around': 1,
          'awash': 1,
          'fascinating': 1,
          'psychosexual': 1,
          'tension': 1,
          'nargento': 1,
          'peels': 1,
          'facade': 1,
          'showbiz': 1,
          'jetset': 1,
          'lifestyles': 1,
          'amoral': 1,
          'ambivalent': 1,
          'shadowy': 1,
          'desire': 1,
          'forms': 1,
          'become': 1,
          'dangerous': 1,
          'perhaps': 1,
          'multilayered': 1,
          'scripts': 1,
          'date': 1,
          'bubbling': 1,
          'underneath': 1,
          'surface': 1,
          'nit': 1,
          'appreciate': 1,
          'psychological': 1,
          'play': 1,
          'respect': 1,
          'strongly': 1,
          'recalls': 1,
          'previous': 1,
          'redprofondo': 1,
          'rosso': 1,
          'fulllength': 1,
          'language': 1,
          'enjoy': 1,
          'spotting': 1,
          'recurring': 1,
          'nneedless': 1,
          'denying': 1,
          'directors': 1,
          'brilliance': 1,
          'stylist': 1,
          'nmany': 1,
          'action': 1,
          'sequences': 1,
          'directed': 1,
          'characteristic': 1,
          'finesse': 1,
          'feature': 1,
          'plenty': 1,
          'intriguing': 1,
          'camerawork': 1,
          'nthey': 1,
          'fact': 1,
          'creates': 1,
          'mood': 1,
          'filling': 1,
          'light': 1,
          'rather': 1,
          'dark': 1,
          'shadows': 1,
          'rich': 1,
          'colours': 1,
          'works': 1,
          'suspiria': 1,
          'ninstead': 1,
          'tenebraes': 1,
          'design': 1,
          'lighting': 1,
          'paints': 1,
          'sleek': 1,
          'clinical': 1,
          'chilly': 1,
          'vision': 1,
          'vaguely': 1,
          'futuristic': 1,
          'urban': 1,
          'soundtracks': 1,
          'mix': 1,
          'electronic': 1,
          'atmospheres': 1,
          'gothic': 1,
          'frequent': 1,
          'collaborators': 1,
          'goblin': 1,
          'accompaniment': 1,
          'nso': 1,
          'recommend': 1,
          'question': 1,
          'nstill': 1,
          'constantly': 1,
          'nagging': 1,
          'several': 1,
          'lumps': 1,
          'nsome': 1,
          'critics': 1,
          'argue': 1,
          'logic': 1,
          'matter': 1,
          'damnit': 1,
          'deserve': 1,
          'feel': 1,
          'cheated': 1,
          'want': 1,
          'know': 1,
          'solution': 1,
          'skip': 1,
          'next': 1,
          'paragraphs': 1,
          'nabout': 1,
          'hour': 1,
          'takes': 1,
          'unexpected': 1,
          'properly': 1,
          'handled': 1,
          'proved': 1,
          'ingenious': 1,
          'man': 1,
          'discover': 1,
          'none': 1,
          'author': 1,
          'insane': 1,
          'apparently': 1,
          'murders': 1,
          'continue': 1,
          'remainder': 1,
          'settle': 1,
          'involving': 1,
          'neurotic': 1,
          'wife': 1,
          'finally': 1,
          'revealed': 1,
          'second': 1,
          'climax': 1,
          'muffs': 1,
          'technically': 1,
          'narratively': 1,
          'nyou': 1,
          'supposed': 1,
          'tricked': 1,
          'thinking': 1,
          'actually': 1,
          'innocent': 1,
          'crouching': 1,
          'bushes': 1,
          'nearby': 1,
          'spying': 1,
          'house': 1,
          'thanks': 1,
          'poor': 1,
          'editing': 1,
          'believe': 1,
          'murdered': 1,
          'anyway': 1,
          'nbad': 1,
          'cutting': 1,
          'puts': 1,
          'timing': 1,
          'words': 1,
          'hes': 1,
          'places': 1,
          'nduring': 1,
          'crucial': 1,
          'thrown': 1,
          'ridiculous': 1,
          'herring': 1,
          'realise': 1,
          'sake': 1,
          'alibi': 1,
          'must': 1,
          'selfinflicted': 1,
          'nasty': 1,
          'make': 1,
          'attacked': 1,
          'fleeing': 1,
          'assailant': 1,
          'banged': 1,
          'head': 1,
          'great': 1,
          'nthus': 1,
          'revelation': 1,
          'hero': 1,
          'antihero': 1,
          'final': 1,
          'prove': 1,
          'shocking': 1,
          'implausible': 1,
          'credits': 1,
          'rolled': 1,
          'nhelpfully': 1,
          'learn': 1,
          'bizarre': 1,
          'flashbacks': 1,
          'humiliation': 1,
          'permeated': 1,
          'belonged': 1,
          'along': 1,
          'explanations': 1,
          'offered': 1,
          'motivations': 1,
          'psychologically': 1,
          'fuzzy': 1,
          'owes': 1,
          'better': 1,
          'understanding': 1,
          'franciosas': 1,
          'concealed': 1,
          'madness': 1,
          'sudden': 1,
          'murderous': 1,
          'rampage': 1,
          'marred': 1,
          'annoying': 1,
          'little': 1,
          'inconsistencies': 1,
          'nfor': 1,
          'instance': 1,
          'teenage': 1,
          'leave': 1,
          'hotel': 1,
          'room': 1,
          'minutes': 1,
          'riding': 1,
          'motorbike': 1,
          'would': 1,
          'assume': 1,
          'rider': 1,
          'turns': 1,
          'male': 1,
          'arent': 1,
          'even': 1,
          'introduced': 1,
          'nthats': 1,
          'careless': 1,
          'filmmaking': 1,
          'pure': 1,
          'simple': 1,
          'nwhy': 1,
          'ask': 1,
          'go': 1,
          'storys': 1,
          'nbecause': 1,
          'comes': 1,
          'pieces': 1,
          'filmmakers': 1,
          'extended': 1,
          'nan': 1,
          'upset': 1,
          'wandering': 1,
          'streets': 1,
          'night': 1,
          'needlessly': 1,
          'taunts': 1,
          'guard': 1,
          'dog': 1,
          'unbelievably': 1,
          'jumps': 1,
          'high': 1,
          'fence': 1,
          'chases': 1,
          'across': 1,
          'town': 1,
          'nfinally': 1,
          'desperately': 1,
          'seeks': 1,
          'escape': 1,
          'crazed': 1,
          'canine': 1,
          'accidentally': 1,
          'stumbles': 1,
          'lair': 1,
          'absolutely': 1,
          'masterful': 1,
          'sequence': 1,
          'tense': 1,
          'communicating': 1,
          'wealth': 1,
          'information': 1,
          'alone': 1,
          'thats': 1,
          'exactly': 1,
          'kind': 1,
          'thing': 1,
          'makes': 1,
          'frustrating': 1,
          'ntoo': 1,
          'often': 1,
          'less': 1,
          'sum': 1,
          'parts': 1,
          'nmind': 1,
          'love': 1,
          'worth': 1,
          'youre': 1,
          'fan': 1,
          'unique': 1,
          'essential': 1,
          'nsee': 1,
          'uncut': 1,
          'widescreen': 1,
          'drink': 1,
          'wonderful': 1,
          'cinematography': 1,
          'luciano': 1,
          'tovoli': 1,
          'greatlooking': 1,
          'quirky': 1,
          'despite': 1,
          'na': 1,
          'shame': 1,
          'recent': 1,
          'stendhal': 1,
          'syndrome': 1,
          '1992': 1,
          'aid': 1,
          'cowriter': 1,
          'franco': 1,
          'ferrini': 1,
          'fashioned': 1,
          'solid': 1,
          'storyline': 1,
          'without': 1,
          'sacrificing': 1,
          'surreal': 1,
          'weirdness': 1,
          'visual': 1,
          'panache': 1,
          'nproof': 1,
          'tries': 1,
          'npos': 1}),
 Counter({'nhe': 9,
          'man': 8,
          'father': 7,
          'nbut': 5,
          'person': 5,
          'like': 4,
          'nwe': 4,
          'towards': 3,
          'nthe': 3,
          'see': 3,
          'kind': 3,
          'childhood': 2,
          'influence': 2,
          'supportive': 2,
          'productive': 2,
          'violence': 2,
          'psychological': 2,
          'wade': 2,
          'nolte': 2,
          'surface': 2,
          'something': 2,
          'hard': 2,
          'emotions': 2,
          'also': 2,
          'relationships': 2,
          'nas': 2,
          'seems': 2,
          'whose': 2,
          'pain': 2,
          'nthis': 2,
          'every': 2,
          'would': 2,
          'flashbacks': 2,
          'dad': 2,
          'still': 2,
          'drama': 2,
          'certainly': 2,
          'sociologist': 1,
          'attest': 1,
          'types': 1,
          'parents': 1,
          'heavily': 1,
          'happiness': 1,
          'adult': 1,
          'nparents': 1,
          'environments': 1,
          'nurturing': 1,
          'yield': 1,
          'children': 1,
          'embrace': 1,
          'values': 1,
          'norms': 1,
          'allow': 1,
          'live': 1,
          'healthy': 1,
          'lives': 1,
          'upbringing': 1,
          'marred': 1,
          'hate': 1,
          'dysfunctionality': 1,
          'journey': 1,
          'happy': 1,
          'adulthood': 1,
          'saddled': 1,
          'obstacles': 1,
          'almost': 1,
          'great': 1,
          'overcome': 1,
          'naffliction': 1,
          'explores': 1,
          'never': 1,
          'truly': 1,
          'escapes': 1,
          'grip': 1,
          'unforgivingly': 1,
          'nightmarish': 1,
          'question': 1,
          'whitehouse': 1,
          'nick': 1,
          'nhere': 1,
          'citizen': 1,
          'member': 1,
          'community': 1,
          'goes': 1,
          'daily': 1,
          'routine': 1,
          'much': 1,
          'scratch': 1,
          'beneath': 1,
          'scary': 1,
          'evil': 1,
          'begins': 1,
          'rear': 1,
          'ugly': 1,
          'head': 1,
          'meantempered': 1,
          'time': 1,
          'taking': 1,
          'control': 1,
          'usually': 1,
          'gets': 1,
          'better': 1,
          'quick': 1,
          'apologize': 1,
          'actions': 1,
          'wants': 1,
          'gentle': 1,
          'sparking': 1,
          'tendency': 1,
          'tremendous': 1,
          'problems': 1,
          'divorced': 1,
          'connection': 1,
          'love': 1,
          'daughter': 1,
          'bearish': 1,
          'persona': 1,
          'stature': 1,
          'alienates': 1,
          'visibly': 1,
          'shaken': 1,
          'rejection': 1,
          'even': 1,
          'though': 1,
          'says': 1,
          'loves': 1,
          'nhis': 1,
          'demeanor': 1,
          'puts': 1,
          'relationship': 1,
          'local': 1,
          'townsgirl': 1,
          'sissy': 1,
          'spacek': 1,
          'risk': 1,
          'nshe': 1,
          'tries': 1,
          'remain': 1,
          'true': 1,
          'women': 1,
          'unlucky': 1,
          'enough': 1,
          'attach': 1,
          'ultimately': 1,
          'end': 1,
          'sentences': 1,
          'ending': 1,
          'exclamation': 1,
          'point': 1,
          'nfinally': 1,
          'spiteful': 1,
          'vindictive': 1,
          'rejected': 1,
          'initiates': 1,
          'custody': 1,
          'battle': 1,
          'hopeless': 1,
          'towns': 1,
          'police': 1,
          'officer': 1,
          'issues': 1,
          'speeding': 1,
          'ticket': 1,
          'died': 1,
          'afflicted': 1,
          'living': 1,
          'prisoner': 1,
          'slave': 1,
          'moving': 1,
          'level': 1,
          'madness': 1,
          'insanity': 1,
          'defies': 1,
          'comprehension': 1,
          'nwhat': 1,
          'force': 1,
          'move': 1,
          'edge': 1,
          'beyond': 1,
          'reach': 1,
          'people': 1,
          'genuinely': 1,
          'care': 1,
          'learn': 1,
          'answer': 1,
          'james': 1,
          'coburn': 1,
          'son': 1,
          'ashamed': 1,
          'woman': 1,
          'afraid': 1,
          'meet': 1,
          'overbearingly': 1,
          'misogynistic': 1,
          'frequent': 1,
          'drunk': 1,
          'rules': 1,
          'iron': 1,
          'fist': 1,
          'tyrannical': 1,
          'behavior': 1,
          'nto': 1,
          'heighten': 1,
          'fathers': 1,
          'churlishness': 1,
          'shown': 1,
          'home': 1,
          'video': 1,
          'footage': 1,
          'taken': 1,
          'frightened': 1,
          'nvery': 1,
          'effective': 1,
          'ntoday': 1,
          'wades': 1,
          'quite': 1,
          'elderly': 1,
          'manages': 1,
          'instill': 1,
          'fear': 1,
          'grown': 1,
          'possesses': 1,
          'inescapable': 1,
          'unsavory': 1,
          'effect': 1,
          'clamps': 1,
          'tortured': 1,
          'result': 1,
          'sons': 1,
          'nightmare': 1,
          'becoming': 1,
          'one': 1,
          'always': 1,
          'dreaded': 1,
          'terrifically': 1,
          'presented': 1,
          'piece': 1,
          'turns': 1,
          'strong': 1,
          'performance': 1,
          'become': 1,
          'detriment': 1,
          'well': 1,
          'necessity': 1,
          'nhes': 1,
          'hulking': 1,
          'reduced': 1,
          'whimpers': 1,
          'presence': 1,
          'ncoburn': 1,
          'displays': 1,
          'heft': 1,
          'bitter': 1,
          'saturdaynightfriendly': 1,
          'fare': 1,
          'ntheres': 1,
          'nothing': 1,
          'light': 1,
          'fluffy': 1,
          'film': 1,
          'nthat': 1,
          'may': 1,
          'turn': 1,
          'many': 1,
          'moviegoers': 1,
          'away': 1,
          'worth': 1,
          'noting': 1,
          'wellacted': 1,
          'showcasing': 1,
          'noltes': 1,
          'coburns': 1,
          'raw': 1,
          'acting': 1,
          'talents': 1,
          'npos': 1}),
 Counter({'ash': 8,
          'movie': 7,
          'funny': 5,
          'watch': 5,
          'evil': 4,
          'dead': 4,
          'monster': 4,
          'raimi': 4,
          'ii': 3,
          'people': 3,
          'like': 3,
          'get': 3,
          'even': 3,
          'film': 3,
          'nits': 2,
          'plot': 2,
          'classic': 2,
          'see': 2,
          'nno': 2,
          'sick': 2,
          'girlfriend': 2,
          'cut': 2,
          'half': 2,
          'blood': 2,
          'overthetop': 2,
          'laugh': 2,
          'face': 2,
          'nthe': 2,
          'beat': 2,
          'gets': 2,
          'body': 2,
          'hand': 2,
          'less': 2,
          'making': 2,
          'bad': 1,
          'full': 1,
          'terrible': 1,
          'acting': 1,
          'pointless': 1,
          'violence': 1,
          'holes': 1,
          'yet': 1,
          'remains': 1,
          'cult': 1,
          'nearly': 1,
          'fifteen': 1,
          'years': 1,
          'release': 1,
          'nexplaining': 1,
          'stands': 1,
          'others': 1,
          'similar': 1,
          'plots': 1,
          'including': 1,
          'original': 1,
          'extremely': 1,
          'difficult': 1,
          'nwell': 1,
          'whats': 1,
          'nfive': 1,
          'stranded': 1,
          'log': 1,
          'cabin': 1,
          'middle': 1,
          'nowhere': 1,
          'struggling': 1,
          'survive': 1,
          'vicious': 1,
          'attacks': 1,
          'variety': 1,
          'ugly': 1,
          'hairy': 1,
          'wart': 1,
          'covered': 1,
          'monsters': 1,
          'ncome': 1,
          'saw': 1,
          'vision': 1,
          'last': 1,
          'week': 1,
          'nwhy': 1,
          'different': 1,
          'die': 1,
          'nare': 1,
          'something': 1,
          'nmaybe': 1,
          'maybe': 1,
          'director': 1,
          'sam': 1,
          'well': 1,
          'create': 1,
          'enigma': 1,
          'nhis': 1,
          'unique': 1,
          'execution': 1,
          'sarcastic': 1,
          'subtle': 1,
          'disturbing': 1,
          'hilarious': 1,
          'nan': 1,
          'example': 1,
          'raimis': 1,
          'odd': 1,
          'approach': 1,
          'formerly': 1,
          'protagonist': 1,
          'ashs': 1,
          'chainsaw': 1,
          'tidal': 1,
          'wave': 1,
          'comes': 1,
          'open': 1,
          'wound': 1,
          'nsure': 1,
          'loud': 1,
          'try': 1,
          'watching': 1,
          'straight': 1,
          'unexpectedly': 1,
          'showered': 1,
          'ten': 1,
          'gallons': 1,
          'staining': 1,
          'knocking': 1,
          'back': 1,
          'feet': 1,
          'whole': 1,
          'defeat': 1,
          'another': 1,
          'zanier': 1,
          'repetitive': 1,
          'unrealistic': 1,
          'amusing': 1,
          'becomes': 1,
          'matter': 1,
          'may': 1,
          'sound': 1,
          'bruce': 1,
          'ampbells': 1,
          'butt': 1,
          'kicked': 1,
          'every': 1,
          'five': 1,
          'minutes': 1,
          'nand': 1,
          'takes': 1,
          'advantage': 1,
          'tormented': 1,
          'head': 1,
          'old': 1,
          'lady': 1,
          'right': 1,
          'nlike': 1,
          'superior': 1,
          'idle': 1,
          'hands': 1,
          'uncontrollably': 1,
          'hit': 1,
          'forced': 1,
          'part': 1,
          'nbut': 1,
          'doesnt': 1,
          'end': 1,
          'fight': 1,
          'severed': 1,
          'moves': 1,
          'celerity': 1,
          'thing': 1,
          'addams': 1,
          'family': 1,
          'nall': 1,
          'events': 1,
          'thrown': 1,
          'minute': 1,
          'one': 1,
          'roller': 1,
          'coaster': 1,
          'camera': 1,
          'movements': 1,
          'first': 1,
          'become': 1,
          'shocking': 1,
          'inexplicably': 1,
          'nraimi': 1,
          'expects': 1,
          'audience': 1,
          'progresses': 1,
          'seems': 1,
          'enjoying': 1,
          'borrowing': 1,
          'mirror': 1,
          'scene': 1,
          'marx': 1,
          'brothers': 1,
          'duck': 1,
          'soup': 1,
          'bringing': 1,
          'characters': 1,
          'picture': 1,
          'comically': 1,
          'kill': 1,
          'nwith': 1,
          'running': 1,
          'time': 1,
          'hour': 1,
          'away': 1,
          'impossible': 1,
          'horror': 1,
          'gore': 1,
          'intentionally': 1,
          'laughs': 1,
          'scares': 1,
          'nending': 1,
          'opening': 1,
          'third': 1,
          'series': 1,
          'obviously': 1,
          'lot': 1,
          'fun': 1,
          'couldnt': 1,
          'wait': 1,
          'make': 1,
          'sequel': 1,
          'npos': 1}),
 Counter({'bugs': 5,
          'life': 5,
          'food': 4,
          'nwhen': 4,
          'ant': 3,
          'film': 3,
          'flik': 3,
          'offering': 3,
          'mission': 3,
          'nthe': 3,
          'grasshoppers': 3,
          'animation': 2,
          'antz': 2,
          'na': 2,
          'voiced': 2,
          'find': 2,
          'lost': 2,
          'leaders': 2,
          'colony': 2,
          'send': 2,
          'get': 2,
          'way': 2,
          'harvest': 2,
          'hopper': 2,
          'return': 2,
          'warriors': 2,
          'day': 2,
          'rather': 1,
          'strange': 1,
          'two': 1,
          'computer': 1,
          'animated': 1,
          'talking': 1,
          'movies': 1,
          'come': 1,
          'single': 1,
          'year': 1,
          'disney': 1,
          'pixar': 1,
          'latest': 1,
          'represents': 1,
          'nwhile': 1,
          'isnt': 1,
          'nearly': 1,
          'deep': 1,
          'predecessor': 1,
          'dreamworks': 1,
          'funny': 1,
          'centers': 1,
          'appropriately': 1,
          'around': 1,
          'named': 1,
          'nflik': 1,
          'cutely': 1,
          'newsradios': 1,
          'david': 1,
          'foley': 1,
          'hates': 1,
          'sticking': 1,
          'tradition': 1,
          'attempts': 1,
          'new': 1,
          'ways': 1,
          'harvesting': 1,
          'task': 1,
          'one': 1,
          'inventions': 1,
          'causes': 1,
          'completely': 1,
          'vile': 1,
          'group': 1,
          'force': 1,
          'ants': 1,
          'leader': 1,
          'fiendishly': 1,
          'oscar': 1,
          'winner': 1,
          'kevin': 1,
          'spacey': 1,
          'upset': 1,
          'vows': 1,
          'shortly': 1,
          'retrieve': 1,
          'double': 1,
          'amount': 1,
          'never': 1,
          'dream': 1,
          'successful': 1,
          'hope': 1,
          'extra': 1,
          'nfliks': 1,
          'hire': 1,
          'warrior': 1,
          'fight': 1,
          'ninstead': 1,
          'accidentally': 1,
          'hires': 1,
          'circus': 1,
          'performing': 1,
          'mistakenly': 1,
          'assumes': 1,
          'returns': 1,
          'town': 1,
          'ecstatic': 1,
          'truth': 1,
          'heroes': 1,
          'simply': 1,
          'stunning': 1,
          'sheer': 1,
          'uniqueness': 1,
          'bug': 1,
          'imaginative': 1,
          'ntogether': 1,
          'great': 1,
          'voice': 1,
          'acting': 1,
          'perfect': 1,
          'holiday': 1,
          'family': 1,
          'nits': 1,
          'main': 1,
          'weakness': 1,
          'couldnt': 1,
          'beat': 1,
          'theaters': 1,
          'making': 1,
          'seem': 1,
          'like': 1,
          'stale': 1,
          'material': 1,
          'npos': 1}),
 Counter({'fight': 5,
          'like': 5,
          'tyler': 5,
          'club': 4,
          'joke': 4,
          'movie': 3,
          'something': 3,
          'dont': 3,
          'good': 3,
          'nit': 3,
          'far': 3,
          'fincher': 3,
          'less': 3,
          'going': 3,
          'since': 2,
          'oliver': 2,
          'director': 2,
          'fine': 2,
          'social': 2,
          'finchers': 2,
          'major': 2,
          'see': 2,
          'grouptherapy': 2,
          'everything': 2,
          'meets': 2,
          'night': 2,
          'marla': 2,
          'things': 2,
          'durden': 2,
          'life': 2,
          'feel': 2,
          'though': 2,
          'people': 2,
          'nin': 2,
          'message': 2,
          'wont': 2,
          'stones': 1,
          'natural': 1,
          'born': 1,
          'killers': 1,
          'incendiary': 1,
          'david': 1,
          'cronenberg': 1,
          'socalled': 1,
          'mainstream': 1,
          'willing': 1,
          'repeatedly': 1,
          'tiptoe': 1,
          'line': 1,
          'pointed': 1,
          'commentary': 1,
          'outright': 1,
          'irresponsibility': 1,
          'nwhile': 1,
          'films': 1,
          'never': 1,
          'suffered': 1,
          'lack': 1,
          'shock': 1,
          'value': 1,
          'character': 1,
          'killings': 1,
          'alien': 1,
          '3': 1,
          'seven': 1,
          'examples': 1,
          'marks': 1,
          'distillation': 1,
          'pitchblack': 1,
          'comedic': 1,
          'sensibility': 1,
          '1997s': 1,
          'game': 1,
          'definitive': 1,
          'statement': 1,
          'njack': 1,
          'norton': 1,
          'acting': 1,
          'narrator': 1,
          'protagonist': 1,
          'typical': 1,
          'cubicle': 1,
          'clone': 1,
          'whose': 1,
          'disillusionment': 1,
          'amplified': 1,
          'seemingly': 1,
          'incurable': 1,
          'insomnia': 1,
          'non': 1,
          'offhand': 1,
          'advice': 1,
          'doctor': 1,
          'sits': 1,
          'sessions': 1,
          'blood': 1,
          'parasites': 1,
          'testicular': 1,
          'cancer': 1,
          'nhere': 1,
          'bob': 1,
          'marvin': 1,
          'lee': 1,
          'aday': 1,
          'aka': 1,
          'meat': 1,
          'loaf': 1,
          'canceremasculated': 1,
          'eunuch': 1,
          'profound': 1,
          'gynecomastia': 1,
          'nstrangely': 1,
          'release': 1,
          'finds': 1,
          'sobbing': 1,
          'bobs': 1,
          'breasts': 1,
          'allows': 1,
          'sleep': 1,
          'least': 1,
          'fellow': 1,
          'tourist': 1,
          'named': 1,
          'singer': 1,
          'carter': 1,
          'comes': 1,
          'along': 1,
          'ruin': 1,
          'forcing': 1,
          'grudging': 1,
          'compromise': 1,
          'recalls': 1,
          'monty': 1,
          'python': 1,
          'dark': 1,
          'hilarity': 1,
          'nlater': 1,
          'pitt': 1,
          'soap': 1,
          'salesman': 1,
          'decidedly': 1,
          'subversive': 1,
          'outlook': 1,
          'none': 1,
          'ikea': 1,
          'furnished': 1,
          'condo': 1,
          'explodes': 1,
          'ask': 1,
          'youll': 1,
          'awright': 1,
          'goaded': 1,
          'damned': 1,
          'doesnt': 1,
          'pure': 1,
          'raw': 1,
          'existence': 1,
          'brief': 1,
          'moment': 1,
          'clarity': 1,
          'purpose': 1,
          'makes': 1,
          'dreary': 1,
          'workaday': 1,
          'pale': 1,
          'comparison': 1,
          'nhe': 1,
          'moves': 1,
          'tylers': 1,
          'squalid': 1,
          'abandoned': 1,
          'mansion': 1,
          'form': 1,
          'titular': 1,
          'organization': 1,
          'underground': 1,
          'therapy': 1,
          'group': 1,
          'men': 1,
          'bond': 1,
          'bareknuckle': 1,
          'savagery': 1,
          'rules': 1,
          'first': 1,
          'two': 1,
          'talk': 1,
          'narmed': 1,
          'charisma': 1,
          'attractive': 1,
          'anticorporate': 1,
          'philosophy': 1,
          'assumes': 1,
          'leadership': 1,
          'burgeoning': 1,
          'membership': 1,
          'whitecollar': 1,
          'slaves': 1,
          'deadend': 1,
          'mcemployees': 1,
          'nresentment': 1,
          'creeps': 1,
          'jacks': 1,
          'heart': 1,
          'made': 1,
          'worse': 1,
          'fact': 1,
          'also': 1,
          'regularly': 1,
          'noisily': 1,
          'boffing': 1,
          'hated': 1,
          'nfunded': 1,
          'frivolous': 1,
          'lawsuit': 1,
          'begins': 1,
          'molding': 1,
          'devotees': 1,
          'army': 1,
          'dedicated': 1,
          'mischief': 1,
          'mayhem': 1,
          'ntheir': 1,
          'initially': 1,
          'juvenile': 1,
          'pranks': 1,
          'pissing': 1,
          'food': 1,
          'putting': 1,
          'spike': 1,
          'belts': 1,
          'roads': 1,
          'quickly': 1,
          'evolve': 1,
          'sedition': 1,
          'jack': 1,
          'fears': 1,
          'gone': 1,
          'sour': 1,
          'point': 1,
          'plenty': 1,
          'uncomfortable': 1,
          'wondering': 1,
          'go': 1,
          'say': 1,
          'original': 1,
          'film': 1,
          'uncorks': 1,
          'disappointing': 1,
          'plot': 1,
          'twist': 1,
          'contrived': 1,
          'conventional': 1,
          'compared': 1,
          'precedes': 1,
          'follows': 1,
          'including': 1,
          'ending': 1,
          'becomes': 1,
          'interesting': 1,
          'nits': 1,
          'fatal': 1,
          'flaw': 1,
          'notoriously': 1,
          'unpredictable': 1,
          'feels': 1,
          'copout': 1,
          'nfight': 1,
          'misconstrued': 1,
          'great': 1,
          'many': 1,
          'early': 1,
          'downright': 1,
          'dangerous': 1,
          'seems': 1,
          'saying': 1,
          'violence': 1,
          'civil': 1,
          'disobedience': 1,
          'soul': 1,
          'undoubtedly': 1,
          'moronic': 1,
          'punks': 1,
          'take': 1,
          'nill': 1,
          'mightily': 1,
          'surprised': 1,
          'imitation': 1,
          'clubs': 1,
          'spring': 1,
          'ill': 1,
          'even': 1,
          'amazed': 1,
          'isnt': 1,
          'vilified': 1,
          'humorless': 1,
          'witchhunters': 1,
          'currently': 1,
          'stone': 1,
          'nthey': 1,
          'neednt': 1,
          'bother': 1,
          'elaborate': 1,
          'attempt': 1,
          'ntyler': 1,
          'dionysian': 1,
          'allure': 1,
          'really': 1,
          'nothing': 1,
          'logical': 1,
          'hypocritical': 1,
          'extrapolation': 1,
          'selfhelp': 1,
          'gurus': 1,
          'constantly': 1,
          'show': 1,
          'oprah': 1,
          'preach': 1,
          'mefirst': 1,
          'gospel': 1,
          'selfactualization': 1,
          'context': 1,
          'works': 1,
          'latest': 1,
          'columbine': 1,
          'get': 1,
          'enjoy': 1,
          'laugh': 1,
          'others': 1,
          'nhopefully': 1,
          'silly': 1,
          'moral': 1,
          'outrage': 1,
          'spoil': 1,
          'rest': 1,
          'us': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'elvis': 8,
          'film': 7,
          'got': 6,
          'costner': 5,
          'ni': 5,
          'guys': 4,
          'nthe': 4,
          'one': 4,
          'dont': 4,
          'movies': 4,
          'way': 4,
          'bad': 3,
          'guy': 3,
          'na': 3,
          'ive': 3,
          'far': 3,
          'nits': 3,
          'plenty': 3,
          'around': 3,
          'thatll': 3,
          'pretty': 3,
          'though': 3,
          'many': 3,
          'sure': 3,
          'nand': 3,
          'folks': 3,
          'also': 3,
          'really': 3,
          'big': 3,
          'much': 3,
          'whether': 3,
          'youre': 3,
          'vegas': 2,
          'get': 2,
          'together': 2,
          'doublecrosses': 2,
          'goes': 2,
          'set': 2,
          'road': 2,
          'whos': 2,
          'bang': 2,
          'courteney': 2,
          'cox': 2,
          'seen': 2,
          'year': 2,
          'bullets': 2,
          'adventure': 2,
          'little': 2,
          'russell': 2,
          'scenes': 2,
          'guns': 2,
          'music': 2,
          'background': 2,
          'helping': 2,
          'nin': 2,
          'even': 2,
          'well': 2,
          'next': 2,
          'characters': 2,
          'russells': 2,
          'guess': 2,
          'hes': 2,
          'great': 2,
          'end': 2,
          'fun': 2,
          'em': 2,
          'violent': 2,
          'actually': 2,
          'mean': 2,
          'gun': 2,
          'whole': 2,
          'doesnt': 2,
          'take': 2,
          'see': 2,
          'review': 2,
          'mind': 2,
          'bring': 2,
          'coming': 2,
          'songs': 2,
          'nso': 2,
          'cause': 2,
          'love': 2,
          'either': 2,
          '810': 2,
          '910': 2,
          'plot': 1,
          'bunch': 1,
          'dressed': 1,
          'impersonators': 1,
          'rob': 1,
          'casino': 1,
          'presley': 1,
          'convention': 1,
          'boys': 1,
          'eventually': 1,
          'split': 1,
          'money': 1,
          'plans': 1,
          'change': 1,
          'occur': 1,
          'dealing': 1,
          'wheeling': 1,
          'crew': 1,
          'nwhos': 1,
          'real': 1,
          'gon': 1,
          'questions': 1,
          'answered': 1,
          'rest': 1,
          'ncritique': 1,
          'funnest': 1,
          'style': 1,
          'tough': 1,
          'talkin': 1,
          'shite': 1,
          'go': 1,
          'definite': 1,
          'hunkahunka': 1,
          'burnin': 1,
          'jollies': 1,
          'high': 1,
          'dig': 1,
          'rough': 1,
          'stuff': 1,
          'original': 1,
          'long': 1,
          'make': 1,
          'happen': 1,
          'two': 1,
          'shitekickin': 1,
          'lovers': 1,
          'stop': 1,
          'till': 1,
          'less': 1,
          'drop': 1,
          'nthis': 1,
          'intensive': 1,
          'shootout': 1,
          'coolest': 1,
          'robbery': 1,
          'scenarios': 1,
          'ever': 1,
          'witnessed': 1,
          'featuring': 1,
          'several': 1,
          'elvises': 1,
          'blazin': 1,
          'kings': 1,
          'playing': 1,
          'decent': 1,
          'sharp': 1,
          'dialogue': 1,
          'funny': 1,
          'moments': 1,
          'fact': 1,
          'cast': 1,
          'filled': 1,
          'name': 1,
          'actors': 1,
          'bactors': 1,
          'might': 1,
          'part': 1,
          'bit': 1,
          'succeed': 1,
          'passing': 1,
          'torch': 1,
          'onto': 1,
          'victim': 1,
          'nbut': 1,
          'true': 1,
          'glue': 1,
          'holds': 1,
          'spirit': 1,
          'play': 1,
          'badass': 1,
          'surprised': 1,
          'nastiness': 1,
          'pissed': 1,
          'boxoffice': 1,
          'bombs': 1,
          'late': 1,
          'played': 1,
          'unstable': 1,
          'impersonating': 1,
          'robber': 1,
          'bottom': 1,
          'line': 1,
          'kickin': 1,
          'ass': 1,
          'making': 1,
          'theres': 1,
          'enough': 1,
          'bubblegum': 1,
          'chew': 1,
          'afterwards': 1,
          'smoke': 1,
          'nthere': 1,
          'showdown': 1,
          'scene': 1,
          'cop': 1,
          'crackin': 1,
          'lovin': 1,
          'time': 1,
          'entire': 1,
          'wrapped': 1,
          'soundtrack': 1,
          'kick': 1,
          'arse': 1,
          'theatre': 1,
          'nit': 1,
          'come': 1,
          'surprise': 1,
          'anyone': 1,
          'director': 1,
          'comes': 1,
          'video': 1,
          'camera': 1,
          'tricks': 1,
          'cuts': 1,
          'edits': 1,
          'kind': 1,
          'flick': 1,
          'works': 1,
          'perfect': 1,
          'starts': 1,
          'pulls': 1,
          'us': 1,
          'slows': 1,
          'pace': 1,
          'somewhat': 1,
          'middle': 1,
          'intermingle': 1,
          'disperse': 1,
          'personally': 1,
          'kept': 1,
          'game': 1,
          'despite': 1,
          'soft': 1,
          'spots': 1,
          'enjoyed': 1,
          'overall': 1,
          'ride': 1,
          'mention': 1,
          'looked': 1,
          'megahot': 1,
          'nno': 1,
          'okay': 1,
          'nwell': 1,
          'coulda': 1,
          'done': 1,
          'without': 1,
          'romance': 1,
          'angle': 1,
          'honest': 1,
          'generally': 1,
          'covered': 1,
          'blood': 1,
          'explosions': 1,
          'guts': 1,
          'nods': 1,
          'ntry': 1,
          'inside': 1,
          'connections': 1,
          'king': 1,
          'nof': 1,
          'course': 1,
          'secret': 1,
          'quite': 1,
          'fan': 1,
          'please': 1,
          'grain': 1,
          'salt': 1,
          'like': 1,
          'types': 1,
          'lot': 1,
          'originality': 1,
          'table': 1,
          'offer': 1,
          'coherent': 1,
          'story': 1,
          'nice': 1,
          'twists': 1,
          'turns': 1,
          'humor': 1,
          'ol': 1,
          'whoopass': 1,
          'straight': 1,
          'respective': 1,
          'boots': 1,
          'nprobably': 1,
          'everyone': 1,
          'definitely': 1,
          'enjoy': 1,
          'charismatic': 1,
          'entirely': 1,
          'disposable': 1,
          'nnow': 1,
          'used': 1,
          'pun': 1,
          'phony': 1,
          'recommend': 1,
          'lonesome': 1,
          'tonight': 1,
          'night': 1,
          'remember': 1,
          'pack': 1,
          'teddy': 1,
          'bear': 1,
          'leave': 1,
          'sister': 1,
          'home': 1,
          'bossa': 1,
          'nova': 1,
          'baby': 1,
          'rock': 1,
          'jailhouse': 1,
          'aint': 1,
          'return': 1,
          'sender': 1,
          'beg': 1,
          'stuck': 1,
          'ghetto': 1,
          'crying': 1,
          'chapel': 1,
          'slap': 1,
          'cinematic': 1,
          'ring': 1,
          'neck': 1,
          'tender': 1,
          'suspicious': 1,
          'minds': 1,
          'stung': 1,
          'shook': 1,
          'unless': 1,
          'devil': 1,
          'disguise': 1,
          'think': 1,
          'wont': 1,
          'able': 1,
          'help': 1,
          'falling': 1,
          'lucky': 1,
          'charm': 1,
          'cruel': 1,
          'turn': 1,
          'away': 1,
          'curl': 1,
          'latest': 1,
          'flame': 1,
          'tonite': 1,
          'hardheaded': 1,
          'woman': 1,
          'surrender': 1,
          'hound': 1,
          'dog': 1,
          'never': 1,
          'ntrust': 1,
          'heartbreak': 1,
          'hotel': 1,
          'crappy': 1,
          'id': 1,
          'behind': 1,
          'njoblo': 1,
          'officially': 1,
          'left': 1,
          'sanity': 1,
          'building': 1,
          'nthank': 1,
          'thank': 1,
          'nyou': 1,
          'nwheres': 1,
          'joblo': 1,
          'nget': 1,
          'carter': 1,
          '710': 1,
          'heat': 1,
          'honeymoon': 1,
          'payback': 1,
          'reindeer': 1,
          'games': 1,
          '510': 1,
          'reservoir': 1,
          'dogs': 1,
          '610': 1,
          'npos': 1}),
 Counter({'end': 3,
          'nthe': 3,
          'parents': 3,
          'one': 3,
          'moore': 2,
          'film': 2,
          'son': 2,
          'biological': 2,
          'take': 2,
          'woman': 2,
          'alda': 2,
          'tomlin': 2,
          'giving': 2,
          'commercials': 1,
          'looks': 1,
          'like': 1,
          'mildmannered': 1,
          'neil': 1,
          'simonesque': 1,
          'tale': 1,
          'mary': 1,
          'tyler': 1,
          'baring': 1,
          'bra': 1,
          'touted': 1,
          'highlight': 1,
          'ninstead': 1,
          'turns': 1,
          'hilarious': 1,
          'running': 1,
          'high': 1,
          'gear': 1,
          'beginning': 1,
          'concept': 1,
          'deceptively': 1,
          'pedestrian': 1,
          'nan': 1,
          'adult': 1,
          'adopted': 1,
          'looking': 1,
          'encounters': 1,
          'eccentric': 1,
          'characters': 1,
          'along': 1,
          'way': 1,
          'movie': 1,
          'demonstrates': 1,
          'far': 1,
          'good': 1,
          'script': 1,
          'actors': 1,
          'mundane': 1,
          'idea': 1,
          'wife': 1,
          'search': 1,
          'accompanied': 1,
          'agency': 1,
          'located': 1,
          'nfollowing': 1,
          'dead': 1,
          'lead': 1,
          'another': 1,
          'funnier': 1,
          'previous': 1,
          'eventually': 1,
          'new': 1,
          'mexico': 1,
          'real': 1,
          'alan': 1,
          'lily': 1,
          'nits': 1,
          'difficult': 1,
          'condense': 1,
          'mileaminute': 1,
          'plot': 1,
          'nseemingly': 1,
          'hundreds': 1,
          'scenes': 1,
          'jump': 1,
          'top': 1,
          'without': 1,
          'chance': 1,
          'recover': 1,
          'last': 1,
          'nwithout': 1,
          'much': 1,
          'away': 1,
          'better': 1,
          'episodes': 1,
          'involves': 1,
          'gay': 1,
          'federal': 1,
          'alcohol': 1,
          'tobacco': 1,
          'firearms': 1,
          'agent': 1,
          'attempting': 1,
          'arrest': 1,
          'tripping': 1,
          'lsd': 1,
          'bisexual': 1,
          'partner': 1,
          'upstairs': 1,
          'licking': 1,
          'armpit': 1,
          'husband': 1,
          'next': 1,
          'room': 1,
          'seducing': 1,
          'traveling': 1,
          'companion': 1,
          'nand': 1,
          'done': 1,
          'fairly': 1,
          'clean': 1,
          'almost': 1,
          'well': 1,
          'maybe': 1,
          'exactly': 1,
          'family': 1,
          'fare': 1,
          'manner': 1,
          'na': 1,
          'grand': 1,
          'cast': 1,
          'ben': 1,
          'stiller': 1,
          'patricia': 1,
          'arquette': 1,
          'tea': 1,
          'leoni': 1,
          'george': 1,
          'segal': 1,
          'interacts': 1,
          'seamless': 1,
          'parade': 1,
          'laughs': 1,
          'ndrawing': 1,
          'hyper': 1,
          'woody': 1,
          'allen': 1,
          'style': 1,
          'succeeds': 1,
          'beyond': 1,
          'expectations': 1,
          'npos': 1}),
 Counter({'film': 9,
          'dog': 6,
          'war': 6,
          'political': 5,
          'wag': 5,
          'american': 5,
          'nthe': 5,
          'quite': 4,
          'satire': 4,
          'going': 4,
          'brean': 4,
          'public': 4,
          'president': 4,
          'one': 4,
          'little': 3,
          'would': 3,
          'didnt': 3,
          'media': 3,
          'even': 3,
          'motss': 3,
          'propaganda': 3,
          'go': 2,
          'ni': 2,
          'led': 2,
          'believe': 2,
          'hilarious': 2,
          'make': 2,
          'way': 2,
          'also': 2,
          'attack': 2,
          'stanley': 2,
          'said': 2,
          'story': 2,
          'revolves': 2,
          'around': 2,
          'distract': 2,
          'accusations': 2,
          'young': 2,
          'girl': 2,
          'presidents': 2,
          'campaign': 2,
          'nbrean': 2,
          'hollywood': 2,
          'enough': 2,
          'albanian': 2,
          'thus': 2,
          'consistently': 2,
          'sgt': 2,
          'cia': 2,
          'fighting': 2,
          'nstill': 2,
          'could': 2,
          'fact': 2,
          'never': 2,
          'towards': 2,
          'end': 2,
          'motsss': 2,
          'far': 2,
          'nwith': 2,
          'work': 2,
          'might': 2,
          'seem': 2,
          'takes': 2,
          'issue': 2,
          'real': 2,
          'im': 1,
          'sure': 1,
          'best': 1,
          'writing': 1,
          'review': 1,
          'must': 1,
          'admit': 1,
          'disappointed': 1,
          'barry': 1,
          'levinsons': 1,
          'retrospect': 1,
          'less': 1,
          'false': 1,
          'expectations': 1,
          'nquite': 1,
          'reviews': 1,
          'read': 1,
          'absolutely': 1,
          'laugh': 1,
          'loud': 1,
          'whole': 1,
          'nthey': 1,
          'deliver': 1,
          'vicious': 1,
          'alltootrue': 1,
          'works': 1,
          'either': 1,
          'na': 1,
          'suggested': 1,
          'prove': 1,
          'worthy': 1,
          'successor': 1,
          'kubricks': 1,
          'dr': 1,
          'nstrangelove': 1,
          'tradition': 1,
          'black': 1,
          'comedy': 1,
          'definitely': 1,
          'nthat': 1,
          'actually': 1,
          'clever': 1,
          'shady': 1,
          'manipulations': 1,
          'figures': 1,
          'assist': 1,
          'attempts': 1,
          'spin': 1,
          'doctor': 1,
          'conread': 1,
          'robert': 1,
          'deniro': 1,
          'reelection': 1,
          'two': 1,
          'weeks': 1,
          'sexually': 1,
          'harassed': 1,
          'oval': 1,
          'office': 1,
          'script': 1,
          'suggests': 1,
          'probably': 1,
          'untrue': 1,
          'pointedly': 1,
          'puts': 1,
          'isnt': 1,
          'particularly': 1,
          'relevant': 1,
          'scandal': 1,
          'likely': 1,
          'derail': 1,
          'regardless': 1,
          'truth': 1,
          'falsehood': 1,
          'along': 1,
          'assistant': 1,
          'anne': 1,
          'heche': 1,
          'decide': 1,
          'contact': 1,
          'producer': 1,
          'dustin': 1,
          'hoffman': 1,
          'enlist': 1,
          'help': 1,
          'concocting': 1,
          'specialeffects': 1,
          'trickery': 1,
          'appear': 1,
          'u': 1,
          'terrorists': 1,
          'propel': 1,
          'victory': 1,
          'wave': 1,
          'patriotic': 1,
          'fervor': 1,
          'nas': 1,
          'laughoutloud': 1,
          'expected': 1,
          'genuinely': 1,
          'funny': 1,
          'moments': 1,
          'found': 1,
          'echo': 1,
          'familiar': 1,
          'movie': 1,
          'clich': 1,
          'camera': 1,
          'pans': 1,
          'urban': 1,
          'sunset': 1,
          'strains': 1,
          'uplifting': 1,
          'inspirational': 1,
          'music': 1,
          'cuts': 1,
          'studio': 1,
          'reveal': 1,
          'singing': 1,
          'coming': 1,
          'group': 1,
          'musicians': 1,
          'assembled': 1,
          'perform': 1,
          'right': 1,
          'fight': 1,
          'democracy': 1,
          'nanother': 1,
          'scene': 1,
          'shows': 1,
          'us': 1,
          'modern': 1,
          'editing': 1,
          'equipment': 1,
          'actress': 1,
          'running': 1,
          'across': 1,
          'sound': 1,
          'stage': 1,
          'bag': 1,
          'potato': 1,
          'chips': 1,
          'turned': 1,
          'frightened': 1,
          'kitten': 1,
          'fleeing': 1,
          'terrorist': 1,
          'village': 1,
          'effective': 1,
          'gag': 1,
          'teams': 1,
          'attempt': 1,
          'forge': 1,
          'fictional': 1,
          'hero': 1,
          'nwilliam': 1,
          'old': 1,
          'shoe': 1,
          'schumann': 1,
          'woody': 1,
          'harrelson': 1,
          'exmilitary': 1,
          'officer': 1,
          'turns': 1,
          'firstclass': 1,
          'psycho': 1,
          'nof': 1,
          'course': 1,
          'everything': 1,
          'goes': 1,
          'planned': 1,
          'example': 1,
          'realizes': 1,
          'whats': 1,
          'strikes': 1,
          'deal': 1,
          'electoral': 1,
          'opponent': 1,
          'report': 1,
          'ended': 1,
          'forcing': 1,
          'come': 1,
          'new': 1,
          'angle': 1,
          'supposed': 1,
          'crisis': 1,
          'cias': 1,
          'involvement': 1,
          'falls': 1,
          'short': 1,
          'terms': 1,
          'making': 1,
          'scenario': 1,
          'believable': 1,
          'nregardless': 1,
          'official': 1,
          'word': 1,
          'wouldnt': 1,
          'major': 1,
          'outlets': 1,
          'eastern': 1,
          'european': 1,
          'correspondents': 1,
          'verify': 1,
          'albania': 1,
          'addresses': 1,
          'question': 1,
          'show': 1,
          'reactions': 1,
          'news': 1,
          'apparent': 1,
          'except': 1,
          'scenes': 1,
          'border': 1,
          'farcical': 1,
          'basketball': 1,
          'fans': 1,
          'litter': 1,
          'court': 1,
          'shoes': 1,
          'support': 1,
          'aforementioned': 1,
          'nschumann': 1,
          'apparently': 1,
          'meant': 1,
          'assume': 1,
          'everyone': 1,
          'buying': 1,
          'nthere': 1,
          'instance': 1,
          'forced': 1,
          'reinventions': 1,
          'seems': 1,
          'contradict': 1,
          'selling': 1,
          'conceivably': 1,
          'given': 1,
          'game': 1,
          'away': 1,
          'plot': 1,
          'holes': 1,
          'doesnt': 1,
          'politics': 1,
          'send': 1,
          'mentality': 1,
          'lead': 1,
          'kinds': 1,
          'machinations': 1,
          'first': 1,
          'place': 1,
          'advisors': 1,
          'concerned': 1,
          'unethical': 1,
          'rather': 1,
          'worry': 1,
          'convincing': 1,
          'whether': 1,
          'money': 1,
          'pull': 1,
          'decidely': 1,
          'dark': 1,
          'turn': 1,
          'learn': 1,
          'willing': 1,
          'order': 1,
          'keep': 1,
          'secret': 1,
          'nmotss': 1,
          'buddies': 1,
          'meanwhile': 1,
          'completely': 1,
          'touch': 1,
          'rest': 1,
          'world': 1,
          'see': 1,
          'undertaking': 1,
          'another': 1,
          'creative': 1,
          'project': 1,
          'nin': 1,
          'sources': 1,
          'conflict': 1,
          'increasing': 1,
          'restlessness': 1,
          'idea': 1,
          'able': 1,
          'take': 1,
          'credit': 1,
          'producing': 1,
          'fake': 1,
          'mind': 1,
          'greatest': 1,
          'art': 1,
          'ever': 1,
          'created': 1,
          'think': 1,
          'fair': 1,
          'say': 1,
          'underachieves': 1,
          'bit': 1,
          'attention': 1,
          'reaction': 1,
          'tighter': 1,
          'plotting': 1,
          'made': 1,
          'fourstar': 1,
          'classic': 1,
          'using': 1,
          'patriotism': 1,
          'scandals': 1,
          'domestic': 1,
          'unpopularity': 1,
          'nwag': 1,
          'step': 1,
          'asks': 1,
          'wasnt': 1,
          'premise': 1,
          'talented': 1,
          'cast': 1,
          'still': 1,
          'delivers': 1,
          'whatever': 1,
          'flaws': 1,
          'npos': 1}),
 Counter({'last': 9,
          'days': 7,
          'documentary': 6,
          'nthe': 6,
          'survivors': 5,
          'stories': 5,
          'nits': 5,
          'jews': 4,
          'war': 4,
          'five': 4,
          'would': 4,
          'footage': 4,
          'movie': 4,
          'one': 4,
          'features': 4,
          'dvd': 4,
          'nthere': 4,
          'film': 4,
          'ambitious': 4,
          'europe': 3,
          'make': 3,
          'hungary': 3,
          'camps': 3,
          'auschwitz': 3,
          'pictures': 3,
          'none': 3,
          'holocaust': 3,
          'movies': 3,
          'new': 3,
          'subject': 3,
          'doctor': 3,
          'nazi': 2,
          'almost': 2,
          'years': 2,
          'still': 2,
          'world': 2,
          'ii': 2,
          'hungarian': 2,
          'introduction': 2,
          'nin': 2,
          'neach': 2,
          'story': 2,
          'intercut': 2,
          'nthey': 2,
          'recall': 2,
          'friends': 2,
          'nand': 2,
          'shows': 2,
          'say': 2,
          'place': 2,
          'moll': 2,
          'specific': 2,
          'relevant': 2,
          'two': 2,
          'color': 2,
          'shot': 2,
          'something': 2,
          'nanother': 2,
          'segment': 2,
          'nbut': 2,
          'detail': 2,
          'well': 2,
          'nalso': 2,
          '35mm': 2,
          'crew': 2,
          'interesting': 2,
          'outtakes': 2,
          'saying': 2,
          'prayer': 2,
          'sheer': 1,
          'horrific': 1,
          'audacity': 1,
          'plan': 1,
          'exterminate': 1,
          'incomprehensible': 1,
          'npeople': 1,
          'may': 1,
          'documentaries': 1,
          'another': 1,
          'hundred': 1,
          'understand': 1,
          'organized': 1,
          'methodical': 1,
          'hatred': 1,
          'nfive': 1,
          'concentration': 1,
          'camp': 1,
          'tell': 1,
          'first': 1,
          'steven': 1,
          'spielbergs': 1,
          'shoah': 1,
          'visual': 1,
          'history': 1,
          'foundation': 1,
          'interviewees': 1,
          'linked': 1,
          'ancestry': 1,
          'nas': 1,
          'explains': 1,
          'even': 1,
          'germany': 1,
          'started': 1,
          'lose': 1,
          'nazis': 1,
          'stepped': 1,
          'extermination': 1,
          '1944': 1,
          'big': 1,
          'population': 1,
          'within': 1,
          'germanys': 1,
          'reach': 1,
          'became': 1,
          'target': 1,
          'hitlers': 1,
          'final': 1,
          'solution': 1,
          'tells': 1,
          'ntheir': 1,
          'chronologically': 1,
          'starting': 1,
          'normal': 1,
          'life': 1,
          'prewar': 1,
          'invasion': 1,
          'sent': 1,
          'work': 1,
          'realization': 1,
          'actually': 1,
          'death': 1,
          'horrible': 1,
          'precarious': 1,
          'lives': 1,
          'buchenwald': 1,
          'deaths': 1,
          'family': 1,
          'loss': 1,
          'hope': 1,
          'recalls': 1,
          'unfathomable': 1,
          'eventual': 1,
          'liberation': 1,
          'finally': 1,
          'cathartic': 1,
          'pained': 1,
          'modernday': 1,
          'return': 1,
          'old': 1,
          'homes': 1,
          'nneedless': 1,
          'horrifying': 1,
          'amazing': 1,
          'emotionally': 1,
          'draining': 1,
          'nby': 1,
          'forceful': 1,
          'testaments': 1,
          'cutting': 1,
          'parallel': 1,
          'impact': 1,
          'multiplied': 1,
          'talkingheads': 1,
          'style': 1,
          'mostly': 1,
          'people': 1,
          'telling': 1,
          'period': 1,
          'photographs': 1,
          'newsreel': 1,
          'kind': 1,
          'impossible': 1,
          'get': 1,
          'archival': 1,
          'time': 1,
          'discussed': 1,
          'onscreen': 1,
          'director': 1,
          'james': 1,
          'made': 1,
          'better': 1,
          'effort': 1,
          'finding': 1,
          'least': 1,
          'images': 1,
          'go': 1,
          'subjects': 1,
          'narration': 1,
          'liner': 1,
          'notes': 1,
          'many': 1,
          'nice': 1,
          'indicate': 1,
          'neverbeforeseen': 1,
          'historical': 1,
          'clear': 1,
          'scene': 1,
          'nit': 1,
          'could': 1,
          'hadnt': 1,
          'seen': 1,
          'powerful': 1,
          'rare': 1,
          'american': 1,
          'piles': 1,
          'victims': 1,
          'cattle': 1,
          'cars': 1,
          'jarring': 1,
          'unsettling': 1,
          'seeing': 1,
          'much': 1,
          'black': 1,
          'white': 1,
          'walking': 1,
          'skeletons': 1,
          'starved': 1,
          'hardly': 1,
          'look': 1,
          'human': 1,
          'anymore': 1,
          'glut': 1,
          'skeptical': 1,
          'anything': 1,
          'focusing': 1,
          'told': 1,
          'part': 1,
          'way': 1,
          'greater': 1,
          'im': 1,
          'glad': 1,
          'careful': 1,
          'filmmaking': 1,
          'stands': 1,
          'compared': 1,
          'transfer': 1,
          'rich': 1,
          'beautiful': 1,
          'nxmozillastatus': 1,
          '0009f': 1,
          'words': 1,
          'interviews': 1,
          'take': 1,
          'late': 1,
          'spring': 1,
          'skies': 1,
          'blue': 1,
          'trees': 1,
          'green': 1,
          'video': 1,
          'nso': 1,
          'richness': 1,
          'impeccable': 1,
          'dvds': 1,
          'plentiful': 1,
          'wellchosen': 1,
          'theatrical': 1,
          'trailer': 1,
          'great': 1,
          'matter': 1,
          'fifty': 1,
          'photos': 1,
          'production': 1,
          'private': 1,
          'collections': 1,
          'disc': 1,
          'complete': 1,
          'versions': 1,
          'widescreen': 1,
          'full': 1,
          'screen': 1,
          'side': 1,
          'outtake': 1,
          'plus': 1,
          'nyoud': 1,
          'think': 1,
          'inappropriate': 1,
          'theyre': 1,
          'bloopers': 1,
          'ninstead': 1,
          'solid': 1,
          'moving': 1,
          'segments': 1,
          'probably': 1,
          'cut': 1,
          'length': 1,
          'continues': 1,
          'confrontation': 1,
          'touched': 1,
          'lightly': 1,
          'nrenee': 1,
          'firestone': 1,
          'spoke': 1,
          'camera': 1,
          'dr': 1,
          'hans': 1,
          'nch': 1,
          'german': 1,
          'ran': 1,
          'medical': 1,
          'clinic': 1,
          'nfirestone': 1,
          'aggressive': 1,
          'questioning': 1,
          'children': 1,
          'thought': 1,
          'evasive': 1,
          'clearly': 1,
          'uncomfortable': 1,
          'showed': 1,
          'bill': 1,
          'basch': 1,
          'dead': 1,
          'nhe': 1,
          'ends': 1,
          'forgive': 1,
          'surviving': 1,
          'shoot': 1,
          'saturated': 1,
          'cable': 1,
          'television': 1,
          '54': 1,
          'events': 1,
          'covers': 1,
          'handles': 1,
          'potential': 1,
          'obstacles': 1,
          'fitting': 1,
          'wealth': 1,
          'also': 1,
          'successful': 1,
          'npos': 1}),
 Counter({'one': 4,
          'movie': 4,
          'also': 2,
          'another': 2,
          'wife': 2,
          'ocean': 2,
          'fine': 2,
          'easy': 1,
          'label': 1,
          'something': 1,
          'sentimental': 1,
          'tear': 1,
          'jerking': 1,
          'experienced': 1,
          'heartache': 1,
          'losing': 1,
          'child': 1,
          'whether': 1,
          'may': 1,
          'life': 1,
          'death': 1,
          'nafter': 1,
          'said': 1,
          'say': 1,
          'well': 1,
          'none': 1,
          'gets': 1,
          'choking': 1,
          'sensation': 1,
          'throat': 1,
          'grief': 1,
          'brother': 1,
          'forgives': 1,
          'costly': 1,
          'mistake': 1,
          'husband': 1,
          'hugs': 1,
          'long': 1,
          'estrangement': 1,
          'nthere': 1,
          'drownings': 1,
          'conjure': 1,
          'memories': 1,
          'yet': 1,
          'ordinary': 1,
          'people': 1,
          'nin': 1,
          'fact': 1,
          'thing': 1,
          'remotely': 1,
          'connected': 1,
          'probably': 1,
          'tap': 1,
          'water': 1,
          'toilet': 1,
          'flushing': 1,
          'literally': 1,
          'happened': 1,
          'nso': 1,
          'lessons': 1,
          'learnt': 1,
          '1': 1,
          'ndont': 1,
          'take': 1,
          'children': 1,
          'class': 1,
          'reunions': 1,
          'n2': 1,
          'dont': 1,
          'leave': 1,
          'alone': 1,
          'lobby': 1,
          'even': 1,
          'second': 1,
          'nmichelle': 1,
          'pfeiffer': 1,
          'plays': 1,
          'role': 1,
          'highlystrung': 1,
          'mother': 1,
          'trend': 1,
          'started': 1,
          'thousand': 1,
          'acres': 1,
          'day': 1,
          'nmy': 1,
          'comment': 1,
          'exceptionally': 1,
          'strung': 1,
          'much': 1,
          'nervous': 1,
          'break': 1,
          'veins': 1,
          'temples': 1,
          'bulge': 1,
          'impressively': 1,
          'nwhoopi': 1,
          'golberg': 1,
          'puts': 1,
          'understated': 1,
          'performance': 1,
          'playing': 1,
          'lesbian': 1,
          'cop': 1,
          'name': 1,
          'makes': 1,
          'want': 1,
          'reach': 1,
          'lollipop': 1,
          'nlastly': 1,
          'ideal': 1,
          'companions': 1,
          'sort': 1,
          'grandmother': 1,
          'comes': 1,
          'mind': 1,
          'npos': 1}),
 Counter({'chicken': 14,
          'run': 12,
          'nthe': 9,
          'movie': 8,
          'seen': 7,
          'chickens': 7,
          'ive': 5,
          'one': 5,
          'film': 5,
          'like': 4,
          'voice': 4,
          'films': 4,
          'great': 4,
          'doesnt': 4,
          'idea': 4,
          'parodies': 4,
          'even': 4,
          'funnest': 3,
          'fun': 3,
          'nbut': 3,
          'something': 3,
          'escape': 3,
          'rocky': 3,
          'mel': 3,
          'gibson': 3,
          'pies': 3,
          'come': 3,
          'park': 3,
          'animation': 3,
          'two': 3,
          'story': 3,
          'bit': 3,
          'lord': 3,
          'nothing': 3,
          'characters': 3,
          'theyre': 3,
          'funny': 3,
          'subtle': 3,
          'way': 3,
          'sequence': 3,
          'got': 3,
          'never': 3,
          'isnt': 2,
          'word': 2,
          'n': 2,
          'thats': 2,
          'came': 2,
          'ever': 2,
          'movies': 2,
          'last': 2,
          'hen': 2,
          'julia': 2,
          'sawalha': 2,
          'comes': 2,
          'day': 2,
          'none': 2,
          'brash': 2,
          'rooster': 2,
          'famous': 2,
          'situation': 2,
          'tweedy': 2,
          'plan': 2,
          'nshe': 2,
          'creature': 2,
          'wrong': 2,
          'trousers': 2,
          'close': 2,
          'shave': 2,
          'starring': 2,
          'delightful': 2,
          'team': 2,
          'wallace': 2,
          'npart': 2,
          'parks': 2,
          'make': 2,
          'old': 2,
          'seem': 2,
          'stories': 2,
          'fresh': 2,
          'inspired': 2,
          'contrived': 2,
          'lifted': 2,
          'reference': 2,
          'scene': 2,
          'feel': 2,
          'else': 2,
          'done': 2,
          'original': 2,
          'npark': 2,
          'references': 2,
          'chase': 2,
          'indiana': 2,
          'jones': 2,
          'jabs': 2,
          'history': 2,
          'catch': 2,
          'parody': 2,
          'year': 2,
          'dozens': 2,
          'blair': 2,
          'witch': 2,
          'offer': 2,
          'nthey': 2,
          'youve': 2,
          'lively': 2,
          'every': 2,
          'inevitable': 2,
          'rats': 2,
          'nearly': 2,
          'enjoy': 2,
          'know': 1,
          'noun': 1,
          'therefore': 1,
          'conjugated': 1,
          'adjective': 1,
          'right': 1,
          'viewing': 1,
          'nno': 1,
          'wonder': 1,
          'kind': 1,
          'reduces': 1,
          'childish': 1,
          'expressions': 1,
          'nso': 1,
          'hell': 1,
          'websters': 1,
          'ni': 1,
          'cant': 1,
          'remember': 1,
          'time': 1,
          'anything': 1,
          'funner': 1,
          'tweedys': 1,
          'farm': 1,
          'nliving': 1,
          'concentration': 1,
          'camplike': 1,
          'atmosphere': 1,
          'led': 1,
          'plucky': 1,
          'called': 1,
          'ginger': 1,
          'continually': 1,
          'plans': 1,
          'always': 1,
          'gets': 1,
          'caught': 1,
          'subsequently': 1,
          'spending': 1,
          'coal': 1,
          'box': 1,
          'night': 1,
          'american': 1,
          'flies': 1,
          'fence': 1,
          'calling': 1,
          'flying': 1,
          'circus': 1,
          'performer': 1,
          'nrocky': 1,
          'promises': 1,
          'teach': 1,
          'fly': 1,
          'grows': 1,
          'desperate': 1,
          'nefarious': 1,
          'mrs': 1,
          'miranda': 1,
          'richardson': 1,
          'decides': 1,
          'abandon': 1,
          'farms': 1,
          'eggselling': 1,
          'pieselling': 1,
          'orders': 1,
          'huge': 1,
          'piemaking': 1,
          'machine': 1,
          'cackling': 1,
          'go': 1,
          'nwhat': 1,
          'sort': 1,
          'nchicken': 1,
          'course': 1,
          'ncodirector': 1,
          'nick': 1,
          'studio': 1,
          'aardman': 1,
          'produced': 1,
          'three': 1,
          'oscarwinning': 1,
          'short': 1,
          'comforts': 1,
          'latter': 1,
          'second': 1,
          'third': 1,
          'installments': 1,
          'trilogy': 1,
          'gromit': 1,
          'man': 1,
          'dog': 1,
          'getting': 1,
          'increasingly': 1,
          'peculiar': 1,
          'adventures': 1,
          'made': 1,
          'brilliantly': 1,
          'entertaining': 1,
          'uncanny': 1,
          'ability': 1,
          'new': 1,
          'example': 1,
          'pulled': 1,
          'lot': 1,
          'hitchcockian': 1,
          'suspense': 1,
          'tricks': 1,
          'owed': 1,
          'deal': 1,
          'inspiration': 1,
          'classic': 1,
          'detective': 1,
          'hands': 1,
          'felt': 1,
          'least': 1,
          'nnow': 1,
          'teaming': 1,
          'codirector': 1,
          'peter': 1,
          'created': 1,
          'similar': 1,
          'plot': 1,
          'largely': 1,
          'watch': 1,
          'quick': 1,
          'ballbouncing': 1,
          'spielberginspired': 1,
          'action': 1,
          'sequences': 1,
          'providing': 1,
          'excitement': 1,
          'nthing': 1,
          'somewhere': 1,
          'feels': 1,
          'alive': 1,
          'world': 1,
          'prisonersofwar': 1,
          'milk': 1,
          'incongruity': 1,
          'worth': 1,
          'treat': 1,
          'dead': 1,
          'serious': 1,
          'us': 1,
          'nanother': 1,
          'thing': 1,
          'helps': 1,
          'succeed': 1,
          'animators': 1,
          'giving': 1,
          'nods': 1,
          'cribbing': 1,
          'nthere': 1,
          'obviously': 1,
          'stalag': 1,
          '17': 1,
          'inside': 1,
          'grinder': 1,
          'raiders': 1,
          'lost': 1,
          'ark': 1,
          'temple': 1,
          'doom': 1,
          'ntheres': 1,
          'nod': 1,
          'blues': 1,
          'brothers': 1,
          'believe': 1,
          'filmmakers': 1,
          'get': 1,
          'little': 1,
          'lighthearted': 1,
          'ribbing': 1,
          'expense': 1,
          'star': 1,
          'actor': 1,
          'taking': 1,
          'couple': 1,
          'gibsons': 1,
          'nationality': 1,
          'braveheart': 1,
          'hoot': 1,
          'nwhen': 1,
          'consider': 1,
          'fine': 1,
          'line': 1,
          'resides': 1,
          'redundant': 1,
          'downright': 1,
          'brilliant': 1,
          'execution': 1,
          'nconsider': 1,
          'since': 1,
          'july': 1,
          'upon': 1,
          'project': 1,
          'television': 1,
          'radio': 1,
          'online': 1,
          'nout': 1,
          'maybe': 1,
          'amusing': 1,
          'rest': 1,
          'tiresome': 1,
          'nwhy': 1,
          'nbecause': 1,
          'past': 1,
          'thought': 1,
          'parodying': 1,
          'that8216': 1,
          'insight': 1,
          'greater': 1,
          'purpose': 1,
          'otherwise': 1,
          'nconversely': 1,
          'lean': 1,
          'sole': 1,
          'focus': 1,
          'nif': 1,
          'still': 1,
          'neven': 1,
          'remains': 1,
          'interesting': 1,
          'character': 1,
          'screenwriter': 1,
          'karey': 1,
          'kirkpatrick': 1,
          'realize': 1,
          'audience': 1,
          'need': 1,
          'shoved': 1,
          'faces': 1,
          'understood': 1,
          'result': 1,
          'filled': 1,
          'visual': 1,
          'verbal': 1,
          'obvious': 1,
          'quite': 1,
          'vague': 1,
          'either': 1,
          'nenjoyment': 1,
          'require': 1,
          'knowledge': 1,
          'much': 1,
          'richer': 1,
          'cast': 1,
          'turns': 1,
          'uniformly': 1,
          'performances': 1,
          'play': 1,
          'given': 1,
          'many': 1,
          'nuances': 1,
          'hard': 1,
          'fall': 1,
          'love': 1,
          'nginger': 1,
          'perfect': 1,
          'spunky': 1,
          'opinionated': 1,
          'soft': 1,
          'heart': 1,
          'forbids': 1,
          'leave': 1,
          'companions': 1,
          'behind': 1,
          'known': 1,
          'cute': 1,
          'mousy': 1,
          'girl': 1,
          'absolutely': 1,
          'fabulous': 1,
          'nails': 1,
          'warm': 1,
          'human': 1,
          'chemistry': 1,
          'whose': 1,
          'hides': 1,
          'personal': 1,
          'doubt': 1,
          'gungho': 1,
          'veneer': 1,
          'romance': 1,
          'sweet': 1,
          'npoor': 1,
          'mr': 1,
          'tony': 1,
          'haygarth': 1,
          'suspects': 1,
          'organizing': 1,
          'limited': 1,
          'intellect': 1,
          'prevents': 1,
          'figuring': 1,
          'things': 1,
          'overbearing': 1,
          'wife': 1,
          'certainly': 1,
          'help': 1,
          'njane': 1,
          'horrocks': 1,
          'delivers': 1,
          'lovely': 1,
          'characterization': 1,
          'tragically': 1,
          'optimistic': 1,
          'babs': 1,
          'runs': 1,
          'away': 1,
          'best': 1,
          'oneliners': 1,
          'perpetually': 1,
          'crocheting': 1,
          'sweater': 1,
          'supplytrading': 1,
          'walked': 1,
          'straight': 1,
          'monty': 1,
          'python': 1,
          'sketch': 1,
          'steal': 1,
          'show': 1,
          'central': 1,
          'swingdancing': 1,
          'riff': 1,
          'baffled': 1,
          'scholars': 1,
          'theologians': 1,
          'alike': 1,
          'decades': 1,
          'vs': 1,
          'egg': 1,
          'dilemma': 1,
          'might': 1,
          'expected': 1,
          'joke': 1,
          'wearisome': 1,
          'surprise': 1,
          'manages': 1,
          'cross': 1,
          'barriers': 1,
          'accessible': 1,
          'children': 1,
          'adults': 1,
          'brits': 1,
          'yanks': 1,
          'firstrate': 1,
          'nremember': 1,
          'oldfashioned': 1,
          'actual': 1,
          'humans': 1,
          'moving': 1,
          'clay': 1,
          'figurines': 1,
          'around': 1,
          'tiny': 1,
          'set': 1,
          'painstaking': 1,
          'see': 1,
          'truly': 1,
          'remarkable': 1,
          'really': 1,
          'nthis': 1,
          'possesses': 1,
          'quality': 1,
          'makes': 1,
          'pixar': 1,
          'studios': 1,
          'precise': 1,
          'unwavering': 1,
          'attention': 1,
          'detail': 1,
          'nas': 1,
          'topnotch': 1,
          'family': 1,
          'fare': 1,
          'bugs': 1,
          'life': 1,
          'toy': 1,
          '2': 1,
          'frame': 1,
          'ncertainly': 1,
          'passive': 1,
          'viewer': 1,
          'straightforward': 1,
          'worthwhile': 1,
          'moral': 1,
          'surprisingly': 1,
          'touching': 1,
          'scenes': 1,
          'active': 1,
          'attentive': 1,
          'viewers': 1,
          'theyll': 1,
          'details': 1,
          'nanyway': 1,
          'boatload': 1,
          'nfunnest': 1,
          'damn': 1,
          'npos': 1}),
 Counter({'film': 12,
          'dinosaurs': 11,
          'films': 8,
          'nthe': 8,
          'island': 7,
          'park': 6,
          'adventure': 5,
          'ni': 5,
          'jurassic': 5,
          'get': 5,
          'two': 4,
          'story': 4,
          '4': 4,
          'world': 4,
          'like': 4,
          'characters': 4,
          'little': 4,
          'much': 4,
          'look': 4,
          'safe': 4,
          'grant': 4,
          'dinosaur': 3,
          'back': 3,
          'us': 3,
          'see': 3,
          'new': 3,
          'time': 3,
          'nthis': 3,
          'nin': 3,
          'lost': 3,
          'also': 3,
          'first': 3,
          'effects': 3,
          'nthey': 3,
          'height': 3,
          'sequel': 2,
          'made': 2,
          'njoe': 2,
          'johnston': 2,
          'directs': 2,
          'nit': 2,
          'neither': 2,
          'good': 2,
          'low': 2,
          '2': 2,
          'liked': 2,
          'even': 2,
          'novel': 2,
          'classic': 2,
          'doyle': 2,
          'said': 2,
          'boy': 2,
          'whos': 2,
          'half': 2,
          'man': 2,
          'nthat': 2,
          'expecting': 2,
          'complex': 2,
          'appear': 2,
          'looking': 2,
          'near': 2,
          'isla': 2,
          'sorna': 2,
          'research': 2,
          'better': 2,
          'alan': 2,
          'go': 2,
          'fly': 2,
          'nhe': 2,
          'real': 2,
          'nbut': 2,
          'money': 2,
          'seeing': 2,
          'less': 2,
          'still': 2,
          'great': 2,
          'raptors': 2,
          'may': 2,
          'previous': 2,
          'course': 2,
          'different': 2,
          'known': 2,
          'team': 2,
          'obscures': 2,
          'na': 2,
          'score': 2,
          'scale': 2,
          'capsule': 1,
          'short': 1,
          'punchy': 1,
          'action': 1,
          'steven': 1,
          'spielberg': 1,
          'straightforward': 1,
          'excursion': 1,
          'lets': 1,
          'oxymoron': 1,
          'gives': 1,
          'nice': 1,
          'generally': 1,
          'reasonably': 1,
          'written': 1,
          'ambitious': 1,
          'pretentious': 1,
          'n': 1,
          'nhere': 1,
          'goes': 1,
          'credibility': 1,
          'expect': 1,
          'minority': 1,
          'third': 1,
          'second': 1,
          'lot': 1,
          'ways': 1,
          'creative': 1,
          'threeway': 1,
          'braiding': 1,
          'together': 1,
          'michael': 1,
          'crichtons': 1,
          'arthur': 1,
          'conan': 1,
          'doyles': 1,
          'silent': 1,
          'version': 1,
          'njp2': 1,
          'nexpecting': 1,
          'give': 1,
          'viewer': 1,
          'insights': 1,
          'human': 1,
          'condition': 1,
          'car': 1,
          'vacuum': 1,
          'house': 1,
          'gunga': 1,
          'din': 1,
          'king': 1,
          'solomons': 1,
          'mines': 1,
          'underwritten': 1,
          'njurassic': 1,
          'iii': 1,
          'inhabited': 1,
          'nsome': 1,
          'start': 1,
          'stupid': 1,
          'useless': 1,
          'prove': 1,
          'proceeds': 1,
          'degree': 1,
          'complexity': 1,
          'combined': 1,
          'realistic': 1,
          'require': 1,
          'feel': 1,
          'got': 1,
          'moneys': 1,
          'worth': 1,
          'opens': 1,
          'eric': 1,
          'played': 1,
          'trevor': 1,
          'morgan': 1,
          'friend': 1,
          'parasailing': 1,
          'forbidden': 1,
          'costa': 1,
          'rica': 1,
          'created': 1,
          'defunct': 1,
          'hope': 1,
          'doubt': 1,
          'islands': 1,
          'driving': 1,
          'boat': 1,
          'water': 1,
          'soon': 1,
          'find': 1,
          'trouble': 1,
          'ditch': 1,
          'parasail': 1,
          'onto': 1,
          'indeed': 1,
          'intended': 1,
          'nflash': 1,
          'united': 1,
          'states': 1,
          'someone': 1,
          'offering': 1,
          'fund': 1,
          'paleontologist': 1,
          'sam': 1,
          'neill': 1,
          'act': 1,
          'guide': 1,
          'force': 1,
          'earth': 1,
          'heaven': 1,
          'could': 1,
          'convinces': 1,
          'drop': 1,
          'ndoing': 1,
          'convincing': 1,
          'wealthy': 1,
          'eccentric': 1,
          'couple': 1,
          'william': 1,
          'h': 1,
          'macy': 1,
          'tea': 1,
          'leoni': 1,
          'everywhere': 1,
          'else': 1,
          'wants': 1,
          'plan': 1,
          'relieved': 1,
          'learn': 1,
          'altitude': 1,
          'nright': 1,
          'nguess': 1,
          'happens': 1,
          'next': 1,
          'njp3': 1,
          'probably': 1,
          'functions': 1,
          'jp2': 1,
          'nfirst': 1,
          'ellie': 1,
          'sattler': 1,
          'laura': 1,
          'dern': 1,
          'rather': 1,
          'appealing': 1,
          'ian': 1,
          'malcolm': 1,
          'nsattler': 1,
          'smaller': 1,
          'part': 1,
          'jp3': 1,
          'present': 1,
          'tie': 1,
          'ncuriously': 1,
          'seems': 1,
          'arrange': 1,
          'signature': 1,
          'scene': 1,
          'holding': 1,
          'large': 1,
          'metal': 1,
          'object': 1,
          'fall': 1,
          'distance': 1,
          'none': 1,
          'thing': 1,
          'quite': 1,
          'fit': 1,
          'earlier': 1,
          'discovers': 1,
          'able': 1,
          'talk': 1,
          'suddenly': 1,
          'seem': 1,
          'conversing': 1,
          'nof': 1,
          'perhaps': 1,
          'related': 1,
          'species': 1,
          'nnot': 1,
          'intelligent': 1,
          'past': 1,
          'sympathetic': 1,
          'killing': 1,
          'machines': 1,
          'reasonable': 1,
          'motives': 1,
          'beyond': 1,
          'nutrition': 1,
          'around': 1,
          'anthropomorphized': 1,
          'neach': 1,
          'series': 1,
          'introduces': 1,
          'major': 1,
          'threat': 1,
          'spinosaurus': 1,
          'common': 1,
          'popularly': 1,
          'tyrannosaurus': 1,
          'larger': 1,
          'presumably': 1,
          'nasty': 1,
          'crocodiles': 1,
          'head': 1,
          'body': 1,
          'looks': 1,
          'dimetrodon': 1,
          'walking': 1,
          'upright': 1,
          'nperhaps': 1,
          'economy': 1,
          'measure': 1,
          'create': 1,
          'mood': 1,
          'visual': 1,
          'frequently': 1,
          'view': 1,
          'nsometimes': 1,
          'move': 1,
          'fast': 1,
          'noccasionally': 1,
          'darkness': 1,
          'fog': 1,
          'vision': 1,
          'times': 1,
          'unconvincing': 1,
          'matte': 1,
          'shot': 1,
          'particularly': 1,
          'laboratory': 1,
          'screen': 1,
          'terms': 1,
          'musical': 1,
          'davis': 1,
          'borrows': 1,
          'heavily': 1,
          'john': 1,
          'williamss': 1,
          'already': 1,
          'credit': 1,
          'recommend': 1,
          'rocketeer': 1,
          'october': 1,
          'sky': 1,
          'including': 1,
          'alexander': 1,
          'payne': 1,
          'jim': 1,
          'taylor': 1,
          'election': 1,
          'writes': 1,
          'screenplay': 1,
          'long': 1,
          'way': 1,
          'cinema': 1,
          'fun': 1,
          'nif': 1,
          'thrill': 1,
          'live': 1,
          'alive': 1,
          'today': 1,
          'rate': 1,
          '7': 1,
          '0': 1,
          '10': 1,
          'npos': 1}),
 Counter({'rob': 9,
          'fidelity': 6,
          'high': 5,
          'character': 5,
          'know': 4,
          'movie': 4,
          'music': 4,
          'big': 3,
          'life': 3,
          'laugh': 3,
          'frears': 3,
          'makes': 3,
          'feel': 3,
          'ni': 3,
          'laughed': 3,
          'nthe': 3,
          'look': 2,
          'years': 2,
          'lebowski': 2,
          'actors': 2,
          'record': 2,
          'store': 2,
          'way': 2,
          'around': 2,
          'losers': 2,
          'stephen': 2,
          'good': 2,
          'twenty': 2,
          'day': 2,
          'realize': 2,
          'laughing': 2,
          'talking': 2,
          'either': 2,
          'words': 2,
          'friends': 2,
          'john': 2,
          'barry': 2,
          'black': 2,
          'time': 2,
          'nand': 2,
          'cusack': 2,
          'nrob': 2,
          'like': 2,
          'nhe': 2,
          'hold': 2,
          'pop': 2,
          'goes': 2,
          'listening': 2,
          'bruce': 2,
          'springsteen': 2,
          'well': 2,
          'trying': 2,
          'girlfriends': 2,
          'five': 2,
          'robs': 2,
          'show': 2,
          'speak': 2,
          'camera': 2,
          'nit': 2,
          'minutes': 2,
          'cast': 2,
          'back': 1,
          'two': 1,
          'ago': 1,
          'coen': 1,
          'brothers': 1,
          'comedic': 1,
          'gem': 1,
          'change': 1,
          'take': 1,
          'away': 1,
          'bowling': 1,
          'alley': 1,
          'add': 1,
          'youve': 1,
          'got': 1,
          'maybe': 1,
          'since': 1,
          'nick': 1,
          'hornbys': 1,
          'novel': 1,
          'came': 1,
          'first': 1,
          'neither': 1,
          'done': 1,
          'trio': 1,
          'cracking': 1,
          'jokes': 1,
          'complaining': 1,
          'failed': 1,
          'romances': 1,
          'yet': 1,
          'remains': 1,
          'consistently': 1,
          'funny': 1,
          'nwhy': 1,
          'nmaybe': 1,
          'much': 1,
          'better': 1,
          'guys': 1,
          'pathetic': 1,
          'ok': 1,
          'theyre': 1,
          'fictional': 1,
          'ndirector': 1,
          'possibly': 1,
          'intentionally': 1,
          'created': 1,
          'even': 1,
          'ostensibly': 1,
          'uncle': 1,
          'watches': 1,
          'television': 1,
          'four': 1,
          'hours': 1,
          'nwhen': 1,
          'watching': 1,
          'expect': 1,
          'someone': 1,
          'elses': 1,
          'pain': 1,
          'dick': 1,
          'todd': 1,
          'louiso': 1,
          'shy': 1,
          'timorous': 1,
          'steve': 1,
          'buscemi': 1,
          'seems': 1,
          'cant': 1,
          'put': 1,
          'harshly': 1,
          'rejected': 1,
          'goodman': 1,
          'jack': 1,
          'exact': 1,
          'replica': 1,
          'comic': 1,
          'bookstore': 1,
          'owner': 1,
          'simpsons': 1,
          'pudgy': 1,
          'egotistic': 1,
          'obnoxious': 1,
          'jeff': 1,
          'bridges': 1,
          'type': 1,
          'story': 1,
          'revolves': 1,
          'easiest': 1,
          'relate': 1,
          'nothing': 1,
          'uncontrollably': 1,
          'cheats': 1,
          'lies': 1,
          'unable': 1,
          'onto': 1,
          'woman': 1,
          'miserable': 1,
          'inevitably': 1,
          'comfort': 1,
          'spends': 1,
          'afternoons': 1,
          'job': 1,
          'quizzing': 1,
          'coworkers': 1,
          'obscure': 1,
          'trivia': 1,
          'new': 1,
          'deriding': 1,
          'praising': 1,
          'nwhatever': 1,
          'human': 1,
          'emotions': 1,
          'clash': 1,
          'aretha': 1,
          'franklin': 1,
          'records': 1,
          'co': 1,
          'ngrasp': 1,
          'help': 1,
          'fill': 1,
          'voids': 1,
          'social': 1,
          'lives': 1,
          'built': 1,
          'extensive': 1,
          'collection': 1,
          'home': 1,
          'organizes': 1,
          'depending': 1,
          'mood': 1,
          'nduring': 1,
          'confused': 1,
          'stage': 1,
          'focuses': 1,
          'cope': 1,
          'numerous': 1,
          'rejections': 1,
          'visiting': 1,
          'past': 1,
          'eventually': 1,
          'asking': 1,
          'dumped': 1,
          'nbut': 1,
          'arent': 1,
          'girls': 1,
          'made': 1,
          'top': 1,
          'break': 1,
          'ups': 1,
          'history': 1,
          'incessant': 1,
          'use': 1,
          'lists': 1,
          'played': 1,
          'major': 1,
          'role': 1,
          'plot': 1,
          'three': 1,
          'women': 1,
          'approach': 1,
          'director': 1,
          'takes': 1,
          'charismatic': 1,
          'directly': 1,
          'effective': 1,
          'gives': 1,
          'quickly': 1,
          'paced': 1,
          'informal': 1,
          'structure': 1,
          'adjectives': 1,
          'perfectly': 1,
          'parallel': 1,
          'lifestyle': 1,
          'also': 1,
          'helps': 1,
          'open': 1,
          'viewers': 1,
          'eyes': 1,
          'annoying': 1,
          'njack': 1,
          'steals': 1,
          'hilariously': 1,
          'realistic': 1,
          'performance': 1,
          'total': 1,
          'sleaze': 1,
          'ball': 1,
          'njust': 1,
          'audience': 1,
          'immediately': 1,
          'sympathetic': 1,
          'must': 1,
          'work': 1,
          'every': 1,
          'week': 1,
          'nwhat': 1,
          'us': 1,
          'sorry': 1,
          'misfortunes': 1,
          'njohn': 1,
          'plays': 1,
          'convincingly': 1,
          'strong': 1,
          'supporting': 1,
          'consisting': 1,
          'stars': 1,
          'really': 1,
          'defines': 1,
          'nnow': 1,
          'instead': 1,
          'explains': 1,
          'something': 1,
          'remaining': 1,
          'members': 1,
          'physically': 1,
          'humorously': 1,
          'create': 1,
          'say': 1,
          'problem': 1,
          'doesnt': 1,
          'end': 1,
          'ended': 1,
          'ninstead': 1,
          'torturous': 1,
          'seem': 1,
          'lot': 1,
          'longer': 1,
          'nalso': 1,
          'completely': 1,
          'wasted': 1,
          'brief': 1,
          'cameo': 1,
          'halfway': 1,
          'nhigh': 1,
          'cheerful': 1,
          'old': 1,
          'fashioned': 1,
          'comedy': 1,
          'voluminous': 1,
          'soundtrack': 1,
          'many': 1,
          'laughs': 1,
          'hope': 1,
          'hollywood': 1,
          'keeps': 1,
          'creating': 1,
          'screen': 1,
          'make': 1,
          'everyone': 1,
          'great': 1,
          'npos': 1}),
 Counter({'film': 9,
          'apes': 8,
          'human': 7,
          'movie': 6,
          'character': 6,
          'didnt': 6,
          'ni': 5,
          'planet': 4,
          'lead': 4,
          'really': 4,
          'humans': 3,
          'tim': 3,
          'thing': 3,
          'every': 3,
          'also': 3,
          'whole': 3,
          'got': 3,
          'battle': 3,
          'sequence': 3,
          'back': 3,
          'nthe': 3,
          'ruled': 2,
          'escape': 2,
          'despite': 2,
          'burton': 2,
          'recommend': 2,
          'fun': 2,
          'summer': 2,
          'definitely': 2,
          'ape': 2,
          'makeup': 2,
          'one': 2,
          'give': 2,
          'coming': 2,
          'characters': 2,
          'especially': 2,
          'entire': 2,
          'guy': 2,
          'scene': 2,
          'wahlberg': 2,
          'bit': 2,
          'much': 2,
          'care': 2,
          'little': 2,
          'nbut': 2,
          'either': 2,
          'anyone': 2,
          'look': 2,
          'original': 2,
          '1968': 2,
          'fact': 2,
          'hes': 2,
          '810': 2,
          '710': 2,
          'plot': 1,
          'space': 1,
          'astronaut': 1,
          'accidentally': 1,
          'falls': 1,
          'upon': 1,
          'nhe': 1,
          'taken': 1,
          'prisoner': 1,
          'along': 1,
          'tries': 1,
          'best': 1,
          'simian': 1,
          'captors': 1,
          'noh': 1,
          'yeah': 1,
          'mention': 1,
          'talk': 1,
          'nkewl': 1,
          'ncritique': 1,
          'looking': 1,
          'like': 1,
          'showing': 1,
          'signs': 1,
          'find': 1,
          'generally': 1,
          'entertained': 1,
          'throughout': 1,
          'fare': 1,
          'nalthough': 1,
          'sets': 1,
          'apart': 1,
          'others': 1,
          'incredible': 1,
          'jobs': 1,
          'characterizations': 1,
          'mean': 1,
          'completely': 1,
          'convinced': 1,
          'single': 1,
          'real': 1,
          'actors': 1,
          'inside': 1,
          'costumes': 1,
          'waking': 1,
          'three': 1,
          'morning': 1,
          'day': 1,
          'get': 1,
          'slobbered': 1,
          '24': 1,
          'hours': 1,
          'costumed': 1,
          'exteriors': 1,
          'selling': 1,
          'us': 1,
          'screen': 1,
          'well': 1,
          'enjoyed': 1,
          'bonham': 1,
          'carters': 1,
          'performance': 1,
          'believed': 1,
          'developed': 1,
          'roths': 1,
          'bad': 1,
          'chewed': 1,
          'scenery': 1,
          'oozed': 1,
          'evil': 1,
          'took': 1,
          'part': 1,
          'nplotwise': 1,
          'liked': 1,
          'beginning': 1,
          'buildup': 1,
          'village': 1,
          'fight': 1,
          'scenes': 1,
          'things': 1,
          'deserted': 1,
          'area': 1,
          'final': 1,
          'kinda': 1,
          'lost': 1,
          'interest': 1,
          'intrigued': 1,
          'interactions': 1,
          'idea': 1,
          'beings': 1,
          'animals': 1,
          'end': 1,
          'seemed': 1,
          'typical': 1,
          'kind': 1,
          'hated': 1,
          'kid': 1,
          'nerves': 1,
          'way': 1,
          'resolved': 1,
          'wont': 1,
          'ruin': 1,
          'cmon': 1,
          'guys': 1,
          'ncoulda': 1,
          'thought': 1,
          'something': 1,
          'plausible': 1,
          'held': 1,
          'anything': 1,
          'else': 1,
          'cold': 1,
          'demeanor': 1,
          'zero': 1,
          'chemistry': 1,
          'shared': 1,
          'interspecies': 1,
          'love': 1,
          'interests': 1,
          'nthis': 1,
          'dude': 1,
          'seem': 1,
          'rats': 1,
          'ass': 1,
          'ultimately': 1,
          'happened': 1,
          'nnow': 1,
          'im': 1,
          'sure': 1,
          'fault': 1,
          'actor': 1,
          'script': 1,
          'suffered': 1,
          'nvisually': 1,
          'nice': 1,
          'expected': 1,
          'greater': 1,
          'coolness': 1,
          'surprise': 1,
          'ending': 1,
          'highlighted': 1,
          'felt': 1,
          'tacked': 1,
          'interesting': 1,
          'make': 1,
          'sense': 1,
          'unless': 1,
          'sequel': 1,
          'point': 1,
          'view': 1,
          'nso': 1,
          'overall': 1,
          'loved': 1,
          'feel': 1,
          'manner': 1,
          'treated': 1,
          'screamed': 1,
          'shouted': 1,
          'reverted': 1,
          'evolution': 1,
          'chain': 1,
          'appreciate': 1,
          'films': 1,
          'lack': 1,
          'development': 1,
          'kris': 1,
          'kristofferson': 1,
          'even': 1,
          'male': 1,
          'female': 1,
          'plain': 1,
          'boring': 1,
          'would': 1,
          'still': 1,
          'laughs': 1,
          'creepiness': 1,
          'cool': 1,
          'premise': 1,
          'nps': 1,
          'seen': 1,
          'believe': 1,
          'least': 1,
          'bring': 1,
          'case': 1,
          'mark': 1,
          'goes': 1,
          'nuts': 1,
          'world': 1,
          'suddenly': 1,
          'thrust': 1,
          'mad': 1,
          'house': 1,
          'ntype': 1,
          'barely': 1,
          'seems': 1,
          'put': 1,
          'surrounded': 1,
          'speak': 1,
          'english': 1,
          'nwheres': 1,
          'joblo': 1,
          'arrival': 1,
          'battlefield': 1,
          'earth': 1,
          'godzilla': 1,
          '410': 1,
          'instinct': 1,
          '610': 1,
          'mission': 1,
          'mars': 1,
          '310': 1,
          'pitch': 1,
          'black': 1,
          '910': 1,
          'sleepy': 1,
          'hollow': 1,
          'npos': 1}),
 Counter({'n': 7,
          'peak': 5,
          'dantes': 4,
          'volcano': 4,
          'least': 3,
          'disaster': 2,
          'cliched': 2,
          'nto': 2,
          'film': 2,
          'actual': 2,
          'decent': 2,
          'plot': 2,
          'would': 2,
          'also': 2,
          'pretty': 2,
          'wasnt': 2,
          'seeing': 2,
          'movie': 2,
          'nits': 2,
          'something': 2,
          'merely': 2,
          'watch': 2,
          'dont': 2,
          'town': 2,
          'finally': 2,
          'course': 2,
          'one': 2,
          'kids': 2,
          'dog': 2,
          'films': 1,
          'tendency': 1,
          'formulated': 1,
          'see': 1,
          'originality': 1,
          'twist': 1,
          'definitely': 1,
          'welcome': 1,
          'surprise': 1,
          'nunfortunately': 1,
          'folks': 1,
          'likely': 1,
          'ndantes': 1,
          'times': 1,
          'corny': 1,
          'honest': 1,
          'interested': 1,
          'word': 1,
          'mouth': 1,
          'well': 1,
          'several': 1,
          'reviews': 1,
          'didnt': 1,
          'make': 1,
          'sound': 1,
          'promising': 1,
          'nso': 1,
          'pleasantly': 1,
          'surprised': 1,
          'find': 1,
          'bad': 1,
          'run': 1,
          'mill': 1,
          'say': 1,
          'ok': 1,
          'nin': 1,
          'case': 1,
          'know': 1,
          'city': 1,
          'lives': 1,
          'shadow': 1,
          'wouldve': 1,
          'guessed': 1,
          'eh': 1,
          'npierce': 1,
          'brosnan': 1,
          'plays': 1,
          'volcanologist': 1,
          'sent': 1,
          'study': 1,
          'perhaps': 1,
          'hunch': 1,
          'scientific': 1,
          'proof': 1,
          'determined': 1,
          'arupting': 1,
          'near': 1,
          'future': 1,
          'ndue': 1,
          'lack': 1,
          'substantial': 1,
          'evidence': 1,
          'nobody': 1,
          'warns': 1,
          'small': 1,
          'middle': 1,
          'meeting': 1,
          'blows': 1,
          'nbrosnan': 1,
          'around': 1,
          'good': 1,
          'guy': 1,
          'save': 1,
          'day': 1,
          'mayor': 1,
          'linda': 1,
          'hamilton': 1,
          'nnaturally': 1,
          'two': 1,
          'become': 1,
          'infatuated': 1,
          'another': 1,
          'think': 1,
          'ruined': 1,
          'development': 1,
          'havent': 1,
          'seen': 1,
          'many': 1,
          'movies': 1,
          'ntheres': 1,
          'virtually': 1,
          'neccessary': 1,
          'pet': 1,
          'tug': 1,
          'heart': 1,
          'strings': 1,
          'nand': 1,
          'heroic': 1,
          'nbut': 1,
          'hey': 1,
          'want': 1,
          'ruin': 1,
          'surprises': 1,
          'nif': 1,
          'part': 1,
          'hesitating': 1,
          'rumored': 1,
          'waste': 1,
          'time': 1,
          'urge': 1,
          'decide': 1,
          'brain': 1,
          'food': 1,
          'succeeds': 1,
          'meant': 1,
          'nan': 1,
          'enjoyable': 1,
          'suspenseful': 1,
          'fury': 1,
          'mother': 1,
          'nature': 1,
          'unleash': 1,
          'npos': 1}),
 Counter({'suzanne': 7,
          'movie': 6,
          'film': 5,
          'husband': 5,
          'wonderful': 4,
          'smart': 4,
          'new': 4,
          'n': 4,
          'life': 4,
          'would': 4,
          'story': 4,
          'jimmy': 4,
          'sant': 4,
          'american': 3,
          'media': 3,
          'thought': 3,
          'nicole': 3,
          'die': 3,
          'character': 3,
          'buck': 3,
          'henry': 3,
          'kidman': 3,
          'little': 3,
          'nthe': 3,
          'delivers': 3,
          'funny': 3,
          'like': 3,
          'score': 3,
          'best': 2,
          'comedy': 2,
          'since': 2,
          'heathers': 2,
          'fame': 2,
          'pop': 2,
          'culture': 2,
          'ngo': 2,
          'see': 2,
          'hard': 2,
          'copy': 2,
          'hampshire': 2,
          'convicted': 2,
          'kidmans': 2,
          'fictionalized': 2,
          'portrayal': 2,
          'dumb': 2,
          'appeal': 2,
          'given': 2,
          'point': 2,
          'version': 2,
          'event': 2,
          'real': 2,
          'dialogue': 2,
          'nto': 2,
          'obstacles': 2,
          'tv': 2,
          'course': 2,
          'one': 2,
          'matt': 2,
          'dillon': 2,
          'manages': 2,
          'nkidman': 2,
          'role': 2,
          'really': 2,
          'nher': 2,
          'knows': 2,
          'plays': 2,
          'ably': 2,
          'comic': 2,
          'knowledge': 2,
          'world': 2,
          'suzannes': 2,
          'phoenix': 2,
          'nhe': 2,
          'sort': 2,
          'nphoenix': 2,
          'someone': 2,
          'van': 2,
          'keeps': 2,
          'nvan': 2,
          'audience': 2,
          'trusts': 2,
          'screenplay': 2,
          'elfman': 2,
          'music': 2,
          'themes': 2,
          'r': 2,
          'brief': 1,
          'bleak': 1,
          'nfull': 1,
          'swipes': 1,
          'fifteen': 1,
          'minutes': 1,
          'mentality': 1,
          'feeds': 1,
          'much': 1,
          'modern': 1,
          'nso': 1,
          'prepared': 1,
          'watching': 1,
          'moving': 1,
          'interview': 1,
          'pam': 1,
          'teacher': 1,
          'engineering': 1,
          'death': 1,
          'back': 1,
          '1980s': 1,
          'diane': 1,
          'diamond': 1,
          'asked': 1,
          'nsmart': 1,
          'replied': 1,
          'came': 1,
          'vicious': 1,
          'tramp': 1,
          'publicity': 1,
          'generates': 1,
          'might': 1,
          'hurt': 1,
          'chances': 1,
          'latest': 1,
          'court': 1,
          'sentence': 1,
          'part': 1,
          'murder': 1,
          'nsmarts': 1,
          'got': 1,
          'nit': 1,
          'wouldnt': 1,
          'first': 1,
          'time': 1,
          'public': 1,
          'took': 1,
          'better': 1,
          'scripted': 1,
          'wellacted': 1,
          'absolute': 1,
          'truth': 1,
          'duller': 1,
          'far': 1,
          'less': 1,
          'artistic': 1,
          'nhowever': 1,
          'choice': 1,
          'mass': 1,
          'happening': 1,
          'definitely': 1,
          'opt': 1,
          'later': 1,
          'nreal': 1,
          'murderers': 1,
          'rarely': 1,
          'witty': 1,
          'written': 1,
          'pretty': 1,
          'alluring': 1,
          'match': 1,
          'cinematic': 1,
          'charms': 1,
          'begins': 1,
          'town': 1,
          'called': 1,
          'hope': 1,
          'archetypal': 1,
          'dry': 1,
          'intellectually': 1,
          'barren': 1,
          'suburb': 1,
          'concerns': 1,
          'ambitious': 1,
          'stone': 1,
          'tackles': 1,
          'long': 1,
          'ambition': 1,
          'nof': 1,
          'turns': 1,
          'dull': 1,
          'unambitious': 1,
          'larry': 1,
          'played': 1,
          'nbut': 1,
          'imagination': 1,
          'charm': 1,
          'raw': 1,
          'sex': 1,
          'rather': 1,
          'novel': 1,
          'approach': 1,
          'junior': 1,
          'achievement': 1,
          'heroine': 1,
          'overcome': 1,
          'naysayers': 1,
          'least': 1,
          'temporarily': 1,
          'triumphs': 1,
          'trashy': 1,
          'ni': 1,
          'never': 1,
          'fond': 1,
          'actress': 1,
          'shows': 1,
          'flair': 1,
          'picture': 1,
          'incredibly': 1,
          'shallow': 1,
          'femme': 1,
          'fatale': 1,
          'resonates': 1,
          'starmaking': 1,
          'sees': 1,
          'consciencedeprived': 1,
          'ultimate': 1,
          'career': 1,
          'driven': 1,
          'postfeminist': 1,
          'ubertemptress': 1,
          'hell': 1,
          'nshe': 1,
          'abetted': 1,
          'wonderfully': 1,
          'demented': 1,
          'unselfconsciously': 1,
          'way': 1,
          'nat': 1,
          'expounding': 1,
          'events': 1,
          'future': 1,
          'sisterinlaw': 1,
          'know': 1,
          'knowingly': 1,
          'exclaims': 1,
          'gorbachev': 1,
          'still': 1,
          'leader': 1,
          'russia': 1,
          'whatever': 1,
          'ugly': 1,
          'purplish': 1,
          'thing': 1,
          'removed': 1,
          'head': 1,
          'beams': 1,
          'profound': 1,
          'politics': 1,
          'proudly': 1,
          'proclaims': 1,
          'qualifies': 1,
          'next': 1,
          'barbara': 1,
          'walters': 1,
          'nthis': 1,
          'close': 1,
          'bashing': 1,
          'heaven': 1,
          'folks': 1,
          'standout': 1,
          'performance': 1,
          'delivered': 1,
          'joaquin': 1,
          'burned': 1,
          'teenager': 1,
          'becomes': 1,
          'addicted': 1,
          'sexual': 1,
          'favors': 1,
          'nkidmans': 1,
          'vapid': 1,
          'though': 1,
          'suave': 1,
          'beacon': 1,
          'success': 1,
          'lost': 1,
          'friends': 1,
          'russell': 1,
          'lydia': 1,
          'winningly': 1,
          'portrayed': 1,
          'casey': 1,
          'affleck': 1,
          'alison': 1,
          'folland': 1,
          'looks': 1,
          'embodiment': 1,
          'genx': 1,
          'slackerhood': 1,
          'envisioned': 1,
          'tabloid': 1,
          'nhis': 1,
          'dead': 1,
          'eyes': 1,
          'demeanor': 1,
          'kid': 1,
          'aint': 1,
          'going': 1,
          'anywhere': 1,
          'ever': 1,
          'reacts': 1,
          'sexy': 1,
          'obsessed': 1,
          'amazement': 1,
          'makes': 1,
          'us': 1,
          'believe': 1,
          'loser': 1,
          'willing': 1,
          'kill': 1,
          'actually': 1,
          'noticed': 1,
          'ngus': 1,
          'drugstore': 1,
          'cowboy': 1,
          'private': 1,
          'idaho': 1,
          'direction': 1,
          'firstrate': 1,
          'pacing': 1,
          'notquitethriller': 1,
          'snapping': 1,
          'along': 1,
          'rightly': 1,
          'focus': 1,
          'amoral': 1,
          'doesnt': 1,
          'stop': 1,
          'proselytize': 1,
          'rightness': 1,
          'wrongness': 1,
          'actions': 1,
          'material': 1,
          'get': 1,
          'without': 1,
          'stopping': 1,
          'explain': 1,
          'allamerican': 1,
          'absolutely': 1,
          'great': 1,
          'includes': 1,
          'bleakly': 1,
          'lines': 1,
          'ive': 1,
          'heard': 1,
          'nhenrys': 1,
          'blast': 1,
          'shallowness': 1,
          'mindlessness': 1,
          'yet': 1,
          'sharp': 1,
          'message': 1,
          'focusing': 1,
          'characters': 1,
          'nhenry': 1,
          'avoid': 1,
          'diluting': 1,
          'aiming': 1,
          'many': 1,
          'targets': 1,
          'result': 1,
          'crisp': 1,
          'miniclassic': 1,
          'ndanny': 1,
          'original': 1,
          'another': 1,
          'eccentric': 1,
          'loopy': 1,
          'strongly': 1,
          'echoes': 1,
          'edward': 1,
          'scissorhands': 1,
          'neither': 1,
          'make': 1,
          'background': 1,
          'halloween': 1,
          'trickortreat': 1,
          'parties': 1,
          'nallinall': 1,
          'production': 1,
          'well': 1,
          'worth': 1,
          'seven': 1,
          'bucks': 1,
          'columbia': 1,
          'pictures': 1,
          'release': 1,
          'directed': 1,
          'gus': 1,
          'nwritten': 1,
          'danny': 1,
          'starring': 1,
          'joachin': 1,
          'based': 1,
          'book': 1,
          'joyce': 1,
          'maynard': 1,
          'nrated': 1,
          'language': 1,
          'mature': 1,
          'respect': 1,
          '14s': 1,
          'rating': 1,
          'stars': 1,
          'npos': 1}),
 Counter({'ben': 8,
          'nature': 7,
          'something': 5,
          'sarah': 5,
          'make': 4,
          'forces': 4,
          'like': 3,
          'romantic': 3,
          'comedy': 3,
          'romance': 3,
          'part': 3,
          'nforces': 3,
          'man': 3,
          'happy': 3,
          'hughes': 3,
          'plot': 2,
          'taken': 2,
          'even': 2,
          'nthen': 2,
          'film': 2,
          'last': 2,
          'nben': 2,
          'bullock': 2,
          'seeing': 2,
          'never': 2,
          'start': 2,
          'character': 2,
          'nthe': 2,
          'may': 2,
          'bitter': 2,
          'taste': 2,
          'commitment': 2,
          'learning': 2,
          'script': 2,
          'ending': 2,
          'scenes': 2,
          'cant': 2,
          'relish': 1,
          'rare': 1,
          'opportunities': 1,
          'talented': 1,
          'screenwriter': 1,
          'feel': 1,
          'fool': 1,
          'ni': 1,
          'spent': 1,
          'first': 1,
          'hour': 1,
          'slowly': 1,
          'stewing': 1,
          'grim': 1,
          'attitude': 1,
          'towards': 1,
          'marriage': 1,
          'grousing': 1,
          'transparently': 1,
          'planes': 1,
          'trains': 1,
          'automobiles': 1,
          'machinations': 1,
          'waiting': 1,
          'inevitable': 1,
          'hollywood': 1,
          'denouement': 1,
          'nthis': 1,
          'mass': 1,
          'market': 1,
          'genre': 1,
          'teenagers': 1,
          'best': 1,
          'days': 1,
          'worked': 1,
          'hard': 1,
          'perpetuate': 1,
          'infatuation': 1,
          'paradigm': 1,
          'marc': 1,
          'lawrence': 1,
          'wonderful': 1,
          'made': 1,
          'entire': 1,
          'click': 1,
          'place': 1,
          'showed': 1,
          'comic': 1,
          'love': 1,
          'story': 1,
          'grownups': 1,
          'nit': 1,
          'certainly': 1,
          'didnt': 1,
          'look': 1,
          'way': 1,
          'outset': 1,
          'introduces': 1,
          'groomtobe': 1,
          'holmes': 1,
          'affleck': 1,
          'bachelor': 1,
          'party': 1,
          'surrounded': 1,
          'friends': 1,
          'family': 1,
          'whooping': 1,
          'night': 1,
          'freedom': 1,
          'loves': 1,
          'fiancee': 1,
          'bridget': 1,
          'maura': 1,
          'tierney': 1,
          'doomandgloom': 1,
          'pronouncements': 1,
          'everyone': 1,
          'around': 1,
          'questioning': 1,
          'meaning': 1,
          'till': 1,
          'death': 1,
          'business': 1,
          'illfated': 1,
          'flight': 1,
          'new': 1,
          'york': 1,
          'wedding': 1,
          'savannah': 1,
          'meets': 1,
          'lewis': 1,
          'sandra': 1,
          'freespirited': 1,
          'woman': 1,
          'string': 1,
          'failed': 1,
          'careers': 1,
          'relationships': 1,
          'behind': 1,
          'nas': 1,
          'transportation': 1,
          'troubles': 1,
          'thwart': 1,
          'every': 1,
          'turn': 1,
          'begin': 1,
          'threeday': 1,
          'southward': 1,
          'journey': 1,
          'connection': 1,
          'grows': 1,
          'ever': 1,
          'stronger': 1,
          'chances': 1,
          'hes': 1,
          'stability': 1,
          'shes': 1,
          'gets': 1,
          'solid': 1,
          'enough': 1,
          'setting': 1,
          'characters': 1,
          'situations': 1,
          'plenty': 1,
          'witty': 1,
          'dialogue': 1,
          'ideal': 1,
          'role': 1,
          'afflecks': 1,
          'easygoing': 1,
          'charm': 1,
          'plays': 1,
          'straightlaced': 1,
          'straight': 1,
          'without': 1,
          'forced': 1,
          'exasperation': 1,
          'nsandra': 1,
          'loose': 1,
          'appealing': 1,
          'halfdozen': 1,
          'films': 1,
          'combined': 1,
          'avoiding': 1,
          'recent': 1,
          'habit': 1,
          'playing': 1,
          'semblance': 1,
          'depth': 1,
          'moping': 1,
          'two': 1,
          'performances': 1,
          'great': 1,
          'toptobottom': 1,
          'cast': 1,
          'effective': 1,
          'connected': 1,
          'yet': 1,
          'scripts': 1,
          'apparent': 1,
          'sympathy': 1,
          'marital': 1,
          'horror': 1,
          'stories': 1,
          'hears': 1,
          'makes': 1,
          'difficult': 1,
          'enjoy': 1,
          'completely': 1,
          'nlively': 1,
          'funny': 1,
          'though': 1,
          'consistent': 1,
          'basis': 1,
          'leaves': 1,
          'feels': 1,
          'selfjustification': 1,
          'kicker': 1,
          'acidic': 1,
          'anecdotes': 1,
          'serve': 1,
          'exactly': 1,
          'opposite': 1,
          'purpose': 1,
          'leading': 1,
          'surprisingly': 1,
          'emotional': 1,
          'resolution': 1,
          'isnt': 1,
          'developing': 1,
          'fear': 1,
          'means': 1,
          '_to': 1,
          'him_': 1,
          'thought': 1,
          'nlawrences': 1,
          'feints': 1,
          'dodges': 1,
          'reaching': 1,
          'people': 1,
          'choices': 1,
          'sense': 1,
          'nearlier': 1,
          'might': 1,
          'felt': 1,
          'throwaways': 1,
          'take': 1,
          'resonance': 1,
          'sweetens': 1,
          'fresh': 1,
          'genuine': 1,
          'nthough': 1,
          'one': 1,
          'many': 1,
          'contrivances': 1,
          'keep': 1,
          'together': 1,
          'exchange': 1,
          'obligatory': 1,
          'mutual': 1,
          'analysis': 1,
          'bickering': 1,
          'screen': 1,
          'couples': 1,
          'wraps': 1,
          'perfectly': 1,
          'youll': 1,
          'end': 1,
          'remembering': 1,
          'humor': 1,
          'simple': 1,
          'wisdom': 1,
          'nthat': 1,
          'provided': 1,
          'youre': 1,
          'put': 1,
          'ridiculously': 1,
          'busy': 1,
          'direction': 1,
          'bronwen': 1,
          'nfor': 1,
          'brisk': 1,
          'comes': 1,
          'loaded': 1,
          'overdirected': 1,
          'year': 1,
          'teetering': 1,
          'handheld': 1,
          'shots': 1,
          'whynot': 1,
          'low': 1,
          'high': 1,
          'angles': 1,
          'sweeping': 1,
          'pans': 1,
          'noccasionally': 1,
          'hyperreal': 1,
          'approach': 1,
          'works': 1,
          'cinematographer': 1,
          'elliot': 1,
          'davis': 1,
          'creating': 1,
          'world': 1,
          'fantasy': 1,
          'far': 1,
          'often': 1,
          'refuses': 1,
          'let': 1,
          'scene': 1,
          'covering': 1,
          'flourishes': 1,
          'thick': 1,
          'almost': 1,
          'find': 1,
          'whats': 1,
          'underneath': 1,
          'na': 1,
          'smart': 1,
          'mature': 1,
          'deserved': 1,
          'restrained': 1,
          'director': 1,
          'excesses': 1,
          'spoil': 1,
          'unique': 1,
          'concoction': 1,
          'restore': 1,
          'faith': 1,
          'power': 1,
          'enchant': 1,
          'proved': 1,
          'wrong': 1,
          'expect': 1,
          'tale': 1,
          'adolescents': 1,
          'npos': 1}),
 Counter({'nuclear': 15,
          'film': 14,
          'war': 14,
          'nthe': 12,
          'failsafe': 11,
          'n': 8,
          'one': 6,
          'would': 6,
          'communism': 5,
          'u': 5,
          'bombers': 5,
          'groeteschele': 5,
          'even': 4,
          'cold': 4,
          'world': 4,
          'takes': 4,
          'soviet': 4,
          'moscow': 4,
          'president': 4,
          'films': 4,
          'weapons': 4,
          'groetescheles': 4,
          'central': 4,
          'drama': 3,
          'powerful': 3,
          'walter': 3,
          'novel': 3,
          'nin': 3,
          'lumets': 3,
          'united': 3,
          'states': 3,
          'na': 3,
          'plot': 3,
          'key': 3,
          'use': 3,
          'character': 3,
          'million': 3,
          'ngroeteschele': 3,
          'destroy': 3,
          'arms': 3,
          'race': 3,
          'often': 3,
          'people': 3,
          'leader': 3,
          'possible': 3,
          '1964': 2,
          'yet': 2,
          'proceed': 2,
          'intelligent': 2,
          'based': 2,
          'eugene': 2,
          'burdick': 2,
          'harvey': 2,
          'wheeler': 2,
          'sidney': 2,
          'doesnt': 2,
          'side': 2,
          'perhaps': 2,
          'real': 2,
          'costs': 2,
          'theme': 2,
          'released': 2,
          'issue': 2,
          'course': 2,
          'unidentified': 2,
          'aircraft': 2,
          'america': 2,
          'mechanical': 2,
          'orders': 2,
          'destroying': 2,
          'attempt': 2,
          'russias': 2,
          'story': 2,
          'quickly': 2,
          'fonda': 2,
          'may': 2,
          'simply': 2,
          'machines': 2,
          'make': 2,
          'situation': 2,
          'events': 2,
          'difference': 2,
          'several': 2,
          'times': 2,
          'slow': 2,
          'general': 2,
          'black': 2,
          'clearly': 2,
          'becomes': 2,
          'mass': 2,
          'nis': 2,
          'logical': 2,
          'providing': 2,
          'warns': 2,
          'also': 2,
          'makes': 2,
          'much': 2,
          'thought': 2,
          'far': 2,
          'nhe': 2,
          'say': 2,
          'soviets': 2,
          'must': 2,
          'seems': 2,
          'human': 2,
          'consequences': 2,
          'hagman': 2,
          'sensible': 2,
          'something': 2,
          'ending': 2,
          'hollywood': 2,
          'arming': 2,
          'dangerous': 2,
          'warning': 1,
          'review': 1,
          'contains': 1,
          'spoilers': 1,
          'nif': 1,
          'havent': 1,
          'seen': 1,
          'caution': 1,
          'nnutshell': 1,
          'relevant': 1,
          'suspenseful': 1,
          'nstill': 1,
          'today': 1,
          'end': 1,
          'usa': 1,
          '111': 1,
          'minutes': 1,
          'nscreenplay': 1,
          'bernstein': 1,
          'produced': 1,
          'max': 1,
          'e': 1,
          'youngstein': 1,
          'directed': 1,
          'lumet': 1,
          'nreview': 1,
          'jamahl': 1,
          'epsicokhan': 1,
          'ironic': 1,
          'aspect': 1,
          'winning': 1,
          'losing': 1,
          'confrontation': 1,
          'everybody': 1,
          'loses': 1,
          'aftereffects': 1,
          'devastating': 1,
          'effects': 1,
          'impact': 1,
          'entire': 1,
          'worldassuming': 1,
          'survives': 1,
          'ideaand': 1,
          'optionis': 1,
          'avoid': 1,
          'nthis': 1,
          'fictional': 1,
          'place': 1,
          'heart': 1,
          'actual': 1,
          'two': 1,
          'years': 1,
          'cuban': 1,
          'missile': 1,
          'crisis': 1,
          'union': 1,
          'static': 1,
          'discord': 1,
          'summarized': 1,
          'single': 1,
          'word': 1,
          'premise': 1,
          'centers': 1,
          'around': 1,
          'combination': 1,
          'accidents': 1,
          'operation': 1,
          'flaws': 1,
          'nfive': 1,
          'carrying': 1,
          'warheads': 1,
          'ordered': 1,
          'set': 1,
          'routine': 1,
          'spotted': 1,
          'heading': 1,
          'toward': 1,
          'turns': 1,
          'commercial': 1,
          'airliner': 1,
          'failure': 1,
          'strikes': 1,
          'military': 1,
          'base': 1,
          'commands': 1,
          'nsuddenly': 1,
          'contact': 1,
          'standing': 1,
          'remain': 1,
          'receiving': 1,
          'new': 1,
          'directives': 1,
          'bomber': 1,
          'pilots': 1,
          'recalled': 1,
          'intention': 1,
          'strike': 1,
          'great': 1,
          'deal': 1,
          'follows': 1,
          'various': 1,
          'characters': 1,
          'devise': 1,
          'ways': 1,
          'stopping': 1,
          'reaching': 1,
          'bordersat': 1,
          'cost': 1,
          'compelling': 1,
          'creates': 1,
          'urgency': 1,
          'dread': 1,
          'painting': 1,
          'grimmest': 1,
          'worst': 1,
          'case': 1,
          'scenarios': 1,
          'reality': 1,
          'sets': 1,
          'turn': 1,
          'another': 1,
          'fails': 1,
          'ngeneral': 1,
          'bogan': 1,
          'frank': 1,
          'overton': 1,
          'taking': 1,
          'directly': 1,
          'henry': 1,
          'powerlessthe': 1,
          'fate': 1,
          'lies': 1,
          'hands': 1,
          'automated': 1,
          'preprogrammed': 1,
          'system': 1,
          'stoppable': 1,
          'creators': 1,
          'efficient': 1,
          'task': 1,
          'nowin': 1,
          'winnable': 1,
          'fascinating': 1,
          'theyre': 1,
          'anything': 1,
          'predictable': 1,
          'reason': 1,
          'works': 1,
          'understands': 1,
          'exists': 1,
          'within': 1,
          'confines': 1,
          'ingredient': 1,
          'ability': 1,
          'create': 1,
          'ongoing': 1,
          'polemic': 1,
          'role': 1,
          'nmost': 1,
          'matthau': 1,
          'arrogant': 1,
          'civilian': 1,
          'theorist': 1,
          'incidentally': 1,
          'presidents': 1,
          'advising': 1,
          'staff': 1,
          'analyzing': 1,
          'statistical': 1,
          'plausibility': 1,
          'waging': 1,
          'nmany': 1,
          'pointed': 1,
          'messages': 1,
          'arise': 1,
          'discussions': 1,
          'voices': 1,
          'nearly': 1,
          'hosts': 1,
          'dinner': 1,
          'party': 1,
          'explains': 1,
          'importance': 1,
          'strategy': 1,
          'assault': 1,
          'minimize': 1,
          'casualties': 1,
          'whats': 1,
          '60': 1,
          '100': 1,
          'dead': 1,
          'guest': 1,
          'asks': 1,
          'impatiently': 1,
          'forty': 1,
          'responds': 1,
          'wryly': 1,
          'problem': 1,
          'mindset': 1,
          'believes': 1,
          'combat': 1,
          'viable': 1,
          'method': 1,
          'armageddon': 1,
          'conventional': 1,
          'warfare': 1,
          'raw': 1,
          'data': 1,
          'casualty': 1,
          'totals': 1,
          'realizes': 1,
          'nyet': 1,
          'answer': 1,
          'try': 1,
          'cool': 1,
          'dan': 1,
          'oherlihy': 1,
          'recommended': 1,
          'non': 1,
          'contraryaccording': 1,
          'lead': 1,
          'russia': 1,
          'put': 1,
          'disadvantage': 1,
          'nsuch': 1,
          'stance': 1,
          'paradox': 1,
          'misguided': 1,
          'practice': 1,
          'sees': 1,
          'issues': 1,
          'likewise': 1,
          'nwhy': 1,
          'continue': 1,
          'build': 1,
          'destruction': 1,
          'already': 1,
          'possessing': 1,
          'enough': 1,
          'wise': 1,
          'nno': 1,
          'really': 1,
          'nalthough': 1,
          'political': 1,
          'ramifications': 1,
          'scene': 1,
          'deals': 1,
          'intentionally': 1,
          'superficial': 1,
          'onesided': 1,
          'sort': 1,
          'way': 1,
          'nagain': 1,
          'achieved': 1,
          'easily': 1,
          'important': 1,
          'terms': 1,
          'largertheme': 1,
          'significance': 1,
          'addition': 1,
          'pronuclear': 1,
          'voice': 1,
          'remarks': 1,
          'communists': 1,
          'show': 1,
          'fear': 1,
          'resentment': 1,
          'period': 1,
          'prone': 1,
          'came': 1,
          'context': 1,
          'uses': 1,
          'suggests': 1,
          'hatred': 1,
          'glib': 1,
          'none': 1,
          'trains': 1,
          'ventures': 1,
          'fantasy': 1,
          'theoretical': 1,
          'prediction': 1,
          'merely': 1,
          'absurd': 1,
          'labels': 1,
          'average': 1,
          'marxist': 1,
          'unfeeling': 1,
          'calculating': 1,
          'machine': 1,
          'whatever': 1,
          'preserve': 1,
          'drops': 1,
          'warhead': 1,
          'instantly': 1,
          'surrender': 1,
          'retaliate': 1,
          'invite': 1,
          'countermeasures': 1,
          'home': 1,
          'soilwhich': 1,
          'preserved': 1,
          'forget': 1,
          'beings': 1,
          'emotions': 1,
          'reminds': 1,
          'attack': 1,
          'revengeas': 1,
          'normal': 1,
          'person': 1,
          'irony': 1,
          'theorizing': 1,
          'quick': 1,
          'judge': 1,
          'enemy': 1,
          'realize': 1,
          'seemingly': 1,
          'programmed': 1,
          'patterns': 1,
          'nonce': 1,
          'evident': 1,
          'turning': 1,
          'impossible': 1,
          'question': 1,
          'njust': 1,
          'unions': 1,
          'react': 1,
          'convey': 1,
          'best': 1,
          'intentions': 1,
          'pass': 1,
          'deaths': 1,
          'millions': 1,
          'mishap': 1,
          'nwith': 1,
          'help': 1,
          'translator': 1,
          'buck': 1,
          'larry': 1,
          'negotiates': 1,
          'length': 1,
          'scenes': 1,
          'prove': 1,
          'amazingly': 1,
          'taut': 1,
          'simplicity': 1,
          'long': 1,
          'frame': 1,
          'exchanging': 1,
          'dialog': 1,
          'nwithout': 1,
          'getting': 1,
          'detail': 1,
          'compromise': 1,
          'ultimately': 1,
          'reach': 1,
          'costly': 1,
          'necessary': 1,
          'circumstances': 1,
          'incident': 1,
          'probably': 1,
          'nit': 1,
          'accomplish': 1,
          'avoids': 1,
          'allout': 1,
          'isnt': 1,
          'alltooreal': 1,
          'ndramatically': 1,
          'quite': 1,
          'oherlihys': 1,
          'symbolic': 1,
          'matador': 1,
          'bookend': 1,
          'tying': 1,
          'dream': 1,
          'sequence': 1,
          'opening': 1,
          'particularly': 1,
          'appropriate': 1,
          'production': 1,
          'major': 1,
          'studio': 1,
          'columbia': 1,
          'pictures': 1,
          'structure': 1,
          'hightension': 1,
          'suspense': 1,
          'thriller': 1,
          'might': 1,
          'expect': 1,
          'nnevertheless': 1,
          'direction': 1,
          'bernsteins': 1,
          'adaptation': 1,
          'burdicks': 1,
          'wheelers': 1,
          'continues': 1,
          'lasting': 1,
          'effect': 1,
          'screen': 1,
          'unfolded': 1,
          'automation': 1,
          'holocaust': 1,
          'unintentional': 1,
          'consequence': 1,
          'nbut': 1,
          'conscious': 1,
          'choice': 1,
          'initialize': 1,
          'automatic': 1,
          'finds': 1,
          'retrospect': 1,
          'puzzling': 1,
          'exercises': 1,
          'futility': 1,
          'century': 1,
          'nits': 1,
          'fortunate': 1,
          'sides': 1,
          'finally': 1,
          'able': 1,
          'come': 1,
          'senses': 1,
          'rather': 1,
          'continuing': 1,
          'approach': 1,
          'speeding': 1,
          'causing': 1,
          'meltdown': 1,
          'npos': 1}),
 Counter({'like': 14,
          'musical': 13,
          'eva': 13,
          'film': 7,
          'musicals': 6,
          'good': 6,
          'evita': 5,
          'juan': 5,
          'show': 5,
          'death': 5,
          'even': 5,
          'singing': 5,
          'way': 4,
          'jesus': 4,
          'rise': 4,
          'back': 4,
          'woman': 4,
          'although': 4,
          'still': 4,
          'never': 4,
          'pretty': 4,
          'really': 4,
          'though': 4,
          'rice': 3,
          'well': 3,
          'superstar': 3,
          'fame': 3,
          'perspective': 3,
          'dead': 3,
          'comes': 3,
          'n': 3,
          'top': 3,
          'much': 3,
          'nation': 3,
          'many': 3,
          'sad': 3,
          'also': 3,
          'beginning': 3,
          'nbut': 3,
          'sequence': 3,
          'see': 3,
          'parker': 3,
          'could': 3,
          'performance': 3,
          'role': 3,
          'webbers': 2,
          'work': 2,
          'present': 2,
          'totally': 2,
          'unlike': 2,
          'time': 2,
          'nwebber': 2,
          'shows': 2,
          'nthey': 2,
          'instead': 2,
          'together': 2,
          'lyrics': 2,
          'nlike': 2,
          'christ': 2,
          'fall': 2,
          'days': 2,
          'tune': 2,
          'per': 2,
          'slept': 2,
          'madonna': 2,
          'think': 2,
          'things': 2,
          'jonathan': 2,
          'pryce': 2,
          'mourning': 2,
          'di': 2,
          'two': 2,
          'bit': 2,
          'wasnt': 2,
          'bizarre': 2,
          'point': 2,
          'expose': 2,
          'despite': 2,
          'almost': 2,
          'nthe': 2,
          'old': 2,
          'one': 2,
          'energy': 2,
          'line': 2,
          'letdown': 2,
          'bad': 2,
          'lifeless': 2,
          'singer': 2,
          'buenos': 2,
          'aires': 2,
          'screwed': 2,
          'another': 2,
          'character': 2,
          'soft': 2,
          'seeming': 2,
          'banderas': 2,
          'looks': 2,
          'cant': 2,
          'song': 2,
          'goodbye': 2,
          'thank': 2,
          'help': 2,
          'nfrom': 2,
          'original': 2,
          'nwe': 2,
          'come': 2,
          'cancer': 2,
          'scenes': 2,
          'scene': 2,
          'us': 2,
          'trying': 2,
          'government': 2,
          'people': 2,
          'narrator': 2,
          'ch': 2,
          'great': 2,
          'hes': 2,
          'brilliant': 2,
          'cry': 2,
          'feel': 2,
          'nhis': 2,
          'nand': 2,
          'poignant': 2,
          'shes': 2,
          'gets': 2,
          'presence': 2,
          'patti': 2,
          'nher': 2,
          'range': 2,
          'sounds': 2,
          'comanding': 2,
          'brief': 2,
          'rocky': 2,
          'andrew': 1,
          'lloyd': 1,
          'preferably': 1,
          'early': 1,
          'lyricist': 1,
          'tim': 1,
          'subscribe': 1,
          'gaity': 1,
          'oklahoma': 1,
          'slapstickness': 1,
          'funny': 1,
          'thing': 1,
          'happened': 1,
          'forum': 1,
          'tackle': 1,
          'hot': 1,
          'issues': 1,
          'past': 1,
          'view': 1,
          'differently': 1,
          'pack': 1,
          'redundant': 1,
          'catchy': 1,
          'music': 1,
          'thoughtful': 1,
          'examined': 1,
          'last': 1,
          'cool': 1,
          'judas': 1,
          'ask': 1,
          'didnt': 1,
          'spread': 1,
          'message': 1,
          'wider': 1,
          'takes': 1,
          'inventive': 1,
          'stance': 1,
          'topic': 1,
          'famed': 1,
          'wife': 1,
          'argentinian': 1,
          'dictator': 1,
          'became': 1,
          'famous': 1,
          'chiefly': 1,
          'got': 1,
          'attention': 1,
          'playing': 1,
          'talent': 1,
          'among': 1,
          'deals': 1,
          'captured': 1,
          'heart': 1,
          'marrying': 1,
          'died': 1,
          'young': 1,
          'age': 1,
          '33': 1,
          'creating': 1,
          'international': 1,
          'stir': 1,
          'princess': 1,
          'share': 1,
          'common': 1,
          'sure': 1,
          'chose': 1,
          'topics': 1,
          'always': 1,
          'nhere': 1,
          'wish': 1,
          'drawbacks': 1,
          'lying': 1,
          'covering': 1,
          'fascist': 1,
          'husband': 1,
          'fairly': 1,
          'intentions': 1,
          'nits': 1,
          'words': 1,
          'unsung': 1,
          'plays': 1,
          'rock': 1,
          'opera': 1,
          'giant': 1,
          'sequences': 1,
          'possess': 1,
          'intelligent': 1,
          'create': 1,
          'intellectually': 1,
          'enlightening': 1,
          'experience': 1,
          'entertaining': 1,
          'nafter': 1,
          'undermine': 1,
          'balance': 1,
          'intellectual': 1,
          'depth': 1,
          'walking': 1,
          'fine': 1,
          'stumbling': 1,
          'either': 1,
          'side': 1,
          'nthis': 1,
          'kind': 1,
          'nokay': 1,
          'nim': 1,
          'saying': 1,
          'opening': 1,
          'moments': 1,
          'theyre': 1,
          'unentertaining': 1,
          'unrewarding': 1,
          'cons': 1,
          'jimmy': 1,
          'nail': 1,
          'taking': 1,
          'onenight': 1,
          'stand': 1,
          'nin': 1,
          'fun': 1,
          'energetic': 1,
          'culiminating': 1,
          'stopper': 1,
          'nthen': 1,
          'punch': 1,
          'pulled': 1,
          'leaving': 1,
          'ends': 1,
          'suitcase': 1,
          'hall': 1,
          'meant': 1,
          'later': 1,
          'portrayal': 1,
          'oliver': 1,
          'stone': 1,
          'adapted': 1,
          'screen': 1,
          'afraid': 1,
          'narrated': 1,
          'hater': 1,
          'evas': 1,
          'omnipotent': 1,
          'antonio': 1,
          'presents': 1,
          'negative': 1,
          'light': 1,
          'nfor': 1,
          'alan': 1,
          'pull': 1,
          'nhowever': 1,
          'pulls': 1,
          'flash': 1,
          'giddily': 1,
          'nihilistic': 1,
          'go': 1,
          'long': 1,
          'lovers': 1,
          'ascend': 1,
          'magnificent': 1,
          'darkly': 1,
          'comical': 1,
          'gleeful': 1,
          'hypnotic': 1,
          'satisfying': 1,
          'satirical': 1,
          'nno': 1,
          'punches': 1,
          'thrown': 1,
          'basic': 1,
          'outline': 1,
          'tact': 1,
          'woo': 1,
          'marry': 1,
          'get': 1,
          'jail': 1,
          'stardom': 1,
          'falter': 1,
          'gradually': 1,
          'die': 1,
          'nmore': 1,
          'importantly': 1,
          'themes': 1,
          'carry': 1,
          'fillinginthegaps': 1,
          'reconnassaince': 1,
          'njuan': 1,
          'underwritten': 1,
          'given': 1,
          'extra': 1,
          'exposed': 1,
          'accessory': 1,
          'na': 1,
          'muted': 1,
          'tries': 1,
          'visit': 1,
          'respective': 1,
          'room': 1,
          'shunned': 1,
          'allows': 1,
          'learn': 1,
          'understand': 1,
          'sadness': 1,
          'number': 1,
          'cover': 1,
          'horrible': 1,
          'cheap': 1,
          'petty': 1,
          'wooed': 1,
          'saved': 1,
          'left': 1,
          'nations': 1,
          'downtrodden': 1,
          'loved': 1,
          'slipped': 1,
          'world': 1,
          'mourned': 1,
          'star': 1,
          'nthats': 1,
          'ndescribing': 1,
          'difficult': 1,
          'mainly': 1,
          'real': 1,
          'realistic': 1,
          'background': 1,
          'said': 1,
          'based': 1,
          'revolutionary': 1,
          'guevera': 1,
          'probably': 1,
          'met': 1,
          'serves': 1,
          'feeling': 1,
          'dies': 1,
          'pathetic': 1,
          'nalan': 1,
          'stranger': 1,
          'done': 1,
          'committments': 1,
          'bugsy': 1,
          'malone': 1,
          'pink': 1,
          'floyd': 1,
          'wall': 1,
          'latter': 1,
          'absolutely': 1,
          'nails': 1,
          'exposing': 1,
          'everything': 1,
          'end': 1,
          'presented': 1,
          'direction': 1,
          'manipulative': 1,
          'reason': 1,
          'throughout': 1,
          'lots': 1,
          'bright': 1,
          'colors': 1,
          'cinematically': 1,
          'entertaning': 1,
          'enriching': 1,
          'deep': 1,
          'balcony': 1,
          'sings': 1,
          'dont': 1,
          'argentina': 1,
          'becuase': 1,
          'nmadonnas': 1,
          'golden': 1,
          'globe': 1,
          'winning': 1,
          'movie': 1,
          'starts': 1,
          'kinda': 1,
          'downhill': 1,
          'goes': 1,
          'quickly': 1,
          'remaning': 1,
          'rest': 1,
          'nat': 1,
          'busy': 1,
          'concentrating': 1,
          'act': 1,
          'eventually': 1,
          'right': 1,
          'getting': 1,
          'say': 1,
          'lupone': 1,
          'american': 1,
          'premiere': 1,
          'late': 1,
          '70s': 1,
          'better': 1,
          'ni': 1,
          'know': 1,
          'took': 1,
          'lessons': 1,
          'improve': 1,
          'hard': 1,
          'nshe': 1,
          'several': 1,
          'places': 1,
          'nlupone': 1,
          'heard': 1,
          'sing': 1,
          'cd': 1,
          'stage': 1,
          'without': 1,
          'seeing': 1,
          'generally': 1,
          'brilliance': 1,
          'requires': 1,
          'nantonio': 1,
          'guilty': 1,
          'pleasure': 1,
          'im': 1,
          'thinks': 1,
          'rocks': 1,
          'extremely': 1,
          'presenting': 1,
          'lovable': 1,
          'nothing': 1,
          'compared': 1,
          'mandy': 1,
          'patinkin': 1,
          'nhe': 1,
          'voice': 1,
          'awesome': 1,
          'times': 1,
          'put': 1,
          'poker': 1,
          'face': 1,
          'melancholy': 1,
          'facade': 1,
          'nalthough': 1,
          'start': 1,
          'polite': 1,
          'soon': 1,
          'picks': 1,
          'becomes': 1,
          'wonderully': 1,
          'released': 1,
          '96': 1,
          'woody': 1,
          'allens': 1,
          'everyone': 1,
          'says': 1,
          'love': 1,
          'reminder': 1,
          'hollywood': 1,
          'may': 1,
          'every': 1,
          'npos': 1}),
 Counter({'quilt': 11,
          'american': 8,
          'make': 6,
          'nthe': 6,
          'nthere': 4,
          'story': 3,
          'gladys': 3,
          'hy': 3,
          'husband': 3,
          'whether': 3,
          'really': 3,
          'many': 3,
          'love': 3,
          'theres': 2,
          'stories': 2,
          'tales': 2,
          'seven': 2,
          'passion': 2,
          'woman': 2,
          'ann': 2,
          'bancroft': 2,
          'ellen': 2,
          'burstyn': 2,
          'sophia': 2,
          'emma': 2,
          'constance': 2,
          'kate': 2,
          'affair': 2,
          'maya': 2,
          'angelou': 2,
          'annas': 2,
          'winona': 2,
          'ryder': 2,
          'watching': 2,
          'fine': 2,
          'performances': 2,
          'cast': 2,
          'like': 2,
          'film': 2,
          'enough': 2,
          'reasons': 2,
          'emotional': 2,
          'feel': 2,
          'viewer': 2,
          'relationships': 2,
          'patches': 2,
          'fabric': 1,
          'threadeach': 1,
          'patchwork': 1,
          'design': 1,
          'unique': 1,
          'tell': 1,
          'nin': 1,
          'first': 1,
          'hollywood': 1,
          'release': 1,
          'australian': 1,
          'director': 1,
          'jocelyn': 1,
          'moorhouse': 1,
          'proof': 1,
          'come': 1,
          'understand': 1,
          'makers': 1,
          'imbue': 1,
          'creation': 1,
          'vitality': 1,
          'nall': 1,
          'sorrows': 1,
          'joys': 1,
          'longings': 1,
          'sufferings': 1,
          'loves': 1,
          'women': 1,
          'sewn': 1,
          'bittersweet': 1,
          'memories': 1,
          'given': 1,
          'expression': 1,
          'one': 1,
          'young': 1,
          'applies': 1,
          'lessons': 1,
          'past': 1,
          'uncertain': 1,
          'future': 1,
          'nmotion': 1,
          'pictures': 1,
          'filled': 1,
          'male': 1,
          'bonding': 1,
          'rituals': 1,
          'presents': 1,
          'distinctly': 1,
          'feminine': 1,
          'alternative': 1,
          'quilting': 1,
          'bee': 1,
          'consists': 1,
          'members': 1,
          'sisters': 1,
          'lois': 1,
          'smith': 1,
          'known': 1,
          'frightening': 1,
          'children': 1,
          'jean': 1,
          'simmons': 1,
          'timid': 1,
          'wife': 1,
          'perpetually': 1,
          'unfaithful': 1,
          'man': 1,
          'nelligan': 1,
          'emmas': 1,
          'anna': 1,
          'leader': 1,
          'group': 1,
          'marianna': 1,
          'alfre': 1,
          'woodard': 1,
          'daughter': 1,
          'project': 1,
          'theyre': 1,
          'busy': 1,
          'wedding': 1,
          'hys': 1,
          'granddaughter': 1,
          'finn': 1,
          'become': 1,
          'engaged': 1,
          'nshes': 1,
          'spending': 1,
          'summer': 1,
          'away': 1,
          'fiance': 1,
          'decide': 1,
          'lifelong': 1,
          'commitment': 1,
          'wants': 1,
          'better': 1,
          'marry': 1,
          'friend': 1,
          'lover': 1,
          'none': 1,
          'greatest': 1,
          'pleasures': 1,
          'comes': 1,
          'array': 1,
          'impressive': 1,
          'ensemble': 1,
          'nfrom': 1,
          'minor': 1,
          'players': 1,
          'rip': 1,
          'torn': 1,
          'claire': 1,
          'danes': 1,
          'capshaw': 1,
          'overflowing': 1,
          'realized': 1,
          'talent': 1,
          'good': 1,
          'fact': 1,
          'cover': 1,
          'scripts': 1,
          'weaknesses': 1,
          'nhow': 1,
          'basically': 1,
          'unremarkable': 1,
          'affecting': 1,
          'tale': 1,
          'across': 1,
          'generationsa': 1,
          'sort': 1,
          'truncated': 1,
          'version': 1,
          'joy': 1,
          'luck': 1,
          'club': 1,
          'dash': 1,
          'fried': 1,
          'green': 1,
          'tomatoes': 1,
          'added': 1,
          'probably': 1,
          'characters': 1,
          'nso': 1,
          'instead': 1,
          'getting': 1,
          'know': 1,
          'presented': 1,
          'quick': 1,
          'glimpses': 1,
          'single': 1,
          'defining': 1,
          'event': 1,
          'lives': 1,
          'nwe': 1,
          'learn': 1,
          'root': 1,
          'smoldering': 1,
          'resentment': 1,
          'told': 1,
          'stays': 1,
          'irascible': 1,
          'episodes': 1,
          'well': 1,
          'life': 1,
          'mariannas': 1,
          'soul': 1,
          'mate': 1,
          'look': 1,
          'entered': 1,
          'friends': 1,
          'sum': 1,
          'total': 1,
          'meant': 1,
          'provide': 1,
          'framework': 1,
          'finns': 1,
          'go': 1,
          'forward': 1,
          'marriage': 1,
          'dally': 1,
          'hunky': 1,
          'stranger': 1,
          'epiphany': 1,
          'welltold': 1,
          'difficult': 1,
          'connect': 1,
          'characterstheir': 1,
          'moments': 1,
          'pass': 1,
          'quickly': 1,
          'nwhile': 1,
          'certainly': 1,
          'something': 1,
          'eight': 1,
          'principals': 1,
          'investment': 1,
          'tenuous': 1,
          'isnt': 1,
          'depth': 1,
          'pull': 1,
          'way': 1,
          'personalities': 1,
          'half': 1,
          'formed': 1,
          'missing': 1,
          'nto': 1,
          'put': 1,
          'bluntly': 1,
          'enjoyed': 1,
          'didnt': 1,
          'much': 1,
          'non': 1,
          'whole': 1,
          'nicelyunderstated': 1,
          'drama': 1,
          'lot': 1,
          'say': 1,
          'monogamy': 1,
          'nfinns': 1,
          'segment': 1,
          'far': 1,
          'compelling': 1,
          'shes': 1,
          'focal': 1,
          'point': 1,
          'actions': 1,
          'shaped': 1,
          'everyone': 1,
          'elses': 1,
          'experiences': 1,
          'successful': 1,
          'varying': 1,
          'degrees': 1,
          'nif': 1,
          'disappointment': 1,
          'script': 1,
          'doesnt': 1,
          'resonance': 1,
          'privilege': 1,
          'seeing': 1,
          'top': 1,
          'form': 1,
          'allows': 1,
          'enjoy': 1,
          'picture': 1,
          'even': 1,
          'somewhat': 1,
          'conventional': 1,
          'npos': 1}),
 Counter({'clooney': 8,
          'kidman': 5,
          'leder': 4,
          'weapons': 4,
          'nthe': 3,
          'natural': 3,
          'would': 3,
          'best': 2,
          'save': 2,
          'way': 2,
          'moved': 2,
          'nthere': 2,
          'suspense': 2,
          'blockbuster': 2,
          'get': 2,
          'beginning': 2,
          'new': 2,
          'detail': 2,
          'story': 2,
          'ngeorge': 2,
          'nhe': 2,
          'nnicole': 2,
          'starts': 2,
          'nshe': 2,
          'us': 2,
          'nthen': 2,
          'action': 2,
          'real': 2,
          'mimi': 1,
          'probably': 1,
          'known': 1,
          'stunning': 1,
          'work': 1,
          'director': 1,
          'hit': 1,
          'tvshow': 1,
          'er': 1,
          'nher': 1,
          'mast': 1,
          'famous': 1,
          'episode': 1,
          'loves': 1,
          'labour': 1,
          'lost': 1,
          'dealt': 1,
          'ordeal': 1,
          'doctor': 1,
          'mark': 1,
          'greene': 1,
          'tried': 1,
          'life': 1,
          'pregnant': 1,
          'mother': 1,
          'child': 1,
          'camera': 1,
          'created': 1,
          'tension': 1,
          'throughout': 1,
          'every': 1,
          'scene': 1,
          'amazing': 1,
          'excitement': 1,
          'adrenaline': 1,
          'rushed': 1,
          'hollywoods': 1,
          'big': 1,
          'movies': 1,
          'nso': 1,
          'direct': 1,
          'hollywood': 1,
          'nand': 1,
          'say': 1,
          'shaky': 1,
          'disappoint': 1,
          'npeacemaker': 1,
          'deals': 1,
          'theft': 1,
          'nuclear': 1,
          'terrorists': 1,
          'obviously': 1,
          'nothing': 1,
          'first': 1,
          'half': 1,
          'hour': 1,
          'goes': 1,
          'much': 1,
          'stolen': 1,
          'ndespite': 1,
          'good': 1,
          'images': 1,
          'including': 1,
          'train': 1,
          'collision': 1,
          'impressive': 1,
          'explosion': 1,
          'none': 1,
          'coherent': 1,
          'nits': 1,
          'long': 1,
          'drawn': 1,
          'settled': 1,
          'implausible': 1,
          'along': 1,
          'better': 1,
          'nonce': 1,
          'george': 1,
          'nicole': 1,
          'enter': 1,
          'picture': 1,
          'begins': 1,
          'take': 1,
          'air': 1,
          'force': 1,
          'colonel': 1,
          'connections': 1,
          'world': 1,
          'nice': 1,
          'sarcastic': 1,
          'wit': 1,
          'rough': 1,
          'edges': 1,
          'expect': 1,
          'characters': 1,
          'head': 1,
          'white': 1,
          'house': 1,
          'team': 1,
          'smuggling': 1,
          'usual': 1,
          'flirtatious': 1,
          'banter': 1,
          'two': 1,
          'dispensed': 1,
          'quickly': 1,
          'takes': 1,
          'across': 1,
          'globe': 1,
          'trying': 1,
          'figure': 1,
          'going': 1,
          'ngoes': 1,
          'bouts': 1,
          'sarcasm': 1,
          'frustration': 1,
          'determination': 1,
          'revenge': 1,
          'works': 1,
          'insecurity': 1,
          'selfdoubt': 1,
          'nthis': 1,
          'show': 1,
          'true': 1,
          'stuff': 1,
          'nifty': 1,
          'little': 1,
          'car': 1,
          'chase': 1,
          'appetizer': 1,
          'heroics': 1,
          'helicopter': 1,
          'leads': 1,
          'brilliant': 1,
          'final': 1,
          'showdown': 1,
          'york': 1,
          'citys': 1,
          'crowded': 1,
          'streets': 1,
          'madman': 1,
          'nuke': 1,
          'walking': 1,
          'among': 1,
          'nmimi': 1,
          'creating': 1,
          'reminds': 1,
          'wolfgang': 1,
          'petersen': 1,
          'ability': 1,
          'make': 1,
          'routine': 1,
          'sequences': 1,
          'exciting': 1,
          'breathtaking': 1,
          'intelligent': 1,
          'female': 1,
          'hero': 1,
          'nyoure': 1,
          'gon': 1,
          'na': 1,
          'find': 1,
          'falling': 1,
          'come': 1,
          'back': 1,
          'movie': 1,
          'star': 1,
          'nmany': 1,
          'may': 1,
          'hated': 1,
          'batman': 1,
          'guy': 1,
          'screen': 1,
          'presence': 1,
          'ingratiating': 1,
          'personality': 1,
          'nhell': 1,
          'around': 1,
          'ndreamworks': 1,
          'satisfying': 1,
          'start': 1,
          'peacemaker': 1,
          'npos': 1}),
 Counter({'planet': 7,
          'apes': 7,
          'burtons': 6,
          'original': 6,
          'ape': 6,
          'humans': 5,
          'one': 4,
          'movie': 4,
          'nhe': 4,
          'nthe': 4,
          'film': 3,
          'davidson': 3,
          'human': 3,
          'chimp': 3,
          'say': 2,
          'monkey': 2,
          'though': 2,
          'summer': 2,
          'outing': 2,
          'filled': 2,
          'action': 2,
          'know': 2,
          'version': 2,
          'movies': 2,
          'burton': 2,
          'parents': 2,
          'girl': 2,
          'young': 2,
          'get': 2,
          'rid': 2,
          'thing': 2,
          'dont': 2,
          'says': 2,
          'throughout': 2,
          'first': 2,
          'words': 2,
          'father': 2,
          'thade': 2,
          'goes': 2,
          'dying': 2,
          'damn': 2,
          'wants': 2,
          'nthis': 2,
          'fine': 2,
          'limbo': 2,
          'rick': 2,
          'comes': 2,
          'ntim': 1,
          'retelling': 1,
          'fun': 1,
          'barrel': 1,
          'monkeys': 1,
          'nok': 1,
          'thats': 1,
          'chest': 1,
          'nno': 1,
          'puns': 1,
          'promise': 1,
          'nseriously': 1,
          'riproarin': 1,
          'thrills': 1,
          'adventure': 1,
          'wit': 1,
          'bits': 1,
          'funny': 1,
          'dare': 1,
          'business': 1,
          'ni': 1,
          'promised': 1,
          'nand': 1,
          'buffs': 1,
          'fond': 1,
          'includes': 1,
          'couple': 1,
          'tips': 1,
          'hat': 1,
          'nmark': 1,
          'wahlberg': 1,
          'stars': 1,
          'capt': 1,
          'leo': 1,
          'deepspace': 1,
          'pilot': 1,
          'whose': 1,
          'ship': 1,
          'gets': 1,
          'drawn': 1,
          'magnetic': 1,
          'field': 1,
          'hurled': 1,
          'future': 1,
          'crash': 1,
          'lands': 1,
          'dominant': 1,
          'species': 1,
          'hunted': 1,
          'captured': 1,
          'sold': 1,
          'slavery': 1,
          'ndespite': 1,
          'darker': 1,
          'heavy': 1,
          'handed': 1,
          'sanctimonious': 1,
          'nsome': 1,
          'flashes': 1,
          'humor': 1,
          'surreal': 1,
          'well': 1,
          'typically': 1,
          'organgrinder': 1,
          'midget': 1,
          'elderly': 1,
          'taking': 1,
          'wig': 1,
          'removing': 1,
          'false': 1,
          'teeth': 1,
          'prepares': 1,
          'bed': 1,
          'nthen': 1,
          'buy': 1,
          'little': 1,
          'pet': 1,
          'daughter': 1,
          'seller': 1,
          'advises': 1,
          'reaches': 1,
          'puberty': 1,
          'want': 1,
          'house': 1,
          'teenager': 1,
          'nyou': 1,
          'realize': 1,
          'truth': 1,
          'statement': 1,
          'ntouches': 1,
          'stamps': 1,
          'brand': 1,
          'nlines': 1,
          'hearken': 1,
          'back': 1,
          'sprinkled': 1,
          'spoken': 1,
          'astronaut': 1,
          'regaining': 1,
          'consciousness': 1,
          'grabs': 1,
          'simians': 1,
          'foot': 1,
          'try': 1,
          'righting': 1,
          'take': 1,
          'stinking': 1,
          'hand': 1,
          'damned': 1,
          'dirty': 1,
          'nanyone': 1,
          'familiar': 1,
          'course': 1,
          'recognize': 1,
          'irony': 1,
          'piece': 1,
          'dialogue': 1,
          'nanother': 1,
          'injokes': 1,
          'charlton': 1,
          'heston': 1,
          'star': 1,
          'play': 1,
          'chimpanzee': 1,
          'tim': 1,
          'roths': 1,
          'gen': 1,
          'visit': 1,
          'nboth': 1,
          'common': 1,
          'hatred': 1,
          'nwith': 1,
          'breath': 1,
          'elder': 1,
          'spews': 1,
          'vile': 1,
          'hell': 1,
          'expiring': 1,
          'nthat': 1,
          'famous': 1,
          'line': 1,
          'hestons': 1,
          'taylor': 1,
          'shouted': 1,
          'conclusion': 1,
          'discovering': 1,
          'planets': 1,
          'terrible': 1,
          'secret': 1,
          'performances': 1,
          'topnotch': 1,
          'nwahlberg': 1,
          'plays': 1,
          'gungho': 1,
          'hero': 1,
          'confused': 1,
          'somewhat': 1,
          'frightened': 1,
          'explorer': 1,
          'return': 1,
          'home': 1,
          'reluctant': 1,
          'lead': 1,
          'rebellion': 1,
          'objective': 1,
          'find': 1,
          'way': 1,
          'upsidedown': 1,
          'hesitation': 1,
          'makes': 1,
          'character': 1,
          'believable': 1,
          'vulnerable': 1,
          'nroth': 1,
          'ferocious': 1,
          'cunning': 1,
          'cruel': 1,
          'savage': 1,
          'fascist': 1,
          'vestiges': 1,
          'humanity': 1,
          'leaps': 1,
          'bounds': 1,
          'springs': 1,
          'feet': 1,
          'nit': 1,
          'masterful': 1,
          'turn': 1,
          'nhelena': 1,
          'bonham': 1,
          'carter': 1,
          'ari': 1,
          'believes': 1,
          'live': 1,
          'peace': 1,
          'equals': 1,
          'nhers': 1,
          'smart': 1,
          'compassionate': 1,
          'characterization': 1,
          'nmichael': 1,
          'clarke': 1,
          'duncan': 1,
          'big': 1,
          'brutal': 1,
          'attar': 1,
          'gorilla': 1,
          'aid': 1,
          'blindly': 1,
          'follows': 1,
          'leader': 1,
          'faith': 1,
          'shaken': 1,
          'na': 1,
          'comic': 1,
          'given': 1,
          'paul': 1,
          'giamatti': 1,
          'slave': 1,
          'trader': 1,
          'making': 1,
          'living': 1,
          'misery': 1,
          'captures': 1,
          'nas': 1,
          'battle': 1,
          'looms': 1,
          'cowardly': 1,
          'pleads': 1,
          'cant': 1,
          'along': 1,
          'echoing': 1,
          'rodney': 1,
          'king': 1,
          'nmuch': 1,
          'success': 1,
          'technical': 1,
          'crew': 1,
          'especially': 1,
          'production': 1,
          'designer': 1,
          'heinrichs': 1,
          'legendary': 1,
          'baker': 1,
          'created': 1,
          'makeup': 1,
          'nburtons': 1,
          'musical': 1,
          'collaborator': 1,
          'danny': 1,
          'elfman': 1,
          'provides': 1,
          'another': 1,
          'score': 1,
          'memorable': 1,
          'work': 1,
          'batman': 1,
          'sleepy': 1,
          'hollow': 1,
          'letdown': 1,
          'end': 1,
          'tries': 1,
          'outshock': 1,
          'finale': 1,
          '1968': 1,
          'close': 1,
          'falls': 1,
          'short': 1,
          'notherwise': 1,
          'amusement': 1,
          'park': 1,
          'ride': 1,
          'lots': 1,
          'stunts': 1,
          'laughs': 1,
          'feature': 1,
          'expectations': 1,
          'lived': 1,
          'prerelease': 1,
          'hype': 1,
          'npos': 1}),
 Counter({'legend': 5,
          'urban': 4,
          'one': 4,
          'credit': 4,
          'films': 3,
          'turns': 3,
          'movies': 3,
          'though': 3,
          'problem': 3,
          'nand': 3,
          'last': 2,
          'genre': 2,
          'scream': 2,
          'premise': 2,
          'become': 2,
          'entertainment': 2,
          'year': 2,
          'maniac': 2,
          'film': 2,
          'whodunit': 2,
          'didnt': 2,
          'suspect': 2,
          'really': 2,
          'nit': 2,
          'nthe': 2,
          'leto': 2,
          'could': 2,
          'ni': 2,
          'killer': 2,
          'much': 2,
          'na': 2,
          'deserted': 2,
          'gas': 2,
          'stop': 2,
          'station': 2,
          'none': 2,
          'attendant': 2,
          'car': 2,
          'looking': 2,
          'trying': 2,
          'surprised': 1,
          'nbased': 1,
          'produced': 1,
          'including': 1,
          'exclusive': 1,
          'likes': 1,
          'know': 1,
          'summer': 1,
          'disturbing': 1,
          'behavior': 1,
          'disappointing': 1,
          'halloween': 1,
          'h20': 1,
          'positive': 1,
          'store': 1,
          'another': 1,
          'mildly': 1,
          'entertaining': 1,
          'silly': 1,
          'ultimately': 1,
          'boring': 1,
          'rehash': 1,
          'phenomena': 1,
          'nthankfully': 1,
          'rose': 1,
          'soggy': 1,
          'hip': 1,
          'scary': 1,
          'stylish': 1,
          'also': 1,
          'probably': 1,
          'best': 1,
          'nyoure': 1,
          'familiar': 1,
          'plot': 1,
          'bunch': 1,
          'overly': 1,
          'horny': 1,
          'teenagers': 1,
          'get': 1,
          'systematically': 1,
          'slaughtered': 1,
          'masked': 1,
          'whos': 1,
          'identity': 1,
          'revealed': 1,
          'closing': 1,
          'moments': 1,
          'guessed': 1,
          'everybodys': 1,
          'favorite': 1,
          'veteran': 1,
          'flicks': 1,
          'nonly': 1,
          'person': 1,
          'nhowever': 1,
          'doesnt': 1,
          'break': 1,
          'new': 1,
          'ground': 1,
          'far': 1,
          'literary': 1,
          'even': 1,
          'technical': 1,
          'achievements': 1,
          'go': 1,
          'mean': 1,
          'cant': 1,
          'qualify': 1,
          'firstclass': 1,
          'believe': 1,
          'funnest': 1,
          'times': 1,
          'ive': 1,
          'thing': 1,
          'im': 1,
          'sure': 1,
          'made': 1,
          'particular': 1,
          'stab': 1,
          'pardon': 1,
          'pun': 1,
          'seem': 1,
          'fresh': 1,
          'alive': 1,
          'nmaybe': 1,
          'abovepar': 1,
          'performances': 1,
          'two': 1,
          'leads': 1,
          'jared': 1,
          'cybil': 1,
          'actress': 1,
          'alicia': 1,
          'witt': 1,
          'target': 1,
          'direction': 1,
          'jamie': 1,
          'blanks': 1,
          'nmore': 1,
          'likely': 1,
          'inspired': 1,
          'dont': 1,
          'think': 1,
          'need': 1,
          'tell': 1,
          'hacking': 1,
          'people': 1,
          'ala': 1,
          'folklore': 1,
          'frightening': 1,
          'fisherman': 1,
          'nurban': 1,
          'begins': 1,
          'sequence': 1,
          'reminded': 1,
          'classic': 1,
          'opener': 1,
          'plotting': 1,
          'attention': 1,
          'detail': 1,
          'makes': 1,
          'absolutely': 1,
          'chilling': 1,
          'teaser': 1,
          'rest': 1,
          'pretty': 1,
          'young': 1,
          'coed': 1,
          'driving': 1,
          'road': 1,
          'gasp': 1,
          'heehee': 1,
          'forces': 1,
          'equally': 1,
          'refill': 1,
          'nwould': 1,
          'want': 1,
          'run': 1,
          'brad': 1,
          'dourif': 1,
          'thought': 1,
          'npredictably': 1,
          'ends': 1,
          'coaxing': 1,
          'main': 1,
          'building': 1,
          'sort': 1,
          'card': 1,
          'company': 1,
          'nits': 1,
          'odd': 1,
          'pick': 1,
          'phone': 1,
          'realize': 1,
          'nobodys': 1,
          'line': 1,
          'nnaturally': 1,
          'potential': 1,
          'victim': 1,
          'escapes': 1,
          'drives': 1,
          'least': 1,
          'expect': 1,
          'whack': 1,
          'decapitation': 1,
          'creepy': 1,
          'warn': 1,
          'back': 1,
          'seat': 1,
          'nso': 1,
          'time': 1,
          'obvious': 1,
          'candidate': 1,
          'slightly': 1,
          'offkilter': 1,
          'professor': 1,
          'college': 1,
          'girl': 1,
          'went': 1,
          'freddy': 1,
          'kruger': 1,
          'robert': 1,
          'englund': 1,
          'teaches': 1,
          'class': 1,
          'legends': 1,
          'naha': 1,
          'famehungry': 1,
          'local': 1,
          'journalist': 1,
          'meaty': 1,
          'story': 1,
          'put': 1,
          'resume': 1,
          'nlike': 1,
          'nature': 1,
          'chief': 1,
          'pleasures': 1,
          'guess': 1,
          'course': 1,
          'nim': 1,
          'going': 1,
          'pretend': 1,
          'anything': 1,
          'must': 1,
          'give': 1,
          'due': 1,
          'flick': 1,
          'definitely': 1,
          'deserves': 1,
          'many': 1,
          'recent': 1,
          'horror': 1,
          'fun': 1,
          'n': 1,
          'complimentary': 1,
          'movie': 1,
          'ticket': 1,
          'courtesy': 1,
          'valley': 1,
          'cinemas': 1,
          'lodi': 1,
          'ca': 1,
          'npos': 1}),
 Counter({'family': 13,
          'indian': 7,
          'wedding': 4,
          'film': 4,
          '4': 4,
          'films': 4,
          'like': 4,
          'nthe': 3,
          'us': 3,
          'verma': 2,
          'multiday': 2,
          'nmira': 2,
          'secrets': 2,
          'seen': 2,
          'low': 2,
          '2': 2,
          'nair': 2,
          'previously': 2,
          'much': 2,
          'neven': 2,
          'together': 2,
          'several': 2,
          'members': 2,
          'father': 2,
          'least': 2,
          'dubey': 2,
          'scale': 2,
          'capsule': 1,
          'relatives': 1,
          'come': 1,
          'festivities': 1,
          'nairs': 1,
          'pleasant': 1,
          'enough': 1,
          'little': 1,
          'human': 1,
          'drama': 1,
          'sadness': 1,
          'happiness': 1,
          'nyou': 1,
          'perhaps': 1,
          'india': 1,
          'photography': 1,
          'colorful': 1,
          'music': 1,
          'agreeable': 1,
          'n': 1,
          'directed': 1,
          'salaam': 1,
          'bombay': 1,
          'mississippi': 1,
          'masala': 1,
          'nher': 1,
          'newest': 1,
          'written': 1,
          'sabrina': 1,
          'dhawan': 1,
          'similar': 1,
          'previous': 1,
          'betsys': 1,
          'set': 1,
          'new': 1,
          'delhi': 1,
          'na': 1,
          'wealthy': 1,
          'nan': 1,
          'affair': 1,
          'reunion': 1,
          'nuptial': 1,
          'excuse': 1,
          'lavish': 1,
          'extravagant': 1,
          'gettogether': 1,
          'shows': 1,
          'time': 1,
          'follows': 1,
          'individual': 1,
          'story': 1,
          'lines': 1,
          'naditi': 1,
          'marrying': 1,
          'hemant': 1,
          'engineer': 1,
          'working': 1,
          'nshe': 1,
          'relationship': 1,
          'vikram': 1,
          'supervisor': 1,
          'nlatit': 1,
          'played': 1,
          'naseeruddin': 1,
          'shah': 1,
          'juggling': 1,
          'many': 1,
          'problems': 1,
          'worrying': 1,
          'caterer': 1,
          'hired': 1,
          'pk': 1,
          'ndubey': 1,
          'rather': 1,
          'eccentric': 1,
          'man': 1,
          'taste': 1,
          'eating': 1,
          'marigolds': 1,
          'uses': 1,
          'decoration': 1,
          'soon': 1,
          'romantically': 1,
          'entangled': 1,
          'becomes': 1,
          'interested': 1,
          'alice': 1,
          'one': 1,
          'servants': 1,
          'nseveral': 1,
          'arrive': 1,
          'giving': 1,
          'rise': 1,
          'plotlines': 1,
          'involving': 1,
          'sex': 1,
          'nthere': 1,
          'heartbreaks': 1,
          'people': 1,
          'falling': 1,
          'love': 1,
          'nsome': 1,
          'subjects': 1,
          'covered': 1,
          'probably': 1,
          'near': 1,
          'taboo': 1,
          'nwestern': 1,
          'audiences': 1,
          'appreciate': 1,
          'look': 1,
          'unfamiliar': 1,
          'customs': 1,
          'women': 1,
          'painting': 1,
          'hands': 1,
          'henna': 1,
          'non': 1,
          'hand': 1,
          'clear': 1,
          'scenes': 1,
          'singing': 1,
          'typical': 1,
          'culture': 1,
          'convention': 1,
          'musical': 1,
          'nthis': 1,
          'seems': 1,
          'particularly': 1,
          'westernized': 1,
          'wearing': 1,
          'american': 1,
          'designer': 1,
          'sweaters': 1,
          'speaking': 1,
          'mostly': 1,
          'english': 1,
          'latter': 1,
          'however': 1,
          'help': 1,
          'international': 1,
          'release': 1,
          'nsabrina': 1,
          'dhawans': 1,
          'screenplay': 1,
          'vibrant': 1,
          'witty': 1,
          'dialog': 1,
          'nwe': 1,
          'plotting': 1,
          'setting': 1,
          'makes': 1,
          'great': 1,
          'deal': 1,
          'difference': 1,
          'ndirector': 1,
          'mira': 1,
          'calls': 1,
          'affirmation': 1,
          'life': 1,
          'ni': 1,
          'rate': 1,
          '7': 1,
          '0': 1,
          '10': 1,
          'npos': 1}),
 Counter({'family': 6,
          'love': 4,
          'one': 4,
          'beautiful': 4,
          'life': 3,
          'benigni': 3,
          'nlife': 3,
          'guido': 3,
          'dora': 3,
          'movie': 3,
          'strongest': 2,
          'roberto': 2,
          'son': 2,
          'times': 2,
          'italy': 2,
          'named': 2,
          'nalthough': 2,
          'manages': 2,
          'instead': 2,
          'movies': 2,
          'becomes': 2,
          'truly': 2,
          'nin': 2,
          'certain': 2,
          'fine': 2,
          'film': 2,
          'see': 2,
          'picture': 2,
          'artsy': 2,
          'driving': 1,
          'forces': 1,
          'mans': 1,
          'especially': 1,
          'fostered': 1,
          'precarious': 1,
          'circumstances': 1,
          'nthematically': 1,
          'cinema': 1,
          'used': 1,
          'frequently': 1,
          'emphatically': 1,
          'highlight': 1,
          'abstract': 1,
          'aspects': 1,
          'characters': 1,
          'rare': 1,
          'however': 1,
          'develop': 1,
          'outstandingly': 1,
          'benignis': 1,
          'neoclassic': 1,
          'drama': 1,
          'nthrough': 1,
          'central': 1,
          'cast': 1,
          'father': 1,
          'mother': 1,
          'demonstrates': 1,
          'wonderful': 1,
          'undying': 1,
          'shares': 1,
          'best': 1,
          'worst': 1,
          'orefice': 1,
          'directing': 1,
          'sixth': 1,
          'time': 1,
          'career': 1,
          'italian': 1,
          'jew': 1,
          'master': 1,
          'con': 1,
          'man': 1,
          'aspiring': 1,
          'waiter': 1,
          'extraordinaire': 1,
          'nliving': 1,
          '1930s': 1,
          'lives': 1,
          'carefree': 1,
          'good': 1,
          'fortune': 1,
          'made': 1,
          'even': 1,
          'better': 1,
          'happens': 1,
          'upon': 1,
          'pretty': 1,
          'schoolteacher': 1,
          'nicoletta': 1,
          'braschi': 1,
          'already': 1,
          'engaged': 1,
          'sweep': 1,
          'feet': 1,
          'persuades': 1,
          'marry': 1,
          'two': 1,
          'child': 1,
          'joshua': 1,
          'giorgio': 1,
          'cantarini': 1,
          'nunfortunately': 1,
          'happy': 1,
          'third': 1,
          'reich': 1,
          'nazi': 1,
          'minions': 1,
          'occupy': 1,
          'imprison': 1,
          'jews': 1,
          'work': 1,
          'camps': 1,
          'nit': 1,
          'takes': 1,
          'dramatic': 1,
          'turn': 1,
          'theme': 1,
          'prior': 1,
          'turning': 1,
          'point': 1,
          'plays': 1,
          'sort': 1,
          'goofy': 1,
          'charm': 1,
          'relaxes': 1,
          'role': 1,
          'ensure': 1,
          'sons': 1,
          'happiness': 1,
          'nnow': 1,
          'awkwardly': 1,
          'seducing': 1,
          'sweet': 1,
          'constantly': 1,
          'reassures': 1,
          'everything': 1,
          'right': 1,
          'nbenignis': 1,
          'performance': 1,
          'wellrounded': 1,
          'certainly': 1,
          'fluid': 1,
          'turns': 1,
          'year': 1,
          'nthe': 1,
          'supports': 1,
          'strong': 1,
          'well': 1,
          'excels': 1,
          'script': 1,
          'selfproclaimed': 1,
          'fable': 1,
          'tells': 1,
          'story': 1,
          'grand': 1,
          'twopart': 1,
          'fashion': 1,
          'parts': 1,
          'sink': 1,
          'level': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'spinoff': 1,
          'number': 1,
          'humorous': 1,
          'skits': 1,
          'connected': 1,
          'token': 1,
          'plot': 1,
          'second': 1,
          'half': 1,
          'scripts': 1,
          'circular': 1,
          'nature': 1,
          'admirably': 1,
          'obvious': 1,
          'ncharacters': 1,
          'make': 1,
          'reprise': 1,
          'appearances': 1,
          'form': 1,
          'events': 1,
          'intially': 1,
          'curious': 1,
          'become': 1,
          'critically': 1,
          'linked': 1,
          'plots': 1,
          'outcome': 1,
          'fans': 1,
          'foreign': 1,
          'memorable': 1,
          'motion': 1,
          'novice': 1,
          'moviewatchers': 1,
          'may': 1,
          'take': 1,
          'opportunity': 1,
          'first': 1,
          'convention': 1,
          'easily': 1,
          'accessible': 1,
          'everyone': 1,
          'thematic': 1,
          'npos': 1}),
 Counter({'rushmore': 3,
          'schwartzman': 3,
          'film': 3,
          'plays': 3,
          'blume': 3,
          'murray': 3,
          'isnt': 3,
          'role': 2,
          'max': 2,
          'young': 2,
          'student': 2,
          'perfect': 2,
          'even': 2,
          'cross': 2,
          'honour': 2,
          'everyone': 2,
          'well': 2,
          'one': 2,
          'yet': 2,
          'seen': 2,
          'given': 2,
          'still': 2,
          'watching': 1,
          'wes': 1,
          'andersons': 1,
          'may': 1,
          'surprising': 1,
          'think': 1,
          'fischer': 1,
          'films': 1,
          'antihero': 1,
          'written': 1,
          'jason': 1,
          'mind': 1,
          'nthe': 1,
          'actor': 1,
          'making': 1,
          'debut': 1,
          '15': 1,
          'year': 1,
          'old': 1,
          'exclusive': 1,
          'academy': 1,
          'comes': 1,
          'shock': 1,
          'anderson': 1,
          'auditioned': 1,
          'two': 1,
          'thousand': 1,
          'prospective': 1,
          'stars': 1,
          'discovering': 1,
          'schwarztman': 1,
          'nschwartzman': 1,
          'interested': 1,
          'extracurricular': 1,
          'activities': 1,
          'writing': 1,
          'edgy': 1,
          'like': 1,
          'serpico': 1,
          'president': 1,
          'beekeepers': 1,
          'sees': 1,
          'grades': 1,
          'suffer': 1,
          'result': 1,
          'non': 1,
          'brink': 1,
          'thrown': 1,
          'lands': 1,
          'hot': 1,
          'water': 1,
          'falls': 1,
          'first': 1,
          'grade': 1,
          'teacher': 1,
          'rosemary': 1,
          'olivia': 1,
          'williams': 1,
          'enlists': 1,
          'help': 1,
          'millionaire': 1,
          'acquaintance': 1,
          'herman': 1,
          'great': 1,
          'bill': 1,
          'build': 1,
          'aquarium': 1,
          'rushmores': 1,
          'baseball': 1,
          'field': 1,
          'nunfortunately': 1,
          'involved': 1,
          'finds': 1,
          'feelings': 1,
          'miss': 1,
          'gets': 1,
          'way': 1,
          'maxs': 1,
          'plans': 1,
          'woo': 1,
          'nmax': 1,
          'bestwritten': 1,
          'characters': 1,
          'weve': 1,
          '90s': 1,
          'perfection': 1,
          'finest': 1,
          'comedy': 1,
          'performances': 1,
          'ever': 1,
          'someone': 1,
          'age': 1,
          'nas': 1,
          'else': 1,
          'probably': 1,
          'already': 1,
          'pointed': 1,
          'reminiscent': 1,
          'dustin': 1,
          'hoffman': 1,
          'although': 1,
          'reminded': 1,
          'paul': 1,
          'wonder': 1,
          'years': 1,
          'visual': 1,
          'standpoint': 1,
          'least': 1,
          'nhopefully': 1,
          'avoids': 1,
          'typecasting': 1,
          'weird': 1,
          'quirky': 1,
          'lonertypes': 1,
          'earn': 1,
          'good': 1,
          'career': 1,
          'nbill': 1,
          'equal': 1,
          'displaying': 1,
          'depth': 1,
          'havent': 1,
          'nwhile': 1,
          'best': 1,
          'performance': 1,
          'goes': 1,
          'groundhog': 1,
          'day': 1,
          'terrific': 1,
          'nwilliams': 1,
          'much': 1,
          'except': 1,
          'react': 1,
          'fine': 1,
          'work': 1,
          'nrushmore': 1,
          'seems': 1,
          'go': 1,
          'little': 1,
          'long': 1,
          'definate': 1,
          'mustsee': 1,
          'anyone': 1,
          'wants': 1,
          'see': 1,
          'rarity': 1,
          'american': 1,
          'comingofage': 1,
          'actually': 1,
          'works': 1,
          'without': 1,
          'excessive': 1,
          'amount': 1,
          'sentimentality': 1,
          'nanderson': 1,
          'created': 1,
          'modern': 1,
          'classic': 1,
          'star': 1,
          'luck': 1,
          'rise': 1,
          'greater': 1,
          'success': 1,
          'npos': 1}),
 Counter({'jude': 14,
          'film': 5,
          'one': 5,
          'never': 4,
          'nbut': 4,
          'way': 4,
          'nthe': 4,
          'teacher': 4,
          'novel': 3,
          'see': 3,
          'life': 3,
          'n': 3,
          'school': 3,
          'eventually': 3,
          'two': 3,
          'people': 3,
          'happiness': 3,
          'good': 3,
          'wonderfully': 3,
          'read': 2,
          'final': 2,
          'man': 2,
          'bad': 2,
          'luck': 2,
          'depressing': 2,
          'satirical': 2,
          'societys': 2,
          'place': 2,
          'story': 2,
          'even': 2,
          'although': 2,
          'kinda': 2,
          'eccleston': 2,
          'young': 2,
          'big': 2,
          'nin': 2,
          'bleak': 2,
          'phillotson': 2,
          'liam': 2,
          'cunningham': 2,
          'upon': 2,
          'work': 2,
          'hard': 2,
          'anything': 2,
          'world': 2,
          'immature': 2,
          'woman': 2,
          'arabella': 2,
          'rachel': 2,
          'griffiths': 2,
          'ultimately': 2,
          'moves': 2,
          'town': 2,
          'get': 2,
          'job': 2,
          'someone': 2,
          'sue': 2,
          'winslet': 2,
          'nasty': 2,
          'business': 2,
          'nudge': 2,
          'every': 2,
          'happens': 2,
          'society': 2,
          'ending': 2,
          'would': 2,
          'supporting': 2,
          'dumb': 2,
          'nkate': 2,
          'titanic': 2,
          'performance': 2,
          'slow': 2,
          'appreciate': 2,
          'thomas': 1,
          'hardy': 1,
          'obscure': 1,
          'created': 1,
          'outrage': 1,
          'wrote': 1,
          'research': 1,
          'plagued': 1,
          'throughout': 1,
          'entire': 1,
          'watching': 1,
          'movie': 1,
          'imagine': 1,
          'incredibly': 1,
          'start': 1,
          'finish': 1,
          'spitting': 1,
          'chewing': 1,
          'unwanted': 1,
          'system': 1,
          'whats': 1,
          'remarkable': 1,
          'timeless': 1,
          'takes': 1,
          'late': 1,
          '19th': 1,
          'century': 1,
          'early': 1,
          '20th': 1,
          'wasnt': 1,
          'really': 1,
          'sure': 1,
          'could': 1,
          'retold': 1,
          'today': 1,
          'modern': 1,
          'form': 1,
          'itd': 1,
          'different': 1,
          'given': 1,
          'nit': 1,
          'tells': 1,
          'christopher': 1,
          'psychotic': 1,
          'accountant': 1,
          'shallow': 1,
          'grave': 1,
          'simple': 1,
          'dimwitted': 1,
          'dreams': 1,
          'foreboding': 1,
          'opening': 1,
          'shot': 1,
          'grainy': 1,
          'black': 1,
          'white': 1,
          'gets': 1,
          'lesson': 1,
          'stand': 1,
          'mountain': 1,
          'looking': 1,
          'city': 1,
          'distance': 1,
          'says': 1,
          'nafter': 1,
          'marrying': 1,
          'divorcing': 1,
          'named': 1,
          'frolicked': 1,
          'hay': 1,
          'literally': 1,
          'share': 1,
          'common': 1,
          'away': 1,
          'giant': 1,
          'university': 1,
          'chance': 1,
          'learn': 1,
          'ahead': 1,
          'ntaking': 1,
          'welding': 1,
          'works': 1,
          'studying': 1,
          'constantly': 1,
          'college': 1,
          'bars': 1,
          'reciting': 1,
          'latin': 1,
          'training': 1,
          'sends': 1,
          'application': 1,
          'bluntly': 1,
          'told': 1,
          'remain': 1,
          'worker': 1,
          'nanother': 1,
          'reason': 1,
          'going': 1,
          'family': 1,
          'lives': 1,
          'kate': 1,
          'cousin': 1,
          'intelligent': 1,
          'mischevious': 1,
          'wants': 1,
          'nshe': 1,
          'click': 1,
          'become': 1,
          'endearing': 1,
          'friends': 1,
          'much': 1,
          'spends': 1,
          'night': 1,
          'flat': 1,
          'running': 1,
          'apprentice': 1,
          'none': 1,
          'local': 1,
          'rumors': 1,
          'nseveral': 1,
          'twists': 1,
          'turn': 1,
          'storyline': 1,
          'interesting': 1,
          'scene': 1,
          'say': 1,
          'least': 1,
          'soon': 1,
          'born': 1,
          'controversial': 1,
          'nonwedlock': 1,
          'gives': 1,
          'birth': 1,
          'baby': 1,
          'inherits': 1,
          'son': 1,
          'turns': 1,
          'awhile': 1,
          'nbecause': 1,
          'arent': 1,
          'married': 1,
          'theyre': 1,
          'cousins': 1,
          'run': 1,
          'problems': 1,
          'go': 1,
          'carrying': 1,
          'around': 1,
          'children': 1,
          'everywhere': 1,
          'staying': 1,
          'lodges': 1,
          'brief': 1,
          'period': 1,
          'time': 1,
          'moving': 1,
          'nif': 1,
          'didnt': 1,
          'think': 1,
          'harsh': 1,
          'enough': 1,
          'wait': 1,
          'till': 1,
          'later': 1,
          'sad': 1,
          'truth': 1,
          'miserable': 1,
          'nhe': 1,
          'gain': 1,
          'true': 1,
          'fleeting': 1,
          'probably': 1,
          'bring': 1,
          'horrible': 1,
          'instances': 1,
          'npart': 1,
          'fault': 1,
          'hes': 1,
          'optimistic': 1,
          'gullible': 1,
          'taking': 1,
          'hurting': 1,
          'death': 1,
          'hear': 1,
          'worse': 1,
          'guess': 1,
          'ill': 1,
          'offers': 1,
          'view': 1,
          'cruelties': 1,
          'shows': 1,
          'curing': 1,
          'thank': 1,
          'heavens': 1,
          'doesnt': 1,
          'ntheres': 1,
          'relinquish': 1,
          'selfishness': 1,
          'solution': 1,
          'small': 1,
          'cure': 1,
          'mass': 1,
          'problem': 1,
          'nsatire': 1,
          'always': 1,
          'ways': 1,
          'changing': 1,
          'certain': 1,
          'peoples': 1,
          'minds': 1,
          'thats': 1,
          'nsure': 1,
          'hell': 1,
          'downer': 1,
          'needs': 1,
          'also': 1,
          'posesses': 1,
          'fantastic': 1,
          'performances': 1,
          'leads': 1,
          'along': 1,
          'nchristopher': 1,
          'slightly': 1,
          'resembling': 1,
          'richard': 1,
          'edson': 1,
          'new': 1,
          'look': 1,
          'expression': 1,
          'plays': 1,
          'sometimes': 1,
          'bringing': 1,
          'smile': 1,
          'face': 1,
          'making': 1,
          'kind': 1,
          'childlike': 1,
          'times': 1,
          'pre': 1,
          'brilliant': 1,
          'nailing': 1,
          'psyche': 1,
          'character': 1,
          'creating': 1,
          'whos': 1,
          'troubled': 1,
          'seductive': 1,
          'personality': 1,
          'may': 1,
          'best': 1,
          'actress': 1,
          'age': 1,
          'group': 1,
          'dont': 1,
          'believe': 1,
          'branaghs': 1,
          'hamlet': 1,
          'sense': 1,
          'sensibility': 1,
          'heavenly': 1,
          'creatures': 1,
          'latter': 1,
          'favorite': 1,
          'roles': 1,
          'flawed': 1,
          'exposing': 1,
          'parts': 1,
          'pretty': 1,
          'person': 1,
          'judes': 1,
          'wife': 1,
          'divorces': 1,
          'pace': 1,
          'keeps': 1,
          'taunting': 1,
          'viewers': 1,
          'chances': 1,
          'protagonists': 1,
          'drive': 1,
          'nuts': 1,
          'social': 1,
          'commentary': 1,
          'films': 1,
          'matter': 1,
          'downright': 1,
          'though': 1,
          'doubt': 1,
          'anyone': 1,
          'truly': 1,
          'enjoys': 1,
          'npos': 1}),
 Counter({'dragon': 7,
          'movie': 5,
          'quaid': 4,
          'girl': 3,
          'going': 3,
          'last': 2,
          'amusing': 2,
          'dragons': 2,
          'call': 2,
          'town': 2,
          'course': 2,
          'draco': 2,
          'probably': 2,
          'eddie': 2,
          'medieval': 2,
          'comedy': 2,
          'laughs': 2,
          'hard': 2,
          'stars': 1,
          'man': 1,
          'taken': 1,
          'proffesion': 1,
          'dragonslayer': 1,
          'feels': 1,
          'betrayed': 1,
          'early': 1,
          'nhe': 1,
          'runs': 1,
          'existence': 1,
          'genuinely': 1,
          'battle': 1,
          'two': 1,
          'results': 1,
          'standoff': 1,
          'mouth': 1,
          'sword': 1,
          'pointed': 1,
          'brain': 1,
          'neventually': 1,
          'decide': 1,
          'truce': 1,
          'work': 1,
          'deal': 1,
          'nsince': 1,
          'pretend': 1,
          'die': 1,
          'able': 1,
          'get': 1,
          'paid': 1,
          'ntheir': 1,
          'scam': 1,
          'works': 1,
          'first': 1,
          'come': 1,
          'without': 1,
          'money': 1,
          'ninstead': 1,
          'sacrifices': 1,
          'nice': 1,
          'droagon': 1,
          'wont': 1,
          'eat': 1,
          'however': 1,
          'scene': 1,
          'hitting': 1,
          'young': 1,
          'nof': 1,
          'tell': 1,
          'plot': 1,
          'silly': 1,
          'know': 1,
          'take': 1,
          'seriously': 1,
          'right': 1,
          'times': 1,
          'unlike': 1,
          'serious': 1,
          'time': 1,
          'nyou': 1,
          'could': 1,
          'spy': 1,
          'combined': 1,
          'ndennis': 1,
          'makes': 1,
          'fine': 1,
          'hero': 1,
          'npete': 1,
          'posthlewaite': 1,
          'provides': 1,
          'ghreat': 1,
          'monk': 1,
          'journeys': 1,
          'ndina': 1,
          'meyer': 1,
          'appealing': 1,
          'sacrificed': 1,
          'nbut': 1,
          'lets': 1,
          'face': 1,
          'really': 1,
          'amazing': 1,
          'creation': 1,
          'nconnerys': 1,
          'voice': 1,
          'ilm': 1,
          'team': 1,
          'provide': 1,
          'us': 1,
          'truly': 1,
          'magnificent': 1,
          'nso': 1,
          'see': 1,
          'strong': 1,
          'core': 1,
          'epic': 1,
          'wrong': 1,
          'nif': 1,
          'dissapointed': 1,
          'provided': 1,
          'plenty': 1,
          'smooth': 1,
          'boring': 1,
          'parts': 1,
          'script': 1,
          'npos': 1}),
 Counter({'film': 11,
          'nthe': 10,
          'thin': 6,
          'red': 6,
          'line': 6,
          'malick': 5,
          'plot': 5,
          'see': 3,
          'cast': 3,
          'performance': 3,
          'nthis': 3,
          'stories': 3,
          'uses': 3,
          'nature': 3,
          '20': 2,
          'years': 2,
          'nhis': 2,
          'strange': 2,
          'beautiful': 2,
          'mess': 2,
          'movie': 2,
          'nit': 2,
          'filled': 2,
          'gives': 2,
          'whose': 2,
          'role': 2,
          'cameo': 2,
          'seems': 2,
          'much': 2,
          'characters': 2,
          'narration': 2,
          'nick': 2,
          'nolte': 2,
          'elias': 2,
          'koteas': 2,
          'fantastic': 2,
          'two': 2,
          'called': 2,
          'nafter': 2,
          'made': 2,
          'many': 2,
          'lets': 2,
          'us': 2,
          'hear': 2,
          'also': 2,
          'used': 2,
          'story': 2,
          'private': 2,
          'box': 2,
          'nwhile': 2,
          'bookend': 2,
          'regarding': 2,
          'since': 1,
          'terrence': 1,
          'hit': 1,
          'theaters': 1,
          'new': 1,
          'enigmatic': 1,
          'first': 1,
          'thing': 1,
          'jumps': 1,
          'one': 1,
          'advertisements': 1,
          'huge': 1,
          'abovethetitle': 1,
          'stars': 1,
          'part': 1,
          'great': 1,
          'performances': 1,
          'njohn': 1,
          'travolta': 1,
          'nothing': 1,
          'attacked': 1,
          'verve': 1,
          'ngeorge': 1,
          'clooney': 1,
          'became': 1,
          'editing': 1,
          'none': 1,
          'wonders': 1,
          'knew': 1,
          'would': 1,
          'become': 1,
          'object': 1,
          'ridicule': 1,
          'rest': 1,
          'especially': 1,
          'unambiguously': 1,
          'nthese': 1,
          'actors': 1,
          'exceptions': 1,
          'men': 1,
          'lured': 1,
          'name': 1,
          'nterrence': 1,
          'cinematic': 1,
          'legend': 1,
          'nhe': 1,
          'often': 1,
          'j': 1,
          'salinger': 1,
          'cinema': 1,
          'previous': 1,
          'films': 1,
          'badlands': 1,
          'days': 1,
          'heaven': 1,
          'spectacularly': 1,
          'obscure': 1,
          'motion': 1,
          'pictures': 1,
          'disappeared': 1,
          'marks': 1,
          'return': 1,
          'nwhat': 1,
          'hes': 1,
          'less': 1,
          'concerned': 1,
          'emotion': 1,
          'moment': 1,
          'fills': 1,
          'perplexes': 1,
          'narrators': 1,
          'pontificate': 1,
          'ofthemoment': 1,
          'thoughts': 1,
          'im': 1,
          'scared': 1,
          'rather': 1,
          'simple': 1,
          'canvas': 1,
          'painted': 1,
          'couldly': 1,
          'simply': 1,
          'boiled': 1,
          'assault': 1,
          'hill': 1,
          'na': 1,
          'synopsis': 1,
          'difficult': 1,
          'fractured': 1,
          'nmany': 1,
          'clash': 1,
          'lieutenant': 1,
          'savage': 1,
          'colonel': 1,
          'voracious': 1,
          'ben': 1,
          'chaplin': 1,
          'love': 1,
          'woman': 1,
          'left': 1,
          'behind': 1,
          'keep': 1,
          'going': 1,
          'fracturing': 1,
          'ultimately': 1,
          'fault': 1,
          'artist': 1,
          'spent': 1,
          'incredible': 1,
          'amount': 1,
          'time': 1,
          'artfully': 1,
          'sculpting': 1,
          'tiny': 1,
          'statues': 1,
          'threw': 1,
          'shook': 1,
          'poured': 1,
          'results': 1,
          'onto': 1,
          'table': 1,
          'basically': 1,
          'creates': 1,
          'discerned': 1,
          'enjoyed': 1,
          'nim': 1,
          'declaring': 1,
          'structure': 1,
          'saving': 1,
          'ryan': 1,
          'warfare': 1,
          'reflection': 1,
          'glorious': 1,
          'shots': 1,
          '90': 1,
          'minutes': 1,
          'combat': 1,
          'battles': 1,
          'astonishing': 1,
          'display': 1,
          'mastery': 1,
          'filmmaking': 1,
          'astounding': 1,
          'cinematography': 1,
          'must': 1,
          'given': 1,
          'notice': 1,
          'color': 1,
          'light': 1,
          'way': 1,
          'sad': 1,
          'degraded': 1,
          'bee': 1,
          'transferred': 1,
          'video': 1,
          'nultimately': 1,
          'crafted': 1,
          'enjoys': 1,
          'looking': 1,
          'treetops': 1,
          'war': 1,
          'rages': 1,
          'photography': 1,
          'said': 1,
          'antiwar': 1,
          'message': 1,
          'pronature': 1,
          'tubthumping': 1,
          'juvenile': 1,
          'done': 1,
          'complexity': 1,
          'thought': 1,
          'ever': 1,
          'honestly': 1,
          'childish': 1,
          'seeing': 1,
          'haunted': 1,
          'quite': 1,
          'ready': 1,
          'npos': 1}),
 Counter({'stuart': 14,
          'little': 11,
          'family': 8,
          'movie': 6,
          'film': 5,
          'even': 5,
          'one': 4,
          'parents': 4,
          'know': 4,
          'best': 3,
          'really': 3,
          'disappoint': 3,
          'good': 3,
          'makes': 3,
          'new': 3,
          'littles': 3,
          'nice': 3,
          'find': 3,
          'snowball': 3,
          'see': 3,
          'films': 2,
          'year': 2,
          'nits': 2,
          'funny': 2,
          'time': 2,
          'moments': 2,
          'sentimental': 2,
          'nstuart': 2,
          'mouse': 2,
          'nhe': 2,
          'finally': 2,
          'put': 2,
          'lives': 2,
          'na': 2,
          'adorable': 2,
          'jonathan': 2,
          'lipnicki': 2,
          'first': 2,
          'pet': 2,
          'cat': 2,
          'well': 2,
          'together': 2,
          'instantly': 2,
          'real': 2,
          'try': 2,
          'get': 2,
          'ending': 2,
          'fantastic': 2,
          'special': 2,
          'effects': 2,
          'like': 2,
          'detail': 2,
          '90': 2,
          'million': 2,
          'dollar': 2,
          'nanother': 2,
          'never': 2,
          'movies': 2,
          'brings': 2,
          'fits': 2,
          'character': 2,
          'characters': 2,
          'love': 2,
          'nfor': 2,
          'human': 2,
          'chemistry': 2,
          'make': 2,
          'us': 2,
          'believe': 2,
          'neven': 2,
          'though': 2,
          'entertainment': 2,
          'season': 2,
          'far': 2,
          'come': 1,
          'cute': 1,
          'goodnatured': 1,
          'nothing': 1,
          'squirm': 1,
          'except': 1,
          'mild': 1,
          'cusswords': 1,
          'nthough': 1,
          'read': 1,
          'book': 1,
          'long': 1,
          'ago': 1,
          'remember': 1,
          'nfinally': 1,
          'gets': 1,
          'released': 1,
          'trailer': 1,
          'surprising': 1,
          'twists': 1,
          'mixed': 1,
          'great': 1,
          'gotten': 1,
          'home': 1,
          'adoption': 1,
          'pun': 1,
          'intended': 1,
          'apartment': 1,
          'next': 1,
          'central': 1,
          'park': 1,
          'york': 1,
          'city': 1,
          'nthey': 1,
          'boy': 1,
          'george': 1,
          'played': 1,
          'son': 1,
          'nat': 1,
          'takes': 1,
          'adjusts': 1,
          'part': 1,
          'getting': 1,
          'along': 1,
          'ngeorge': 1,
          'doesnt': 1,
          'take': 1,
          'brother': 1,
          'two': 1,
          'play': 1,
          'bond': 1,
          'however': 1,
          'missing': 1,
          'something': 1,
          'wants': 1,
          'nthe': 1,
          'day': 1,
          'show': 1,
          'doorstep': 1,
          'wanting': 1,
          'back': 1,
          'nhesitating': 1,
          'whats': 1,
          'friends': 1,
          'end': 1,
          'truth': 1,
          'stuarts': 1,
          'past': 1,
          'heartwarming': 1,
          'none': 1,
          'thing': 1,
          'noticed': 1,
          'njust': 1,
          'star': 1,
          'wars': 1,
          'episode': 1,
          '1the': 1,
          'phantom': 1,
          'menace': 1,
          'computer': 1,
          'generated': 1,
          'look': 1,
          'fantastically': 1,
          'nfrom': 1,
          'fur': 1,
          'way': 1,
          'walk': 1,
          'team': 1,
          'lot': 1,
          'effort': 1,
          'shows': 1,
          'common': 1,
          'babe': 1,
          'talking': 1,
          'animals': 1,
          'people': 1,
          'understanding': 1,
          'nit': 1,
          'friendly': 1,
          'atmosphere': 1,
          'scary': 1,
          'suspenseful': 1,
          'enough': 1,
          'scare': 1,
          'youngest': 1,
          'kids': 1,
          'nmichael': 1,
          'j': 1,
          'fox': 1,
          'voice': 1,
          'homeward': 1,
          'bound': 1,
          'job': 1,
          'anyone': 1,
          'else': 1,
          'could': 1,
          'perfectly': 1,
          'ends': 1,
          'making': 1,
          'lovable': 1,
          'gem': 1,
          'nathan': 1,
          'lane': 1,
          'nwhen': 1,
          'timon': 1,
          '1994s': 1,
          'lion': 1,
          'king': 1,
          'would': 1,
          'sworn': 1,
          'comedian': 1,
          'dislike': 1,
          'actors': 1,
          'geena': 1,
          'davis': 1,
          'gives': 1,
          'bad': 1,
          'performance': 1,
          'nshe': 1,
          'nicely': 1,
          'hugh': 1,
          'laurie': 1,
          'plays': 1,
          'mr': 1,
          'nboth': 1,
          'happily': 1,
          'married': 1,
          'song': 1,
          '1996s': 1,
          'jerry': 1,
          'maguire': 1,
          'completely': 1,
          'cgi': 1,
          'care': 1,
          'n': 1,
          'ideal': 1,
          'holiday': 1,
          'youngsters': 1,
          'adults': 1,
          'matter': 1,
          'nwe': 1,
          'laughs': 1,
          'cries': 1,
          'fun': 1,
          'probably': 1,
          'pg': 1,
          'rated': 1,
          'christmas': 1,
          'everyone': 1,
          'budget': 1,
          'im': 1,
          'sure': 1,
          'respectively': 1,
          'trying': 1,
          'yet': 1,
          'bicentennial': 1,
          'man': 1,
          'write': 1,
          'toy': 1,
          'story': 1,
          '2': 1,
          'winner': 1,
          'npos': 1}),
 Counter({'chans': 6,
          'jackie': 5,
          'mr': 5,
          'nice': 5,
          'guy': 4,
          'films': 3,
          'involving': 3,
          'chan': 3,
          'action': 3,
          'stateside': 2,
          'latest': 2,
          'nbut': 2,
          'also': 2,
          'like': 2,
          'cooking': 2,
          'show': 2,
          'nother': 2,
          'plot': 2,
          'irrelevant': 2,
          'fight': 2,
          'spectacular': 2,
          'finale': 2,
          'even': 2,
          'productions': 2,
          'releases': 1,
          'chopsocky': 1,
          'vehicle': 1,
          'contrived': 1,
          'blockheaded': 1,
          'lacking': 1,
          'narrative': 1,
          'logic': 1,
          'highly': 1,
          'enjoyable': 1,
          'ride': 1,
          'nonce': 1,
          'screenwriters': 1,
          'edward': 1,
          'tang': 1,
          'fibe': 1,
          'taken': 1,
          'easy': 1,
          'way': 1,
          'named': 1,
          'stars': 1,
          'character': 1,
          'simply': 1,
          'last': 1,
          'name': 1,
          'nthis': 1,
          'worldclass': 1,
          'chef': 1,
          'cohosts': 1,
          'popular': 1,
          'australian': 1,
          'television': 1,
          'nof': 1,
          'course': 1,
          'happens': 1,
          'talented': 1,
          'martial': 1,
          'artist': 1,
          'skills': 1,
          'come': 1,
          'handy': 1,
          'becomes': 1,
          'involved': 1,
          'ambitious': 1,
          'reporters': 1,
          'gabrielle': 1,
          'fitzpatrick': 1,
          'expose': 1,
          'drug': 1,
          'dealing': 1,
          'ring': 1,
          'details': 1,
          'videotape': 1,
          'biker': 1,
          'gang': 1,
          'fact': 1,
          'case': 1,
          'nthe': 1,
          'sole': 1,
          'purpose': 1,
          'guys': 1,
          'existence': 1,
          'comic': 1,
          'scenes': 1,
          'disappoint': 1,
          'ndirector': 1,
          'samo': 1,
          'hung': 1,
          'cameo': 1,
          'role': 1,
          'longtime': 1,
          'collaborator': 1,
          'waste': 1,
          'time': 1,
          'putting': 1,
          'diving': 1,
          'headon': 1,
          'wild': 1,
          'chasefightshootout': 1,
          'brief': 1,
          'prologue': 1,
          'impressive': 1,
          'set': 1,
          'pieces': 1,
          'follow': 1,
          'notably': 1,
          'chase': 1,
          'mall': 1,
          'directly': 1,
          'leads': 1,
          'frenzied': 1,
          'cliched': 1,
          'say': 1,
          'fruit': 1,
          'cart': 1,
          'business': 1,
          'runaway': 1,
          'carriage': 1,
          'extended': 1,
          'latefilm': 1,
          'sequence': 1,
          'construction': 1,
          'site': 1,
          'hilarious': 1,
          'pursuit': 1,
          'maze': 1,
          'blue': 1,
          'doors': 1,
          'culminates': 1,
          'exciting': 1,
          'fights': 1,
          'boards': 1,
          'cement': 1,
          'mixers': 1,
          'deadly': 1,
          'buzzsaw': 1,
          'nnone': 1,
          'sequences': 1,
          'supercops': 1,
          'thrilling': 1,
          'helicoptertrain': 1,
          'rumble': 1,
          'bronxs': 1,
          'daring': 1,
          'leap': 1,
          'two': 1,
          'buildings': 1,
          'anything': 1,
          'inventive': 1,
          'ladder': 1,
          'air': 1,
          'tunnel': 1,
          'climax': 1,
          'first': 1,
          'strike': 1,
          'operation': 1,
          'condor': 1,
          'respectively': 1,
          'delivers': 1,
          'energy': 1,
          'peters': 1,
          'end': 1,
          'letdown': 1,
          'fans': 1,
          'athletic': 1,
          'prowess': 1,
          'nfilmed': 1,
          'almost': 1,
          'entirely': 1,
          'english': 1,
          'voices': 1,
          'englishspeaking': 1,
          'actors': 1,
          'laughably': 1,
          'dubbed': 1,
          'hints': 1,
          'transition': 1,
          'hollywood': 1,
          'made': 1,
          'illfated': 1,
          'attempts': 1,
          '1980s': 1,
          'big': 1,
          'brawl': 1,
          '1985s': 1,
          'protector': 1,
          'next': 1,
          'pipeline': 1,
          'rush': 1,
          'hour': 1,
          'production': 1,
          'costarring': 1,
          'chris': 1,
          'tucker': 1,
          'nhopefully': 1,
          'film': 1,
          'mere': 1,
          'diversion': 1,
          'tinseltown': 1,
          'continue': 1,
          'exuberant': 1,
          'hong': 1,
          'kong': 1,
          'unique': 1,
          'charm': 1,
          'reckless': 1,
          'abandon': 1,
          'sure': 1,
          'diluted': 1,
          'american': 1,
          'hands': 1,
          'much': 1,
          'npos': 1}),
 Counter({'dog': 6,
          'see': 6,
          'movie': 6,
          'political': 4,
          'hollywood': 4,
          'comedy': 4,
          'two': 4,
          'character': 4,
          'hes': 4,
          'wag': 3,
          'go': 3,
          'ndeniro': 3,
          'producer': 3,
          'hoffman': 3,
          'like': 3,
          'n': 3,
          'nwag': 3,
          'one': 3,
          'american': 3,
          'things': 3,
          'knows': 3,
          'us': 3,
          'nthe': 3,
          'way': 3,
          'part': 3,
          'commercials': 2,
          'election': 2,
          'never': 2,
          'albania': 2,
          'harrelson': 2,
          'hero': 2,
          'nand': 2,
          'anything': 2,
          'heist': 2,
          'best': 2,
          'great': 2,
          'actors': 2,
          'goes': 2,
          'washington': 2,
          'truth': 2,
          'people': 2,
          'stupid': 2,
          'love': 2,
          'even': 2,
          'challenged': 2,
          'watching': 2,
          'house': 2,
          'wont': 2,
          'politics': 2,
          'satire': 2,
          'script': 2,
          'nits': 2,
          'kind': 2,
          'may': 2,
          'well': 2,
          'dont': 2,
          'press': 2,
          'outside': 2,
          'fad': 2,
          'king': 2,
          'nelson': 2,
          'problems': 2,
          'role': 2,
          'premise': 1,
          'simple': 1,
          'adequately': 1,
          'explained': 1,
          'nwith': 1,
          '11': 1,
          'days': 1,
          'president': 1,
          'calls': 1,
          'dirtytricks': 1,
          'artist': 1,
          'robert': 1,
          'deniro': 1,
          'distract': 1,
          'attention': 1,
          'burgeoning': 1,
          'sex': 1,
          'scandal': 1,
          'enlists': 1,
          'dustin': 1,
          'produce': 1,
          'pageant': 1,
          'phony': 1,
          'war': 1,
          'fought': 1,
          'blue': 1,
          'screens': 1,
          'recording': 1,
          'studios': 1,
          'nashville': 1,
          'woody': 1,
          'reluctant': 1,
          'psychotic': 1,
          'wasnt': 1,
          'would': 1,
          'secondrate': 1,
          'enlivened': 1,
          'sneakers': 1,
          'nyup': 1,
          'stealing': 1,
          'speak': 1,
          'fun': 1,
          'else': 1,
          'succeeds': 1,
          'based': 1,
          'nok': 1,
          'maybe': 1,
          'thy': 1,
          'neighbor': 1,
          'thyself': 1,
          'plus': 1,
          'makes': 1,
          'four': 1,
          'nonetheless': 1,
          'average': 1,
          'person': 1,
          'thinks': 1,
          'theyre': 1,
          'really': 1,
          'smart': 1,
          'satirizes': 1,
          'moviemaking': 1,
          'process': 1,
          'invited': 1,
          'nay': 1,
          'spend': 1,
          'week': 1,
          'either': 1,
          'actually': 1,
          'made': 1,
          '48': 1,
          'hours': 1,
          'straight': 1,
          'cspan': 1,
          'session': 1,
          'utterly': 1,
          'predictably': 1,
          'certain': 1,
          'percentage': 1,
          'hard': 1,
          'rain': 1,
          'magoo': 1,
          'notice': 1,
          'million': 1,
          'dollars': 1,
          'spent': 1,
          'porno': 1,
          'art': 1,
          'grants': 1,
          'cigar': 1,
          'subsidies': 1,
          'deniros': 1,
          'geography': 1,
          'skills': 1,
          'weak': 1,
          'able': 1,
          'locate': 1,
          'map': 1,
          'beauty': 1,
          'isnt': 1,
          'light': 1,
          'meaningless': 1,
          'speechless': 1,
          'michael': 1,
          'keaton': 1,
          'geena': 1,
          'davis': 1,
          'picture': 1,
          'level': 1,
          'lighthearted': 1,
          'politcal': 1,
          'neargreatness': 1,
          'nnor': 1,
          'hardedged': 1,
          'cynical': 1,
          'look': 1,
          'manner': 1,
          'morallydeprived': 1,
          'ethically': 1,
          'babyboomer': 1,
          'connives': 1,
          'sleazy': 1,
          'white': 1,
          'primary': 1,
          'colors': 1,
          'yes': 1,
          'little': 1,
          'disappointed': 1,
          'last': 1,
          'elections': 1,
          'turned': 1,
          'thanks': 1,
          'asking': 1,
          'ninstead': 1,
          'david': 1,
          'mamets': 1,
          'strikes': 1,
          'delicate': 1,
          'balance': 1,
          'cynicism': 1,
          'needed': 1,
          'nit': 1,
          'keeping': 1,
          'fantasy': 1,
          'world': 1,
          'schemers': 1,
          'schemes': 1,
          'come': 1,
          'beautifully': 1,
          'fail': 1,
          'entertaining': 1,
          'humorous': 1,
          'fashion': 1,
          'playing': 1,
          'variation': 1,
          'al': 1,
          'capone': 1,
          'untouchables': 1,
          'without': 1,
          'violent': 1,
          'rages': 1,
          'nwhat': 1,
          'brings': 1,
          'joy': 1,
          'nbaseball': 1,
          'minus': 1,
          'savage': 1,
          'bloody': 1,
          'beating': 1,
          'bat': 1,
          'nhe': 1,
          'threatens': 1,
          'lot': 1,
          'mind': 1,
          'nice': 1,
          'polite': 1,
          'mellow': 1,
          'restrained': 1,
          'performance': 1,
          'fits': 1,
          'air': 1,
          'gamesmanship': 1,
          'nhoffman': 1,
          'hand': 1,
          'giddy': 1,
          'exuberant': 1,
          'joyous': 1,
          'nthis': 1,
          'thing': 1,
          'lives': 1,
          'excited': 1,
          'cant': 1,
          'shut': 1,
          'neven': 1,
          'edge': 1,
          'disaster': 1,
          'brighteyed': 1,
          'behind': 1,
          'oddly': 1,
          'tinted': 1,
          'sunglasses': 1,
          'positive': 1,
          'ninsiders': 1,
          'note': 1,
          'basing': 1,
          'powerfulbutanonymous': 1,
          'true': 1,
          'still': 1,
          'exudes': 1,
          'letsputonashow': 1,
          'electricity': 1,
          'figure': 1,
          'needs': 1,
          'frustrating': 1,
          'supporting': 1,
          'cast': 1,
          'characters': 1,
          'drawn': 1,
          'acted': 1,
          'want': 1,
          'listen': 1,
          'talk': 1,
          'wisedup': 1,
          'mamet': 1,
          'dialogue': 1,
          'get': 1,
          'know': 1,
          'better': 1,
          'nanne': 1,
          'heche': 1,
          'deadbangon': 1,
          'portrayal': 1,
          'aide': 1,
          'cool': 1,
          'composed': 1,
          'panicked': 1,
          'frenzied': 1,
          'ndenis': 1,
          'leary': 1,
          'favorite': 1,
          'ref': 1,
          'handles': 1,
          'profitable': 1,
          'backend': 1,
          'tshirt': 1,
          'tie': 1,
          'ins': 1,
          'shoe': 1,
          'contracts': 1,
          'creative': 1,
          'innovative': 1,
          'ways': 1,
          'separate': 1,
          'fool': 1,
          'money': 1,
          'nthey': 1,
          'could': 1,
          'make': 1,
          'whole': 1,
          'id': 1,
          'nwillie': 1,
          'merle': 1,
          'haggard': 1,
          'handle': 1,
          'musical': 1,
          'end': 1,
          'fabulously': 1,
          'upbeat': 1,
          'gospel': 1,
          'chorus': 1,
          'theme': 1,
          'song': 1,
          'weepy': 1,
          'country': 1,
          'waltz': 1,
          'hilarious': 1,
          'ballad': 1,
          'green': 1,
          'berets': 1,
          'parody': 1,
          'nwoody': 1,
          'brief': 1,
          'memorable': 1,
          'overmedicated': 1,
          'albanian': 1,
          'conflict': 1,
          'ncraig': 1,
          'opposition': 1,
          'candidate': 1,
          'everreliable': 1,
          'william': 1,
          'h': 1,
          'macy': 1,
          'wacky': 1,
          'cia': 1,
          'agent': 1,
          'given': 1,
          'surprisingly': 1,
          'short': 1,
          'shrift': 1,
          'small': 1,
          'gripes': 1,
          'spin': 1,
          'doctors': 1,
          'side': 1,
          'funny': 1,
          'serious': 1,
          'trivialization': 1,
          'dumbing': 1,
          'issues': 1,
          'impact': 1,
          'creating': 1,
          'campaign': 1,
          'reduction': 1,
          'soundbites': 1,
          'sidebars': 1,
          'list': 1,
          'nwe': 1,
          'solve': 1,
          'taking': 1,
          'greater': 1,
          'national': 1,
          'life': 1,
          'educating': 1,
          'voters': 1,
          'citizens': 1,
          'reminds': 1,
          'happen': 1,
          'npos': 1}),
 Counter({'moments': 5,
          'sally': 4,
          'romantic': 4,
          'nthe': 4,
          'played': 3,
          'father': 3,
          'fast': 3,
          'food': 3,
          'comedy': 3,
          'movie': 3,
          'dark': 3,
          'plot': 3,
          'drew': 2,
          'nafter': 2,
          'helicopter': 2,
          'tale': 2,
          'dorian': 2,
          'luke': 2,
          'wilson': 2,
          'sallys': 2,
          'unborn': 2,
          'child': 2,
          'work': 2,
          'restaurant': 2,
          'fun': 2,
          'nthis': 2,
          'comedic': 2,
          'sappy': 2,
          'also': 2,
          'one': 2,
          'wife': 2,
          'dorians': 2,
          'barrymores': 2,
          'doesnt': 2,
          'seem': 2,
          'film': 1,
          'opens': 1,
          'expectant': 1,
          'unwed': 1,
          'mother': 1,
          'barrymore': 1,
          'encounters': 1,
          'babys': 1,
          'drivethrough': 1,
          'window': 1,
          'gets': 1,
          'milkshake': 1,
          'drives': 1,
          'pursued': 1,
          'military': 1,
          'nfrom': 1,
          'moment': 1,
          'forward': 1,
          'know': 1,
          'isnt': 1,
          'going': 1,
          'runofthemill': 1,
          'nhome': 1,
          'fries': 1,
          'tells': 1,
          'relationship': 1,
          'pilot': 1,
          'different': 1,
          'kind': 1,
          'connection': 1,
          'nthan': 1,
          'would': 1,
          'care': 1,
          'admit': 1,
          'hint': 1,
          'something': 1,
          'taking': 1,
          'personal': 1,
          'professional': 1,
          'interest': 1,
          'finds': 1,
          'local': 1,
          'works': 1,
          'goes': 1,
          'lot': 1,
          'nit': 1,
          'two': 1,
          'levels': 1,
          'sweet': 1,
          'yet': 1,
          'none': 1,
          'poignant': 1,
          'accompanies': 1,
          'lamaze': 1,
          'classes': 1,
          'nhowever': 1,
          'memorable': 1,
          'revenge': 1,
          'funny': 1,
          'happened': 1,
          'married': 1,
          'man': 1,
          'whose': 1,
          'catherine': 1,
          'ohara': 1,
          'nshe': 1,
          'wonderful': 1,
          'portrayal': 1,
          'jealous': 1,
          'targeting': 1,
          'person': 1,
          'affair': 1,
          'getting': 1,
          'people': 1,
          'dirty': 1,
          'n': 1,
          'apologies': 1,
          'sounds': 1,
          'cryptic': 1,
          'much': 1,
          'give': 1,
          'away': 1,
          'nrounding': 1,
          'cast': 1,
          'jake': 1,
          'busey': 1,
          'angus': 1,
          'overzealous': 1,
          'brother': 1,
          'daryl': 1,
          'mitchell': 1,
          'roy': 1,
          'trainer': 1,
          'dialogue': 1,
          'sharp': 1,
          'filled': 1,
          'overtones': 1,
          'even': 1,
          'nature': 1,
          'nif': 1,
          'complaints': 1,
          'performance': 1,
          'nwhile': 1,
          'light': 1,
          'screen': 1,
          'convincing': 1,
          'filmed': 1,
          'texas': 1,
          'characters': 1,
          'southern': 1,
          'texan': 1,
          'accents': 1,
          'ndrew': 1,
          'accent': 1,
          'tends': 1,
          'come': 1,
          'go': 1,
          'problem': 1,
          'nas': 1,
          'well': 1,
          'seems': 1,
          'awfully': 1,
          'agile': 1,
          'woman': 1,
          'eight': 1,
          'months': 1,
          'pregnant': 1,
          'nstill': 1,
          'please': 1,
          'many': 1,
          'viewers': 1,
          'nwith': 1,
          'twists': 1,
          'galore': 1,
          'hilarious': 1,
          'sure': 1,
          'entertain': 1,
          'npos': 1}),
 Counter({'jackal': 6,
          'film': 5,
          'real': 5,
          'terrorist': 4,
          'didnt': 4,
          'sutherland': 3,
          'montreal': 3,
          'known': 3,
          'role': 3,
          'interesting': 3,
          'hour': 3,
          'ni': 3,
          'second': 2,
          'come': 2,
          'one': 2,
          'quinn': 2,
          'joblos': 2,
          'canada': 2,
          'nthe': 2,
          'story': 2,
          'naval': 2,
          'officer': 2,
          'ramirez': 2,
          'international': 2,
          'put': 2,
          'chosen': 2,
          'take': 2,
          'part': 2,
          'well': 2,
          'wife': 2,
          'great': 2,
          'style': 2,
          'wasnt': 2,
          'much': 2,
          'movie': 2,
          'mostly': 2,
          'first': 2,
          'offer': 2,
          'scenes': 2,
          'show': 2,
          'thriller': 2,
          'could': 2,
          'easily': 2,
          'many': 2,
          'actor': 2,
          'jackalbased': 1,
          '1997': 1,
          'starring': 1,
          'bruce': 1,
          'willis': 1,
          'simply': 1,
          'entitled': 1,
          'stars': 1,
          'aidan': 1,
          'donald': 1,
          'directed': 1,
          'man': 1,
          'hailed': 1,
          'alma': 1,
          'matter': 1,
          'concordia': 1,
          'university': 1,
          'based': 1,
          'exploits': 1,
          'pretend': 1,
          '100': 1,
          'factual': 1,
          'nplot': 1,
          'gets': 1,
          'called': 1,
          'upon': 1,
          'cia': 1,
          'impersonate': 1,
          'order': 1,
          'end': 1,
          'actual': 1,
          'militants': 1,
          'radical': 1,
          'activities': 1,
          'nhe': 1,
          'physically': 1,
          'resembles': 1,
          'tee': 1,
          'nramirez': 1,
          'reluctantly': 1,
          'agrees': 1,
          'assignment': 1,
          'soon': 1,
          'finds': 1,
          'wrapped': 1,
          'true': 1,
          'web': 1,
          'terrorism': 1,
          'intrigue': 1,
          'doublepersonality': 1,
          'syndrome': 1,
          'sit': 1,
          'uninformed': 1,
          'kids': 1,
          'back': 1,
          'states': 1,
          'ncritique': 1,
          'premise': 1,
          'executed': 1,
          'enough': 1,
          'thrills': 1,
          'keep': 1,
          'piece': 1,
          'throughout': 1,
          'close': 1,
          'twohour': 1,
          'runtime': 1,
          'nadmittedly': 1,
          'huge': 1,
          'fan': 1,
          'main': 1,
          'actors': 1,
          'expect': 1,
          'beforehand': 1,
          'surprisingly': 1,
          'thrilling': 1,
          'moments': 1,
          'plausible': 1,
          'absorbing': 1,
          'line': 1,
          'buildup': 1,
          'things': 1,
          'characterization': 1,
          'really': 1,
          'cranks': 1,
          'cool': 1,
          'sweet': 1,
          'ending': 1,
          'nquinn': 1,
          'adequate': 1,
          'roles': 1,
          'anything': 1,
          'extraordinary': 1,
          'opinion': 1,
          'nsutherland': 1,
          'kingsley': 1,
          'seem': 1,
          'playing': 1,
          'theyve': 1,
          'played': 1,
          'respective': 1,
          'careers': 1,
          'late': 1,
          'nonetheless': 1,
          'appeared': 1,
          'relish': 1,
          'coldheartedness': 1,
          'characters': 1,
          'like': 1,
          'performance': 1,
          'forth': 1,
          'quinns': 1,
          'flick': 1,
          'doesnt': 1,
          'bad': 1,
          'however': 1,
          'enjoy': 1,
          'director': 1,
          'duguays': 1,
          'cinematic': 1,
          'vision': 1,
          'nthis': 1,
          'boring': 1,
          'sequences': 1,
          'duguay': 1,
          'always': 1,
          'seemed': 1,
          'find': 1,
          'something': 1,
          'viewer': 1,
          'thought': 1,
          'neat': 1,
          'nhaving': 1,
          'said': 1,
          'think': 1,
          'needed': 1,
          'long': 1,
          'tinkering': 1,
          'bridge': 1,
          'believability': 1,
          'fake': 1,
          'met': 1,
          'jackals': 1,
          'girlfriend': 1,
          'without': 1,
          'retrospection': 1,
          'complaints': 1,
          'enjoyed': 1,
          'pleasure': 1,
          'spy': 1,
          'genre': 1,
          'nlittle': 1,
          'facts': 1,
          'ben': 1,
          'kingsleys': 1,
          'name': 1,
          'krishna': 1,
          'banji': 1,
          'stands': 1,
          '5': 1,
          '8': 1,
          'born': 1,
          'scarborough': 1,
          'england': 1,
          'best': 1,
          'honor': 1,
          '1982s': 1,
          'academy': 1,
          'awards': 1,
          'presentation': 1,
          'title': 1,
          'portrayed': 1,
          'ghandi': 1,
          'nmany': 1,
          'actually': 1,
          'shot': 1,
          'restfulness': 1,
          'ndonald': 1,
          'fathered': 1,
          'kiefer': 1,
          'canadian': 1,
          'apparently': 1,
          'still': 1,
          'owns': 1,
          'place': 1,
          'north': 1,
          'npos': 1}),
 Counter({'carry': 5,
          'caravan': 5,
          'kenneth': 3,
          'carol': 3,
          'performances': 3,
          'behind': 2,
          'involves': 2,
          'group': 2,
          'site': 2,
          'anna': 2,
          'sommer': 2,
          'williams': 2,
          'major': 2,
          'connor': 2,
          'trouble': 2,
          'bernard': 2,
          'bresslaw': 2,
          'wife': 2,
          'patsy': 2,
          'rowlands': 2,
          'daphne': 2,
          'barnes': 2,
          'sims': 2,
          'minah': 2,
          'holiday': 2,
          'jokes': 2,
          'greyhound': 2,
          'comical': 2,
          'moments': 2,
          'two': 2,
          'windsor': 2,
          'davies': 2,
          'jack': 2,
          'douglas': 2,
          'fishing': 2,
          'hawkins': 2,
          'sherrie': 2,
          'hewson': 2,
          'nthe': 2,
          'movie': 2,
          'together': 2,
          'cast': 2,
          'one': 1,
          'last': 1,
          'entries': 1,
          'longrunning': 1,
          'series': 1,
          'similar': 1,
          'camping': 1,
          'holidaymakers': 1,
          'descending': 1,
          'nprofessors': 1,
          'vrooshka': 1,
          'elke': 1,
          'roland': 1,
          'crump': 1,
          'archaeology': 1,
          'students': 1,
          'stay': 1,
          'owned': 1,
          'leep': 1,
          'explore': 1,
          'nearby': 1,
          'roman': 1,
          'settlement': 1,
          'remains': 1,
          'nanna': 1,
          'little': 1,
          'understanding': 1,
          'english': 1,
          'sometimes': 1,
          'people': 1,
          'get': 1,
          'wrong': 1,
          'end': 1,
          'stick': 1,
          'instance': 1,
          'asking': 1,
          'scrubbers': 1,
          'dirty': 1,
          'means': 1,
          'wants': 1,
          'scrubbing': 1,
          'brush': 1,
          'clean': 1,
          'narthur': 1,
          'upmore': 1,
          'linda': 1,
          'take': 1,
          'mother': 1,
          'joan': 1,
          'bird': 1,
          'nmotherinlaw': 1,
          'prevail': 1,
          'nfurthermore': 1,
          'joe': 1,
          'norma': 1,
          'baxter': 1,
          'ian': 1,
          'lavender': 1,
          'adrienne': 1,
          'posta': 1,
          'large': 1,
          'irish': 1,
          'allows': 1,
          'families': 1,
          'nfred': 1,
          'ramsden': 1,
          'ernie': 1,
          'bragg': 1,
          'leave': 1,
          'wives': 1,
          'liz': 1,
          'fraser': 1,
          'patricia': 1,
          'franklin': 1,
          'nhowever': 1,
          'mind': 1,
          'catch': 1,
          'sight': 1,
          'young': 1,
          'girls': 1,
          'sandra': 1,
          'story': 1,
          'disruption': 1,
          'caused': 1,
          'archaeological': 1,
          'professors': 1,
          'daytoday': 1,
          'running': 1,
          'camp': 1,
          'search': 1,
          'bid': 1,
          'fred': 1,
          'ernies': 1,
          'desperate': 1,
          'need': 1,
          'woman': 1,
          'misunderstanding': 1,
          'leading': 1,
          'striptease': 1,
          'parks': 1,
          'pub': 1,
          'shock': 1,
          'store': 1,
          'partnership': 1,
          'effective': 1,
          'amusing': 1,
          'nthis': 1,
          'binds': 1,
          'njoan': 1,
          'stands': 1,
          'demanding': 1,
          'motherinlaw': 1,
          'work': 1,
          'well': 1,
          'husband': 1,
          'welcome': 1,
          'addition': 1,
          'non': 1,
          'hand': 1,
          'lowkey': 1,
          'peter': 1,
          'butterworth': 1,
          'handyman': 1,
          'poor': 1,
          'spend': 1,
          'far': 1,
          'much': 1,
          'time': 1,
          'screen': 1,
          'neven': 1,
          'though': 1,
          'real': 1,
          'plot': 1,
          'speak': 1,
          'getting': 1,
          'bluer': 1,
          'due': 1,
          'new': 1,
          'scriptwriter': 1,
          'dave': 1,
          'freeman': 1,
          'enough': 1,
          'truly': 1,
          'bright': 1,
          'breezy': 1,
          'lift': 1,
          'many': 1,
          'predecessors': 1,
          'nalthough': 1,
          'regular': 1,
          'depleted': 1,
          'ones': 1,
          'remain': 1,
          'show': 1,
          'still': 1,
          'make': 1,
          'good': 1,
          'film': 1,
          'na': 1,
          'relative': 1,
          'flop': 1,
          'cinema': 1,
          'deserves': 1,
          'lot': 1,
          'recognition': 1,
          'npos': 1}),
 Counter({'film': 9,
          'element': 7,
          'fifth': 6,
          'nthe': 6,
          'besson': 5,
          'bessons': 4,
          'world': 4,
          'vision': 4,
          'exciting': 3,
          'one': 3,
          'screen': 3,
          'biggest': 3,
          'story': 3,
          'made': 3,
          'still': 3,
          'luc': 2,
          'science': 2,
          'fiction': 2,
          'fantasy': 2,
          'could': 2,
          'actual': 2,
          'would': 2,
          'nbut': 2,
          'best': 2,
          'fire': 2,
          'new': 2,
          'york': 2,
          'left': 2,
          'leeloo': 2,
          'come': 2,
          'interesting': 2,
          'fascinating': 2,
          'designer': 2,
          'mark': 2,
          'look': 2,
          'absolutely': 2,
          'high': 2,
          'completely': 2,
          'alien': 2,
          'blonde': 2,
          'number': 2,
          'sense': 2,
          'nwhile': 2,
          'also': 2,
          'audience': 2,
          'imagination': 2,
          'really': 2,
          'ruby': 2,
          'rhod': 2,
          'makes': 2,
          'first': 2,
          'characters': 2,
          'funny': 2,
          'climax': 2,
          'work': 2,
          'original': 2,
          'cryptic': 1,
          'teaser': 1,
          'trailer': 1,
          'unspooling': 1,
          'moviehouses': 1,
          'quite': 1,
          'sometime': 1,
          'mu5t': 1,
          'found': 1,
          'nso': 1,
          'exactly': 1,
          'nafter': 1,
          'seeing': 1,
          'ambitious': 1,
          'muchshroudedinsecrecy': 1,
          'help': 1,
          'let': 1,
          'answer': 1,
          'nearly': 1,
          'clever': 1,
          'think': 1,
          'far': 1,
          'letdown': 1,
          'whole': 1,
          'wildly': 1,
          'imaginative': 1,
          'feast': 1,
          'senses': 1,
          'films': 1,
          'docreate': 1,
          'universe': 1,
          'unlike': 1,
          'presented': 1,
          'silver': 1,
          'irony': 1,
          'thing': 1,
          'kept': 1,
          'tight': 1,
          'wrapsthe': 1,
          'storylineis': 1,
          'conventional': 1,
          'dismayingly': 1,
          'pun': 1,
          'intended': 1,
          'nspeaking': 1,
          'vaguest': 1,
          'possible': 1,
          'terms': 1,
          'basics': 1,
          'plot': 1,
          'follows': 1,
          'year': 1,
          '2259': 1,
          'great': 1,
          'force': 1,
          'evil': 1,
          'threatens': 1,
          'consume': 1,
          'earth': 1,
          'four': 1,
          'elementsearth': 1,
          'wind': 1,
          'waterunited': 1,
          'stop': 1,
          'nfiguring': 1,
          'cabbie': 1,
          'korben': 1,
          'dallas': 1,
          'bruce': 1,
          'willis': 1,
          'shady': 1,
          'southerndrawling': 1,
          'entrepreneur': 1,
          'name': 1,
          'zorg': 1,
          'hilariously': 1,
          'hammy': 1,
          'gary': 1,
          'oldman': 1,
          'picking': 1,
          'professional': 1,
          'priest': 1,
          'ian': 1,
          'holm': 1,
          'mysterious': 1,
          'creature': 1,
          'named': 1,
          'milla': 1,
          'jovovich': 1,
          'nall': 1,
          'pieces': 1,
          'together': 1,
          'tidy': 1,
          'somewhat': 1,
          'underwhelmingand': 1,
          'unsurprisingfashion': 1,
          'denying': 1,
          'basic': 1,
          'holds': 1,
          'intrinsic': 1,
          'interest': 1,
          'nwhat': 1,
          'remains': 1,
          'however': 1,
          'brief': 1,
          'glimpses': 1,
          'created': 1,
          'production': 1,
          'dan': 1,
          'weil': 1,
          'director': 1,
          'photography': 1,
          'thierry': 1,
          'arbogast': 1,
          'visual': 1,
          'effects': 1,
          'supervisor': 1,
          'stetson': 1,
          'crew': 1,
          'digital': 1,
          'domain': 1,
          'mesmerizing': 1,
          'right': 1,
          'opening': 1,
          'moments': 1,
          'last': 1,
          'frenzied': 1,
          'cityscape': 1,
          'vibrant': 1,
          'dayglo': 1,
          'colors': 1,
          'tall': 1,
          'buildings': 1,
          'penetrating': 1,
          'clouds': 1,
          'swarm': 1,
          'cars': 1,
          'cabs': 1,
          'vehicles': 1,
          'flying': 1,
          'labyrinthian': 1,
          'skyways': 1,
          'breathtaking': 1,
          'behold': 1,
          'especially': 1,
          'wild': 1,
          'car': 1,
          'chase': 1,
          'sequence': 1,
          'early': 1,
          'captivating': 1,
          'people': 1,
          'inhabiting': 1,
          'settings': 1,
          'werent': 1,
          'equally': 1,
          'ever': 1,
          'nin': 1,
          'addition': 1,
          'exotic': 1,
          'menagerie': 1,
          'creatures': 1,
          'populate': 1,
          'bulky': 1,
          'robots': 1,
          'doglike': 1,
          'mangalores': 1,
          'humans': 1,
          'outfitted': 1,
          'costumes': 1,
          'eccentric': 1,
          'jeanpaul': 1,
          'gaulthier': 1,
          'known': 1,
          'creating': 1,
          'madonnas': 1,
          'pointy': 1,
          'bustier': 1,
          'getup': 1,
          'ambition': 1,
          'tour': 1,
          'ngaulthiers': 1,
          'outlandish': 1,
          'creations': 1,
          'worn': 1,
          'entirely': 1,
          'white': 1,
          'straps': 1,
          'feel': 1,
          'home': 1,
          'futuristic': 1,
          'fashion': 1,
          'runway': 1,
          'add': 1,
          'otherworldliness': 1,
          'bold': 1,
          'virtue': 1,
          'obstacle': 1,
          'reaching': 1,
          'mass': 1,
          'nfor': 1,
          'certain': 1,
          'things': 1,
          'may': 1,
          'bit': 1,
          'quirky': 1,
          'bizarre': 1,
          'ni': 1,
          'know': 1,
          'middle': 1,
          'america': 1,
          'make': 1,
          'outrageous': 1,
          'character': 1,
          'chris': 1,
          'tucker': 1,
          'flamboyant': 1,
          'disc': 1,
          'jockey': 1,
          'dennis': 1,
          'rodman': 1,
          'conservativehe': 1,
          'raucous': 1,
          'entrance': 1,
          'dressed': 1,
          'animal': 1,
          'print': 1,
          'dress': 1,
          'sporting': 1,
          'hairdo': 1,
          'shape': 1,
          'hair': 1,
          'dryer': 1,
          'speaking': 1,
          'pitches': 1,
          'rapid': 1,
          'speed': 1,
          'nat': 1,
          'hyper': 1,
          'energy': 1,
          'act': 1,
          'wears': 1,
          'welcome': 1,
          'quickly': 1,
          'nnot': 1,
          'irritating': 1,
          'strange': 1,
          'musical': 1,
          'blueskinned': 1,
          'chanteuse': 1,
          'diva': 1,
          'maiwenn': 1,
          'lebesco': 1,
          'singsand': 1,
          'dancesan': 1,
          'aria': 1,
          'unlikely': 1,
          'blend': 1,
          'classical': 1,
          'opera': 1,
          'techno': 1,
          'tune': 1,
          'entirety': 1,
          'longtime': 1,
          'collaborator': 1,
          'eric': 1,
          'serras': 1,
          'innovative': 1,
          'score': 1,
          'haunting': 1,
          'jarring': 1,
          'nthen': 1,
          'campy': 1,
          'touches': 1,
          'humor': 1,
          'coscripter': 1,
          'robert': 1,
          'kamen': 1,
          'sprinkle': 1,
          'throughout': 1,
          'often': 1,
          'silly': 1,
          'forced': 1,
          'comic': 1,
          'sexual': 1,
          'encounter': 1,
          'flight': 1,
          'attendant': 1,
          'highly': 1,
          'distracting': 1,
          'boot': 1,
          'storys': 1,
          'weakness': 1,
          'shines': 1,
          'conclusion': 1,
          'visually': 1,
          'aurally': 1,
          'spectacular': 1,
          'events': 1,
          'detailed': 1,
          'powerful': 1,
          'big': 1,
          'serious': 1,
          'dramatic': 1,
          'met': 1,
          'snickers': 1,
          'ambitiously': 1,
          'strives': 1,
          'profundity': 1,
          'even': 1,
          'begun': 1,
          'toward': 1,
          'nas': 1,
          'end': 1,
          'something': 1,
          'bigger': 1,
          'said': 1,
          'nthis': 1,
          'suspicion': 1,
          'confirmed': 1,
          'told': 1,
          'lobby': 1,
          'following': 1,
          'screening': 1,
          'imagine': 1,
          'filmmaker': 1,
          'watching': 1,
          'enemy': 1,
          'critics': 1,
          'half': 1,
          'lengthy': 1,
          'screenplay': 1,
          'second': 1,
          'halfnow': 1,
          'titled': 1,
          'mr': 1,
          'shadowis': 1,
          'waiting': 1,
          'nstill': 1,
          'despite': 1,
          'problems': 1,
          'artistic': 1,
          'triumph': 1,
          'rarely': 1,
          'filmmakers': 1,
          'audacious': 1,
          'undiluted': 1,
          'glory': 1,
          'nit': 1,
          'example': 1,
          'artists': 1,
          'fervid': 1,
          'transport': 1,
          'intoxicating': 1,
          'generally': 1,
          'seen': 1,
          'dreams': 1,
          'npos': 1}),
 Counter({'film': 10,
          'nthe': 7,
          'bad': 4,
          'things': 4,
          'friends': 4,
          'robert': 4,
          'much': 4,
          'movie': 3,
          'five': 3,
          'go': 3,
          'even': 3,
          'comedy': 3,
          'nit': 3,
          'fun': 3,
          'character': 3,
          'would': 3,
          'end': 2,
          'violence': 2,
          'couldnt': 2,
          'help': 2,
          'laura': 2,
          'diaz': 2,
          'daniel': 2,
          'nafter': 2,
          'hotel': 2,
          'room': 2,
          'puts': 2,
          'police': 2,
          'one': 2,
          'ever': 2,
          'n': 2,
          'nby': 2,
          'time': 2,
          'wedding': 2,
          'something': 2,
          'original': 2,
          'hateful': 2,
          'characters': 2,
          'get': 2,
          'beginning': 2,
          'death': 2,
          'eventually': 2,
          'seen': 2,
          'think': 2,
          'gives': 2,
          'usually': 2,
          'delightfully': 1,
          'morbid': 1,
          'year': 1,
          'goes': 1,
          'far': 1,
          'deep': 1,
          'outrageousness': 1,
          'material': 1,
          'starts': 1,
          'leaving': 1,
          'homes': 1,
          'los': 1,
          'angeles': 1,
          'bachelor': 1,
          'party': 1,
          'las': 1,
          'vegas': 1,
          'groomtobe': 1,
          'kyle': 1,
          'fisher': 1,
          'jon': 1,
          'favreau': 1,
          'married': 1,
          'controlling': 1,
          'weddingobsessed': 1,
          'cameron': 1,
          'real': 1,
          'estate': 1,
          'agent': 1,
          'boyd': 1,
          'christian': 1,
          'slater': 1,
          'quiet': 1,
          'charles': 1,
          'leland': 1,
          'orser': 1,
          'brothers': 1,
          'michael': 1,
          'jeremy': 1,
          'piven': 1,
          'family': 1,
          'man': 1,
          'adam': 1,
          'stern': 1,
          'wild': 1,
          'night': 1,
          'gambling': 1,
          'boozing': 1,
          'drugs': 1,
          'stripper': 1,
          'carla': 1,
          'scott': 1,
          'paid': 1,
          'comes': 1,
          'freak': 1,
          'accident': 1,
          'everyones': 1,
          'terror': 1,
          'killed': 1,
          'nas': 1,
          'two': 1,
          'options': 1,
          'prison': 1,
          'bury': 1,
          'desert': 1,
          'find': 1,
          'security': 1,
          'guard': 1,
          'enters': 1,
          'unexpectantly': 1,
          'sees': 1,
          'body': 1,
          'forced': 1,
          'kill': 1,
          'well': 1,
          'okay': 1,
          'option': 1,
          'nyou': 1,
          'forget': 1,
          'calling': 1,
          'says': 1,
          'return': 1,
          'home': 1,
          'draws': 1,
          'nearer': 1,
          'overcome': 1,
          'guilt': 1,
          'sets': 1,
          'elaborate': 1,
          'series': 1,
          'event': 1,
          'includes': 1,
          'murder': 1,
          'doublecrosses': 1,
          'inevitable': 1,
          'hell': 1,
          'actor': 1,
          'peter': 1,
          'bergs': 1,
          'feature': 1,
          'directing': 1,
          'debut': 1,
          'shockingly': 1,
          'perverse': 1,
          'wicked': 1,
          'theres': 1,
          'mary': 1,
          'wanted': 1,
          'pulls': 1,
          'stops': 1,
          'create': 1,
          'fresh': 1,
          'hilarious': 1,
          'requires': 1,
          'surprisingly': 1,
          'graphic': 1,
          'gore': 1,
          'slew': 1,
          'truly': 1,
          'deserve': 1,
          'screenplay': 1,
          'also': 1,
          'written': 1,
          'berg': 1,
          'put': 1,
          'mildly': 1,
          'funny': 1,
          'courageous': 1,
          'nduring': 1,
          'second': 1,
          'act': 1,
          'slightly': 1,
          'dwindle': 1,
          'due': 1,
          'undermine': 1,
          'humor': 1,
          'recouped': 1,
          'climax': 1,
          'believed': 1,
          'dialogue': 1,
          'edgy': 1,
          'inventive': 1,
          'proves': 1,
          'doesnt': 1,
          'necessarily': 1,
          'require': 1,
          'likable': 1,
          'extremely': 1,
          'enjoyable': 1,
          'ntheres': 1,
          'showing': 1,
          'ignorable': 1,
          'people': 1,
          'getting': 1,
          'desserts': 1,
          'ncameron': 1,
          'best': 1,
          'performance': 1,
          'date': 1,
          'lot': 1,
          'playing': 1,
          'turns': 1,
          'crazy': 1,
          'male': 1,
          'ndiaz': 1,
          'overblown': 1,
          'energy': 1,
          'really': 1,
          'deserves': 1,
          'supporting': 1,
          'actress': 1,
          'oscar': 1,
          'nomination': 1,
          'come': 1,
          'next': 1,
          'january': 1,
          'beating': 1,
          'someone': 1,
          'coat': 1,
          'hanger': 1,
          'reciting': 1,
          'lines': 1,
          'like': 1,
          'stuff': 1,
          'crapper': 1,
          'ass': 1,
          'upstairs': 1,
          'crack': 1,
          'ballstothewall': 1,
          'become': 1,
          'njeanne': 1,
          'tripplehorn': 1,
          'creates': 1,
          'another': 1,
          'sterns': 1,
          'wife': 1,
          'late': 1,
          'picture': 1,
          'discover': 1,
          'tough': 1,
          'kickboxer': 1,
          'messed': 1,
          'around': 1,
          'level': 1,
          'entertaining': 1,
          'surprising': 1,
          'njust': 1,
          'thought': 1,
          'could': 1,
          'predict': 1,
          'going': 1,
          'happen': 1,
          'little': 1,
          'twist': 1,
          'involving': 1,
          'absolutely': 1,
          'wacky': 1,
          'last': 1,
          'sequence': 1,
          'perfect': 1,
          'managed': 1,
          'overthetop': 1,
          'nalthough': 1,
          'enjoyed': 1,
          'immensely': 1,
          'let': 1,
          'make': 1,
          'clear': 1,
          'everyone': 1,
          'tasteless': 1,
          'anything': 1,
          'violent': 1,
          'bloody': 1,
          'rrated': 1,
          'offensive': 1,
          'nluckily': 1,
          'elements': 1,
          'prefer': 1,
          'since': 1,
          'clearly': 1,
          'shows': 1,
          'filmmakers': 1,
          'set': 1,
          'making': 1,
          'noholdsbarred': 1,
          'politically': 1,
          'incorrect': 1,
          'fact': 1,
          'slipped': 1,
          'cracks': 1,
          'mainstream': 1,
          'safe': 1,
          'widereleases': 1,
          'coming': 1,
          'lately': 1,
          'still': 1,
          'hope': 1,
          'hollywood': 1,
          'industry': 1,
          'npos': 1}),
 Counter({'rules': 8,
          'homer': 7,
          'larch': 5,
          'matter': 3,
          'dr': 3,
          'caine': 3,
          'nhe': 3,
          'didnt': 3,
          'world': 3,
          'go': 3,
          'apple': 3,
          'many': 3,
          'life': 3,
          'list': 3,
          'us': 3,
          'hard': 2,
          'imagine': 2,
          'movie': 2,
          'abortion': 2,
          'sensitive': 2,
          'even': 2,
          'cider': 2,
          'house': 2,
          'manages': 2,
          'subject': 2,
          'heart': 2,
          'young': 2,
          'man': 2,
          'maguire': 2,
          'ride': 2,
          'orphans': 2,
          'come': 2,
          'seeking': 2,
          'nfiguring': 2,
          'well': 2,
          'begins': 2,
          'new': 2,
          'yet': 2,
          'lifes': 2,
          'mr': 2,
          'becoming': 2,
          'pickers': 2,
          'posted': 2,
          'ignore': 2,
          'make': 2,
          'given': 2,
          'thine': 2,
          'follows': 2,
          'includes': 1,
          'incest': 1,
          'prominent': 1,
          'plot': 1,
          'devices': 1,
          'could': 1,
          'delicate': 1,
          'insightful': 1,
          'yes': 1,
          'enjoyable': 1,
          'nsomehow': 1,
          'keep': 1,
          'keel': 1,
          'face': 1,
          'harsh': 1,
          'allows': 1,
          'substantial': 1,
          'amount': 1,
          'shine': 1,
          'nset': 1,
          '1940s': 1,
          'film': 1,
          'tells': 1,
          'story': 1,
          'unique': 1,
          'named': 1,
          'wells': 1,
          'tobey': 1,
          'devil': 1,
          'nan': 1,
          'orphan': 1,
          'twice': 1,
          'rejected': 1,
          'infant': 1,
          'possible': 1,
          'adoptive': 1,
          'parents': 1,
          'grows': 1,
          'care': 1,
          'tutelage': 1,
          'wilbur': 1,
          'michael': 1,
          'little': 1,
          'voice': 1,
          'father': 1,
          'figure': 1,
          'st': 1,
          'cloud': 1,
          'obstetrician': 1,
          'abortionist': 1,
          'unhappily': 1,
          'pregnant': 1,
          'women': 1,
          'help': 1,
          'long': 1,
          'going': 1,
          'stay': 1,
          'orphanage': 1,
          'might': 1,
          'use': 1,
          'teaching': 1,
          'knows': 1,
          'obstetrics': 1,
          'nsoon': 1,
          'delivering': 1,
          'babies': 1,
          'like': 1,
          'professional': 1,
          'refuses': 1,
          'perform': 1,
          'abortions': 1,
          'instead': 1,
          'wondering': 1,
          'couples': 1,
          'behave': 1,
          'responsibly': 1,
          'nlarch': 1,
          'old': 1,
          'experienced': 1,
          'youthful': 1,
          'ideals': 1,
          'marvels': 1,
          'continues': 1,
          'high': 1,
          'expectations': 1,
          'people': 1,
          'nsuch': 1,
          'result': 1,
          'insulated': 1,
          'upbringing': 1,
          'nthough': 1,
          'skilled': 1,
          'certain': 1,
          'medical': 1,
          'procedures': 1,
          'remains': 1,
          'woefully': 1,
          'naive': 1,
          'ignorant': 1,
          'everything': 1,
          'else': 1,
          'finally': 1,
          'figures': 1,
          'order': 1,
          'find': 1,
          'place': 1,
          'must': 1,
          'nbefriending': 1,
          'couple': 1,
          'see': 1,
          'hitches': 1,
          'parlays': 1,
          'landing': 1,
          'job': 1,
          'picker': 1,
          'group': 1,
          'black': 1,
          'migrant': 1,
          'workers': 1,
          'orchard': 1,
          'lived': 1,
          'nthus': 1,
          'worldly': 1,
          'instruction': 1,
          'friend': 1,
          'candy': 1,
          'kendall': 1,
          'charlize': 1,
          'theron': 1,
          'astronauts': 1,
          'wife': 1,
          'willing': 1,
          'tutor': 1,
          'ntobey': 1,
          'cast': 1,
          'inherently': 1,
          'good': 1,
          'answers': 1,
          'questions': 1,
          'nmany': 1,
          'unaware': 1,
          'needed': 1,
          'asked': 1,
          'demonstrates': 1,
          'quiet': 1,
          'strength': 1,
          'thoughtful': 1,
          'curiosity': 1,
          'warm': 1,
          'appealing': 1,
          'nmichael': 1,
          'word': 1,
          'brilliant': 1,
          'caring': 1,
          'caretaker': 1,
          'helped': 1,
          'bring': 1,
          'ncalling': 1,
          'princes': 1,
          'maine': 1,
          'kings': 1,
          'england': 1,
          'ritualistic': 1,
          'goodnight': 1,
          'communicate': 1,
          'love': 1,
          'commitment': 1,
          'towards': 1,
          'children': 1,
          'without': 1,
          'maudlin': 1,
          'saccharine': 1,
          'ndelroy': 1,
          'lindo': 1,
          'less': 1,
          'ordinary': 1,
          'powerful': 1,
          'moments': 1,
          'rose': 1,
          'strong': 1,
          'charismatic': 1,
          'leader': 1,
          'joins': 1,
          'ndirector': 1,
          'lasse': 1,
          'hallstrom': 1,
          'whats': 1,
          'eating': 1,
          'gilbert': 1,
          'grape': 1,
          'screenwriternovelist': 1,
          'john': 1,
          'irving': 1,
          'according': 1,
          'garp': 1,
          'adapted': 1,
          'work': 1,
          'deserve': 1,
          'much': 1,
          'credit': 1,
          'balanced': 1,
          'approach': 1,
          'nregardless': 1,
          'ones': 1,
          'personal': 1,
          'stand': 1,
          'divisive': 1,
          'anyone': 1,
          'offended': 1,
          'evenhanded': 1,
          'treatment': 1,
          'used': 1,
          'filmmakers': 1,
          'nthe': 1,
          'title': 1,
          'reference': 1,
          'quarters': 1,
          'illiterate': 1,
          'apply': 1,
          'since': 1,
          'hand': 1,
          'writing': 1,
          'decide': 1,
          'along': 1,
          'ndr': 1,
          'way': 1,
          'acts': 1,
          'similarly': 1,
          'nthere': 1,
          'danger': 1,
          'line': 1,
          'reasoning': 1,
          'ngod': 1,
          'also': 1,
          'set': 1,
          'nunlike': 1,
          'gods': 1,
          'followed': 1,
          'promise': 1,
          'benefits': 1,
          'beyond': 1,
          'imagination': 1,
          'nand': 1,
          'continue': 1,
          'preferring': 1,
          'n': 1,
          'trust': 1,
          'lord': 1,
          'lean': 1,
          'unto': 1,
          'understanding': 1,
          'nproverbs': 1,
          '3': 1,
          '5': 1,
          'kjv': 1,
          'njust': 1,
          'builder': 1,
          'designers': 1,
          'blueprint': 1,
          'conductor': 1,
          'composers': 1,
          'score': 1,
          'shouldnt': 1,
          'follow': 1,
          'architect': 1,
          'blessing': 1,
          'npos': 1}),
 Counter({'vivian': 10,
          'woman': 9,
          'edward': 9,
          'pretty': 7,
          'roberts': 7,
          'gere': 6,
          'film': 6,
          'romantic': 5,
          'nthe': 5,
          'two': 4,
          'since': 4,
          'along': 4,
          'one': 4,
          'comedy': 3,
          'well': 3,
          'richard': 3,
          'julia': 3,
          'picture': 3,
          'takes': 3,
          'car': 3,
          'people': 3,
          'kiss': 3,
          'could': 3,
          'almost': 3,
          'work': 3,
          'also': 3,
          'especially': 3,
          'director': 2,
          'garry': 2,
          'marshall': 2,
          'question': 2,
          'films': 2,
          'story': 2,
          'even': 2,
          'believable': 2,
          'business': 2,
          'hollywood': 2,
          'boulevard': 2,
          'prostitute': 2,
          'ultimately': 2,
          'nthis': 2,
          'meeting': 2,
          'sex': 2,
          'offers': 2,
          'young': 2,
          'end': 2,
          'planned': 2,
          'finally': 2,
          'days': 2,
          'tells': 2,
          'anything': 2,
          'lips': 2,
          'act': 2,
          'drama': 2,
          'great': 2,
          'supporting': 2,
          'characters': 2,
          'written': 2,
          'award': 2,
          'motion': 2,
          'easy': 2,
          'see': 2,
          'became': 2,
          'actually': 2,
          'far': 2,
          'scenes': 2,
          'still': 2,
          'role': 2,
          'would': 2,
          'much': 2,
          'together': 2,
          'strong': 2,
          'scene': 2,
          'make': 2,
          'way': 2,
          'life': 2,
          'known': 1,
          'successful': 1,
          'highestgrossing': 1,
          'history': 1,
          'apparently': 1,
          'struck': 1,
          'gold': 1,
          'opened': 1,
          'quietly': 1,
          'summer': 1,
          '1990': 1,
          'thanks': 1,
          'positive': 1,
          'wordofmouth': 1,
          'able': 1,
          'reach': 1,
          'upwards': 1,
          '175million': 1,
          'theaters': 1,
          'alone': 1,
          'worked': 1,
          'lies': 1,
          'directly': 1,
          'charismatic': 1,
          'stars': 1,
          'none': 1,
          'original': 1,
          'winning': 1,
          'element': 1,
          'makes': 1,
          'entertaining': 1,
          'genuine': 1,
          'sweetness': 1,
          'innocence': 1,
          'rarely': 1,
          'palpable': 1,
          'todays': 1,
          'nedward': 1,
          'lewis': 1,
          'suave': 1,
          'extremely': 1,
          'wealthy': 1,
          'mogul': 1,
          'start': 1,
          'breaks': 1,
          'girlfriend': 1,
          'phone': 1,
          'nasty': 1,
          'argument': 1,
          'abruptly': 1,
          'friends': 1,
          'gets': 1,
          'lost': 1,
          'trying': 1,
          'find': 1,
          'hotel': 1,
          'nstopping': 1,
          'street': 1,
          'asks': 1,
          'obviously': 1,
          'directions': 1,
          'nagreeing': 1,
          'get': 1,
          'show': 1,
          'ten': 1,
          'bucks': 1,
          'accepts': 1,
          'strike': 1,
          'conversation': 1,
          'long': 1,
          'asked': 1,
          'penthouse': 1,
          'room': 1,
          'top': 1,
          'floor': 1,
          'lead': 1,
          'however': 1,
          'confides': 1,
          'hed': 1,
          'rather': 1,
          'someone': 1,
          'talk': 1,
          '300': 1,
          'spend': 1,
          'night': 1,
          'njust': 1,
          'hooker': 1,
          'named': 1,
          'beautiful': 1,
          'generally': 1,
          'upbeat': 1,
          'type': 1,
          'person': 1,
          'lend': 1,
          'understanding': 1,
          'ear': 1,
          'completely': 1,
          'opposite': 1,
          'next': 1,
          'morning': 1,
          'pay': 1,
          'threethousand': 1,
          'dollars': 1,
          'stay': 1,
          'six': 1,
          'nights': 1,
          'area': 1,
          'keeping': 1,
          'company': 1,
          'acting': 1,
          'companion': 1,
          'dinners': 1,
          'gettogethers': 1,
          'nsince': 1,
          'firmly': 1,
          'beginning': 1,
          'except': 1,
          'always': 1,
          'leads': 1,
          'unwanted': 1,
          'intimacy': 1,
          'dealing': 1,
          'customers': 1,
          'obligatory': 1,
          'rule': 1,
          'genre': 1,
          'says': 1,
          'third': 1,
          'truly': 1,
          'nallegedly': 1,
          'grim': 1,
          'downbeat': 1,
          'came': 1,
          'board': 1,
          'transformed': 1,
          'senses': 1,
          'word': 1,
          'classic': 1,
          'fairy': 1,
          'tale': 1,
          'la': 1,
          'cinderella': 1,
          'premise': 1,
          'hardly': 1,
          'portrait': 1,
          'prostitutes': 1,
          'hanging': 1,
          'streets': 1,
          'idealized': 1,
          'portrayal': 1,
          'possibly': 1,
          'nyou': 1,
          'honestly': 1,
          'dont': 1,
          'need': 1,
          'highiq': 1,
          'iq': 1,
          'matter': 1,
          'guess': 1,
          'old': 1,
          'grandma': 1,
          'bertha': 1,
          'sketchily': 1,
          'lessthangratifying': 1,
          'screenplay': 1,
          'winner': 1,
          'nand': 1,
          'yet': 1,
          'amidst': 1,
          'qualms': 1,
          'flaws': 1,
          'astoundingly': 1,
          'charming': 1,
          'definately': 1,
          'overnight': 1,
          'sensation': 1,
          'moviegoers': 1,
          'nyoud': 1,
          'amazed': 1,
          'bemusement': 1,
          'go': 1,
          'select': 1,
          'moments': 1,
          'whole': 1,
          'mind': 1,
          'ive': 1,
          'seen': 1,
          '1990s': 1,
          'nadditionally': 1,
          'belongs': 1,
          'success': 1,
          'attributed': 1,
          'nplaying': 1,
          'symbols': 1,
          'throughout': 1,
          '80s': 1,
          'pictures': 1,
          'american': 1,
          'gigolo': 1,
          'officer': 1,
          'gentleman': 1,
          'branches': 1,
          'play': 1,
          'quiet': 1,
          'shy': 1,
          'alluring': 1,
          'character': 1,
          'believably': 1,
          'sweep': 1,
          'feet': 1,
          'vice': 1,
          'versa': 1,
          'njulia': 1,
          'breakthrough': 1,
          '1988s': 1,
          'wellreceived': 1,
          'mistic': 1,
          'pizza': 1,
          '1989s': 1,
          'steel': 1,
          'magnolia': 1,
          'nominated': 1,
          'academy': 1,
          'radiant': 1,
          'funny': 1,
          'wordly': 1,
          'surprisingly': 1,
          'model': 1,
          'impressionistic': 1,
          'viewers': 1,
          'line': 1,
          'sheer': 1,
          'intelligence': 1,
          'nit': 1,
          'probably': 1,
          'merely': 1,
          'flake': 1,
          'screenwriter': 1,
          'j': 1,
          'f': 1,
          'lawton': 1,
          'clearly': 1,
          'cared': 1,
          'central': 1,
          'thing': 1,
          'nafter': 1,
          'meg': 1,
          'ryan': 1,
          'reigning': 1,
          'queen': 1,
          'comedies': 1,
          'latest': 1,
          'justreleased': 1,
          'runaway': 1,
          'bride': 1,
          'repairs': 1,
          'wonder': 1,
          'nroberts': 1,
          'continually': 1,
          'proven': 1,
          'actress': 1,
          'flare': 1,
          'efficiently': 1,
          'every': 1,
          'appears': 1,
          'difficult': 1,
          'fall': 1,
          'love': 1,
          'male': 1,
          'costar': 1,
          'nan': 1,
          'place': 1,
          'foolishly': 1,
          'coworkers': 1,
          'approaches': 1,
          'making': 1,
          'sexual': 1,
          'advances': 1,
          'nno': 1,
          'feel': 1,
          'cheap': 1,
          'previously': 1,
          'posing': 1,
          'professional': 1,
          'eloquent': 1,
          'lady': 1,
          'maddens': 1,
          'demean': 1,
          'betray': 1,
          'causes': 1,
          'exactly': 1,
          'leading': 1,
          'likes': 1,
          'particular': 1,
          'path': 1,
          'non': 1,
          'dreamy': 1,
          'side': 1,
          'filled': 1,
          'simply': 1,
          'effervescent': 1,
          'behold': 1,
          'enters': 1,
          'hotels': 1,
          'lounge': 1,
          'turn': 1,
          'around': 1,
          'reveal': 1,
          'marvelous': 1,
          'cocktail': 1,
          'dress': 1,
          'inner': 1,
          'outer': 1,
          'glowing': 1,
          'beauty': 1,
          'nanother': 1,
          'subtle': 1,
          'moment': 1,
          'lovingly': 1,
          'blowing': 1,
          'asleep': 1,
          'placing': 1,
          'unsure': 1,
          'getting': 1,
          'attached': 1,
          'man': 1,
          'may': 1,
          'forever': 1,
          'short': 1,
          'couple': 1,
          'n': 1,
          'blatantly': 1,
          'step': 1,
          'wrong': 1,
          'last': 1,
          'happy': 1,
          'ending': 1,
          'youd': 1,
          'expect': 1,
          'wouldnt': 1,
          'somehow': 1,
          'perhaps': 1,
          'undeniable': 1,
          'contrivances': 1,
          'misstep': 1,
          'put': 1,
          'damper': 1,
          'rest': 1,
          'though': 1,
          'magic': 1,
          'disaffirm': 1,
          'petty': 1,
          'problem': 1,
          'nhelped': 1,
          'warm': 1,
          'memorable': 1,
          'performance': 1,
          'laura': 1,
          'san': 1,
          'giacomo': 1,
          'vivians': 1,
          'best': 1,
          'friend': 1,
          'roommate': 1,
          'fabulously': 1,
          'catchy': 1,
          'soundtrack': 1,
          'songs': 1,
          'prominently': 1,
          'aid': 1,
          'movies': 1,
          'overall': 1,
          'fulfillment': 1,
          'sparkler': 1,
          'blueprint': 1,
          'quintessential': 1,
          'npos': 1}),
 Counter({'cousins': 8,
          'movie': 3,
          'film': 3,
          'nthe': 3,
          'like': 3,
          'larrys': 3,
          'wife': 3,
          'comedy': 2,
          'sense': 2,
          'cast': 2,
          'nlike': 2,
          'french': 2,
          'affair': 2,
          'tish': 2,
          'even': 2,
          'larry': 2,
          'maria': 2,
          'love': 2,
          'characters': 2,
          'first': 2,
          'role': 2,
          'every': 2,
          'performance': 2,
          'finally': 2,
          'dramatic': 1,
          'necessary': 1,
          'ingredients': 1,
          'witty': 1,
          'whimsical': 1,
          'script': 1,
          'inspired': 1,
          'performances': 1,
          'great': 1,
          'humor': 1,
          'large': 1,
          'wonderful': 1,
          'beautiful': 1,
          'scenery': 1,
          'vancouver': 1,
          'nits': 1,
          'weddings': 1,
          'marriage': 1,
          'family': 1,
          'infidelity': 1,
          'andoh': 1,
          'yeslove': 1,
          '3': 1,
          'men': 1,
          'baby': 1,
          'americanized': 1,
          'version': 1,
          '1975s': 1,
          'cousin': 1,
          'cousine': 1,
          'plot': 1,
          'complicated': 1,
          'goes': 1,
          'something': 1,
          'nlarry': 1,
          'tom': 1,
          'notsohappilymarried': 1,
          'ntom': 1,
          'starts': 1,
          'get': 1,
          'toms': 1,
          'pretend': 1,
          'nsoon': 1,
          'pretending': 1,
          'turns': 1,
          'running': 1,
          'ncousins': 1,
          'populated': 1,
          'wide': 1,
          'assortment': 1,
          'interesting': 1,
          'caricatures': 1,
          'acting': 1,
          'rate': 1,
          'smallest': 1,
          'supporting': 1,
          'virtually': 1,
          'deserves': 1,
          'mention': 1,
          'nted': 1,
          'danson': 1,
          'starring': 1,
          'gets': 1,
          'play': 1,
          'character': 1,
          'depth': 1,
          'sensitivity': 1,
          'nwhile': 1,
          'may': 1,
          'confident': 1,
          'charming': 1,
          'sam': 1,
          'malone': 1,
          'cheers': 1,
          'also': 1,
          'complex': 1,
          'vulnerable': 1,
          'ears': 1,
          'empty': 1,
          'space': 1,
          'nas': 1,
          'isabella': 1,
          'rossellini': 1,
          'joy': 1,
          'watch': 1,
          'shy': 1,
          'sensuous': 1,
          'immensely': 1,
          'alluring': 1,
          'nsean': 1,
          'young': 1,
          'perfectly': 1,
          'picture': 1,
          'perfect': 1,
          'superficial': 1,
          'trendy': 1,
          'makeup': 1,
          'consultant': 1,
          'nkeith': 1,
          'coogan': 1,
          'adventures': 1,
          'babysitting': 1,
          'wonderfully': 1,
          'weird': 1,
          'eccentric': 1,
          'rebellious': 1,
          'son': 1,
          'mitch': 1,
          'nand': 1,
          'lloyd': 1,
          'bridges': 1,
          'tour': 1,
          'de': 1,
          'force': 1,
          'mitchs': 1,
          'rambunctious': 1,
          'grandfather': 1,
          'provides': 1,
          'best': 1,
          'lines': 1,
          'laughs': 1,
          'moonstruck': 1,
          'mix': 1,
          'drama': 1,
          'larger': 1,
          'life': 1,
          'keen': 1,
          'absurd': 1,
          'nit': 1,
          'understands': 1,
          'human': 1,
          'nature': 1,
          'extremely': 1,
          'well': 1,
          'milks': 1,
          'possible': 1,
          'laugh': 1,
          'hearttug': 1,
          'nhow': 1,
          'often': 1,
          'see': 1,
          'believe': 1,
          'two': 1,
          'truly': 1,
          'sincerely': 1,
          'care': 1,
          'friends': 1,
          'lovers': 1,
          'nwell': 1,
          'credit': 1,
          'nlets': 1,
          'hope': 1,
          'continue': 1,
          'provide': 1,
          'us': 1,
          'inspiration': 1,
          'make': 1,
          'films': 1,
          'npos': 1}),
 Counter({'gay': 5,
          'nthe': 3,
          'one': 3,
          'couple': 2,
          'lane': 2,
          'nwilliams': 2,
          'drag': 2,
          'star': 2,
          'men': 2,
          'world': 2,
          'youll': 2,
          'remake': 1,
          'la': 1,
          'cage': 1,
          'aux': 1,
          'folles': 1,
          'features': 1,
          'pretending': 1,
          'straight': 1,
          'order': 1,
          'pull': 1,
          'wool': 1,
          'eyes': 1,
          'sons': 1,
          'future': 1,
          'inlaws': 1,
          'robin': 1,
          'williams': 1,
          'nathan': 1,
          'archetypal': 1,
          'less': 1,
          'kind': 1,
          'might': 1,
          'put': 1,
          'stereotypical': 1,
          'gays': 1,
          'possible': 1,
          'owns': 1,
          'nightclub': 1,
          'featuring': 1,
          'queens': 1,
          'partner': 1,
          'performs': 1,
          'featured': 1,
          'nthey': 1,
          'live': 1,
          'club': 1,
          'could': 1,
          'possibly': 1,
          'mistaken': 1,
          'heterosexual': 1,
          'abode': 1,
          'excellent': 1,
          'surprise': 1,
          'ngene': 1,
          'hackman': 1,
          'rightwing': 1,
          'potential': 1,
          'fatherinlaw': 1,
          'refreshing': 1,
          'comedic': 1,
          'roles': 1,
          'real': 1,
          'nhis': 1,
          'attempted': 1,
          'transformation': 1,
          'obviously': 1,
          'straightshooting': 1,
          'uncle': 1,
          'hilarious': 1,
          'nperhaps': 1,
          'personal': 1,
          'failing': 1,
          'part': 1,
          'crying': 1,
          'screaming': 1,
          'queen': 1,
          'faux': 1,
          'high': 1,
          'drama': 1,
          'grates': 1,
          'nerves': 1,
          'first': 1,
          'minutes': 1,
          'film': 1,
          'filled': 1,
          'nluckily': 1,
          'least': 1,
          'doesnt': 1,
          'last': 1,
          'long': 1,
          'rest': 1,
          'story': 1,
          'focuses': 1,
          'relationship': 1,
          'son': 1,
          'deception': 1,
          'question': 1,
          'stereotypes': 1,
          'touchy': 1,
          'nthese': 1,
          'guys': 1,
          'personify': 1,
          'homophobic': 1,
          'image': 1,
          'nyou': 1,
          'almost': 1,
          'hear': 1,
          'swishing': 1,
          'nif': 1,
          'think': 1,
          'supposed': 1,
          'representative': 1,
          'every': 1,
          'man': 1,
          'outraged': 1,
          'nbut': 1,
          'accept': 1,
          'view': 1,
          'movie': 1,
          'individuals': 1,
          'love': 1,
          'nyour': 1,
          'choice': 1,
          'npos': 1}),
 Counter({'film': 24,
          'story': 13,
          'films': 11,
          'would': 10,
          'know': 10,
          'trilogy': 9,
          'star': 8,
          'wars': 8,
          'also': 8,
          'series': 8,
          'one': 8,
          'jedi': 8,
          'force': 8,
          'nthe': 8,
          'review': 6,
          'even': 6,
          'movie': 6,
          'many': 6,
          'significant': 6,
          'skywalker': 6,
          'never': 6,
          'plot': 5,
          'movies': 5,
          'least': 5,
          'details': 5,
          'federation': 5,
          'phantom': 4,
          'menace': 4,
          'new': 4,
          'since': 4,
          'years': 4,
          'nand': 4,
          'get': 4,
          'another': 4,
          'first': 4,
          'familiar': 4,
          'anakin': 4,
          'become': 4,
          'something': 4,
          'history': 4,
          'seems': 4,
          'two': 4,
          'jinn': 4,
          'seen': 3,
          'may': 3,
          '1': 3,
          'note': 3,
          'still': 3,
          'nas': 3,
          'nnever': 3,
          'mind': 3,
          'fact': 3,
          'much': 3,
          'going': 3,
          'aspect': 3,
          'time': 3,
          'reviews': 3,
          'factors': 3,
          'must': 3,
          'three': 3,
          'empire': 3,
          'back': 3,
          'order': 3,
          'mentioned': 3,
          'come': 3,
          'simply': 3,
          'nwe': 3,
          'evil': 3,
          'long': 3,
          'basic': 3,
          'major': 3,
          'beginning': 3,
          'nbut': 3,
          'spirit': 3,
          'nwere': 3,
          'n': 2,
          'critics': 2,
          'ive': 2,
          'ted': 2,
          'said': 2,
          'write': 2,
          'already': 2,
          'action': 2,
          'analyze': 2,
          'take': 2,
          'lot': 2,
          'like': 2,
          'way': 2,
          'instead': 2,
          'possible': 2,
          'reader': 2,
          'begin': 2,
          'specific': 2,
          'aspects': 2,
          'specifics': 2,
          'next': 2,
          'four': 2,
          'made': 2,
          'obvious': 2,
          'last': 2,
          'actually': 2,
          'assumed': 2,
          'nin': 2,
          'explained': 2,
          'reasons': 2,
          'nwith': 2,
          'viewers': 2,
          'points': 2,
          'spoilers': 2,
          'ncritics': 2,
          'sense': 2,
          'impossible': 2,
          'reviewing': 2,
          'universal': 2,
          'significance': 2,
          'part': 2,
          'considering': 2,
          'modern': 2,
          'society': 2,
          'completely': 2,
          'obiwan': 2,
          'kenobi': 2,
          'whose': 2,
          'feel': 2,
          'nwhat': 2,
          'complex': 2,
          'nto': 2,
          'havent': 2,
          'voice': 2,
          'saga': 2,
          'especially': 2,
          'top': 2,
          'could': 2,
          'ni': 2,
          'greatness': 2,
          'tell': 2,
          'clarify': 2,
          'yet': 2,
          'elements': 2,
          'vast': 2,
          'weve': 2,
          'nits': 2,
          'keep': 2,
          'sometimes': 2,
          'rather': 2,
          'times': 2,
          'called': 2,
          'quigon': 2,
          'queen': 2,
          'viceroy': 2,
          'character': 2,
          'reveal': 2,
          'well': 2,
          'background': 2,
          'doesnt': 2,
          'gives': 2,
          'involving': 2,
          'fun': 2,
          '19': 1,
          '1999': 1,
          '5': 1,
          'p': 1,
          'crossgates': 1,
          'cinema': 1,
          '18': 1,
          'guilderland': 1,
          'theater': 1,
          'brother': 1,
          'john': 1,
          '8': 1,
          '50': 1,
          'ntheater': 1,
          'rating': 1,
          'excellent': 1,
          'seats': 1,
          'sound': 1,
          'picture': 1,
          'longest': 1,
          'ever': 1,
          'written': 1,
          'scratches': 1,
          'surface': 1,
          'nid': 1,
          'recommend': 1,
          'read': 1,
          'form': 1,
          'critical': 1,
          'analysis': 1,
          'friend': 1,
          'fellow': 1,
          'critic': 1,
          'prigge': 1,
          'waiting': 1,
          'seven': 1,
          'old': 1,
          'everyone': 1,
          'internet': 1,
          'dissected': 1,
          'discussed': 1,
          'released': 1,
          'theres': 1,
          'terms': 1,
          'special': 1,
          'effects': 1,
          'longterm': 1,
          'every': 1,
          'energy': 1,
          'wouldnt': 1,
          'cover': 1,
          'everything': 1,
          'ill': 1,
          'try': 1,
          'different': 1,
          'usual': 1,
          'casually': 1,
          'talking': 1,
          'directly': 1,
          'nbefore': 1,
          'analyzing': 1,
          'general': 1,
          'considered': 1,
          'skip': 1,
          'paragraphs': 1,
          'several': 1,
          'produced': 1,
          'account': 1,
          'missing': 1,
          'initial': 1,
          'installments': 1,
          'episode': 1,
          'ngeorge': 1,
          'lucas': 1,
          'creator': 1,
          'probably': 1,
          'people': 1,
          'firstproduced': 1,
          'strikes': 1,
          'return': 1,
          'second': 1,
          'chronologically': 1,
          'media': 1,
          'interviews': 1,
          'past': 1,
          'cant': 1,
          'recall': 1,
          'writer': 1,
          'director': 1,
          'vaguely': 1,
          'storylines': 1,
          'err': 1,
          'nsecond': 1,
          'nwell': 1,
          'mean': 1,
          'thorough': 1,
          'unfortunately': 1,
          'serve': 1,
          'proceed': 1,
          'caution': 1,
          'personal': 1,
          'policy': 1,
          'intentionally': 1,
          'able': 1,
          'make': 1,
          'viewing': 1,
          'reviewed': 1,
          'nearly': 1,
          'justice': 1,
          'without': 1,
          'breaking': 1,
          'rule': 1,
          '2': 1,
          'breaks': 1,
          'law': 1,
          'roger': 1,
          'ebert': 1,
          'coined': 1,
          'nbecause': 1,
          'outside': 1,
          'play': 1,
          'difficult': 1,
          'autonomous': 1,
          'nfirst': 1,
          'catalog': 1,
          'young': 1,
          'grow': 1,
          'ruler': 1,
          'darth': 1,
          'vader': 1,
          'father': 1,
          'luke': 1,
          'lead': 1,
          'successful': 1,
          'revolution': 1,
          'ben': 1,
          'trainer': 1,
          'ways': 1,
          'attempts': 1,
          'knight': 1,
          'fail': 1,
          'thus': 1,
          'fall': 1,
          'dark': 1,
          'side': 1,
          'kind': 1,
          'determines': 1,
          'fate': 1,
          'manipulated': 1,
          'minds': 1,
          'expanded': 1,
          'enough': 1,
          'believe': 1,
          'dont': 1,
          'sure': 1,
          'ruling': 1,
          'galaxy': 1,
          'likely': 1,
          'longer': 1,
          'government': 1,
          'earth': 1,
          'fascinating': 1,
          'seemed': 1,
          'subtle': 1,
          'definite': 1,
          'complexity': 1,
          'nalso': 1,
          'supposed': 1,
          'thousands': 1,
          'comic': 1,
          'books': 1,
          'paperbacks': 1,
          'published': 1,
          'ended': 1,
          'nmost': 1,
          'notably': 1,
          'regarding': 1,
          'emperor': 1,
          'senator': 1,
          'name': 1,
          'palpatine': 1,
          'nfor': 1,
          'kept': 1,
          'paraphernalia': 1,
          'recognizing': 1,
          'actor': 1,
          'chapter': 1,
          'assume': 1,
          'groundwork': 1,
          'laid': 1,
          'including': 1,
          'behind': 1,
          'knights': 1,
          'nunfortunately': 1,
          'opposite': 1,
          'builds': 1,
          'detailed': 1,
          'didnt': 1,
          'liked': 1,
          'falls': 1,
          'short': 1,
          'nif': 1,
          'youre': 1,
          'complete': 1,
          'episodes': 1,
          '3': 1,
          'digress': 1,
          'nive': 1,
          'touched': 1,
          'nall': 1,
          'necessary': 1,
          'disclaiming': 1,
          'go': 1,
          'show': 1,
          'individual': 1,
          'unlike': 1,
          'love': 1,
          'late': 1,
          '1970s': 1,
          'similarity': 1,
          'helps': 1,
          'flaw': 1,
          'filmmaking': 1,
          'process': 1,
          'rings': 1,
          'unoriginality': 1,
          'sorted': 1,
          'confusing': 1,
          'told': 1,
          'army': 1,
          'known': 1,
          'trade': 1,
          'set': 1,
          'blockade': 1,
          'around': 1,
          'seemingly': 1,
          'insignificant': 1,
          'planet': 1,
          'naboo': 1,
          'given': 1,
          'purpose': 1,
          'opts': 1,
          'moving': 1,
          'quickly': 1,
          'introduced': 1,
          'master': 1,
          'neeson': 1,
          'apprentice': 1,
          'mcgregor': 1,
          'acting': 1,
          'ambassadors': 1,
          'sort': 1,
          'hopes': 1,
          'ending': 1,
          'hostility': 1,
          'planets': 1,
          'amidala': 1,
          'portman': 1,
          'leader': 1,
          'alien': 1,
          'following': 1,
          'orders': 1,
          'strange': 1,
          'mythical': 1,
          'older': 1,
          'human': 1,
          'man': 1,
          'face': 1,
          'body': 1,
          'covered': 1,
          'shadowed': 1,
          'black': 1,
          'robe': 1,
          'hood': 1,
          'wears': 1,
          'nhe': 1,
          'referred': 1,
          'lord': 1,
          'sidious': 1,
          'appearance': 1,
          'creepy': 1,
          'obviously': 1,
          'characters': 1,
          'nsidious': 1,
          'communicates': 1,
          'digital': 1,
          'transmissions': 1,
          'person': 1,
          'nclearly': 1,
          'actual': 1,
          'whereabouts': 1,
          'wants': 1,
          'secret': 1,
          'identity': 1,
          'openly': 1,
          'revealed': 1,
          'clear': 1,
          'feeling': 1,
          'delve': 1,
          'spring': 1,
          'within': 1,
          'minutes': 1,
          'hero': 1,
          'fighting': 1,
          'lives': 1,
          'begins': 1,
          'move': 1,
          'along': 1,
          'works': 1,
          'manner': 1,
          'miniplot': 1,
          'adventure': 1,
          'nthere': 1,
          'miniplotswithinplots': 1,
          'describe': 1,
          'hook': 1,
          'relied': 1,
          'type': 1,
          'storytelling': 1,
          'limits': 1,
          'technology': 1,
          'screenplays': 1,
          'limiting': 1,
          'limitlessness': 1,
          'unique': 1,
          'traits': 1,
          'takes': 1,
          'place': 1,
          'generation': 1,
          'original': 1,
          'means': 1,
          'unclear': 1,
          'andor': 1,
          'unexplained': 1,
          'cleared': 1,
          'epic': 1,
          'storyline': 1,
          'discovery': 1,
          '10yearold': 1,
          'lloyd': 1,
          'introduction': 1,
          'council': 1,
          'briefly': 1,
          'summarize': 1,
          'stumbles': 1,
          'upon': 1,
          'attempt': 1,
          'buy': 1,
          'parts': 1,
          'amidalas': 1,
          'spaceship': 1,
          'damaged': 1,
          'efforts': 1,
          'free': 1,
          'ntheir': 1,
          'meeting': 1,
          'tatooine': 1,
          'mostly': 1,
          'chance': 1,
          'course': 1,
          'chalks': 1,
          'njinn': 1,
          'great': 1,
          'natural': 1,
          'power': 1,
          'subplot': 1,
          'bet': 1,
          'fantastic': 1,
          'race': 1,
          'enter': 1,
          'nthis': 1,
          'provides': 1,
          'elaboration': 1,
          'explanation': 1,
          'important': 1,
          'upsetting': 1,
          'element': 1,
          'seriously': 1,
          'undermines': 1,
          'mystical': 1,
          'transforms': 1,
          'physical': 1,
          'scientific': 1,
          'unnecessary': 1,
          'nby': 1,
          'third': 1,
          'act': 1,
          'tied': 1,
          'together': 1,
          'execution': 1,
          'funny': 1,
          'reality': 1,
          'world': 1,
          'embedded': 1,
          'mythology': 1,
          'agelike': 1,
          'philosophy': 1,
          'religion': 1,
          'solution': 1,
          'conflicts': 1,
          'violence': 1,
          'nnot': 1,
          'technique': 1,
          'hasnt': 1,
          'used': 1,
          'reallife': 1,
          'situations': 1,
          'countless': 1,
          'throughout': 1,
          'ultimate': 1,
          'powers': 1,
          'good': 1,
          'versus': 1,
          'exciting': 1,
          'matter': 1,
          'nit': 1,
          'border': 1,
          'cartoonish': 1,
          'thats': 1,
          'appealing': 1,
          'inner': 1,
          'child': 1,
          'reason': 1,
          'entire': 1,
          'exists': 1,
          'big': 1,
          'delivers': 1,
          'exactly': 1,
          'youd': 1,
          'expect': 1,
          'succeeds': 1,
          'always': 1,
          'truly': 1,
          'achieves': 1,
          'nso': 1,
          'things': 1,
          'done': 1,
          'heart': 1,
          'filmmakers': 1,
          'concentrated': 1,
          'bit': 1,
          'limited': 1,
          'far': 1,
          'bad': 1,
          'embraces': 1,
          'sheer': 1,
          'npos': 1}),
 Counter({'story': 14,
          'us': 13,
          'film': 10,
          'nthe': 10,
          'marriage': 8,
          'ben': 7,
          'films': 6,
          'katie': 6,
          'characters': 6,
          'viewer': 5,
          'willis': 5,
          'years': 5,
          'one': 5,
          'see': 4,
          'year': 4,
          'two': 4,
          'times': 4,
          'family': 3,
          'heartbreaking': 3,
          '15': 3,
          'good': 3,
          'life': 3,
          'flashbacks': 3,
          'like': 3,
          'script': 3,
          'certainly': 3,
          'performance': 3,
          'fall': 2,
          'lives': 2,
          'written': 2,
          'michelle': 2,
          'pfeiffer': 2,
          'jordan': 2,
          'together': 2,
          'shows': 2,
          'main': 2,
          'day': 2,
          'nben': 2,
          'dont': 2,
          'say': 2,
          'grown': 2,
          'apart': 2,
          'sophisticated': 2,
          'things': 2,
          'nicely': 2,
          'therapist': 2,
          'told': 2,
          'strong': 2,
          'sense': 2,
          'really': 2,
          'stepmom': 2,
          'touching': 2,
          'realistic': 2,
          'many': 2,
          'picture': 2,
          'movies': 2,
          'actor': 2,
          'make': 2,
          'npfeiffers': 2,
          'real': 2,
          'hearts': 2,
          'still': 2,
          'rob': 1,
          'reiner': 1,
          'second': 1,
          'movie': 1,
          'touches': 1,
          'way': 1,
          'rarely': 1,
          'touched': 1,
          'everyday': 1,
          'usually': 1,
          'nwell': 1,
          '1999': 1,
          'instant': 1,
          'classic': 1,
          'dysfunctional': 1,
          'american': 1,
          'beauty': 1,
          'highs': 1,
          'lows': 1,
          'well': 1,
          'insightful': 1,
          'made': 1,
          'majority': 1,
          'audience': 1,
          'including': 1,
          'cry': 1,
          'tells': 1,
          'bruce': 1,
          'asks': 1,
          'question': 1,
          'survive': 1,
          'individuals': 1,
          'come': 1,
          'spent': 1,
          'chunk': 1,
          'bad': 1,
          'entire': 1,
          'collapsing': 1,
          'live': 1,
          'want': 1,
          'devastate': 1,
          'children': 1,
          'fact': 1,
          'parents': 1,
          'longer': 1,
          'least': 1,
          'love': 1,
          'anymore': 1,
          'cartoonist': 1,
          'crossword': 1,
          'puzzle': 1,
          'writer': 1,
          'fifteen': 1,
          'follow': 1,
          'different': 1,
          'views': 1,
          'nkatie': 1,
          'organized': 1,
          'type': 1,
          'wants': 1,
          'plan': 1,
          'everything': 1,
          'spontaneous': 1,
          'adventurous': 1,
          'individual': 1,
          'doesnt': 1,
          'mind': 1,
          'differently': 1,
          'planned': 1,
          'plays': 1,
          'opens': 1,
          'sharing': 1,
          'nas': 1,
          'progresses': 1,
          'switches': 1,
          'talking': 1,
          'stories': 1,
          'nthis': 1,
          'method': 1,
          'highly': 1,
          'effective': 1,
          'changing': 1,
          'slowly': 1,
          'growing': 1,
          'nthrough': 1,
          'get': 1,
          'eyes': 1,
          'gives': 1,
          'three': 1,
          'dimensional': 1,
          'believable': 1,
          'screenplay': 1,
          'jessie': 1,
          'nelson': 1,
          'alan': 1,
          'zweibel': 1,
          'dragnet': 1,
          'earth': 1,
          'work': 1,
          'hits': 1,
          'chord': 1,
          'within': 1,
          'much': 1,
          'another': 1,
          'nelsons': 1,
          'open': 1,
          'honesty': 1,
          'outlook': 1,
          'feel': 1,
          'uncomfortable': 1,
          'situations': 1,
          'undeniably': 1,
          'familiar': 1,
          'families': 1,
          'days': 1,
          'go': 1,
          'hard': 1,
          'must': 1,
          'nif': 1,
          'wasnt': 1,
          'first': 1,
          'minutes': 1,
          'writers': 1,
          'wrote': 1,
          'rugged': 1,
          'flawed': 1,
          'would': 1,
          'best': 1,
          'nbruce': 1,
          'usual': 1,
          'actionadventure': 1,
          'star': 1,
          'turned': 1,
          'around': 1,
          'past': 1,
          'went': 1,
          'man': 1,
          'typecast': 1,
          'role': 1,
          'action': 1,
          'distinguished': 1,
          'last': 1,
          'summers': 1,
          'sixth': 1,
          'world': 1,
          'fed': 1,
          'nalthough': 1,
          'wouldnt': 1,
          'pick': 1,
          'choice': 1,
          'handles': 1,
          'shines': 1,
          'powerful': 1,
          'scenes': 1,
          'enough': 1,
          'definite': 1,
          'contender': 1,
          'comes': 1,
          'awards': 1,
          'season': 1,
          'nwhere': 1,
          'start': 1,
          'spellbinding': 1,
          'ultimately': 1,
          'brings': 1,
          'character': 1,
          'charisma': 1,
          'emotion': 1,
          'wonder': 1,
          'possible': 1,
          'someone': 1,
          'portray': 1,
          'person': 1,
          'realism': 1,
          'recognized': 1,
          'academy': 1,
          'next': 1,
          'spring': 1,
          'watched': 1,
          'moving': 1,
          '1999s': 1,
          'yet': 1,
          'funny': 1,
          'razor': 1,
          'sharp': 1,
          'evens': 1,
          'laughs': 1,
          'tears': 1,
          'keep': 1,
          'hooked': 1,
          'nsuperb': 1,
          'acting': 1,
          'direction': 1,
          'writing': 1,
          'soundtrack': 1,
          'always': 1,
          'sets': 1,
          'mood': 1,
          'beautifully': 1,
          'composed': 1,
          'eric': 1,
          'clapton': 1,
          'marc': 1,
          'shaiman': 1,
          'unforgettable': 1,
          'motion': 1,
          'touch': 1,
          'viewers': 1,
          'across': 1,
          'country': 1,
          'become': 1,
          'talked': 1,
          'major': 1,
          'high': 1,
          'points': 1,
          'fights': 1,
          'constantly': 1,
          'accuse': 1,
          'whose': 1,
          'fault': 1,
          'collapsed': 1,
          'although': 1,
          'also': 1,
          'hate': 1,
          'tell': 1,
          'share': 1,
          'deep': 1,
          'connection': 1,
          'inside': 1,
          'somewhere': 1,
          'bottom': 1,
          'line': 1,
          'wonderful': 1,
          'enchanting': 1,
          'none': 1,
          'recent': 1,
          'npos': 1}),
 Counter({'beatty': 11,
          'film': 7,
          'also': 6,
          'nthe': 6,
          'well': 6,
          'bulworth': 5,
          'american': 4,
          'nand': 4,
          'gives': 3,
          'system': 3,
          'senator': 3,
          'nits': 3,
          'makes': 3,
          'fun': 3,
          'see': 3,
          'warren': 2,
          'written': 2,
          'good': 2,
          'kill': 2,
          'completely': 2,
          'politics': 2,
          'assistant': 2,
          'platt': 2,
          'nina': 2,
          'berry': 2,
          'funny': 2,
          'somewhat': 2,
          'great': 2,
          'isnt': 2,
          'afraid': 2,
          'seeing': 2,
          'face': 2,
          'n': 2,
          'characters': 2,
          'could': 2,
          '61': 2,
          'year': 2,
          'old': 2,
          'rapping': 2,
          'quite': 2,
          'like': 2,
          'script': 2,
          'many': 2,
          'nbulworth': 2,
          'returns': 1,
          'screens': 1,
          'funniest': 1,
          'craziest': 1,
          'hard': 1,
          'hitting': 1,
          'movie': 1,
          'career': 1,
          'nbased': 1,
          'story': 1,
          'concocted': 1,
          'insight': 1,
          'thinks': 1,
          'government': 1,
          'nbeatty': 1,
          'stars': 1,
          'jay': 1,
          'whos': 1,
          'going': 1,
          'nervous': 1,
          'breakdown': 1,
          'nafter': 1,
          'hiring': 1,
          'someone': 1,
          'changes': 1,
          'campaign': 1,
          'strategy': 1,
          'tells': 1,
          'honest': 1,
          'truth': 1,
          'whats': 1,
          '_really_': 1,
          'happening': 1,
          'much': 1,
          'annoyance': 1,
          'dennis': 1,
          'murphy': 1,
          'ninstead': 1,
          'everyone': 1,
          'hating': 1,
          'public': 1,
          'love': 1,
          'nhowever': 1,
          'inside': 1,
          'party': 1,
          'people': 1,
          'want': 1,
          'hired': 1,
          'assassin': 1,
          'strikes': 1,
          'relationship': 1,
          'black': 1,
          'girl': 1,
          'remarkable': 1,
          'released': 1,
          'nmuch': 1,
          'open': 1,
          'rather': 1,
          'subdued': 1,
          'primary': 1,
          'colours': 1,
          'barely': 1,
          'politic': 1,
          'name': 1,
          'outrageous': 1,
          'remarks': 1,
          'potential': 1,
          'voters': 1,
          'true': 1,
          'let': 1,
          'loose': 1,
          'subject': 1,
          'ntalking': 1,
          'hes': 1,
          'excellent': 1,
          'role': 1,
          'demented': 1,
          'clearing': 1,
          'rare': 1,
          'sight': 1,
          'indeed': 1,
          'neven': 1,
          'dick': 1,
          'tracy': 1,
          'straighten': 1,
          'actor': 1,
          'opportunity': 1,
          'indulge': 1,
          'gusto': 1,
          'homeboy': 1,
          'seen': 1,
          'believed': 1,
          'nice': 1,
          'laugh': 1,
          'nsecond': 1,
          'best': 1,
          'oliver': 1,
          'flustered': 1,
          'coke': 1,
          'snorting': 1,
          'goes': 1,
          'top': 1,
          'finally': 1,
          'snaps': 1,
          'nhalle': 1,
          'fine': 1,
          'sexy': 1,
          'intellectual': 1,
          'comes': 1,
          'nalso': 1,
          'popping': 1,
          'supporting': 1,
          'cast': 1,
          'paul': 1,
          'sorvino': 1,
          'wit': 1,
          'h': 1,
          'strange': 1,
          'accent': 1,
          'laurie': 1,
          'metcalf': 1,
          'exact': 1,
          'shes': 1,
          'played': 1,
          'christine': 1,
          'baranski': 1,
          'cybill': 1,
          'fame': 1,
          'bullworths': 1,
          'wife': 1,
          'contribute': 1,
          'political': 1,
          'ubiquitous': 1,
          'larry': 1,
          'king': 1,
          'appearance': 1,
          'shock': 1,
          'writing': 1,
          'directing': 1,
          'par': 1,
          'direction': 1,
          'nearly': 1,
          'sitcom': 1,
          'suits': 1,
          'perfectly': 1,
          'gangland': 1,
          'parts': 1,
          'handled': 1,
          'raps': 1,
          'actually': 1,
          'produced': 1,
          'humorous': 1,
          'clever': 1,
          'ntheyre': 1,
          'cringe': 1,
          'inducing': 1,
          'least': 1,
          'points': 1,
          'society': 1,
          'america': 1,
          'today': 1,
          'make': 1,
          'bold': 1,
          'statements': 1,
          'flawed': 1,
          'nbest': 1,
          'thought': 1,
          'provoking': 1,
          'directed': 1,
          'way': 1,
          'feels': 1,
          'light': 1,
          'feather': 1,
          'entertaining': 1,
          'ntheres': 1,
          'rap': 1,
          'soundtrack': 1,
          'chosen': 1,
          'tunes': 1,
          'advantages': 1,
          'flaws': 1,
          'nperhaps': 1,
          'embarrassing': 1,
          'man': 1,
          'irrelevant': 1,
          'nin': 1,
          'fact': 1,
          'theres': 1,
          'little': 1,
          'except': 1,
          'language': 1,
          'heavy': 1,
          'expected': 1,
          'worth': 1,
          'watching': 1,
          'na': 1,
          'david': 1,
          'wilcock': 1,
          'review': 1,
          '1999': 1,
          'know': 1,
          'kids': 1,
          'norville': 1,
          'barnes': 1,
          'npos': 1}),
 Counter({'patch': 6,
          'adams': 5,
          'medical': 5,
          'patchs': 5,
          'williams': 4,
          'first': 4,
          'nthe': 4,
          'role': 3,
          'institution': 3,
          'script': 3,
          'long': 2,
          'like': 2,
          'hunting': 2,
          'nit': 2,
          'dramatic': 2,
          'nhis': 2,
          'dreams': 2,
          'may': 2,
          'come': 2,
          'hunter': 2,
          'humanity': 2,
          'movie': 2,
          'characters': 2,
          'well': 2,
          'theres': 2,
          'little': 2,
          'story': 2,
          'way': 2,
          'school': 2,
          'two': 2,
          'liar': 2,
          'illustrious': 1,
          'career': 1,
          'robin': 1,
          'included': 1,
          'forgettable': 1,
          'turns': 1,
          'mrs': 1,
          'ndoubtfire': 1,
          'flubber': 1,
          'punctuated': 1,
          'actors': 1,
          'academy': 1,
          'award': 1,
          '1998': 1,
          'good': 1,
          'truly': 1,
          'since': 1,
          '1989s': 1,
          'dead': 1,
          'poets': 1,
          'society': 1,
          'critical': 1,
          'remarks': 1,
          'unanimously': 1,
          'positive': 1,
          'next': 1,
          'deceased': 1,
          'pediatrician': 1,
          'unfortunately': 1,
          'lackluster': 1,
          'nand': 1,
          'sixyear': 1,
          'stint': 1,
          'comedic': 1,
          'actor': 1,
          'proof': 1,
          'whether': 1,
          'cut': 1,
          'league': 1,
          'nwilliams': 1,
          'title': 1,
          'character': 1,
          'sporting': 1,
          'scruffy': 1,
          'facial': 1,
          'hair': 1,
          'falls': 1,
          'cleanshavenness': 1,
          'grotesque': 1,
          'hairiness': 1,
          'nwere': 1,
          'introduced': 1,
          'commits': 1,
          'mental': 1,
          'suicidal': 1,
          'tendancies': 1,
          'nits': 1,
          'however': 1,
          'discovers': 1,
          'latent': 1,
          'talent': 1,
          'relating': 1,
          'people': 1,
          'nhe': 1,
          'removes': 1,
          'enrolls': 1,
          'university': 1,
          'virginias': 1,
          'college': 1,
          'finds': 1,
          'doctrine': 1,
          'calculating': 1,
          'impersonal': 1,
          'trade': 1,
          'attempts': 1,
          'inject': 1,
          'profession': 1,
          'result': 1,
          'several': 1,
          'bouts': 1,
          'expulsion': 1,
          'climaxes': 1,
          'appearance': 1,
          'state': 1,
          'board': 1,
          'welldefined': 1,
          'oscarworthy': 1,
          'sense': 1,
          'nalthough': 1,
          'perform': 1,
          'narrative': 1,
          'told': 1,
          'outside': 1,
          'skitlength': 1,
          'experiences': 1,
          'go': 1,
          'toward': 1,
          'building': 1,
          'relationships': 1,
          'nat': 1,
          'meets': 1,
          'truman': 1,
          'schiff': 1,
          'daniel': 1,
          'london': 1,
          'outsider': 1,
          'relishes': 1,
          'zest': 1,
          'instantly': 1,
          'become': 1,
          'best': 1,
          'friends': 1,
          'easy': 1,
          'see': 1,
          'nmonica': 1,
          'potter': 1,
          'plays': 1,
          'love': 1,
          'interest': 1,
          'young': 1,
          'woman': 1,
          'personifies': 1,
          'things': 1,
          'hates': 1,
          'nfor': 1,
          'reason': 1,
          'hes': 1,
          'attracted': 1,
          'although': 1,
          'never': 1,
          'gets': 1,
          'said': 1,
          'audience': 1,
          'understands': 1,
          'intrinsic': 1,
          'point': 1,
          'view': 1,
          'based': 1,
          'works': 1,
          'rest': 1,
          'cast': 1,
          'bob': 1,
          'gunton': 1,
          'villain': 1,
          'professor': 1,
          'particular': 1,
          'solid': 1,
          'ndirector': 1,
          'tom': 1,
          'shadyac': 1,
          'leads': 1,
          'us': 1,
          'life': 1,
          'sound': 1,
          'intentional': 1,
          'manner': 1,
          'combined': 1,
          'presence': 1,
          'screen': 1,
          'rarely': 1,
          'becomes': 1,
          'boring': 1,
          'npatch': 1,
          'lack': 1,
          'purpose': 1,
          'major': 1,
          'shortcoming': 1,
          'ninety': 1,
          'minutes': 1,
          'hours': 1,
          'feeling': 1,
          'continuity': 1,
          'passage': 1,
          'time': 1,
          'nnevertheless': 1,
          'emotionally': 1,
          'moving': 1,
          'picture': 1,
          'looks': 1,
          'one': 1,
          'memorable': 1,
          'holiday': 1,
          'season': 1,
          'succeeds': 1,
          'everything': 1,
          'tries': 1,
          'fails': 1,
          'stuff': 1,
          'doesnt': 1,
          'try': 1,
          'place': 1,
          'nby': 1,
          'large': 1,
          'another': 1,
          'oscar': 1,
          'nomination': 1,
          'herein': 1,
          'importantly': 1,
          'entertainment': 1,
          'entire': 1,
          'family': 1,
          'npos': 1}),
 Counter({'ford': 5,
          'quinn': 4,
          'years': 3,
          'one': 3,
          'plane': 3,
          'robin': 3,
          'heche': 3,
          'island': 3,
          'goes': 3,
          'two': 3,
          'screen': 2,
          '_six_days': 2,
          '_seven_nights_': 2,
          'back': 2,
          'whose': 2,
          'lack': 2,
          'together': 2,
          'obviously': 2,
          'frantically': 2,
          'old': 2,
          'popcorn': 2,
          'fluff': 2,
          'recent': 1,
          'harrison': 1,
          'grave': 1,
          'presence': 1,
          'scowling': 1,
          'likes': 1,
          'tom': 1,
          'clancys': 1,
          'jack': 1,
          'ryan': 1,
          'series': 1,
          '_the_fugitive_': 1,
          'last': 1,
          'smash': 1,
          '_air_force_one_': 1,
          'wonders': 1,
          'rogue': 1,
          'charm': 1,
          'made': 1,
          'superstar': 1,
          'completely': 1,
          'drained': 1,
          'system': 1,
          'napparently': 1,
          'lying': 1,
          'dormant': 1,
          'nwith': 1,
          'ivan': 1,
          'reitmans': 1,
          'enjoyable': 1,
          'romantic': 1,
          'comedyadventure': 1,
          'lovable': 1,
          'scoundrel': 1,
          'giving': 1,
          'audiences': 1,
          'fresh': 1,
          'reminder': 1,
          'enduring': 1,
          'popular': 1,
          'modern': 1,
          'icons': 1,
          'nford': 1,
          'plays': 1,
          'harris': 1,
          'carefree': 1,
          'slightly': 1,
          'slobby': 1,
          'endearingly': 1,
          'pilot': 1,
          'tropics': 1,
          'brokendown': 1,
          'crashes': 1,
          'storm': 1,
          'stranding': 1,
          'charter': 1,
          'new': 1,
          'york': 1,
          'magazine': 1,
          'editor': 1,
          'monroe': 1,
          'anne': 1,
          'deserted': 1,
          'nof': 1,
          'course': 1,
          'sophisticated': 1,
          'saltoftheearth': 1,
          'odds': 1,
          'long': 1,
          'manner': 1,
          'hostile': 1,
          'repartee': 1,
          'exchanged': 1,
          'first': 1,
          'meeting': 1,
          'nwhile': 1,
          'lines': 1,
          'fall': 1,
          'flat': 1,
          'formulaic': 1,
          'motions': 1,
          'work': 1,
          'unexpectedly': 1,
          'electric': 1,
          'chemistry': 1,
          'nboth': 1,
          'actors': 1,
          'largely': 1,
          'done': 1,
          'serious': 1,
          'works': 1,
          'late': 1,
          'seem': 1,
          'liberated': 1,
          'dramatic': 1,
          'weight': 1,
          'shoulders': 1,
          'deliver': 1,
          'zingers': 1,
          'weak': 1,
          'sometimes': 1,
          'beguiling': 1,
          'abandon': 1,
          'nnaturally': 1,
          'theres': 1,
          'nothing': 1,
          'like': 1,
          'lifethreatening': 1,
          'crisis': 1,
          'bring': 1,
          'people': 1,
          'robins': 1,
          'warmup': 1,
          'sped': 1,
          'even': 1,
          'arrival': 1,
          'bloodthirsty': 1,
          'pirates': 1,
          'ngranted': 1,
          'conflict': 1,
          'needed': 1,
          'introduced': 1,
          'tackedon': 1,
          'development': 1,
          'writer': 1,
          'michael': 1,
          'browning': 1,
          'bit': 1,
          'thrown': 1,
          'purpose': 1,
          'adding': 1,
          'gratuitous': 1,
          'action': 1,
          'scenes': 1,
          'nbut': 1,
          'point': 1,
          'get': 1,
          'newfound': 1,
          'affection': 1,
          'causes': 1,
          'complications': 1,
          'mostly': 1,
          'came': 1,
          'islands': 1,
          'vacation': 1,
          'fiance': 1,
          'frank': 1,
          'david': 1,
          'schwimmer': 1,
          'awaits': 1,
          'return': 1,
          'home': 1,
          'nreitman': 1,
          'reliable': 1,
          'hand': 1,
          'breezy': 1,
          'comedies': 1,
          'keeps': 1,
          'pace': 1,
          'brisk': 1,
          'capably': 1,
          'handles': 1,
          'actionoriented': 1,
          'sequences': 1,
          'nhis': 1,
          'big': 1,
          'accomplishment': 1,
          'however': 1,
          'bringing': 1,
          'smiling': 1,
          'nas': 1,
          'appealing': 1,
          'charismatic': 1,
          'always': 1,
          'hasnt': 1,
          'quite': 1,
          'charming': 1,
          'affable': 1,
          'hes': 1,
          'blast': 1,
          'audience': 1,
          'help': 1,
          'along': 1,
          'nholding': 1,
          'scrappy': 1,
          'character': 1,
          'never': 1,
          'becomes': 1,
          'screaming': 1,
          'ninny': 1,
          'initially': 1,
          'promises': 1,
          'pops': 1,
          'stress': 1,
          'pills': 1,
          'nshe': 1,
          'take': 1,
          'lumps': 1,
          'physical': 1,
          'otherwise': 1,
          'well': 1,
          'making': 1,
          'formidable': 1,
          'foil': 1,
          'ideal': 1,
          'match': 1,
          'nformulaic': 1,
          'light': 1,
          'feather': 1,
          'could': 1,
          'cited': 1,
          'classic': 1,
          'example': 1,
          'summer': 1,
          'movie': 1,
          'seasons': 1,
          'substance': 1,
          'nits': 1,
          'certainly': 1,
          'unpretentious': 1,
          'undemanding': 1,
          'andmost': 1,
          'importantlyfun': 1,
          'easily': 1,
          'frothy': 1,
          'pina': 1,
          'colada': 1,
          'balmy': 1,
          'tropical': 1,
          'beach': 1,
          'npass': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'egypt': 4,
          'story': 4,
          'disney': 3,
          'animation': 3,
          'nin': 3,
          'prince': 3,
          'also': 3,
          'pharaoh': 3,
          'year': 2,
          'would': 2,
          'first': 2,
          'sleeper': 2,
          'entry': 2,
          'studio': 2,
          'fox': 2,
          'however': 2,
          'decidedly': 2,
          'disneys': 2,
          'ndreamworks': 2,
          'two': 2,
          'brothers': 2,
          'camelot': 2,
          'mulan': 2,
          'lost': 2,
          'face': 2,
          'success': 2,
          'plot': 2,
          'rameses': 2,
          'interesting': 2,
          'nmoses': 2,
          'god': 2,
          'near': 1,
          'end': 1,
          '1996': 1,
          'analysts': 1,
          'remarked': 1,
          'last': 1,
          'stand': 1,
          'alone': 1,
          'king': 1,
          'following': 1,
          '1997': 1,
          'saw': 1,
          'genre': 1,
          'magic': 1,
          'kingdom': 1,
          'twentieth': 1,
          'century': 1,
          'gave': 1,
          'baronial': 1,
          'russia': 1,
          'masses': 1,
          'form': 1,
          'anastasia': 1,
          'nat': 1,
          'best': 1,
          'thats': 1,
          'hit': 1,
          'designed': 1,
          'surprise': 1,
          'shake': 1,
          'industry': 1,
          '1998': 1,
          'things': 1,
          'different': 1,
          'nthere': 1,
          'number': 1,
          'pushes': 1,
          'death': 1,
          'grip': 1,
          'market': 1,
          'fiftyone': 1,
          'weeks': 1,
          '98': 1,
          'new': 1,
          'champion': 1,
          'emerged': 1,
          'succeeds': 1,
          'conventionally': 1,
          'animated': 1,
          'products': 1,
          'failed': 1,
          'contenders': 1,
          'warner': 1,
          'quest': 1,
          'annual': 1,
          'lacked': 1,
          'inspiration': 1,
          'drive': 1,
          'respectively': 1,
          'nalthough': 1,
          'borderlineabysmal': 1,
          'cant': 1,
          'really': 1,
          'considered': 1,
          'shot': 1,
          'title': 1,
          'makings': 1,
          'winner': 1,
          'nunfortunately': 1,
          'saturated': 1,
          'traditional': 1,
          'disneycute': 1,
          'points': 1,
          'rapidlychanging': 1,
          'competition': 1,
          'making': 1,
          'dreamworks': 1,
          'strayed': 1,
          'hallmarks': 1,
          'created': 1,
          'genuinely': 1,
          'unique': 1,
          'product': 1,
          'flawless': 1,
          'aside': 1,
          'bugs': 1,
          'life': 1,
          'bestlooking': 1,
          'movie': 1,
          'date': 1,
          'animators': 1,
          'nimbly': 1,
          'mixed': 1,
          'flat': 1,
          'spatial': 1,
          'effects': 1,
          '2d3d': 1,
          'combination': 1,
          'something': 1,
          'artists': 1,
          'heretofore': 1,
          'struggled': 1,
          'key': 1,
          'visuals': 1,
          'used': 1,
          'looked': 1,
          'cool': 1,
          'method': 1,
          'advancing': 1,
          'nnamely': 1,
          'important': 1,
          'action': 1,
          'sequences': 1,
          'like': 1,
          'parting': 1,
          'red': 1,
          'sea': 1,
          'done': 1,
          'almost': 1,
          'entirely': 1,
          '3d': 1,
          'prove': 1,
          'theyve': 1,
          'got': 1,
          'stuff': 1,
          'theyre': 1,
          'capable': 1,
          'challenging': 1,
          'wellwritten': 1,
          'characters': 1,
          'voiced': 1,
          'talent': 1,
          'nfor': 1,
          'part': 1,
          'follows': 1,
          'source': 1,
          'material': 1,
          'book': 1,
          'exodus': 1,
          'although': 1,
          'general': 1,
          'sense': 1,
          'writers': 1,
          'took': 1,
          'creative': 1,
          'liberties': 1,
          'damage': 1,
          'way': 1,
          'fact': 1,
          'shakespearean': 1,
          'relationship': 1,
          'moses': 1,
          'val': 1,
          'kilmer': 1,
          'ralph': 1,
          'fiennes': 1,
          'makes': 1,
          'anything': 1,
          'hebrew': 1,
          'saved': 1,
          'slaughter': 1,
          'firstborn': 1,
          'sons': 1,
          'mother': 1,
          'sets': 1,
          'basket': 1,
          'nile': 1,
          'floats': 1,
          'seti': 1,
          'patrick': 1,
          'stewart': 1,
          'palace': 1,
          'taken': 1,
          'royal': 1,
          'family': 1,
          'grows': 1,
          'learns': 1,
          'heritage': 1,
          'flees': 1,
          'desert': 1,
          'discovers': 1,
          'burning': 1,
          'bush': 1,
          'commissioned': 1,
          'return': 1,
          'free': 1,
          'slaves': 1,
          'nby': 1,
          'time': 1,
          'opposite': 1,
          'sides': 1,
          'line': 1,
          'battle': 1,
          'wills': 1,
          'divine': 1,
          'intervention': 1,
          'cast': 1,
          'voices': 1,
          'impressive': 1,
          'includes': 1,
          'noteables': 1,
          'sandra': 1,
          'bullock': 1,
          'jeff': 1,
          'goldblum': 1,
          'danny': 1,
          'glover': 1,
          'steve': 1,
          'martin': 1,
          'script': 1,
          'lot': 1,
          'oneliners': 1,
          'reduced': 1,
          'voice': 1,
          'might': 1,
          'well': 1,
          'mistaken': 1,
          'one': 1,
          'spoke': 1,
          'kevin': 1,
          'costner': 1,
          'field': 1,
          'dreams': 1,
          'overall': 1,
          'exciting': 1,
          'nits': 1,
          'older': 1,
          'crowd': 1,
          'tykes': 1,
          'havent': 1,
          'years': 1,
          'religion': 1,
          'class': 1,
          'hopelessly': 1,
          'nbut': 1,
          'make': 1,
          'bid': 1,
          'great': 1,
          'watch': 1,
          'npos': 1}),
 Counter({'movie': 8,
          'like': 4,
          'rock': 3,
          'roll': 3,
          'plot': 3,
          'gang': 3,
          'fable': 2,
          'hubert': 2,
          'selby': 2,
          'jr': 2,
          'novel': 2,
          'damon': 2,
          'runyan': 2,
          'bruce': 2,
          'springsteen': 2,
          'fun': 2,
          'nstreets': 2,
          'fire': 2,
          'nthis': 2,
          'greatlooking': 2,
          'nthe': 2,
          'save': 2,
          'whole': 2,
          'things': 2,
          'ellens': 2,
          'doowop': 2,
          'little': 2,
          'perfectly': 2,
          'capsule': 1,
          'indeed': 1,
          'nlike': 1,
          'filtered': 1,
          'equal': 1,
          'parts': 1,
          'ton': 1,
          'bills': 1,
          'description': 1,
          'perfect': 1,
          'stylish': 1,
          'breezily': 1,
          'enjoyable': 1,
          'feels': 1,
          'rewrite': 1,
          'irected': 1,
          'nnoir': 1,
          'one': 1,
          'truly': 1,
          'american': 1,
          'genres': 1,
          'aside': 1,
          'hollywood': 1,
          'musical': 1,
          'western': 1,
          'postwwii': 1,
          'brooklyn': 1,
          'noir': 1,
          'lack': 1,
          'better': 1,
          'label': 1,
          'generous': 1,
          'injection': 1,
          'n': 1,
          'allaround': 1,
          'confrontational': 1,
          'attitude': 1,
          'nit': 1,
          'works': 1,
          'simplicity': 1,
          'rocker': 1,
          'ellen': 1,
          'aim': 1,
          'diane': 1,
          'lane': 1,
          'kidnapped': 1,
          'vicious': 1,
          'street': 1,
          'led': 1,
          'bloodthirsty': 1,
          'fellow': 1,
          'named': 1,
          'raven': 1,
          'willem': 1,
          'dafoe': 1,
          'nasty': 1,
          'nher': 1,
          'old': 1,
          'soldier': 1,
          'flame': 1,
          'played': 1,
          'michael': 1,
          'pare': 1,
          'comes': 1,
          'back': 1,
          'town': 1,
          'doesnt': 1,
          'count': 1,
          'bunch': 1,
          'going': 1,
          'askew': 1,
          'nthats': 1,
          'entire': 1,
          'spats': 1,
          'manager': 1,
          'hilarious': 1,
          'rick': 1,
          'moranis': 1,
          'encounter': 1,
          'group': 1,
          'winds': 1,
          'becoming': 1,
          'supporting': 1,
          'act': 1,
          'touches': 1,
          'nbut': 1,
          'movies': 1,
          'important': 1,
          'style': 1,
          'visuals': 1,
          'attitudes': 1,
          'quotable': 1,
          'lines': 1,
          'posturing': 1,
          'delivers': 1,
          'consistently': 1,
          'great': 1,
          'brio': 1,
          'pacing': 1,
          'nno': 1,
          'surprise': 1,
          'directed': 1,
          'walter': 1,
          'hill': 1,
          '48': 1,
          'hrs': 1,
          'understands': 1,
          'kind': 1,
          'macho': 1,
          'romanticism': 1,
          'put': 1,
          'together': 1,
          'thats': 1,
          'mixture': 1,
          'times': 1,
          'sensibilities': 1,
          'unified': 1,
          'tone': 1,
          'nwhen': 1,
          'last': 1,
          'time': 1,
          'could': 1,
          'say': 1,
          'something': 1,
          'especially': 1,
          'seems': 1,
          'someone': 1,
          'gets': 1,
          'decked': 1,
          'jaw': 1,
          'passes': 1,
          'every': 1,
          '2': 1,
          '63': 1,
          'minutes': 1,
          'cue': 1,
          'isnt': 1,
          'greatest': 1,
          'ever': 1,
          'made': 1,
          'occupies': 1,
          'totally': 1,
          'unique': 1,
          'niche': 1,
          'enjoys': 1,
          'position': 1,
          'nanyone': 1,
          'weakness': 1,
          'neon': 1,
          'motorcycles': 1,
          'rainy': 1,
          'streets': 1,
          'el': 1,
          'studebakers': 1,
          'pictures': 1,
          'lonely': 1,
          'heroes': 1,
          'gal': 1,
          'giving': 1,
          'microphone': 1,
          'lungs': 1,
          'eat': 1,
          'ni': 1,
          'npos': 1}),
 Counter({'melvin': 9,
          'dog': 7,
          'film': 7,
          'simon': 5,
          'character': 4,
          'little': 4,
          'nthe': 4,
          'melvins': 4,
          'characters': 3,
          'good': 3,
          'gets': 3,
          'like': 3,
          'mean': 3,
          'makes': 3,
          'person': 3,
          'also': 3,
          'kinnear': 3,
          'gooding': 3,
          'jr': 3,
          'best': 3,
          'actually': 3,
          'however': 3,
          'nicholson': 2,
          'funny': 2,
          'playing': 2,
          'qualities': 2,
          'around': 2,
          'feels': 2,
          'nhes': 2,
          'ni': 2,
          'shows': 2,
          'day': 2,
          'waitress': 2,
          'carol': 2,
          'hunt': 2,
          'none': 2,
          'comes': 2,
          'get': 2,
          'often': 2,
          'artist': 2,
          'lives': 2,
          'near': 2,
          'gay': 2,
          'friend': 2,
          'frank': 2,
          'cuba': 2,
          'much': 2,
          'take': 2,
          'watching': 2,
          'nthis': 2,
          'interesting': 2,
          'nhe': 2,
          'performance': 2,
          'part': 2,
          'care': 2,
          'man': 2,
          'one': 2,
          'jack': 1,
          'way': 1,
          'redeeming': 1,
          'end': 1,
          'liking': 1,
          'anyway': 1,
          'nin': 1,
          'question': 1,
          'udall': 1,
          'successful': 1,
          'novelist': 1,
          'obsessivecompulsive': 1,
          'disorder': 1,
          'seems': 1,
          'bent': 1,
          'contact': 1,
          'people': 1,
          'possible': 1,
          'except': 1,
          'royal': 1,
          'pain': 1,
          'youknowwhere': 1,
          'really': 1,
          'opening': 1,
          'scene': 1,
          'shoving': 1,
          'trash': 1,
          'chute': 1,
          'manhattan': 1,
          'condominium': 1,
          'nevery': 1,
          'eats': 1,
          'cafe': 1,
          'sits': 1,
          'table': 1,
          'served': 1,
          'nyou': 1,
          'tell': 1,
          'favorite': 1,
          'place': 1,
          'vicious': 1,
          'nuisance': 1,
          'helen': 1,
          'tells': 1,
          'go': 1,
          'sit': 1,
          'another': 1,
          'section': 1,
          'waitresses': 1,
          'cringe': 1,
          'comment': 1,
          'goes': 1,
          'far': 1,
          'genuinely': 1,
          'hurt': 1,
          'ton': 1,
          'bricks': 1,
          'nat': 1,
          'point': 1,
          'find': 1,
          'put': 1,
          'matter': 1,
          'course': 1,
          'nanother': 1,
          'crosses': 1,
          'sights': 1,
          'greg': 1,
          'floor': 1,
          'naside': 1,
          'fact': 1,
          'terror': 1,
          'city': 1,
          'added': 1,
          'benefit': 1,
          'making': 1,
          'prime': 1,
          'target': 1,
          'nsimons': 1,
          'fare': 1,
          'better': 1,
          'nwhen': 1,
          'walks': 1,
          'pair': 1,
          'men': 1,
          'robbing': 1,
          'apartment': 1,
          'brutally': 1,
          'beaten': 1,
          'sent': 1,
          'hospital': 1,
          'grown': 1,
          'tired': 1,
          'seeing': 1,
          'verbal': 1,
          'abuse': 1,
          'dished': 1,
          'neighbor': 1,
          'intimidates': 1,
          'simons': 1,
          'convalesces': 1,
          'earlier': 1,
          'shoved': 1,
          'garbage': 1,
          'nan': 1,
          'thing': 1,
          'happens': 1,
          'takes': 1,
          'two': 1,
          'develop': 1,
          'attachment': 1,
          'catalyst': 1,
          'softening': 1,
          'world': 1,
          'nit': 1,
          'doesnt': 1,
          'happen': 1,
          'overnight': 1,
          'throughout': 1,
          'bites': 1,
          'tongue': 1,
          'cares': 1,
          'miraculously': 1,
          'falls': 1,
          'love': 1,
          'elements': 1,
          'try': 1,
          'express': 1,
          'feelings': 1,
          'usual': 1,
          'negative': 1,
          'ones': 1,
          'shares': 1,
          'others': 1,
          'traveling': 1,
          'terra': 1,
          'incognita': 1,
          'ngood': 1,
          'performances': 1,
          'turned': 1,
          'principal': 1,
          'players': 1,
          'especially': 1,
          'nthey': 1,
          'play': 1,
          'well': 1,
          'genuine': 1,
          'chemistry': 1,
          'pleasure': 1,
          'watch': 1,
          'screen': 1,
          'ngreg': 1,
          'becoming': 1,
          'known': 1,
          'supporting': 1,
          'roles': 1,
          'vulnerable': 1,
          'gives': 1,
          'short': 1,
          'monologue': 1,
          'means': 1,
          'delivers': 1,
          'inspiration': 1,
          'conviction': 1,
          'feel': 1,
          'ncuba': 1,
          'performs': 1,
          'hypedup': 1,
          'level': 1,
          'energy': 1,
          'contrasts': 1,
          'nicely': 1,
          'constant': 1,
          'comic': 1,
          'screenplay': 1,
          'mark': 1,
          'andrus': 1,
          'james': 1,
          'l': 1,
          'brooks': 1,
          'clever': 1,
          'touching': 1,
          'filled': 1,
          'nmelvin': 1,
          'cant': 1,
          'quite': 1,
          'figure': 1,
          'whose': 1,
          'mannerisms': 1,
          'quirky': 1,
          'capture': 1,
          'attention': 1,
          'ncarol': 1,
          'working': 1,
          'woman': 1,
          'living': 1,
          'mother': 1,
          'trying': 1,
          'child': 1,
          'debilitating': 1,
          'respiratory': 1,
          'problem': 1,
          'nsimon': 1,
          'success': 1,
          'circle': 1,
          'peers': 1,
          'still': 1,
          'accepted': 1,
          'society': 1,
          'ncombined': 1,
          'talent': 1,
          'actors': 1,
          'make': 1,
          'noticeable': 1,
          'area': 1,
          'lacking': 1,
          'absence': 1,
          'second': 1,
          'half': 1,
          'nhis': 1,
          'exit': 1,
          'supposed': 1,
          'temporary': 1,
          'ends': 1,
          'return': 1,
          'leaving': 1,
          'relationship': 1,
          'unresolved': 1,
          'would': 1,
          'liked': 1,
          'seen': 1,
          'general': 1,
          'addition': 1,
          'films': 1,
          'conclusion': 1,
          'ntheres': 1,
          'actor': 1,
          'probably': 1,
          'recognized': 1,
          'awards': 1,
          'contributes': 1,
          'greatly': 1,
          'many': 1,
          'movies': 1,
          'scenes': 1,
          'deserves': 1,
          'mention': 1,
          'plays': 1,
          'pivotal': 1,
          'role': 1,
          'development': 1,
          'serves': 1,
          'forward': 1,
          'plot': 1,
          'absolutely': 1,
          'scenestealing': 1,
          'moments': 1,
          'hard': 1,
          'believe': 1,
          'simply': 1,
          'animal': 1,
          'naward': 1,
          'even': 1,
          'puts': 1,
          'know': 1,
          'youve': 1,
          'got': 1,
          'outstanding': 1,
          'movie': 1,
          'npos': 1}),
 Counter({'n': 8,
          'morris': 8,
          'nthe': 5,
          'may': 4,
          'film': 4,
          'people': 3,
          'hand': 3,
          'errol': 3,
          'camera': 3,
          'cheap': 3,
          'control': 3,
          'like': 3,
          'one': 3,
          'nyou': 2,
          'gardener': 2,
          'animal': 2,
          'creations': 2,
          'right': 2,
          'robot': 2,
          'scientist': 2,
          'brooks': 2,
          'robots': 2,
          'future': 2,
          'directly': 2,
          'morriss': 2,
          'know': 2,
          'ways': 2,
          'time': 2,
          'fast': 2,
          'dream': 2,
          'lives': 2,
          'seem': 2,
          'work': 2,
          'threads': 2,
          'another': 2,
          'story': 2,
          'intellectual': 2,
          'feels': 2,
          'visuals': 2,
          'video': 2,
          'death': 2,
          'trainer': 2,
          'karen': 2,
          'schmeer': 2,
          'shondra': 2,
          'merrill': 2,
          'robert': 2,
          'richardson': 2,
          'caleb': 2,
          'sampson': 2,
          'ive': 1,
          'told': 1,
          'several': 1,
          'youre': 1,
          'old': 1,
          'fashioned': 1,
          'want': 1,
          'everything': 1,
          'topiary': 1,
          'george': 1,
          'mendonca': 1,
          'complains': 1,
          'defending': 1,
          'continued': 1,
          'resort': 1,
          'shears': 1,
          'trimming': 1,
          'intricately': 1,
          'privetsculpted': 1,
          'way': 1,
          'nsnip': 1,
          'snip': 1,
          'believe': 1,
          'gon': 1,
          'na': 1,
          'replace': 1,
          'building': 1,
          'machines': 1,
          'muses': 1,
          'mit': 1,
          'rodney': 1,
          'builds': 1,
          'run': 1,
          'instinct': 1,
          'place': 1,
          'humans': 1,
          'really': 1,
          'successful': 1,
          'feel': 1,
          'theres': 1,
          'looking': 1,
          'nin': 1,
          'slickest': 1,
          'yet': 1,
          'nonfiction': 1,
          'auteur': 1,
          'thin': 1,
          'blue': 1,
          'line': 1,
          'brief': 1,
          'history': 1,
          'reportage': 1,
          'highest': 1,
          'order': 1,
          'njournalism': 1,
          'students': 1,
          'making': 1,
          'connections': 1,
          'ncrosscutting': 1,
          'among': 1,
          'interviews': 1,
          'filmed': 1,
          'segments': 1,
          'traces': 1,
          'four': 1,
          'disparate': 1,
          'professionals': 1,
          'share': 1,
          'nothing': 1,
          'immersion': 1,
          'around': 1,
          'intricate': 1,
          'quadruple': 1,
          'helix': 1,
          'fun': 1,
          'settling': 1,
          'theater': 1,
          'seat': 1,
          'wondering': 1,
          'hell': 1,
          'possibly': 1,
          'nwhat': 1,
          'manages': 1,
          'something': 1,
          'akin': 1,
          'magic': 1,
          'trick': 1,
          'interrogative': 1,
          'sleight': 1,
          'none': 1,
          'things': 1,
          'different': 1,
          'documentary': 1,
          'besides': 1,
          'alwaysstriking': 1,
          'interview': 1,
          'style': 1,
          'subjects': 1,
          'look': 1,
          'viewer': 1,
          'nweary': 1,
          'pressing': 1,
          'cheek': 1,
          'lens': 1,
          'get': 1,
          'effect': 1,
          'conversations': 1,
          'developed': 1,
          'elaborate': 1,
          'doublecamera': 1,
          'gadget': 1,
          'calls': 1,
          'halfjokingly': 1,
          'interrotron': 1,
          'nthrough': 1,
          'rig': 1,
          'uses': 1,
          'pair': 1,
          'teleprompters': 1,
          'project': 1,
          'images': 1,
          'interviewer': 1,
          'subject': 1,
          'vice': 1,
          'versa': 1,
          'folks': 1,
          'talk': 1,
          'startlingly': 1,
          'image': 1,
          'extension': 1,
          'audience': 1,
          'wonders': 1,
          'whether': 1,
          'anyone': 1,
          'interested': 1,
          'maintaining': 1,
          'garden': 1,
          'hes': 1,
          'devoted': 1,
          'half': 1,
          'life': 1,
          'tending': 1,
          'little': 1,
          'pleased': 1,
          'note': 1,
          'primal': 1,
          'examples': 1,
          'insect': 1,
          'even': 1,
          'complicated': 1,
          'set': 1,
          'sensory': 1,
          'receptors': 1,
          'mole': 1,
          'rat': 1,
          'specialist': 1,
          'delighted': 1,
          'catalog': 1,
          'vermin': 1,
          'animals': 1,
          'behave': 1,
          'insects': 1,
          'notes': 1,
          'suited': 1,
          'longterm': 1,
          'survival': 1,
          'nand': 1,
          'circus': 1,
          'pines': 1,
          'longlost': 1,
          'ideal': 1,
          'exemplified': 1,
          'worldrenowned': 1,
          'showman': 1,
          'clyde': 1,
          'beatty': 1,
          'starred': 1,
          'serials': 1,
          'zombies': 1,
          'stratosphere': 1,
          'excerpted': 1,
          'length': 1,
          'affection': 1,
          'nstarting': 1,
          'detect': 1,
          'patterns': 1,
          'nfast': 1,
          'contains': 1,
          'multitude': 1,
          'parallels': 1,
          'tiny': 1,
          'intersections': 1,
          'culminating': 1,
          'elegy': 1,
          'dedicated': 1,
          'late': 1,
          'mother': 1,
          'stepfather': 1,
          'balanced': 1,
          'airy': 1,
          'precipice': 1,
          'dividing': 1,
          'already': 1,
          'musty': 1,
          'past': 1,
          'alternately': 1,
          'exhilarating': 1,
          'terrifying': 1,
          'space': 1,
          'title': 1,
          'taken': 1,
          'wish': 1,
          'nasa': 1,
          'would': 1,
          'send': 1,
          'payload': 1,
          'hundreds': 1,
          'expendable': 1,
          'scurry': 1,
          'martian': 1,
          'surface': 1,
          'creating': 1,
          'sort': 1,
          'road': 1,
          'map': 1,
          'terrain': 1,
          'nwith': 1,
          'able': 1,
          'assists': 1,
          'editors': 1,
          'cinematographer': 1,
          'oliver': 1,
          'stones': 1,
          'longtime': 1,
          'collaborator': 1,
          'becomes': 1,
          'cinematic': 1,
          'contraption': 1,
          'thats': 1,
          'wonder': 1,
          'narrative': 1,
          'divergence': 1,
          'coherence': 1,
          'enhancing': 1,
          'pictures': 1,
          'wacky': 1,
          'mood': 1,
          'playful': 1,
          'score': 1,
          'alloy': 1,
          'orchestra': 1,
          'founder': 1,
          'ndifferent': 1,
          'inform': 1,
          'comment': 1,
          'serene': 1,
          'inscrutability': 1,
          'kieslowski': 1,
          'surrealist': 1,
          'nby': 1,
          'cobbling': 1,
          'together': 1,
          'motley': 1,
          'musings': 1,
          'thesis': 1,
          'nature': 1,
          'craftsmanship': 1,
          'invention': 1,
          'existence': 1,
          'reveals': 1,
          'presence': 1,
          'cosmic': 1,
          'themes': 1,
          'creation': 1,
          'evolution': 1,
          'earthbound': 1,
          'nat': 1,
          'significantly': 1,
          'pays': 1,
          'tribute': 1,
          'consuming': 1,
          'passion': 1,
          'ones': 1,
          'nthis': 1,
          'breakdown': 1,
          'dichotomy': 1,
          'everyday': 1,
          'extraordinary': 1,
          'likely': 1,
          'profound': 1,
          'anything': 1,
          'youll': 1,
          'encounter': 1,
          'pop': 1,
          'culture': 1,
          'year': 1,
          'cry': 1,
          'big': 1,
          'screen': 1,
          'ndont': 1,
          'miss': 1,
          'directed': 1,
          'edited': 1,
          'cinematography': 1,
          'music': 1,
          'u': 1,
          '1997': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'men': 7,
          'nick': 6,
          'group': 5,
          'nmichael': 5,
          'movie': 5,
          'one': 4,
          'act': 4,
          'steven': 4,
          'play': 4,
          'deer': 3,
          'hunter': 3,
          'michael': 3,
          'lives': 3,
          'friends': 3,
          'small': 3,
          'performances': 3,
          'film': 3,
          'de': 3,
          'vietnam': 3,
          'scenes': 3,
          'eventually': 3,
          'russian': 3,
          'roulette': 3,
          'way': 3,
          'truly': 2,
          'greatest': 2,
          'movies': 2,
          'na': 2,
          'community': 2,
          'best': 2,
          'outstanding': 2,
          'turned': 2,
          'actors': 2,
          'ciminos': 2,
          'brilliant': 2,
          'directing': 2,
          'provides': 2,
          'first': 2,
          'us': 2,
          'work': 2,
          'niro': 2,
          'nafter': 2,
          'john': 2,
          'savage': 2,
          'walken': 2,
          'shortly': 2,
          'nthis': 2,
          'events': 2,
          'many': 2,
          'really': 2,
          'prison': 2,
          'two': 2,
          'able': 2,
          'saigon': 2,
          'returns': 2,
          'home': 2,
          'like': 2,
          'nhe': 2,
          'upon': 2,
          'still': 2,
          'game': 2,
          'find': 2,
          'games': 2,
          'directed': 1,
          'cimino': 1,
          'ever': 1,
          'made': 1,
          'captivating': 1,
          'drama': 1,
          'russianamerican': 1,
          'pennsylvania': 1,
          'promises': 1,
          'never': 1,
          'forget': 1,
          'nin': 1,
          'academy': 1,
          'award': 1,
          'winner': 1,
          'picture': 1,
          '1978': 1,
          'perfect': 1,
          'vision': 1,
          'characters': 1,
          'inside': 1,
          'look': 1,
          'hang': 1,
          'together': 1,
          'portrayed': 1,
          'perfectly': 1,
          'robert': 1,
          'shown': 1,
          'early': 1,
          'natural': 1,
          'leader': 1,
          'days': 1,
          'leave': 1,
          'jobs': 1,
          'factory': 1,
          'head': 1,
          'local': 1,
          'bar': 1,
          'george': 1,
          'dzundza': 1,
          'works': 1,
          'nthree': 1,
          'christopher': 1,
          'leaving': 1,
          'gets': 1,
          'married': 1,
          'marriage': 1,
          'including': 1,
          'axel': 1,
          'chuck': 1,
          'aspegren': 1,
          'spend': 1,
          'last': 1,
          'day': 1,
          'hunting': 1,
          'trip': 1,
          'favorite': 1,
          'pasttimes': 1,
          'sequence': 1,
          'enables': 1,
          'view': 1,
          'lifestyle': 1,
          'normal': 1,
          'suddenly': 1,
          'permanently': 1,
          'affected': 1,
          'ravages': 1,
          'separations': 1,
          'war': 1,
          'wedding': 1,
          'although': 1,
          'criticized': 1,
          'quite': 1,
          'long': 1,
          'actually': 1,
          'enhance': 1,
          'even': 1,
          'purpose': 1,
          'streep': 1,
          'cazale': 1,
          'died': 1,
          'filming': 1,
          'completed': 1,
          'begin': 1,
          'shine': 1,
          'promise': 1,
          'halt': 1,
          'near': 1,
          'future': 1,
          'second': 1,
          'begins': 1,
          'trio': 1,
          'front': 1,
          'lines': 1,
          'stationed': 1,
          'south': 1,
          'vietnamese': 1,
          'village': 1,
          'attacked': 1,
          'viet': 1,
          'cong': 1,
          'captured': 1,
          'held': 1,
          'floating': 1,
          'river': 1,
          'run': 1,
          'v': 1,
          'c': 1,
          'ninitiates': 1,
          'horrifying': 1,
          'prisoners': 1,
          'forced': 1,
          'nsteven': 1,
          'emotionally': 1,
          'marred': 1,
          'turn': 1,
          'secluded': 1,
          'tiger': 1,
          'cage': 1,
          'water': 1,
          'face': 1,
          'refuses': 1,
          'participate': 1,
          'shows': 1,
          'leadership': 1,
          'convincing': 1,
          'survive': 1,
          'moreover': 1,
          'must': 1,
          '3': 1,
          'bullets': 1,
          'gun': 1,
          'npersonally': 1,
          'felt': 1,
          'niros': 1,
          'absolutely': 1,
          'gripping': 1,
          'portrayal': 1,
          'displayed': 1,
          'following': 1,
          'escape': 1,
          'separated': 1,
          'get': 1,
          'ends': 1,
          'losing': 1,
          'legs': 1,
          'medical': 1,
          'care': 1,
          'finds': 1,
          'u': 1,
          'army': 1,
          'hospital': 1,
          'feel': 1,
          'hero': 1,
          'wants': 1,
          'avoid': 1,
          'celebrations': 1,
          'recognition': 1,
          'would': 1,
          'bestow': 1,
          'assumes': 1,
          'lost': 1,
          'third': 1,
          'concentrates': 1,
          'walkens': 1,
          'character': 1,
          'stumbles': 1,
          'gambling': 1,
          'operation': 1,
          'nonly': 1,
          'money': 1,
          'learned': 1,
          'possibly': 1,
          'alive': 1,
          'attempt': 1,
          'narrowly': 1,
          'link': 1,
          'discovers': 1,
          'participating': 1,
          'tries': 1,
          'bring': 1,
          'emotional': 1,
          'disturbing': 1,
          'magnificent': 1,
          'missed': 1,
          'possible': 1,
          'considered': 1,
          'alltime': 1,
          'equally': 1,
          'dazzling': 1,
          'ndo': 1,
          'miss': 1,
          'captivate': 1,
          'astound': 1,
          'npos': 1}),
 Counter({'work': 4,
          'hollywood': 4,
          'best': 3,
          'film': 3,
          'cop': 3,
          'exley': 3,
          'nthe': 3,
          'bud': 3,
          'murder': 3,
          'storytelling': 2,
          'compelling': 2,
          'ellroy': 2,
          'l': 2,
          'confidential': 2,
          'one': 2,
          'piece': 2,
          'movie': 2,
          'story': 2,
          '3': 2,
          'policemen': 2,
          'vincennes': 2,
          'spacey': 2,
          'nthere': 2,
          'pearce': 2,
          'white': 2,
          'crowe': 2,
          'began': 2,
          'needs': 1,
          'books': 1,
          'nbased': 1,
          'book': 1,
          'author': 1,
          'james': 1,
          'probably': 1,
          'produced': 1,
          'recent': 1,
          'years': 1,
          'ntogether': 1,
          'director': 1,
          'curtis': 1,
          'hanson': 1,
          'hand': 1,
          'rocks': 1,
          'cradle': 1,
          'river': 1,
          'wild': 1,
          'corroborated': 1,
          'closely': 1,
          'throughout': 1,
          'shooting': 1,
          'resulted': 1,
          'plot': 1,
          'script': 1,
          'tight': 1,
          'atom': 1,
          'would': 1,
          'squeeze': 1,
          'nset': 1,
          '50s': 1,
          'revolves': 1,
          'around': 1,
          'vivid': 1,
          'personalities': 1,
          'njack': 1,
          'concerned': 1,
          'busting': 1,
          'fame': 1,
          'stardom': 1,
          'ala': 1,
          'style': 1,
          'concentrating': 1,
          'heavily': 1,
          'attract': 1,
          'media': 1,
          'attention': 1,
          'also': 1,
          'young': 1,
          'hotshot': 1,
          'rookie': 1,
          'ed': 1,
          'fresh': 1,
          'academy': 1,
          'allout': 1,
          'carve': 1,
          'name': 1,
          'footsteps': 1,
          'legendary': 1,
          'father': 1,
          'tough': 1,
          'unnerving': 1,
          'believes': 1,
          'justice': 1,
          'swift': 1,
          'violent': 1,
          'way': 1,
          'n3': 1,
          'distinct': 1,
          'characters': 1,
          'paths': 1,
          'working': 1,
          'place': 1,
          'real': 1,
          'distinction': 1,
          'good': 1,
          'evil': 1,
          'nwhen': 1,
          'partner': 1,
          'murdered': 1,
          'day': 1,
          'resignation': 1,
          'sets': 1,
          'find': 1,
          'people': 1,
          'responsible': 1,
          'unwittingly': 1,
          'delved': 1,
          'something': 1,
          'simple': 1,
          'robbery': 1,
          'neven': 1,
          'receives': 1,
          'promotion': 1,
          'case': 1,
          'happenings': 1,
          'link': 1,
          'eventually': 1,
          'reach': 1,
          'point': 1,
          'convergence': 1,
          'actually': 1,
          'personal': 1,
          'investigation': 1,
          'turns': 1,
          'uncovering': 1,
          'complex': 1,
          'web': 1,
          'organisedcrime': 1,
          'last': 1,
          'time': 1,
          'remember': 1,
          'clever': 1,
          'watched': 1,
          'usual': 1,
          'suspects': 1,
          'nin': 1,
          'get': 1,
          'shock': 1,
          'cleverness': 1,
          'former': 1,
          'lot': 1,
          'going': 1,
          'single': 1,
          'moment': 1,
          'felt': 1,
          'slow': 1,
          'nsurprisingly': 1,
          'though': 1,
          'convincing': 1,
          'job': 1,
          'streetwise': 1,
          'carried': 1,
          'mostly': 1,
          'two': 1,
          'rather': 1,
          'unknowns': 1,
          'npearces': 1,
          'cool': 1,
          'calculative': 1,
          'actions': 1,
          'slight': 1,
          'hint': 1,
          'val': 1,
          'kilmer': 1,
          'appearance': 1,
          'ncrowes': 1,
          'impressive': 1,
          'headstrong': 1,
          'temperamental': 1,
          'obtain': 1,
          'sort': 1,
          'recognition': 1,
          'nsuperb': 1,
          'acting': 1,
          'wonderful': 1,
          'climaxing': 1,
          'gunfights': 1,
          'ever': 1,
          'neasily': 1,
          '1997': 1,
          'npos': 1}),
 Counter({'marquis': 8,
          'de': 6,
          'sade': 6,
          'quills': 3,
          'nthe': 3,
          'madeleine': 2,
          'royercollard': 2,
          'cell': 2,
          'two': 2,
          'abbe': 2,
          'able': 2,
          'us': 2,
          'synopsis': 1,
          'committed': 1,
          'asylum': 1,
          'rush': 1,
          'continues': 1,
          'publish': 1,
          'pornographic': 1,
          'literature': 1,
          'aided': 1,
          'young': 1,
          'maid': 1,
          'winslet': 1,
          'nabbe': 1,
          'coulmier': 1,
          'phoenix': 1,
          'runs': 1,
          'hospital': 1,
          'disapproves': 1,
          'stories': 1,
          'humours': 1,
          'hope': 1,
          'achieving': 1,
          'cure': 1,
          'nde': 1,
          'sades': 1,
          'craft': 1,
          'life': 1,
          'threatened': 1,
          'emperor': 1,
          'dispatches': 1,
          'dr': 1,
          'michael': 1,
          'caine': 1,
          'stop': 1,
          'work': 1,
          'permanently': 1,
          'nreview': 1,
          'exploration': 1,
          'madness': 1,
          'cruelty': 1,
          'perversion': 1,
          'obsession': 1,
          'sex': 1,
          'form': 1,
          'matter': 1,
          'obscene': 1,
          'nbut': 1,
          'also': 1,
          'details': 1,
          'determination': 1,
          'write': 1,
          'spite': 1,
          'obstacles': 1,
          'put': 1,
          'path': 1,
          'propagate': 1,
          'words': 1,
          'masses': 1,
          'extent': 1,
          'willing': 1,
          'go': 1,
          'practise': 1,
          'trade': 1,
          'amongst': 1,
          'movies': 1,
          'intriguing': 1,
          'elements': 1,
          'scribes': 1,
          'story': 1,
          'blood': 1,
          'narrates': 1,
          'tale': 1,
          'via': 1,
          'chain': 1,
          'fellow': 1,
          'inmates': 1,
          'nto': 1,
          'provide': 1,
          'contrast': 1,
          'wright': 1,
          'involves': 1,
          'different': 1,
          'characters': 1,
          'none': 1,
          'handsome': 1,
          'charming': 1,
          'kindly': 1,
          'man': 1,
          'whose': 1,
          'desires': 1,
          'stymied': 1,
          'oath': 1,
          'god': 1,
          'lusts': 1,
          'wizened': 1,
          'nand': 1,
          'hypocrite': 1,
          'truth': 1,
          'sadistic': 1,
          'motley': 1,
          'creations': 1,
          'nrush': 1,
          'splendid': 1,
          'utterly': 1,
          'inhabiting': 1,
          'character': 1,
          'nkaufmans': 1,
          'direction': 1,
          'fine': 1,
          'bring': 1,
          'sense': 1,
          'bizarre': 1,
          'humour': 1,
          'grim': 1,
          'proceedings': 1,
          'plot': 1,
          'rather': 1,
          'mundane': 1,
          'plays': 1,
          'unsurprisingly': 1,
          'virtually': 1,
          'unimportant': 1,
          'nfor': 1,
          'hours': 1,
          'acquaints': 1,
          'frightening': 1,
          'still': 1,
          'allows': 1,
          'brief': 1,
          'insight': 1,
          'scatological': 1,
          'soul': 1,
          'npos': 1}),
 Counter({'gay': 10,
          'nthe': 10,
          'howard': 6,
          'one': 6,
          'seems': 5,
          'high': 5,
          'greenleaf': 5,
          'years': 4,
          'comedy': 4,
          'quite': 4,
          'nit': 4,
          'teacher': 4,
          'cameron': 4,
          'best': 4,
          'life': 3,
          'movie': 3,
          'nits': 3,
          'using': 3,
          'nwhile': 3,
          'tom': 3,
          'film': 3,
          'brackett': 3,
          'town': 3,
          'turns': 3,
          'perfect': 3,
          'script': 3,
          'even': 2,
          'gaining': 2,
          'acclaimed': 2,
          'along': 2,
          'came': 2,
          'three': 2,
          'films': 2,
          'top': 2,
          'also': 2,
          'lifestyle': 2,
          'becomes': 2,
          'less': 2,
          'serious': 2,
          'homosexuality': 2,
          'community': 2,
          'laugh': 2,
          'something': 2,
          'like': 2,
          'comes': 2,
          'enjoy': 2,
          'doesnt': 2,
          'sex': 2,
          'hanks': 2,
          'oscar': 2,
          'tribute': 2,
          'subject': 2,
          'written': 2,
          'set': 2,
          'become': 2,
          'stars': 2,
          'school': 2,
          'english': 2,
          'small': 2,
          'cusack': 2,
          'wedding': 2,
          'surrounding': 2,
          'almost': 2,
          'huge': 2,
          'drake': 2,
          'actor': 2,
          'thing': 2,
          'including': 2,
          'news': 2,
          'questions': 2,
          'howards': 2,
          'reynolds': 2,
          'brimley': 2,
          'principal': 2,
          'halliwell': 2,
          'newhart': 2,
          'camera': 2,
          'every': 2,
          'entertainment': 2,
          'matter': 2,
          'begin': 2,
          'single': 2,
          'never': 2,
          'laughs': 2,
          'solid': 2,
          'remains': 2,
          'allowed': 2,
          'television': 1,
          'shows': 1,
          'characters': 1,
          'infamous': 1,
          'ellen': 1,
          'sitcom': 1,
          'centered': 1,
          'lesbian': 1,
          'industry': 1,
          'homosexual': 1,
          'based': 1,
          'plot': 1,
          'lines': 1,
          'birdcage': 1,
          'critically': 1,
          'chasing': 1,
          'amy': 1,
          'nthen': 1,
          'ten': 1,
          'list': 1,
          'released': 1,
          'noticeable': 1,
          'alternative': 1,
          'taboo': 1,
          'go': 1,
          'medium': 1,
          'proving': 1,
          'worthwhile': 1,
          'effort': 1,
          'issue': 1,
          'many': 1,
          'comedies': 1,
          'people': 1,
          'flocking': 1,
          'see': 1,
          'notoriety': 1,
          'nbut': 1,
          'way': 1,
          'present': 1,
          'changing': 1,
          'dramatically': 1,
          'stereotyped': 1,
          'used': 1,
          'becoming': 1,
          'heterosexuals': 1,
          'homosexuals': 1,
          'able': 1,
          'thoroughly': 1,
          'poke': 1,
          'fun': 1,
          'simply': 1,
          'uses': 1,
          'comedic': 1,
          'capacity': 1,
          'love': 1,
          'marriage': 1,
          'birth': 1,
          'death': 1,
          'anything': 1,
          'else': 1,
          'idea': 1,
          'born': 1,
          'day': 1,
          'portraying': 1,
          'aidsafflicted': 1,
          'man': 1,
          'philadelphia': 1,
          'nif': 1,
          'remember': 1,
          'acceptance': 1,
          'speech': 1,
          'gave': 1,
          'highly': 1,
          'emotional': 1,
          'sighted': 1,
          'former': 1,
          'major': 1,
          'inspiration': 1,
          'touchy': 1,
          'producer': 1,
          'scott': 1,
          'rudin': 1,
          'viewed': 1,
          'setting': 1,
          'potentially': 1,
          'hilarious': 1,
          'pitched': 1,
          'screenwriter': 1,
          'paul': 1,
          'rudnick': 1,
          'true': 1,
          'heterosexual': 1,
          'may': 1,
          'controversial': 1,
          'openly': 1,
          'writer': 1,
          'prerogative': 1,
          'nkevin': 1,
          'kline': 1,
          'picturesque': 1,
          'indiana': 1,
          'nafter': 1,
          'threeyear': 1,
          'engagement': 1,
          'fellow': 1,
          'emily': 1,
          'montgomery': 1,
          'joan': 1,
          'date': 1,
          'hubbub': 1,
          'big': 1,
          'another': 1,
          'story': 1,
          'graduate': 1,
          'matt': 1,
          'dillon': 1,
          'eagerly': 1,
          'awaits': 1,
          'events': 1,
          'seem': 1,
          'astronomical': 1,
          'little': 1,
          'anyone': 1,
          'know': 1,
          'much': 1,
          'affect': 1,
          'nwhen': 1,
          'announced': 1,
          'winner': 1,
          'excitement': 1,
          'heightened': 1,
          'pays': 1,
          'mr': 1,
          'neveryone': 1,
          'cheering': 1,
          'back': 1,
          'tacks': 1,
          'calamitous': 1,
          'words': 1,
          'hes': 1,
          'silent': 1,
          'entire': 1,
          'population': 1,
          'joins': 1,
          'simultaneous': 1,
          'jaw': 1,
          'drop': 1,
          'nobody': 1,
          'understand': 1,
          'conclusion': 1,
          'wild': 1,
          'unexpected': 1,
          'wreak': 1,
          'havoc': 1,
          'conservative': 1,
          'american': 1,
          'nnaturally': 1,
          'pour': 1,
          'fiancee': 1,
          'parents': 1,
          'debbie': 1,
          'wilford': 1,
          'students': 1,
          'schools': 1,
          'bob': 1,
          'evidence': 1,
          'starts': 1,
          'obvious': 1,
          'clean': 1,
          'neat': 1,
          'honest': 1,
          'sincere': 1,
          'romantic': 1,
          'perhaps': 1,
          'incriminating': 1,
          'fact': 1,
          'loves': 1,
          'barbara': 1,
          'streisand': 1,
          'frenzy': 1,
          'isnt': 1,
          'helped': 1,
          'crews': 1,
          'conceivable': 1,
          'magazine': 1,
          'tonight': 1,
          'wannabe': 1,
          'show': 1,
          'next': 1,
          'morning': 1,
          'none': 1,
          'particular': 1,
          'reporter': 1,
          'peter': 1,
          'malloy': 1,
          'selleck': 1,
          'inside': 1,
          'unlike': 1,
          'collage': 1,
          'reporters': 1,
          'wants': 1,
          'spend': 1,
          'whole': 1,
          'week': 1,
          'coverage': 1,
          'intrusion': 1,
          'welcome': 1,
          'going': 1,
          'mind': 1,
          'passing': 1,
          'minute': 1,
          'shoved': 1,
          'face': 1,
          'regarding': 1,
          'tossed': 1,
          'frisbees': 1,
          'dominoes': 1,
          'tumble': 1,
          'closest': 1,
          'friends': 1,
          'acting': 1,
          'different': 1,
          'hints': 1,
          'possible': 1,
          'termination': 1,
          'employment': 1,
          'indeed': 1,
          'sounds': 1,
          'devastating': 1,
          'would': 1,
          'werent': 1,
          'presented': 1,
          'nearperfection': 1,
          'delightful': 1,
          'ensemble': 1,
          'casts': 1,
          'nkline': 1,
          'improve': 1,
          'age': 1,
          'downright': 1,
          'great': 1,
          'character': 1,
          'moment': 1,
          'shine': 1,
          'use': 1,
          'wonderfully': 1,
          'nevery': 1,
          'performances': 1,
          'ever': 1,
          'ndillon': 1,
          'likeable': 1,
          'seemed': 1,
          'role': 1,
          'provide': 1,
          'theyre': 1,
          'bat': 1,
          'nrudnicks': 1,
          'heavily': 1,
          'laced': 1,
          'wit': 1,
          'humor': 1,
          'youll': 1,
          'likely': 1,
          'find': 1,
          'laughing': 1,
          'loud': 1,
          'ninety': 1,
          'minutes': 1,
          'carry': 1,
          'enough': 1,
          'give': 1,
          'four': 1,
          'done': 1,
          'year': 1,
          'allaround': 1,
          'exuberant': 1,
          'actors': 1,
          'absolutely': 1,
          'notch': 1,
          'blend': 1,
          'hearttugging': 1,
          'bog': 1,
          'throughout': 1,
          'entirety': 1,
          'yet': 1,
          'still': 1,
          'sappily': 1,
          'touching': 1,
          'ending': 1,
          'ndespite': 1,
          'scene': 1,
          'close': 1,
          'comfort': 1,
          'explaining': 1,
          'everyone': 1,
          'could': 1,
          'nfrank': 1,
          'oz': 1,
          'known': 1,
          'voice': 1,
          'talent': 1,
          'muppets': 1,
          'directs': 1,
          'delightfully': 1,
          'potential': 1,
          'rudnicks': 1,
          'offer': 1,
          'bit': 1,
          'ncheck': 1,
          'nyoull': 1,
          'old': 1,
          'time': 1,
          'npos': 1}),
 Counter({'mile': 5,
          'bobby': 5,
          'films': 4,
          'one': 4,
          'atlantis': 3,
          'nits': 3,
          'dont': 3,
          'natlantis': 3,
          'like': 3,
          'make': 3,
          'read': 3,
          'two': 2,
          'falling': 2,
          'cedars': 2,
          'hicks': 2,
          'green': 2,
          'bit': 2,
          'considering': 2,
          'based': 2,
          'king': 2,
          'nthe': 2,
          'penned': 2,
          'nin': 2,
          'book': 2,
          'low': 2,
          'men': 2,
          'chapter': 2,
          'harwich': 2,
          'yelchin': 2,
          'boarding': 2,
          'house': 2,
          'mother': 2,
          'seems': 2,
          'friends': 2,
          'boorem': 2,
          'ted': 2,
          'hopkins': 2,
          'enough': 2,
          'least': 2,
          'young': 2,
          'eyes': 2,
          'powers': 2,
          'amazing': 2,
          'robert': 2,
          'including': 2,
          'sense': 2,
          'hes': 2,
          'else': 2,
          'would': 2,
          'last': 1,
          'shine': 1,
          'snow': 1,
          'australian': 1,
          'director': 1,
          'scott': 1,
          'proven': 1,
          'cinematic': 1,
          'flashbacks': 1,
          'best': 1,
          'latest': 1,
          'hearts': 1,
          'different': 1,
          'structure': 1,
          'beginning': 1,
          'ending': 1,
          'present': 1,
          'day': 1,
          'long': 1,
          'flashback': 1,
          'middle': 1,
          'similar': 1,
          'ironic': 1,
          'stephen': 1,
          'books': 1,
          'parallels': 1,
          'end': 1,
          'either': 1,
          'adapted': 1,
          'william': 1,
          'goldman': 1,
          'previously': 1,
          'bigscreen': 1,
          'version': 1,
          'misery': 1,
          'process': 1,
          'working': 1,
          'script': 1,
          'kings': 1,
          'dreamcatcher': 1,
          'neven': 1,
          'content': 1,
          'reminiscent': 1,
          'fact': 1,
          'perfect': 1,
          'blend': 1,
          'feelgood': 1,
          '60s': 1,
          'nostalgia': 1,
          'stand': 1,
          'also': 1,
          'mystical': 1,
          'power': 1,
          'hokum': 1,
          'nkings': 1,
          'comprised': 1,
          'five': 1,
          'related': 1,
          'short': 1,
          'stories': 1,
          'main': 1,
          'focus': 1,
          'first': 1,
          'longest': 1,
          'tale': 1,
          'called': 1,
          'yellow': 1,
          'coats': 1,
          'title': 1,
          'comes': 1,
          'second': 1,
          'set': 1,
          '1960': 1,
          'connecticut': 1,
          '11yearold': 1,
          'garfield': 1,
          'anton': 1,
          'lives': 1,
          'run': 1,
          'cold': 1,
          'selfcentered': 1,
          'elizabeth': 1,
          'hope': 1,
          'davis': 1,
          'joe': 1,
          'goulds': 1,
          'secret': 1,
          'care': 1,
          'wardrobe': 1,
          'son': 1,
          'nbobby': 1,
          'spends': 1,
          'time': 1,
          'closest': 1,
          'john': 1,
          'sullivan': 1,
          'rothhaar': 1,
          'tomboy': 1,
          'carol': 1,
          'gerber': 1,
          'mika': 1,
          'become': 1,
          'something': 1,
          'kevin': 1,
          'paul': 1,
          'winnie': 1,
          'nwhen': 1,
          'new': 1,
          'tenant': 1,
          'moves': 1,
          'vacant': 1,
          'room': 1,
          'fatherless': 1,
          'finds': 1,
          'male': 1,
          'role': 1,
          'model': 1,
          'brautigan': 1,
          'anthony': 1,
          'hannibal': 1,
          'mysterious': 1,
          'stranger': 1,
          'vague': 1,
          'past': 1,
          'bobbys': 1,
          'mom': 1,
          'suspicious': 1,
          'momentarily': 1,
          'turn': 1,
          'head': 1,
          'away': 1,
          'mirror': 1,
          'nted': 1,
          'teaches': 1,
          'neighbor': 1,
          'wonders': 1,
          'literature': 1,
          'cheapskate': 1,
          'gives': 1,
          'library': 1,
          'card': 1,
          'birthday': 1,
          'dispenses': 1,
          'prophetic': 1,
          'words': 1,
          'wisdom': 1,
          'even': 1,
          'pays': 1,
          'dollar': 1,
          'week': 1,
          'local': 1,
          'newspaper': 1,
          'keep': 1,
          'peeled': 1,
          'group': 1,
          'people': 1,
          'chasing': 1,
          'exploit': 1,
          'special': 1,
          'ni': 1,
          'wont': 1,
          'go': 1,
          'theyre': 1,
          'considerably': 1,
          'toned': 1,
          'involve': 1,
          'black': 1,
          'stuff': 1,
          'flying': 1,
          'teds': 1,
          'mouth': 1,
          'la': 1,
          'presentday': 1,
          'setting': 1,
          'bookends': 1,
          'film': 1,
          'novels': 1,
          'final': 1,
          'titled': 1,
          'heavenly': 1,
          'shades': 1,
          'night': 1,
          'features': 1,
          'david': 1,
          'morse': 1,
          'yet': 1,
          'another': 1,
          'connection': 1,
          'married': 1,
          'middleaged': 1,
          'learns': 1,
          'death': 1,
          'childhood': 1,
          'returns': 1,
          'dilapidated': 1,
          'spent': 1,
          'formative': 1,
          'years': 1,
          'nowhere': 1,
          'near': 1,
          'flashy': 1,
          'disappointing': 1,
          'understandable': 1,
          'switch': 1,
          'completely': 1,
          'richardson': 1,
          'occasionally': 1,
          'piotr': 1,
          'sobocinski': 1,
          'oscarnominated': 1,
          'cinematographer': 1,
          'behind': 1,
          'krzysztof': 1,
          'kieslowskis': 1,
          'red': 1,
          'acting': 1,
          'solid': 1,
          'everyone': 1,
          'never': 1,
          'makes': 1,
          'think': 1,
          'dr': 1,
          'lecter': 1,
          'nmost': 1,
          'impressive': 1,
          'youngsters': 1,
          'tiny': 1,
          'parts': 1,
          'along': 1,
          'came': 1,
          'spider': 1,
          'nwhile': 1,
          'didnt': 1,
          'really': 1,
          'much': 1,
          'problem': 1,
          'goldmans': 1,
          'screenplay': 1,
          'need': 1,
          'point': 1,
          'inconsistency': 1,
          'ngoldman': 1,
          'premiere': 1,
          'writes': 1,
          'annual': 1,
          'criticism': 1,
          'everybody': 1,
          'elses': 1,
          'carefully': 1,
          'explaining': 1,
          'suck': 1,
          'insult': 1,
          'audiences': 1,
          'somehow': 1,
          'failing': 1,
          'mention': 1,
          'crap': 1,
          'generals': 1,
          'daughter': 1,
          'meanspirited': 1,
          'fun': 1,
          'mostly': 1,
          'account': 1,
          'nobody': 1,
          'hollywood': 1,
          'balls': 1,
          'say': 1,
          'anything': 1,
          'remotely': 1,
          'negative': 1,
          'anybody': 1,
          'business': 1,
          'michael': 1,
          'jackson': 1,
          'j': 1,
          'nand': 1,
          'blake': 1,
          'supposed': 1,
          'told': 1,
          'assume': 1,
          'scene': 1,
          'order': 1,
          'memory': 1,
          'flash': 1,
          'back': 1,
          'nwell': 1,
          'doesnt': 1,
          'n1': 1,
          '41': 1,
          'pg13': 1,
          'violence': 1,
          'thematic': 1,
          'elements': 1,
          'npos': 1}),
 Counter({'film': 10,
          'nthe': 8,
          'jing': 8,
          'wing': 7,
          'yuen': 6,
          'biao': 4,
          'see': 4,
          'two': 3,
          'back': 3,
          'gangster': 3,
          'club': 3,
          'night': 3,
          'gives': 3,
          'nhis': 3,
          'time': 3,
          'hong': 3,
          'kong': 3,
          'hero': 2,
          'nfirst': 2,
          'shaw': 2,
          'brothers': 2,
          'end': 2,
          'making': 2,
          'man': 2,
          'brother': 2,
          'city': 2,
          'become': 2,
          'powerful': 2,
          'control': 2,
          'nwing': 2,
          'love': 2,
          'jessica': 2,
          'hester': 2,
          'nunfortunately': 2,
          'yeung': 2,
          'seung': 2,
          'returns': 2,
          'nsee': 2,
          'valerie': 2,
          'chow': 2,
          'takeshi': 2,
          'kaneshiro': 2,
          'marvelously': 2,
          'never': 2,
          'fight': 2,
          'nthis': 2,
          'seen': 2,
          'corey': 1,
          'yuens': 1,
          'latest': 1,
          'notable': 1,
          'fronts': 1,
          'bring': 1,
          'studio': 1,
          'forefront': 1,
          'production': 1,
          'nsecondly': 1,
          'rediscovery': 1,
          'opens': 1,
          'around': 1,
          'qin': 1,
          'dynasty': 1,
          'many': 1,
          'immigrants': 1,
          'way': 1,
          'shanghai': 1,
          'npoverty': 1,
          'crime': 1,
          'rule': 1,
          'china': 1,
          'na': 1,
          'young': 1,
          'enter': 1,
          'fabled': 1,
          'laborers': 1,
          'pier': 1,
          'ntam': 1,
          'town': 1,
          'center': 1,
          'alliance': 1,
          'british': 1,
          'army': 1,
          'friends': 1,
          'confrontation': 1,
          'ntheir': 1,
          'friendship': 1,
          'grows': 1,
          'men': 1,
          'start': 1,
          'realize': 1,
          'dreams': 1,
          'jings': 1,
          'wealthy': 1,
          'settle': 1,
          'woman': 1,
          'truly': 1,
          'meets': 1,
          'singer': 1,
          'falls': 1,
          'realizing': 1,
          'star': 1,
          'attraction': 1,
          'nafter': 1,
          'stealing': 1,
          'picture': 1,
          'display': 1,
          'plot': 1,
          'impress': 1,
          'rob': 1,
          'foreigners': 1,
          'money': 1,
          'cloths': 1,
          'set': 1,
          'midnight': 1,
          'rendezvous': 1,
          'run': 1,
          'afoul': 1,
          'rival': 1,
          'bribed': 1,
          'police': 1,
          'effort': 1,
          'gain': 1,
          'sees': 1,
          'bothers': 1,
          'arrested': 1,
          'held': 1,
          'manage': 1,
          'escape': 1,
          'dawn': 1,
          'njessica': 1,
          'waited': 1,
          'outside': 1,
          'cold': 1,
          'manager': 1,
          'home': 1,
          'decides': 1,
          'retire': 1,
          'repayment': 1,
          'saving': 1,
          'life': 1,
          'attempted': 1,
          'murder': 1,
          'arranges': 1,
          'trade': 1,
          'ask': 1,
          'lover': 1,
          'take': 1,
          'care': 1,
          'sided': 1,
          'performances': 1,
          'top': 1,
          'notch': 1,
          'fine': 1,
          'turns': 1,
          'comic': 1,
          'turn': 1,
          'wah': 1,
          'previously': 1,
          'known': 1,
          'mad': 1,
          'vietnamese': 1,
          'samo': 1,
          'hungs': 1,
          'eastern': 1,
          'condors': 1,
          'marvelous': 1,
          'surprise': 1,
          'gift': 1,
          'comedy': 1,
          'understated': 1,
          'hilarious': 1,
          'standout': 1,
          'screen': 1,
          'string': 1,
          'disappointments': 1,
          'stellar': 1,
          'performance': 1,
          'tam': 1,
          'triad': 1,
          'boss': 1,
          'knows': 1,
          'coming': 1,
          'still': 1,
          'cunning': 1,
          'craft': 1,
          'uphold': 1,
          'pride': 1,
          'almost': 1,
          'nonviolent': 1,
          'retaliates': 1,
          'instigates': 1,
          'violence': 1,
          'nbut': 1,
          'comes': 1,
          'looked': 1,
          'better': 1,
          'ncorey': 1,
          'directs': 1,
          'maturity': 1,
          'sense': 1,
          'pacing': 1,
          'lacking': 1,
          'movies': 1,
          'late': 1,
          'lighting': 1,
          'cinematography': 1,
          'staging': 1,
          'beautiful': 1,
          'watch': 1,
          'action': 1,
          'scenes': 1,
          'disappoint': 1,
          'either': 1,
          'aggressive': 1,
          'inventive': 1,
          'martial': 1,
          'art': 1,
          'choreography': 1,
          'ive': 1,
          'actually': 1,
          'surpassing': 1,
          'jackie': 1,
          'chans': 1,
          'work': 1,
          'rumble': 1,
          'bronx': 1,
          'first': 1,
          'strike': 1,
          'special': 1,
          'effects': 1,
          'team': 1,
          'deserves': 1,
          'praise': 1,
          'fantastic': 1,
          'job': 1,
          'impossible': 1,
          'look': 1,
          'possible': 1,
          'nan': 1,
          'early': 1,
          'horse': 1,
          'believed': 1,
          'nalso': 1,
          'noteworthy': 1,
          'score': 1,
          'done': 1,
          'lush': 1,
          'orchestral': 1,
          'style': 1,
          'representative': 1,
          'fare': 1,
          'ni': 1,
          'would': 1,
          'dare': 1,
          'say': 1,
          'ranks': 1,
          'high': 1,
          'scores': 1,
          'titanic': 1,
          'rosewood': 1,
          'best': 1,
          'year': 1,
          'nall': 1,
          'marks': 1,
          'grand': 1,
          'return': 1,
          'filmmaking': 1,
          'us': 1,
          'faith': 1,
          'cinema': 1,
          'alive': 1,
          'flourishing': 1,
          'npos': 1}),
 Counter({'american': 5,
          'chinese': 4,
          'beijing': 3,
          'nthe': 3,
          'sketch': 3,
          'family': 3,
          'fang': 2,
          'monthlong': 2,
          'vacation': 2,
          'sister': 2,
          'chao': 2,
          'husband': 2,
          'daughter': 2,
          'lili': 2,
          'nfang': 2,
          'asian': 2,
          'wife': 2,
          'son': 2,
          'two': 2,
          'families': 2,
          'film': 2,
          'character': 2,
          'culture': 2,
          'nhis': 2,
          'life': 2,
          'synopsis': 1,
          'cultural': 1,
          'exploration': 1,
          'computer': 1,
          'engineer': 1,
          'named': 1,
          'peter': 1,
          'wang': 1,
          'decides': 1,
          'take': 1,
          'visit': 1,
          'mrs': 1,
          'shen': 1,
          'guanglan': 1,
          'mr': 1,
          'hy': 1,
          'xiaoguang': 1,
          'teenage': 1,
          'li': 1,
          'qinqin': 1,
          '30': 1,
          'years': 1,
          'separation': 1,
          'brings': 1,
          'grace': 1,
          'sharon': 1,
          'iwai': 1,
          'collegeaged': 1,
          'paul': 1,
          'kelvin': 1,
          'han': 1,
          'yee': 1,
          'along': 1,
          'dont': 1,
          'speak': 1,
          'encounter': 1,
          'allows': 1,
          'audience': 1,
          'compare': 1,
          'eastern': 1,
          'western': 1,
          'cultures': 1,
          'well': 1,
          'ambitions': 1,
          'individual': 1,
          'characters': 1,
          'nopinion': 1,
          'sometimes': 1,
          'plot': 1,
          'driven': 1,
          'nsometimes': 1,
          'na': 1,
          'great': 1,
          'wall': 1,
          '1986': 1,
          'called': 1,
          'opposed': 1,
          'gently': 1,
          'compares': 1,
          'nfangs': 1,
          'thoroughly': 1,
          'americanized': 1,
          'upper': 1,
          'middle': 1,
          'class': 1,
          'professional': 1,
          'enjoys': 1,
          'jogging': 1,
          'argues': 1,
          'boss': 1,
          'cant': 1,
          'cook': 1,
          'white': 1,
          'girlfriend': 1,
          'complains': 1,
          'racism': 1,
          'encourages': 1,
          'befriend': 1,
          'girl': 1,
          'nmeanwhile': 1,
          'fangs': 1,
          'advocates': 1,
          'absolute': 1,
          'loyalty': 1,
          'work': 1,
          'unit': 1,
          'nher': 1,
          'retired': 1,
          'official': 1,
          'heard': 1,
          'rumors': 1,
          'depravity': 1,
          'homosexuals': 1,
          'running': 1,
          'streets': 1,
          'longs': 1,
          'freedoms': 1,
          'youth': 1,
          'studying': 1,
          'college': 1,
          'entrance': 1,
          'exams': 1,
          'important': 1,
          'thing': 1,
          'spend': 1,
          'month': 1,
          'slowly': 1,
          'learning': 1,
          'nthere': 1,
          'ultimate': 1,
          'answer': 1,
          'final': 1,
          'comprehensive': 1,
          'understanding': 1,
          'neither': 1,
          'neutral': 1,
          'meandering': 1,
          'gentle': 1,
          'portrait': 1,
          'sides': 1,
          'npos': 1}),
 Counter({'film': 23,
          'scream': 13,
          'films': 10,
          'characters': 8,
          'first': 8,
          'mr': 7,
          'nthe': 6,
          'williamson': 6,
          'sequel': 6,
          '2': 5,
          'sidney': 5,
          'dewey': 5,
          'slasher': 4,
          'one': 4,
          'new': 4,
          'much': 4,
          'gale': 4,
          'killer': 4,
          'horror': 3,
          'director': 3,
          'kevin': 3,
          'scene': 3,
          'hard': 3,
          'last': 3,
          'point': 3,
          'n': 3,
          'williamsons': 3,
          'vaguely': 3,
          'screenplay': 3,
          'premise': 3,
          'seems': 3,
          'around': 3,
          'although': 3,
          'good': 3,
          'could': 3,
          'many': 3,
          'isnt': 3,
          'installment': 3,
          'next': 3,
          'theres': 3,
          'character': 3,
          'may': 2,
          'following': 2,
          'non': 2,
          'amidst': 2,
          'genre': 2,
          'little': 2,
          'flick': 2,
          'given': 2,
          'industry': 2,
          'box': 2,
          'office': 2,
          'becoming': 2,
          'finally': 2,
          'knowing': 2,
          'success': 2,
          'hip': 2,
          'casting': 2,
          'young': 2,
          'tv': 2,
          'youth': 2,
          'nscream': 2,
          'wes': 2,
          'craven': 2,
          'best': 2,
          'series': 2,
          'back': 2,
          'nand': 2,
          'screams': 2,
          'onto': 2,
          'fashion': 2,
          'nits': 2,
          'writing': 2,
          'know': 2,
          'summer': 2,
          'screenwriter': 2,
          'culture': 2,
          'since': 2,
          'well': 2,
          'said': 2,
          'nindeed': 2,
          'theatrical': 2,
          'right': 2,
          'written': 2,
          'references': 2,
          'nin': 2,
          'nwhile': 2,
          'outset': 2,
          'basic': 2,
          'contrived': 2,
          'becomes': 2,
          'predecessor': 2,
          'prologue': 2,
          'principal': 2,
          'narrative': 2,
          'time': 2,
          'events': 2,
          'movie': 2,
          'sequence': 2,
          'seen': 2,
          'setup': 2,
          'nearly': 2,
          'almost': 2,
          'campus': 2,
          'returning': 2,
          'escape': 2,
          'ntheyre': 2,
          'role': 2,
          'significantly': 2,
          'provides': 2,
          'elise': 2,
          'identity': 2,
          'doesnt': 2,
          'fairly': 2,
          'obvious': 2,
          'villain': 2,
          'get': 2,
          'want': 2,
          'aspect': 2,
          'staged': 2,
          'strong': 2,
          'interesting': 2,
          'relationship': 2,
          'particularly': 2,
          'make': 2,
          'fact': 2,
          'rose': 2,
          'mcgowans': 2,
          'got': 2,
          'note': 1,
          'consider': 1,
          'portions': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'december': 1,
          '20': 1,
          '1996': 1,
          'yearend': 1,
          'oscar': 1,
          'bait': 1,
          'releases': 1,
          'major': 1,
          'studios': 1,
          'miramaxs': 1,
          'label': 1,
          'dimension': 1,
          'quietly': 1,
          'released': 1,
          'sly': 1,
          'ensemble': 1,
          'titled': 1,
          'nalthough': 1,
          'teen': 1,
          'market': 1,
          'allbutdead': 1,
          'recent': 1,
          'years': 1,
          'shocked': 1,
          'observers': 1,
          'scoring': 1,
          'consistently': 1,
          'high': 1,
          'returns': 1,
          'eventually': 1,
          'topping': 1,
          '100': 1,
          'million': 1,
          'domestic': 1,
          'successful': 1,
          'type': 1,
          'history': 1,
          'delighting': 1,
          'audiences': 1,
          'presenting': 1,
          'set': 1,
          'protagonists': 1,
          'aware': 1,
          'standard': 1,
          'cliches': 1,
          'associated': 1,
          'sleeper': 1,
          'sent': 1,
          'shockwaves': 1,
          'suddenly': 1,
          'everybody': 1,
          'looking': 1,
          'inexpensive': 1,
          'fright': 1,
          'might': 1,
          'able': 1,
          'reap': 1,
          'similar': 1,
          'fortunes': 1,
          'strategy': 1,
          'stars': 1,
          'draw': 1,
          'demographic': 1,
          'boost': 1,
          'previously': 1,
          'known': 1,
          'creator': 1,
          'lines': 1,
          'nightmare': 1,
          'elm': 1,
          'street': 1,
          'thrust': 1,
          'limelight': 1,
          'rookie': 1,
          'scribe': 1,
          'burst': 1,
          'stunning': 1,
          'understate': 1,
          'nmr': 1,
          'based': 1,
          'upon': 1,
          'produced': 1,
          'screenplays': 1,
          'october': 1,
          '1997': 1,
          'enjoyed': 1,
          'meteoric': 1,
          'rise': 1,
          'fame': 1,
          'quickly': 1,
          'become': 1,
          'wellknown': 1,
          'amongst': 1,
          'entertainment': 1,
          'weeklyreading': 1,
          'figurewatching': 1,
          'quentin': 1,
          'tarantino': 1,
          'guy': 1,
          'also': 1,
          'achieved': 1,
          'renown': 1,
          'singularly': 1,
          'freakish': 1,
          'oddity': 1,
          'receiving': 1,
          'lions': 1,
          'share': 1,
          'acclaim': 1,
          'print': 1,
          'advertisements': 1,
          '2s': 1,
          'release': 1,
          'similarly': 1,
          'indicative': 1,
          'increasing': 1,
          'prominence': 1,
          'traditional': 1,
          'drapes': 1,
          'title': 1,
          'ads': 1,
          'equal': 1,
          'sized': 1,
          'font': 1,
          'yet': 1,
          'reads': 1,
          'affirmation': 1,
          'screenwriters': 1,
          'contribution': 1,
          'project': 1,
          'unprecedented': 1,
          'envision': 1,
          'board': 1,
          'wga': 1,
          'licking': 1,
          'chops': 1,
          'coup': 1,
          'counting': 1,
          'days': 1,
          'goal': 1,
          'attained': 1,
          'like': 1,
          'tarantinos': 1,
          'screenwriting': 1,
          'work': 1,
          'unconventional': 1,
          'incorporating': 1,
          'contemporary': 1,
          'pop': 1,
          'allusions': 1,
          'dialogue': 1,
          'satirically': 1,
          'discussed': 1,
          'discuss': 1,
          'relative': 1,
          'merits': 1,
          'sequels': 1,
          '1995': 1,
          'infamous': 1,
          'bob': 1,
          'dole': 1,
          'rampage': 1,
          'hollywood': 1,
          'rejection': 1,
          'tirade': 1,
          'clearly': 1,
          'influenced': 1,
          'planned': 1,
          'treatment': 1,
          'included': 1,
          'sold': 1,
          'reunion': 1,
          'surviving': 1,
          'nevertheless': 1,
          'extremely': 1,
          'artificially': 1,
          'midway': 1,
          'engaging': 1,
          'nlike': 1,
          'opens': 1,
          'splashy': 1,
          'eyegrabbing': 1,
          'ties': 1,
          'exploits': 1,
          'couple': 1,
          'jada': 1,
          'pinkett': 1,
          'omar': 1,
          'epps': 1,
          'attending': 1,
          'riotously': 1,
          'gleeful': 1,
          'sneak': 1,
          'preview': 1,
          'screening': 1,
          'stab': 1,
          'running': 1,
          'filmwithinafilm': 1,
          'gag': 1,
          'true': 1,
          'life': 1,
          'behind': 1,
          'turned': 1,
          'nhowever': 1,
          'tries': 1,
          'ideas': 1,
          'nightmarishly': 1,
          'enthusiastic': 1,
          'audience': 1,
          'reminded': 1,
          'sharing': 1,
          'theatre': 1,
          'certainly': 1,
          'thinking': 1,
          'gutting': 1,
          'overlynoisy': 1,
          'person': 1,
          'seats': 1,
          'away': 1,
          'fifteen': 1,
          'minutes': 1,
          'pale': 1,
          'imitation': 1,
          'bravura': 1,
          'opening': 1,
          'original': 1,
          'drew': 1,
          'barrymore': 1,
          'performance': 1,
          'convinced': 1,
          'act': 1,
          'would': 1,
          'rank': 1,
          'among': 1,
          'performances': 1,
          'ive': 1,
          'ever': 1,
          'nthere': 1,
          'popculture': 1,
          'crammed': 1,
          'cleverly': 1,
          'frightening': 1,
          'preface': 1,
          'dizzyingly': 1,
          'built': 1,
          'final': 1,
          'shot': 1,
          'exhilaratingly': 1,
          'terrifying': 1,
          'payoff': 1,
          'campily': 1,
          'nflash': 1,
          'smalltown': 1,
          'ohio': 1,
          'college': 1,
          'neve': 1,
          'campbell': 1,
          'randy': 1,
          'jamie': 1,
          'kennedy': 1,
          'relocated': 1,
          'studies': 1,
          'notoriety': 1,
          'murders': 1,
          'open': 1,
          'result': 1,
          'reuniting': 1,
          'survivors': 1,
          'singleminded': 1,
          'tabloid': 1,
          'reporter': 1,
          'weathers': 1,
          'courteney': 1,
          'cox': 1,
          'roars': 1,
          'town': 1,
          'cover': 1,
          'breaking': 1,
          'story': 1,
          'everawkward': 1,
          'former': 1,
          'deputy': 1,
          'riley': 1,
          'david': 1,
          'arquette': 1,
          'flies': 1,
          'protectively': 1,
          'guard': 1,
          'joined': 1,
          'cotton': 1,
          'weary': 1,
          'liev': 1,
          'schreiber': 1,
          'falsely': 1,
          'accused': 1,
          'homicide': 1,
          'cameo': 1,
          'appearance': 1,
          'expanded': 1,
          'incidentally': 1,
          'surprisingly': 1,
          'backstory': 1,
          'suppose': 1,
          'case': 1,
          'made': 1,
          'really': 1,
          'necessary': 1,
          'people': 1,
          'think': 1,
          'happened': 1,
          'prior': 1,
          'ntheres': 1,
          'lot': 1,
          'faces': 1,
          'sidneys': 1,
          'boyfriend': 1,
          'derek': 1,
          'jerry': 1,
          'oconnell': 1,
          'roommate': 1,
          'hallie': 1,
          'neal': 1,
          'randys': 1,
          'fellow': 1,
          'student': 1,
          'mickey': 1,
          'timothy': 1,
          'olyphant': 1,
          'gales': 1,
          'newlyassigned': 1,
          'nervous': 1,
          'cameraman': 1,
          'joel': 1,
          'duane': 1,
          'martin': 1,
          'omnipresent': 1,
          'local': 1,
          'journalist': 1,
          'debbie': 1,
          'salt': 1,
          'laurie': 1,
          'metcalf': 1,
          'coed': 1,
          'cici': 1,
          'cooper': 1,
          'ms': 1,
          'buffy': 1,
          'sarah': 1,
          'michelle': 1,
          'gellar': 1,
          'pair': 1,
          'simpering': 1,
          'sorority': 1,
          'sisters': 1,
          'rebecca': 1,
          'gayheart': 1,
          'sirens': 1,
          'portia': 1,
          'di': 1,
          'rossi': 1,
          'nany': 1,
          'matter': 1,
          'victim': 1,
          'nas': 1,
          'seemingly': 1,
          'regular': 1,
          'staple': 1,
          'framed': 1,
          'increasinglyflimsy': 1,
          'whodunit': 1,
          'none': 1,
          'problem': 1,
          'didnt': 1,
          'keeping': 1,
          'interested': 1,
          'nhere': 1,
          'extent': 1,
          'slightly': 1,
          'hampered': 1,
          'trying': 1,
          'turn': 1,
          'mystery': 1,
          'occasionally': 1,
          'bogged': 1,
          'misdirection': 1,
          'sense': 1,
          'straining': 1,
          'seams': 1,
          'try': 1,
          'drop': 1,
          'red': 1,
          'herrings': 1,
          'left': 1,
          'expense': 1,
          'thriller': 1,
          'elements': 1,
          'help': 1,
          'matters': 1,
          'killers': 1,
          'alterego': 1,
          'getgo': 1,
          'finale': 1,
          'plays': 1,
          'fullout': 1,
          'camp': 1,
          'unmasked': 1,
          'frothing': 1,
          'mouth': 1,
          'glazed': 1,
          'eyes': 1,
          'nthis': 1,
          'cases': 1,
          'goes': 1,
          'endless': 1,
          'diatribe': 1,
          'machinations': 1,
          'scheming': 1,
          'motivation': 1,
          'actually': 1,
          'bored': 1,
          'listening': 1,
          'headandshoulders': 1,
          'suspense': 1,
          'sequences': 1,
          'imaginatively': 1,
          'save': 1,
          'postprologue': 1,
          'murder': 1,
          'handled': 1,
          'mediocre': 1,
          'conventional': 1,
          'culled': 1,
          'directly': 1,
          'predictable': 1,
          '1980s': 1,
          'flicks': 1,
          'satirized': 1,
          'fun': 1,
          'watch': 1,
          'hold': 1,
          'smile': 1,
          'giddy': 1,
          'companion': 1,
          'climb': 1,
          'incapacitated': 1,
          'order': 1,
          'car': 1,
          'wreck': 1,
          'catandmouse': 1,
          'chase': 1,
          'involving': 1,
          'sound': 1,
          'lab': 1,
          'nicely': 1,
          'ultimate': 1,
          'resolution': 1,
          'hilariously': 1,
          'overblown': 1,
          'terms': 1,
          'part': 1,
          'ambles': 1,
          'screen': 1,
          'accompanied': 1,
          'theme': 1,
          'music': 1,
          'ntheir': 1,
          'verbal': 1,
          'sparring': 1,
          'humour': 1,
          'exchange': 1,
          'defensively': 1,
          'rebukes': 1,
          'charges': 1,
          'perceived': 1,
          'aura': 1,
          'incompetency': 1,
          'wellwritten': 1,
          'curiously': 1,
          'endearing': 1,
          'mayhem': 1,
          'bloodshed': 1,
          'hand': 1,
          'pretty': 1,
          'dull': 1,
          'nshe': 1,
          'compelling': 1,
          'presence': 1,
          'nothing': 1,
          'us': 1,
          'care': 1,
          'shes': 1,
          'heroine': 1,
          'ngiven': 1,
          'second': 1,
          'banana': 1,
          'neals': 1,
          'substantive': 1,
          'enough': 1,
          'adequately': 1,
          'fill': 1,
          'shoes': 1,
          'wonder': 1,
          'roles': 1,
          'augmented': 1,
          'nwhat': 1,
          'surprises': 1,
          'zealousness': 1,
          'decimating': 1,
          'cast': 1,
          'mounting': 1,
          'body': 1,
          'count': 1,
          'bears': 1,
          'safe': 1,
          'applaud': 1,
          'bold': 1,
          'policy': 1,
          'youve': 1,
          'wondering': 1,
          'surprised': 1,
          'untimely': 1,
          'demise': 1,
          'particular': 1,
          'whose': 1,
          'wouldve': 1,
          'seemed': 1,
          'nbut': 1,
          'hey': 1,
          'please': 1,
          'dont': 1,
          'kill': 1,
          'ghostface': 1,
          'nlook': 1,
          'npos': 1}),
 Counter({'little': 17,
          'mermaid': 16,
          'film': 12,
          'films': 11,
          'animation': 8,
          'disney': 7,
          'one': 7,
          'animated': 6,
          'disneys': 6,
          'characters': 6,
          'voice': 6,
          'mr': 6,
          'market': 4,
          'anastasia': 4,
          'ariel': 4,
          'best': 4,
          'consider': 3,
          'years': 3,
          'would': 3,
          'feature': 3,
          'nthe': 3,
          'king': 3,
          'million': 3,
          'aladdin': 3,
          'beauty': 3,
          'beast': 3,
          'competition': 3,
          'teen': 3,
          'father': 3,
          'shes': 3,
          'voices': 3,
          'cast': 3,
          'even': 3,
          'although': 3,
          'wonderfully': 3,
          'songs': 3,
          'menkens': 3,
          'rerelease': 3,
          'weekend': 3,
          'ago': 2,
          'release': 2,
          'order': 2,
          'lion': 2,
          'domestic': 2,
          'gross': 2,
          'become': 2,
          'history': 2,
          'features': 2,
          'hunchback': 2,
          'notre': 2,
          'dame': 2,
          'less': 2,
          'share': 2,
          'first': 2,
          'foxs': 2,
          'brought': 2,
          'modern': 2,
          'nwhile': 2,
          'case': 2,
          'topnotch': 2,
          'magic': 2,
          'story': 2,
          'music': 2,
          'storyline': 2,
          'young': 2,
          'man': 2,
          'chaperone': 2,
          'crab': 2,
          'prince': 2,
          'makes': 2,
          'eyes': 2,
          'eric': 2,
          'nthis': 2,
          'remarkably': 2,
          'turn': 2,
          'voiced': 2,
          'drawing': 2,
          'power': 2,
          'say': 2,
          'really': 2,
          'role': 2,
          'n': 2,
          'impeccably': 2,
          'benson': 2,
          'work': 2,
          'singing': 2,
          'ms': 2,
          'reason': 2,
          'flubber': 2,
          'wright': 2,
          'tunes': 2,
          'sea': 2,
          'nin': 2,
          'ashman': 2,
          'lyrics': 2,
          'ashmans': 2,
          'score': 2,
          'sequence': 2,
          'becomes': 2,
          'appears': 2,
          'many': 2,
          'tune': 2,
          'cumulative': 2,
          '1997': 2,
          'come': 2,
          'reissue': 2,
          'opening': 2,
          'possibly': 2,
          'back': 2,
          'note': 1,
          'may': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'nits': 1,
          'startling': 1,
          'distributors': 1,
          'worriedly': 1,
          'rearrange': 1,
          'summer': 1,
          'schedules': 1,
          'give': 1,
          'annual': 1,
          'juggernaut': 1,
          'wide': 1,
          'berth': 1,
          'cracked': 1,
          '300': 1,
          'profitable': 1,
          'ventures': 1,
          'continuing': 1,
          'build': 1,
          'sturdy': 1,
          'base': 1,
          'left': 1,
          'prior': 1,
          'flicks': 1,
          'nsince': 1,
          'though': 1,
          'shown': 1,
          'unbroken': 1,
          'string': 1,
          'diminishing': 1,
          'returns': 1,
          'pocahontas': 1,
          'hercules': 1,
          'successively': 1,
          'proving': 1,
          'potent': 1,
          'nwith': 1,
          'seeminglyimpregnable': 1,
          'stranglehold': 1,
          'suddenly': 1,
          'looking': 1,
          'mighty': 1,
          'vulnerable': 1,
          'faced': 1,
          'serious': 1,
          'xmas': 1,
          'home': 1,
          'early': 1,
          'dusting': 1,
          'sparked': 1,
          'revival': 1,
          'typically': 1,
          'unquestionably': 1,
          'wonderful': 1,
          'innocence': 1,
          'rousingly': 1,
          'superb': 1,
          'fairly': 1,
          'straightforward': 1,
          'falls': 1,
          'handsome': 1,
          'disapproves': 1,
          'assigns': 1,
          'hapless': 1,
          'daughter': 1,
          'disobeys': 1,
          'goes': 1,
          'desperate': 1,
          'lengths': 1,
          'win': 1,
          'except': 1,
          'object': 1,
          'desire': 1,
          'human': 1,
          'nwhat': 1,
          'affecting': 1,
          'emotionally': 1,
          'resonant': 1,
          'richness': 1,
          'charm': 1,
          'sheer': 1,
          'clarity': 1,
          'honest': 1,
          'simplicity': 1,
          'emotions': 1,
          'nfrom': 1,
          'moment': 1,
          'lays': 1,
          'resolutely': 1,
          'smitten': 1,
          'pure': 1,
          'endearing': 1,
          'character': 1,
          'cant': 1,
          'help': 1,
          'invest': 1,
          'heart': 1,
          'simple': 1,
          'touching': 1,
          'love': 1,
          'coupled': 1,
          'healthy': 1,
          'dose': 1,
          'smart': 1,
          'humour': 1,
          'captivating': 1,
          'picture': 1,
          'none': 1,
          'interesting': 1,
          'things': 1,
          'something': 1,
          'curiously': 1,
          'dates': 1,
          'motley': 1,
          'crew': 1,
          'produced': 1,
          'distracting': 1,
          'concept': 1,
          'using': 1,
          'celebrity': 1,
          'became': 1,
          'vogue': 1,
          'started': 1,
          'certain': 1,
          'degree': 1,
          'irrevocably': 1,
          'exacerbated': 1,
          'robin': 1,
          'williams': 1,
          'muchheralded': 1,
          'henceforth': 1,
          'majority': 1,
          'celebrities': 1,
          'understandable': 1,
          'lacking': 1,
          'namerecognition': 1,
          'baltos': 1,
          'use': 1,
          'kevin': 1,
          'bacon': 1,
          'bridget': 1,
          'fonda': 1,
          'anastasias': 1,
          'showcasing': 1,
          'meg': 1,
          'ryan': 1,
          'john': 1,
          'cusack': 1,
          'forced': 1,
          'strategy': 1,
          'hype': 1,
          'products': 1,
          'unfortunate': 1,
          'embraced': 1,
          'policy': 1,
          'ndo': 1,
          'need': 1,
          'hear': 1,
          'demi': 1,
          'moore': 1,
          'esmerelda': 1,
          'nis': 1,
          'entertainment': 1,
          'value': 1,
          'augmented': 1,
          'hearing': 1,
          'recognizable': 1,
          'rather': 1,
          'suits': 1,
          'im': 1,
          'exactly': 1,
          'edge': 1,
          'seat': 1,
          'eddie': 1,
          'murphy': 1,
          'upcoming': 1,
          'mulan': 1,
          'nfortunately': 1,
          'performers': 1,
          'perhaps': 1,
          'obscure': 1,
          'nchief': 1,
          'among': 1,
          'jodi': 1,
          '1992': 1,
          'tony': 1,
          'nominee': 1,
          'stage': 1,
          'crazy': 1,
          'heroine': 1,
          'perfection': 1,
          'expressive': 1,
          'speaking': 1,
          'full': 1,
          'youthful': 1,
          'vigor': 1,
          'gorgeous': 1,
          'provides': 1,
          'engaging': 1,
          'anchor': 1,
          'id': 1,
          'catching': 1,
          'nsimilarly': 1,
          'samuel': 1,
          'e': 1,
          'terrific': 1,
          'showy': 1,
          'sebastian': 1,
          'weary': 1,
          'guardian': 1,
          'nhe': 1,
          'easily': 1,
          'milks': 1,
          'lovable': 1,
          'comic': 1,
          'moments': 1,
          'theyre': 1,
          'worth': 1,
          'rendering': 1,
          'two': 1,
          'mermaids': 1,
          'big': 1,
          'kiss': 1,
          'girl': 1,
          'stuff': 1,
          'legend': 1,
          'npat': 1,
          'carrol': 1,
          'deliciously': 1,
          'villainous': 1,
          'vampy': 1,
          'evil': 1,
          'seawitch': 1,
          'ursula': 1,
          'kenneth': 1,
          'mars': 1,
          'booming': 1,
          'conveys': 1,
          'stern': 1,
          'yet': 1,
          'affectionate': 1,
          'authority': 1,
          'ariels': 1,
          'triton': 1,
          'large': 1,
          'roles': 1,
          'small': 1,
          'edie': 1,
          'mcclurg': 1,
          'dotting': 1,
          'busybody': 1,
          'carlotta': 1,
          'ideal': 1,
          'rene': 1,
          'auberjonois': 1,
          'great': 1,
          'fun': 1,
          'exuberant': 1,
          'french': 1,
          'chef': 1,
          'nof': 1,
          'course': 1,
          'probably': 1,
          'remembered': 1,
          'remarkable': 1,
          'collection': 1,
          'composed': 1,
          'songwriting': 1,
          'team': 1,
          'alan': 1,
          'menken': 1,
          'howard': 1,
          'created': 1,
          'shop': 1,
          'horrors': 1,
          'go': 1,
          'compose': 1,
          'untimely': 1,
          'death': 1,
          'nnot': 1,
          'unbearably': 1,
          'catchy': 1,
          'charming': 1,
          'fully': 1,
          'integrated': 1,
          'virtual': 1,
          'extension': 1,
          'dialogue': 1,
          'consequently': 1,
          'within': 1,
          'context': 1,
          'nmr': 1,
          'equally': 1,
          'christopher': 1,
          'daniel': 1,
          'barnes': 1,
          'tour': 1,
          'kingdom': 1,
          'horsedrawn': 1,
          'carriage': 1,
          'magical': 1,
          'wondrous': 1,
          'fine': 1,
          'nit': 1,
          'people': 1,
          'prefer': 1,
          'delightfully': 1,
          'colourful': 1,
          'production': 1,
          'number': 1,
          'calypsostyled': 1,
          'joyfully': 1,
          'crooned': 1,
          'academy': 1,
          'award': 1,
          'golden': 1,
          'globe': 1,
          'awards': 1,
          'song': 1,
          'indeed': 1,
          'joys': 1,
          'screening': 1,
          'listening': 1,
          'children': 1,
          'scattered': 1,
          'throughout': 1,
          'audience': 1,
          'along': 1,
          'favourite': 1,
          'bensons': 1,
          'heartfelt': 1,
          'rendition': 1,
          'ballad': 1,
          'part': 1,
          'world': 1,
          'achingly': 1,
          'beautiful': 1,
          'yearning': 1,
          'hope': 1,
          'lyricized': 1,
          'accompanied': 1,
          'dazzlingly': 1,
          'polished': 1,
          'packs': 1,
          'emotional': 1,
          'wallop': 1,
          'literally': 1,
          'tears': 1,
          'nduring': 1,
          'reprise': 1,
          'builds': 1,
          'crescendo': 1,
          'arching': 1,
          'rock': 1,
          'wave': 1,
          'crashes': 1,
          'effect': 1,
          'nothing': 1,
          'short': 1,
          'breathtaking': 1,
          'acutely': 1,
          'aware': 1,
          'single': 1,
          'instance': 1,
          'finest': 1,
          'nas': 1,
          'writing': 1,
          'november': 1,
          'end': 1,
          'limited': 1,
          '17day': 1,
          'ntheres': 1,
          'question': 1,
          'primary': 1,
          'motivation': 1,
          'least': 1,
          'timing': 1,
          'reinforce': 1,
          'dominance': 1,
          'provide': 1,
          'direct': 1,
          'costly': 1,
          'new': 1,
          'upstart': 1,
          'division': 1,
          'major': 1,
          'venture': 1,
          'every': 1,
          'respect': 1,
          'success': 1,
          'grosses': 1,
          'pushed': 1,
          '100': 1,
          'mark': 1,
          'proved': 1,
          'strong': 1,
          'initially': 1,
          'released': 1,
          'eight': 1,
          'homes': 1,
          'video': 1,
          'pulling': 1,
          'close': 1,
          '10': 1,
          'nobody': 1,
          'could': 1,
          'expect': 1,
          'defeat': 1,
          'aggressivelymarketed': 1,
          'headtohead': 1,
          'siphoned': 1,
          'enough': 1,
          'fox': 1,
          'totals': 1,
          'keep': 1,
          'coveted': 1,
          'leader': 1,
          'spot': 1,
          'allowing': 1,
          'odious': 1,
          'sweep': 1,
          'subsequent': 1,
          'week': 1,
          'wrestle': 1,
          'family': 1,
          'demographic': 1,
          'away': 1,
          'nbut': 1,
          'motives': 1,
          'selfserving': 1,
          'protectionist': 1,
          'real': 1,
          'winner': 1,
          'public': 1,
          'nany': 1,
          'put': 1,
          'theatres': 1,
          'good': 1,
          'true': 1,
          'joy': 1,
          'see': 1,
          'heartwarming': 1,
          'gem': 1,
          'silver': 1,
          'screen': 1,
          'renaissance': 1,
          'greatest': 1,
          'ever': 1,
          'made': 1,
          'npos': 1}),
 Counter({'christmas': 9,
          'story': 7,
          'one': 6,
          'ralphie': 5,
          'bb': 4,
          'gun': 4,
          'young': 4,
          'comic': 4,
          'ni': 4,
          'billingsley': 3,
          'wants': 3,
          'many': 3,
          'could': 3,
          'holiday': 3,
          'situations': 3,
          'old': 3,
          'little': 2,
          'peter': 2,
          'nothing': 2,
          'tree': 2,
          'charming': 2,
          'among': 2,
          'season': 2,
          'boy': 2,
          'childhood': 2,
          'film': 2,
          'detail': 2,
          'various': 2,
          'new': 2,
          'hilarious': 2,
          'warm': 2,
          'perfect': 2,
          'captures': 2,
          'like': 2,
          'mom': 2,
          'man': 2,
          'memorable': 2,
          'making': 2,
          'much': 2,
          'scene': 2,
          'parker': 1,
          'red': 1,
          'ryder': 1,
          'nalthough': 1,
          'cautioned': 1,
          'shoot': 1,
          'eye': 1,
          'remains': 1,
          'optimistic': 1,
          'conjuring': 1,
          'detailed': 1,
          'scheme': 1,
          'get': 1,
          'good': 1,
          'side': 1,
          'parents': 1,
          'teachers': 1,
          'nit': 1,
          'possible': 1,
          'ever': 1,
          'wanted': 1,
          'anything': 1,
          'passion': 1,
          'eternal': 1,
          'struggle': 1,
          'na': 1,
          'favorite': 1,
          'certainly': 1,
          'easy': 1,
          'see': 1,
          'nralphies': 1,
          'endless': 1,
          'desire': 1,
          'may': 1,
          'transport': 1,
          'back': 1,
          'craving': 1,
          'certain': 1,
          'gift': 1,
          'anxiety': 1,
          'almost': 1,
          'indescribable': 1,
          'nevoking': 1,
          'pleasant': 1,
          'memories': 1,
          'things': 1,
          'well': 1,
          'nhere': 1,
          'features': 1,
          'make': 1,
          'package': 1,
          'everybody': 1,
          'n1': 1,
          'period': 1,
          'nthis': 1,
          'based': 1,
          'memoirs': 1,
          'late': 1,
          'humorist': 1,
          'jean': 1,
          'shepard': 1,
          'shares': 1,
          'experiences': 1,
          'living': 1,
          '1940s': 1,
          'loving': 1,
          'nshepard': 1,
          'narrates': 1,
          'first': 1,
          'person': 1,
          'pointofview': 1,
          'divulging': 1,
          'adventures': 1,
          'snowy': 1,
          'december': 1,
          'visions': 1,
          'taking': 1,
          'aim': 1,
          'replaced': 1,
          'sugarplums': 1,
          'dancing': 1,
          'head': 1,
          'nshepards': 1,
          'firsthand': 1,
          'commentary': 1,
          'several': 1,
          'downright': 1,
          'also': 1,
          'witty': 1,
          'metaphorical': 1,
          'meanings': 1,
          'ring': 1,
          'perfectly': 1,
          'essence': 1,
          'timing': 1,
          'non': 1,
          'top': 1,
          'billingsleys': 1,
          'stupefied': 1,
          'reactions': 1,
          'predicament': 1,
          'absolutely': 1,
          'contrast': 1,
          'narration': 1,
          'ndirector': 1,
          'bob': 1,
          'clark': 1,
          'look': 1,
          'feel': 1,
          'era': 1,
          'wonderful': 1,
          'technicality': 1,
          'hardly': 1,
          'imagine': 1,
          'accurate': 1,
          'depiction': 1,
          'must': 1,
          'n2': 1,
          'dad': 1,
          'nboth': 1,
          'melinda': 1,
          'dillon': 1,
          'darren': 1,
          'mcgavin': 1,
          'roles': 1,
          'nits': 1,
          'hard': 1,
          'fathom': 1,
          'agreeable': 1,
          'pair': 1,
          'requirements': 1,
          'possessing': 1,
          'least': 1,
          'trait': 1,
          'instantly': 1,
          'separates': 1,
          'wooden': 1,
          'caricatures': 1,
          'featured': 1,
          'nfor': 1,
          'instance': 1,
          'bloodthirsty': 1,
          'turkey': 1,
          'hound': 1,
          'forgiving': 1,
          'understanding': 1,
          'comes': 1,
          'serious': 1,
          'issues': 1,
          'nin': 1,
          'portraying': 1,
          'writer': 1,
          'persistent': 1,
          'mildmannered': 1,
          'lad': 1,
          'struck': 1,
          'quite': 1,
          'chord': 1,
          'nhis': 1,
          'performance': 1,
          'richly': 1,
          'textured': 1,
          'humorous': 1,
          'stumbles': 1,
          'radiate': 1,
          'flavor': 1,
          'enjoyment': 1,
          'nwhich': 1,
          'brings': 1,
          'us': 1,
          'n3': 1,
          'nthere': 1,
          'plenty': 1,
          'moments': 1,
          'nmoments': 1,
          'undoubtedly': 1,
          'improve': 1,
          'potency': 1,
          'upon': 1,
          'viewing': 1,
          'explore': 1,
          'cherish': 1,
          'particularly': 1,
          'partial': 1,
          'fword': 1,
          'blurts': 1,
          'shocking': 1,
          'fourletter': 1,
          'obscenity': 1,
          'helping': 1,
          'yard': 1,
          'nagain': 1,
          'shepards': 1,
          'method': 1,
          'handling': 1,
          'amusing': 1,
          'scenario': 1,
          'short': 1,
          'wizardry': 1,
          'nthe': 1,
          'numerous': 1,
          'sequences': 1,
          'stick': 1,
          'ones': 1,
          'mind': 1,
          'include': 1,
          'course': 1,
          'famous': 1,
          'department': 1,
          'store': 1,
          'santa': 1,
          'problems': 1,
          'telling': 1,
          'saint': 1,
          'nick': 1,
          'go': 1,
          'ill': 1,
          'finish': 1,
          'note': 1,
          'standout': 1,
          'movies': 1,
          'meager': 1,
          '90': 1,
          'minutes': 1,
          'nnot': 1,
          'funny': 1,
          'often': 1,
          'genuinely': 1,
          'mention': 1,
          'fluffy': 1,
          'touching': 1,
          'appropriate': 1,
          'places': 1,
          'plan': 1,
          'tradition': 1,
          'nwhy': 1,
          'dont': 1,
          'npos': 1}),
 Counter({'stories': 14,
          'nthe': 9,
          'frogs': 9,
          'film': 8,
          'one': 6,
          'rain': 6,
          'story': 5,
          'nit': 5,
          'much': 5,
          'really': 5,
          'strange': 4,
          'characters': 4,
          'though': 4,
          'seems': 4,
          'event': 4,
          'nheavy': 4,
          'spoiler': 4,
          'time': 3,
          'neach': 3,
          'climax': 3,
          'tense': 3,
          'moment': 3,
          'even': 3,
          'partridge': 3,
          'philip': 3,
          'quiz': 3,
          'scale': 3,
          'biblical': 3,
          'aloft': 3,
          'may': 3,
          'shall': 3,
          'told': 2,
          'builds': 2,
          'nin': 2,
          'paul': 2,
          'thomas': 2,
          'anderson': 2,
          'several': 2,
          'connected': 2,
          'nwhat': 2,
          'tension': 2,
          'starts': 2,
          'scene': 2,
          'toward': 2,
          'end': 2,
          'people': 2,
          'bizarre': 2,
          'content': 2,
          'nwe': 2,
          'get': 2,
          'make': 2,
          'c': 2,
          'reilly': 2,
          'better': 2,
          'baker': 2,
          'hall': 2,
          'see': 2,
          'kid': 2,
          'common': 2,
          'ambiguous': 2,
          'many': 2,
          'weird': 2,
          'bring': 2,
          'previous': 2,
          'hard': 2,
          'eight': 2,
          'mesmerizing': 2,
          'nas': 2,
          'worth': 2,
          '2': 2,
          '4': 2,
          'phenomenon': 2,
          'land': 2,
          'objects': 2,
          'updrafts': 2,
          'whirlwind': 2,
          'dropped': 2,
          'nso': 2,
          'n': 2,
          'upon': 2,
          'thy': 2,
          'river': 2,
          'bible': 2,
          'intolerance': 1,
          'w': 1,
          'griffith': 1,
          'four': 1,
          'different': 1,
          'historical': 1,
          'cutting': 1,
          'fastpaced': 1,
          'magnolia': 1,
          'tells': 1,
          'tangentially': 1,
          'others': 1,
          'nyet': 1,
          'going': 1,
          'independent': 1,
          'synchronized': 1,
          'appears': 1,
          'intended': 1,
          'lets': 1,
          'dissolve': 1,
          'nwhile': 1,
          'dissipates': 1,
          'character': 1,
          'singing': 1,
          'song': 1,
          'plotline': 1,
          'major': 1,
          'sing': 1,
          'along': 1,
          'nthen': 1,
          'build': 1,
          'almost': 1,
          'somehow': 1,
          'psychically': 1,
          'linked': 1,
          'nthis': 1,
          'creates': 1,
          'effects': 1,
          'empty': 1,
          'desperate': 1,
          'dysfunctional': 1,
          'relationships': 1,
          'strands': 1,
          'varying': 1,
          'degrees': 1,
          'dying': 1,
          'man': 1,
          'earl': 1,
          'jason': 1,
          'robards': 1,
          'wanting': 1,
          'touch': 1,
          'son': 1,
          'amends': 1,
          'nphil': 1,
          'parma': 1,
          'seymour': 1,
          'hoffman': 1,
          'nurse': 1,
          'frantic': 1,
          'help': 1,
          'achieve': 1,
          'final': 1,
          'goal': 1,
          'npartridges': 1,
          'young': 1,
          'wife': 1,
          'linda': 1,
          'julianne': 1,
          'moore': 1,
          'getting': 1,
          'anxious': 1,
          'dies': 1,
          'unsuspected': 1,
          'reason': 1,
          'nfrank': 1,
          'mackey': 1,
          'tom': 1,
          'cruise': 1,
          'runs': 1,
          'kinds': 1,
          'selfhelp': 1,
          'seminar': 1,
          'businesses': 1,
          'like': 1,
          'aims': 1,
          'teaching': 1,
          'disaffected': 1,
          'men': 1,
          'real': 1,
          'shitheels': 1,
          'dealing': 1,
          'women': 1,
          'angry': 1,
          'backlash': 1,
          'womens': 1,
          'lib': 1,
          'nofficer': 1,
          'jim': 1,
          'kurring': 1,
          'john': 1,
          'patrolman': 1,
          'need': 1,
          'feel': 1,
          'making': 1,
          'world': 1,
          'place': 1,
          'njimmy': 1,
          'gator': 1,
          'hosts': 1,
          'popular': 1,
          'childrens': 1,
          'tv': 1,
          'show': 1,
          'exploits': 1,
          'destroys': 1,
          'children': 1,
          'current': 1,
          'stanley': 1,
          'spector': 1,
          'jeremy': 1,
          'blackman': 1,
          'former': 1,
          'donnie': 1,
          'smith': 1,
          'william': 1,
          'h': 1,
          'macy': 1,
          'juggles': 1,
          'three': 1,
          'hours': 1,
          'resolved': 1,
          'satisfactorily': 1,
          'moves': 1,
          'single': 1,
          'derail': 1,
          'ways': 1,
          'fails': 1,
          'tie': 1,
          'built': 1,
          'around': 1,
          'events': 1,
          'history': 1,
          'little': 1,
          'part': 1,
          'nmagnolia': 1,
          'probably': 1,
          'deserved': 1,
          'attention': 1,
          'opinion': 1,
          'two': 1,
          'films': 1,
          'boogie': 1,
          'nights': 1,
          'interesting': 1,
          'look': 1,
          'forward': 1,
          'actors': 1,
          'andersons': 1,
          'company': 1,
          'njohn': 1,
          'standard': 1,
          'fixture': 1,
          'nparticularly': 1,
          'notable': 1,
          'gave': 1,
          'performance': 1,
          'first': 1,
          'nhere': 1,
          'characteristic': 1,
          'used': 1,
          'studies': 1,
          'following': 1,
          'wellrounded': 1,
          'beginning': 1,
          'middle': 1,
          'leave': 1,
          'something': 1,
          'desired': 1,
          'nbut': 1,
          'willing': 1,
          'unexpected': 1,
          'helps': 1,
          'sitting': 1,
          'ni': 1,
          'rate': 1,
          '7': 1,
          '0': 1,
          '10': 1,
          'low': 1,
          'nduring': 1,
          'climactic': 1,
          'multiple': 1,
          'messages': 1,
          'filmmaker': 1,
          'seeing': 1,
          'happen': 1,
          'nand': 1,
          'actual': 1,
          'fact': 1,
          'nsince': 1,
          'times': 1,
          'rains': 1,
          'interpreted': 1,
          'signs': 1,
          'displeasure': 1,
          'gods': 1,
          'however': 1,
          'perfectly': 1,
          'natural': 1,
          'somewhat': 1,
          'unnerving': 1,
          'cause': 1,
          'associated': 1,
          'whirlwinds': 1,
          'know': 1,
          'tornadoes': 1,
          'rip': 1,
          'size': 1,
          'ground': 1,
          'hurl': 1,
          'air': 1,
          'holding': 1,
          'reader': 1,
          'remember': 1,
          'unfortunate': 1,
          'cow': 1,
          'twister': 1,
          'nsmaller': 1,
          'hurled': 1,
          'high': 1,
          'atmosphere': 1,
          'kept': 1,
          'surprisingly': 1,
          'long': 1,
          'periods': 1,
          'hail': 1,
          'chunks': 1,
          'ice': 1,
          'nwhen': 1,
          'water': 1,
          'animals': 1,
          'near': 1,
          'surface': 1,
          'frequently': 1,
          'fish': 1,
          'suffer': 1,
          'fate': 1,
          'nessentially': 1,
          'vacuumed': 1,
          'held': 1,
          'finally': 1,
          'elsewhere': 1,
          'possible': 1,
          'doubts': 1,
          'creep': 1,
          'depicted': 1,
          'greater': 1,
          'pictured': 1,
          'unlikely': 1,
          'would': 1,
          'still': 1,
          'alive': 1,
          'clear': 1,
          'geographic': 1,
          'conditions': 1,
          'right': 1,
          'los': 1,
          'angeles': 1,
          'sort': 1,
          'frankly': 1,
          'idea': 1,
          'points': 1,
          'notherwise': 1,
          'quite': 1,
          'believable': 1,
          'credible': 1,
          'phenomena': 1,
          'saw': 1,
          'volcano': 1,
          'left': 1,
          'sign': 1,
          'god': 1,
          'since': 1,
          'references': 1,
          'exodus': 1,
          '8': 1,
          'come': 1,
          'thee': 1,
          'servants': 1,
          'nhowever': 1,
          'feels': 1,
          'definitely': 1,
          'portent': 1,
          'nnote': 1,
          'verse': 1,
          'says': 1,
          'forth': 1,
          'abundantly': 1,
          'go': 1,
          'referring': 1,
          'infestation': 1,
          'reference': 1,
          'symbol': 1,
          'uncleanness': 1,
          'revelation': 1,
          '16': 1,
          '13': 1,
          'npos': 1}),
 Counter({'ellie': 7,
          'nthe': 6,
          'even': 5,
          'film': 5,
          'palmer': 5,
          'effects': 4,
          'one': 4,
          'zemeckis': 4,
          'new': 4,
          'signal': 4,
          'best': 4,
          'contact': 3,
          'times': 3,
          'impressive': 3,
          'films': 3,
          'scifi': 3,
          'seti': 3,
          'time': 3,
          'take': 3,
          'science': 3,
          '1997': 2,
          'ive': 2,
          'seen': 2,
          'screen': 2,
          'like': 2,
          'day': 2,
          'story': 2,
          'special': 2,
          'us': 2,
          'know': 2,
          'back': 2,
          'much': 2,
          'presented': 2,
          'deals': 2,
          'radio': 2,
          'merely': 2,
          'sounds': 2,
          'space': 2,
          'young': 2,
          'father': 2,
          'david': 2,
          'small': 2,
          'pick': 2,
          'modern': 2,
          'program': 2,
          'strong': 2,
          'likely': 2,
          'quite': 2,
          'cloth': 2,
          'ndespite': 2,
          'opinion': 2,
          'nits': 2,
          'later': 2,
          'drumlin': 2,
          'nthis': 2,
          'remember': 2,
          'discovery': 2,
          'nwhen': 2,
          'many': 2,
          'information': 2,
          'vega': 2,
          'go': 2,
          'get': 2,
          'enough': 2,
          'forrest': 2,
          'gump': 2,
          'nas': 2,
          'religion': 2,
          'play': 2,
          'believe': 2,
          'neven': 2,
          'wrong': 2,
          'movie': 1,
          'five': 1,
          'exact': 1,
          'nfour': 1,
          'big': 1,
          'tv': 1,
          'cant': 1,
          'said': 1,
          'independance': 1,
          'thats': 1,
          'rare': 1,
          'example': 1,
          'filmmaking': 1,
          'treated': 1,
          'importantly': 1,
          'looking': 1,
          'id4': 1,
          'didnt': 1,
          'offer': 1,
          'outside': 1,
          'onetime': 1,
          'delightful': 1,
          'eye': 1,
          'candy': 1,
          'ncontacts': 1,
          'wonderfully': 1,
          'arroway': 1,
          'jodie': 1,
          'foster': 1,
          'astronomer': 1,
          'whose': 1,
          'preference': 1,
          'study': 1,
          'involves': 1,
          'outdated': 1,
          'technique': 1,
          'listening': 1,
          'nher': 1,
          'interest': 1,
          'field': 1,
          'astronomy': 1,
          'developed': 1,
          'age': 1,
          'encouraged': 1,
          'loving': 1,
          'ted': 1,
          'morse': 1,
          'let': 1,
          'use': 1,
          'ham': 1,
          'frequencies': 1,
          'communicate': 1,
          'people': 1,
          'far': 1,
          'away': 1,
          'pensacola': 1,
          'fl': 1,
          'course': 1,
          'days': 1,
          'internet': 1,
          'chat': 1,
          'rooms': 1,
          'nwhile': 1,
          'everyone': 1,
          'else': 1,
          'uses': 1,
          'technologies': 1,
          'aid': 1,
          'search': 1,
          'extraterrestrial': 1,
          'intelligence': 1,
          'acronym': 1,
          'prefers': 1,
          'pop': 1,
          'pair': 1,
          'headphones': 1,
          'see': 1,
          'keeping': 1,
          'youthful': 1,
          'magic': 1,
          'intrigue': 1,
          'strongly': 1,
          'alive': 1,
          'nellies': 1,
          'scientific': 1,
          'basis': 1,
          'essentially': 1,
          'makes': 1,
          'atheist': 1,
          'belief': 1,
          'influenced': 1,
          'death': 1,
          'still': 1,
          'nin': 1,
          'puerto': 1,
          'rico': 1,
          'meets': 1,
          'joss': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'writer': 1,
          'examining': 1,
          'technology': 1,
          'worlds': 1,
          'overall': 1,
          'happiness': 1,
          'seminary': 1,
          'student': 1,
          'describes': 1,
          'man': 1,
          'without': 1,
          'vast': 1,
          'differences': 1,
          'regarding': 1,
          'supreme': 1,
          'hit': 1,
          'sleep': 1,
          'together': 1,
          'weak': 1,
          'hurried': 1,
          'relationship': 1,
          'director': 1,
          'needs': 1,
          'add': 1,
          'plot': 1,
          'nmeanwhile': 1,
          'dr': 1,
          'tom': 1,
          'skerritt': 1,
          'authority': 1,
          'finds': 1,
          'frivolous': 1,
          'waste': 1,
          'money': 1,
          'ready': 1,
          'pull': 1,
          'plug': 1,
          'funding': 1,
          'leaves': 1,
          'passionate': 1,
          'searching': 1,
          'sponsors': 1,
          'eventually': 1,
          'finding': 1,
          'setup': 1,
          'mexico': 1,
          'leaving': 1,
          'explanation': 1,
          'night': 1,
          'stand': 1,
          'nit': 1,
          'nm': 1,
          'city': 1,
          'several': 1,
          'months': 1,
          'finally': 1,
          'picks': 1,
          'outer': 1,
          'perhaps': 1,
          'profound': 1,
          'history': 1,
          'closely': 1,
          'examined': 1,
          'developments': 1,
          'spring': 1,
          'long': 1,
          'stepping': 1,
          'operation': 1,
          'scoffed': 1,
          'neventually': 1,
          'concluded': 1,
          'may': 1,
          'blueprints': 1,
          'transportation': 1,
          'device': 1,
          'used': 1,
          'teleport': 1,
          'earthling': 1,
          'seems': 1,
          'originated': 1,
          'media': 1,
          'swarms': 1,
          'fanatics': 1,
          'deep': 1,
          'end': 1,
          'scientists': 1,
          'clamor': 1,
          'politicians': 1,
          'huddle': 1,
          'discussion': 1,
          'appropriate': 1,
          'actions': 1,
          'presidents': 1,
          'morphed': 1,
          'celluloid': 1,
          'reality': 1,
          'couldnt': 1,
          'werent': 1,
          'ellies': 1,
          'leads': 1,
          'nations': 1,
          'capital': 1,
          'runs': 1,
          'ncontact': 1,
          'based': 1,
          'novel': 1,
          'carl': 1,
          'sagan': 1,
          'heavily': 1,
          'subject': 1,
          'vs': 1,
          'thing': 1,
          'well': 1,
          'aspects': 1,
          'signs': 1,
          'bias': 1,
          'narguments': 1,
          'sides': 1,
          'intelligent': 1,
          'solid': 1,
          'thoughtprovoking': 1,
          'joins': 1,
          'selection': 1,
          'committee': 1,
          'choose': 1,
          'ambassador': 1,
          'leading': 1,
          'candidate': 1,
          'personal': 1,
          'convictions': 1,
          'important': 1,
          'role': 1,
          'love': 1,
          'interests': 1,
          'question': 1,
          'person': 1,
          'doesnt': 1,
          'god': 1,
          'truly': 1,
          'representative': 1,
          'earth': 1,
          '90': 1,
          'planet': 1,
          'higher': 1,
          'power': 1,
          'wraps': 1,
          'uncertain': 1,
          'whether': 1,
          'meant': 1,
          'advocate': 1,
          'neither': 1,
          'society': 1,
          'right': 1,
          'least': 1,
          'speaking': 1,
          'politically': 1,
          'correctly': 1,
          'ambiguity': 1,
          'incentive': 1,
          'ndont': 1,
          'isnt': 1,
          'theology': 1,
          'class': 1,
          'rolled': 1,
          'reel': 1,
          'highly': 1,
          'enjoyable': 1,
          'two': 1,
          'half': 1,
          'hours': 1,
          'seemingly': 1,
          'heavy': 1,
          'issues': 1,
          'tedious': 1,
          'undertaking': 1,
          'watch': 1,
          'outstanding': 1,
          'though': 1,
          'warning': 1,
          'nhighly': 1,
          'depreciated': 1,
          'subtle': 1,
          'visual': 1,
          'unnoticed': 1,
          'ones': 1,
          'recognizable': 1,
          'storytelling': 1,
          'rich': 1,
          'complete': 1,
          'although': 1,
          'moments': 1,
          'feel': 1,
          'pretentious': 1,
          'hokey': 1,
          'easily': 1,
          'ever': 1,
          'since': 1,
          'future': 1,
          'actually': 1,
          'astronomically': 1,
          'overrated': 1,
          'real': 1,
          'reason': 1,
          'boast': 1,
          'npos': 1}),
 Counter({'guido': 8,
          'son': 7,
          'holocaust': 5,
          'nthe': 5,
          'nguido': 5,
          'benignis': 4,
          'story': 4,
          'camp': 4,
          'life': 3,
          'beautiful': 3,
          'love': 3,
          'slapstick': 3,
          'fascist': 3,
          'dora': 3,
          'family': 3,
          'must': 3,
          'benigni': 2,
          'italian': 2,
          'best': 2,
          'fable': 2,
          'nbut': 2,
          'humanity': 2,
          'tell': 2,
          'dream': 2,
          'bookstore': 2,
          'many': 2,
          'nhe': 2,
          'local': 2,
          'official': 2,
          'nin': 2,
          'giosue': 2,
          'shield': 2,
          'even': 2,
          'deported': 2,
          'concentration': 2,
          'nit': 2,
          'nfor': 2,
          'camps': 2,
          'game': 2,
          'rules': 2,
          'tank': 2,
          'allow': 2,
          'german': 2,
          'thinking': 2,
          'hope': 2,
          'roberto': 1,
          'clown': 1,
          'tradition': 1,
          'chaplin': 1,
          'keaton': 1,
          'nthis': 1,
          'film': 1,
          'star': 1,
          'known': 1,
          'united': 1,
          'states': 1,
          'poorly': 1,
          'received': 1,
          'pink': 1,
          'panther': 1,
          'done': 1,
          'near': 1,
          'impossible': 1,
          'creating': 1,
          'comic': 1,
          'la': 1,
          'vita': 1,
          'e': 1,
          'bella': 1,
          'much': 1,
          'uses': 1,
          'monstrous': 1,
          'outrage': 1,
          'backdrop': 1,
          'familial': 1,
          'devotion': 1,
          'sacrifice': 1,
          'movie': 1,
          'starts': 1,
          'typical': 1,
          'farce': 1,
          'arriving': 1,
          'small': 1,
          'tuscan': 1,
          'town': 1,
          'arezzo': 1,
          '1938': 1,
          'fulfill': 1,
          'owning': 1,
          'nlike': 1,
          'clowns': 1,
          'preceded': 1,
          'notably': 1,
          'almostforgotten': 1,
          'harry': 1,
          'langdon': 1,
          'childlike': 1,
          'innocence': 1,
          'ignores': 1,
          'growing': 1,
          'antisemitism': 1,
          'government': 1,
          'ninstead': 1,
          'ardently': 1,
          'falls': 1,
          'persues': 1,
          'school': 1,
          'teacher': 1,
          'already': 1,
          'engaged': 1,
          'tightly': 1,
          'wound': 1,
          'script': 1,
          'earlier': 1,
          'unfortunate': 1,
          'yet': 1,
          'encounter': 1,
          'wins': 1,
          'nthey': 1,
          'marry': 1,
          'nfast': 1,
          'forward': 1,
          'five': 1,
          'years': 1,
          '5yearold': 1,
          'giorgio': 1,
          'cantarini': 1,
          'happy': 1,
          'finally': 1,
          'fulfilled': 1,
          'opening': 1,
          'racial': 1,
          'antisemitic': 1,
          'tensions': 1,
          'rise': 1,
          'italy': 1,
          'determined': 1,
          'harsh': 1,
          'realities': 1,
          'task': 1,
          'becomes': 1,
          'difficult': 1,
          'nhere': 1,
          'use': 1,
          'skill': 1,
          'imagination': 1,
          'keep': 1,
          'exterminated': 1,
          'juncture': 1,
          'may': 1,
          'tend': 1,
          'offend': 1,
          'touched': 1,
          'scenes': 1,
          'lack': 1,
          'horror': 1,
          'pain': 1,
          'unimaginable': 1,
          'suffering': 1,
          'schindlers': 1,
          'list': 1,
          'ntrue': 1,
          'jews': 1,
          'war': 1,
          'nearly': 1,
          'sent': 1,
          'death': 1,
          'work': 1,
          'used': 1,
          'slave': 1,
          'labor': 1,
          'nunlike': 1,
          'steven': 1,
          'spielberg': 1,
          'nhis': 1,
          'lengths': 1,
          'parent': 1,
          'go': 1,
          'protect': 1,
          'child': 1,
          'save': 1,
          'transforms': 1,
          'entire': 1,
          'experience': 1,
          'elaborate': 1,
          'ngiosue': 1,
          'follow': 1,
          'without': 1,
          'question': 1,
          'amass': 1,
          '1': 1,
          '000': 1,
          'points': 1,
          'winner': 1,
          'takes': 1,
          'home': 1,
          'ntherefore': 1,
          'tells': 1,
          'remain': 1,
          'hidden': 1,
          'barracks': 1,
          'make': 1,
          'sound': 1,
          'guards': 1,
          'see': 1,
          'explains': 1,
          'hilarious': 1,
          'sequence': 1,
          'guard': 1,
          'barks': 1,
          'instructions': 1,
          'newly': 1,
          'arrived': 1,
          'inmates': 1,
          'lying': 1,
          'understands': 1,
          'translate': 1,
          'fellow': 1,
          'prisoners': 1,
          'instead': 1,
          'lays': 1,
          'chance': 1,
          'survive': 1,
          'nthroughout': 1,
          'imprisonment': 1,
          'guidos': 1,
          'quick': 1,
          'continually': 1,
          'keeps': 1,
          'harms': 1,
          'way': 1,
          'nultimately': 1,
          'allies': 1,
          'rescue': 1,
          'poignant': 1,
          'scene': 1,
          'comes': 1,
          'hiding': 1,
          'american': 1,
          'rolls': 1,
          'compound': 1,
          'boy': 1,
          'goes': 1,
          'wideeyed': 1,
          'wonderment': 1,
          'delight': 1,
          'price': 1,
          'victory': 1,
          'high': 1,
          'nbenigni': 1,
          'succeeded': 1,
          'using': 1,
          'blackest': 1,
          'moment': 1,
          'human': 1,
          'history': 1,
          'prove': 1,
          'hell': 1,
          'ray': 1,
          'salvation': 1,
          'penetrate': 1,
          'darkness': 1,
          'nlife': 1,
          'fantasy': 1,
          'taken': 1,
          'record': 1,
          'nthose': 1,
          'object': 1,
          'missing': 1,
          'point': 1,
          'nand': 1,
          'simply': 1,
          'spark': 1,
          'never': 1,
          'extinguished': 1,
          'ncommitted': 1,
          'lifelong': 1,
          'learning': 1,
          'effective': 1,
          'communication': 1,
          'npos': 1}),
 Counter({'flynt': 8,
          'larry': 7,
          'flynts': 7,
          'film': 5,
          'althea': 5,
          'story': 4,
          'love': 4,
          'look': 3,
          'much': 3,
          'drugs': 3,
          'taking': 3,
          'great': 3,
          'hustler': 2,
          'nthe': 2,
          'people': 2,
          'vs': 2,
          'fight': 2,
          'freedom': 2,
          'true': 2,
          'life': 2,
          'excellent': 2,
          'performance': 2,
          'character': 2,
          'audience': 2,
          'finds': 2,
          'extremely': 2,
          'childish': 2,
          'court': 2,
          'nhowever': 2,
          'hes': 2,
          'funny': 2,
          'nlarry': 2,
          'nflynt': 2,
          'see': 2,
          'isaacman': 2,
          'easy': 2,
          'courtroom': 2,
          'nit': 2,
          'self': 1,
          'proclaimed': 1,
          'smut': 1,
          'pedlar': 1,
          'ownerpublisher': 1,
          'multimillion': 1,
          'dollar': 1,
          'publications': 1,
          'company': 1,
          'circulate': 1,
          'sell': 1,
          'pornographic': 1,
          'magazine': 1,
          'nbased': 1,
          'almost': 1,
          'documentary': 1,
          'vivid': 1,
          'detailed': 1,
          'nwoody': 1,
          'harrelson': 1,
          'gives': 1,
          'nhe': 1,
          'conveys': 1,
          'peculiarities': 1,
          'depth': 1,
          'focus': 1,
          'nby': 1,
          'end': 1,
          'actually': 1,
          'somewhat': 1,
          'grudgingly': 1,
          'liking': 1,
          'nthis': 1,
          'feat': 1,
          'given': 1,
          'apparent': 1,
          'lack': 1,
          'morals': 1,
          'ethics': 1,
          'smutty': 1,
          'behaviour': 1,
          'number': 1,
          'things': 1,
          'going': 1,
          'rich': 1,
          'importantly': 1,
          'says': 1,
          'exactly': 1,
          'means': 1,
          'wife': 1,
          'leasure': 1,
          'played': 1,
          'courtney': 1,
          'meets': 1,
          'one': 1,
          'clubs': 1,
          'fall': 1,
          'sexual': 1,
          'open': 1,
          'nboth': 1,
          'indulge': 1,
          'world': 1,
          'sex': 1,
          'eventually': 1,
          'excessive': 1,
          'amount': 1,
          'pain': 1,
          'killers': 1,
          'paralysed': 1,
          'waist': 1,
          'especially': 1,
          'upsetting': 1,
          'assassin': 1,
          'nalthea': 1,
          'joined': 1,
          'nfollowing': 1,
          'operation': 1,
          'decides': 1,
          'stop': 1,
          'plans': 1,
          'determination': 1,
          'follow': 1,
          'nas': 1,
          'progresses': 1,
          'become': 1,
          'increasingly': 1,
          'frail': 1,
          'sick': 1,
          'ncourtney': 1,
          'obviously': 1,
          'understanding': 1,
          'altheas': 1,
          'situation': 1,
          'brilliant': 1,
          'portraying': 1,
          'every': 1,
          'respect': 1,
          'nits': 1,
          'sad': 1,
          'watch': 1,
          'literally': 1,
          'wither': 1,
          'away': 1,
          'nedward': 1,
          'norton': 1,
          'plays': 1,
          'lawyer': 1,
          'alan': 1,
          'nagain': 1,
          'solid': 1,
          'sympathise': 1,
          'somehow': 1,
          'puts': 1,
          'antics': 1,
          'downright': 1,
          'rude': 1,
          'judges': 1,
          'lands': 1,
          'lot': 1,
          'trouble': 1,
          'even': 1,
          'mental': 1,
          'institution': 1,
          'nisaacman': 1,
          'like': 1,
          'proving': 1,
          'quite': 1,
          'clever': 1,
          'ways': 1,
          'points': 1,
          'nmilos': 1,
          'forman': 1,
          'done': 1,
          'job': 1,
          'directing': 1,
          'really': 1,
          'exciting': 1,
          'thrilling': 1,
          'instead': 1,
          'highly': 1,
          'interesting': 1,
          'portrayal': 1,
          'ndue': 1,
          'larrys': 1,
          'also': 1,
          'times': 1,
          'speech': 1,
          'anticensorship': 1,
          'right': 1,
          'able': 1,
          'choose': 1,
          'oneself': 1,
          'buy': 1,
          'nan': 1,
          'nkeep': 1,
          'real': 1,
          'makes': 1,
          'cameo': 1,
          'judge': 1,
          'morrissey': 1,
          'npos': 1}),
 Counter({'reality': 9,
          'thirteenth': 8,
          'floor': 8,
          'nthe': 7,
          'world': 6,
          'nthis': 6,
          'film': 6,
          'virtual': 5,
          'almost': 5,
          'dark': 4,
          'matrix': 4,
          'like': 4,
          'nit': 4,
          'intelligent': 4,
          'science': 4,
          'fiction': 4,
          'personal': 4,
          'city': 3,
          'less': 3,
          'existenz': 3,
          'story': 3,
          'real': 3,
          'first': 3,
          'beautiful': 3,
          'people': 3,
          'start': 3,
          'films': 2,
          'universes': 2,
          'one': 2,
          'another': 2,
          'original': 2,
          'released': 2,
          'nand': 2,
          'completely': 2,
          'become': 2,
          'entertaining': 2,
          'dreams': 2,
          'best': 2,
          'action': 2,
          'effects': 2,
          'journey': 2,
          'madness': 2,
          'audience': 2,
          'presents': 2,
          'plot': 2,
          'serious': 2,
          'nin': 2,
          'fuller': 2,
          'program': 2,
          'enter': 2,
          'truth': 2,
          'na': 2,
          'key': 2,
          'simulation': 2,
          'creators': 2,
          'take': 2,
          'someones': 2,
          'unknown': 2,
          'nthey': 2,
          'sanity': 2,
          'mistakes': 2,
          'lives': 2,
          'living': 2,
          'nwith': 2,
          'blade': 2,
          'runner': 2,
          'possibilities': 2,
          'thirties': 2,
          'elegant': 2,
          'contrast': 2,
          'nvirtual': 2,
          'endless': 2,
          'paradise': 2,
          'life': 2,
          'way': 2,
          'think': 2,
          'interesting': 2,
          'philosophical': 2,
          'answered': 2,
          'course': 2,
          'since': 2,
          'recreation': 2,
          'nthere': 2,
          'right': 2,
          'doesnt': 2,
          'topic': 1,
          'defined': 1,
          'genre': 1,
          'nsince': 1,
          '1998': 1,
          'alternative': 1,
          'parallel': 1,
          'worlds': 1,
          'coming': 1,
          'popular': 1,
          'nall': 1,
          'successful': 1,
          'ndavid': 1,
          'cronenbergs': 1,
          'couple': 1,
          'months': 1,
          'accepted': 1,
          'even': 1,
          'appreciated': 1,
          'hype': 1,
          'gone': 1,
          'aired': 1,
          'fall': 1,
          'overseen': 1,
          'ignored': 1,
          'ni': 1,
          'admit': 1,
          'issue': 1,
          'something': 1,
          'tiring': 1,
          'annoying': 1,
          'feeling': 1,
          'eating': 1,
          'meal': 1,
          'therefore': 1,
          'excited': 1,
          'went': 1,
          'see': 1,
          'nhowever': 1,
          'positively': 1,
          'surprised': 1,
          'josef': 1,
          'rusnaks': 1,
          'latest': 1,
          'picture': 1,
          'nmatrix': 1,
          'thrill': 1,
          'ride': 1,
          'combining': 1,
          'hollywoods': 1,
          'nexistenz': 1,
          'violent': 1,
          'gory': 1,
          'unsettling': 1,
          'ending': 1,
          'blood': 1,
          'somewhere': 1,
          'ninstead': 1,
          'going': 1,
          'crowds': 1,
          'aiming': 1,
          'horror': 1,
          'fans': 1,
          'witch': 1,
          'provide': 1,
          'experience': 1,
          'true': 1,
          'lovers': 1,
          'find': 1,
          'rewarding': 1,
          'near': 1,
          'future': 1,
          'classified': 1,
          'building': 1,
          'genius': 1,
          'scientist': 1,
          'hannon': 1,
          'created': 1,
          'simulated': 1,
          'dreamworld': 1,
          'every': 1,
          'inhabitant': 1,
          'complex': 1,
          'selflearning': 1,
          'believes': 1,
          'nright': 1,
          'testing': 1,
          'found': 1,
          'murdered': 1,
          'ndouglas': 1,
          'hall': 1,
          'closest': 1,
          'friend': 1,
          'business': 1,
          'partner': 1,
          'immediately': 1,
          'becomes': 1,
          'prime': 1,
          'suspect': 1,
          'must': 1,
          'search': 1,
          'woman': 1,
          'gretchen': 1,
          'mol': 1,
          'suddenly': 1,
          'appears': 1,
          'scene': 1,
          'may': 1,
          'hold': 1,
          'mystery': 1,
          'might': 1,
          'unravel': 1,
          'horrifying': 1,
          'existence': 1,
          'download': 1,
          'impressive': 1,
          'visit': 1,
          'creation': 1,
          'order': 1,
          'universe': 1,
          'identity': 1,
          'person': 1,
          'called': 1,
          'conciseness': 1,
          'transfer': 1,
          'part': 1,
          'tragedy': 1,
          'wake': 1,
          'places': 1,
          'strange': 1,
          'things': 1,
          'happen': 1,
          'doubt': 1,
          'nthese': 1,
          'innocent': 1,
          'pay': 1,
          'users': 1,
          'frightening': 1,
          'fact': 1,
          'links': 1,
          'oblivious': 1,
          'knowing': 1,
          'puppets': 1,
          'fantasy': 1,
          'appealing': 1,
          'type': 1,
          'detective': 1,
          'beauty': 1,
          'lurking': 1,
          'danger': 1,
          'always': 1,
          'present': 1,
          'nour': 1,
          'modern': 1,
          'metal': 1,
          'glass': 1,
          'cold': 1,
          'unfriendly': 1,
          'impersonal': 1,
          'different': 1,
          'colorful': 1,
          'virile': 1,
          'demonstrates': 1,
          'wish': 1,
          'change': 1,
          'portrayed': 1,
          'magical': 1,
          'enchanting': 1,
          'power': 1,
          'seduces': 1,
          'nto': 1,
          'playground': 1,
          'without': 1,
          'consequences': 1,
          'nfor': 1,
          'others': 1,
          'correct': 1,
          'illusion': 1,
          'past': 1,
          'wizard': 1,
          'transforms': 1,
          'hopes': 1,
          'fantasies': 1,
          'nat': 1,
          'least': 1,
          'thats': 1,
          'beginning': 1,
          'nbut': 1,
          'youre': 1,
          'waking': 1,
          'dream': 1,
          'seems': 1,
          'worthless': 1,
          'unreal': 1,
          'returning': 1,
          'narcotic': 1,
          'effect': 1,
          'soon': 1,
          'turns': 1,
          'confusion': 1,
          'ultimately': 1,
          'nsome': 1,
          'important': 1,
          'questions': 1,
          'raised': 1,
          'nwhat': 1,
          'thought': 1,
          'nwho': 1,
          'nif': 1,
          'would': 1,
          'greatest': 1,
          'ever': 1,
          'made': 1,
          'posed': 1,
          'manner': 1,
          'visual': 1,
          'aspect': 1,
          'elements': 1,
          'portrays': 1,
          'computersimulated': 1,
          'nkirk': 1,
          'petrucelli': 1,
          'done': 1,
          'marvelous': 1,
          'job': 1,
          'glamour': 1,
          'grace': 1,
          'color': 1,
          'setting': 1,
          'opposition': 1,
          'caricatured': 1,
          'nineties': 1,
          'honest': 1,
          'decent': 1,
          'performances': 1,
          'cast': 1,
          'harald': 1,
          'kloses': 1,
          'moody': 1,
          'musical': 1,
          'score': 1,
          'place': 1,
          'time': 1,
          'rather': 1,
          'unusual': 1,
          'thing': 1,
          'aboutthe': 1,
          'complete': 1,
          'lack': 1,
          'special': 1,
          'cgi': 1,
          'animated': 1,
          'creatures': 1,
          'bullets': 1,
          'slow': 1,
          'motion': 1,
          'approach': 1,
          'reminding': 1,
          'european': 1,
          'filmmaking': 1,
          'major': 1,
          'disappointment': 1,
          'used': 1,
          'gunfights': 1,
          'mutated': 1,
          'amphibians': 1,
          'buffs': 1,
          'cityfans': 1,
          'pleased': 1,
          'inspiring': 1,
          'everything': 1,
          'lacks': 1,
          'immediacy': 1,
          'intensity': 1,
          'happy': 1,
          'end': 1,
          'alienates': 1,
          'rest': 1,
          'context': 1,
          'filmmakers': 1,
          'want': 1,
          'us': 1,
          'virtually': 1,
          'sucked': 1,
          'information': 1,
          'classics': 1,
          'including': 1,
          'mind': 1,
          'make': 1,
          'oscar': 1,
          'candidate': 1,
          'remembered': 1,
          'year': 1,
          'yet': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'must': 3,
          'deal': 3,
          'critics': 2,
          'one': 2,
          'nthe': 2,
          'time': 2,
          'wbn': 2,
          'stuart': 2,
          'masterson': 2,
          'roger': 2,
          'brian': 2,
          'benben': 2,
          'back': 2,
          'goes': 2,
          'trying': 2,
          'penny': 2,
          'amazing': 2,
          'dont': 1,
          'know': 1,
          'saw': 1,
          'wasnt': 1,
          'popular': 1,
          'consensus': 1,
          'among': 1,
          'newspaper': 1,
          'unfunny': 1,
          'dreadfully': 1,
          'boring': 1,
          'nin': 1,
          'personal': 1,
          'opinion': 1,
          'couldnt': 1,
          'wrong': 1,
          'nif': 1,
          'expecting': 1,
          'airplane': 1,
          'like': 1,
          'nlaughs': 1,
          'agatha': 1,
          'christieintense': 1,
          'mystery': 1,
          'yes': 1,
          'would': 1,
          'disappointment': 1,
          'nhowever': 1,
          'youre': 1,
          'looking': 1,
          'enjoyable': 1,
          'good': 1,
          'see': 1,
          'nhonest': 1,
          'nthis': 1,
          'story': 1,
          '4th': 1,
          'network': 1,
          'taking': 1,
          'americas': 1,
          'airwaves': 1,
          '1939': 1,
          'npenny': 1,
          'henderson': 1,
          'mary': 1,
          'station': 1,
          'owners': 1,
          'secretary': 1,
          'overbearing': 1,
          'boss': 1,
          'unimpressed': 1,
          'sponsor': 1,
          'writers': 1,
          'ready': 1,
          'quite': 1,
          'moments': 1,
          'notice': 1,
          'partly': 1,
          'due': 1,
          'fact': 1,
          'havent': 1,
          'paid': 1,
          'weeks': 1,
          'namong': 1,
          'mayhem': 1,
          'also': 1,
          'soontobe': 1,
          'exhusband': 1,
          'desperately': 1,
          'wants': 1,
          'nunfortunately': 1,
          'problems': 1,
          'get': 1,
          'worse': 1,
          'night': 1,
          'body': 1,
          'count': 1,
          'rises': 1,
          'without': 1,
          'explanation': 1,
          'nwhile': 1,
          'woo': 1,
          'police': 1,
          'try': 1,
          'find': 1,
          'killer': 1,
          'lurks': 1,
          'nmary': 1,
          'well': 1,
          'role': 1,
          'im': 1,
          'unbiased': 1,
          'wont': 1,
          'tell': 1,
          'looked': 1,
          'although': 1,
          'gets': 1,
          'screen': 1,
          'nalong': 1,
          'two': 1,
          'leads': 1,
          'several': 1,
          'recognizable': 1,
          'faces': 1,
          'including': 1,
          'corbin': 1,
          'bernsen': 1,
          'l': 1,
          'nlaw': 1,
          'michael': 1,
          'mckean': 1,
          'laverne': 1,
          'shirley': 1,
          'bobcat': 1,
          'goldthwait': 1,
          'special': 1,
          'effects': 1,
          'fooled': 1,
          'may': 1,
          'argue': 1,
          'isnt': 1,
          'difficult': 1,
          'many': 1,
          'scenes': 1,
          'nalthough': 1,
          'sometimes': 1,
          'overboard': 1,
          'physical': 1,
          'comedy': 1,
          'makes': 1,
          'mistakes': 1,
          'throughout': 1,
          'noverall': 1,
          'gave': 1,
          'depending': 1,
          'system': 1,
          'use': 1,
          'nsome': 1,
          'comments': 1,
          'collected': 1,
          'friends': 1,
          'npos': 1}),
 Counter({'film': 8,
          'would': 5,
          'ni': 4,
          'nthe': 4,
          'nand': 4,
          'sweet': 4,
          'farrelly': 3,
          'brothers': 3,
          'comedy': 3,
          'nbut': 3,
          'raunchy': 3,
          'totally': 3,
          'great': 2,
          'mary': 2,
          'knew': 2,
          'alone': 2,
          'laugh': 2,
          'also': 2,
          'nmary': 2,
          'side': 2,
          'ted': 2,
          'stiller': 2,
          'diaz': 2,
          'nhe': 2,
          'becomes': 2,
          'teeth': 2,
          'capped': 2,
          'get': 2,
          'hair': 2,
          'mentally': 2,
          'handicapped': 2,
          'skin': 2,
          'tanning': 2,
          'worth': 2,
          'hit': 2,
          'straight': 2,
          'role': 2,
          'caring': 2,
          'open': 2,
          'long': 2,
          'funny': 2,
          'tasteless': 2,
          'sequences': 2,
          'nearly': 2,
          'bad': 2,
          'nwhile': 2,
          'trepidation': 1,
          'approached': 1,
          'latest': 1,
          'funnythe': 1,
          'trailer': 1,
          'harder': 1,
          'actual': 1,
          'went': 1,
          'see': 1,
          'equalopportunity': 1,
          'offender': 1,
          'attacking': 1,
          'sensibilities': 1,
          'politically': 1,
          'correct': 1,
          'reckless': 1,
          'abandon': 1,
          'figured': 1,
          'maybe': 1,
          'another': 1,
          'lucky': 1,
          'escapee': 1,
          'nc17': 1,
          'hell': 1,
          'may': 1,
          'feel': 1,
          'better': 1,
          'morning': 1,
          'neednt': 1,
          'worried': 1,
          'sweetest': 1,
          'warmest': 1,
          'allout': 1,
          'laughandgrossfest': 1,
          '_animal': 1,
          'house_': 1,
          'nsurprisingly': 1,
          'walked': 1,
          'tight': 1,
          'line': 1,
          'making': 1,
          'touching': 1,
          'romantic': 1,
          'filling': 1,
          'details': 1,
          'five': 1,
          'six': 1,
          'outrageous': 1,
          'howlers': 1,
          'nthey': 1,
          'make': 1,
          'laughter': 1,
          'toughest': 1,
          'job': 1,
          'filmmaker': 1,
          'look': 1,
          'easy': 1,
          'plot': 1,
          'typical': 1,
          'nthirteen': 1,
          'years': 1,
          'ago': 1,
          'geeky': 1,
          'ben': 1,
          'lucked': 1,
          'dazzling': 1,
          'cameron': 1,
          'go': 1,
          'senior': 1,
          'prom': 1,
          'nas': 1,
          'luck': 1,
          'day': 1,
          'hospitalized': 1,
          'nwhy': 1,
          'shall': 1,
          'tell': 1,
          'assure': 1,
          'isnt': 1,
          'pretty': 1,
          'hires': 1,
          'private': 1,
          'investigator': 1,
          'find': 1,
          'pat': 1,
          'healy': 1,
          'matt': 1,
          'dillon': 1,
          'one': 1,
          'comic': 1,
          'villains': 1,
          'nupon': 1,
          'finding': 1,
          'lovestruck': 1,
          'pursues': 1,
          'lying': 1,
          'occupation': 1,
          'getting': 1,
          'nit': 1,
          'matter': 1,
          'time': 1,
          'finds': 1,
          'doublecrossed': 1,
          'goes': 1,
          'nwould': 1,
          'geek': 1,
          'girl': 1,
          'npuhlease': 1,
          'ending': 1,
          'pure': 1,
          'hollywood': 1,
          'surprises': 1,
          'absolute': 1,
          'joy': 1,
          'simple': 1,
          'premise': 1,
          'allows': 1,
          'humor': 1,
          'zippers': 1,
          'gel': 1,
          'disabled': 1,
          'physically': 1,
          'interracial': 1,
          'marriages': 1,
          'homosexuals': 1,
          'conditions': 1,
          'serial': 1,
          'killers': 1,
          'druggedup': 1,
          'dogs': 1,
          'dog': 1,
          'speed': 1,
          'sequence': 1,
          'price': 1,
          'admission': 1,
          'belongs': 1,
          'hall': 1,
          'fame': 1,
          'yet': 1,
          'targets': 1,
          'maintains': 1,
          'tone': 1,
          'playing': 1,
          'beautiful': 1,
          'nshe': 1,
          'devoted': 1,
          'brother': 1,
          'warren': 1,
          'w': 1,
          'nearl': 1,
          'brownmiles': 1,
          'away': 1,
          'cameraman': 1,
          '_scream_': 1,
          'nmarys': 1,
          'sunniness': 1,
          'carries': 1,
          'hereit': 1,
          'compliments': 1,
          'belowbelt': 1,
          'gags': 1,
          'come': 1,
          'ncameron': 1,
          'makes': 1,
          'charming': 1,
          'audience': 1,
          'respects': 1,
          'even': 1,
          'though': 1,
          'women': 1,
          'general': 1,
          'usually': 1,
          'undress': 1,
          'window': 1,
          'nben': 1,
          'fares': 1,
          'well': 1,
          'changing': 1,
          'image': 1,
          '_reality': 1,
          'bites_': 1,
          '_flirting': 1,
          'disaster_': 1,
          'men': 1,
          'say': 1,
          'complete': 1,
          'loser': 1,
          'nbraces': 1,
          'greasy': 1,
          'bright': 1,
          'ndillon': 1,
          'exceptionally': 1,
          'creepy': 1,
          'especially': 1,
          'rounding': 1,
          'cast': 1,
          'teds': 1,
          'friend': 1,
          'dom': 1,
          'chris': 1,
          'elliot': 1,
          'addict': 1,
          'magda': 1,
          'lin': 1,
          'shaye': 1,
          'modern': 1,
          'troubadorgreek': 1,
          'chorus': 1,
          'ron': 1,
          'lichman': 1,
          'marys': 1,
          'mom': 1,
          'markie': 1,
          'post': 1,
          'nnot': 1,
          'everything': 1,
          'works': 1,
          'nchris': 1,
          'elliots': 1,
          'blemishes': 1,
          'merely': 1,
          'boring': 1,
          'ntheres': 1,
          'lousy': 1,
          'dialogue': 1,
          'eightminute': 1,
          'vs': 1,
          'seven': 1,
          'minute': 1,
          'exercise': 1,
          'tapes': 1,
          'stretches': 1,
          'without': 1,
          'much': 1,
          'going': 1,
          'wait': 1,
          'nwhen': 1,
          'extraordinary': 1,
          'entire': 1,
          'theater': 1,
          'erupted': 1,
          'howls': 1,
          'tears': 1,
          'nbellyaches': 1,
          'carried': 1,
          'following': 1,
          'scene': 1,
          'finally': 1,
          'done': 1,
          'nyes': 1,
          'bits': 1,
          'could': 1,
          'didnt': 1,
          'cross': 1,
          'lines': 1,
          'least': 1,
          'wasnt': 1,
          '_porkys_': 1,
          '_boogie': 1,
          'nights_': 1,
          'enough': 1,
          'considered': 1,
          'date': 1,
          'flick': 1,
          'nafter': 1,
          'sour': 1,
          '_kingpin_': 1,
          'left': 1,
          'negative': 1,
          'aftertaste': 1,
          'palate': 1,
          'comes': 1,
          'funniest': 1,
          'sex': 1,
          'farce': 1,
          'since': 1,
          '_a': 1,
          'fish': 1,
          'called': 1,
          'wanda_': 1,
          'napproach': 1,
          'mind': 1,
          'reap': 1,
          'benefits': 1,
          'hugely': 1,
          'npos': 1}),
 Counter({'cop': 6,
          'gun': 4,
          'nthe': 4,
          'live': 4,
          'woman': 3,
          'like': 3,
          'prison': 3,
          'almod': 3,
          'flesh': 3,
          'victor': 3,
          'david': 3,
          'na': 2,
          'man': 2,
          'holds': 2,
          'first': 2,
          'middle': 2,
          'wrong': 2,
          'vars': 2,
          'colorful': 2,
          'ncharacters': 2,
          'often': 2,
          'look': 2,
          'husband': 2,
          'sancho': 2,
          'n': 2,
          'learns': 2,
          'standoff': 1,
          'diplomats': 1,
          'daughter': 1,
          'hostage': 1,
          'embrace': 1,
          'pressed': 1,
          'head': 1,
          'impaired': 1,
          'drink': 1,
          'due': 1,
          'wifes': 1,
          'philandering': 1,
          'trains': 1,
          'mans': 1,
          'nether': 1,
          'regions': 1,
          'threatening': 1,
          'shoot': 1,
          'nanother': 1,
          'partners': 1,
          'temple': 1,
          'forcing': 1,
          'disarm': 1,
          'scene': 1,
          'unfolds': 1,
          'foursome': 1,
          'bidding': 1,
          'bridgeupping': 1,
          'ante': 1,
          'signaling': 1,
          'tacitly': 1,
          'going': 1,
          'game': 1,
          'second': 1,
          'retrieves': 1,
          'cops': 1,
          'weapon': 1,
          'suspect': 1,
          'lowers': 1,
          'caught': 1,
          'movesin': 1,
          'slow': 1,
          'motionto': 1,
          'safety': 1,
          'nit': 1,
          'intoxicated': 1,
          'officer': 1,
          'makes': 1,
          'move': 1,
          'grabbing': 1,
          'assailants': 1,
          'room': 1,
          'turns': 1,
          'upside': 1,
          'shot': 1,
          'rings': 1,
          'nshot': 1,
          'back': 1,
          'paralyzed': 1,
          'life': 1,
          'young': 1,
          'found': 1,
          'place': 1,
          'time': 1,
          'sent': 1,
          'six': 1,
          'years': 1,
          'crime': 1,
          'didnt': 1,
          'commit': 1,
          'nstorytelling': 1,
          'always': 1,
          'one': 1,
          'pedro': 1,
          'greatest': 1,
          'gifts': 1,
          'gives': 1,
          'us': 1,
          'twisting': 1,
          'turning': 1,
          'compelling': 1,
          'tale': 1,
          'peppered': 1,
          'wellwritten': 1,
          'characters': 1,
          'find': 1,
          'carefullyconstructed': 1,
          'scenes': 1,
          'played': 1,
          'actors': 1,
          'might': 1,
          'know': 1,
          'strikingly': 1,
          'familiar': 1,
          'nevertheless': 1,
          'ntake': 1,
          'ruggedly': 1,
          'handsome': 1,
          'plaza': 1,
          'liberto': 1,
          'rabal': 1,
          'instance': 1,
          'nbefore': 1,
          'gets': 1,
          'could': 1,
          'easily': 1,
          'mistaken': 1,
          'var': 1,
          'favorite': 1,
          'antonio': 1,
          'banderas': 1,
          'nwhen': 1,
          'meet': 1,
          'elena': 1,
          'francesca': 1,
          'neri': 1,
          'nervous': 1,
          'shakedown': 1,
          'looks': 1,
          'spice': 1,
          'girl': 1,
          'barbie': 1,
          'frizzy': 1,
          'shock': 1,
          'orange': 1,
          'hair': 1,
          'later': 1,
          'tones': 1,
          'sufficiently': 1,
          'pass': 1,
          'juliette': 1,
          'lewis': 1,
          'nelenas': 1,
          'javier': 1,
          'bardem': 1,
          'crippled': 1,
          'shooting': 1,
          'wears': 1,
          'schwimmers': 1,
          'bemused': 1,
          'expression': 1,
          'throughout': 1,
          'nplaying': 1,
          'inebriated': 1,
          'cheating': 1,
          'wife': 1,
          'jos': 1,
          'angela': 1,
          'molinano': 1,
          'lookalikes': 1,
          'spring': 1,
          'mind': 1,
          'round': 1,
          'excellent': 1,
          'cast': 1,
          'nits': 1,
          'credit': 1,
          'craft': 1,
          'five': 1,
          'individuals': 1,
          'cross': 1,
          'paths': 1,
          'intertwine': 1,
          'credulity': 1,
          'begins': 1,
          'ends': 1,
          'birth': 1,
          'films': 1,
          'contradictions': 1,
          'come': 1,
          'almost': 1,
          'contractions': 1,
          'nbetween': 1,
          'two': 1,
          'childbearings': 1,
          'coincidence': 1,
          'irony': 1,
          'hefty': 1,
          'dollop': 1,
          'sex': 1,
          'form': 1,
          'key': 1,
          'elements': 1,
          'thoroughly': 1,
          'entertaining': 1,
          'film': 1,
          'nalthough': 1,
          'based': 1,
          'ruth': 1,
          'rendell': 1,
          'story': 1,
          'brimming': 1,
          'acclaimed': 1,
          'spanish': 1,
          'directors': 1,
          'highheeled': 1,
          'flourishes': 1,
          'nwomen': 1,
          'times': 1,
          'alluring': 1,
          'repulsive': 1,
          'extravagant': 1,
          'hairdos': 1,
          'animal': 1,
          'print': 1,
          'coats': 1,
          'providing': 1,
          'highlights': 1,
          'intricatelywoven': 1,
          'drama': 1,
          'eye': 1,
          'bruised': 1,
          'abusive': 1,
          'mouth': 1,
          'bloodied': 1,
          'impromptu': 1,
          'delivery': 1,
          'nwhile': 1,
          'bulgarian': 1,
          'inmate': 1,
          'love': 1,
          'bible': 1,
          'quoting': 1,
          'deuteronomy': 1,
          'thereafter': 1,
          'unlike': 1,
          'way': 1,
          'refer': 1,
          'guardians': 1,
          'sick': 1,
          'flock': 1,
          'nvictors': 1,
          'prefab': 1,
          'inheritance': 1,
          'shambles': 1,
          'slum': 1,
          'resembling': 1,
          'sarajevo': 1,
          'dear': 1,
          'son': 1,
          'got': 1,
          'cancer': 1,
          'mother': 1,
          'writes': 1,
          'jail': 1,
          'nshe': 1,
          'dies': 1,
          'released': 1,
          'cemetery': 1,
          'reacquainted': 1,
          'elenaredemption': 1,
          'ultimately': 1,
          'substituting': 1,
          'revenge': 1,
          'npos': 1}),
 Counter({'hunter': 4,
          'serial': 4,
          'killer': 4,
          'weaver': 3,
          'copycat': 3,
          'academy': 2,
          'award': 2,
          'raising': 2,
          'arizona': 2,
          'hollywood': 2,
          'one': 2,
          'film': 2,
          'plot': 2,
          'thriller': 2,
          'connick': 2,
          'jr': 2,
          'helen': 2,
          'also': 2,
          'killers': 2,
          'used': 2,
          'ncopycat': 2,
          'audience': 2,
          'well': 2,
          'good': 2,
          'movie': 2,
          'anticipation': 2,
          'stars': 1,
          'like': 1,
          'sigourney': 1,
          'alien': 1,
          'trilogy': 1,
          'winner': 1,
          'holly': 1,
          'piano': 1,
          'etc': 1,
          'together': 1,
          'single': 1,
          'production': 1,
          'would': 1,
          'immediately': 1,
          'identify': 1,
          'potential': 1,
          'hot': 1,
          'shot': 1,
          'nsadly': 1,
          'though': 1,
          'tightly': 1,
          'scripted': 1,
          'nicely': 1,
          'still': 1,
          'heart': 1,
          'typical': 1,
          'nhelen': 1,
          'traumatic': 1,
          'near': 1,
          'death': 1,
          'encounter': 1,
          'darryl': 1,
          'harry': 1,
          'developed': 1,
          'phobia': 1,
          'outdoors': 1,
          'speak': 1,
          'nincidentally': 1,
          'expert': 1,
          'subject': 1,
          'make': 1,
          'juicy': 1,
          'target': 1,
          'wannabes': 1,
          'na': 1,
          'year': 1,
          'passed': 1,
          'strange': 1,
          'deaths': 1,
          'begin': 1,
          'terrorise': 1,
          'city': 1,
          'san': 1,
          'francisco': 1,
          'ndetective': 1,
          'monahan': 1,
          'getz': 1,
          'mulroney': 1,
          'baffled': 1,
          'unorthodox': 1,
          'methods': 1,
          'killing': 1,
          'seeks': 1,
          'professional': 1,
          'help': 1,
          'expected': 1,
          'reluctant': 1,
          'first': 1,
          'borrows': 1,
          'lot': 1,
          'silence': 1,
          'lambs': 1,
          'cases': 1,
          'work': 1,
          'nbut': 1,
          'tries': 1,
          'little': 1,
          'bit': 1,
          'immersing': 1,
          'lives': 1,
          'main': 1,
          'characters': 1,
          'give': 1,
          'believability': 1,
          'rather': 1,
          'unnecessary': 1,
          'scenes': 1,
          'seem': 1,
          'disrupt': 1,
          'mood': 1,
          'entire': 1,
          'nmuch': 1,
          'time': 1,
          'wasted': 1,
          'couldve': 1,
          'build': 1,
          'suspense': 1,
          'injected': 1,
          'drama': 1,
          'neven': 1,
          'act': 1,
          'departments': 1,
          'nweaver': 1,
          'vulnerable': 1,
          'yet': 1,
          'strongwithin': 1,
          'character': 1,
          'aliens': 1,
          'short': 1,
          'tough': 1,
          'texan': 1,
          'speaking': 1,
          'cop': 1,
          'nharry': 1,
          'jazz': 1,
          'singer': 1,
          'shines': 1,
          'imprisoned': 1,
          'la': 1,
          'hannibal': 1,
          'lecter': 1,
          'nwhich': 1,
          'comes': 1,
          'moment': 1,
          'judgement': 1,
          'drum': 1,
          'roll': 1,
          'please': 1,
          'nalthough': 1,
          'highly': 1,
          'predictable': 1,
          'actually': 1,
          'predict': 1,
          'rest': 1,
          '45': 1,
          'minutes': 1,
          'show': 1,
          'survives': 1,
          'moments': 1,
          'held': 1,
          'seats': 1,
          'next': 1,
          'immediate': 1,
          'move': 1,
          'nthis': 1,
          'worked': 1,
          'pretty': 1,
          'offer': 1,
          'audiences': 1,
          'couple': 1,
          'unexpected': 1,
          'jolts': 1,
          'nnice': 1,
          'bring': 1,
          'girlfriend': 1,
          'npos': 1}),
 Counter({'horizon': 10,
          'film': 9,
          'nthe': 7,
          'event': 7,
          'ship': 4,
          'horror': 4,
          'actually': 3,
          'nevent': 3,
          'many': 3,
          'alien': 3,
          'story': 3,
          'us': 3,
          'within': 3,
          'well': 3,
          'audiences': 3,
          'purpose': 2,
          'scifi': 2,
          'nit': 2,
          'even': 2,
          'like': 2,
          'buildup': 2,
          'horrifying': 2,
          'space': 2,
          'since': 2,
          'time': 2,
          'team': 2,
          'word': 2,
          'say': 2,
          'would': 2,
          'crew': 2,
          'suspense': 2,
          'really': 2,
          'enough': 2,
          'ni': 2,
          'disturbing': 2,
          'quite': 2,
          'friend': 2,
          'watch': 2,
          'nbe': 2,
          'bad': 1,
          'fact': 1,
          'good': 1,
          'achieving': 1,
          'wished': 1,
          'end': 1,
          'quickly': 1,
          'runofthemill': 1,
          'im': 1,
          'sure': 1,
          'watched': 1,
          'agree': 1,
          'original': 1,
          'sense': 1,
          'borrow': 1,
          'heavily': 1,
          'films': 1,
          'hellraiser': 1,
          'blade': 1,
          'runner': 1,
          'magic': 1,
          'lies': 1,
          'unorthodox': 1,
          'setting': 1,
          'methodical': 1,
          'makes': 1,
          'wonderfully': 1,
          'brings': 1,
          'year': 1,
          '2050': 1,
          'travel': 1,
          'enormously': 1,
          'progressed': 1,
          'built': 1,
          'secret': 1,
          'experimental': 1,
          'ability': 1,
          'fold': 1,
          'thus': 1,
          'making': 1,
          'possible': 1,
          'travelling': 1,
          'distances': 1,
          'reachable': 1,
          'mans': 1,
          'lifetime': 1,
          'disappeared': 1,
          'soon': 1,
          'went': 1,
          'operation': 1,
          '7': 1,
          'years': 1,
          'reappeared': 1,
          'orbit': 1,
          'neptune': 1,
          'na': 1,
          'search': 1,
          'rescue': 1,
          'led': 1,
          'miller': 1,
          'fishburne': 1,
          'given': 1,
          'task': 1,
          'check': 1,
          'survivors': 1,
          'designer': 1,
          'dr': 1,
          'weir': 1,
          'neill': 1,
          'follows': 1,
          'along': 1,
          'satisfy': 1,
          'curiosity': 1,
          'happened': 1,
          'otherwise': 1,
          'technologically': 1,
          'impressive': 1,
          'much': 1,
          'truer': 1,
          'ever': 1,
          'nwhile': 1,
          'cope': 1,
          'ferocious': 1,
          'creature': 1,
          'encased': 1,
          'tight': 1,
          'spaces': 1,
          'forces': 1,
          'goes': 1,
          'undefined': 1,
          'yet': 1,
          'powerful': 1,
          'unfolds': 1,
          'slowly': 1,
          'superb': 1,
          'till': 1,
          'point': 1,
          'felt': 1,
          'saying': 1,
          'loud': 1,
          'cant': 1,
          'stand': 1,
          'anymore': 1,
          'nthere': 1,
          'jolts': 1,
          'send': 1,
          'adrenalin': 1,
          'pumping': 1,
          'overtime': 1,
          'exactly': 1,
          'something': 1,
          'exciting': 1,
          'also': 1,
          'acting': 1,
          'average': 1,
          'commercial': 1,
          'standards': 1,
          'neven': 1,
          'essence': 1,
          'carried': 1,
          'thanks': 1,
          'wellpaced': 1,
          'storytelling': 1,
          'set': 1,
          'designs': 1,
          'gory': 1,
          'sequences': 1,
          'incidentally': 1,
          'generously': 1,
          'removed': 1,
          'censorship': 1,
          'board': 1,
          'ndirector': 1,
          'paul': 1,
          'anderson': 1,
          'mortal': 1,
          'kombat': 1,
          'atmosphere': 1,
          'creators': 1,
          'done': 1,
          'keeping': 1,
          'bounds': 1,
          'term': 1,
          'nthis': 1,
          'picture': 1,
          'boxoffice': 1,
          'probably': 1,
          'dreadfactor': 1,
          'impact': 1,
          'people': 1,
          'see': 1,
          'recommend': 1,
          'nalthough': 1,
          'face': 1,
          'mostly': 1,
          'molded': 1,
          'massentertainment': 1,
          'thrills': 1,
          'spills': 1,
          'keep': 1,
          'focus': 1,
          'nhowever': 1,
          'offbeat': 1,
          'element': 1,
          'ultimately': 1,
          'convey': 1,
          'nmy': 1,
          'could': 1,
          'going': 1,
          'experience': 1,
          'guess': 1,
          'immense': 1,
          'feeling': 1,
          'dread': 1,
          'cast': 1,
          'upon': 1,
          'forewarned': 1,
          'fainthearted': 1,
          'pure': 1,
          'entertainment': 1,
          'prepared': 1,
          'disturbed': 1,
          'decide': 1,
          'highly': 1,
          'recommended': 1,
          'risk': 1,
          'long': 1,
          'goodhorror': 1,
          'embraced': 1,
          'big': 1,
          'screen': 1,
          'one': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'movies': 5,
          'man': 4,
          'one': 4,
          'probably': 4,
          'would': 4,
          'cops': 3,
          'nthe': 3,
          'thats': 3,
          'like': 3,
          'sweetback': 3,
          'experimental': 2,
          'frank': 2,
          'even': 2,
          'ultimately': 2,
          'black': 2,
          'first': 2,
          'boy': 2,
          'taken': 2,
          'takes': 2,
          'credits': 2,
          'real': 2,
          'life': 2,
          'used': 2,
          'matter': 2,
          'sex': 2,
          'way': 2,
          'good': 2,
          'many': 2,
          'nin': 2,
          'nssbas': 2,
          'van': 2,
          'peebles': 2,
          'scene': 2,
          'people': 2,
          'full': 2,
          'capsule': 1,
          'earthy': 1,
          'difficult': 1,
          'shockingly': 1,
          '1997': 1,
          'refreshing': 1,
          'story': 1,
          'run': 1,
          'minutes': 1,
          'sweet': 1,
          'sweetbacks': 1,
          'baad': 1,
          'asssss': 1,
          'song': 1,
          'yes': 1,
          'checked': 1,
          'correct': 1,
          'number': 1,
          'ss': 1,
          'without': 1,
          'dialogue': 1,
          'eerie': 1,
          'montages': 1,
          'sounds': 1,
          'na': 1,
          'young': 1,
          'obviously': 1,
          'malnourished': 1,
          'fed': 1,
          'several': 1,
          'loving': 1,
          'mothersurrogate': 1,
          'figures': 1,
          'nthen': 1,
          'bed': 1,
          'sexual': 1,
          'initation': 1,
          'underneath': 1,
          'title': 1,
          'far': 1,
          'confrontatory': 1,
          'shocking': 1,
          'ten': 1,
          'basic': 1,
          'instincts': 1,
          'directness': 1,
          'clumsiness': 1,
          'something': 1,
          'seeing': 1,
          'screen': 1,
          'nthis': 1,
          'tough': 1,
          'swallow': 1,
          'reflects': 1,
          'pallid': 1,
          'unchallenging': 1,
          'gotten': 1,
          'lately': 1,
          'n': 1,
          'suspect': 1,
          'scenes': 1,
          'el': 1,
          'topo': 1,
          'salo': 1,
          'melt': 1,
          'synapses': 1,
          'modern': 1,
          'audiences': 1,
          'plot': 1,
          'simple': 1,
          'simpleminded': 1,
          'nsweetback': 1,
          'hassled': 1,
          'two': 1,
          'white': 1,
          'apparently': 1,
          'looking': 1,
          'excuse': 1,
          'beat': 1,
          'breaks': 1,
          'bonds': 1,
          'runs': 1,
          'hell': 1,
          'nalong': 1,
          'moves': 1,
          'kinds': 1,
          'environments': 1,
          'seen': 1,
          'serious': 1,
          'light': 1,
          'slums': 1,
          'missions': 1,
          'ghetto': 1,
          'lesser': 1,
          'machinegunning': 1,
          'everything': 1,
          'sight': 1,
          'end': 1,
          'roll': 1,
          'pile': 1,
          'bodies': 1,
          'get': 1,
          'kind': 1,
          'tour': 1,
          'depressing': 1,
          'anarchic': 1,
          'world': 1,
          'granted': 1,
          'appeared': 1,
          '1971': 1,
          'promptly': 1,
          'rated': 1,
          'x': 1,
          'allwhite': 1,
          'jury': 1,
          'director': 1,
          'melvin': 1,
          'crowed': 1,
          'legendary': 1,
          'ad': 1,
          'campaigns': 1,
          'hardly': 1,
          'surprising': 1,
          'ntheres': 1,
          'deal': 1,
          'handled': 1,
          'unsettlingly': 1,
          'frankness': 1,
          'spills': 1,
          'rest': 1,
          'visits': 1,
          'friends': 1,
          'house': 1,
          'hope': 1,
          'getting': 1,
          'sanctuary': 1,
          'chats': 1,
          'toilet': 1,
          'nwere': 1,
          'coming': 1,
          'close': 1,
          'let': 1,
          'alone': 1,
          'especially': 1,
          'made': 1,
          'glamorous': 1,
          'also': 1,
          'stylistics': 1,
          'relatively': 1,
          'unused': 1,
          'today': 1,
          'seem': 1,
          'curiously': 1,
          'fresh': 1,
          'new': 1,
          'hands': 1,
          'none': 1,
          'interrogated': 1,
          'loaded': 1,
          'menacing': 1,
          'energy': 1,
          'fire': 1,
          'gun': 1,
          'inches': 1,
          'ears': 1,
          'suggest': 1,
          'deafness': 1,
          'cleverly': 1,
          'edited': 1,
          'soundtrack': 1,
          'nanother': 1,
          'note': 1,
          'ssbas': 1,
          'much': 1,
          'antiwhite': 1,
          'easy': 1,
          'antiauthority': 1,
          'goes': 1,
          'demonstrate': 1,
          'authority': 1,
          'exists': 1,
          'forms': 1,
          'governments': 1,
          'churches': 1,
          'paranoid': 1,
          'inside': 1,
          'ones': 1,
          'mind': 1,
          'thirsting': 1,
          'freedom': 1,
          'looks': 1,
          'could': 1,
          'use': 1,
          'little': 1,
          'diet': 1,
          'god': 1,
          'knows': 1,
          'npos': 1}),
 Counter({'stuart': 6,
          'family': 4,
          'movie': 4,
          'really': 3,
          'also': 3,
          'show': 3,
          'comedy': 3,
          'ni': 2,
          'much': 2,
          'saves': 2,
          'saturday': 2,
          'night': 2,
          'live': 2,
          'sketch': 2,
          'real': 2,
          'truly': 2,
          'often': 2,
          'film': 2,
          'al': 2,
          'franken': 2,
          'wrote': 2,
          'nfor': 2,
          'guy': 2,
          'smalley': 2,
          'station': 2,
          'nstuart': 2,
          'well': 2,
          'getting': 2,
          'dad': 2,
          'nalthough': 2,
          'like': 2,
          'towards': 2,
          'scenes': 2,
          'especially': 2,
          'nall': 2,
          'fully': 1,
          'loaded': 1,
          'entertainment': 1,
          'review': 1,
          'website': 1,
          'coming': 1,
          'july': 1,
          'didnt': 1,
          'expect': 1,
          'rented': 1,
          'nthe': 1,
          'bombed': 1,
          'box': 1,
          'office': 1,
          'never': 1,
          'liked': 1,
          'based': 1,
          'nmy': 1,
          'concern': 1,
          'though': 1,
          'general': 1,
          'reputation': 1,
          'snlrelated': 1,
          'movies': 1,
          'translating': 1,
          'big': 1,
          'screen': 1,
          'lessthanstellar': 1,
          'results': 1,
          'halfbaked': 1,
          'anyone': 1,
          'surprised': 1,
          'discover': 1,
          'entertaining': 1,
          'hilarious': 1,
          'yet': 1,
          'touching': 1,
          'little': 1,
          'nit': 1,
          'production': 1,
          'throughandthrough': 1,
          'created': 1,
          'title': 1,
          'character': 1,
          'starred': 1,
          'picture': 1,
          'dont': 1,
          'know': 1,
          'plays': 1,
          'named': 1,
          'annoying': 1,
          'publicaccess': 1,
          'increasing': 1,
          'selfesteem': 1,
          'etc': 1,
          'although': 1,
          'licensed': 1,
          'therapist': 1,
          'program': 1,
          'proudly': 1,
          'boasts': 1,
          'graduate': 1,
          'several': 1,
          '12step': 1,
          'programs': 1,
          'enough': 1,
          'tv': 1,
          'keeps': 1,
          'distracted': 1,
          'troubles': 1,
          'nstuarts': 1,
          'relatives': 1,
          'mess': 1,
          'brother': 1,
          'harris': 1,
          'yulin': 1,
          'vincent': 1,
          'donofrio': 1,
          'respectively': 1,
          'alcoholics': 1,
          'sister': 1,
          'overweight': 1,
          'another': 1,
          'divorce': 1,
          'mom': 1,
          'constant': 1,
          'selfdenial': 1,
          'solves': 1,
          'perceived': 1,
          'problems': 1,
          'baking': 1,
          'nthen': 1,
          'disaster': 1,
          'strikes': 1,
          'accidentally': 1,
          'insults': 1,
          'manager': 1,
          'gets': 1,
          'revoked': 1,
          'nhe': 1,
          'forced': 1,
          'move': 1,
          'back': 1,
          'longer': 1,
          'support': 1,
          'picks': 1,
          'nfranken': 1,
          'characters': 1,
          'cliches': 1,
          'stereotypes': 1,
          'sharplydrawn': 1,
          'people': 1,
          'smalleys': 1,
          'always': 1,
          'imbibed': 1,
          'still': 1,
          'recall': 1,
          'times': 1,
          'father': 1,
          'seemed': 1,
          'okay': 1,
          'nalso': 1,
          'accident': 1,
          'end': 1,
          'audience': 1,
          'learn': 1,
          'mother': 1,
          'previously': 1,
          'thought': 1,
          'filled': 1,
          'small': 1,
          'funny': 1,
          'share': 1,
          'dramatic': 1,
          'moments': 1,
          'conclusion': 1,
          'lightweight': 1,
          'handles': 1,
          'better': 1,
          'many': 1,
          'socalled': 1,
          'serious': 1,
          'dramas': 1,
          'today': 1,
          'amazing': 1,
          'comes': 1,
          'essentially': 1,
          'onejoke': 1,
          'bit': 1,
          'nif': 1,
          'feel': 1,
          'renting': 1,
          'havent': 1,
          'seen': 1,
          'definitely': 1,
          'recommend': 1,
          'try': 1,
          'one': 1,
          'nyoull': 1,
          'laugh': 1,
          'youll': 1,
          'ncry': 1,
          'npos': 1}),
 Counter({'n': 10,
          'lesly': 10,
          'nthe': 9,
          'marty': 6,
          'jackieo': 6,
          'fiancee': 5,
          'like': 4,
          'pascal': 4,
          'house': 4,
          'njackieo': 4,
          'mother': 3,
          'tells': 3,
          'people': 3,
          'sane': 3,
          'play': 3,
          'nin': 3,
          'never': 3,
          'movie': 3,
          'nmrs': 2,
          'played': 2,
          'son': 2,
          'womb': 2,
          'nmarty': 2,
          'dysfunctional': 2,
          'comedy': 2,
          'yes': 2,
          'parker': 2,
          'posey': 2,
          'one': 2,
          'part': 2,
          'level': 2,
          'martys': 2,
          'new': 2,
          'mark': 2,
          'waters': 2,
          'seems': 2,
          'cutting': 2,
          'fast': 2,
          'characters': 2,
          'familys': 2,
          'two': 2,
          'type': 2,
          'twins': 2,
          'brother': 2,
          'boy': 2,
          'mrs': 2,
          'theyve': 2,
          'nthey': 2,
          'story': 2,
          'playing': 2,
          'engaging': 2,
          'pies': 2,
          'pancakes': 2,
          'donut': 2,
          'king': 2,
          'rated': 2,
          'mature': 2,
          'oh': 1,
          'god': 1,
          'sounded': 1,
          'devilish': 1,
          'wickedness': 1,
          'genevieve': 1,
          'bujold': 1,
          'didnt': 1,
          'sound': 1,
          'disgustedly': 1,
          'know': 1,
          'still': 1,
          'cant': 1,
          'believe': 1,
          'ni': 1,
          'look': 1,
          'wonder': 1,
          'ever': 1,
          'fit': 1,
          'see': 1,
          'grownup': 1,
          'twin': 1,
          'nalthough': 1,
          'sister': 1,
          'thinks': 1,
          'certifiably': 1,
          'insane': 1,
          'fits': 1,
          'right': 1,
          'rest': 1,
          'highly': 1,
          'family': 1,
          'witty': 1,
          'black': 1,
          'nmother': 1,
          'daughter': 1,
          'brilliant': 1,
          'performance': 1,
          'varying': 1,
          'degrees': 1,
          'wacko': 1,
          'nmost': 1,
          'families': 1,
          'movies': 1,
          'angry': 1,
          'meanspirited': 1,
          'diabolically': 1,
          'abnormal': 1,
          'daughters': 1,
          'fantasy': 1,
          'probably': 1,
          'sort': 1,
          'let': 1,
          'keep': 1,
          'hairbrush': 1,
          'downstairs': 1,
          'since': 1,
          'food': 1,
          'kept': 1,
          'nshe': 1,
          'explains': 1,
          'tori': 1,
          'spelling': 1,
          'soon': 1,
          'first': 1,
          'meeting': 1,
          'holding': 1,
          'private': 1,
          'came': 1,
          'dialog': 1,
          'wendy': 1,
          'macleod': 1,
          'based': 1,
          'sharp': 1,
          'biting': 1,
          'danger': 1,
          'celluloid': 1,
          'moment': 1,
          'script': 1,
          'reminiscent': 1,
          'david': 1,
          'mamet': 1,
          'flows': 1,
          'smoothly': 1,
          'paced': 1,
          'intelligence': 1,
          'mesmerizing': 1,
          'set': 1,
          'bizarre': 1,
          'exaggerated': 1,
          'setup': 1,
          'arriving': 1,
          'way': 1,
          'mansion': 1,
          'thanksgiving': 1,
          'day': 1,
          'hurricane': 1,
          'storm': 1,
          'individuals': 1,
          'giddy': 1,
          'schoolgirl': 1,
          'embarrassed': 1,
          'everything': 1,
          'complete': 1,
          'contrast': 1,
          'rival': 1,
          'jackieos': 1,
          'bitter': 1,
          'pseudosophistication': 1,
          'nas': 1,
          'younger': 1,
          'anthony': 1,
          'freddie': 1,
          'prinze': 1,
          'jr': 1,
          'plays': 1,
          'allamerica': 1,
          'whose': 1,
          'foible': 1,
          'explicit': 1,
          'obsession': 1,
          'bedding': 1,
          'brothers': 1,
          'night': 1,
          'secrets': 1,
          'potential': 1,
          'sisterinlaw': 1,
          'nthis': 1,
          'filled': 1,
          'calls': 1,
          'home': 1,
          'visitor': 1,
          'becomes': 1,
          'discombobulated': 1,
          'realizes': 1,
          'talking': 1,
          'film': 1,
          'gives': 1,
          'meaning': 1,
          'phrase': 1,
          'made': 1,
          'biggest': 1,
          'secret': 1,
          'longterm': 1,
          'incestuous': 1,
          'relationship': 1,
          'dont': 1,
          'discuss': 1,
          'although': 1,
          'particularly': 1,
          'ashamed': 1,
          'nperfect': 1,
          'viewers': 1,
          'appreciate': 1,
          'perverse': 1,
          'pulls': 1,
          'punches': 1,
          'tries': 1,
          'many': 1,
          'ways': 1,
          'subtle': 1,
          'show': 1,
          'better': 1,
          'match': 1,
          'ditzy': 1,
          'scene': 1,
          'chop': 1,
          'sticks': 1,
          'together': 1,
          'piano': 1,
          'pushes': 1,
          'aside': 1,
          'starts': 1,
          'challenging': 1,
          'classical': 1,
          'piece': 1,
          'four': 1,
          'hands': 1,
          'joins': 1,
          'looks': 1,
          'envy': 1,
          'chemistry': 1,
          'josh': 1,
          'hamilton': 1,
          'nothing': 1,
          'short': 1,
          'amazing': 1,
          'put': 1,
          'little': 1,
          'world': 1,
          'ntheir': 1,
          'ripostes': 1,
          'filmmaking': 1,
          'best': 1,
          'ndirector': 1,
          'keeps': 1,
          'shows': 1,
          'energy': 1,
          'high': 1,
          'lets': 1,
          'leads': 1,
          'sling': 1,
          'zingers': 1,
          'furious': 1,
          'pace': 1,
          'nhis': 1,
          'crisp': 1,
          'direction': 1,
          'ensures': 1,
          'nary': 1,
          'ounce': 1,
          'fat': 1,
          'temperamentally': 1,
          'incapable': 1,
          'nice': 1,
          'nand': 1,
          'jealous': 1,
          'cuts': 1,
          'mercilessly': 1,
          'poor': 1,
          'asks': 1,
          'finds': 1,
          'committed': 1,
          'crime': 1,
          'growing': 1,
          'impoverished': 1,
          'eat': 1,
          'nchicken': 1,
          'pot': 1,
          'actually': 1,
          'lots': 1,
          'replies': 1,
          'usual': 1,
          'sincerity': 1,
          'queen': 1,
          'cattily': 1,
          'inquires': 1,
          'learns': 1,
          'works': 1,
          'entertaining': 1,
          'royalty': 1,
          'nwith': 1,
          'rolfe': 1,
          'kents': 1,
          'whimsically': 1,
          'sinister': 1,
          'music': 1,
          'clear': 1,
          'headed': 1,
          'nwill': 1,
          'end': 1,
          'big': 1,
          'emotional': 1,
          'explosion': 1,
          'murder': 1,
          'slowly': 1,
          'words': 1,
          'familial': 1,
          'catharsis': 1,
          'weather': 1,
          'disaster': 1,
          'emotionally': 1,
          'charged': 1,
          'clearly': 1,
          'going': 1,
          'somewhere': 1,
          'captivate': 1,
          'audience': 1,
          'spell': 1,
          'nill': 1,
          'say': 1,
          'except': 1,
          'ending': 1,
          'perfect': 1,
          'bit': 1,
          'surprise': 1,
          'runs': 1,
          'blazing': 1,
          '1': 1,
          '25': 1,
          'nit': 1,
          'r': 1,
          'sexual': 1,
          'situations': 1,
          'conversations': 1,
          'themes': 1,
          'violent': 1,
          'overtones': 1,
          'profanity': 1,
          'would': 1,
          'fine': 1,
          'older': 1,
          'teenagers': 1,
          'e': 1,
          'treat': 1,
          'nc17': 1,
          'npos': 1}),
 Counter({'truman': 10,
          'show': 8,
          'people': 7,
          'life': 6,
          'nthe': 5,
          'trumans': 5,
          'probably': 4,
          'know': 3,
          'carrey': 3,
          'day': 3,
          'director': 3,
          'like': 3,
          'nand': 3,
          'interesting': 3,
          'would': 3,
          'could': 2,
          'watched': 2,
          'world': 2,
          'thought': 2,
          'tv': 2,
          'jim': 2,
          'entire': 2,
          'hes': 2,
          'living': 2,
          'island': 2,
          'hollywood': 2,
          'actors': 2,
          'extras': 2,
          'watch': 2,
          'comes': 2,
          'everyone': 2,
          'else': 2,
          'youve': 2,
          'crucial': 2,
          'details': 2,
          'anything': 2,
          'entertainment': 2,
          'news': 2,
          'way': 2,
          'premise': 2,
          'going': 2,
          'think': 2,
          'eat': 2,
          'good': 2,
          'nbut': 2,
          'father': 2,
          'christof': 2,
          'keep': 2,
          'thing': 2,
          'even': 2,
          'balance': 2,
          'shows': 2,
          'us': 2,
          'without': 2,
          'cameras': 2,
          'mean': 2,
          'let': 2,
          'though': 2,
          'dont': 1,
          'many': 1,
          'idea': 1,
          'cross': 1,
          'mind': 1,
          'ongoing': 1,
          'television': 1,
          'another': 1,
          'something': 1,
          'used': 1,
          'wonder': 1,
          'younger': 1,
          'ni': 1,
          'cant': 1,
          'decide': 1,
          'first': 1,
          'lot': 1,
          'brother': 1,
          'hit': 1,
          'head': 1,
          'baseball': 1,
          'bat': 1,
          'im': 1,
          'pretty': 1,
          'sure': 1,
          'andrew': 1,
          'niccol': 1,
          'screenwriter': 1,
          'curious': 1,
          'man': 1,
          'whose': 1,
          'engineered': 1,
          'corporation': 1,
          'marketed': 1,
          'public': 1,
          'nsince': 1,
          'birth': 1,
          'fictional': 1,
          'town': 1,
          'seahaven': 1,
          'fla': 1,
          'actually': 1,
          'exists': 1,
          'giant': 1,
          'domed': 1,
          'set': 1,
          'beyond': 1,
          'sign': 1,
          'nall': 1,
          'burbanks': 1,
          'anonymous': 1,
          'townfolk': 1,
          'paid': 1,
          'npeople': 1,
          '24': 1,
          'hours': 1,
          'live': 1,
          'commercial': 1,
          'interruptions': 1,
          'nrevenue': 1,
          'instead': 1,
          'product': 1,
          'placement': 1,
          'staple': 1,
          'contemporary': 1,
          'friends': 1,
          'relatives': 1,
          'describing': 1,
          'consumer': 1,
          'items': 1,
          'cheerful': 1,
          'optimistic': 1,
          'tones': 1,
          'sun': 1,
          'rises': 1,
          'sets': 1,
          'cue': 1,
          'likes': 1,
          'neven': 1,
          'havent': 1,
          'seen': 1,
          'learned': 1,
          'commercials': 1,
          'trailer': 1,
          'promotion': 1,
          'blitzes': 1,
          'nif': 1,
          'ive': 1,
          'written': 1,
          'far': 1,
          'surprise': 1,
          'pity': 1,
          'making': 1,
          'primary': 1,
          'source': 1,
          'neither': 1,
          'otherwise': 1,
          'youll': 1,
          'sucks': 1,
          'nit': 1,
          'begins': 1,
          'looking': 1,
          'mirror': 1,
          'reciting': 1,
          'scene': 1,
          'alive': 1,
          'wishing': 1,
          'neighbors': 1,
          'afternoon': 1,
          'evening': 1,
          'domestic': 1,
          'bliss': 1,
          'wife': 1,
          'laura': 1,
          'linney': 1,
          'weird': 1,
          'things': 1,
          'start': 1,
          'happening': 1,
          'na': 1,
          'stage': 1,
          'light': 1,
          'falling': 1,
          'sky': 1,
          'hears': 1,
          'tracking': 1,
          'movements': 1,
          'radio': 1,
          'swears': 1,
          'sees': 1,
          'dead': 1,
          'nwe': 1,
          'learn': 1,
          'flashback': 1,
          'drowned': 1,
          'child': 1,
          'sailing': 1,
          'rainstorm': 1,
          'death': 1,
          'staged': 1,
          'ed': 1,
          'harris': 1,
          'wanted': 1,
          'put': 1,
          'fear': 1,
          'water': 1,
          'leaving': 1,
          'nsimilar': 1,
          'cruel': 1,
          'manipulations': 1,
          'stumbling': 1,
          'upon': 1,
          'truth': 1,
          'least': 1,
          'best': 1,
          'friend': 1,
          'marlon': 1,
          'noah': 1,
          'emmerich': 1,
          'assures': 1,
          'conspiracy': 1,
          'last': 1,
          'hed': 1,
          'ever': 1,
          'hurt': 1,
          'nas': 1,
          'trusting': 1,
          'eyes': 1,
          'tear': 1,
          'fades': 1,
          'emotional': 1,
          'synthesizer': 1,
          'music': 1,
          'worldwide': 1,
          'audience': 1,
          'apparently': 1,
          'never': 1,
          'ntheres': 1,
          'daily': 1,
          'behindthescenes': 1,
          'update': 1,
          'harry': 1,
          'shearer': 1,
          'captures': 1,
          'highlights': 1,
          'existence': 1,
          'key': 1,
          'movie': 1,
          'finding': 1,
          'right': 1,
          'humor': 1,
          'drama': 1,
          'obvious': 1,
          'implications': 1,
          'directions': 1,
          'hinges': 1,
          'comic': 1,
          'naivet': 1,
          'real': 1,
          'sense': 1,
          'longing': 1,
          'drive': 1,
          'find': 1,
          'hell': 1,
          'nhes': 1,
          'come': 1,
          'long': 1,
          'talking': 1,
          'butt': 1,
          'cheeks': 1,
          'ace': 1,
          'ventura': 1,
          'nmost': 1,
          'fundamentally': 1,
          'plain': 1,
          'follow': 1,
          'along': 1,
          'peter': 1,
          'weir': 1,
          'capture': 1,
          'persons': 1,
          'person': 1,
          'realizing': 1,
          'coordinate': 1,
          'hide': 1,
          'feed': 1,
          'automatic': 1,
          'lines': 1,
          'imagine': 1,
          'ambitious': 1,
          'pitching': 1,
          'nsure': 1,
          'genre': 1,
          '90s': 1,
          'reality': 1,
          'programming': 1,
          'jerry': 1,
          'springers': 1,
          'popularity': 1,
          'roof': 1,
          'deserve': 1,
          'humiliated': 1,
          'turning': 1,
          'intimate': 1,
          'airwaves': 1,
          'use': 1,
          'hidden': 1,
          'done': 1,
          'name': 1,
          'greater': 1,
          'merge': 1,
          'two': 1,
          'got': 1,
          'nright': 1,
          'implausible': 1,
          'fcc': 1,
          'wont': 1,
          'say': 1,
          'sword': 1,
          'air': 1,
          'theyd': 1,
          'broadcast': 1,
          'every': 1,
          'detail': 1,
          'mans': 1,
          'consent': 1,
          'none': 1,
          'happen': 1,
          'end': 1,
          'privacy': 1,
          'nyou': 1,
          'npos': 1}),
 Counter({'story': 5,
          'accident': 4,
          'films': 4,
          'sweet': 3,
          'hereafter': 3,
          'film': 3,
          'stephens': 3,
          'nthe': 3,
          'well': 2,
          'egoyan': 2,
          'narrative': 2,
          'bus': 2,
          'manner': 2,
          'meet': 2,
          'nbut': 2,
          'whose': 2,
          'daughter': 2,
          'people': 2,
          'ni': 2,
          'problem': 2,
          'first': 2,
          'miserable': 2,
          'much': 2,
          'two': 2,
          'kissed': 2,
          'material': 2,
          'fine': 2,
          'filmmaker': 1,
          'deconstructs': 1,
          'atom': 1,
          'nim': 1,
          'referring': 1,
          'specifically': 1,
          'form': 1,
          'nin': 1,
          'tells': 1,
          'similar': 1,
          'framework': 1,
          'exotica': 1,
          'adjuster': 1,
          'nsaid': 1,
          'fatal': 1,
          'school': 1,
          'small': 1,
          'town': 1,
          'sam': 1,
          'dent': 1,
          'british': 1,
          'columbia': 1,
          'shatters': 1,
          'morale': 1,
          'locals': 1,
          'told': 1,
          'unstraightforward': 1,
          'nwhen': 1,
          'opens': 1,
          'already': 1,
          'happened': 1,
          'wonderful': 1,
          'holm': 1,
          'polite': 1,
          'ambulancechaser': 1,
          'arrived': 1,
          'promise': 1,
          'lawsuit': 1,
          'eek': 1,
          'truth': 1,
          'really': 1,
          'occurred': 1,
          'fateful': 1,
          'morning': 1,
          'nthroughout': 1,
          'get': 1,
          'parents': 1,
          'dead': 1,
          'broken': 1,
          'souls': 1,
          'follow': 1,
          'like': 1,
          'pied': 1,
          'piper': 1,
          'passages': 1,
          'read': 1,
          'one': 1,
          'living': 1,
          'passenger': 1,
          'paralyzed': 1,
          'nicole': 1,
          'polley': 1,
          'dark': 1,
          'secrets': 1,
          'life': 1,
          'may': 1,
          'affect': 1,
          'decision': 1,
          'testify': 1,
          'nwe': 1,
          'finally': 1,
          'see': 1,
          'three': 1,
          'quarters': 1,
          'stunning': 1,
          'visual': 1,
          'effect': 1,
          'na': 1,
          'horrific': 1,
          'long': 1,
          'take': 1,
          'shows': 1,
          'sliding': 1,
          'stopping': 1,
          'collapsing': 1,
          'frozen': 1,
          'lake': 1,
          'best': 1,
          'digital': 1,
          'trickery': 1,
          'movie': 1,
          'year': 1,
          'perhaps': 1,
          'ever': 1,
          'motion': 1,
          'picture': 1,
          'fractured': 1,
          'also': 1,
          'intercuts': 1,
          'preoccupied': 1,
          'airplane': 1,
          'traveling': 1,
          'hivpositive': 1,
          'runaway': 1,
          'glimpses': 1,
          'artificially': 1,
          'happy': 1,
          'lives': 1,
          'led': 1,
          'preaccident': 1,
          'structure': 1,
          'egoyans': 1,
          'heavy': 1,
          'handedness': 1,
          'behind': 1,
          'camera': 1,
          'nfor': 1,
          'hour': 1,
          'quite': 1,
          'honestly': 1,
          'say': 1,
          'verge': 1,
          'tears': 1,
          'thats': 1,
          'anguished': 1,
          'folk': 1,
          'sympathy': 1,
          'wanes': 1,
          'lot': 1,
          'sadness': 1,
          'becomes': 1,
          'nalso': 1,
          'subplot': 1,
          'involving': 1,
          'incest': 1,
          'rings': 1,
          'untrue': 1,
          'nperhaps': 1,
          'wouldnt': 1,
          'feel': 1,
          'contrived': 1,
          'werent': 1,
          'shot': 1,
          'tasteful': 1,
          'nthere': 1,
          'characters': 1,
          'father': 1,
          'appeared': 1,
          'thought': 1,
          'lovers': 1,
          'halfright': 1,
          'nnevertheless': 1,
          'worthseeing': 1,
          'delightful': 1,
          'critic': 1,
          'geoff': 1,
          'pevere': 1,
          'recently': 1,
          'wrote': 1,
          'american': 1,
          'action': 1,
          'canadian': 1,
          'consequences': 1,
          'hence': 1,
          'recent': 1,
          'wave': 1,
          'effects': 1,
          'shock': 1,
          'death': 1,
          'toronto': 1,
          'directors': 1,
          'including': 1,
          'crash': 1,
          'better': 1,
          'either': 1,
          'simply': 1,
          'boring': 1,
          'case': 1,
          'afraid': 1,
          'necrophilia': 1,
          'negoyan': 1,
          'postmodern': 1,
          'storyteller': 1,
          'work': 1,
          'entertaining': 1,
          'edgy': 1,
          'smart': 1,
          'bit': 1,
          'intellectual': 1,
          'times': 1,
          'nthough': 1,
          'harped': 1,
          'weightiness': 1,
          'always': 1,
          'absorbed': 1,
          'engrossed': 1,
          'surprised': 1,
          'npos': 1}),
 Counter({'one': 4,
          'nhe': 3,
          'thorton': 3,
          'better': 3,
          'film': 3,
          'simple': 3,
          'films': 3,
          'picture': 3,
          'ni': 3,
          'think': 3,
          'flowing': 3,
          'hollywood': 3,
          'know': 2,
          'would': 2,
          '4': 2,
          'jacob': 2,
          'lou': 2,
          'hank': 2,
          'along': 2,
          'rather': 2,
          'going': 2,
          'worth': 2,
          'na': 2,
          'things': 2,
          'dark': 2,
          'raimi': 2,
          'intriguing': 2,
          'really': 2,
          'many': 2,
          'malicks': 2,
          'nit': 2,
          'pretty': 2,
          'small': 2,
          'characters': 2,
          'industry': 2,
          'gives': 2,
          'deep': 2,
          'character': 2,
          'say': 2,
          'group': 2,
          'million': 1,
          'found': 1,
          'previously': 1,
          'undiscovered': 1,
          'airplane': 1,
          'crash': 1,
          'site': 1,
          'especially': 1,
          'n': 1,
          'huh': 1,
          'nwell': 1,
          'event': 1,
          'situation': 1,
          'paxton': 1,
          'finds': 1,
          'dimwitted': 1,
          'brother': 1,
          'tubby': 1,
          'friend': 1,
          'brent': 1,
          'briscoe': 1,
          'come': 1,
          'upon': 1,
          'large': 1,
          'bag': 1,
          'cash': 1,
          'inside': 1,
          'plane': 1,
          'wreck': 1,
          'nagainst': 1,
          'judgement': 1,
          'decides': 1,
          'go': 1,
          'idea': 1,
          'keeping': 1,
          'authorities': 1,
          'nthe': 1,
          'rest': 1,
          'question': 1,
          'die': 1,
          'keep': 1,
          'secret': 1,
          'wish': 1,
          'lies': 1,
          'lines': 1,
          'bad': 1,
          'clay': 1,
          'pigeons': 1,
          'even': 1,
          'fargo': 1,
          'kind': 1,
          'wrapped': 1,
          'little': 1,
          'bundle': 1,
          'noh': 1,
          'much': 1,
          'nsam': 1,
          'took': 1,
          'departure': 1,
          'normal': 1,
          'freakshow': 1,
          'horrormonkey': 1,
          'made': 1,
          'stylish': 1,
          'lets': 1,
          'audience': 1,
          'sit': 1,
          'back': 1,
          'watch': 1,
          'events': 1,
          'unfold': 1,
          'force': 1,
          'throats': 1,
          'directors': 1,
          'prefer': 1,
          'knew': 1,
          'winner': 1,
          'hands': 1,
          'decided': 1,
          'direct': 1,
          'natural': 1,
          'course': 1,
          'none': 1,
          'components': 1,
          'linked': 1,
          'recurring': 1,
          'theme': 1,
          'terrence': 1,
          'thin': 1,
          'red': 1,
          'line': 1,
          'nin': 1,
          'three': 1,
          'hour': 1,
          'boreathon': 1,
          'makes': 1,
          'interesting': 1,
          'attempt': 1,
          'link': 1,
          'mother': 1,
          'earth': 1,
          'war': 1,
          'story': 1,
          'seemed': 1,
          'nothing': 1,
          'occasional': 1,
          'cut': 1,
          'field': 1,
          'grass': 1,
          'bird': 1,
          'body': 1,
          'water': 1,
          'nsure': 1,
          'obvious': 1,
          'metaphorical': 1,
          'connections': 1,
          'subtlty': 1,
          'efforts': 1,
          'nraimi': 1,
          'fine': 1,
          'job': 1,
          'tying': 1,
          'fox': 1,
          'chicken': 1,
          'coop': 1,
          'birds': 1,
          'prey': 1,
          'signify': 1,
          'future': 1,
          'viewers': 1,
          'may': 1,
          'miss': 1,
          'comparison': 1,
          'ingredient': 1,
          'nand': 1,
          'theres': 1,
          'billy': 1,
          'bob': 1,
          'proof': 1,
          'independent': 1,
          'vital': 1,
          'life': 1,
          'blood': 1,
          'nif': 1,
          'continute': 1,
          'produce': 1,
          'people': 1,
          'like': 1,
          'ok': 1,
          'fantastic': 1,
          'devastatingly': 1,
          'performance': 1,
          'engrossing': 1,
          'carl': 1,
          'childers': 1,
          'slingblade': 1,
          'complex': 1,
          'njacob': 1,
          'slow': 1,
          'yet': 1,
          'often': 1,
          'see': 1,
          'thought': 1,
          'wondered': 1,
          'thinking': 1,
          'never': 1,
          'didnt': 1,
          'taking': 1,
          'long': 1,
          'time': 1,
          'thing': 1,
          'said': 1,
          'nhere': 1,
          'proves': 1,
          'best': 1,
          'actors': 1,
          'nthough': 1,
          'plot': 1,
          'somewhat': 1,
          'unoriginal': 1,
          'appealing': 1,
          'new': 1,
          'twist': 1,
          'npaxton': 1,
          'performances': 1,
          'career': 1,
          'straight': 1,
          'serious': 1,
          'leader': 1,
          'far': 1,
          'cry': 1,
          'chet': 1,
          'wierd': 1,
          'science': 1,
          'nperhaps': 1,
          'bridget': 1,
          'fonda': 1,
          'miscast': 1,
          'advicegiving': 1,
          'wife': 1,
          'certainly': 1,
          'doesnt': 1,
          'anything': 1,
          'ruin': 1,
          'plan': 1,
          'included': 1,
          'recent': 1,
          'unredeeming': 1,
          'nbut': 1,
          'least': 1,
          'important': 1,
          'message': 1,
          'unlike': 1,
          'counterparts': 1,
          'npos': 1}),
 Counter({'nsimon': 6,
          'film': 6,
          'simon': 5,
          'birch': 4,
          'movie': 3,
          'didnt': 3,
          'joe': 3,
          'mom': 3,
          'also': 3,
          'nthe': 3,
          'joes': 3,
          'first': 3,
          'job': 3,
          'films': 3,
          'sunday': 2,
          'one': 2,
          'year': 2,
          'old': 2,
          'michael': 2,
          'smith': 2,
          'mazzello': 2,
          'last': 2,
          'plan': 2,
          'njoe': 2,
          'father': 2,
          'dont': 2,
          'really': 2,
          'nhe': 2,
          'local': 2,
          'simons': 2,
          'teacher': 2,
          'played': 2,
          'would': 2,
          'little': 2,
          'trouble': 2,
          'way': 2,
          'funny': 2,
          'although': 2,
          'jim': 2,
          'written': 2,
          'outstanding': 2,
          'without': 2,
          'cast': 2,
          'njoseph': 2,
          'someone': 2,
          'turned': 2,
          'saw': 1,
          'basically': 1,
          'sold': 1,
          'theater': 1,
          'afternoon': 1,
          'nwhen': 1,
          'audience': 1,
          'exiting': 1,
          'hear': 1,
          'negative': 1,
          'comment': 1,
          'offer': 1,
          'primarily': 1,
          'friendship': 1,
          'two': 1,
          'twelve': 1,
          'boys': 1,
          'ian': 1,
          'joseph': 1,
          'destiny': 1,
          'holds': 1,
          'dwarf': 1,
          'supposed': 1,
          'night': 1,
          'birth': 1,
          'due': 1,
          'weak': 1,
          'heart': 1,
          'nsurprisingly': 1,
          'constantly': 1,
          'reminds': 1,
          'everyone': 1,
          'living': 1,
          'miracle': 1,
          'thinks': 1,
          'god': 1,
          'purpose': 1,
          'life': 1,
          'condition': 1,
          'doesnt': 1,
          'know': 1,
          'illegitimate': 1,
          'child': 1,
          'referred': 1,
          'comically': 1,
          'dramatically': 1,
          'throughout': 1,
          'bastard': 1,
          'whos': 1,
          'ashley': 1,
          'judd': 1,
          'wont': 1,
          'tell': 1,
          'dwarfism': 1,
          'problem': 1,
          'people': 1,
          'town': 1,
          'like': 1,
          'isnt': 1,
          'natural': 1,
          'neven': 1,
          'parents': 1,
          'care': 1,
          'disappointed': 1,
          'normal': 1,
          'son': 1,
          'harassed': 1,
          'church': 1,
          'pastor': 1,
          'rev': 1,
          'russell': 1,
          'david': 1,
          'strathairn': 1,
          'chain': 1,
          'smoking': 1,
          'school': 1,
          'jan': 1,
          'hooks': 1,
          'person': 1,
          'cares': 1,
          'looks': 1,
          'mother': 1,
          'nit': 1,
          'luck': 1,
          'accidentally': 1,
          'kills': 1,
          'something': 1,
          'told': 1,
          'beginning': 1,
          'motherless': 1,
          'well': 1,
          'fatherless': 1,
          'feels': 1,
          'need': 1,
          'find': 1,
          'real': 1,
          'nwith': 1,
          'help': 1,
          'ben': 1,
          'oliver': 1,
          'platt': 1,
          'drama': 1,
          'moms': 1,
          'current': 1,
          'boyfriend': 1,
          'death': 1,
          'attempt': 1,
          'locate': 1,
          'dad': 1,
          'get': 1,
          'nmost': 1,
          'laugh': 1,
          'loud': 1,
          'look': 1,
          'gods': 1,
          'loses': 1,
          'faith': 1,
          'along': 1,
          'nstarring': 1,
          'five': 1,
          'minutes': 1,
          'hollywoods': 1,
          'newest': 1,
          'dramatic': 1,
          'actor': 1,
          'carrey': 1,
          'njim': 1,
          'plays': 1,
          'adult': 1,
          'version': 1,
          'impressive': 1,
          'starting': 1,
          'tying': 1,
          'right': 1,
          'nthis': 1,
          'character': 1,
          'top': 1,
          'anyway': 1,
          'commendable': 1,
          'directed': 1,
          'mark': 1,
          'steven': 1,
          'johnson': 1,
          'director': 1,
          'several': 1,
          'including': 1,
          'grumpy': 1,
          'men': 1,
          'series': 1,
          'writing': 1,
          'directing': 1,
          'structure': 1,
          'flawless': 1,
          'flows': 1,
          'together': 1,
          'perfectly': 1,
          'dialog': 1,
          'goes': 1,
          'extremely': 1,
          'morose': 1,
          'missing': 1,
          'beat': 1,
          'excellent': 1,
          'gives': 1,
          'stand': 1,
          'performance': 1,
          'age': 1,
          'alone': 1,
          '15': 1,
          'nian': 1,
          'debut': 1,
          'strong': 1,
          'physical': 1,
          'presence': 1,
          'believe': 1,
          'hesitation': 1,
          'nother': 1,
          'great': 1,
          'performances': 1,
          'rest': 1,
          'supporting': 1,
          'ni': 1,
          'loved': 1,
          'far': 1,
          'away': 1,
          'best': 1,
          'seen': 1,
          'ntake': 1,
          'whole': 1,
          'family': 1,
          'see': 1,
          'magnificent': 1,
          'american': 1,
          'masterpiece': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'saint': 5,
          'nthis': 4,
          'nthe': 4,
          'kilmers': 4,
          'character': 4,
          'would': 4,
          'energy': 4,
          'actually': 3,
          'kilmer': 3,
          'something': 3,
          'goal': 3,
          'many': 3,
          'catholic': 3,
          'finds': 3,
          'mission': 3,
          'steal': 3,
          'tretiak': 3,
          'way': 3,
          'nwhen': 3,
          'million': 3,
          'one': 3,
          'moments': 3,
          'series': 2,
          'simon': 2,
          'templar': 2,
          'stealing': 2,
          'others': 2,
          'bond': 2,
          'man': 2,
          'away': 2,
          'achieve': 2,
          'reach': 2,
          'nkilmer': 2,
          'rather': 2,
          'although': 2,
          'left': 2,
          'school': 2,
          'young': 2,
          'boy': 2,
          'must': 2,
          '50': 2,
          'emma': 2,
          'russell': 2,
          'shue': 2,
          'pieces': 2,
          'enjoyable': 2,
          'disguises': 2,
          'convincing': 2,
          'even': 2,
          'formula': 2,
          'falling': 2,
          'love': 2,
          'putting': 2,
          'able': 2,
          'little': 1,
          'better': 1,
          'expected': 1,
          'ways': 1,
          'nin': 1,
          'theatrical': 1,
          'remake': 1,
          'television': 1,
          'sequel': 1,
          'return': 1,
          'val': 1,
          'plays': 1,
          'elusive': 1,
          'thief': 1,
          'makes': 1,
          'living': 1,
          'things': 1,
          'closely': 1,
          'resembles': 1,
          'james': 1,
          'flick': 1,
          'nit': 1,
          'classic': 1,
          'symbols': 1,
          'anything': 1,
          'get': 1,
          'woman': 1,
          'persues': 1,
          'villain': 1,
          'kills': 1,
          'anyone': 1,
          'provides': 1,
          'good': 1,
          'role': 1,
          'times': 1,
          'ponder': 1,
          'gets': 1,
          'tight': 1,
          'situations': 1,
          'begins': 1,
          'childhood': 1,
          'strict': 1,
          'run': 1,
          'priests': 1,
          'nas': 1,
          'enjoyed': 1,
          'magic': 1,
          'often': 1,
          'journey': 1,
          'schoolwork': 1,
          'nthat': 1,
          'teacher': 1,
          'reading': 1,
          'book': 1,
          'demands': 1,
          'proclaim': 1,
          'name': 1,
          'nhe': 1,
          'refuses': 1,
          'instead': 1,
          'announces': 1,
          'wishes': 1,
          'leads': 1,
          'devestating': 1,
          'mistake': 1,
          'stay': 1,
          'mind': 1,
          'throughout': 1,
          'life': 1,
          'nkilmers': 1,
          'first': 1,
          'shown': 1,
          'microchip': 1,
          'ivan': 1,
          'played': 1,
          'rade': 1,
          'serbedzija': 1,
          'nduring': 1,
          'press': 1,
          'conference': 1,
          'make': 1,
          'heavily': 1,
          'guarded': 1,
          'vault': 1,
          'area': 1,
          'avoiding': 1,
          'guards': 1,
          'cameras': 1,
          'potential': 1,
          'obstacles': 1,
          'nonce': 1,
          'completed': 1,
          'safely': 1,
          'home': 1,
          'fee': 1,
          'paid': 1,
          'logs': 1,
          'bank': 1,
          'account': 1,
          'dollars': 1,
          'short': 1,
          'decides': 1,
          'carry': 1,
          'retire': 1,
          'ndr': 1,
          'portrayed': 1,
          'elisabeth': 1,
          'discovered': 1,
          'produce': 1,
          'cold': 1,
          'fusion': 1,
          'new': 1,
          'advancement': 1,
          'change': 1,
          'world': 1,
          'save': 1,
          'thousands': 1,
          'lives': 1,
          'areas': 1,
          'russia': 1,
          'millions': 1,
          'without': 1,
          'heat': 1,
          'freezing': 1,
          'death': 1,
          'problem': 1,
          'like': 1,
          'use': 1,
          'gain': 1,
          'power': 1,
          'amongst': 1,
          'people': 1,
          'presents': 1,
          'option': 1,
          'ntretiak': 1,
          'hires': 1,
          'equations': 1,
          'small': 1,
          'paper': 1,
          'none': 1,
          'features': 1,
          'film': 1,
          'dawns': 1,
          'complete': 1,
          'missions': 1,
          'nthey': 1,
          'characters': 1,
          'us': 1,
          'utilizes': 1,
          'disguise': 1,
          'lure': 1,
          'shues': 1,
          'getting': 1,
          'know': 1,
          'provide': 1,
          'means': 1,
          'two': 1,
          'meet': 1,
          'end': 1,
          'sensual': 1,
          'experience': 1,
          'seemingly': 1,
          'alterego': 1,
          'traveling': 1,
          'artist': 1,
          'nyet': 1,
          'requires': 1,
          'feelings': 1,
          'aside': 1,
          'nshues': 1,
          'eventually': 1,
          'track': 1,
          'names': 1,
          'saints': 1,
          'together': 1,
          'else': 1,
          'team': 1,
          'reclaim': 1,
          'formulas': 1,
          'actionpacked': 1,
          'slow': 1,
          'points': 1,
          'sound': 1,
          'well': 1,
          'done': 1,
          'added': 1,
          'intense': 1,
          'nalong': 1,
          'course': 1,
          'brief': 1,
          'comedy': 1,
          'nthese': 1,
          'almost': 1,
          'always': 1,
          'thanks': 1,
          'extraneous': 1,
          'personalities': 1,
          'nall': 1,
          'nearly': 1,
          'nonstop': 1,
          'action': 1,
          'npos': 1}),
 Counter({'thirteenth': 8,
          'floor': 8,
          'film': 8,
          'nthe': 6,
          'fuller': 6,
          'matrix': 5,
          'existenz': 5,
          'would': 4,
          'reality': 4,
          'world': 4,
          'nin': 4,
          'another': 4,
          'check': 3,
          'movie': 3,
          'great': 3,
          'electronic': 3,
          'expect': 3,
          'computer': 3,
          'played': 3,
          'many': 3,
          'like': 3,
          'character': 3,
          'scenes': 3,
          'get': 3,
          'movies': 2,
          'year': 2,
          'nall': 2,
          'made': 2,
          'think': 2,
          'isnt': 2,
          'huge': 2,
          'game': 2,
          'doesnt': 2,
          'devices': 2,
          'generated': 2,
          'turn': 2,
          'make': 2,
          'murder': 2,
          'different': 2,
          'armin': 2,
          'muellerstahl': 2,
          'douglas': 2,
          'craig': 2,
          'bierko': 2,
          '1937': 2,
          'characters': 2,
          'back': 2,
          'potential': 2,
          'gretchen': 2,
          'keep': 2,
          'ni': 2,
          'enough': 2,
          'know': 2,
          'arent': 2,
          'go': 2,
          'absolutely': 2,
          'nowhere': 2,
          'story': 2,
          'acting': 2,
          'true': 2,
          'plus': 2,
          'mind': 2,
          'awhile': 2,
          'third': 1,
          'call': 1,
          'series': 1,
          'similar': 1,
          'released': 1,
          'three': 1,
          'wonder': 1,
          'real': 1,
          'reach': 1,
          'level': 1,
          'originality': 1,
          'creativity': 1,
          'curiosity': 1,
          'sparked': 1,
          'certainly': 1,
          'gives': 1,
          'shot': 1,
          'told': 1,
          'humans': 1,
          'simply': 1,
          'virus': 1,
          'learned': 1,
          'life': 1,
          'could': 1,
          'learn': 1,
          'living': 1,
          'nthere': 1,
          'one': 1,
          'top': 1,
          'everything': 1,
          'fake': 1,
          'electronically': 1,
          'took': 1,
          'risky': 1,
          'didnt': 1,
          'take': 1,
          'im': 1,
          'sure': 1,
          'nrather': 1,
          'focusing': 1,
          'parts': 1,
          'becomes': 1,
          'mystery': 1,
          'ends': 1,
          'tying': 1,
          'worlds': 1,
          'nafter': 1,
          'mysterious': 1,
          'program': 1,
          'designer': 1,
          'hammond': 1,
          'hall': 1,
          'man': 1,
          'worked': 1,
          'years': 1,
          'must': 1,
          'travel': 1,
          'device': 1,
          'using': 1,
          'consists': 1,
          'simulation': 1,
          'olden': 1,
          'days': 1,
          'people': 1,
          'involved': 1,
          'ndouglas': 1,
          'strongly': 1,
          'believes': 1,
          'traveled': 1,
          'transport': 1,
          'killed': 1,
          'nalong': 1,
          'way': 1,
          'interacts': 1,
          'suspects': 1,
          'woman': 1,
          'claims': 1,
          'daughter': 1,
          'jane': 1,
          'wonderfully': 1,
          'talented': 1,
          'young': 1,
          'actress': 1,
          'mol': 1,
          'plot': 1,
          'driven': 1,
          'time': 1,
          'gets': 1,
          'going': 1,
          'use': 1,
          'spectacular': 1,
          'special': 1,
          'effects': 1,
          'big': 1,
          'sound': 1,
          'viewers': 1,
          'interests': 1,
          'worried': 1,
          'much': 1,
          'wouldnt': 1,
          'enjoy': 1,
          'twists': 1,
          'turns': 1,
          'thinking': 1,
          'attentive': 1,
          'nunfortunately': 1,
          'thrown': 1,
          'away': 1,
          'predictable': 1,
          'content': 1,
          'letting': 1,
          'viewer': 1,
          'outcome': 1,
          'scene': 1,
          'long': 1,
          'happened': 1,
          'original': 1,
          'interesting': 1,
          'seem': 1,
          'leaving': 1,
          'wondering': 1,
          'point': 1,
          'nsometimes': 1,
          'hard': 1,
          'believe': 1,
          'terrible': 1,
          'dialogue': 1,
          'bad': 1,
          'especially': 1,
          'actually': 1,
          'anything': 1,
          'able': 1,
          'non': 1,
          'side': 1,
          'see': 1,
          'missing': 1,
          'main': 1,
          'action': 1,
          'since': 1,
          'masterpiece': 1,
          'shine': 1,
          '1995': 1,
          'actor': 1,
          'still': 1,
          'giving': 1,
          'believable': 1,
          'amazing': 1,
          'performances': 1,
          'nanother': 1,
          'mols': 1,
          'realistic': 1,
          'performance': 1,
          'creating': 1,
          'depth': 1,
          'staying': 1,
          'onedimensional': 1,
          'phase': 1,
          'ndont': 1,
          'intensity': 1,
          'come': 1,
          'messes': 1,
          'shuts': 1,
          'nthrills': 1,
          'chills': 1,
          'spills': 1,
          'trip': 1,
          'send': 1,
          'scrambling': 1,
          'youve': 1,
          'bottom': 1,
          'line': 1,
          'lets': 1,
          'hope': 1,
          'last': 1,
          'based': 1,
          'npos': 1}),
 Counter({'movie': 4,
          'ni': 4,
          'nit': 3,
          'action': 3,
          'roberts': 3,
          'fun': 3,
          'like': 2,
          'little': 2,
          'bit': 2,
          'pace': 2,
          'fine': 2,
          'hair': 2,
          'nthey': 2,
          'chicago': 2,
          'chronicle': 2,
          'solve': 2,
          'one': 2,
          'mystery': 2,
          'tried': 1,
          'hard': 1,
          'without': 1,
          'succeeding': 1,
          'contains': 1,
          'parts': 1,
          'bringing': 1,
          'baby': 1,
          'hepburntracy': 1,
          'film': 1,
          'part': 1,
          'plot': 1,
          'war': 1,
          'games': 1,
          'cary': 1,
          'grant': 1,
          'rosalind': 1,
          'russell': 1,
          'girl': 1,
          'friday': 1,
          'elevator': 1,
          'shaft': 1,
          'train': 1,
          'murder': 1,
          'cute': 1,
          'funny': 1,
          'suspenseful': 1,
          'sexy': 1,
          'none': 1,
          'bad': 1,
          'guys': 1,
          'surprise': 1,
          'nthe': 1,
          'fast': 1,
          'enough': 1,
          'scenes': 1,
          'think': 1,
          'reasonable': 1,
          'family': 1,
          'summer': 1,
          'families': 1,
          'older': 1,
          'kids': 1,
          'already': 1,
          'seen': 1,
          'maverick': 1,
          'njulia': 1,
          'nick': 1,
          'nolte': 1,
          'separately': 1,
          'together': 1,
          'really': 1,
          'identified': 1,
          'julia': 1,
          'character': 1,
          'wishful': 1,
          'thinking': 1,
          'know': 1,
          'better': 1,
          'nher': 1,
          'dull': 1,
          'dark': 1,
          'brown': 1,
          'color': 1,
          'nshe': 1,
          'could': 1,
          'use': 1,
          'highlights': 1,
          'roles': 1,
          'hes': 1,
          'bored': 1,
          'columnist': 1,
          'shes': 1,
          'hotshot': 1,
          'cub': 1,
          'reporter': 1,
          'globe': 1,
          'great': 1,
          'trying': 1,
          'scoop': 1,
          'case': 1,
          'throughout': 1,
          'story': 1,
          'focus': 1,
          'nother': 1,
          'actors': 1,
          'include': 1,
          'charles': 1,
          'martin': 1,
          'smith': 1,
          'boss': 1,
          'olympia': 1,
          'dukakis': 1,
          'noltes': 1,
          'coworker': 1,
          'nora': 1,
          'dunn': 1,
          'also': 1,
          'marsha': 1,
          'mason': 1,
          'congresswoman': 1,
          'nbasically': 1,
          'reasonably': 1,
          'nthere': 1,
          'serious': 1,
          'enjoyed': 1,
          'following': 1,
          'couple': 1,
          'solving': 1,
          'pleasant': 1,
          'change': 1,
          'movies': 1,
          'take': 1,
          'seriously': 1,
          'give': 1,
          'successful': 1,
          'comedy': 1,
          'high': 1,
          'marks': 1,
          'npos': 1}),
 Counter({'li': 9,
          'jet': 6,
          'film': 6,
          'movie': 5,
          'bad': 4,
          'one': 4,
          'thing': 4,
          'looking': 4,
          'action': 4,
          'also': 4,
          'see': 4,
          'nbut': 3,
          'lot': 3,
          'youre': 3,
          'stunts': 3,
          '710': 3,
          'plot': 2,
          'cop': 2,
          'french': 2,
          'na': 2,
          'asskicking': 2,
          'okay': 2,
          'little': 2,
          'cool': 2,
          'gives': 2,
          'good': 2,
          'line': 2,
          'us': 2,
          'seen': 2,
          'great': 2,
          'whole': 2,
          'kiss': 2,
          'ass': 2,
          'pretty': 2,
          'eyes': 2,
          'time': 2,
          'side': 2,
          'around': 2,
          'fist': 2,
          'nyes': 2,
          'la': 2,
          'femme': 2,
          'nikita': 2,
          'professional': 2,
          'would': 2,
          'ndoes': 2,
          'leave': 2,
          '810': 2,
          'chinese': 1,
          'asked': 1,
          'help': 1,
          'policemen': 1,
          'nab': 1,
          'guy': 1,
          'leads': 1,
          'another': 1,
          'next': 1,
          'know': 1,
          'lis': 1,
          'chased': 1,
          'cops': 1,
          'supposed': 1,
          'working': 1,
          'facewhippings': 1,
          'gun': 1,
          'fights': 1,
          'ensues': 1,
          'ncritique': 1,
          'nnow': 1,
          'heres': 1,
          'exactly': 1,
          'kickass': 1,
          'palpable': 1,
          'copbad': 1,
          'story': 1,
          'hardcore': 1,
          'slamdunking': 1,
          'everyone': 1,
          'sight': 1,
          'nthe': 1,
          'moves': 1,
          'fast': 1,
          'mere': 1,
          '95': 1,
          'minutes': 1,
          'develops': 1,
          'certain': 1,
          'cute': 1,
          'chemistry': 1,
          'fonda': 1,
          'nice': 1,
          'surroundings': 1,
          'paris': 1,
          'baby': 1,
          'best': 1,
          'guys': 1,
          'ive': 1,
          'year': 1,
          'ntcheky': 1,
          'karyo': 1,
          'devil': 1,
          'incarnate': 1,
          'nhe': 1,
          'pure': 1,
          'evil': 1,
          'nthey': 1,
          'called': 1,
          'lieutenant': 1,
          '2': 1,
          'keitel': 1,
          'nothing': 1,
          'man': 1,
          'nwhat': 1,
          'monster': 1,
          'nmy': 1,
          'favorite': 1,
          'tchekys': 1,
          'explaining': 1,
          'dragon': 1,
          'cut': 1,
          'saying': 1,
          'npure': 1,
          'poetry': 1,
          'nanyway': 1,
          'handled': 1,
          'acting': 1,
          'well': 1,
          'real': 1,
          'dialogue': 1,
          'say': 1,
          'enough': 1,
          'make': 1,
          'believe': 1,
          'character': 1,
          'nactually': 1,
          'mans': 1,
          'generally': 1,
          'tells': 1,
          'nfonda': 1,
          'despite': 1,
          'playing': 1,
          'trashy': 1,
          'abused': 1,
          'women': 1,
          'quite': 1,
          'still': 1,
          'felt': 1,
          'kinda': 1,
          'guess': 1,
          'job': 1,
          'end': 1,
          'nobody': 1,
          'goes': 1,
          'kind': 1,
          'oscar': 1,
          'performances': 1,
          'nwe': 1,
          'go': 1,
          'movies': 1,
          'want': 1,
          'kicking': 1,
          'delivers': 1,
          'gangbusters': 1,
          'front': 1,
          'nand': 1,
          'yes': 1,
          'wirefu': 1,
          'nsay': 1,
          'nwirework': 1,
          'bullshit': 1,
          'floating': 1,
          'midair': 1,
          'minute': 1,
          'nits': 1,
          'straight': 1,
          'boot': 1,
          'face': 1,
          'nif': 1,
          'thats': 1,
          'dont': 1,
          'disappointed': 1,
          'original': 1,
          'take': 1,
          'luc': 1,
          'bessons': 1,
          'mix': 1,
          'plenty': 1,
          'et': 1,
          'voila': 1,
          'annoying': 1,
          'hiphoppy': 1,
          'soundtrack': 1,
          'got': 1,
          'nerves': 1,
          'gotten': 1,
          'rid': 1,
          'acupuncture': 1,
          'thang': 1,
          'anyone': 1,
          'willing': 1,
          'restrain': 1,
          'disbelief': 1,
          'rolling': 1,
          'place': 1,
          'entertained': 1,
          'nthoroughly': 1,
          'feature': 1,
          'gunplay': 1,
          'martial': 1,
          'arts': 1,
          'overthetop': 1,
          'kills': 1,
          'recent': 1,
          'flicks': 1,
          'sound': 1,
          'interesting': 1,
          'nwell': 1,
          'answer': 1,
          'question': 1,
          'entirely': 1,
          'none': 1,
          'definitely': 1,
          'recommend': 1,
          'pointed': 1,
          'website': 1,
          'kids': 1,
          'home': 1,
          'nin': 1,
          'fact': 1,
          'might': 1,
          'even': 1,
          'wan': 1,
          'cant': 1,
          'handle': 1,
          'violent': 1,
          'sequences': 1,
          'nall': 1,
          'rippin': 1,
          'roarin': 1,
          'fun': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'nblack': 1,
          'mask': 1,
          '510': 1,
          'blade': 1,
          'lethal': 1,
          'weapon': 1,
          '4': 1,
          'matrix': 1,
          '910': 1,
          'romeo': 1,
          'must': 1,
          'die': 1,
          '310': 1,
          'rush': 1,
          'hour': 1,
          'shanghai': 1,
          'noon': 1,
          '610': 1,
          'npos': 1}),
 Counter({'williams': 8,
          'mrs': 7,
          'daniel': 7,
          'ndoubtfire': 6,
          'robin': 4,
          'one': 4,
          'miranda': 4,
          'doubtfire': 4,
          'children': 3,
          'mirandas': 3,
          'makeup': 3,
          'nthe': 3,
          'never': 2,
          'little': 2,
          'bit': 2,
          'goes': 2,
          'though': 2,
          'often': 2,
          'nmrs': 2,
          'proves': 2,
          'best': 2,
          'comic': 2,
          'high': 2,
          'artist': 2,
          'sally': 2,
          'field': 2,
          'time': 2,
          'nhe': 2,
          'euphegenia': 2,
          'keep': 2,
          'pierce': 2,
          'brosnan': 2,
          'trying': 2,
          'people': 2,
          'nit': 2,
          'film': 2,
          'swallow': 2,
          'change': 2,
          'ntheres': 2,
          'involving': 2,
          'new': 2,
          'stu': 2,
          'thing': 2,
          'nits': 2,
          'good': 2,
          'see': 2,
          'ive': 1,
          'member': 1,
          'fan': 1,
          'club': 1,
          'na': 1,
          'improvisationaly': 1,
          'schtick': 1,
          'long': 1,
          'way': 1,
          'sometimes': 1,
          'feel': 1,
          'im': 1,
          'watching': 1,
          '40yearold': 1,
          'class': 1,
          'clown': 1,
          'nin': 1,
          'films': 1,
          'tried': 1,
          'balance': 1,
          'mania': 1,
          'touchyfeely': 1,
          'emotion': 1,
          'leading': 1,
          'wildly': 1,
          'uneven': 1,
          'performances': 1,
          'seemed': 1,
          'readymade': 1,
          'problems': 1,
          'instead': 1,
          'screen': 1,
          'project': 1,
          'yet': 1,
          'nwhile': 1,
          'still': 1,
          'contains': 1,
          'characteristic': 1,
          'selfindulgence': 1,
          'nonetheless': 1,
          'engaging': 1,
          'bellylaugh': 1,
          'comedy': 1,
          'served': 1,
          'energy': 1,
          'nwilliams': 1,
          'stars': 1,
          'hillard': 1,
          'cartoon': 1,
          'voiceover': 1,
          'penchant': 1,
          'irresponsible': 1,
          'behavior': 1,
          'none': 1,
          'incident': 1,
          'many': 1,
          'wife': 1,
          'files': 1,
          'divorce': 1,
          'nunemployed': 1,
          'living': 1,
          'disastrously': 1,
          'unkempt': 1,
          'apartment': 1,
          'faced': 1,
          'limited': 1,
          'three': 1,
          'beloved': 1,
          'decides': 1,
          'respond': 1,
          'ad': 1,
          'afternoon': 1,
          'housekeeper': 1,
          'turns': 1,
          'brother': 1,
          'frank': 1,
          'harvey': 1,
          'fierstein': 1,
          'theatrical': 1,
          'emerges': 1,
          'matronly': 1,
          '65yearold': 1,
          'englishwoman': 1,
          'ndaniel': 1,
          'uses': 1,
          'access': 1,
          'house': 1,
          'eye': 1,
          'flirtation': 1,
          'wealthy': 1,
          'client': 1,
          'spend': 1,
          'learn': 1,
          'something': 1,
          'responsible': 1,
          'parenting': 1,
          'identity': 1,
          'hidden': 1,
          'know': 1,
          'overcome': 1,
          'mountain': 1,
          'implausibilities': 1,
          'work': 1,
          'basically': 1,
          'crucial': 1,
          'family': 1,
          'recognizes': 1,
          'thanks': 1,
          'fantastic': 1,
          'special': 1,
          'thats': 1,
          'instantly': 1,
          'believable': 1,
          'may': 1,
          'convincing': 1,
          'transformations': 1,
          'ever': 1,
          'committed': 1,
          'making': 1,
          'dustin': 1,
          'hoffmans': 1,
          'dorothy': 1,
          'michaels': 1,
          'look': 1,
          'like': 1,
          'milton': 1,
          'berle': 1,
          'nmore': 1,
          'problematic': 1,
          'series': 1,
          'calls': 1,
          'makes': 1,
          'posing': 1,
          'nannies': 1,
          'hell': 1,
          'hard': 1,
          'doesnt': 1,
          'recognize': 1,
          'voices': 1,
          'husbands': 1,
          'nperhaps': 1,
          'biggest': 1,
          'contrivance': 1,
          'asked': 1,
          'could': 1,
          'make': 1,
          'quick': 1,
          'minutes': 1,
          'realistic': 1,
          'slapping': 1,
          'latex': 1,
          'mask': 1,
          'nfortunately': 1,
          'inconsistencies': 1,
          'attract': 1,
          'attention': 1,
          'credits': 1,
          'roll': 1,
          'nduring': 1,
          'generally': 1,
          'busy': 1,
          'laughing': 1,
          'nafter': 1,
          'getting': 1,
          'slow': 1,
          'start': 1,
          'much': 1,
          'riffing': 1,
          'kicks': 1,
          'gear': 1,
          'wig': 1,
          'pads': 1,
          'place': 1,
          'ndaniels': 1,
          'frantic': 1,
          'attempt': 1,
          'fool': 1,
          'court': 1,
          'officer': 1,
          'wonderful': 1,
          'climactic': 1,
          'restaurant': 1,
          'sequence': 1,
          'even': 1,
          'saw': 1,
          'resolutions': 1,
          'coming': 1,
          'mile': 1,
          'away': 1,
          'nclearly': 1,
          'credit': 1,
          'doubtfires': 1,
          'success': 1,
          'took': 1,
          'putting': 1,
          'drag': 1,
          'plays': 1,
          'character': 1,
          'isnt': 1,
          'different': 1,
          'name': 1,
          'thoroughly': 1,
          'inhabits': 1,
          'seems': 1,
          'relish': 1,
          'scenes': 1,
          'gets': 1,
          'play': 1,
          'blunt': 1,
          'foulmouthed': 1,
          'nwisely': 1,
          'aims': 1,
          'saintly': 1,
          'nhis': 1,
          'responses': 1,
          'intrusion': 1,
          'suitor': 1,
          'petty': 1,
          'kind': 1,
          'us': 1,
          'might': 1,
          'benefit': 1,
          'anonymity': 1,
          'ndoubtfires': 1,
          'charms': 1,
          'neither': 1,
          'perfect': 1,
          'better': 1,
          'nas': 1,
          'solid': 1,
          'background': 1,
          'role': 1,
          'nicely': 1,
          'understated': 1,
          'also': 1,
          'although': 1,
          'mara': 1,
          'wilson': 1,
          'almost': 1,
          'oppressively': 1,
          'cute': 1,
          'youngest': 1,
          'supporting': 1,
          'players': 1,
          'merely': 1,
          'step': 1,
          'aside': 1,
          'allow': 1,
          'easy': 1,
          'tootsie': 1,
          'warmed': 1,
          'true': 1,
          'broad': 1,
          'themes': 1,
          'specific': 1,
          'details': 1,
          'common': 1,
          'nbut': 1,
          'manages': 1,
          'carve': 1,
          'space': 1,
          'particularly': 1,
          'surprisingly': 1,
          'honest': 1,
          'moments': 1,
          'judges': 1,
          'decision': 1,
          'ultimate': 1,
          'status': 1,
          'relationship': 1,
          'nothing': 1,
          'dazzlingly': 1,
          'plenty': 1,
          'laughs': 1,
          'comedies': 1,
          'always': 1,
          'short': 1,
          'supply': 1,
          'nand': 1,
          'nice': 1,
          'act': 1,
          'npos': 1}),
 Counter({'truman': 6,
          'christof': 5,
          'world': 4,
          'trumans': 4,
          'weir': 3,
          'show': 3,
          'end': 3,
          'well': 3,
          'film': 3,
          'nin': 2,
          'actors': 2,
          'nfor': 2,
          'years': 2,
          'accept': 2,
          'break': 2,
          'find': 2,
          'picture': 2,
          'audience': 2,
          'want': 2,
          'zycie': 2,
          'wellrespected': 1,
          'hollywood': 1,
          'turning': 1,
          'scripts': 1,
          'difficult': 1,
          'subjectmatter': 1,
          'deceptively': 1,
          'simple': 1,
          'powerful': 1,
          'films': 1,
          'mosquito': 1,
          'coast': 1,
          'utopia': 1,
          'fearless': 1,
          'posttraumatic': 1,
          'stress': 1,
          'disorder': 1,
          'among': 1,
          'essentially': 1,
          'breathes': 1,
          'life': 1,
          'nowtired': 1,
          'concept': 1,
          'mediamanipulation': 1,
          'tackling': 1,
          'material': 1,
          'insideout': 1,
          'nit': 1,
          'certainly': 1,
          'helps': 1,
          'underrated': 1,
          'performer': 1,
          'topform': 1,
          'playing': 1,
          'title': 1,
          'character': 1,
          'burbank': 1,
          'nby': 1,
          'must': 1,
          'aware': 1,
          'premise': 1,
          'unbeknownst': 1,
          'carrey': 1,
          'star': 1,
          'tv': 1,
          'series': 1,
          '247': 1,
          'peepshow': 1,
          'surrounded': 1,
          'placed': 1,
          'loosely': 1,
          'scripted': 1,
          'situations': 1,
          'people': 1,
          'around': 1,
          'tune': 1,
          'voyeuristic': 1,
          'thrill': 1,
          'genuine': 1,
          'reactions': 1,
          'fictitious': 1,
          'stimulants': 1,
          'nseahaven': 1,
          'hometown': 1,
          'brainchild': 1,
          'harris': 1,
          'presides': 1,
          'creation': 1,
          'base': 1,
          'fake': 1,
          'moon': 1,
          'directing': 1,
          '500': 1,
          'cameras': 1,
          'hundreds': 1,
          'extras': 1,
          '30': 1,
          'suspects': 1,
          'nothingwe': 1,
          'reality': 1,
          'given': 1,
          'poses': 1,
          'christofbut': 1,
          'desire': 1,
          'free': 1,
          'sunny': 1,
          'town': 1,
          'visit': 1,
          'long': 1,
          'lost': 1,
          'love': 1,
          'fiji': 1,
          'mcelhone': 1,
          'actually': 1,
          'actress': 1,
          'fired': 1,
          'trying': 1,
          'confidentiality': 1,
          'agreement': 1,
          'overwhelms': 1,
          'nthus': 1,
          'team': 1,
          'suddenly': 1,
          'working': 1,
          'twice': 1,
          'hard': 1,
          'keep': 1,
          'veneer': 1,
          'seahaven': 1,
          'intact': 1,
          'lest': 1,
          'discover': 1,
          'outside': 1,
          'put': 1,
          'highlyrated': 1,
          'program': 1,
          'broad': 1,
          'strokes': 1,
          'creates': 1,
          'convincing': 1,
          'secondreality': 1,
          'good': 1,
          'sense': 1,
          'bring': 1,
          'almost': 1,
          'threequarters': 1,
          'nthis': 1,
          'allows': 1,
          'us': 1,
          'comprehend': 1,
          'contextualize': 1,
          'madness': 1,
          'shown': 1,
          'place': 1,
          'without': 1,
          'violence': 1,
          'hardship': 1,
          'demonstrated': 1,
          'human': 1,
          'function': 1,
          'within': 1,
          'ntruman': 1,
          'inspiration': 1,
          'grew': 1,
          'darn': 1,
          'nice': 1,
          'like': 1,
          'sibling': 1,
          'perhaps': 1,
          'appropriately': 1,
          'caged': 1,
          'animal': 1,
          'interactive': 1,
          'zoo': 1,
          'see': 1,
          'succeed': 1,
          'nthe': 1,
          'surrealistic': 1,
          'soap': 1,
          'opera': 1,
          'completely': 1,
          'plausible': 1,
          'thanks': 1,
          'tight': 1,
          'screenplay': 1,
          'sympathetic': 1,
          'carreyhe': 1,
          'really': 1,
          'everyman': 1,
          'abandoning': 1,
          'facial': 1,
          'contortions': 1,
          'favour': 1,
          'credible': 1,
          'wideeyed': 1,
          'bewilderment': 1,
          'ncinematically': 1,
          'impeccable': 1,
          'stylishly': 1,
          'photographed': 1,
          'peter': 1,
          'biziou': 1,
          'littered': 1,
          'symbolic': 1,
          'images': 1,
          'nas': 1,
          'employs': 1,
          'wojciech': 1,
          'kilars': 1,
          'piece': 1,
          'za': 1,
          'masterfully': 1,
          'beautifully': 1,
          'nif': 1,
          'flaws': 1,
          'one': 1,
          'may': 1,
          'laura': 1,
          'linneys': 1,
          'characterization': 1,
          'meryl': 1,
          'wife': 1,
          'doubt': 1,
          'betty': 1,
          'crocker': 1,
          'impersonation': 1,
          'would': 1,
          'fool': 1,
          'anyone': 1,
          'subplot': 1,
          'involving': 1,
          'father': 1,
          'feels': 1,
          'curiously': 1,
          'incomplete': 1,
          'nthere': 1,
          'stupendous': 1,
          'sequences': 1,
          'pulls': 1,
          'wonderful': 1,
          'trick': 1,
          'become': 1,
          'much': 1,
          'loyal': 1,
          'viewers': 1,
          'nthey': 1,
          'wear': 1,
          'buttons': 1,
          'asking': 1,
          'ni': 1,
          'couldnt': 1,
          'wait': 1,
          'know': 1,
          'though': 1,
          'didnt': 1,
          'exactly': 1,
          'inspired': 1,
          'movie': 1,
          'possibly': 1,
          'bestand': 1,
          'complexsummer': 1,
          'npos': 1}),
 Counter({'nin': 6,
          'sexual': 5,
          'sam': 5,
          'sex': 4,
          'american': 3,
          'neighborhood': 3,
          'new': 3,
          'york': 3,
          'spike': 3,
          'summer': 3,
          'italian': 2,
          'people': 2,
          'fact': 2,
          'lees': 2,
          'right': 2,
          'thing': 2,
          'killer': 2,
          'son': 2,
          'one': 2,
          'different': 2,
          'differences': 2,
          'trying': 2,
          'film': 2,
          'suspicion': 2,
          'neighbor': 2,
          'director': 2,
          'movies': 2,
          'gratuitous': 2,
          'movie': 2,
          'nsex': 2,
          'synopsis': 1,
          '1977': 1,
          'small': 1,
          'ndisco': 1,
          'music': 1,
          'popular': 1,
          'revolution': 1,
          'happy': 1,
          'theyre': 1,
          'terrified': 1,
          'nas': 1,
          'heat': 1,
          'wave': 1,
          'city': 1,
          'grip': 1,
          'peoples': 1,
          'tempers': 1,
          'flaring': 1,
          'nthe': 1,
          'cool': 1,
          'night': 1,
          'offers': 1,
          'respite': 1,
          'terrorized': 1,
          'nocturnal': 1,
          'psychotic': 1,
          'calls': 1,
          'nno': 1,
          'knows': 1,
          'safe': 1,
          'nall': 1,
          'around': 1,
          'naside': 1,
          'cultural': 1,
          'groupings': 1,
          'ethnic': 1,
          'neighborhoods': 1,
          'individuals': 1,
          'section': 1,
          'town': 1,
          'philandering': 1,
          'husband': 1,
          'named': 1,
          'vinny': 1,
          'john': 1,
          'leguizamo': 1,
          'tries': 1,
          'hide': 1,
          'trysts': 1,
          'behavior': 1,
          'long': 1,
          'suffering': 1,
          'newlywed': 1,
          'wife': 1,
          'dionna': 1,
          'mira': 1,
          'sorvino': 1,
          'nvinnys': 1,
          'friend': 1,
          'ritchie': 1,
          'adrien': 1,
          'brody': 1,
          'hates': 1,
          'disco': 1,
          'works': 1,
          'gay': 1,
          'strip': 1,
          'club': 1,
          'doesnt': 1,
          'want': 1,
          'folks': 1,
          'know': 1,
          'nritchies': 1,
          'girl': 1,
          'ruby': 1,
          'jennifer': 1,
          'esposito': 1,
          'escape': 1,
          'reputation': 1,
          'slut': 1,
          'neveryones': 1,
          'nobody': 1,
          'wants': 1,
          'framed': 1,
          'alien': 1,
          'community': 1,
          'nunfortunately': 1,
          'killings': 1,
          'help': 1,
          'create': 1,
          'climate': 1,
          'pits': 1,
          'nopinion': 1,
          'psycho': 1,
          'nnor': 1,
          'cops': 1,
          'apprehend': 1,
          'nits': 1,
          'given': 1,
          'conditions': 1,
          'even': 1,
          'close': 1,
          'neighbors': 1,
          'fan': 1,
          'hostile': 1,
          'flames': 1,
          'irrational': 1,
          'none': 1,
          'found': 1,
          'interesting': 1,
          'use': 1,
          'glamorized': 1,
          'nfor': 1,
          'example': 1,
          'james': 1,
          'bond': 1,
          'gets': 1,
          'reward': 1,
          'winning': 1,
          'boring': 1,
          'madeforvideo': 1,
          'suspense': 1,
          'spiked': 1,
          'lingerie': 1,
          'scenes': 1,
          'keep': 1,
          'audience': 1,
          'awake': 1,
          'nand': 1,
          'every': 1,
          'soap': 1,
          'opera': 1,
          'character': 1,
          'flicks': 1,
          'seems': 1,
          'expert': 1,
          'prowess': 1,
          'nnot': 1,
          'gutsy': 1,
          'move': 1,
          'lee': 1,
          'shows': 1,
          'without': 1,
          'fantasy': 1,
          'isnt': 1,
          'titillating': 1,
          'main': 1,
          'characters': 1,
          'downright': 1,
          'lousy': 1,
          'bed': 1,
          'deviance': 1,
          'part': 1,
          'films': 1,
          'major': 1,
          'theme': 1,
          'difference': 1,
          'breeding': 1,
          'hostility': 1,
          'opinion': 1,
          'kind': 1,
          'cutting': 1,
          'edge': 1,
          '1999': 1,
          'rare': 1,
          'thoughtprovoking': 1,
          'cinema': 1,
          'showing': 1,
          'spanking': 1,
          'npos': 1}),
 Counter({'reality': 8,
          'game': 6,
          'existenz': 5,
          'one': 4,
          'like': 4,
          'things': 4,
          'world': 4,
          'virtual': 3,
          'true': 3,
          'pod': 3,
          'bioport': 3,
          'gas': 3,
          'little': 3,
          'strangest': 2,
          'movies': 2,
          'ever': 2,
          'series': 2,
          'gooey': 2,
          'matrix': 2,
          'nthe': 2,
          'two': 2,
          'normal': 2,
          'na': 2,
          'us': 2,
          'accept': 2,
          'bizarre': 2,
          'nand': 2,
          'oh': 2,
          'organic': 2,
          'stations': 2,
          'nyou': 2,
          'surreal': 2,
          'characters': 2,
          'playing': 2,
          'someone': 2,
          'friendly': 2,
          'hole': 2,
          'spine': 2,
          'plug': 2,
          'vaguely': 2,
          'play': 2,
          'get': 2,
          'plot': 2,
          'chinese': 2,
          'amphibian': 2,
          'trying': 2,
          'figure': 2,
          'piece': 2,
          'pods': 2,
          'leave': 2,
          'part': 1,
          'made': 1,
          'www': 1,
          'mediajunkies': 1,
          'com': 1,
          'nby': 1,
          'scott': 1,
          'watson': 1,
          'nlight': 1,
          'spoilers': 1,
          'nothing': 1,
          'shouldnt': 1,
          'read': 1,
          'nexistenz': 1,
          'called': 1,
          'correct': 1,
          'description': 1,
          'ways': 1,
          'others': 1,
          'completely': 1,
          'thing': 1,
          'films': 1,
          'common': 1,
          'idea': 1,
          'indistinguishable': 1,
          'real': 1,
          'major': 1,
          'difference': 1,
          'base': 1,
          'obviously': 1,
          'impossible': 1,
          'makes': 1,
          'ndavid': 1,
          'cronenberg': 1,
          'shown': 1,
          'knows': 1,
          'create': 1,
          'strange': 1,
          'naked': 1,
          'lunch': 1,
          'crash': 1,
          'nmaybe': 1,
          'mundane': 1,
          'mixed': 1,
          'ntechnology': 1,
          'ncars': 1,
          'ngas': 1,
          'ncell': 1,
          'phones': 1,
          'glowing': 1,
          'bug': 1,
          'appendages': 1,
          'jack': 1,
          'using': 1,
          'quivering': 1,
          'pink': 1,
          'animal': 1,
          'apparatus': 1,
          'referred': 1,
          'simply': 1,
          'nhigh': 1,
          'technology': 1,
          'replaced': 1,
          'creatures': 1,
          'provides': 1,
          'truly': 1,
          'setting': 1,
          'famous': 1,
          'designer': 1,
          'allegra': 1,
          'geller': 1,
          'fine': 1,
          'looking': 1,
          'jennifer': 1,
          'jason': 1,
          'leigh': 1,
          'flees': 1,
          'demonstration': 1,
          'latest': 1,
          'assassination': 1,
          'attempt': 1,
          'nshe': 1,
          'run': 1,
          'im': 1,
          'still': 1,
          'sure': 1,
          'save': 1,
          'nthat': 1,
          'dubious': 1,
          'companion': 1,
          'security': 1,
          'guard': 1,
          'ted': 1,
          'pikul': 1,
          'jude': 1,
          'law': 1,
          'nunfortunately': 1,
          'lacking': 1,
          'fundamental': 1,
          'requirement': 1,
          'nsort': 1,
          'ok': 1,
          'exactly': 1,
          'allows': 1,
          'entraillooking': 1,
          'wires': 1,
          'allowing': 1,
          'nluckily': 1,
          'installed': 1,
          'easily': 1,
          'install': 1,
          'malls': 1,
          'go': 1,
          'nafter': 1,
          'crazy': 1,
          'events': 1,
          'local': 1,
          'country': 1,
          'station': 1,
          'able': 1,
          'melding': 1,
          'conspiracies': 1,
          'distortion': 1,
          'restaurants': 1,
          'multi': 1,
          'appendaged': 1,
          'sign': 1,
          'times': 1,
          'nbut': 1,
          'cohesive': 1,
          'creepy': 1,
          'way': 1,
          'secondary': 1,
          'hell': 1,
          'going': 1,
          'universe': 1,
          'ncronenberg': 1,
          'slaps': 1,
          'weird': 1,
          'organictech': 1,
          'viewers': 1,
          'lap': 1,
          'work': 1,
          'thats': 1,
          'joy': 1,
          'film': 1,
          'entering': 1,
          'nightmarish': 1,
          'takes': 1,
          'place': 1,
          'learn': 1,
          'bit': 1,
          'make': 1,
          'enough': 1,
          'presented': 1,
          'nthere': 1,
          'kinds': 1,
          'twists': 1,
          'turns': 1,
          'wander': 1,
          'around': 1,
          'including': 1,
          'fantastic': 1,
          'scene': 1,
          'restaurant': 1,
          'assemble': 1,
          'something': 1,
          'moo': 1,
          'goo': 1,
          'gai': 1,
          'pan': 1,
          'months': 1,
          'afterwards': 1,
          'nalso': 1,
          'bioports': 1,
          'occasionally': 1,
          'used': 1,
          'porting': 1,
          'specifics': 1,
          'discover': 1,
          'ntheres': 1,
          'lots': 1,
          'set': 1,
          'weirdometer': 1,
          'tiny': 1,
          'buy': 1,
          'video': 1,
          'store': 1,
          'headed': 1,
          'creature': 1,
          'guy': 1,
          'name': 1,
          'appears': 1,
          'nit': 1,
          'adds': 1,
          'supremely': 1,
          'far': 1,
          'trip': 1,
          'given': 1,
          'choice': 1,
          'think': 1,
          'would': 1,
          'rather': 1,
          'live': 1,
          'matrixs': 1,
          'noh': 1,
          'wait': 1,
          'already': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'film': 7,
          'crowe': 5,
          'david': 4,
          'films': 3,
          'life': 3,
          'russell': 3,
          'crowes': 3,
          'one': 3,
          'acting': 3,
          'story': 3,
          'character': 3,
          'ryan': 3,
          'terry': 3,
          'caruso': 3,
          'scenes': 3,
          'days': 2,
          'rare': 2,
          'nproof': 2,
          'rescue': 2,
          'intelligent': 2,
          'script': 2,
          'together': 2,
          'motivation': 2,
          'wife': 2,
          'meg': 2,
          'chemistry': 2,
          'actors': 2,
          'nbut': 2,
          'peter': 2,
          'bowman': 2,
          'morse': 2,
          'soldiers': 2,
          'choice': 2,
          'thorne': 2,
          'situations': 2,
          'memorable': 2,
          'action': 2,
          'movie': 2,
          'choices': 2,
          'sacrifices': 2,
          'good': 1,
          'hard': 1,
          'find': 1,
          'ngreat': 1,
          'beyond': 1,
          'onetwo': 1,
          'punch': 1,
          'deft': 1,
          'kidnap': 1,
          'thriller': 1,
          'gems': 1,
          'na': 1,
          'taut': 1,
          'drama': 1,
          'laced': 1,
          'strong': 1,
          'subtle': 1,
          'masterful': 1,
          'directing': 1,
          'delivers': 1,
          'something': 1,
          'virtually': 1,
          'unheard': 1,
          'industry': 1,
          'genuine': 1,
          'rings': 1,
          'true': 1,
          'nconsider': 1,
          'strange': 1,
          'coincidence': 1,
          'proof': 1,
          'making': 1,
          'moves': 1,
          'distraught': 1,
          'played': 1,
          'ryans': 1,
          'real': 1,
          'hitching': 1,
          'married': 1,
          'woman': 1,
          'outside': 1,
          'world': 1,
          'ni': 1,
          'havent': 1,
          'seen': 1,
          'much': 1,
          'since': 1,
          'mcqueen': 1,
          'mcgraw': 1,
          'teamed': 1,
          'peckinpahs': 1,
          'masterpiece': 1,
          'getaway': 1,
          'enough': 1,
          'gossip': 1,
          'lets': 1,
          'get': 1,
          'review': 1,
          'revolves': 1,
          'around': 1,
          'kidnapping': 1,
          'american': 1,
          'engineer': 1,
          'working': 1,
          'south': 1,
          'america': 1,
          'kidnapped': 1,
          'mass': 1,
          'ambush': 1,
          'civilians': 1,
          'antigovernment': 1,
          'nupon': 1,
          'discovering': 1,
          'identity': 1,
          'rebel': 1,
          'decide': 1,
          'ransom': 1,
          '6': 1,
          'million': 1,
          'problem': 1,
          'company': 1,
          'works': 1,
          'auctioned': 1,
          'step': 1,
          'forward': 1,
          'money': 1,
          'nwith': 1,
          'available': 1,
          'bowmans': 1,
          'alice': 1,
          'hires': 1,
          'highly': 1,
          'skilled': 1,
          'negotiator': 1,
          'operative': 1,
          'arrange': 1,
          'return': 1,
          'husband': 1,
          'things': 1,
          'go': 1,
          'wrong': 1,
          'always': 1,
          'team': 1,
          'includes': 1,
          'surprising': 1,
          'casting': 1,
          'year': 1,
          'take': 1,
          'matters': 1,
          'hands': 1,
          'notable': 1,
          'takes': 1,
          'simple': 1,
          'line': 1,
          'creates': 1,
          'complex': 1,
          'characterdriven': 1,
          'vehicle': 1,
          'filled': 1,
          'wellwritten': 1,
          'dialogue': 1,
          'shades': 1,
          'convincing': 1,
          'based': 1,
          'book': 1,
          'long': 1,
          'march': 1,
          'freedom': 1,
          'magazine': 1,
          'article': 1,
          'pertaining': 1,
          'kidnapransom': 1,
          'sharply': 1,
          'pieced': 1,
          'tony': 1,
          'gilroy': 1,
          'screenwriter': 1,
          'devils': 1,
          'advocate': 1,
          'dolores': 1,
          'claiborne': 1,
          'biggest': 1,
          'surprise': 1,
          'ndug': 1,
          'bmovie': 1,
          'hell': 1,
          'pulls': 1,
          'gutsy': 1,
          'performance': 1,
          'right': 1,
          'hand': 1,
          'gun': 1,
          'providing': 1,
          'humor': 1,
          'nryan': 1,
          'cries': 1,
          'lot': 1,
          'smokes': 1,
          'many': 1,
          'cigarettes': 1,
          'ends': 1,
          'getting': 1,
          'everyone': 1,
          'guerilla': 1,
          'camp': 1,
          'hate': 1,
          'provides': 1,
          'another': 1,
          'turn': 1,
          'stoic': 1,
          'gunslinger': 1,
          'pieces': 1,
          'lie': 1,
          'bulk': 1,
          'bookend': 1,
          'work': 1,
          'extremely': 1,
          'well': 1,
          'establishment': 1,
          'closure': 1,
          'devices': 1,
          'storys': 1,
          'characters': 1,
          'skillfully': 1,
          'crafted': 1,
          'executed': 1,
          'amazing': 1,
          'accuracy': 1,
          'poise': 1,
          'ndirector': 1,
          'taylor': 1,
          'hackford': 1,
          'mixes': 1,
          'oldschool': 1,
          'style': 1,
          'filmmaking': 1,
          'dizziness': 1,
          'lars': 1,
          'von': 1,
          'trier': 1,
          'thinking': 1,
          'mans': 1,
          'nit': 1,
          'men': 1,
          'women': 1,
          'make': 1,
          'face': 1,
          'love': 1,
          'war': 1,
          'makes': 1,
          'help': 1,
          'sleep': 1,
          'night': 1,
          'npos': 1}),
 Counter({'john': 7,
          'romantic': 5,
          'serendipity': 4,
          'thing': 4,
          'sara': 4,
          'funny': 3,
          'nbut': 3,
          'characters': 3,
          'new': 2,
          'comedy': 2,
          'also': 2,
          'nthe': 2,
          'encounter': 2,
          'film': 2,
          'nmaybe': 2,
          'piven': 2,
          'hilarious': 2,
          'eugene': 2,
          'levy': 2,
          'cusack': 2,
          'high': 2,
          'fidelity': 2,
          'right': 2,
          'people': 2,
          'together': 2,
          'called': 2,
          'fate': 2,
          'name': 2,
          'number': 2,
          'love': 2,
          'happens': 2,
          'find': 2,
          'films': 2,
          'must': 1,
          'admit': 1,
          'im': 1,
          'going': 1,
          'bit': 1,
          'biased': 1,
          'review': 1,
          'defines': 1,
          'met': 1,
          'current': 1,
          'girlfriend': 1,
          'magic': 1,
          'mystery': 1,
          'fated': 1,
          'embodied': 1,
          'quirkiness': 1,
          'freshness': 1,
          'ni': 1,
          'big': 1,
          'fan': 1,
          'genre': 1,
          'something': 1,
          'drew': 1,
          'casting': 1,
          'underrated': 1,
          'jeremy': 1,
          'supporting': 1,
          'role': 1,
          'hope': 1,
          'would': 1,
          'get': 1,
          'redemption': 1,
          'justly': 1,
          'deserves': 1,
          'crap': 1,
          'con': 1,
          'air': 1,
          'pushing': 1,
          'tin': 1,
          'maybe': 1,
          'feel': 1,
          'giddy': 1,
          'school': 1,
          'kid': 1,
          'whole': 1,
          'currently': 1,
          'life': 1,
          'story': 1,
          'simple': 1,
          'ntwo': 1,
          'trager': 1,
          'thomas': 1,
          'kate': 1,
          'beckinsale': 1,
          'looking': 1,
          'ever': 1,
          'hot': 1,
          'chance': 1,
          'pair': 1,
          'gloves': 1,
          'buck': 1,
          'henry': 1,
          'smack': 1,
          'dab': 1,
          'middle': 1,
          'ncharmed': 1,
          'beyond': 1,
          'repair': 1,
          'two': 1,
          'knuckleheads': 1,
          'grab': 1,
          'sundae': 1,
          'caf': 1,
          'talk': 1,
          'irresponsible': 1,
          'avenues': 1,
          'leads': 1,
          'spend': 1,
          'hours': 1,
          'local': 1,
          'ice': 1,
          'skating': 1,
          'rink': 1,
          'already': 1,
          'involved': 1,
          'parties': 1,
          'write': 1,
          '5': 1,
          'bill': 1,
          'writes': 1,
          'copy': 1,
          'time': 1,
          'cholera': 1,
          'nsara': 1,
          'declares': 1,
          'lets': 1,
          'call': 1,
          'destined': 1,
          'happen': 1,
          'bring': 1,
          'future': 1,
          'nyears': 1,
          'later': 1,
          'opposite': 1,
          'coasts': 1,
          'america': 1,
          'engaged': 1,
          'still': 1,
          'unsure': 1,
          'whether': 1,
          'found': 1,
          'soul': 1,
          'mates': 1,
          'decide': 1,
          'seek': 1,
          'rest': 1,
          'doubts': 1,
          'nwhat': 1,
          'enjoyable': 1,
          'often': 1,
          'catandmouse': 1,
          'game': 1,
          'fates': 1,
          'involving': 1,
          'items': 1,
          'mistaken': 1,
          'identity': 1,
          'graduate': 1,
          'homage': 1,
          'corbett': 1,
          'freaky': 1,
          'age': 1,
          'musician': 1,
          'irate': 1,
          'crazed': 1,
          'salesman': 1,
          'nfortunately': 1,
          'firsttime': 1,
          'screenwriter': 1,
          'marc': 1,
          'klein': 1,
          'sketched': 1,
          'strong': 1,
          'wellrounded': 1,
          'propel': 1,
          'predictable': 1,
          'corny': 1,
          'narrative': 1,
          'ncoupled': 1,
          'deft': 1,
          'directing': 1,
          'michael': 1,
          'chelsom': 1,
          'director': 1,
          'unfunny': 1,
          'town': 1,
          'country': 1,
          'bones': 1,
          'use': 1,
          'timelapse': 1,
          'camera': 1,
          'work': 1,
          'illustrate': 1,
          'passage': 1,
          'years': 1,
          'comes': 1,
          'genuine': 1,
          'believability': 1,
          'sincerity': 1,
          'nboth': 1,
          'molly': 1,
          'shannon': 1,
          'make': 1,
          'nice': 1,
          'sidekick': 1,
          'non': 1,
          'flipside': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          'made': 1,
          'heaven': 1,
          'even': 1,
          'quiet': 1,
          'inspirations': 1,
          'main': 1,
          'journey': 1,
          'hand': 1,
          'unexpecting': 1,
          'left': 1,
          'behind': 1,
          'wake': 1,
          'happiness': 1,
          'unsettling': 1,
          'part': 1,
          'picture': 1,
          'npos': 1}),
 Counter({'two': 7,
          'simon': 5,
          'birch': 5,
          'hes': 5,
          'nin': 4,
          'johnson': 3,
          'nthe': 3,
          'joe': 3,
          'movie': 2,
          'band': 2,
          'far': 2,
          'much': 2,
          'means': 2,
          'come': 2,
          'steven': 2,
          'audience': 2,
          'film': 2,
          'turn': 2,
          'characters': 2,
          'ian': 2,
          'michael': 2,
          'smith': 2,
          'nsimon': 2,
          'age': 2,
          'twelve': 2,
          'njoe': 2,
          'judd': 2,
          'friends': 2,
          'school': 2,
          'little': 2,
          'performance': 2,
          'ben': 2,
          'platt': 2,
          'present': 2,
          'drama': 2,
          'based': 2,
          'ought': 2,
          'different': 2,
          'look': 2,
          'regards': 1,
          'making': 1,
          'like': 1,
          'trying': 1,
          'stretch': 1,
          'rubber': 1,
          'without': 1,
          'breaking': 1,
          'ntry': 1,
          'hard': 1,
          'snaps': 1,
          'reservation': 1,
          'someone': 1,
          'else': 1,
          'along': 1,
          'pull': 1,
          'farther': 1,
          'director': 1,
          'mark': 1,
          'shows': 1,
          'us': 1,
          'master': 1,
          'technique': 1,
          'takes': 1,
          'advantage': 1,
          'caution': 1,
          'poise': 1,
          'also': 1,
          'risks': 1,
          'bold': 1,
          'steps': 1,
          'end': 1,
          'holding': 1,
          'unbroken': 1,
          'makes': 1,
          'appreciate': 1,
          'lengths': 1,
          'went': 1,
          'direct': 1,
          'fine': 1,
          'feature': 1,
          'ntheres': 1,
          'doubt': 1,
          'crafted': 1,
          'rich': 1,
          'nhe': 1,
          'chooses': 1,
          'setting': 1,
          'quaint': 1,
          'town': 1,
          'gravestown': 1,
          'maine': 1,
          'leaves': 1,
          'bright': 1,
          'orange': 1,
          'fall': 1,
          'grass': 1,
          'lush': 1,
          'green': 1,
          'pure': 1,
          'white': 1,
          'snow': 1,
          'falls': 1,
          'winter': 1,
          'sky': 1,
          'goes': 1,
          'forever': 1,
          'continue': 1,
          'leads': 1,
          'wenteworth': 1,
          'joseph': 1,
          'mazzello': 1,
          'smallest': 1,
          'baby': 1,
          'ever': 1,
          'born': 1,
          'within': 1,
          'records': 1,
          'local': 1,
          'hospital': 1,
          'feet': 1,
          'tall': 1,
          'bastard': 1,
          'son': 1,
          'rebecca': 1,
          'ashley': 1,
          'ready': 1,
          'know': 1,
          'father': 1,
          'nnaturally': 1,
          'outcasts': 1,
          'become': 1,
          'good': 1,
          'share': 1,
          'many': 1,
          'adventures': 1,
          'together': 1,
          'disrupting': 1,
          'sunday': 1,
          'community': 1,
          'service': 1,
          'playing': 1,
          'league': 1,
          'baseball': 1,
          'wonderfully': 1,
          'executed': 1,
          'convinced': 1,
          'gods': 1,
          'instrument': 1,
          'must': 1,
          'reason': 1,
          'small': 1,
          'doesnt': 1,
          'quite': 1,
          'buy': 1,
          'sticks': 1,
          'tough': 1,
          'worst': 1,
          'times': 1,
          'others': 1,
          'true': 1,
          'nearly': 1,
          'meet': 1,
          'goodrich': 1,
          'oliver': 1,
          'rebeccas': 1,
          'new': 1,
          'boyfriend': 1,
          'although': 1,
          'bond': 1,
          'isnt': 1,
          'immediate': 1,
          'boys': 1,
          'develop': 1,
          'liking': 1,
          'nboth': 1,
          'give': 1,
          'solid': 1,
          'performances': 1,
          'lend': 1,
          'deep': 1,
          'likeability': 1,
          'cares': 1,
          'testament': 1,
          'acting': 1,
          'jobs': 1,
          'nfinally': 1,
          'jim': 1,
          'carrey': 1,
          'gives': 1,
          'cameo': 1,
          'adult': 1,
          'day': 1,
          'minutes': 1,
          'relatively': 1,
          'impressive': 1,
          'entire': 1,
          'truman': 1,
          'show': 1,
          'nmark': 1,
          'johnsons': 1,
          'sense': 1,
          'writing': 1,
          'fantastic': 1,
          'script': 1,
          'loosely': 1,
          'john': 1,
          'irvings': 1,
          'novel': 1,
          'prayer': 1,
          'owen': 1,
          'meany': 1,
          'source': 1,
          'material': 1,
          'irving': 1,
          'actually': 1,
          'requested': 1,
          'credits': 1,
          'changed': 1,
          'suggested': 1,
          'nalong': 1,
          'lines': 1,
          'almost': 1,
          'unfitting': 1,
          'compare': 1,
          'uses': 1,
          'tension': 1,
          'humor': 1,
          'atmosphere': 1,
          'suspense': 1,
          'create': 1,
          'original': 1,
          'forrest': 1,
          'gumpian': 1,
          'proportions': 1,
          'nby': 1,
          'developed': 1,
          'project': 1,
          'similar': 1,
          'popularity': 1,
          'gump': 1,
          'made': 1,
          '300': 1,
          'million': 1,
          'dollars': 1,
          'pass': 1,
          'sight': 1,
          'weeks': 1,
          'winning': 1,
          'idea': 1,
          'remains': 1,
          'life': 1,
          'one': 1,
          'likely': 1,
          'studied': 1,
          'classes': 1,
          'decades': 1,
          'however': 1,
          'enjoyable': 1,
          'picture': 1,
          'everyone': 1,
          'take': 1,
          'npos': 1}),
 Counter({'mr': 7,
          'crime': 5,
          'story': 5,
          'tarantino': 4,
          'dogs': 4,
          'pulp': 4,
          'fiction': 4,
          'time': 4,
          'one': 4,
          'nthe': 4,
          'scene': 4,
          'would': 3,
          'nreservoir': 3,
          'joe': 3,
          'five': 3,
          'criminals': 3,
          'cops': 3,
          'white': 3,
          'blonde': 3,
          'police': 3,
          'like': 3,
          'movie': 3,
          'never': 2,
          'two': 2,
          'much': 2,
          'less': 2,
          'pf': 2,
          'movies': 2,
          'dialogue': 2,
          'relevance': 2,
          'plot': 2,
          'rather': 2,
          'three': 2,
          'keitel': 2,
          'roth': 2,
          'buscemi': 2,
          'names': 2,
          'given': 2,
          'pink': 2,
          'orange': 2,
          'running': 2,
          'sequences': 2,
          'rest': 2,
          'basis': 1,
          'film': 1,
          'alone': 1,
          'predicted': 1,
          'years': 1,
          'quentin': 1,
          'become': 1,
          'countrys': 1,
          'biggest': 1,
          'hotshot': 1,
          'director': 1,
          'hints': 1,
          'brilliance': 1,
          'emerged': 1,
          'substantive': 1,
          'conventional': 1,
          'big': 1,
          'nheres': 1,
          'common': 1,
          'nscenes': 1,
          'intelligent': 1,
          'amusing': 1,
          'jumps': 1,
          'back': 1,
          'forth': 1,
          'going': 1,
          'logical': 1,
          'chronological': 1,
          'sequence': 1,
          'graphic': 1,
          'yet': 1,
          'necessary': 1,
          'violence': 1,
          'engaging': 1,
          'liberally': 1,
          'spiced': 1,
          'swear': 1,
          'words': 1,
          'racialgender': 1,
          'slurs': 1,
          'actors': 1,
          'harvey': 1,
          'tim': 1,
          'steve': 1,
          'mexican': 1,
          'standoff': 1,
          'ending': 1,
          'although': 1,
          'considerably': 1,
          'optimistic': 1,
          'entire': 1,
          'hour': 1,
          'shorter': 1,
          'got': 1,
          'tell': 1,
          'ncrime': 1,
          'lord': 1,
          'cabot': 1,
          'veteran': 1,
          'actor': 1,
          'lawrence': 1,
          'tierney': 1,
          'assembled': 1,
          'even': 1,
          'met': 1,
          'pull': 1,
          'diamond': 1,
          'store': 1,
          'heist': 1,
          'instructed': 1,
          'reveal': 1,
          'real': 1,
          'personal': 1,
          'details': 1,
          'anything': 1,
          'could': 1,
          'use': 1,
          'captured': 1,
          'interrogated': 1,
          'ninstead': 1,
          'code': 1,
          'color': 1,
          'chart': 1,
          'michael': 1,
          'madsen': 1,
          'brown': 1,
          'peach': 1,
          'tarantinos': 1,
          'chin': 1,
          'nmost': 1,
          'spent': 1,
          'waiting': 1,
          'warehouse': 1,
          'others': 1,
          'arrive': 1,
          'nmr': 1,
          'meanwhile': 1,
          'floor': 1,
          'dying': 1,
          'gunshot': 1,
          'wound': 1,
          'arrived': 1,
          'way': 1,
          'soon': 1,
          'leading': 1,
          'believe': 1,
          'informant': 1,
          'storys': 1,
          'background': 1,
          'unfolds': 1,
          'series': 1,
          'flashbacks': 1,
          'meetings': 1,
          'prior': 1,
          'neventually': 1,
          'arrives': 1,
          'officer': 1,
          'hostage': 1,
          'follows': 1,
          'truly': 1,
          'brutal': 1,
          'uncomfortable': 1,
          'torture': 1,
          'nlets': 1,
          'say': 1,
          'picasso': 1,
          'inspired': 1,
          'ear': 1,
          'na': 1,
          'lot': 1,
          'reservoir': 1,
          'seems': 1,
          'typical': 1,
          'gangster': 1,
          'heistgonewrong': 1,
          'uniquely': 1,
          'opening': 1,
          'coffee': 1,
          'shop': 1,
          'starts': 1,
          'high': 1,
          'note': 1,
          'doesnt': 1,
          'live': 1,
          'plus': 1,
          'conversation': 1,
          'among': 1,
          'things': 1,
          'tipping': 1,
          'philosophies': 1,
          'interpretations': 1,
          'madonnas': 1,
          'virgin': 1,
          'nanother': 1,
          'involves': 1,
          'roths': 1,
          'lengthy': 1,
          'manufactured': 1,
          'group': 1,
          'dog': 1,
          'bus': 1,
          'station': 1,
          'bathroom': 1,
          'carrying': 1,
          'giant': 1,
          'bag': 1,
          'marijuana': 1,
          'nneither': 1,
          'ample': 1,
          'develop': 1,
          'captain': 1,
          'koons': 1,
          'gold': 1,
          'watch': 1,
          'speech': 1,
          'enjoyable': 1,
          'good': 1,
          'npos': 1}),
 Counter({'computer': 8,
          'kind': 5,
          'violence': 4,
          'war': 4,
          'computers': 4,
          'play': 3,
          'norad': 3,
          'ni': 3,
          'modem': 3,
          'good': 2,
          'movie': 2,
          'watching': 2,
          'potential': 2,
          'nand': 2,
          'could': 2,
          'wargames': 2,
          'david': 2,
          'hacking': 2,
          'school': 2,
          'nbut': 2,
          'game': 2,
          'nuclear': 2,
          'hardly': 2,
          'giving': 2,
          'days': 2,
          'still': 2,
          'since': 2,
          'parents': 2,
          'like': 2,
          'secret': 2,
          'see': 2,
          'technology': 2,
          'calling': 2,
          'nthe': 2,
          'fact': 1,
          'thriller': 1,
          'action': 1,
          'doesnt': 1,
          'need': 1,
          'worth': 1,
          'nall': 1,
          'takes': 1,
          'make': 1,
          'audience': 1,
          'bite': 1,
          'nails': 1,
          'efficient': 1,
          'global': 1,
          'thermonuclear': 1,
          'premiss': 1,
          'built': 1,
          'upon': 1,
          'na': 1,
          'whizkid': 1,
          'usually': 1,
          'contended': 1,
          'change': 1,
          'grades': 1,
          'read': 1,
          'advertisment': 1,
          'upcoming': 1,
          'wants': 1,
          'first': 1,
          'ninstead': 1,
          'getting': 1,
          'protovision': 1,
          'software': 1,
          'accidentally': 1,
          'comes': 1,
          'frontgate': 1,
          'nwith': 1,
          'help': 1,
          'jennifer': 1,
          'girl': 1,
          'biology': 1,
          'class': 1,
          'starts': 1,
          'nice': 1,
          'wopr': 1,
          'operation': 1,
          'plan': 1,
          'response': 1,
          'topnotch': 1,
          'time': 1,
          'faster': 1,
          'remember': 1,
          '12': 1,
          'cinema': 1,
          'nit': 1,
          'efficent': 1,
          'scare': 1,
          'hasnt': 1,
          'changed': 1,
          'nof': 1,
          'course': 1,
          'seemed': 1,
          'much': 1,
          'something': 1,
          'actually': 1,
          'happen': 1,
          'back': 1,
          '1983': 1,
          'wouldnt': 1,
          'surprised': 1,
          'gave': 1,
          'people': 1,
          'nightmares': 1,
          'hope': 1,
          'hear': 1,
          'kids': 1,
          'pentagon': 1,
          'nbroderick': 1,
          'sheedy': 1,
          'fine': 1,
          'young': 1,
          'teenagers': 1,
          'although': 1,
          'interest': 1,
          'remains': 1,
          'mystery': 1,
          'rest': 1,
          'actors': 1,
          'fault': 1,
          'restricted': 1,
          'script': 1,
          'onedimensional': 1,
          'grownups': 1,
          'ndavids': 1,
          'populate': 1,
          'college': 1,
          'comedies': 1,
          '1980s': 1,
          'movies': 1,
          'admirer': 1,
          'porkys': 1,
          'zapped': 1,
          'general': 1,
          'beringer': 1,
          'straight': 1,
          'dr': 1,
          'strangelove': 1,
          'nif': 1,
          'reason': 1,
          'enjoy': 1,
          'far': 1,
          'gone': 1,
          'ndavid': 1,
          'uses': 1,
          'telephone': 1,
          'friends': 1,
          'device': 1,
          'puts': 1,
          'headset': 1,
          'nfar': 1,
          '56k': 1,
          'guess': 1,
          '2400': 1,
          'bps': 1,
          'find': 1,
          'local': 1,
          'technical': 1,
          'museum': 1,
          'big': 1,
          'lot': 1,
          'flashing': 1,
          'lights': 1,
          'star': 1,
          'trek': 1,
          'old': 1,
          'sfmovie': 1,
          'impressing': 1,
          'compared': 1,
          'get': 1,
          'today': 1,
          'nwhat': 1,
          'lessons': 1,
          'learn': 1,
          'n1': 1,
          'nmake': 1,
          'sure': 1,
          'backdoors': 1,
          'military': 1,
          'n2': 1,
          'thank': 1,
          'whoever': 1,
          'us': 1,
          'graphical': 1,
          'user': 1,
          'interface': 1,
          'use': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'suspense': 5,
          'movies': 4,
          'fans': 4,
          'ronin': 4,
          'package': 4,
          'action': 3,
          'movie': 3,
          'script': 3,
          'mission': 3,
          'becomes': 3,
          'successful': 2,
          'naction': 2,
          'plot': 2,
          'ability': 2,
          'everything': 2,
          'however': 2,
          'realism': 2,
          'want': 2,
          'fall': 2,
          'end': 2,
          'quite': 2,
          'years': 2,
          'zeik': 2,
          'people': 2,
          'impossible': 2,
          'times': 2,
          'tale': 2,
          'well': 2,
          'de': 2,
          'niro': 2,
          'cast': 2,
          'almost': 2,
          'might': 2,
          'become': 2,
          'good': 2,
          'exists': 1,
          'litany': 1,
          'differences': 1,
          'typically': 1,
          'devoid': 1,
          'simple': 1,
          'byline': 1,
          'string': 1,
          'together': 1,
          'several': 1,
          'explosive': 1,
          'sequences': 1,
          'hinge': 1,
          'subtlety': 1,
          'bring': 1,
          'fullcircle': 1,
          'nfor': 1,
          'genres': 1,
          'key': 1,
          'know': 1,
          'weapons': 1,
          'methods': 1,
          'heroes': 1,
          'using': 1,
          'authentic': 1,
          'explainable': 1,
          'framework': 1,
          'non': 1,
          'advice': 1,
          'director': 1,
          'john': 1,
          'frankenheimer': 1,
          'island': 1,
          'dr': 1,
          'nmoreau': 1,
          'strives': 1,
          'interestingly': 1,
          'dynamic': 1,
          'balance': 1,
          'latest': 1,
          'thriller': 1,
          'depth': 1,
          'intrigue': 1,
          'amazing': 1,
          'considering': 1,
          'fare': 1,
          'thats': 1,
          'fallen': 1,
          'category': 1,
          'last': 1,
          'written': 1,
          'j': 1,
          'bigscreen': 1,
          'debut': 1,
          'approaches': 1,
          'levels': 1,
          'complexity': 1,
          'spinning': 1,
          'away': 1,
          'two': 1,
          'ago': 1,
          'na': 1,
          'certain': 1,
          'number': 1,
          'lost': 1,
          'afficianados': 1,
          'appreciate': 1,
          'return': 1,
          'multiple': 1,
          'nfrankenheimer': 1,
          'masters': 1,
          'poise': 1,
          'tells': 1,
          'us': 1,
          'dark': 1,
          'stoically': 1,
          'realistic': 1,
          'group': 1,
          'postcold': 1,
          'war': 1,
          'mercenaries': 1,
          'working': 1,
          'earn': 1,
          'paycheck': 1,
          'nhis': 1,
          'convey': 1,
          'feeling': 1,
          'character': 1,
          'promoting': 1,
          'explosiveness': 1,
          'tense': 1,
          'atmosphere': 1,
          'works': 1,
          'better': 1,
          'nrobert': 1,
          'headlines': 1,
          'noteworthies': 1,
          'performance': 1,
          'outstanding': 1,
          'time': 1,
          'nhe': 1,
          'takes': 1,
          'command': 1,
          'offers': 1,
          'much': 1,
          'gravity': 1,
          'exspy': 1,
          'sam': 1,
          'man': 1,
          'whos': 1,
          'called': 1,
          'france': 1,
          'help': 1,
          'shady': 1,
          'operations': 1,
          'controller': 1,
          'named': 1,
          'dierdre': 1,
          'natascha': 1,
          'mcelhone': 1,
          'recover': 1,
          'central': 1,
          'motivator': 1,
          'entire': 1,
          'especially': 1,
          'requisite': 1,
          'doublecrossing': 1,
          'begins': 1,
          'role': 1,
          'skillfully': 1,
          'penned': 1,
          'nat': 1,
          'zeiks': 1,
          'reminiscent': 1,
          'easily': 1,
          'tom': 1,
          'cruise': 1,
          'cruises': 1,
          'computer': 1,
          'disk': 1,
          'nfortunately': 1,
          'focus': 1,
          'entirely': 1,
          'whereas': 1,
          'concerned': 1,
          'doublecross': 1,
          'happened': 1,
          'content': 1,
          'impressive': 1,
          'lives': 1,
          'hints': 1,
          'given': 1,
          'previews': 1,
          'disappointed': 1,
          'expect': 1,
          'fullblown': 1,
          'combat': 1,
          'scenes': 1,
          'instead': 1,
          'forced': 1,
          'suffer': 1,
          'moments': 1,
          'slowness': 1,
          'nronin': 1,
          'take': 1,
          'degree': 1,
          'intelligence': 1,
          'follow': 1,
          'nuance': 1,
          'start': 1,
          'finish': 1,
          'even': 1,
          'uninitiated': 1,
          'able': 1,
          'keep': 1,
          'grasp': 1,
          'characters': 1,
          'mand': 1,
          'subplots': 1,
          'tapers': 1,
          'considerably': 1,
          'bit': 1,
          'drawback': 1,
          'height': 1,
          'open': 1,
          'nconsidering': 1,
          'factors': 1,
          'see': 1,
          'project': 1,
          'turned': 1,
          'another': 1,
          'bet': 1,
          'month': 1,
          'nsince': 1,
          'quality': 1,
          'usually': 1,
          'sparse': 1,
          'early': 1,
          'months': 1,
          'definitely': 1,
          'worth': 1,
          'visit': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'silent': 8,
          'bob': 7,
          'jay': 5,
          'strike': 5,
          'back': 5,
          'nthe': 5,
          'humor': 4,
          'nin': 4,
          'year': 4,
          'movies': 4,
          'njay': 4,
          'film': 4,
          'kevin': 3,
          'smiths': 3,
          'audience': 3,
          'funniest': 3,
          'nit': 3,
          'famous': 2,
          'best': 2,
          'ive': 2,
          'seen': 2,
          'laughter': 2,
          'like': 2,
          'find': 2,
          'n': 2,
          'one': 2,
          'smith': 2,
          'stop': 2,
          'comic': 2,
          'book': 2,
          'alter': 2,
          'used': 2,
          'van': 2,
          'make': 2,
          'enough': 2,
          'tickets': 2,
          'anything': 2,
          'even': 2,
          'jokes': 2,
          'youll': 2,
          'still': 2,
          'nits': 2,
          'nhis': 2,
          'crude': 2,
          'justice': 2,
          'contains': 2,
          'high': 2,
          'thus': 2,
          'far': 2,
          'swan': 1,
          'song': 1,
          'two': 1,
          'characters': 1,
          'received': 1,
          'comedy': 1,
          'since': 1,
          'theres': 1,
          'something': 1,
          'mary': 1,
          'tea': 1,
          'party': 1,
          'comparison': 1,
          'foulmouthed': 1,
          'didnt': 1,
          'laugh': 1,
          'went': 1,
          'wild': 1,
          'boisterous': 1,
          'heavy': 1,
          'applause': 1,
          'throughout': 1,
          'short': 1,
          'really': 1,
          'raunchy': 1,
          'may': 1,
          'hand': 1,
          'walked': 1,
          'disgust': 1,
          'dogma': 1,
          'fastest': 1,
          'paced': 1,
          'story': 1,
          'jason': 1,
          'mewes': 1,
          'pair': 1,
          'card': 1,
          'carrying': 1,
          'drug': 1,
          'dealers': 1,
          'traveling': 1,
          'new': 1,
          'jersey': 1,
          'convenience': 1,
          'store': 1,
          'home': 1,
          'hollywood': 1,
          'seems': 1,
          'egos': 1,
          'bluntman': 1,
          'chronic': 1,
          'without': 1,
          'bobs': 1,
          'consent': 1,
          'njason': 1,
          'biggs': 1,
          'james': 1,
          'der': 1,
          'beek': 1,
          'slated': 1,
          'star': 1,
          'better': 1,
          'cameos': 1,
          'ever': 1,
          'namong': 1,
          'others': 1,
          'include': 1,
          'carrie': 1,
          'fisher': 1,
          'bibletoting': 1,
          'nun': 1,
          'mark': 1,
          'hamill': 1,
          'version': 1,
          'ego': 1,
          'gus': 1,
          'sant': 1,
          'director': 1,
          'busy': 1,
          'counting': 1,
          'money': 1,
          'yell': 1,
          'action': 1,
          'nbest': 1,
          'ben': 1,
          'affleck': 1,
          'matt': 1,
          'damon': 1,
          'mock': 1,
          'stops': 1,
          'several': 1,
          'times': 1,
          'fun': 1,
          'stupid': 1,
          'buy': 1,
          'actually': 1,
          'purchasing': 1,
          'extremely': 1,
          'smart': 1,
          'given': 1,
          'delivers': 1,
          'per': 1,
          'dollar': 1,
          'recent': 1,
          'memory': 1,
          'skewers': 1,
          'people': 1,
          'write': 1,
          'internet': 1,
          'nguilty': 1,
          'nalthough': 1,
          'filled': 1,
          'inside': 1,
          'laughing': 1,
          'get': 1,
          'easy': 1,
          'understand': 1,
          'funny': 1,
          'motor': 1,
          'mouth': 1,
          'hasnt': 1,
          'met': 1,
          'subject': 1,
          'couldnt': 1,
          'vulgarize': 1,
          'favorite': 1,
          'topic': 1,
          'oral': 1,
          'sex': 1,
          'equal': 1,
          'opportunity': 1,
          'profaner': 1,
          'hes': 1,
          'willing': 1,
          'absolutely': 1,
          'nbut': 1,
          'buddy': 1,
          'aptly': 1,
          'named': 1,
          'responsible': 1,
          'success': 1,
          'reaction': 1,
          'shots': 1,
          'wildly': 1,
          'exaggerated': 1,
          'eye': 1,
          'movements': 1,
          'comedic': 1,
          'gems': 1,
          'storys': 1,
          'main': 1,
          'subplot': 1,
          'concerns': 1,
          'four': 1,
          'animal': 1,
          'rights': 1,
          'activists': 1,
          'shannon': 1,
          'elizabeth': 1,
          'three': 1,
          'sexy': 1,
          'buddies': 1,
          'sissy': 1,
          'eliza': 1,
          'dushku': 1,
          'missy': 1,
          'jennifer': 1,
          'schwalbach': 1,
          'chrissy': 1,
          'ali': 1,
          'larter': 1,
          'nthese': 1,
          'charlies': 1,
          'angels': 1,
          'types': 1,
          'give': 1,
          'ride': 1,
          'heroes': 1,
          'trek': 1,
          'lalaland': 1,
          'picture': 1,
          'tries': 1,
          'put': 1,
          'moves': 1,
          'doesnt': 1,
          'stay': 1,
          'command': 1,
          'situation': 1,
          'long': 1,
          'none': 1,
          'funnier': 1,
          'sight': 1,
          'gags': 1,
          'women': 1,
          'using': 1,
          'pink': 1,
          'clamshaped': 1,
          'birth': 1,
          'control': 1,
          'case': 1,
          'tech': 1,
          'gadgetry': 1,
          'ngranted': 1,
          'everyone': 1,
          'brand': 1,
          'nand': 1,
          'said': 1,
          'earlier': 1,
          'nno': 1,
          'wait': 1,
          'nforget': 1,
          'bound': 1,
          'time': 1,
          'almost': 1,
          'every': 1,
          'feels': 1,
          'obligated': 1,
          'come': 1,
          'pg13': 1,
          'rake': 1,
          'maximum': 1,
          'cash': 1,
          'great': 1,
          'see': 1,
          'filmmaker': 1,
          'guts': 1,
          'target': 1,
          'mature': 1,
          'runs': 1,
          'lightening': 1,
          'fast': 1,
          '1': 1,
          '35': 1,
          'rated': 1,
          'r': 1,
          'pervasive': 1,
          'language': 1,
          'sexual': 1,
          'situations': 1,
          'would': 1,
          'acceptable': 1,
          'school': 1,
          'seniors': 1,
          'older': 1,
          'opens': 1,
          'nationwide': 1,
          'united': 1,
          'states': 1,
          'wednesday': 1,
          'august': 1,
          '22': 1,
          '2001': 1,
          'silicon': 1,
          'valley': 1,
          'showing': 1,
          'amc': 1,
          'century': 1,
          'theaters': 1,
          'npos': 1}),
 Counter({'film': 5,
          'nthe': 4,
          'excellent': 3,
          'rampling': 3,
          'nshe': 3,
          'fine': 3,
          'much': 2,
          'would': 2,
          'sand': 2,
          'thanks': 2,
          'performance': 2,
          'charlotte': 2,
          'nmarie': 2,
          'husband': 2,
          'jean': 2,
          'marie': 2,
          'cant': 2,
          'find': 2,
          'ndid': 2,
          'life': 2,
          'still': 2,
          'nits': 2,
          'movie': 2,
          'hard': 2,
          'damn': 1,
          'trailers': 1,
          'nhad': 1,
          'advertising': 1,
          'reveals': 1,
          'far': 1,
          'contents': 1,
          'glued': 1,
          'nas': 1,
          'retains': 1,
          'value': 1,
          'mature': 1,
          'francois': 1,
          'ozon': 1,
          'directors': 1,
          'chair': 1,
          'bruno': 1,
          'cremer': 1,
          'lounge': 1,
          'beach': 1,
          'takes': 1,
          'nap': 1,
          'goes': 1,
          'swim': 1,
          'nwhen': 1,
          'wakes': 1,
          'nowhere': 1,
          'found': 1,
          'contacts': 1,
          'authorities': 1,
          'either': 1,
          'disappear': 1,
          'start': 1,
          'new': 1,
          'nwas': 1,
          'killed': 1,
          'accident': 1,
          'commit': 1,
          'suicide': 1,
          'asks': 1,
          'questions': 1,
          'year': 1,
          'later': 1,
          'order': 1,
          'move': 1,
          'must': 1,
          'answers': 1,
          'premise': 1,
          'little': 1,
          'uses': 1,
          'limit': 1,
          'moves': 1,
          'leisurely': 1,
          'pace': 1,
          'bit': 1,
          'slow': 1,
          'relaxing': 1,
          'visual': 1,
          'story': 1,
          'pretty': 1,
          'sit': 1,
          'back': 1,
          'without': 1,
          'reading': 1,
          'subtitles': 1,
          'nthis': 1,
          'mostly': 1,
          'camera': 1,
          'work': 1,
          'antoine': 1,
          'heberle': 1,
          'jeanne': 1,
          'lapoirie': 1,
          'shot': 1,
          'dreamy': 1,
          'haze': 1,
          'lead': 1,
          'nrampling': 1,
          'expressive': 1,
          'portrayal': 1,
          'connect': 1,
          'character': 1,
          'instantly': 1,
          'despite': 1,
          'shes': 1,
          'delusional': 1,
          'scenes': 1,
          'interacts': 1,
          'believes': 1,
          'alive': 1,
          'heartbreaking': 1,
          'quite': 1,
          'get': 1,
          'ntheyve': 1,
          'married': 1,
          'twentyfive': 1,
          'years': 1,
          'actors': 1,
          'particularly': 1,
          'jacques': 1,
          'nolot': 1,
          'sex': 1,
          'rather': 1,
          'unneeded': 1,
          'compared': 1,
          'ozons': 1,
          'criminal': 1,
          'lovers': 1,
          'disney': 1,
          'channel': 1,
          'nlikely': 1,
          'cause': 1,
          'discussion': 1,
          'afterwards': 1,
          'going': 1,
          'experience': 1,
          'nwhile': 1,
          'recommend': 1,
          'entertainment': 1,
          'adult': 1,
          'alternative': 1,
          'deal': 1,
          'loss': 1,
          'nozon': 1,
          'seems': 1,
          'ask': 1,
          'thats': 1,
          'certainly': 1,
          'question': 1,
          'answer': 1,
          'npos': 1}),
 Counter({'chan': 6,
          'hour': 4,
          'nrush': 3,
          'chinese': 3,
          'tucker': 3,
          'well': 3,
          'problem': 2,
          '48': 2,
          'hours': 2,
          'clones': 2,
          'another': 2,
          'film': 2,
          'different': 2,
          'course': 2,
          'office': 2,
          'energetic': 2,
          'fight': 2,
          'youll': 2,
          'bob': 1,
          'happy': 1,
          'bastards': 1,
          'quickie': 1,
          'review': 1,
          'nso': 1,
          'whats': 1,
          'days': 1,
          'nthey': 1,
          'always': 1,
          'try': 1,
          'thing': 1,
          'eddie': 1,
          'murphy': 1,
          'nick': 1,
          'nolte': 1,
          'nthat': 1,
          'plagued': 1,
          'mention': 1,
          'actual': 1,
          'sequel': 1,
          'complete': 1,
          'waste': 1,
          'nbut': 1,
          'last': 1,
          'someone': 1,
          'take': 1,
          'matter': 1,
          'director': 1,
          'brett': 1,
          'rainer': 1,
          'features': 1,
          'jackie': 1,
          'first': 1,
          'u': 1,
          'action': 1,
          'movie': 1,
          'playing': 1,
          'detective': 1,
          'whos': 1,
          'flown': 1,
          'us': 1,
          'investigate': 1,
          'kidnapping': 1,
          'consulates': 1,
          'daughter': 1,
          'nof': 1,
          'fbi': 1,
          'upset': 1,
          'hell': 1,
          'interfering': 1,
          'investigation': 1,
          'stick': 1,
          'lapd': 1,
          'big': 1,
          'mouth': 1,
          'thats': 1,
          'chris': 1,
          'nwhat': 1,
          'makes': 1,
          'rush': 1,
          'work': 1,
          'damn': 1,
          'chemistry': 1,
          'absolutely': 1,
          'hilarious': 1,
          'ntucker': 1,
          'mouths': 1,
          'every': 1,
          'given': 1,
          'opportunity': 1,
          'im': 1,
          'michael': 1,
          'jackson': 1,
          'tito': 1,
          'delivers': 1,
          'zingers': 1,
          'terrific': 1,
          'scenes': 1,
          'nthe': 1,
          'storys': 1,
          'pretty': 1,
          'much': 1,
          'average': 1,
          'fare': 1,
          'decent': 1,
          'twist': 1,
          'involving': 1,
          'main': 1,
          'villain': 1,
          'highly': 1,
          'clouded': 1,
          'figure': 1,
          'named': 1,
          'jun': 1,
          'tao': 1,
          'nat': 1,
          'least': 1,
          'entertaining': 1,
          'concept': 1,
          'excellently': 1,
          'realized': 1,
          'na': 1,
          'particular': 1,
          'scene': 1,
          'duke': 1,
          'bad': 1,
          'guys': 1,
          'funny': 1,
          'time': 1,
          'nand': 1,
          'finales': 1,
          'real': 1,
          'treat': 1,
          'ndelivers': 1,
          'yet': 1,
          'fantastic': 1,
          'stunt': 1,
          'fans': 1,
          '10story': 1,
          'drop': 1,
          'sort': 1,
          'get': 1,
          'kick': 1,
          'night': 1,
          'week': 1,
          'njust': 1,
          'make': 1,
          'sure': 1,
          'dont': 1,
          'look': 1,
          'anything': 1,
          'culturally': 1,
          'fine': 1,
          'drunken': 1,
          'master': 1,
          'ii': 1,
          'aint': 1,
          'npos': 1}),
 Counter({'film': 11,
          'titanic': 11,
          'movie': 10,
          'nthe': 8,
          'ship': 7,
          'story': 6,
          'best': 5,
          'nit': 5,
          'effects': 5,
          'ever': 4,
          'see': 4,
          'actual': 4,
          'love': 4,
          'nwe': 4,
          'ni': 4,
          'disaster': 3,
          'sunken': 3,
          'woman': 3,
          'meet': 3,
          'comes': 3,
          'really': 3,
          'get': 3,
          'certainly': 3,
          'home': 3,
          'new': 2,
          'sink': 2,
          'nmy': 2,
          'attatched': 2,
          'made': 2,
          'amazing': 2,
          'seen': 2,
          'date': 2,
          'people': 2,
          'running': 2,
          'across': 2,
          'water': 2,
          'footage': 2,
          'give': 2,
          'begins': 2,
          'set': 2,
          'wreckage': 2,
          'leads': 2,
          'young': 2,
          'man': 2,
          'played': 2,
          'well': 2,
          'likeable': 2,
          'rich': 2,
          'folk': 2,
          'nwhen': 2,
          'exactly': 2,
          'never': 2,
          'picture': 2,
          'far': 2,
          'sound': 2,
          'ntitanic': 2,
          'runs': 2,
          '3': 2,
          'hours': 2,
          'minutes': 2,
          'sappy': 2,
          'bad': 2,
          'true': 2,
          'time': 2,
          'pictures': 2,
          'nthis': 2,
          'doesnt': 2,
          'predict': 2,
          'theater': 2,
          'sunday': 1,
          'afternoon': 1,
          'priviledge': 1,
          'attending': 1,
          'private': 1,
          'screening': 1,
          'sony': 1,
          'astor': 1,
          'cinema': 1,
          'york': 1,
          'city': 1,
          'james': 1,
          'camerons': 1,
          'heralded': 1,
          'npostponed': 1,
          'last': 1,
          'summer': 1,
          'escalated': 1,
          'budget': 1,
          'makes': 1,
          'expensive': 1,
          'history': 1,
          'one': 1,
          'eager': 1,
          'preview': 1,
          'nso': 1,
          'going': 1,
          'swim': 1,
          'holiday': 1,
          'guess': 1,
          'though': 1,
          'many': 1,
          'awards': 1,
          'hull': 1,
          'nno': 1,
          'doubt': 1,
          'elaborate': 1,
          'boasts': 1,
          'done': 1,
          'nto': 1,
          'fall': 1,
          'apart': 1,
          'flying': 1,
          'deck': 1,
          'falling': 1,
          'look': 1,
          'stunningly': 1,
          'realistic': 1,
          'would': 1,
          'swear': 1,
          'looking': 1,
          'nbut': 1,
          'thats': 1,
          'problem': 1,
          'lies': 1,
          'nthere': 1,
          'nearly': 1,
          'ruins': 1,
          'entire': 1,
          'premise': 1,
          'nill': 1,
          'capsule': 1,
          'summary': 1,
          'without': 1,
          'spoiling': 1,
          'anything': 1,
          'modern': 1,
          'day': 1,
          'excavation': 1,
          'sorts': 1,
          'cammeron': 1,
          'special': 1,
          'cameras': 1,
          'ocean': 1,
          'floor': 1,
          'nbill': 1,
          'paxton': 1,
          'expedition': 1,
          'search': 1,
          'treasure': 1,
          'nwhat': 1,
          'finds': 1,
          'instead': 1,
          'mysterious': 1,
          'old': 1,
          'recounts': 1,
          'tale': 1,
          'voyage': 1,
          'rose': 1,
          'kate': 1,
          'winslet': 1,
          'upperclass': 1,
          'family': 1,
          'nrose': 1,
          'wed': 1,
          'jack': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'poor': 1,
          'financial': 1,
          'background': 1,
          'wins': 1,
          'ticket': 1,
          'aboard': 1,
          'poker': 1,
          'game': 1,
          'two': 1,
          'interesting': 1,
          'circumstances': 1,
          'nadd': 1,
          'jealous': 1,
          'fiance': 1,
          'notsonice': 1,
          'law': 1,
          'officer': 1,
          'david': 1,
          'warner': 1,
          'gets': 1,
          'bit': 1,
          'overplayed': 1,
          'oversappy': 1,
          'must': 1,
          'add': 1,
          'point': 1,
          'character': 1,
          'kathy': 1,
          'bates': 1,
          'money': 1,
          'lot': 1,
          'less': 1,
          'uptight': 1,
          'nshe': 1,
          'pleasure': 1,
          'screen': 1,
          'hit': 1,
          'iceberg': 1,
          '1': 1,
          '40': 1,
          'eventually': 1,
          'sinks': 1,
          'feel': 1,
          'characters': 1,
          'loaded': 1,
          'unlikeable': 1,
          'snobs': 1,
          'grasp': 1,
          'tremendous': 1,
          'nfrom': 1,
          'roars': 1,
          'gears': 1,
          'pumps': 1,
          'engine': 1,
          'room': 1,
          'doomed': 1,
          'cracking': 1,
          'seams': 1,
          'looks': 1,
          'sounds': 1,
          'like': 1,
          'saw': 1,
          'dolby': 1,
          'digital': 1,
          'surround': 1,
          'sounding': 1,
          'friend': 1,
          'commented': 1,
          'mix': 1,
          'heard': 1,
          'films': 1,
          'end': 1,
          'surrounded': 1,
          'voices': 1,
          'lost': 1,
          'soles': 1,
          'long': 1,
          '15': 1,
          'length': 1,
          'nand': 1,
          'first': 1,
          '2': 1,
          '5': 1,
          'fast': 1,
          'wellpaced': 1,
          'final': 1,
          '45': 1,
          'almost': 1,
          'sudden': 1,
          'stop': 1,
          'realize': 1,
          'finish': 1,
          'finally': 1,
          'ends': 1,
          'ndont': 1,
          'wrong': 1,
          'nnot': 1,
          'making': 1,
          'exceptionaly': 1,
          'wellmade': 1,
          'costumes': 1,
          'sets': 1,
          'incredible': 1,
          'period': 1,
          'painstakingly': 1,
          'created': 1,
          'form': 1,
          'modernday': 1,
          'transformed': 1,
          'depiction': 1,
          'win': 1,
          'costume': 1,
          'design': 1,
          'ncameron': 1,
          'nunfortunately': 1,
          'candidate': 1,
          'strong': 1,
          'supporting': 1,
          'nits': 1,
          'exceptional': 1,
          'filler': 1,
          'inside': 1,
          'emotional': 1,
          'impact': 1,
          'suspect': 1,
          'mr': 1,
          'cameron': 1,
          'shooting': 1,
          'open': 1,
          'reviews': 1,
          'worth': 1,
          'seeing': 1,
          'moderately': 1,
          'box': 1,
          'office': 1,
          'nwith': 1,
          'extreme': 1,
          'lack': 1,
          'enough': 1,
          'robust': 1,
          'substantial': 1,
          'wordofmouth': 1,
          'expect': 1,
          'even': 1,
          'better': 1,
          'video': 1,
          'definitive': 1,
          'ac3': 1,
          'enthusiasts': 1,
          'opens': 1,
          'december': 1,
          '19th': 1,
          'released': 1,
          'paramount': 1,
          'twentieth': 1,
          'centuryfox': 1,
          'stars': 1,
          'nthats': 1,
          'nron': 1,
          'epstein': 1,
          'nriginally': 1,
          'posted': 1,
          'forum': 1,
          'npos': 1}),
 Counter({'50s': 4,
          'tv': 4,
          'film': 3,
          'show': 3,
          'nthe': 3,
          'years': 3,
          'audience': 3,
          'common': 2,
          'nquiz': 2,
          'films': 2,
          'script': 2,
          'telling': 2,
          'war': 2,
          'american': 2,
          'dream': 2,
          'perfectly': 2,
          'carefully': 2,
          'scandal': 2,
          'icons': 2,
          'almost': 2,
          'may': 2,
          'end': 2,
          'mirror': 2,
          'complaint': 1,
          'amongst': 1,
          'critics': 1,
          'arent': 1,
          'literate': 1,
          'scripts': 1,
          'available': 1,
          'gives': 1,
          'signs': 1,
          'hope': 1,
          'art': 1,
          'writing': 1,
          'isnt': 1,
          'dead': 1,
          'hollywood': 1,
          'need': 1,
          'look': 1,
          'independent': 1,
          'thoughtful': 1,
          'content': 1,
          'npaul': 1,
          'attanasios': 1,
          'takes': 1,
          'could': 1,
          'tepid': 1,
          'thriller': 1,
          'quiz': 1,
          'scandals': 1,
          'late': 1,
          'delivers': 1,
          'parable': 1,
          'emptiness': 1,
          'post': 1,
          'golden': 1,
          'bubble': 1,
          'surrounds': 1,
          'protects': 1,
          'networks': 1,
          'sponsors': 1,
          'riddled': 1,
          'symbols': 1,
          'e': 1,
          'g': 1,
          'na': 1,
          '58': 1,
          'chrysler': 1,
          'radio': 1,
          'announcement': 1,
          'sputnik': 1,
          'never': 1,
          'heavy': 1,
          'handed': 1,
          'ndeft': 1,
          'direction': 1,
          'robert': 1,
          'redford': 1,
          'keen': 1,
          'performances': 1,
          'ralph': 1,
          'fiennes': 1,
          'john': 1,
          'turturro': 1,
          'rob': 1,
          'morrow': 1,
          'dovetail': 1,
          'honed': 1,
          'nredford': 1,
          'departs': 1,
          'usually': 1,
          'overlight': 1,
          'cable': 1,
          'quality': 1,
          'sets': 1,
          'camera': 1,
          'work': 1,
          'recent': 1,
          '20th': 1,
          'century': 1,
          'period': 1,
          'pieces': 1,
          'captures': 1,
          'colors': 1,
          'textures': 1,
          'eisenhower': 1,
          'nalthough': 1,
          '4': 1,
          'old': 1,
          'twenty': 1,
          'one': 1,
          'broke': 1,
          'enough': 1,
          'survived': 1,
          'throughout': 1,
          'childhood': 1,
          'recognize': 1,
          'authenticity': 1,
          'redfords': 1,
          'tangible': 1,
          'palette': 1,
          'nfrom': 1,
          'plastic': 1,
          'covered': 1,
          'furniture': 1,
          'coifed': 1,
          'contestants': 1,
          'images': 1,
          'ring': 1,
          'true': 1,
          'era': 1,
          'rampant': 1,
          'consumerism': 1,
          'generation': 1,
          'gone': 1,
          '15': 1,
          'depression': 1,
          'world': 1,
          'without': 1,
          'disposable': 1,
          'income': 1,
          'manifestation': 1,
          'deftly': 1,
          'weaves': 1,
          'several': 1,
          'themes': 1,
          'together': 1,
          'assimilation': 1,
          'exclusion': 1,
          'jews': 1,
          'good': 1,
          'life': 1,
          'lengths': 1,
          'scion': 1,
          'literary': 1,
          'family': 1,
          'go': 1,
          'match': 1,
          'fathers': 1,
          'fame': 1,
          'nthough': 1,
          'rocked': 1,
          'initially': 1,
          'seem': 1,
          'naive': 1,
          'us': 1,
          'appear': 1,
          'familiar': 1,
          'current': 1,
          'national': 1,
          'passion': 1,
          'rise': 1,
          'fall': 1,
          'like': 1,
          'michael': 1,
          'jackson': 1,
          'tonya': 1,
          'harding': 1,
          'ncharles': 1,
          'van': 1,
          'doren': 1,
          'herbie': 1,
          'stemple': 1,
          'overnight': 1,
          'mega': 1,
          'celebrities': 1,
          'day': 1,
          'fourth': 1,
          'main': 1,
          'character': 1,
          'always': 1,
          'center': 1,
          'decisions': 1,
          'made': 1,
          'behalf': 1,
          'nat': 1,
          'credits': 1,
          'roll': 1,
          'past': 1,
          'slow': 1,
          'motion': 1,
          'footage': 1,
          'mindlessly': 1,
          'laughing': 1,
          'piece': 1,
          'fluff': 1,
          'nlike': 1,
          'distorted': 1,
          'captured': 1,
          'blurred': 1,
          'swastika': 1,
          'cabaret': 1,
          'reflect': 1,
          'image': 1,
          'comfortable': 1,
          'npos': 1}),
 Counter({'film': 9,
          'message': 5,
          'characters': 5,
          'boyle': 3,
          'local': 3,
          'camera': 3,
          'across': 3,
          'energy': 2,
          'kind': 2,
          'filmmaking': 2,
          'bunch': 2,
          'director': 2,
          'depict': 2,
          'nthe': 2,
          'medium': 2,
          'ewan': 2,
          'nbored': 2,
          'getting': 2,
          'dose': 2,
          'find': 2,
          'around': 2,
          'shot': 2,
          'kids': 2,
          'nhe': 2,
          'short': 2,
          'whew': 1,
          'oozes': 1,
          'breakneck': 1,
          'holdsbarred': 1,
          'inyourface': 1,
          'risktaking': 1,
          'seldom': 1,
          'seen': 1,
          'screen': 1,
          'days': 1,
          'nlike': 1,
          'marginal': 1,
          'motley': 1,
          'postapocalyptic': 1,
          'youths': 1,
          'danny': 1,
          'tries': 1,
          'trainspotting': 1,
          'veers': 1,
          'edge': 1,
          'utter': 1,
          'mayhem': 1,
          'ultimately': 1,
          'retains': 1,
          'footing': 1,
          'control': 1,
          'result': 1,
          'movie': 1,
          'delightful': 1,
          'example': 1,
          'losers': 1,
          'loser': 1,
          'names': 1,
          'mark': 1,
          'renton': 1,
          'mcgregor': 1,
          'spud': 1,
          'bremner': 1,
          'sick': 1,
          'boy': 1,
          'jonny': 1,
          'lee': 1,
          'miller': 1,
          'tommy': 1,
          'kevin': 1,
          'mckidd': 1,
          'begbie': 1,
          'robert': 1,
          'carlyle': 1,
          'aimless': 1,
          'restless': 1,
          'routine': 1,
          'consists': 1,
          'drunk': 1,
          'pub': 1,
          'grooving': 1,
          'techno': 1,
          'glamrock': 1,
          'disco': 1,
          'shots': 1,
          'arm': 1,
          'den': 1,
          'procuring': 1,
          'cash': 1,
          'variety': 1,
          'methods': 1,
          'ingenious': 1,
          'others': 1,
          'plainly': 1,
          'dumb': 1,
          'desperate': 1,
          'nnot': 1,
          'part': 1,
          'daily': 1,
          'obtained': 1,
          'sex': 1,
          'bonus': 1,
          'nyou': 1,
          'foulmouthed': 1,
          'dirty': 1,
          'pathetic': 1,
          'ugly': 1,
          'perhaps': 1,
          'definitely': 1,
          'interesting': 1,
          'irvin': 1,
          'welshs': 1,
          'cult': 1,
          'novel': 1,
          'name': 1,
          'nwhat': 1,
          'makes': 1,
          'completely': 1,
          'different': 1,
          'experience': 1,
          'uses': 1,
          'every': 1,
          'tool': 1,
          'disposal': 1,
          'make': 1,
          'filmic': 1,
          'synchronous': 1,
          'none': 1,
          'first': 1,
          'things': 1,
          'youll': 1,
          'notice': 1,
          'seems': 1,
          'dart': 1,
          'restlessly': 1,
          'nitll': 1,
          'truck': 1,
          'pimple': 1,
          'soon': 1,
          'dolly': 1,
          'establishing': 1,
          'ndistracted': 1,
          'curious': 1,
          'itll': 1,
          'maintain': 1,
          'eyelevel': 1,
          'drop': 1,
          'right': 1,
          'ground': 1,
          'show': 1,
          'dopedouteyeview': 1,
          'nyoull': 1,
          'even': 1,
          'peering': 1,
          'faces': 1,
          'smeared': 1,
          'wideangle': 1,
          'lens': 1,
          'nthis': 1,
          'another': 1,
          'one': 1,
          'guys': 1,
          'ntiptoeing': 1,
          'indistinguishable': 1,
          'line': 1,
          'fantasy': 1,
          'reality': 1,
          'employs': 1,
          'healthy': 1,
          'surrealism': 1,
          'get': 1,
          'daydream': 1,
          'bored': 1,
          'deprived': 1,
          'heroin': 1,
          'fix': 1,
          'nightmares': 1,
          'ni': 1,
          'dont': 1,
          'want': 1,
          'give': 1,
          'much': 1,
          'away': 1,
          'cross': 1,
          'chuckie': 1,
          'childs': 1,
          'play': 1,
          'wacky': 1,
          'fantasies': 1,
          'heavenly': 1,
          'creatures': 1,
          'might': 1,
          'idea': 1,
          'fun': 1,
          'pantswetting': 1,
          'scary': 1,
          'alternate': 1,
          'state': 1,
          'consciouness': 1,
          'nthat': 1,
          'said': 1,
          'good': 1,
          'share': 1,
          'drugs': 1,
          'consumed': 1,
          'vomitted': 1,
          'defecated': 1,
          'pissed': 1,
          'exchanged': 1,
          'bought': 1,
          'sold': 1,
          'injected': 1,
          'smuggled': 1,
          'enjoyed': 1,
          'regretted': 1,
          'nif': 1,
          'isnt': 1,
          'cup': 1,
          'tea': 1,
          'nobody': 1,
          'forced': 1,
          'see': 1,
          'nstay': 1,
          'home': 1,
          'rent': 1,
          'close': 1,
          'personal': 1,
          'nand': 1,
          'whats': 1,
          'buzz': 1,
          'without': 1,
          'tunes': 1,
          'nfrom': 1,
          'pulp': 1,
          'iggy': 1,
          'pop': 1,
          'yes': 1,
          'hes': 1,
          'still': 1,
          'alive': 1,
          'aural': 1,
          'landscape': 1,
          'engaging': 1,
          'visual': 1,
          'permeating': 1,
          'ngood': 1,
          'bad': 1,
          'vibrations': 1,
          'tangle': 1,
          'like': 1,
          'conflicting': 1,
          'desires': 1,
          'values': 1,
          'nevery': 1,
          'comes': 1,
          'along': 1,
          'energetic': 1,
          'matches': 1,
          'intensity': 1,
          'hopes': 1,
          'ntrainspotting': 1,
          'shooting': 1,
          'star': 1,
          'burns': 1,
          'sky': 1,
          'littered': 1,
          'static': 1,
          'constellations': 1,
          'ndom': 1,
          'parttime': 1,
          'filmmaker': 1,
          'graduated': 1,
          'northwestern': 1,
          'universitys': 1,
          'radiotvfilm': 1,
          'programme': 1,
          'long': 1,
          'ago': 1,
          'laboured': 1,
          'various': 1,
          'music': 1,
          'videos': 1,
          'films': 1,
          'campus': 1,
          'chicago': 1,
          'nnowhere': 1,
          'town': 1,
          '26min': 1,
          'codirected': 1,
          'coproduced': 1,
          'recently': 1,
          'scooped': 1,
          'grand': 1,
          'jury': 1,
          'prize': 1,
          'charleston': 1,
          'international': 1,
          'festival': 1,
          'best': 1,
          'student': 1,
          'production': 1,
          'currently': 1,
          'finishing': 1,
          'couple': 1,
          'small': 1,
          'projects': 1,
          'nwith': 1,
          'minute': 1,
          'amounts': 1,
          'leisure': 1,
          'time': 1,
          'dom': 1,
          'nell': 1,
          'impersonations': 1,
          'npos': 1}),
 Counter({'slavery': 7,
          'amistad': 6,
          'africans': 5,
          'slave': 5,
          'film': 5,
          'case': 5,
          'story': 4,
          'several': 4,
          'politicians': 4,
          'one': 4,
          'nthe': 4,
          'court': 4,
          'legal': 3,
          'dispute': 3,
          'president': 3,
          'adams': 3,
          'n': 3,
          'little': 3,
          'much': 3,
          'movie': 3,
          'scene': 3,
          'probably': 3,
          'time': 3,
          'enough': 3,
          'almost': 3,
          'spielbergs': 2,
          'ship': 2,
          'different': 2,
          'issue': 2,
          'evils': 2,
          'van': 2,
          'buren': 2,
          'john': 2,
          'quincy': 2,
          'importantly': 2,
          'examines': 2,
          'forced': 2,
          'done': 2,
          'native': 2,
          'culture': 2,
          'africa': 2,
          'three': 2,
          'could': 2,
          'get': 2,
          'movies': 2,
          'instead': 2,
          'images': 2,
          'fact': 2,
          'disturbing': 2,
          'involved': 2,
          'spielberg': 2,
          'franzoni': 2,
          'still': 2,
          'comes': 2,
          'like': 2,
          'way': 2,
          'supreme': 2,
          'cinque': 2,
          'baldwin': 2,
          'try': 2,
          'four': 2,
          'cant': 2,
          'handle': 2,
          'issues': 2,
          'somehow': 2,
          'every': 2,
          'speech': 2,
          'thus': 2,
          'steven': 1,
          'based': 1,
          'true': 1,
          'group': 1,
          'revolted': 1,
          'board': 1,
          'captured': 1,
          'taken': 1,
          'america': 1,
          'ensued': 1,
          'owned': 1,
          'concerned': 1,
          'aspects': 1,
          'nfirst': 1,
          'addresses': 1,
          'inherent': 1,
          'nsecond': 1,
          'deals': 1,
          'historical': 1,
          'involvement': 1,
          'american': 1,
          'including': 1,
          'martin': 1,
          'former': 1,
          'anthony': 1,
          'hopkins': 1,
          'nlast': 1,
          'cultural': 1,
          'confusion': 1,
          'experienced': 1,
          'damage': 1,
          'trade': 1,
          'succeeds': 1,
          'least': 1,
          'partly': 1,
          'elements': 1,
          'ni': 1,
          'admit': 1,
          'skeptical': 1,
          'really': 1,
          'another': 1,
          'antislavery': 1,
          'nhaving': 1,
          'seen': 1,
          'documentaries': 1,
          'doubted': 1,
          'didnt': 1,
          'already': 1,
          'know': 1,
          'nfortunately': 1,
          'turned': 1,
          'wrong': 1,
          'nfor': 1,
          'thing': 1,
          'camera': 1,
          'never': 1,
          'gets': 1,
          'near': 1,
          'southern': 1,
          'plantation': 1,
          'sticks': 1,
          'ships': 1,
          'traders': 1,
          'operations': 1,
          'dealing': 1,
          'part': 1,
          'history': 1,
          'beginning': 1,
          'nand': 1,
          'harrowing': 1,
          'usually': 1,
          'see': 1,
          'none': 1,
          'middle': 1,
          'crew': 1,
          'dispose': 1,
          'excess': 1,
          'slaves': 1,
          'throwing': 1,
          'overboard': 1,
          'drown': 1,
          'year': 1,
          'nspielberg': 1,
          'digs': 1,
          'farther': 1,
          'expecting': 1,
          'would': 1,
          'goes': 1,
          'far': 1,
          'director': 1,
          'without': 1,
          'getting': 1,
          'nc17': 1,
          'rating': 1,
          'stark': 1,
          'suffering': 1,
          'contrasted': 1,
          'sharply': 1,
          'shallow': 1,
          'luxury': 1,
          'queen': 1,
          'isabella': 1,
          'spain': 1,
          'whose': 1,
          'naval': 1,
          'officers': 1,
          'small': 1,
          'child': 1,
          'nexposing': 1,
          'narrowminded': 1,
          'opportunistic': 1,
          'hypocrites': 1,
          'fairly': 1,
          'standard': 1,
          'stuff': 1,
          'course': 1,
          'writer': 1,
          'david': 1,
          'well': 1,
          'something': 1,
          'simple': 1,
          'exercise': 1,
          'audience': 1,
          'manipulation': 1,
          'also': 1,
          'contentious': 1,
          'nature': 1,
          'clearly': 1,
          'disapproved': 1,
          'practice': 1,
          'reluctant': 1,
          'appealed': 1,
          'biggest': 1,
          'success': 1,
          'characterization': 1,
          'djimon': 1,
          'hounsou': 1,
          'emerges': 1,
          'de': 1,
          'facto': 1,
          'leader': 1,
          'kidnapped': 1,
          'struggles': 1,
          'communicate': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'lawyer': 1,
          'represents': 1,
          'nthrough': 1,
          'given': 1,
          'window': 1,
          'displaced': 1,
          'explain': 1,
          'prison': 1,
          'guards': 1,
          'need': 1,
          'proper': 1,
          'burial': 1,
          'dead': 1,
          'tribe': 1,
          'member': 1,
          'find': 1,
          'illustrated': 1,
          'version': 1,
          'bible': 1,
          'understand': 1,
          'jesus': 1,
          'christ': 1,
          'ncinque': 1,
          'sees': 1,
          'clarity': 1,
          'simplicity': 1,
          'contrasts': 1,
          'technicalities': 1,
          'mechanics': 1,
          'process': 1,
          'political': 1,
          'squabbles': 1,
          'kind': 1,
          'country': 1,
          'laws': 1,
          'work': 1,
          'asks': 1,
          'bewilderment': 1,
          'learns': 1,
          'must': 1,
          'retried': 1,
          'nspielbergs': 1,
          'direction': 1,
          'tends': 1,
          'bit': 1,
          'towards': 1,
          'manipulative': 1,
          'side': 1,
          'times': 1,
          'adds': 1,
          'heavy': 1,
          'orchestral': 1,
          'swell': 1,
          'cinques': 1,
          'angry': 1,
          'outburst': 1,
          'room': 1,
          'nstill': 1,
          'isnt': 1,
          'serious': 1,
          'problem': 1,
          'main': 1,
          'flaw': 1,
          'prevents': 1,
          'earning': 1,
          'stars': 1,
          'seems': 1,
          'quite': 1,
          'settle': 1,
          'addressing': 1,
          'separately': 1,
          'simply': 1,
          'editing': 1,
          'results': 1,
          'nthis': 1,
          'summers': 1,
          'contact': 1,
          'example': 1,
          'dealt': 1,
          'present': 1,
          'resolved': 1,
          'tries': 1,
          'pull': 1,
          'together': 1,
          'end': 1,
          'feels': 1,
          'lasts': 1,
          'fifteen': 1,
          'minutes': 1,
          'wears': 1,
          'welcome': 1,
          'halfway': 1,
          'nperhaps': 1,
          'best': 1,
          'describe': 1,
          'star': 1,
          'films': 1,
          'edited': 1,
          'nalmost': 1,
          'individual': 1,
          'works': 1,
          'final': 1,
          'product': 1,
          'lacking': 1,
          'necessary': 1,
          'focus': 1,
          'coherence': 1,
          'less': 1,
          'sum': 1,
          'parts': 1,
          'nhowever': 1,
          'honestly': 1,
          'say': 1,
          'differently': 1,
          'raw': 1,
          'emotional': 1,
          'power': 1,
          'good': 1,
          'recommend': 1,
          'anyone': 1,
          'imagery': 1,
          'npos': 1}),
 Counter({'bubby': 10,
          'nhe': 8,
          'world': 8,
          'nthe': 6,
          'mother': 5,
          'bubbys': 5,
          'boy': 4,
          'becomes': 4,
          'life': 3,
          'apartment': 3,
          'jesus': 3,
          'bad': 3,
          'movie': 3,
          'father': 3,
          'us': 3,
          'nit': 3,
          'heer': 3,
          'reality': 3,
          'film': 3,
          'spent': 2,
          'entire': 2,
          'awful': 2,
          'little': 2,
          'imprisoned': 2,
          'love': 2,
          'fear': 2,
          'mothers': 2,
          'outside': 2,
          'dons': 2,
          'goes': 2,
          'mind': 2,
          'premise': 2,
          'hope': 2,
          'etc': 2,
          'one': 2,
          'appears': 2,
          'rather': 2,
          'point': 2,
          'least': 2,
          'fathers': 2,
          'arrival': 2,
          'nbubby': 2,
          'far': 2,
          'first': 2,
          'thirty': 2,
          'minutes': 2,
          'quite': 2,
          'best': 2,
          'implications': 2,
          'like': 2,
          'scenes': 2,
          'seems': 2,
          'de': 2,
          'never': 2,
          'people': 2,
          'woman': 2,
          'salvation': 2,
          'band': 2,
          'back': 2,
          'rock': 2,
          'group': 2,
          'n': 2,
          'touch': 2,
          'experiences': 2,
          'na': 2,
          'turning': 2,
          'raised': 1,
          'cared': 1,
          'domineering': 1,
          'nshe': 1,
          'inspires': 1,
          'instills': 1,
          'similar': 1,
          'rudimentary': 1,
          'grasp': 1,
          'language': 1,
          'mouthing': 1,
          'monosyllables': 1,
          'repetitions': 1,
          'phrases': 1,
          'taught': 1,
          'fatally': 1,
          'poisonous': 1,
          'gasmask': 1,
          'whenever': 1,
          'door': 1,
          '35yearsold': 1,
          'body': 1,
          'child': 1,
          'spirit': 1,
          'defiantly': 1,
          'original': 1,
          'australian': 1,
          'man': 1,
          'called': 1,
          'nicholas': 1,
          'day': 1,
          'ralph': 1,
          'cotterill': 1,
          'nhis': 1,
          'shabby': 1,
          'downatheels': 1,
          'priest': 1,
          'permanently': 1,
          'misplaced': 1,
          'religion': 1,
          'nunsurprisingly': 1,
          'thrilled': 1,
          'way': 1,
          'turned': 1,
          'however': 1,
          'pleased': 1,
          'renewing': 1,
          'acquaintance': 1,
          'claire': 1,
          'benito': 1,
          'ample': 1,
          'breasts': 1,
          'nsoon': 1,
          'copulating': 1,
          'dingy': 1,
          'couch': 1,
          'crouches': 1,
          'confused': 1,
          'next': 1,
          'room': 1,
          'acutely': 1,
          'aware': 1,
          'devoted': 1,
          'attention': 1,
          'new': 1,
          'interest': 1,
          'nbubbys': 1,
          'relationship': 1,
          'may': 1,
          'warped': 1,
          'stable': 1,
          'disturbs': 1,
          'precarious': 1,
          'balance': 1,
          'causing': 1,
          'oedipal': 1,
          'conflict': 1,
          'endsfreud': 1,
          'would': 1,
          'pleasedin': 1,
          'violence': 1,
          'result': 1,
          'freedom': 1,
          'intuits': 1,
          'air': 1,
          'breathable': 1,
          'leaves': 1,
          'past': 1,
          'behind': 1,
          'nso': 1,
          'good': 1,
          'bring': 1,
          'brilliant': 1,
          'stays': 1,
          'within': 1,
          'constraints': 1,
          'hermetic': 1,
          'tworoom': 1,
          'universe': 1,
          'follows': 1,
          'unrelentingly': 1,
          'used': 1,
          'sex': 1,
          'unwittingly': 1,
          'suffocates': 1,
          'pet': 1,
          'cat': 1,
          'cellophane': 1,
          'terrifed': 1,
          'notion': 1,
          'beat': 1,
          'senseless': 1,
          'sins': 1,
          'grim': 1,
          'savage': 1,
          'appalling': 1,
          'also': 1,
          'strangely': 1,
          'tenderde': 1,
          'imagined': 1,
          'bizarre': 1,
          'exaggerate': 1,
          'comic': 1,
          'grotesqe': 1,
          'purposes': 1,
          'simply': 1,
          'empathizes': 1,
          'observes': 1,
          'might': 1,
          'intensity': 1,
          'opening': 1,
          'minimalist': 1,
          'miseenscene': 1,
          'immerses': 1,
          'claustrophobic': 1,
          'environment': 1,
          'decayed': 1,
          'stratum': 1,
          'owes': 1,
          'much': 1,
          'david': 1,
          'lynchs': 1,
          'eraserhead': 1,
          'ambient': 1,
          'industrial': 1,
          'white': 1,
          'noise': 1,
          'soundtrack': 1,
          'nfor': 1,
          'maintains': 1,
          'feel': 1,
          'mood': 1,
          'seem': 1,
          'removed': 1,
          'nthen': 1,
          'lets': 1,
          'brings': 1,
          'contact': 1,
          'recovers': 1,
          'nour': 1,
          'unlikely': 1,
          'hero': 1,
          'finds': 1,
          'port': 1,
          'adelaide': 1,
          'wanders': 1,
          'streets': 1,
          'meets': 1,
          'suffers': 1,
          'learns': 1,
          'survives': 1,
          'seduced': 1,
          'young': 1,
          'army': 1,
          'antisocial': 1,
          'halfwit': 1,
          'sense': 1,
          'hygiene': 1,
          'manages': 1,
          'get': 1,
          'laid': 1,
          'mere': 1,
          'hours': 1,
          'escape': 1,
          'sort': 1,
          'question': 1,
          'encourages': 1,
          'wisely': 1,
          'given': 1,
          'free': 1,
          'pizza': 1,
          'sympathetic': 1,
          'waitress': 1,
          'insults': 1,
          'traffic': 1,
          'cop': 1,
          'punched': 1,
          'stomach': 1,
          'shares': 1,
          'beers': 1,
          'truck': 1,
          'raped': 1,
          'translator': 1,
          'mentally': 1,
          'handicapped': 1,
          'whose': 1,
          'speech': 1,
          'impaired': 1,
          'beyond': 1,
          'comprehension': 1,
          'loved': 1,
          'motherly': 1,
          'largebreasted': 1,
          'nurse': 1,
          'carmel': 1,
          'johnson': 1,
          'turns': 1,
          'inventive': 1,
          'silly': 1,
          'tasteless': 1,
          'endearing': 1,
          'sometimes': 1,
          'things': 1,
          'nde': 1,
          'sure': 1,
          'interface': 1,
          'real': 1,
          'tone': 1,
          'shifts': 1,
          'uneasily': 1,
          'fable': 1,
          'realism': 1,
          'satire': 1,
          'try': 1,
          'base': 1,
          'believable': 1,
          'version': 1,
          'weakest': 1,
          'understood': 1,
          'kind': 1,
          'parable': 1,
          'indeed': 1,
          'religious': 1,
          'foregrounded': 1,
          'icons': 1,
          'cross': 1,
          'hang': 1,
          'walls': 1,
          'priests': 1,
          'collar': 1,
          'stolen': 1,
          'church': 1,
          'organplaying': 1,
          'atheist': 1,
          'lectures': 1,
          'necessity': 1,
          'unbelief': 1,
          'redeems': 1,
          'named': 1,
          'angel': 1,
          'manifold': 1,
          'stresses': 1,
          'shatter': 1,
          'fragment': 1,
          'psychosis': 1,
          'accomodates': 1,
          'heals': 1,
          'nalthough': 1,
          'heers': 1,
          'times': 1,
          'overbearing': 1,
          'touching': 1,
          'seemd': 1,
          'harsh': 1,
          'lesson': 1,
          'damaging': 1,
          'effects': 1,
          'social': 1,
          'construction': 1,
          'humanist': 1,
          'tale': 1,
          'improbable': 1,
          'hapless': 1,
          'write': 1,
          'song': 1,
          'sing': 1,
          'give': 1,
          'gift': 1,
          'community': 1,
          'returns': 1,
          'favour': 1,
          'steps': 1,
          'stage': 1,
          'night': 1,
          'frontman': 1,
          'fragmented': 1,
          'impressions': 1,
          'performance': 1,
          'art': 1,
          'popular': 1,
          'draw': 1,
          'ninnocence': 1,
          'triumphs': 1,
          'holy': 1,
          'fool': 1,
          'idiot': 1,
          'savant': 1,
          'graces': 1,
          'wisdom': 1,
          'nits': 1,
          'strange': 1,
          'turn': 1,
          'events': 1,
          'shouldnt': 1,
          'surprised': 1,
          'aint': 1,
          'movies': 1,
          'npos': 1}),
 Counter({'film': 8,
          'dance': 7,
          'movie': 5,
          'shall': 3,
          'nthe': 3,
          'lessons': 3,
          'meet': 3,
          'one': 3,
          'nits': 3,
          'funny': 2,
          'laughs': 2,
          'wonderful': 2,
          'appeal': 2,
          'story': 2,
          'na': 2,
          'culture': 2,
          'ballroom': 2,
          'rich': 2,
          'leave': 2,
          'see': 2,
          'life': 2,
          'nafter': 2,
          'studio': 2,
          'characters': 2,
          'without': 2,
          'much': 2,
          'time': 2,
          'theater': 2,
          'nature': 2,
          'warm': 2,
          'foreign': 1,
          'language': 1,
          'known': 1,
          'names': 1,
          'select': 1,
          'number': 1,
          'theaters': 1,
          'showing': 1,
          'wont': 1,
          'seen': 1,
          'many': 1,
          'people': 1,
          'nand': 1,
          'thats': 1,
          'shame': 1,
          'enchanting': 1,
          'goofy': 1,
          'full': 1,
          'surprises': 1,
          'sequences': 1,
          'surprising': 1,
          'thing': 1,
          'universal': 1,
          'us': 1,
          'version': 1,
          'works': 1,
          'wonder': 1,
          'really': 1,
          'specific': 1,
          'nalthough': 1,
          'narrated': 1,
          'setup': 1,
          'adds': 1,
          'extra': 1,
          'resonance': 1,
          'proceedings': 1,
          'view': 1,
          'japanese': 1,
          'dancing': 1,
          'character': 1,
          'added': 1,
          'layer': 1,
          'isnt': 1,
          'necessary': 1,
          'understand': 1,
          'enjoy': 1,
          'important': 1,
          'unexplained': 1,
          'japanesespecific': 1,
          'reference': 1,
          'may': 1,
          'bit': 1,
          'puzzled': 1,
          '1000': 1,
          'yen': 1,
          'roughly': 1,
          '10': 1,
          'youll': 1,
          'know': 1,
          'middle': 1,
          'aged': 1,
          'company': 1,
          'man': 1,
          'realizes': 1,
          'achieving': 1,
          'goals': 1,
          'set': 1,
          'house': 1,
          'child': 1,
          'good': 1,
          'marriage': 1,
          'still': 1,
          'doesnt': 1,
          'translate': 1,
          'fulfilled': 1,
          'glimpsing': 1,
          'melancholy': 1,
          'beauty': 1,
          'looking': 1,
          'window': 1,
          'train': 1,
          'home': 1,
          'work': 1,
          'sugiyana': 1,
          'koji': 1,
          'yakusho': 1,
          'decides': 1,
          'trepidation': 1,
          'take': 1,
          'order': 1,
          'woman': 1,
          'stirred': 1,
          'something': 1,
          'finding': 1,
          'weekly': 1,
          'fees': 1,
          'private': 1,
          'elegant': 1,
          'beautiful': 1,
          'mai': 1,
          'tamiyo': 1,
          'kusakari': 1,
          'blood': 1,
          'sugiyama': 1,
          'opts': 1,
          'groups': 1,
          'simply': 1,
          'near': 1,
          'nwe': 1,
          'players': 1,
          'gem': 1,
          'reasons': 1,
          'joining': 1,
          'class': 1,
          'nlater': 1,
          'aoki': 1,
          'naoto': 1,
          'takenaka': 1,
          'coworker': 1,
          'weirdo': 1,
          'laugh': 1,
          'riot': 1,
          'highlights': 1,
          'touching': 1,
          'scenes': 1,
          'evolve': 1,
          'goes': 1,
          'along': 1,
          'pleasure': 1,
          'watch': 1,
          'propelled': 1,
          'almost': 1,
          'solely': 1,
          'performances': 1,
          'difficult': 1,
          'explain': 1,
          'charms': 1,
          'revealing': 1,
          'abounds': 1,
          'little': 1,
          'revelations': 1,
          'subtly': 1,
          'shape': 1,
          'end': 1,
          'fuller': 1,
          'understood': 1,
          'movies': 1,
          'french': 1,
          'seem': 1,
          'make': 1,
          'anymore': 1,
          'big': 1,
          'plot': 1,
          'special': 1,
          'effects': 1,
          'gunplay': 1,
          'tragic': 1,
          'consequences': 1,
          'forced': 1,
          'examinations': 1,
          'love': 1,
          'insights': 1,
          'evil': 1,
          'njust': 1,
          'endearing': 1,
          'charm': 1,
          'pants': 1,
          'nwhen': 1,
          'last': 1,
          'left': 1,
          'feeling': 1,
          'fuzzy': 1,
          'inside': 1,
          'n': 1,
          'treacly': 1,
          'aftertaste': 1,
          'npos': 1}),
 Counter({'one': 7,
          'contact': 4,
          'world': 4,
          'foster': 4,
          'film': 4,
          'radio': 4,
          'nthe': 4,
          'scifi': 3,
          'science': 3,
          'fact': 3,
          'faith': 3,
          'communication': 3,
          'intelligent': 3,
          'system': 3,
          'nher': 3,
          'government': 3,
          'allie': 3,
          'find': 3,
          'upon': 3,
          'transport': 3,
          'mcconaughey': 3,
          'first': 2,
          'building': 2,
          'blockbuster': 2,
          'project': 2,
          'nas': 2,
          'turned': 2,
          'questions': 2,
          'god': 2,
          'nshe': 2,
          'search': 2,
          'passion': 2,
          'result': 2,
          'hamradio': 2,
          'na': 2,
          'scene': 2,
          'father': 2,
          'whether': 2,
          'research': 2,
          'seti': 2,
          'hope': 2,
          'would': 2,
          'believers': 2,
          'emission': 2,
          'repeating': 2,
          'situation': 2,
          'within': 2,
          'presidents': 2,
          'spiritual': 2,
          'advisor': 2,
          'point': 2,
          'movie': 2,
          'meeting': 2,
          'worlds': 2,
          'actually': 2,
          'heard': 1,
          'hype': 1,
          'nnow': 1,
          'mind': 1,
          'coupled': 1,
          'knowledge': 1,
          'jodie': 1,
          'fosters': 1,
          'involvement': 1,
          'thought': 1,
          'expectations': 1,
          'completely': 1,
          'nullified': 1,
          'topsyturvy': 1,
          'nrobert': 1,
          'zemeckis': 1,
          'back': 1,
          'euphoria': 1,
          'created': 1,
          'last': 1,
          'forrest': 1,
          'gump': 1,
          'proves': 1,
          'mastery': 1,
          'fusing': 1,
          'tales': 1,
          'adventure': 1,
          'along': 1,
          'endearing': 1,
          'lines': 1,
          'human': 1,
          'spirit': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'definite': 1,
          'difference': 1,
          'nbased': 1,
          'late': 1,
          'carl': 1,
          'sagan': 1,
          'novel': 1,
          'name': 1,
          'story': 1,
          'delves': 1,
          'nallie': 1,
          'astronomer': 1,
          'spends': 1,
          'time': 1,
          'listening': 1,
          'stars': 1,
          'via': 1,
          'ultrahuge': 1,
          'dishes': 1,
          'life': 1,
          'beyond': 1,
          'solar': 1,
          'longdistance': 1,
          'younger': 1,
          'days': 1,
          'spent': 1,
          'avidly': 1,
          'front': 1,
          'hobbyist': 1,
          'device': 1,
          'latefather': 1,
          'bought': 1,
          'particularly': 1,
          'strengthens': 1,
          'audiences': 1,
          'view': 1,
          'asked': 1,
          'could': 1,
          'latemother': 1,
          'replied': 1,
          'even': 1,
          'powerful': 1,
          'nallies': 1,
          'based': 1,
          'extra': 1,
          'terrestrial': 1,
          'intelligence': 1,
          'listens': 1,
          'emissions': 1,
          'galaxies': 1,
          'finding': 1,
          'suggest': 1,
          'manipulation': 1,
          'work': 1,
          'never': 1,
          'scrutiny': 1,
          'us': 1,
          'considers': 1,
          'waste': 1,
          'taxpayers': 1,
          'money': 1,
          'politically': 1,
          'unviable': 1,
          'supervisor': 1,
          'tom': 1,
          'skerritt': 1,
          'pulls': 1,
          'plug': 1,
          'nundaunted': 1,
          'managed': 1,
          'gather': 1,
          'loyal': 1,
          'group': 1,
          'eventually': 1,
          'found': 1,
          'funding': 1,
          'large': 1,
          'private': 1,
          'corporation': 1,
          'following': 1,
          'months': 1,
          'treacherous': 1,
          'hopes': 1,
          'contantly': 1,
          'pressured': 1,
          'changed': 1,
          'day': 1,
          'caught': 1,
          'seemingly': 1,
          'soundwave': 1,
          'news': 1,
          'attracted': 1,
          'hordes': 1,
          'alien': 1,
          'cultist': 1,
          'media': 1,
          'course': 1,
          'became': 1,
          'intense': 1,
          'discovery': 1,
          'pictorial': 1,
          'plans': 1,
          'form': 1,
          'embedded': 1,
          'sound': 1,
          'join': 1,
          'forces': 1,
          'build': 1,
          'desperate': 1,
          'go': 1,
          'enrols': 1,
          'among': 1,
          'hopefuls': 1,
          'represent': 1,
          'ready': 1,
          'operation': 1,
          'eligibility': 1,
          'spot': 1,
          'failed': 1,
          'questioned': 1,
          'beliefs': 1,
          'existence': 1,
          'atheist': 1,
          'belief': 1,
          'refuses': 1,
          'budge': 1,
          'questioning': 1,
          'nat': 1,
          'plot': 1,
          'thickens': 1,
          'considerably': 1,
          'romantically': 1,
          'involved': 1,
          'strong': 1,
          'propelled': 1,
          'depth': 1,
          'main': 1,
          'characters': 1,
          'played': 1,
          'nfrom': 1,
          'obvious': 1,
          'two': 1,
          'sort': 1,
          'kindred': 1,
          'spirits': 1,
          'apart': 1,
          'almost': 1,
          'aspects': 1,
          'person': 1,
          'drawn': 1,
          'facts': 1,
          'believes': 1,
          'power': 1,
          'unseen': 1,
          'added': 1,
          'put': 1,
          'makes': 1,
          'entire': 1,
          'storytelling': 1,
          'process': 1,
          'near': 1,
          'flawless': 1,
          'nmany': 1,
          'people': 1,
          'read': 1,
          'synopsis': 1,
          'tad': 1,
          'ridiculous': 1,
          'immersing': 1,
          'gives': 1,
          'entirely': 1,
          'different': 1,
          'perspective': 1,
          'free': 1,
          'bias': 1,
          'preconceptions': 1,
          'nzemeckis': 1,
          'team': 1,
          'screen': 1,
          'writers': 1,
          'done': 1,
          'remarkable': 1,
          'job': 1,
          'telling': 1,
          'tale': 1,
          'ncontact': 1,
          'works': 1,
          'delving': 1,
          'controversy': 1,
          'rather': 1,
          'touches': 1,
          'thinking': 1,
          'audience': 1,
          'urging': 1,
          'ponder': 1,
          'raised': 1,
          'concerning': 1,
          'compromise': 1,
          'ni': 1,
          'consider': 1,
          'mustsees': 1,
          'year': 1,
          'npos': 1}),
 Counter({'disney': 12,
          'mulan': 8,
          'fa': 6,
          'may': 6,
          'voice': 6,
          'animated': 5,
          'one': 5,
          'see': 4,
          'movie': 4,
          'little': 4,
          'nthe': 4,
          'film': 4,
          'family': 4,
          'army': 4,
          'provides': 4,
          'grandmother': 4,
          'success': 3,
          'get': 3,
          'next': 3,
          'plot': 3,
          'feature': 3,
          'father': 3,
          'chinese': 3,
          'nmulan': 3,
          'time': 3,
          'fathers': 3,
          'also': 3,
          'beast': 3,
          'nin': 3,
          'love': 2,
          'serve': 2,
          'long': 2,
          'nyou': 2,
          'features': 2,
          'two': 2,
          'theme': 2,
          'characters': 2,
          'ancient': 2,
          'might': 2,
          'children': 2,
          'disneys': 2,
          'latest': 2,
          'chinas': 2,
          'fight': 2,
          'nwhen': 2,
          'zhou': 2,
          'soontek': 2,
          'oh': 2,
          'battle': 2,
          'tale': 2,
          'scene': 2,
          'matchmaker': 2,
          'honor': 2,
          'place': 2,
          'nas': 2,
          'songs': 2,
          'throughout': 2,
          'much': 2,
          'recognition': 2,
          'singing': 2,
          'shang': 2,
          'although': 2,
          'better': 2,
          'big': 2,
          'nthere': 2,
          'significantly': 2,
          'nit': 2,
          'history': 2,
          'animators': 2,
          'chosen': 2,
          'many': 2,
          'beauty': 2,
          'miss': 2,
          'murphy': 2,
          'ni': 2,
          'guess': 2,
          'fas': 2,
          'natasha': 2,
          'actors': 2,
          'james': 2,
          'youve': 1,
          'got': 1,
          'nno': 1,
          'matter': 1,
          'guaranteed': 1,
          'nkids': 1,
          'go': 1,
          'nthen': 1,
          'toys': 1,
          'noh': 1,
          'video': 1,
          'came': 1,
          'ngot': 1,
          'buy': 1,
          'risk': 1,
          'billys': 1,
          'temper': 1,
          'tantrums': 1,
          'month': 1,
          'nall': 1,
          'culminates': 1,
          'childhood': 1,
          'equivalent': 1,
          'pilgrimage': 1,
          'mecca': 1,
          'visit': 1,
          'magic': 1,
          'kingdom': 1,
          'nstay': 1,
          'disneyland': 1,
          'hotel': 1,
          'nbuy': 1,
          'tshirt': 1,
          'neat': 1,
          'ice': 1,
          'cream': 1,
          'mickey': 1,
          'mouse': 1,
          'stick': 1,
          'nits': 1,
          'vertical': 1,
          'horizontal': 1,
          'monopoly': 1,
          'think': 1,
          'ndale': 1,
          'carnegie': 1,
          'good': 1,
          'nwhats': 1,
          'amazing': 1,
          'spite': 1,
          'severe': 1,
          'lack': 1,
          'originality': 1,
          'days': 1,
          'components': 1,
          'changes': 1,
          'new': 1,
          'mold': 1,
          'fable': 1,
          'dropped': 1,
          'try': 1,
          'rise': 1,
          'previous': 1,
          'nearly': 1,
          'always': 1,
          'destined': 1,
          'nhowever': 1,
          'generally': 1,
          'given': 1,
          'far': 1,
          'boxoffice': 1,
          'receipts': 1,
          'merchandising': 1,
          'dollars': 1,
          'glimmers': 1,
          'eyes': 1,
          'critically': 1,
          'varied': 1,
          'anything': 1,
          'else': 1,
          'hollywood': 1,
          'offer': 1,
          'nluckily': 1,
          'offering': 1,
          'manages': 1,
          'engaging': 1,
          'refreshing': 1,
          'even': 1,
          'rife': 1,
          'formula': 1,
          'starts': 1,
          'invasion': 1,
          'china': 1,
          'huns': 1,
          'led': 1,
          'imposing': 1,
          'shanyu': 1,
          'miguel': 1,
          'ferrer': 1,
          'nsoon': 1,
          'emperor': 1,
          'pat': 1,
          'morita': 1,
          'mobilizes': 1,
          'armies': 1,
          'decrees': 1,
          'male': 1,
          'country': 1,
          'shall': 1,
          'defense': 1,
          'served': 1,
          'notice': 1,
          'elderly': 1,
          'must': 1,
          'answer': 1,
          'call': 1,
          'males': 1,
          'household': 1,
          'nfearing': 1,
          'surely': 1,
          'killed': 1,
          'mingna': 1,
          'wen': 1,
          'disguises': 1,
          'man': 1,
          'sneaks': 1,
          'royal': 1,
          'orders': 1,
          'join': 1,
          'based': 1,
          'epic': 1,
          'poem': 1,
          'classic': 1,
          'triumph': 1,
          'ugly': 1,
          'duckling': 1,
          'disgrace': 1,
          'loving': 1,
          'difficult': 1,
          'fitting': 1,
          'traditional': 1,
          'womans': 1,
          'role': 1,
          'amusing': 1,
          'attempts': 1,
          'assess': 1,
          'value': 1,
          'potential': 1,
          'husband': 1,
          'grace': 1,
          'strong': 1,
          'points': 1,
          'nvery': 1,
          'early': 1,
          'presented': 1,
          'high': 1,
          'importance': 1,
          'bringing': 1,
          'ones': 1,
          'botching': 1,
          'chance': 1,
          'gaining': 1,
          'favor': 1,
          'fails': 1,
          'task': 1,
          'nby': 1,
          'leaving': 1,
          'home': 1,
          'spare': 1,
          'life': 1,
          'bring': 1,
          'case': 1,
          'musicals': 1,
          'first': 1,
          'rate': 1,
          'pervasive': 1,
          'nim': 1,
          'sure': 1,
          'airplay': 1,
          'least': 1,
          'doubt': 1,
          'receive': 1,
          'come': 1,
          'oscar': 1,
          'nboth': 1,
          'lea': 1,
          'salonga': 1,
          'donny': 1,
          'osmond': 1,
          'sings': 1,
          'captain': 1,
          'mulans': 1,
          'unit': 1,
          'obligatory': 1,
          'interest': 1,
          'competent': 1,
          'salongas': 1,
          'translates': 1,
          'animation': 1,
          'hear': 1,
          'understand': 1,
          'ninterestingly': 1,
          'musical': 1,
          'numbers': 1,
          'often': 1,
          'done': 1,
          'flourishes': 1,
          'surprisingly': 1,
          'muted': 1,
          'number': 1,
          'customary': 1,
          'second': 1,
          'third': 1,
          'song': 1,
          'detract': 1,
          'rest': 1,
          'however': 1,
          'expectation': 1,
          'built': 1,
          'formulaic': 1,
          'viewers': 1,
          'feel': 1,
          'something': 1,
          'missing': 1,
          'nartistically': 1,
          'adopt': 1,
          'subdued': 1,
          'pastels': 1,
          'artwork': 1,
          'live': 1,
          'vibrance': 1,
          'associated': 1,
          'works': 1,
          'helps': 1,
          'contribute': 1,
          'authentic': 1,
          'therefore': 1,
          'credible': 1,
          'nature': 1,
          'otherwise': 1,
          'seen': 1,
          'typically': 1,
          'disneyfied': 1,
          'ethnic': 1,
          'couple': 1,
          'visually': 1,
          'standout': 1,
          'scenes': 1,
          'involving': 1,
          'charge': 1,
          'shanyus': 1,
          'hun': 1,
          'utilizes': 1,
          'computerenhanced': 1,
          'imagery': 1,
          'employed': 1,
          'since': 1,
          'chandelier': 1,
          'worth': 1,
          'mentioning': 1,
          'quick': 1,
          'resolves': 1,
          'take': 1,
          'dons': 1,
          'old': 1,
          'armor': 1,
          'unsheathes': 1,
          'sword': 1,
          'reflection': 1,
          'polished': 1,
          'metal': 1,
          'left': 1,
          'thinking': 1,
          'really': 1,
          'cool': 1,
          'na': 1,
          'wonderful': 1,
          'range': 1,
          'performances': 1,
          'delight': 1,
          'audience': 1,
          'varying': 1,
          'straight': 1,
          'comical': 1,
          'harvey': 1,
          'fierstein': 1,
          'yao': 1,
          'gruff': 1,
          'pugilistic': 1,
          'member': 1,
          'shangs': 1,
          'conscripted': 1,
          'neven': 1,
          'outrageous': 1,
          'eddie': 1,
          'mushu': 1,
          'diminutive': 1,
          'guardian': 1,
          'dragon': 1,
          'sent': 1,
          'look': 1,
          'nalthough': 1,
          'obvious': 1,
          'attempt': 1,
          'relive': 1,
          'chemistry': 1,
          'brought': 1,
          'forth': 1,
          'robin': 1,
          'williams': 1,
          'aladdin': 1,
          'nevertheless': 1,
          'distinguishes': 1,
          'winning': 1,
          'performance': 1,
          'found': 1,
          'choice': 1,
          'b': 1,
          'nwong': 1,
          'strange': 1,
          'remember': 1,
          'martin': 1,
          'shorts': 1,
          'wedding': 1,
          'planner': 1,
          'assistant': 1,
          'bride': 1,
          'used': 1,
          'robbie': 1,
          'benson': 1,
          'anythings': 1,
          'possible': 1,
          'event': 1,
          'wong': 1,
          'performs': 1,
          'admirably': 1,
          'well': 1,
          'none': 1,
          'character': 1,
          'significant': 1,
          'amount': 1,
          'humor': 1,
          'nshe': 1,
          'deserves': 1,
          'levity': 1,
          'brings': 1,
          'voiced': 1,
          'remarkable': 1,
          'people': 1,
          'njune': 1,
          'foray': 1,
          'supplies': 1,
          'speaking': 1,
          'venerable': 1,
          'actress': 1,
          'best': 1,
          'known': 1,
          'work': 1,
          'rocky': 1,
          'squirrel': 1,
          'fatale': 1,
          'boris': 1,
          'nmarni': 1,
          'nixon': 1,
          'vocalist': 1,
          'dubbed': 1,
          'voices': 1,
          'anna': 1,
          'king': 1,
          'maria': 1,
          'west': 1,
          'side': 1,
          'story': 1,
          'eliza': 1,
          'fair': 1,
          'lady': 1,
          'nwith': 1,
          'mind': 1,
          'hearing': 1,
          'like': 1,
          'listening': 1,
          'piece': 1,
          'away': 1,
          'eurocentrism': 1,
          'dominated': 1,
          'films': 1,
          'effort': 1,
          'culturally': 1,
          'sensitive': 1,
          'avoid': 1,
          'saigon': 1,
          'type': 1,
          'debacle': 1,
          'wisely': 1,
          'employ': 1,
          'asianamerican': 1,
          'lead': 1,
          'supporting': 1,
          'roles': 1,
          'addition': 1,
          'already': 1,
          'mentioned': 1,
          'cast': 1,
          'includes': 1,
          'ubiquitous': 1,
          'talents': 1,
          'hong': 1,
          'gedde': 1,
          'watanabe': 1,
          'shigeta': 1,
          'george': 1,
          'takei': 1,
          'clyde': 1,
          'kusatsu': 1,
          'wasnt': 1,
          'available': 1,
          'nat': 1,
          'running': 1,
          'slightly': 1,
          'hour': 1,
          'half': 1,
          'moves': 1,
          'quickly': 1,
          'solid': 1,
          'entertainment': 1,
          'happily': 1,
          'adults': 1,
          'nthis': 1,
          'kind': 1,
          'makes': 1,
          'wonder': 1,
          'rather': 1,
          'hope': 1,
          'npos': 1}),
 Counter({'margaret': 7,
          'beau': 6,
          'every': 5,
          'life': 4,
          'nbut': 4,
          'mother': 4,
          'reese': 4,
          'nthe': 4,
          'margarets': 3,
          'get': 3,
          'lot': 3,
          'complicated': 3,
          'son': 3,
          'turns': 3,
          'body': 3,
          'deep': 3,
          'end': 3,
          'swinton': 3,
          'single': 2,
          'nher': 2,
          'talented': 2,
          'darby': 2,
          'words': 2,
          'next': 2,
          'day': 2,
          'alek': 2,
          'makes': 2,
          'plays': 2,
          'peter': 2,
          'hall': 2,
          'role': 2,
          'everything': 2,
          'tilda': 2,
          'ones': 2,
          'fear': 2,
          'three': 1,
          'pre': 1,
          'midteen': 1,
          'children': 1,
          'aging': 1,
          'fatherinlaw': 1,
          'care': 1,
          'forcooking': 1,
          'cleaning': 1,
          'laundry': 1,
          'dropoffs': 1,
          'little': 1,
          'league': 1,
          'practice': 1,
          'pickups': 1,
          'ballet': 1,
          'practicemargaret': 1,
          'halls': 1,
          'rife': 1,
          'complications': 1,
          'nand': 1,
          'naval': 1,
          'officer': 1,
          'husband': 1,
          'stationed': 1,
          'somewhere': 1,
          'north': 1,
          'atlantic': 1,
          'virtually': 1,
          'impossible': 1,
          'reach': 1,
          'telephone': 1,
          'leads': 1,
          'crazed': 1,
          'parent': 1,
          'hectic': 1,
          'world': 1,
          'teenage': 1,
          'trumpet': 1,
          'player': 1,
          'strong': 1,
          'prospects': 1,
          'accepted': 1,
          'wesleyan': 1,
          'universitys': 1,
          'music': 1,
          'program': 1,
          'fallen': 1,
          'wrong': 1,
          'crowd': 1,
          'nhis': 1,
          'drives': 1,
          'idyllic': 1,
          'lakeside': 1,
          'community': 1,
          'tahoe': 1,
          'city': 1,
          'california': 1,
          'sprawling': 1,
          'urban': 1,
          'metropolis': 1,
          'reno': 1,
          'nevada': 1,
          'imposing': 1,
          'concrete': 1,
          'superstructures': 1,
          'seedy': 1,
          'neonlit': 1,
          'nightclubs': 1,
          'confront': 1,
          '30something': 1,
          'man': 1,
          'befriended': 1,
          'n': 1,
          'stay': 1,
          'away': 1,
          'warns': 1,
          'however': 1,
          'appear': 1,
          'fall': 1,
          'deaf': 1,
          'ears': 1,
          'drunk': 1,
          'family': 1,
          'homestead': 1,
          'later': 1,
          'evening': 1,
          'urging': 1,
          'join': 1,
          'boathouse': 1,
          'nthere': 1,
          'advances': 1,
          'pushing': 1,
          'shoving': 1,
          'runs': 1,
          'back': 1,
          'house': 1,
          'passed': 1,
          'startled': 1,
          'crack': 1,
          'wooden': 1,
          'railing': 1,
          'giving': 1,
          'way': 1,
          'breaks': 1,
          'cold': 1,
          'blue': 1,
          'silence': 1,
          'intoxicated': 1,
          'tumbles': 1,
          'sight': 1,
          'morning': 1,
          'walk': 1,
          'discovers': 1,
          'reeses': 1,
          'lifeless': 1,
          'lying': 1,
          'crumpled': 1,
          'shoreline': 1,
          'boat': 1,
          'anchor': 1,
          'impaled': 1,
          'chest': 1,
          'nwith': 1,
          'maternal': 1,
          'instincts': 1,
          'working': 1,
          'overtime': 1,
          'quickly': 1,
          'ferries': 1,
          'lake': 1,
          'weighs': 1,
          'dumps': 1,
          'overboard': 1,
          'nsoon': 1,
          'discovered': 1,
          'snagged': 1,
          'local': 1,
          'fishermans': 1,
          'line': 1,
          'paid': 1,
          'visit': 1,
          'attractiveseeming': 1,
          'blackmailer': 1,
          'red': 1,
          'nova': 1,
          'nalek': 1,
          'spera': 1,
          'threatens': 1,
          'hand': 1,
          'compromising': 1,
          'videotape': 1,
          'police': 1,
          'unless': 1,
          'comes': 1,
          '50': 1,
          '000': 1,
          '4': 1,
          'oclock': 1,
          'something': 1,
          'never': 1,
          'expected': 1,
          'nbased': 1,
          'elisabeth': 1,
          'sanxay': 1,
          'holdings': 1,
          'novel': 1,
          'blank': 1,
          'wall': 1,
          'wellcrafted': 1,
          'thriller': 1,
          'written': 1,
          'directed': 1,
          'scott': 1,
          'mcgehee': 1,
          'david': 1,
          'siegel': 1,
          'suture': 1,
          'nit': 1,
          'particularly': 1,
          'wellknown': 1,
          'castgoran': 1,
          'visnjic': 1,
          'suave': 1,
          'likeability': 1,
          'jonathan': 1,
          'tucker': 1,
          'shines': 1,
          'conflicted': 1,
          'donat': 1,
          'amusing': 1,
          'grandfather': 1,
          'josh': 1,
          'lucas': 1,
          'equally': 1,
          'small': 1,
          'effective': 1,
          'hapless': 1,
          'film': 1,
          'also': 1,
          'lovingly': 1,
          'photographed': 1,
          'giles': 1,
          'nuttgens': 1,
          'features': 1,
          'evocative': 1,
          'score': 1,
          'courtesy': 1,
          'nashel': 1,
          'owes': 1,
          'british': 1,
          'actress': 1,
          'nswinton': 1,
          'whose': 1,
          'palefaced': 1,
          'ethereal': 1,
          'beauty': 1,
          'graced': 1,
          'many': 1,
          'derek': 1,
          'jarmans': 1,
          'films': 1,
          'caravaggio': 1,
          'edward': 1,
          'ii': 1,
          'last': 1,
          'england': 1,
          'like': 1,
          'charlotte': 1,
          'rampling': 1,
          'years': 1,
          'sand': 1,
          'commanding': 1,
          'accomplished': 1,
          'performance': 1,
          'nmargaret': 1,
          'devoted': 1,
          'willing': 1,
          'risk': 1,
          'protect': 1,
          'loves': 1,
          'captures': 1,
          'frustration': 1,
          'subtle': 1,
          'examination': 1,
          'fervent': 1,
          'realization': 1,
          'nervous': 1,
          'oscillation': 1,
          'calls': 1,
          'extremely': 1,
          'wide': 1,
          'range': 1,
          'emotions': 1,
          'none': 1,
          'least': 1,
          'simply': 1,
          'playing': 1,
          'beset': 1,
          'multitude': 1,
          'domestic': 1,
          'responsibilities': 1,
          'nmany': 1,
          'relate': 1,
          'course': 1,
          'murder': 1,
          'coverup': 1,
          'blackmail': 1,
          'losing': 1,
          'gracefully': 1,
          'graciously': 1,
          'resonate': 1,
          'truest': 1,
          'colors': 1,
          'right': 1,
          'isnt': 1,
          'shallow': 1,
          'moment': 1,
          'swintons': 1,
          'canon': 1,
          'npos': 1}),
 Counter({'black': 13,
          'movie': 10,
          'men': 8,
          'good': 6,
          'ni': 6,
          'nits': 4,
          'pretty': 4,
          'probably': 4,
          'comic': 4,
          'event': 3,
          'horizon': 3,
          'remember': 3,
          'scene': 3,
          'nand': 3,
          'comics': 3,
          'know': 3,
          'odonnell': 3,
          'think': 3,
          'hate': 2,
          'cool': 2,
          'trailers': 2,
          'best': 2,
          'yes': 2,
          'would': 2,
          'faceoff': 2,
          'spawn': 2,
          'con': 2,
          'air': 2,
          'main': 2,
          'cant': 2,
          'one': 2,
          'nin': 2,
          'smith': 2,
          'roaches': 2,
          'humor': 2,
          '7th': 2,
          'grade': 2,
          'like': 2,
          'wizard': 2,
          'basically': 2,
          'high': 2,
          'people': 2,
          'book': 2,
          'nthis': 2,
          'said': 2,
          'tommy': 2,
          'lee': 2,
          'jones': 2,
          'chris': 2,
          'person': 2,
          'nmy': 2,
          'big': 2,
          'rather': 2,
          '5': 2,
          'agents': 2,
          'known': 2,
          'theyre': 2,
          'nnot': 2,
          'get': 2,
          'bad': 2,
          'nthe': 2,
          'although': 2,
          'burst': 1,
          'bubble': 1,
          'star': 1,
          'power': 1,
          'mega': 1,
          'bucks': 1,
          'screenwriters': 1,
          'directors': 1,
          'summer': 1,
          'right': 1,
          'split': 1,
          'honors': 1,
          'among': 1,
          'maybe': 1,
          'problem': 1,
          'quickly': 1,
          'forgettable': 1,
          'truly': 1,
          'nfrom': 1,
          'desert': 1,
          'digging': 1,
          'plane': 1,
          'dirt': 1,
          'living': 1,
          'room': 1,
          'hell': 1,
          'conclusion': 1,
          'end': 1,
          'video': 1,
          'crew': 1,
          'taken': 1,
          'hells': 1,
          'forces': 1,
          'dang': 1,
          'nbut': 1,
          'still': 1,
          'recall': 1,
          'squishing': 1,
          'giant': 1,
          'passion': 1,
          'disgusted': 1,
          'see': 1,
          'mimic': 1,
          'something': 1,
          'ill': 1,
          'touch': 1,
          'later': 1,
          'review': 1,
          'nback': 1,
          'sound': 1,
          'funny': 1,
          'first': 1,
          'hearing': 1,
          'back': 1,
          'geek': 1,
          'read': 1,
          'magazines': 1,
          'etc': 1,
          'arent': 1,
          'comicgeeks': 1,
          'car': 1,
          'driver': 1,
          'cars': 1,
          'new': 1,
          'yorker': 1,
          'society': 1,
          'boys': 1,
          'life': 1,
          'boy': 1,
          'scots': 1,
          'nokay': 1,
          'pathetic': 1,
          'nfew': 1,
          'based': 1,
          'obscure': 1,
          'honestpoliticianrare': 1,
          'hard': 1,
          'find': 1,
          'release': 1,
          'highgrossing': 1,
          'batman': 1,
          'forever': 1,
          'considered': 1,
          'roles': 1,
          'nkind': 1,
          'weird': 1,
          'huh': 1,
          'nall': 1,
          'say': 1,
          'thank': 1,
          'god': 1,
          'didnt': 1,
          'cast': 1,
          'planet': 1,
          'thinks': 1,
          'hes': 1,
          'annoying': 1,
          'preppie': 1,
          'little': 1,
          'snot': 1,
          'nsorry': 1,
          'apologies': 1,
          'fans': 1,
          'actually': 1,
          'teacher': 1,
          'collector': 1,
          'set': 1,
          'buy': 1,
          'anticipating': 1,
          'craftily': 1,
          'hit': 1,
          'drive': 1,
          'price': 1,
          'nicely': 1,
          'nhe': 1,
          'decided': 1,
          'sell': 1,
          'innappropriate': 1,
          'nhmm': 1,
          'nso': 1,
          'youre': 1,
          'wondering': 1,
          'ive': 1,
          'wasted': 1,
          'paragraphs': 1,
          'lame': 1,
          'anecdotes': 1,
          'junior': 1,
          'years': 1,
          'ngood': 1,
          'question': 1,
          'nill': 1,
          'move': 1,
          'nas': 1,
          'already': 1,
          'k': 1,
          'j': 1,
          'respectively': 1,
          'belong': 1,
          'top': 1,
          'secret': 1,
          'agency': 1,
          'divison': 1,
          'nickname': 1,
          'mib': 1,
          'nmen': 1,
          'reference': 1,
          'suits': 1,
          'sunglasses': 1,
          'wear': 1,
          'mission': 1,
          'investigate': 1,
          'reports': 1,
          'alien': 1,
          'landings': 1,
          'keep': 1,
          'aliens': 1,
          'control': 1,
          'earth': 1,
          'technical': 1,
          'spoil': 1,
          'plot': 1,
          '6': 1,
          'world': 1,
          'havent': 1,
          'seen': 1,
          'basicallybigroachtypebug': 1,
          'lands': 1,
          'redneck': 1,
          'farmers': 1,
          'yard': 1,
          'inhabits': 1,
          'body': 1,
          'attempts': 1,
          'destroy': 1,
          'entire': 1,
          'universe': 1,
          'eh': 1,
          'idea': 1,
          'typed': 1,
          'nim': 1,
          'even': 1,
          'really': 1,
          'paying': 1,
          'attention': 1,
          'anymore': 1,
          'special': 1,
          'effects': 1,
          'yet': 1,
          'dissapointing': 1,
          'found': 1,
          'headquarters': 1,
          'boring': 1,
          'weapons': 1,
          'noisy': 1,
          'cricket': 1,
          'plain': 1,
          'sucked': 1,
          'matter': 1,
          'anyone': 1,
          'definitely': 1,
          'surprised': 1,
          'tone': 1,
          'shoudlnt': 1,
          'director': 1,
          'barry': 1,
          'sonnenfield': 1,
          'directing': 1,
          'addams': 1,
          'family': 1,
          'movies': 1,
          'comedy': 1,
          'actionscifi': 1,
          'expected': 1,
          'ndont': 1,
          'wrong': 1,
          'gave': 1,
          'nit': 1,
          'mostly': 1,
          'entertaining': 1,
          'throughout': 1,
          'run': 1,
          'ending': 1,
          'theater': 1,
          'amazed': 1,
          'diagnosis': 1,
          'picture': 1,
          'weekend': 1,
          'rental': 1,
          'worth': 1,
          'ticket': 1,
          'nof': 1,
          'course': 1,
          'long': 1,
          'gone': 1,
          'theaters': 1,
          'thats': 1,
          'beside': 1,
          'point': 1,
          'npos': 1}),
 Counter({'along': 3,
          'osmosis': 2,
          'jones': 2,
          'farrelly': 2,
          'frank': 2,
          'hits': 2,
          '10': 2,
          'animation': 2,
          'system': 2,
          'virus': 2,
          'chris': 2,
          'nand': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'warner': 1,
          'bros': 1,
          'nif': 1,
          'brothers': 1,
          'taught': 1,
          'anatomy': 1,
          'physiology': 1,
          'school': 1,
          'one': 1,
          'would': 1,
          'cut': 1,
          'ever': 1,
          'class': 1,
          'nthis': 1,
          'hip': 1,
          'live': 1,
          'actionanimation': 1,
          'story': 1,
          'begins': 1,
          'monkey': 1,
          'snatches': 1,
          'hardboiled': 1,
          'egg': 1,
          'zookeeper': 1,
          'bill': 1,
          'murray': 1,
          'grabs': 1,
          'back': 1,
          'drops': 1,
          'gobbles': 1,
          'contaminated': 1,
          'morsel': 1,
          'explaining': 1,
          'ground': 1,
          'pick': 1,
          'within': 1,
          'seconds': 1,
          'eat': 1,
          'nlike': 1,
          'fantastic': 1,
          'voyage': 1,
          '1966': 1,
          'pseudoscience': 1,
          'takes': 1,
          'bodys': 1,
          'immune': 1,
          'contacts': 1,
          'traffic': 1,
          'control': 1,
          'ingested': 1,
          'digestive': 1,
          'alert': 1,
          'illegal': 1,
          'organisms': 1,
          'neager': 1,
          'right': 1,
          'stomach': 1,
          'evacuation': 1,
          'mistake': 1,
          'made': 1,
          'cocky': 1,
          'clever': 1,
          'courageous': 1,
          'white': 1,
          'blood': 1,
          'cell': 1,
          'rock': 1,
          'declares': 1,
          'crime': 1,
          'scene': 1,
          'teams': 1,
          'conscientious': 1,
          'phi': 1,
          'beta': 1,
          'capsule': 1,
          '12hour': 1,
          'cold': 1,
          'remedy': 1,
          'called': 1,
          'drixenol': 1,
          'david': 1,
          'hyde': 1,
          'pierce': 1,
          'chase': 1,
          'destroy': 1,
          'deadly': 1,
          'red': 1,
          'death': 1,
          'laurence': 1,
          'fishburne': 1,
          'thats': 1,
          'determined': 1,
          'take': 1,
          '48': 1,
          'hours': 1,
          'beating': 1,
          'ebola': 1,
          'e': 1,
          'coli': 1,
          'medical': 1,
          'record': 1,
          'nwatch': 1,
          'mucus': 1,
          'mudslides': 1,
          'chaos': 1,
          'cerebellum': 1,
          'hall': 1,
          'detritus': 1,
          'booger': 1,
          'dam': 1,
          'runny': 1,
          'nose': 1,
          'comic': 1,
          'turns': 1,
          'molly': 1,
          'shannon': 1,
          'elliot': 1,
          'plus': 1,
          'voices': 1,
          'william': 1,
          'shatner': 1,
          'brandy': 1,
          'norwood': 1,
          'npeter': 1,
          'bobby': 1,
          'writer': 1,
          'mark': 1,
          'hyman': 1,
          'directors': 1,
          'piet': 1,
          'kroon': 1,
          'tom': 1,
          'sito': 1,
          'turned': 1,
          'penchant': 1,
          'grossout': 1,
          'comedy': 1,
          'encompassing': 1,
          'flatulence': 1,
          'festering': 1,
          'sores': 1,
          'popping': 1,
          'pimple': 1,
          'without': 1,
          'permit': 1,
          'funny': 1,
          'farrellyfunny': 1,
          'family': 1,
          'film': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          'wildly': 1,
          'imaginative': 1,
          'original': 1,
          'explosive': 1,
          '7': 1,
          'perhaps': 1,
          'theyre': 1,
          'laughing': 1,
          'kids': 1,
          'learn': 1,
          'find': 1,
          'uvula': 1,
          'nuggets': 1,
          'nutrition': 1,
          'hygiene': 1,
          'npos': 1}),
 Counter({'one': 5,
          'film': 4,
          'jeff': 4,
          'films': 3,
          'nbreakdown': 3,
          'nrussell': 3,
          'amy': 3,
          'truck': 3,
          'hollywood': 3,
          'say': 2,
          'never': 2,
          'much': 2,
          'seen': 2,
          'fine': 2,
          'half': 2,
          'would': 2,
          'couple': 2,
          'wife': 2,
          'kathleen': 2,
          'quinlan': 2,
          'new': 2,
          'car': 2,
          'driver': 2,
          'nwalsh': 2,
          'earlier': 2,
          'time': 2,
          'anyone': 2,
          'doesnt': 2,
          'makes': 2,
          'great': 2,
          'believable': 2,
          'must': 1,
          'outset': 1,
          'kurt': 1,
          'russell': 1,
          'fan': 1,
          'nive': 1,
          'silkwood': 1,
          'backdraft': 1,
          'unlawful': 1,
          'entry': 1,
          'gave': 1,
          'adequate': 1,
          'performances': 1,
          'impressed': 1,
          'work': 1,
          'something': 1,
          'surprise': 1,
          'gives': 1,
          'performance': 1,
          'cast': 1,
          'upstaged': 1,
          'action': 1,
          'orchestrated': 1,
          'second': 1,
          'nto': 1,
          'holds': 1,
          'together': 1,
          'completely': 1,
          'true': 1,
          'harm': 1,
          'plays': 1,
          'married': 1,
          'travelling': 1,
          'cross': 1,
          'country': 1,
          'san': 1,
          'diego': 1,
          'start': 1,
          'job': 1,
          'life': 1,
          'nwhile': 1,
          'journeying': 1,
          'desert': 1,
          'breaks': 1,
          'left': 1,
          'helpless': 1,
          'stranded': 1,
          'waves': 1,
          'passing': 1,
          'j': 1,
          'offers': 1,
          'take': 1,
          'nearby': 1,
          'diner': 1,
          'call': 1,
          'tow': 1,
          'nbecause': 1,
          'nasty': 1,
          'incident': 1,
          'ruffians': 1,
          'decides': 1,
          'stay': 1,
          'gets': 1,
          'help': 1,
          'nthat': 1,
          'seems': 1,
          'last': 1,
          'else': 1,
          'sees': 1,
          'compared': 1,
          'several': 1,
          'movies': 1,
          'george': 1,
          'sluizers': 1,
          'vanishing': 1,
          'original': 1,
          'hopefully': 1,
          'appalling': 1,
          'remake': 1,
          'steven': 1,
          'spielbergs': 1,
          'duel': 1,
          'number': 1,
          'hitchcock': 1,
          'nas': 1,
          'breakdown': 1,
          'part': 1,
          'stray': 1,
          'conventional': 1,
          'path': 1,
          'american': 1,
          'actionthriller': 1,
          'njeff': 1,
          'become': 1,
          'guntoting': 1,
          'vigilante': 1,
          'hunt': 1,
          'instead': 1,
          'becomes': 1,
          'scared': 1,
          'confused': 1,
          'everyman': 1,
          'idea': 1,
          'hell': 1,
          'going': 1,
          'nwhen': 1,
          'find': 1,
          'happened': 1,
          'come': 1,
          'slight': 1,
          'disappointment': 1,
          'early': 1,
          'could': 1,
          'done': 1,
          'extra': 1,
          'twenty': 1,
          'minutes': 1,
          'mystery': 1,
          'bewilderment': 1,
          'affects': 1,
          'little': 1,
          'mentioned': 1,
          'good': 1,
          'role': 1,
          'nowhere': 1,
          'near': 1,
          'annoying': 1,
          'apollo': 1,
          '13': 1,
          'nj': 1,
          'possibly': 1,
          'evil': 1,
          'terrific': 1,
          'best': 1,
          'batch': 1,
          'character': 1,
          'actors': 1,
          'seem': 1,
          'know': 1,
          'director': 1,
          'jonathan': 1,
          'mostow': 1,
          'right': 1,
          'track': 1,
          'nthe': 1,
          'reason': 1,
          'villain': 1,
          'actually': 1,
          'looks': 1,
          'like': 1,
          'real': 1,
          'person': 1,
          'able': 1,
          'trust': 1,
          'plot': 1,
          'make': 1,
          'enough': 1,
          'thriller': 1,
          'characters': 1,
          'scenes': 1,
          'indeed': 1,
          'viewers': 1,
          'edge': 1,
          'seats': 1,
          'none': 1,
          'genuinely': 1,
          'exciting': 1,
          'ive': 1,
          'long': 1,
          'npos': 1}),
 Counter({'film': 24,
          'aliens': 12,
          'alien': 10,
          'one': 9,
          'action': 9,
          'naliens': 8,
          'ripley': 7,
          'cameron': 6,
          'ever': 5,
          'never': 5,
          'also': 5,
          'fiction': 4,
          'created': 4,
          'nthe': 4,
          'impressive': 4,
          'planet': 4,
          'seems': 4,
          'nin': 3,
          'fact': 3,
          'james': 3,
          'making': 3,
          'series': 3,
          'terrifying': 3,
          'like': 3,
          'along': 3,
          'could': 3,
          'terror': 3,
          'nwith': 3,
          'science': 3,
          'gives': 3,
          'original': 3,
          'character': 3,
          'weaver': 3,
          'realistic': 3,
          'us': 3,
          'seem': 3,
          'company': 3,
          'colony': 3,
          'reiser': 3,
          'team': 3,
          'includes': 3,
          'biehn': 3,
          'order': 3,
          'best': 3,
          'scenes': 3,
          'climax': 3,
          'viewer': 3,
          'genre': 3,
          'music': 3,
          'nomination': 3,
          'amount': 3,
          'good': 3,
          'hit': 2,
          'directed': 2,
          'sequel': 2,
          'directors': 2,
          'films': 2,
          'terminator': 2,
          'na': 2,
          'audiences': 2,
          'usually': 2,
          'ni': 2,
          'movie': 2,
          'must': 2,
          'members': 2,
          'seen': 2,
          'may': 2,
          'hero': 2,
          'acting': 2,
          'job': 2,
          'nsigourney': 2,
          'play': 2,
          'make': 2,
          'enough': 2,
          'woman': 2,
          'nostromo': 2,
          'survivor': 2,
          'families': 2,
          'wont': 2,
          'back': 2,
          'nhowever': 2,
          'none': 2,
          'paul': 2,
          'nthis': 2,
          'goldstein': 2,
          'bishop': 2,
          'henriksen': 2,
          'finds': 2,
          'newt': 2,
          'henn': 2,
          'nripley': 2,
          'mother': 2,
          'becomes': 2,
          'knows': 2,
          'happened': 2,
          'multiplies': 2,
          'suspense': 2,
          'killed': 2,
          'member': 2,
          'nthen': 2,
          'director': 2,
          'create': 2,
          'something': 2,
          'scene': 2,
          'astonishing': 2,
          'extreme': 2,
          'moment': 2,
          'right': 2,
          'moments': 2,
          'special': 2,
          'effects': 2,
          'course': 2,
          'work': 2,
          'aspects': 2,
          'see': 2,
          'horner': 2,
          'terrific': 2,
          'oscar': 2,
          'lights': 2,
          'scare': 2,
          'uses': 2,
          'average': 2,
          'performance': 2,
          'characters': 2,
          'role': 2,
          'quite': 2,
          'success': 1,
          'surprise': 1,
          'ridley': 1,
          'scott': 1,
          'inevitable': 1,
          'watching': 1,
          'first': 1,
          'wanted': 1,
          'particularly': 1,
          'reviewer': 1,
          'nhanding': 1,
          'chair': 1,
          'recent': 1,
          'box': 1,
          'office': 1,
          'gem': 1,
          'made': 1,
          'two': 1,
          'previous': 1,
          'pirahna': 1,
          'ii': 1,
          'surprisingly': 1,
          'dull': 1,
          'household': 1,
          'name': 1,
          'got': 1,
          'facelift': 1,
          'immense': 1,
          'proportions': 1,
          'ninstead': 1,
          'suspensescience': 1,
          'alters': 1,
          'changing': 1,
          'picture': 1,
          'nwhat': 1,
          'results': 1,
          'comes': 1,
          'unprepared': 1,
          'saw': 1,
          'theaters': 1,
          'wish': 1,
          'fright': 1,
          'unimaginable': 1,
          'likely': 1,
          'literally': 1,
          'shrieking': 1,
          'fear': 1,
          'unlike': 1,
          'plot': 1,
          'added': 1,
          'testosterone': 1,
          'pumping': 1,
          'fire': 1,
          'power': 1,
          'sequels': 1,
          'tops': 1,
          'nperhaps': 1,
          'makes': 1,
          'heroor': 1,
          'heroine': 1,
          'case': 1,
          'nnever': 1,
          'sympathetic': 1,
          'done': 1,
          'main': 1,
          'possibly': 1,
          'actress': 1,
          'care': 1,
          'nplacing': 1,
          'situations': 1,
          'would': 1,
          'sometimes': 1,
          'unusual': 1,
          'weavers': 1,
          'presence': 1,
          'suitable': 1,
          'begins': 1,
          '57': 1,
          'years': 1,
          'ended': 1,
          'nlieutenant': 1,
          'ellen': 1,
          'discovered': 1,
          'hypersleep': 1,
          'awakened': 1,
          'nshe': 1,
          'explains': 1,
          'past': 1,
          'encounter': 1,
          'doubtful': 1,
          'nthey': 1,
          'explain': 1,
          'flourishing': 1,
          'left': 1,
          'ndespite': 1,
          'stern': 1,
          'warnings': 1,
          'remains': 1,
          'rigid': 1,
          'call': 1,
          'loses': 1,
          'contact': 1,
          'ripleys': 1,
          'story': 1,
          'much': 1,
          'feasible': 1,
          'companys': 1,
          'carter': 1,
          'burke': 1,
          'wants': 1,
          'gather': 1,
          'travel': 1,
          'buff': 1,
          'private': 1,
          'vasquez': 1,
          'jenette': 1,
          'questionable': 1,
          'corporal': 1,
          'hicks': 1,
          'michael': 1,
          'loyal': 1,
          'android': 1,
          'lance': 1,
          'nburke': 1,
          'tags': 1,
          'fly': 1,
          'locate': 1,
          'narriving': 1,
          'human': 1,
          'life': 1,
          'extinguished': 1,
          'cocoontype': 1,
          'environment': 1,
          '12': 1,
          'year': 1,
          'old': 1,
          'rebecca': 1,
          'jorden': 1,
          'carrie': 1,
          'chance': 1,
          'opportunity': 1,
          'become': 1,
          'newts': 1,
          'surrogate': 1,
          'ones': 1,
          'soon': 1,
          'hell': 1,
          'breaks': 1,
          'loose': 1,
          'thrills': 1,
          'scotts': 1,
          'version': 1,
          'number': 1,
          'general': 1,
          'nalien': 1,
          'focused': 1,
          'particular': 1,
          'systematically': 1,
          'crew': 1,
          'except': 1,
          'managed': 1,
          'jettison': 1,
          'focuses': 1,
          'entire': 1,
          'race': 1,
          'result': 1,
          'chills': 1,
          'incredibly': 1,
          'heightened': 1,
          'guy': 1,
          'given': 1,
          'true': 1,
          'lies': 1,
          '2': 1,
          'judgment': 1,
          'day': 1,
          'nhe': 1,
          'topping': 1,
          'renny': 1,
          'harlin': 1,
          'cliffhanger': 1,
          'nit': 1,
          'every': 1,
          'memorable': 1,
          'motherload': 1,
          'perhaps': 1,
          'endings': 1,
          'nearly': 1,
          'pushed': 1,
          'exhaustion': 1,
          'cant': 1,
          'recall': 1,
          'another': 1,
          'sustain': 1,
          'level': 1,
          'intensity': 1,
          'throughout': 1,
          'dropping': 1,
          'njust': 1,
          'think': 1,
          'else': 1,
          'occur': 1,
          'starts': 1,
          'seemingly': 1,
          'endless': 1,
          'conclusion': 1,
          'ends': 1,
          'greatest': 1,
          'history': 1,
          'remembered': 1,
          'lieutenant': 1,
          'steps': 1,
          'lifting': 1,
          'machines': 1,
          'fight': 1,
          'queen': 1,
          'nusing': 1,
          'flawless': 1,
          'exhausting': 1,
          'leaving': 1,
          'audience': 1,
          'drained': 1,
          'anxiety': 1,
          'nof': 1,
          'properly': 1,
          'technical': 1,
          'believe': 1,
          'completely': 1,
          'even': 1,
          'decade': 1,
          'initial': 1,
          'release': 1,
          'wonderfully': 1,
          'seamless': 1,
          'go': 1,
          'overlooked': 1,
          'composed': 1,
          'cameronregular': 1,
          'nhorner': 1,
          'score': 1,
          'receiving': 1,
          'nnot': 1,
          'scores': 1,
          '2001': 1,
          'space': 1,
          'odyssey': 1,
          'mainly': 1,
          'compilation': 1,
          'wellknown': 1,
          'composers': 1,
          'recognized': 1,
          'production': 1,
          'design': 1,
          'incredible': 1,
          'snag': 1,
          'academy': 1,
          'ndark': 1,
          'corridors': 1,
          'lit': 1,
          'red': 1,
          'arises': 1,
          'welllit': 1,
          'locations': 1,
          'nnormally': 1,
          'dark': 1,
          'cinematography': 1,
          'point': 1,
          'view': 1,
          'shots': 1,
          'video': 1,
          'feeds': 1,
          'build': 1,
          'nsome': 1,
          'scariest': 1,
          'involve': 1,
          'perspective': 1,
          'nsurprisingly': 1,
          'received': 1,
          'portrayal': 1,
          'incorporating': 1,
          'sympathy': 1,
          'hardedged': 1,
          'persona': 1,
          'nweaver': 1,
          'soars': 1,
          'rest': 1,
          'supposed': 1,
          'ncarrie': 1,
          'child': 1,
          'developing': 1,
          'threedimensional': 1,
          'quiet': 1,
          'attitude': 1,
          'nlance': 1,
          'showing': 1,
          'androids': 1,
          'dont': 1,
          'always': 1,
          'flat': 1,
          'njenette': 1,
          'shows': 1,
          'fair': 1,
          'enthusiasm': 1,
          'steals': 1,
          'several': 1,
          'though': 1,
          'personality': 1,
          'slightly': 1,
          'annoying': 1,
          'isnt': 1,
          'fighting': 1,
          'nmichael': 1,
          'nice': 1,
          'obligatory': 1,
          'npaul': 1,
          'odd': 1,
          'choice': 1,
          'sleazy': 1,
          'corporate': 1,
          'manages': 1,
          'pull': 1,
          'well': 1,
          'however': 1,
          'still': 1,
          'tvs': 1,
          'mad': 1,
          'cast': 1,
          'bill': 1,
          'paxton': 1,
          'william': 1,
          'hope': 1,
          'highlights': 1,
          'stand': 1,
          'others': 1,
          'rightfully': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'gore': 1,
          'language': 1,
          'sort': 1,
          'redefining': 1,
          'suspensehorror': 1,
          'pumps': 1,
          'stakes': 1,
          'directs': 1,
          'professional': 1,
          'quality': 1,
          'ncameron': 1,
          'certainly': 1,
          'proves': 1,
          'truly': 1,
          'horrific': 1,
          'screen': 1,
          'ntechnically': 1,
          'flaw': 1,
          'small': 1,
          'get': 1,
          'naside': 1,
          'probably': 1,
          'experience': 1,
          'anything': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'rudys': 5,
          'lawyer': 4,
          'rudy': 4,
          'legal': 3,
          'insurance': 3,
          'law': 3,
          'good': 3,
          'situations': 2,
          'corrupt': 2,
          'company': 2,
          'three': 2,
          'time': 2,
          'danny': 2,
          'plays': 2,
          'leo': 2,
          'nwill': 2,
          'guy': 2,
          'film': 2,
          'little': 2,
          'nin': 2,
          'case': 2,
          'low': 2,
          'key': 2,
          'nthe': 2,
          'voice': 2,
          'narrates': 2,
          'makes': 2,
          'ingredients': 1,
          'neophyte': 1,
          'nsynopsis': 1,
          'baylor': 1,
          'matt': 1,
          'damon': 1,
          'ethical': 1,
          'kid': 1,
          'fresh': 1,
          'school': 1,
          'must': 1,
          'juggle': 1,
          'nrudys': 1,
          'girlfriend': 1,
          'attacked': 1,
          'violent': 1,
          'husband': 1,
          'elderly': 1,
          'landlady': 1,
          'wants': 1,
          'arrange': 1,
          'children': 1,
          'excluded': 1,
          'family': 1,
          'friend': 1,
          'leukemia': 1,
          'suing': 1,
          'wouldnt': 1,
          'pay': 1,
          'bone': 1,
          'marrow': 1,
          'transplant': 1,
          'nrudy': 1,
          'new': 1,
          'thoroughly': 1,
          'outgunned': 1,
          'luckily': 1,
          'aided': 1,
          'sleazy': 1,
          'ambulance': 1,
          'chaser': 1,
          'devito': 1,
          'failed': 1,
          'bar': 1,
          'exam': 1,
          'six': 1,
          'times': 1,
          'well': 1,
          'kindly': 1,
          'presiding': 1,
          'judge': 1,
          'glover': 1,
          'njon': 1,
          'voight': 1,
          'f': 1,
          'drummond': 1,
          'intimidating': 1,
          'arrogant': 1,
          'leader': 1,
          'allpowerful': 1,
          'companys': 1,
          'team': 1,
          'lawyers': 1,
          'anything': 1,
          'oppose': 1,
          'justice': 1,
          'defeat': 1,
          'enjoy': 1,
          'nopinion': 1,
          'news': 1,
          'happy': 1,
          'ending': 1,
          'features': 1,
          'trying': 1,
          'right': 1,
          'thing': 1,
          'ndirector': 1,
          'francis': 1,
          'ford': 1,
          'coppola': 1,
          'differently': 1,
          'stereotypical': 1,
          'typical': 1,
          'theres': 1,
          'one': 1,
          'big': 1,
          'focuses': 1,
          'solving': 1,
          'somewhere': 1,
          'along': 1,
          'line': 1,
          'surprise': 1,
          'witnesses': 1,
          'motives': 1,
          'turn': 1,
          'wins': 1,
          'lots': 1,
          'gripping': 1,
          'courtroom': 1,
          'drama': 1,
          'nhowever': 1,
          'coppolas': 1,
          'deliberately': 1,
          'rainmaker': 1,
          'like': 1,
          'personality': 1,
          'sketch': 1,
          'young': 1,
          'gets': 1,
          'emotionally': 1,
          'involved': 1,
          'tries': 1,
          'save': 1,
          'various': 1,
          'quirky': 1,
          'side': 1,
          'characters': 1,
          'background': 1,
          'feelings': 1,
          'halfcynical': 1,
          'jokes': 1,
          'profession': 1,
          'general': 1,
          'ntwo': 1,
          'factors': 1,
          'combine': 1,
          'make': 1,
          'less': 1,
          'heavy': 1,
          'nfirst': 1,
          'split': 1,
          'juggling': 1,
          'cases': 1,
          'rather': 1,
          'concentrating': 1,
          'single': 1,
          'highstakes': 1,
          'nalso': 1,
          'use': 1,
          'narration': 1,
          'place': 1,
          'acting': 1,
          'lose': 1,
          'dramatic': 1,
          'edge': 1,
          'end': 1,
          'result': 1,
          'entertaining': 1,
          'guys': 1,
          'win': 1,
          'way': 1,
          'coming': 1,
          'age': 1,
          'npos': 1}),
 Counter({'casablanca': 4,
          'film': 4,
          'classic': 3,
          'movie': 3,
          'one': 2,
          'many': 2,
          'nthe': 2,
          'greatest': 2,
          'ever': 2,
          'love': 2,
          'political': 2,
          'ni': 2,
          'would': 2,
          'understood': 2,
          'videos': 1,
          'attained': 1,
          'local': 1,
          'library': 1,
          'third': 1,
          'weeks': 1,
          'others': 1,
          'citizen': 1,
          'kane': 1,
          'vertigo': 1,
          'yes': 1,
          'trying': 1,
          'see': 1,
          'afis': 1,
          'movies': 1,
          'made': 1,
          'nbut': 1,
          'stood': 1,
          'rest': 1,
          'actually': 1,
          'watchable': 1,
          'nwhat': 1,
          'hail': 1,
          'american': 1,
          'isnt': 1,
          'much': 1,
          'story': 1,
          'frenzy': 1,
          'triangle': 1,
          'thrown': 1,
          'nit': 1,
          'seems': 1,
          'star': 1,
          'humphry': 1,
          'bogart': 1,
          'spend': 1,
          '85': 1,
          'percent': 1,
          'various': 1,
          'leaders': 1,
          'nation': 1,
          'instead': 1,
          'ingred': 1,
          'bergman': 1,
          'nthat': 1,
          'annoyed': 1,
          'ending': 1,
          'nwhy': 1,
          'didnt': 1,
          'plan': 1,
          'turn': 1,
          'around': 1,
          'nsurprisingly': 1,
          'enjoyed': 1,
          'liked': 1,
          'bogarts': 1,
          'character': 1,
          'acting': 1,
          'top': 1,
          'actors': 1,
          'era': 1,
          'read': 1,
          'choice': 1,
          'women': 1,
          'said': 1,
          'nat': 1,
          'first': 1,
          'thinking': 1,
          'nthen': 1,
          'watched': 1,
          'well': 1,
          'done': 1,
          'script': 1,
          'topnotch': 1,
          'although': 1,
          'doubt': 1,
          'half': 1,
          'mumbo': 1,
          'jumbo': 1,
          'ncasablanca': 1,
          'mind': 1,
          'like': 1,
          'solaris': 1,
          'good': 1,
          'stylishly': 1,
          'shot': 1,
          'nhey': 1,
          'hollywood': 1,
          'remake': 1,
          'harrison': 1,
          'ford': 1,
          'anne': 1,
          'heche': 1,
          'nnow': 1,
          'npos': 1}),
 Counter({'action': 5,
          'one': 5,
          'film': 5,
          'nthe': 5,
          'big': 4,
          'hit': 4,
          'comedy': 3,
          'hitmen': 3,
          'makes': 3,
          'thing': 2,
          'time': 2,
          'hong': 2,
          'kong': 2,
          'enough': 2,
          'last': 2,
          'point': 2,
          'quite': 2,
          'would': 2,
          'killing': 2,
          'nhowever': 2,
          'doesnt': 2,
          'much': 2,
          'piece': 2,
          'movie': 2,
          'funny': 2,
          'problem': 2,
          'laugh': 2,
          'sometimes': 2,
          'capsule': 1,
          'suprisingly': 1,
          'straight': 1,
          'flick': 1,
          'isnt': 1,
          'necessarily': 1,
          'bad': 1,
          'nnot': 1,
          'exactly': 1,
          'oscar': 1,
          'caliber': 1,
          'helluva': 1,
          'bulletriddled': 1,
          'good': 1,
          'nextended': 1,
          'review': 1,
          'know': 1,
          'remember': 1,
          'evil': 1,
          'murderous': 1,
          'scum': 1,
          'nalas': 1,
          'times': 1,
          'achangin': 1,
          'nin': 1,
          'recent': 1,
          'string': 1,
          'movies': 1,
          'suddenly': 1,
          'wise': 1,
          'cracking': 1,
          'funloving': 1,
          'killerswithhearts': 1,
          'nthis': 1,
          'brings': 1,
          'us': 1,
          'director': 1,
          'kirk': 1,
          'wongs': 1,
          'first': 1,
          'american': 1,
          'feature': 1,
          'noddly': 1,
          'year': 1,
          'similar': 1,
          'grosse': 1,
          'blank': 1,
          'released': 1,
          'nadvertised': 1,
          'quirky': 1,
          'hints': 1,
          'turned': 1,
          'suprising': 1,
          'dosage': 1,
          'opposite': 1,
          'nit': 1,
          'hyped': 1,
          'new': 1,
          'producer': 1,
          'john': 1,
          'woo': 1,
          'expect': 1,
          'lots': 1,
          'stylized': 1,
          'theres': 1,
          'sore': 1,
          'lack': 1,
          'wrong': 1,
          'starts': 1,
          'mel': 1,
          'smiley': 1,
          'cohorts': 1,
          'job': 1,
          'white': 1,
          'slaver': 1,
          'nmel': 1,
          'played': 1,
          'mark': 1,
          'wahlberg': 1,
          'dopey': 1,
          'milquetoast': 1,
          'role': 1,
          'machine': 1,
          'flips': 1,
          'spins': 1,
          'even': 1,
          'breakdances': 1,
          'whilst': 1,
          'popping': 1,
          'caps': 1,
          'nsadly': 1,
          'get': 1,
          'chance': 1,
          'nexcept': 1,
          'beginning': 1,
          'set': 1,
          '20': 1,
          'twenty': 1,
          'minutes': 1,
          'mode': 1,
          'least': 1,
          'prime': 1,
          'cut': 1,
          'stuff': 1,
          'nwong': 1,
          'numerous': 1,
          'features': 1,
          'nice': 1,
          'u': 1,
          'debut': 1,
          'pacing': 1,
          'bit': 1,
          'sequences': 1,
          'bookending': 1,
          'lasting': 1,
          'long': 1,
          'nthey': 1,
          'start': 1,
          'electrifying': 1,
          'fresh': 1,
          'kinda': 1,
          'stop': 1,
          'nnormally': 1,
          'hamper': 1,
          'unenjoyable': 1,
          'nluckily': 1,
          'ben': 1,
          'ramseys': 1,
          'screenplay': 1,
          'bitingly': 1,
          'work': 1,
          'might': 1,
          'humor': 1,
          'joke': 1,
          'hard': 1,
          'miss': 1,
          'next': 1,
          'nsome': 1,
          'best': 1,
          'gags': 1,
          'include': 1,
          'oriental': 1,
          'maker': 1,
          'luck': 1,
          'mels': 1,
          'pals': 1,
          'discovered': 1,
          'onanism': 1,
          'minor': 1,
          'characters': 1,
          'handled': 1,
          'works': 1,
          'noverall': 1,
          'may': 1,
          'flaws': 1,
          'stylishly': 1,
          'directed': 1,
          'gutwrenchingly': 1,
          'joyride': 1,
          'ndefinately': 1,
          'better': 1,
          'ways': 1,
          'spend': 1,
          'two': 1,
          'hours': 1,
          'npos': 1}),
 Counter({'onegin': 9,
          'fiennes': 6,
          'tatyana': 5,
          'nthe': 4,
          'character': 3,
          'russian': 3,
          'well': 3,
          '_onegin_': 2,
          'nmartha': 2,
          'nwhen': 2,
          'ralph': 2,
          'sister': 2,
          'st': 2,
          'petersburg': 2,
          'long': 2,
          'olgas': 2,
          'tyler': 2,
          'one': 2,
          'makes': 2,
          'nwhat': 2,
          'like': 2,
          'us': 2,
          'others': 2,
          'even': 2,
          'often': 2,
          'devil': 1,
          'take': 1,
          'asks': 1,
          'rhetorically': 1,
          'lulling': 1,
          'voice': 1,
          'spoiled': 1,
          'title': 1,
          'pronounced': 1,
          'ohneggin': 1,
          'waiting': 1,
          'death': 1,
          'relieve': 1,
          'lifetime': 1,
          'rapacious': 1,
          'behaviour': 1,
          'debut': 1,
          'feature': 1,
          'quite': 1,
          'literally': 1,
          'filmed': 1,
          'poetry': 1,
          'based': 1,
          'epic': 1,
          'poem': 1,
          'alexander': 1,
          'pushkin': 1,
          'profound': 1,
          'study': 1,
          'regret': 1,
          'confuse': 1,
          'shame': 1,
          'guilt': 1,
          'first': 1,
          'meet': 1,
          'eugene': 1,
          'acting': 1,
          'another': 1,
          'brother': 1,
          'magnus': 1,
          'composed': 1,
          'score': 1,
          'philandering': 1,
          'aristocrat': 1,
          'inherited': 1,
          'uncles': 1,
          'estate': 1,
          'nwith': 1,
          'plans': 1,
          'sell': 1,
          'pays': 1,
          'summer': 1,
          'visit': 1,
          'manor': 1,
          'located': 1,
          'underpopulated': 1,
          'countryside': 1,
          'trip': 1,
          'meets': 1,
          'neighbouring': 1,
          'family': 1,
          'blue': 1,
          'bloods': 1,
          'nsmitten': 1,
          'olga': 1,
          'larina': 1,
          'headey': 1,
          'befriends': 1,
          'fianc': 1,
          'vladimir': 1,
          'lensky': 1,
          'stephens': 1,
          'romanticizing': 1,
          'flippant': 1,
          'attitude': 1,
          'hes': 1,
          'nineteenth': 1,
          'bad': 1,
          'boy': 1,
          'falls': 1,
          'nin': 1,
          'sweaty': 1,
          'inky': 1,
          'torrent': 1,
          'passion': 1,
          'writes': 1,
          'love': 1,
          'letter': 1,
          'nhe': 1,
          'least': 1,
          'intrigued': 1,
          'note': 1,
          'rejects': 1,
          'affections': 1,
          'implied': 1,
          'nsoon': 1,
          'tragedy': 1,
          'strikes': 1,
          'scarce': 1,
          'catch': 1,
          'six': 1,
          'years': 1,
          'later': 1,
          'returned': 1,
          'grand': 1,
          'ball': 1,
          'discovers': 1,
          'old': 1,
          'friend': 1,
          'donovan': 1,
          'married': 1,
          'womanly': 1,
          'wordly': 1,
          'nthis': 1,
          'time': 1,
          'finds': 1,
          'irresistable': 1,
          'amazing': 1,
          'performance': 1,
          'subtle': 1,
          'physical': 1,
          'transformation': 1,
          'dashing': 1,
          'snob': 1,
          'miserly': 1,
          'grouch': 1,
          'noverwhelmed': 1,
          'top': 1,
          'hat': 1,
          'pines': 1,
          'seems': 1,
          'smaller': 1,
          'stature': 1,
          'brushed': 1,
          'ebeneezer': 1,
          'scrooge': 1,
          'trapped': 1,
          'christmas': 1,
          'past': 1,
          'actor': 1,
          'constricted': 1,
          'playing': 1,
          'heroes': 1,
          'nowtheres': 1,
          'room': 1,
          'breathe': 1,
          'role': 1,
          'thats': 1,
          'made': 1,
          'shades': 1,
          'gray': 1,
          'npetula': 1,
          'clark': 1,
          'sang': 1,
          'universal': 1,
          'phenomenon': 1,
          'parking': 1,
          'lot': 1,
          'dont': 1,
          'know': 1,
          'youve': 1,
          'got': 1,
          'til': 1,
          'gone': 1,
          'nonegins': 1,
          'aboutface': 1,
          'speaks': 1,
          'read': 1,
          'need': 1,
          'confirmation': 1,
          'someone': 1,
          'something': 1,
          'wanted': 1,
          'want': 1,
          'feels': 1,
          'jealousy': 1,
          'remorse': 1,
          'embarrassment': 1,
          'let': 1,
          'go': 1,
          'nout': 1,
          'identification': 1,
          'feel': 1,
          'empathy': 1,
          'callous': 1,
          'bastard': 1,
          'ntatyanas': 1,
          'emotions': 1,
          'echo': 1,
          'thousand': 1,
          'ditties': 1,
          'less': 1,
          'vital': 1,
          'nshe': 1,
          'changes': 1,
          'girl': 1,
          'crush': 1,
          'woman': 1,
          'divided': 1,
          'loyalties': 1,
          'ntyler': 1,
          'acquits': 1,
          'surprisingly': 1,
          'among': 1,
          'uk': 1,
          'costars': 1,
          'filling': 1,
          'sketchy': 1,
          'gaps': 1,
          'expressing': 1,
          'base': 1,
          'sentiments': 1,
          'series': 1,
          'wanton': 1,
          'stares': 1,
          'nthey': 1,
          'faces': 1,
          'mr': 1,
          'ms': 1,
          'capable': 1,
          'conveying': 1,
          'archetypal': 1,
          'misery': 1,
          'n_onegin_': 1,
          'could': 1,
          'added': 1,
          'little': 1,
          'distinguished': 1,
          'episode': 1,
          'masterpiece': 1,
          'theater': 1,
          'current': 1,
          'cast': 1,
          'thoroughbreds': 1,
          'intact': 1,
          'martha': 1,
          'helm': 1,
          'nan': 1,
          'mtv': 1,
          'background': 1,
          'cut': 1,
          'teeth': 1,
          'directing': 1,
          'rock': 1,
          'videos': 1,
          'xtc': 1,
          'positively': 1,
          'influenced': 1,
          'sense': 1,
          'pace': 1,
          'though': 1,
          'thankfully': 1,
          'shot': 1,
          'lengthsno': 1,
          'spasmodic': 1,
          'cutting': 1,
          '100': 1,
          'minutes': 1,
          'clicks': 1,
          'along': 1,
          'brisk': 1,
          'walk': 1,
          'valleys': 1,
          'despair': 1,
          'film': 1,
          'atypical': 1,
          'period': 1,
          'look': 1,
          'nabsent': 1,
          'sumptuous': 1,
          'tableware': 1,
          'antique': 1,
          'furnishings': 1,
          'stand': 1,
          'plot': 1,
          'drippy': 1,
          'merchant': 1,
          'ivory': 1,
          'productions': 1,
          'sets': 1,
          'almost': 1,
          'expressionistically': 1,
          'bare': 1,
          'echoing': 1,
          'loneliness': 1,
          'protagonists': 1,
          'n': 1,
          'cinematographer': 1,
          'remi': 1,
          'adafarasin': 1,
          'allows': 1,
          'space': 1,
          'engulf': 1,
          'im': 1,
          'reminded': 1,
          'climax': 1,
          'unfolds': 1,
          'sea': 1,
          'white': 1,
          'clear': 1,
          'command': 1,
          'cinema': 1,
          'spare': 1,
          'painfully': 1,
          'human': 1,
          'visual': 1,
          'presentation': 1,
          'yevgeny': 1,
          'arguably': 1,
          'lucid': 1,
          'translation': 1,
          'pushkins': 1,
          'difficult': 1,
          'text': 1,
          'yet': 1,
          'nms': 1,
          'may': 1,
          'exciting': 1,
          'female': 1,
          'presence': 1,
          'behind': 1,
          'camera': 1,
          'since': 1,
          'jane': 1,
          'campion': 1,
          'npos': 1}),
 Counter({'two': 6,
          'nhe': 5,
          'man': 4,
          'gold': 3,
          'like': 3,
          'fonda': 3,
          'fondas': 3,
          'ulee': 3,
          'nulee': 3,
          'granddaughters': 3,
          'helen': 3,
          'men': 3,
          'little': 2,
          'nulees': 2,
          'feels': 2,
          'golden': 2,
          'pond': 2,
          'deal': 2,
          'npeter': 2,
          'gives': 2,
          'performance': 2,
          'home': 2,
          'films': 2,
          'father': 2,
          'jackson': 2,
          'peter': 2,
          'daughterinlaw': 2,
          'drugs': 2,
          'son': 2,
          'nshe': 2,
          'money': 2,
          'get': 2,
          'story': 2,
          'end': 2,
          'bruce': 1,
          'barths': 1,
          'mellow': 1,
          'piano': 1,
          'plays': 1,
          'background': 1,
          'conflict': 1,
          'erupts': 1,
          'country': 1,
          'town': 1,
          'florida': 1,
          'another': 1,
          'creation': 1,
          'soft': 1,
          'calm': 1,
          'surface': 1,
          'tempest': 1,
          'brewing': 1,
          'underneath': 1,
          'cinematography': 1,
          'creates': 1,
          'place': 1,
          'yellow': 1,
          'olive': 1,
          'colors': 1,
          'music': 1,
          'stirring': 1,
          'tranquil': 1,
          'nboth': 1,
          'hardships': 1,
          'family': 1,
          'life': 1,
          'undoubtedly': 1,
          'best': 1,
          'victor': 1,
          'nu': 1,
          'ezs': 1,
          'new': 1,
          'film': 1,
          'patricia': 1,
          'richardson': 1,
          'improvement': 1,
          'star': 1,
          'shows': 1,
          'worthy': 1,
          'big': 1,
          'screen': 1,
          'attention': 1,
          'nnu': 1,
          'ez': 1,
          'probably': 1,
          'independent': 1,
          'greatest': 1,
          'asset': 1,
          'along': 1,
          'john': 1,
          'sayles': 1,
          'proves': 1,
          'talent': 1,
          'slow': 1,
          'pace': 1,
          'undulating': 1,
          'heavy': 1,
          'tension': 1,
          'borrows': 1,
          'henry': 1,
          'great': 1,
          'vulnerability': 1,
          'character': 1,
          'quiet': 1,
          'emotional': 1,
          'weary': 1,
          'exceptional': 1,
          'role': 1,
          'protagonist': 1,
          'struggling': 1,
          'npressure': 1,
          'mounting': 1,
          'wrong': 1,
          'time': 1,
          'beekeeper': 1,
          'busy': 1,
          'season': 1,
          'needs': 1,
          'erupting': 1,
          'hormones': 1,
          'forced': 1,
          'pick': 1,
          'orlando': 1,
          'strung': 1,
          'take': 1,
          'care': 1,
          'faced': 1,
          'challenging': 1,
          'task': 1,
          'unsettled': 1,
          'business': 1,
          'prison': 1,
          'left': 1,
          'behind': 1,
          'finds': 1,
          'robbed': 1,
          'bank': 1,
          'apparently': 1,
          'told': 1,
          'resulted': 1,
          'robbery': 1,
          'husband': 1,
          'nthat': 1,
          'got': 1,
          'caught': 1,
          'police': 1,
          'found': 1,
          'nnow': 1,
          'demanding': 1,
          'cash': 1,
          'come': 1,
          'ulees': 1,
          'promises': 1,
          'bring': 1,
          'takes': 1,
          'deranged': 1,
          'back': 1,
          'serene': 1,
          'children': 1,
          'abandoned': 1,
          'scrutinize': 1,
          'contempt': 1,
          'lost': 1,
          'pals': 1,
          'war': 1,
          'platoon': 1,
          'survive': 1,
          'refuses': 1,
          'help': 1,
          'anybody': 1,
          'respond': 1,
          'affectionate': 1,
          'gestures': 1,
          'bitter': 1,
          'closedoff': 1,
          'whose': 1,
          'passion': 1,
          'beekeeping': 1,
          'dead': 1,
          'wife': 1,
          'nconnie': 1,
          'next': 1,
          'door': 1,
          'neighbor': 1,
          'finally': 1,
          'gets': 1,
          'friendly': 1,
          'favors': 1,
          'nurse': 1,
          'helps': 1,
          'turmoil': 1,
          'believes': 1,
          'fine': 1,
          'truth': 1,
          'revealed': 1,
          'painfully': 1,
          'cold': 1,
          'unfeeling': 1,
          'nof': 1,
          'course': 1,
          'softens': 1,
          'journey': 1,
          'absorbing': 1,
          'fallen': 1,
          'love': 1,
          'tiredness': 1,
          'weariness': 1,
          'nwhat': 1,
          'admirable': 1,
          'movie': 1,
          'winning': 1,
          'turn': 1,
          'nobodys': 1,
          'fool': 1,
          'ends': 1,
          'class': 1,
          'npos': 1}),
 Counter({'big': 3,
          'eden': 3,
          'nits': 2,
          'away': 2,
          'general': 2,
          'store': 2,
          'young': 2,
          'much': 2,
          'henry': 2,
          'home': 2,
          'sam': 2,
          'nand': 2,
          'love': 2,
          'doesnt': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'jour': 1,
          'de': 1,
          'fete': 1,
          'utopia': 1,
          'tiny': 1,
          'town': 1,
          'tucked': 1,
          'timberland': 1,
          'northwestern': 1,
          'montana': 1,
          'old': 1,
          'codgers': 1,
          'lounge': 1,
          'porch': 1,
          'pass': 1,
          'time': 1,
          'local': 1,
          'matchmakers': 1,
          'nan': 1,
          'martin': 1,
          'louise': 1,
          'fletcher': 1,
          'eagerly': 1,
          'pair': 1,
          'people': 1,
          'regardless': 1,
          'sexual': 1,
          'preference': 1,
          'ntheres': 1,
          'nary': 1,
          'homophobe': 1,
          'bigot': 1,
          'around': 1,
          'surprise': 1,
          'hart': 1,
          'arye': 1,
          'gross': 1,
          'successful': 1,
          'lonely': 1,
          'manhattan': 1,
          'artist': 1,
          'returns': 1,
          'care': 1,
          'george': 1,
          'coe': 1,
          'ailing': 1,
          'grandfather': 1,
          'raised': 1,
          'simultaneous': 1,
          'reappearance': 1,
          'bestfriend': 1,
          'highschool': 1,
          'object': 1,
          'unrequited': 1,
          'tim': 1,
          'dekay': 1,
          'divorced': 1,
          'two': 1,
          'sons': 1,
          'fact': 1,
          'homosexuality': 1,
          'must': 1,
          'faced': 1,
          'nto': 1,
          'complete': 1,
          'triangle': 1,
          'theres': 1,
          'tall': 1,
          'taciturn': 1,
          'native': 1,
          'american': 1,
          'eric': 1,
          'schweig': 1,
          'owns': 1,
          'lovingly': 1,
          'yet': 1,
          'secretly': 1,
          'prepares': 1,
          'gourmet': 1,
          'meals': 1,
          'nthis': 1,
          'fable': 1,
          'family': 1,
          'major': 1,
          'debut': 1,
          'firsttime': 1,
          'filmmaker': 1,
          'thomas': 1,
          'bezucha': 1,
          'former': 1,
          'designer': 1,
          'coach': 1,
          'poloralph': 1,
          'lauren': 1,
          'meticulous': 1,
          'minding': 1,
          'details': 1,
          'using': 1,
          'ballads': 1,
          'like': 1,
          'welcome': 1,
          'world': 1,
          'achin': 1,
          'breakin': 1,
          'heart': 1,
          'set': 1,
          'concept': 1,
          'universal': 1,
          'longing': 1,
          'find': 1,
          'place': 1,
          'loved': 1,
          'nin': 1,
          'paradise': 1,
          'matter': 1,
          'generosity': 1,
          'spirit': 1,
          'respect': 1,
          'kindness': 1,
          'nsure': 1,
          'plots': 1,
          'implausible': 1,
          'goodnatured': 1,
          'fantasy': 1,
          'allowances': 1,
          'made': 1,
          'rob': 1,
          'sweeneys': 1,
          'photography': 1,
          'glacier': 1,
          'national': 1,
          'park': 1,
          'spectacular': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'charming': 1,
          'quirky': 1,
          'offbeat': 1,
          '7': 1,
          'heartwarming': 1,
          'romantic': 1,
          'comedy': 1,
          'gay': 1,
          'man': 1,
          'die': 1,
          'aids': 1,
          'wind': 1,
          'alone': 1,
          'end': 1,
          'npos': 1}),
 Counter({'frequency': 6,
          'movie': 4,
          'father': 4,
          'three': 4,
          'one': 3,
          'time': 3,
          'nit': 3,
          'looked': 3,
          'like': 3,
          'film': 3,
          'films': 3,
          'elements': 3,
          'seeing': 2,
          'certain': 2,
          'nfrequency': 2,
          'line': 2,
          'sullivan': 2,
          'frank': 2,
          'fact': 2,
          'serial': 2,
          'great': 2,
          'ending': 2,
          'logic': 2,
          'scifi': 2,
          'travel': 2,
          'never': 2,
          'nwhen': 2,
          'okay': 2,
          'go': 1,
          'movies': 1,
          'much': 1,
          'unfortunately': 1,
          'end': 1,
          'trailers': 1,
          'many': 1,
          'times': 1,
          'nsuch': 1,
          'case': 1,
          'nevery': 1,
          'went': 1,
          'screening': 1,
          'preview': 1,
          'awful': 1,
          'cheesy': 1,
          'sappy': 1,
          'ridiculous': 1,
          'flop': 1,
          'nwell': 1,
          'whoever': 1,
          'put': 1,
          'trailer': 1,
          'together': 1,
          'fired': 1,
          'terms': 1,
          'pure': 1,
          'entertainment': 1,
          'best': 1,
          'year': 1,
          'thus': 1,
          'far': 1,
          'boasts': 1,
          'compelling': 1,
          'story': 1,
          'nan': 1,
          'occurrence': 1,
          'freakish': 1,
          'solar': 1,
          'activity': 1,
          'allows': 1,
          'police': 1,
          'detective': 1,
          'john': 1,
          'james': 1,
          'caviezel': 1,
          'speak': 1,
          'fireman': 1,
          'dennis': 1,
          'quaid': 1,
          'ham': 1,
          'radio': 1,
          'despite': 1,
          'dead': 1,
          '30': 1,
          'years': 1,
          'njohn': 1,
          'able': 1,
          'give': 1,
          'information': 1,
          'prevents': 1,
          'death': 1,
          'warehouse': 1,
          'fire': 1,
          'causes': 1,
          'changes': 1,
          'nsomehow': 1,
          'killers': 1,
          'reign': 1,
          'terror': 1,
          'original': 1,
          'timeline': 1,
          'stopped': 1,
          'murders': 1,
          'extends': 1,
          'ten': 1,
          'victims': 1,
          'nincluding': 1,
          'johns': 1,
          'mother': 1,
          'nthis': 1,
          'director': 1,
          'gregory': 1,
          'hoblits': 1,
          'third': 1,
          'two': 1,
          'primal': 1,
          'fear': 1,
          'fallen': 1,
          'nwith': 1,
          'hes': 1,
          'managed': 1,
          'attach': 1,
          'scripts': 1,
          'toby': 1,
          'emmerich': 1,
          'whose': 1,
          'previous': 1,
          'experience': 1,
          'music': 1,
          'supervisor': 1,
          'numerous': 1,
          'new': 1,
          'add': 1,
          'equally': 1,
          'direction': 1,
          'nalso': 1,
          'apparently': 1,
          'likes': 1,
          'wrap': 1,
          'kickass': 1,
          'exception': 1,
          'unpredictable': 1,
          'incredibly': 1,
          'satisfying': 1,
          'nhoblit': 1,
          'hope': 1,
          'keep': 1,
          'nnow': 1,
          'everyone': 1,
          'argue': 1,
          'want': 1,
          'nbut': 1,
          'matter': 1,
          'achieved': 1,
          'nwhos': 1,
          'say': 1,
          'something': 1,
          'works': 1,
          'doesnt': 1,
          'happened': 1,
          'nis': 1,
          'weve': 1,
          'become': 1,
          'accustomed': 1,
          'laws': 1,
          'places': 1,
          'star': 1,
          'trek': 1,
          'back': 1,
          'future': 1,
          'trilogy': 1,
          'quantum': 1,
          'leap': 1,
          'nyes': 1,
          'sit': 1,
          'think': 1,
          'plot': 1,
          'probably': 1,
          'wont': 1,
          'make': 1,
          'sense': 1,
          'nmost': 1,
          'ndont': 1,
          'let': 1,
          'dissuade': 1,
          'fantastically': 1,
          'entertaining': 1,
          'however': 1,
          'made': 1,
          'wish': 1,
          'seen': 1,
          'could': 1,
          'given': 1,
          'hug': 1,
          'shut': 1,
          'break': 1,
          'past': 1,
          'killer': 1,
          'antics': 1,
          'simply': 1,
          'son': 1,
          'bond': 1,
          'share': 1,
          'nits': 1,
          'touching': 1,
          'sincere': 1,
          'ultimately': 1,
          'makes': 1,
          'work': 1,
          'npg13': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'paul': 3,
          'deniro': 3,
          'man': 3,
          'crystal': 3,
          'laughs': 3,
          'must': 2,
          'mob': 2,
          'boss': 2,
          'vitti': 2,
          'robert': 2,
          'finds': 2,
          'mafia': 2,
          'hes': 2,
          'nand': 2,
          'billy': 2,
          'day': 2,
          'nplaying': 2,
          'vittis': 2,
          'comedy': 2,
          'gets': 2,
          'like': 2,
          'nits': 2,
          'manages': 2,
          'kudrow': 2,
          'tough': 1,
          'njust': 1,
          'ask': 1,
          'job': 1,
          'head': 1,
          'rather': 1,
          'stress': 1,
          'inducing': 1,
          'ni': 1,
          'believe': 1,
          'one': 1,
          'cant': 1,
          'even': 1,
          'begin': 1,
          'fathom': 1,
          'turmoil': 1,
          'go': 1,
          'forced': 1,
          'choose': 1,
          'ice': 1,
          'pick': 1,
          'baseball': 1,
          'bat': 1,
          'sledgehammer': 1,
          'torture': 1,
          'victims': 1,
          'nsuffering': 1,
          'reoccurring': 1,
          'panic': 1,
          'attacks': 1,
          'decides': 1,
          'needs': 1,
          'consult': 1,
          'professional': 1,
          'help': 1,
          'better': 1,
          'nafter': 1,
          'appearing': 1,
          'bottomofthebarrel': 1,
          'flops': 1,
          'fathers': 1,
          'giant': 1,
          'finally': 1,
          'reliable': 1,
          'costar': 1,
          'promising': 1,
          'material': 1,
          'private': 1,
          'shrink': 1,
          'two': 1,
          'different': 1,
          'stars': 1,
          'strike': 1,
          'unorthodox': 1,
          'interesting': 1,
          'relationship': 1,
          'carries': 1,
          'enjoyable': 1,
          'steady': 1,
          'wave': 1,
          'start': 1,
          'finish': 1,
          'ncasting': 1,
          'something': 1,
          'injoke': 1,
          'think': 1,
          'nplaced': 1,
          'mobsters': 1,
          'shoes': 1,
          'spoof': 1,
          'characters': 1,
          'played': 1,
          'films': 1,
          'godfather': 1,
          'part': 1,
          'ii': 1,
          'casino': 1,
          'obvious': 1,
          'lot': 1,
          'fun': 1,
          'behind': 1,
          'camera': 1,
          'harold': 1,
          'ramis': 1,
          'whose': 1,
          'credits': 1,
          'include': 1,
          'ghostbusters': 1,
          'writer': 1,
          'star': 1,
          'best': 1,
          'directing': 1,
          'effort': 1,
          'bill': 1,
          'murray': 1,
          'vehicle': 1,
          'groundhog': 1,
          'nramis': 1,
          'knack': 1,
          'drawing': 1,
          'simply': 1,
          'knows': 1,
          'whats': 1,
          'funny': 1,
          'accentuate': 1,
          'strengths': 1,
          'nearly': 1,
          'actors': 1,
          'character': 1,
          'weakens': 1,
          'payoff': 1,
          'crystals': 1,
          'bridetobe': 1,
          'lisa': 1,
          'dumbeddown': 1,
          'role': 1,
          'friends': 1,
          'amusing': 1,
          'doesnt': 1,
          'fit': 1,
          'mold': 1,
          'well': 1,
          'director': 1,
          'may': 1,
          'hoped': 1,
          'supporting': 1,
          'cast': 1,
          'sparkles': 1,
          'njoe': 1,
          'viterelli': 1,
          'hilarious': 1,
          'jelly': 1,
          'pea': 1,
          'brained': 1,
          'righthand': 1,
          'chazz': 1,
          'palminteri': 1,
          'show': 1,
          'stopper': 1,
          'playing': 1,
          'fellow': 1,
          'mobster': 1,
          'whos': 1,
          'desperate': 1,
          'need': 1,
          'definition': 1,
          'closure': 1,
          'movie': 1,
          'maintain': 1,
          'consistent': 1,
          'chuckles': 1,
          'throughout': 1,
          'putting': 1,
          'emphasis': 1,
          '3': 1,
          '4': 1,
          'really': 1,
          'big': 1,
          'audiences': 1,
          'grasping': 1,
          'sides': 1,
          'situation': 1,
          'cute': 1,
          'resist': 1,
          'unfortunate': 1,
          'language': 1,
          'somewhat': 1,
          'hand': 1,
          'nbut': 1,
          'hey': 1,
          'youre': 1,
          'using': 1,
          'obscenities': 1,
          'probably': 1,
          'comes': 1,
          'naturally': 1,
          'near': 1,
          'end': 1,
          'seeing': 1,
          'attempt': 1,
          'walk': 1,
          'talk': 1,
          'truly': 1,
          'special': 1,
          'treat': 1,
          'npos': 1}),
 Counter({'cavemans': 11,
          'valentine_': 10,
          'film': 9,
          '_the': 8,
          'romulus': 8,
          'novel': 5,
          'comic': 4,
          'hero': 4,
          'graphic': 3,
          'homeless': 3,
          'cave': 3,
          'one': 3,
          'brilliant': 3,
          'valentine': 2,
          'samuel': 2,
          'l': 2,
          'jackson': 2,
          'aunjanue': 2,
          'ellis': 2,
          'tamara': 2,
          'tunie': 2,
          'screenplay': 2,
          'george': 2,
          'dawes': 2,
          'green': 2,
          'based': 2,
          'lemmons': 2,
          'n': 2,
          'strange': 2,
          'tale': 2,
          'murder': 2,
          'occasional': 2,
          'every': 2,
          'concept': 2,
          'book': 2,
          'mcfarlanes': 2,
          'spawn': 2,
          'blue': 2,
          'police': 2,
          'fantasy': 2,
          'blood': 2,
          'form': 2,
          'nthe': 2,
          'fact': 2,
          'ruling': 2,
          'nit': 2,
          'royal': 2,
          'carrion': 2,
          '_unbreakable_': 2,
          'mature': 2,
          'dark': 2,
          'knight': 2,
          'maxx': 2,
          'n_the': 2,
          'starring': 1,
          'ann': 1,
          'magnuson': 1,
          'directed': 1,
          'kasi': 1,
          'dvd': 1,
          'books': 1,
          'movie': 1,
          'reviews': 1,
          'plus': 1,
          'annual': 1,
          'coverage': 1,
          'toronto': 1,
          'international': 1,
          'festival': 1,
          'visit': 1,
          '_film': 1,
          'freak': 1,
          'central_': 1,
          'http': 1,
          'filmfreakcentral': 1,
          'net': 1,
          'search': 1,
          'engine': 1,
          'na': 1,
          'mixture': 1,
          '_shine_': 1,
          '_basquiat_': 1,
          '_angel': 1,
          'heart_': 1,
          'grant': 1,
          'morrison': 1,
          'dave': 1,
          'mckeans': 1,
          'arkham': 1,
          'asylum': 1,
          'feverish': 1,
          'madmancumdetective': 1,
          'morning': 1,
          'february': 1,
          '14th': 1,
          'discovers': 1,
          'outside': 1,
          'new': 1,
          'york': 1,
          'ella': 1,
          'fitzgeralds': 1,
          'fruit': 1,
          'stuck': 1,
          'crotch': 1,
          'treea': 1,
          'young': 1,
          'male': 1,
          'model': 1,
          'murdered': 1,
          'frozen': 1,
          'branch': 1,
          'nbelieving': 1,
          'first': 1,
          'imagined': 1,
          'nemesis': 1,
          'stuyvesant': 1,
          'shooting': 1,
          'evil': 1,
          'rays': 1,
          'mind': 1,
          'atop': 1,
          'chrysler': 1,
          'building': 1,
          'responsible': 1,
          'put': 1,
          'trail': 1,
          'avantgarde': 1,
          'photographer': 1,
          'mapplethorpe': 1,
          'mould': 1,
          'david': 1,
          'leppenraub': 1,
          'colm': 1,
          'feore': 1,
          'nhis': 1,
          'minor': 1,
          'sleuthing': 1,
          'interrupted': 1,
          'delusional': 1,
          'fit': 1,
          'bouts': 1,
          'ecstasy': 1,
          'creation': 1,
          'julliardtrained': 1,
          'pianist': 1,
          'prior': 1,
          'psychosis': 1,
          'uncovers': 1,
          'clues': 1,
          'harasses': 1,
          'suspects': 1,
          'way': 1,
          'convincing': 1,
          'policewoman': 1,
          'daughter': 1,
          'even': 1,
          'though': 1,
          'hes': 1,
          'nut': 1,
          'doesnt': 1,
          'mean': 1,
          'cant': 1,
          'solve': 1,
          'highprofile': 1,
          'society': 1,
          'nevery': 1,
          'moment': 1,
          'exhausting': 1,
          'workshop': 1,
          'ideas': 1,
          'character': 1,
          'high': 1,
          'suddenly': 1,
          'became': 1,
          'clear': 1,
          'fits': 1,
          'genre': 1,
          'entertainment': 1,
          'romuluss': 1,
          'caveman': 1,
          'slightly': 1,
          'mundane': 1,
          'version': 1,
          'todd': 1,
          'urban': 1,
          'noir': 1,
          'nwith': 1,
          'longvanished': 1,
          'wife': 1,
          'acting': 1,
          'spiritual': 1,
          'guide': 1,
          'social': 1,
          'caste': 1,
          'commentary': 1,
          'secret': 1,
          'base': 1,
          'divergent': 1,
          'genius': 1,
          'personality': 1,
          'network': 1,
          'informants': 1,
          'supporters': 1,
          'wickedly': 1,
          'colourful': 1,
          'archenemy': 1,
          'piles': 1,
          'lurid': 1,
          'details': 1,
          'dizzying': 1,
          'slapdash': 1,
          'colours': 1,
          'lavish': 1,
          'extent': 1,
          'vaguely': 1,
          'surprised': 1,
          'cars': 1,
          'werent': 1,
          'inscribed': 1,
          'gotham': 1,
          'pd': 1,
          'nthat': 1,
          'said': 1,
          'really': 1,
          'succeed': 1,
          'heroic': 1,
          'frank': 1,
          'miller': 1,
          'audacity': 1,
          'portray': 1,
          'staining': 1,
          'field': 1,
          'virgin': 1,
          'snow': 1,
          'expanding': 1,
          'shape': 1,
          'heart': 1,
          'difficulties': 1,
          'spring': 1,
          'misunderstanding': 1,
          'somehow': 1,
          'adheres': 1,
          'conventions': 1,
          'thriller': 1,
          'procedural': 1,
          'superhero': 1,
          'fable': 1,
          'takes': 1,
          'cause': 1,
          'like': 1,
          'attacking': 1,
          'entrenched': 1,
          'classes': 1,
          'government': 1,
          'arts': 1,
          'small': 1,
          'detail': 1,
          'named': 1,
          'member': 1,
          'class': 1,
          'lived': 1,
          'life': 1,
          'legend': 1,
          'without': 1,
          'knowledge': 1,
          'birth': 1,
          'also': 1,
          'turned': 1,
          'back': 1,
          'comforts': 1,
          'literati': 1,
          'favour': 1,
          'mystical': 1,
          'existence': 1,
          'living': 1,
          'park': 1,
          'mythology': 1,
          'signs': 1,
          'brought': 1,
          'twelve': 1,
          'vultures': 1,
          'call': 1,
          'action': 1,
          'comes': 1,
          'birds': 1,
          'nwhether': 1,
          'found': 1,
          'nation': 1,
          'case': 1,
          'novelist': 1,
          'upon': 1,
          'whose': 1,
          'franchise': 1,
          'remains': 1,
          'easily': 1,
          'misunderstood': 1,
          '2001': 1,
          'thus': 1,
          'far': 1,
          'along': 1,
          'night': 1,
          'shyamalans': 1,
          'cinematic': 1,
          'extrapolation': 1,
          'format': 1,
          'since': 1,
          'millers': 1,
          'seminal': 1,
          'returns': 1,
          'redefined': 1,
          'medium': 1,
          'suitable': 1,
          'ruminations': 1,
          'psychologically': 1,
          'sticky': 1,
          'topics': 1,
          'nreaders': 1,
          'sam': 1,
          'keiths': 1,
          'series': 1,
          'mtvs': 1,
          'shortlived': 1,
          'animated': 1,
          'adaptation': 1,
          'already': 1,
          'familiar': 1,
          'idea': 1,
          'man': 1,
          'placed': 1,
          'position': 1,
          'errant': 1,
          'king': 1,
          'twisted': 1,
          'demesne': 1,
          'failure': 1,
          'tv': 1,
          'show': 1,
          'forgetting': 1,
          'initial': 1,
          'backlash': 1,
          'suggests': 1,
          'public': 1,
          'may': 1,
          'ready': 1,
          'americas': 1,
          'surprising': 1,
          'contributions': 1,
          'nluxuriantly': 1,
          'lit': 1,
          'brashly': 1,
          'saturated': 1,
          'comicpanel': 1,
          'framed': 1,
          'virtuoso': 1,
          'grace': 1,
          'cinematographer': 1,
          'amy': 1,
          'vincent': 1,
          '_death': 1,
          'venice': 1,
          'ca_': 1,
          'inhabiting': 1,
          'robin': 1,
          'standefers': 1,
          '_practical': 1,
          'magic_': 1,
          'mesmerizing': 1,
          'sets': 1,
          'unremittingly': 1,
          'gorgeous': 1,
          'nkasi': 1,
          'following': 1,
          '1997': 1,
          'debut': 1,
          '_eves': 1,
          'bayou_': 1,
          'played': 1,
          'similar': 1,
          'themes': 1,
          'manufactured': 1,
          'realities': 1,
          'mysticism': 1,
          'fulfills': 1,
          'much': 1,
          'immense': 1,
          'promise': 1,
          'seraphs': 1,
          'lost': 1,
          'boys': 1,
          'artists': 1,
          'suffering': 1,
          'elegant': 1,
          'piquant': 1,
          'expression': 1,
          'hope': 1,
          'justice': 1,
          'tilted': 1,
          'landscape': 1,
          'nclearly': 1,
          'taste': 1,
          'approached': 1,
          'correct': 1,
          'paradigm': 1,
          'stunning': 1,
          'intensely': 1,
          'fascinating': 1,
          'films': 1,
          'year': 1,
          'redefinition': 1,
          'archetype': 1,
          'postmodern': 1,
          'audience': 1,
          'urinestained': 1,
          'wool': 1,
          'trench': 1,
          'coats': 1,
          'place': 1,
          'tights': 1,
          'red': 1,
          'capes': 1,
          'fine': 1,
          'courageous': 1,
          'crazy': 1,
          'enough': 1,
          'suggest': 1,
          'delirious': 1,
          'yammering': 1,
          'idiot': 1,
          'savant': 1,
          'best': 1,
          'truest': 1,
          'paladin': 1,
          'order': 1,
          'chaos': 1,
          'eliots': 1,
          'rats': 1,
          'alley': 1,
          'wasteland': 1,
          'npos': 1}),
 Counter({'baby': 5,
          'day': 3,
          'home': 2,
          'babys': 2,
          'nthe': 2,
          'mantegna': 2,
          'haley': 2,
          'n': 2,
          'john': 2,
          'ones': 2,
          'great': 2,
          'expand': 1,
          'final': 1,
          'fifteen': 1,
          'minutes': 1,
          'alone': 1,
          'featurelength': 1,
          'film': 1,
          'youve': 1,
          'got': 1,
          'outan': 1,
          'agreeably': 1,
          'amusing': 1,
          'childrens': 1,
          'comedy': 1,
          'bumbling': 1,
          'band': 1,
          'kid': 1,
          'kidnappers': 1,
          'unwittingly': 1,
          'outwitted': 1,
          'innocent': 1,
          'infant': 1,
          'plot': 1,
          'tracks': 1,
          'trio': 1,
          'crooksposedasphotographers': 1,
          'pantoliano': 1,
          'steal': 1,
          'ninemonthold': 1,
          'bennington': 1,
          'august': 1,
          'cottwell': 1,
          'iv': 1,
          'aka': 1,
          'bink': 1,
          'oldmoney': 1,
          'nbut': 1,
          'plan': 1,
          'goes': 1,
          'awry': 1,
          'crawls': 1,
          'open': 1,
          'window': 1,
          'streets': 1,
          'downtown': 1,
          'chicago': 1,
          'nfollowing': 1,
          'path': 1,
          'favorite': 1,
          'story': 1,
          'called': 1,
          'rides': 1,
          'bus': 1,
          'visits': 1,
          'zoo': 1,
          'winds': 1,
          'skyscraper': 1,
          'construction': 1,
          'site': 1,
          'nwhile': 1,
          'stays': 1,
          'unscathed': 1,
          'crooks': 1,
          'fare': 1,
          'worse': 1,
          'wear': 1,
          'stooges': 1,
          'get': 1,
          'hit': 1,
          'boards': 1,
          'dropped': 1,
          'roofs': 1,
          'course': 1,
          'suffer': 1,
          'multiple': 1,
          'crotch': 1,
          'injuries': 1,
          'wayne': 1,
          'bobbitt': 1,
          'probably': 1,
          'steer': 1,
          'clear': 1,
          'one': 1,
          'nlike': 1,
          'planes': 1,
          'trains': 1,
          'automobiles': 1,
          'hughes': 1,
          'demonstrates': 1,
          'mastery': 1,
          'simple': 1,
          'setup': 1,
          'extended': 1,
          'execution': 1,
          'nhere': 1,
          'hes': 1,
          'aided': 1,
          'abetted': 1,
          'director': 1,
          'patrick': 1,
          'read': 1,
          'johnson': 1,
          'whose': 1,
          'choreography': 1,
          'could': 1,
          'rival': 1,
          'coen': 1,
          'brother': 1,
          'nbest': 1,
          'bit': 1,
          'crawling': 1,
          'across': 1,
          'busy': 1,
          'city': 1,
          'street': 1,
          'nbabys': 1,
          'two': 1,
          'emotionsawww': 1,
          'ouchand': 1,
          'actors': 1,
          'play': 1,
          'accordingly': 1,
          'nforget': 1,
          'cartoon': 1,
          'concern': 1,
          'lara': 1,
          'flynn': 1,
          'boyle': 1,
          'cynthia': 1,
          'nixon': 1,
          'disposable': 1,
          'mom': 1,
          'nanny': 1,
          'respectively': 1,
          'watch': 1,
          'wincing': 1,
          'njoe': 1,
          'head': 1,
          'stooge': 1,
          'barking': 1,
          'lines': 1,
          'like': 1,
          'little': 1,
          'doodoo': 1,
          'machine': 1,
          'retirement': 1,
          'money': 1,
          'nbrian': 1,
          'scene': 1,
          'gorilla': 1,
          'joe': 1,
          'pantolianto': 1,
          'plays': 1,
          'curly': 1,
          'mantegnas': 1,
          'moe': 1,
          'funny': 1,
          'nneedless': 1,
          'say': 1,
          'twins': 1,
          'adam': 1,
          'jacob': 1,
          'warton': 1,
          'adorable': 1,
          'beyond': 1,
          'belief': 1,
          'npos': 1}),
 Counter({'mob': 10,
          'shot': 6,
          'deputy': 6,
          'camera': 6,
          'joe': 5,
          'human': 5,
          'lang': 5,
          'audience': 5,
          'nin': 4,
          'viewer': 4,
          'towards': 4,
          'bar': 4,
          'behavior': 3,
          'sense': 3,
          'scene': 3,
          'mobs': 3,
          'around': 3,
          'shots': 3,
          'nas': 3,
          'train': 2,
          'station': 2,
          'fury': 2,
          'line': 2,
          'film': 2,
          'character': 2,
          'discomfort': 2,
          'lynching': 2,
          'meyers': 2,
          'nwe': 2,
          'see': 2,
          'patrons': 2,
          'arguing': 2,
          'nwhat': 2,
          'realization': 2,
          'within': 2,
          'impulse': 2,
          'powerless': 2,
          'deputys': 2,
          'nlang': 2,
          'movement': 2,
          'nthe': 2,
          'becomes': 2,
          'left': 2,
          'reveal': 2,
          'subject': 2,
          'feel': 2,
          'faces': 2,
          'pan': 2,
          'makes': 2,
          'must': 2,
          'felt': 2,
          'rainbow': 2,
          'humanity': 2,
          'waiting': 1,
          'near': 1,
          'beginning': 1,
          'says': 1,
          'context': 1,
          'events': 1,
          'transpire': 1,
          'joes': 1,
          'prophetic': 1,
          'foreshadowing': 1,
          'internal': 1,
          'conflict': 1,
          'protagonist': 1,
          'latter': 1,
          'half': 1,
          'ndoes': 1,
          'necessarily': 1,
          'imply': 1,
          'humane': 1,
          'nthrough': 1,
          'baseness': 1,
          'exemplified': 1,
          'formation': 1,
          'fritz': 1,
          'prompts': 1,
          'consider': 1,
          'whether': 1,
          'inclination': 1,
          'impulsiveness': 1,
          'supersedes': 1,
          'civility': 1,
          'nexpressing': 1,
          'abhorrence': 1,
          'rise': 1,
          'nazism': 1,
          'homeland': 1,
          'takes': 1,
          'great': 1,
          'care': 1,
          'creating': 1,
          'scenes': 1,
          'hysteria': 1,
          'prefacing': 1,
          'achieves': 1,
          'critical': 1,
          'mass': 1,
          'ndeputy': 1,
          'brought': 1,
          'exalted': 1,
          'informant': 1,
          'unable': 1,
          'augment': 1,
          'myth': 1,
          'quickly': 1,
          'renounced': 1,
          'position': 1,
          'town': 1,
          'gossip': 1,
          'two': 1,
          'looks': 1,
          'nervously': 1,
          'growing': 1,
          'monster': 1,
          'carefully': 1,
          'slips': 1,
          'quietly': 1,
          'horrifying': 1,
          'crowd': 1,
          'longer': 1,
          'exists': 1,
          'confines': 1,
          'reason': 1,
          'succumbed': 1,
          'barber': 1,
          'referred': 1,
          'excitement': 1,
          'turned': 1,
          'fear': 1,
          'nto': 1,
          'quiet': 1,
          'exit': 1,
          'concurs': 1,
          'sinking': 1,
          'feeling': 1,
          'uneasiness': 1,
          'delirium': 1,
          'crescendos': 1,
          'educes': 1,
          'rather': 1,
          'stillness': 1,
          'composition': 1,
          'places': 1,
          'equidistant': 1,
          'directly': 1,
          'across': 1,
          'pair': 1,
          'effectively': 1,
          'mirror': 1,
          'apprehensions': 1,
          'intensity': 1,
          'closes': 1,
          'well': 1,
          'stationary': 1,
          'heightens': 1,
          'fears': 1,
          'escapes': 1,
          'deserted': 1,
          'reflection': 1,
          'sole': 1,
          'proprietor': 1,
          'sensibility': 1,
          'amongst': 1,
          'swarm': 1,
          'irrationality': 1,
          'nbecause': 1,
          'track': 1,
          'amplified': 1,
          'perception': 1,
          'desertion': 1,
          'vulnerability': 1,
          'progresses': 1,
          'pans': 1,
          '180': 1,
          'degrees': 1,
          'nthis': 1,
          'unique': 1,
          'pointofview': 1,
          'nwhile': 1,
          'long': 1,
          'dolly': 1,
          'may': 1,
          'objectively': 1,
          'size': 1,
          'panning': 1,
          'belly': 1,
          'distorts': 1,
          'audiences': 1,
          'spatial': 1,
          'reference': 1,
          'exaggerates': 1,
          'claustrophobia': 1,
          'epicenter': 1,
          'something': 1,
          'infinitely': 1,
          'large': 1,
          'close': 1,
          'peoples': 1,
          'contorted': 1,
          'rage': 1,
          'nwith': 1,
          'pivot': 1,
          'center': 1,
          'angry': 1,
          'members': 1,
          'short': 1,
          'radius': 1,
          'offers': 1,
          'feels': 1,
          'like': 1,
          'mercy': 1,
          'langs': 1,
          'us': 1,
          'vulnerable': 1,
          'jail': 1,
          'greater': 1,
          'saw': 1,
          'countrymen': 1,
          'overcome': 1,
          'unjustifiable': 1,
          'hatred': 1,
          'humankind': 1,
          'nlangs': 1,
          'observations': 1,
          'fellow': 1,
          'man': 1,
          'succumbing': 1,
          'indelible': 1,
          'image': 1,
          'malevolent': 1,
          'peril': 1,
          'trapped': 1,
          'burning': 1,
          'cell': 1,
          'dog': 1,
          'rushes': 1,
          'side': 1,
          'martyr': 1,
          'contrast': 1,
          'recklessness': 1,
          'counterparts': 1,
          'nusing': 1,
          'create': 1,
          'elicit': 1,
          'disturbing': 1,
          'images': 1,
          'mentality': 1,
          'depicts': 1,
          'mans': 1,
          'volatility': 1,
          'inconceivable': 1,
          'cruelty': 1,
          'nreprising': 1,
          'induced': 1,
          'question': 1,
          'primeval': 1,
          'impulses': 1,
          'easily': 1,
          'transcend': 1,
          'npos': 1}),
 Counter({'burton': 6,
          'apes': 5,
          'nthe': 5,
          'ending': 5,
          'one': 4,
          'movie': 4,
          'great': 4,
          'wahlberg': 4,
          'planet': 3,
          'story': 3,
          'tim': 3,
          'leo': 3,
          'scenes': 3,
          'nas': 3,
          'looking': 3,
          'film': 2,
          'focused': 2,
          'visuals': 2,
          'thin': 2,
          'character': 2,
          'surprise': 2,
          'nfor': 2,
          'mars': 2,
          'attacks': 2,
          '1968': 2,
          'astronaut': 2,
          'ape': 2,
          'davidson': 2,
          'viewers': 2,
          'us': 2,
          'lack': 2,
          'isnt': 2,
          'dull': 2,
          'bonham': 2,
          'carter': 2,
          'original': 2,
          'monkeys': 2,
          'press': 1,
          'screening': 1,
          'day': 1,
          'past': 1,
          'last': 1,
          'issues': 1,
          'deadline': 1,
          'afforded': 1,
          'opportunity': 1,
          'see': 1,
          'second': 1,
          'time': 1,
          'listen': 1,
          'audience': 1,
          'reactions': 1,
          'read': 1,
          'heap': 1,
          'reviews': 1,
          'writing': 1,
          'piece': 1,
          'chief': 1,
          'complaints': 1,
          'disliked': 1,
          'futuristic': 1,
          'adventure': 1,
          'appear': 1,
          'instead': 1,
          'substance': 1,
          'mark': 1,
          'wahlbergs': 1,
          'colorless': 1,
          'sucked': 1,
          'nto': 1,
          'people': 1,
          'would': 1,
          'like': 1,
          'say': 1,
          'hell': 1,
          'expect': 1,
          'nthis': 1,
          'boys': 1,
          'girls': 1,
          'ntim': 1,
          'movies': 1,
          'art': 1,
          'direction': 1,
          'clunky': 1,
          'stories': 1,
          'blissfully': 1,
          'nasty': 1,
          'disjointed': 1,
          'underrated': 1,
          'n': 1,
          'jonathan': 1,
          'rosenbaum': 1,
          'chicago': 1,
          'reader': 1,
          'two': 1,
          'critics': 1,
          'america': 1,
          'praise': 1,
          'reportedly': 1,
          'tossed': 1,
          'vintage': 1,
          'ntrading': 1,
          'cards': 1,
          'onto': 1,
          'floor': 1,
          'based': 1,
          'ones': 1,
          'landed': 1,
          'face': 1,
          'nburtons': 1,
          'reimagining': 1,
          'lands': 1,
          'rule': 1,
          'men': 1,
          'looks': 1,
          'courtesy': 1,
          'makeup': 1,
          'magician': 1,
          'rick': 1,
          'baker': 1,
          'dazzling': 1,
          'city': 1,
          'wonder': 1,
          'behold': 1,
          'nlike': 1,
          'hits': 1,
          'ground': 1,
          'running': 1,
          'whisking': 1,
          'headspinning': 1,
          'series': 1,
          'solid': 1,
          'oneliners': 1,
          'engaging': 1,
          'vignettes': 1,
          'establishing': 1,
          'sense': 1,
          'thrust': 1,
          'carries': 1,
          'traditional': 1,
          'fight': 1,
          'come': 1,
          'later': 1,
          'consider': 1,
          'nfrom': 1,
          'start': 1,
          'filmmaker': 1,
          'shown': 1,
          'fascination': 1,
          'colorful': 1,
          'misfits': 1,
          'peewee': 1,
          'herman': 1,
          'joker': 1,
          'ed': 1,
          'wood': 1,
          'ackacking': 1,
          'martians': 1,
          'etc': 1,
          'interest': 1,
          'standard': 1,
          'issue': 1,
          'heroes': 1,
          'nso': 1,
          'spends': 1,
          'getting': 1,
          'living': 1,
          'shit': 1,
          'kicked': 1,
          'biggest': 1,
          'guilt': 1,
          'trip': 1,
          'history': 1,
          'dropped': 1,
          'shoulders': 1,
          'color': 1,
          'remember': 1,
          'launches': 1,
          'space': 1,
          'get': 1,
          'monkey': 1,
          'back': 1,
          'nhe': 1,
          'doesnt': 1,
          'want': 1,
          'lead': 1,
          'humanity': 1,
          'romance': 1,
          'pretty': 1,
          'human': 1,
          'estella': 1,
          'warren': 1,
          'dynamic': 1,
          'helena': 1,
          'terrific': 1,
          'equalrights': 1,
          'activist': 1,
          'man': 1,
          'wants': 1,
          'subtle': 1,
          'sly': 1,
          'provides': 1,
          'requisite': 1,
          'shock': 1,
          'dandy': 1,
          'particularly': 1,
          'approaching': 1,
          'authority': 1,
          'figures': 1,
          'admittedly': 1,
          'nearly': 1,
          'satisfying': 1,
          'work': 1,
          'make': 1,
          'simple': 1,
          'connection': 1,
          'write': 1,
          'whole': 1,
          'new': 1,
          'screenplay': 1,
          'boasted': 1,
          'handful': 1,
          'cool': 1,
          'deliciously': 1,
          'hammy': 1,
          'performance': 1,
          'charlton': 1,
          'heston': 1,
          'appears': 1,
          'uncredited': 1,
          'aged': 1,
          'chimp': 1,
          'deathbed': 1,
          'redelivering': 1,
          'classic': 1,
          'line': 1,
          'killer': 1,
          'nbut': 1,
          'suffer': 1,
          'numerous': 1,
          'stretches': 1,
          'punctuated': 1,
          'social': 1,
          'political': 1,
          'messages': 1,
          'delivered': 1,
          'grace': 1,
          'wrecking': 1,
          'ball': 1,
          '2001': 1,
          'offers': 1,
          'different': 1,
          'set': 1,
          'much': 1,
          'cooler': 1,
          'fine': 1,
          'acting': 1,
          'paul': 1,
          'giamatti': 1,
          'roth': 1,
          'good': 1,
          'nit': 1,
          'also': 1,
          'gives': 1,
          'another': 1,
          'chance': 1,
          'experience': 1,
          'skewed': 1,
          'vision': 1,
          'thats': 1,
          'nothing': 1,
          'complain': 1,
          'npos': 1}),
 Counter({'nthe': 19,
          'jedi': 9,
          'film': 8,
          'wars': 8,
          'star': 7,
          'special': 5,
          'effects': 5,
          'dark': 5,
          'side': 5,
          'vader': 5,
          'set': 4,
          'one': 4,
          'obiwan': 4,
          'kenobi': 4,
          'played': 4,
          'princess': 4,
          'leia': 4,
          'different': 4,
          'released': 3,
          'seen': 3,
          'new': 3,
          'standard': 3,
          'c3p0': 3,
          'ship': 3,
          'r2d2': 3,
          'also': 3,
          'creatures': 3,
          'droids': 3,
          'luke': 3,
          'family': 3,
          'nluke': 3,
          'amazing': 3,
          '1977': 2,
          'never': 2,
          'though': 2,
          'plot': 2,
          'creative': 2,
          'ever': 2,
          'ndarth': 2,
          'nben': 2,
          'sir': 2,
          'alec': 2,
          'still': 2,
          'darth': 2,
          'nwhile': 2,
          'message': 2,
          'sell': 2,
          'learns': 2,
          'lukes': 2,
          'nafter': 2,
          'ben': 2,
          'training': 2,
          'two': 2,
          'solo': 2,
          'become': 2,
          'especially': 2,
          'time': 2,
          'realistic': 2,
          'costumes': 2,
          'entire': 2,
          'neven': 2,
          'characters': 2,
          'films': 2,
          'acting': 2,
          'added': 2,
          'something': 1,
          'possible': 1,
          'happened': 1,
          'extraordinary': 1,
          'techniques': 1,
          'nnot': 1,
          'heard': 1,
          'legend': 1,
          'starts': 1,
          'long': 1,
          'ago': 1,
          'warriors': 1,
          'wiped': 1,
          'leader': 1,
          'guinness': 1,
          'alive': 1,
          'today': 1,
          'turned': 1,
          'nyears': 1,
          'killing': 1,
          'around': 1,
          'causing': 1,
          'trouble': 1,
          'nr2d2': 1,
          'call': 1,
          'driods': 1,
          'robots': 1,
          'assistance': 1,
          'humans': 1,
          'attack': 1,
          'carrie': 1,
          'fisher': 1,
          'aboard': 1,
          'inserts': 1,
          'nto': 1,
          'pleading': 1,
          'help': 1,
          'captured': 1,
          'get': 1,
          'away': 1,
          'escape': 1,
          'pod': 1,
          'eventually': 1,
          'lands': 1,
          'remote': 1,
          'planet': 1,
          'tatooine': 1,
          'jawas': 1,
          'small': 1,
          'pick': 1,
          'nthey': 1,
          'bought': 1,
          'skywalkers': 1,
          'mark': 1,
          'hamill': 1,
          'cleaning': 1,
          'found': 1,
          'finds': 1,
          'friend': 1,
          'father': 1,
          'dead': 1,
          'killed': 1,
          'tropps': 1,
          'decides': 1,
          'put': 1,
          'stop': 1,
          'destroy': 1,
          'wants': 1,
          'create': 1,
          'nfirst': 1,
          'must': 1,
          'find': 1,
          'serve': 1,
          'nhan': 1,
          'harrison': 1,
          'ford': 1,
          'sidekick': 1,
          'chewbacca': 1,
          'peter': 1,
          'mayhew': 1,
          'consulted': 1,
          'providing': 1,
          'complete': 1,
          'tasks': 1,
          'necessary': 1,
          'meeting': 1,
          'really': 1,
          'picks': 1,
          'continues': 1,
          'pilot': 1,
          'confronts': 1,
          'many': 1,
          'interesting': 1,
          'events': 1,
          'occur': 1,
          'nstar': 1,
          'epic': 1,
          'original': 1,
          'believe': 1,
          'wonderful': 1,
          'space': 1,
          'scenes': 1,
          'particular': 1,
          'fun': 1,
          'watch': 1,
          'ships': 1,
          'flown': 1,
          'unique': 1,
          'world': 1,
          'scenery': 1,
          'anything': 1,
          'nthere': 1,
          'variety': 1,
          'memorable': 1,
          'pieces': 1,
          'stay': 1,
          'forever': 1,
          'premise': 1,
          'see': 1,
          'throughout': 1,
          'kind': 1,
          'human': 1,
          'nevery': 1,
          'character': 1,
          'extremely': 1,
          'likable': 1,
          'sci': 1,
          'fi': 1,
          'everyones': 1,
          'part': 1,
          'great': 1,
          'guinnesss': 1,
          'concept': 1,
          'pulled': 1,
          'nicely': 1,
          'setting': 1,
          'sound': 1,
          'make': 1,
          'work': 1,
          'nif': 1,
          'messed': 1,
          'would': 1,
          'come': 1,
          'huge': 1,
          'joke': 1,
          'ending': 1,
          'works': 1,
          'well': 1,
          'left': 1,
          'open': 1,
          'sequels': 1,
          'came': 1,
          'afterward': 1,
          'nin': 1,
          'early': 1,
          '1997': 1,
          'edition': 1,
          'remastered': 1,
          'looked': 1,
          'better': 1,
          'na': 1,
          'even': 1,
          'deleted': 1,
          'scene': 1,
          'han': 1,
          'jabba': 1,
          'hutt': 1,
          'return': 1,
          'nthink': 1,
          'thats': 1,
          'enough': 1,
          'non': 1,
          'may': 1,
          '19': 1,
          '1999': 1,
          'episode': 1,
          'phantom': 1,
          'menace': 1,
          'followed': 1,
          'reveal': 1,
          'went': 1,
          'hope': 1,
          'nwith': 1,
          'bound': 1,
          'greatest': 1,
          'tale': 1,
          'told': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          'race': 4,
          'one': 4,
          'laughs': 3,
          'little': 3,
          'comedy': 3,
          'group': 3,
          'locker': 3,
          'first': 3,
          'participants': 3,
          'pear': 3,
          'lovitz': 3,
          'want': 2,
          'nthis': 2,
          'nand': 2,
          'film': 2,
          'people': 2,
          'eccentric': 2,
          'vegas': 2,
          'cleese': 2,
          'bus': 2,
          'silver': 2,
          'city': 2,
          'bag': 2,
          'cleeses': 2,
          'betting': 2,
          'vera': 2,
          'gooding': 2,
          'family': 2,
          'cody': 2,
          'nice': 2,
          'situations': 2,
          'way': 2,
          'museum': 2,
          'fine': 2,
          'bit': 2,
          'nrat': 2,
          'almost': 2,
          'hearty': 1,
          'rat': 1,
          'movie': 1,
          'unpretentious': 1,
          'sneaks': 1,
          'theaters': 1,
          'today': 1,
          'hype': 1,
          'bouncing': 1,
          'theater': 1,
          'seat': 1,
          'fits': 1,
          'neatly': 1,
          'lowbrow': 1,
          'slapstick': 1,
          'school': 1,
          'refreshing': 1,
          'aspect': 1,
          'lack': 1,
          'meanspiritedness': 1,
          'plot': 1,
          'follows': 1,
          'chosen': 1,
          'random': 1,
          'las': 1,
          'casino': 1,
          'owner': 1,
          'john': 1,
          'must': 1,
          'station': 1,
          '700': 1,
          'miles': 1,
          'away': 1,
          'n': 1,
          'ninside': 1,
          'duffel': 1,
          'containing': 1,
          '2': 1,
          'million': 1,
          'open': 1,
          'gets': 1,
          'money': 1,
          'nwhat': 1,
          'doesnt': 1,
          'know': 1,
          'donald': 1,
          'sinclair': 1,
          'anything': 1,
          'im': 1,
          'staging': 1,
          'game': 1,
          'high': 1,
          'rollers': 1,
          'hotel': 1,
          'include': 1,
          'whoopi': 1,
          'goldberg': 1,
          'merrill': 1,
          'lanai': 1,
          'chapman': 1,
          'newly': 1,
          'reunited': 1,
          'mother': 1,
          'daughter': 1,
          'disgraced': 1,
          'pro': 1,
          'football': 1,
          'referee': 1,
          'owen': 1,
          'templeton': 1,
          'cuba': 1,
          'jr': 1,
          'italian': 1,
          'tourist': 1,
          'mr': 1,
          'pollini': 1,
          'rowan': 1,
          'atkinson': 1,
          'randy': 1,
          'jon': 1,
          'bumbling': 1,
          'con': 1,
          'men': 1,
          'duane': 1,
          'blaine': 1,
          'seth': 1,
          'green': 1,
          'vince': 1,
          'vieluf': 1,
          'cynical': 1,
          'young': 1,
          'lawyer': 1,
          'nick': 1,
          'shaffer': 1,
          'breckin': 1,
          'meyer': 1,
          'nvarious': 1,
          'amusing': 1,
          'encounters': 1,
          'mishaps': 1,
          'befall': 1,
          'en': 1,
          'route': 1,
          'nscreenwriter': 1,
          'andy': 1,
          'breckman': 1,
          'adds': 1,
          'touch': 1,
          'racers': 1,
          'try': 1,
          'sabotage': 1,
          'another': 1,
          'sidesplitting': 1,
          'involve': 1,
          'merrills': 1,
          'encounter': 1,
          'squirrel': 1,
          'lady': 1,
          'nutsy': 1,
          'cameo': 1,
          'kathy': 1,
          'bates': 1,
          'owens': 1,
          'commandeering': 1,
          'charter': 1,
          'full': 1,
          'lucille': 1,
          'ball': 1,
          'lookalikes': 1,
          'lucy': 1,
          'convention': 1,
          'brothers': 1,
          'misadventures': 1,
          'hotair': 1,
          'balloon': 1,
          'flying': 1,
          'cow': 1,
          'monster': 1,
          'truck': 1,
          'familys': 1,
          'stopover': 1,
          'barbie': 1,
          'turns': 1,
          'think': 1,
          'situation': 1,
          'example': 1,
          'breckmans': 1,
          'script': 1,
          'builds': 1,
          'nwithout': 1,
          'going': 1,
          'detail': 1,
          'segues': 1,
          'hitlers': 1,
          'touring': 1,
          'car': 1,
          'eva': 1,
          'brauns': 1,
          'dark': 1,
          'lipstick': 1,
          'burning': 1,
          'tongue': 1,
          'culminating': 1,
          'ceremony': 1,
          'honoring': 1,
          'world': 1,
          'war': 1,
          'ii': 1,
          'veterans': 1,
          'races': 1,
          'cast': 1,
          'rate': 1,
          'ncleese': 1,
          'wonderfully': 1,
          'devilish': 1,
          'madcap': 1,
          'whiny': 1,
          'character': 1,
          'grows': 1,
          'romp': 1,
          'dave': 1,
          'thomas': 1,
          'steals': 1,
          'show': 1,
          'deadpan': 1,
          'assistant': 1,
          'man': 1,
          'born': 1,
          'without': 1,
          'personality': 1,
          'directed': 1,
          'jerry': 1,
          'zucker': 1,
          'knows': 1,
          'something': 1,
          'nalong': 1,
          'brother': 1,
          'david': 1,
          'friend': 1,
          'jim': 1,
          'abrahams': 1,
          'responsible': 1,
          'hits': 1,
          'airplane': 1,
          'ruthless': 1,
          'na': 1,
          'throwaway': 1,
          'subplot': 1,
          'good': 1,
          'features': 1,
          'buddies': 1,
          'series': 1,
          'outlandish': 1,
          'including': 1,
          'dealing': 1,
          'hooker': 1,
          'peptobismol': 1,
          'fun': 1,
          'feature': 1,
          'letdown': 1,
          'comes': 1,
          'finale': 1,
          'touchyfeely': 1,
          'sweet': 1,
          'negating': 1,
          'came': 1,
          'summer': 1,
          'sleeper': 1,
          'keep': 1,
          'awake': 1,
          'laughter': 1,
          'watching': 1,
          'around': 1,
          'npos': 1}),
 Counter({'film': 7,
          'original': 6,
          'nthe': 6,
          'like': 5,
          'mitch': 4,
          'station': 3,
          'played': 3,
          'stern': 3,
          'would': 3,
          'nthere': 3,
          'characters': 3,
          'jokes': 3,
          'see': 2,
          'ni': 2,
          'much': 2,
          'basic': 2,
          'plot': 2,
          'around': 2,
          'crystal': 2,
          'nhes': 2,
          'radio': 2,
          'best': 2,
          'character': 2,
          'brother': 2,
          'lovitz': 2,
          'treasure': 2,
          'curlys': 2,
          'cattle': 2,
          'drive': 2,
          'jack': 2,
          'palance': 2,
          'way': 2,
          'done': 2,
          'scenes': 2,
          'desert': 2,
          'well': 2,
          'movie': 2,
          'good': 2,
          'adventure': 2,
          'middle': 2,
          'snake': 2,
          'sequel': 2,
          'surprise': 2,
          'gang': 2,
          'also': 2,
          'chance': 1,
          'sneak': 1,
          'preview': 1,
          'city': 1,
          'slickers': 1,
          'ii': 1,
          'campus': 1,
          'last': 1,
          'night': 1,
          'went': 1,
          'expectation': 1,
          'similar': 1,
          'flavor': 1,
          'made': 1,
          'success': 1,
          'personal': 1,
          'growth': 1,
          'insightful': 1,
          'humor': 1,
          'life': 1,
          'came': 1,
          'away': 1,
          'somewhat': 1,
          'disappointed': 1,
          'regard': 1,
          'getting': 1,
          'latter': 1,
          'former': 1,
          'revolves': 1,
          'billy': 1,
          'plays': 1,
          'robbins': 1,
          'turning': 1,
          'forty': 1,
          'become': 1,
          'manager': 1,
          'worked': 1,
          'given': 1,
          'job': 1,
          'friend': 1,
          'daniel': 1,
          'sympathy': 1,
          'sterns': 1,
          'works': 1,
          'divorce': 1,
          'nhis': 1,
          'loser': 1,
          'younger': 1,
          'john': 1,
          'comes': 1,
          'mitchs': 1,
          'house': 1,
          'bum': 1,
          'money': 1,
          'place': 1,
          'live': 1,
          'wife': 1,
          'try': 1,
          'celebrate': 1,
          'birthday': 1,
          'nduring': 1,
          'celebration': 1,
          'discovers': 1,
          'appears': 1,
          'map': 1,
          'leader': 1,
          'old': 1,
          'hat': 1,
          'nafter': 1,
          'business': 1,
          'trip': 1,
          'las': 1,
          'vegas': 1,
          'stay': 1,
          'extra': 1,
          'days': 1,
          'go': 1,
          'search': 1,
          'non': 1,
          'run': 1,
          'twin': 1,
          'duke': 1,
          'know': 1,
          'nfirst': 1,
          'cinematography': 1,
          'beautifully': 1,
          'especially': 1,
          'outdoor': 1,
          'sights': 1,
          'filmed': 1,
          'development': 1,
          'actors': 1,
          'remain': 1,
          'true': 1,
          'play': 1,
          'without': 1,
          'overplaying': 1,
          'enough': 1,
          'twists': 1,
          'provide': 1,
          'ending': 1,
          'difficult': 1,
          'predict': 1,
          'paced': 1,
          'couple': 1,
          'slow': 1,
          'spots': 1,
          'towards': 1,
          'end': 1,
          'nhumorwise': 1,
          'number': 1,
          'maintained': 1,
          'interest': 1,
          'throughout': 1,
          'memorable': 1,
          'moments': 1,
          'bitten': 1,
          'fewer': 1,
          'laugh': 1,
          'right': 1,
          'nhowever': 1,
          'slight': 1,
          'bitter': 1,
          'aftertaste': 1,
          'mainly': 1,
          'films': 1,
          'manipulation': 1,
          'audience': 1,
          'tries': 1,
          'pull': 1,
          'heartstrings': 1,
          'regarding': 1,
          'close': 1,
          'decided': 1,
          'suck': 1,
          'marrow': 1,
          'friends': 1,
          'butt': 1,
          'nthis': 1,
          'meets': 1,
          'members': 1,
          'group': 1,
          'parts': 1,
          'appeared': 1,
          'unrealistic': 1,
          'whether': 1,
          'stampede': 1,
          'start': 1,
          'didnt': 1,
          'worry': 1,
          'water': 1,
          'tromping': 1,
          'nsome': 1,
          'strenuous': 1,
          'stretches': 1,
          'imagination': 1,
          'required': 1,
          'nsince': 1,
          'objective': 1,
          'find': 1,
          'gold': 1,
          'get': 1,
          'rich': 1,
          'unlike': 1,
          'finding': 1,
          'age': 1,
          'found': 1,
          'harder': 1,
          'empathize': 1,
          'journey': 1,
          'noverall': 1,
          'id': 1,
          'say': 1,
          'entertaining': 1,
          'humorous': 1,
          'storyline': 1,
          'deficiencies': 1,
          'making': 1,
          'less': 1,
          'worthy': 1,
          'nit': 1,
          'may': 1,
          'worth': 1,
          'full': 1,
          'price': 1,
          'admission': 1,
          'matinee': 1,
          'better': 1,
          'bargain': 1,
          'npos': 1}),
 Counter({'one': 6,
          'u571': 6,
          'german': 6,
          'submarine': 5,
          'movies': 5,
          'like': 5,
          'crew': 5,
          'nthe': 5,
          'sequence': 5,
          'film': 5,
          'films': 3,
          'people': 3,
          'get': 3,
          'happen': 3,
          'ni': 3,
          'yet': 2,
          'handful': 2,
          'making': 2,
          'fascinating': 2,
          'arent': 2,
          'plane': 2,
          'nand': 2,
          'done': 2,
          'comes': 2,
          'say': 2,
          'ugh': 2,
          'another': 2,
          'movie': 2,
          'well': 2,
          'entertainment': 2,
          'mcconaughey': 2,
          'executive': 2,
          'first': 2,
          'opening': 2,
          'entire': 2,
          'english': 2,
          'would': 2,
          'plot': 2,
          'us': 2,
          'action': 2,
          'audience': 2,
          'much': 2,
          'though': 2,
          'end': 2,
          'going': 2,
          'cgi': 2,
          'effect': 2,
          'genre': 1,
          'seems': 1,
          'intriguing': 1,
          'compelling': 1,
          'types': 1,
          'storytelling': 1,
          'nthink': 1,
          'nthese': 1,
          'completely': 1,
          'based': 1,
          'reality': 1,
          'ever': 1,
          'general': 1,
          'public': 1,
          'nthey': 1,
          'take': 1,
          'place': 1,
          'train': 1,
          'anybody': 1,
          'outer': 1,
          'space': 1,
          'either': 1,
          'ones': 1,
          'stuff': 1,
          'nwhen': 1,
          'new': 1,
          'dont': 1,
          'hear': 1,
          'anyone': 1,
          'tend': 1,
          'boxing': 1,
          'nlook': 1,
          'modern': 1,
          'involve': 1,
          'submarines': 1,
          'das': 1,
          'boot': 1,
          'abyss': 1,
          'hunt': 1,
          'red': 1,
          'october': 1,
          'crimson': 1,
          'tide': 1,
          'nall': 1,
          'regarded': 1,
          'topnotch': 1,
          'ngladly': 1,
          'joining': 1,
          'bunch': 1,
          'stars': 1,
          'matthew': 1,
          'officer': 1,
          'u': 1,
          'naval': 1,
          'world': 1,
          'war': 1,
          'ii': 1,
          'nwe': 1,
          'learn': 1,
          'denied': 1,
          'recommendation': 1,
          'command': 1,
          'superior': 1,
          'bill': 1,
          'paxton': 1,
          'nmcconaugheys': 1,
          'receives': 1,
          'orders': 1,
          'boarding': 1,
          'disabled': 1,
          'steal': 1,
          'enigma': 1,
          'communications': 1,
          'encoding': 1,
          'device': 1,
          'stumped': 1,
          'allied': 1,
          'intelligence': 1,
          'mission': 1,
          'goes': 1,
          'horribly': 1,
          'wrong': 1,
          'however': 1,
          'result': 1,
          'captured': 1,
          'become': 1,
          'trapped': 1,
          'aboard': 1,
          'enemy': 1,
          'waters': 1,
          'great': 1,
          'thing': 1,
          'attack': 1,
          'sets': 1,
          'events': 1,
          'rest': 1,
          'motion': 1,
          'nits': 1,
          'tense': 1,
          'exciting': 1,
          'applaud': 1,
          'filmmakers': 1,
          'copping': 1,
          'instead': 1,
          'keeping': 1,
          'subtitles': 1,
          'nmost': 1,
          'scene': 1,
          'long': 1,
          'panicked': 1,
          'speaking': 1,
          'right': 1,
          'away': 1,
          'nonce': 1,
          'gets': 1,
          'moving': 1,
          'gives': 1,
          'wonder': 1,
          'ok': 1,
          'stakes': 1,
          'keep': 1,
          'raising': 1,
          'decision': 1,
          'excellent': 1,
          'actionthriller': 1,
          'even': 1,
          'knows': 1,
          'lot': 1,
          'fun': 1,
          'getting': 1,
          'two': 1,
          'minor': 1,
          'complaints': 1,
          'scenes': 1,
          'follow': 1,
          'nwhile': 1,
          'purpose': 1,
          'introduce': 1,
          'characters': 1,
          'story': 1,
          'feel': 1,
          'could': 1,
          'quicker': 1,
          'less': 1,
          'conventionally': 1,
          'mean': 1,
          'really': 1,
          'see': 1,
          'ships': 1,
          'wedding': 1,
          'nbecause': 1,
          'know': 1,
          'exactly': 1,
          'whats': 1,
          'groom': 1,
          'nmy': 1,
          'gripe': 1,
          'finale': 1,
          'ntheres': 1,
          'explosion': 1,
          'ends': 1,
          'weakest': 1,
          'looking': 1,
          'effects': 1,
          'since': 1,
          'presidents': 1,
          'crashed': 1,
          'ocean': 1,
          'air': 1,
          'force': 1,
          'stress': 1,
          'enough': 1,
          'nuntil': 1,
          'made': 1,
          'look': 1,
          'model': 1,
          'stick': 1,
          'using': 1,
          'models': 1,
          'nyes': 1,
          'historically': 1,
          'incorrect': 1,
          'surely': 1,
          'specifics': 1,
          'onboard': 1,
          'tell': 1,
          'couldnt': 1,
          'overall': 1,
          'point': 1,
          'nit': 1,
          'succeeds': 1,
          'fantastically': 1,
          'npg13': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'david': 5,
          'film': 5,
          'back': 4,
          'father': 4,
          'nhis': 4,
          'see': 3,
          'life': 3,
          'helfgott': 3,
          'told': 3,
          'well': 3,
          'nwe': 3,
          'rush': 3,
          'sound': 3,
          'boy': 2,
          'damaged': 2,
          'world': 2,
          'breakdown': 2,
          'story': 2,
          'pressures': 2,
          'upon': 2,
          'demanding': 2,
          'australia': 2,
          'via': 2,
          'front': 2,
          'music': 2,
          'house': 2,
          'teacher': 2,
          'home': 2,
          'dark': 2,
          'piano': 2,
          'linear': 2,
          'works': 2,
          'uplifting': 2,
          'return': 2,
          'role': 2,
          'actors': 2,
          'teenagedavid': 2,
          'work': 2,
          'first': 2,
          'whilst': 2,
          'babbling': 2,
          'women': 2,
          'wants': 2,
          'play': 2,
          'slow': 2,
          'motion': 2,
          'thumping': 2,
          'share': 1,
          'descent': 1,
          'darkness': 1,
          'talented': 1,
          'pianist': 1,
          'nyears': 1,
          'later': 1,
          'subsequent': 1,
          'resurfacing': 1,
          'mid': 1,
          '80s': 1,
          'man': 1,
          'walks': 1,
          'rainstorm': 1,
          'movie': 1,
          'charts': 1,
          'causes': 1,
          'mental': 1,
          'nbased': 1,
          'australian': 1,
          'rich': 1,
          'exploration': 1,
          'drilling': 1,
          'childgenius': 1,
          'compounded': 1,
          'looming': 1,
          'shadow': 1,
          'domineering': 1,
          'nin': 1,
          '1950s': 1,
          'emerged': 1,
          'child': 1,
          'prodigy': 1,
          'traces': 1,
          'relationship': 1,
          'whose': 1,
          'encouragement': 1,
          'comes': 1,
          'cost': 1,
          'beyond': 1,
          'black': 1,
          'white': 1,
          'keys': 1,
          'ndavid': 1,
          'offered': 1,
          'places': 1,
          'usa': 1,
          'refuses': 1,
          'let': 1,
          'leave': 1,
          'effect': 1,
          'cleverly': 1,
          'single': 1,
          'reverse': 1,
          'tracked': 1,
          'shot': 1,
          'sobbing': 1,
          'doorway': 1,
          'teachers': 1,
          'nhe': 1,
          'lit': 1,
          'external': 1,
          'lights': 1,
          'isnt': 1,
          'pull': 1,
          'rooms': 1,
          'window': 1,
          'curtains': 1,
          'open': 1,
          'nthere': 1,
          'pool': 1,
          'blackness': 1,
          'grand': 1,
          'ndavids': 1,
          'fall': 1,
          'cliff': 1,
          'begun': 1,
          'ninstead': 1,
          'mode': 1,
          'shine': 1,
          'jumps': 1,
          'around': 1,
          'time': 1,
          'ala': 1,
          'pulp': 1,
          'fiction': 1,
          'nthis': 1,
          'narrative': 1,
          'device': 1,
          'teenager': 1,
          'london': 1,
          'mentalpatient': 1,
          'various': 1,
          'snippets': 1,
          'neatly': 1,
          'loops': 1,
          'conclusion': 1,
          'nadulthelfgotts': 1,
          'light': 1,
          'fashion': 1,
          'lead': 1,
          'played': 1,
          '3': 1,
          'different': 1,
          'taylor': 1,
          'adultdavid': 1,
          'standing': 1,
          'nwhilst': 1,
          'known': 1,
          'tv': 1,
          'think': 1,
          'major': 1,
          'cinema': 1,
          'clearly': 1,
          'keeps': 1,
          'quoting': 1,
          'daddy': 1,
          'word': 1,
          'torrent': 1,
          'cuddles': 1,
          'strangers': 1,
          'grabs': 1,
          'breasts': 1,
          'touching': 1,
          'funny': 1,
          'ntaylors': 1,
          'sympathy': 1,
          'producing': 1,
          'mute': 1,
          'witness': 1,
          'gradual': 1,
          'keep': 1,
          'building': 1,
          'rachmaninovs': 1,
          '3rd': 1,
          'start': 1,
          'simple': 1,
          'mozart': 1,
          'ntechnically': 1,
          'beautiful': 1,
          'lot': 1,
          'thought': 1,
          'gone': 1,
          'production': 1,
          'ni': 1,
          'particularly': 1,
          'like': 1,
          'use': 1,
          'effects': 1,
          'none': 1,
          'scene': 1,
          'adulthelfgott': 1,
          'happily': 1,
          'car': 1,
          'rain': 1,
          'windshield': 1,
          'wipers': 1,
          'fades': 1,
          'voice': 1,
          'nwith': 1,
          'clever': 1,
          'subtlety': 1,
          'wiper': 1,
          'appears': 1,
          'morph': 1,
          'rhythmic': 1,
          'beat': 1,
          'image': 1,
          'dissolves': 1,
          'realise': 1,
          'applause': 1,
          'crowd': 1,
          'nbut': 1,
          'us': 1,
          'clapped': 1,
          'youngdavid': 1,
          'walking': 1,
          'stage': 1,
          'public': 1,
          'show': 1,
          'would': 1,
          'expect': 1,
          'subject': 1,
          'matter': 1,
          'critical': 1,
          'nand': 1,
          'miming': 1,
          'playing': 1,
          'faultless': 1,
          'apparently': 1,
          'didnt': 1,
          'mime': 1,
          'really': 1,
          'nhelfgotts': 1,
          'certainly': 1,
          'without': 1,
          'sympathetic': 1,
          'people': 1,
          'nindeed': 1,
          'normal': 1,
          'accelerated': 1,
          'chance': 1,
          'meetings': 1,
          'two': 1,
          'special': 1,
          'ultimately': 1,
          'magic': 1,
          'piece': 1,
          'theatre': 1,
          'craft': 1,
          'nit': 1,
          'shows': 1,
          'help': 1,
          'god': 1,
          'find': 1,
          'way': 1,
          'npos': 1}),
 Counter({'war': 3,
          'reality': 3,
          'ryan': 3,
          'nthe': 3,
          'movie': 3,
          'forget': 3,
          'today': 2,
          'spielberg': 2,
          'home': 2,
          'hanks': 2,
          'ww': 2,
          'ii': 2,
          'time': 2,
          'us': 2,
          'made': 2,
          'became': 1,
          'seeing': 1,
          'screening': 1,
          'saving': 1,
          'priivate': 1,
          'nsteve': 1,
          'goes': 1,
          'beyond': 1,
          'latest': 1,
          'production': 1,
          'audience': 1,
          'tossed': 1,
          'theatre': 1,
          'witnessing': 1,
          'horror': 1,
          'nplease': 1,
          'keep': 1,
          'kids': 1,
          'r': 1,
          'rating': 1,
          'ntom': 1,
          'stunning': 1,
          'capt': 1,
          'john': 1,
          'miller': 1,
          'set': 1,
          'france': 1,
          'rescue': 1,
          'return': 1,
          'soldier': 1,
          'private': 1,
          'matt': 1,
          'damon': 1,
          'lost': 1,
          'three': 1,
          'brothers': 1,
          'nspielberg': 1,
          'takes': 1,
          'inside': 1,
          'heads': 1,
          'individuals': 1,
          'face': 1,
          'death': 1,
          'horrific': 1,
          'battle': 1,
          'scenes': 1,
          'nprivate': 1,
          'everyone': 1,
          'felt': 1,
          'right': 1,
          'like': 1,
          'reminds': 1,
          'sacrifices': 1,
          'fighting': 1,
          'men': 1,
          'women': 1,
          'nwe': 1,
          'must': 1,
          'ever': 1,
          'many': 1,
          'gave': 1,
          'ultimate': 1,
          'sacrifice': 1,
          'lives': 1,
          'may': 1,
          'live': 1,
          'freedom': 1,
          'nfor': 1,
          'thank': 1,
          'steve': 1,
          'making': 1,
          'never': 1,
          'academy': 1,
          'tom': 1,
          'come': 1,
          'april': 1,
          '1999': 1,
          'another': 1,
          'well': 1,
          'deserved': 1,
          'oscar': 1,
          'toms': 1,
          'posession': 1,
          'npos': 1}),
 Counter({'film': 4,
          'dantes': 3,
          'peak': 3,
          'really': 3,
          'ni': 3,
          'well': 2,
          'first': 2,
          'twister': 2,
          'volcano': 2,
          'movie': 2,
          'didnt': 2,
          'see': 2,
          'possible': 2,
          'couldnt': 2,
          'want': 2,
          'thrown': 2,
          'many': 2,
          'nthey': 2,
          'ill': 1,
          'admit': 1,
          'heard': 1,
          'could': 1,
          'smell': 1,
          'started': 1,
          'nso': 1,
          'seems': 1,
          'full': 1,
          'fledged': 1,
          'return': 1,
          '70s': 1,
          'disaster': 1,
          'era': 1,
          'nwith': 1,
          'soon': 1,
          'flood': 1,
          'james': 1,
          'camerons': 1,
          'extremly': 1,
          'expensive': 1,
          'titanic': 1,
          'nill': 1,
          'say': 1,
          'enjoyed': 1,
          'much': 1,
          'npart': 1,
          'biased': 1,
          'usually': 1,
          'enjoy': 1,
          'anything': 1,
          'tommy': 1,
          'lee': 1,
          'jones': 1,
          'appears': 1,
          'nive': 1,
          'reading': 1,
          'lot': 1,
          'cheezy': 1,
          'hokey': 1,
          'think': 1,
          'entire': 1,
          'get': 1,
          'bored': 1,
          'easily': 1,
          'bore': 1,
          'minute': 1,
          'nanother': 1,
          'thing': 1,
          'boy': 1,
          'bitching': 1,
          'today': 1,
          'bothers': 1,
          'critics': 1,
          'go': 1,
          'thats': 1,
          'nyou': 1,
          'know': 1,
          'give': 1,
          'bloody': 1,
          'damn': 1,
          'nits': 1,
          'freaking': 1,
          'dont': 1,
          'reality': 1,
          'face': 1,
          'able': 1,
          'impossible': 1,
          'might': 1,
          'reviewers': 1,
          'seen': 1,
          'one': 1,
          'movies': 1,
          'nthe': 1,
          'special': 1,
          'effects': 1,
          'second': 1,
          'star': 1,
          'feature': 1,
          'amazing': 1,
          'found': 1,
          'hard': 1,
          'sometimes': 1,
          'believe': 1,
          'indeed': 1,
          'fx': 1,
          'la': 1,
          'burning': 1,
          'ground': 1,
          'incredible': 1,
          'job': 1,
          'come': 1,
          'oscar': 1,
          'time': 1,
          'remember': 1,
          'notice': 1,
          'better': 1,
          'way': 1,
          'npos': 1}),
 Counter({'jackie': 13,
          'film': 11,
          'films': 8,
          'mr': 8,
          'brown': 8,
          'pulp': 5,
          'fiction': 5,
          'tarantino': 5,
          'grier': 5,
          'characters': 5,
          'hes': 4,
          'tarantinos': 4,
          'new': 4,
          'may': 3,
          'years': 3,
          'feature': 3,
          'year': 3,
          'pam': 3,
          'ordell': 3,
          'max': 3,
          'robert': 3,
          'forster': 3,
          'nthe': 3,
          'best': 3,
          'marks': 3,
          '1970s': 3,
          'tim': 3,
          'whose': 3,
          'quentin': 2,
          'screenplay': 2,
          'another': 2,
          'well': 2,
          'one': 2,
          'single': 2,
          'arent': 2,
          '000': 2,
          'shes': 2,
          'michael': 2,
          'cherry': 2,
          'based': 2,
          'de': 2,
          'rat': 2,
          'clever': 2,
          'twists': 2,
          'turns': 2,
          'first': 2,
          'nwhile': 2,
          'narrative': 2,
          'lead': 2,
          'music': 2,
          'soundtrack': 2,
          'even': 2,
          'opening': 2,
          'title': 2,
          'sequence': 2,
          'ms': 2,
          'nof': 2,
          'course': 2,
          'nothing': 2,
          'casting': 2,
          'although': 2,
          'understated': 2,
          'roth': 2,
          'unspoken': 2,
          'part': 2,
          'often': 2,
          'storytelling': 2,
          'nthis': 2,
          'range': 2,
          'character': 2,
          'career': 2,
          'role': 2,
          'nand': 2,
          'note': 1,
          'consider': 1,
          'portions': 1,
          'following': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'nduring': 1,
          'three': 1,
          'since': 1,
          'release': 1,
          'groundbreaking': 1,
          'success': 1,
          'cinematic': 1,
          'output': 1,
          'creator': 1,
          'surprisingly': 1,
          'low': 1,
          'noh': 1,
          'busy': 1,
          'talk': 1,
          'show': 1,
          'circuit': 1,
          'taking': 1,
          'small': 1,
          'roles': 1,
          'various': 1,
          'overseeing': 1,
          'production': 1,
          'dusk': 1,
          'till': 1,
          'dawn': 1,
          'making': 1,
          'cameo': 1,
          'appearances': 1,
          'television': 1,
          'shows': 1,
          'providing': 1,
          'vignette': 1,
          'illfated': 1,
          'anthology': 1,
          'four': 1,
          'rooms': 1,
          'everything': 1,
          'seems': 1,
          'except': 1,
          'direct': 1,
          'featurelength': 1,
          'nits': 1,
          'long': 1,
          'intermission': 1,
          'projects': 1,
          'dizzying': 1,
          'peak': 1,
          'reached': 1,
          'made': 1,
          'anticipated': 1,
          'third': 1,
          'cements': 1,
          'reputation': 1,
          'important': 1,
          'american': 1,
          'filmmaker': 1,
          'emerge': 1,
          '1990s': 1,
          'nthings': 1,
          'going': 1,
          'nshes': 1,
          '44': 1,
          'old': 1,
          'stuck': 1,
          'deadend': 1,
          'job': 1,
          '16': 1,
          'plus': 1,
          'retirement': 1,
          'benefits': 1,
          'worth': 1,
          'damn': 1,
          'flight': 1,
          'attendant': 1,
          'worst': 1,
          'airline': 1,
          'north': 1,
          'america': 1,
          'caught': 1,
          'airport': 1,
          'atf': 1,
          'agent': 1,
          'ray': 1,
          'nicolette': 1,
          'portrayed': 1,
          'terrific': 1,
          'childlike': 1,
          'enthusiasm': 1,
          'keaton': 1,
          'police': 1,
          'officer': 1,
          'mark': 1,
          'dargus': 1,
          'bowen': 1,
          'smuggling': 1,
          '50': 1,
          'mexico': 1,
          'gunrunner': 1,
          'robbie': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'bailed': 1,
          'unassuming': 1,
          'bail': 1,
          'bondsman': 1,
          'loquacious': 1,
          'hermosa': 1,
          'beach': 1,
          'house': 1,
          'horny': 1,
          'bonghitting': 1,
          'surfer': 1,
          'girl': 1,
          'melanie': 1,
          'bridget': 1,
          'fonda': 1,
          'agreeable': 1,
          'crony': 1,
          'louis': 1,
          'gara': 1,
          'niro': 1,
          'hang': 1,
          'operates': 1,
          'policy': 1,
          'dead': 1,
          'soon': 1,
          'silence': 1,
          'nmeanwhile': 1,
          'authorities': 1,
          'target': 1,
          'want': 1,
          'help': 1,
          'arranging': 1,
          'sting': 1,
          'tune': 1,
          'halfmillion': 1,
          'dollars': 1,
          'nonly': 1,
          'series': 1,
          'doublecrosses': 1,
          'able': 1,
          'gain': 1,
          'upper': 1,
          'hand': 1,
          'nemeses': 1,
          'nalthough': 1,
          'produced': 1,
          'adaptation': 1,
          'elmore': 1,
          'leonard': 1,
          'novel': 1,
          'rum': 1,
          'punch': 1,
          'theres': 1,
          'mistaking': 1,
          'distinctive': 1,
          'fingerprints': 1,
          'adhered': 1,
          'closely': 1,
          'source': 1,
          'material': 1,
          'sense': 1,
          'setting': 1,
          'relocated': 1,
          'los': 1,
          'angeles': 1,
          'black': 1,
          'nin': 1,
          'terms': 1,
          'ambiance': 1,
          'harkens': 1,
          'back': 1,
          'walltowall': 1,
          'funk': 1,
          'soul': 1,
          'drowning': 1,
          'nondescript': 1,
          'look': 1,
          'sets': 1,
          'credit': 1,
          'echo': 1,
          'vintage': 1,
          'productions': 1,
          'featuring': 1,
          'wordlessly': 1,
          'striding': 1,
          'lax': 1,
          'funky': 1,
          'blaring': 1,
          'away': 1,
          'speakers': 1,
          'emblematic': 1,
          'era': 1,
          'timeframe': 1,
          'fact': 1,
          '1995': 1,
          'atmosphere': 1,
          'decidedly': 1,
          'retro': 1,
          'screams': 1,
          'two': 1,
          'leads': 1,
          'caper': 1,
          'intrigue': 1,
          'fun': 1,
          'watch': 1,
          'plot': 1,
          'backstabbing': 1,
          'deceptions': 1,
          'deliciously': 1,
          'unfold': 1,
          'strength': 1,
          'quiet': 1,
          'relationship': 1,
          'developed': 1,
          'kiss': 1,
          'perhaps': 1,
          'tender': 1,
          'scene': 1,
          'ntenderness': 1,
          'nsure': 1,
          'thereve': 1,
          'moments': 1,
          'sweetness': 1,
          'prior': 1,
          'affectionate': 1,
          'exchanges': 1,
          'bruce': 1,
          'willis': 1,
          'maria': 1,
          'madeiros': 1,
          'unflagging': 1,
          'dedication': 1,
          'shared': 1,
          'amanda': 1,
          'plummer': 1,
          'reservoir': 1,
          'dogs': 1,
          'deep': 1,
          'bond': 1,
          'develops': 1,
          'harvey': 1,
          'keitel': 1,
          'typified': 1,
          'manic': 1,
          'energy': 1,
          'unexpected': 1,
          'outbursts': 1,
          'violence': 1,
          'wordy': 1,
          'banter': 1,
          'nthese': 1,
          'staples': 1,
          'work': 1,
          'present': 1,
          'whats': 1,
          'different': 1,
          'facet': 1,
          'willingness': 1,
          'imbue': 1,
          'poignant': 1,
          'emotional': 1,
          'undercurrent': 1,
          'patience': 1,
          'draw': 1,
          'several': 1,
          'scenes': 1,
          'great': 1,
          'deliberation': 1,
          'effective': 1,
          'demonstration': 1,
          'prohibits': 1,
          'pigeonholing': 1,
          'simply': 1,
          'helmer': 1,
          'slick': 1,
          'hip': 1,
          'crime': 1,
          'dramas': 1,
          'fasttalking': 1,
          'lowlifes': 1,
          'heralds': 1,
          'bonafide': 1,
          'multifaceted': 1,
          'talent': 1,
          'real': 1,
          'deal': 1,
          'aspect': 1,
          'probably': 1,
          'embodied': 1,
          'worldweary': 1,
          'sensitive': 1,
          'exceedinglyprofessional': 1,
          'attraction': 1,
          'touching': 1,
          'nmr': 1,
          'forsters': 1,
          'nuanced': 1,
          'performance': 1,
          'creates': 1,
          'amiable': 1,
          'poignancy': 1,
          'gazes': 1,
          'smile': 1,
          'along': 1,
          'nmuch': 1,
          'press': 1,
          'given': 1,
          'blaxploitationera': 1,
          'icon': 1,
          'wags': 1,
          'buzzing': 1,
          'bolster': 1,
          'john': 1,
          'travoltas': 1,
          'thensagging': 1,
          'nas': 1,
          'solid': 1,
          'forces': 1,
          'test': 1,
          'ni': 1,
          'take': 1,
          'exception': 1,
          'claim': 1,
          'resurrection': 1,
          'though': 1,
          'working': 1,
          'steadily': 1,
          'directtovideo': 1,
          'action': 1,
          'flicks': 1,
          'also': 1,
          'recent': 1,
          'theatrical': 1,
          'releases': 1,
          'burtons': 1,
          'mars': 1,
          'attacks': 1,
          'larry': 1,
          'cohens': 1,
          'original': 1,
          'gangstas': 1,
          'teamed': 1,
          'true': 1,
          'godsend': 1,
          'meaty': 1,
          'rarity': 1,
          'actress': 1,
          'let': 1,
          'alone': 1,
          'age': 1,
          'current': 1,
          'status': 1,
          'industry': 1,
          'disappoint': 1,
          'looking': 1,
          'clone': 1,
          'tremendous': 1,
          'growth': 1,
          'director': 1,
          'horizons': 1,
          'rapidly': 1,
          'expanding': 1,
          'characterizations': 1,
          'never': 1,
          'better': 1,
          'doesnt': 1,
          'really': 1,
          'warrant': 1,
          'running': 1,
          'time': 1,
          '155': 1,
          'minutes': 1,
          'filled': 1,
          'sumptuous': 1,
          'riches': 1,
          'ranging': 1,
          'brashness': 1,
          'vivid': 1,
          'entertaining': 1,
          'inconsequential': 1,
          'conversations': 1,
          'wasnt': 1,
          'unengaging': 1,
          'moment': 1,
          'nwith': 1,
          'impressive': 1,
          'trio': 1,
          'belt': 1,
          'itll': 1,
          'interesting': 1,
          'see': 1,
          'tries': 1,
          'next': 1,
          'npos': 1}),
 Counter({'film': 9,
          'last': 7,
          'night': 7,
          'would': 6,
          'mckellar': 5,
          'people': 5,
          'ni': 5,
          'end': 4,
          'world': 4,
          'nthe': 4,
          'never': 4,
          'played': 4,
          'going': 3,
          'movie': 3,
          'nmckellar': 3,
          'man': 3,
          'wants': 3,
          'husband': 3,
          'nhe': 3,
          'find': 3,
          'could': 2,
          'earths': 2,
          'existence': 2,
          'event': 2,
          'trying': 2,
          'characters': 2,
          'attempt': 2,
          'material': 2,
          'alone': 2,
          'sandra': 2,
          'oh': 2,
          'day': 2,
          'gas': 2,
          'final': 2,
          'months': 2,
          'see': 2,
          'need': 2,
          'understand': 2,
          'buy': 2,
          'together': 2,
          'ending': 2,
          'wanted': 2,
          'know': 2,
          'fact': 2,
          'didnt': 2,
          'minds': 2,
          'one': 2,
          'aka': 1,
          'tagged': 1,
          'says': 1,
          'feel': 1,
          'fine': 1,
          'n': 1,
          'planet': 1,
          'precisely': 1,
          'midnight': 1,
          'january': 1,
          '1st': 1,
          '2000': 1,
          'nhow': 1,
          'scientists': 1,
          'accurately': 1,
          'able': 1,
          'predict': 1,
          'catastrophic': 1,
          'occur': 1,
          'explained': 1,
          'nnor': 1,
          'nthroughout': 1,
          'entire': 1,
          'explanation': 1,
          'given': 1,
          'happening': 1,
          'nin': 1,
          'also': 1,
          'wrote': 1,
          'directed': 1,
          'seems': 1,
          'transcend': 1,
          'genre': 1,
          'nhes': 1,
          'attempted': 1,
          'make': 1,
          'deals': 1,
          'life': 1,
          'contains': 1,
          'science': 1,
          'fiction': 1,
          'elements': 1,
          'allows': 1,
          'viewer': 1,
          'concentrate': 1,
          'feelings': 1,
          'actions': 1,
          'largely': 1,
          'successful': 1,
          'rise': 1,
          'set': 1,
          'toronto': 1,
          'follows': 1,
          'several': 1,
          'various': 1,
          'escapades': 1,
          'ntheres': 1,
          'plays': 1,
          'moment': 1,
          'occurs': 1,
          'keeps': 1,
          'getting': 1,
          'interrupted': 1,
          'woman': 1,
          'search': 1,
          'nher': 1,
          'david': 1,
          'cronenberg': 1,
          'spending': 1,
          'working': 1,
          'company': 1,
          'informing': 1,
          'keep': 1,
          'providing': 1,
          'right': 1,
          'nfinally': 1,
          'theres': 1,
          'mckellars': 1,
          'friend': 1,
          'callum': 1,
          'keith': 1,
          'rennie': 1,
          'spent': 1,
          'every': 1,
          'sexual': 1,
          'perversion': 1,
          'think': 1,
          'crafted': 1,
          'gang': 1,
          'interesting': 1,
          'ive': 1,
          'seen': 1,
          'nthese': 1,
          'felt': 1,
          'real': 1,
          'especially': 1,
          'character': 1,
          'nwe': 1,
          'desperation': 1,
          'utter': 1,
          'hours': 1,
          'nrennie': 1,
          'good': 1,
          'literally': 1,
          'try': 1,
          'everything': 1,
          'dies': 1,
          'exudes': 1,
          'charm': 1,
          'likeablity': 1,
          'surprising': 1,
          'rooting': 1,
          'get': 1,
          'nbut': 1,
          'biggest': 1,
          'surprise': 1,
          'knew': 1,
          'talented': 1,
          'director': 1,
          'idea': 1,
          'act': 1,
          'well': 1,
          'nhis': 1,
          'insistence': 1,
          'much': 1,
          'dismay': 1,
          'parents': 1,
          'something': 1,
          'difficult': 1,
          'reasons': 1,
          'doesnt': 1,
          'whole': 1,
          'notion': 1,
          'everyones': 1,
          'die': 1,
          'immediately': 1,
          'companionship': 1,
          'realizes': 1,
          'relationship': 1,
          'forced': 1,
          'sake': 1,
          'gives': 1,
          'brilliant': 1,
          'performance': 1,
          'hope': 1,
          'alternates': 1,
          'directing': 1,
          'acting': 1,
          'nmy': 1,
          'quibble': 1,
          'really': 1,
          'hanging': 1,
          'times': 1,
          'appreciate': 1,
          'want': 1,
          'rule': 1,
          'study': 1,
          'human': 1,
          'behavious': 1,
          'nhowever': 1,
          'telling': 1,
          'audience': 1,
          'cause': 1,
          'destruction': 1,
          'hes': 1,
          'left': 1,
          'big': 1,
          'question': 1,
          'throughout': 1,
          'nanother': 1,
          'problem': 1,
          'anybody': 1,
          'panicking': 1,
          'imagine': 1,
          'nothing': 1,
          'done': 1,
          'large': 1,
          'segment': 1,
          'population': 1,
          'ninstead': 1,
          'treated': 1,
          'shots': 1,
          'giant': 1,
          'crowd': 1,
          'partying': 1,
          'like': 1,
          'new': 1,
          'years': 1,
          'eve': 1,
          'everyone': 1,
          'completely': 1,
          'accepted': 1,
          'fate': 1,
          'nno': 1,
          'urge': 1,
          'rage': 1,
          'dying': 1,
          'light': 1,
          'ndespite': 1,
          'small': 1,
          'problems': 1,
          'best': 1,
          'movies': 1,
          'year': 1,
          'nas': 1,
          'opposed': 1,
          'moronic': 1,
          'armageddon': 1,
          'treats': 1,
          'subject': 1,
          'hand': 1,
          'maturity': 1,
          'believabilty': 1,
          'nand': 1,
          'bruce': 1,
          'willis': 1,
          'shows': 1,
          'save': 1,
          'npos': 1}),
 Counter({'antz': 11,
          'bugs': 9,
          'really': 6,
          'also': 6,
          'life': 5,
          'like': 5,
          'still': 5,
          'film': 5,
          'nthe': 5,
          'story': 4,
          'clever': 4,
          'lead': 4,
          'animated': 4,
          'toy': 3,
          'allen': 3,
          'totally': 3,
          'innocent': 3,
          'one': 3,
          'films': 3,
          'character': 3,
          'final': 3,
          'anything': 3,
          'small': 3,
          'end': 3,
          'basically': 2,
          'witty': 2,
          'intelligent': 2,
          'take': 2,
          'woody': 2,
          'something': 2,
          'never': 2,
          'fun': 2,
          'engaging': 2,
          'n': 2,
          'similar': 2,
          'disney': 2,
          'completely': 2,
          'even': 2,
          'consumption': 2,
          'entertaining': 2,
          'nit': 2,
          'ant': 2,
          'colony': 2,
          'world': 2,
          'seen': 2,
          'better': 2,
          'instead': 2,
          'amazing': 2,
          'visual': 2,
          'technology': 2,
          'least': 2,
          'wit': 2,
          'flik': 2,
          'foley': 2,
          'z': 2,
          'get': 2,
          'menacing': 2,
          'spacey': 2,
          'nand': 2,
          'come': 2,
          'giant': 2,
          'grasshoppers': 2,
          'away': 2,
          'help': 2,
          'group': 2,
          'bug': 2,
          'wild': 2,
          'na': 2,
          'brag': 2,
          'three': 2,
          'computer': 2,
          'created': 2,
          'may': 1,
          'close': 1,
          'ni': 1,
          'liked': 1,
          'yes': 1,
          'temerity': 1,
          'chance': 1,
          'put': 1,
          'perhaps': 1,
          'years': 1,
          'inspired': 1,
          'casting': 1,
          'fact': 1,
          'missing': 1,
          'im': 1,
          'first': 1,
          'admit': 1,
          'nmaybe': 1,
          'lets': 1,
          'go': 1,
          'takes': 1,
          'real': 1,
          'obsessed': 1,
          'orwellian': 1,
          'message': 1,
          'become': 1,
          'werent': 1,
          'would': 1,
          'goodnotgreat': 1,
          'flick': 1,
          'premise': 1,
          'insure': 1,
          'grated': 1,
          'kids': 1,
          'heads': 1,
          'bad': 1,
          'thing': 1,
          'believe': 1,
          'tone': 1,
          'thats': 1,
          'remaining': 1,
          'perpetually': 1,
          'love': 1,
          'general': 1,
          'broadens': 1,
          'horizons': 1,
          'moves': 1,
          'shows': 1,
          'us': 1,
          'whole': 1,
          'new': 1,
          'weve': 1,
          'evolution': 1,
          'lot': 1,
          'nits': 1,
          'light': 1,
          'visuals': 1,
          'earth': 1,
          'tones': 1,
          'bright': 1,
          'worldly': 1,
          'colors': 1,
          'gives': 1,
          'worthy': 1,
          'contender': 1,
          'characters': 1,
          'nicely': 1,
          'realized': 1,
          'though': 1,
          'watereddown': 1,
          'broad': 1,
          'carry': 1,
          'contemporary': 1,
          'voiced': 1,
          'dave': 1,
          'nothing': 1,
          'slightlyless': 1,
          'neurotic': 1,
          'makes': 1,
          'nearly': 1,
          'made': 1,
          'gene': 1,
          'hackman': 1,
          'playing': 1,
          'villain': 1,
          'much': 1,
          'kevin': 1,
          'grasshopper': 1,
          'nicelytitled': 1,
          'hopper': 1,
          'romantic': 1,
          'dont': 1,
          'sharon': 1,
          'stone': 1,
          'hardtoget': 1,
          'julialouis': 1,
          'dreyfuss': 1,
          'doesnt': 1,
          'around': 1,
          'frames': 1,
          'nnot': 1,
          'plots': 1,
          'yet': 1,
          'another': 1,
          'redux': 1,
          'seven': 1,
          'samurai': 1,
          'control': 1,
          'forcing': 1,
          'produce': 1,
          'product': 1,
          'else': 1,
          'nwhen': 1,
          'bone': 1,
          'fide': 1,
          'inventor': 1,
          'creates': 1,
          'timeconserving': 1,
          'apparatus': 1,
          'accidentally': 1,
          'destroys': 1,
          'seasons': 1,
          'donation': 1,
          'puts': 1,
          'risk': 1,
          'sent': 1,
          'wont': 1,
          'screw': 1,
          'pretense': 1,
          'searching': 1,
          'fight': 1,
          'nhe': 1,
          'runs': 1,
          'warrirors': 1,
          'unbeknownst': 1,
          'carnival': 1,
          'agree': 1,
          'false': 1,
          'pretenses': 1,
          'nthese': 1,
          'equally': 1,
          'wonderful': 1,
          'assortment': 1,
          'foppish': 1,
          'walking': 1,
          'stick': 1,
          'slim': 1,
          'david': 1,
          'hydepierce': 1,
          'german': 1,
          'caterpillar': 1,
          'heimlich': 1,
          'joe': 1,
          'ranft': 1,
          'quicktempered': 1,
          'insecure': 1,
          'male': 1,
          'ladybug': 1,
          'francis': 1,
          'denis': 1,
          'leary': 1,
          'pretentious': 1,
          'praying': 1,
          'mantis': 1,
          'manny': 1,
          'jonathan': 1,
          'harris': 1,
          'assistant': 1,
          'butterfly': 1,
          'hypsy': 1,
          'madeliene': 1,
          'kahn': 1,
          'spider': 1,
          'rosie': 1,
          'bonnie': 1,
          'hunt': 1,
          'two': 1,
          'fleas': 1,
          'tuck': 1,
          'roll': 1,
          'michael': 1,
          'mcshane': 1,
          'speak': 1,
          'undiscernable': 1,
          'jibberish': 1,
          'writers': 1,
          'lightly': 1,
          'touch': 1,
          'place': 1,
          'society': 1,
          'malleability': 1,
          'thereof': 1,
          'making': 1,
          'wisecracks': 1,
          'everything': 1,
          'blowing': 1,
          'audience': 1,
          'treats': 1,
          'ngrasshoppers': 1,
          'jumping': 1,
          'unison': 1,
          'seems': 1,
          'earthquake': 1,
          'bird': 1,
          'becomes': 1,
          'ominous': 1,
          'mortal': 1,
          'threat': 1,
          'whose': 1,
          'usual': 1,
          'mildmannered': 1,
          'squeal': 1,
          'scream': 1,
          'death': 1,
          'city': 1,
          'modernday': 1,
          'metropolis': 1,
          'complete': 1,
          'fireflies': 1,
          'temping': 1,
          'traffic': 1,
          'lights': 1,
          'fly': 1,
          'sitting': 1,
          'curb': 1,
          'holding': 1,
          'cup': 1,
          'sign': 1,
          'lying': 1,
          'next': 1,
          'says': 1,
          'kid': 1,
          'tore': 1,
          'wings': 1,
          'rainstorm': 1,
          'flood': 1,
          'drop': 1,
          'acting': 1,
          'bomb': 1,
          'dropped': 1,
          'millions': 1,
          'miles': 1,
          'per': 1,
          'hour': 1,
          'naround': 1,
          'pixar': 1,
          'animators': 1,
          'stage': 1,
          'several': 1,
          'large': 1,
          'set': 1,
          'pieces': 1,
          'resuce': 1,
          'mission': 1,
          'halfway': 1,
          'year': 1,
          'wonderfully': 1,
          'exciting': 1,
          'action': 1,
          'piece': 1,
          'chase': 1,
          'scene': 1,
          'night': 1,
          'labyrinthine': 1,
          'branches': 1,
          'thicket': 1,
          'nmeanwhile': 1,
          'gets': 1,
          'spotlight': 1,
          'idisyncratic': 1,
          'interesting': 1,
          'couldnt': 1,
          'credits': 1,
          'pulls': 1,
          'punch': 1,
          'clevering': 1,
          'series': 1,
          'incessantly': 1,
          'hilarious': 1,
          'fauxbloopers': 1,
          'right': 1,
          'time': 1,
          'leave': 1,
          'immeadiately': 1,
          'frame': 1,
          'left': 1,
          'elite': 1,
          'stayed': 1,
          'got': 1,
          'full': 1,
          'moneys': 1,
          'worth': 1,
          'entertainment': 1,
          'nstill': 1,
          'nthat': 1,
          'maybe': 1,
          'ive': 1,
          'ever': 1,
          'encompassed': 1,
          'almost': 1,
          'true': 1,
          'perfection': 1,
          'proved': 1,
          'didnt': 1,
          'need': 1,
          'cutting': 1,
          'edge': 1,
          'soar': 1,
          'visually': 1,
          'striking': 1,
          'thus': 1,
          'far': 1,
          'satisfying': 1,
          'perfect': 1,
          'idiosyncratic': 1,
          'delights': 1,
          'nyet': 1,
          'well': 1,
          'prove': 1,
          'without': 1,
          'doubt': 1,
          'youre': 1,
          'gon': 1,
          'make': 1,
          'send': 1,
          'guys': 1,
          'flicks': 1,
          'evne': 1,
          'theyre': 1,
          'working': 1,
          'roof': 1,
          'npos': 1}),
 Counter({'cole': 9,
          'movie': 6,
          'sixth': 5,
          'sense': 5,
          'malcolm': 5,
          'trailer': 4,
          'willis': 4,
          'kid': 4,
          'year': 3,
          'child': 3,
          'osment': 3,
          'movies': 3,
          'nif': 3,
          'see': 3,
          'really': 3,
          'story': 3,
          'years': 2,
          'give': 2,
          'nat': 2,
          'work': 2,
          'vincent': 2,
          'impressive': 2,
          'cameo': 2,
          'things': 2,
          'around': 2,
          'find': 2,
          'though': 2,
          'know': 2,
          'nthe': 2,
          'gave': 2,
          'away': 2,
          'first': 2,
          'enough': 2,
          'seen': 2,
          'go': 2,
          'secret': 2,
          'ghosts': 2,
          'realize': 2,
          'box': 2,
          'office': 2,
          'horror': 2,
          'ghost': 2,
          'shyamalan': 2,
          'saw': 1,
          'didnt': 1,
          'expect': 1,
          'much': 1,
          'nmy': 1,
          'snap': 1,
          'judgment': 1,
          'watereddown': 1,
          'version': 1,
          'shining': 1,
          'possibly': 1,
          'lateentry': 1,
          'glut': 1,
          'angelrelated': 1,
          'moviestv': 1,
          'shows': 1,
          'couple': 1,
          'ago': 1,
          'nbut': 1,
          'buzz': 1,
          'motivated': 1,
          'shot': 1,
          'nit': 1,
          'turned': 1,
          'one': 1,
          'satisfying': 1,
          'experiences': 1,
          'nbruce': 1,
          'plays': 1,
          'psychologist': 1,
          'crowe': 1,
          'beginning': 1,
          'admiring': 1,
          'award': 1,
          'city': 1,
          'given': 1,
          'soon': 1,
          'confronted': 1,
          'patient': 1,
          'failed': 1,
          'earlier': 1,
          'donnie': 1,
          'wahlbergformer': 1,
          'new': 1,
          'kidin': 1,
          'na': 1,
          'passes': 1,
          'treating': 1,
          'another': 1,
          'symptoms': 1,
          'displayed': 1,
          'ncole': 1,
          'sear': 1,
          'haley': 1,
          'joel': 1,
          'withdrawn': 1,
          'called': 1,
          'freak': 1,
          'boys': 1,
          'neighborhood': 1,
          'nweird': 1,
          'seem': 1,
          'happen': 1,
          'colehis': 1,
          'mother': 1,
          'olivia': 1,
          'williams': 1,
          'leaves': 1,
          'kitchen': 1,
          'moment': 1,
          'returns': 1,
          'every': 1,
          'cabinet': 1,
          'drawer': 1,
          'open': 1,
          'even': 1,
          'hasnt': 1,
          'movedand': 1,
          'seems': 1,
          'age': 1,
          'shouldntfor': 1,
          'example': 1,
          'gallows': 1,
          'school': 1,
          'nhe': 1,
          'steals': 1,
          'religious': 1,
          'icons': 1,
          'churches': 1,
          'build': 1,
          'chapel': 1,
          'pup': 1,
          'tent': 1,
          'bedroom': 1,
          'major': 1,
          'plot': 1,
          'twist': 1,
          'hadnt': 1,
          'hour': 1,
          'would': 1,
          'engrossing': 1,
          'wouldnt': 1,
          'whats': 1,
          'wrong': 1,
          'youre': 1,
          'lucky': 1,
          'stop': 1,
          'reading': 1,
          'review': 1,
          'right': 1,
          'nanyway': 1,
          'since': 1,
          'figure': 1,
          'fair': 1,
          'game': 1,
          'discuss': 1,
          'nonce': 1,
          'gains': 1,
          'coles': 1,
          'trust': 1,
          'reveals': 1,
          'sees': 1,
          'everywhere': 1,
          'ndead': 1,
          'people': 1,
          'wander': 1,
          'knowing': 1,
          'theyre': 1,
          'dead': 1,
          'invisible': 1,
          'everyone': 1,
          'except': 1,
          'nmalcolm': 1,
          'gradually': 1,
          'begins': 1,
          'telling': 1,
          'truth': 1,
          'success': 1,
          'generated': 1,
          'lot': 1,
          'press': 1,
          'rule': 1,
          'lots': 1,
          'theories': 1,
          'thats': 1,
          'ni': 1,
          'hate': 1,
          'burst': 1,
          'anybodys': 1,
          'bubble': 1,
          'isnt': 1,
          'film': 1,
          'core': 1,
          'touching': 1,
          'troubled': 1,
          'emotionallyscarred': 1,
          'adult': 1,
          'help': 1,
          'move': 1,
          'past': 1,
          'problems': 1,
          'nsome': 1,
          'scenes': 1,
          'wonderfully': 1,
          'creepy': 1,
          'none': 1,
          'got': 1,
          'boy': 1,
          'says': 1,
          'ill': 1,
          'show': 1,
          'dad': 1,
          'keeps': 1,
          'gun': 1,
          'turns': 1,
          'bullet': 1,
          'wound': 1,
          'back': 1,
          'head': 1,
          'nosment': 1,
          'gives': 1,
          'best': 1,
          'performance': 1,
          'ive': 1,
          'ever': 1,
          'actor': 1,
          'nits': 1,
          'hard': 1,
          'grownup': 1,
          'hollywood': 1,
          'subtle': 1,
          'realistic': 1,
          'portrayal': 1,
          'nalthough': 1,
          'gets': 1,
          'top': 1,
          'billing': 1,
          'protagonist': 1,
          'truly': 1,
          'brings': 1,
          'complex': 1,
          'life': 1,
          'naccustomed': 1,
          'delivering': 1,
          'catchphrases': 1,
          'rather': 1,
          'dialogue': 1,
          'stiff': 1,
          'awkward': 1,
          'challenging': 1,
          'role': 1,
          'date': 1,
          'n': 1,
          'bad': 1,
          'omen': 1,
          'next': 1,
          'us': 1,
          'chronicles': 1,
          'ups': 1,
          'downs': 1,
          'marriage': 1,
          'nwriterdirector': 1,
          'night': 1,
          'light': 1,
          'poetic': 1,
          'touch': 1,
          'goes': 1,
          'heart': 1,
          'viewer': 1,
          'without': 1,
          'seeming': 1,
          'sappy': 1,
          'trite': 1,
          'nhes': 1,
          'also': 1,
          'skillful': 1,
          'storyteller': 1,
          'ending': 1,
          'demonstrates': 1,
          'nonly': 1,
          'final': 1,
          'revealed': 1,
          'hinting': 1,
          'throughout': 1,
          'nlook': 1,
          'director': 1,
          'doctor': 1,
          'treats': 1,
          'nbottom': 1,
          'line': 1,
          'get': 1,
          'oscar': 1,
          'nomination': 1,
          'npos': 1}),
 Counter({'life': 6,
          'film': 6,
          'nthe': 4,
          'one': 4,
          'near': 3,
          'classic': 3,
          'george': 3,
          'nhe': 3,
          'capras': 2,
          'holiday': 2,
          'wonderful': 2,
          'bailey': 2,
          'others': 2,
          'fulfilled': 2,
          'town': 2,
          'bedford': 2,
          'falls': 2,
          'potential': 2,
          'much': 2,
          'nbut': 2,
          'times': 2,
          'ambitions': 2,
          'nhis': 2,
          'guardian': 2,
          'angel': 2,
          'first': 2,
          'place': 2,
          'end': 1,
          'frank': 1,
          'jimmy': 1,
          'stewart': 1,
          'feeling': 1,
          'devoted': 1,
          'never': 1,
          'dream': 1,
          'leaving': 1,
          'small': 1,
          'supburb': 1,
          'nstanding': 1,
          'upon': 1,
          'bridge': 1,
          'stormy': 1,
          'waters': 1,
          'looks': 1,
          'contemplating': 1,
          'suicide': 1,
          'hasnt': 1,
          'yet': 1,
          'done': 1,
          'nas': 1,
          'young': 1,
          'chap': 1,
          'ambition': 1,
          'leave': 1,
          'hometown': 1,
          'change': 1,
          'nthings': 1,
          'happen': 1,
          'hes': 1,
          'stuck': 1,
          'shows': 1,
          'na': 1,
          'nin': 1,
          'whirlwind': 1,
          'tour': 1,
          'sees': 1,
          'would': 1,
          'like': 1,
          'without': 1,
          'learns': 1,
          'moral': 1,
          'lesson': 1,
          'live': 1,
          'gift': 1,
          'earthly': 1,
          'problems': 1,
          'solved': 1,
          'climatic': 1,
          'scene': 1,
          'marvel': 1,
          'nfrank': 1,
          'centenial': 1,
          'watched': 1,
          'reexperienced': 1,
          'every': 1,
          'generation': 1,
          'nwonderful': 1,
          'pictures': 1,
          'gone': 1,
          'seems': 1,
          'fresh': 1,
          'maybe': 1,
          'fresher': 1,
          'released': 1,
          'nmany': 1,
          'films': 1,
          'thirties': 1,
          'seventies': 1,
          'aged': 1,
          'poorly': 1,
          'flawless': 1,
          'example': 1,
          'well': 1,
          'perfect': 1,
          'script': 1,
          'timing': 1,
          'mesh': 1,
          'firstrate': 1,
          'acting': 1,
          'wit': 1,
          'suspense': 1,
          'glorious': 1,
          'music': 1,
          'terrific': 1,
          'set': 1,
          'peices': 1,
          'even': 1,
          'slightly': 1,
          'dated': 1,
          'scenes': 1,
          'begining': 1,
          'god': 1,
          'long': 1,
          'chat': 1,
          'clarence': 1,
          'georges': 1,
          'nthey': 1,
          'arent': 1,
          'bad': 1,
          'remain': 1,
          'corny': 1,
          'little': 1,
          'nnevertheless': 1,
          'deserves': 1,
          'time': 1,
          'cinema': 1,
          'history': 1,
          'hearts': 1,
          'nit': 1,
          'equally': 1,
          'appreciated': 1,
          'anyone': 1,
          'age': 1,
          'nhere': 1,
          'genuine': 1,
          'masterpeice': 1,
          'reaches': 1,
          'heights': 1,
          'perfection': 1,
          'nthis': 1,
          'crackling': 1,
          'good': 1,
          'mixture': 1,
          'results': 1,
          'funny': 1,
          'exciting': 1,
          'moving': 1,
          'uplifting': 1,
          'almost': 1,
          'reversal': 1,
          'isnt': 1,
          'capra': 1,
          'gang': 1,
          'various': 1,
          'screenwriters': 1,
          'composers': 1,
          'actors': 1,
          'plumet': 1,
          'material': 1,
          'fullest': 1,
          'result': 1,
          'though': 1,
          'intended': 1,
          'pigeonholed': 1,
          'always': 1,
          'remembered': 1,
          'celebrated': 1,
          'loved': 1,
          'npos': 1}),
 Counter({'wild': 7,
          'things': 6,
          'nbut': 4,
          'theres': 4,
          'lombardo': 4,
          'kelly': 4,
          'suzie': 4,
          'part': 3,
          'n': 3,
          'dillon': 3,
          'blue': 3,
          'richards': 3,
          'mother': 3,
          'campbell': 3,
          'never': 3,
          'scene': 3,
          'two': 2,
          'even': 2,
          'movies': 2,
          'cant': 2,
          'plays': 2,
          'scenes': 2,
          'guilty': 2,
          'bay': 2,
          'especially': 2,
          'van': 2,
          'ryan': 2,
          'denise': 2,
          'take': 2,
          'lombardos': 2,
          'next': 2,
          'russell': 2,
          'duquette': 2,
          'kevin': 2,
          'bacon': 2,
          'perez': 2,
          'rubinvega': 2,
          'kellys': 2,
          'bowden': 2,
          'bill': 2,
          'murray': 2,
          'nthe': 2,
          'gives': 2,
          'case': 2,
          'also': 2,
          'cut': 2,
          'movie': 2,
          'dont': 2,
          'full': 2,
          'nand': 2,
          'end': 2,
          'three': 2,
          'great': 2,
          'jerry': 1,
          'springer': 1,
          'got': 1,
          'nothing': 1,
          'njohn': 1,
          'mcnaughtons': 1,
          'new': 1,
          'thriller': 1,
          'tackles': 1,
          'tawdry': 1,
          'themes': 1,
          'less': 1,
          'hours': 1,
          'springers': 1,
          'notoriously': 1,
          'sleazy': 1,
          'talk': 1,
          'show': 1,
          'broadcasts': 1,
          'weeks': 1,
          'bisexuality': 1,
          'threesomes': 1,
          'poolside': 1,
          'catfights': 1,
          'slutty': 1,
          'rich': 1,
          'bimbos': 1,
          'redneck': 1,
          'gatorwrestling': 1,
          'theyre': 1,
          'raucous': 1,
          'complex': 1,
          'storyline': 1,
          'trash': 1,
          'tv': 1,
          'topicality': 1,
          'drag': 1,
          'crazy': 1,
          'campfest': 1,
          'like': 1,
          'something': 1,
          'youd': 1,
          'find': 1,
          'latenight': 1,
          'usa': 1,
          'network': 1,
          'infinitely': 1,
          'palatable': 1,
          'solid': 1,
          'ensemble': 1,
          'cast': 1,
          'ndespite': 1,
          'smattering': 1,
          'needless': 1,
          'sexual': 1,
          'nature': 1,
          'wicked': 1,
          'fun': 1,
          'would': 1,
          'pleasure': 1,
          'feeling': 1,
          'involved': 1,
          'good': 1,
          'time': 1,
          'nhigh': 1,
          'school': 1,
          'guidance': 1,
          'counselor': 1,
          'sam': 1,
          'matt': 1,
          'wellliked': 1,
          'town': 1,
          'pretty': 1,
          'popular': 1,
          'whose': 1,
          'family': 1,
          'name': 1,
          'among': 1,
          'florida': 1,
          'yachting': 1,
          'enclaves': 1,
          'financially': 1,
          'prominent': 1,
          'nhoping': 1,
          'crush': 1,
          'physical': 1,
          'level': 1,
          'seductively': 1,
          'slinks': 1,
          'house': 1,
          'washing': 1,
          'jeep': 1,
          'fundraiser': 1,
          'day': 1,
          'tearfully': 1,
          'admits': 1,
          'trollop': 1,
          'theresa': 1,
          'raped': 1,
          'nbefore': 1,
          'long': 1,
          'detectives': 1,
          'ray': 1,
          'gloria': 1,
          'daphne': 1,
          'listening': 1,
          'similar': 1,
          'allegations': 1,
          'rebel': 1,
          'classmate': 1,
          'toller': 1,
          'neve': 1,
          'nlombardo': 1,
          'maintains': 1,
          'innocence': 1,
          'hires': 1,
          'neck': 1,
          'bracesporting': 1,
          'opportunistic': 1,
          'lawyer': 1,
          'ken': 1,
          'defend': 1,
          'court': 1,
          'previews': 1,
          'give': 1,
          'away': 1,
          'following': 1,
          'revelations': 1,
          'havent': 1,
          'seen': 1,
          'spots': 1,
          'television': 1,
          'theater': 1,
          'might': 1,
          'want': 1,
          'skip': 1,
          'paragraph': 1,
          'nwhile': 1,
          'crossexamining': 1,
          'witness': 1,
          'stand': 1,
          'gets': 1,
          'break': 1,
          'admit': 1,
          'alleged': 1,
          'rapes': 1,
          'took': 1,
          'place': 1,
          'concocted': 1,
          'entire': 1,
          'scheme': 1,
          'angry': 1,
          'sleeping': 1,
          'nto': 1,
          'pay': 1,
          'damages': 1,
          'breaks': 1,
          'daughters': 1,
          'trust': 1,
          'fund': 1,
          '8': 1,
          '5': 1,
          'million': 1,
          'actually': 1,
          'working': 1,
          'together': 1,
          'plan': 1,
          'money': 1,
          'run': 1,
          'fast': 1,
          'nduquette': 1,
          'however': 1,
          'begin': 1,
          'suspect': 1,
          'afoot': 1,
          'false': 1,
          'accusations': 1,
          'nif': 1,
          'major': 1,
          'drawback': 1,
          'oversexed': 1,
          'fault': 1,
          'muchtalkedabout': 1,
          'hotel': 1,
          'room': 1,
          'menageatrois': 1,
          'turnoff': 1,
          'nits': 1,
          'short': 1,
          'sorry': 1,
          'guys': 1,
          'shorter': 1,
          'grinds': 1,
          'halt': 1,
          'pure': 1,
          'titillation': 1,
          'often': 1,
          'nwhat': 1,
          'see': 1,
          'far': 1,
          'effective': 1,
          'nanother': 1,
          'example': 1,
          'needlessly': 1,
          'going': 1,
          'monty': 1,
          'shower': 1,
          'ner': 1,
          'thanks': 1,
          'nalso': 1,
          'bacons': 1,
          'feels': 1,
          'simultaneously': 1,
          'underdeveloped': 1,
          'overwritten': 1,
          'ndaphne': 1,
          'broadways': 1,
          'rent': 1,
          'tries': 1,
          'compensate': 1,
          'superfluous': 1,
          'character': 1,
          'ntheresa': 1,
          'plain': 1,
          'wooden': 1,
          'open': 1,
          'ask': 1,
          'certain': 1,
          'involving': 1,
          'really': 1,
          'necessary': 1,
          'keeps': 1,
          'throwaway': 1,
          'junk': 1,
          'engaging': 1,
          'chain': 1,
          'surprises': 1,
          'predictable': 1,
          'seems': 1,
          'twists': 1,
          'crate': 1,
          'corkscrews': 1,
          'gleefully': 1,
          'overthetop': 1,
          'nasty': 1,
          'help': 1,
          'charmed': 1,
          'absurd': 1,
          'showmanship': 1,
          'na': 1,
          'deal': 1,
          'amusement': 1,
          'comes': 1,
          'watching': 1,
          'supporting': 1,
          'appears': 1,
          'written': 1,
          'sly': 1,
          'comedic': 1,
          'talent': 1,
          'murrays': 1,
          'stitch': 1,
          'pulling': 1,
          'beside': 1,
          'limo': 1,
          'winning': 1,
          'flipping': 1,
          'leave': 1,
          'closing': 1,
          'credits': 1,
          'hit': 1,
          'screen': 1,
          'youll': 1,
          'miss': 1,
          'films': 1,
          'best': 1,
          'four': 1,
          'bonus': 1,
          'flashbacks': 1,
          'smooth': 1,
          'plot': 1,
          'holes': 1,
          'offering': 1,
          'tiny': 1,
          'turns': 1,
          'plus': 1,
          'final': 1,
          'caps': 1,
          'everything': 1,
          'stunner': 1,
          'bombshell': 1,
          'nspeaking': 1,
          'bombshells': 1,
          'almost': 1,
          'every': 1,
          'bikini': 1,
          'top': 1,
          'teen': 1,
          'tease': 1,
          'thing': 1,
          'malicious': 1,
          'allure': 1,
          'allowed': 1,
          'flaunt': 1,
          'starship': 1,
          'troopers': 1,
          'nmatt': 1,
          'flexes': 1,
          'sleepyvoiced': 1,
          'sex': 1,
          'appeal': 1,
          'pulls': 1,
          'personality': 1,
          'changes': 1,
          'chameleonic': 1,
          'precision': 1,
          'nneve': 1,
          'lovely': 1,
          'ever': 1,
          'except': 1,
          'sporting': 1,
          'blond': 1,
          'wig': 1,
          'vengeful': 1,
          'vulnerability': 1,
          'makes': 1,
          'interesting': 1,
          'member': 1,
          'conspiring': 1,
          'trio': 1,
          'nreedited': 1,
          'toned': 1,
          'bit': 1,
          'dynamics': 1,
          'actors': 1,
          'could': 1,
          'carried': 1,
          'film': 1,
          'greater': 1,
          'lengths': 1,
          'given': 1,
          'works': 1,
          'well': 1,
          'enough': 1,
          'highly': 1,
          'entertaining': 1,
          'indeed': 1,
          'npos': 1}),
 Counter({'movie': 5,
          'really': 4,
          'happy': 3,
          'gilmore': 3,
          'sandler': 3,
          'whos': 3,
          'kid': 3,
          'good': 3,
          'daddy': 2,
          'father': 2,
          'thats': 2,
          'sandlers': 2,
          'best': 2,
          'work': 2,
          'nhe': 2,
          'doesnt': 2,
          'nhes': 2,
          'coufax': 2,
          'man': 2,
          'tollbooth': 2,
          'roommate': 2,
          'get': 2,
          'attention': 2,
          'adams': 2,
          'somehow': 2,
          'movies': 2,
          'well': 2,
          'time': 2,
          'remains': 2,
          'bastards': 1,
          '30second': 1,
          'review': 1,
          'nbig': 1,
          'nhappy': 1,
          'nof': 1,
          'course': 1,
          'nthats': 1,
          'latest': 1,
          'scenario': 1,
          'presented': 1,
          'adam': 1,
          'new': 1,
          'big': 1,
          'passable': 1,
          'isnt': 1,
          'considered': 1,
          'actually': 1,
          'play': 1,
          'variation': 1,
          'sonny': 1,
          'living': 1,
          'settlement': 1,
          'got': 1,
          'cab': 1,
          'running': 1,
          'foot': 1,
          'onedayaweek': 1,
          'gig': 1,
          'willie': 1,
          'nhis': 1,
          'girlfriend': 1,
          'kristy': 1,
          'swanson': 1,
          'fed': 1,
          'lifestyle': 1,
          'demands': 1,
          'change': 1,
          'leaves': 1,
          'nenter': 1,
          '5year': 1,
          'old': 1,
          'mysteriously': 1,
          'dropped': 1,
          'doorstep': 1,
          'intended': 1,
          'preppy': 1,
          'jon': 1,
          'stewart': 1,
          'china': 1,
          'business': 1,
          'trip': 1,
          'nfrom': 1,
          'basically': 1,
          'acts': 1,
          'kids': 1,
          'teaching': 1,
          'different': 1,
          'things': 1,
          'like': 1,
          'peeing': 1,
          'side': 1,
          'building': 1,
          'tripping': 1,
          'skateboarders': 1,
          'sticks': 1,
          'even': 1,
          'manages': 1,
          'use': 1,
          'sort': 1,
          'con': 1,
          'game': 1,
          'beautiful': 1,
          'law': 1,
          'office': 1,
          'worker': 1,
          'joey': 1,
          'lauren': 1,
          'also': 1,
          'garners': 1,
          'social': 1,
          'services': 1,
          'arent': 1,
          'particularly': 1,
          'pleased': 1,
          'coufaxs': 1,
          'actions': 1,
          'pretends': 1,
          'keep': 1,
          'nthe': 1,
          'reason': 1,
          'say': 1,
          'gets': 1,
          'sappy': 1,
          'towards': 1,
          'end': 1,
          'showing': 1,
          'odd': 1,
          'feelings': 1,
          'didnt': 1,
          'belong': 1,
          'vehicle': 1,
          'ni': 1,
          'mean': 1,
          'fits': 1,
          'tone': 1,
          'everything': 1,
          'handles': 1,
          'oddly': 1,
          'placed': 1,
          'nfortunately': 1,
          'destroy': 1,
          'goofy': 1,
          'glee': 1,
          'path': 1,
          'following': 1,
          'still': 1,
          'makes': 1,
          'feel': 1,
          'nsandler': 1,
          'job': 1,
          'nrob': 1,
          'schneider': 1,
          'however': 1,
          'irritating': 1,
          'friend': 1,
          'immigrant': 1,
          'delivery': 1,
          'boy': 1,
          'cant': 1,
          'read': 1,
          'nstewart': 1,
          'minor': 1,
          'screen': 1,
          'great': 1,
          'joy': 1,
          'watch': 1,
          'nlook': 1,
          'steve': 1,
          'buscemi': 1,
          'homeless': 1,
          'bum': 1,
          'hoot': 1,
          'ndirected': 1,
          'dennis': 1,
          'dugan': 1,
          'director': 1,
          'couple': 1,
          'hours': 1,
          'pass': 1,
          'nagain': 1,
          'faults': 1,
          'hey': 1,
          'everyone': 1,
          'needs': 1,
          'emotional': 1,
          'sometimes': 1,
          'npos': 1}),
 Counter({'ford': 6,
          'six': 4,
          'days': 4,
          'seven': 4,
          'nights': 4,
          'fluff': 4,
          'heche': 4,
          'good': 4,
          'back': 3,
          'nthe': 3,
          'quinn': 3,
          'film': 3,
          'one': 3,
          'n': 3,
          'summer': 2,
          'movie': 2,
          'gets': 2,
          'far': 2,
          'nof': 2,
          'course': 2,
          'movies': 2,
          'female': 2,
          'big': 2,
          'age': 2,
          'two': 2,
          'click': 2,
          'way': 2,
          'loveable': 2,
          'robin': 2,
          'frank': 2,
          'pairing': 2,
          'makes': 2,
          'nat': 2,
          'wrong': 2,
          'still': 2,
          'experience': 1,
          'deliciously': 1,
          'right': 1,
          'commendable': 1,
          'achievement': 1,
          'considering': 1,
          'season': 1,
          'thus': 1,
          'littered': 1,
          'pretty': 1,
          'uneven': 1,
          'fare': 1,
          'nheres': 1,
          'genuinely': 1,
          'fun': 1,
          'piece': 1,
          'knows': 1,
          'recognizes': 1,
          'admittedly': 1,
          'proud': 1,
          'casting': 1,
          'harrison': 1,
          'broadly': 1,
          'comedic': 1,
          'lead': 1,
          'role': 1,
          'plays': 1,
          'sizeable': 1,
          'part': 1,
          'success': 1,
          'concentrated': 1,
          'dramatic': 1,
          'actor': 1,
          'easy': 1,
          'forget': 1,
          'funny': 1,
          'guy': 1,
          'nas': 1,
          'counterpart': 1,
          'anne': 1,
          'also': 1,
          'deserves': 1,
          'pat': 1,
          'sweet': 1,
          'goofily': 1,
          'charismatic': 1,
          'performance': 1,
          'difference': 1,
          'fords': 1,
          '56': 1,
          'heches': 1,
          '29': 1,
          'matters': 1,
          'charged': 1,
          'thats': 1,
          'hard': 1,
          'come': 1,
          'story': 1,
          'nobrainer': 1,
          'stars': 1,
          'gruff': 1,
          'island': 1,
          'aviator': 1,
          'harris': 1,
          'careerminded': 1,
          'new': 1,
          'york': 1,
          'magazine': 1,
          'editor': 1,
          'monroe': 1,
          'nrobin': 1,
          'tropical': 1,
          'vacation': 1,
          'fianc': 1,
          'david': 1,
          'schwimmer': 1,
          'assigned': 1,
          'supervise': 1,
          'emergency': 1,
          'photo': 1,
          'shoot': 1,
          'nearby': 1,
          'tahiti': 1,
          'reluctantly': 1,
          'hires': 1,
          'fly': 1,
          'plane': 1,
          'crashes': 1,
          'terrible': 1,
          'storm': 1,
          'immediately': 1,
          'find': 1,
          'stuck': 1,
          'deserted': 1,
          'paradise': 1,
          'ideas': 1,
          'getting': 1,
          'civilization': 1,
          'na': 1,
          'series': 1,
          'unpleasant': 1,
          'often': 1,
          'hilarious': 1,
          'catastrophes': 1,
          'leaves': 1,
          'little': 1,
          'choice': 1,
          'members': 1,
          'unlikely': 1,
          'odd': 1,
          'couple': 1,
          'fall': 1,
          'nmeanwhile': 1,
          'resort': 1,
          'tempted': 1,
          'quinns': 1,
          'shapely': 1,
          'tagalong': 1,
          'jacqueline': 1,
          'obradors': 1,
          'nthat': 1,
          'subplot': 1,
          'obviously': 1,
          'exists': 1,
          'get': 1,
          'us': 1,
          'rooting': 1,
          'quinnrobin': 1,
          'laughs': 1,
          'early': 1,
          'eventually': 1,
          'becomes': 1,
          'contrived': 1,
          'distraction': 1,
          'engrossing': 1,
          'misadventures': 1,
          'nand': 1,
          'since': 1,
          'spends': 1,
          'time': 1,
          'castaways': 1,
          'flaw': 1,
          'minor': 1,
          'inconvenience': 1,
          'ndirector': 1,
          'ivan': 1,
          'reitman': 1,
          'keeps': 1,
          'pace': 1,
          'brisk': 1,
          'slim': 1,
          '101': 1,
          'minutes': 1,
          'never': 1,
          'wears': 1,
          'welcome': 1,
          'lesser': 1,
          'could': 1,
          'felt': 1,
          'like': 1,
          'long': 1,
          'title': 1,
          'nmichael': 1,
          'brownings': 1,
          'clever': 1,
          'screenplay': 1,
          'allows': 1,
          'plenty': 1,
          'notable': 1,
          'oneliners': 1,
          'favorite': 1,
          'taken': 1,
          'context': 1,
          'mean': 1,
          '_arrrgh_': 1,
          'pirates': 1,
          'though': 1,
          'essentially': 1,
          'boils': 1,
          'mishap': 1,
          'another': 1,
          'theyre': 1,
          'quite': 1,
          'engaging': 1,
          'neven': 1,
          'serious': 1,
          'moments': 1,
          'played': 1,
          'wink': 1,
          'nheche': 1,
          'undeserved': 1,
          'fire': 1,
          'whether': 1,
          'private': 1,
          'life': 1,
          'ellen': 1,
          'degeneres': 1,
          'would': 1,
          'affect': 1,
          'believability': 1,
          'heterosexual': 1,
          'shes': 1,
          'lesbian': 1,
          'nso': 1,
          'ndeal': 1,
          'doesnt': 1,
          'naysayers': 1,
          'proved': 1,
          'nin': 1,
          'fact': 1,
          'chemistry': 1,
          'really': 1,
          'opposites': 1,
          'attract': 1,
          'utmost': 1,
          'endearing': 1,
          'electricity': 1,
          'point': 1,
          'discussing': 1,
          'likelihood': 1,
          'romantic': 1,
          'interest': 1,
          'asks': 1,
          'old': 1,
          'nafter': 1,
          'several': 1,
          'guesses': 1,
          'fortyfive': 1,
          'n_fifty_': 1,
          'whispers': 1,
          'look': 1,
          'stammers': 1,
          '_am_': 1,
          'replies': 1,
          'nshes': 1,
          'together': 1,
          'make': 1,
          'memorable': 1,
          'ride': 1,
          'npos': 1}),
 Counter({'dolores': 11,
          'claiborne': 8,
          'film': 8,
          'character': 7,
          'bates': 5,
          'nthe': 4,
          'release': 3,
          'may': 3,
          'employer': 3,
          'st': 3,
          'george': 3,
          'two': 3,
          'husband': 3,
          'ndolores': 3,
          'suspense': 3,
          'also': 3,
          'particularly': 3,
          'wide': 2,
          'study': 2,
          'provides': 2,
          'performances': 2,
          'suffers': 2,
          'conclusion': 2,
          'direction': 2,
          'commercial': 2,
          'seems': 2,
          'like': 2,
          'death': 2,
          'via': 2,
          'mysterious': 2,
          'bitter': 2,
          'selena': 2,
          'decades': 2,
          'detective': 2,
          'john': 2,
          'mackey': 2,
          'kill': 2,
          'cast': 2,
          'leigh': 2,
          'strathairn': 2,
          'nkathy': 2,
          'plays': 2,
          'performance': 2,
          'essentially': 2,
          'screen': 2,
          'flashbacks': 2,
          'well': 2,
          'interesting': 2,
          'would': 2,
          'parts': 2,
          'pacing': 2,
          'tends': 2,
          'nhowever': 2,
          'weekend': 1,
          'adds': 1,
          'another': 1,
          'entry': 1,
          'long': 1,
          'list': 1,
          'adaptations': 1,
          'stephen': 1,
          'kings': 1,
          'work': 1,
          'nthis': 1,
          'slowmoving': 1,
          'outstanding': 1,
          'acting': 1,
          'principals': 1,
          'tepid': 1,
          'inconsistent': 1,
          'appeal': 1,
          'nwhen': 1,
          'maid': 1,
          'found': 1,
          'brandishing': 1,
          'rolling': 1,
          'pin': 1,
          'standing': 1,
          'bloody': 1,
          'dead': 1,
          'body': 1,
          'openandshut': 1,
          'murder': 1,
          'case': 1,
          'nupon': 1,
          'hearing': 1,
          'fax': 1,
          'estranged': 1,
          'daughter': 1,
          'esquire': 1,
          'magazine': 1,
          'writer': 1,
          'returns': 1,
          'new': 1,
          'york': 1,
          'back': 1,
          'tiny': 1,
          'island': 1,
          'village': 1,
          'childhood': 1,
          'home': 1,
          'nas': 1,
          'clash': 1,
          'horns': 1,
          'story': 1,
          'behind': 1,
          'abusive': 1,
          'ago': 1,
          'ruled': 1,
          'accident': 1,
          'despite': 1,
          'protests': 1,
          'revealed': 1,
          'ndid': 1,
          'nand': 1,
          'certainly': 1,
          'thriller': 1,
          'nconsequently': 1,
          'fortunate': 1,
          'includes': 1,
          'hollywoods': 1,
          'finest': 1,
          'actors': 1,
          'films': 1,
          'title': 1,
          'gives': 1,
          'sensational': 1,
          'lead': 1,
          'showcase': 1,
          'talent': 1,
          'huge': 1,
          'amount': 1,
          'time': 1,
          'nshe': 1,
          'dominates': 1,
          'producing': 1,
          'compelling': 1,
          'arresting': 1,
          'watch': 1,
          'go': 1,
          'history': 1,
          'awardcalibre': 1,
          'stuff': 1,
          'rest': 1,
          'good': 1,
          'njennifer': 1,
          'jason': 1,
          'perpetually': 1,
          'sour': 1,
          'helena': 1,
          'christopher': 1,
          'plummer': 1,
          'enjoying': 1,
          'everpresent': 1,
          'nemesis': 1,
          'determined': 1,
          'ndavid': 1,
          'suitably': 1,
          'smarmy': 1,
          'despicable': 1,
          'joe': 1,
          'njudy': 1,
          'parfitt': 1,
          'fine': 1,
          'tyrannic': 1,
          'socialite': 1,
          'vera': 1,
          'donovanit': 1,
          'see': 1,
          'say': 1,
          'meg': 1,
          'foster': 1,
          'role': 1,
          'nchild': 1,
          'actor': 1,
          'ellen': 1,
          'muth': 1,
          'worth': 1,
          'noting': 1,
          'young': 1,
          'flashback': 1,
          'sequences': 1,
          'impressive': 1,
          'taylor': 1,
          'hackford': 1,
          'wildly': 1,
          'varies': 1,
          'throughout': 1,
          'ranging': 1,
          'quite': 1,
          'clever': 1,
          'right': 1,
          'embarrassingly': 1,
          'hokey': 1,
          'segues': 1,
          'present': 1,
          'hitandmiss': 1,
          'terms': 1,
          'effectiveness': 1,
          'numbingly': 1,
          'slow': 1,
          'undermine': 1,
          'might': 1,
          'built': 1,
          'cinematography': 1,
          'gabriel': 1,
          'beristain': 1,
          'wonderfuli': 1,
          'chilling': 1,
          'iceblue': 1,
          'hue': 1,
          'permeating': 1,
          'presentday': 1,
          'scenes': 1,
          'contrasting': 1,
          'many': 1,
          'nova': 1,
          'scotia': 1,
          'ocean': 1,
          'shotsand': 1,
          'danny': 1,
          'elfman': 1,
          'surprisingly': 1,
          'understated': 1,
          'score': 1,
          'nit': 1,
          'seem': 1,
          'potential': 1,
          'limited': 1,
          'nnone': 1,
          'performers': 1,
          'could': 1,
          'classified': 1,
          'big': 1,
          'draw': 1,
          'turnoff': 1,
          'expecting': 1,
          'gripping': 1,
          'filled': 1,
          'twists': 1,
          'turns': 1,
          'car': 1,
          'crashes': 1,
          'axewielding': 1,
          'psychopaths': 1,
          'nalthough': 1,
          'genre': 1,
          'hurt': 1,
          'negative': 1,
          'perception': 1,
          'king': 1,
          'works': 1,
          'even': 1,
          'recent': 1,
          'critical': 1,
          'success': 1,
          'shawshank': 1,
          'redemption': 1,
          'stand': 1,
          'unsatisfying': 1,
          'moves': 1,
          'slowly': 1,
          'uniformly': 1,
          'excellent': 1,
          'kathy': 1,
          'moments': 1,
          'non': 1,
          'fourstar': 1,
          'scale': 1,
          'give': 1,
          'three': 1,
          'stars': 1,
          'npos': 1}),
 Counter({'film': 9,
          'game': 6,
          'good': 5,
          'gambling': 5,
          'mike': 5,
          'nthe': 5,
          'worm': 5,
          'poker': 4,
          'go': 4,
          'like': 4,
          'hes': 4,
          'cards': 4,
          'things': 3,
          'story': 3,
          'noir': 3,
          'mood': 3,
          'us': 3,
          'entire': 3,
          'perfectly': 3,
          'everything': 3,
          'sense': 3,
          'able': 3,
          'kid': 3,
          'works': 3,
          'rounders': 2,
          'dont': 2,
          'kids': 2,
          'nits': 2,
          'make': 2,
          'take': 2,
          'fascinating': 2,
          'films': 2,
          'past': 2,
          'present': 2,
          'atmosphere': 2,
          'life': 2,
          'nthis': 2,
          'underworld': 2,
          'law': 2,
          'city': 2,
          'really': 2,
          'ndamon': 2,
          'scene': 2,
          'one': 2,
          'intricate': 2,
          'might': 2,
          'seem': 2,
          'little': 2,
          'nhe': 2,
          'reading': 2,
          'trying': 2,
          'comes': 2,
          'use': 2,
          'involved': 2,
          'isnt': 2,
          'gangsters': 2,
          'someone': 2,
          'job': 2,
          'nit': 2,
          'much': 2,
          'mikes': 2,
          'surprising': 2,
          'element': 2,
          'way': 2,
          'plot': 2,
          'bad': 2,
          'yet': 2,
          'nwhat': 2,
          'nmike': 2,
          'time': 2,
          'takes': 2,
          'pay': 2,
          'e': 2,
          'fact': 2,
          'kinds': 2,
          'games': 2,
          'neverything': 2,
          'big': 2,
          'destiny': 2,
          'told': 2,
          'could': 2,
          'seen': 1,
          'september': 1,
          '13': 1,
          '1998': 1,
          '4': 1,
          'p': 1,
          'rotterdam': 1,
          'square': 1,
          'mall': 1,
          'cinema': 1,
          '6': 1,
          'theater': 1,
          '2': 1,
          'chris': 1,
          'wessell': 1,
          'free': 1,
          'using': 1,
          'sonyloews': 1,
          'critics': 1,
          'pass': 1,
          'ntheater': 1,
          'rating': 1,
          '12': 1,
          'seats': 1,
          'average': 1,
          'sound': 1,
          'picture': 1,
          'unstable': 1,
          'n': 1,
          'exactly': 1,
          'kind': 1,
          'movie': 1,
          'parents': 1,
          'want': 1,
          'see': 1,
          'drunken': 1,
          'orgy': 1,
          'sex': 1,
          'violence': 1,
          'flatout': 1,
          'says': 1,
          'career': 1,
          'nand': 1,
          'worse': 1,
          'proves': 1,
          'original': 1,
          'nthere': 1,
          'countless': 1,
          'crime': 1,
          'evoke': 1,
          'dark': 1,
          'shady': 1,
          'vices': 1,
          'world': 1,
          'become': 1,
          'screen': 1,
          'would': 1,
          'real': 1,
          'starts': 1,
          'tradiational': 1,
          'style': 1,
          'introducing': 1,
          'modern': 1,
          'stakes': 1,
          'high': 1,
          'price': 1,
          'losing': 1,
          'nmatt': 1,
          'damon': 1,
          'stars': 1,
          'mcdermott': 1,
          '20something': 1,
          'student': 1,
          'presentday': 1,
          'new': 1,
          'york': 1,
          'tells': 1,
          'played': 1,
          'narrates': 1,
          'throughout': 1,
          'opening': 1,
          'voicedover': 1,
          'completely': 1,
          'totally': 1,
          'define': 1,
          'setting': 1,
          'nmikes': 1,
          'teddy': 1,
          'kgb': 1,
          'malkovich': 1,
          'russian': 1,
          'gangster': 1,
          'looks': 1,
          'serial': 1,
          'killer': 1,
          'nbut': 1,
          'practically': 1,
          'convey': 1,
          'look': 1,
          'eyes': 1,
          'slow': 1,
          'movements': 1,
          'mannerisms': 1,
          'combined': 1,
          'classic': 1,
          'cinematography': 1,
          'isolated': 1,
          'brightness': 1,
          'within': 1,
          'darkness': 1,
          'literally': 1,
          'flesh': 1,
          'place': 1,
          'expensive': 1,
          'clothes': 1,
          'perfectlygroomed': 1,
          'features': 1,
          'narration': 1,
          'brings': 1,
          'together': 1,
          'never': 1,
          'sounds': 1,
          'script': 1,
          'embellish': 1,
          'anything': 1,
          'natural': 1,
          'screenwriters': 1,
          'right': 1,
          'words': 1,
          'phrases': 1,
          'describe': 1,
          'smell': 1,
          'air': 1,
          'logic': 1,
          'guys': 1,
          'faces': 1,
          'without': 1,
          'sounding': 1,
          'remotely': 1,
          'trite': 1,
          'nimmediately': 1,
          'get': 1,
          'gamblers': 1,
          'near': 1,
          'geniuses': 1,
          'nerves': 1,
          'steel': 1,
          'quiet': 1,
          'war': 1,
          'strategies': 1,
          'complex': 1,
          'honor': 1,
          'among': 1,
          'soldiers': 1,
          'plays': 1,
          'ones': 1,
          'kill': 1,
          'scratching': 1,
          'car': 1,
          'respect': 1,
          'due': 1,
          'winner': 1,
          'truly': 1,
          'better': 1,
          'man': 1,
          'excellent': 1,
          'establishing': 1,
          'first': 1,
          'act': 1,
          'concentrates': 1,
          'aspect': 1,
          'background': 1,
          'progression': 1,
          'stumble': 1,
          'bit': 1,
          'nwe': 1,
          'learn': 1,
          'npresently': 1,
          'know': 1,
          'girlfriend': 1,
          'named': 1,
          'jo': 1,
          'gretchen': 1,
          'mol': 1,
          'constantly': 1,
          'argues': 1,
          'nthey': 1,
          'breakupmakeup': 1,
          'cycles': 1,
          'childhood': 1,
          'pal': 1,
          'fellow': 1,
          'rounder': 1,
          'norton': 1,
          'released': 1,
          'prison': 1,
          'owes': 1,
          'thousand': 1,
          'dollars': 1,
          'mob': 1,
          'predictable': 1,
          'execute': 1,
          'ntechnically': 1,
          'unlike': 1,
          'many': 1,
          'childrens': 1,
          'sitcoms': 1,
          'friend': 1,
          'gets': 1,
          'trouble': 1,
          'remains': 1,
          'friends': 1,
          'different': 1,
          'medium': 1,
          'tell': 1,
          'heads': 1,
          'lives': 1,
          'share': 1,
          'passion': 1,
          'outthinking': 1,
          'player': 1,
          'nwhere': 1,
          'prefers': 1,
          'sleazy': 1,
          'route': 1,
          'cheating': 1,
          'hence': 1,
          'jail': 1,
          'always': 1,
          'dealt': 1,
          'nsometimes': 1,
          'nhis': 1,
          'ability': 1,
          'school': 1,
          'money': 1,
          'times': 1,
          'steady': 1,
          'dropping': 1,
          '30': 1,
          '000': 1,
          'single': 1,
          'hand': 1,
          'nonce': 1,
          'start': 1,
          'happening': 1,
          'expand': 1,
          'develop': 1,
          'web': 1,
          'detail': 1,
          'bob': 1,
          'weave': 1,
          'places': 1,
          'socialites': 1,
          'mansions': 1,
          'taking': 1,
          'tourists': 1,
          'atlantic': 1,
          'outwitting': 1,
          'control': 1,
          'come': 1,
          'contact': 1,
          'everythings': 1,
          'battle': 1,
          'deals': 1,
          'none': 1,
          'demonstrates': 1,
          'judge': 1,
          'martin': 1,
          'landou': 1,
          'cast': 1,
          'performed': 1,
          'role': 1,
          'nothing': 1,
          'nmatts': 1,
          'also': 1,
          'got': 1,
          'potential': 1,
          'great': 1,
          'lawyer': 1,
          'professional': 1,
          'either': 1,
          'lose': 1,
          'win': 1,
          'theres': 1,
          'stability': 1,
          'risk': 1,
          'ncan': 1,
          'whos': 1,
          'gambled': 1,
          'cash': 1,
          'chips': 1,
          'leave': 1,
          'nif': 1,
          'subtle': 1,
          'lesson': 1,
          'pokerplaying': 1,
          'ending': 1,
          'test': 1,
          'perspective': 1,
          'finally': 1,
          'recognize': 1,
          'makes': 1,
          'final': 1,
          'againstall': 1,
          'odds': 1,
          'showdown': 1,
          'revolves': 1,
          'around': 1,
          'showing': 1,
          'still': 1,
          'evokes': 1,
          'unknown': 1,
          'consequences': 1,
          'thereof': 1,
          'separates': 1,
          'challenge': 1,
          'skills': 1,
          'important': 1,
          'winning': 1,
          'end': 1,
          'npos': 1}),
 Counter({'scream': 13,
          'movie': 7,
          '3': 7,
          'sidney': 6,
          'killer': 6,
          'films': 6,
          'one': 5,
          'become': 5,
          'first': 5,
          'time': 5,
          'around': 4,
          'two': 4,
          'home': 4,
          'cotton': 4,
          'film': 4,
          'series': 3,
          'would': 3,
          'internet': 3,
          'nno': 3,
          'constantly': 3,
          'rather': 3,
          'nbut': 3,
          'characters': 3,
          'woodsboro': 3,
          'less': 3,
          'approach': 3,
          'true': 3,
          'seems': 3,
          'knows': 3,
          'years': 3,
          'back': 3,
          'mother': 3,
          'maybe': 3,
          'little': 3,
          'lot': 2,
          'even': 2,
          'end': 2,
          'nwhat': 2,
          'fine': 2,
          'made': 2,
          'williamson': 2,
          'horror': 2,
          'nso': 2,
          'go': 2,
          'nas': 2,
          'living': 2,
          'hollywood': 2,
          'horrifying': 2,
          'sequence': 2,
          'eye': 2,
          'girlfriend': 2,
          'get': 2,
          'throughout': 2,
          'nnot': 2,
          'sound': 2,
          'like': 2,
          'ha': 2,
          'arquette': 2,
          'stab': 2,
          'real': 2,
          'either': 2,
          'indeed': 2,
          'bit': 2,
          'finest': 2,
          'quite': 2,
          'dramatic': 2,
          'element': 2,
          'nit': 2,
          'identity': 2,
          'job': 2,
          'upon': 2,
          'viewing': 2,
          'trilogy': 2,
          'riding': 1,
          'neveryone': 1,
          'moderately': 1,
          'interested': 1,
          'dying': 1,
          'know': 1,
          'final': 1,
          'act': 1,
          'nthis': 1,
          'era': 1,
          'kept': 1,
          'nights': 1,
          'searching': 1,
          'clues': 1,
          'talking': 1,
          'tossing': 1,
          'rumors': 1,
          'equally': 1,
          'enthused': 1,
          'buddies': 1,
          'kids': 1,
          '17': 1,
          'elaborate': 1,
          'plots': 1,
          'consisting': 1,
          'buying': 1,
          'ticket': 1,
          'hopping': 1,
          'narrowly': 1,
          'escaping': 1,
          'menacing': 1,
          'ushers': 1,
          'year': 1,
          'older': 1,
          'need': 1,
          'worry': 1,
          'endlessly': 1,
          'inventive': 1,
          'entertaining': 1,
          'epilogue': 1,
          'kevin': 1,
          'household': 1,
          'name': 1,
          'reinvented': 1,
          'genre': 1,
          'continued': 1,
          'selfreferential': 1,
          'postmodern': 1,
          'tradition': 1,
          'quentin': 1,
          'co': 1,
          'story': 1,
          'opposed': 1,
          'fanatical': 1,
          'sites': 1,
          'believe': 1,
          'prescott': 1,
          'neve': 1,
          'campbell': 1,
          'allgrownup': 1,
          'dealing': 1,
          'pass': 1,
          'tormented': 1,
          'sector': 1,
          'psyche': 1,
          'fulfilling': 1,
          'dream': 1,
          'actress': 1,
          'upstate': 1,
          'california': 1,
          'understandably': 1,
          'alone': 1,
          'confines': 1,
          'fences': 1,
          'vast': 1,
          'security': 1,
          'systems': 1,
          'nshe': 1,
          'works': 1,
          'crisis': 1,
          'center': 1,
          'affiliate': 1,
          'phone': 1,
          'starts': 1,
          'ninstead': 1,
          'tactic': 1,
          'reminded': 1,
          'somewhat': 1,
          'similar': 1,
          'conceptually': 1,
          '1995': 1,
          'weary': 1,
          'liev': 1,
          'schreiber': 1,
          'big': 1,
          'star': 1,
          'drives': 1,
          'traffic': 1,
          'calls': 1,
          'demands': 1,
          'location': 1,
          'threatens': 1,
          'life': 1,
          'christine': 1,
          'anything': 1,
          'stop': 1,
          'nthe': 1,
          'rest': 1,
          'particularly': 1,
          'clever': 1,
          'setting': 1,
          'constant': 1,
          'picture': 1,
          'hightech': 1,
          'electronic': 1,
          'voicechanger': 1,
          'tops': 1,
          'unmistakably': 1,
          'talented': 1,
          'voiceover': 1,
          'artist': 1,
          'roger': 1,
          'jackson': 1,
          'easily': 1,
          'duplicate': 1,
          'voices': 1,
          'lead': 1,
          'including': 1,
          'returned': 1,
          'gale': 1,
          'weathers': 1,
          'courtney': 1,
          'cox': 1,
          'dewey': 1,
          'riley': 1,
          'david': 1,
          'nat': 1,
          'third': 1,
          'filmwithinafilm': 1,
          'based': 1,
          'events': 1,
          'windsor': 1,
          'college': 1,
          'taken': 1,
          'authentic': 1,
          'return': 1,
          'whereas': 1,
          'account': 1,
          'franchise': 1,
          'within': 1,
          'totally': 1,
          'fictional': 1,
          'nnevertheless': 1,
          'learn': 1,
          'appearance': 1,
          'production': 1,
          'killed': 1,
          'scene': 1,
          'offing': 1,
          'heroes': 1,
          'order': 1,
          'bite': 1,
          'actor': 1,
          'portraying': 1,
          'thing': 1,
          'nsometimes': 1,
          'nclever': 1,
          'goes': 1,
          'next': 1,
          'nthree': 1,
          'different': 1,
          'scripts': 1,
          'penned': 1,
          'told': 1,
          'keep': 1,
          'finale': 1,
          'nod': 1,
          '2': 1,
          'fiasco': 1,
          'sure': 1,
          'read': 1,
          'nstill': 1,
          'stays': 1,
          'concealed': 1,
          'visiting': 1,
          'dad': 1,
          'halfhour': 1,
          'also': 1,
          'visions': 1,
          'takes': 1,
          'us': 1,
          'fear': 1,
          'becoming': 1,
          'least': 1,
          'secretly': 1,
          'nwhen': 1,
          'finally': 1,
          'ventures': 1,
          'murders': 1,
          'prevalent': 1,
          'chased': 1,
          'onto': 1,
          'set': 1,
          'wandering': 1,
          'written': 1,
          'directed': 1,
          'odd': 1,
          'surreal': 1,
          'nightmare': 1,
          'moments': 1,
          'nokay': 1,
          'admit': 1,
          'fan': 1,
          'ghostface': 1,
          'costume': 1,
          'director': 1,
          'cut': 1,
          'laserdisc': 1,
          'often': 1,
          'find': 1,
          'compelled': 1,
          'pop': 1,
          'dvd': 1,
          'member': 1,
          'preceding': 1,
          'duo': 1,
          'caught': 1,
          'yes': 1,
          'said': 1,
          'sometimes': 1,
          'debating': 1,
          'family': 1,
          'friends': 1,
          'possibilities': 1,
          'endless': 1,
          'theories': 1,
          'quintessentially': 1,
          'affiliated': 1,
          'nthroughout': 1,
          'though': 1,
          'noticed': 1,
          'much': 1,
          'subtle': 1,
          'ngranted': 1,
          'stabbinaplenty': 1,
          'going': 1,
          'considerably': 1,
          'blood': 1,
          'gore': 1,
          'nhonestly': 1,
          'classical': 1,
          'rebellious': 1,
          'demonstrating': 1,
          'capable': 1,
          'direction': 1,
          'wes': 1,
          'craven': 1,
          'nhe': 1,
          'hold': 1,
          'makes': 1,
          'ooze': 1,
          'energy': 1,
          'illustrating': 1,
          'delicate': 1,
          'poise': 1,
          'flowing': 1,
          'experience': 1,
          'nsome': 1,
          'critics': 1,
          'noted': 1,
          'take': 1,
          'seriously': 1,
          'screenwriter': 1,
          'ehren': 1,
          'kruger': 1,
          'arlington': 1,
          'road': 1,
          'took': 1,
          'scheduling': 1,
          'conflicts': 1,
          'saw': 1,
          'opportunity': 1,
          'irony': 1,
          'satire': 1,
          'worked': 1,
          'clich': 1,
          'puts': 1,
          'damper': 1,
          'otherwise': 1,
          'exceptional': 1,
          'creative': 1,
          'afraid': 1,
          'ending': 1,
          'guess': 1,
          'accomplishes': 1,
          'bringing': 1,
          'three': 1,
          'full': 1,
          'circle': 1,
          'seemed': 1,
          'dissatisfying': 1,
          'appears': 1,
          'contrived': 1,
          'arbitrary': 1,
          'second': 1,
          'endeavored': 1,
          'due': 1,
          'recurring': 1,
          'disapprobation': 1,
          'still': 1,
          'random': 1,
          'motivation': 1,
          'came': 1,
          'across': 1,
          'eventual': 1,
          'conclusion': 1,
          'ultimately': 1,
          'satisfying': 1,
          'nall': 1,
          'fall': 1,
          'victim': 1,
          'lamented': 1,
          'principle': 1,
          'worst': 1,
          'fun': 1,
          'refreshing': 1,
          'humorous': 1,
          'offbeat': 1,
          'nalmost': 1,
          'sad': 1,
          'see': 1,
          'seem': 1,
          'best': 1,
          'quit': 1,
          'ahead': 1,
          'providing': 1,
          'closure': 1,
          'nfor': 1,
          'holds': 1,
          'title': 1,
          'committed': 1,
          'celluloid': 1,
          'shabby': 1,
          'npos': 1}),
 Counter({'tom': 5,
          'karen': 4,
          'flooded': 3,
          'town': 3,
          'church': 3,
          'looters': 3,
          'break': 3,
          'rain': 2,
          'small': 2,
          'bad': 2,
          'dollars': 2,
          'nhe': 2,
          'floodwaters': 2,
          'fire': 2,
          'driver': 2,
          'named': 2,
          'armed': 2,
          'full': 2,
          'makes': 2,
          'movie': 2,
          'national': 2,
          'guard': 2,
          'distress': 2,
          'call': 2,
          'ingredients': 1,
          'pouring': 1,
          'damn': 1,
          'burst': 1,
          'guys': 1,
          'going': 1,
          'millions': 1,
          'nsynopsis': 1,
          'one': 1,
          'point': 1,
          'story': 1,
          'townsperson': 1,
          'asks': 1,
          'hero': 1,
          'happened': 1,
          'replies': 1,
          'something': 1,
          'like': 1,
          'least': 1,
          'put': 1,
          'big': 1,
          'nwell': 1,
          'wasnt': 1,
          'since': 1,
          'burning': 1,
          'apparently': 1,
          'thought': 1,
          'safe': 1,
          'enough': 1,
          'priceless': 1,
          'stained': 1,
          'glass': 1,
          'windows': 1,
          'nin': 1,
          'hard': 1,
          'nearly': 1,
          'deserted': 1,
          'due': 1,
          'flooding': 1,
          'neveryone': 1,
          'evacuate': 1,
          'raining': 1,
          'rising': 1,
          'high': 1,
          'buildings': 1,
          'submerged': 1,
          'nearby': 1,
          'dam': 1,
          'nenter': 1,
          'working': 1,
          'class': 1,
          'smartalecky': 1,
          'new': 1,
          'armored': 1,
          'car': 1,
          'christian': 1,
          'slater': 1,
          'nsuddenly': 1,
          'security': 1,
          'truck': 1,
          'carrying': 1,
          'three': 1,
          'million': 1,
          'gets': 1,
          'stuck': 1,
          'street': 1,
          'waylaid': 1,
          'ntom': 1,
          'choice': 1,
          'grab': 1,
          'bag': 1,
          'money': 1,
          'hide': 1,
          'swim': 1,
          'life': 1,
          'nthis': 1,
          'action': 1,
          'jet': 1,
          'skis': 1,
          'speedboat': 1,
          'chases': 1,
          'gun': 1,
          'battles': 1,
          'tries': 1,
          'evade': 1,
          'outsmart': 1,
          'corrupt': 1,
          'cops': 1,
          'answer': 1,
          'befriended': 1,
          'aided': 1,
          'spunky': 1,
          'churchgoing': 1,
          'young': 1,
          'woman': 1,
          'minnie': 1,
          'nbut': 1,
          'unknown': 1,
          'never': 1,
          'heard': 1,
          'toms': 1,
          'initial': 1,
          'nwill': 1,
          'survive': 1,
          'natural': 1,
          'manmade': 1,
          'disasters': 1,
          'nopinion': 1,
          'dont': 1,
          'expect': 1,
          'thoughtprovoking': 1,
          'issues': 1,
          'dramatics': 1,
          'ntheres': 1,
          'much': 1,
          'hiding': 1,
          'running': 1,
          'swimming': 1,
          'shooting': 1,
          'saving': 1,
          'handcuffed': 1,
          'heroes': 1,
          'drowning': 1,
          'thats': 1,
          'escapist': 1,
          'fun': 1,
          'nrelax': 1,
          'take': 1,
          'shoes': 1,
          'popcorn': 1,
          'npos': 1}),
 Counter({'gangster': 6,
          'funny': 6,
          'vitti': 5,
          'nthe': 5,
          'film': 5,
          'comedy': 4,
          'analyze': 4,
          'good': 4,
          'de': 4,
          'niro': 4,
          'although': 3,
          'kudrow': 3,
          'comic': 3,
          'never': 3,
          'role': 3,
          'little': 3,
          'new': 2,
          'enough': 2,
          'movie': 2,
          'nbilly': 2,
          'crystal': 2,
          'plays': 2,
          'wiseguy': 2,
          'ben': 2,
          'patient': 2,
          'hes': 2,
          'really': 2,
          'nall': 2,
          'done': 2,
          'also': 2,
          'fun': 2,
          'city': 2,
          'slickers': 2,
          'given': 2,
          'nhes': 2,
          'pretty': 2,
          'character': 2,
          'nrobert': 2,
          'playing': 2,
          'serious': 2,
          'rather': 2,
          'well': 2,
          'screen': 2,
          'cast': 2,
          'made': 2,
          'goodfellas': 2,
          'like': 2,
          'nit': 2,
          'parody': 2,
          'plot': 2,
          'points': 2,
          'suddenly': 2,
          'reason': 2,
          'somewhat': 2,
          'script': 2,
          'ramis': 2,
          'immortal': 2,
          'groundhog': 2,
          'day': 2,
          'audience': 2,
          'wont': 2,
          'many': 1,
          'people': 1,
          'compared': 1,
          'hit': 1,
          'hbo': 1,
          'drama': 1,
          'sopranos': 1,
          'witty': 1,
          'entertaining': 1,
          'right': 1,
          'shrink': 1,
          'sobol': 1,
          'happens': 1,
          'boss': 1,
          'paul': 1,
          'nben': 1,
          'wants': 1,
          'nothing': 1,
          'get': 1,
          'married': 1,
          'laura': 1,
          'macnamara': 1,
          'wouldnt': 1,
          'help': 1,
          'nbut': 1,
          'soon': 1,
          'drawn': 1,
          'worlds': 1,
          'reluctantly': 1,
          'helps': 1,
          'sort': 1,
          'life': 1,
          'fashion': 1,
          'course': 1,
          'nalthough': 1,
          'brilliant': 1,
          'rubbish': 1,
          'makes': 1,
          'ride': 1,
          'hasnt': 1,
          'since': 1,
          'way': 1,
          'back': 1,
          'early': 1,
          '90s': 1,
          'lets': 1,
          'fully': 1,
          'exploit': 1,
          'act': 1,
          'close': 1,
          'hilarious': 1,
          'dead': 1,
          'straight': 1,
          'coming': 1,
          'unaware': 1,
          'gold': 1,
          'mine': 1,
          'nlisa': 1,
          'barely': 1,
          'seen': 1,
          'crystals': 1,
          'estranged': 1,
          'wife': 1,
          'basically': 1,
          'reprises': 1,
          'phoebe': 1,
          'v': 1,
          'series': 1,
          'friends': 1,
          'getting': 1,
          'tiresome': 1,
          'doesnt': 1,
          'come': 1,
          'supporting': 1,
          'apparently': 1,
          'entire': 1,
          'casino': 1,
          'caricatures': 1,
          'especially': 1,
          'vittis': 1,
          'bodyguard': 1,
          'jelly': 1,
          'joe': 1,
          'viterelli': 1,
          'genuinely': 1,
          'proper': 1,
          'laughs': 1,
          'instead': 1,
          'hard': 1,
          'ass': 1,
          'talking': 1,
          'sometimes': 1,
          'gets': 1,
          'bloody': 1,
          'light': 1,
          'hearted': 1,
          'strangely': 1,
          'fits': 1,
          'nspoofs': 1,
          'famous': 1,
          'movies': 1,
          'including': 1,
          'nice': 1,
          'godfather': 1,
          'italian': 1,
          'tunes': 1,
          'throughout': 1,
          'soundtrack': 1,
          'contribute': 1,
          'ntheres': 1,
          'odd': 1,
          'fbi': 1,
          'guys': 1,
          'appear': 1,
          'disappear': 1,
          'apparent': 1,
          'true': 1,
          'chequered': 1,
          'production': 1,
          'history': 1,
          'perhaps': 1,
          'expanded': 1,
          'earlier': 1,
          'version': 1,
          'nunfortunately': 1,
          'hollywood': 1,
          'know': 1,
          'nharold': 1,
          'best': 1,
          'known': 1,
          'egon': 1,
          'ghostbusters': 1,
          'deft': 1,
          'touch': 1,
          'directing': 1,
          'shown': 1,
          'less': 1,
          'caddyshack': 1,
          'potential': 1,
          'scene': 1,
          'dug': 1,
          'presented': 1,
          'written': 1,
          'along': 1,
          'peter': 1,
          'tolan': 1,
          'ken': 1,
          'lonergan': 1,
          'starts': 1,
          'remains': 1,
          'sadly': 1,
          'peters': 1,
          'last': 1,
          'twenty': 1,
          'minutes': 1,
          'wrongly': 1,
          'enters': 1,
          'territory': 1,
          'short': 1,
          'however': 1,
          'interest': 1,
          'waning': 1,
          'goes': 1,
          'rushed': 1,
          'unsatisfying': 1,
          'ending': 1,
          'credits': 1,
          'roll': 1,
          'nanalyze': 1,
          'certainly': 1,
          'worth': 1,
          'watching': 1,
          'sobbing': 1,
          'watch': 1,
          'even': 1,
          'though': 1,
          'seem': 1,
          'forced': 1,
          'think': 1,
          'intentional': 1,
          'ncrystal': 1,
          'likeable': 1,
          'years': 1,
          'time': 1,
          'possible': 1,
          'thing': 1,
          'awesome': 1,
          'nits': 1,
          'probably': 1,
          'remembered': 1,
          'much': 1,
          'leave': 1,
          'feel': 1,
          'cheated': 1,
          'npos': 1}),
 Counter({'cusack': 5,
          'malkovich': 4,
          'nthe': 4,
          'john': 3,
          'quite': 3,
          'njohn': 3,
          'time': 3,
          'ni': 3,
          'nit': 3,
          'film': 2,
          'see': 2,
          'films': 2,
          'falls': 2,
          'diaz': 2,
          'nwhen': 2,
          'finally': 2,
          'nits': 2,
          'portal': 2,
          'isnt': 2,
          'becomes': 2,
          'mind': 2,
          'control': 2,
          'like': 2,
          'really': 2,
          'could': 2,
          'become': 2,
          'act': 2,
          'something': 2,
          'well': 2,
          'better': 2,
          'attention': 2,
          'type': 1,
          'need': 1,
          'ntodays': 1,
          'either': 1,
          'blockbusters': 1,
          'entertain': 1,
          'us': 1,
          'tiresome': 1,
          'formulas': 1,
          'similar': 1,
          'themes': 1,
          'nmalkovich': 1,
          'none': 1,
          'categories': 1,
          'refreshing': 1,
          'occur': 1,
          'nthis': 1,
          'strangely': 1,
          'provoking': 1,
          'story': 1,
          'actually': 1,
          'somewhat': 1,
          'understandable': 1,
          'plays': 1,
          'puppeteer': 1,
          'trying': 1,
          'make': 1,
          'big': 1,
          'nhis': 1,
          'wife': 1,
          'cameron': 1,
          'supports': 1,
          'working': 1,
          'petstore': 1,
          'explains': 1,
          'obscure': 1,
          'pets': 1,
          'keep': 1,
          'apartment': 1,
          'realizes': 1,
          'needs': 1,
          'get': 1,
          'job': 1,
          'finds': 1,
          'ad': 1,
          'filing': 1,
          'clerk': 1,
          'reaches': 1,
          'building': 1,
          'arrives': 1,
          '7': 1,
          '12': 1,
          'floor': 1,
          'discovers': 1,
          'secret': 1,
          'leads': 1,
          '15': 1,
          'minutes': 1,
          'nmeanwhile': 1,
          'meets': 1,
          'business': 1,
          'partner': 1,
          'catherine': 1,
          'keener': 1,
          'madly': 1,
          'love': 1,
          'problem': 1,
          'interest': 1,
          'ever': 1,
          'whole': 1,
          'thing': 1,
          'toy': 1,
          'fact': 1,
          'cusacks': 1,
          'dream': 1,
          'nbeing': 1,
          'inside': 1,
          'malkovichs': 1,
          'gave': 1,
          'opportunity': 1,
          'basically': 1,
          'mlakovich': 1,
          'puppet': 1,
          'fulfill': 1,
          'fantasies': 1,
          'dont': 1,
          'want': 1,
          'give': 1,
          'away': 1,
          'much': 1,
          'attached': 1,
          'discovery': 1,
          'nin': 1,
          'opinion': 1,
          'idea': 1,
          'absolutely': 1,
          'brilliant': 1,
          'scary': 1,
          'think': 1,
          'someone': 1,
          'makes': 1,
          'wonder': 1,
          'sometimes': 1,
          'blurt': 1,
          'things': 1,
          'blue': 1,
          'neven': 1,
          'script': 1,
          'super': 1,
          'sharp': 1,
          'cant': 1,
          'help': 1,
          'find': 1,
          'ending': 1,
          'displeasing': 1,
          'lead': 1,
          'least': 1,
          'amusing': 1,
          'conclusion': 1,
          'tried': 1,
          'explain': 1,
          'mythology': 1,
          'portals': 1,
          'made': 1,
          'seem': 1,
          'rushed': 1,
          'nother': 1,
          'enjoyable': 1,
          'acting': 1,
          'delightful': 1,
          'given': 1,
          'chance': 1,
          'prove': 1,
          'ability': 1,
          'nhes': 1,
          'far': 1,
          'underrated': 1,
          'actor': 1,
          'due': 1,
          'lack': 1,
          'popularity': 1,
          'im': 1,
          'hoping': 1,
          'change': 1,
          'ncameron': 1,
          'usual': 1,
          'charming': 1,
          'self': 1,
          'although': 1,
          'felt': 1,
          'part': 1,
          'wrong': 1,
          'pulled': 1,
          'continues': 1,
          'creep': 1,
          'people': 1,
          'eerie': 1,
          'facial': 1,
          'expressions': 1,
          'tone': 1,
          'voice': 1,
          'nwho': 1,
          'elses': 1,
          'would': 1,
          'explore': 1,
          'director': 1,
          'spike': 1,
          'jonze': 1,
          'appeared': 1,
          'last': 1,
          'months': 1,
          'three': 1,
          'kings': 1,
          'catches': 1,
          'project': 1,
          'knew': 1,
          'bizzare': 1,
          'extreme': 1,
          'nhe': 1,
          'likely': 1,
          'receive': 1,
          'media': 1,
          'n': 1,
          'excellent': 1,
          'definitly': 1,
          'entertaining': 1,
          'eaisly': 1,
          'cult': 1,
          'favorite': 1,
          'nwhats': 1,
          'even': 1,
          'puzzling': 1,
          'message': 1,
          'nick': 1,
          'lyons': 1,
          'npos': 1}),
 Counter({'dance': 11,
          'shall': 6,
          'story': 3,
          'sugiyama': 3,
          'school': 3,
          'rather': 3,
          'nsuo': 3,
          'japanese': 2,
          'koji': 2,
          'yakusho': 2,
          'one': 2,
          'mai': 2,
          'dancing': 2,
          'sugiyamas': 2,
          'wife': 2,
          'becomes': 2,
          'nin': 2,
          'film': 2,
          'comedy': 2,
          'matter': 2,
          'nits': 2,
          'new': 2,
          'personalities': 2,
          'small': 2,
          'steps': 2,
          'feelgood': 1,
          'formulaic': 1,
          'may': 1,
          'way': 1,
          'nalso': 1,
          'demonstrates': 1,
          'kind': 1,
          'charming': 1,
          'restraint': 1,
          'dont': 1,
          'often': 1,
          'find': 1,
          'american': 1,
          'films': 1,
          'nthis': 1,
          'import': 1,
          'tells': 1,
          'middleaged': 1,
          'accountant': 1,
          'named': 1,
          'whose': 1,
          'mundane': 1,
          'life': 1,
          'shaken': 1,
          'night': 1,
          'spots': 1,
          'beautiful': 1,
          'kishikawa': 1,
          'tamiyo': 1,
          'kusakari': 1,
          'window': 1,
          'nintrigued': 1,
          'melancholy': 1,
          'demeanor': 1,
          'slightly': 1,
          'infatuated': 1,
          'signs': 1,
          'weekly': 1,
          'classes': 1,
          'much': 1,
          'amazement': 1,
          'ends': 1,
          'attracted': 1,
          'young': 1,
          'sensei': 1,
          'nmeanwhile': 1,
          'hideko': 1,
          'hara': 1,
          'suspicious': 1,
          'late': 1,
          'wednesday': 1,
          'nights': 1,
          'sets': 1,
          'private': 1,
          'detective': 1,
          'husbands': 1,
          'trail': 1,
          'hollywood': 1,
          'bet': 1,
          'subplot': 1,
          'would': 1,
          'turned': 1,
          'stream': 1,
          'slapstick': 1,
          'crazy': 1,
          'misunderstandings': 1,
          'writerdirector': 1,
          'masayuki': 1,
          'suo': 1,
          'dispenses': 1,
          'minutes': 1,
          'using': 1,
          'set': 1,
          'later': 1,
          'character': 1,
          'interactions': 1,
          'letting': 1,
          'overwhelm': 1,
          'pratfalls': 1,
          'nneither': 1,
          'make': 1,
          'climactic': 1,
          'moment': 1,
          'victory': 1,
          'competition': 1,
          'hero': 1,
          'meanspirited': 1,
          'token': 1,
          'rival': 1,
          'gives': 1,
          'graceful': 1,
          'movements': 1,
          'subject': 1,
          'allowing': 1,
          'humor': 1,
          'flow': 1,
          'characters': 1,
          'forcing': 1,
          'upon': 1,
          'nan': 1,
          'opening': 1,
          'prologue': 1,
          'ngoes': 1,
          'effort': 1,
          'place': 1,
          'sociological': 1,
          'perspective': 1,
          'explaining': 1,
          'contrary': 1,
          'ballroom': 1,
          'sense': 1,
          'propriety': 1,
          'forced': 1,
          'message': 1,
          'doesnt': 1,
          'need': 1,
          'culturespecific': 1,
          'angle': 1,
          'nthe': 1,
          'nplays': 1,
          'role': 1,
          'singles': 1,
          'mixer': 1,
          'everyone': 1,
          'vaguely': 1,
          'embarrassed': 1,
          'yet': 1,
          'taking': 1,
          'opportunity': 1,
          'try': 1,
          'nmost': 1,
          'amusing': 1,
          'among': 1,
          'adopted': 1,
          'coworker': 1,
          'mr': 1,
          'aoki': 1,
          'naoto': 1,
          'takenaka': 1,
          'balding': 1,
          'systems': 1,
          'analyst': 1,
          'fiery': 1,
          'latin': 1,
          'lover': 1,
          'dons': 1,
          'frizzy': 1,
          'wig': 1,
          'begins': 1,
          'rumba': 1,
          'nsugiyamas': 1,
          'awakening': 1,
          'less': 1,
          'overt': 1,
          'wonderful': 1,
          'job': 1,
          'showing': 1,
          'transformation': 1,
          'delicate': 1,
          'performance': 1,
          'huge': 1,
          'heart': 1,
          'nshall': 1,
          'nis': 1,
          'fairly': 1,
          'lightweight': 1,
          'experience': 1,
          'makes': 1,
          'final': 1,
          'half': 1,
          'hour': 1,
          'long': 1,
          'sit': 1,
          'crams': 1,
          'lot': 1,
          'exposition': 1,
          'little': 1,
          'time': 1,
          'including': 1,
          'unnecessarily': 1,
          'detailed': 1,
          'backstory': 1,
          'resulting': 1,
          'sluggish': 1,
          'march': 1,
          'towards': 1,
          'resolution': 1,
          'nit': 1,
          'nfeels': 1,
          'hollywoodconventional': 1,
          'attempting': 1,
          'blindside': 1,
          'audience': 1,
          'truckload': 1,
          'emotional': 1,
          'catharsis': 1,
          'might': 1,
          'better': 1,
          'advised': 1,
          'conclude': 1,
          'gem': 1,
          'scene': 1,
          'take': 1,
          'first': 1,
          'tentative': 1,
          'together': 1,
          'nthats': 1,
          'real': 1,
          'joy': 1,
          'nconveys': 1,
          'ability': 1,
          'create': 1,
          'intoxicating': 1,
          'mood': 1,
          'romance': 1,
          'soften': 1,
          'stiffest': 1,
          'shirt': 1,
          'npos': 1}),
 Counter({'harry': 8,
          'panama': 5,
          'life': 5,
          'tailor': 4,
          'characters': 4,
          'osnard': 4,
          'canal': 4,
          'spy': 3,
          'offers': 3,
          'story': 3,
          'nosnard': 3,
          'new': 3,
          'rush': 3,
          'knows': 3,
          'playing': 3,
          'one': 3,
          'presence': 2,
          'ninstead': 2,
          'get': 2,
          'john': 2,
          'also': 2,
          'screenplay': 2,
          'film': 2,
          'time': 2,
          'nbrosnan': 2,
          'british': 2,
          'way': 2,
          'information': 2,
          'secret': 2,
          'nhe': 2,
          'wife': 2,
          'louisa': 2,
          'jamie': 2,
          'lee': 2,
          'curtis': 2,
          'little': 2,
          'lies': 2,
          'nthe': 2,
          'leading': 2,
          'best': 2,
          'city': 2,
          'character': 2,
          'using': 2,
          'supporting': 2,
          'great': 2,
          'two': 2,
          'adds': 2,
          'people': 2,
          'different': 1,
          'kind': 1,
          'movie': 1,
          'ndespite': 1,
          'pierce': 1,
          'brosnan': 1,
          'nary': 1,
          'hint': 1,
          'james': 1,
          'bond': 1,
          'flash': 1,
          'big': 1,
          'action': 1,
          'scenes': 1,
          'leering': 1,
          'super': 1,
          'villains': 1,
          'emptyheaded': 1,
          'femme': 1,
          'fatales': 1,
          'interesting': 1,
          'intriguing': 1,
          'situation': 1,
          'nbased': 1,
          'novel': 1,
          'le': 1,
          'carr': 1,
          'cowrote': 1,
          'viewers': 1,
          'something': 1,
          'rarely': 1,
          'seen': 1,
          'theaters': 1,
          'year': 1,
          'solid': 1,
          'welltold': 1,
          'plays': 1,
          'andy': 1,
          'operative': 1,
          'walking': 1,
          'thin': 1,
          'ice': 1,
          'nhis': 1,
          'superiors': 1,
          'ship': 1,
          'making': 1,
          'sure': 1,
          'understands': 1,
          'better': 1,
          'screw': 1,
          'placement': 1,
          'arrives': 1,
          'tropics': 1,
          'virtually': 1,
          'oozing': 1,
          'contempt': 1,
          'coworkers': 1,
          'home': 1,
          'base': 1,
          'nwhen': 1,
          'shown': 1,
          'bridge': 1,
          'americas': 1,
          'person': 1,
          'marveling': 1,
          'fact': 1,
          'since': 1,
          'creation': 1,
          'structure': 1,
          'sole': 1,
          'connection': 1,
          'north': 1,
          'south': 1,
          'america': 1,
          'barely': 1,
          'keeps': 1,
          'yawning': 1,
          'clearly': 1,
          'relishes': 1,
          'chance': 1,
          'antithesis': 1,
          '007': 1,
          'investing': 1,
          'suave': 1,
          'distinct': 1,
          'reptilian': 1,
          'quality': 1,
          'coupled': 1,
          'air': 1,
          'indifference': 1,
          'irks': 1,
          'fellows': 1,
          'end': 1,
          'nsearching': 1,
          'government': 1,
          'sets': 1,
          'sights': 1,
          'pendel': 1,
          'geoffrey': 1,
          'unctuous': 1,
          'serving': 1,
          'panamanian': 1,
          'elite': 1,
          'nharry': 1,
          'claims': 1,
          'transplant': 1,
          'britains': 1,
          'renowned': 1,
          'saville': 1,
          'row': 1,
          'excon': 1,
          'served': 1,
          'five': 1,
          'years': 1,
          'prison': 1,
          'torching': 1,
          'uncles': 1,
          'shop': 1,
          'insurance': 1,
          'scam': 1,
          'ears': 1,
          'debt': 1,
          'spent': 1,
          'fortune': 1,
          'unsuccessful': 1,
          'farm': 1,
          'pay': 1,
          'gathered': 1,
          'upscale': 1,
          'clientele': 1,
          'neager': 1,
          'comply': 1,
          'starts': 1,
          'concocting': 1,
          'tidbits': 1,
          'keep': 1,
          'money': 1,
          'flowing': 1,
          'nbefore': 1,
          'long': 1,
          'forced': 1,
          'loving': 1,
          'aide': 1,
          'director': 1,
          'nharrys': 1,
          'build': 1,
          'eventually': 1,
          'taking': 1,
          'turns': 1,
          'reports': 1,
          'silent': 1,
          'opposition': 1,
          'group': 1,
          'threatening': 1,
          'upset': 1,
          'balance': 1,
          'control': 1,
          'bogus': 1,
          'revelation': 1,
          'proves': 1,
          'explosive': 1,
          'meetings': 1,
          'washington': 1,
          'c': 1,
          'protect': 1,
          'vital': 1,
          'waterway': 1,
          'nmeanwhile': 1,
          'wallows': 1,
          'newfound': 1,
          'status': 1,
          'enjoying': 1,
          'offer': 1,
          'wooing': 1,
          'attractive': 1,
          'coworker': 1,
          'nand': 1,
          'grows': 1,
          'ever': 1,
          'fretful': 1,
          'fearing': 1,
          'consequences': 1,
          'clients': 1,
          'mention': 1,
          'learn': 1,
          'ngeoffrey': 1,
          'wonderful': 1,
          'fawning': 1,
          'customers': 1,
          'day': 1,
          'savoring': 1,
          'rich': 1,
          'family': 1,
          'evenings': 1,
          'agent': 1,
          'hours': 1,
          'benefactor': 1,
          'nrush': 1,
          'makes': 1,
          'credible': 1,
          'figure': 1,
          'presenting': 1,
          'various': 1,
          'levels': 1,
          'effectively': 1,
          'remains': 1,
          'sympathetic': 1,
          'despite': 1,
          'duplicity': 1,
          'nafter': 1,
          'gaining': 1,
          'fame': 1,
          'larger': 1,
          'flips': 1,
          'everything': 1,
          'around': 1,
          'role': 1,
          'energy': 1,
          'depict': 1,
          'quiet': 1,
          'desperation': 1,
          'man': 1,
          'slowly': 1,
          'realizing': 1,
          'solution': 1,
          'troubles': 1,
          'may': 1,
          'worse': 1,
          'original': 1,
          'problems': 1,
          'nalthough': 1,
          'gets': 1,
          'far': 1,
          'screen': 1,
          'imbues': 1,
          'depth': 1,
          'greater': 1,
          'provides': 1,
          'nof': 1,
          'central': 1,
          'exhibits': 1,
          'maturity': 1,
          'genuine': 1,
          'selfconfidence': 1,
          'ncurtis': 1,
          'favorite': 1,
          'female': 1,
          'actors': 1,
          'whiplash': 1,
          'smart': 1,
          'sultry': 1,
          'charismatic': 1,
          'deserves': 1,
          'roles': 1,
          'nspeaking': 1,
          'ones': 1,
          'nharold': 1,
          'pinter': 1,
          'amusing': 1,
          'harrys': 1,
          'uncle': 1,
          'benny': 1,
          'pops': 1,
          'throughout': 1,
          'number': 1,
          'creative': 1,
          'ways': 1,
          'nalso': 1,
          'shoring': 1,
          'proceedings': 1,
          'jon': 1,
          'polito': 1,
          'corrupt': 1,
          'banker': 1,
          'dylan': 1,
          'baker': 1,
          'riot': 1,
          'united': 1,
          'states': 1,
          'general': 1,
          'straight': 1,
          'dr': 1,
          'strangelove': 1,
          'school': 1,
          'armed': 1,
          'patriotism': 1,
          'nbut': 1,
          'important': 1,
          'secondary': 1,
          'performers': 1,
          'leonor': 1,
          'varela': 1,
          'brendan': 1,
          'gleeson': 1,
          'outstanding': 1,
          'wounded': 1,
          'activists': 1,
          'ntheir': 1,
          'weight': 1,
          'reminding': 1,
          'us': 1,
          'beyond': 1,
          'charades': 1,
          'men': 1,
          'real': 1,
          'suffered': 1,
          'greatly': 1,
          'politics': 1,
          'connected': 1,
          'ndirector': 1,
          'boorman': 1,
          'additional': 1,
          'verisimilitude': 1,
          'shooting': 1,
          'location': 1,
          'merely': 1,
          'colorful': 1,
          'backdrop': 1,
          'adroitly': 1,
          'weaves': 1,
          'footage': 1,
          'aspects': 1,
          'metropolis': 1,
          'described': 1,
          'casablanca': 1,
          'without': 1,
          'heroes': 1,
          'pulsates': 1,
          'underling': 1,
          'folly': 1,
          'foreigners': 1,
          'dangerous': 1,
          'games': 1,
          'could': 1,
          'disastrous': 1,
          'impact': 1,
          'many': 1,
          'n': 1,
          'succeeds': 1,
          'principals': 1,
          'behind': 1,
          'bright': 1,
          'enough': 1,
          'make': 1,
          'simple': 1,
          'entertainment': 1,
          'npos': 1}),
 Counter({'film': 12,
          'nthe': 6,
          'time': 5,
          'ni': 5,
          'read': 5,
          'one': 5,
          'scene': 5,
          'say': 4,
          'book': 4,
          'great': 4,
          'jack': 4,
          'though': 3,
          'think': 3,
          'sight': 3,
          'dialogue': 3,
          'soderbergh': 3,
          'certainly': 3,
          'act': 3,
          'make': 3,
          'plays': 3,
          'nhe': 3,
          'gimmick': 3,
          'little': 2,
          'ive': 2,
          'books': 2,
          'im': 2,
          'first': 2,
          'dont': 2,
          'havent': 2,
          'films': 2,
          'based': 2,
          'believe': 2,
          'quality': 2,
          'soderberghs': 2,
          'terrific': 2,
          'nits': 2,
          'nice': 2,
          'nout': 2,
          'clooney': 2,
          'guy': 2,
          'also': 2,
          'fun': 2,
          'minutes': 2,
          'later': 2,
          'help': 2,
          'buddy': 2,
          'ving': 2,
          'rhames': 2,
          'karen': 2,
          'lopez': 2,
          'another': 2,
          'pulp': 2,
          'fiction': 2,
          'enough': 2,
          'comes': 2,
          'hes': 2,
          'without': 2,
          'uses': 2,
          'nas': 2,
          'actors': 2,
          'light': 2,
          'scenes': 2,
          'good': 2,
          'every': 2,
          'simply': 2,
          'perhaps': 1,
          'reading': 1,
          'habits': 1,
          'really': 1,
          'like': 1,
          'enjoyed': 1,
          'many': 1,
          'lifetime': 1,
          'nmy': 1,
          'problem': 1,
          'slow': 1,
          'reader': 1,
          'dedicated': 1,
          'ill': 1,
          'enjoy': 1,
          'portions': 1,
          'set': 1,
          'months': 1,
          'taken': 1,
          'last': 1,
          'six': 1,
          'weeks': 1,
          'get': 1,
          'hundred': 1,
          'pages': 1,
          'anna': 1,
          'karenina': 1,
          'even': 1,
          'loving': 1,
          'nin': 1,
          'addition': 1,
          'typically': 1,
          'anything': 1,
          'created': 1,
          '19th': 1,
          'century': 1,
          'reason': 1,
          'bother': 1,
          'bit': 1,
          'information': 1,
          'feel': 1,
          'bad': 1,
          'admitting': 1,
          'exception': 1,
          'expectations': 1,
          'nhowever': 1,
          'necessary': 1,
          'beforehand': 1,
          'order': 1,
          'judge': 1,
          'nneedless': 1,
          'elmore': 1,
          'leonard': 1,
          'novel': 1,
          'steven': 1,
          'new': 1,
          'cant': 1,
          'faithful': 1,
          'adaptation': 1,
          'lives': 1,
          'leonards': 1,
          'vision': 1,
          'sharp': 1,
          'acting': 1,
          'pumping': 1,
          'full': 1,
          'energy': 1,
          'style': 1,
          'injected': 1,
          'distraction': 1,
          '1998s': 1,
          'lineup': 1,
          'brainless': 1,
          'blockbusters': 1,
          'hopelessly': 1,
          'wishing': 1,
          'size': 1,
          'mattered': 1,
          'proves': 1,
          'doesnt': 1,
          'originally': 1,
          'written': 1,
          'george': 1,
          'onenote': 1,
          'actor': 1,
          'incapable': 1,
          'depth': 1,
          'occasionally': 1,
          'showing': 1,
          'flair': 1,
          'nafter': 1,
          'seeing': 1,
          'latest': 1,
          'performance': 1,
          'changed': 1,
          'mind': 1,
          'forceful': 1,
          'presence': 1,
          '20': 1,
          'million': 1,
          'superstars': 1,
          'nhere': 1,
          'foley': 1,
          'middle': 1,
          'aged': 1,
          'robs': 1,
          'banks': 1,
          'living': 1,
          'opens': 1,
          'getting': 1,
          'caught': 1,
          'car': 1,
          'wont': 1,
          'start': 1,
          'goes': 1,
          'jail': 1,
          'interesting': 1,
          'break': 1,
          'five': 1,
          'cinematic': 1,
          'friend': 1,
          'nwere': 1,
          'introduced': 1,
          'sisco': 1,
          'jennifer': 1,
          'u': 1,
          'marshall': 1,
          'conveniently': 1,
          'waiting': 1,
          'shotgun': 1,
          'escapes': 1,
          'nfortunately': 1,
          'take': 1,
          'hostage': 1,
          'spend': 1,
          'trunk': 1,
          'together': 1,
          'drives': 1,
          'safety': 1,
          'central': 1,
          'conflict': 1,
          'arises': 1,
          'become': 1,
          'obsessed': 1,
          'respective': 1,
          'jobs': 1,
          'superficially': 1,
          'incompatible': 1,
          'nwe': 1,
          'soon': 1,
          'learn': 1,
          'told': 1,
          'sequence': 1,
          'since': 1,
          'gritty': 1,
          'crime': 1,
          'comedy': 1,
          'flashbacks': 1,
          'arise': 1,
          'nat': 1,
          'kind': 1,
          'felt': 1,
          'guess': 1,
          'treats': 1,
          'material': 1,
          'humor': 1,
          'everything': 1,
          'naturally': 1,
          'nive': 1,
          'seen': 1,
          'impressed': 1,
          'kafka': 1,
          'sex': 1,
          'lies': 1,
          'videotape': 1,
          'excellent': 1,
          'nhes': 1,
          'artist': 1,
          'making': 1,
          'obvious': 1,
          'pretentious': 1,
          'always': 1,
          'admirable': 1,
          'tricks': 1,
          'yes': 1,
          'lots': 1,
          'freezeframe': 1,
          'stuff': 1,
          'adds': 1,
          'smooth': 1,
          'quirky': 1,
          'currents': 1,
          'said': 1,
          'matched': 1,
          'nlopez': 1,
          'course': 1,
          'beautiful': 1,
          'sense': 1,
          'shes': 1,
          'honing': 1,
          'skills': 1,
          'natural': 1,
          'previous': 1,
          'ventures': 1,
          'stone': 1,
          'gave': 1,
          'much': 1,
          'loathsome': 1,
          'uturn': 1,
          'two': 1,
          'arresting': 1,
          'chemistry': 1,
          'best': 1,
          'far': 1,
          'seduction': 1,
          'brilliance': 1,
          'due': 1,
          'part': 1,
          'cuts': 1,
          'back': 1,
          'forth': 1,
          'quiet': 1,
          'discussion': 1,
          'bar': 1,
          'physical': 1,
          'takes': 1,
          'place': 1,
          'series': 1,
          'soft': 1,
          'nuances': 1,
          'glances': 1,
          'layered': 1,
          'upon': 1,
          'result': 1,
          'better': 1,
          'love': 1,
          'recent': 1,
          'cinema': 1,
          'meaningful': 1,
          'engrossing': 1,
          'supporting': 1,
          'cast': 1,
          'strong': 1,
          'led': 1,
          'alwaysreliable': 1,
          'ndennis': 1,
          'farina': 1,
          'karens': 1,
          'father': 1,
          'cheadle': 1,
          'profoundly': 1,
          'stupid': 1,
          'villain': 1,
          'nsteve': 1,
          'zahn': 1,
          'jacks': 1,
          'nearlybrain': 1,
          'dead': 1,
          'accomplice': 1,
          'glenn': 1,
          'steals': 1,
          'thats': 1,
          'already': 1,
          'high': 1,
          'level': 1,
          'nall': 1,
          'helped': 1,
          'intelligentlyconstructed': 1,
          'script': 1,
          'scott': 1,
          'frank': 1,
          'although': 1,
          'heavy': 1,
          'moments': 1,
          'linger': 1,
          'memory': 1,
          'noverall': 1,
          'recommend': 1,
          'entertainment': 1,
          'nnot': 1,
          'change': 1,
          'life': 1,
          'see': 1,
          'movie': 1,
          'art': 1,
          'tell': 1,
          'story': 1,
          'entertain': 1,
          'viewers': 1,
          'might': 1,
          'something': 1,
          'text': 1,
          'worth': 1,
          'looking': 1,
          'npos': 1}),
 Counter({'pi': 5,
          'max': 5,
          'film': 5,
          'character': 4,
          'patterns': 4,
          'n': 4,
          'nthe': 4,
          'maxs': 4,
          'mr': 4,
          'sense': 4,
          'one': 3,
          'aronofskys': 3,
          'stock': 3,
          'market': 3,
          'gullette': 3,
          'picture': 3,
          'ones': 3,
          'following': 2,
          'nothing': 2,
          'series': 2,
          'like': 2,
          'way': 2,
          'know': 2,
          'prices': 2,
          'time': 2,
          'always': 2,
          'system': 2,
          'individual': 2,
          'nits': 2,
          'universe': 2,
          'protagonist': 2,
          'nature': 2,
          'numbers': 2,
          'finding': 2,
          'anything': 2,
          'year': 2,
          'story': 2,
          'eccentricity': 2,
          'dominant': 2,
          'unsettling': 2,
          'mood': 2,
          'scene': 2,
          'effective': 2,
          'approach': 2,
          'plot': 2,
          'nstill': 2,
          'films': 2,
          'paranoia': 2,
          'perspective': 2,
          'note': 1,
          'may': 1,
          'consider': 1,
          'portions': 1,
          'text': 1,
          'spoilers': 1,
          'nbe': 1,
          'forewarned': 1,
          'namong': 1,
          'fanatical': 1,
          'ticker': 1,
          'tapeworshipping': 1,
          'friends': 1,
          'theres': 1,
          'happens': 1,
          'share': 1,
          'philosophy': 1,
          'espoused': 1,
          'central': 1,
          'darren': 1,
          'darkly': 1,
          'original': 1,
          'entire': 1,
          'reduced': 1,
          'analysis': 1,
          'produce': 1,
          'information': 1,
          'accurately': 1,
          'forecast': 1,
          'future': 1,
          'behaviour': 1,
          'example': 1,
          'mentality': 1,
          'involved': 1,
          'price': 1,
          'goes': 1,
          'sharply': 1,
          'go': 1,
          'nwhile': 1,
          'freely': 1,
          'admit': 1,
          'less': 1,
          'knowledge': 1,
          'check': 1,
          'good': 1,
          'bad': 1,
          'least': 1,
          'hence': 1,
          'really': 1,
          'couldnt': 1,
          'comment': 1,
          'authority': 1,
          'nonetheless': 1,
          'struck': 1,
          'incredibly': 1,
          'naive': 1,
          'oversimplification': 1,
          'astonishingly': 1,
          'complex': 1,
          'besides': 1,
          'simple': 1,
          'doubt': 1,
          'somebody': 1,
          'wouldve': 1,
          'already': 1,
          'figured': 1,
          'difference': 1,
          'case': 1,
          'colleague': 1,
          'otherwise': 1,
          'assuredly': 1,
          'realistic': 1,
          'truly': 1,
          'believes': 1,
          'valid': 1,
          'forecaster': 1,
          'uses': 1,
          'ideology': 1,
          'device': 1,
          'investigate': 1,
          'characters': 1,
          'psychosis': 1,
          'also': 1,
          'vastly': 1,
          'convincing': 1,
          'argument': 1,
          'mathematics': 1,
          'language': 1,
          'insists': 1,
          'genius': 1,
          'maximillian': 1,
          'cohen': 1,
          'sean': 1,
          'cool': 1,
          'mantralike': 1,
          'voiceover': 1,
          'repeats': 1,
          'throughout': 1,
          'nsince': 1,
          'expressed': 1,
          'everywhere': 1,
          'reasons': 1,
          'eminent': 1,
          'logic': 1,
          'allow': 1,
          'predict': 1,
          'ups': 1,
          'downs': 1,
          'many': 1,
          'games': 1,
          'yankees': 1,
          'win': 1,
          'flavour': 1,
          'jam': 1,
          'im': 1,
          'going': 1,
          'put': 1,
          'toast': 1,
          'tomorrow': 1,
          'morning': 1,
          'nobsessed': 1,
          'proverbial': 1,
          'key': 1,
          'lives': 1,
          'paranoid': 1,
          'selfimposed': 1,
          'solitude': 1,
          'seedy': 1,
          'nyc': 1,
          'chinatown': 1,
          'apartment': 1,
          'singlemindedly': 1,
          'toiling': 1,
          'away': 1,
          'monstrous': 1,
          'homemade': 1,
          'computer': 1,
          'nsullenly': 1,
          'withdrawn': 1,
          'plauged': 1,
          'debilitating': 1,
          'migraines': 1,
          'elusive': 1,
          'pursuit': 1,
          'mysterious': 1,
          '216digit': 1,
          'number': 1,
          'machine': 1,
          'spits': 1,
          'day': 1,
          'driving': 1,
          'madness': 1,
          'basically': 1,
          'clever': 1,
          'astute': 1,
          'perceptively': 1,
          'zeroing': 1,
          'modern': 1,
          'mistrust': 1,
          'mathematical': 1,
          'reductionism': 1,
          'age': 1,
          'societal': 1,
          'phobia': 1,
          'individualism': 1,
          'replaced': 1,
          'numeric': 1,
          'identifiers': 1,
          'allconsuming': 1,
          'penchent': 1,
          'creates': 1,
          'lingering': 1,
          'nit': 1,
          'helps': 1,
          'matters': 1,
          'hes': 1,
          'particularly': 1,
          'likable': 1,
          'nall': 1,
          'attempts': 1,
          'friendliness': 1,
          'neighbours': 1,
          'curtly': 1,
          'rebuffed': 1,
          'spindly': 1,
          'neuroticlooking': 1,
          'hasnt': 1,
          'indulge': 1,
          'pleasantries': 1,
          'nfor': 1,
          'puts': 1,
          'lead': 1,
          'front': 1,
          'center': 1,
          'appears': 1,
          'virtually': 1,
          'every': 1,
          'takes': 1,
          'refreshing': 1,
          'avoiding': 1,
          'conventional': 1,
          'aesthetics': 1,
          'ambivalence': 1,
          'much': 1,
          'avidly': 1,
          'rooting': 1,
          'triumph': 1,
          'moment': 1,
          'epiphany': 1,
          'mixed': 1,
          'dread': 1,
          'morbid': 1,
          'fascination': 1,
          'disturbing': 1,
          'journey': 1,
          'quest': 1,
          'care': 1,
          'fate': 1,
          'nteetering': 1,
          'edge': 1,
          'dementia': 1,
          'winds': 1,
          'pursued': 1,
          'two': 1,
          'different': 1,
          'groups': 1,
          'want': 1,
          'pick': 1,
          'brain': 1,
          'fronted': 1,
          'deliciously': 1,
          'perky': 1,
          'resolutely': 1,
          'cheerful': 1,
          'representatives': 1,
          'inevitably': 1,
          'duplictious': 1,
          'intentions': 1,
          'nas': 1,
          'element': 1,
          'see': 1,
          'truman': 1,
          'shows': 1,
          'laura': 1,
          'linney': 1,
          'matter': 1,
          'real': 1,
          'life': 1,
          'never': 1,
          'stop': 1,
          'smiling': 1,
          'overly': 1,
          'friendly': 1,
          'wary': 1,
          'npi': 1,
          'addresses': 1,
          'intentionally': 1,
          'adheres': 1,
          'identifiable': 1,
          'pattern': 1,
          'cycle': 1,
          'headache': 1,
          'important': 1,
          'revelation': 1,
          'bit': 1,
          'development': 1,
          'pillpopping': 1,
          'montage': 1,
          'hallucinatory': 1,
          'nightmare': 1,
          'decidedly': 1,
          'cronenbergesque': 1,
          'undertones': 1,
          'directors': 1,
          'equally': 1,
          'adept': 1,
          'bridging': 1,
          'concepts': 1,
          'bodythemed': 1,
          'horror': 1,
          'nosebleeding': 1,
          'reality': 1,
          'repetitiveness': 1,
          'far': 1,
          'tedious': 1,
          'effectively': 1,
          'maddening': 1,
          'aims': 1,
          'get': 1,
          'skins': 1,
          'take': 1,
          'events': 1,
          'claustrophobic': 1,
          'nin': 1,
          'regard': 1,
          'wildly': 1,
          'succeeds': 1,
          'due': 1,
          'striking': 1,
          'direction': 1,
          'rarity': 1,
          'completely': 1,
          'immerses': 1,
          'protagonists': 1,
          'warped': 1,
          'surrounding': 1,
          'high': 1,
          'contrast': 1,
          'blackandwhite': 1,
          'cinematography': 1,
          'combined': 1,
          'constant': 1,
          'usage': 1,
          'extreme': 1,
          'closeups': 1,
          'lend': 1,
          'heightened': 1,
          'proceedings': 1,
          'scenes': 1,
          'stark': 1,
          'composition': 1,
          'conjunction': 1,
          'lumbering': 1,
          'make': 1,
          'curiously': 1,
          'resemble': 1,
          'latterday': 1,
          'schreck': 1,
          'nosferatu': 1,
          'nusing': 1,
          'savage': 1,
          'jittery': 1,
          'lensing': 1,
          'rapid': 1,
          'cuts': 1,
          'create': 1,
          'disorientation': 1,
          'often': 1,
          'dizzying': 1,
          'behold': 1,
          'isolationism': 1,
          'emphasized': 1,
          'shots': 1,
          'socalled': 1,
          'snorri': 1,
          'cam': 1,
          'keep': 1,
          'plain': 1,
          'focus': 1,
          'environment': 1,
          'races': 1,
          'blurred': 1,
          'bursts': 1,
          'npis': 1,
          'raw': 1,
          'aggressive': 1,
          'visuals': 1,
          'reminiscent': 1,
          'david': 1,
          'lynchs': 1,
          'early': 1,
          'work': 1,
          'particular': 1,
          'eraserhead': 1,
          'sinister': 1,
          'tone': 1,
          'splashes': 1,
          'onto': 1,
          'screen': 1,
          'immediately': 1,
          'dazzling': 1,
          'opening': 1,
          'credit': 1,
          'sequence': 1,
          'ably': 1,
          'backed': 1,
          'sly': 1,
          'electronic': 1,
          'score': 1,
          'clint': 1,
          'mansell': 1,
          'gradually': 1,
          'increases': 1,
          'intensity': 1,
          'amidst': 1,
          'kafkaesque': 1,
          'qualities': 1,
          'overall': 1,
          'dispassionate': 1,
          'occasionally': 1,
          'display': 1,
          'humour': 1,
          'nat': 1,
          'point': 1,
          'marcy': 1,
          'dawson': 1,
          'pamela': 1,
          'hart': 1,
          'great': 1,
          'fun': 1,
          'entices': 1,
          'offer': 1,
          'invaluable': 1,
          'treasure': 1,
          'oneofakind': 1,
          'ncomputer': 1,
          'chip': 1,
          'isnt': 1,
          'beautiful': 1,
          'coos': 1,
          'na': 1,
          'showcase': 1,
          'technical': 1,
          'virtuosity': 1,
          'made': 1,
          '60': 1,
          '000': 1,
          'since': 1,
          'gone': 1,
          'capture': 1,
          'acclaim': 1,
          '1998': 1,
          'sundance': 1,
          'festival': 1,
          'intriguingly': 1,
          'cerebral': 1,
          'ironically': 1,
          'perhaps': 1,
          'purely': 1,
          'visceral': 1,
          'npos': 1}),
 Counter({'film': 7,
          'plot': 4,
          'nthe': 3,
          'city': 3,
          'seen': 3,
          'special': 3,
          'effects': 3,
          'one': 3,
          'prepared': 2,
          'hellraiser': 2,
          'crow': 2,
          'nbut': 2,
          'sutherland': 2,
          'began': 2,
          'monologue': 2,
          'human': 2,
          'ni': 2,
          'character': 2,
          'spent': 2,
          'would': 2,
          'imagine': 2,
          'dark': 2,
          'clever': 2,
          'twists': 2,
          'nnot': 2,
          '12': 2,
          'monkeys': 2,
          'never': 2,
          'tsk': 2,
          'year': 2,
          'best': 2,
          'ive': 2,
          'upon': 1,
          'arriving': 1,
          'theater': 1,
          'opening': 1,
          'credits': 1,
          'took': 1,
          'seat': 1,
          'appeared': 1,
          'meets': 1,
          'soon': 1,
          'kiefer': 1,
          'speaking': 1,
          'narrative': 1,
          'describing': 1,
          'strangers': 1,
          'reasons': 1,
          'contacting': 1,
          'beings': 1,
          'hooked': 1,
          'nthere': 1,
          'something': 1,
          'especially': 1,
          'compelling': 1,
          'nature': 1,
          'voice': 1,
          'knew': 1,
          'start': 1,
          'going': 1,
          'witness': 1,
          'actions': 1,
          'rather': 1,
          'actor': 1,
          'attempting': 1,
          'nsutherland': 1,
          'played': 1,
          'role': 1,
          'true': 1,
          'veteran': 1,
          'nupon': 1,
          'completion': 1,
          'camera': 1,
          'arrives': 1,
          'fashion': 1,
          'wonder': 1,
          'long': 1,
          'alex': 1,
          'proyas': 1,
          'cinematography': 1,
          'caliber': 1,
          'maximum': 1,
          'hours': 1,
          'work': 1,
          'needed': 1,
          'flowed': 1,
          'beautifully': 1,
          'nas': 1,
          'taken': 1,
          'intricate': 1,
          'regions': 1,
          'unravel': 1,
          'point': 1,
          'last': 1,
          'time': 1,
          'usual': 1,
          'suspects': 1,
          'mention': 1,
          'series': 1,
          'make': 1,
          'james': 1,
          'cameron': 1,
          'literally': 1,
          'turn': 1,
          'green': 1,
          'envy': 1,
          'youre': 1,
          'exactly': 1,
          'biggest': 1,
          'scifi': 1,
          'fan': 1,
          'caveat': 1,
          'emptor': 1,
          'nget': 1,
          'ready': 1,
          'atmostpheric': 1,
          'darkness': 1,
          'without': 1,
          'boredom': 1,
          'depression': 1,
          'concept': 1,
          'mindstretching': 1,
          'however': 1,
          'sophisticated': 1,
          'nand': 1,
          'picture': 1,
          'finally': 1,
          'justice': 1,
          'comicbookgonefeaturefilm': 1,
          'fad': 1,
          'hollywood': 1,
          'recently': 1,
          'become': 1,
          'abusive': 1,
          'ndark': 1,
          'simply': 1,
          'puts': 1,
          'spawn': 1,
          'shame': 1,
          'nin': 1,
          'fact': 1,
          'climax': 1,
          'couldnt': 1,
          'help': 1,
          'feel': 1,
          'strong': 1,
          'presence': 1,
          'akira': 1,
          'esque': 1,
          'explosion': 1,
          'throughout': 1,
          'general': 1,
          'feeling': 1,
          'movie': 1,
          'nso': 1,
          'initial': 1,
          'predictions': 1,
          'wrong': 1,
          'nthis': 1,
          'anything': 1,
          'meloncholy': 1,
          'parts': 1,
          'five': 1,
          'nim': 1,
          'base': 1,
          'entirly': 1,
          'know': 1,
          'give': 1,
          'nits': 1,
          'actually': 1,
          'contained': 1,
          'neccessary': 1,
          'ingredients': 1,
          'keep': 1,
          'entertained': 1,
          'awake': 1,
          'storyline': 1,
          'camerawork': 1,
          'even': 1,
          'since': 1,
          'contact': 1,
          'recieved': 1,
          'deep': 1,
          'insight': 1,
          'way': 1,
          'mind': 1,
          'operates': 1,
          'blown': 1,
          'away': 1,
          'easily': 1,
          'ever': 1,
          'npos': 1}),
 Counter({'nthe': 10,
          'film': 8,
          'marriage': 7,
          'life': 7,
          'live': 6,
          'prayer': 5,
          'choices': 5,
          'hasidic': 4,
          'even': 4,
          'israel': 4,
          'religion': 4,
          'would': 4,
          'way': 4,
          'goes': 4,
          'nshe': 4,
          'without': 4,
          'malka': 4,
          'though': 3,
          'one': 3,
          'modern': 3,
          'control': 3,
          'rigid': 3,
          'jews': 3,
          'sect': 3,
          'everything': 3,
          'women': 3,
          'country': 3,
          'jewish': 3,
          'quarters': 3,
          'ones': 3,
          'never': 3,
          'ritual': 3,
          'god': 3,
          'nhe': 3,
          'woman': 3,
          'rivka': 3,
          'role': 3,
          'father': 3,
          'married': 3,
          'child': 3,
          'sisters': 3,
          'story': 2,
          'loving': 2,
          'political': 2,
          'government': 2,
          'ngitai': 2,
          'ever': 2,
          'got': 2,
          'death': 2,
          'letter': 2,
          'torah': 2,
          'subjugate': 2,
          'accept': 2,
          'attitudes': 2,
          'extreme': 2,
          'bound': 2,
          'go': 2,
          'seen': 2,
          'hasidim': 2,
          'nature': 2,
          'people': 2,
          'impossible': 2,
          'living': 2,
          'made': 2,
          'make': 2,
          'nhis': 2,
          'wife': 2,
          'looks': 2,
          'talmud': 2,
          'rabbi': 2,
          'upon': 2,
          'man': 2,
          'time': 2,
          'nmeirs': 2,
          'like': 2,
          'thought': 2,
          'mother': 2,
          '12': 2,
          'doesnt': 2,
          'younger': 2,
          'sister': 2,
          'get': 2,
          'yaakov': 2,
          'nbut': 2,
          'still': 2,
          'fight': 2,
          'love': 2,
          'nyossef': 2,
          'shown': 2,
          'difficult': 2,
          'choice': 2,
          'kadosh': 1,
          'means': 1,
          'sacred': 1,
          'hebrew': 1,
          'namos': 1,
          'gitais': 1,
          'fictional': 1,
          'work': 1,
          'spending': 1,
          'career': 1,
          'documentaries': 1,
          'grim': 1,
          'failed': 1,
          'symbolize': 1,
          'clash': 1,
          'cultures': 1,
          'native': 1,
          'israelis': 1,
          'viewpoint': 1,
          'toward': 1,
          'savvy': 1,
          'hasidics': 1,
          'intolerable': 1,
          'groups': 1,
          'vying': 1,
          'secular': 1,
          'devarimyom': 1,
          'yom': 1,
          'labor': 1,
          'party': 1,
          'leftist': 1,
          'believes': 1,
          'sound': 1,
          'knell': 1,
          'emphasis': 1,
          'ultraorthodox': 1,
          'vision': 1,
          'gods': 1,
          'law': 1,
          'males': 1,
          'view': 1,
          'nthat': 1,
          'intolerant': 1,
          'attitude': 1,
          'takes': 1,
          'place': 1,
          'jerusalems': 1,
          'called': 1,
          'mea': 1,
          'shearim': 1,
          'taken': 1,
          'sinewy': 1,
          'back': 1,
          'streets': 1,
          'placards': 1,
          'pasted': 1,
          'walls': 1,
          'crowded': 1,
          'apartments': 1,
          'rooms': 1,
          'protagonists': 1,
          'idea': 1,
          'proper': 1,
          'much': 1,
          'different': 1,
          'nthis': 1,
          'controversial': 1,
          'unhappy': 1,
          'male': 1,
          'patriarchal': 1,
          'anger': 1,
          'viewers': 1,
          'matter': 1,
          'belief': 1,
          'nit': 1,
          'slowmoving': 1,
          'meticulous': 1,
          'grabs': 1,
          'hold': 1,
          'collar': 1,
          'lets': 1,
          'force': 1,
          'filmed': 1,
          'objective': 1,
          'manner': 1,
          'taking': 1,
          'cheap': 1,
          'shot': 1,
          'nevertheless': 1,
          'leave': 1,
          'questions': 1,
          'practice': 1,
          'strict': 1,
          'observance': 1,
          'meant': 1,
          'critical': 1,
          'implies': 1,
          'kill': 1,
          'spirit': 1,
          'touch': 1,
          'phobic': 1,
          'makes': 1,
          'unite': 1,
          'cant': 1,
          'present': 1,
          'harmony': 1,
          'imagine': 1,
          'arab': 1,
          'neighbors': 1,
          'peace': 1,
          'opens': 1,
          'meir': 1,
          'rises': 1,
          'dawn': 1,
          'every': 1,
          'virtues': 1,
          'thanks': 1,
          'didnt': 1,
          'accepts': 1,
          'fate': 1,
          'born': 1,
          'next': 1,
          'bed': 1,
          'sleeps': 1,
          'separately': 1,
          'according': 1,
          'custom': 1,
          'glistening': 1,
          'eyes': 1,
          'questioning': 1,
          'laws': 1,
          'rebelling': 1,
          'secondary': 1,
          'keeps': 1,
          'studying': 1,
          'conveniences': 1,
          'seeing': 1,
          'movies': 1,
          'tv': 1,
          'nmeir': 1,
          'talmudic': 1,
          'scholar': 1,
          'abu': 1,
          'warda': 1,
          'yeshiva': 1,
          'ten': 1,
          'years': 1,
          'able': 1,
          'give': 1,
          'nsince': 1,
          'look': 1,
          'womans': 1,
          'conceive': 1,
          'children': 1,
          'cook': 1,
          'clean': 1,
          'house': 1,
          'mans': 1,
          'spend': 1,
          'therefore': 1,
          'insurmountable': 1,
          'problem': 1,
          'otherwise': 1,
          'receives': 1,
          'anonymous': 1,
          'states': 1,
          'better': 1,
          'dead': 1,
          'response': 1,
          'written': 1,
          'tells': 1,
          'contract': 1,
          'must': 1,
          'broken': 1,
          'dies': 1,
          'progeny': 1,
          'rips': 1,
          'page': 1,
          'nall': 1,
          'blame': 1,
          'placed': 1,
          'unpure': 1,
          'reason': 1,
          'barren': 1,
          'countless': 1,
          'baths': 1,
          'cleanse': 1,
          'koenig': 1,
          'dunks': 1,
          'holy': 1,
          'water': 1,
          'says': 1,
          'times': 1,
          'dunked': 1,
          'homage': 1,
          'tribes': 1,
          'ntheir': 1,
          'permit': 1,
          'examined': 1,
          'extensively': 1,
          'doctor': 1,
          'nrivka': 1,
          'sly': 1,
          'finds': 1,
          'husband': 1,
          'sterile': 1,
          'tell': 1,
          'nso': 1,
          'meirs': 1,
          'chooses': 1,
          'son': 1,
          'exiled': 1,
          'alone': 1,
          'cold': 1,
          'apartment': 1,
          'nrivkas': 1,
          'spirited': 1,
          'want': 1,
          'wants': 1,
          'liberated': 1,
          'long': 1,
          'romantic': 1,
          'relationship': 1,
          'fellow': 1,
          'raised': 1,
          'virgin': 1,
          'nwhen': 1,
          'joined': 1,
          'israeli': 1,
          'army': 1,
          'lebanon': 1,
          'something': 1,
          'allowed': 1,
          'thereby': 1,
          'banished': 1,
          'believer': 1,
          'works': 1,
          'singer': 1,
          'nightclub': 1,
          'nmalkas': 1,
          'worried': 1,
          'daughter': 1,
          'wont': 1,
          'arranges': 1,
          'marry': 1,
          'yossef': 1,
          'someone': 1,
          'stern': 1,
          'follower': 1,
          'order': 1,
          'also': 1,
          'activist': 1,
          'drives': 1,
          'around': 1,
          'city': 1,
          'soundtruck': 1,
          'bullhorn': 1,
          'urging': 1,
          'stick': 1,
          'together': 1,
          'godless': 1,
          'enemies': 1,
          'two': 1,
          'close': 1,
          'languidly': 1,
          'discuss': 1,
          'options': 1,
          'telling': 1,
          'happy': 1,
          'reluctantly': 1,
          'forced': 1,
          'accepting': 1,
          'plans': 1,
          'ruin': 1,
          'bogus': 1,
          'harshest': 1,
          'scene': 1,
          'malkas': 1,
          'wedding': 1,
          'night': 1,
          'prays': 1,
          'robotically': 1,
          'gets': 1,
          'spread': 1,
          'legs': 1,
          'least': 1,
          'bit': 1,
          'affection': 1,
          'nervousness': 1,
          'part': 1,
          'function': 1,
          'supplies': 1,
          'inside': 1,
          'rams': 1,
          'hard': 1,
          'thrusting': 1,
          'away': 1,
          'act': 1,
          'completed': 1,
          'retiring': 1,
          'word': 1,
          'gesture': 1,
          'everyone': 1,
          'else': 1,
          'obliterated': 1,
          'beliefs': 1,
          'circumstances': 1,
          'inward': 1,
          'carry': 1,
          'completely': 1,
          'brought': 1,
          'nfor': 1,
          'closing': 1,
          'daily': 1,
          'rituals': 1,
          'tight': 1,
          'closeknit': 1,
          'community': 1,
          'another': 1,
          'world': 1,
          'kept': 1,
          'dark': 1,
          'ends': 1,
          'forlorn': 1,
          'walking': 1,
          'atop': 1,
          'jerusalem': 1,
          'looking': 1,
          'outsider': 1,
          'seems': 1,
          'strange': 1,
          'things': 1,
          'set': 1,
          'stone': 1,
          'harsh': 1,
          'memories': 1,
          'price': 1,
          'heavy': 1,
          'indeed': 1,
          'npos': 1}),
 Counter({'film': 11,
          'characters': 8,
          'one': 7,
          'character': 7,
          'nthe': 6,
          'magnolia': 5,
          'anderson': 5,
          'different': 4,
          'flower': 3,
          'movie': 3,
          'connected': 3,
          'another': 3,
          'game': 3,
          'perfect': 3,
          'story': 3,
          'time': 3,
          'nthis': 3,
          'actors': 3,
          'acting': 3,
          'best': 3,
          'nthey': 2,
          'farther': 2,
          'apart': 2,
          'numerous': 2,
          'nfrom': 2,
          'kind': 2,
          'cop': 2,
          'show': 2,
          'host': 2,
          'seriously': 2,
          'companion': 2,
          'end': 2,
          'n': 2,
          'make': 2,
          'impressive': 2,
          'even': 2,
          'several': 2,
          'nandersons': 2,
          'nhe': 2,
          'also': 2,
          'subplot': 2,
          'long': 2,
          'yet': 2,
          'get': 2,
          'lot': 2,
          'degrees': 2,
          'example': 2,
          'reilly': 2,
          'phillip': 2,
          'baker': 2,
          'halls': 2,
          'shows': 2,
          'broadway': 2,
          'musical': 2,
          'flawless': 2,
          'nanderson': 2,
          'many': 2,
          'supporting': 2,
          'able': 2,
          'role': 2,
          'actor': 2,
          'felt': 2,
          'towards': 2,
          'people': 2,
          'diversity': 2,
          'compared': 1,
          'simple': 1,
          'title': 1,
          'poster': 1,
          'suggests': 1,
          'dozens': 1,
          'introduced': 1,
          'developed': 1,
          'like': 1,
          'petals': 1,
          'come': 1,
          'stem': 1,
          'begins': 1,
          'develop': 1,
          'grow': 1,
          'closely': 1,
          'matter': 1,
          'socially': 1,
          'humiliated': 1,
          'aging': 1,
          'suffering': 1,
          'pain': 1,
          'lonely': 1,
          'seek': 1,
          'loneliness': 1,
          'nwhether': 1,
          'distant': 1,
          'family': 1,
          'member': 1,
          'spouse': 1,
          'begs': 1,
          'spends': 1,
          'whole': 1,
          'searching': 1,
          'clever': 1,
          'well': 1,
          'thought': 1,
          'prodigy': 1,
          'directorwriter': 1,
          'paul': 1,
          'thomas': 1,
          'boogie': 1,
          'nights': 1,
          'fame': 1,
          'detailed': 1,
          'analyses': 1,
          'powerful': 1,
          'script': 1,
          'memorable': 1,
          'nhowever': 1,
          'really': 1,
          'though': 1,
          'tons': 1,
          'unrelated': 1,
          'stories': 1,
          'never': 1,
          'confusing': 1,
          'control': 1,
          'transitioning': 1,
          'masterful': 1,
          'knows': 1,
          'exactly': 1,
          'cut': 1,
          'since': 1,
          'magnolias': 1,
          'scenes': 1,
          'drag': 1,
          'nany': 1,
          'three': 1,
          'hour': 1,
          'deliver': 1,
          'uninteresting': 1,
          'scene': 1,
          'definitely': 1,
          'worth': 1,
          'recommending': 1,
          'fascinating': 1,
          'beginning': 1,
          'risky': 1,
          'surprisingly': 1,
          'satisfying': 1,
          'ending': 1,
          'doesnt': 1,
          'boring': 1,
          'nit': 1,
          'obvious': 1,
          'put': 1,
          'connecting': 1,
          'ultimate': 1,
          'six': 1,
          'separation': 1,
          'nevery': 1,
          'every': 1,
          'two': 1,
          'nfor': 1,
          'john': 1,
          'c': 1,
          'hall': 1,
          'daughter': 1,
          'melora': 1,
          'walters': 1,
          'went': 1,
          'date': 1,
          'fact': 1,
          'others': 1,
          'similar': 1,
          'universal': 1,
          'pains': 1,
          'classes': 1,
          'races': 1,
          'genders': 1,
          'suffer': 1,
          'explanation': 1,
          'prove': 1,
          'point': 1,
          'accurate': 1,
          'convincing': 1,
          'mistake': 1,
          'made': 1,
          'trying': 1,
          'connect': 1,
          'making': 1,
          'sing': 1,
          'aimee': 1,
          'mann': 1,
          'song': 1,
          'simultaneously': 1,
          'foolish': 1,
          'unbelievable': 1,
          'hilariously': 1,
          'erroneous': 1,
          'feel': 1,
          'far': 1,
          'typical': 1,
          'performances': 1,
          'perfection': 1,
          'classic': 1,
          'casting': 1,
          'ensemble': 1,
          'allows': 1,
          'hollywoods': 1,
          'blossom': 1,
          'nall': 1,
          'main': 1,
          'reveal': 1,
          'emotions': 1,
          'attitudes': 1,
          'brief': 1,
          'screen': 1,
          'stars': 1,
          'feature': 1,
          'length': 1,
          'nworth': 1,
          'noting': 1,
          'tom': 1,
          'cruise': 1,
          'stepped': 1,
          'usual': 1,
          'superficial': 1,
          'starring': 1,
          'funny': 1,
          'depressing': 1,
          'tour': 1,
          'de': 1,
          'force': 1,
          'performance': 1,
          'probably': 1,
          'noticed': 1,
          'award': 1,
          'givers': 1,
          'much': 1,
          'past': 1,
          'however': 1,
          'could': 1,
          'nominated': 1,
          'without': 1,
          'complaints': 1,
          'problem': 1,
          'edited': 1,
          'melinda': 1,
          'dillons': 1,
          'wife': 1,
          'nshe': 1,
          'seemed': 1,
          'thrown': 1,
          'little': 1,
          'sympathy': 1,
          'seen': 1,
          'enough': 1,
          'earlier': 1,
          'uses': 1,
          'effective': 1,
          'metaphors': 1,
          'describe': 1,
          'talent': 1,
          'audience': 1,
          'sympathetic': 1,
          'hours': 1,
          'nto': 1,
          'see': 1,
          'perfectly': 1,
          'portray': 1,
          'types': 1,
          'keen': 1,
          'sense': 1,
          'ndiversity': 1,
          'makes': 1,
          'director': 1,
          'successful': 1,
          'period': 1,
          'ni': 1,
          'predict': 1,
          'success': 1,
          'future': 1,
          'npos': 1}),
 Counter({'nit': 6,
          'nthe': 6,
          'strange': 5,
          'film': 4,
          'horror': 4,
          'n': 4,
          'man': 4,
          'like': 4,
          'colqhoun': 4,
          'starts': 4,
          'characters': 4,
          'nothing': 4,
          'cannibalism': 3,
          'soul': 3,
          'nthis': 3,
          'shining': 3,
          'never': 3,
          'war': 3,
          'group': 3,
          'soldiers': 3,
          'life': 3,
          'bizarre': 3,
          'world': 3,
          'another': 3,
          'find': 3,
          'becomes': 3,
          'nits': 3,
          'movie': 3,
          'killing': 3,
          'live': 3,
          'change': 3,
          'ravenous': 3,
          'scary': 3,
          'eat': 3,
          'making': 2,
          'na': 2,
          'psychological': 2,
          'scare': 2,
          'settlers': 2,
          'stay': 2,
          'alive': 2,
          'story': 2,
          'turned': 2,
          'picture': 2,
          'nin': 2,
          'states': 2,
          'land': 2,
          'way': 2,
          'period': 2,
          'could': 2,
          'guy': 2,
          'pearce': 2,
          'journey': 2,
          'battle': 2,
          'icy': 2,
          'mountains': 2,
          'including': 2,
          'intelligent': 2,
          'much': 2,
          'didnt': 2,
          'soldier': 2,
          'robert': 2,
          'carlyle': 2,
          'food': 2,
          'one': 2,
          'ncolqhoun': 2,
          'indian': 2,
          'myth': 2,
          'eats': 2,
          'spirit': 2,
          'nhis': 2,
          'death': 2,
          'see': 2,
          'would': 2,
          'none': 2,
          'wonderful': 2,
          'continues': 2,
          'honest': 2,
          'different': 2,
          'nhe': 2,
          'anything': 2,
          'human': 2,
          'mind': 2,
          'atmosphere': 2,
          'stands': 2,
          'somehow': 2,
          'men': 2,
          'get': 2,
          'often': 2,
          'cannibal': 2,
          'dont': 2,
          'many': 2,
          'frightening': 2,
          'vampire': 2,
          'since': 2,
          'gets': 2,
          'dark': 2,
          'humans': 1,
          'harmed': 1,
          'tested': 1,
          'tasted': 1,
          'nall': 1,
          'recipes': 1,
          'fictions': 1,
          'ntwentieth': 1,
          'century': 1,
          'fox': 1,
          'condone': 1,
          'thriller': 1,
          'depth': 1,
          'ndirectorwriter': 1,
          'antonia': 1,
          'bird': 1,
          'shows': 1,
          'us': 1,
          'terrifying': 1,
          'provided': 1,
          'giant': 1,
          'beasts': 1,
          'instead': 1,
          'monsters': 1,
          'lurking': 1,
          'party': 1,
          'covered': 1,
          'wagon': 1,
          'times': 1,
          'resent': 1,
          'order': 1,
          'true': 1,
          'briefly': 1,
          'mentioned': 1,
          '143': 1,
          'minutes': 1,
          'long': 1,
          'motion': 1,
          '1847': 1,
          'united': 1,
          'pioneers': 1,
          'goldstarved': 1,
          'americans': 1,
          'west': 1,
          'manifest': 1,
          'destiny': 1,
          'inevitability': 1,
          'country': 1,
          'extending': 1,
          'boundaries': 1,
          'stretching': 1,
          'arms': 1,
          'consuming': 1,
          'ncapt': 1,
          'john': 1,
          'boyd': 1,
          'become': 1,
          'hero': 1,
          'victim': 1,
          'relentless': 1,
          'consumption': 1,
          'ways': 1,
          'imagined': 1,
          'nboyds': 1,
          'hell': 1,
          'begins': 1,
          'awarded': 1,
          'act': 1,
          'cowardice': 1,
          'horrific': 1,
          'mexicanamerican': 1,
          'earns': 1,
          'banishment': 1,
          'desolate': 1,
          'military': 1,
          'outpost': 1,
          'waystation': 1,
          'western': 1,
          'travelers': 1,
          'barren': 1,
          'sierra': 1,
          'nevada': 1,
          'california': 1,
          'nupon': 1,
          'arrival': 1,
          'greeted': 1,
          'small': 1,
          'motley': 1,
          'commanding': 1,
          'officer': 1,
          'hart': 1,
          'jeffrey': 1,
          'jones': 1,
          'previously': 1,
          'sophisticated': 1,
          'lost': 1,
          'aristocratic': 1,
          'origin': 1,
          'heat': 1,
          'pretty': 1,
          'given': 1,
          'toffler': 1,
          'jeremy': 1,
          'davies': 1,
          'forts': 1,
          'personal': 1,
          'emissary': 1,
          'lord': 1,
          'knox': 1,
          'stephen': 1,
          'spinella': 1,
          'veterinarian': 1,
          'plays': 1,
          'doctor': 1,
          'met': 1,
          'bottle': 1,
          'whiskey': 1,
          'reich': 1,
          'neal': 1,
          'mcdonough': 1,
          'nononsense': 1,
          'seriously': 1,
          'overmedicated': 1,
          'cleaves': 1,
          'david': 1,
          'arquette': 1,
          'cook': 1,
          'whose': 1,
          'meals': 1,
          'inspired': 1,
          'peyote': 1,
          'culinary': 1,
          'ambitions': 1,
          'ninto': 1,
          'cold': 1,
          'bleak': 1,
          'staggers': 1,
          'stranger': 1,
          'halfstarved': 1,
          'scot': 1,
          'traveling': 1,
          'became': 1,
          'snowbound': 1,
          'nseeking': 1,
          'refuge': 1,
          'cave': 1,
          'soon': 1,
          'ran': 1,
          'forced': 1,
          'consume': 1,
          'barely': 1,
          'escaped': 1,
          'becoming': 1,
          'hors': 1,
          'doeuvre': 1,
          'nour': 1,
          'heroes': 1,
          'decide': 1,
          'survivors': 1,
          'tags': 1,
          'along': 1,
          'help': 1,
          'nsoon': 1,
          'clear': 1,
          'colqhouns': 1,
          'tale': 1,
          'ramifications': 1,
          'beyond': 1,
          'survive': 1,
          'involves': 1,
          'old': 1,
          'called': 1,
          'weendigo': 1,
          'flesh': 1,
          'steals': 1,
          'persons': 1,
          'strength': 1,
          'essence': 1,
          'hunger': 1,
          'insatiable': 1,
          'craving': 1,
          'wants': 1,
          'stronger': 1,
          'nthere': 1,
          'enough': 1,
          'escape': 1,
          'fairly': 1,
          'sickening': 1,
          'healthy': 1,
          'stomach': 1,
          'whole': 1,
          'nas': 1,
          'professionally': 1,
          'made': 1,
          'wonder': 1,
          'thought': 1,
          'come': 1,
          'piling': 1,
          'theater': 1,
          'nteenage': 1,
          'fans': 1,
          'wont': 1,
          'care': 1,
          'look': 1,
          'remotely': 1,
          'neve': 1,
          'campell': 1,
          'nolder': 1,
          'folks': 1,
          'might': 1,
          'show': 1,
          'hear': 1,
          'actually': 1,
          'satire': 1,
          'pioneer': 1,
          'theyll': 1,
          'disappointed': 1,
          'raw': 1,
          'meat': 1,
          'getting': 1,
          'waved': 1,
          'faces': 1,
          'nbut': 1,
          'jokes': 1,
          'aside': 1,
          'well': 1,
          'worth': 1,
          'watching': 1,
          'mature': 1,
          'boast': 1,
          'strangely': 1,
          'effective': 1,
          'electrify': 1,
          'till': 1,
          'end': 1,
          'two': 1,
          'main': 1,
          'also': 1,
          'interesting': 1,
          'nboyd': 1,
          'simple': 1,
          'tiered': 1,
          'fear': 1,
          'sacred': 1,
          'wish': 1,
          'normal': 1,
          'quite': 1,
          'away': 1,
          'gunpowder': 1,
          'blood': 1,
          'proves': 1,
          'brink': 1,
          'sacrificing': 1,
          'believes': 1,
          'physically': 1,
          'power': 1,
          'conviction': 1,
          'make': 1,
          'miracles': 1,
          'happen': 1,
          'macabre': 1,
          'surreal': 1,
          'ncompletely': 1,
          'isolated': 1,
          'rest': 1,
          'fort': 1,
          'spencer': 1,
          'nhere': 1,
          'time': 1,
          'still': 1,
          'changes': 1,
          'inhabitants': 1,
          'driven': 1,
          'pillage': 1,
          'nthey': 1,
          'losers': 1,
          'society': 1,
          'banished': 1,
          'used': 1,
          'done': 1,
          'else': 1,
          'entire': 1,
          'nmen': 1,
          'loose': 1,
          'result': 1,
          'sort': 1,
          'cabin': 1,
          'fever': 1,
          'ncannibalism': 1,
          'sick': 1,
          'game': 1,
          'nsince': 1,
          'pleasure': 1,
          'living': 1,
          'excitement': 1,
          'dying': 1,
          'whos': 1,
          'going': 1,
          'die': 1,
          'first': 1,
          'unchangeable': 1,
          'landscape': 1,
          'birds': 1,
          'sing': 1,
          'even': 1,
          'wind': 1,
          'doesnt': 1,
          'move': 1,
          'leaves': 1,
          'trees': 1,
          'resembles': 1,
          'kubricks': 1,
          'hard': 1,
          'mad': 1,
          'aspects': 1,
          'connection': 1,
          'viewer': 1,
          'establishes': 1,
          'understand': 1,
          'although': 1,
          'half': 1,
          'crazed': 1,
          'killers': 1,
          'nmusic': 1,
          'factor': 1,
          'strengthens': 1,
          'musical': 1,
          'score': 1,
          'composed': 1,
          'michael': 1,
          'nyman': 1,
          'piano': 1,
          'damon': 1,
          'albarn': 1,
          'seems': 1,
          'place': 1,
          'complete': 1,
          'contrast': 1,
          'image': 1,
          'reflects': 1,
          'twisted': 1,
          'reactions': 1,
          'situation': 1,
          'director': 1,
          'stated': 1,
          'ok': 1,
          'laugh': 1,
          'nand': 1,
          'must': 1,
          'admit': 1,
          'funny': 1,
          'quote': 1,
          'nlonely': 1,
          'nyou': 1,
          'friends': 1,
          'quoting': 1,
          'ben': 1,
          'franklin': 1,
          'saying': 1,
          'ndont': 1,
          'nmostly': 1,
          'shocking': 1,
          'goes': 1,
          'deeper': 1,
          'minds': 1,
          'witness': 1,
          'nevery': 1,
          'actor': 1,
          'great': 1,
          'job': 1,
          'nespecially': 1,
          'sinister': 1,
          'moral': 1,
          'nagged': 1,
          'undeserved': 1,
          'honor': 1,
          'couple': 1,
          'resemble': 1,
          'lestat': 1,
          'lois': 1,
          'neil': 1,
          'jordans': 1,
          'interview': 1,
          'nactually': 1,
          'amusing': 1,
          'parallels': 1,
          'connections': 1,
          'movies': 1,
          'topics': 1,
          'alike': 1,
          'wonderfully': 1,
          'shock': 1,
          'finale': 1,
          'looses': 1,
          'focus': 1,
          'primitive': 1,
          'rather': 1,
          'boring': 1,
          'nhowever': 1,
          'little': 1,
          'failures': 1,
          'diminish': 1,
          'impression': 1,
          'comedy': 1,
          'situations': 1,
          'fable': 1,
          'monster': 1,
          'lurks': 1,
          'everyones': 1,
          'side': 1,
          'trying': 1,
          'hide': 1,
          'always': 1,
          'successful': 1,
          'films': 1,
          'said': 1,
          'ni': 1,
          'say': 1,
          'npos': 1}),
 Counter({'hunting': 6,
          'good': 5,
          'damon': 3,
          'film': 2,
          'plenty': 2,
          'story': 2,
          'nthe': 2,
          'robin': 2,
          'williams': 2,
          'written': 2,
          'right': 2,
          'hits': 2,
          'like': 2,
          'doesnt': 2,
          'point': 2,
          'two': 1,
          'movies': 1,
          'one': 1,
          'independent': 1,
          'take': 1,
          'struggle': 1,
          'four': 1,
          'boston': 1,
          'pals': 1,
          'traditional': 1,
          'hollywood': 1,
          'prodigy': 1,
          'child': 1,
          'complete': 1,
          'upbeats': 1,
          'downfalls': 1,
          'sporadically': 1,
          'moving': 1,
          'situations': 1,
          'shtick': 1,
          'nunusually': 1,
          'directed': 1,
          'gus': 1,
          'van': 1,
          'sant': 1,
          'overcomes': 1,
          'banalities': 1,
          'affirming': 1,
          'emergence': 1,
          'fresh': 1,
          'new': 1,
          'talent': 1,
          'stars': 1,
          'matt': 1,
          'mathematical': 1,
          'rebellious': 1,
          'whiz': 1,
          'kid': 1,
          'inadvertly': 1,
          'discovered': 1,
          'college': 1,
          'professor': 1,
          'stellan': 1,
          'skarsgard': 1,
          'places': 1,
          'psychological': 1,
          'supervision': 1,
          'nin': 1,
          'nutshell': 1,
          'thats': 1,
          'core': 1,
          'infuses': 1,
          'script': 1,
          'co': 1,
          'chasing': 1,
          'amys': 1,
          'ben': 1,
          'affleck': 1,
          'amount': 1,
          'warmth': 1,
          'sensitivity': 1,
          'humanity': 1,
          'accentuate': 1,
          'position': 1,
          'refreshing': 1,
          'multi': 1,
          'talented': 1,
          'performer': 1,
          'nbut': 1,
          'acting': 1,
          'mark': 1,
          'notes': 1,
          'flying': 1,
          'dejavu': 1,
          'role': 1,
          'awakenings': 1,
          'devastated': 1,
          'shrink': 1,
          'closed': 1,
          'contact': 1,
          'society': 1,
          'due': 1,
          'wifes': 1,
          'tragic': 1,
          'death': 1,
          'ndamon': 1,
          'effortlessly': 1,
          'blends': 1,
          'carelesness': 1,
          'gregarious': 1,
          'confused': 1,
          'thug': 1,
          'absorbing': 1,
          'ingeniousness': 1,
          'someone': 1,
          'einstein': 1,
          'nhis': 1,
          'rich': 1,
          'complex': 1,
          'character': 1,
          'pulp': 1,
          'neverything': 1,
          'else': 1,
          'pales': 1,
          'comparison': 1,
          'n': 1,
          'exposes': 1,
          'lack': 1,
          'profoundness': 1,
          'deliberately': 1,
          'schmaltzy': 1,
          'storytelling': 1,
          'unlike': 1,
          'little': 1,
          'man': 1,
          'tate': 1,
          'phenomenon': 1,
          'set': 1,
          'black': 1,
          'white': 1,
          'b': 1,
          'manner': 1,
          'saga': 1,
          'extraordinary': 1,
          'individual': 1,
          'whose': 1,
          'feasibility': 1,
          'success': 1,
          'automatically': 1,
          'signify': 1,
          'must': 1,
          'make': 1,
          'easy': 1,
          'familiar': 1,
          'choices': 1,
          'protagonists': 1,
          'aforementioned': 1,
          'npos': 1}),
 Counter({'film': 8,
          'curdled': 7,
          'jones': 5,
          'nthe': 5,
          'really': 5,
          'killer': 4,
          'blue': 4,
          'blood': 4,
          'scene': 4,
          'short': 4,
          'humour': 3,
          'pulp': 3,
          'fiction': 3,
          'see': 3,
          'sequence': 3,
          'funny': 3,
          'played': 3,
          'murder': 3,
          'killers': 3,
          'one': 3,
          'would': 3,
          'black': 2,
          'appeal': 2,
          'give': 2,
          'non': 2,
          'pretty': 2,
          'gabriela': 2,
          'angela': 2,
          'serial': 2,
          'scrapbook': 2,
          'hes': 2,
          'william': 2,
          'baldwin': 2,
          'spoiler': 2,
          'particularly': 2,
          'day': 2,
          'line': 2,
          'nshe': 2,
          'job': 2,
          'gabrielas': 2,
          'fascination': 2,
          'wideeyed': 2,
          'also': 2,
          'tarantino': 2,
          'braddock': 2,
          'character': 2,
          'best': 2,
          'role': 2,
          'based': 2,
          'great': 2,
          'amusing': 2,
          'running': 2,
          'time': 2,
          'minutes': 2,
          'deliciously': 1,
          'dark': 1,
          'witty': 1,
          'comedy': 1,
          'wont': 1,
          'everyone': 1,
          'nto': 1,
          'specific': 1,
          'let': 1,
          'example': 1,
          'ndo': 1,
          'know': 1,
          'jules': 1,
          'vincent': 1,
          'go': 1,
          'brain': 1,
          'detail': 1,
          'marvin': 1,
          'head': 1,
          'accidentally': 1,
          'get': 1,
          'separated': 1,
          'nif': 1,
          'thought': 1,
          'completely': 1,
          'tasteless': 1,
          'unfunny': 1,
          'dont': 1,
          'hand': 1,
          'found': 1,
          'sense': 1,
          'aimed': 1,
          'nour': 1,
          'films': 1,
          'heroine': 1,
          'woman': 1,
          'obssessively': 1,
          'curious': 1,
          'even': 1,
          'keeps': 1,
          'news': 1,
          'articles': 1,
          'nluckily': 1,
          'miami': 1,
          'plagued': 1,
          'rampage': 1,
          'getting': 1,
          'big': 1,
          'nickname': 1,
          'press': 1,
          'preys': 1,
          'older': 1,
          'rich': 1,
          'socialite': 1,
          'women': 1,
          'none': 1,
          'striking': 1,
          'propensity': 1,
          'decapitate': 1,
          'victims': 1,
          'ngabriela': 1,
          'watching': 1,
          'television': 1,
          'spots': 1,
          'advertisement': 1,
          'firm': 1,
          'whose': 1,
          'work': 1,
          'perfectly': 1,
          'attuned': 1,
          'interests': 1,
          'immediately': 1,
          'quits': 1,
          'signs': 1,
          'pfcs': 1,
          'stands': 1,
          'postforensic': 1,
          'cleaning': 1,
          'service': 1,
          'nno': 1,
          'points': 1,
          'guessing': 1,
          'nher': 1,
          'workmates': 1,
          'confused': 1,
          'ntheres': 1,
          'hilarious': 1,
          'locker': 1,
          'room': 1,
          'debate': 1,
          'whether': 1,
          'decapitated': 1,
          'heads': 1,
          'talk': 1,
          'say': 1,
          'ngabrielas': 1,
          'partner': 1,
          'elena': 1,
          'mel': 1,
          'gorham': 1,
          'perturbed': 1,
          'becomes': 1,
          'upset': 1,
          'volunteers': 1,
          'clean': 1,
          'latest': 1,
          'theyre': 1,
          'messiest': 1,
          'nunbeknownst': 1,
          'last': 1,
          'victim': 1,
          'left': 1,
          'something': 1,
          'id': 1,
          'heading': 1,
          'comparison': 1,
          'earlier': 1,
          'accidental': 1,
          'quentin': 1,
          'executiveproduced': 1,
          'began': 1,
          'life': 1,
          'saw': 1,
          'festival': 1,
          'napparently': 1,
          'impressed': 1,
          'helped': 1,
          'convert': 1,
          'featurelength': 1,
          'nthere': 1,
          'parallels': 1,
          'star': 1,
          'top': 1,
          'billing': 1,
          'goes': 1,
          'central': 1,
          'whos': 1,
          'probably': 1,
          'known': 1,
          'esmerelda': 1,
          'villalobos': 1,
          'deathobssessed': 1,
          'taxi': 1,
          'driver': 1,
          'nthat': 1,
          'written': 1,
          'specifically': 1,
          'upon': 1,
          'similar': 1,
          'aforementioned': 1,
          'jr': 1,
          'njones': 1,
          'shes': 1,
          'wonderfully': 1,
          'maintains': 1,
          'naive': 1,
          'curiousity': 1,
          'without': 1,
          'compromising': 1,
          'characters': 1,
          'innocence': 1,
          'likeability': 1,
          'express': 1,
          'much': 1,
          'lift': 1,
          'eyebrow': 1,
          'nits': 1,
          'performance': 1,
          'nreb': 1,
          'braddocks': 1,
          'direction': 1,
          'extremely': 1,
          'sharp': 1,
          'clever': 1,
          'toeing': 1,
          'bad': 1,
          'taste': 1,
          'outrageously': 1,
          'involves': 1,
          'dancing': 1,
          'opening': 1,
          'credit': 1,
          'inventive': 1,
          'nof': 1,
          'course': 1,
          'impossible': 1,
          'take': 1,
          'stuff': 1,
          'seriously': 1,
          'youre': 1,
          'supposed': 1,
          'knows': 1,
          'audience': 1,
          'joke': 1,
          'makes': 1,
          'fun': 1,
          'little': 1,
          'romp': 1,
          'result': 1,
          'drawback': 1,
          'feels': 1,
          'like': 1,
          'material': 1,
          'stretched': 1,
          'thin': 1,
          'order': 1,
          'fulfill': 1,
          'feature': 1,
          'length': 1,
          'parts': 1,
          'seem': 1,
          'drag': 1,
          'nwhile': 1,
          'already': 1,
          '94': 1,
          'could': 1,
          'stand': 1,
          'lose': 1,
          'twenty': 1,
          'better': 1,
          'pacing': 1,
          'ncurdled': 1,
          'seems': 1,
          'destined': 1,
          'nice': 1,
          'cult': 1,
          'miramax': 1,
          'nitll': 1,
          'interesting': 1,
          'mainstream': 1,
          'audiences': 1,
          'well': 1,
          'npos': 1}),
 Counter({'simon': 6,
          'henry': 5,
          'fool': 4,
          'story': 3,
          'nthe': 3,
          'said': 2,
          'less': 2,
          'end': 2,
          'movie': 2,
          'final': 2,
          'ambiguity': 2,
          'nhenry': 2,
          'turns': 2,
          'simons': 2,
          'nthese': 2,
          'n': 2,
          'film': 2,
          'often': 1,
          'fans': 1,
          'hal': 1,
          'hartley': 1,
          'movies': 1,
          'acquired': 1,
          'taste': 1,
          'nindeed': 1,
          'nwhile': 1,
          'perhaps': 1,
          'dangerous': 1,
          'tequila': 1,
          'shooters': 1,
          'bungeejumping': 1,
          'require': 1,
          'amount': 1,
          'physical': 1,
          'stamina': 1,
          'concentration': 1,
          'ni': 1,
          'felt': 1,
          'rewarded': 1,
          'creeps': 1,
          'youat': 1,
          'slow': 1,
          '139': 1,
          'minutes': 1,
          'mean': 1,
          'creepsand': 1,
          'despite': 1,
          'shots': 1,
          'left': 1,
          'completely': 1,
          'satisfied': 1,
          'used': 1,
          'e': 1,
          'arrives': 1,
          'garbageman': 1,
          'grims': 1,
          'house': 1,
          'claims': 1,
          'vacant': 1,
          'basement': 1,
          'apartment': 1,
          'almost': 1,
          'instantly': 1,
          'inspires': 1,
          'urbaniak': 1,
          'take': 1,
          'writinghenry': 1,
          'martin': 1,
          'donovan': 1,
          'lookalike': 1,
          'ryan': 1,
          'exconvict': 1,
          'oncegreat': 1,
          'author': 1,
          'exiled': 1,
          'marginalized': 1,
          'publishing': 1,
          'community': 1,
          'criminal': 1,
          'activity': 1,
          'nsimons': 1,
          'poetry': 1,
          'local': 1,
          'sensation': 1,
          'causes': 1,
          'mute': 1,
          'women': 1,
          'sing': 1,
          'highschool': 1,
          'girls': 1,
          'swoon': 1,
          'councilmen': 1,
          'rile': 1,
          'pornographic': 1,
          'content': 1,
          'nmeanwhile': 1,
          'seduces': 1,
          'dependent': 1,
          'mother': 1,
          'porter': 1,
          'immature': 1,
          'sister': 1,
          'sundance': 1,
          'queen': 1,
          'posey': 1,
          'philosophical': 1,
          'babble': 1,
          'brilliant': 1,
          'inane': 1,
          'breathy': 1,
          'animal': 1,
          'lust': 1,
          'elements': 1,
          'result': 1,
          'climaxes': 1,
          'inevitable': 1,
          'unpredictable': 1,
          'teacherstudent': 1,
          'relationship': 1,
          'formed': 1,
          'eventually': 1,
          'reverses': 1,
          'sprinkled': 1,
          'hartleyian': 1,
          'flourishes': 1,
          'drinks': 1,
          'milk': 1,
          'udderleys': 1,
          'big': 1,
          'teen': 1,
          'hangout': 1,
          'called': 1,
          'world': 1,
          'donuts': 1,
          'wears': 1,
          'garbagemans': 1,
          'uniform': 1,
          'throughout': 1,
          'editing': 1,
          'style': 1,
          'decidedly': 1,
          'elliptical': 1,
          'key': 1,
          'conclusions': 1,
          'performances': 1,
          'three': 1,
          'leads': 1,
          'abrasive': 1,
          'first': 1,
          'selfconsciously': 1,
          'quirky': 1,
          'introductory': 1,
          'scenes': 1,
          'chore': 1,
          'people': 1,
          'grow': 1,
          'convey': 1,
          'genuine': 1,
          'passion': 1,
          'belief': 1,
          'longterm': 1,
          'goals': 1,
          'may': 1,
          'drink': 1,
          'lot': 1,
          'budweiser': 1,
          'hang': 1,
          'streetcorner': 1,
          'arent': 1,
          'pop': 1,
          'slackers': 1,
          'rather': 1,
          'classical': 1,
          'tutor': 1,
          'better': 1,
          'talker': 1,
          'doer': 1,
          'raised': 1,
          'books': 1,
          'timid': 1,
          'tutee': 1,
          'innate': 1,
          'talent': 1,
          'master': 1,
          'dreams': 1,
          'shades': 1,
          'school': 1,
          'finished': 1,
          'epic': 1,
          'proportions': 1,
          'small': 1,
          'third': 1,
          'test': 1,
          'ones': 1,
          'patience': 1,
          'yet': 1,
          'tight': 1,
          'hardly': 1,
          'excessive': 1,
          'length': 1,
          'nhow': 1,
          'refreshing': 1,
          'see': 1,
          'long': 1,
          '1998': 1,
          'devoted': 1,
          'entirely': 1,
          'character': 1,
          'nand': 1,
          'unless': 1,
          'nodded': 1,
          'single': 1,
          'building': 1,
          'exploded': 1,
          'nthis': 1,
          'hartleys': 1,
          'seventh': 1,
          'feature': 1,
          'contemplative': 1,
          'artist': 1,
          'fortunately': 1,
          'never': 1,
          'get': 1,
          'sampling': 1,
          'work': 1,
          'testament': 1,
          'actors': 1,
          'screenplay': 1,
          'surmise': 1,
          'sort': 1,
          'thoughts': 1,
          'would': 1,
          'pour': 1,
          'writers': 1,
          'pens': 1,
          'npos': 1}),
 Counter({'film': 11,
          'nthe': 11,
          'nin': 9,
          'ants': 9,
          'best': 8,
          'one': 8,
          'may': 7,
          'nbut': 7,
          'antz': 7,
          'kids': 7,
          'ant': 7,
          'z': 7,
          'bala': 7,
          'two': 5,
          'story': 5,
          'dreamworks': 5,
          'many': 5,
          'like': 5,
          'animation': 5,
          'good': 5,
          'people': 4,
          'part': 4,
          'humor': 4,
          'life': 4,
          'would': 4,
          'disney': 4,
          'animated': 4,
          'feature': 4,
          'also': 4,
          'though': 4,
          'worker': 4,
          'stone': 4,
          'wants': 4,
          'battle': 4,
          'fact': 4,
          'see': 4,
          'take': 4,
          'scene': 4,
          'lot': 4,
          'either': 3,
          'love': 3,
          'allen': 3,
          'family': 3,
          'funny': 3,
          'years': 3,
          'body': 3,
          'allens': 3,
          'something': 3,
          'come': 3,
          'better': 3,
          'nantz': 3,
          'bugs': 3,
          'dont': 3,
          'definitely': 3,
          'even': 3,
          'im': 3,
          'nthis': 3,
          'parents': 3,
          'shouldnt': 3,
          'especially': 3,
          'adults': 3,
          'made': 3,
          'weaver': 3,
          'stallone': 3,
          'nafter': 3,
          'colony': 3,
          'queen': 3,
          'get': 3,
          'children': 3,
          'probably': 3,
          'great': 3,
          'young': 3,
          'head': 3,
          'voice': 3,
          'woody': 2,
          'ni': 2,
          'hes': 2,
          'shtick': 2,
          'nso': 2,
          'away': 2,
          'could': 2,
          'physical': 2,
          'nthose': 2,
          'problems': 2,
          'able': 2,
          'us': 2,
          'laughing': 2,
          'audiences': 2,
          'never': 2,
          'seen': 2,
          'computer': 2,
          'technology': 2,
          'nmany': 2,
          'original': 2,
          'picture': 2,
          'ndisneys': 2,
          'due': 2,
          'another': 2,
          'seems': 2,
          'deal': 2,
          'films': 2,
          'let': 2,
          'past': 2,
          '1997': 2,
          'time': 2,
          'ridiculous': 2,
          'situations': 2,
          'dramatic': 2,
          'studio': 2,
          'tell': 2,
          'sure': 2,
          'mouse': 2,
          'put': 2,
          'toy': 2,
          'pg': 2,
          'dialogue': 2,
          'makes': 2,
          'type': 2,
          'entertaining': 2,
          'million': 2,
          'none': 2,
          'place': 2,
          'princess': 2,
          'without': 2,
          'asks': 2,
          'dance': 2,
          'everyone': 2,
          'leader': 2,
          'falls': 2,
          'getting': 2,
          'general': 2,
          'hackman': 2,
          'merely': 2,
          'bancroft': 2,
          'rid': 2,
          'loyal': 2,
          'army': 2,
          'nhe': 2,
          'walkin': 2,
          'sequence': 2,
          'stunning': 2,
          'similar': 2,
          'nhowever': 2,
          'around': 2,
          'magnifying': 2,
          'intentionally': 2,
          'look': 2,
          'beam': 2,
          'nvisually': 2,
          'seeing': 2,
          'rather': 2,
          'nthey': 2,
          'involves': 2,
          'ball': 2,
          'perfect': 2,
          'example': 2,
          'voices': 2,
          'glover': 2,
          'pores': 2,
          'although': 2,
          'doubt': 2,
          'course': 2,
          'nif': 2,
          'done': 2,
          'go': 2,
          'talent': 2,
          'always': 2,
          'comic': 2,
          'shows': 2,
          'actor': 2,
          'action': 2,
          'role': 2,
          'aykroyd': 2,
          'recognize': 2,
          'show': 2,
          'guterman': 2,
          'fun': 2,
          'language': 2,
          'home': 2,
          'sexual': 2,
          'innuendos': 2,
          'enough': 2,
          'fit': 1,
          'different': 1,
          'categories': 1,
          'hate': 1,
          'guts': 1,
          'nmy': 1,
          'hates': 1,
          'movies': 1,
          'think': 1,
          'gotten': 1,
          'forced': 1,
          'contrived': 1,
          'maybe': 1,
          'taking': 1,
          'decision': 1,
          'producer': 1,
          'thought': 1,
          'nunrestrained': 1,
          'boundaries': 1,
          'comes': 1,
          'shining': 1,
          'appearance': 1,
          'join': 1,
          'rest': 1,
          'intelligent': 1,
          'observations': 1,
          'verbal': 1,
          'comedy': 1,
          'want': 1,
          'skip': 1,
          '1995': 1,
          'introduced': 1,
          'sparked': 1,
          'imaginations': 1,
          'showed': 1,
          'theyd': 1,
          'ntoy': 1,
          'used': 1,
          'stateoftheart': 1,
          'presented': 1,
          'world': 1,
          'toys': 1,
          'alive': 1,
          'humans': 1,
          'present': 1,
          'critics': 1,
          'call': 1,
          'believe': 1,
          'say': 1,
          'completely': 1,
          'motion': 1,
          'however': 1,
          'upped': 1,
          'ante': 1,
          'considerably': 1,
          'isnt': 1,
          'months': 1,
          'received': 1,
          'end': 1,
          'nby': 1,
          'beating': 1,
          'satisfied': 1,
          'thirst': 1,
          'computeranimated': 1,
          'fool': 1,
          'scared': 1,
          'competitions': 1,
          'broken': 1,
          'studios': 1,
          'volcano': 1,
          'duel': 1,
          'opinion': 1,
          'dantes': 1,
          'peak': 1,
          'came': 1,
          'way': 1,
          'ahead': 1,
          'predecessor': 1,
          'quality': 1,
          'nvolcano': 1,
          'premise': 1,
          'destroyed': 1,
          '1998': 1,
          'twice': 1,
          'competing': 1,
          'nfirst': 1,
          'comet': 1,
          'competition': 1,
          'armageddon': 1,
          'blew': 1,
          'cheesily': 1,
          'competitor': 1,
          'deep': 1,
          'impact': 1,
          'interesting': 1,
          'beloved': 1,
          'goes': 1,
          'newcomer': 1,
          'nwho': 1,
          'prevail': 1,
          'ntime': 1,
          'mr': 1,
          'nothing': 1,
          'fear': 1,
          'sound': 1,
          'didnt': 1,
          'contrary': 1,
          'id': 1,
          'rating': 1,
          'appear': 1,
          'disneys': 1,
          'version': 1,
          'nsome': 1,
          'pushes': 1,
          'envelope': 1,
          'familyoriented': 1,
          'nsexual': 1,
          'innuendoes': 1,
          'profanity': 1,
          'pop': 1,
          'occasionally': 1,
          'geared': 1,
          'adult': 1,
          'crowd': 1,
          'written': 1,
          'theater': 1,
          'attended': 1,
          'families': 1,
          'often': 1,
          'begins': 1,
          'hilarious': 1,
          'monologue': 1,
          'meld': 1,
          'franz': 1,
          'kafkas': 1,
          'metamorphosis': 1,
          'short': 1,
          'man': 1,
          'wakes': 1,
          'discover': 1,
          'bug': 1,
          'nz': 1,
          'troubled': 1,
          'believing': 1,
          'n': 1,
          'youre': 1,
          'middle': 1,
          'child': 1,
          'five': 1,
          'comments': 1,
          'neglected': 1,
          'childhood': 1,
          'night': 1,
          'sitting': 1,
          'bar': 1,
          'friend': 1,
          'sylvester': 1,
          'discussing': 1,
          'pathetic': 1,
          'walks': 1,
          'sharon': 1,
          'recognizes': 1,
          'crown': 1,
          'nbala': 1,
          'engage': 1,
          'pulp': 1,
          'fictionesque': 1,
          'else': 1,
          'following': 1,
          'discovering': 1,
          'theres': 1,
          'problem': 1,
          'married': 1,
          'mandible': 1,
          'gene': 1,
          'ruthless': 1,
          'control': 1,
          'stronger': 1,
          'order': 1,
          'must': 1,
          'eliminate': 1,
          'anne': 1,
          'weakest': 1,
          'namely': 1,
          'needs': 1,
          'willing': 1,
          'die': 1,
          'colonel': 1,
          'cutter': 1,
          'christopher': 1,
          'plan': 1,
          'send': 1,
          'surely': 1,
          'killed': 1,
          'reluctant': 1,
          'first': 1,
          'decides': 1,
          'nmeanwhile': 1,
          'meet': 1,
          'switch': 1,
          'places': 1,
          'gets': 1,
          'sent': 1,
          'manages': 1,
          'survive': 1,
          'slaughter': 1,
          'termites': 1,
          'absolutely': 1,
          'flashbacks': 1,
          'starship': 1,
          'troopers': 1,
          'contained': 1,
          'production': 1,
          'similarities': 1,
          'coincidence': 1,
          'second': 1,
          'half': 1,
          'revolves': 1,
          'zs': 1,
          'kidnapping': 1,
          'search': 1,
          'mythical': 1,
          'called': 1,
          'insectopia': 1,
          'nthere': 1,
          'boss': 1,
          'food': 1,
          'adventures': 1,
          'surprisingly': 1,
          'high': 1,
          'tension': 1,
          'involving': 1,
          'glass': 1,
          'nlooming': 1,
          'targets': 1,
          'spaceships': 1,
          'independence': 1,
          'day': 1,
          'going': 1,
          'assume': 1,
          'producers': 1,
          'referenced': 1,
          'id4': 1,
          'awe': 1,
          'fire': 1,
          'blasts': 1,
          'ground': 1,
          'exciting': 1,
          'rush': 1,
          'adrenaline': 1,
          'fooled': 1,
          'nlittle': 1,
          'try': 1,
          'copy': 1,
          'vowed': 1,
          'step': 1,
          'nhopefully': 1,
          'learn': 1,
          'killing': 1,
          'cruel': 1,
          'nas': 1,
          'find': 1,
          'date': 1,
          'dreams': 1,
          'aspect': 1,
          'characters': 1,
          'arent': 1,
          'limited': 1,
          'gravity': 1,
          'make': 1,
          'seem': 1,
          'plausible': 1,
          'moment': 1,
          'mass': 1,
          'bunching': 1,
          'form': 1,
          'wrecking': 1,
          'virtually': 1,
          'every': 1,
          'single': 1,
          'exhilarating': 1,
          'stuck': 1,
          'bottom': 1,
          'boys': 1,
          'shoe': 1,
          'nits': 1,
          'truly': 1,
          'making': 1,
          'finest': 1,
          'nwith': 1,
          'animators': 1,
          'carefully': 1,
          'faces': 1,
          'actors': 1,
          'providing': 1,
          'barbatus': 1,
          'danny': 1,
          'nat': 1,
          'point': 1,
          'face': 1,
          'ndo': 1,
          'nbarbatus': 1,
          'touching': 1,
          'gruesome': 1,
          'final': 1,
          'words': 1,
          'nyoung': 1,
          'disturbed': 1,
          'site': 1,
          'dismembered': 1,
          'derived': 1,
          'appropriate': 1,
          'looks': 1,
          'know': 1,
          'newest': 1,
          'terms': 1,
          'big': 1,
          'knock': 1,
          'yes': 1,
          'anastasia': 1,
          'nearly': 1,
          'worst': 1,
          'nvocal': 1,
          'essential': 1,
          'lineups': 1,
          'since': 1,
          'far': 1,
          'exceeds': 1,
          'nwoody': 1,
          'transcends': 1,
          'nwithout': 1,
          'timing': 1,
          'noticeable': 1,
          'thing': 1,
          'pretty': 1,
          'writers': 1,
          'improvise': 1,
          'lines': 1,
          'nsharon': 1,
          'ability': 1,
          'works': 1,
          'actress': 1,
          'nsylvester': 1,
          'teamed': 1,
          'beginning': 1,
          'solidify': 1,
          'statement': 1,
          'typecast': 1,
          'star': 1,
          'snub': 1,
          'oscars': 1,
          'last': 1,
          'year': 1,
          'proving': 1,
          'serious': 1,
          'comedic': 1,
          'illustrated': 1,
          'ngene': 1,
          'superb': 1,
          'grufftalking': 1,
          'almost': 1,
          'crimson': 1,
          'tide': 1,
          'persona': 1,
          'nchristopher': 1,
          'noticed': 1,
          'remember': 1,
          'hits': 1,
          'batman': 1,
          'returns': 1,
          'nanne': 1,
          'minimal': 1,
          'shes': 1,
          'effective': 1,
          'nonetheless': 1,
          'ndanny': 1,
          'small': 1,
          'job': 1,
          'ndan': 1,
          'jane': 1,
          'curtin': 1,
          'lend': 1,
          'lovesick': 1,
          'eurotrash': 1,
          'beesboth': 1,
          'unrecognizable': 1,
          'njennifer': 1,
          'lopez': 1,
          'plays': 1,
          'wont': 1,
          'grant': 1,
          'shauds': 1,
          'foreman': 1,
          'played': 1,
          'miles': 1,
          'tv': 1,
          'murphy': 1,
          'brown': 1,
          'huge': 1,
          'cast': 1,
          'highprofile': 1,
          'names': 1,
          'help': 1,
          'grosses': 1,
          'nof': 1,
          '60': 1,
          'budget': 1,
          'went': 1,
          'ndirectors': 1,
          'eric': 1,
          'darnell': 1,
          'lawrence': 1,
          'relative': 1,
          'newcomers': 1,
          'direct': 1,
          '1994': 1,
          'headless': 1,
          'incredible': 1,
          'ntense': 1,
          'times': 1,
          'throughout': 1,
          'hold': 1,
          'together': 1,
          'professionals': 1,
          'screenplay': 1,
          'todd': 1,
          'alcott': 1,
          'chris': 1,
          'weitz': 1,
          'quite': 1,
          'simple': 1,
          'plot': 1,
          'contains': 1,
          'subtlety': 1,
          'suitable': 1,
          'nkids': 1,
          'delight': 1,
          'laugh': 1,
          'heartily': 1,
          'nmost': 1,
          'childrens': 1,
          'heads': 1,
          'ndoes': 1,
          'mean': 1,
          'nnot': 1,
          'watching': 1,
          'nwhat': 1,
          'themes': 1,
          'given': 1,
          'npart': 1,
          'social': 1,
          'commentary': 1,
          'romance': 1,
          'moral': 1,
          'drama': 1,
          'gives': 1,
          'talk': 1,
          'whether': 1,
          'discussions': 1,
          'individualism': 1,
          'community': 1,
          'nthankfully': 1,
          'subtle': 1,
          'aspects': 1,
          'rated': 1,
          'mild': 1,
          'intense': 1,
          'nsometimes': 1,
          'pushing': 1,
          'limits': 1,
          'movie': 1,
          'violence': 1,
          'keep': 1,
          'melting': 1,
          'acid': 1,
          'speared': 1,
          'death': 1,
          'nand': 1,
          'disintegrate': 1,
          'sunlight': 1,
          'choice': 1,
          'wholesome': 1,
          'theaters': 1,
          'understand': 1,
          'unless': 1,
          'old': 1,
          'still': 1,
          'advisable': 1,
          'leave': 1,
          'really': 1,
          'nhave': 1,
          'confused': 1,
          'recommend': 1,
          'likely': 1,
          'youll': 1,
          'enjoy': 1,
          'npos': 1}),
 Counter({'wedding': 8,
          'singer': 7,
          'film': 4,
          'nthe': 4,
          'robbie': 4,
          'nwell': 3,
          'julia': 3,
          'songs': 2,
          'one': 2,
          'good': 2,
          'nthats': 2,
          'youre': 2,
          'nsweet': 2,
          'humor': 2,
          'sandler': 2,
          'job': 2,
          'barrymore': 2,
          'isnt': 2,
          'nit': 2,
          'say': 2,
          'great': 2,
          'new': 2,
          'wave': 2,
          'want': 2,
          'make': 2,
          'nif': 2,
          'well': 2,
          'thats': 1,
          'question': 1,
          'asked': 1,
          'venturing': 1,
          'nervously': 1,
          'latest': 1,
          'star': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'alumnus': 1,
          'ndoes': 1,
          'draw': 1,
          'laughs': 1,
          'sad': 1,
          'puppy': 1,
          'dog': 1,
          'expression': 1,
          'donthatemeforbeingasimpleton': 1,
          'observations': 1,
          'fans': 1,
          'giggle': 1,
          'screams': 1,
          'top': 1,
          'lungs': 1,
          'people': 1,
          'fact': 1,
          'sings': 1,
          'silly': 1,
          'lyrics': 1,
          'bowl': 1,
          'audiences': 1,
          'theres': 1,
          'little': 1,
          'bit': 1,
          'exited': 1,
          'theater': 1,
          'still': 1,
          'hundred': 1,
          'percent': 1,
          'sure': 1,
          'mr': 1,
          'sandlers': 1,
          'thing': 1,
          'surprisingly': 1,
          'time': 1,
          'nutshell': 1,
          'sweetest': 1,
          'movies': 1,
          'ever': 1,
          'likely': 1,
          'come': 1,
          'across': 1,
          'right': 1,
          'runs': 1,
          'gamut': 1,
          'dumb': 1,
          'mildly': 1,
          'amusing': 1,
          'laughoutloud': 1,
          'hysterical': 1,
          'tone': 1,
          'lovely': 1,
          'ni': 1,
          'admit': 1,
          'halfexpecting': 1,
          'farting': 1,
          'armpit': 1,
          'gratuitous': 1,
          'nudity': 1,
          'superfluous': 1,
          'cloying': 1,
          'subplots': 1,
          'nasty': 1,
          'unnecessary': 1,
          'violence': 1,
          'ninstead': 1,
          'ive': 1,
          'said': 1,
          'year': 1,
          '1985': 1,
          'plays': 1,
          'hart': 1,
          'eponymous': 1,
          'aspiring': 1,
          'rock': 1,
          'stars': 1,
          'often': 1,
          'settle': 1,
          'nwhen': 1,
          'robbies': 1,
          'fianc': 1,
          'e': 1,
          'dumps': 1,
          'altar': 1,
          'gets': 1,
          'depressed': 1,
          'turns': 1,
          'plucky': 1,
          'waitress': 1,
          'called': 1,
          'drew': 1,
          'problems': 1,
          'shes': 1,
          'marrying': 1,
          'hunky': 1,
          'junk': 1,
          'bonds': 1,
          'dealer': 1,
          'unbeknownst': 1,
          'big': 1,
          'monogamy': 1,
          'giving': 1,
          'anything': 1,
          'away': 1,
          'fall': 1,
          'love': 1,
          'naww': 1,
          'nsandler': 1,
          'match': 1,
          'theyre': 1,
          'assisted': 1,
          'terrific': 1,
          'cameo': 1,
          'appearances': 1,
          'including': 1,
          'steve': 1,
          'buscemi': 1,
          'jon': 1,
          'lovitz': 1,
          'whose': 1,
          'individual': 1,
          'scenes': 1,
          'perhaps': 1,
          'funniest': 1,
          'nwriter': 1,
          'tim': 1,
          'herlihy': 1,
          'uncredited': 1,
          'assistance': 1,
          'carrie': 1,
          'fisher': 1,
          'keeps': 1,
          'story': 1,
          'bubbling': 1,
          'along': 1,
          'predictable': 1,
          'conclusion': 1,
          'doesnt': 1,
          'work': 1,
          'handled': 1,
          'lightheartedness': 1,
          'coming': 1,
          'together': 1,
          'generates': 1,
          'smiles': 1,
          'groans': 1,
          'nherlihy': 1,
          'director': 1,
          'frank': 1,
          'coraci': 1,
          'done': 1,
          'recreating': 1,
          'sights': 1,
          'sounds': 1,
          'affectations': 1,
          '1980s': 1,
          'soundtrackan': 1,
          'everpresent': 1,
          'force': 1,
          'filmis': 1,
          'packed': 1,
          'walltowall': 1,
          'hits': 1,
          'period': 1,
          'upon': 1,
          'billy': 1,
          'idols': 1,
          'white': 1,
          'smiths': 1,
          'soon': 1,
          'nto': 1,
          'culture': 1,
          'clubs': 1,
          'really': 1,
          'hurt': 1,
          'mix': 1,
          'music': 1,
          'fashion': 1,
          'would': 1,
          'double': 1,
          'feature': 1,
          'boogie': 1,
          'nights': 1,
          'grew': 1,
          'listening': 1,
          'cure': 1,
          'flock': 1,
          'seagulls': 1,
          'psychedelic': 1,
          'furs': 1,
          'bound': 1,
          'put': 1,
          'nostalgic': 1,
          'hop': 1,
          'stride': 1,
          'fan': 1,
          'lovable': 1,
          'laughable': 1,
          'adam': 1,
          'nlets': 1,
          'might': 1,
          'recent': 1,
          'memory': 1,
          'rent': 1,
          'happy': 1,
          'gilmore': 1,
          'npos': 1}),
 Counter({'cynthia': 7,
          'film': 6,
          'lies': 6,
          'hortense': 6,
          'nbut': 4,
          'maurice': 4,
          'way': 4,
          'n': 4,
          'lives': 3,
          'daughter': 3,
          'gives': 3,
          'party': 3,
          'cynthias': 3,
          'first': 3,
          'yet': 3,
          'scene': 3,
          'nthe': 3,
          'jarvis': 2,
          'common': 2,
          'people': 2,
          'leigh': 2,
          'video': 2,
          'see': 2,
          'rather': 2,
          'films': 2,
          'couple': 2,
          'characters': 2,
          'authenticity': 2,
          'good': 2,
          'secrets': 2,
          'sympathy': 2,
          'black': 2,
          'find': 2,
          'factory': 2,
          'roxanne': 2,
          'photographer': 2,
          'meeting': 2,
          'theme': 2,
          'one': 2,
          'best': 2,
          'much': 2,
          'also': 2,
          'face': 2,
          'unspoken': 2,
          'none': 2,
          'ever': 2,
          'scars': 2,
          'says': 2,
          'got': 2,
          'talking': 2,
          'shes': 2,
          'cast': 2,
          'script': 2,
          'life': 2,
          'cocker': 1,
          'pulp': 1,
          'said': 1,
          'wrote': 1,
          'noticing': 1,
          'mike': 1,
          'boxsets': 1,
          'shelves': 1,
          'feeling': 1,
          'economic': 1,
          'deprivation': 1,
          'becoming': 1,
          'tourist': 1,
          'experience': 1,
          'welloff': 1,
          'nmaybe': 1,
          'classic': 1,
          'case': 1,
          'displacement': 1,
          'easier': 1,
          'lyrics': 1,
          'obsessed': 1,
          'acrylic': 1,
          'wood': 1,
          'chip': 1,
          'wall': 1,
          'fetishization': 1,
          'lowlife': 1,
          'leighs': 1,
          'worth': 1,
          'reminded': 1,
          'drab': 1,
          'interiors': 1,
          'workingclass': 1,
          'dont': 1,
          'make': 1,
          'guarantee': 1,
          'let': 1,
          'alone': 1,
          'nits': 1,
          'triumph': 1,
          'goes': 1,
          'beyond': 1,
          'gestures': 1,
          'probing': 1,
          'means': 1,
          'seek': 1,
          'honesty': 1,
          'everyday': 1,
          'nfollowing': 1,
          'adopted': 1,
          'mothers': 1,
          'funeral': 1,
          'young': 1,
          'optometrist': 1,
          'sets': 1,
          'birth': 1,
          'mother': 1,
          'disturbed': 1,
          'white': 1,
          'nit': 1,
          'worker': 1,
          'shabby': 1,
          'house': 1,
          'perpetually': 1,
          'moody': 1,
          'ncynthias': 1,
          'younger': 1,
          'brother': 1,
          'successful': 1,
          'seen': 1,
          'sister': 1,
          'ages': 1,
          'largely': 1,
          'wifes': 1,
          'animosity': 1,
          'towards': 1,
          'nhortense': 1,
          'calls': 1,
          'initially': 1,
          'breaks': 1,
          'tears': 1,
          'refuses': 1,
          'mutually': 1,
          'suspicious': 1,
          'warm': 1,
          'friendship': 1,
          'eventually': 1,
          'ncynthia': 1,
          'invites': 1,
          'come': 1,
          'along': 1,
          'hosting': 1,
          'nsecrets': 1,
          'simple': 1,
          'enough': 1,
          'heart': 1,
          'character': 1,
          'puts': 1,
          'tell': 1,
          'truth': 1,
          'isnt': 1,
          'nthat': 1,
          'nobody': 1,
          'gets': 1,
          'hurt': 1,
          'delivers': 1,
          'trite': 1,
          'message': 1,
          'shown': 1,
          'hard': 1,
          'ugly': 1,
          'truths': 1,
          'even': 1,
          'evasions': 1,
          'grievances': 1,
          'slowly': 1,
          'choke': 1,
          'us': 1,
          'nhence': 1,
          'difficulty': 1,
          'acknowledging': 1,
          'others': 1,
          'reactions': 1,
          'seeing': 1,
          'sincere': 1,
          'denial': 1,
          'man': 1,
          'longsuppressed': 1,
          'memory': 1,
          'seizes': 1,
          'nat': 1,
          'pretense': 1,
          'coworker': 1,
          'leads': 1,
          'convoluted': 1,
          'agonizing': 1,
          'funny': 1,
          'nlittle': 1,
          'seep': 1,
          'every': 1,
          'corner': 1,
          'like': 1,
          'pretending': 1,
          'hes': 1,
          'dropping': 1,
          'visits': 1,
          'deliberation': 1,
          'nmaurices': 1,
          'job': 1,
          'opportunities': 1,
          'side': 1,
          'comments': 1,
          'main': 1,
          'sadlooking': 1,
          'bride': 1,
          'coaxes': 1,
          'smile': 1,
          'pose': 1,
          'awkwardly': 1,
          'prominent': 1,
          'wedding': 1,
          'ring': 1,
          'argue': 1,
          'spectacles': 1,
          'startling': 1,
          'images': 1,
          'beautiful': 1,
          'woman': 1,
          'large': 1,
          'needs': 1,
          'photo': 1,
          'look': 1,
          'bad': 1,
          'possible': 1,
          'collect': 1,
          'insurance': 1,
          'money': 1,
          'short': 1,
          'leaves': 1,
          'wondering': 1,
          'untold': 1,
          'story': 1,
          'behind': 1,
          'nthere': 1,
          'occasionally': 1,
          'hilarious': 1,
          'moments': 1,
          'attempts': 1,
          'give': 1,
          'unwelcome': 1,
          'advice': 1,
          'contraception': 1,
          'ive': 1,
          'dutch': 1,
          'cap': 1,
          'floating': 1,
          'somewhere': 1,
          'upstairs': 1,
          'stares': 1,
          'pedestrian': 1,
          'legs': 1,
          'tells': 1,
          'youve': 1,
          'flaunt': 1,
          'say': 1,
          'nas': 1,
          'played': 1,
          'brenda': 1,
          'blethyn': 1,
          'comes': 1,
          'close': 1,
          'caricature': 1,
          'nervous': 1,
          'somewhat': 1,
          'disconnected': 1,
          'really': 1,
          'right': 1,
          'role': 1,
          'someone': 1,
          'inspires': 1,
          'strains': 1,
          'tolerance': 1,
          'around': 1,
          'precisely': 1,
          'needy': 1,
          'love': 1,
          'perhaps': 1,
          'nindeed': 1,
          'whole': 1,
          'warmly': 1,
          'rounded': 1,
          'detailed': 1,
          'performances': 1,
          'developed': 1,
          'partly': 1,
          'improvisations': 1,
          'fusion': 1,
          'director': 1,
          'shows': 1,
          'seemingly': 1,
          'everyone': 1,
          'time': 1,
          'many': 1,
          'subtle': 1,
          'observations': 1,
          'made': 1,
          'throughout': 1,
          'nin': 1,
          'different': 1,
          'using': 1,
          'long': 1,
          'single': 1,
          'shot': 1,
          'lonely': 1,
          'caf8a': 1,
          'achieves': 1,
          'touching': 1,
          'intensity': 1,
          'reticence': 1,
          'feelings': 1,
          'climax': 1,
          'finally': 1,
          'spilled': 1,
          'ibsenesque': 1,
          'revelations': 1,
          'everybody': 1,
          'hugging': 1,
          'thing': 1,
          'seems': 1,
          'false': 1,
          'nhowever': 1,
          'truly': 1,
          'earns': 1,
          'happy': 1,
          'ending': 1,
          'misery': 1,
          'repression': 1,
          'nwhen': 1,
          'near': 1,
          'end': 1,
          'innit': 1,
          'get': 1,
          'sense': 1,
          'following': 1,
          'cynicism': 1,
          'last': 1,
          'naked': 1,
          'rediscovered': 1,
          'sweet': 1,
          'without': 1,
          'comforting': 1,
          'illusions': 1,
          'flying': 1,
          'inkpots': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'npos': 1}),
 Counter({'characters': 6,
          'n': 6,
          'around': 5,
          'film': 5,
          'ideas': 4,
          'linklater': 4,
          'slacker': 3,
          'people': 3,
          'camera': 3,
          'follows': 3,
          'person': 3,
          'man': 3,
          'might': 3,
          'first': 3,
          'us': 3,
          'culture': 2,
          'morality': 2,
          'subtle': 2,
          'hanging': 2,
          'interesting': 2,
          'minutes': 2,
          'walks': 2,
          'lot': 2,
          'weird': 2,
          'think': 2,
          'really': 2,
          'nthe': 2,
          'everything': 2,
          'nothing': 2,
          'involving': 2,
          'slightly': 2,
          'seems': 2,
          'nand': 2,
          'gets': 2,
          'many': 2,
          'little': 2,
          'bit': 2,
          'half': 2,
          'richard': 1,
          'linklaters': 1,
          'made': 1,
          '1991': 1,
          'budget': 1,
          '23': 1,
          '000': 1,
          'immerses': 1,
          'twentysomething': 1,
          'collegetown': 1,
          'austin': 1,
          'texas': 1,
          'nmost': 1,
          'either': 1,
          'unemployed': 1,
          'work': 1,
          'jobs': 1,
          'apparently': 1,
          'menial': 1,
          'worth': 1,
          'mentioning': 1,
          'ntheir': 1,
          'lifestyle': 1,
          'sort': 1,
          'passive': 1,
          'resistance': 1,
          'idea': 1,
          'go': 1,
          'actively': 1,
          'pursue': 1,
          'career': 1,
          'graduation': 1,
          'seem': 1,
          'content': 1,
          'sit': 1,
          'spouting': 1,
          'inadequacy': 1,
          'american': 1,
          'democracy': 1,
          'pervasiveness': 1,
          'slave': 1,
          'messages': 1,
          'pop': 1,
          'nask': 1,
          'theyve': 1,
          'lately': 1,
          'theyll': 1,
          'likely': 1,
          'reply': 1,
          'oh': 1,
          'know': 1,
          'nlinklater': 1,
          'uses': 1,
          'technique': 1,
          'examine': 1,
          'one': 1,
          'someone': 1,
          'else': 1,
          'diner': 1,
          'another': 1,
          'walking': 1,
          'door': 1,
          'nits': 1,
          'certainly': 1,
          'fun': 1,
          'listening': 1,
          'talk': 1,
          'clearly': 1,
          'intelligent': 1,
          'genuinely': 1,
          'insightful': 1,
          'plain': 1,
          'profound': 1,
          'opening': 1,
          'monologue': 1,
          'delivered': 1,
          'taxi': 1,
          'driver': 1,
          'tosses': 1,
          'alternate': 1,
          'realities': 1,
          'nicely': 1,
          'set': 1,
          'meandering': 1,
          'structure': 1,
          'nother': 1,
          'along': 1,
          'way': 1,
          'offer': 1,
          'observations': 1,
          'dating': 1,
          'relationships': 1,
          'history': 1,
          'anarchist': 1,
          'philosophy': 1,
          'groups': 1,
          'pseudointellectuals': 1,
          'kick': 1,
          'nobility': 1,
          'sitting': 1,
          'briberybased': 1,
          'scoobydoo': 1,
          'nfor': 1,
          'part': 1,
          'however': 1,
          'best': 1,
          'moments': 1,
          'ones': 1,
          'unhinged': 1,
          'types': 1,
          'nnear': 1,
          'beginning': 1,
          'paranoid': 1,
          'pedestrian': 1,
          'several': 1,
          'blocks': 1,
          'warning': 1,
          'government': 1,
          'conspiracies': 1,
          'global': 1,
          'warming': 1,
          'secret': 1,
          'colonization': 1,
          'mars': 1,
          'nanother': 1,
          'collecting': 1,
          'televisions': 1,
          'keeping': 1,
          'least': 1,
          'fifteen': 1,
          'sets': 1,
          'running': 1,
          'time': 1,
          'playing': 1,
          'tapes': 1,
          'graduate': 1,
          'student': 1,
          'recorded': 1,
          'nervous': 1,
          'breakdown': 1,
          'destroying': 1,
          'scene': 1,
          'drew': 1,
          'big': 1,
          'laugh': 1,
          'everyone': 1,
          'present': 1,
          'saw': 1,
          'tries': 1,
          'achieve': 1,
          'closure': 1,
          'failed': 1,
          'relationship': 1,
          'reciting': 1,
          'poetry': 1,
          'bridge': 1,
          'throwing': 1,
          'typewriter': 1,
          'creek': 1,
          'problem': 1,
          'starts': 1,
          'run': 1,
          'steam': 1,
          'towards': 1,
          'end': 1,
          'nsince': 1,
          'spends': 1,
          'character': 1,
          'introduction': 1,
          'new': 1,
          'repetitive': 1,
          'nthere': 1,
          'times': 1,
          'hear': 1,
          'hey': 1,
          'whats': 1,
          'going': 1,
          'much': 1,
          'nerves': 1,
          'well': 1,
          'benefited': 1,
          'slower': 1,
          'pace': 1,
          'characterization': 1,
          'dialogue': 1,
          'second': 1,
          'large': 1,
          'quite': 1,
          'jfk': 1,
          'buff': 1,
          'example': 1,
          'like': 1,
          'pale': 1,
          'imitation': 1,
          'previous': 1,
          'conspiracy': 1,
          'theorist': 1,
          'generally': 1,
          'arent': 1,
          'unique': 1,
          'ninstead': 1,
          'depicting': 1,
          'city': 1,
          'populated': 1,
          'mostly': 1,
          'normal': 1,
          'showing': 1,
          'strangeness': 1,
          'noticed': 1,
          'shows': 1,
          'oddballs': 1,
          'stops': 1,
          'reminds': 1,
          'ordinary': 1,
          'live': 1,
          'good': 1,
          'wonderfully': 1,
          'offbeat': 1,
          'entertaining': 1,
          'comedy': 1,
          'whatever': 1,
          'flaws': 1,
          'status': 1,
          'cult': 1,
          'classic': 1,
          'welldeserved': 1,
          'ni': 1,
          'cant': 1,
          'help': 1,
          'even': 1,
          'better': 1,
          'slowed': 1,
          'filmed': 1,
          'scenes': 1,
          'reverse': 1,
          'order': 1,
          'npos': 1}),
 Counter({'hauer': 6,
          'turner': 5,
          'two': 4,
          'breed': 3,
          'apart': 3,
          'film': 3,
          'birds': 3,
          'island': 3,
          'men': 3,
          'ni': 3,
          'crazy': 2,
          'many': 2,
          'boothe': 2,
          'woman': 2,
          'n': 2,
          'isnt': 2,
          'movie': 2,
          'characters': 2,
          'though': 2,
          'problem': 2,
          'nfor': 2,
          'example': 2,
          'early': 2,
          'rednecks': 2,
          'one': 2,
          'great': 2,
          'theres': 2,
          'hes': 2,
          'always': 2,
          'nhe': 2,
          'scene': 2,
          'casts': 1,
          'rutger': 1,
          'birdloving': 1,
          'recluse': 1,
          'picks': 1,
          'feathered': 1,
          'friends': 1,
          'kathleen': 1,
          'na': 1,
          'bit': 1,
          'hard': 1,
          'swallow': 1,
          'nthats': 1,
          'first': 1,
          'improbabilities': 1,
          'nhauer': 1,
          'stars': 1,
          'man': 1,
          'obsessed': 1,
          'keeping': 1,
          'safe': 1,
          'plays': 1,
          'guy': 1,
          'hired': 1,
          'steal': 1,
          'couple': 1,
          'rare': 1,
          'eagle': 1,
          'eggs': 1,
          'rich': 1,
          'egg': 1,
          'collector': 1,
          'nturner': 1,
          'caught': 1,
          'bad': 1,
          'exactly': 1,
          'nindeed': 1,
          'found': 1,
          'rooting': 1,
          'even': 1,
          'goals': 1,
          'couldnt': 1,
          'different': 1,
          'nthe': 1,
          'inconsistencies': 1,
          'physically': 1,
          'assaults': 1,
          'drunken': 1,
          'shooting': 1,
          'nlater': 1,
          'come': 1,
          'back': 1,
          'revenge': 1,
          'four': 1,
          'people': 1,
          'kills': 1,
          'tough': 1,
          'time': 1,
          'believing': 1,
          'police': 1,
          'wouldnt': 1,
          'get': 1,
          'involved': 1,
          'point': 1,
          'nanother': 1,
          'silly': 1,
          'lovetriangle': 1,
          'develops': 1,
          'didnt': 1,
          'care': 1,
          'way': 1,
          'ended': 1,
          'interested': 1,
          'finding': 1,
          'would': 1,
          'victorious': 1,
          'respective': 1,
          'missions': 1,
          'nhowever': 1,
          'despite': 1,
          'uninteresting': 1,
          'subplot': 1,
          'manage': 1,
          'give': 1,
          'performance': 1,
          'reminds': 1,
          'sometimes': 1,
          'life': 1,
          'money': 1,
          'nas': 1,
          'actor': 1,
          'ive': 1,
          'admired': 1,
          'penchant': 1,
          'picking': 1,
          'strange': 1,
          'unusual': 1,
          'nand': 1,
          'exception': 1,
          'nhes': 1,
          'frequently': 1,
          'seen': 1,
          'riding': 1,
          'around': 1,
          'white': 1,
          'horse': 1,
          'wearing': 1,
          'pirates': 1,
          'clothing': 1,
          'holstering': 1,
          'crossbow': 1,
          'ndespite': 1,
          'eccentric': 1,
          'mannerisms': 1,
          'manages': 1,
          'let': 1,
          'human': 1,
          'side': 1,
          'character': 1,
          'shine': 1,
          'barks': 1,
          'son': 1,
          'came': 1,
          'onto': 1,
          'day': 1,
          'comes': 1,
          'loner': 1,
          'minutes': 1,
          'later': 1,
          'apologizing': 1,
          'believe': 1,
          'intentions': 1,
          'nsoon': 1,
          'find': 1,
          'vietnam': 1,
          'vet': 1,
          'actions': 1,
          'become': 1,
          'fairly': 1,
          'clear': 1,
          'us': 1,
          'means': 1,
          'contain': 1,
          'good': 1,
          'performances': 1,
          'three': 1,
          'leads': 1,
          'worth': 1,
          'seeing': 1,
          'reason': 1,
          'alone': 1,
          'npos': 1}),
 Counter({'film': 13,
          'titanic': 10,
          'nthe': 9,
          'well': 8,
          'ship': 6,
          'cameron': 5,
          'great': 5,
          'camerons': 5,
          'story': 5,
          'could': 4,
          'although': 4,
          'dialogue': 4,
          'really': 4,
          'effects': 4,
          'love': 3,
          'films': 3,
          'explorers': 3,
          'picture': 3,
          'woman': 3,
          'poor': 3,
          'boy': 3,
          'rich': 3,
          'cal': 3,
          'hours': 3,
          'like': 3,
          'scenes': 3,
          'also': 3,
          'awesome': 3,
          'ntitanic': 3,
          'perfect': 2,
          'make': 2,
          'lot': 2,
          'dosent': 2,
          'nbut': 2,
          'sadly': 2,
          'one': 2,
          'old': 2,
          'winslet': 2,
          'tells': 2,
          'flashback': 2,
          'plays': 2,
          'jack': 2,
          'nalso': 2,
          'rose': 2,
          'man': 2,
          'fall': 2,
          'work': 2,
          'genius': 2,
          'script': 2,
          'full': 2,
          'characters': 2,
          'girl': 2,
          'pretty': 2,
          'audience': 2,
          '3': 2,
          'good': 2,
          'terminator': 2,
          '2': 2,
          'theres': 2,
          'direction': 2,
          'nthere': 2,
          'scary': 2,
          'bodies': 2,
          'directing': 2,
          'excellent': 2,
          'mannered': 2,
          'every': 2,
          'come': 2,
          '1988': 2,
          'close': 1,
          'movie': 1,
          'upsetting': 1,
          'isnt': 1,
          'cost': 1,
          '200': 1,
          'million': 1,
          'put': 1,
          '20th': 1,
          'century': 1,
          'fox': 1,
          'finicial': 1,
          'trouble': 1,
          'sunk': 1,
          'pun': 1,
          'intended': 1,
          'labour': 1,
          'wrote': 1,
          'directed': 1,
          'nwe': 1,
          'know': 1,
          'big': 1,
          'budget': 1,
          'mean': 1,
          'see': 1,
          'waterworld': 1,
          '1995': 1,
          'far': 1,
          'superior': 1,
          'kevin': 1,
          'costners': 1,
          'waterlogged': 1,
          'epic': 1,
          'misses': 1,
          'mark': 1,
          'masterpiece': 1,
          'best': 1,
          'starts': 1,
          'present': 1,
          'day': 1,
          'searching': 1,
          'runied': 1,
          'nthey': 1,
          'find': 1,
          'safe': 1,
          'inside': 1,
          'invite': 1,
          'nin': 1,
          'dicaprio': 1,
          'dawson': 1,
          'winning': 1,
          'poker': 1,
          'game': 1,
          'wins': 1,
          'two': 1,
          'tickets': 1,
          'board': 1,
          'grand': 1,
          'leaving': 1,
          'liverpool': 1,
          'go': 1,
          'america': 1,
          'boarding': 1,
          'dewitt': 1,
          'bukater': 1,
          'forced': 1,
          'marriage': 1,
          'hockley': 1,
          'zane': 1,
          'family': 1,
          'remain': 1,
          'nshe': 1,
          'nearly': 1,
          'commits': 1,
          'suicide': 1,
          'comes': 1,
          'rescue': 1,
          'saves': 1,
          'gets': 1,
          'jealous': 1,
          'eventually': 1,
          'tries': 1,
          'kill': 1,
          'noh': 1,
          'yeah': 1,
          'sinks': 1,
          'nand': 1,
          'main': 1,
          'problem': 1,
          'stops': 1,
          'weak': 1,
          'cliched': 1,
          'creepy': 1,
          'nice': 1,
          'marry': 1,
          'heart': 1,
          'stuckup': 1,
          'mother': 1,
          'consists': 1,
          'lots': 1,
          'injokes': 1,
          'boat': 1,
          'wont': 1,
          'sink': 1,
          'basic': 1,
          'shame': 1,
          'sit': 1,
          'nwithout': 1,
          'become': 1,
          'long': 1,
          'boring': 1,
          '1992': 1,
          'luckily': 1,
          'redeeming': 1,
          'features': 1,
          'problems': 1,
          'disappear': 1,
          'nfirstly': 1,
          'sweeping': 1,
          'shots': 1,
          'clever': 1,
          'fades': 1,
          'ruined': 1,
          'directs': 1,
          'especially': 1,
          'disaster': 1,
          'end': 1,
          'mayhem': 1,
          'panic': 1,
          'done': 1,
          'nits': 1,
          'sight': 1,
          'watching': 1,
          'heights': 1,
          'watery': 1,
          'depths': 1,
          'nthanks': 1,
          'audiences': 1,
          'attention': 1,
          'held': 1,
          '15': 1,
          'minutes': 1,
          'nto': 1,
          'support': 1,
          'cast': 1,
          'working': 1,
          'underwritten': 1,
          'ndicaprio': 1,
          'looks': 1,
          '1617': 1,
          'years': 1,
          'nhis': 1,
          'performance': 1,
          'excitiable': 1,
          'yet': 1,
          'funny': 1,
          'lines': 1,
          'nwinslet': 1,
          'transistion': 1,
          'rebelous': 1,
          'young': 1,
          'adult': 1,
          'smooth': 1,
          'nzane': 1,
          'deliciously': 1,
          'evil': 1,
          'saying': 1,
          'line': 1,
          'sneer': 1,
          'flicker': 1,
          'eye': 1,
          'lash': 1,
          'hate': 1,
          'nhe': 1,
          'may': 1,
          'playing': 1,
          'character': 1,
          'hes': 1,
          'dead': 1,
          'calm': 1,
          'worthy': 1,
          'note': 1,
          'kathy': 1,
          'bates': 1,
          'edward': 1,
          'scissorhands': 1,
          '1990': 1,
          'loud': 1,
          'mouthed': 1,
          'american': 1,
          'nfinally': 1,
          'icing': 1,
          'things': 1,
          'cake': 1,
          'special': 1,
          'ncameron': 1,
          'whiz': 1,
          'watch': 1,
          'aliens': 1,
          'true': 1,
          'lies': 1,
          '1994': 1,
          'used': 1,
          'throughout': 1,
          'sweeps': 1,
          'ships': 1,
          'digital': 1,
          'domain': 1,
          'animate': 1,
          'human': 1,
          'movement': 1,
          'humans': 1,
          'seem': 1,
          'move': 1,
          'smoothly': 1,
          'something': 1,
          'odd': 1,
          'nyou': 1,
          'tell': 1,
          'animated': 1,
          'computer': 1,
          'nof': 1,
          'course': 1,
          'sinking': 1,
          'flying': 1,
          'place': 1,
          'scene': 1,
          'splits': 1,
          'half': 1,
          'seen': 1,
          'believed': 1,
          'reinforced': 1,
          'wonder': 1,
          'acting': 1,
          'cgi': 1,
          'writing': 1,
          'nagain': 1,
          'editing': 1,
          'loose': 1,
          'edits': 1,
          'three': 1,
          'cuts': 1,
          'godfather': 1,
          'movies': 1,
          'wonderful': 1,
          'attempt': 1,
          'creating': 1,
          'nenjoyable': 1,
          'even': 1,
          'sad': 1,
          'cinema': 1,
          'invented': 1,
          'filling': 1,
          'screen': 1,
          'incredible': 1,
          'images': 1,
          'assaulting': 1,
          'ears': 1,
          'sound': 1,
          'na': 1,
          'superb': 1,
          'noverall': 1,
          'rating': 1,
          'npos': 1}),
 Counter({'bulworth': 11,
          'nhe': 6,
          'movie': 6,
          'nthe': 5,
          'bulworths': 5,
          'political': 5,
          'beatty': 4,
          'get': 4,
          'nwhen': 4,
          'nhis': 4,
          'hes': 4,
          'like': 4,
          'truth': 4,
          'good': 4,
          'bad': 4,
          'one': 3,
          'plot': 3,
          'could': 3,
          'back': 3,
          'insurance': 3,
          'questions': 3,
          'hit': 3,
          'man': 3,
          'anyway': 3,
          'keep': 3,
          'go': 3,
          'make': 3,
          'politics': 3,
          'much': 3,
          'movies': 3,
          'scenes': 3,
          'nas': 3,
          'wonders': 2,
          'warren': 2,
          'plays': 2,
          'politician': 2,
          'campaign': 2,
          'congregation': 2,
          'cant': 2,
          'wings': 2,
          'montage': 2,
          'working': 2,
          'tv': 2,
          'depression': 2,
          'calls': 2,
          'assassination': 2,
          'speaking': 2,
          'nbulworth': 2,
          'speech': 2,
          'africanamerican': 2,
          'church': 2,
          'hard': 2,
          'money': 2,
          'dead': 2,
          'came': 2,
          'made': 2,
          'promises': 2,
          'public': 2,
          'n': 2,
          'drinking': 2,
          'nthat': 2,
          'line': 2,
          'talking': 2,
          'nwith': 2,
          'people': 2,
          'lobbyists': 2,
          'three': 2,
          'volunteers': 2,
          'nikki': 2,
          'quality': 2,
          'product': 2,
          'night': 2,
          'rap': 2,
          'raps': 2,
          'first': 2,
          'seems': 2,
          'chase': 2,
          'screen': 2,
          'able': 2,
          'njust': 2,
          'seeing': 1,
          'outrageous': 1,
          'previews': 1,
          'possibly': 1,
          'allow': 1,
          'away': 1,
          'making': 1,
          'statements': 1,
          'case': 1,
          'missed': 1,
          'trail': 1,
          'says': 1,
          'black': 1,
          'cut': 1,
          'malt': 1,
          'liquor': 1,
          'chicken': 1,
          'behind': 1,
          'someone': 1,
          'running': 1,
          'stabs': 1,
          'wife': 1,
          'youre': 1,
          'never': 1,
          'gon': 1,
          'na': 1,
          'rid': 1,
          'nwell': 1,
          'works': 1,
          'well': 1,
          'comedy': 1,
          'nbeatty': 1,
          'jay': 1,
          'billington': 1,
          'longtime': 1,
          'democratic': 1,
          'senator': 1,
          'california': 1,
          'opens': 1,
          'painfully': 1,
          'repetitious': 1,
          'latest': 1,
          'commercials': 1,
          'condemning': 1,
          'affirmative': 1,
          'action': 1,
          'ironically': 1,
          'intercut': 1,
          'pictures': 1,
          'martin': 1,
          'luther': 1,
          'king': 1,
          'youth': 1,
          'jack': 1,
          'kennedy': 1,
          'finally': 1,
          'lay': 1,
          'eyes': 1,
          'morosely': 1,
          'weeping': 1,
          'front': 1,
          'gone': 1,
          'without': 1,
          'food': 1,
          'sleep': 1,
          'days': 1,
          'entering': 1,
          'final': 1,
          'weekend': 1,
          'primaries': 1,
          'sunk': 1,
          'far': 1,
          'care': 1,
          'nfirst': 1,
          'lobbyist': 1,
          'industry': 1,
          'bribe': 1,
          '10': 1,
          'million': 1,
          'life': 1,
          'policy': 1,
          'daughters': 1,
          'name': 1,
          'nthen': 1,
          'associate': 1,
          'arrange': 1,
          'assistant': 1,
          'murphy': 1,
          'oliver': 1,
          'platt': 1,
          'oblivious': 1,
          'suicidal': 1,
          'state': 1,
          'drags': 1,
          'engagements': 1,
          'halfheartedly': 1,
          'reads': 1,
          'takes': 1,
          'audience': 1,
          'voting': 1,
          'record': 1,
          'promised': 1,
          'help': 1,
          'rebuild': 1,
          'community': 1,
          'riots': 1,
          'hasnt': 1,
          'shown': 1,
          'nsince': 1,
          'figures': 1,
          'hell': 1,
          'answer': 1,
          'truthfully': 1,
          'bill': 1,
          'clinton': 1,
          'newt': 1,
          'gingrich': 1,
          'l': 1,
          'photo': 1,
          'opportunity': 1,
          'nthey': 1,
          'improved': 1,
          'image': 1,
          'counted': 1,
          'media': 1,
          'eventually': 1,
          'forget': 1,
          'shock': 1,
          'outrage': 1,
          'grows': 1,
          'coming': 1,
          'keeps': 1,
          'shooting': 1,
          'honest': 1,
          'ugly': 1,
          'answers': 1,
          'id': 1,
          'distinction': 1,
          'denver': 1,
          'post': 1,
          'failed': 1,
          'characterizing': 1,
          'africanamericans': 1,
          'maltliquor': 1,
          'j': 1,
          'nfans': 1,
          'part': 1,
          'trailers': 1,
          'praised': 1,
          'confessions': 1,
          'makes': 1,
          'critics': 1,
          'praise': 1,
          'theyre': 1,
          'experience': 1,
          'liberating': 1,
          'nothing': 1,
          'left': 1,
          'lose': 1,
          'longer': 1,
          'restricted': 1,
          'burping': 1,
          'generic': 1,
          'platitudes': 1,
          'sides': 1,
          'mouth': 1,
          'say': 1,
          'whatever': 1,
          'wants': 1,
          'going': 1,
          'nwhy': 1,
          'tell': 1,
          'sleazy': 1,
          'bought': 1,
          'paid': 1,
          'racism': 1,
          'among': 1,
          'populace': 1,
          'protects': 1,
          'politicians': 1,
          'target': 1,
          'charges': 1,
          'classism': 1,
          'nbulworths': 1,
          'candor': 1,
          'wins': 1,
          'halle': 1,
          'barry': 1,
          'gets': 1,
          'crush': 1,
          'feels': 1,
          'afterwards': 1,
          'actually': 1,
          'eats': 1,
          'something': 1,
          'nchicken': 1,
          'appropriately': 1,
          'enough': 1,
          'shows': 1,
          'late': 1,
          'meeting': 1,
          'studio': 1,
          'executives': 1,
          'asks': 1,
          'stands': 1,
          'government': 1,
          'regulation': 1,
          'ratings': 1,
          'drifts': 1,
          'topic': 1,
          'filmed': 1,
          'entertainment': 1,
          'many': 1,
          'talented': 1,
          'hollywood': 1,
          'become': 1,
          'indignant': 1,
          'ask': 1,
          'low': 1,
          'opinion': 1,
          'callously': 1,
          'admits': 1,
          'rich': 1,
          'jews': 1,
          'drops': 1,
          'nightclub': 1,
          'decides': 1,
          'stays': 1,
          'smoking': 1,
          'pot': 1,
          'dancing': 1,
          'falling': 1,
          'love': 1,
          'learning': 1,
          'scratch': 1,
          'turntables': 1,
          'next': 1,
          'day': 1,
          'shuns': 1,
          'prepared': 1,
          'instead': 1,
          'suitandtie': 1,
          'fundraisers': 1,
          'nfrom': 1,
          'appearances': 1,
          'middleaged': 1,
          'white': 1,
          'guy': 1,
          'nhes': 1,
          'try': 1,
          'least': 1,
          'embarrassingly': 1,
          'amused': 1,
          'rest': 1,
          'constituency': 1,
          'new': 1,
          'neventually': 1,
          'remember': 1,
          'hired': 1,
          'novertakes': 1,
          'nscreen': 1,
          'time': 1,
          'spent': 1,
          'trying': 1,
          'cancel': 1,
          'request': 1,
          'closing': 1,
          'nthere': 1,
          'even': 1,
          'gratuitous': 1,
          'fleeing': 1,
          'killer': 1,
          'nthese': 1,
          'may': 1,
          'necessary': 1,
          'events': 1,
          'film': 1,
          'moving': 1,
          'along': 1,
          'distracted': 1,
          'detracted': 1,
          'ranting': 1,
          'interesting': 1,
          'everpresent': 1,
          'obviouslooking': 1,
          'assassin': 1,
          'nstill': 1,
          'original': 1,
          'enjoyable': 1,
          'deserves': 1,
          'credit': 1,
          'bringing': 1,
          'story': 1,
          'writer': 1,
          'structure': 1,
          'dialogue': 1,
          'jeremy': 1,
          'pikser': 1,
          'cowrote': 1,
          'screenplay': 1,
          'actor': 1,
          'convincingly': 1,
          'portray': 1,
          'liberation': 1,
          'rebirth': 1,
          'producer': 1,
          'four': 1,
          'others': 1,
          'free': 1,
          'hollywoods': 1,
          'indulgent': 1,
          'formulas': 1,
          'except': 1,
          'inexcusable': 1,
          'nsomeone': 1,
          'else': 1,
          'probably': 1,
          'directed': 1,
          'since': 1,
          'heck': 1,
          'nits': 1,
          'arent': 1,
          'around': 1,
          'tackle': 1,
          'corruption': 1,
          'way': 1,
          'challenges': 1,
          'viewers': 1,
          'pay': 1,
          'attention': 1,
          'real': 1,
          'nafter': 1,
          'inspiration': 1,
          'straight': 1,
          'news': 1,
          'little': 1,
          'perception': 1,
          'insight': 1,
          'write': 1,
          'rants': 1,
          'dont': 1,
          'expect': 1,
          'popular': 1,
          'companies': 1,
          'npos': 1}),
 Counter({'pie': 6,
          'american': 4,
          'dont': 3,
          'party': 3,
          'n': 3,
          'movies': 2,
          'kev': 2,
          'wants': 2,
          'oz': 2,
          'klein': 2,
          'finch': 2,
          'pays': 2,
          'women': 2,
          'time': 2,
          'performance': 2,
          'prom': 2,
          'namerican': 2,
          'arouse': 2,
          'amuse': 2,
          'say': 2,
          'see': 2,
          'teen': 2,
          'nthe': 2,
          'acknowledges': 1,
          'cold': 1,
          'hard': 1,
          'fact': 1,
          'difficult': 1,
          'get': 1,
          'laid': 1,
          'nits': 1,
          'four': 1,
          'virgin': 1,
          'heroes': 1,
          'jim': 1,
          'biggs': 1,
          'chronic': 1,
          'masturbator': 1,
          'nicholas': 1,
          'desperately': 1,
          'deflower': 1,
          'girlfriend': 1,
          'reid': 1,
          'lacrosse': 1,
          'player': 1,
          'whose': 1,
          'approach': 1,
          'requires': 1,
          'fine': 1,
          'tuning': 1,
          'eddie': 1,
          'kaye': 1,
          'thomas': 1,
          'germphobe': 1,
          'crass': 1,
          'nickname': 1,
          'hilarious': 1,
          'wont': 1,
          'spoil': 1,
          'classmate': 1,
          'spread': 1,
          'rumours': 1,
          'size': 1,
          'member': 1,
          'njim': 1,
          'attend': 1,
          'high': 1,
          'school': 1,
          'suburban': 1,
          'michigan': 1,
          'full': 1,
          'many': 1,
          'impossibly': 1,
          'beautiful': 1,
          'wonder': 1,
          'theyre': 1,
          'horny': 1,
          'nafter': 1,
          'studly': 1,
          'friend': 1,
          'stiflers': 1,
          'seann': 1,
          'william': 1,
          'scott': 1,
          'films': 1,
          'sharpest': 1,
          'house': 1,
          'leaves': 1,
          'sexually': 1,
          'unsatisfied': 1,
          'quartet': 1,
          'make': 1,
          'pact': 1,
          'lose': 1,
          'graduationspecifically': 1,
          'night': 1,
          'weeks': 1,
          'away': 1,
          'tradition': 1,
          'bachelor': 1,
          'revenge': 1,
          'nerds': 1,
          'nalmost': 1,
          'every': 1,
          'conversation': 1,
          'characters': 1,
          'revolves': 1,
          'around': 1,
          'makin': 1,
          'whoopee': 1,
          'nall': 1,
          'ogled': 1,
          'alyson': 1,
          'hannigans': 1,
          'perky': 1,
          'music': 1,
          'student': 1,
          'memorable': 1,
          'female': 1,
          'bunch': 1,
          'nsituations': 1,
          'abound': 1,
          'defy': 1,
          'logic': 1,
          'andor': 1,
          'core': 1,
          'audience': 1,
          'adolescent': 1,
          'boys': 1,
          'nadias': 1,
          'shannon': 1,
          'elizabeth': 1,
          'internet': 1,
          'stripteasean': 1,
          'unexpectedly': 1,
          'raucous': 1,
          'guiltily': 1,
          'pleasurable': 1,
          'sequence': 1,
          'nto': 1,
          'jims': 1,
          'lusty': 1,
          'encounter': 1,
          'hot': 1,
          'apple': 1,
          'nwhat': 1,
          'differentiates': 1,
          'dirty': 1,
          'eighties': 1,
          'comedies': 1,
          'aside': 1,
          'nineties': 1,
          'obsession': 1,
          'bodily': 1,
          'fluids': 1,
          'cast': 1,
          'thats': 1,
          'light': 1,
          'years': 1,
          'appealing': 1,
          'one': 1,
          'guys': 1,
          'ntwo': 1,
          'standouts': 1,
          'sctv': 1,
          'eugene': 1,
          'levy': 1,
          'nklein': 1,
          'plays': 1,
          'kindhearted': 1,
          'athlete': 1,
          'second': 1,
          'row': 1,
          'alexander': 1,
          'paynes': 1,
          'underappreciated': 1,
          'election': 1,
          'ni': 1,
          'hope': 1,
          'warm': 1,
          'actor': 1,
          'disarmingly': 1,
          'honest': 1,
          'face': 1,
          'soon': 1,
          'nlevys': 1,
          'crowdpleasing': 1,
          'indeed': 1,
          'nice': 1,
          'back': 1,
          'big': 1,
          'screen': 1,
          'role': 1,
          'makes': 1,
          'wonderful': 1,
          'use': 1,
          'expressive': 1,
          'brow': 1,
          'also': 1,
          'emulate': 1,
          'flicks': 1,
          'parents': 1,
          '_would_': 1,
          'let': 1,
          'watch': 1,
          'growing': 1,
          'nit': 1,
          'skillfully': 1,
          'employs': 1,
          'broad': 1,
          'mix': 1,
          'pop': 1,
          'tunes': 1,
          'much': 1,
          'like': 1,
          'john': 1,
          'hughes': 1,
          'even': 1,
          'homage': 1,
          'breakfast': 1,
          'club': 1,
          'couple': 1,
          'times': 1,
          'evidently': 1,
          'band': 1,
          'covers': 1,
          'simple': 1,
          'minds': 1,
          'forget': 1,
          'picture': 1,
          'ultimately': 1,
          'healthy': 1,
          'obligatory': 1,
          'attitude': 1,
          'towards': 1,
          'safe': 1,
          'sexeven': 1,
          'libidinous': 1,
          'pies': 1,
          'protagonists': 1,
          'first': 1,
          'whip': 1,
          'condom': 1,
          'filmmakers': 1,
          'prove': 1,
          'socially': 1,
          'responsible': 1,
          'raunch': 1,
          'possible': 1,
          'nfor': 1,
          'familiarity': 1,
          'charming': 1,
          'leads': 1,
          'recommend': 1,
          'buzz': 1,
          'film': 1,
          'expecting': 1,
          'something': 1,
          'fresher': 1,
          'nas': 1,
          'far': 1,
          'new': 1,
          'cinema': 1,
          'goes': 1,
          'top': 1,
          'heap': 1,
          'didnt': 1,
          'warn': 1,
          'scene': 1,
          'npos': 1}),
 Counter({'truman': 7,
          'show': 7,
          'nbut': 5,
          'film': 5,
          'nthe': 5,
          'audience': 4,
          'life': 4,
          'trumans': 3,
          'still': 2,
          'films': 2,
          'would': 2,
          'see': 2,
          'really': 2,
          'nthere': 2,
          'picture': 2,
          'makes': 2,
          'peter': 2,
          'many': 2,
          'beautiful': 2,
          'every': 2,
          'nit': 2,
          'may': 2,
          'made': 2,
          'burbank': 2,
          'human': 2,
          'side': 2,
          'character': 2,
          'played': 2,
          'millions': 2,
          'people': 2,
          'happening': 2,
          'laugh': 2,
          '1998': 1,
          'summer': 1,
          'movie': 1,
          'season': 1,
          'infancy': 1,
          'diasappointing': 1,
          'godzilla': 1,
          'fear': 1,
          'loathing': 1,
          'las': 1,
          'vegas': 1,
          'nice': 1,
          'good': 1,
          'doubt': 1,
          'could': 1,
          'expected': 1,
          'one': 1,
          'unique': 1,
          'ever': 1,
          'seen': 1,
          'deserves': 1,
          'spot': 1,
          'decades': 1,
          'best': 1,
          'list': 1,
          'way': 1,
          'isolate': 1,
          'single': 1,
          'component': 1,
          'proclaim': 1,
          'yes': 1,
          'thats': 1,
          'great': 1,
          'blend': 1,
          'weirs': 1,
          'masterful': 1,
          'ways': 1,
          'brilliant': 1,
          'direction': 1,
          'bizious': 1,
          'stunning': 1,
          'photography': 1,
          'jim': 1,
          'carreys': 1,
          'performance': 1,
          'work': 1,
          'fantastically': 1,
          'something': 1,
          'strangely': 1,
          'shot': 1,
          'use': 1,
          'color': 1,
          'placement': 1,
          'characters': 1,
          'frame': 1,
          'everything': 1,
          'looks': 1,
          'intentional': 1,
          'perfect': 1,
          'ncarrey': 1,
          'wise': 1,
          'choice': 1,
          'nby': 1,
          'playing': 1,
          'mildmannered': 1,
          'allows': 1,
          'enough': 1,
          'room': 1,
          'comical': 1,
          'therefore': 1,
          'alienating': 1,
          'true': 1,
          'fans': 1,
          'showing': 1,
          'vulnerable': 1,
          'nthat': 1,
          'missing': 1,
          'nearly': 1,
          'major': 1,
          'numerous': 1,
          'commercial': 1,
          'successes': 1,
          'ntruman': 1,
          'born': 1,
          'nhe': 1,
          'chosen': 1,
          'birth': 1,
          'focus': 1,
          '24': 1,
          'hour': 1,
          'television': 1,
          'neverything': 1,
          'environment': 1,
          'controlled': 1,
          'team': 1,
          'technicians': 1,
          'led': 1,
          'shows': 1,
          'director': 1,
          'christof': 1,
          'ed': 1,
          'harris': 1,
          'neveryone': 1,
          'actor': 1,
          'extra': 1,
          'nthey': 1,
          'watched': 1,
          'around': 1,
          'globe': 1,
          'tune': 1,
          'time': 1,
          'day': 1,
          'person': 1,
          'aware': 1,
          'classification': 1,
          'tricky': 1,
          'reacted': 1,
          'revelations': 1,
          'laughter': 1,
          'ni': 1,
          'much': 1,
          'emotionally': 1,
          'wrapped': 1,
          'things': 1,
          'gave': 1,
          'glassy': 1,
          'eyes': 1,
          'indeed': 1,
          'done': 1,
          'whole': 1,
          'wrong': 1,
          'nso': 1,
          'going': 1,
          'end': 1,
          'labeled': 1,
          'comedy': 1,
          'na': 1,
          'drama': 1,
          'depends': 1,
          'touching': 1,
          'sad': 1,
          'tale': 1,
          'extents': 1,
          'corporation': 1,
          'go': 1,
          'exploit': 1,
          'entertainment': 1,
          'others': 1,
          'else': 1,
          'stunningly': 1,
          'humor': 1,
          'heart': 1,
          'scary': 1,
          'realism': 1,
          'noscar': 1,
          'predictions': 1,
          'june': 1,
          'pointless': 1,
          'released': 1,
          'schedule': 1,
          'late': 1,
          'fall': 1,
          'winter': 1,
          '1997': 1,
          'originally': 1,
          'planned': 1,
          'james': 1,
          'cameron': 1,
          'oscarless': 1,
          'npos': 1}),
 Counter({'film': 14,
          'excellent': 8,
          'nthe': 6,
          'nights': 5,
          'great': 5,
          'like': 4,
          'nbut': 4,
          'writing': 4,
          'really': 4,
          'minutes': 3,
          'nboogie': 3,
          'eddie': 3,
          'well': 3,
          'direction': 3,
          'dialogue': 3,
          'scenes': 3,
          'one': 2,
          '90': 2,
          'feels': 2,
          'crap': 2,
          'director': 2,
          'anderson': 2,
          'funny': 2,
          'sometimes': 2,
          'old': 2,
          'reynolds': 2,
          'adult': 2,
          'movie': 2,
          'business': 2,
          'dirk': 2,
          'nin': 2,
          'characters': 2,
          'quickly': 2,
          'phillip': 2,
          'moore': 2,
          'little': 2,
          'william': 2,
          'h': 2,
          'macy': 2,
          'boogie': 2,
          'never': 2,
          'films': 2,
          'lost': 2,
          '1997': 2,
          'spectacular': 2,
          'soundtrack': 2,
          'although': 2,
          'angry': 2,
          'acting': 2,
          'rest': 2,
          'seems': 2,
          'bit': 2,
          'way': 1,
          'telling': 1,
          'good': 1,
          'length': 1,
          'nif': 1,
          '300': 1,
          'last': 1,
          '2': 1,
          '12': 1,
          'hours': 1,
          'falls': 1,
          'latter': 1,
          'catagory': 1,
          'delivers': 1,
          'hip': 1,
          'yet': 1,
          'violent': 1,
          'flies': 1,
          'along': 1,
          'nmark': 1,
          'whalberg': 1,
          'k': 1,
          'nmarky': 1,
          'mark': 1,
          'plays': 1,
          'adams': 1,
          'seventeen': 1,
          'year': 1,
          'certain': 1,
          'gift': 1,
          'midriff': 1,
          'area': 1,
          'njack': 1,
          'horner': 1,
          'decides': 1,
          'would': 1,
          'nafter': 1,
          'running': 1,
          'away': 1,
          'home': 1,
          'joins': 1,
          'jack': 1,
          'changes': 1,
          'name': 1,
          'diggler': 1,
          'starts': 1,
          'making': 1,
          'erotic': 1,
          'movies': 1,
          'meets': 1,
          'whole': 1,
          'load': 1,
          'introduces': 1,
          'slickly': 1,
          'scotty': 1,
          'seymour': 1,
          'hoffman': 1,
          'rollergirl': 1,
          'graham': 1,
          'amber': 1,
          'floyd': 1,
          'baker': 1,
          'hall': 1,
          'bill': 1,
          'written': 1,
          'played': 1,
          'audience': 1,
          'gets': 1,
          'know': 1,
          'pretty': 1,
          'thanks': 1,
          'script': 1,
          'nwe': 1,
          'learn': 1,
          'ambers': 1,
          'grief': 1,
          'able': 1,
          'see': 1,
          'child': 1,
          'due': 1,
          'divorce': 1,
          'rollergirls': 1,
          'hard': 1,
          'time': 1,
          'school': 1,
          'bills': 1,
          'wife': 1,
          'sleeps': 1,
          'everyone': 1,
          'except': 1,
          'husband': 1,
          'best': 1,
          'thing': 1,
          'paul': 1,
          'andersons': 1,
          'fast': 1,
          'thrilling': 1,
          'holds': 1,
          'nthere': 1,
          'shots': 1,
          'lovely': 1,
          'steadiocam': 1,
          'handheld': 1,
          'camera': 1,
          'sequences': 1,
          'lots': 1,
          'neat': 1,
          'directional': 1,
          'touches': 1,
          'fabulous': 1,
          'intelligent': 1,
          'none': 1,
          'hollywood': 1,
          'world': 1,
          'jurassic': 1,
          'park': 1,
          'tommorow': 1,
          'dies': 1,
          'feat': 1,
          'par': 1,
          'betters': 1,
          'quentin': 1,
          'tarantinos': 1,
          'resevoir': 1,
          'dogs': 1,
          '1992': 1,
          'pulp': 1,
          'fiction': 1,
          '1994': 1,
          'also': 1,
          'nlike': 1,
          'american': 1,
          'graffiti': 1,
          '1973': 1,
          'features': 1,
          'songs': 1,
          'heightens': 1,
          'atmosphere': 1,
          'gives': 1,
          'extra': 1,
          'lift': 1,
          'nalso': 1,
          'costumes': 1,
          'clothes': 1,
          'look': 1,
          'people': 1,
          'wore': 1,
          'seventies': 1,
          'eighties': 1,
          'flaws': 1,
          'nfirstly': 1,
          'wahlberg': 1,
          'highly': 1,
          'require': 1,
          'act': 1,
          'tension': 1,
          'anger': 1,
          'cast': 1,
          'nburt': 1,
          'brilliant': 1,
          'julianne': 1,
          'shows': 1,
          'real': 1,
          'emotion': 1,
          'aswell': 1,
          'always': 1,
          'nanother': 1,
          'flaw': 1,
          'though': 1,
          'ending': 1,
          'tacked': 1,
          'nit': 1,
          'saw': 1,
          'going': 1,
          'needed': 1,
          'wrap': 1,
          'nits': 1,
          'shame': 1,
          'perfectly': 1,
          'paced': 1,
          'theyre': 1,
          'small': 1,
          'niggles': 1,
          'nsuperb': 1,
          'directing': 1,
          'music': 1,
          'combine': 1,
          'make': 1,
          'nwhatever': 1,
          'miss': 1,
          'npos': 1}),
 Counter({'l': 10,
          'film': 9,
          'nthe': 7,
          'version': 7,
          'american': 6,
          'international': 5,
          'cinema': 3,
          'original': 3,
          'directors': 3,
          'luc': 3,
          'professional': 3,
          'laserdisc': 3,
          'crew': 3,
          'mathilda': 3,
          'cops': 3,
          'oldman': 3,
          'ons': 3,
          'footage': 3,
          'scenes': 3,
          'besson': 3,
          'ironic': 2,
          'best': 2,
          'films': 2,
          'cut': 2,
          'prime': 2,
          'later': 2,
          'dvd': 2,
          'format': 2,
          'cuts': 2,
          'become': 2,
          'classic': 2,
          'bessons': 2,
          'masterpiece': 2,
          'years': 2,
          'ni': 2,
          'even': 2,
          'bucks': 2,
          'played': 2,
          'jean': 2,
          'reno': 2,
          'hit': 2,
          'man': 2,
          'danny': 2,
          'aiello': 2,
          'natalie': 2,
          'portman': 2,
          'gary': 2,
          'profession': 2,
          'away': 2,
          'part': 2,
          'additional': 2,
          'relationship': 2,
          'censors': 2,
          'french': 2,
          'drama': 2,
          'throw': 2,
          'history': 1,
          'invariably': 1,
          'nfilms': 1,
          'aliens': 1,
          'abyss': 1,
          'wild': 1,
          'bunch': 1,
          'blade': 1,
          'runner': 1,
          'terminator': 1,
          '2': 1,
          'examples': 1,
          'filmmakers': 1,
          'integrity': 1,
          'chopped': 1,
          'mucked': 1,
          'studio': 1,
          'advent': 1,
          'provided': 1,
          'accessible': 1,
          'way': 1,
          'get': 1,
          'public': 1,
          'provide': 1,
          'freaks': 1,
          'like': 1,
          'ability': 1,
          'enraptured': 1,
          'extension': 1,
          'release': 1,
          '1995': 1,
          'known': 1,
          'around': 1,
          'world': 1,
          'example': 1,
          'good': 1,
          'instant': 1,
          'nfor': 1,
          'heard': 1,
          'available': 1,
          'eluded': 1,
          'bought': 1,
          'player': 1,
          'uncle': 1,
          '100': 1,
          'watch': 1,
          'certain': 1,
          'including': 1,
          'nbut': 1,
          'countless': 1,
          'searches': 1,
          'stores': 1,
          'could': 1,
          'never': 1,
          'find': 1,
          'nuntil': 1,
          'follows': 1,
          'story': 1,
          'italian': 1,
          'mob': 1,
          'run': 1,
          'nhe': 1,
          'lives': 1,
          'next': 1,
          'door': 1,
          'ferociously': 1,
          'independent': 1,
          '12yearold': 1,
          'girl': 1,
          'named': 1,
          'newcomer': 1,
          'whose': 1,
          'father': 1,
          'involved': 1,
          'drugs': 1,
          'crooked': 1,
          'none': 1,
          'day': 1,
          'lead': 1,
          'overthetop': 1,
          'performance': 1,
          'kills': 1,
          'entire': 1,
          'family': 1,
          'buying': 1,
          'groceries': 1,
          'ntaking': 1,
          'pity': 1,
          'hides': 1,
          'apartment': 1,
          'returns': 1,
          'save': 1,
          'life': 1,
          'nmathilda': 1,
          'learns': 1,
          'decides': 1,
          'follow': 1,
          'footsteps': 1,
          'cleaner': 1,
          'nshe': 1,
          'falls': 1,
          'love': 1,
          'manages': 1,
          'reawaken': 1,
          'emotions': 1,
          'within': 1,
          'kept': 1,
          'locked': 1,
          'nat': 1,
          'point': 1,
          'differences': 1,
          'really': 1,
          'kick': 1,
          'contains': 1,
          '24': 1,
          'minutes': 1,
          'pertains': 1,
          'directly': 1,
          'deemed': 1,
          'explicit': 1,
          'assume': 1,
          'feel': 1,
          'defining': 1,
          'character': 1,
          'development': 1,
          'much': 1,
          'audiences': 1,
          'handle': 1,
          'extra': 1,
          'gives': 1,
          'better': 1,
          'understanding': 1,
          'mathildas': 1,
          'motivations': 1,
          'pertaining': 1,
          'actions': 1,
          'involving': 1,
          'bad': 1,
          'ntheres': 1,
          'previously': 1,
          'unseen': 1,
          'cameo': 1,
          'great': 1,
          'actor': 1,
          'jeanhugues': 1,
          'anglade': 1,
          'star': 1,
          'queen': 1,
          'margot': 1,
          'la': 1,
          'femme': 1,
          'nikita': 1,
          'killing': 1,
          'zoe': 1,
          'nwith': 1,
          'replaced': 1,
          'matildas': 1,
          'brings': 1,
          'emotionally': 1,
          'closer': 1,
          'draws': 1,
          'stronger': 1,
          'bonds': 1,
          'characters': 1,
          'murky': 1,
          'thing': 1,
          'inclusion': 1,
          'missing': 1,
          'becomes': 1,
          'primarily': 1,
          'heavy': 1,
          'emotional': 1,
          'punctuated': 1,
          'big': 1,
          'action': 1,
          'beginning': 1,
          'end': 1,
          'betters': 1,
          'reflects': 1,
          'serious': 1,
          'laced': 1,
          'pieces': 1,
          'reflecting': 1,
          'brutality': 1,
          'nmy': 1,
          'advice': 1,
          'everyone': 1,
          'copy': 1,
          'twenty': 1,
          'pick': 1,
          'newly': 1,
          'restored': 1,
          'cinematic': 1,
          'ndirectorwriter': 1,
          'producer': 1,
          'claude': 1,
          'starring': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'yet': 6,
          'war': 5,
          'almost': 4,
          'whose': 4,
          'nthe': 4,
          'dogs': 4,
          'life': 4,
          'action': 4,
          'script': 4,
          'country': 3,
          'used': 3,
          'movies': 3,
          'plots': 3,
          'rare': 3,
          'also': 3,
          'mercenary': 3,
          'nhis': 3,
          'made': 3,
          'real': 3,
          'irvin': 3,
          'good': 3,
          'croatia': 2,
          'croatians': 2,
          'place': 2,
          'frederick': 2,
          'novel': 2,
          'nin': 2,
          'line': 2,
          'world': 2,
          'deals': 2,
          'shannon': 2,
          'walken': 2,
          'powerful': 2,
          'mining': 2,
          'political': 2,
          'nshannon': 2,
          'find': 2,
          'kimba': 2,
          'help': 2,
          'colin': 2,
          'blakely': 2,
          'small': 2,
          'friends': 2,
          'conventional': 2,
          '1980s': 2,
          'documentary': 2,
          'surprise': 2,
          'author': 2,
          'reputation': 2,
          'interesting': 2,
          '1970s': 2,
          'one': 2,
          'nthis': 2,
          'work': 2,
          'doesnt': 2,
          'mercenaries': 2,
          'superheroes': 2,
          'see': 2,
          'capable': 2,
          'shows': 2,
          'make': 2,
          'battle': 2,
          'realistic': 2,
          'part': 1,
          'former': 1,
          'yugoslavia': 1,
          'completely': 1,
          'ignored': 1,
          'western': 1,
          'films': 1,
          'general': 1,
          'nwords': 1,
          'unheard': 1,
          'even': 1,
          'actually': 1,
          'took': 1,
          'croatian': 1,
          'locations': 1,
          'exception': 1,
          '1980': 1,
          'adaptation': 1,
          'forsyths': 1,
          'bestselling': 1,
          'occasion': 1,
          'added': 1,
          'insult': 1,
          'injury': 1,
          'mentioning': 1,
          'unflattering': 1,
          'context': 1,
          'single': 1,
          'referred': 1,
          'bunch': 1,
          'mean': 1,
          'people': 1,
          'probably': 1,
          'terrorists': 1,
          'happen': 1,
          'remove': 1,
          'parts': 1,
          'arm': 1,
          'dealers': 1,
          'stomachs': 1,
          'unsatisfied': 1,
          'quality': 1,
          'merchandise': 1,
          'nsame': 1,
          'illustrates': 1,
          'milieu': 1,
          'takes': 1,
          'dark': 1,
          'violent': 1,
          'shady': 1,
          'international': 1,
          'blurred': 1,
          'boundaries': 1,
          'business': 1,
          'politics': 1,
          'crime': 1,
          'protagonist': 1,
          'christopher': 1,
          'spent': 1,
          'best': 1,
          'years': 1,
          'fighting': 1,
          'numerous': 1,
          'little': 1,
          'wars': 1,
          'globe': 1,
          'latest': 1,
          'job': 1,
          'intelligence': 1,
          'mission': 1,
          'corporation': 1,
          'demands': 1,
          'information': 1,
          'climate': 1,
          'west': 1,
          'african': 1,
          'nation': 1,
          'zangaro': 1,
          'arrives': 1,
          'oppressive': 1,
          'regime': 1,
          'president': 1,
          'bloodthirsty': 1,
          'madman': 1,
          'brutality': 1,
          'crushed': 1,
          'opposition': 1,
          'scared': 1,
          'westerners': 1,
          'away': 1,
          'nafter': 1,
          'arrested': 1,
          'tortured': 1,
          'kimbas': 1,
          'secret': 1,
          'police': 1,
          'leaves': 1,
          'british': 1,
          'journalist': 1,
          'north': 1,
          'nupon': 1,
          'return': 1,
          'approached': 1,
          'company': 1,
          'time': 1,
          'want': 1,
          'plan': 1,
          'execute': 1,
          'coup': 1,
          'detat': 1,
          'reluctantly': 1,
          'agrees': 1,
          'assembles': 1,
          'group': 1,
          'surviving': 1,
          'begin': 1,
          'meticulous': 1,
          'preparation': 1,
          'another': 1,
          'nthing': 1,
          'separates': 1,
          'especially': 1,
          'authenticity': 1,
          'close': 1,
          'nit': 1,
          'shouldnt': 1,
          'anyone': 1,
          'forsyth': 1,
          'blending': 1,
          'fiction': 1,
          'thus': 1,
          'creating': 1,
          'exciting': 1,
          'believable': 1,
          'books': 1,
          'nthose': 1,
          'responsible': 1,
          'successful': 1,
          'thrillers': 1,
          'zinnemmans': 1,
          'day': 1,
          'jackal': 1,
          'considered': 1,
          'classic': 1,
          'genre': 1,
          'soldiers': 1,
          'fortune': 1,
          'ancient': 1,
          'tradition': 1,
          'resurrected': 1,
          'great': 1,
          'turmoil': 1,
          '1960s': 1,
          'filled': 1,
          'void': 1,
          'left': 1,
          'vanishing': 1,
          'colonial': 1,
          'empires': 1,
          'nunlike': 1,
          'wild': 1,
          'geese': 1,
          'pretext': 1,
          'adventure': 1,
          'george': 1,
          'malko': 1,
          'gary': 1,
          'de': 1,
          'vore': 1,
          'death': 1,
          'last': 1,
          'year': 1,
          'became': 1,
          'mystery': 1,
          'serious': 1,
          'instead': 1,
          'puts': 1,
          'emphasis': 1,
          'characters': 1,
          'prosaic': 1,
          'details': 1,
          'try': 1,
          'romanticise': 1,
          'profession': 1,
          'glorify': 1,
          'kind': 1,
          'simply': 1,
          'shown': 1,
          'deadly': 1,
          'expendable': 1,
          'tool': 1,
          'forces': 1,
          'questionable': 1,
          'agenda': 1,
          'nchristopher': 1,
          'played': 1,
          'many': 1,
          'rarely': 1,
          'leading': 1,
          'role': 1,
          'performance': 1,
          'film': 1,
          'perhaps': 1,
          'isnt': 1,
          'breathtaking': 1,
          'adequate': 1,
          'notoriously': 1,
          'expressionless': 1,
          'face': 1,
          'perfect': 1,
          'illustration': 1,
          'disillusioned': 1,
          'weary': 1,
          'man': 1,
          'alienation': 1,
          'normal': 1,
          'way': 1,
          'becomes': 1,
          'complete': 1,
          'remaining': 1,
          'ideal': 1,
          'loyalty': 1,
          'shrinking': 1,
          'circle': 1,
          'nalthough': 1,
          'lack': 1,
          'actors': 1,
          'roles': 1,
          'miniature': 1,
          'compared': 1,
          'walkens': 1,
          'cynical': 1,
          'reporter': 1,
          'opportunity': 1,
          'portray': 1,
          'character': 1,
          'nhowever': 1,
          'look': 1,
          'familiar': 1,
          'faces': 1,
          'would': 1,
          'plenty': 1,
          'tom': 1,
          'berenger': 1,
          'paul': 1,
          'freeman': 1,
          'jo': 1,
          'beth': 1,
          'williams': 1,
          'victoria': 1,
          'tennant': 1,
          'brief': 1,
          'cameo': 1,
          'biggest': 1,
          'ed': 1,
          'oneill': 1,
          'married': 1,
          'children': 1,
          'fame': 1,
          'shannons': 1,
          'reluctant': 1,
          'colleague': 1,
          'first': 1,
          'major': 1,
          'production': 1,
          'john': 1,
          'earned': 1,
          'second': 1,
          'class': 1,
          'director': 1,
          'nwith': 1,
          'bad': 1,
          'mess': 1,
          'nluckily': 1,
          'nirvins': 1,
          'direction': 1,
          'ascetic': 1,
          'gave': 1,
          'feel': 1,
          'distraction': 1,
          'dramatic': 1,
          'music': 1,
          'geoffrey': 1,
          'burgon': 1,
          'wrong': 1,
          'places': 1,
          'final': 1,
          'scene': 1,
          'us': 1,
          'modern': 1,
          'warfare': 1,
          'means': 1,
          'superior': 1,
          'firepower': 1,
          'tactics': 1,
          'unlike': 1,
          'ramboesque': 1,
          'fantasies': 1,
          'rely': 1,
          'macho': 1,
          'nunfortunately': 1,
          'making': 1,
          'somewhat': 1,
          'less': 1,
          'attractive': 1,
          'sloppy': 1,
          'editing': 1,
          'didnt': 1,
          'nbut': 1,
          'despite': 1,
          'shortcomings': 1,
          'remains': 1,
          'combination': 1,
          'thriller': 1,
          'gritty': 1,
          'drama': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'comedy': 5,
          'character': 3,
          'mobster': 3,
          'crystal': 3,
          'hes': 3,
          'quick': 2,
          'romp': 2,
          'bad': 2,
          'really': 2,
          'get': 2,
          'plenty': 2,
          'reasons': 2,
          'deniro': 2,
          'attacks': 2,
          'whos': 2,
          'mobsters': 2,
          'course': 2,
          'kudrow': 2,
          'cant': 2,
          'always': 2,
          'something': 2,
          'laughs': 2,
          'also': 2,
          'dramatic': 2,
          'moments': 2,
          'comic': 2,
          'deniros': 2,
          'thanks': 2,
          'family': 2,
          'happy': 1,
          'bastards': 1,
          'review': 1,
          'nanalyze': 1,
          'nhow': 1,
          'one': 1,
          'focused': 1,
          'mob': 1,
          'nwell': 1,
          'years': 1,
          'ago': 1,
          'sly': 1,
          'little': 1,
          'called': 1,
          'freshman': 1,
          'marlon': 1,
          'brando': 1,
          'sendup': 1,
          'famous': 1,
          'corleone': 1,
          'recently': 1,
          'utterly': 1,
          'stupid': 1,
          'way': 1,
          'mafia': 1,
          'nfailed': 1,
          'joke': 1,
          'nthis': 1,
          'time': 1,
          'around': 1,
          'however': 1,
          'warner': 1,
          'bros': 1,
          'may': 1,
          'gotten': 1,
          'right': 1,
          'analyze': 1,
          'hits': 1,
          'targets': 1,
          'misses': 1,
          'nfor': 1,
          'nthe': 1,
          'story': 1,
          'goes': 1,
          'like': 1,
          'na': 1,
          'robert': 1,
          'finds': 1,
          'receiving': 1,
          'several': 1,
          'panic': 1,
          'late': 1,
          'fueled': 1,
          'stress': 1,
          'upcoming': 1,
          'meeting': 1,
          'neardeath': 1,
          'following': 1,
          'driveby': 1,
          'shooting': 1,
          'nits': 1,
          'prompt': 1,
          'hire': 1,
          'psychiatrist': 1,
          'billy': 1,
          'mostly': 1,
          'reluctant': 1,
          'take': 1,
          'case': 1,
          'two': 1,
          'nfirst': 1,
          'secondly': 1,
          'trying': 1,
          'married': 1,
          'enjoy': 1,
          'quiet': 1,
          'honeymoon': 1,
          'wife': 1,
          'lisa': 1,
          'kid': 1,
          'nand': 1,
          'rest': 1,
          'worth': 1,
          'moment': 1,
          'goons': 1,
          'needing': 1,
          'shrink': 1,
          'consultation': 1,
          'dream': 1,
          'analyzation': 1,
          'nfortunately': 1,
          'played': 1,
          'ndirector': 1,
          'harold': 1,
          'ramis': 1,
          'helmed': 1,
          'multiplicity': 1,
          'wasnt': 1,
          'half': 1,
          'keeps': 1,
          'tone': 1,
          'peppy': 1,
          'light': 1,
          'even': 1,
          'sometimes': 1,
          'sprinkled': 1,
          'slight': 1,
          'shootings': 1,
          'taken': 1,
          'know': 1,
          'ndeniro': 1,
          'finest': 1,
          'work': 1,
          'since': 1,
          'king': 1,
          'giving': 1,
          'somewhat': 1,
          'similar': 1,
          'performance': 1,
          'role': 1,
          'goodfellas': 1,
          'bit': 1,
          'lighter': 1,
          'heart': 1,
          'n': 1,
          'scene': 1,
          'tries': 1,
          'display': 1,
          'anger': 1,
          'phone': 1,
          'fails': 1,
          'miserably': 1,
          'hilarious': 1,
          'ncrystal': 1,
          'plays': 1,
          'excellent': 1,
          'straight': 1,
          'man': 1,
          'uplifting': 1,
          'bombs': 1,
          'fathers': 1,
          'day': 1,
          'giant': 1,
          'nkudrow': 1,
          'hoot': 1,
          'crystals': 1,
          'wifetobe': 1,
          'verge': 1,
          'breakdown': 1,
          'presence': 1,
          'nis': 1,
          'perfect': 1,
          'nnot': 1,
          'simplistic': 1,
          'ending': 1,
          'slightly': 1,
          'wasted': 1,
          'portrayed': 1,
          'chazz': 1,
          'palminteri': 1,
          'actor': 1,
          'come': 1,
          'give': 1,
          'enjoyable': 1,
          'lets': 1,
          'different': 1,
          'change': 1,
          'taking': 1,
          'act': 1,
          'new': 1,
          'field': 1,
          'nkudos': 1,
          'making': 1,
          'show': 1,
          'either': 1,
          'nline': 1,
          'said': 1,
          'needed': 1,
          'therapy': 1,
          'mind': 1,
          'npos': 1}),
 Counter({'science': 12,
          'nthe': 10,
          'lillian': 8,
          'film': 7,
          'way': 7,
          'dog': 7,
          'work': 6,
          'alex': 6,
          'one': 6,
          'like': 5,
          'marriage': 5,
          'world': 5,
          'view': 5,
          'point': 5,
          'big': 4,
          'get': 4,
          'back': 4,
          'time': 4,
          'nthat': 4,
          'monster': 4,
          'much': 4,
          'good': 4,
          'farmer': 4,
          'frances': 3,
          'geoffrey': 3,
          'become': 3,
          'field': 3,
          'wife': 3,
          'business': 3,
          'summer': 3,
          'away': 3,
          'new': 3,
          'argument': 3,
          'public': 3,
          'animals': 3,
          'bad': 3,
          'represented': 3,
          'go': 3,
          'artists': 3,
          'ngeoffrey': 3,
          'characters': 3,
          'scientists': 3,
          'likened': 3,
          'art': 3,
          'say': 3,
          'said': 3,
          'going': 3,
          'secrets': 2,
          'married': 2,
          'couple': 2,
          'relationship': 2,
          'working': 2,
          'experiment': 2,
          'artist': 2,
          'husband': 2,
          'make': 2,
          'spent': 2,
          'city': 2,
          'together': 2,
          'nhe': 2,
          'possible': 2,
          'lab': 2,
          'experiments': 2,
          'benefit': 2,
          'humanity': 2,
          'main': 2,
          'dont': 2,
          'want': 2,
          'director': 2,
          'cares': 2,
          'small': 2,
          'almost': 2,
          'vine': 2,
          'farmers': 2,
          'farming': 2,
          'dangers': 2,
          'pesticides': 2,
          'last': 2,
          'points': 2,
          'shown': 2,
          'something': 2,
          'feels': 2,
          'needs': 2,
          'decides': 2,
          'longer': 2,
          'animal': 2,
          'means': 2,
          'family': 2,
          'life': 2,
          'already': 2,
          'dinner': 2,
          'scene': 2,
          'became': 2,
          'everything': 2,
          'different': 2,
          'davids': 2,
          'coming': 2,
          'nit': 2,
          'right': 2,
          'name': 2,
          'inspiration': 2,
          'lot': 2,
          'seem': 2,
          'take': 2,
          'enemy': 2,
          'see': 2,
          'becomes': 2,
          'would': 2,
          'also': 2,
          'fails': 2,
          'loving': 2,
          'head': 2,
          'told': 2,
          'nwhat': 2,
          'vision': 2,
          'mankind': 2,
          'subtle': 2,
          'without': 2,
          'visual': 2,
          'anyone': 2,
          'must': 2,
          'nperhaps': 2,
          'cow': 2,
          'painting': 2,
          'faces': 2,
          'pain': 2,
          'question': 2,
          'innocent': 1,
          'cute': 1,
          'little': 1,
          'farm': 1,
          'girl': 1,
          'boyd': 1,
          'ashley': 1,
          'nothers': 1,
          'impacting': 1,
          'problems': 1,
          'infertility': 1,
          'affecting': 1,
          'upwardly': 1,
          'mobile': 1,
          'gaines': 1,
          'stephen': 1,
          'ramsey': 1,
          'medical': 1,
          'researcher': 1,
          'corporation': 1,
          'called': 1,
          'fex': 1,
          'striving': 1,
          'patent': 1,
          'recognized': 1,
          'miriam': 1,
          'healylouie': 1,
          'reluctantly': 1,
          'stands': 1,
          'behind': 1,
          'suppressing': 1,
          'natural': 1,
          'artistic': 1,
          'tendencies': 1,
          'order': 1,
          'nand': 1,
          'still': 1,
          'greater': 1,
          'implication': 1,
          'deadly': 1,
          'political': 1,
          'sense': 1,
          'carried': 1,
          'corporations': 1,
          'run': 1,
          'bottom': 1,
          'line': 1,
          'nreceiving': 1,
          'grant': 1,
          'study': 1,
          'chemoelectric': 1,
          'therapy': 1,
          'hoping': 1,
          'intensity': 1,
          'bring': 1,
          'romance': 1,
          'dwindling': 1,
          'casualness': 1,
          'country': 1,
          'atmosphere': 1,
          'give': 1,
          'threeyear': 1,
          'shaky': 1,
          'interested': 1,
          'slyly': 1,
          'managed': 1,
          'keep': 1,
          'secretive': 1,
          'locking': 1,
          'limits': 1,
          'secretly': 1,
          'goes': 1,
          'conducting': 1,
          'rats': 1,
          'mice': 1,
          'convincing': 1,
          'treatments': 1,
          'cures': 1,
          'illnesses': 1,
          'nhis': 1,
          'wants': 1,
          'hear': 1,
          'die': 1,
          'benefits': 1,
          'depicted': 1,
          'creating': 1,
          'another': 1,
          'frankenstein': 1,
          'created': 1,
          'skewed': 1,
          'opposed': 1,
          'handsome': 1,
          'perfect': 1,
          'gentleman': 1,
          'david': 1,
          'young': 1,
          'ecologist': 1,
          'chooses': 1,
          'trying': 1,
          'organic': 1,
          'hired': 1,
          'university': 1,
          'monitor': 1,
          'chemicals': 1,
          'forced': 1,
          'use': 1,
          'survive': 1,
          'financially': 1,
          'irreparable': 1,
          'harm': 1,
          'consumer': 1,
          'health': 1,
          'risks': 1,
          'attached': 1,
          'methods': 1,
          'come': 1,
          'thirty': 1,
          'years': 1,
          'pushed': 1,
          'companies': 1,
          'enhance': 1,
          'profit': 1,
          'margins': 1,
          'third': 1,
          'scrutinized': 1,
          'constantly': 1,
          'shouldnt': 1,
          'true': 1,
          'scientist': 1,
          'nshe': 1,
          'argues': 1,
          'watchdog': 1,
          'questioning': 1,
          'evil': 1,
          'society': 1,
          'completely': 1,
          'ignored': 1,
          'impatient': 1,
          'ahead': 1,
          'research': 1,
          'bogged': 1,
          'bureaucrats': 1,
          'firm': 1,
          'fail': 1,
          'provide': 1,
          'three': 1,
          'chimps': 1,
          'contacts': 1,
          'companys': 1,
          'higher': 1,
          'ups': 1,
          'argue': 1,
          'case': 1,
          'cant': 1,
          'wait': 1,
          'help': 1,
          'sets': 1,
          'trap': 1,
          'countryside': 1,
          'catches': 1,
          'chester': 1,
          'gorgeous': 1,
          'pet': 1,
          'saved': 1,
          'nwhile': 1,
          'bloodied': 1,
          'trapped': 1,
          'seat': 1,
          'car': 1,
          'spotted': 1,
          'coworkers': 1,
          'nervously': 1,
          'invites': 1,
          'afraid': 1,
          'spot': 1,
          'rushes': 1,
          'area': 1,
          'nin': 1,
          'unfortunately': 1,
          'flatly': 1,
          'done': 1,
          'nevertheless': 1,
          'heart': 1,
          'chance': 1,
          'speak': 1,
          'represent': 1,
          'eat': 1,
          'meat': 1,
          'getting': 1,
          'protein': 1,
          'radical': 1,
          'eschewed': 1,
          'since': 1,
          'politically': 1,
          'correct': 1,
          'engage': 1,
          'rational': 1,
          'highlighting': 1,
          'reacts': 1,
          'emotional': 1,
          'siding': 1,
          'mostly': 1,
          'angle': 1,
          'actors': 1,
          'puppets': 1,
          'strings': 1,
          'controlled': 1,
          'spewed': 1,
          'generalized': 1,
          'philosophies': 1,
          'directors': 1,
          'absolutely': 1,
          'beside': 1,
          'lost': 1,
          'onedimensional': 1,
          'hideous': 1,
          'holds': 1,
          'fast': 1,
          'ground': 1,
          'ensuring': 1,
          'plant': 1,
          'stability': 1,
          'muse': 1,
          'poetry': 1,
          'goodness': 1,
          'beauty': 1,
          'nalex': 1,
          'spending': 1,
          'two': 1,
          'share': 1,
          'views': 1,
          'physically': 1,
          'attracted': 1,
          'ripe': 1,
          'affair': 1,
          'place': 1,
          'changes': 1,
          'mind': 1,
          'alexs': 1,
          'apartment': 1,
          'suspicious': 1,
          'considers': 1,
          'seems': 1,
          'apart': 1,
          'cunning': 1,
          'tricks': 1,
          'possess': 1,
          'impossible': 1,
          'reason': 1,
          'remain': 1,
          'disintegrated': 1,
          'beyond': 1,
          'feeling': 1,
          'lonely': 1,
          'discovered': 1,
          'deplorable': 1,
          'state': 1,
          'seen': 1,
          'electrically': 1,
          'shocking': 1,
          'mercifully': 1,
          'dies': 1,
          'thing': 1,
          'left': 1,
          'walk': 1,
          'respond': 1,
          'gesture': 1,
          'stay': 1,
          'instead': 1,
          'opting': 1,
          'whose': 1,
          'tortured': 1,
          'death': 1,
          'comes': 1,
          'knocks': 1,
          'cold': 1,
          'middle': 1,
          'phone': 1,
          'conversation': 1,
          'higherups': 1,
          'progress': 1,
          'expect': 1,
          'nis': 1,
          'extinct': 1,
          'answers': 1,
          'questions': 1,
          'best': 1,
          'answered': 1,
          'either': 1,
          'closely': 1,
          'related': 1,
          'american': 1,
          'natives': 1,
          'entrusted': 1,
          'respect': 1,
          'care': 1,
          'enrich': 1,
          'creations': 1,
          'peaceful': 1,
          'polarizes': 1,
          'opinions': 1,
          'leaving': 1,
          'room': 1,
          'deeper': 1,
          'arguments': 1,
          'shame': 1,
          'decent': 1,
          'smart': 1,
          'tried': 1,
          'hard': 1,
          'felt': 1,
          'loudly': 1,
          'trusting': 1,
          'audience': 1,
          'catch': 1,
          'message': 1,
          'making': 1,
          'black': 1,
          'white': 1,
          'nno': 1,
          'telling': 1,
          'harmful': 1,
          'trends': 1,
          'sees': 1,
          'probably': 1,
          'better': 1,
          'poetical': 1,
          'less': 1,
          'didactic': 1,
          'nthere': 1,
          'listening': 1,
          'lecture': 1,
          'turns': 1,
          'rebel': 1,
          'hit': 1,
          'truth': 1,
          'prefer': 1,
          'presented': 1,
          'form': 1,
          'leads': 1,
          'metaphorically': 1,
          'found': 1,
          'considerable': 1,
          'merit': 1,
          'inspite': 1,
          'shortcomings': 1,
          'worth': 1,
          'seeing': 1,
          'statements': 1,
          'though': 1,
          'least': 1,
          'effective': 1,
          'setting': 1,
          'intense': 1,
          'mood': 1,
          'needed': 1,
          'show': 1,
          'mental': 1,
          'war': 1,
          'currently': 1,
          'believe': 1,
          'others': 1,
          'differ': 1,
          'neutral': 1,
          'considered': 1,
          'indifference': 1,
          'stakes': 1,
          'ecological': 1,
          'struggle': 1,
          'high': 1,
          'powerful': 1,
          'statement': 1,
          'dead': 1,
          'opening': 1,
          'image': 1,
          'affect': 1,
          'picassos': 1,
          'guernica': 1,
          'nboth': 1,
          'envisioned': 1,
          'horrors': 1,
          'man': 1,
          'could': 1,
          'unspoken': 1,
          'really': 1,
          'mistake': 1,
          'side': 1,
          'fence': 1,
          'forgets': 1,
          'desires': 1,
          'raise': 1,
          'stares': 1,
          'song': 1,
          'blares': 1,
          'background': 1,
          'learned': 1,
          'beautiful': 1,
          'brutalized': 1,
          'raw': 1,
          'power': 1,
          'personalizes': 1,
          'pertinent': 1,
          'asks': 1,
          'requires': 1,
          'answer': 1,
          'resolved': 1,
          'consumers': 1,
          'caught': 1,
          'changing': 1,
          'happily': 1,
          'npos': 1}),
 Counter({'film': 5,
          'gets': 3,
          'follows': 2,
          'heroin': 2,
          'renton': 2,
          'one': 2,
          'obsessive': 2,
          'top': 2,
          'clean': 2,
          'sharp': 2,
          'nthe': 2,
          'movies': 2,
          'nit': 2,
          'accents': 2,
          'british': 1,
          'import': 1,
          'mis': 1,
          'adventures': 1,
          'group': 1,
          'crazed': 1,
          'scottish': 1,
          'youths': 1,
          'nthere': 1,
          'marc': 1,
          'narrates': 1,
          'spud': 1,
          'dimwitted': 1,
          'sick': 1,
          'boy': 1,
          'sean': 1,
          'connery': 1,
          'begbee': 1,
          'violence': 1,
          'npowered': 1,
          'rate': 1,
          'name': 1,
          'soundtrack': 1,
          'iggy': 1,
          'pop': 1,
          'sleeper': 1,
          'elastica': 1,
          'lou': 1,
          'reed': 1,
          'back': 1,
          'nsome': 1,
          'wit': 1,
          'movie': 1,
          'pulp': 1,
          'fictionesque': 1,
          'dumb': 1,
          'dumber': 1,
          'gross': 1,
          'bed': 1,
          'sheets': 1,
          'stupid': 1,
          'bb': 1,
          'gun': 1,
          'although': 1,
          'starts': 1,
          'comic': 1,
          'note': 1,
          'takes': 1,
          'term': 1,
          'middle': 1,
          'becomes': 1,
          'almost': 1,
          'depressing': 1,
          'based': 1,
          'irving': 1,
          'welsh': 1,
          'novel': 1,
          'bearing': 1,
          'title': 1,
          'ni': 1,
          'honestly': 1,
          'say': 1,
          'best': 1,
          'ever': 1,
          'seen': 1,
          'obscure': 1,
          'gem': 1,
          'shadowed': 1,
          'us': 1,
          'mission': 1,
          'impossible': 1,
          'id4': 1,
          'hard': 1,
          'follow': 1,
          'heavy': 1,
          'actors': 1,
          'nthis': 1,
          'original': 1,
          'far': 1,
          'films': 1,
          'go': 1,
          'today': 1,
          'definetly': 1,
          'deserves': 1,
          'multiple': 1,
          'viewings': 1,
          'partly': 1,
          'slang': 1,
          'jeremy': 1,
          'dennison': 1,
          'mr': 1,
          'orangecenturyinter': 1,
          'net': 1,
          'npos': 1}),
 Counter({'lucas': 13,
          'maggie': 10,
          'cappie': 6,
          'scene': 5,
          'nlucas': 4,
          'nthis': 4,
          'jocks': 4,
          'haim': 3,
          'little': 3,
          'insects': 3,
          'films': 3,
          '80s': 3,
          'film': 3,
          'nmaggie': 3,
          'seems': 3,
          'good': 3,
          'nhe': 3,
          'school': 3,
          'whats': 3,
          'around': 3,
          'great': 3,
          'girlfriend': 3,
          'much': 2,
          'stars': 2,
          'corey': 2,
          'maybe': 2,
          'almost': 2,
          'teen': 2,
          'true': 2,
          'best': 2,
          '1986': 2,
          'life': 2,
          'year': 2,
          'old': 2,
          'hair': 2,
          'tennis': 2,
          'certainly': 2,
          'sweet': 2,
          'soon': 2,
          'know': 2,
          'one': 2,
          'another': 2,
          'nthey': 2,
          'charmed': 2,
          'clear': 2,
          'anything': 2,
          'friend': 2,
          'still': 2,
          'knows': 2,
          'happen': 2,
          'find': 2,
          'pep': 2,
          'rally': 2,
          'front': 2,
          'nthe': 2,
          'next': 2,
          'nshe': 2,
          'tries': 2,
          'talk': 2,
          'characters': 2,
          'nbut': 2,
          'say': 2,
          'sheen': 2,
          'protects': 2,
          'begins': 2,
          'room': 2,
          'take': 2,
          'last': 2,
          'nthere': 2,
          'perfect': 2,
          'filled': 2,
          'people': 2,
          'john': 2,
          'hughes': 2,
          'may': 1,
          'heard': 1,
          'might': 1,
          'think': 1,
          'nprobably': 1,
          'geek': 1,
          'collects': 1,
          'doesnt': 1,
          'feature': 1,
          'slick': 1,
          'oneliners': 1,
          'chart': 1,
          'topping': 1,
          'soundtrack': 1,
          'albums': 1,
          'requirement': 1,
          'nhowever': 1,
          'missing': 1,
          'masterpeice': 1,
          'adolescent': 1,
          'ever': 1,
          'made': 1,
          'ncorey': 1,
          'bligh': 1,
          'tiny': 1,
          '14': 1,
          'scruffy': 1,
          'thick': 1,
          'glasses': 1,
          'interest': 1,
          'outdoor': 1,
          'none': 1,
          'day': 1,
          'stops': 1,
          'courts': 1,
          'sees': 1,
          'must': 1,
          'angel': 1,
          'nher': 1,
          'name': 1,
          '16': 1,
          'beauty': 1,
          'lovely': 1,
          'red': 1,
          'innocent': 1,
          'complexion': 1,
          'disturbed': 1,
          'kid': 1,
          'watching': 1,
          'somehow': 1,
          'interests': 1,
          'talking': 1,
          'getting': 1,
          'gradually': 1,
          'become': 1,
          'friends': 1,
          'spend': 1,
          'summer': 1,
          'together': 1,
          'various': 1,
          'things': 1,
          'studying': 1,
          'namely': 1,
          'locusts': 1,
          'come': 1,
          'hiding': 1,
          'every': 1,
          '17': 1,
          'years': 1,
          'playing': 1,
          'listening': 1,
          'symphony': 1,
          'orchestra': 1,
          'manhole': 1,
          'cover': 1,
          'obviously': 1,
          'love': 1,
          'would': 1,
          'never': 1,
          'consider': 1,
          'however': 1,
          'beleives': 1,
          'soulmate': 1,
          'dreads': 1,
          'impending': 1,
          'start': 1,
          'nwe': 1,
          'painful': 1,
          'humiliated': 1,
          'throw': 1,
          'stage': 1,
          'right': 1,
          'beloved': 1,
          'nsurprisingly': 1,
          'turns': 1,
          'tables': 1,
          'clowning': 1,
          'takes': 1,
          'far': 1,
          'embarassed': 1,
          'entire': 1,
          'brilliant': 1,
          'follows': 1,
          'outside': 1,
          'nothing': 1,
          'happened': 1,
          'rails': 1,
          'back': 1,
          'cruel': 1,
          'unfair': 1,
          'fashion': 1,
          'nin': 1,
          'lesser': 1,
          'movies': 1,
          'wouldve': 1,
          'turned': 1,
          'confrontation': 1,
          'two': 1,
          'written': 1,
          'smarter': 1,
          'understands': 1,
          'feeling': 1,
          'exactly': 1,
          'console': 1,
          'nnext': 1,
          'introduced': 1,
          'character': 1,
          'named': 1,
          'charlie': 1,
          'jock': 1,
          'typical': 1,
          'cheerleader': 1,
          'nwhats': 1,
          'interesting': 1,
          'sticks': 1,
          'nof': 1,
          'course': 1,
          'anyone': 1,
          'brain': 1,
          'tell': 1,
          'gon': 1,
          'na': 1,
          'ncappie': 1,
          'cause': 1,
          'conflict': 1,
          'relationship': 1,
          'classic': 1,
          'laundry': 1,
          'alone': 1,
          'nshes': 1,
          'assigned': 1,
          'show': 1,
          'operate': 1,
          'washerdryer': 1,
          'clean': 1,
          'shirt': 1,
          'cappies': 1,
          'tender': 1,
          'undertsanding': 1,
          'demeanor': 1,
          'mention': 1,
          'shirtless': 1,
          'body': 1,
          'delicate': 1,
          'preventing': 1,
          'either': 1,
          'acting': 1,
          'desires': 1,
          'ndesperately': 1,
          'trying': 1,
          'puncture': 1,
          'tension': 1,
          'kick': 1,
          'basketballs': 1,
          'nits': 1,
          'long': 1,
          'break': 1,
          'subpar': 1,
          'finally': 1,
          'figures': 1,
          'going': 1,
          'pick': 1,
          'dance': 1,
          'causes': 1,
          'severe': 1,
          'actions': 1,
          'prove': 1,
          'try': 1,
          'football': 1,
          'team': 1,
          'third': 1,
          'revolves': 1,
          'attempt': 1,
          'nwhile': 1,
          'idea': 1,
          'cliched': 1,
          'way': 1,
          'executed': 1,
          'many': 1,
          'surprises': 1,
          'half': 1,
          'hour': 1,
          'lead': 1,
          'ending': 1,
          'emotionally': 1,
          'involving': 1,
          'make': 1,
          'heartless': 1,
          'cynics': 1,
          'get': 1,
          'choked': 1,
          'ndave': 1,
          'grusins': 1,
          'memorable': 1,
          'score': 1,
          'played': 1,
          'moments': 1,
          'helps': 1,
          'performances': 1,
          'nforget': 1,
          'everything': 1,
          'nback': 1,
          'talent': 1,
          'proven': 1,
          'delivers': 1,
          'fully': 1,
          '3dimensional': 1,
          'performance': 1,
          'anger': 1,
          'humor': 1,
          'pain': 1,
          'nkerri': 1,
          'green': 1,
          'appealing': 1,
          'showing': 1,
          'us': 1,
          'cares': 1,
          'attracted': 1,
          'nsheens': 1,
          'makes': 1,
          'beleivable': 1,
          'especially': 1,
          'explains': 1,
          'reason': 1,
          'wonderful': 1,
          'minor': 1,
          'ciro': 1,
          'popittis': 1,
          'ben': 1,
          'whose': 1,
          'diminutive': 1,
          'stature': 1,
          'mean': 1,
          'crap': 1,
          'nalso': 1,
          'turning': 1,
          'key': 1,
          'scenes': 1,
          'winona': 1,
          'ryder': 1,
          'rina': 1,
          'girl': 1,
          'admires': 1,
          'afar': 1,
          'nwhen': 1,
          'angst': 1,
          'hear': 1,
          'lost': 1,
          'among': 1,
          'crowd': 1,
          'socalled': 1,
          'classics': 1,
          'hopefully': 1,
          'like': 1,
          'heathers': 1,
          'begin': 1,
          'loyal': 1,
          'following': 1,
          'help': 1,
          'realize': 1,
          'anthony': 1,
          'michael': 1,
          'hall': 1,
          'molly': 1,
          'ringwald': 1,
          'nit': 1,
          'deserves': 1,
          'dont': 1,
          'want': 1,
          'greedy': 1,
          'npos': 1}),
 Counter({'one': 4,
          'force': 4,
          'fact': 3,
          'make': 3,
          'movie': 2,
          'george': 2,
          'lucas': 2,
          'bit': 2,
          'nin': 2,
          'terms': 2,
          'far': 2,
          'interesting': 2,
          'queen': 2,
          'amidala': 2,
          'nshe': 2,
          'leadership': 2,
          'command': 2,
          'jedi': 2,
          'young': 2,
          'obiwan': 2,
          'bad': 2,
          'hair': 2,
          'better': 2,
          'anakin': 2,
          'skywalker': 2,
          'claims': 2,
          'arguably': 1,
          'anticipated': 1,
          'century': 1,
          'achieved': 1,
          'mixed': 1,
          'reaction': 1,
          'sure': 1,
          'blockbuster': 1,
          'ndespite': 1,
          'script': 1,
          'plot': 1,
          'let': 1,
          'entire': 1,
          'whole': 1,
          'considered': 1,
          'milestone': 1,
          'technical': 1,
          'excellence': 1,
          'sound': 1,
          'special': 1,
          'effects': 1,
          'department': 1,
          'characters': 1,
          'outstanding': 1,
          'natalie': 1,
          'portman': 1,
          'whose': 1,
          'mature': 1,
          'performance': 1,
          'exceeds': 1,
          'tender': 1,
          '14': 1,
          'years': 1,
          'age': 1,
          'hot': 1,
          'babe': 1,
          'defines': 1,
          'true': 1,
          'woman': 1,
          'presence': 1,
          'knows': 1,
          'take': 1,
          'situation': 1,
          'save': 1,
          'planet': 1,
          'ruination': 1,
          'nno': 1,
          'thanks': 1,
          'knights': 1,
          'although': 1,
          'led': 1,
          'lack': 1,
          'qualities': 1,
          'thinking': 1,
          'plan': 1,
          'anything': 1,
          'nthe': 1,
          'kenobi': 1,
          'ewan': 1,
          'mcgregor': 1,
          'day': 1,
          'every': 1,
          'scene': 1,
          'gets': 1,
          'kill': 1,
          'guy': 1,
          'end': 1,
          'lacks': 1,
          'love': 1,
          'interest': 1,
          'desirable': 1,
          'sort': 1,
          'hero': 1,
          'knight': 1,
          'asexual': 1,
          'must': 1,
          'something': 1,
          'makes': 1,
          'hermits': 1,
          'loners': 1,
          'ni': 1,
          'mean': 1,
          'would': 1,
          'see': 1,
          'yodas': 1,
          'girlfriend': 1,
          'change': 1,
          'nnot': 1,
          'much': 1,
          'quigon': 1,
          'jinn': 1,
          'liam': 1,
          'neeson': 1,
          'mostly': 1,
          'broods': 1,
          'find': 1,
          'biggest': 1,
          'mistake': 1,
          'life': 1,
          'nalso': 1,
          'fascinating': 1,
          'metoclorian': 1,
          'theory': 1,
          'microorganisms': 1,
          'live': 1,
          'within': 1,
          'cells': 1,
          'tie': 1,
          'us': 1,
          'fabric': 1,
          'universe': 1,
          'nand': 1,
          'high': 1,
          'concentrations': 1,
          'organisms': 1,
          'individual': 1,
          'particularly': 1,
          'powerful': 1,
          'nmore': 1,
          'humerous': 1,
          'immaculate': 1,
          'conception': 1,
          'darth': 1,
          'vader': 1,
          'doubt': 1,
          'concept': 1,
          'stolen': 1,
          'christian': 1,
          'faith': 1,
          'except': 1,
          'christmas': 1,
          'celebrate': 1,
          'birth': 1,
          'dark': 1,
          'emissary': 1,
          'noverall': 1,
          'experience': 1,
          'missed': 1,
          'predecessor': 1,
          'almost': 1,
          'viewing': 1,
          'inferior': 1,
          'successor': 1,
          'nby': 1,
          'means': 1,
          'pinnacle': 1,
          'star': 1,
          'wars': 1,
          'phenomena': 1,
          'adequate': 1,
          'addition': 1,
          'clan': 1,
          'nwatch': 1,
          'next': 1,
          'steamy': 1,
          'encounter': 1,
          'believe': 1,
          'portrayed': 1,
          'leonardo': 1,
          'di': 1,
          'caprio': 1,
          'npos': 1}),
 Counter({'felix': 13,
          'father': 6,
          'journey': 6,
          'find': 6,
          'family': 6,
          'nhe': 5,
          'man': 4,
          'adventures': 4,
          'young': 4,
          'road': 4,
          'meets': 4,
          'titled': 4,
          'felixs': 4,
          'life': 3,
          'little': 3,
          'job': 3,
          'marseilles': 3,
          'never': 3,
          'makes': 3,
          'way': 3,
          'chapter': 3,
          'sister': 3,
          'sami': 2,
          'bouajila': 2,
          'daniel': 2,
          'dieppe': 2,
          'france': 2,
          'nwhen': 2,
          'south': 2,
          'made': 2,
          'guy': 2,
          'nfelix': 2,
          'learns': 2,
          'away': 2,
          'cocktails': 2,
          'hiv': 2,
          'wants': 2,
          'across': 2,
          'chance': 2,
          'encounters': 2,
          'non': 2,
          'murder': 2,
          'telling': 2,
          'police': 2,
          'first': 2,
          'must': 2,
          'next': 2,
          'cousin': 2,
          'helps': 2,
          'isabelle': 2,
          'ascaride': 2,
          'kids': 2,
          'different': 2,
          'going': 2,
          'final': 2,
          'like': 2,
          'n': 2,
          'discovery': 2,
          'charming': 2,
          'screen': 2,
          'siege': 1,
          'lives': 1,
          'contented': 1,
          'boyfriend': 1,
          'pierreloup': 1,
          'rajot': 1,
          'town': 1,
          'northern': 1,
          'laid': 1,
          'discovering': 1,
          'address': 1,
          'abandoned': 1,
          'born': 1,
          'decides': 1,
          'met': 1,
          'nwritersdirectors': 1,
          'olivier': 1,
          'ducastel': 1,
          'jacques': 1,
          'martineau': 1,
          'debut': 1,
          'musical': 1,
          'comedy': 1,
          'jeanne': 1,
          'perfect': 1,
          'embracing': 1,
          'typically': 1,
          'american': 1,
          'genre': 1,
          'ntheir': 1,
          'second': 1,
          'effort': 1,
          'borrows': 1,
          'america': 1,
          'tale': 1,
          'hits': 1,
          'happy': 1,
          'ferry': 1,
          'company': 1,
          'works': 1,
          'falls': 1,
          'prey': 1,
          'economics': 1,
          'chunnel': 1,
          'loose': 1,
          'ends': 1,
          'goes': 1,
          'late': 1,
          'mothers': 1,
          'papers': 1,
          'knew': 1,
          'living': 1,
          'hundreds': 1,
          'miles': 1,
          'snap': 1,
          'decision': 1,
          'puts': 1,
          'together': 1,
          'supply': 1,
          'virus': 1,
          'kisses': 1,
          'goodbye': 1,
          'heads': 1,
          'foot': 1,
          'refuses': 1,
          'use': 1,
          'trains': 1,
          'avoid': 1,
          'big': 1,
          'cities': 1,
          'hitchhikes': 1,
          'destiny': 1,
          'nalong': 1,
          'series': 1,
          'various': 1,
          'strangers': 1,
          'teaches': 1,
          'always': 1,
          'blood': 1,
          'relations': 1,
          'witnesses': 1,
          'racerelated': 1,
          'mugging': 1,
          'turns': 1,
          'frightened': 1,
          'safety': 1,
          'runs': 1,
          'without': 1,
          'nfollowing': 1,
          'harrowing': 1,
          'experience': 1,
          'meeting': 1,
          'begins': 1,
          'unconscious': 1,
          'construction': 1,
          'ideal': 1,
          'nhis': 1,
          'brings': 1,
          'rouen': 1,
          'films': 1,
          'title': 1,
          'section': 1,
          'brother': 1,
          'jules': 1,
          'art': 1,
          'student': 1,
          'becomes': 1,
          'smitten': 1,
          'nthey': 1,
          'steal': 1,
          'car': 1,
          'develop': 1,
          'chaste': 1,
          'brotherly': 1,
          'affection': 1,
          'move': 1,
          'elderly': 1,
          'mathilde': 1,
          'patachou': 1,
          'grandmother': 1,
          'soon': 1,
          'fondness': 1,
          'tv': 1,
          'soap': 1,
          'opera': 1,
          'grown': 1,
          'addicted': 1,
          'nshe': 1,
          'stay': 1,
          'continue': 1,
          'nin': 1,
          'weakest': 1,
          'trip': 1,
          'railroad': 1,
          'worker': 1,
          'philippe': 1,
          'garziano': 1,
          'brief': 1,
          'sexual': 1,
          'encounter': 1,
          'heading': 1,
          'toward': 1,
          'stranded': 1,
          'lady': 1,
          'motorist': 1,
          'ariane': 1,
          'shags': 1,
          'ride': 1,
          'three': 1,
          'daddy': 1,
          'sequence': 1,
          'torn': 1,
          'inner': 1,
          'turmoil': 1,
          'witnessed': 1,
          'comforts': 1,
          'would': 1,
          'leg': 1,
          'older': 1,
          'fisherman': 1,
          'maurice': 1,
          'benichou': 1,
          'enlightens': 1,
          'real': 1,
          'facts': 1,
          'fly': 1,
          'kite': 1,
          'son': 1,
          'number': 1,
          'things': 1,
          'follow': 1,
          'nfirst': 1,
          'foremost': 1,
          'performance': 1,
          'likable': 1,
          'fighting': 1,
          'doses': 1,
          'lights': 1,
          'long': 1,
          'walk': 1,
          'often': 1,
          'dance': 1,
          'song': 1,
          'nas': 1,
          'member': 1,
          'new': 1,
          'promising': 1,
          'send': 1,
          'postcard': 1,
          'arrives': 1,
          'destination': 1,
          'grows': 1,
          'bit': 1,
          'spiritually': 1,
          'emotionally': 1,
          'nbouajila': 1,
          'terrific': 1,
          'holding': 1,
          'center': 1,
          'stage': 1,
          'nthe': 1,
          'cast': 1,
          'characters': 1,
          'making': 1,
          'newfound': 1,
          'nearly': 1,
          'star': 1,
          'npatachou': 1,
          'especially': 1,
          'wonderful': 1,
          'grandma': 1,
          'character': 1,
          'kindred': 1,
          'spirit': 1,
          'nariane': 1,
          'along': 1,
          'gives': 1,
          'perf': 1,
          'really': 1,
          'think': 1,
          'nonly': 1,
          'lacks': 1,
          'emotional': 1,
          'depth': 1,
          'rest': 1,
          'feels': 1,
          'perfunctory': 1,
          'addition': 1,
          'reinvent': 1,
          'movie': 1,
          'provide': 1,
          'charismatic': 1,
          'mans': 1,
          'surprise': 1,
          'dramatically': 1,
          'expected': 1,
          'beginning': 1,
          'nit': 1,
          'cinematographer': 1,
          'matthieu': 1,
          'poirotdelpechs': 1,
          'crisp': 1,
          'lensing': 1,
          'compliments': 1,
          'story': 1,
          'perfectly': 1,
          'moves': 1,
          'french': 1,
          'countryside': 1,
          'ni': 1,
          'give': 1,
          'b': 1,
          'npos': 1}),
 Counter({'chicken': 14,
          'run': 12,
          'nthe': 9,
          'movie': 8,
          'seen': 7,
          'chickens': 7,
          'ive': 5,
          'one': 5,
          'film': 5,
          'like': 4,
          'voice': 4,
          'films': 4,
          'great': 4,
          'doesnt': 4,
          'idea': 4,
          'parodies': 4,
          'even': 4,
          'funnest': 3,
          'fun': 3,
          'nbut': 3,
          'something': 3,
          'escape': 3,
          'rocky': 3,
          'mel': 3,
          'gibson': 3,
          'pies': 3,
          'come': 3,
          'park': 3,
          'animation': 3,
          'two': 3,
          'story': 3,
          'bit': 3,
          'lord': 3,
          'nothing': 3,
          'characters': 3,
          'theyre': 3,
          'funny': 3,
          'subtle': 3,
          'way': 3,
          'sequence': 3,
          'got': 3,
          'never': 3,
          'isnt': 2,
          'word': 2,
          'n': 2,
          'thats': 2,
          'came': 2,
          'ever': 2,
          'movies': 2,
          'last': 2,
          'hen': 2,
          'julia': 2,
          'sawalha': 2,
          'comes': 2,
          'day': 2,
          'none': 2,
          'brash': 2,
          'rooster': 2,
          'famous': 2,
          'situation': 2,
          'tweedy': 2,
          'plan': 2,
          'nshe': 2,
          'creature': 2,
          'wrong': 2,
          'trousers': 2,
          'close': 2,
          'shave': 2,
          'starring': 2,
          'delightful': 2,
          'team': 2,
          'wallace': 2,
          'npart': 2,
          'parks': 2,
          'make': 2,
          'old': 2,
          'seem': 2,
          'stories': 2,
          'fresh': 2,
          'inspired': 2,
          'contrived': 2,
          'lifted': 2,
          'reference': 2,
          'scene': 2,
          'feel': 2,
          'else': 2,
          'done': 2,
          'original': 2,
          'npark': 2,
          'references': 2,
          'chase': 2,
          'indiana': 2,
          'jones': 2,
          'jabs': 2,
          'history': 2,
          'catch': 2,
          'parody': 2,
          'year': 2,
          'dozens': 2,
          'blair': 2,
          'witch': 2,
          'offer': 2,
          'nthey': 2,
          'youve': 2,
          'lively': 2,
          'every': 2,
          'inevitable': 2,
          'rats': 2,
          'nearly': 2,
          'enjoy': 2,
          'know': 1,
          'noun': 1,
          'therefore': 1,
          'conjugated': 1,
          'adjective': 1,
          'right': 1,
          'viewing': 1,
          'nno': 1,
          'wonder': 1,
          'kind': 1,
          'reduces': 1,
          'childish': 1,
          'expressions': 1,
          'nso': 1,
          'hell': 1,
          'websters': 1,
          'ni': 1,
          'cant': 1,
          'remember': 1,
          'time': 1,
          'anything': 1,
          'funner': 1,
          'tweedys': 1,
          'farm': 1,
          'nliving': 1,
          'concentration': 1,
          'camplike': 1,
          'atmosphere': 1,
          'led': 1,
          'plucky': 1,
          'called': 1,
          'ginger': 1,
          'continually': 1,
          'plans': 1,
          'always': 1,
          'gets': 1,
          'caught': 1,
          'subsequently': 1,
          'spending': 1,
          'coal': 1,
          'box': 1,
          'night': 1,
          'american': 1,
          'flies': 1,
          'fence': 1,
          'calling': 1,
          'flying': 1,
          'circus': 1,
          'performer': 1,
          'nrocky': 1,
          'promises': 1,
          'teach': 1,
          'fly': 1,
          'grows': 1,
          'desperate': 1,
          'nefarious': 1,
          'mrs': 1,
          'miranda': 1,
          'richardson': 1,
          'decides': 1,
          'abandon': 1,
          'farms': 1,
          'eggselling': 1,
          'pieselling': 1,
          'orders': 1,
          'huge': 1,
          'piemaking': 1,
          'machine': 1,
          'cackling': 1,
          'go': 1,
          'nwhat': 1,
          'sort': 1,
          'nchicken': 1,
          'course': 1,
          'ncodirector': 1,
          'nick': 1,
          'studio': 1,
          'aardman': 1,
          'produced': 1,
          'three': 1,
          'oscarwinning': 1,
          'short': 1,
          'comforts': 1,
          'latter': 1,
          'second': 1,
          'third': 1,
          'installments': 1,
          'trilogy': 1,
          'gromit': 1,
          'man': 1,
          'dog': 1,
          'getting': 1,
          'increasingly': 1,
          'peculiar': 1,
          'adventures': 1,
          'made': 1,
          'brilliantly': 1,
          'entertaining': 1,
          'uncanny': 1,
          'ability': 1,
          'new': 1,
          'example': 1,
          'pulled': 1,
          'lot': 1,
          'hitchcockian': 1,
          'suspense': 1,
          'tricks': 1,
          'owed': 1,
          'deal': 1,
          'inspiration': 1,
          'classic': 1,
          'detective': 1,
          'hands': 1,
          'felt': 1,
          'least': 1,
          'nnow': 1,
          'teaming': 1,
          'codirector': 1,
          'peter': 1,
          'created': 1,
          'similar': 1,
          'plot': 1,
          'largely': 1,
          'watch': 1,
          'quick': 1,
          'ballbouncing': 1,
          'spielberginspired': 1,
          'action': 1,
          'sequences': 1,
          'providing': 1,
          'excitement': 1,
          'nthing': 1,
          'somewhere': 1,
          'feels': 1,
          'alive': 1,
          'world': 1,
          'prisonersofwar': 1,
          'milk': 1,
          'incongruity': 1,
          'worth': 1,
          'treat': 1,
          'dead': 1,
          'serious': 1,
          'us': 1,
          'nanother': 1,
          'thing': 1,
          'helps': 1,
          'succeed': 1,
          'animators': 1,
          'giving': 1,
          'nods': 1,
          'cribbing': 1,
          'nthere': 1,
          'obviously': 1,
          'stalag': 1,
          '17': 1,
          'inside': 1,
          'grinder': 1,
          'raiders': 1,
          'lost': 1,
          'ark': 1,
          'temple': 1,
          'doom': 1,
          'ntheres': 1,
          'nod': 1,
          'blues': 1,
          'brothers': 1,
          'believe': 1,
          'filmmakers': 1,
          'get': 1,
          'little': 1,
          'lighthearted': 1,
          'ribbing': 1,
          'expense': 1,
          'star': 1,
          'actor': 1,
          'taking': 1,
          'couple': 1,
          'gibsons': 1,
          'nationality': 1,
          'braveheart': 1,
          'hoot': 1,
          'nwhen': 1,
          'consider': 1,
          'fine': 1,
          'line': 1,
          'resides': 1,
          'redundant': 1,
          'downright': 1,
          'brilliant': 1,
          'execution': 1,
          'nconsider': 1,
          'since': 1,
          'july': 1,
          'upon': 1,
          'project': 1,
          'television': 1,
          'radio': 1,
          'online': 1,
          'nout': 1,
          'maybe': 1,
          'amusing': 1,
          'rest': 1,
          'tiresome': 1,
          'nwhy': 1,
          'nbecause': 1,
          'past': 1,
          'thought': 1,
          'parodying': 1,
          'insight': 1,
          'greater': 1,
          'purpose': 1,
          'otherwise': 1,
          'nconversely': 1,
          'lean': 1,
          'sole': 1,
          'focus': 1,
          'nif': 1,
          'still': 1,
          'neven': 1,
          'remains': 1,
          'interesting': 1,
          'character': 1,
          'screenwriter': 1,
          'karey': 1,
          'kirkpatrick': 1,
          'realize': 1,
          'audience': 1,
          'need': 1,
          'shoved': 1,
          'faces': 1,
          'understood': 1,
          'result': 1,
          'filled': 1,
          'visual': 1,
          'verbal': 1,
          'obvious': 1,
          'quite': 1,
          'vague': 1,
          'either': 1,
          'nenjoyment': 1,
          'require': 1,
          'knowledge': 1,
          'much': 1,
          'richer': 1,
          'cast': 1,
          'turns': 1,
          'uniformly': 1,
          'performances': 1,
          'play': 1,
          'given': 1,
          'many': 1,
          'nuances': 1,
          'hard': 1,
          'fall': 1,
          'love': 1,
          'nginger': 1,
          'perfect': 1,
          'spunky': 1,
          'opinionated': 1,
          'soft': 1,
          'heart': 1,
          'forbids': 1,
          'leave': 1,
          'companions': 1,
          'behind': 1,
          'known': 1,
          'cute': 1,
          'mousy': 1,
          'girl': 1,
          'absolutely': 1,
          'fabulous': 1,
          'nails': 1,
          'warm': 1,
          'human': 1,
          'chemistry': 1,
          'whose': 1,
          'hides': 1,
          'personal': 1,
          'doubt': 1,
          'gungho': 1,
          'veneer': 1,
          'romance': 1,
          'sweet': 1,
          'npoor': 1,
          'mr': 1,
          'tony': 1,
          'haygarth': 1,
          'suspects': 1,
          'organizing': 1,
          'limited': 1,
          'intellect': 1,
          'prevents': 1,
          'figuring': 1,
          'things': 1,
          'overbearing': 1,
          'wife': 1,
          'certainly': 1,
          'help': 1,
          'njane': 1,
          'horrocks': 1,
          'delivers': 1,
          'lovely': 1,
          'characterization': 1,
          'tragically': 1,
          'optimistic': 1,
          'babs': 1,
          'runs': 1,
          'away': 1,
          'best': 1,
          'oneliners': 1,
          'perpetually': 1,
          'crocheting': 1,
          'sweater': 1,
          'supplytrading': 1,
          'walked': 1,
          'straight': 1,
          'monty': 1,
          'python': 1,
          'sketch': 1,
          'steal': 1,
          'show': 1,
          'central': 1,
          'swingdancing': 1,
          'riff': 1,
          'baffled': 1,
          'scholars': 1,
          'theologians': 1,
          'alike': 1,
          'decades': 1,
          'vs': 1,
          'egg': 1,
          'dilemma': 1,
          'might': 1,
          'expected': 1,
          'joke': 1,
          'wearisome': 1,
          'surprise': 1,
          'manages': 1,
          'cross': 1,
          'barriers': 1,
          'accessible': 1,
          'children': 1,
          'adults': 1,
          'brits': 1,
          'yanks': 1,
          'firstrate': 1,
          'nremember': 1,
          'oldfashioned': 1,
          'actual': 1,
          'humans': 1,
          'moving': 1,
          'clay': 1,
          'figurines': 1,
          'around': 1,
          'tiny': 1,
          'set': 1,
          'painstaking': 1,
          'see': 1,
          'truly': 1,
          'remarkable': 1,
          'really': 1,
          'nthis': 1,
          'possesses': 1,
          'quality': 1,
          'makes': 1,
          'pixar': 1,
          'studios': 1,
          'precise': 1,
          'unwavering': 1,
          'attention': 1,
          'detail': 1,
          'nas': 1,
          'topnotch': 1,
          'family': 1,
          'fare': 1,
          'bugs': 1,
          'life': 1,
          'toy': 1,
          '2': 1,
          'frame': 1,
          'ncertainly': 1,
          'passive': 1,
          'viewer': 1,
          'straightforward': 1,
          'worthwhile': 1,
          'moral': 1,
          'surprisingly': 1,
          'touching': 1,
          'scenes': 1,
          'active': 1,
          'attentive': 1,
          'viewers': 1,
          'theyll': 1,
          'details': 1,
          'nanyway': 1,
          'boatload': 1,
          'nfunnest': 1,
          'damn': 1,
          'npos': 1}),
 Counter({'moulin': 9,
          'love': 8,
          'n': 6,
          'rogue': 6,
          'satine': 5,
          'one': 4,
          'even': 4,
          'like': 4,
          'rouge': 3,
          'see': 3,
          'musical': 3,
          'baz': 3,
          'well': 3,
          'christian': 3,
          'duke': 3,
          'nthe': 3,
          'bit': 2,
          'sounds': 2,
          'simply': 2,
          'film': 2,
          'wait': 2,
          'woman': 2,
          'movie': 2,
          'never': 2,
          'story': 2,
          'told': 2,
          'completely': 2,
          'song': 2,
          'didnt': 2,
          'director': 2,
          'luhrmann': 2,
          'man': 2,
          'songs': 2,
          'sound': 2,
          'mcgregor': 2,
          'bohemians': 2,
          'toulouselautrec': 2,
          'john': 2,
          'nchristian': 2,
          'nicole': 2,
          'kidman': 2,
          'world': 2,
          'finds': 2,
          'zidler': 2,
          'jim': 2,
          'broadbent': 2,
          'spectacular': 2,
          'richard': 2,
          'roxburgh': 2,
          'nas': 2,
          'cough': 2,
          'none': 2,
          'moments': 2,
          'overload': 2,
          'times': 2,
          'course': 2,
          'always': 2,
          'cast': 2,
          'voice': 2,
          'although': 2,
          'films': 2,
          'original': 2,
          'press': 1,
          'screening': 1,
          'stood': 1,
          'lobby': 1,
          'theater': 1,
          'listening': 1,
          'reactions': 1,
          'friends': 1,
          'colleagues': 1,
          'neveryone': 1,
          'seemed': 1,
          'numb': 1,
          'understandable': 1,
          'sitting': 1,
          'barrage': 1,
          'oftenincongruous': 1,
          'images': 1,
          'na': 1,
          'pal': 1,
          'mine': 1,
          'said': 1,
          'loved': 1,
          'could': 1,
          'hardly': 1,
          'take': 1,
          'wife': 1,
          'nanother': 1,
          'enthusiast': 1,
          'immediately': 1,
          'began': 1,
          'analyze': 1,
          'production': 1,
          'flatout': 1,
          'hated': 1,
          'gave': 1,
          'skunk': 1,
          'eye': 1,
          'nwhen': 1,
          'fellow': 1,
          'quietly': 1,
          'stated': 1,
          'ive': 1,
          'really': 1,
          'fan': 1,
          'musicals': 1,
          'statement': 1,
          'surprised': 1,
          'though': 1,
          'almost': 1,
          'think': 1,
          'nthere': 1,
          'much': 1,
          'going': 1,
          'seems': 1,
          'small': 1,
          'term': 1,
          'cover': 1,
          'kind': 1,
          'creation': 1,
          'sends': 1,
          'critics': 1,
          'scurrying': 1,
          'big': 1,
          'tub': 1,
          'adjectives': 1,
          'search': 1,
          'proper': 1,
          'words': 1,
          'describe': 1,
          'experience': 1,
          'naustralian': 1,
          'behind': 1,
          'strictly': 1,
          'ballroom': 1,
          'romeo': 1,
          'juliet': 1,
          'fills': 1,
          'heads': 1,
          'viewers': 1,
          'unique': 1,
          'camerawork': 1,
          'opulent': 1,
          'imagery': 1,
          'ranging': 1,
          'music': 1,
          'smells': 1,
          'teen': 1,
          'spirit': 1,
          'nsumptuous': 1,
          'beautiful': 1,
          'vulgar': 1,
          'overdone': 1,
          'travels': 1,
          'looking': 1,
          'glass': 1,
          'ethereal': 1,
          'stereo': 1,
          'loaded': 1,
          '50': 1,
          'years': 1,
          'worth': 1,
          'catchy': 1,
          'tunes': 1,
          'operates': 1,
          'random': 1,
          'setting': 1,
          'noh': 1,
          '1899': 1,
          'summer': 1,
          'ewan': 1,
          'penniless': 1,
          'young': 1,
          'writer': 1,
          'newly': 1,
          'arrived': 1,
          'paris': 1,
          'write': 1,
          'truth': 1,
          'beauty': 1,
          'freedom': 1,
          'encounters': 1,
          'group': 1,
          'led': 1,
          'henri': 1,
          'de': 1,
          'leguizamo': 1,
          'meets': 1,
          'courtesan': 1,
          'legendary': 1,
          'transforms': 1,
          'black': 1,
          'white': 1,
          'technicolor': 1,
          'nat': 1,
          'fragile': 1,
          'vivacious': 1,
          'dazzling': 1,
          'redhaired': 1,
          'sweeps': 1,
          'feet': 1,
          'without': 1,
          'trying': 1,
          'instantly': 1,
          'falls': 1,
          'smitten': 1,
          'quite': 1,
          'hindrance': 1,
          'someone': 1,
          'profession': 1,
          'nworking': 1,
          'impresario': 1,
          'harold': 1,
          'writes': 1,
          'opus': 1,
          'modestly': 1,
          'named': 1,
          'nzidler': 1,
          'quickly': 1,
          'backer': 1,
          'wealthy': 1,
          'monroth': 1,
          'theres': 1,
          'catch': 1,
          'also': 1,
          'wants': 1,
          'hand': 1,
          'fair': 1,
          'isnt': 1,
          'enough': 1,
          'real': 1,
          'probably': 1,
          'indicates': 1,
          'cold': 1,
          'rarely': 1,
          'turns': 1,
          'anything': 1,
          'simple': 1,
          'land': 1,
          'nlike': 1,
          'teetertotter': 1,
          'moves': 1,
          'ridiculous': 1,
          'sublime': 1,
          'loveliest': 1,
          'comes': 1,
          'christine': 1,
          'commune': 1,
          'outdoors': 1,
          'night': 1,
          'becoming': 1,
          'part': 1,
          'defiantly': 1,
          'unrealistic': 1,
          'parisian': 1,
          'cityscape': 1,
          'straight': 1,
          'book': 1,
          'fairy': 1,
          'tales': 1,
          'ntogether': 1,
          'dance': 1,
          'serenaded': 1,
          'moon': 1,
          'alessandro': 1,
          'safina': 1,
          'provides': 1,
          'vocals': 1,
          'apparently': 1,
          'transported': 1,
          'classic': 1,
          'georges': 1,
          'li': 1,
          'silent': 1,
          'guard': 1,
          'nocturnal': 1,
          'sky': 1,
          'nother': 1,
          'scenes': 1,
          'merely': 1,
          'traffic': 1,
          'everythingandthekitchensink': 1,
          'cavorting': 1,
          'comrades': 1,
          'gets': 1,
          'strained': 1,
          'overt': 1,
          'comedy': 1,
          'accompanied': 1,
          'cartoon': 1,
          'effects': 1,
          'overly': 1,
          'reminiscent': 1,
          'frenzied': 1,
          'farce': 1,
          'sitcoms': 1,
          'bewitched': 1,
          'beat': 1,
          'ground': 1,
          'nof': 1,
          'sensory': 1,
          'exactly': 1,
          'mind': 1,
          'heard': 1,
          'turn': 1,
          'actors': 1,
          'los': 1,
          'angeles': 1,
          'nmore': 1,
          'sent': 1,
          'note': 1,
          'reading': 1,
          'dare': 1,
          'make': 1,
          'say': 1,
          'youve': 1,
          'gone': 1,
          'far': 1,
          'numbers': 1,
          'reflect': 1,
          'attitude': 1,
          'knockout': 1,
          'piece': 1,
          'elephant': 1,
          'medley': 1,
          'incorporates': 1,
          'beatles': 1,
          'need': 1,
          'u2s': 1,
          'name': 1,
          'dolly': 1,
          'partons': 1,
          'elton': 1,
          'bernie': 1,
          'taupins': 1,
          'nneed': 1,
          'nhow': 1,
          'diamonds': 1,
          'girls': 1,
          'best': 1,
          'friend': 1,
          'spiced': 1,
          'portions': 1,
          'material': 1,
          'girl': 1,
          'nluhrmanns': 1,
          'offers': 1,
          'wide': 1,
          'variety': 1,
          'approaches': 1,
          'together': 1,
          'add': 1,
          'something': 1,
          'messy': 1,
          'often': 1,
          'wonderful': 1,
          'newan': 1,
          'extremely': 1,
          'likable': 1,
          'emphasizing': 1,
          'sincerity': 1,
          'lovestruck': 1,
          'poet': 1,
          'nmcgregors': 1,
          'singing': 1,
          'robust': 1,
          'adds': 1,
          'vigor': 1,
          'right': 1,
          'nonce': 1,
          'labeled': 1,
          'ice': 1,
          'queen': 1,
          'melts': 1,
          'characterization': 1,
          'sizzling': 1,
          'yet': 1,
          'tender': 1,
          'performance': 1,
          'nshe': 1,
          'handles': 1,
          'adroitly': 1,
          'thin': 1,
          'upper': 1,
          'range': 1,
          'nveteran': 1,
          'character': 1,
          'actor': 1,
          'suitably': 1,
          'larger': 1,
          'life': 1,
          'ringmaster': 1,
          'perform': 1,
          'virgin': 1,
          'buffoonish': 1,
          'proves': 1,
          'weakest': 1,
          'link': 1,
          'im': 1,
          'sure': 1,
          'following': 1,
          'instructions': 1,
          'ni': 1,
          'suspect': 1,
          'loveitorhateit': 1,
          'nwhile': 1,
          'certainly': 1,
          'liked': 1,
          'lot': 1,
          'nover': 1,
          'year': 1,
          '300': 1,
          'movies': 1,
          'look': 1,
          'xeroxes': 1,
          'flawed': 1,
          'thing': 1,
          'cherished': 1,
          'npos': 1}),
 Counter({'film': 8,
          'judith': 6,
          'living': 4,
          'one': 4,
          'pat': 4,
          'loud': 3,
          'see': 3,
          'nshe': 3,
          'happy': 3,
          'devito': 3,
          'friends': 3,
          'nthe': 3,
          'woman': 3,
          'role': 3,
          'often': 2,
          'like': 2,
          'hunter': 2,
          'life': 2,
          'imagines': 2,
          'things': 2,
          'better': 2,
          'place': 2,
          'liz': 2,
          'latifah': 2,
          'danny': 2,
          'person': 2,
          'form': 2,
          'written': 2,
          'also': 2,
          'people': 2,
          'none': 2,
          'mind': 2,
          'results': 2,
          'sometimes': 2,
          'reading': 2,
          'join': 2,
          'nas': 2,
          'judiths': 2,
          'even': 2,
          'nand': 2,
          'image': 2,
          'type': 1,
          'motion': 1,
          'picture': 1,
          'dont': 1,
          'mature': 1,
          'intelligent': 1,
          'adults': 1,
          'instead': 1,
          'usual': 1,
          'american': 1,
          'children': 1,
          'basically': 1,
          'dress': 1,
          'grownup': 1,
          'clothing': 1,
          'parade': 1,
          'around': 1,
          'acting': 1,
          'immature': 1,
          'sevenyearolds': 1,
          'njudith': 1,
          'holly': 1,
          'fortysomething': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'difficult': 1,
          'time': 1,
          'lately': 1,
          'extremely': 1,
          'depressed': 1,
          'recent': 1,
          'divorce': 1,
          'husband': 1,
          'martin': 1,
          'donovan': 1,
          'cheating': 1,
          'sleep': 1,
          'haunted': 1,
          'terrible': 1,
          'memories': 1,
          'offthewall': 1,
          'try': 1,
          'make': 1,
          'world': 1,
          'seem': 1,
          'really': 1,
          'go': 1,
          'feel': 1,
          'hear': 1,
          'favorite': 1,
          'singers': 1,
          'bailey': 1,
          'queen': 1,
          'perform': 1,
          'local': 1,
          'club': 1,
          'njudiths': 1,
          'start': 1,
          'brighten': 1,
          'little': 1,
          'night': 1,
          'gets': 1,
          'home': 1,
          'apartment': 1,
          'late': 1,
          'strikes': 1,
          'conversation': 1,
          'elevator': 1,
          'operator': 1,
          'lonely': 1,
          'man': 1,
          'fifties': 1,
          'lost': 1,
          'daughter': 1,
          'recently': 1,
          'nboth': 1,
          'create': 1,
          'sort': 1,
          'emotional': 1,
          'connection': 1,
          'seeking': 1,
          'comfort': 1,
          'starts': 1,
          'deep': 1,
          'love': 1,
          'wants': 1,
          'remain': 1,
          'n': 1,
          'richard': 1,
          'lagravenese': 1,
          'bridges': 1,
          'madison': 1,
          'county': 1,
          'making': 1,
          'directing': 1,
          'debut': 1,
          'wonderful': 1,
          'beginning': 1,
          'end': 1,
          'honest': 1,
          'genuinely': 1,
          'funny': 1,
          'poignant': 1,
          'three': 1,
          'central': 1,
          'characters': 1,
          'freethinking': 1,
          'complex': 1,
          'human': 1,
          'beings': 1,
          'likable': 1,
          'flawed': 1,
          'constantly': 1,
          'interesting': 1,
          'highly': 1,
          'original': 1,
          'element': 1,
          'occasionally': 1,
          'occuring': 1,
          'way': 1,
          'wishes': 1,
          'would': 1,
          'happen': 1,
          'nsometimes': 1,
          'comedy': 1,
          'turns': 1,
          'subtle': 1,
          'truly': 1,
          'touching': 1,
          'sequence': 1,
          'stands': 1,
          'restaurant': 1,
          'novel': 1,
          'nan': 1,
          'older': 1,
          'comes': 1,
          'mentions': 1,
          'great': 1,
          'book': 1,
          'goes': 1,
          'sits': 1,
          'looks': 1,
          'motions': 1,
          'come': 1,
          'ninstantly': 1,
          'realize': 1,
          'simply': 1,
          'sit': 1,
          'table': 1,
          'begin': 1,
          'talking': 1,
          'nholly': 1,
          'give': 1,
          'performances': 1,
          'careers': 1,
          'nhunter': 1,
          'course': 1,
          'brilliant': 1,
          '1993s': 1,
          'piano': 1,
          'academy': 1,
          'award': 1,
          'think': 1,
          'finds': 1,
          'right': 1,
          'note': 1,
          'scene': 1,
          'holds': 1,
          'never': 1,
          'humanistic': 1,
          'surprised': 1,
          'nusually': 1,
          'used': 1,
          'butt': 1,
          'joke': 1,
          'caricature': 1,
          'livingandbreathing': 1,
          'sympathetic': 1,
          'play': 1,
          'ntopping': 1,
          'singer': 1,
          'quickly': 1,
          'turning': 1,
          'respectable': 1,
          'actress': 1,
          'juicy': 1,
          'natural': 1,
          'supporting': 1,
          'ways': 1,
          'model': 1,
          'nanother': 1,
          'joy': 1,
          'somehow': 1,
          'contrived': 1,
          'ending': 1,
          'staying': 1,
          'realistic': 1,
          'tone': 1,
          'manages': 1,
          'upbeat': 1,
          'truthful': 1,
          'last': 1,
          'shot': 1,
          'especially': 1,
          'powerful': 1,
          'nnothing': 1,
          'said': 1,
          'someone': 1,
          'walking': 1,
          'sidewalk': 1,
          'says': 1,
          'relationship': 1,
          'truetolife': 1,
          'sincere': 1,
          'watch': 1,
          'two': 1,
          'talk': 1,
          'get': 1,
          'know': 1,
          'wish': 1,
          'include': 1,
          'become': 1,
          'romantically': 1,
          'involved': 1,
          'best': 1,
          'films': 1,
          'year': 1,
          'proves': 1,
          'friendship': 1,
          'strongest': 1,
          'bond': 1,
          'anyone': 1,
          'could': 1,
          'possibly': 1,
          'ask': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'love': 6,
          'redefines': 5,
          'scene': 4,
          'sex': 4,
          'austin': 3,
          'dr': 3,
          'evil': 3,
          'relationship': 3,
          'make': 2,
          'nanything': 2,
          'resembles': 2,
          'mini': 2,
          'leading': 2,
          'bastard': 2,
          'felicity': 2,
          'affair': 2,
          'oh': 1,
          'behave': 1,
          'nfelicity': 1,
          'shagwell': 1,
          'one': 1,
          'shagadellic': 1,
          'babe': 1,
          'ndo': 1,
          'horny': 1,
          'nfemale': 1,
          'fembots': 1,
          'breasts': 1,
          'require': 1,
          'gun': 1,
          'controlling': 1,
          'bananas': 1,
          'two': 1,
          'balls': 1,
          'icecream': 1,
          'nutbiting': 1,
          'finale': 1,
          'nall': 1,
          'body': 1,
          'hair': 1,
          'real': 1,
          'turn': 1,
          'pity': 1,
          'men': 1,
          'dont': 1,
          'wear': 1,
          'screen': 1,
          'vaguely': 1,
          'sausages': 1,
          'eggs': 1,
          'nfat': 1,
          'fat': 1,
          'wrongly': 1,
          'implied': 1,
          'tent': 1,
          'anal': 1,
          'ivana': 1,
          'humpalot': 1,
          'chess': 1,
          'oral': 1,
          'frau': 1,
          'farbissina': 1,
          'weird': 1,
          'happen': 1,
          'mojo': 1,
          'goes': 1,
          'missing': 1,
          'solo': 1,
          'unique': 1,
          'son': 1,
          'scott': 1,
          'www': 1,
          'com': 1,
          'zip': 1,
          'says': 1,
          'lot': 1,
          'children': 1,
          'nowadays': 1,
          'nweanies': 1,
          'johnny': 1,
          'richard': 1,
          'dick': 1,
          'etc': 1,
          'nthis': 1,
          'movie': 1,
          'every': 1,
          'bit': 1,
          'silly': 1,
          'crazy': 1,
          'first': 1,
          'nthere': 1,
          'moments': 1,
          'sick': 1,
          'probably': 1,
          'best': 1,
          'forgotten': 1,
          'overall': 1,
          'mike': 1,
          'myers': 1,
          'redefined': 1,
          'means': 1,
          'international': 1,
          'spy': 1,
          'man': 1,
          'npos': 1}),
 Counter({'altman': 12,
          'nthe': 9,
          'robert': 6,
          'nbut': 6,
          'shot': 6,
          'director': 5,
          'man': 5,
          'car': 5,
          'magruder': 5,
          'grisham': 4,
          'great': 4,
          'gingerbread': 4,
          'help': 4,
          'nand': 4,
          'john': 3,
          'novel': 3,
          'course': 3,
          'altmans': 3,
          'questionable': 3,
          'get': 3,
          'grishams': 3,
          'work': 3,
          'story': 3,
          'savannah': 3,
          'nthis': 3,
          'branagh': 3,
          'nmagruder': 3,
          'mallory': 3,
          'act': 3,
          'time': 2,
          'screen': 2,
          'popular': 2,
          'actors': 2,
          'leads': 2,
          'wasnt': 2,
          'good': 2,
          'far': 2,
          'book': 2,
          'really': 2,
          'people': 2,
          'writer': 2,
          'storyteller': 2,
          'nso': 2,
          'make': 2,
          'something': 2,
          'godfather': 2,
          'suggest': 2,
          'cinema': 2,
          'source': 2,
          'material': 2,
          'theres': 2,
          'better': 2,
          'cant': 2,
          'tell': 2,
          'attention': 2,
          'one': 2,
          'greatest': 2,
          'result': 2,
          'thriller': 2,
          'classic': 2,
          'place': 2,
          'opening': 2,
          'sense': 2,
          'fear': 2,
          'see': 2,
          'sports': 2,
          'driver': 2,
          'rick': 2,
          'attorney': 2,
          'party': 2,
          'embeth': 2,
          'davidzt': 2,
          'stolen': 2,
          'offers': 2,
          'learns': 2,
          'mallorys': 2,
          'life': 2,
          'father': 2,
          'dixon': 2,
          'sympathetic': 2,
          'offer': 2,
          'appears': 2,
          'downey': 2,
          'jr': 2,
          'nif': 2,
          'bad': 2,
          'enough': 2,
          'hurricane': 2,
          'world': 2,
          'may': 2,
          'making': 2,
          'nis': 2,
          'never': 2,
          'worse': 2,
          'scenes': 2,
          'becomes': 2,
          'actress': 2,
          'naked': 2,
          'film': 2,
          'back': 2,
          'picture': 2,
          'nin': 2,
          'hands': 2,
          'like': 2,
          'tried': 2,
          'third': 2,
          'written': 1,
          'al': 1,
          'hayes': 1,
          'ndirected': 1,
          'nsome': 1,
          'ago': 1,
          'young': 1,
          'given': 1,
          'opportunity': 1,
          'direct': 1,
          'version': 1,
          'summer': 1,
          'smash': 1,
          'topping': 1,
          'bestseller': 1,
          'lists': 1,
          'across': 1,
          'country': 1,
          'already': 1,
          'drawing': 1,
          'speculation': 1,
          'day': 1,
          'might': 1,
          'play': 1,
          'problem': 1,
          'nit': 1,
          'pulp': 1,
          'pulitzer': 1,
          'realized': 1,
          'matter': 1,
          'pedestrian': 1,
          'prose': 1,
          'grabbed': 1,
          'author': 1,
          'fantastic': 1,
          'took': 1,
          'project': 1,
          'convinced': 1,
          'could': 1,
          'happen': 1,
          'nfrancis': 1,
          'ford': 1,
          'coppola': 1,
          'mario': 1,
          'puzos': 1,
          'rest': 1,
          'say': 1,
          'showbiz': 1,
          'history': 1,
          'nby': 1,
          'bringing': 1,
          'dont': 1,
          'mean': 1,
          'destined': 1,
          'level': 1,
          'greatness': 1,
          'parallel': 1,
          'possible': 1,
          'create': 1,
          'ncan': 1,
          'ndepends': 1,
          'ask': 1,
          'question': 1,
          'grabs': 1,
          'nlike': 1,
          'puzo': 1,
          'unlike': 1,
          'fellow': 1,
          'hack': 1,
          'michael': 1,
          'crichton': 1,
          'idea': 1,
          'wellconstructed': 1,
          'spam': 1,
          'unpublished': 1,
          'cocky': 1,
          'lawyer': 1,
          'gets': 1,
          'involved': 1,
          'deadly': 1,
          'family': 1,
          'squabble': 1,
          'drew': 1,
          '73': 1,
          'years': 1,
          'old': 1,
          'remains': 1,
          'americas': 1,
          'living': 1,
          'filmmakers': 1,
          'gripping': 1,
          'falling': 1,
          'short': 1,
          'deserves': 1,
          'canon': 1,
          'nfrom': 1,
          'closing': 1,
          'credits': 1,
          'permeated': 1,
          'dread': 1,
          'natural': 1,
          'destructive': 1,
          'forces': 1,
          'universe': 1,
          'terrific': 1,
          'mood': 1,
          'touch': 1,
          'nwitness': 1,
          'said': 1,
          'aerial': 1,
          'view': 1,
          'coastal': 1,
          'georgia': 1,
          'writhing': 1,
          'undulating': 1,
          'landscape': 1,
          'soundtrack': 1,
          'grumbles': 1,
          'ominously': 1,
          'ear': 1,
          'nwe': 1,
          'roll': 1,
          'hills': 1,
          'town': 1,
          'zoom': 1,
          'close': 1,
          'red': 1,
          'speeding': 1,
          'bridge': 1,
          'chatters': 1,
          'oblivious': 1,
          'cell': 1,
          'phone': 1,
          'nright': 1,
          'away': 1,
          'know': 1,
          'surprises': 1,
          'npay': 1,
          'boys': 1,
          'girls': 1,
          'conceived': 1,
          'belongs': 1,
          'kenneth': 1,
          'aforementioned': 1,
          'hotshot': 1,
          'specializes': 1,
          'police': 1,
          'brutality': 1,
          'cases': 1,
          'high': 1,
          'profile': 1,
          'case': 1,
          'celebrates': 1,
          'night': 1,
          'catered': 1,
          'office': 1,
          'noutside': 1,
          'meets': 1,
          'waitresses': 1,
          'doss': 1,
          'realizes': 1,
          'ndriven': 1,
          'southern': 1,
          'chivalry': 1,
          'driving': 1,
          'rainstorm': 1,
          'unspoken': 1,
          'attraction': 1,
          'fragile': 1,
          'waitress': 1,
          'ride': 1,
          'home': 1,
          'nthere': 1,
          'bargained': 1,
          'nher': 1,
          'schizophrenic': 1,
          'duvall': 1,
          'ted': 1,
          'kyzynskistyle': 1,
          'whacko': 1,
          'stalking': 1,
          'terrorizing': 1,
          'daughter': 1,
          'perhaps': 1,
          'influenced': 1,
          'decision': 1,
          'strip': 1,
          'wet': 1,
          'clothes': 1,
          'front': 1,
          'plight': 1,
          'committed': 1,
          'right': 1,
          'sleeps': 1,
          'simple': 1,
          'dangerous': 1,
          'path': 1,
          'black': 1,
          'end': 1,
          'nhe': 1,
          'succeeds': 1,
          'incarcerated': 1,
          'mental': 1,
          'hospital': 1,
          'moment': 1,
          'well': 1,
          'dixons': 1,
          'crack': 1,
          'team': 1,
          'homeless': 1,
          'commandos': 1,
          'bust': 1,
          'lockup': 1,
          'suddenly': 1,
          'finds': 1,
          'children': 1,
          'danger': 1,
          'cops': 1,
          'wont': 1,
          'lift': 1,
          'finger': 1,
          'liberal': 1,
          'nhis': 1,
          'allies': 1,
          'faithful': 1,
          'assistant': 1,
          'lois': 1,
          'daryl': 1,
          'hannah': 1,
          'bumbling': 1,
          'privateeye': 1,
          'sidekick': 1,
          'clyde': 1,
          'predicament': 1,
          'geraldo': 1,
          'bearing': 1,
          'throwing': 1,
          'chaos': 1,
          'naltman': 1,
          'provide': 1,
          'atmosphere': 1,
          'branaghs': 1,
          'performance': 1,
          'holds': 1,
          'together': 1,
          'nan': 1,
          'accomplished': 1,
          'actor': 1,
          'isnt': 1,
          'directing': 1,
          'vanity': 1,
          'productions': 1,
          'fine': 1,
          'job': 1,
          'hero': 1,
          'casting': 1,
          'doubt': 1,
          'upon': 1,
          'motives': 1,
          'kindness': 1,
          'egotism': 1,
          'sure': 1,
          'considers': 1,
          'bitten': 1,
          'chew': 1,
          'swallow': 1,
          'late': 1,
          'nas': 1,
          'plot': 1,
          'unfolds': 1,
          'none': 1,
          'us': 1,
          'secure': 1,
          'think': 1,
          'youre': 1,
          'familiar': 1,
          'youll': 1,
          'recognize': 1,
          'several': 1,
          'signature': 1,
          'techniques': 1,
          'ncharacters': 1,
          'introduced': 1,
          'establishing': 1,
          'shots': 1,
          'rather': 1,
          'allowed': 1,
          'wander': 1,
          'background': 1,
          'importance': 1,
          'apparent': 1,
          'ncrucial': 1,
          'outside': 1,
          'windows': 1,
          'audience': 1,
          'unwitting': 1,
          'voyeurs': 1,
          'action': 1,
          'ndialog': 1,
          'overlaps': 1,
          'seem': 1,
          'slip': 1,
          'naturally': 1,
          'improvisational': 1,
          'style': 1,
          'favorite': 1,
          'technique': 1,
          'obligatory': 1,
          'nude': 1,
          'nthanks': 1,
          'actresses': 1,
          'ive': 1,
          'pleasure': 1,
          'seeing': 1,
          'sally': 1,
          'kellerman': 1,
          'julianne': 1,
          'moore': 1,
          'madeline': 1,
          'stowe': 1,
          'even': 1,
          'frances': 1,
          'mcdormand': 1,
          'add': 1,
          'davidtz': 1,
          'looks': 1,
          'quite': 1,
          'healthy': 1,
          'altogether': 1,
          'become': 1,
          'ubiquitous': 1,
          'cameo': 1,
          'hitchcock': 1,
          'oldschool': 1,
          'sexism': 1,
          'clever': 1,
          'injoke': 1,
          'nyou': 1,
          'judge': 1,
          'hand': 1,
          'mere': 1,
          'mortal': 1,
          'would': 1,
          'routine': 1,
          'countless': 1,
          'others': 1,
          'weve': 1,
          'endured': 1,
          'master': 1,
          'exercise': 1,
          'existential': 1,
          'doom': 1,
          'way': 1,
          'successful': 1,
          'scorseses': 1,
          'cape': 1,
          'remake': 1,
          'nwhat': 1,
          'prevent': 1,
          'enduring': 1,
          'weak': 1,
          'fact': 1,
          'throw': 1,
          'jazz': 1,
          'things': 1,
          'true': 1,
          'moments': 1,
          'riveting': 1,
          'suspense': 1,
          'performances': 1,
          'nthat': 1,
          'polygram': 1,
          'hated': 1,
          'steal': 1,
          'final': 1,
          'cut': 1,
          'buried': 1,
          'marketing': 1,
          'campaign': 1,
          'utterly': 1,
          'clueless': 1,
          'quality': 1,
          'studios': 1,
          'nthey': 1,
          'probably': 1,
          'wanted': 1,
          'look': 1,
          'kill': 1,
          'friends': 1,
          'afraid': 1,
          'npos': 1}),
 Counter({'october': 7,
          'sky': 7,
          'film': 7,
          'boys': 6,
          'uplifting': 4,
          'homer': 4,
          'dream': 3,
          'nthe': 3,
          'chris': 3,
          'nhowever': 3,
          'manages': 3,
          'never': 3,
          'hickam': 2,
          'rocket': 2,
          'four': 2,
          '1957': 2,
          'much': 2,
          'hope': 2,
          'future': 2,
          'town': 2,
          'nbut': 2,
          'gyllenhaal': 2,
          'nof': 2,
          'course': 2,
          'cooper': 2,
          'scholarships': 2,
          'three': 2,
          'exact': 2,
          'right': 2,
          'johnson': 2,
          'many': 2,
          'become': 2,
          'rare': 1,
          'oddity': 1,
          'cinema': 1,
          'selfproclaimed': 1,
          'actually': 1,
          'nbased': 1,
          'autobiographical': 1,
          'book': 1,
          'tells': 1,
          'struggle': 1,
          'reaching': 1,
          'nits': 1,
          'coalwood': 1,
          'west': 1,
          'virginia': 1,
          'theres': 1,
          'rosy': 1,
          'ncoalwood': 1,
          'coal': 1,
          'mining': 1,
          'except': 1,
          'lucky': 1,
          'ones': 1,
          'manage': 1,
          'escape': 1,
          'football': 1,
          'scholarship': 1,
          'coalwoods': 1,
          'destined': 1,
          'work': 1,
          'mine': 1,
          'event': 1,
          'happens': 1,
          'sparks': 1,
          'one': 1,
          'boy': 1,
          'launch': 1,
          'soviet': 1,
          'satellite': 1,
          'sputnik': 1,
          'sets': 1,
          'jake': 1,
          'rocketry': 1,
          'space': 1,
          'travel': 1,
          'homers': 1,
          'parents': 1,
          'natalie': 1,
          'canderday': 1,
          'arent': 1,
          'quite': 1,
          'sure': 1,
          'make': 1,
          'sons': 1,
          'unusual': 1,
          'interests': 1,
          'nhomer': 1,
          'gets': 1,
          'strongest': 1,
          'encouragement': 1,
          'miss': 1,
          'riley': 1,
          'laura': 1,
          'dern': 1,
          'teacher': 1,
          'school': 1,
          'also': 1,
          'informs': 1,
          'offered': 1,
          'winners': 1,
          'national': 1,
          'science': 1,
          'fair': 1,
          'nand': 1,
          'stars': 1,
          'eyes': 1,
          'thoughts': 1,
          'head': 1,
          'enlists': 1,
          'help': 1,
          'william': 1,
          'lee': 1,
          'scott': 1,
          'chad': 1,
          'lindberg': 1,
          'owen': 1,
          'begins': 1,
          'build': 1,
          'backwoods': 1,
          'even': 1,
          'slightest': 1,
          'escaping': 1,
          'destiny': 1,
          'nthere': 1,
          'lot': 1,
          'could': 1,
          'gone': 1,
          'wrong': 1,
          'nnearly': 1,
          'every': 1,
          'sequence': 1,
          'flirts': 1,
          'becoming': 1,
          'syrupy': 1,
          'cliched': 1,
          'miraculously': 1,
          'avoids': 1,
          'nearly': 1,
          'pitfalls': 1,
          'making': 1,
          'moves': 1,
          'times': 1,
          'na': 1,
          'emerges': 1,
          'powerful': 1,
          'moving': 1,
          'without': 1,
          'slipping': 1,
          'gauzy': 1,
          'haze': 1,
          'nostalgia': 1,
          'sliding': 1,
          'sugarry': 1,
          'slope': 1,
          'sappiness': 1,
          'njake': 1,
          'outstanding': 1,
          'kid': 1,
          'center': 1,
          'nfrom': 1,
          'outset': 1,
          'immediately': 1,
          'likable': 1,
          'seems': 1,
          'corny': 1,
          'brainy': 1,
          'alienate': 1,
          'audience': 1,
          'nunfortunately': 1,
          'focuses': 1,
          'kids': 1,
          'get': 1,
          'short': 1,
          'end': 1,
          'stick': 1,
          'nthey': 1,
          'remain': 1,
          'little': 1,
          'placeholders': 1,
          'reading': 1,
          'insert': 1,
          'friend': 1,
          'adults': 1,
          'fully': 1,
          'realized': 1,
          'character': 1,
          'paints': 1,
          'merely': 1,
          'villainous': 1,
          'parent': 1,
          'standing': 1,
          'way': 1,
          'childs': 1,
          'dreams': 1,
          'instead': 1,
          'shows': 1,
          'multihued': 1,
          'portrait': 1,
          'man': 1,
          'wants': 1,
          'best': 1,
          'family': 1,
          'stubborn': 1,
          'realize': 1,
          'ndirector': 1,
          'joe': 1,
          'deserves': 1,
          'credit': 1,
          'successfully': 1,
          'navigating': 1,
          'obstacles': 1,
          'dodge': 1,
          'still': 1,
          'occasions': 1,
          'allows': 1,
          'things': 1,
          'proceed': 1,
          'step': 1,
          'far': 1,
          'nscenes': 1,
          'natural': 1,
          'inspiring': 1,
          'start': 1,
          'contrived': 1,
          'artificial': 1,
          'lapses': 1,
          'minimal': 1,
          'quickly': 1,
          'steers': 1,
          'movie': 1,
          'back': 1,
          'problem': 1,
          'socalled': 1,
          'films': 1,
          'attempt': 1,
          'force': 1,
          'mediciney': 1,
          'goodness': 1,
          'throat': 1,
          'noctober': 1,
          'resorts': 1,
          'level': 1,
          'yet': 1,
          'truly': 1,
          'purely': 1,
          'merits': 1,
          'npos': 1}),
 Counter({'clay': 3,
          'movie': 2,
          'footage': 2,
          'animation': 2,
          'like': 2,
          'three': 1,
          'hour': 1,
          'opens': 1,
          'view': 1,
          'singerguitar': 1,
          'playermusiciancomposer': 1,
          'frank': 1,
          'zappa': 1,
          'rehearsing': 1,
          'fellow': 1,
          'band': 1,
          'members': 1,
          'nall': 1,
          'rest': 1,
          'displays': 1,
          'compilation': 1,
          'mostly': 1,
          'concert': 1,
          'palladium': 1,
          'new': 1,
          'york': 1,
          'city': 1,
          'halloween': 1,
          '1979': 1,
          'nother': 1,
          'shows': 1,
          'backstage': 1,
          'foolishness': 1,
          'amazing': 1,
          'bruce': 1,
          'bickford': 1,
          'nthe': 1,
          'performance': 1,
          'titties': 1,
          'beer': 1,
          'played': 1,
          'entertaining': 1,
          'drummer': 1,
          'terry': 1,
          'bozzio': 1,
          'supplying': 1,
          'voice': 1,
          'devil': 1,
          'nfranks': 1,
          'guitar': 1,
          'solos': 1,
          'outdo': 1,
          'van': 1,
          'halen': 1,
          'hendrix': 1,
          'ive': 1,
          'ever': 1,
          'heard': 1,
          'nbruce': 1,
          'bickfords': 1,
          'outlandish': 1,
          'beyond': 1,
          'belief': 1,
          'zooms': 1,
          'morphings': 1,
          'etc': 1,
          'actually': 1,
          'doesnt': 1,
          'even': 1,
          'look': 1,
          'looks': 1,
          'meat': 1,
          'npos': 1}),
 Counter({'room': 8,
          'seth': 7,
          'boiler': 6,
          'films': 6,
          'nthe': 6,
          'cast': 5,
          'film': 5,
          'fight': 4,
          'younger': 4,
          'see': 4,
          'movie': 4,
          'club': 3,
          'point': 3,
          'well': 3,
          'true': 3,
          'performance': 3,
          'nicky': 3,
          'katt': 3,
          'fit': 3,
          'good': 3,
          'make': 3,
          'whole': 3,
          'major': 3,
          'years': 2,
          'nboth': 2,
          'young': 2,
          'men': 2,
          'seen': 2,
          'narrator': 2,
          'eventually': 2,
          'ben': 2,
          'generation': 2,
          'millionaire': 2,
          'actors': 2,
          'greedy': 2,
          'richer': 2,
          'action': 2,
          'people': 2,
          'nif': 2,
          'want': 2,
          'affleck': 2,
          'gives': 2,
          'nafter': 2,
          'college': 2,
          'job': 2,
          'coworkers': 2,
          'shares': 2,
          'something': 2,
          'company': 2,
          'scenes': 2,
          'impress': 2,
          'segments': 2,
          'never': 2,
          'enough': 2,
          'watching': 1,
          'constantly': 1,
          'reminded': 1,
          'last': 1,
          'masterpiece': 1,
          'consist': 1,
          'predominately': 1,
          'male': 1,
          'follow': 1,
          'illicitly': 1,
          'traditional': 1,
          'system': 1,
          'desires': 1,
          'nand': 1,
          'eyes': 1,
          'one': 1,
          'realizes': 1,
          'stopped': 1,
          'nwhile': 1,
          'writerdirector': 1,
          'get': 1,
          'across': 1,
          'david': 1,
          'fincher': 1,
          'contribute': 1,
          'another': 1,
          'impressive': 1,
          'work': 1,
          'series': 1,
          'aiming': 1,
          'represent': 1,
          'new': 1,
          'na': 1,
          'internet': 1,
          'prosper': 1,
          'everyone': 1,
          'wants': 1,
          'npaying': 1,
          'homage': 1,
          'oliver': 1,
          'stones': 1,
          '1987': 1,
          'classic': 1,
          'wall': 1,
          'street': 1,
          'almost': 1,
          'modernizing': 1,
          'tale': 1,
          'using': 1,
          'hipper': 1,
          'play': 1,
          'villains': 1,
          'opposed': 1,
          'older': 1,
          'experienced': 1,
          'types': 1,
          'nas': 1,
          'real': 1,
          'life': 1,
          'minds': 1,
          'becoming': 1,
          'knowledge': 1,
          'standard': 1,
          'technology': 1,
          'nboiler': 1,
          'dismisses': 1,
          'notion': 1,
          'ingenuity': 1,
          'shows': 1,
          'greed': 1,
          'desire': 1,
          'power': 1,
          'come': 1,
          'ages': 1,
          'nanother': 1,
          'similarity': 1,
          'flicks': 1,
          'nsome': 1,
          'convinced': 1,
          'allmale': 1,
          'automatically': 1,
          'means': 1,
          'must': 1,
          'gory': 1,
          'violence': 1,
          'proof': 1,
          'starring': 1,
          'go': 1,
          'reindeer': 1,
          'games': 1,
          'weekend': 1,
          'smart': 1,
          'insightful': 1,
          'excellent': 1,
          'acting': 1,
          'clever': 1,
          'script': 1,
          'ngiovanni': 1,
          'ribisi': 1,
          'outstanding': 1,
          'dropping': 1,
          'running': 1,
          'lucrative': 1,
          'gambling': 1,
          'center': 1,
          'students': 1,
          'apartment': 1,
          'offered': 1,
          'high': 1,
          'paying': 1,
          'wealthy': 1,
          'man': 1,
          'nhe': 1,
          'agrees': 1,
          'take': 1,
          'guaranteed': 1,
          'become': 1,
          'within': 1,
          'three': 1,
          'selling': 1,
          'stock': 1,
          'welloff': 1,
          'americans': 1,
          'midwest': 1,
          'telephone': 1,
          'begins': 1,
          'quite': 1,
          'nlearning': 1,
          'tricky': 1,
          'techniques': 1,
          'deceive': 1,
          'innocent': 1,
          'buying': 1,
          'production': 1,
          'figures': 1,
          'stumbling': 1,
          'wrong': 1,
          'time': 1,
          'knows': 1,
          'nat': 1,
          'left': 1,
          'ultimate': 1,
          'choice': 1,
          'continue': 1,
          'american': 1,
          'dream': 1,
          'millions': 1,
          'tell': 1,
          'authorities': 1,
          'fishy': 1,
          'going': 1,
          'nribisi': 1,
          'believable': 1,
          'especially': 1,
          'ron': 1,
          'rifkin': 1,
          'playing': 1,
          'seths': 1,
          'dad': 1,
          'two': 1,
          'perfect': 1,
          'chemistry': 1,
          'troubled': 1,
          'father': 1,
          'son': 1,
          'trying': 1,
          'simultaneously': 1,
          'transitions': 1,
          'anger': 1,
          'sympathy': 1,
          'contain': 1,
          'standout': 1,
          'entire': 1,
          'supporting': 1,
          'also': 1,
          'flawless': 1,
          'nben': 1,
          'shines': 1,
          'short': 1,
          'sweet': 1,
          'recruiter': 1,
          'fabulous': 1,
          'ostensibly': 1,
          'friendly': 1,
          'boss': 1,
          'becomes': 1,
          'extremely': 1,
          'jealous': 1,
          'vin': 1,
          'diesel': 1,
          'best': 1,
          'career': 1,
          'foil': 1,
          'character': 1,
          'energy': 1,
          'makes': 1,
          'paced': 1,
          'boring': 1,
          'error': 1,
          'nothing': 1,
          'happens': 1,
          'nthere': 1,
          'big': 1,
          'plot': 1,
          'twist': 1,
          'climatic': 1,
          'memorable': 1,
          'ndue': 1,
          'lack': 1,
          'event': 1,
          'finds': 1,
          'suitable': 1,
          'genre': 1,
          'intense': 1,
          'thriller': 1,
          'romantic': 1,
          'involving': 1,
          'abby': 1,
          'nia': 1,
          'long': 1,
          'properly': 1,
          'finalized': 1,
          'dialogue': 1,
          'isnt': 1,
          'funny': 1,
          'comedy': 1,
          'nin': 1,
          'trouble': 1,
          'characterize': 1,
          'slightly': 1,
          'confused': 1,
          'times': 1,
          'nit': 1,
          'doesnt': 1,
          'seem': 1,
          'know': 1,
          'category': 1,
          'none': 1,
          'satisfying': 1,
          'concluding': 1,
          'scene': 1,
          'could': 1,
          'changed': 1,
          'better': 1,
          'notherwise': 1,
          'fun': 1,
          'watch': 1,
          'thanks': 1,
          'lively': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'film': 6,
          'hong': 5,
          'hollywood': 5,
          'dont': 5,
          'action': 5,
          'one': 4,
          'thing': 4,
          'risk': 4,
          'new': 4,
          'kong': 4,
          'van': 4,
          'nin': 4,
          'well': 4,
          'little': 4,
          'films': 4,
          'n': 4,
          'get': 3,
          'maximum': 3,
          'russians': 3,
          'damme': 3,
          'also': 3,
          'hard': 3,
          'target': 3,
          'french': 3,
          'brother': 3,
          'york': 3,
          'know': 3,
          'russian': 3,
          'killed': 3,
          'much': 3,
          'time': 3,
          'think': 3,
          'good': 3,
          'seen': 3,
          'nthe': 3,
          'expect': 3,
          'nbut': 3,
          'watching': 3,
          'lets': 2,
          'really': 2,
          'lam': 2,
          'minor': 2,
          'woos': 2,
          'lams': 2,
          'alain': 2,
          'cop': 2,
          'sense': 2,
          'twin': 2,
          'nthis': 2,
          'mikhail': 2,
          'becomes': 2,
          'france': 2,
          'anything': 2,
          'still': 2,
          'breasts': 2,
          'us': 2,
          'thats': 2,
          'certain': 2,
          'like': 2,
          'part': 2,
          'spectacle': 2,
          'share': 2,
          'car': 2,
          'chases': 2,
          'even': 2,
          'hell': 2,
          'come': 2,
          'see': 2,
          'fight': 2,
          'quaint': 2,
          'guy': 2,
          'dramatic': 2,
          'become': 2,
          'sort': 2,
          'better': 2,
          'ok': 1,
          'straight': 1,
          'right': 1,
          'away': 1,
          'battleship': 1,
          'potemkin': 1,
          'although': 1,
          'bad': 1,
          'nits': 1,
          'ringo': 1,
          'latest': 1,
          'filmmaker': 1,
          'defect': 1,
          'stars': 1,
          'league': 1,
          'schwartzeneggar': 1,
          'belgium': 1,
          'jeanclaude': 1,
          'recall': 1,
          'starred': 1,
          'john': 1,
          'maiden': 1,
          'effort': 1,
          'plays': 1,
          'moreau': 1,
          'least': 1,
          'accent': 1,
          'makes': 1,
          'discovers': 1,
          'separated': 1,
          'shortly': 1,
          'birth': 1,
          'adopted': 1,
          'nthese': 1,
          'defected': 1,
          'united': 1,
          'states': 1,
          'moved': 1,
          'black': 1,
          'neighbourhood': 1,
          'suppose': 1,
          'thought': 1,
          'wouldnt': 1,
          'noticed': 1,
          'suverov': 1,
          'played': 1,
          'scenes': 1,
          'nyou': 1,
          'deeply': 1,
          'involved': 1,
          'mafia': 1,
          'fbi': 1,
          'almost': 1,
          'guess': 1,
          'things': 1,
          'happen': 1,
          'fast': 1,
          'weird': 1,
          'nmoreau': 1,
          'surviving': 1,
          'would': 1,
          'goes': 1,
          'find': 1,
          'everyone': 1,
          'knows': 1,
          'wonder': 1,
          'odessa': 1,
          'meets': 1,
          'mikhails': 1,
          'girlfriend': 1,
          'alex': 1,
          'natasha': 1,
          'henstridge': 1,
          'last': 1,
          'species': 1,
          'helps': 1,
          'solve': 1,
          'mystery': 1,
          'adds': 1,
          'immeasurably': 1,
          'miseenscene': 1,
          'nice': 1,
          'briefly': 1,
          'rated': 1,
          'r': 1,
          'pg': 1,
          'must': 1,
          'lacks': 1,
          'gloss': 1,
          'high': 1,
          'production': 1,
          'values': 1,
          'movies': 1,
          'broken': 1,
          'arrow': 1,
          'fugitive': 1,
          'starring': 1,
          'arnold': 1,
          'works': 1,
          'benefit': 1,
          'nafter': 1,
          'missing': 1,
          'funkiness': 1,
          'love': 1,
          'nmovies': 1,
          'shouldnt': 1,
          'pretentious': 1,
          'problem': 1,
          'try': 1,
          'big': 1,
          'terms': 1,
          'special': 1,
          'effects': 1,
          'sheer': 1,
          'nmaximum': 1,
          'explosions': 1,
          'overwhelm': 1,
          'detract': 1,
          'attention': 1,
          'narrative': 1,
          'anyway': 1,
          'emphasis': 1,
          'throughout': 1,
          'characters': 1,
          'interactions': 1,
          'times': 1,
          'make': 1,
          'lot': 1,
          'fact': 1,
          'interesting': 1,
          'aspects': 1,
          'character': 1,
          'rather': 1,
          'overeager': 1,
          'cabbie': 1,
          'frank': 1,
          'keeken': 1,
          'tvs': 1,
          'kids': 1,
          'hall': 1,
          'begins': 1,
          'something': 1,
          'joke': 1,
          'important': 1,
          'story': 1,
          'nunfortunately': 1,
          'interested': 1,
          'nyoull': 1,
          'features': 1,
          'set': 1,
          'pieces': 1,
          'type': 1,
          'compatriots': 1,
          'none': 1,
          'sauna': 1,
          'lots': 1,
          'sweaty': 1,
          'muscular': 1,
          'male': 1,
          'flesh': 1,
          'appeal': 1,
          'parts': 1,
          'audience': 1,
          'others': 1,
          'bullets': 1,
          'heads': 1,
          'vodka': 1,
          'nanother': 1,
          'personal': 1,
          'favorite': 1,
          'meat': 1,
          'packing': 1,
          'house': 1,
          'featuring': 1,
          'pig': 1,
          'carcasses': 1,
          'chainsaw': 1,
          'nand': 1,
          'predictable': 1,
          'trash': 1,
          'cafes': 1,
          'vegetable': 1,
          'carts': 1,
          'people': 1,
          'hearts': 1,
          'deserve': 1,
          'trashing': 1,
          'damn': 1,
          'nof': 1,
          'course': 1,
          'silliness': 1,
          'nfor': 1,
          'example': 1,
          'beating': 1,
          'crap': 1,
          'obnoxious': 1,
          'thug': 1,
          'obviously': 1,
          'deserves': 1,
          'hes': 1,
          'getting': 1,
          'stops': 1,
          'long': 1,
          'enough': 1,
          'look': 1,
          'reflection': 1,
          'cracked': 1,
          'mirror': 1,
          'whacking': 1,
          'head': 1,
          'unnecessarily': 1,
          'moment': 1,
          'apparently': 1,
          'shocked': 1,
          'sees': 1,
          'na': 1,
          'tough': 1,
          'beats': 1,
          'tried': 1,
          'kill': 1,
          'ndoesnt': 1,
          'sound': 1,
          'unreasonable': 1,
          'considering': 1,
          'genre': 1,
          'face': 1,
          'tries': 1,
          'looks': 1,
          'silly': 1,
          'nso': 1,
          'different': 1,
          'nwhile': 1,
          'surprised': 1,
          'disappointed': 1,
          'relative': 1,
          'lack': 1,
          'pyrotechnics': 1,
          'experiencing': 1,
          'sugar': 1,
          'rush': 1,
          'initial': 1,
          'excitement': 1,
          'theres': 1,
          'left': 1,
          'nalthough': 1,
          'short': 1,
          'leaves': 1,
          'lasting': 1,
          'impression': 1,
          'nim': 1,
          'impressed': 1,
          'sign': 1,
          'ngo': 1,
          'typical': 1,
          'funky': 1,
          'konghollywood': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'creaky': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'ndr': 1,
          'white': 1,
          'teaches': 1,
          'english': 1,
          'language': 1,
          'literature': 1,
          'department': 1,
          'national': 1,
          'university': 1,
          'singapore': 1,
          'hold': 1,
          'npos': 1}),
 Counter({'film': 9,
          'full': 5,
          'monty': 5,
          'people': 4,
          'time': 3,
          'club': 3,
          'well': 3,
          'gerald': 3,
          'get': 3,
          'way': 3,
          'success': 2,
          'humour': 2,
          'movie': 2,
          'industry': 2,
          'one': 2,
          'former': 2,
          'nthe': 2,
          'sort': 2,
          'ngaz': 2,
          'carlyle': 2,
          'workers': 2,
          'jobless': 2,
          'around': 2,
          'dave': 2,
          'months': 2,
          'desperation': 2,
          'money': 2,
          'problems': 2,
          'also': 2,
          'wife': 2,
          'leaving': 2,
          'financial': 2,
          'work': 2,
          'real': 2,
          'sure': 2,
          'managed': 2,
          'stripact': 2,
          'pay': 2,
          'nit': 2,
          'small': 2,
          'delves': 2,
          'nwhile': 2,
          'trainspotting': 2,
          'onscreen': 2,
          'acting': 2,
          'trailing': 1,
          'brit': 1,
          'likes': 1,
          'semidramatic': 1,
          'commitments': 1,
          'nearly': 1,
          'slapstick': 1,
          'fish': 1,
          'called': 1,
          'wanda': 1,
          'delivered': 1,
          'depth': 1,
          'magnitude': 1,
          'latter': 1,
          'opens': 1,
          'narrated': 1,
          'documentary': 1,
          'reel': 1,
          'showing': 1,
          'improving': 1,
          'economic': 1,
          'living': 1,
          'standards': 1,
          'sheffield': 1,
          '60s': 1,
          'cut': 1,
          'harsh': 1,
          'reality': 1,
          'present': 1,
          'nsheffield': 1,
          'become': 1,
          'semislum': 1,
          'visible': 1,
          'increase': 1,
          'anything': 1,
          'amount': 1,
          'layoffs': 1,
          'steelfactories': 1,
          'flourishing': 1,
          'spends': 1,
          'place': 1,
          'sit': 1,
          'wait': 1,
          'job': 1,
          'offers': 1,
          'nhe': 1,
          'plump': 1,
          'friend': 1,
          'addy': 1,
          'foreman': 1,
          'wilkinson': 1,
          'sitting': 1,
          'without': 1,
          'call': 1,
          'duty': 1,
          'nwhat': 1,
          'seemingly': 1,
          'passing': 1,
          'hard': 1,
          'gaz': 1,
          'suddenly': 1,
          'transformed': 1,
          'afford': 1,
          '700': 1,
          'pounds': 1,
          'childsupport': 1,
          'exwife': 1,
          'nsuddenly': 1,
          'finding': 1,
          'facing': 1,
          'possiblity': 1,
          'losing': 1,
          'custody': 1,
          'son': 1,
          'goes': 1,
          'concoct': 1,
          'enterprising': 1,
          'wildidea': 1,
          'desperately': 1,
          'requires': 1,
          'ndave': 1,
          'non': 1,
          'top': 1,
          'lack': 1,
          'employment': 1,
          'faced': 1,
          'paranoia': 1,
          'current': 1,
          'state': 1,
          'hisplump': 1,
          'appearance': 1,
          'cheating': 1,
          'telling': 1,
          'layoff': 1,
          'long': 1,
          '6': 1,
          'home': 1,
          'actually': 1,
          'longstanding': 1,
          'member': 1,
          'nthere': 1,
          'notsopractical': 1,
          'solution': 1,
          'manages': 1,
          'support': 1,
          'enough': 1,
          'poor': 1,
          'blokes': 1,
          'join': 1,
          'gag': 1,
          'perform': 1,
          'local': 1,
          'pub': 1,
          'nin': 1,
          'gazs': 1,
          'words': 1,
          'looking': 1,
          'add': 1,
          'featuring': 1,
          'hunky': 1,
          'beautiful': 1,
          'men': 1,
          'women': 1,
          'willing': 1,
          'realmen': 1,
          'simple': 1,
          'nature': 1,
          'trace': 1,
          'ambitious': 1,
          'harshreality': 1,
          'unemployment': 1,
          'drives': 1,
          'light': 1,
          'watch': 1,
          'despite': 1,
          'theme': 1,
          'lot': 1,
          'humanfactor': 1,
          'going': 1,
          'nnever': 1,
          'trying': 1,
          'manipulative': 1,
          'true': 1,
          'hilarity': 1,
          'level': 1,
          'soared': 1,
          'unexpectedly': 1,
          'high': 1,
          'audience': 1,
          'find': 1,
          'cheated': 1,
          'laugh': 1,
          'something': 1,
          'lacking': 1,
          'many': 1,
          'comedy': 1,
          'films': 1,
          'wannabes': 1,
          'hollywood': 1,
          'nother': 1,
          'acted': 1,
          'psychotic': 1,
          'begbie': 1,
          'rest': 1,
          'actors': 1,
          'definitely': 1,
          'new': 1,
          'nhowever': 1,
          'presented': 1,
          'satisfying': 1,
          'ncarlyles': 1,
          'stark': 1,
          'contrast': 1,
          'character': 1,
          'implying': 1,
          'skill': 1,
          'flexibility': 1,
          'nkudos': 1,
          'involved': 1,
          'especially': 1,
          'director': 1,
          'peter': 1,
          'cattaneo': 1,
          'able': 1,
          'put': 1,
          'together': 1,
          'excellent': 1,
          'much': 1,
          'potential': 1,
          'ending': 1,
          'justanotherstriptease': 1,
          'nalready': 1,
          'critical': 1,
          'humble': 1,
          'deserves': 1,
          'applause': 1,
          'throughout': 1,
          'titanic': 1,
          'feast': 1,
          'eyes': 1,
          'soul': 1,
          'epic': 1,
          'gives': 1,
          'satisfaction': 1,
          'nhalf': 1,
          'npos': 1}),
 Counter({'tarzan': 13,
          'disney': 10,
          'one': 9,
          'ape': 6,
          'feature': 6,
          'film': 6,
          'animated': 5,
          'jane': 5,
          'ohh': 5,
          'ee': 5,
          'usual': 4,
          'really': 4,
          'apes': 4,
          'think': 4,
          'romance': 4,
          'animation': 4,
          'put': 3,
          'us': 3,
          'family': 3,
          'boy': 3,
          'story': 3,
          'young': 3,
          'gets': 3,
          'see': 3,
          'couple': 3,
          'rosie': 3,
          'odonnell': 3,
          'immediately': 3,
          'come': 3,
          'scene': 3,
          'voice': 3,
          'music': 3,
          'youll': 2,
          'go': 2,
          'theres': 2,
          'quote': 2,
          'movie': 2,
          'right': 2,
          'action': 2,
          'beginning': 2,
          'attempts': 2,
          'mother': 2,
          'infant': 2,
          'make': 2,
          'song': 2,
          'phil': 2,
          'collins': 2,
          'soon': 2,
          'know': 2,
          'baby': 2,
          'ntarzan': 2,
          'wild': 2,
          'tarzans': 2,
          'father': 2,
          'true': 2,
          'adult': 2,
          'friends': 2,
          'named': 2,
          'terk': 2,
          'elephant': 2,
          'n': 2,
          'get': 2,
          'nwe': 2,
          'nwell': 2,
          'nhowever': 2,
          'found': 2,
          'name': 2,
          'tell': 2,
          'nbut': 2,
          'ndo': 2,
          'well': 2,
          'time': 2,
          'songs': 2,
          'nthis': 2,
          'isnt': 2,
          'nwith': 2,
          'new': 2,
          'even': 2,
          'since': 2,
          'year': 2,
          'scenes': 2,
          'absolutely': 2,
          'nthe': 2,
          'thinking': 2,
          'chandelier': 2,
          'say': 2,
          'went': 2,
          'fun': 1,
          'barrel': 1,
          'monkeys': 1,
          'nokay': 1,
          'case': 1,
          'wants': 1,
          'something': 1,
          'ads': 1,
          'ndisneys': 1,
          'latest': 1,
          'throws': 1,
          'skipping': 1,
          'main': 1,
          'title': 1,
          'sequence': 1,
          'putting': 1,
          'pitching': 1,
          'waves': 1,
          'small': 1,
          'escape': 1,
          'sinking': 1,
          'ship': 1,
          'nfather': 1,
          'somehow': 1,
          'shore': 1,
          'amidst': 1,
          'rousing': 1,
          'built': 1,
          'treehouse': 1,
          'would': 1,
          'impress': 1,
          'swiss': 1,
          'robinson': 1,
          'nits': 1,
          'amazing': 1,
          'kinds': 1,
          'things': 1,
          'work': 1,
          'soundtrack': 1,
          'nbefore': 1,
          'unfortunate': 1,
          'set': 1,
          'circumstances': 1,
          'hands': 1,
          'kala': 1,
          'glenn': 1,
          'close': 1,
          'recently': 1,
          'lost': 1,
          'predatory': 1,
          'leopard': 1,
          'nagainst': 1,
          'wishes': 1,
          'mate': 1,
          'leader': 1,
          'kerchak': 1,
          'lance': 1,
          'henricksen': 1,
          'takes': 1,
          'much': 1,
          'human': 1,
          'surviving': 1,
          'african': 1,
          'jungles': 1,
          'fit': 1,
          'either': 1,
          'humanity': 1,
          'nmuch': 1,
          'life': 1,
          'spent': 1,
          'trying': 1,
          'become': 1,
          'eyes': 1,
          'peers': 1,
          'occasionally': 1,
          'trouble': 1,
          'matter': 1,
          'wellmeant': 1,
          'nall': 1,
          'hes': 1,
          'looking': 1,
          'acceptance': 1,
          'perhaps': 1,
          'goal': 1,
          'easily': 1,
          'identifiable': 1,
          'viewers': 1,
          'ring': 1,
          'lot': 1,
          'adults': 1,
          'nwhen': 1,
          'fits': 1,
          'formula': 1,
          'outcast': 1,
          'triumphs': 1,
          'end': 1,
          'nlook': 1,
          'back': 1,
          'past': 1,
          'features': 1,
          'trend': 1,
          'ngrowing': 1,
          'voiced': 1,
          'alex': 1,
          'linz': 1,
          'child': 1,
          'tony': 1,
          'goldwyn': 1,
          'none': 1,
          'paranoid': 1,
          'hypochondriac': 1,
          'tantor': 1,
          'wayne': 1,
          'knight': 1,
          'nboth': 1,
          'provide': 1,
          'requisite': 1,
          'comic': 1,
          'relief': 1,
          'timon': 1,
          'poombah': 1,
          'lion': 1,
          'king': 1,
          'mind': 1,
          'perform': 1,
          'hijinks': 1,
          'prescribed': 1,
          'mold': 1,
          'nim': 1,
          'anyone': 1,
          'write': 1,
          'screenplay': 1,
          'films': 1,
          'njust': 1,
          'fill': 1,
          'blanks': 1,
          'ncan': 1,
          'zany': 1,
          'hero': 1,
          'might': 1,
          'mischief': 1,
          'cover': 1,
          'rescue': 1,
          'needs': 1,
          'nweve': 1,
          'already': 1,
          'fish': 1,
          'crab': 1,
          'weve': 1,
          'candle': 1,
          'teapot': 1,
          'genie': 1,
          'dog': 1,
          'stone': 1,
          'statues': 1,
          'yet': 1,
          'nof': 1,
          'course': 1,
          'got': 1,
          'ta': 1,
          'somewhere': 1,
          'along': 1,
          'line': 1,
          'minnie': 1,
          'driver': 1,
          'introduced': 1,
          'halfway': 1,
          'ntogether': 1,
          'dr': 1,
          'porter': 1,
          'nigel': 1,
          'hawthorne': 1,
          'big': 1,
          'game': 1,
          'hunter': 1,
          'clayton': 1,
          'brian': 1,
          'blessed': 1,
          'expedition': 1,
          'find': 1,
          'study': 1,
          'gorillas': 1,
          'africa': 1,
          'nshe': 1,
          'discovers': 1,
          'man': 1,
          'raised': 1,
          'enchanted': 1,
          'almost': 1,
          'shares': 1,
          'amusing': 1,
          'version': 1,
          'compulsory': 1,
          'nthankfully': 1,
          'arent': 1,
          'exact': 1,
          'words': 1,
          'distracting': 1,
          'going': 1,
          'second': 1,
          'tells': 1,
          'manly': 1,
          'perfect': 1,
          'diction': 1,
          'nhow': 1,
          'another': 1,
          'regardless': 1,
          'picky': 1,
          'nature': 1,
          'actually': 1,
          'works': 1,
          'purely': 1,
          'contrived': 1,
          'reason': 1,
          'rather': 1,
          'believable': 1,
          'hey': 1,
          'dated': 1,
          'female': 1,
          'meeting': 1,
          'nisnt': 1,
          'illegal': 1,
          'countries': 1,
          'noh': 1,
          'ni': 1,
          'dont': 1,
          'using': 1,
          'anymore': 1,
          'departs': 1,
          'musical': 1,
          'ntheres': 1,
          'lots': 1,
          'sure': 1,
          'single': 1,
          'character': 1,
          'whole': 1,
          'hour': 1,
          'half': 1,
          'running': 1,
          'instead': 1,
          'concert': 1,
          'less': 1,
          'five': 1,
          'original': 1,
          'used': 1,
          'interlude': 1,
          'material': 1,
          'bad': 1,
          'thing': 1,
          'highenergy': 1,
          'catchy': 1,
          'singing': 1,
          'following': 1,
          'day': 1,
          'different': 1,
          'favor': 1,
          'theater': 1,
          'good': 1,
          'sound': 1,
          'system': 1,
          'astonishingly': 1,
          'enhance': 1,
          'better': 1,
          'nnot': 1,
          'necessarily': 1,
          'leaps': 1,
          'bounds': 1,
          'steady': 1,
          'rate': 1,
          'improvement': 1,
          'apparent': 1,
          'definitely': 1,
          'shows': 1,
          'nthere': 1,
          'achieves': 1,
          'near': 1,
          '3d': 1,
          'effect': 1,
          'number': 1,
          'moving': 1,
          'trees': 1,
          'dizzying': 1,
          'way': 1,
          'slides': 1,
          'tree': 1,
          'limbs': 1,
          'trunks': 1,
          'reminiscent': 1,
          'skateboarding': 1,
          'rollerblading': 1,
          'maneuvers': 1,
          'extreme': 1,
          'seem': 1,
          'call': 1,
          'animators': 1,
          'chosen': 1,
          'devote': 1,
          'inordinate': 1,
          'amount': 1,
          'effort': 1,
          'utilizing': 1,
          'computerassisted': 1,
          'process': 1,
          'makes': 1,
          'breathtaking': 1,
          'nlasting': 1,
          'seconds': 1,
          'signature': 1,
          'nearly': 1,
          'every': 1,
          'beauty': 1,
          'beast': 1,
          'castle': 1,
          'ballroom': 1,
          'rendered': 1,
          'stunning': 1,
          'detail': 1,
          'nas': 1,
          'talent': 1,
          'snuff': 1,
          'convincingly': 1,
          'believe': 1,
          'convictions': 1,
          'characters': 1,
          'poor': 1,
          'choice': 1,
          'casting': 1,
          'however': 1,
          'ngoing': 1,
          'didnt': 1,
          'part': 1,
          'started': 1,
          'talking': 1,
          'recognized': 1,
          'nher': 1,
          'performance': 1,
          'fine': 1,
          'rest': 1,
          'kept': 1,
          'thats': 1,
          'ndistracting': 1,
          'least': 1,
          'nill': 1,
          'admit': 1,
          'ive': 1,
          'never': 1,
          'read': 1,
          'edgar': 1,
          'rice': 1,
          'burroughs': 1,
          'couldnt': 1,
          'stays': 1,
          'book': 1,
          'unless': 1,
          'youre': 1,
          'purist': 1,
          'objections': 1,
          'solid': 1,
          'performances': 1,
          'adventure': 1,
          'bit': 1,
          'great': 1,
          'appeal': 1,
          'kids': 1,
          'kid': 1,
          'nnote': 1,
          'wrote': 1,
          'review': 1,
          'mulan': 1,
          'ago': 1,
          'promotional': 1,
          'merchandising': 1,
          'tieins': 1,
          'prevalent': 1,
          'release': 1,
          'ill': 1,
          'mcdonalds': 1,
          'yesterday': 1,
          'treat': 1,
          'mcflurry': 1,
          'cup': 1,
          'nnuff': 1,
          'said': 1,
          'npos': 1}),
 Counter({'youve': 4,
          'got': 4,
          'mail': 4,
          'ephrons': 4,
          'two': 4,
          'hanks': 4,
          'people': 3,
          'ryan': 3,
          'via': 2,
          'email': 2,
          'revealing': 2,
          'true': 2,
          'film': 2,
          'nryan': 2,
          'ntheir': 2,
          'even': 2,
          'one': 2,
          'nand': 2,
          'scenes': 2,
          'earlier': 2,
          'nthe': 2,
          'movie': 2,
          'script': 2,
          'nice': 2,
          'timely': 1,
          'romance': 1,
          'impersonal': 1,
          'computerdriven': 1,
          'decade': 1,
          'ntwo': 1,
          'whove': 1,
          'never': 1,
          'met': 1,
          'confide': 1,
          'without': 1,
          'identities': 1,
          'nnora': 1,
          'contemporary': 1,
          'update': 1,
          'shop': 1,
          'around': 1,
          'corner': 1,
          'retains': 1,
          'basic': 1,
          'plot': 1,
          'despise': 1,
          'unwittingly': 1,
          'become': 1,
          'enamored': 1,
          'anonymous': 1,
          'correspondence': 1,
          'nephron': 1,
          'cowrote': 1,
          'sister': 1,
          'delia': 1,
          'well': 1,
          'directed': 1,
          'knew': 1,
          'reteaming': 1,
          'tom': 1,
          'meg': 1,
          'atodds': 1,
          'couple': 1,
          'kathleen': 1,
          'kelly': 1,
          'owner': 1,
          'small': 1,
          'childrens': 1,
          'bookstore': 1,
          'joe': 1,
          'fox': 1,
          'heads': 1,
          'chain': 1,
          'mega': 1,
          'bookstores': 1,
          'think': 1,
          'barnes': 1,
          'noble': 1,
          'charm': 1,
          'chemistry': 1,
          'glue': 1,
          'binds': 1,
          'scripts': 1,
          'rough': 1,
          'spots': 1,
          'nfor': 1,
          'invested': 1,
          'much': 1,
          'effort': 1,
          'protagonists': 1,
          'give': 1,
          'short': 1,
          'shrift': 1,
          'talented': 1,
          'supporting': 1,
          'cast': 1,
          'including': 1,
          'parker': 1,
          'posey': 1,
          'greg': 1,
          'kinnear': 1,
          'jean': 1,
          'stapleton': 1,
          'steve': 1,
          'zahn': 1,
          'nyet': 1,
          'really': 1,
          'going': 1,
          'complain': 1,
          'know': 1,
          'audience': 1,
          'paying': 1,
          'public': 1,
          'wants': 1,
          'kept': 1,
          'busy': 1,
          'none': 1,
          'nearly': 1,
          'every': 1,
          'scene': 1,
          'nhanks': 1,
          'decent': 1,
          'guy': 1,
          'routine': 1,
          'pat': 1,
          'yet': 1,
          'time': 1,
          'seems': 1,
          'effortless': 1,
          'spontaneous': 1,
          'fresh': 1,
          'smoothly': 1,
          'moves': 1,
          'spunky': 1,
          'vulnerable': 1,
          'sexy': 1,
          'touch': 1,
          'winsomeness': 1,
          'added': 1,
          'brew': 1,
          'together': 1,
          'sparkle': 1,
          'though': 1,
          'lack': 1,
          'nostalgic': 1,
          'romanticism': 1,
          'sleepless': 1,
          'seattle': 1,
          'shadow': 1,
          'hit': 1,
          'hangs': 1,
          'like': 1,
          'driedup': 1,
          'mistletoe': 1,
          'sparks': 1,
          'created': 1,
          'necessity': 1,
          'evident': 1,
          'ntrue': 1,
          'seeking': 1,
          'love': 1,
          'comic': 1,
          'less': 1,
          'poignant': 1,
          'predecessor': 1,
          'witty': 1,
          'sharp': 1,
          'nhowever': 1,
          'director': 1,
          'nora': 1,
          'ephron': 1,
          'bit': 1,
          'uneven': 1,
          'nsome': 1,
          'drag': 1,
          'others': 1,
          'especially': 1,
          'souls': 1,
          'crisp': 1,
          'tidy': 1,
          'nalso': 1,
          'gets': 1,
          'sloppy': 1,
          'toward': 1,
          'end': 1,
          'characters': 1,
          'merely': 1,
          'disappearing': 1,
          'story': 1,
          'na': 1,
          'romantic': 1,
          'soundtrack': 1,
          'adds': 1,
          'datenight': 1,
          'special': 1,
          'noverall': 1,
          'lush': 1,
          'cute': 1,
          'outing': 1,
          'taking': 1,
          'advantage': 1,
          'star': 1,
          'appeal': 1,
          'leads': 1,
          'nits': 1,
          'holiday': 1,
          'holding': 1,
          'hands': 1,
          'snuggling': 1,
          'ncommitted': 1,
          'lifelong': 1,
          'learning': 1,
          'effective': 1,
          'communication': 1,
          'npos': 1}),
 Counter({'film': 12,
          'characters': 9,
          'fellini': 7,
          'one': 6,
          'amarcord': 6,
          'even': 6,
          'rimini': 5,
          'could': 4,
          'neven': 4,
          'popular': 4,
          'italian': 4,
          'views': 4,
          'local': 4,
          'often': 4,
          'fellinis': 4,
          'scenes': 4,
          'life': 3,
          'town': 3,
          '1930s': 3,
          'depict': 3,
          'many': 3,
          'played': 3,
          'past': 3,
          'way': 3,
          'fantasies': 3,
          'opportunity': 3,
          'nfellini': 3,
          'movies': 2,
          'small': 2,
          'human': 2,
          'dark': 2,
          'later': 2,
          'non': 2,
          'hand': 2,
          'ocean': 2,
          'films': 2,
          'view': 2,
          'nthis': 2,
          'comedy': 2,
          'federico': 2,
          'gave': 2,
          'series': 2,
          'well': 2,
          'movie': 2,
          'sexual': 2,
          'mussolinis': 2,
          'regime': 2,
          'nostalgia': 2,
          'probably': 2,
          'people': 2,
          'actually': 2,
          'like': 2,
          'much': 2,
          'nevery': 2,
          'would': 2,
          'clearly': 2,
          'word': 2,
          'nothing': 2,
          'remember': 2,
          'doesnt': 2,
          'whether': 2,
          'place': 2,
          'reality': 2,
          'humour': 2,
          'grotesque': 2,
          'caricatures': 2,
          'especially': 2,
          'becomes': 2,
          'almost': 2,
          'magical': 2,
          'nbecause': 2,
          'real': 2,
          'fascism': 2,
          'gets': 2,
          'colours': 2,
          'warmth': 2,
          'atmosphere': 2,
          'effects': 2,
          'talent': 2,
          'also': 2,
          'knows': 2,
          'everyone': 2,
          'music': 2,
          'according': 1,
          'hollywood': 1,
          'made': 1,
          'last': 1,
          'decades': 1,
          'worst': 1,
          'things': 1,
          'happen': 1,
          'worse': 1,
          'fate': 1,
          'awaits': 1,
          'unfortunate': 1,
          'grow': 1,
          'godforsaken': 1,
          'places': 1,
          'forced': 1,
          'live': 1,
          'forever': 1,
          'traumatised': 1,
          'experience': 1,
          'seems': 1,
          'something': 1,
          'atlantic': 1,
          'divides': 1,
          'europe': 1,
          'america': 1,
          'beloved': 1,
          'european': 1,
          'takes': 1,
          'exactly': 1,
          'opposite': 1,
          '1974': 1,
          'famous': 1,
          'director': 1,
          'inspiration': 1,
          'numerous': 1,
          'imitations': 1,
          'homages': 1,
          'led': 1,
          'american': 1,
          'screen': 1,
          'artists': 1,
          'adopt': 1,
          'heretical': 1,
          'benefits': 1,
          'nthe': 1,
          'based': 1,
          'screenplay': 1,
          'tonino': 1,
          'guerra': 1,
          'lacks': 1,
          'plot': 1,
          'usual': 1,
          'sense': 1,
          'ninstead': 1,
          'follow': 1,
          'year': 1,
          'summer': 1,
          'resort': 1,
          'short': 1,
          'vignettes': 1,
          'various': 1,
          'events': 1,
          'customs': 1,
          'colourful': 1,
          'nalthough': 1,
          'occasionally': 1,
          'take': 1,
          'role': 1,
          'narrator': 1,
          'concentrates': 1,
          'nominal': 1,
          'protagonist': 1,
          '14year': 1,
          'old': 1,
          'boy': 1,
          'titta': 1,
          'bruno': 1,
          'zanin': 1,
          'chronicles': 1,
          'frustrations': 1,
          'obsession': 1,
          'beauty': 1,
          'queen': 1,
          'named': 1,
          'gradisca': 1,
          'magali': 1,
          'noel': 1,
          'problems': 1,
          'lovingly': 1,
          'dysfunctional': 1,
          'family': 1,
          'troubles': 1,
          'father': 1,
          'armando': 1,
          'brancia': 1,
          'fascist': 1,
          'namarcord': 1,
          'noted': 1,
          'ultimate': 1,
          'explains': 1,
          'among': 1,
          'dont': 1,
          'work': 1,
          'member': 1,
          'potential': 1,
          'audience': 1,
          'find': 1,
          'part': 1,
          'illustrates': 1,
          'natural': 1,
          'desire': 1,
          'paint': 1,
          'best': 1,
          'possible': 1,
          'ndistortion': 1,
          'actual': 1,
          'subjective': 1,
          'interpretation': 1,
          'found': 1,
          'title': 1,
          'badly': 1,
          'pronounced': 1,
          'phrase': 1,
          'dialect': 1,
          'nin': 1,
          'distorted': 1,
          'memories': 1,
          'nafter': 1,
          'premiere': 1,
          'rejected': 1,
          'claims': 1,
          'autobiographical': 1,
          'character': 1,
          'matter': 1,
          'resembles': 1,
          'childhood': 1,
          'time': 1,
          'resemble': 1,
          'situations': 1,
          'nfellinis': 1,
          'illustrated': 1,
          'mixes': 1,
          'fantasy': 1,
          'naturalistic': 1,
          'laced': 1,
          'images': 1,
          'ncharacters': 1,
          'look': 1,
          'actors': 1,
          'playing': 1,
          'deliberately': 1,
          'overact': 1,
          'women': 1,
          'fuel': 1,
          'tittas': 1,
          'certain': 1,
          'body': 1,
          'parts': 1,
          'gargantuan': 1,
          'proportions': 1,
          'gradually': 1,
          'slide': 1,
          'indistinguishable': 1,
          'visions': 1,
          'everything': 1,
          'looks': 1,
          'different': 1,
          'cases': 1,
          'better': 1,
          'looked': 1,
          'fellinian': 1,
          'makeover': 1,
          'totalitarian': 1,
          'visual': 1,
          'spectacle': 1,
          'explaining': 1,
          'similar': 1,
          'regimes': 1,
          'enjoyed': 1,
          'support': 1,
          'throughout': 1,
          'history': 1,
          'nwhen': 1,
          'fascists': 1,
          'finally': 1,
          'show': 1,
          'true': 1,
          'begin': 1,
          'torturing': 1,
          'opponents': 1,
          'macabre': 1,
          'nunlike': 1,
          'colleagues': 1,
          '1970s': 1,
          'used': 1,
          'period': 1,
          'setting': 1,
          'explicitly': 1,
          'condemn': 1,
          'serve': 1,
          'fashionable': 1,
          'political': 1,
          'agenda': 1,
          'care': 1,
          'politics': 1,
          'nlack': 1,
          'selfrighteous': 1,
          'moral': 1,
          'perspective': 1,
          'compensated': 1,
          'humanistic': 1,
          'approach': 1,
          'neach': 1,
          'regardless': 1,
          'age': 1,
          'gender': 1,
          'social': 1,
          'class': 1,
          'physical': 1,
          'appearance': 1,
          'given': 1,
          'express': 1,
          'dreams': 1,
          'fears': 1,
          'treats': 1,
          'affection': 1,
          'paints': 1,
          'democratic': 1,
          'spirit': 1,
          'viewed': 1,
          'humane': 1,
          '20th': 1,
          'century': 1,
          'keeps': 1,
          'general': 1,
          'feel': 1,
          'good': 1,
          'despite': 1,
          'depicting': 1,
          'uncomfortable': 1,
          'melancholic': 1,
          'tragic': 1,
          'moments': 1,
          'couldnt': 1,
          'produce': 1,
          'without': 1,
          'using': 1,
          'directorial': 1,
          'personal': 1,
          'touch': 1,
          'nvignettes': 1,
          'arent': 1,
          'memorable': 1,
          'uses': 1,
          'camera': 1,
          'painting': 1,
          'bright': 1,
          'use': 1,
          'locations': 1,
          'location': 1,
          'happens': 1,
          'luxurious': 1,
          'hotel': 1,
          'brightcoloured': 1,
          'beach': 1,
          'rural': 1,
          'countryside': 1,
          'downtoearth': 1,
          'streets': 1,
          'dimension': 1,
          'snowfall': 1,
          'lack': 1,
          'credible': 1,
          'special': 1,
          'somewhat': 1,
          'diminished': 1,
          'effect': 1,
          'liner': 1,
          'scene': 1,
          'provided': 1,
          'incredible': 1,
          'composer': 1,
          'longtime': 1,
          'associate': 1,
          'nino': 1,
          'rota': 1,
          'nhis': 1,
          'theme': 1,
          'recognisable': 1,
          'relaxing': 1,
          'uplifting': 1,
          'pieces': 1,
          'ever': 1,
          'produced': 1,
          'nthat': 1,
          'alone': 1,
          'reason': 1,
          'indisputable': 1,
          'classics': 1,
          'seventh': 1,
          'art': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'joe': 6,
          'mighty': 5,
          'young': 5,
          'film': 5,
          'nthe': 4,
          'nits': 4,
          'bad': 3,
          'see': 3,
          'nim': 2,
          'thing': 2,
          'nbut': 2,
          'things': 2,
          'every': 2,
          'doesnt': 2,
          'family': 2,
          'fun': 2,
          'half': 2,
          'nit': 2,
          'watch': 2,
          'written': 1,
          'mark': 1,
          'rosenthal': 1,
          'lawrence': 1,
          'konner': 1,
          'nstarring': 1,
          'charlize': 1,
          'theron': 1,
          'bill': 1,
          'paxton': 1,
          'david': 1,
          'paymer': 1,
          'nas': 1,
          'reviewed': 1,
          'james': 1,
          'brundage': 1,
          'beginning': 1,
          'get': 1,
          'fed': 1,
          'nover': 1,
          'four': 1,
          'years': 1,
          'critic': 1,
          'kept': 1,
          'going': 1,
          'moderate': 1,
          'balance': 1,
          'films': 1,
          'good': 1,
          'balances': 1,
          'ni': 1,
          'try': 1,
          'equal': 1,
          'proportions': 1,
          'disneys': 1,
          'remake': 1,
          'marks': 1,
          'fourth': 1,
          'week': 1,
          'havent': 1,
          'seen': 1,
          'truly': 1,
          'terrible': 1,
          'backwards': 1,
          'machismo': 1,
          'suppose': 1,
          'urge': 1,
          'loathe': 1,
          'need': 1,
          'nand': 1,
          'know': 1,
          'qualify': 1,
          'nfar': 1,
          'actually': 1,
          'enjoyable': 1,
          'appropriate': 1,
          'cute': 1,
          'cuddly': 1,
          'ive': 1,
          'seeing': 1,
          'since': 1,
          'bugs': 1,
          'life': 1,
          'nmighty': 1,
          'tracks': 1,
          '2': 1,
          '000': 1,
          'pound': 1,
          'gorilla': 1,
          'wilds': 1,
          'africa': 1,
          'taken': 1,
          'reserve': 1,
          'ncalifornia': 1,
          'n': 1,
          'nfor': 1,
          'safekeeping': 1,
          'nokay': 1,
          'na': 1,
          'little': 1,
          'unrealistic': 1,
          'ever': 1,
          'said': 1,
          'kids': 1,
          'slightest': 1,
          'hint': 1,
          'realism': 1,
          'first': 1,
          'gorillas': 1,
          'mistesque': 1,
          'hatred': 1,
          'poachers': 1,
          'womanofthewild': 1,
          'motif': 1,
          'second': 1,
          'straight': 1,
          'parody': 1,
          'king': 1,
          'kong': 1,
          'awestruck': 1,
          'onlookers': 1,
          'nmark': 1,
          'one': 1,
          'feeling': 1,
          'relaxed': 1,
          'point': 1,
          'fact': 1,
          'extremely': 1,
          'uncreative': 1,
          'vetern': 1,
          'say': 1,
          'quite': 1,
          'honestly': 1,
          'creativity': 1,
          'count': 1,
          'much': 1,
          'nso': 1,
          'saves': 1,
          'wrath': 1,
          'although': 1,
          'colleagues': 1,
          'cohorts': 1,
          'surely': 1,
          'bashing': 1,
          'moment': 1,
          'nthis': 1,
          'take': 1,
          'girl': 1,
          'date': 1,
          'nwhen': 1,
          'youre': 1,
          'right': 1,
          'alongside': 1,
          'kid': 1,
          'normal': 1,
          'rights': 1,
          'wrongs': 1,
          'slip': 1,
          'away': 1,
          'happens': 1,
          'horror': 1,
          'action': 1,
          'flick': 1,
          'becomes': 1,
          'nall': 1,
          'enjoy': 1,
          'shut': 1,
          'npos': 1}),
 Counter({'notting': 7,
          'hills': 4,
          'hill': 4,
          'william': 4,
          'anna': 4,
          'williams': 4,
          'one': 3,
          'nthe': 2,
          'crowd': 2,
          'love': 2,
          'lot': 2,
          'day': 2,
          'roberts': 2,
          'common': 2,
          'first': 2,
          'n': 2,
          'like': 2,
          'four': 2,
          'weddings': 2,
          'enough': 2,
          'worth': 2,
          'around': 2,
          'nearly': 2,
          'best': 2,
          'nif': 2,
          'especially': 2,
          'things': 2,
          'trailer': 1,
          'awful': 1,
          'laughless': 1,
          'schmaltzy': 1,
          'montage': 1,
          'movie': 1,
          'desperately': 1,
          'marketed': 1,
          'antiphantom': 1,
          'menace': 1,
          'lovelorn': 1,
          'females': 1,
          'ignored': 1,
          'letter': 1,
          'nand': 1,
          'apparently': 1,
          'worked': 1,
          'nperhaps': 1,
          'presence': 1,
          'julia': 1,
          'robertswhose': 1,
          'allure': 1,
          'beyond': 1,
          'perfect': 1,
          'teeth': 1,
          'still': 1,
          'escapes': 1,
          'mehad': 1,
          'opening': 1,
          'weekend': 1,
          'success': 1,
          'films': 1,
          'staying': 1,
          'power': 1,
          'based': 1,
          'word': 1,
          'mouth': 1,
          'nallow': 1,
          'spread': 1,
          'good': 1,
          'buzz': 1,
          'ngrant': 1,
          'stars': 1,
          'thacker': 1,
          'travelbookstore': 1,
          'owner': 1,
          'works': 1,
          'resides': 1,
          'tiny': 1,
          'english': 1,
          'district': 1,
          'called': 1,
          'ninto': 1,
          'shop': 1,
          'wanders': 1,
          'famous': 1,
          'actress': 1,
          'scott': 1,
          'na': 1,
          'thief': 1,
          'spilled': 1,
          'orange': 1,
          'juice': 1,
          'stilted': 1,
          'conversation': 1,
          'leads': 1,
          'highly': 1,
          'impetuous': 1,
          'improbable': 1,
          'kiss': 1,
          'ndays': 1,
          'later': 1,
          'sneaks': 1,
          'hotel': 1,
          'suite': 1,
          'guise': 1,
          'magazine': 1,
          'journalist': 1,
          'begins': 1,
          'passionate': 1,
          'albeit': 1,
          'surreptitious': 1,
          'affair': 1,
          'aside': 1,
          'portrayal': 1,
          'press': 1,
          'junkets': 1,
          'deadly': 1,
          'accurate': 1,
          'nonly': 1,
          'annas': 1,
          'celebrityor': 1,
          'lack': 1,
          'thereofthreatens': 1,
          'drive': 1,
          'wedge': 1,
          'nrichard': 1,
          'curtis': 1,
          'tapped': 1,
          'fantasy': 1,
          'considered': 1,
          'least': 1,
          'halfhour': 1,
          'pictures': 1,
          'beauty': 1,
          'beast': 1,
          'scenario': 1,
          'romantic': 1,
          'escapism': 1,
          'highest': 1,
          'order': 1,
          'nas': 1,
          'groundhog': 1,
          'pleasantville': 1,
          'watching': 1,
          'highconcept': 1,
          'comedy': 1,
          'constantly': 1,
          'imagines': 1,
          'himherself': 1,
          'lead': 1,
          'ordinaryness': 1,
          'entices': 1,
          'spoiled': 1,
          'bored': 1,
          'ncurtis': 1,
          'previously': 1,
          'penned': 1,
          'funeral': 1,
          'also': 1,
          'smart': 1,
          'know': 1,
          'unlikely': 1,
          'couples': 1,
          'situation': 1,
          'fuel': 1,
          'two': 1,
          'hours': 1,
          'entertainment': 1,
          'finest': 1,
          'moments': 1,
          'revolve': 1,
          'eccentric': 1,
          'friends': 1,
          'family': 1,
          'nby': 1,
          'dear': 1,
          'reader': 1,
          'youve': 1,
          'probably': 1,
          'heard': 1,
          'rhys': 1,
          'ifans': 1,
          'performance': 1,
          'imbecilic': 1,
          'welsh': 1,
          'flatmate': 1,
          'nyes': 1,
          'hes': 1,
          'pleaser': 1,
          'walking': 1,
          'sight': 1,
          'gag': 1,
          'character': 1,
          'involving': 1,
          'wheelchairbound': 1,
          'appropriately': 1,
          'named': 1,
          'bella': 1,
          'mckee': 1,
          'anguished': 1,
          'waitress': 1,
          'naked': 1,
          'max': 1,
          'tom': 1,
          'mcinnerny': 1,
          'lousy': 1,
          'chef': 1,
          'husband': 1,
          'nin': 1,
          'movies': 1,
          'sequence': 1,
          'company': 1,
          'sit': 1,
          'bloated': 1,
          'maxs': 1,
          'latest': 1,
          'concoction': 1,
          'hold': 1,
          'contest': 1,
          'last': 1,
          'brownie': 1,
          'table': 1,
          'goes': 1,
          'diner': 1,
          'saddest': 1,
          'life': 1,
          'scene': 1,
          'ends': 1,
          'british': 1,
          'writer': 1,
          'would': 1,
          'end': 1,
          'anything': 1,
          'fantastic': 1,
          'bits': 1,
          'dull': 1,
          'main': 1,
          'plots': 1,
          'dramatic': 1,
          'impact': 1,
          'nroberts': 1,
          'grant': 1,
          'appealing': 1,
          'relationship': 1,
          'convolutedly': 1,
          'interrupted': 1,
          'many': 1,
          'times': 1,
          'suffered': 1,
          'similar': 1,
          'flaws': 1,
          'ultimately': 1,
          'thing': 1,
          'theyre': 1,
          'lonely': 1,
          'noting': 1,
          'grants': 1,
          'favour': 1,
          'ubiquitous': 1,
          'im': 1,
          'girl': 1,
          'standing': 1,
          'across': 1,
          'boy': 1,
          'asking': 1,
          'episode': 1,
          'syrupy': 1,
          'appears': 1,
          'clips': 1,
          'features': 1,
          'emoting': 1,
          'either': 1,
          'actor': 1,
          'ever': 1,
          'done': 1,
          'nnotting': 1,
          'nonetheless': 1,
          'enjoyable': 1,
          'visual': 1,
          'side': 1,
          'appreciated': 1,
          'michells': 1,
          'playful': 1,
          'changingoftheseasons': 1,
          'number': 1,
          'surprisinly': 1,
          'minor': 1,
          'gripe': 1,
          'lopped': 1,
          'egregious': 1,
          'epilogue': 1,
          'story': 1,
          'thrives': 1,
          'bring': 1,
          'filmmakers': 1,
          'work': 1,
          'hard': 1,
          'tidy': 1,
          'leaving': 1,
          'imaginations': 1,
          'lurch': 1,
          'npos': 1}),
 Counter({'trek': 16,
          'first': 9,
          'star': 8,
          'contact': 6,
          'borg': 6,
          'series': 5,
          'nthe': 5,
          'movies': 4,
          'film': 4,
          'rec': 3,
          'arts': 3,
          'michael': 3,
          'feature': 3,
          'cast': 3,
          'crew': 3,
          'lt': 3,
          'cmdr': 3,
          'directed': 2,
          'nstar': 2,
          'dequina': 2,
          'pg13': 2,
          'familiar': 2,
          'pattern': 2,
          'scifi': 2,
          'nin': 2,
          'next': 2,
          'generation': 2,
          'rest': 2,
          'riker': 2,
          'laforge': 2,
          'troi': 2,
          '21stcentury': 2,
          'earth': 2,
          'queen': 2,
          'history': 2,
          'enterprise': 2,
          'trekkers': 2,
          'half': 2,
          'script': 2,
          'subplot': 2,
          'takes': 2,
          'cochran': 2,
          'story': 2,
          'end': 2,
          'involving': 2,
          'action': 2,
          'note': 1,
          'followups': 1,
          'currentfilms': 1,
          'startrek': 1,
          'current': 1,
          'nonly': 1,
          'sf': 1,
          'nmoderator': 1,
          'review': 1,
          'copyright': 1,
          '1996': 1,
          'anyone': 1,
          'knows': 1,
          'evenodd': 1,
          'evennumbered': 1,
          'installments': 1,
          'good': 1,
          'oddnumbered': 1,
          'ones': 1,
          'well': 1,
          'notsogood': 1,
          'continues': 1,
          'new': 1,
          'energetic': 1,
          'adventure': 1,
          'coincidentally': 1,
          'eighth': 1,
          'entry': 1,
          'hugely': 1,
          'popular': 1,
          'members': 1,
          'late': 1,
          'television': 1,
          'captain': 1,
          'jeanluc': 1,
          'picard': 1,
          'patrick': 1,
          'stewart': 1,
          '24thcentury': 1,
          'starship': 1,
          'enterprisecommander': 1,
          'jonathan': 1,
          'frakes': 1,
          'also': 1,
          'android': 1,
          'ndata': 1,
          'brent': 1,
          'spiner': 1,
          'ngeordi': 1,
          'levar': 1,
          'burton': 1,
          'nworf': 1,
          'dorn': 1,
          'dr': 1,
          'beverly': 1,
          'crusher': 1,
          'gates': 1,
          'mcfadden': 1,
          'counselor': 1,
          'deanna': 1,
          'marina': 1,
          'sirtis': 1,
          'travel': 1,
          'back': 1,
          'battle': 1,
          'race': 1,
          'cybernetic': 1,
          'beings': 1,
          'share': 1,
          'collective': 1,
          'mind': 1,
          'alice': 1,
          'krige': 1,
          'intend': 1,
          'alter': 1,
          'assimilate': 1,
          'humankind': 1,
          'racestarting': 1,
          'earthorbiting': 1,
          '21st': 1,
          'century': 1,
          'stowaway': 1,
          'alfre': 1,
          'woodard': 1,
          'nthis': 1,
          'interesting': 1,
          'plotline': 1,
          'sure': 1,
          'mesmerize': 1,
          'everywhere': 1,
          'engage': 1,
          'everyone': 1,
          'else': 1,
          'unfortunately': 1,
          'makes': 1,
          'brannon': 1,
          'braga': 1,
          'ronald': 1,
          'moore': 1,
          'titlefirst': 1,
          'contactrefers': 1,
          'place': 1,
          'meet': 1,
          'legendary': 1,
          'scientist': 1,
          'zephram': 1,
          'james': 1,
          'cromwell': 1,
          'embark': 1,
          'warp': 1,
          'speed': 1,
          'flight': 1,
          'human': 1,
          'directly': 1,
          'leads': 1,
          'extraterrestrials': 1,
          'nwhile': 1,
          'tie': 1,
          'main': 1,
          'plot': 1,
          'pays': 1,
          'interestingly': 1,
          'nowhere': 1,
          'near': 1,
          'exciting': 1,
          'battles': 1,
          'nnot': 1,
          'helping': 1,
          'matters': 1,
          'tiresome': 1,
          'character': 1,
          'eccentric': 1,
          'whose': 1,
          'drunken': 1,
          'schtick': 1,
          'starts': 1,
          'funny': 1,
          'becomes': 1,
          'onenote': 1,
          'though': 1,
          'doesnt': 1,
          'detract': 1,
          'enjoyment': 1,
          'whole': 1,
          'typical': 1,
          'fantasy': 1,
          'conviction': 1,
          'castmost': 1,
          'notably': 1,
          'alwaysphenomenal': 1,
          'stewartmakes': 1,
          'believe': 1,
          'care': 1,
          'nfrakes': 1,
          'making': 1,
          'directorial': 1,
          'debut': 1,
          'keeps': 1,
          'swiftly': 1,
          'rolling': 1,
          'along': 1,
          'delivers': 1,
          'goods': 1,
          'even': 1,
          'upping': 1,
          'violence': 1,
          'notch': 1,
          'bear': 1,
          'rating': 1,
          'greater': 1,
          'effect': 1,
          'nst': 1,
          'fc': 1,
          'bigger': 1,
          'budget': 1,
          'last': 1,
          'outing': 1,
          'middling': 1,
          'generations': 1,
          'definitely': 1,
          'shows': 1,
          'screenthe': 1,
          'production': 1,
          'design': 1,
          'especially': 1,
          'visual': 1,
          'makeup': 1,
          'effects': 1,
          'outstanding': 1,
          'particular': 1,
          'nbraga': 1,
          'moores': 1,
          'mostly': 1,
          'sharp': 1,
          'please': 1,
          'devotees': 1,
          'references': 1,
          'storyline': 1,
          'tv': 1,
          'continuity': 1,
          'previous': 1,
          'e': 1,
          'g': 1,
          'ongoing': 1,
          'saga': 1,
          'datas': 1,
          'emotion': 1,
          'chip': 1,
          'fleeting': 1,
          'voyager': 1,
          'crossover': 1,
          'make': 1,
          'squeal': 1,
          'delight': 1,
          'points': 1,
          'made': 1,
          'easily': 1,
          'accessible': 1,
          'less': 1,
          'mythos': 1,
          'nparamount': 1,
          'reportedly': 1,
          'worried': 1,
          'staying': 1,
          'power': 1,
          'franchise': 1,
          'carrying': 1,
          'helm': 1,
          'nbased': 1,
          'entertaining': 1,
          'success': 1,
          'id': 1,
          'say': 1,
          'studio': 1,
          'nothing': 1,
          'worry': 1,
          'least': 1,
          'retires': 1,
          'wan': 1,
          'deep': 1,
          'space': 1,
          'nine': 1,
          'npos': 1}),
 Counter({'nthe': 12,
          'ship': 4,
          'africans': 4,
          'case': 4,
          'slavery': 3,
          'one': 3,
          'film': 3,
          'spanish': 3,
          'free': 3,
          'property': 3,
          'ntheir': 3,
          'buren': 3,
          'would': 3,
          'films': 3,
          'bad': 2,
          'nafter': 2,
          'nthis': 2,
          'almost': 2,
          'strength': 2,
          'slave': 2,
          'men': 2,
          'home': 2,
          'coast': 2,
          'amistad': 2,
          'new': 2,
          'hounsou': 2,
          'cinque': 2,
          'masters': 2,
          'force': 2,
          'states': 2,
          'american': 2,
          'legal': 2,
          'question': 2,
          'government': 2,
          'rights': 2,
          'joadson': 2,
          'tappan': 2,
          'make': 2,
          'john': 2,
          'calhoun': 2,
          'political': 2,
          'van': 2,
          'judge': 2,
          'president': 2,
          'supreme': 2,
          'court': 2,
          'former': 2,
          'hopkins': 2,
          'difficult': 2,
          'nwithout': 2,
          'nthere': 2,
          'major': 2,
          'role': 2,
          'humanity': 2,
          'hundreds': 1,
          'years': 1,
          'weve': 1,
          'finally': 1,
          'figured': 1,
          'universal': 1,
          'belief': 1,
          'weakness': 1,
          'director': 1,
          'steven': 1,
          'spielbergs': 1,
          'latest': 1,
          'serious': 1,
          'nduring': 1,
          'late': 1,
          '1830s': 1,
          'portuguese': 1,
          'carries': 1,
          'cargo': 1,
          'black': 1,
          'women': 1,
          'kidnapped': 1,
          'africas': 1,
          'west': 1,
          'cuba': 1,
          'sold': 1,
          'nfiftythree': 1,
          'stuffed': 1,
          'la': 1,
          'word': 1,
          'friendship': 1,
          'owners': 1,
          'nfreeing': 1,
          'chains': 1,
          'senge': 1,
          'pieh': 1,
          'djimon': 1,
          'renamed': 1,
          'leads': 1,
          'bloody': 1,
          'revolt': 1,
          'killing': 1,
          'crew': 1,
          'remaining': 1,
          'sailors': 1,
          'return': 1,
          'think': 1,
          'ninstead': 1,
          'heads': 1,
          'united': 1,
          'boarded': 1,
          'naval': 1,
          'revolutionaries': 1,
          'put': 1,
          'trial': 1,
          'connecticut': 1,
          'murder': 1,
          'piracy': 1,
          'becomes': 1,
          'fighting': 1,
          'justly': 1,
          'freedom': 1,
          'nif': 1,
          'belong': 1,
          'nsalvage': 1,
          'officers': 1,
          'captured': 1,
          'us': 1,
          'defendants': 1,
          'pawns': 1,
          'several': 1,
          'games': 1,
          'nabolitionists': 1,
          'theodore': 1,
          'morgan': 1,
          'freeman': 1,
          'lewis': 1,
          'stellan': 1,
          'skarsgard': 1,
          'want': 1,
          'sees': 1,
          'primarily': 1,
          'means': 1,
          'cause': 1,
          'lawyer': 1,
          'roger': 1,
          'baldwin': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'views': 1,
          'simple': 1,
          'chance': 1,
          'share': 1,
          'fees': 1,
          'nsouth': 1,
          'carolina': 1,
          'senator': 1,
          'c': 1,
          'arliss': 1,
          'howard': 1,
          'pursues': 1,
          'advancement': 1,
          'southern': 1,
          'npresident': 1,
          'martin': 1,
          'nigel': 1,
          'hawthorne': 1,
          'willing': 1,
          'result': 1,
          'towards': 1,
          'ends': 1,
          'nwhen': 1,
          'verdict': 1,
          'looks': 1,
          'replaces': 1,
          'sympathetic': 1,
          'wishes': 1,
          'neven': 1,
          'doesnt': 1,
          'work': 1,
          'frees': 1,
          'kidnap': 1,
          'victims': 1,
          'nat': 1,
          'urging': 1,
          'appeals': 1,
          'populated': 1,
          'majority': 1,
          'slaveowners': 1,
          'littleknown': 1,
          'try': 1,
          'finding': 1,
          'history': 1,
          'text': 1,
          'book': 1,
          'incident': 1,
          'americas': 1,
          'past': 1,
          'gone': 1,
          'darker': 1,
          'path': 1,
          'quincy': 1,
          'adams': 1,
          'anthony': 1,
          'persuaded': 1,
          'argue': 1,
          'issue': 1,
          'easy': 1,
          'pickins': 1,
          'spielberg': 1,
          'nmuch': 1,
          'like': 1,
          'shindlers': 1,
          'list': 1,
          'followed': 1,
          'jurassic': 1,
          'park': 1,
          'follows': 1,
          'lost': 1,
          'world': 1,
          'moral': 1,
          'sides': 1,
          'ones': 1,
          'choose': 1,
          'nnazis': 1,
          'traders': 1,
          'treat': 1,
          'groups': 1,
          'others': 1,
          'less': 1,
          'human': 1,
          'nits': 1,
          'hard': 1,
          'see': 1,
          'guys': 1,
          'ponder': 1,
          'directors': 1,
          'job': 1,
          'nhe': 1,
          'story': 1,
          'interesting': 1,
          'nspielberg': 1,
          'succeeds': 1,
          'part': 1,
          'visual': 1,
          'aspect': 1,
          'beyond': 1,
          'reproach': 1,
          'nwhere': 1,
          'movie': 1,
          'falls': 1,
          'bit': 1,
          'subtle': 1,
          '_people_': 1,
          'tale': 1,
          'nin': 1,
          'fact': 1,
          'character': 1,
          'fleshed': 1,
          'ntappan': 1,
          'abolitionists': 1,
          'symbols': 1,
          'humans': 1,
          'nvan': 1,
          'weak': 1,
          'politician': 1,
          'nothing': 1,
          'else': 1,
          'rest': 1,
          'slaves': 1,
          'barely': 1,
          'exist': 1,
          'dressing': 1,
          'set': 1,
          'nlike': 1,
          'many': 1,
          'people': 1,
          'color': 1,
          'players': 1,
          'white': 1,
          'salvation': 1,
          'lies': 1,
          'acting': 1,
          'everyone': 1,
          'involved': 1,
          'powerful': 1,
          'presence': 1,
          'models': 1,
          'first': 1,
          'winner': 1,
          'speaking': 1,
          'five': 1,
          'words': 1,
          'english': 1,
          'conveys': 1,
          'emotion': 1,
          'actors': 1,
          'thousand': 1,
          'lines': 1,
          'dialog': 1,
          'standout': 1,
          'seems': 1,
          'making': 1,
          'career': 1,
          'portraying': 1,
          'presidents': 1,
          'also': 1,
          'played': 1,
          'title': 1,
          'nixon': 1,
          'impassioned': 1,
          'speech': 1,
          'doddering': 1,
          'old': 1,
          'man': 1,
          'phases': 1,
          'rationality': 1,
          'among': 1,
          'best': 1,
          'courtroom': 1,
          'drama': 1,
          'ever': 1,
          'screen': 1,
          'great': 1,
          'moments': 1,
          'nespecially': 1,
          'impressive': 1,
          'struggle': 1,
          'understand': 1,
          'going': 1,
          'strange': 1,
          'land': 1,
          'interpretation': 1,
          'bible': 1,
          'based': 1,
          'solely': 1,
          'pictures': 1,
          'experiences': 1,
          'poignant': 1,
          'nas': 1,
          'grand': 1,
          'epic': 1,
          'impact': 1,
          'focused': 1,
          'experience': 1,
          'point': 1,
          'view': 1,
          'nmore': 1,
          'fight': 1,
          'made': 1,
          'fourstar': 1,
          'n': 1,
          'michael': 1,
          'redman': 1,
          'written': 1,
          'column': 1,
          'real': 1,
          'long': 1,
          'time': 1,
          'getting': 1,
          'around': 1,
          'seeing': 1,
          '1998': 1,
          'npos': 1}),
 Counter({'wishes': 5,
          'devil': 4,
          'one': 4,
          'soul': 3,
          'hell': 3,
          'way': 3,
          'fraser': 3,
          'would': 3,
          'could': 3,
          'allison': 3,
          'n': 3,
          'wish': 3,
          'bedazzled': 2,
          'comedy': 2,
          'possess': 2,
          'mind': 2,
          'nif': 2,
          'hurley': 2,
          'nits': 2,
          'practically': 2,
          'next': 2,
          'elliot': 2,
          'eager': 2,
          'coworkers': 2,
          'nyet': 2,
          'hes': 2,
          'nhe': 2,
          'never': 2,
          'life': 2,
          'makes': 2,
          'hard': 2,
          'little': 2,
          'elliots': 2,
          'start': 2,
          'various': 2,
          'fantasies': 2,
          'nbut': 2,
          'married': 2,
          'nhis': 2,
          'also': 2,
          'funny': 2,
          'scenes': 2,
          'good': 2,
          'reflecting': 1,
          'lively': 1,
          'seeks': 1,
          'pathetic': 1,
          'loser': 1,
          'sinful': 1,
          'thought': 1,
          'remains': 1,
          'means': 1,
          'spend': 1,
          'eternity': 1,
          'elizabeth': 1,
          'portrays': 1,
          'fiery': 1,
          'demon': 1,
          'use': 1,
          'pitchfork': 1,
          'point': 1,
          'nwith': 1,
          'pouty': 1,
          'lips': 1,
          'irresistible': 1,
          'british': 1,
          'accent': 1,
          'wild': 1,
          'display': 1,
          'haute': 1,
          'couture': 1,
          'crackles': 1,
          'naughtiness': 1,
          'fills': 1,
          'temptation': 1,
          'impossible': 1,
          'turn': 1,
          'beelzubabe': 1,
          'nher': 1,
          'target': 1,
          'brendan': 1,
          'tech': 1,
          'support': 1,
          'geek': 1,
          'clumsy': 1,
          'awkward': 1,
          'please': 1,
          'nto': 1,
          'aptly': 1,
          'picture': 1,
          'remember': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'skit': 1,
          'featuring': 1,
          'steve': 1,
          'copy': 1,
          'guy': 1,
          'effortlessly': 1,
          'irritated': 1,
          'unpolished': 1,
          'social': 1,
          'skills': 1,
          'neugene': 1,
          'thus': 1,
          'loathed': 1,
          'feared': 1,
          'best': 1,
          'stay': 1,
          'beyond': 1,
          'annoying': 1,
          'mannerisms': 1,
          'lovable': 1,
          'oaf': 1,
          'get': 1,
          'closer': 1,
          'frances': 1,
          'oconnor': 1,
          'coworker': 1,
          'infatuated': 1,
          'taken': 1,
          'notice': 1,
          'nhowever': 1,
          'odds': 1,
          'getting': 1,
          'together': 1,
          'snowballs': 1,
          'chance': 1,
          'dear': 1,
          'god': 1,
          'prays': 1,
          'give': 1,
          'anything': 1,
          'girl': 1,
          'nguess': 1,
          'shows': 1,
          'nshe': 1,
          'offer': 1,
          'refuse': 1,
          'seven': 1,
          'utterly': 1,
          'fabulous': 1,
          'piddling': 1,
          'ntheres': 1,
          'even': 1,
          'escape': 1,
          'clause': 1,
          'doesnt': 1,
          'go': 1,
          'exactly': 1,
          'likes': 1,
          'need': 1,
          'beep': 1,
          'guess': 1,
          'threedigit': 1,
          'number': 1,
          'gets': 1,
          'nthe': 1,
          'remainder': 1,
          'film': 1,
          'consists': 1,
          'incorporate': 1,
          'personal': 1,
          'desire': 1,
          'enormous': 1,
          'amounts': 1,
          'wealth': 1,
          'power': 1,
          'fame': 1,
          'allisons': 1,
          'love': 1,
          'sweeping': 1,
          'statements': 1,
          'want': 1,
          'powerful': 1,
          'rich': 1,
          'soon': 1,
          'learn': 1,
          'details': 1,
          'nfor': 1,
          'example': 1,
          'weve': 1,
          'seen': 1,
          'several': 1,
          'times': 1,
          'trailers': 1,
          'granted': 1,
          'finds': 1,
          'columbian': 1,
          'drug': 1,
          'lord': 1,
          'eyes': 1,
          'someone': 1,
          'else': 1,
          'napparently': 1,
          'skew': 1,
          'end': 1,
          'strange': 1,
          'twist': 1,
          'shortcircuits': 1,
          'new': 1,
          'nsoon': 1,
          'made': 1,
          'deal': 1,
          'ngiven': 1,
          'mischievous': 1,
          'nature': 1,
          'many': 1,
          'amusing': 1,
          'moments': 1,
          'na': 1,
          'lot': 1,
          'credit': 1,
          'goes': 1,
          'turns': 1,
          'great': 1,
          'comic': 1,
          'performance': 1,
          'ably': 1,
          'assumes': 1,
          'personas': 1,
          'funniest': 1,
          'segment': 1,
          'sensitive': 1,
          'man': 1,
          'world': 1,
          'nallison': 1,
          'becomes': 1,
          'frustrated': 1,
          'urges': 1,
          'take': 1,
          'advantage': 1,
          'nhurley': 1,
          'heightens': 1,
          'humor': 1,
          'quotient': 1,
          'especially': 1,
          'transitional': 1,
          'waits': 1,
          'bailing': 1,
          'previous': 1,
          'clear': 1,
          'shes': 1,
          'time': 1,
          'filmmakers': 1,
          'work': 1,
          'creating': 1,
          'conspicuously': 1,
          'avoid': 1,
          'developing': 1,
          'allegorical': 1,
          'underpinnings': 1,
          'evil': 1,
          'added': 1,
          'heft': 1,
          'story': 1,
          'playing': 1,
          'fire': 1,
          'nwhat': 1,
          'theyve': 1,
          'got': 1,
          'works': 1,
          'easily': 1,
          'accept': 1,
          'pleasant': 1,
          'npos': 1}),
 Counter({'movie': 14,
          'kermit': 11,
          'muppet': 8,
          'hollywood': 8,
          'nthe': 5,
          'nkermit': 4,
          'make': 4,
          'star': 3,
          'idea': 3,
          'continue': 3,
          'first': 2,
          'frog': 2,
          'ages': 2,
          'stars': 2,
          'begins': 2,
          'nit': 2,
          'swamp': 2,
          'shot': 2,
          'bigtime': 2,
          'big': 2,
          'trip': 2,
          'way': 2,
          'fozzie': 2,
          'doc': 2,
          'hopper': 2,
          'miss': 2,
          'piggy': 2,
          'gives': 2,
          'best': 1,
          'among': 1,
          'evergrowing': 1,
          'list': 1,
          'movies': 1,
          'tells': 1,
          'story': 1,
          'hero': 1,
          'came': 1,
          'na': 1,
          'delightful': 1,
          'bursting': 1,
          'cameo': 1,
          'appearances': 1,
          'countless': 1,
          '80s': 1,
          'today': 1,
          'theater': 1,
          'anxiously': 1,
          'awaiting': 1,
          'showing': 1,
          'nonce': 1,
          'everyone': 1,
          'settled': 1,
          'inside': 1,
          'starts': 1,
          'playing': 1,
          'banjo': 1,
          'singing': 1,
          'required': 1,
          'jim': 1,
          'henson': 1,
          'spend': 1,
          'hours': 1,
          'underwater': 1,
          'discovered': 1,
          'bernie': 1,
          'agent': 1,
          'happens': 1,
          'upon': 1,
          'accident': 1,
          'nbernie': 1,
          'believes': 1,
          'holds': 1,
          'much': 1,
          'potential': 1,
          'become': 1,
          'ponders': 1,
          'becoming': 1,
          'could': 1,
          'millions': 1,
          'people': 1,
          'happy': 1,
          'decides': 1,
          'leave': 1,
          'nalong': 1,
          'befriends': 1,
          'famous': 1,
          'companions': 1,
          'beginning': 1,
          'bear': 1,
          'spending': 1,
          'days': 1,
          'standup': 1,
          'comedy': 1,
          'el': 1,
          'sleezo': 1,
          'cafe': 1,
          'owned': 1,
          'james': 1,
          'coburn': 1,
          'two': 1,
          'decide': 1,
          'teamup': 1,
          'nbut': 1,
          'charles': 1,
          'durning': 1,
          'owner': 1,
          'chain': 1,
          'french': 1,
          'fried': 1,
          'leg': 1,
          'restaurants': 1,
          'different': 1,
          'nhe': 1,
          'wants': 1,
          'spokesman': 1,
          'humiliated': 1,
          'spends': 1,
          'avoiding': 1,
          'assistants': 1,
          'continues': 1,
          'meeting': 1,
          'rowlf': 1,
          'gonzo': 1,
          'electric': 1,
          'mayhem': 1,
          'band': 1,
          'muppets': 1,
          'share': 1,
          'wish': 1,
          'noh': 1,
          'even': 1,
          'celebrities': 1,
          'appear': 1,
          'get': 1,
          'know': 1,
          'little': 1,
          'better': 1,
          'including': 1,
          'rather': 1,
          'funny': 1,
          'scene': 1,
          'restaurant': 1,
          'steve': 1,
          'martin': 1,
          'waiter': 1,
          'neventually': 1,
          'group': 1,
          'nthat': 1,
          'finally': 1,
          'able': 1,
          'elude': 1,
          'proclaim': 1,
          'freedom': 1,
          'nlord': 1,
          'lew': 1,
          'producer': 1,
          'portrayed': 1,
          'orson': 1,
          'welles': 1,
          'stardom': 1,
          'goahead': 1,
          'produce': 1,
          'definitely': 1,
          'fun': 1,
          'also': 1,
          'suredeal': 1,
          'one': 1,
          'parents': 1,
          'watch': 1,
          'enjoy': 1,
          'along': 1,
          'kids': 1,
          'npos': 1}),
 Counter({'company': 5,
          'nthe': 5,
          'kozmo': 4,
          'dotcom': 3,
          'com': 3,
          'park': 3,
          'money': 3,
          'films': 3,
          'end': 2,
          'era': 2,
          'nby': 2,
          '2000': 2,
          'april': 2,
          'big': 2,
          'operations': 2,
          'interviews': 2,
          'film': 2,
          'nin': 2,
          'great': 1,
          'things': 1,
          'come': 1,
          'embodies': 1,
          'perfectly': 1,
          'nbeneath': 1,
          'mound': 1,
          'bankruptcy': 1,
          'paperwork': 1,
          'lies': 1,
          'remains': 1,
          'former': 1,
          'darling': 1,
          'nan': 1,
          'online': 1,
          'convenience': 1,
          'store': 1,
          'stocked': 1,
          'ice': 1,
          'cream': 1,
          'porn': 1,
          'videos': 1,
          'basic': 1,
          'necessities': 1,
          'urban': 1,
          'dweller': 1,
          'handdelivered': 1,
          'couriers': 1,
          'within': 1,
          'hour': 1,
          'ndesigned': 1,
          '1997': 1,
          'two': 1,
          'college': 1,
          'roommates': 1,
          'joseph': 1,
          'parks': 1,
          '27': 1,
          'year': 1,
          'old': 1,
          'goldman': 1,
          'sachs': 1,
          'banker': 1,
          'yong': 1,
          'kang': 1,
          'flamed': 1,
          'three': 1,
          'short': 1,
          'years': 1,
          'raising': 1,
          '280': 1,
          'million': 1,
          'venture': 1,
          'capital': 1,
          'funding': 1,
          'partnerships': 1,
          'bigwigs': 1,
          'starbucks': 1,
          'amazon': 1,
          'december': 1,
          '1999': 1,
          'boasted': 1,
          '4': 1,
          '000': 1,
          'employees': 1,
          '11': 1,
          'cities': 1,
          'barking': 1,
          'ceo': 1,
          'attracting': 1,
          'kinds': 1,
          'media': 1,
          'attention': 1,
          'set': 1,
          'ipo': 1,
          'may': 1,
          'nuntil': 1,
          '14': 1,
          'day': 1,
          'stock': 1,
          'market': 1,
          'took': 1,
          'first': 1,
          'dive': 1,
          'ending': 1,
          'internet': 1,
          '13': 1,
          '2001': 1,
          'ceased': 1,
          'nunlike': 1,
          'earlier': 1,
          'similar': 1,
          'documentary': 1,
          'startup': 1,
          'chronicled': 1,
          'rise': 1,
          'fall': 1,
          'another': 1,
          'govworks': 1,
          'edreams': 1,
          'focuses': 1,
          'original': 1,
          'founders': 1,
          'especially': 1,
          'common': 1,
          'folks': 1,
          'ran': 1,
          'daytoday': 1,
          'contrast': 1,
          'amazing': 1,
          'showing': 1,
          'cult': 1,
          'persona': 1,
          'convince': 1,
          'anyone': 1,
          'idea': 1,
          'next': 1,
          'thing': 1,
          'director': 1,
          'wonsuk': 1,
          'chin': 1,
          'tired': 1,
          'die': 1,
          'expertly': 1,
          'juxtaposes': 1,
          'upper': 1,
          'management': 1,
          'meetings': 1,
          'onthespot': 1,
          'bike': 1,
          'messengers': 1,
          'general': 1,
          'managers': 1,
          'floor': 1,
          'staff': 1,
          'kept': 1,
          'humming': 1,
          'images': 1,
          'give': 1,
          'backbone': 1,
          'provide': 1,
          'emotional': 1,
          'edge': 1,
          'ultimate': 1,
          'demise': 1,
          'satisfying': 1,
          'part': 1,
          'comes': 1,
          'understanding': 1,
          'degree': 1,
          'expectations': 1,
          'numerous': 1,
          'ceos': 1,
          'commanding': 1,
          'titanictype': 1,
          'businesses': 1,
          'final': 1,
          'learn': 1,
          'happens': 1,
          'dries': 1,
          'backers': 1,
          'dont': 1,
          'return': 1,
          'phone': 1,
          'calls': 1,
          'name': 1,
          'game': 1,
          'profit': 1,
          'couldnt': 1,
          'make': 1,
          'even': 1,
          'dreamers': 1,
          'got': 1,
          'axe': 1,
          'nscreened': 1,
          '24th': 1,
          'annual': 1,
          'mill': 1,
          'valley': 1,
          'festival': 1,
          'npos': 1}),
 Counter({'lebowski': 7,
          'dude': 7,
          'one': 6,
          'nthe': 6,
          'big': 5,
          'coen': 4,
          'films': 4,
          'time': 4,
          'fargo': 4,
          'lot': 4,
          'coens': 4,
          'since': 3,
          'deeply': 3,
          'place': 3,
          'jeff': 3,
          'never': 3,
          'quite': 3,
          'bowling': 3,
          'john': 3,
          'always': 3,
          'brothers': 3,
          'film': 2,
          'simple': 2,
          'joel': 2,
          'ethan': 2,
          'ntheir': 2,
          'highly': 2,
          'people': 2,
          'get': 2,
          'los': 2,
          'angeles': 2,
          'bridges': 2,
          'performance': 2,
          'made': 2,
          'nhe': 2,
          'named': 2,
          'walter': 2,
          'goodman': 2,
          'guys': 2,
          'bunny': 2,
          'money': 2,
          'main': 2,
          'plot': 2,
          'involved': 2,
          'n': 2,
          'like': 2,
          'nit': 2,
          'kind': 2,
          'dream': 2,
          'sequences': 2,
          'involves': 2,
          'barton': 2,
          'fink': 2,
          'hudsucker': 2,
          'proxy': 2,
          'style': 2,
          'world': 2,
          'debut': 1,
          '1984': 1,
          'tightly': 1,
          'wrought': 1,
          'texas': 1,
          'thriller': 1,
          'blood': 1,
          'eclectic': 1,
          'original': 1,
          'downright': 1,
          'fascinating': 1,
          'creative': 1,
          'teams': 1,
          'modern': 1,
          'hollywood': 1,
          'stylized': 1,
          'embedded': 1,
          'particular': 1,
          'characters': 1,
          'often': 1,
          'everyday': 1,
          'caught': 1,
          'unusual': 1,
          'circumstances': 1,
          'nin': 1,
          'first': 1,
          'cinematic': 1,
          'offering': 1,
          'multiple': 1,
          'academy': 1,
          'awardwinning': 1,
          'action': 1,
          'takes': 1,
          'gulf': 1,
          'war': 1,
          'hero': 1,
          'story': 1,
          'aka': 1,
          'played': 1,
          'hollywoods': 1,
          'underrated': 1,
          'actors': 1,
          'best': 1,
          'stoned': 1,
          'sean': 1,
          'penn': 1,
          'stumbled': 1,
          'halls': 1,
          'ridgemont': 1,
          'high': 1,
          'man': 1,
          'sixties': 1,
          'shaggy': 1,
          'shoulderlength': 1,
          'hair': 1,
          'grizzled': 1,
          'goatee': 1,
          'badly': 1,
          'need': 1,
          'trim': 1,
          'wears': 1,
          'mostly': 1,
          'stained': 1,
          'teeshirts': 1,
          'long': 1,
          'shorts': 1,
          'gellies': 1,
          'without': 1,
          'socks': 1,
          'smokes': 1,
          'pot': 1,
          'drinks': 1,
          'white': 1,
          'russians': 1,
          'content': 1,
          'spend': 1,
          'majority': 1,
          'two': 1,
          'buddies': 1,
          'slightly': 1,
          'psychotic': 1,
          'vietnam': 1,
          'vet': 1,
          'sobchak': 1,
          'donny': 1,
          'steve': 1,
          'buscemi': 1,
          'wants': 1,
          'part': 1,
          'conversation': 1,
          'makes': 1,
          'none': 1,
          'day': 1,
          'confused': 1,
          'another': 1,
          'david': 1,
          'huddleston': 1,
          'millionaire': 1,
          'philanthropist': 1,
          'whose': 1,
          'trophy': 1,
          'wife': 1,
          'tara': 1,
          'reid': 1,
          'owes': 1,
          'accompanying': 1,
          'sideplots': 1,
          'coenesque': 1,
          'diatribes': 1,
          'far': 1,
          'complicated': 1,
          'nsuffice': 1,
          'say': 1,
          'becomes': 1,
          'kidnaped': 1,
          'asked': 1,
          'courier': 1,
          'ransom': 1,
          'nby': 1,
          'said': 1,
          'done': 1,
          'become': 1,
          'lebowskis': 1,
          'daughter': 1,
          'maude': 1,
          'julianne': 1,
          'moore': 1,
          'feminist': 1,
          'artist': 1,
          'pornographer': 1,
          'jackie': 1,
          'treehorn': 1,
          'ben': 1,
          'gazzara': 1,
          'group': 1,
          'german': 1,
          'nihilists': 1,
          'led': 1,
          'peter': 1,
          'stormare': 1,
          'great': 1,
          'silent': 1,
          'deadly': 1,
          'kidnaper': 1,
          'plays': 1,
          'amalgam': 1,
          'earlier': 1,
          'efforts': 1,
          'shares': 1,
          'previous': 1,
          'strong': 1,
          'sense': 1,
          'well': 1,
          'sendups': 1,
          'movie': 1,
          'genres': 1,
          'political': 1,
          'cultural': 1,
          'ideologies': 1,
          'crazed': 1,
          'caricatures': 1,
          'raising': 1,
          'arizona': 1,
          'hoot': 1,
          'surrealistic': 1,
          'busby': 1,
          'berkleylike': 1,
          'dance': 1,
          'number': 1,
          'characterized': 1,
          'ending': 1,
          'cartoonish': 1,
          'look': 1,
          'feel': 1,
          'pervaded': 1,
          'shot': 1,
          'veteran': 1,
          'cinematographer': 1,
          'roger': 1,
          'deakins': 1,
          'worked': 1,
          'three': 1,
          'ndeakins': 1,
          'gives': 1,
          'distinctive': 1,
          'visual': 1,
          'brilliant': 1,
          'job': 1,
          'capturing': 1,
          'bright': 1,
          'colors': 1,
          'seedy': 1,
          'early': 1,
          'nineties': 1,
          'whether': 1,
          'obnoxious': 1,
          'blue': 1,
          'suit': 1,
          'worn': 1,
          'dudes': 1,
          'competitor': 1,
          'jesus': 1,
          'quintana': 1,
          'turturro': 1,
          'strikingly': 1,
          'manic': 1,
          'dizzy': 1,
          'spectacle': 1,
          'watching': 1,
          'strike': 1,
          'balls': 1,
          'point': 1,
          'view': 1,
          'nif': 1,
          'restrained': 1,
          'effort': 1,
          'years': 1,
          'marks': 1,
          'return': 1,
          'overtheedge': 1,
          'filmmaking': 1,
          'overflowing': 1,
          'attitude': 1,
          'helps': 1,
          'make': 1,
          'scattered': 1,
          'fragments': 1,
          'come': 1,
          'together': 1,
          'end': 1,
          'fill': 1,
          'screen': 1,
          'lighting': 1,
          'set': 1,
          'design': 1,
          'music': 1,
          'hilarious': 1,
          'performances': 1,
          'leads': 1,
          'especially': 1,
          'reliable': 1,
          'shows': 1,
          'real': 1,
          'comic': 1,
          'timing': 1,
          'untimely': 1,
          'naminspired': 1,
          'outbursts': 1,
          'intense': 1,
          'dedication': 1,
          'adopted': 1,
          'judaism': 1,
          'nwith': 1,
          'directing': 1,
          'producing': 1,
          'writing': 1,
          'seem': 1,
          'limitless': 1,
          'capacity': 1,
          'turn': 1,
          'inside': 1,
          'talent': 1,
          'lies': 1,
          'ability': 1,
          'reflect': 1,
          'norms': 1,
          'reality': 1,
          'potential': 1,
          'dig': 1,
          'darkest': 1,
          'corners': 1,
          'life': 1,
          'bring': 1,
          'light': 1,
          'rejoice': 1,
          'oddballs': 1,
          'put': 1,
          'centerstage': 1,
          'show': 1,
          'nuts': 1,
          'entire': 1,
          'planet': 1,
          'npos': 1}),
 Counter({'nthe': 4,
          'movie': 4,
          'top': 3,
          'senator': 3,
          'voight': 3,
          'hackman': 3,
          'escapist': 2,
          'product': 2,
          'plot': 2,
          'thriller': 2,
          'market': 2,
          'good': 2,
          'scott': 2,
          'state': 2,
          'nits': 2,
          'runs': 2,
          'like': 2,
          'looking': 2,
          'director': 2,
          'hes': 2,
          'nenemy': 2,
          'also': 2,
          'use': 2,
          'amount': 2,
          'audience': 2,
          'long': 2,
          'reasons': 2,
          'reynolds': 2,
          'nreynolds': 2,
          'act': 2,
          'dean': 2,
          'smith': 2,
          'puts': 2,
          'well': 2,
          'lean': 1,
          'mean': 1,
          'thrillers': 1,
          'tough': 1,
          'come': 1,
          'nmost': 1,
          'unnecessarily': 1,
          'complicated': 1,
          'others': 1,
          'sense': 1,
          'expediency': 1,
          'thrillride': 1,
          'effect': 1,
          'gets': 1,
          'lost': 1,
          'cumbersome': 1,
          'nperhaps': 1,
          'ultimate': 1,
          'fugitive': 1,
          'featured': 1,
          'none': 1,
          'flashbang': 1,
          'effects': 1,
          'todays': 1,
          'rather': 1,
          'breadandbutter': 1,
          'textbook': 1,
          'example': 1,
          'clever': 1,
          'script': 1,
          'direction': 1,
          'latest': 1,
          'tony': 1,
          'enemy': 1,
          'doesnt': 1,
          'make': 1,
          'level': 1,
          'true': 1,
          'nineties': 1,
          'greased': 1,
          'lightning': 1,
          'maze': 1,
          'cell': 1,
          'phones': 1,
          'laptop': 1,
          'computers': 1,
          'without': 1,
          'back': 1,
          'nalthough': 1,
          'made': 1,
          'missteps': 1,
          'past': 1,
          'lame': 1,
          'fan': 1,
          'generated': 1,
          'deal': 1,
          'energy': 1,
          'pictures': 1,
          'crimson': 1,
          'tide': 1,
          'gun': 1,
          'nthat': 1,
          'vibrant': 1,
          'spirit': 1,
          'present': 1,
          'shown': 1,
          'welltimed': 1,
          'carefully': 1,
          'planned': 1,
          'chase': 1,
          'scenes': 1,
          'give': 1,
          'aura': 1,
          'sheer': 1,
          'speed': 1,
          'features': 1,
          'unprecedented': 1,
          'amazing': 1,
          'cinematography': 1,
          'photography': 1,
          'daniel': 1,
          'mindel': 1,
          'throws': 1,
          'staggering': 1,
          'different': 1,
          'views': 1,
          'angles': 1,
          'lenses': 1,
          'film': 1,
          'stocks': 1,
          'goes': 1,
          'way': 1,
          'toward': 1,
          'involving': 1,
          'truly': 1,
          'visual': 1,
          'experience': 1,
          'thats': 1,
          'one': 1,
          'fun': 1,
          'watch': 1,
          'lights': 1,
          'aging': 1,
          'visited': 1,
          'nsa': 1,
          'deputy': 1,
          'chief': 1,
          'thomas': 1,
          'jon': 1,
          'wants': 1,
          'new': 1,
          'communications': 1,
          'passed': 1,
          'allow': 1,
          'government': 1,
          'free': 1,
          'reign': 1,
          'surveilance': 1,
          'equipment': 1,
          'plans': 1,
          'bury': 1,
          'bill': 1,
          'committee': 1,
          'offed': 1,
          'murder': 1,
          'caught': 1,
          'naturalists': 1,
          'camera': 1,
          'nby': 1,
          'extremist': 1,
          'chain': 1,
          'events': 1,
          'tape': 1,
          'ends': 1,
          'labor': 1,
          'lawyer': 1,
          'robert': 1,
          'posession': 1,
          'running': 1,
          'cronies': 1,
          'help': 1,
          'exspook': 1,
          'named': 1,
          'brill': 1,
          'gene': 1,
          'able': 1,
          'get': 1,
          'bottom': 1,
          'things': 1,
          'acting': 1,
          'notch': 1,
          'three': 1,
          'principles': 1,
          'generally': 1,
          'mature': 1,
          'excellent': 1,
          'around': 1,
          'nsmith': 1,
          'aside': 1,
          'wisecracking': 1,
          'becomes': 1,
          'normal': 1,
          'human': 1,
          'tones': 1,
          'sneer': 1,
          'character': 1,
          'greater': 1,
          'ominpotence': 1,
          'simply': 1,
          'mysterioso': 1,
          'role': 1,
          'nsmiths': 1,
          'regular': 1,
          'joe': 1,
          'comes': 1,
          'particularly': 1,
          'authorties': 1,
          'knows': 1,
          'supports': 1,
          'fine': 1,
          'form': 1,
          'lending': 1,
          'credibility': 1,
          'main': 1,
          'roles': 1,
          'advancing': 1,
          'key': 1,
          'areas': 1,
          'nthis': 1,
          'holiday': 1,
          'crowd': 1,
          'hot': 1,
          'ticket': 1,
          'anyone': 1,
          'serving': 1,
          'genuine': 1,
          'action': 1,
          'otherwise': 1,
          'lacking': 1,
          'npos': 1}),
 Counter({'movie': 8,
          'film': 7,
          'family': 7,
          'space': 4,
          'nthe': 3,
          'really': 3,
          'evil': 3,
          'scifi': 3,
          'special': 3,
          'effects': 3,
          'one': 3,
          'tv': 2,
          'people': 2,
          'see': 2,
          'robinson': 2,
          'lost': 2,
          'chosen': 2,
          'earth': 2,
          'future': 2,
          'leblanc': 2,
          'oldman': 2,
          'goes': 2,
          'rest': 2,
          'lot': 2,
          'little': 2,
          'character': 2,
          'like': 2,
          'long': 2,
          'story': 2,
          'line': 2,
          'also': 2,
          'hes': 2,
          'non': 2,
          'side': 2,
          'picture': 2,
          'got': 2,
          'credit': 2,
          'cool': 2,
          'youre': 2,
          'based': 1,
          'campy': 1,
          'show': 1,
          '1960s': 1,
          'appellation': 1,
          'nmind': 1,
          'including': 1,
          'truly': 1,
          'seen': 1,
          'episodes': 1,
          'original': 1,
          'series': 1,
          'stand': 1,
          'alone': 1,
          'regard': 1,
          'nplot': 1,
          'set': 1,
          'year': 1,
          '2058': 1,
          'sail': 1,
          'search': 1,
          'planets': 1,
          'might': 1,
          'contain': 1,
          'natural': 1,
          'resources': 1,
          'needs': 1,
          'order': 1,
          'survive': 1,
          'na': 1,
          'colonization': 1,
          'process': 1,
          'nthey': 1,
          'joined': 1,
          'able': 1,
          'pilot': 1,
          'west': 1,
          'uninvited': 1,
          'stowaway': 1,
          'want': 1,
          'trip': 1,
          'conclude': 1,
          'successful': 1,
          'tip': 1,
          'neventually': 1,
          'trek': 1,
          'awry': 1,
          'n': 1,
          'get': 1,
          'back': 1,
          'nis': 1,
          'question': 1,
          'infests': 1,
          'epic': 1,
          'ncritique': 1,
          'reminded': 1,
          'fifth': 1,
          'element': 1,
          '6': 1,
          '510': 1,
          'summer': 1,
          '1997': 1,
          'nits': 1,
          'flash': 1,
          'actual': 1,
          'substance': 1,
          'nadmittedly': 1,
          'isnt': 1,
          'annoying': 1,
          'chris': 1,
          'tucker': 1,
          'run': 1,
          'lose': 1,
          'regards': 1,
          'complex': 1,
          'timetravel': 1,
          'multidimensional': 1,
          'nhaving': 1,
          'said': 1,
          'amazing': 1,
          'overall': 1,
          'look': 1,
          'feel': 1,
          'way': 1,
          'average': 1,
          'nyou': 1,
          'felt': 1,
          'riding': 1,
          'poor': 1,
          'souls': 1,
          'nunfortunately': 1,
          '10year': 1,
          'old': 1,
          'son': 1,
          'smartest': 1,
          'group': 1,
          'father': 1,
          'wrapped': 1,
          'work': 1,
          'notice': 1,
          'ever': 1,
          'heard': 1,
          'nyawn': 1,
          'acting': 1,
          'ok': 1,
          'especially': 1,
          'surprised': 1,
          'solid': 1,
          'performance': 1,
          'friends': 1,
          'matt': 1,
          'shows': 1,
          'us': 1,
          'definitely': 1,
          'pretty': 1,
          'face': 1,
          'riffraff': 1,
          'cuts': 1,
          'lame': 1,
          'timeconsuming': 1,
          'even': 1,
          'though': 1,
          'ta': 1,
          'give': 1,
          'trying': 1,
          'develop': 1,
          'characters': 1,
          'pic': 1,
          'hard': 1,
          'follow': 1,
          'actually': 1,
          'tells': 1,
          '20': 1,
          'minutes': 1,
          'slick': 1,
          'many': 1,
          'sequence': 1,
          'paralyzed': 1,
          'hyperdrive': 1,
          'awesome': 1,
          'animated': 1,
          'monkey': 1,
          'joins': 1,
          'halfway': 1,
          'flic': 1,
          'mucho': 1,
          'presentation': 1,
          'end': 1,
          'slamming': 1,
          'adventures': 1,
          'fall': 1,
          'somewhat': 1,
          'thrilling': 1,
          'admit': 1,
          'somehow': 1,
          'semitear': 1,
          'near': 1,
          'conclusion': 1,
          'nodd': 1,
          'noverall': 1,
          'big': 1,
          'fan': 1,
          'check': 1,
          'challenging': 1,
          'narrative': 1,
          'would': 1,
          'still': 1,
          'suggest': 1,
          'seeing': 1,
          'could': 1,
          'probably': 1,
          'wait': 1,
          'comes': 1,
          'video': 1,
          'forward': 1,
          'past': 1,
          'boring': 1,
          'parts': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'always': 1,
          'remembered': 1,
          'knocked': 1,
          'titanic': 1,
          '710': 1,
          'top': 1,
          'spot': 1,
          'boxoffice': 1,
          '15': 1,
          'straight': 1,
          'weeks': 1,
          'number': 1,
          'ngarry': 1,
          'british': 1,
          'married': 1,
          'uma': 1,
          'thurman': 1,
          'six': 1,
          'months': 1,
          'nmimi': 1,
          'rogers': 1,
          'tom': 1,
          'cruises': 1,
          'first': 1,
          'wife': 1,
          'npos': 1}),
 Counter({'alien': 12,
          'ripley': 8,
          'series': 5,
          'nthe': 5,
          'aliens': 4,
          'resurrection': 4,
          'film': 4,
          'alien3': 3,
          'popular': 3,
          'first': 3,
          'new': 3,
          'death': 2,
          'weaver': 2,
          'thanks': 2,
          'two': 2,
          'installments': 2,
          'finchers': 2,
          'jeunet': 2,
          'behind': 2,
          'also': 2,
          'even': 2,
          'military': 2,
          'blood': 2,
          'nthat': 2,
          'done': 2,
          'introduced': 2,
          'made': 2,
          'clever': 2,
          'species': 2,
          'nbut': 2,
          'trying': 2,
          'triedandtrue': 2,
          'formula': 2,
          'notably': 2,
          'jeunets': 2,
          'humor': 2,
          '1992s': 1,
          'marked': 1,
          'suicide': 1,
          'protagonist': 1,
          'ellen': 1,
          'sigourney': 1,
          'many': 1,
          'ways': 1,
          'franchise': 1,
          'itselfbox': 1,
          'office': 1,
          'receipts': 1,
          'anemic': 1,
          'poor': 1,
          'audience': 1,
          'word': 1,
          'mouth': 1,
          'critics': 1,
          'rallied': 1,
          'around': 1,
          '1979s': 1,
          '1986s': 1,
          'savaged': 1,
          'david': 1,
          'slog': 1,
          'sendoff': 1,
          'included': 1,
          'nhence': 1,
          'director': 1,
          'jeanpierre': 1,
          'others': 1,
          'faced': 1,
          'twofold': 1,
          'challengenot': 1,
          'somehow': 1,
          'resurrect': 1,
          'rescue': 1,
          'onceprofitable': 1,
          'scrap': 1,
          'heap': 1,
          'ndespite': 1,
          'odds': 1,
          'succeeded': 1,
          'entertaining': 1,
          'installment': 1,
          'measure': 1,
          'excellent': 1,
          'nwriter': 1,
          'joss': 1,
          'whedon': 1,
          'devises': 1,
          'quick': 1,
          'easy': 1,
          'painless': 1,
          'answer': 1,
          'dead': 1,
          'problemclone': 1,
          'shady': 1,
          'scientists': 1,
          'using': 1,
          'left': 1,
          'fiorina': 1,
          '161': 1,
          'prison': 1,
          'planet': 1,
          'third': 1,
          '_real_': 1,
          'challenge': 1,
          'presents': 1,
          'itselfwhat': 1,
          'nalien': 1,
          'smart': 1,
          'resourceful': 1,
          'simultaneously': 1,
          'toughened': 1,
          'vulnerable': 1,
          'exploring': 1,
          'maternal': 1,
          'side': 1,
          'saw': 1,
          'undergoing': 1,
          'seven': 1,
          'stages': 1,
          'nwhat': 1,
          'could': 1,
          'next': 1,
          'nwhedon': 1,
          'comes': 1,
          'spin': 1,
          'since': 1,
          'original': 1,
          'died': 1,
          'impregnated': 1,
          'queen': 1,
          'used': 1,
          'clone': 1,
          'infected': 1,
          'dna': 1,
          'nso': 1,
          'indeed': 1,
          'newa': 1,
          'humanalien': 1,
          'hybrid': 1,
          'blessed': 1,
          'heightened': 1,
          'instincts': 1,
          'strength': 1,
          'psychic': 1,
          'bond': 1,
          'deadly': 1,
          'predatory': 1,
          'attitude': 1,
          'nunfortunately': 1,
          'resurrections': 1,
          'streak': 1,
          'writing': 1,
          'stops': 1,
          'known': 1,
          'stronger': 1,
          'stories': 1,
          'creature': 1,
          'features': 1,
          'story': 1,
          'afterthought': 1,
          'movie': 1,
          'begins': 1,
          'plot': 1,
          'involving': 1,
          'types': 1,
          'attempting': 1,
          'train': 1,
          'bidding': 1,
          'creatures': 1,
          'break': 1,
          'free': 1,
          'ragtag': 1,
          'crew': 1,
          'time': 1,
          'bunch': 1,
          'interstellar': 1,
          'smugglers': 1,
          'including': 1,
          'tough': 1,
          'waif': 1,
          'call': 1,
          'played': 1,
          'game': 1,
          'winona': 1,
          'ryder': 1,
          'exterminate': 1,
          'nand': 1,
          'scenario': 1,
          'ultimately': 1,
          'exploited': 1,
          'full': 1,
          'potential': 1,
          'would': 1,
          'liked': 1,
          'deeper': 1,
          'exploration': 1,
          'quandary': 1,
          'becoming': 1,
          'one': 1,
          'spent': 1,
          'entire': 1,
          'life': 1,
          'destroy': 1,
          'nwhile': 1,
          'settling': 1,
          'little': 1,
          'disconcerting': 1,
          'reason': 1,
          'tackles': 1,
          'proceedings': 1,
          'giddy': 1,
          'abandon': 1,
          'years': 1,
          'still': 1,
          'terrifying': 1,
          'breed': 1,
          'less': 1,
          'violence': 1,
          'appropriately': 1,
          'grisly': 1,
          'extreme': 1,
          'action': 1,
          'set': 1,
          'pieces': 1,
          'suspenseful': 1,
          'exciting': 1,
          'extended': 1,
          'underwater': 1,
          'sequence': 1,
          'absolutely': 1,
          'mesmerizing': 1,
          'visually': 1,
          'solid': 1,
          'work': 1,
          'production': 1,
          'designer': 1,
          'nigel': 1,
          'phelps': 1,
          'cinematographer': 1,
          'darius': 1,
          'khondji': 1,
          'nas': 1,
          'technically': 1,
          'adept': 1,
          'direction': 1,
          'perhaps': 1,
          'matter': 1,
          'whedons': 1,
          'greatest': 1,
          'contribution': 1,
          'infusion': 1,
          'downbeat': 1,
          'serious': 1,
          'na': 1,
          'sense': 1,
          'may': 1,
          'seem': 1,
          'go': 1,
          'everything': 1,
          'horror': 1,
          'show': 1,
          'stands': 1,
          'selfawareness': 1,
          'excess': 1,
          'adds': 1,
          'fun': 1,
          'nno': 1,
          'great': 1,
          'ridley': 1,
          'scotts': 1,
          'greater': 1,
          'james': 1,
          'camerons': 1,
          'dauntingly': 1,
          'slow': 1,
          'gloom': 1,
          'doom': 1,
          'welcome': 1,
          'return': 1,
          'roots': 1,
          'wild': 1,
          'reckless': 1,
          'thrill': 1,
          'ride': 1,
          'place': 1,
          'keep': 1,
          'future': 1,
          'npos': 1}),
 Counter({'toy': 19,
          'story': 13,
          'nthe': 10,
          '2': 9,
          'buzz': 8,
          'new': 7,
          'woodys': 5,
          'characters': 5,
          'film': 5,
          'like': 4,
          'original': 4,
          'sequel': 4,
          'nits': 4,
          'woody': 4,
          'also': 4,
          'n': 4,
          'sequels': 3,
          'one': 3,
          'pixar': 3,
          'animation': 3,
          'nwoody': 3,
          'tim': 3,
          'family': 3,
          'faces': 3,
          'work': 3,
          'seeing': 3,
          'nthere': 3,
          'get': 3,
          'first': 3,
          'movie': 3,
          'see': 3,
          'many': 2,
          'fail': 2,
          'live': 2,
          'last': 2,
          'saw': 2,
          'consistently': 2,
          'inventive': 2,
          'yet': 2,
          'another': 2,
          'bugs': 2,
          'life': 2,
          'still': 2,
          'game': 2,
          'tom': 2,
          'hanks': 2,
          'owner': 2,
          'andy': 2,
          'allen': 2,
          'wayne': 2,
          'knight': 2,
          'members': 2,
          'old': 2,
          'dog': 2,
          'makes': 2,
          'toys': 2,
          'jesse': 2,
          'joan': 2,
          'cusack': 2,
          'kelsey': 2,
          'grammer': 2,
          'forever': 2,
          'difficult': 2,
          'go': 2,
          'done': 2,
          'remarkable': 2,
          'impressive': 2,
          'release': 2,
          'well': 2,
          'sharp': 2,
          'human': 2,
          'action': 2,
          'fast': 2,
          'furious': 2,
          'impossible': 2,
          'store': 2,
          'almost': 2,
          'voice': 2,
          'much': 2,
          'character': 2,
          'roles': 2,
          'nit': 2,
          'expand': 2,
          'especially': 2,
          'may': 2,
          'clever': 2,
          'always': 2,
          'something': 2,
          'films': 2,
          'em': 2,
          'geri': 2,
          'rare': 2,
          'dont': 1,
          'theyre': 1,
          'supposed': 1,
          'nfar': 1,
          'end': 1,
          'rehashing': 1,
          'adding': 1,
          'little': 1,
          'nis': 1,
          'wonder': 1,
          'predecessors': 1,
          'nthankfully': 1,
          'wonderful': 1,
          'exception': 1,
          'ni': 1,
          'cant': 1,
          'remember': 1,
          'time': 1,
          'fun': 1,
          'sign': 1,
          'acclaimed': 1,
          'studio': 1,
          'behind': 1,
          'top': 1,
          'back': 1,
          '1995': 1,
          'hit': 1,
          'things': 1,
          'changed': 1,
          'bit': 1,
          'since': 1,
          'ended': 1,
          'voiced': 1,
          'preparing': 1,
          'leave': 1,
          'cowboy': 1,
          'camp': 1,
          'nin': 1,
          'absence': 1,
          'assigned': 1,
          'lightyear': 1,
          'comfortable': 1,
          'role': 1,
          'take': 1,
          'charge': 1,
          'nunfortunately': 1,
          'trip': 1,
          'ruined': 1,
          'accidentally': 1,
          'put': 1,
          'garage': 1,
          'sale': 1,
          'stolen': 1,
          'overzealous': 1,
          'collector': 1,
          'noff': 1,
          'save': 1,
          'gang': 1,
          'including': 1,
          'mr': 1,
          'potato': 1,
          'head': 1,
          'rickles': 1,
          'rex': 1,
          'nervous': 1,
          'dinosaur': 1,
          'wallace': 1,
          'shawn': 1,
          'hamm': 1,
          'piggy': 1,
          'bank': 1,
          'john': 1,
          'ratzenberger': 1,
          'slinky': 1,
          'jim': 1,
          'varney': 1,
          'nwhile': 1,
          'captivity': 1,
          'startling': 1,
          'discovery': 1,
          'actually': 1,
          'part': 1,
          'collection': 1,
          'based': 1,
          '1950s': 1,
          'childrens': 1,
          'show': 1,
          'entitled': 1,
          'roundup': 1,
          'nhe': 1,
          'meets': 1,
          'shows': 1,
          'include': 1,
          'cowgirl': 1,
          'sidekick': 1,
          'wise': 1,
          'prospector': 1,
          'bullseye': 1,
          'trusty': 1,
          'horse': 1,
          'nthey': 1,
          'anxiously': 1,
          'awaiting': 1,
          'arrival': 1,
          'set': 1,
          'completed': 1,
          'sold': 1,
          'japanese': 1,
          'museum': 1,
          'finally': 1,
          'escape': 1,
          'storage': 1,
          'nthis': 1,
          'means': 1,
          'choice': 1,
          'nwith': 1,
          'friends': 1,
          'coming': 1,
          'rescue': 1,
          'spend': 1,
          'years': 1,
          'japan': 1,
          'immortalized': 1,
          'nas': 1,
          'contains': 1,
          'firstrate': 1,
          'studios': 1,
          'job': 1,
          'improving': 1,
          'nreportedly': 1,
          'originally': 1,
          'slated': 1,
          'directtovideo': 1,
          'improvements': 1,
          'made': 1,
          'disney': 1,
          'rightly': 1,
          'decided': 1,
          'theaters': 1,
          'worth': 1,
          'big': 1,
          'screen': 1,
          'colors': 1,
          'bright': 1,
          'textures': 1,
          'even': 1,
          'look': 1,
          'seamless': 1,
          'facial': 1,
          'expressions': 1,
          'believable': 1,
          'sequences': 1,
          'id': 1,
          'find': 1,
          'list': 1,
          'particularly': 1,
          'wowed': 1,
          'scene': 1,
          'cohorts': 1,
          'must': 1,
          'across': 1,
          'busy': 1,
          'intersection': 1,
          'al': 1,
          'barn': 1,
          'owned': 1,
          'captor': 1,
          'npixars': 1,
          'rendition': 1,
          'nicely': 1,
          'fur': 1,
          'realistic': 1,
          'feel': 1,
          'could': 1,
          'reach': 1,
          'touch': 1,
          'perfectly': 1,
          'complementary': 1,
          'help': 1,
          'development': 1,
          'ntom': 1,
          'disappear': 1,
          'making': 1,
          'forget': 1,
          'nall': 1,
          'cast': 1,
          'reprise': 1,
          'excellent': 1,
          'nseveral': 1,
          'voices': 1,
          'added': 1,
          'fine': 1,
          'strong': 1,
          'characterization': 1,
          'able': 1,
          'choices': 1,
          'confronted': 1,
          'hasnt': 1,
          'realized': 1,
          'status': 1,
          'forcing': 1,
          'used': 1,
          'developed': 1,
          'quite': 1,
          'narrates': 1,
          'sarah': 1,
          'mclachlanaided': 1,
          'flashback': 1,
          'illustrating': 1,
          'loved': 1,
          'forgotten': 1,
          'computeranimated': 1,
          'sappy': 1,
          'music': 1,
          'downright': 1,
          'touching': 1,
          'script': 1,
          'despite': 1,
          'screenplay': 1,
          'credited': 1,
          'four': 1,
          'different': 1,
          'writers': 1,
          'endlessly': 1,
          'considering': 1,
          'reason': 1,
          'works': 1,
          'refuses': 1,
          'capitalize': 1,
          'originals': 1,
          'success': 1,
          'redoing': 1,
          'using': 1,
          'nnot': 1,
          'nwe': 1,
          'change': 1,
          'issues': 1,
          'brought': 1,
          'way': 1,
          'keeps': 1,
          'reinventing': 1,
          'idea': 1,
          'waiting': 1,
          'around': 1,
          'corner': 1,
          'humor': 1,
          'witty': 1,
          'amuse': 1,
          'kids': 1,
          'adults': 1,
          'funny': 1,
          'asides': 1,
          'star': 1,
          'wars': 1,
          'jurassic': 1,
          'park': 1,
          'among': 1,
          'others': 1,
          'takes': 1,
          'classic': 1,
          'barbie': 1,
          'rock': 1,
          'sock': 1,
          'robots': 1,
          'appearances': 1,
          'efforts': 1,
          '1997': 1,
          'short': 1,
          'appearance': 1,
          'repairman': 1,
          'fixes': 1,
          'broken': 1,
          'arm': 1,
          'chases': 1,
          'street': 1,
          'elevator': 1,
          'baggage': 1,
          'carousel': 1,
          'airplane': 1,
          'keep': 1,
          'getting': 1,
          'bigger': 1,
          'better': 1,
          'never': 1,
          'grows': 1,
          'stagnant': 1,
          'hold': 1,
          'interest': 1,
          'pay': 1,
          'attention': 1,
          'rewarding': 1,
          'come': 1,
          'along': 1,
          'kind': 1,
          'thats': 1,
          'dislike': 1,
          'created': 1,
          'purely': 1,
          'entertain': 1,
          'though': 1,
          'enjoy': 1,
          'thoughtprovoking': 1,
          'drama': 1,
          'next': 1,
          'person': 1,
          'nice': 1,
          'trying': 1,
          'exactly': 1,
          'movies': 1,
          'tried': 1,
          'send': 1,
          'us': 1,
          'smile': 1,
          'fair': 1,
          'bet': 1,
          'whole': 1,
          'smiles': 1,
          'collective': 1,
          'manages': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'movie': 6,
          'better': 4,
          'book': 4,
          'nbut': 4,
          'bit': 3,
          'film': 3,
          'simple': 3,
          'sense': 3,
          'nthis': 3,
          'characters': 3,
          'see': 3,
          'chance': 3,
          'dream': 3,
          'several': 3,
          'scenes': 3,
          'clear': 3,
          'much': 3,
          'seen': 2,
          'ni': 2,
          'read': 2,
          'plan': 2,
          'reminded': 2,
          'landscape': 2,
          'snowy': 2,
          'cold': 2,
          'also': 2,
          'none': 2,
          'probably': 2,
          'lead': 2,
          'seem': 2,
          'seeing': 2,
          'come': 2,
          'true': 2,
          'snow': 2,
          'nin': 2,
          'american': 2,
          'nit': 2,
          'really': 2,
          'seems': 2,
          'one': 2,
          'claims': 2,
          'might': 2,
          'right': 2,
          'thing': 2,
          'result': 2,
          'movies': 2,
          'biggest': 2,
          'makes': 2,
          'many': 2,
          'books': 2,
          'like': 2,
          'story': 2,
          'present': 2,
          'problem': 2,
          'always': 2,
          'man': 2,
          'trailer': 2,
          'expectation': 1,
          'rating': 1,
          'worse': 1,
          'expected': 1,
          'mainly': 1,
          'found': 1,
          'middle': 1,
          'part': 1,
          'dull': 1,
          'nroger': 1,
          'ebert': 1,
          'gave': 1,
          'four': 1,
          'star': 1,
          'review': 1,
          'critic': 1,
          'uses': 1,
          'full': 1,
          'scale': 1,
          'often': 1,
          'agree': 1,
          'dark': 1,
          'city': 1,
          'best': 1,
          '1998': 1,
          'must': 1,
          'five': 1,
          'years': 1,
          'ago': 1,
          'hugely': 1,
          'enjoyed': 1,
          'opening': 1,
          'sweet': 1,
          'hereafter': 1,
          'filmed': 1,
          'feel': 1,
          'rather': 1,
          'crisp': 1,
          'manner': 1,
          'reminds': 1,
          'fargo': 1,
          'loathed': 1,
          'almost': 1,
          'far': 1,
          'eye': 1,
          'popping': 1,
          'delights': 1,
          'quick': 1,
          'dead': 1,
          'instead': 1,
          'raimi': 1,
          'made': 1,
          'constrained': 1,
          'would': 1,
          'improved': 1,
          'lots': 1,
          'odd': 1,
          'shots': 1,
          'affliction': 1,
          'hoping': 1,
          'possibility': 1,
          'life': 1,
          'father': 1,
          'uncovered': 1,
          'covered': 1,
          'field': 1,
          'airplane': 1,
          'crash': 1,
          'landed': 1,
          'plane': 1,
          'three': 1,
          'men': 1,
          'find': 1,
          'gym': 1,
          'bag': 1,
          'naffliction': 1,
          'set': 1,
          'njust': 1,
          'hold': 1,
          'money': 1,
          'spring': 1,
          'theyll': 1,
          'safe': 1,
          'spend': 1,
          'hope': 1,
          'experiencing': 1,
          'melts': 1,
          'hopes': 1,
          'nas': 1,
          'return': 1,
          'paradise': 1,
          'presented': 1,
          'something': 1,
          'selfish': 1,
          'strength': 1,
          'fact': 1,
          'based': 1,
          'selected': 1,
          'visualized': 1,
          'eschewing': 1,
          'anything': 1,
          'remotely': 1,
          'resembling': 1,
          'coherent': 1,
          'example': 1,
          'danger': 1,
          'overfamiliarization': 1,
          'writer': 1,
          'perhaps': 1,
          'feels': 1,
          'doesnt': 1,
          'lack': 1,
          'baffles': 1,
          'audience': 1,
          'definitely': 1,
          'even': 1,
          'though': 1,
          'screenplay': 1,
          'author': 1,
          'going': 1,
          'nim': 1,
          'sue': 1,
          'lot': 1,
          'cut': 1,
          'cant': 1,
          'remember': 1,
          'neven': 1,
          'minor': 1,
          'scene': 1,
          'involving': 1,
          'complaining': 1,
          'paid': 1,
          'grains': 1,
          'included': 1,
          'comes': 1,
          'mondays': 1,
          'charged': 1,
          'purchase': 1,
          'nturns': 1,
          'nwell': 1,
          'warned': 1,
          'reveals': 1,
          'ending': 1,
          'moments': 1,
          'yes': 1,
          'downer': 1,
          'plot': 1,
          'developments': 1,
          'beginning': 1,
          'spelled': 1,
          'directly': 1,
          'youre': 1,
          'lucky': 1,
          'youll': 1,
          'forgotten': 1,
          'npos': 1}),
 Counter({'film': 11,
          'nthe': 9,
          'green': 8,
          'mile': 8,
          'characters': 8,
          'guards': 5,
          'scene': 5,
          'hour': 4,
          'time': 4,
          'wonderful': 4,
          'prisoners': 4,
          'back': 4,
          'others': 4,
          'nhowever': 3,
          'plot': 3,
          'prison': 3,
          'guard': 3,
          'evil': 3,
          'perfect': 3,
          'roles': 3,
          'duncan': 3,
          'performance': 3,
          'would': 3,
          'nhis': 3,
          'three': 2,
          'running': 2,
          'begins': 2,
          'perfection': 2,
          'performances': 2,
          'story': 2,
          'follows': 2,
          'edgecomb': 2,
          'tom': 2,
          'hanks': 2,
          'death': 2,
          'audience': 2,
          'good': 2,
          'prisoner': 2,
          'hard': 2,
          'nthey': 2,
          'given': 2,
          'make': 2,
          'difficult': 2,
          'unique': 2,
          'create': 2,
          'interesting': 2,
          'hutchinson': 2,
          'michael': 2,
          'playing': 2,
          'wetmore': 2,
          'able': 2,
          'job': 2,
          'also': 2,
          'every': 2,
          'veteran': 2,
          'nas': 2,
          'creates': 2,
          'coffey': 2,
          'love': 2,
          'hate': 2,
          'pain': 2,
          'show': 2,
          'without': 2,
          'even': 2,
          'nif': 2,
          'end': 2,
          'simply': 1,
          'amazing': 1,
          'developed': 1,
          'nbased': 1,
          'stephen': 1,
          'king': 1,
          'series': 1,
          'title': 1,
          'starts': 1,
          'painfully': 1,
          'slow': 1,
          'underdeveloped': 1,
          'idiotic': 1,
          'dialogue': 1,
          'progress': 1,
          'turns': 1,
          'pure': 1,
          'outstanding': 1,
          'direction': 1,
          'nfrank': 1,
          'darabont': 1,
          'masterfully': 1,
          'followed': 1,
          'shawshank': 1,
          'redemption': 1,
          'perspective': 1,
          'paul': 1,
          'nthrough': 1,
          'edgecombs': 1,
          'experiences': 1,
          'cell': 1,
          'block': 1,
          'known': 1,
          'row': 1,
          'wait': 1,
          'repent': 1,
          'sees': 1,
          'sides': 1,
          'law': 1,
          'nfrom': 1,
          'successful': 1,
          'creating': 1,
          'sympathy': 1,
          'kindhearted': 1,
          'working': 1,
          'thinking': 1,
          'four': 1,
          'meet': 1,
          'variety': 1,
          'strong': 1,
          'relationships': 1,
          'eventually': 1,
          'forced': 1,
          'execute': 1,
          'veterans': 1,
          'new': 1,
          'comers': 1,
          'original': 1,
          'superb': 1,
          'ensemble': 1,
          'acting': 1,
          'nhanks': 1,
          'david': 1,
          'morse': 1,
          'barry': 1,
          'pepper': 1,
          'fitting': 1,
          'relate': 1,
          'calm': 1,
          'less': 1,
          'extreme': 1,
          'positions': 1,
          'rational': 1,
          'decisions': 1,
          'times': 1,
          'ones': 1,
          'fulfill': 1,
          'demands': 1,
          'perfectly': 1,
          'friction': 1,
          'exciting': 1,
          'nsome': 1,
          'particularly': 1,
          'note': 1,
          'worthy': 1,
          'include': 1,
          'doug': 1,
          'sam': 1,
          'rockwell': 1,
          'nhutchinson': 1,
          'percy': 1,
          'cowardly': 1,
          'hides': 1,
          'true': 1,
          'feelings': 1,
          'tormenting': 1,
          'gives': 1,
          'greatest': 1,
          'movie': 1,
          'nevery': 1,
          'appears': 1,
          'screen': 1,
          'attitude': 1,
          'uncomfortable': 1,
          'creepy': 1,
          'expressions': 1,
          'effectively': 1,
          'terrifying': 1,
          'nit': 1,
          'come': 1,
          'surprise': 1,
          'nominated': 1,
          'academy': 1,
          'award': 1,
          'best': 1,
          'supporting': 1,
          'actor': 1,
          'stole': 1,
          'away': 1,
          'oscar': 1,
          'winner': 1,
          'nrockwell': 1,
          'independent': 1,
          'plays': 1,
          'role': 1,
          'wild': 1,
          'bill': 1,
          'wharton': 1,
          'taunts': 1,
          'harasses': 1,
          'hours': 1,
          'really': 1,
          'gets': 1,
          'skin': 1,
          'irritates': 1,
          'watch': 1,
          'torture': 1,
          'nthis': 1,
          'irritation': 1,
          'makes': 1,
          'believable': 1,
          'last': 1,
          'noteworthy': 1,
          'belongs': 1,
          'enormous': 1,
          'convicted': 1,
          'killer': 1,
          'john': 1,
          'happens': 1,
          'hold': 1,
          'power': 1,
          'curing': 1,
          'ill': 1,
          'nduncan': 1,
          'frightened': 1,
          'childlike': 1,
          'behemoth': 1,
          'similar': 1,
          'lennie': 1,
          'small': 1,
          'mice': 1,
          'men': 1,
          'desire': 1,
          'extinction': 1,
          'evokes': 1,
          'compassion': 1,
          'obvious': 1,
          'suffering': 1,
          'cause': 1,
          'viewer': 1,
          'takes': 1,
          'introduced': 1,
          'completely': 1,
          'opens': 1,
          'ridiculous': 1,
          'present': 1,
          'day': 1,
          'setting': 1,
          'contains': 1,
          'jabs': 1,
          'jerry': 1,
          'springer': 1,
          'containing': 1,
          'one': 1,
          'old': 1,
          'man': 1,
          'complaining': 1,
          'guests': 1,
          'inbred': 1,
          'rednecks': 1,
          'nnot': 1,
          'observation': 1,
          'entirely': 1,
          'pointless': 1,
          'place': 1,
          'hackneyed': 1,
          'beyond': 1,
          'belief': 1,
          'flashes': 1,
          '1935': 1,
          'graham': 1,
          'greene': 1,
          'quickly': 1,
          'executed': 1,
          'introduction': 1,
          'seems': 1,
          'rushed': 1,
          'knowledge': 1,
          'neither': 1,
          'sad': 1,
          'convincing': 1,
          'ngreene': 1,
          'final': 1,
          'word': 1,
          'like': 1,
          'dont': 1,
          'see': 1,
          'walk': 1,
          'infamous': 1,
          'specifically': 1,
          'introduce': 1,
          'eduard': 1,
          'delacroix': 1,
          'jeter': 1,
          'well': 1,
          'five': 1,
          'becomes': 1,
          'speed': 1,
          'matter': 1,
          'concern': 1,
          'edited': 1,
          'two': 1,
          'mark': 1,
          'unsatisfactory': 1,
          'know': 1,
          'treat': 1,
          'development': 1,
          'great': 1,
          'amount': 1,
          'attached': 1,
          'character': 1,
          'n': 1,
          'following': 1,
          'rough': 1,
          'beginning': 1,
          'pivotal': 1,
          'moment': 1,
          'finally': 1,
          'comes': 1,
          'almost': 1,
          'impossible': 1,
          'feel': 1,
          'sort': 1,
          'sadness': 1,
          'person': 1,
          'nfighting': 1,
          'tears': 1,
          'task': 1,
          'barely': 1,
          'succeeded': 1,
          'survive': 1,
          'first': 1,
          'third': 1,
          'sit': 1,
          'enjoy': 1,
          'remainder': 1,
          'priceless': 1,
          'entertainment': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'jekyll': 3,
          'hyde': 3,
          'film': 3,
          'story': 2,
          'expect': 2,
          'surprisingly': 2,
          'dreary': 2,
          'malkovich': 2,
          'leave': 2,
          'whole': 2,
          'good': 2,
          'perhaps': 2,
          'parts': 2,
          'without': 2,
          'color': 2,
          'told': 1,
          'maids': 1,
          'point': 1,
          'view': 1,
          'word': 1,
          'dark': 1,
          'nyou': 1,
          'wouldnt': 1,
          'something': 1,
          'bright': 1,
          'cheery': 1,
          'based': 1,
          'robert': 1,
          'louis': 1,
          'stevensons': 1,
          'novel': 1,
          'dismal': 1,
          'njekyllhyde': 1,
          'john': 1,
          'terminally': 1,
          'depressed': 1,
          'desperate': 1,
          'nmary': 1,
          'reilly': 1,
          'julia': 1,
          'roberts': 1,
          'victim': 1,
          'monstrous': 1,
          'child': 1,
          'abuse': 1,
          'antiwoman': 1,
          'sentiment': 1,
          'times': 1,
          'ndirector': 1,
          'stephen': 1,
          'fears': 1,
          'version': 1,
          'london': 1,
          'slums': 1,
          'makes': 1,
          'us': 1,
          'marvel': 1,
          'anyone': 1,
          'survived': 1,
          'lighting': 1,
          'level': 1,
          'exceedingly': 1,
          'low': 1,
          'throughout': 1,
          'movie': 1,
          'almost': 1,
          'appears': 1,
          'filmed': 1,
          'black': 1,
          'white': 1,
          'direction': 1,
          'cinematography': 1,
          'brilliant': 1,
          'liquid': 1,
          'nscenes': 1,
          'flow': 1,
          'next': 1,
          'scene': 1,
          'like': 1,
          'honey': 1,
          'oozing': 1,
          'strawberry': 1,
          'n': 1,
          'except': 1,
          'theres': 1,
          'red': 1,
          'course': 1,
          'look': 1,
          'moody': 1,
          'melodramatic': 1,
          'youll': 1,
          'shocked': 1,
          'theater': 1,
          'ni': 1,
          'saw': 1,
          'matinee': 1,
          'took': 1,
          'quite': 1,
          'adjust': 1,
          'sunny': 1,
          'skies': 1,
          'afterward': 1,
          'noften': 1,
          'archetypes': 1,
          'viewed': 1,
          'splitting': 1,
          'person': 1,
          'components': 1,
          'evil': 1,
          'cerebral': 1,
          'emotional': 1,
          'nhere': 1,
          'doctor': 1,
          'intellectual': 1,
          'certainly': 1,
          'powerless': 1,
          'nhis': 1,
          'alter': 1,
          'ego': 1,
          'forceful': 1,
          'totally': 1,
          'conscience': 1,
          'ntwo': 1,
          'make': 1,
          'nneither': 1,
          'capable': 1,
          'functioning': 1,
          'separated': 1,
          'disaster': 1,
          'inevitable': 1,
          'differences': 1,
          'two': 1,
          'characters': 1,
          'would': 1,
          'effective': 1,
          'accomplished': 1,
          'demeanor': 1,
          'attitude': 1,
          'nwhen': 1,
          'finally': 1,
          'see': 1,
          'transformation': 1,
          'special': 1,
          'effects': 1,
          'thrust': 1,
          'realm': 1,
          'science': 1,
          'fiction': 1,
          'psychological': 1,
          'horror': 1,
          'tale': 1,
          'demands': 1,
          'nroberts': 1,
          'skillful': 1,
          'roles': 1,
          'nboth': 1,
          'suitably': 1,
          'melancholy': 1,
          'fitting': 1,
          'rest': 1,
          'flash': 1,
          'life': 1,
          'comes': 1,
          'glenn': 1,
          'close': 1,
          'lips': 1,
          'madam': 1,
          'whorehouse': 1,
          'lives': 1,
          'apparently': 1,
          'frequents': 1,
          'nlife': 1,
          'maybe': 1,
          'closes': 1,
          'best': 1,
          'role': 1,
          'nshe': 1,
          'seems': 1,
          'little': 1,
          'cardboard': 1,
          'cutout': 1,
          'character': 1,
          'na': 1,
          'beautiful': 1,
          'way': 1,
          'nyoull': 1,
          'appreciate': 1,
          'filmmaking': 1,
          'craft': 1,
          'dont': 1,
          'upbeat': 1,
          'mood': 1,
          'npos': 1}),
 Counter({'film': 14,
          'skinheads': 7,
          'nthe': 7,
          'violence': 6,
          'steve': 5,
          'message': 5,
          'character': 5,
          'one': 4,
          'life': 3,
          'generation': 3,
          'powerful': 3,
          'characters': 3,
          'bleak': 2,
          'sam': 2,
          'jones': 2,
          'gang': 2,
          'girlfriend': 2,
          'incident': 2,
          'entirely': 2,
          'gets': 2,
          'closer': 2,
          'people': 2,
          'vicious': 2,
          'films': 2,
          'cant': 2,
          'within': 2,
          'seen': 2,
          'david': 2,
          'nthere': 2,
          'constant': 2,
          'men': 2,
          'act': 2,
          'also': 2,
          'nothing': 2,
          'many': 2,
          'performance': 2,
          'seems': 2,
          'lee': 2,
          'evil': 2,
          'hatred': 2,
          'actor': 2,
          'able': 2,
          'end': 2,
          'ending': 2,
          'us': 2,
          'aggressive': 1,
          'unrelenting': 1,
          'interracial': 1,
          'couple': 1,
          'damon': 1,
          'elexa': 1,
          'williams': 1,
          'respectively': 1,
          'viciously': 1,
          'attacked': 1,
          'parking': 1,
          'garage': 1,
          'night': 1,
          'beat': 1,
          'force': 1,
          'watch': 1,
          'brutally': 1,
          'rape': 1,
          'nwhen': 1,
          'kills': 1,
          'later': 1,
          'evening': 1,
          'decides': 1,
          'must': 1,
          'taught': 1,
          'lesson': 1,
          'nwaiting': 1,
          'seven': 1,
          'months': 1,
          'thuggish': 1,
          'forget': 1,
          'shaves': 1,
          'head': 1,
          'dresses': 1,
          'combat': 1,
          'boots': 1,
          'suspenders': 1,
          'tattoos': 1,
          'flesh': 1,
          'nazi': 1,
          'symbols': 1,
          'tries': 1,
          'infiltrate': 1,
          'nas': 1,
          'committed': 1,
          'horrible': 1,
          'crime': 1,
          'begins': 1,
          'learn': 1,
          'really': 1,
          'starts': 1,
          'question': 1,
          'motives': 1,
          'nrandolph': 1,
          'krets': 1,
          'script': 1,
          'based': 1,
          'two': 1,
          'real': 1,
          'incidents': 1,
          'affected': 1,
          'producer': 1,
          'shaun': 1,
          'hill': 1,
          'affront': 1,
          'intolerance': 1,
          'causes': 1,
          'audience': 1,
          'subjected': 1,
          'brutality': 1,
          'ignorance': 1,
          'help': 1,
          'disgusted': 1,
          'events': 1,
          'presented': 1,
          'nive': 1,
          'said': 1,
          'fight': 1,
          'club': 1,
          'finchers': 1,
          'trying': 1,
          'define': 1,
          'nkrets': 1,
          'wake': 1,
          'call': 1,
          'nif': 1,
          'fincher': 1,
          'kubrick': 1,
          'kret': 1,
          'w': 1,
          'ngriffith': 1,
          'thematically': 1,
          'speaking': 1,
          'single': 1,
          'likable': 1,
          'obviously': 1,
          'repulsive': 1,
          'beliefs': 1,
          'state': 1,
          'fury': 1,
          'races': 1,
          'circles': 1,
          'africanamerican': 1,
          'constantly': 1,
          'shown': 1,
          'sexually': 1,
          'assaulting': 1,
          'drug': 1,
          'abusers': 1,
          'always': 1,
          'joyride': 1,
          'looking': 1,
          'someone': 1,
          'accost': 1,
          'neven': 1,
          'gay': 1,
          'get': 1,
          'locating': 1,
          'lair': 1,
          'beating': 1,
          'severely': 1,
          'lead': 1,
          'pipes': 1,
          'blunt': 1,
          'objects': 1,
          'main': 1,
          'unlikable': 1,
          'person': 1,
          'becomes': 1,
          'seek': 1,
          'revenge': 1,
          'nwhat': 1,
          'comes': 1,
          'simple': 1,
          'begets': 1,
          'clashes': 1,
          'factions': 1,
          'continue': 1,
          'endless': 1,
          'cycle': 1,
          'inherent': 1,
          'society': 1,
          'cast': 1,
          'absolutely': 1,
          'remarkable': 1,
          'ndamon': 1,
          'shows': 1,
          'raw': 1,
          'energy': 1,
          'actors': 1,
          'seem': 1,
          'summon': 1,
          'days': 1,
          'less': 1,
          'nhis': 1,
          'initial': 1,
          'reaction': 1,
          'hearing': 1,
          'girlfriends': 1,
          'suicide': 1,
          'affecting': 1,
          'scenes': 1,
          'ever': 1,
          'ndavid': 1,
          'wilson': 1,
          'plays': 1,
          'appropriately': 1,
          'enough': 1,
          'accurately': 1,
          'second': 1,
          'command': 1,
          'skinhead': 1,
          'makes': 1,
          'extra': 1,
          'money': 1,
          'performing': 1,
          'oral': 1,
          'sex': 1,
          'irony': 1,
          'lost': 1,
          'nwilsons': 1,
          'pure': 1,
          'brings': 1,
          'hate': 1,
          'perfectly': 1,
          'nsadly': 1,
          'dave': 1,
          'ward': 1,
          'portrays': 1,
          'crew': 1,
          'follow': 1,
          'excellent': 1,
          'victim': 1,
          'hands': 1,
          'fellow': 1,
          'road': 1,
          'rage': 1,
          'nward': 1,
          'showed': 1,
          'immense': 1,
          'promise': 1,
          'greatly': 1,
          'missed': 1,
          'nnote': 1,
          'shame': 1,
          'filmmakers': 1,
          'add': 1,
          'disclaimer': 1,
          'stating': 1,
          'neither': 1,
          'musicians': 1,
          'contributing': 1,
          'music': 1,
          'condone': 1,
          'racism': 1,
          'couldnt': 1,
          'spelled': 1,
          'clearly': 1,
          'would': 1,
          'probably': 1,
          'find': 1,
          'much': 1,
          'akin': 1,
          'training': 1,
          'video': 1,
          'condemnation': 1,
          'winners': 1,
          'either': 1,
          'nno': 1,
          'comeuppance': 1,
          'leaves': 1,
          'almost': 1,
          'right': 1,
          'began': 1,
          'nwhere': 1,
          'american': 1,
          'history': 1,
          'x': 1,
          'redemption': 1,
          'victories': 1,
          'store': 1,
          'pariahs': 1,
          'band': 1,
          'twisted': 1,
          'souls': 1,
          'nit': 1,
          'carries': 1,
          'despite': 1,
          'may': 1,
          'momentarily': 1,
          'put': 1,
          'mind': 1,
          'rest': 1,
          'still': 1,
          'forms': 1,
          'little': 1,
          'done': 1,
          'eradicate': 1,
          'npos': 1}),
 Counter({'annie': 7,
          'jessica': 7,
          'film': 5,
          'gift': 5,
          'many': 4,
          'makes': 4,
          'donnie': 4,
          'best': 4,
          'one': 4,
          '2000s': 4,
          'nin': 3,
          'reeves': 3,
          'friend': 3,
          'could': 3,
          '1999s': 3,
          'role': 3,
          'fact': 2,
          'around': 2,
          'n': 2,
          'raimi': 2,
          'little': 2,
          'pond': 2,
          'movie': 2,
          'nthe': 2,
          'cast': 2,
          'character': 2,
          'wilson': 2,
          'cate': 2,
          'blanchett': 2,
          'giving': 2,
          'readings': 2,
          'valerie': 2,
          'barksdale': 2,
          'hilary': 2,
          'swank': 2,
          'keanu': 2,
          'cole': 2,
          'ribisi': 2,
          'confused': 2,
          'nightmares': 2,
          'nfor': 2,
          'good': 2,
          'nher': 2,
          'given': 2,
          'annies': 2,
          'school': 2,
          'wayne': 2,
          'king': 2,
          'katie': 2,
          'holmes': 2,
          'nat': 2,
          'linda': 2,
          'kim': 2,
          'dickens': 2,
          'possibly': 2,
          'may': 2,
          'performances': 2,
          'nblanchett': 2,
          'every': 2,
          'turn': 2,
          'boys': 2,
          'biggest': 2,
          'never': 2,
          'young': 2,
          'man': 2,
          'strong': 2,
          'bob': 2,
          'gothic': 1,
          'murdermystery': 1,
          'yarns': 1,
          'new': 1,
          'conceit': 1,
          'theyve': 1,
          'books': 1,
          'years': 1,
          'nwithout': 1,
          'proper': 1,
          'handling': 1,
          'come': 1,
          'oldfashioned': 1,
          'bland': 1,
          'outdated': 1,
          'directed': 1,
          'sam': 1,
          'triedandtrue': 1,
          'effort': 1,
          'surprises': 1,
          'includes': 1,
          'everything': 1,
          'wide': 1,
          'array': 1,
          'suspects': 1,
          'red': 1,
          'herrings': 1,
          'mansions': 1,
          'deep': 1,
          'south': 1,
          'moss': 1,
          'trees': 1,
          'front': 1,
          'eventual': 1,
          'discovery': 1,
          'waterlogged': 1,
          'corpse': 1,
          'found': 1,
          'nearby': 1,
          'nits': 1,
          'fairly': 1,
          'obvious': 1,
          'killer': 1,
          'predicted': 1,
          'would': 1,
          'began': 1,
          'correct': 1,
          'preliminary': 1,
          'suspicions': 1,
          'ultimately': 1,
          'shouldnt': 1,
          'work': 1,
          'thanks': 1,
          'sparkling': 1,
          'fills': 1,
          'memorable': 1,
          'nuances': 1,
          'fun': 1,
          'simply': 1,
          'watching': 1,
          'people': 1,
          'interact': 1,
          'nannie': 1,
          'recently': 1,
          'widowed': 1,
          'mother': 1,
          'three': 1,
          'sons': 1,
          'living': 1,
          'psychic': 1,
          'residents': 1,
          'backwater': 1,
          'southern': 1,
          'hometown': 1,
          'nsome': 1,
          'mainstay': 1,
          'clients': 1,
          'include': 1,
          'severely': 1,
          'abused': 1,
          'husband': 1,
          'buddy': 1,
          'giovanni': 1,
          'unstable': 1,
          'mechanic': 1,
          'hes': 1,
          'mysterious': 1,
          'blue': 1,
          'diamond': 1,
          'somehow': 1,
          'linked': 1,
          'father': 1,
          'give': 1,
          'merely': 1,
          'money': 1,
          'uses': 1,
          'way': 1,
          'seeking': 1,
          'solace': 1,
          'finding': 1,
          'everyones': 1,
          'future': 1,
          'late': 1,
          'grandmother': 1,
          'rosemary': 1,
          'harris': 1,
          'told': 1,
          'child': 1,
          'always': 1,
          'remember': 1,
          'nwhen': 1,
          'eldest': 1,
          'son': 1,
          'involved': 1,
          'fight': 1,
          'meets': 1,
          'niceguy': 1,
          'principal': 1,
          'collins': 1,
          'greg': 1,
          'kinnear': 1,
          'finds': 1,
          'attracted': 1,
          'nbut': 1,
          'engaged': 1,
          'wealthy': 1,
          'immediately': 1,
          'gets': 1,
          'negative': 1,
          'vibe': 1,
          'party': 1,
          'stumbles': 1,
          'upon': 1,
          'compromising': 1,
          'position': 1,
          'lawyer': 1,
          'david': 1,
          'duncan': 1,
          'gary': 1,
          'nsoon': 1,
          'disappeared': 1,
          'leaving': 1,
          'everyone': 1,
          'frenzy': 1,
          'happened': 1,
          'starts': 1,
          'apparitions': 1,
          'linking': 1,
          'vicious': 1,
          'redneck': 1,
          'behind': 1,
          'home': 1,
          'cliched': 1,
          'sheer': 1,
          'storytelling': 1,
          'level': 1,
          'tight': 1,
          'direction': 1,
          'redeemed': 1,
          'embarrassing': 1,
          'last': 1,
          'love': 1,
          'game': 1,
          'lift': 1,
          'picture': 1,
          'several': 1,
          'notches': 1,
          'nslowly': 1,
          'enveloping': 1,
          'viewer': 1,
          'intriguing': 1,
          'characters': 1,
          'individual': 1,
          'plights': 1,
          'disappearance': 1,
          '30minute': 1,
          'mark': 1,
          'divulges': 1,
          'movies': 1,
          'true': 1,
          'intentions': 1,
          'transforms': 1,
          'proceedings': 1,
          'taut': 1,
          'times': 1,
          'frightening': 1,
          'horrormystery': 1,
          'center': 1,
          'exceptional': 1,
          'talented': 1,
          'mr': 1,
          'ripley': 1,
          'turns': 1,
          'runofthemill': 1,
          'protagonist': 1,
          'exact': 1,
          'downtoearth': 1,
          'realistic': 1,
          'person': 1,
          'valid': 1,
          'troubles': 1,
          'caring': 1,
          'attitude': 1,
          'towards': 1,
          'takes': 1,
          'unextraordinary': 1,
          'material': 1,
          'runs': 1,
          'entire': 1,
          'truly': 1,
          'classy': 1,
          'aura': 1,
          'otherwise': 1,
          'might': 1,
          'nwe': 1,
          'follow': 1,
          'mesmerizing': 1,
          'actress': 1,
          'isnt': 1,
          'bright': 1,
          'performer': 1,
          'ably': 1,
          'supported': 1,
          'casts': 1,
          'year': 1,
          'first': 1,
          'following': 1,
          'oscar': 1,
          'win': 1,
          'dont': 1,
          'cry': 1,
          'excellent': 1,
          'seeks': 1,
          'guidance': 1,
          'scared': 1,
          'take': 1,
          'advice': 1,
          'leave': 1,
          'grossly': 1,
          'abusive': 1,
          'nas': 1,
          'watcher': 1,
          'utterly': 1,
          'convincing': 1,
          'backwoods': 1,
          'meanie': 1,
          'much': 1,
          'difficult': 1,
          'believe': 1,
          'actor': 1,
          'oftencriticized': 1,
          'whose': 1,
          'acting': 1,
          'abilities': 1,
          'compliment': 1,
          'get': 1,
          'also': 1,
          'better': 1,
          'ngiovanni': 1,
          'boiler': 1,
          'room': 1,
          'heartbreaking': 1,
          'mentally': 1,
          'slow': 1,
          'sees': 1,
          'wants': 1,
          'nothing': 1,
          'help': 1,
          'understand': 1,
          'plagued': 1,
          'bad': 1,
          'dreams': 1,
          'dad': 1,
          'small': 1,
          'pivotal': 1,
          'sleazy': 1,
          'wonder': 1,
          'turned': 1,
          'yet': 1,
          'another': 1,
          'stunning': 1,
          'supporting': 1,
          'promiscuous': 1,
          'played': 1,
          'radiant': 1,
          'scenes': 1,
          'nfinally': 1,
          'hollow': 1,
          'usual': 1,
          'impression': 1,
          'spicy': 1,
          'notable': 1,
          'aspect': 1,
          'moody': 1,
          'atmosphere': 1,
          'lays': 1,
          'thickly': 1,
          'foreboding': 1,
          'air': 1,
          'scene': 1,
          'almost': 1,
          'suffocating': 1,
          'nthanks': 1,
          'cleverly': 1,
          'construed': 1,
          'editing': 1,
          'arthur': 1,
          'coburn': 1,
          'murawski': 1,
          'successful': 1,
          'use': 1,
          'different': 1,
          'eerie': 1,
          'sounds': 1,
          'effects': 1,
          'music': 1,
          'score': 1,
          'christopher': 1,
          'achieves': 1,
          'scary': 1,
          'undercurrent': 1,
          'filled': 1,
          'dread': 1,
          'nhelped': 1,
          'along': 1,
          'screenplay': 1,
          'billy': 1,
          'thornton': 1,
          'tom': 1,
          'epperson': 1,
          'setting': 1,
          'delightful': 1,
          'rarest': 1,
          'thrillers': 1,
          'actually': 1,
          'thrills': 1,
          'offers': 1,
          'fair': 1,
          'share': 1,
          'chills': 1,
          'nit': 1,
          'groundbreakingly': 1,
          'original': 1,
          'sure': 1,
          'entertaining': 1,
          'ride': 1,
          'duration': 1,
          'running': 1,
          'time': 1,
          'npos': 1}),
 Counter({'kids': 7,
          'film': 6,
          'one': 5,
          'children': 4,
          'movie': 4,
          'nthe': 4,
          'parents': 4,
          'get': 4,
          'scenes': 4,
          'dog': 4,
          'would': 4,
          'n': 3,
          'spy': 3,
          'brother': 3,
          'action': 3,
          'nwhat': 3,
          'family': 3,
          'including': 3,
          'bit': 3,
          'testicle': 3,
          'juni': 3,
          'nthey': 3,
          'best': 2,
          'story': 2,
          'fun': 2,
          'sister': 2,
          'humor': 2,
          'see': 2,
          'spot': 2,
          'run': 2,
          'biting': 2,
          'metal': 2,
          'together': 2,
          'course': 2,
          'shows': 2,
          'become': 2,
          'instead': 2,
          'vega': 2,
          'daryl': 2,
          'sabara': 2,
          'home': 2,
          'gregorio': 2,
          'banderas': 2,
          'carla': 2,
          'gugino': 2,
          'agents': 2,
          'mission': 2,
          'alan': 2,
          'cumming': 2,
          'tv': 2,
          'show': 2,
          'creatures': 2,
          'secret': 2,
          'enough': 2,
          'like': 2,
          'silly': 2,
          'guards': 2,
          'thumbs': 2,
          'virtual': 2,
          'even': 2,
          'rodriguez': 2,
          'character': 2,
          'nice': 2,
          'moments': 2,
          'without': 2,
          'things': 1,
          'job': 1,
          'every': 1,
          'often': 1,
          'still': 1,
          'catches': 1,
          'surprise': 1,
          'certainly': 1,
          'nan': 1,
          'adventure': 1,
          'aimed': 1,
          'primarily': 1,
          'smart': 1,
          'zippy': 1,
          'production': 1,
          'neither': 1,
          'panders': 1,
          'talks': 1,
          'audience': 1,
          'center': 1,
          'tale': 1,
          'believable': 1,
          'likable': 1,
          'ready': 1,
          'intelligent': 1,
          'capable': 1,
          'loving': 1,
          'nbathroom': 1,
          'kept': 1,
          'minimum': 1,
          'numerous': 1,
          'wellstaged': 1,
          'avoid': 1,
          'excessive': 1,
          'violence': 1,
          'relief': 1,
          'able': 1,
          'review': 1,
          'allages': 1,
          'artistic': 1,
          'merits': 1,
          'ethics': 1,
          'nconsider': 1,
          'pg': 1,
          'rated': 1,
          'friendly': 1,
          'theaters': 1,
          'mother': 1,
          'going': 1,
          'town': 1,
          'leaving': 1,
          'son': 1,
          'idiot': 1,
          'neighbor': 1,
          'nbody': 1,
          'function': 1,
          'abounds': 1,
          'slapstick': 1,
          'adult': 1,
          'male': 1,
          'lead': 1,
          'repeatedly': 1,
          'falling': 1,
          'poop': 1,
          'really': 1,
          'disturbs': 1,
          'jokes': 1,
          'bookend': 1,
          'begins': 1,
          'police': 1,
          'capturing': 1,
          'mobster': 1,
          'testicles': 1,
          'process': 1,
          'nat': 1,
          'hospital': 1,
          'doctors': 1,
          'explain': 1,
          'replaced': 1,
          'ball': 1,
          'joke': 1,
          'victim': 1,
          'lucky': 1,
          'didnt': 1,
          'two': 1,
          'replacement': 1,
          'balls': 1,
          'clack': 1,
          'nof': 1,
          'ends': 1,
          'remaining': 1,
          'prisoners': 1,
          'laughing': 1,
          'criminal': 1,
          'clacks': 1,
          'past': 1,
          'cells': 1,
          'nsomebody': 1,
          'clue': 1,
          'genital': 1,
          'mutilation': 1,
          'funny': 1,
          'welcome': 1,
          'antidote': 1,
          'repellent': 1,
          'using': 1,
          'imagination': 1,
          'cruelty': 1,
          'crudeness': 1,
          'ncarmen': 1,
          'alexa': 1,
          'younger': 1,
          'live': 1,
          'beautiful': 1,
          'seaside': 1,
          'antonio': 1,
          'ingrid': 1,
          'cortez': 1,
          'nmom': 1,
          'dad': 1,
          'sultry': 1,
          'couple': 1,
          'devoted': 1,
          'dont': 1,
          'know': 1,
          'also': 1,
          'former': 1,
          'spies': 1,
          'nonce': 1,
          'different': 1,
          'countries': 1,
          'assigned': 1,
          'erase': 1,
          'fell': 1,
          'love': 1,
          'married': 1,
          'retired': 1,
          'raise': 1,
          'nneedless': 1,
          'say': 1,
          'drawn': 1,
          'back': 1,
          'business': 1,
          'nshortly': 1,
          'first': 1,
          'joint': 1,
          'captured': 1,
          'end': 1,
          'headquarters': 1,
          'fegan': 1,
          'floop': 1,
          'foppish': 1,
          'hybrid': 1,
          'willy': 1,
          'wonka': 1,
          'pee': 1,
          'wee': 1,
          'herman': 1,
          'hosts': 1,
          'junis': 1,
          'favorite': 1,
          'nbut': 1,
          'evil': 1,
          'behind': 1,
          'inventors': 1,
          'prepare': 1,
          'army': 1,
          'robots': 1,
          'disguised': 1,
          'npapa': 1,
          'device': 1,
          'necessary': 1,
          'radically': 1,
          'increase': 1,
          'efficiency': 1,
          'bad': 1,
          'guys': 1,
          'stop': 1,
          'nothing': 1,
          'nback': 1,
          'uncle': 1,
          'felix': 1,
          'cheech': 1,
          'marin': 1,
          'reveal': 1,
          'mom': 1,
          'dads': 1,
          'nafter': 1,
          'brief': 1,
          'respite': 1,
          'safe': 1,
          'house': 1,
          'filled': 1,
          'cool': 1,
          'gadgets': 1,
          'dozen': 1,
          'sharper': 1,
          'image': 1,
          'stores': 1,
          'carmen': 1,
          'set': 1,
          'find': 1,
          'save': 1,
          'world': 1,
          'zooming': 1,
          'sea': 1,
          'submarine': 1,
          'pod': 1,
          'looks': 1,
          'goldfish': 1,
          'slew': 1,
          'wicked': 1,
          'people': 1,
          'teri': 1,
          'hatcher': 1,
          'chase': 1,
          'nduring': 1,
          'adventures': 1,
          'use': 1,
          'jet': 1,
          'packs': 1,
          'electroshock': 1,
          'bubblegum': 1,
          'supercomputer': 1,
          'sunglasses': 1,
          'watch': 1,
          'transformed': 1,
          'bizarre': 1,
          'putty': 1,
          'faces': 1,
          'used': 1,
          'background': 1,
          'characters': 1,
          'floops': 1,
          'deal': 1,
          'huge': 1,
          'arms': 1,
          'legs': 1,
          'heads': 1,
          'normally': 1,
          'ineffective': 1,
          'nbecause': 1,
          'theyre': 1,
          'move': 1,
          'colorful': 1,
          'locale': 1,
          'another': 1,
          'nifty': 1,
          'reality': 1,
          'room': 1,
          'reminiscent': 1,
          'holodeck': 1,
          'star': 1,
          'trek': 1,
          'storyline': 1,
          'convoluted': 1,
          'dense': 1,
          'easier': 1,
          'follow': 1,
          'either': 1,
          'impossible': 1,
          'ndirector': 1,
          'robert': 1,
          'dusk': 1,
          'dawn': 1,
          'maintains': 1,
          'frenetic': 1,
          'pace': 1,
          'whole': 1,
          'clocking': 1,
          'mere': 1,
          '86': 1,
          'minutes': 1,
          'na': 1,
          'less': 1,
          'little': 1,
          'development': 1,
          'provide': 1,
          'quiet': 1,
          'viewers': 1,
          'fully': 1,
          'invested': 1,
          'nalexa': 1,
          'make': 1,
          'agreeable': 1,
          'team': 1,
          'squabbling': 1,
          'way': 1,
          'coming': 1,
          'counts': 1,
          'nantonio': 1,
          'better': 1,
          'quickly': 1,
          'establish': 1,
          'maintain': 1,
          'great': 1,
          'lusty': 1,
          'chemistry': 1,
          'keeping': 1,
          'tongues': 1,
          'properly': 1,
          'cheek': 1,
          'neven': 1,
          'usually': 1,
          'irritating': 1,
          'cloudbacked': 1,
          'chat': 1,
          'segments': 1,
          'nhad': 1,
          'added': 1,
          'enjoyed': 1,
          'definitely': 1,
          'could': 1,
          'lived': 1,
          'glaring': 1,
          'product': 1,
          'placement': 1,
          'certain': 1,
          'mcubiquitous': 1,
          'company': 1,
          'nregardless': 1,
          'hoot': 1,
          'offering': 1,
          'adults': 1,
          'alike': 1,
          'nand': 1,
          'think': 1,
          'managed': 1,
          'sacrificing': 1,
          'single': 1,
          'npos': 1}),
 Counter({'really': 7,
          'even': 5,
          'guffman': 4,
          'get': 4,
          'play': 4,
          'think': 3,
          'waiting': 3,
          'least': 3,
          'funny': 3,
          'levy': 3,
          'film': 3,
          'intros': 3,
          'finally': 3,
          'feel': 3,
          'done': 3,
          'nits': 3,
          'see': 2,
          'watching': 2,
          'couple': 2,
          'nand': 2,
          'blaine': 2,
          'musical': 2,
          'put': 2,
          'directed': 2,
          'st': 2,
          'clair': 2,
          'guest': 2,
          'also': 2,
          'original': 2,
          'willard': 2,
          'ohara': 2,
          'posey': 2,
          'queen': 2,
          'absolutely': 2,
          'stands': 2,
          'cant': 2,
          'wonderful': 2,
          'performance': 2,
          'humor': 2,
          'nas': 2,
          'say': 2,
          'nlike': 2,
          'subtle': 2,
          'people': 2,
          'real': 2,
          'neven': 2,
          'way': 2,
          'youre': 2,
          'silly': 2,
          'rating': 2,
          'quite': 2,
          'brief': 2,
          'better': 2,
          'ones': 2,
          'films': 1,
          'ive': 1,
          'come': 1,
          'year': 1,
          '1997': 1,
          'chasing': 1,
          'amy': 1,
          'many': 1,
          'laughoutloud': 1,
          'moments': 1,
          'nim': 1,
          'saying': 1,
          'hysterically': 1,
          'rolling': 1,
          'floor': 1,
          'mouth': 1,
          'burst': 1,
          'open': 1,
          'delighted': 1,
          'guffaw': 1,
          'every': 1,
          'minutes': 1,
          'im': 1,
          'kind': 1,
          'person': 1,
          'laughs': 1,
          'movies': 1,
          'find': 1,
          'nusually': 1,
          'warm': 1,
          'smile': 1,
          'laughing': 1,
          'loud': 1,
          'frequently': 1,
          'good': 1,
          'sign': 1,
          'nwaiting': 1,
          'story': 1,
          'missouri': 1,
          'town': 1,
          'celebrating': 1,
          '150th': 1,
          'anniversary': 1,
          'big': 1,
          'event': 1,
          'nthe': 1,
          'corky': 1,
          'christopher': 1,
          'wrote': 1,
          'mockumentary': 1,
          'well': 1,
          'cowriting': 1,
          'several': 1,
          'numbers': 1,
          'effeminate': 1,
          'broadway': 1,
          'hopeful': 1,
          'determined': 1,
          'make': 1,
          'production': 1,
          'smashing': 1,
          'success': 1,
          'nteaming': 1,
          'handful': 1,
          'residents': 1,
          'allan': 1,
          'pearl': 1,
          'eugene': 1,
          'jewish': 1,
          'dentist': 1,
          'spent': 1,
          'youth': 1,
          'class': 1,
          'clown': 1,
          'sitting': 1,
          'right': 1,
          'next': 1,
          'studying': 1,
          'ron': 1,
          'sheila': 1,
          'albertson': 1,
          'fred': 1,
          'catherine': 1,
          'respectively': 1,
          'married': 1,
          'setting': 1,
          'sights': 1,
          'hollywood': 1,
          'libby': 1,
          'mae': 1,
          'brown': 1,
          'parker': 1,
          'dense': 1,
          'fun': 1,
          'dairy': 1,
          'others': 1,
          'neverybody': 1,
          'movie': 1,
          'brilliant': 1,
          'particularly': 1,
          'nthese': 1,
          'characters': 1,
          'portrayed': 1,
          'saddening': 1,
          'realism': 1,
          'help': 1,
          'love': 1,
          'pathetic': 1,
          'nalthough': 1,
          'definitely': 1,
          'commended': 1,
          'performances': 1,
          'nif': 1,
          'oscar': 1,
          'ensemble': 1,
          'group': 1,
          'sweep': 1,
          'nsome': 1,
          'tad': 1,
          'uneven': 1,
          'rest': 1,
          'starting': 1,
          'humorously': 1,
          'nearly': 1,
          'lost': 1,
          'tadtoolong': 1,
          'delightful': 1,
          'began': 1,
          'monotonous': 1,
          'nthankfully': 1,
          'ok': 1,
          'maybe': 1,
          'run': 1,
          'bathroom': 1,
          'past': 1,
          'onto': 1,
          'rehearsal': 1,
          'scenes': 1,
          'gives': 1,
          'threeact': 1,
          'almost': 1,
          'long': 1,
          'rehearsals': 1,
          'funnier': 1,
          'actual': 1,
          'excellent': 1,
          'said': 1,
          'character': 1,
          'shines': 1,
          'approach': 1,
          'nyou': 1,
          'watch': 1,
          'theyre': 1,
          'talk': 1,
          'awkward': 1,
          'pauses': 1,
          'stumbles': 1,
          'dont': 1,
          'staged': 1,
          'like': 1,
          'albeit': 1,
          'documentary': 1,
          'lyrics': 1,
          'songs': 1,
          'word': 1,
          'note': 1,
          'despite': 1,
          'r': 1,
          'clean': 1,
          'nthis': 1,
          'came': 1,
          'use': 1,
          'granddaddy': 1,
          'swear': 1,
          'words': 1,
          'bothers': 1,
          'let': 1,
          'presented': 1,
          'vulgar': 1,
          'cheaplaugh': 1,
          'actually': 1,
          'humorous': 1,
          'tastefully': 1,
          'nit': 1,
          'might': 1,
          'hard': 1,
          'knowing': 1,
          'expect': 1,
          'dry': 1,
          'intelligently': 1,
          'insulted': 1,
          'always': 1,
          'nice': 1,
          'comedy': 1,
          'isnt': 1,
          'slapstick': 1,
          'vulgarity': 1,
          'one': 1,
          'nid': 1,
          'recommend': 1,
          'seeing': 1,
          'npos': 1}),
 Counter({'hunting': 8,
          'good': 7,
          'nthe': 5,
          'sean': 5,
          'one': 5,
          'affleck': 4,
          'damon': 4,
          'nbut': 3,
          'friendship': 3,
          'young': 3,
          'two': 3,
          'individual': 3,
          'williams': 3,
          'matt': 3,
          'lambeau': 3,
          'meeting': 3,
          'ben': 3,
          'driver': 3,
          'film': 3,
          'story': 2,
          'little': 2,
          'path': 2,
          'written': 2,
          'dialogue': 2,
          'occasionally': 2,
          'brilliant': 2,
          'nlike': 2,
          'time': 2,
          'years': 2,
          'man': 2,
          'characters': 2,
          'robin': 2,
          'mcguire': 2,
          'nand': 2,
          'nwill': 2,
          'professor': 2,
          'stellan': 2,
          'skarsgard': 2,
          'work': 2,
          'agrees': 2,
          'spend': 2,
          'day': 2,
          'week': 2,
          'several': 2,
          'sessions': 2,
          'minnie': 2,
          'smith': 2,
          'actors': 2,
          'scenes': 2,
          'movie': 2,
          'strong': 2,
          'earn': 2,
          'performance': 2,
          'best': 2,
          'provided': 2,
          'essence': 1,
          'ordinary': 1,
          'told': 1,
          'well': 1,
          'ntaken': 1,
          'whole': 1,
          'theres': 1,
          'thats': 1,
          'special': 1,
          'tale': 1,
          'follows': 1,
          'traditional': 1,
          'narrative': 1,
          'leaves': 1,
          'audience': 1,
          'warm': 1,
          'fuzzy': 1,
          'feeling': 1,
          'never': 1,
          'really': 1,
          'challenges': 1,
          'surprises': 1,
          'us': 1,
          'intelligently': 1,
          'strongly': 1,
          'directed': 1,
          'nicely': 1,
          'acted': 1,
          'nso': 1,
          'far': 1,
          'lateyear': 1,
          'masterpiece': 1,
          'worthwhile': 1,
          'sample': 1,
          'entertainment': 1,
          'scent': 1,
          'woman': 1,
          'released': 1,
          'around': 1,
          'season': 1,
          'five': 1,
          'ago': 1,
          'unlikely': 1,
          'develops': 1,
          'worldweary': 1,
          'veteran': 1,
          'cocky': 1,
          'formula': 1,
          'films': 1,
          'similar': 1,
          'principals': 1,
          'learn': 1,
          'slowly': 1,
          'break': 1,
          'barriers': 1,
          'way': 1,
          'better': 1,
          'understanding': 1,
          'life': 1,
          'place': 1,
          'different': 1,
          'nal': 1,
          'pacinos': 1,
          'slade': 1,
          'largerthanlife': 1,
          'much': 1,
          'subtle': 1,
          'damons': 1,
          'uses': 1,
          'pugnaciousness': 1,
          'supplant': 1,
          'blandness': 1,
          'chris': 1,
          'odonnells': 1,
          'charlie': 1,
          'troubled': 1,
          'nas': 1,
          'child': 1,
          'frequent': 1,
          'victim': 1,
          'abuse': 1,
          'nan': 1,
          'orphan': 1,
          'foster': 1,
          'homes': 1,
          'regular': 1,
          'basis': 1,
          'nnow': 1,
          'yet': 1,
          '21': 1,
          'old': 1,
          'accumulated': 1,
          'impressive': 1,
          'rap': 1,
          'sheet': 1,
          'nhe': 1,
          'short': 1,
          'temper': 1,
          'incident': 1,
          'set': 1,
          'like': 1,
          'spark': 1,
          'tinder': 1,
          'box': 1,
          'hes': 1,
          'mathematical': 1,
          'genius': 1,
          'photographic': 1,
          'memory': 1,
          'ability': 1,
          'conceive': 1,
          'simple': 1,
          'solutions': 1,
          'complex': 1,
          'problems': 1,
          'nwhile': 1,
          'working': 1,
          'janitor': 1,
          'mit': 1,
          'delights': 1,
          'anonymously': 1,
          'proving': 1,
          'theorems': 1,
          'math': 1,
          'buildings': 1,
          'hall': 1,
          'blackboards': 1,
          'nthen': 1,
          'evening': 1,
          'anonymity': 1,
          'shattered': 1,
          'catches': 1,
          'flees': 1,
          'tracks': 1,
          'nunfortunately': 1,
          'finds': 1,
          'jail': 1,
          'assaulting': 1,
          'police': 1,
          'offer': 1,
          'judge': 1,
          'release': 1,
          'conditions': 1,
          'therapist': 1,
          'neventually': 1,
          'psychologists': 1,
          'rejected': 1,
          'belligerent': 1,
          'teacher': 1,
          'bunker': 1,
          'hill': 1,
          'community': 1,
          'college': 1,
          'take': 1,
          'case': 1,
          'nafter': 1,
          'rocky': 1,
          'start': 1,
          'form': 1,
          'rapport': 1,
          'begins': 1,
          'explore': 1,
          'issues': 1,
          'emotions': 1,
          'walled': 1,
          'behind': 1,
          'impregnable': 1,
          'armor': 1,
          'advances': 1,
          'selfawareness': 1,
          'also': 1,
          'learns': 1,
          'buddy': 1,
          'chuckie': 1,
          'love': 1,
          'harvard': 1,
          'coed': 1,
          'named': 1,
          'skylar': 1,
          'script': 1,
          'costars': 1,
          'groundbreaking': 1,
          'piece': 1,
          'literature': 1,
          'resorts': 1,
          'shameless': 1,
          'manipulation': 1,
          'welldeveloped': 1,
          'however': 1,
          'times': 1,
          'positively': 1,
          'sparkles': 1,
          'nat': 1,
          'point': 1,
          'comments': 1,
          'session': 1,
          'turning': 1,
          'tasters': 1,
          'choice': 1,
          'moment': 1,
          'nlater': 1,
          'gives': 1,
          'breathless': 1,
          'diatribe': 1,
          'nsa': 1,
          'rhythm': 1,
          'something': 1,
          'kevin': 1,
          'n': 1,
          'note': 1,
          'since': 1,
          'coexecutive': 1,
          'produced': 1,
          'question': 1,
          'input': 1,
          'scene': 1,
          'ndirector': 1,
          'gus': 1,
          'van': 1,
          'sant': 1,
          'drugstore': 1,
          'cowboy': 1,
          'die': 1,
          'culls': 1,
          'genuine': 1,
          'emotion': 1,
          'results': 1,
          'affecting': 1,
          'powerful': 1,
          'ntheres': 1,
          'edginess': 1,
          'seanwill': 1,
          'therapy': 1,
          'offscreen': 1,
          'chemistry': 1,
          'became': 1,
          'romantically': 1,
          'linked': 1,
          'making': 1,
          'translates': 1,
          'effectively': 1,
          'willskylar': 1,
          'relationship': 1,
          'electric': 1,
          'nlikewise': 1,
          'companionability': 1,
          'apparent': 1,
          'easygoing': 1,
          'nature': 1,
          'chuckies': 1,
          'nmany': 1,
          'enough': 1,
          'recommendation': 1,
          'even': 1,
          'overall': 1,
          'somewhat': 1,
          'generic': 1,
          'nmatt': 1,
          'recently': 1,
          'starred': 1,
          'idealistic': 1,
          'lawyer': 1,
          'rainmaker': 1,
          'solid': 1,
          'although': 1,
          'spectacular': 1,
          'nminnie': 1,
          'last': 1,
          'seen': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'adds': 1,
          'another': 1,
          'growing': 1,
          'resume': 1,
          'refreshing': 1,
          'allowed': 1,
          'keep': 1,
          'british': 1,
          'accent': 1,
          'rather': 1,
          'attempt': 1,
          'american': 1,
          'outstanding': 1,
          'belongs': 1,
          'whose': 1,
          'sad': 1,
          'wise': 1,
          'funny': 1,
          'somber': 1,
          'narguably': 1,
          'dramatic': 1,
          'career': 1,
          'alongside': 1,
          'fisher': 1,
          'king': 1,
          'portrayal': 1,
          'could': 1,
          'supporting': 1,
          'actor': 1,
          'oscar': 1,
          'nomination': 1,
          'nadequate': 1,
          'support': 1,
          'chasing': 1,
          'amy': 1,
          'breaking': 1,
          'waves': 1,
          'comes': 1,
          'ending': 1,
          'completely': 1,
          'predictable': 1,
          'expectations': 1,
          'following': 1,
          'familiar': 1,
          'arent': 1,
          'always': 1,
          'bad': 1,
          'things': 1,
          'accomplishes': 1,
          'goals': 1,
          'modicum': 1,
          'style': 1,
          'attention': 1,
          'detail': 1,
          'ngood': 1,
          'result': 1,
          'earns': 1,
          'rating': 1,
          'commensurate': 1,
          'title': 1,
          'npos': 1}),
 Counter({'film': 11,
          'three': 8,
          'endings': 8,
          'nthe': 6,
          'dvd': 6,
          'well': 5,
          'video': 5,
          'ending': 5,
          'clue': 4,
          'one': 4,
          'home': 4,
          'watch': 4,
          'version': 3,
          'game': 3,
          'nwhen': 3,
          'someone': 3,
          'long': 3,
          'good': 3,
          'paramount': 3,
          'trailer': 3,
          'times': 3,
          'special': 3,
          'murder': 2,
          'death': 2,
          'screen': 2,
          'picture': 2,
          'case': 2,
          'whos': 2,
          'nand': 2,
          'definitely': 2,
          'moments': 2,
          'nit': 2,
          'im': 2,
          'phrase': 2,
          'late': 2,
          'go': 2,
          'talents': 2,
          'french': 2,
          'available': 2,
          'includes': 2,
          'original': 2,
          'theatrical': 2,
          '1': 2,
          'time': 2,
          'scene': 2,
          'choice': 2,
          'played': 2,
          'see': 2,
          'separate': 2,
          'two': 2,
          'nnow': 2,
          'select': 2,
          'randomly': 2,
          'disc': 2,
          'watching': 2,
          'menu': 2,
          'like': 2,
          'hundreds': 2,
          'would': 2,
          'distraction': 2,
          'unfairly': 1,
          'ignored': 1,
          'comedy': 1,
          'similar': 1,
          '1976s': 1,
          'nthis': 1,
          'big': 1,
          'classic': 1,
          'board': 1,
          'whats': 1,
          'next': 1,
          'nchutes': 1,
          'ladders': 1,
          'motion': 1,
          'filled': 1,
          'slapstick': 1,
          'antics': 1,
          'silly': 1,
          'dialogue': 1,
          'plot': 1,
          'worth': 1,
          'characters': 1,
          'names': 1,
          'used': 1,
          'aliases': 1,
          'meeting': 1,
          'isolated': 1,
          'mansion': 1,
          'confront': 1,
          'mr': 1,
          'boddy': 1,
          'lee': 1,
          'ving': 1,
          'man': 1,
          'blackmailing': 1,
          'turns': 1,
          'dead': 1,
          'everyone': 1,
          'including': 1,
          'audience': 1,
          'must': 1,
          'figure': 1,
          'whodunnit': 1,
          'room': 1,
          'object': 1,
          'nwhile': 1,
          'witty': 1,
          'neil': 1,
          'simons': 1,
          'many': 1,
          'fact': 1,
          'use': 1,
          'lot': 1,
          'lines': 1,
          'joking': 1,
          'around': 1,
          'friends': 1,
          'nto': 1,
          'day': 1,
          'whenever': 1,
          'says': 1,
          'make': 1,
          'story': 1,
          'short': 1,
          'follow': 1,
          'ready': 1,
          'cast': 1,
          'comedic': 1,
          'play': 1,
          'another': 1,
          'madeline': 1,
          'kahn': 1,
          'dark': 1,
          'sultry': 1,
          'mrs': 1,
          'white': 1,
          'sometimes': 1,
          'steals': 1,
          'away': 1,
          'rest': 1,
          'colleen': 1,
          'camp': 1,
          'maid': 1,
          'yvette': 1,
          'displays': 1,
          'natural': 1,
          'nclue': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'enhanced': 1,
          '16x9': 1,
          'televisions': 1,
          'features': 1,
          'na': 1,
          'language': 1,
          'audio': 1,
          'track': 1,
          'also': 1,
          'holds': 1,
          'considering': 1,
          'previews': 1,
          'even': 1,
          'joke': 1,
          'nalso': 1,
          'scored': 1,
          'music': 1,
          'airplane': 1,
          'interesting': 1,
          'theaters': 1,
          'ran': 1,
          'gimmick': 1,
          'different': 1,
          'nif': 1,
          'wanted': 1,
          'movies': 1,
          'nso': 1,
          'released': 1,
          'rather': 1,
          'releasing': 1,
          'videos': 1,
          'included': 1,
          'tape': 1,
          'first': 1,
          'nendings': 1,
          'third': 1,
          'actual': 1,
          'release': 1,
          'get': 1,
          'choices': 1,
          'nyou': 1,
          'presented': 1,
          'chosen': 1,
          'n': 1,
          'note': 1,
          'theres': 1,
          'easter': 1,
          'egg': 1,
          'hidden': 1,
          'pertaining': 1,
          'nafter': 1,
          'selected': 1,
          'return': 1,
          'able': 1,
          'highlight': 1,
          'large': 1,
          'magnifying': 1,
          'glass': 1,
          'secret': 1,
          'opens': 1,
          'allowing': 1,
          'applaud': 1,
          'effort': 1,
          'clearly': 1,
          'tried': 1,
          'something': 1,
          'doesnt': 1,
          'work': 1,
          'nfirst': 1,
          'give': 1,
          'viewer': 1,
          'want': 1,
          'nmaybe': 1,
          'seen': 1,
          'movie': 1,
          'sit': 1,
          'show': 1,
          'second': 1,
          'nim': 1,
          'technical': 1,
          'expert': 1,
          'cant': 1,
          'imagine': 1,
          'hard': 1,
          'accomplish': 1,
          'nsecondly': 1,
          'delay': 1,
          'ends': 1,
          'begins': 1,
          'obvious': 1,
          'thereby': 1,
          'becoming': 1,
          'right': 1,
          'dont': 1,
          'need': 1,
          'nfinally': 1,
          'back': 1,
          'states': 1,
          '3': 1,
          'surprise': 1,
          'ni': 1,
          'idea': 1,
          'word': 1,
          'way': 1,
          'since': 1,
          'thats': 1,
          'feature': 1,
          'slightest': 1,
          'fifteen': 1,
          'years': 1,
          'lord': 1,
          'television': 1,
          'nthese': 1,
          'merely': 1,
          'minor': 1,
          'complaints': 1,
          'however': 1,
          'seeing': 1,
          'ive': 1,
          'watched': 1,
          'problem': 1,
          'sound': 1,
          'wonderfully': 1,
          'improved': 1,
          'worn': 1,
          'vhs': 1,
          'copy': 1,
          'thrilled': 1,
          'agrees': 1,
          'worthy': 1,
          'preserved': 1,
          'great': 1,
          'digital': 1,
          'format': 1,
          'npg': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'character': 5,
          'dream': 4,
          'team': 4,
          'characters': 3,
          'keaton': 3,
          'get': 3,
          'boyle': 3,
          'comedy': 2,
          'four': 2,
          'played': 2,
          'lloyd': 2,
          'thinks': 2,
          'hes': 2,
          'walks': 2,
          'peter': 2,
          'stephen': 2,
          'furst': 2,
          'catatonic': 2,
          'weitzman': 2,
          'cast': 2,
          'film': 2,
          'another': 2,
          'jack': 2,
          'example': 2,
          'way': 2,
          'gives': 2,
          'makes': 2,
          'performance': 2,
          'thoroughly': 1,
          'entertaining': 1,
          'featuring': 1,
          'loveable': 1,
          'happen': 1,
          'slightly': 1,
          'insane': 1,
          'nbilly': 1,
          'michael': 1,
          'extremely': 1,
          'temperamental': 1,
          'mental': 1,
          'ward': 1,
          'patient': 1,
          'whose': 1,
          'short': 1,
          'fuse': 1,
          'violent': 1,
          'tantrums': 1,
          'tend': 1,
          'trouble': 1,
          'nchristopher': 1,
          'portrays': 1,
          'henry': 1,
          'obsessivecompulsive': 1,
          'requires': 1,
          'everything': 1,
          'neat': 1,
          'orderly': 1,
          'schedule': 1,
          'books': 1,
          'nhe': 1,
          'doctor': 1,
          'around': 1,
          'wearing': 1,
          'suit': 1,
          'carrying': 1,
          'clipboard': 1,
          'constantly': 1,
          'scribbles': 1,
          'notes': 1,
          'files': 1,
          'reports': 1,
          'njack': 1,
          'jesus': 1,
          'nand': 1,
          'finally': 1,
          'theres': 1,
          'albert': 1,
          'chubby': 1,
          'speaks': 1,
          'baseball': 1,
          'television': 1,
          'phrases': 1,
          'follows': 1,
          'misadventures': 1,
          'beset': 1,
          'foursome': 1,
          'psychiatrist': 1,
          'dr': 1,
          'takes': 1,
          'hospital': 1,
          'field': 1,
          'trip': 1,
          'yankee': 1,
          'stadium': 1,
          'nduring': 1,
          'pit': 1,
          'stop': 1,
          'separated': 1,
          'left': 1,
          'fend': 1,
          'manhattan': 1,
          'movies': 1,
          'charm': 1,
          'derives': 1,
          'mostly': 1,
          'camaraderie': 1,
          'chemistry': 1,
          'delightful': 1,
          'leads': 1,
          'play': 1,
          'quite': 1,
          'effectively': 1,
          'never': 1,
          'miss': 1,
          'opportunity': 1,
          'argue': 1,
          'bicker': 1,
          'insult': 1,
          'one': 1,
          'nhenry': 1,
          'fight': 1,
          'whos': 1,
          'going': 1,
          'ride': 1,
          'front': 1,
          'passenger': 1,
          'seat': 1,
          'game': 1,
          'actors': 1,
          'lot': 1,
          'fun': 1,
          'nmichael': 1,
          'well': 1,
          'billy': 1,
          'cynical': 1,
          'considerable': 1,
          'complexity': 1,
          'nas': 1,
          'divinely': 1,
          'succeeds': 1,
          'keeping': 1,
          'onedimensional': 1,
          'funny': 1,
          'fresh': 1,
          'nalthough': 1,
          'fursts': 1,
          'cliched': 1,
          'actor': 1,
          'sympathetic': 1,
          'endearing': 1,
          'nwhile': 1,
          'good': 1,
          'christopher': 1,
          'really': 1,
          'movie': 1,
          'special': 1,
          'nlloyd': 1,
          'yet': 1,
          'outstanding': 1,
          'comic': 1,
          'nhis': 1,
          'body': 1,
          'language': 1,
          'facial': 1,
          'expressions': 1,
          'perfectly': 1,
          'suited': 1,
          'compulsive': 1,
          'nlloyds': 1,
          'brilliant': 1,
          'yields': 1,
          'pathetic': 1,
          'moving': 1,
          'memorable': 1,
          'solid': 1,
          'depth': 1,
          'drama': 1,
          'might': 1,
          'expect': 1,
          'simple': 1,
          'premise': 1,
          'appealing': 1,
          'excuse': 1,
          'often': 1,
          'outlandish': 1,
          'unbelievable': 1,
          'plot': 1,
          'npos': 1}),
 Counter({'film': 17,
          'space': 10,
          'pilots': 9,
          'nthe': 8,
          'astronauts': 8,
          'test': 7,
          'yeager': 7,
          'nin': 6,
          'nbut': 6,
          'right': 6,
          'stuff': 6,
          'kaufman': 6,
          'also': 6,
          'great': 6,
          'fiction': 5,
          'many': 5,
          'order': 5,
          'lacks': 5,
          'science': 4,
          'could': 4,
          'played': 4,
          'new': 4,
          'age': 4,
          'time': 4,
          'use': 4,
          'like': 4,
          'still': 4,
          'books': 3,
          'movie': 3,
          'years': 3,
          'fact': 3,
          'suits': 3,
          'even': 3,
          'american': 3,
          'flights': 3,
          'one': 3,
          'generation': 3,
          'films': 3,
          'kaufmans': 3,
          'real': 3,
          'memorable': 3,
          'acting': 3,
          'character': 3,
          'shepard': 3,
          'war': 3,
          'fine': 3,
          'mercury': 3,
          'effects': 3,
          'authentic': 3,
          'people': 2,
          'due': 2,
          'comic': 2,
          'movies': 2,
          'labelled': 2,
          'simple': 2,
          'cases': 2,
          'historical': 2,
          'epic': 2,
          'nsuch': 2,
          'former': 2,
          'national': 2,
          'distributors': 2,
          'gave': 2,
          'explained': 2,
          'men': 2,
          'nit': 2,
          'early': 2,
          'program': 2,
          'plot': 2,
          'air': 2,
          'force': 2,
          'major': 2,
          'aircraft': 2,
          'speed': 2,
          'thus': 2,
          'sound': 2,
          'barrier': 2,
          'lives': 2,
          'gives': 2,
          'history': 2,
          'beginning': 2,
          'first': 2,
          'man': 2,
          'navy': 2,
          'marine': 2,
          'image': 2,
          'critics': 2,
          'made': 2,
          'quite': 2,
          'hours': 2,
          '1960s': 2,
          'hollywood': 2,
          'used': 2,
          'make': 2,
          'life': 2,
          'unusual': 2,
          'focus': 2,
          'conventional': 2,
          'hero': 2,
          'wives': 2,
          'piece': 2,
          'talents': 2,
          'non': 2,
          'future': 2,
          'glenn': 2,
          'mirrored': 2,
          'figure': 2,
          'scott': 2,
          'provides': 2,
          'deschanel': 2,
          'superb': 2,
          'desert': 2,
          'away': 2,
          'strict': 2,
          'rules': 2,
          'natural': 2,
          'important': 2,
          'times': 2,
          'replaced': 2,
          'cold': 2,
          'must': 2,
          'nthis': 2,
          'although': 2,
          'nthose': 2,
          'would': 2,
          'period': 2,
          'earth': 2,
          'nsome': 2,
          'russians': 2,
          'portrayed': 2,
          'enjoy': 1,
          'often': 1,
          'faced': 1,
          'unpleasant': 1,
          'surprises': 1,
          'improper': 1,
          'labelling': 1,
          'novels': 1,
          'stories': 1,
          'noften': 1,
          'aficionados': 1,
          'find': 1,
          'material': 1,
          'previously': 1,
          'pure': 1,
          'fantasy': 1,
          'supernatural': 1,
          'horror': 1,
          'rather': 1,
          'technothriller': 1,
          'mistakes': 1,
          'understandable': 1,
          'genre': 1,
          'boundaries': 1,
          'never': 1,
          'clearly': 1,
          'marked': 1,
          'believe': 1,
          'really': 1,
          'actually': 1,
          'happens': 1,
          'straight': 1,
          'thing': 1,
          'occurred': 1,
          'yugoslavia': 1,
          'fifteen': 1,
          'ago': 1,
          'treatment': 1,
          '1983': 1,
          'directed': 1,
          'philip': 1,
          'mistake': 1,
          'official': 1,
          'poster': 1,
          'features': 1,
          'isnt': 1,
          'based': 1,
          'nonfiction': 1,
          'book': 1,
          'tom': 1,
          'wolfe': 1,
          'covering': 1,
          'begins': 1,
          '1947': 1,
          'heard': 1,
          'edwards': 1,
          'base': 1,
          'site': 1,
          'experimental': 1,
          'planes': 1,
          'aim': 1,
          'determine': 1,
          'ability': 1,
          'manned': 1,
          'reach': 1,
          '1': 1,
          'mach': 1,
          'break': 1,
          'nmany': 1,
          'tried': 1,
          'achieve': 1,
          'goal': 1,
          'paid': 1,
          'bravado': 1,
          'quiet': 1,
          'pilot': 1,
          'chuck': 1,
          'eager': 1,
          'sam': 1,
          'shaped': 1,
          'succeeds': 1,
          'example': 1,
          'whole': 1,
          'determined': 1,
          'enter': 1,
          'breaking': 1,
          'records': 1,
          'nten': 1,
          'later': 1,
          'soviets': 1,
          'launched': 1,
          'sputnik': 1,
          'marking': 1,
          'regain': 1,
          'prestige': 1,
          'us': 1,
          'government': 1,
          'decides': 1,
          'send': 1,
          'nbest': 1,
          'recruited': 1,
          'college': 1,
          'education': 1,
          'desired': 1,
          'allamerican': 1,
          'polls': 1,
          'named': 1,
          'among': 1,
          'top': 1,
          '10': 1,
          '1980s': 1,
          'high': 1,
          'position': 1,
          'looks': 1,
          'atypical': 1,
          'nwith': 1,
          'three': 1,
          'length': 1,
          'scope': 1,
          'looked': 1,
          'suitable': 1,
          '1950s': 1,
          'larger': 1,
          'reason': 1,
          'lies': 1,
          'truly': 1,
          'remarkable': 1,
          'talented': 1,
          'filmmaker': 1,
          'nphilip': 1,
          'created': 1,
          'reputation': 1,
          '1970s': 1,
          'using': 1,
          'opportunities': 1,
          'golden': 1,
          'create': 1,
          'original': 1,
          'last': 1,
          'swan': 1,
          'song': 1,
          'era': 1,
          'producers': 1,
          'allowed': 1,
          'directors': 1,
          'spend': 1,
          'big': 1,
          'bucks': 1,
          'risktaking': 1,
          'artsy': 1,
          'projects': 1,
          'standard': 1,
          'elements': 1,
          'almost': 1,
          'nonexistent': 1,
          'coherent': 1,
          'story': 1,
          'featuring': 1,
          'interesting': 1,
          'incidents': 1,
          'anecdotes': 1,
          'shifts': 1,
          'old': 1,
          'embodied': 1,
          'protagonist': 1,
          'appears': 1,
          'small': 1,
          'cameo': 1,
          'remains': 1,
          'true': 1,
          'equal': 1,
          'exposure': 1,
          'given': 1,
          'making': 1,
          'ensemble': 1,
          'nthat': 1,
          'opportunity': 1,
          'multitude': 1,
          'specialised': 1,
          'bit': 1,
          'roles': 1,
          'nsam': 1,
          'whose': 1,
          'greatest': 1,
          'achievement': 1,
          'breech': 1,
          'remained': 1,
          'obscured': 1,
          'probably': 1,
          'modesty': 1,
          'surface': 1,
          'personality': 1,
          'compared': 1,
          'hyped': 1,
          'fortunate': 1,
          'astronaut': 1,
          'colleagues': 1,
          'texture': 1,
          'subtle': 1,
          'gestures': 1,
          'phrases': 1,
          'nshepards': 1,
          'performance': 1,
          'followed': 1,
          'ed': 1,
          'harris': 1,
          'cleancut': 1,
          'politician': 1,
          'john': 1,
          'nyoung': 1,
          'dennis': 1,
          'quaid': 1,
          'arrogant': 1,
          'fighter': 1,
          'jock': 1,
          'gordo': 1,
          'cooper': 1,
          'arrogance': 1,
          'friend': 1,
          'tragic': 1,
          'virgil': 1,
          'grissom': 1,
          'superbly': 1,
          'fred': 1,
          'ward': 1,
          'nalways': 1,
          'reliable': 1,
          'actor': 1,
          'relief': 1,
          'aviator': 1,
          'arguably': 1,
          'alan': 1,
          'nkaufman': 1,
          'left': 1,
          'room': 1,
          'female': 1,
          'excel': 1,
          'barbara': 1,
          'hershey': 1,
          'pamela': 1,
          'reed': 1,
          'veronica': 1,
          'cartwright': 1,
          'mary': 1,
          'jo': 1,
          'nroyal': 1,
          'dano': 1,
          'impressive': 1,
          'menacing': 1,
          'preacher': 1,
          'performances': 1,
          'belong': 1,
          'donald': 1,
          'moffat': 1,
          'vicepresident': 1,
          'lyndon': 1,
          'b': 1,
          'johnson': 1,
          'jane': 1,
          'dornacker': 1,
          'nurse': 1,
          'murch': 1,
          'ngreat': 1,
          'talent': 1,
          'assembled': 1,
          'direction': 1,
          'nmost': 1,
          'notable': 1,
          'methods': 1,
          'uses': 1,
          'suggest': 1,
          'passage': 1,
          'shows': 1,
          'living': 1,
          'middle': 1,
          'virtual': 1,
          'unknowns': 1,
          'far': 1,
          'discipline': 1,
          'neverything': 1,
          'seems': 1,
          'indulge': 1,
          'horse': 1,
          'riding': 1,
          'yards': 1,
          'fastest': 1,
          'precious': 1,
          'world': 1,
          'setting': 1,
          'normal': 1,
          'technical': 1,
          'problems': 1,
          'solved': 1,
          'chainsaw': 1,
          'report': 1,
          'ribs': 1,
          'broken': 1,
          'changing': 1,
          'ww2': 1,
          'alliance': 1,
          'ussr': 1,
          'disciplined': 1,
          'ntheir': 1,
          'entire': 1,
          'become': 1,
          'media': 1,
          'frenzy': 1,
          'job': 1,
          'subjected': 1,
          'meticulous': 1,
          'plans': 1,
          'fight': 1,
          'bureaucrats': 1,
          'publicityseeking': 1,
          'politicians': 1,
          'uncaring': 1,
          'scientists': 1,
          'nazi': 1,
          'rocket': 1,
          'expert': 1,
          'werner': 1,
          'von': 1,
          'braun': 1,
          'beach': 1,
          'preserve': 1,
          'basic': 1,
          'human': 1,
          'dignity': 1,
          'contrast': 1,
          'underlined': 1,
          'beautifully': 1,
          'edited': 1,
          'sequence': 1,
          'conducts': 1,
          'final': 1,
          'spectacular': 1,
          'flight': 1,
          'absolute': 1,
          'obscurity': 1,
          'receive': 1,
          'fame': 1,
          'fortune': 1,
          'going': 1,
          'contrasts': 1,
          'similar': 1,
          'achieved': 1,
          'poetic': 1,
          'language': 1,
          'nediting': 1,
          'photography': 1,
          'caleb': 1,
          'scenes': 1,
          'funeral': 1,
          'walking': 1,
          'slow': 1,
          'motion': 1,
          'copied': 1,
          'latter': 1,
          'nalthough': 1,
          'enjoyed': 1,
          'support': 1,
          'nasa': 1,
          'military': 1,
          'provided': 1,
          'locations': 1,
          'equipment': 1,
          'special': 1,
          'simulate': 1,
          'excellent': 1,
          'fool': 1,
          'audience': 1,
          'accustomed': 1,
          'cgi': 1,
          'footage': 1,
          'outer': 1,
          'nanother': 1,
          'contribution': 1,
          'oscar': 1,
          'awarded': 1,
          'musical': 1,
          'score': 1,
          'bill': 1,
          'conti': 1,
          'tremble': 1,
          'excitement': 1,
          'every': 1,
          'hear': 1,
          'accompanied': 1,
          'holst': 1,
          'debussy': 1,
          'songs': 1,
          'background': 1,
          'provide': 1,
          'atmosphere': 1,
          'cult': 1,
          'status': 1,
          'well': 1,
          'deserved': 1,
          'minor': 1,
          'flaws': 1,
          'arent': 1,
          'fleshed': 1,
          'enough': 1,
          'actors': 1,
          'lance': 1,
          'henriksen': 1,
          'nfilm': 1,
          'proper': 1,
          'closure': 1,
          'hand': 1,
          'logical': 1,
          'conclusion': 1,
          'landing': 1,
          'moon': 1,
          'require': 1,
          'six': 1,
          'long': 1,
          'nalso': 1,
          'prone': 1,
          'attack': 1,
          'amerocentric': 1,
          'hard': 1,
          'evil': 1,
          'monsters': 1,
          'line': 1,
          'virulent': 1,
          'rhetoric': 1,
          'reagans': 1,
          'america': 1,
          'contemporary': 1,
          'interviews': 1,
          'defended': 1,
          'approach': 1,
          'claiming': 1,
          'wanted': 1,
          'possible': 1,
          'perceived': 1,
          'americans': 1,
          'ntime': 1,
          'passed': 1,
          'dont': 1,
          'see': 1,
          'heroes': 1,
          'widespread': 1,
          'satellite': 1,
          'communications': 1,
          'routine': 1,
          'missions': 1,
          'women': 1,
          'seen': 1,
          'mere': 1,
          'maintenance': 1,
          'workers': 1,
          'nfew': 1,
          'young': 1,
          'boys': 1,
          'want': 1,
          'grow': 1,
          'sentimental': 1,
          'reminder': 1,
          'began': 1,
          'perhaps': 1,
          'encourage': 1,
          'least': 1,
          'follow': 1,
          'footsteps': 1,
          'seek': 1,
          'frontiers': 1,
          'sky': 1,
          'nand': 1,
          'decide': 1,
          'stay': 1,
          'appreciate': 1,
          'extraordinary': 1,
          'cinema': 1,
          'npos': 1}),
 Counter({'film': 16,
          'series': 10,
          'nthe': 8,
          'show': 7,
          'xfiles': 6,
          'story': 5,
          'fans': 5,
          'find': 4,
          'television': 4,
          'ni': 4,
          'nits': 4,
          'scully': 4,
          'im': 3,
          'though': 3,
          'years': 3,
          'like': 3,
          'lot': 3,
          'plot': 3,
          'seen': 3,
          'takes': 3,
          'mulder': 3,
          'get': 3,
          'see': 3,
          'never': 2,
          'watching': 2,
          'dont': 2,
          'watch': 2,
          'gillian': 2,
          'anderson': 2,
          'finale': 2,
          'left': 2,
          'episode': 2,
          'special': 2,
          'effects': 2,
          'expected': 2,
          'ive': 2,
          'nactually': 2,
          'makers': 2,
          'fbi': 2,
          'heroes': 2,
          'soon': 2,
          'bomb': 2,
          'actually': 2,
          'prior': 2,
          'alien': 2,
          'aliens': 2,
          'cancer': 2,
          'times': 2,
          'boy': 2,
          'also': 2,
          'nit': 2,
          'know': 2,
          'great': 2,
          'eerie': 2,
          'nthere': 2,
          'good': 2,
          'nwhat': 2,
          'understand': 2,
          'little': 2,
          'create': 2,
          'strong': 2,
          'many': 2,
          'however': 2,
          'might': 2,
          'nice': 2,
          'risk': 2,
          'intensely': 1,
          'boring': 1,
          'simply': 1,
          'turn': 1,
          'set': 1,
          'unless': 1,
          'movie': 1,
          'even': 1,
          'cable': 1,
          'went': 1,
          'radio': 1,
          'shack': 1,
          'buy': 1,
          'antenna': 1,
          'specifically': 1,
          'purpose': 1,
          'every': 1,
          'sunday': 1,
          'night': 1,
          'thats': 1,
          'worth': 1,
          'hour': 1,
          'time': 1,
          'week': 1,
          'since': 1,
          'reruns': 1,
          'glad': 1,
          'six': 1,
          'months': 1,
          'year': 1,
          'avoid': 1,
          'altogether': 1,
          'avid': 1,
          'fan': 1,
          'three': 1,
          'nand': 1,
          'love': 1,
          'continues': 1,
          'season': 1,
          'twohour': 1,
          'except': 1,
          'thicker': 1,
          'resolution': 1,
          'satisfying': 1,
          'nthis': 1,
          'terrific': 1,
          'imagine': 1,
          'viewers': 1,
          'unfamiliar': 1,
          'solid': 1,
          'riveting': 1,
          'entertainment': 1,
          'expectations': 1,
          'met': 1,
          'risks': 1,
          'devices': 1,
          'thankfully': 1,
          'managed': 1,
          'right': 1,
          'nwhen': 1,
          'ended': 1,
          'branch': 1,
          'known': 1,
          'destroyed': 1,
          'david': 1,
          'duchovny': 1,
          'stripped': 1,
          'five': 1,
          'hard': 1,
          'work': 1,
          'picks': 1,
          'reduced': 1,
          'field': 1,
          'agents': 1,
          'investigating': 1,
          'threat': 1,
          'federal': 1,
          'building': 1,
          'nbut': 1,
          'wait': 1,
          'getting': 1,
          'ahead': 1,
          'opens': 1,
          'ice': 1,
          'age': 1,
          '32': 1,
          '000': 1,
          'couple': 1,
          'prehistoric': 1,
          'guys': 1,
          'attacked': 1,
          'vicious': 1,
          'blood': 1,
          'infects': 1,
          'certainly': 1,
          'remember': 1,
          'black': 1,
          'jumps': 1,
          'modern': 1,
          'young': 1,
          'infected': 1,
          'turns': 1,
          'planted': 1,
          'kill': 1,
          'uncover': 1,
          'coverup': 1,
          'despite': 1,
          'fact': 1,
          'resigned': 1,
          'position': 1,
          'nsoon': 1,
          'whole': 1,
          'thing': 1,
          'nas': 1,
          'written': 1,
          'easy': 1,
          'write': 1,
          'summaries': 1,
          'films': 1,
          'everything': 1,
          'needs': 1,
          'surprise': 1,
          'nfans': 1,
          'expect': 1,
          'seriously': 1,
          'doubt': 1,
          'disappointed': 1,
          'ndirector': 1,
          'rob': 1,
          'bowman': 1,
          'done': 1,
          'job': 1,
          'expanding': 1,
          'feeling': 1,
          'big': 1,
          'screen': 1,
          'making': 1,
          'small': 1,
          'adjustments': 1,
          'minor': 1,
          'changes': 1,
          'utilize': 1,
          'possibilities': 1,
          'allows': 1,
          'truly': 1,
          'suspenseful': 1,
          'wellcreated': 1,
          'scenes': 1,
          'late': 1,
          'theyre': 1,
          'spacecraft': 1,
          'youll': 1,
          'one': 1,
          'better': 1,
          'action': 1,
          'sequences': 1,
          'recent': 1,
          'cinema': 1,
          'production': 1,
          'design': 1,
          'christopher': 1,
          'nowak': 1,
          'fantastic': 1,
          'interesting': 1,
          'way': 1,
          'neophytes': 1,
          'nour': 1,
          'given': 1,
          'subtle': 1,
          'introductions': 1,
          'outset': 1,
          'explains': 1,
          'enough': 1,
          'knowledge': 1,
          'isnt': 1,
          'required': 1,
          'course': 1,
          'elements': 1,
          'included': 1,
          'payoff': 1,
          'ill': 1,
          'keep': 1,
          'surprises': 1,
          'thought': 1,
          'understanding': 1,
          'using': 1,
          'roots': 1,
          'complicated': 1,
          'ones': 1,
          'provides': 1,
          'coherent': 1,
          'anyone': 1,
          'clearly': 1,
          'reasons': 1,
          'original': 1,
          'ties': 1,
          'twilight': 1,
          'zone': 1,
          'owes': 1,
          'homage': 1,
          'hitchcock': 1,
          'impressively': 1,
          'really': 1,
          'makes': 1,
          'shine': 1,
          'actors': 1,
          'nduchovny': 1,
          'much': 1,
          'presence': 1,
          'fun': 1,
          'guy': 1,
          'nhe': 1,
          'confidence': 1,
          'someday': 1,
          'make': 1,
          'bankable': 1,
          'leading': 1,
          'man': 1,
          'nanderson': 1,
          'equally': 1,
          'paralyzingly': 1,
          'beautiful': 1,
          'shes': 1,
          'actress': 1,
          'nboth': 1,
          'performers': 1,
          'acted': 1,
          'think': 1,
          'theyll': 1,
          'chances': 1,
          'prove': 1,
          'enthusiastically': 1,
          'recommend': 1,
          'nonfans': 1,
          'n1998': 1,
          'summer': 1,
          'filled': 1,
          'disappointing': 1,
          'blockbusters': 1,
          'satisfy': 1,
          'others': 1,
          'leave': 1,
          'completely': 1,
          'dry': 1,
          'intelligent': 1,
          'places': 1,
          'least': 1,
          'feel': 1,
          'familiar': 1,
          'impressive': 1,
          'concept': 1,
          'well': 1,
          'likely': 1,
          'highly': 1,
          'critical': 1,
          'take': 1,
          'premise': 1,
          'beyond': 1,
          'risky': 1,
          'move': 1,
          'pay': 1,
          'change': 1,
          'npos': 1}),
 Counter({'film': 14,
          'like': 9,
          'nthe': 6,
          'one': 5,
          'films': 5,
          'truth': 5,
          'celebration': 4,
          'completely': 4,
          'life': 4,
          'could': 4,
          'see': 4,
          'utterly': 4,
          'kind': 3,
          'watch': 3,
          'ni': 3,
          'really': 3,
          'feel': 3,
          'nbut': 3,
          'attention': 3,
          'bit': 3,
          'youre': 3,
          'home': 3,
          'mortizen': 3,
          'party': 3,
          'family': 3,
          'christian': 3,
          'father': 3,
          'children': 3,
          'people': 3,
          'shot': 3,
          'nas': 3,
          'lives': 3,
          'characters': 3,
          'actors': 3,
          'course': 3,
          'know': 2,
          'matter': 2,
          'totally': 2,
          'story': 2,
          'turn': 2,
          'occurs': 2,
          'real': 2,
          'makes': 2,
          'work': 2,
          'thing': 2,
          'great': 2,
          'nit': 2,
          'world': 2,
          'realistic': 2,
          'nand': 2,
          'farscial': 2,
          'make': 2,
          'transpires': 2,
          'interesting': 2,
          'first': 2,
          'everyone': 2,
          'eldest': 2,
          'son': 2,
          'thomsen': 2,
          'young': 2,
          'seen': 2,
          'walking': 2,
          'thomas': 2,
          'car': 2,
          'nwe': 2,
          'always': 2,
          'seems': 2,
          'raped': 2,
          'nature': 2,
          'though': 2,
          'member': 2,
          'danish': 2,
          'group': 2,
          'may': 2,
          'works': 2,
          'feels': 2,
          'reality': 2,
          'never': 2,
          'dare': 2,
          'key': 2,
          'much': 2,
          'debate': 2,
          'learned': 2,
          'live': 2,
          'easily': 2,
          'years': 2,
          'emotionally': 2,
          'earlier': 2,
          'thanks': 2,
          'performance': 2,
          'also': 2,
          'else': 2,
          'flawless': 2,
          'elite': 1,
          'absorbant': 1,
          'nyou': 1,
          'sit': 1,
          'youve': 1,
          'heard': 1,
          'cant': 1,
          'help': 1,
          'drawn': 1,
          'shocked': 1,
          'every': 1,
          'single': 1,
          'prefer': 1,
          'best': 1,
          'dont': 1,
          'rules': 1,
          'cinema': 1,
          'anything': 1,
          'long': 1,
          'ask': 1,
          'common': 1,
          'create': 1,
          'experiences': 1,
          'nwhen': 1,
          'want': 1,
          'able': 1,
          'take': 1,
          'certain': 1,
          'memories': 1,
          'along': 1,
          'n': 1,
          'chock': 1,
          'full': 1,
          'creates': 1,
          'everything': 1,
          'memorable': 1,
          'little': 1,
          'instances': 1,
          'catch': 1,
          'stay': 1,
          'rest': 1,
          'things': 1,
          'tad': 1,
          'sure': 1,
          'paying': 1,
          'goddam': 1,
          'ever': 1,
          'bored': 1,
          'span': 1,
          'needs': 1,
          'tuningup': 1,
          'takes': 1,
          'place': 1,
          'extravagant': 1,
          'aging': 1,
          'patriarch': 1,
          'henning': 1,
          'turned': 1,
          '60': 1,
          'thrown': 1,
          'nall': 1,
          'friends': 1,
          'half': 1,
          'hour': 1,
          'get': 1,
          'introduced': 1,
          'simplistically': 1,
          'realistically': 1,
          'aggravatingly': 1,
          'condescending': 1,
          'posing': 1,
          'camera': 1,
          'deals': 1,
          'ulrich': 1,
          'looking': 1,
          'malcolm': 1,
          'mcdowell': 1,
          'fathers': 1,
          'nhis': 1,
          'brother': 1,
          'michael': 1,
          'bo': 1,
          'larsen': 1,
          'drives': 1,
          'pulls': 1,
          'greets': 1,
          'kicks': 1,
          'forcing': 1,
          'walk': 1,
          'estate': 1,
          'comfortable': 1,
          'meet': 1,
          'helene': 1,
          'paprika': 1,
          'steen': 1,
          'sister': 1,
          'woman': 1,
          'stressedout': 1,
          'invites': 1,
          'driver': 1,
          'gbatokai': 1,
          'dakinah': 1,
          'american': 1,
          'come': 1,
          'join': 1,
          'shes': 1,
          'going': 1,
          'nonce': 1,
          'theyre': 1,
          'settled': 1,
          'begins': 1,
          'custom': 1,
          'speech': 1,
          'dad': 1,
          'stands': 1,
          'head': 1,
          'table': 1,
          'reveals': 1,
          'punchline': 1,
          'age': 1,
          'since': 1,
          'familyfriends': 1,
          'affair': 1,
          'confession': 1,
          'becomes': 1,
          'detested': 1,
          'supposed': 1,
          'simply': 1,
          'brushed': 1,
          'despite': 1,
          'efforts': 1,
          'sorta': 1,
          'jerry': 1,
          'springer': 1,
          'crossed': 1,
          'jean': 1,
          'renoir': 1,
          'terribly': 1,
          'ntwists': 1,
          'occur': 1,
          'soon': 1,
          'taken': 1,
          'nearlyfarsical': 1,
          'still': 1,
          'involved': 1,
          'reach': 1,
          'ends': 1,
          'notorious': 1,
          'getting': 1,
          'notice': 1,
          'director': 1,
          'vinterberg': 1,
          'awkward': 1,
          'fashion': 1,
          'filmmakers': 1,
          'clan': 1,
          'dogme': 1,
          '95': 1,
          'vowed': 1,
          'oppose': 1,
          'auteur': 1,
          'concept': 1,
          'makeup': 1,
          'illusions': 1,
          'dramaturgical': 1,
          'predictability': 1,
          'purge': 1,
          'inner': 1,
          'justify': 1,
          'plot': 1,
          'breaking': 1,
          'waves': 1,
          'notable': 1,
          'lars': 1,
          'von': 1,
          'trier': 1,
          'exact': 1,
          'exquisitely': 1,
          'department': 1,
          'actually': 1,
          'watching': 1,
          'major': 1,
          'pointer': 1,
          'video': 1,
          'result': 1,
          'looks': 1,
          'movies': 1,
          'actual': 1,
          'wanted': 1,
          'moments': 1,
          'peoples': 1,
          'wouldnt': 1,
          'show': 1,
          'captures': 1,
          'comedy': 1,
          'accurately': 1,
          'acutely': 1,
          'style': 1,
          'ironicallyshowmanship': 1,
          'perfectly': 1,
          'reason': 1,
          'cool': 1,
          'import': 1,
          'revealing': 1,
          'way': 1,
          'react': 1,
          'explosive': 1,
          'nthroughout': 1,
          'realized': 1,
          'effects': 1,
          'lies': 1,
          'threedimensional': 1,
          'blow': 1,
          'oliver': 1,
          'stone': 1,
          'thetruthatallcosts': 1,
          'reasoning': 1,
          'water': 1,
          'nof': 1,
          'right': 1,
          'rape': 1,
          'couldnt': 1,
          'fought': 1,
          'back': 1,
          'created': 1,
          'scarring': 1,
          'suppression': 1,
          'inside': 1,
          'yes': 1,
          'thearapeutic': 1,
          'release': 1,
          'later': 1,
          'destroy': 1,
          'destroyed': 1,
          'bad': 1,
          'guy': 1,
          'emotional': 1,
          'complications': 1,
          'arise': 1,
          'touching': 1,
          'believe': 1,
          'man': 1,
          'hes': 1,
          'done': 1,
          'deep': 1,
          'true': 1,
          'guilt': 1,
          'beginning': 1,
          'surface': 1,
          'final': 1,
          'scene': 1,
          'involving': 1,
          'devastating': 1,
          'whose': 1,
          'equally': 1,
          'complex': 1,
          'neveryone': 1,
          'well': 1,
          'seem': 1,
          'stepping': 1,
          'shoes': 1,
          'comfortably': 1,
          'writers': 1,
          'made': 1,
          'mistake': 1,
          'judge': 1,
          'slightest': 1,
          'whites': 1,
          'blacks': 1,
          'instead': 1,
          'grays': 1,
          'exactly': 1,
          'truly': 1,
          'bizarro': 1,
          'year': 1,
          'art': 1,
          'eerily': 1,
          'close': 1,
          'disturbing': 1,
          'fascinating': 1,
          'npos': 1}),
 Counter({'shrek': 7,
          'donkey': 4,
          'fairy': 3,
          'best': 3,
          'comic': 3,
          'tale': 2,
          'farquaad': 2,
          'lithgow': 2,
          'murphy': 2,
          'one': 2,
          'n': 2,
          'murphys': 2,
          'delightful': 2,
          'man': 2,
          'great': 2,
          'synopsis': 1,
          'myers': 1,
          'ogre': 1,
          'living': 1,
          'contented': 1,
          'solitude': 1,
          'deep': 1,
          'heart': 1,
          'forest': 1,
          'home': 1,
          'invaded': 1,
          'creatures': 1,
          'fleeing': 1,
          'rule': 1,
          'evil': 1,
          'lord': 1,
          'john': 1,
          'nfarquaad': 1,
          'agrees': 1,
          'relocate': 1,
          'pests': 1,
          'condition': 1,
          'rescues': 1,
          'princess': 1,
          'fiona': 1,
          'diaz': 1,
          'desires': 1,
          'wed': 1,
          'faroff': 1,
          'castle': 1,
          'ngrudgingly': 1,
          'sets': 1,
          'joined': 1,
          'quest': 1,
          'unwanted': 1,
          'companion': 1,
          'nreview': 1,
          'memorable': 1,
          'aspect': 1,
          'disneys': 1,
          'aladdin': 1,
          'finally': 1,
          'gave': 1,
          'robin': 1,
          'williams': 1,
          'character': 1,
          'genie': 1,
          'take': 1,
          'advantage': 1,
          'talents': 1,
          'eddie': 1,
          'ironically': 1,
          'though': 1,
          'ideal': 1,
          'vessel': 1,
          'turns': 1,
          'ass': 1,
          'nall': 1,
          'represent': 1,
          'outing': 1,
          'years': 1,
          'steals': 1,
          'lines': 1,
          'nfor': 1,
          'instance': 1,
          'getting': 1,
          'belted': 1,
          'pixie': 1,
          'dust': 1,
          'trying': 1,
          'conceal': 1,
          'nature': 1,
          'magical': 1,
          'creature': 1,
          'soars': 1,
          'air': 1,
          'scoffs': 1,
          'im': 1,
          'flying': 1,
          'talking': 1,
          'nand': 1,
          'despite': 1,
          'many': 1,
          'contributors': 1,
          'script': 1,
          'full': 1,
          'gems': 1,
          'nmyers': 1,
          'straight': 1,
          'role': 1,
          'also': 1,
          'gets': 1,
          'moments': 1,
          'watch': 1,
          'hilarious': 1,
          'repartee': 1,
          'gingerbread': 1,
          'takes': 1,
          'pleasure': 1,
          'lampooning': 1,
          'tales': 1,
          'nursery': 1,
          'rhymes': 1,
          'sorts': 1,
          'reserves': 1,
          'knocks': 1,
          'disney': 1,
          'bargain': 1,
          'nthings': 1,
          'go': 1,
          'somewhat': 1,
          'astray': 1,
          'films': 1,
          'middle': 1,
          'segment': 1,
          'concentrates': 1,
          'much': 1,
          'main': 1,
          'characters': 1,
          'expense': 1,
          'terrific': 1,
          'satire': 1,
          'movies': 1,
          'greatest': 1,
          'strength': 1,
          'nbut': 1,
          'even': 1,
          'always': 1,
          'sit': 1,
          'back': 1,
          'enjoy': 1,
          'beautiful': 1,
          'computer': 1,
          'animation': 1,
          'whose': 1,
          'remarkable': 1,
          'use': 1,
          'represents': 1,
          'yet': 1,
          'another': 1,
          'dazzling': 1,
          'leap': 1,
          'forward': 1,
          'technology': 1,
          'npos': 1}),
 Counter({'school': 11,
          'high': 9,
          'nthe': 6,
          'two': 6,
          'nbut': 5,
          'teacher': 5,
          'broderick': 4,
          'one': 4,
          'run': 4,
          'real': 4,
          'day': 3,
          'election': 3,
          'world': 3,
          'similar': 3,
          'far': 3,
          'well': 3,
          'njim': 3,
          'type': 3,
          'carver': 3,
          'witherspoon': 3,
          'young': 3,
          'girl': 3,
          'nshe': 3,
          'paul': 3,
          'hatred': 3,
          'even': 3,
          'good': 3,
          'everyone': 3,
          'role': 3,
          'apparent': 3,
          'matthew': 2,
          'comedy': 2,
          'ferris': 2,
          'buehler': 2,
          'pile': 2,
          'marshmallows': 2,
          'nit': 2,
          'nthis': 2,
          'production': 2,
          'realistic': 2,
          'much': 2,
          'american': 2,
          'schools': 2,
          'nhe': 2,
          'nin': 2,
          'year': 2,
          'among': 2,
          'student': 2,
          'body': 2,
          'ntracy': 2,
          'reese': 2,
          'film': 2,
          'extremely': 2,
          'popular': 2,
          'nso': 2,
          'president': 2,
          'nand': 2,
          'tammy': 2,
          'jessica': 2,
          'campbell': 2,
          'students': 2,
          'candidate': 2,
          'person': 2,
          'self': 2,
          'sexual': 2,
          'tracy': 2,
          'candidates': 2,
          'people': 2,
          'put': 2,
          'college': 2,
          'dont': 2,
          'guys': 2,
          'audience': 2,
          'takes': 2,
          'characters': 2,
          'hollywood': 2,
          'portrayal': 2,
          'towards': 2,
          'simply': 2,
          'terms': 1,
          'practically': 1,
          'inseparable': 1,
          'since': 1,
          'took': 1,
          '1986': 1,
          'nnow': 1,
          '13': 1,
          'years': 1,
          'later': 1,
          'another': 1,
          'show': 1,
          'nferris': 1,
          'buehlers': 1,
          'showed': 1,
          'educational': 1,
          'setting': 1,
          'light': 1,
          'fluffy': 1,
          'tasty': 1,
          'sparkling': 1,
          'clean': 1,
          'different': 1,
          'dark': 1,
          'frighteningly': 1,
          'entertain': 1,
          '103': 1,
          'minutes': 1,
          'occupies': 1,
          'shocks': 1,
          'mcallister': 1,
          'makes': 1,
          'proud': 1,
          'kind': 1,
          'caring': 1,
          'younger': 1,
          'man': 1,
          'built': 1,
          'life': 1,
          'around': 1,
          'turn': 1,
          'provided': 1,
          'home': 1,
          'less': 1,
          'three': 1,
          'times': 1,
          '12': 1,
          'span': 1,
          'respected': 1,
          'social': 1,
          'studies': 1,
          'flick': 1,
          'intelligent': 1,
          'outgoing': 1,
          'quote': 1,
          'super': 1,
          'nice': 1,
          'involved': 1,
          'numerous': 1,
          'extracurricular': 1,
          'activities': 1,
          'always': 1,
          'hand': 1,
          'first': 1,
          'class': 1,
          'natural': 1,
          'progression': 1,
          'decides': 1,
          'metzler': 1,
          'family': 1,
          'wealthy': 1,
          'father': 1,
          'dick': 1,
          'holmes': 1,
          'osborne': 1,
          'owns': 1,
          'cement': 1,
          'company': 1,
          'mother': 1,
          'jo': 1,
          'jeanine': 1,
          'jackson': 1,
          'ideal': 1,
          'housewife': 1,
          'children': 1,
          'chris': 1,
          'klein': 1,
          'npaul': 1,
          'quarterback': 1,
          'football': 1,
          'team': 1,
          'injured': 1,
          'definitely': 1,
          'ntammy': 1,
          'lesbian': 1,
          'say': 1,
          'least': 1,
          'going': 1,
          'period': 1,
          'discovery': 1,
          'nfor': 1,
          'reasons': 1,
          'revenge': 1,
          'envy': 1,
          'jim': 1,
          'convinces': 1,
          'claims': 1,
          'democracy': 1,
          'need': 1,
          'choices': 1,
          'unopposed': 1,
          'creates': 1,
          'dictatorship': 1,
          'sorts': 1,
          'agrees': 1,
          'race': 1,
          'effort': 1,
          'spite': 1,
          'announces': 1,
          'running': 1,
          'nher': 1,
          'campaign': 1,
          'straightforward': 1,
          'applications': 1,
          'nothing': 1,
          'nwell': 1,
          'want': 1,
          'go': 1,
          'says': 1,
          'nalmost': 1,
          'agenda': 1,
          'nno': 1,
          'matter': 1,
          'deeply': 1,
          'hidden': 1,
          'digs': 1,
          'exploits': 1,
          'remember': 1,
          'would': 1,
          'labeled': 1,
          'likely': 1,
          'achieve': 1,
          'anything': 1,
          'wants': 1,
          'yearbook': 1,
          'secretly': 1,
          'envied': 1,
          'trust': 1,
          'give': 1,
          'privilege': 1,
          'uses': 1,
          'amoral': 1,
          'advantage': 1,
          'neveryone': 1,
          'including': 1,
          'principal': 1,
          'former': 1,
          'pauls': 1,
          'girlfriend': 1,
          'sided': 1,
          'nthat': 1,
          'films': 1,
          'beauty': 1,
          'doesnt': 1,
          'typical': 1,
          'likes': 1,
          'instead': 1,
          'specializing': 1,
          'revealing': 1,
          'perversions': 1,
          'usually': 1,
          'keep': 1,
          'nmatthew': 1,
          'couldnt': 1,
          'perfect': 1,
          'nhis': 1,
          'character': 1,
          'often': 1,
          'bill': 1,
          'murrays': 1,
          'award': 1,
          'winning': 1,
          '1998': 1,
          'rushmore': 1,
          'nof': 1,
          'acting': 1,
          'jobs': 1,
          'brodericks': 1,
          'superior': 1,
          'overshadowed': 1,
          'causes': 1,
          'develop': 1,
          'indescribable': 1,
          'nbroderick': 1,
          'best': 1,
          'playing': 1,
          'various': 1,
          'scenes': 1,
          'none': 1,
          'moment': 1,
          'occurs': 1,
          'approaches': 1,
          'car': 1,
          'leaving': 1,
          'nyou': 1,
          'see': 1,
          'pride': 1,
          'eyes': 1,
          'presents': 1,
          'list': 1,
          'signatures': 1,
          'making': 1,
          'eligible': 1,
          'subtle': 1,
          'disgust': 1,
          'although': 1,
          'tries': 1,
          'mask': 1,
          'lines': 1,
          'attempts': 1,
          'happy': 1,
          'face': 1,
          'supporting': 1,
          'cast': 1,
          'little': 1,
          'experience': 1,
          'control': 1,
          'part': 1,
          'nhowever': 1,
          'treat': 1,
          'confused': 1,
          'homosexual': 1,
          'never': 1,
          'scene': 1,
          'delivers': 1,
          'speech': 1,
          'announcing': 1,
          'socalled': 1,
          'platform': 1,
          'presidency': 1,
          'marvelous': 1,
          'thinks': 1,
          'unjust': 1,
          'system': 1,
          'expressed': 1,
          'nif': 1,
          'made': 1,
          'feel': 1,
          'gave': 1,
          'innocent': 1,
          'laugh': 1,
          'movie': 1,
          'achieved': 1,
          'goal': 1,
          'dare': 1,
          'think': 1,
          'elections': 1,
          'goals': 1,
          'nthere': 1,
          'certainly': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'film': 4,
          'movie': 4,
          'songs': 4,
          'rocky': 3,
          'horror': 3,
          'picture': 3,
          'show': 3,
          'special': 3,
          'edition': 3,
          'curry': 3,
          'susan': 3,
          'films': 3,
          'cult': 3,
          'toucha': 3,
          'tim': 2,
          'sarandon': 2,
          'look': 2,
          'first': 2,
          'like': 2,
          'recently': 2,
          'twisted': 2,
          'get': 2,
          'castle': 2,
          'use': 2,
          'frank': 2,
          'n': 2,
          'furter': 2,
          'good': 2,
          'see': 2,
          'one': 2,
          'janet': 2,
          'brad': 2,
          'majors': 2,
          'meatloaf': 2,
          'actors': 2,
          'sing': 2,
          'kind': 2,
          'two': 2,
          'original': 2,
          '1975': 1,
          'nstarring': 1,
          'ncult': 1,
          'never': 1,
          'mainstream': 1,
          'casual': 1,
          'viewer': 1,
          'repulsed': 1,
          'confused': 1,
          'yelling': 1,
          'hell': 1,
          'nfans': 1,
          'sorts': 1,
          'movies': 1,
          'laughing': 1,
          'every': 1,
          'second': 1,
          'hidden': 1,
          'jokes': 1,
          'missed': 1,
          'time': 1,
          'around': 1,
          'normal': 1,
          'watchers': 1,
          'theyre': 1,
          'insane': 1,
          'rereleased': 1,
          'video': 1,
          'mother': 1,
          'nperiod': 1,
          'nlike': 1,
          'notably': 1,
          'little': 1,
          'shop': 1,
          'horrors': 1,
          'musical': 1,
          'edge': 1,
          'nthis': 1,
          'begins': 1,
          'innocently': 1,
          'enough': 1,
          'couple': 1,
          'engaged': 1,
          'friends': 1,
          'wedding': 1,
          'flat': 1,
          'tire': 1,
          'middle': 1,
          'night': 1,
          'raining': 1,
          'nthey': 1,
          'go': 1,
          'try': 1,
          'phone': 1,
          'nlittle': 1,
          'know': 1,
          'owned': 1,
          'dr': 1,
          'mad': 1,
          'transexual': 1,
          'transvestite': 1,
          'scientist': 1,
          'created': 1,
          'creature': 1,
          'personal': 1,
          'reasons': 1,
          'acting': 1,
          'pretty': 1,
          'overall': 1,
          'ntim': 1,
          'home': 1,
          'alone': 1,
          '2': 1,
          'legend': 1,
          'overthetop': 1,
          'nits': 1,
          'interesting': 1,
          'future': 1,
          'oscar': 1,
          'winner': 1,
          'sarandons': 1,
          'dead': 1,
          'man': 1,
          'walking': 1,
          'plays': 1,
          'girlfriend': 1,
          'neven': 1,
          'singer': 1,
          'yet': 1,
          'way': 1,
          'na': 1,
          'sampling': 1,
          'titles': 1,
          'range': 1,
          'damn': 1,
          'touch': 1,
          'nall': 1,
          'dubbing': 1,
          'bad': 1,
          'thing': 1,
          'nbarry': 1,
          'bostwick': 1,
          'tries': 1,
          'clearly': 1,
          'professional': 1,
          'extensive': 1,
          'stage': 1,
          'experience': 1,
          'nmeatloaf': 1,
          'sings': 1,
          'new': 1,
          'contains': 1,
          'trailers': 1,
          'well': 1,
          'deleted': 1,
          'version': 1,
          'nsadly': 1,
          'tacked': 1,
          'credits': 1,
          'defeats': 1,
          'purpose': 1,
          'nif': 1,
          'want': 1,
          'different': 1,
          'watch': 1,
          'npos': 1}),
 Counter({'titanic': 12,
          'nthe': 8,
          'movie': 7,
          'ship': 7,
          'dicaprio': 6,
          'great': 6,
          'know': 5,
          'rose': 5,
          'ni': 4,
          'little': 4,
          'love': 4,
          'look': 4,
          'character': 4,
          'moment': 4,
          'seen': 3,
          'really': 3,
          'thats': 3,
          'job': 3,
          'winslet': 3,
          'nbut': 3,
          'first': 3,
          'real': 3,
          'story': 3,
          'alive': 3,
          'like': 3,
          'ncameron': 3,
          'get': 3,
          'jack': 3,
          'time': 2,
          'never': 2,
          'gone': 2,
          'wind': 2,
          'dont': 2,
          'far': 2,
          'nso': 2,
          'right': 2,
          'heck': 2,
          'going': 2,
          'nas': 2,
          'parallels': 2,
          'ngwtw': 2,
          'revolutionary': 2,
          'ntitanic': 2,
          'design': 2,
          'greatest': 2,
          'tragedy': 2,
          'incredibly': 2,
          'expensive': 2,
          'enough': 2,
          'especially': 2,
          'money': 2,
          'ncamerons': 2,
          'well': 2,
          'shows': 2,
          'us': 2,
          'mind': 2,
          'paxton': 2,
          'wreck': 2,
          'cameron': 2,
          'millionaire': 2,
          'zane': 2,
          'artist': 2,
          'disaster': 2,
          'cast': 2,
          'n': 2,
          'plays': 2,
          'looks': 2,
          'nat': 2,
          'girl': 2,
          'lifeboat': 2,
          'ndicaprio': 2,
          'anything': 2,
          'bad': 2,
          'hits': 2,
          'iceberg': 2,
          'performance': 2,
          'shes': 2,
          'manages': 2,
          'confession': 1,
          'ever': 1,
          'nhavent': 1,
          'wanted': 1,
          'check': 1,
          'video': 1,
          'havent': 1,
          'home': 1,
          'nights': 1,
          'network': 1,
          'tv': 1,
          'drive': 1,
          'last': 1,
          'bigscreen': 1,
          'front': 1,
          'ill': 1,
          'admit': 1,
          'im': 1,
          'talking': 1,
          'goes': 1,
          'nis': 1,
          '1990s': 1,
          'nmaybe': 1,
          'bit': 1,
          'good': 1,
          'leonardo': 1,
          'kate': 1,
          'theyre': 1,
          'clark': 1,
          'gable': 1,
          'vivien': 1,
          'leigh': 1,
          'take': 1,
          'advantage': 1,
          'technology': 1,
          'available': 1,
          'technicolor': 1,
          'takes': 1,
          'steps': 1,
          'forward': 1,
          'seamlessly': 1,
          'integrating': 1,
          'computer': 1,
          'graphic': 1,
          'actors': 1,
          'places': 1,
          'americas': 1,
          'background': 1,
          'classic': 1,
          'atlantics': 1,
          'legendary': 1,
          'nthey': 1,
          'strongwilled': 1,
          'redheaded': 1,
          'heroines': 1,
          'exploit': 1,
          'class': 1,
          'differences': 1,
          'aristocracy': 1,
          'slavessteerage': 1,
          'bums': 1,
          'popular': 1,
          'nok': 1,
          'maybe': 1,
          'titanics': 1,
          'gwtws': 1,
          'league': 1,
          'nno': 1,
          'matter': 1,
          'complete': 1,
          'spills': 1,
          'thrills': 1,
          'chills': 1,
          'nmuch': 1,
          'made': 1,
          'humongous': 1,
          'cost': 1,
          'production': 1,
          'care': 1,
          'went': 1,
          'making': 1,
          'huge': 1,
          'luxury': 1,
          'liner': 1,
          'come': 1,
          'obviously': 1,
          'wellspent': 1,
          'costumes': 1,
          'sets': 1,
          'cgi': 1,
          'graphics': 1,
          'liked': 1,
          'touches': 1,
          'spending': 1,
          'tons': 1,
          'authentic': 1,
          'china': 1,
          'break': 1,
          'floor': 1,
          'sinks': 1,
          'writerdirectorproducer': 1,
          'james': 1,
          'camerons': 1,
          'challenge': 1,
          'writingdirecting': 1,
          'producing': 1,
          'wasnt': 1,
          'costuming': 1,
          'set': 1,
          'special': 1,
          'effects': 1,
          'major': 1,
          'headache': 1,
          'keeping': 1,
          'audience': 1,
          'interested': 1,
          'tale': 1,
          'everybody': 1,
          'knows': 1,
          'ending': 1,
          'nhe': 1,
          'succeeds': 1,
          'masterfully': 1,
          'two': 1,
          'things': 1,
          'work': 1,
          'nfirst': 1,
          'modernday': 1,
          'salvage': 1,
          'operations': 1,
          'glimpse': 1,
          'present': 1,
          'state': 1,
          'corroding': 1,
          'slowly': 1,
          'away': 1,
          'hammering': 1,
          'pressure': 1,
          'north': 1,
          'atlantic': 1,
          'window': 1,
          'minisub': 1,
          'piloted': 1,
          'treasure': 1,
          'hunter': 1,
          'brock': 1,
          'lovett': 1,
          'bill': 1,
          'ntelevision': 1,
          'coverage': 1,
          'exploration': 1,
          'intrigues': 1,
          '101yearold': 1,
          'calvert': 1,
          'gloria': 1,
          'stuart': 1,
          'survived': 1,
          '1912': 1,
          'nstuart': 1,
          'phenomenal': 1,
          'brief': 1,
          'role': 1,
          'narrating': 1,
          'experience': 1,
          'stunned': 1,
          'roughneck': 1,
          'crew': 1,
          'nsecondly': 1,
          'keeps': 1,
          'storyline': 1,
          'focused': 1,
          'almost': 1,
          'exclusively': 1,
          'romantic': 1,
          'triangle': 1,
          'bastard': 1,
          'fiancee': 1,
          'cal': 1,
          'hockley': 1,
          'billy': 1,
          'irrepressible': 1,
          'young': 1,
          'daswon': 1,
          'way': 1,
          'bigbudget': 1,
          'movies': 1,
          'usually': 1,
          'go': 1,
          'wrong': 1,
          'allstar': 1,
          'see': 1,
          'impact': 1,
          'wide': 1,
          'group': 1,
          'people': 1,
          'wisely': 1,
          'chooses': 1,
          'stick': 1,
          'paying': 1,
          'scant': 1,
          'heed': 1,
          'celebrities': 1,
          'board': 1,
          'supporting': 1,
          'professional': 1,
          'mostly': 1,
          'anonymous': 1,
          'kathy': 1,
          'bates': 1,
          'unsinkable': 1,
          'molly': 1,
          'brown': 1,
          'theres': 1,
          'stop': 1,
          'say': 1,
          'oh': 1,
          'yeah': 1,
          'whats': 1,
          'although': 1,
          'would': 1,
          'colm': 1,
          'meaney': 1,
          'white': 1,
          'star': 1,
          'uniform': 1,
          'even': 1,
          'illfated': 1,
          'engineer': 1,
          'rather': 1,
          'conventional': 1,
          'think': 1,
          'reviewers': 1,
          'found': 1,
          'weak': 1,
          'may': 1,
          'fair': 1,
          'criticism': 1,
          'performances': 1,
          'key': 1,
          'nzane': 1,
          'meatiest': 1,
          'part': 1,
          'arrogant': 1,
          'condescending': 1,
          'steel': 1,
          'hilt': 1,
          'nhes': 1,
          'smooth': 1,
          'tuxedo': 1,
          'hes': 1,
          'convincing': 1,
          'jerk': 1,
          'winsletdicaprio': 1,
          'relationship': 1,
          'plausible': 1,
          'sees': 1,
          'frightened': 1,
          'aboard': 1,
          'hear': 1,
          'wheels': 1,
          'turning': 1,
          'saying': 1,
          'save': 1,
          'help': 1,
          'revelation': 1,
          'hadnt': 1,
          'didnt': 1,
          'expect': 1,
          'honestly': 1,
          'expected': 1,
          'irish': 1,
          'accent': 1,
          'evidently': 1,
          'decided': 1,
          'idea': 1,
          'poor': 1,
          'american': 1,
          'wins': 1,
          'ticket': 1,
          'poker': 1,
          'game': 1,
          'exhibits': 1,
          'infectious': 1,
          'joy': 1,
          'hard': 1,
          'nfrom': 1,
          'leaves': 1,
          'port': 1,
          'carry': 1,
          'keep': 1,
          'interest': 1,
          'falters': 1,
          'nwinslets': 1,
          'grows': 1,
          'lot': 1,
          'required': 1,
          'wear': 1,
          'period': 1,
          'clothing': 1,
          'dropdead': 1,
          'gorgeous': 1,
          'nwe': 1,
          'narration': 1,
          'monstrously': 1,
          'unhappy': 1,
          'arranged': 1,
          'marriage': 1,
          'isnt': 1,
          'expression': 1,
          'feelings': 1,
          'encounters': 1,
          'nwinslet': 1,
          'develop': 1,
          'chemistry': 1,
          'propel': 1,
          'along': 1,
          'nits': 1,
          'winslets': 1,
          'comes': 1,
          'nfaced': 1,
          'danger': 1,
          'drops': 1,
          'spoiledrichgirl': 1,
          'mannerisms': 1,
          'splendid': 1,
          'race': 1,
          'around': 1,
          'doomed': 1,
          'looking': 1,
          'shelter': 1,
          'freezing': 1,
          'water': 1,
          'cals': 1,
          'fiery': 1,
          'temper': 1,
          'turns': 1,
          'superb': 1,
          'acting': 1,
          'mixing': 1,
          'courage': 1,
          'compassion': 1,
          'anger': 1,
          'sheer': 1,
          'shrieking': 1,
          'terror': 1,
          'nof': 1,
          'course': 1,
          'interesting': 1,
          'clearly': 1,
          'fallen': 1,
          'every': 1,
          'mood': 1,
          'deserted': 1,
          'boiler': 1,
          'room': 1,
          'bridge': 1,
          'hold': 1,
          'captains': 1,
          'table': 1,
          'steerage': 1,
          'bring': 1,
          'back': 1,
          'dead': 1,
          'gift': 1,
          'allows': 1,
          'fall': 1,
          'npos': 1}),
 Counter({'film': 5,
          'gibson': 4,
          'mullen': 4,
          'son': 3,
          'kidnappers': 3,
          'nthe': 3,
          'sinise': 3,
          'doesn92t': 2,
          'known': 2,
          'hero': 2,
          'nin': 2,
          'apart': 2,
          'situation': 2,
          'play': 2,
          'perfect': 2,
          'nhis': 2,
          'feeding': 2,
          'ngibson92s': 2,
          'way': 2,
          'nas': 2,
          'you92re': 2,
          'sean': 2,
          'nit92s': 2,
          'one': 2,
          'seen': 2,
          'seems': 2,
          'provide': 2,
          'minute': 2,
          'watch': 1,
          'mel': 1,
          'danger': 1,
          'someone': 1,
          'mad': 1,
          'max': 1,
          'nof': 1,
          'course': 1,
          'still': 1,
          'big': 1,
          'guns': 1,
          'there92s': 1,
          'accomplished': 1,
          'acting': 1,
          'nalthough': 1,
          'continues': 1,
          'shed': 1,
          'rough': 1,
          'gritty': 1,
          'antihero': 1,
          'skin': 1,
          'career': 1,
          'progresses': 1,
          'explores': 1,
          'new': 1,
          'genre': 1,
          'businessman': 1,
          'action': 1,
          'ron': 1,
          'howard92s': 1,
          'latest': 1,
          'plays': 1,
          'tom': 1,
          'gazillionaire': 1,
          'airline': 1,
          'owner': 1,
          'whose': 1,
          'snatched': 1,
          'junior': 1,
          'science': 1,
          'fair': 1,
          'nmullen': 1,
          'first': 1,
          'agrees': 1,
          'pay': 1,
          'ransom': 1,
          'things': 1,
          'fall': 1,
          'rethinks': 1,
          'na': 1,
          'veteran': 1,
          'numerous': 1,
          'hardnosed': 1,
          'business': 1,
          'negotiations': 1,
          'tycoon': 1,
          'realizes': 1,
          'order': 1,
          'get': 1,
          'back': 1,
          'alive': 1,
          'hand': 1,
          'differently': 1,
          'casting': 1,
          'puts': 1,
          'top': 1,
          'trio': 1,
          'mastermind': 1,
          'gary': 1,
          'fbi': 1,
          'team': 1,
          'leader': 1,
          'delroy': 1,
          'lindo': 1,
          'wonderfully': 1,
          'nsinise': 1,
          'driven': 1,
          'scheming': 1,
          'sleezebag': 1,
          'right': 1,
          'mark': 1,
          'speech': 1,
          'walkie': 1,
          'talkie': 1,
          'h': 1,
          'g': 1,
          'wells92': 1,
          'morlocks': 1,
          'eloi': 1,
          'reveal': 1,
          'vision': 1,
          'nsociety': 1,
          'glitteratti': 1,
          'frolic': 1,
          'high': 1,
          'lowlifes': 1,
          'dwell': 1,
          'unsuspecting': 1,
          'character': 1,
          'allamerican': 1,
          'flaws': 1,
          'cowboy': 1,
          'ntactics': 1,
          'tend': 1,
          'work': 1,
          'also': 1,
          'got': 1,
          'begin': 1,
          'round': 1,
          'weren92t': 1,
          'man': 1,
          'willing': 1,
          'buy': 1,
          'trouble': 1,
          'wouldn92t': 1,
          'kidnapped': 1,
          'says': 1,
          'payer': 1,
          'nyou': 1,
          'going': 1,
          'none': 1,
          'nicest': 1,
          'elements': 1,
          'characters': 1,
          'actually': 1,
          'personalities': 1,
          'nlindo': 1,
          'calls': 1,
          'home': 1,
          'talk': 1,
          'kids': 1,
          'obviously': 1,
          'shaken': 1,
          'working': 1,
          'case': 1,
          'neven': 1,
          'real': 1,
          'people': 1,
          'arguing': 1,
          'ultimate': 1,
          'fate': 1,
          'candy': 1,
          'bars': 1,
          'breakdown': 1,
          'balcony': 1,
          'penthouse': 1,
          'apartment': 1,
          'especially': 1,
          'effective': 1,
          'best': 1,
          'filmed': 1,
          'representations': 1,
          'man92s': 1,
          'world': 1,
          'falling': 1,
          'i92ve': 1,
          'shoot': 1,
          'em': 1,
          'upending': 1,
          'emotionally': 1,
          'satisfying': 1,
          'tacked': 1,
          'rather': 1,
          'powerful': 1,
          'resolution': 1,
          'well': 1,
          'crafted': 1,
          'scene': 1,
          'we92ve': 1,
          'nmullen92s': 1,
          'wife': 1,
          'rene': 1,
          'russo': 1,
          'several': 1,
          'good': 1,
          'moments': 1,
          'occasionally': 1,
          'nwhile': 1,
          'adequate': 1,
          'brawley': 1,
          'nolte': 1,
          'much': 1,
          'occupying': 1,
          'space': 1,
          'build': 1,
          'story': 1,
          'around': 1,
          'nbut': 1,
          'you92ll': 1,
          'ignore': 1,
          'problems': 1,
          'movie': 1,
          'builds': 1,
          'previous': 1,
          'nforget': 1,
          'large': 1,
          'coke': 1,
          'won92t': 1,
          'want': 1,
          'leave': 1,
          'five': 1,
          'break': 1,
          'hour': 1,
          'later': 1,
          'npos': 1}),
 Counter({'cusack': 14,
          'film': 9,
          'character': 9,
          'kind': 6,
          'much': 6,
          'something': 6,
          'hes': 5,
          'way': 5,
          'anything': 5,
          'whose': 5,
          'movie': 5,
          'would': 5,
          'guy': 5,
          'nhes': 5,
          'like': 5,
          'people': 4,
          'name': 4,
          'one': 4,
          'see': 4,
          'fidelity': 4,
          'know': 4,
          'cusacks': 4,
          'nthe': 4,
          'john': 3,
          'put': 3,
          'day': 3,
          'movies': 3,
          'never': 3,
          'ni': 3,
          'little': 3,
          'nthis': 3,
          'rather': 3,
          'fact': 3,
          'yes': 3,
          'quite': 3,
          'good': 3,
          'hair': 3,
          'sure': 3,
          'say': 3,
          'still': 3,
          'nhigh': 3,
          'funny': 3,
          'us': 3,
          'entirely': 3,
          'black': 3,
          'nbut': 3,
          'actor': 2,
          'seems': 2,
          'effortlessly': 2,
          'roles': 2,
          'forget': 2,
          'rarely': 2,
          'actors': 2,
          'face': 2,
          'mother': 2,
          'seeing': 2,
          'mind': 2,
          'ill': 2,
          'go': 2,
          'might': 2,
          'usual': 2,
          'went': 2,
          'probably': 2,
          'picture': 2,
          'woody': 2,
          'allen': 2,
          'usually': 2,
          'recognize': 2,
          'names': 2,
          'instead': 2,
          'dont': 2,
          'nat': 2,
          'point': 2,
          'nose': 2,
          'till': 2,
          'bland': 2,
          'even': 2,
          'tom': 2,
          'nim': 2,
          'man': 2,
          'looks': 2,
          'charming': 2,
          'likeable': 2,
          'thing': 2,
          'talents': 2,
          'early': 2,
          'jack': 2,
          'every': 2,
          'plays': 2,
          'enjoyable': 2,
          'stephan': 2,
          'judging': 2,
          'projects': 2,
          'also': 2,
          'hit': 2,
          'fears': 2,
          'terrific': 2,
          'rob': 2,
          'record': 2,
          'store': 2,
          'top': 2,
          'mostly': 2,
          'reminded': 2,
          'almost': 2,
          'must': 2,
          'characters': 2,
          'really': 2,
          'films': 2,
          'annoying': 2,
          'im': 2,
          'onto': 2,
          'manic': 2,
          'speed': 2,
          'bit': 2,
          'comic': 2,
          'poor': 2,
          'role': 2,
          'completely': 2,
          'played': 2,
          'danish': 2,
          'replacing': 2,
          'stilted': 2,
          'beautiful': 2,
          'natasha': 2,
          'paired': 2,
          'award': 2,
          'slide': 1,
          'respective': 1,
          'nso': 1,
          'tend': 1,
          'recall': 1,
          'many': 1,
          'great': 1,
          'anyone': 1,
          'james': 1,
          'rebhorn': 1,
          'invited': 1,
          'treat': 1,
          'product': 1,
          'sponsors': 1,
          'nexample': 1,
          'asked': 1,
          'expert': 1,
          'course': 1,
          'worth': 1,
          'tastes': 1,
          'couldnt': 1,
          'divergent': 1,
          'recommended': 1,
          'night': 1,
          'roxbury': 1,
          'god': 1,
          'sakes': 1,
          'fair': 1,
          'mightily': 1,
          'pissed': 1,
          'telling': 1,
          'nwas': 1,
          'lot': 1,
          'fun': 1,
          'didnt': 1,
          'futile': 1,
          'attempt': 1,
          'conversation': 1,
          'muttered': 1,
          'trepidation': 1,
          'enjoy': 1,
          'high': 1,
          'nshe': 1,
          'responded': 1,
          'query': 1,
          'question': 1,
          'answer': 1,
          'immediately': 1,
          'conjure': 1,
          'nif': 1,
          'reply': 1,
          'julia': 1,
          'roberts': 1,
          'assume': 1,
          'wispy': 1,
          'light': 1,
          'sylvester': 1,
          'stallone': 1,
          'bloodbath': 1,
          'words': 1,
          'involuntary': 1,
          'bicep': 1,
          'flexing': 1,
          'means': 1,
          'hyper': 1,
          'articulate': 1,
          'white': 1,
          'jewish': 1,
          'faith': 1,
          'fretting': 1,
          'upper': 1,
          'east': 1,
          'side': 1,
          'palace': 1,
          'nanyway': 1,
          'answered': 1,
          'replied': 1,
          'stunned': 1,
          'unreasonable': 1,
          'referring': 1,
          'nnow': 1,
          'seen': 1,
          'several': 1,
          'recently': 1,
          'malkovich': 1,
          'pushing': 1,
          'tin': 1,
          'suppose': 1,
          'understandable': 1,
          'tougher': 1,
          'faces': 1,
          'showed': 1,
          'mug': 1,
          'paper': 1,
          'hoping': 1,
          'oh': 1,
          'got': 1,
          'beyond': 1,
          'frustration': 1,
          'realm': 1,
          'yanking': 1,
          'anger': 1,
          'filmic': 1,
          'ignorance': 1,
          'takes': 1,
          'get': 1,
          'pulling': 1,
          'zone': 1,
          'realized': 1,
          'doubt': 1,
          'america': 1,
          'relatively': 1,
          'visage': 1,
          'compared': 1,
          'coolness': 1,
          'brad': 1,
          'pitt': 1,
          'cruise': 1,
          'onesyllable': 1,
          'glide': 1,
          'tongue': 1,
          'velocity': 1,
          'speeding': 1,
          'car': 1,
          'ncusack': 1,
          'cool': 1,
          'twenty': 1,
          'years': 1,
          'forever': 1,
          'referred': 1,
          'add': 1,
          'choice': 1,
          'brand': 1,
          'arent': 1,
          'big': 1,
          'moneymakers': 1,
          'unassuming': 1,
          'genius': 1,
          'nwith': 1,
          'pleasant': 1,
          'common': 1,
          'semiarticulate': 1,
          'blatherings': 1,
          'become': 1,
          'romantic': 1,
          'leading': 1,
          'men': 1,
          '90s': 1,
          'nfrom': 1,
          'merged': 1,
          'hanks': 1,
          'lemmon': 1,
          'ndespite': 1,
          'nearly': 1,
          'variation': 1,
          'schlumpy': 1,
          'constantly': 1,
          'screen': 1,
          'persona': 1,
          'albert': 1,
          'brooks': 1,
          'nand': 1,
          'knows': 1,
          'chose': 1,
          'scripts': 1,
          'baldwins': 1,
          'val': 1,
          'kilmers': 1,
          'seem': 1,
          'selves': 1,
          'everything': 1,
          'former': 1,
          'actually': 1,
          'insight': 1,
          'follow': 1,
          'oscar': 1,
          'winner': 1,
          'suspects': 1,
          'pauly': 1,
          'shore': 1,
          'vehicle': 1,
          'latest': 1,
          'yet': 1,
          'fire': 1,
          'agent': 1,
          'generally': 1,
          'picks': 1,
          'rewarding': 1,
          'save': 1,
          'unwatchable': 1,
          'hot': 1,
          'pursuit': 1,
          '1988': 1,
          'featuring': 1,
          'young': 1,
          'ben': 1,
          'stiller': 1,
          'second': 1,
          'collaboration': 1,
          'miss': 1,
          'english': 1,
          'director': 1,
          'grifters': 1,
          'hilo': 1,
          'country': 1,
          'nit': 1,
          'cowritten': 1,
          'collaborators': 1,
          'comedy': 1,
          'grosse': 1,
          'blank': 1,
          'nits': 1,
          'entertaining': 1,
          'progresses': 1,
          'meandering': 1,
          'fashion': 1,
          'cast': 1,
          'spell': 1,
          'begins': 1,
          'hipster': 1,
          'ode': 1,
          'noncommittal': 1,
          'vinyl': 1,
          'owner': 1,
          'opens': 1,
          'breaking': 1,
          'fourth': 1,
          'wall': 1,
          'abandon': 1,
          'educating': 1,
          '5': 1,
          'break': 1,
          'ups': 1,
          'list': 1,
          'entire': 1,
          'la': 1,
          'ferris': 1,
          'buellers': 1,
          'first': 1,
          'talkingdirectlyintothecameraschtick': 1,
          'vaguely': 1,
          'annoyed': 1,
          'body': 1,
          'shots': 1,
          'used': 1,
          'similar': 1,
          'conceit': 1,
          'began': 1,
          'grow': 1,
          'due': 1,
          'witty': 1,
          'delivery': 1,
          'talking': 1,
          'directly': 1,
          'ngradually': 1,
          'settles': 1,
          'shampoolike': 1,
          'tragicomic': 1,
          'study': 1,
          'confront': 1,
          'personal': 1,
          'failures': 1,
          'order': 1,
          'figure': 1,
          'true': 1,
          'person': 1,
          'existential': 1,
          'nthough': 1,
          'plotline': 1,
          'liked': 1,
          'pleasure': 1,
          'offers': 1,
          'introducing': 1,
          'minor': 1,
          'enough': 1,
          'warrant': 1,
          'best': 1,
          'show': 1,
          'tenacious': 1,
          'program': 1,
          'sadly': 1,
          'bruce': 1,
          'willis': 1,
          'unfortunately': 1,
          'smirk': 1,
          'remains': 1,
          'ardent': 1,
          'employee': 1,
          'bullies': 1,
          'customers': 1,
          'buying': 1,
          'exactly': 1,
          'wants': 1,
          'buy': 1,
          'weve': 1,
          'met': 1,
          'blowhard': 1,
          'thinks': 1,
          'always': 1,
          'right': 1,
          'power': 1,
          'yell': 1,
          'argue': 1,
          'insult': 1,
          'hoist': 1,
          'opinion': 1,
          'others': 1,
          'portly': 1,
          'round': 1,
          'baby': 1,
          'crazy': 1,
          'eyes': 1,
          'despite': 1,
          'size': 1,
          'leaps': 1,
          'fro': 1,
          'freak': 1,
          'redundant': 1,
          'description': 1,
          'freaks': 1,
          'supporting': 1,
          'impossibly': 1,
          'relief': 1,
          'n': 1,
          'look': 1,
          'hack': 1,
          'jan': 1,
          'de': 1,
          'bont': 1,
          'phillip': 1,
          'seymour': 1,
          'hoffman': 1,
          'twister': 1,
          'let': 1,
          'happen': 1,
          'shucking': 1,
          'jiving': 1,
          'steeped': 1,
          'reality': 1,
          'relate': 1,
          'ncatherine': 1,
          'zetajones': 1,
          'brief': 1,
          'gives': 1,
          'vivid': 1,
          'portrayal': 1,
          'women': 1,
          'enamored': 1,
          'charm': 1,
          'ntim': 1,
          'robbins': 1,
          'registers': 1,
          'tinier': 1,
          'part': 1,
          'new': 1,
          'agetype': 1,
          'cartoon': 1,
          'yuks': 1,
          'manages': 1,
          'work': 1,
          'desired': 1,
          'effect': 1,
          'exception': 1,
          'acting': 1,
          'department': 1,
          'doozy': 1,
          'main': 1,
          'love': 1,
          'interest': 1,
          'actress': 1,
          'iben': 1,
          'hjejle': 1,
          'mifune': 1,
          'obliterates': 1,
          'trace': 1,
          'accent': 1,
          'american': 1,
          'phonation': 1,
          'give': 1,
          'kudos': 1,
          'attempting': 1,
          'contradictory': 1,
          'comes': 1,
          'across': 1,
          'robotic': 1,
          'hard': 1,
          'obsessed': 1,
          'especially': 1,
          'intelligent': 1,
          'writer': 1,
          'gregson': 1,
          'wagner': 1,
          'potentially': 1,
          'waiting': 1,
          'wings': 1,
          'charmless': 1,
          'ione': 1,
          'skye': 1,
          'midnight': 1,
          'garden': 1,
          'evil': 1,
          'bastard': 1,
          'alison': 1,
          'eastwood': 1,
          'unbelievably': 1,
          'wooden': 1,
          'father': 1,
          'clint': 1,
          'special': 1,
          'wheels': 1,
          'turn': 1,
          'slower': 1,
          'nin': 1,
          'personality': 1,
          'matches': 1,
          'though': 1,
          'id': 1,
          'bet': 1,
          'laura': 1,
          'switched': 1,
          'result': 1,
          'effective': 1,
          'works': 1,
          'strength': 1,
          'performances': 1,
          'nfears': 1,
          'direction': 1,
          'somewhat': 1,
          'script': 1,
          'sometimes': 1,
          'word': 1,
          'beginning': 1,
          'hate': 1,
          'use': 1,
          'alas': 1,
          'quirky': 1,
          'think': 1,
          'blame': 1,
          'scott': 1,
          'rosenberg': 1,
          'girls': 1,
          'con': 1,
          'air': 1,
          'things': 1,
          'denver': 1,
          'dead': 1,
          'fingerprints': 1,
          'irritating': 1,
          'bits': 1,
          'deserve': 1,
          'damn': 1,
          'cusackian': 1,
          'afraid': 1,
          'understated': 1,
          'may': 1,
          'wait': 1,
          'hip': 1,
          'needs': 1,
          'offered': 1,
          'worthy': 1,
          'considerable': 1,
          'talent': 1,
          'nhis': 1,
          'sort': 1,
          'older': 1,
          'bitter': 1,
          'lloyd': 1,
          'tragic': 1,
          'without': 1,
          'pathetic': 1,
          'imprint': 1,
          'minds': 1,
          'audiences': 1,
          'achievement': 1,
          'npos': 1}),
 Counter({'horror': 12,
          'scream': 11,
          '2': 8,
          'film': 7,
          'characters': 7,
          'movies': 5,
          'clearly': 5,
          'media': 4,
          'nthe': 4,
          'movie': 4,
          'one': 4,
          'first': 3,
          'genuine': 3,
          'audience': 3,
          'well': 3,
          'seen': 3,
          'even': 3,
          'also': 3,
          'n': 3,
          'sendup': 2,
          'director': 2,
          'wes': 2,
          'craven': 2,
          'life': 2,
          'slasher': 2,
          'sequel': 2,
          'nwhile': 2,
          'violence': 2,
          'lacking': 2,
          'scares': 2,
          'scene': 2,
          'camp': 2,
          'constant': 2,
          'killings': 2,
          'weathers': 2,
          'ni': 2,
          'see': 2,
          'front': 2,
          'disturbing': 2,
          'perceptions': 2,
          'randy': 2,
          'sequels': 2,
          'friends': 2,
          'willing': 2,
          'go': 2,
          'whose': 2,
          'fact': 2,
          'situation': 2,
          'several': 2,
          'character': 2,
          'pretty': 2,
          'good': 2,
          'get': 2,
          'seem': 2,
          'better': 2,
          'year': 1,
          'initial': 1,
          'release': 1,
          'veteran': 1,
          'screenwriter': 1,
          'kevin': 1,
          'williamson': 1,
          'seemed': 1,
          'breathe': 1,
          'new': 1,
          'genre': 1,
          'inevitable': 1,
          'arrived': 1,
          'theaters': 1,
          'tongueincheek': 1,
          'parodic': 1,
          'element': 1,
          'still': 1,
          'noticeable': 1,
          'really': 1,
          'sideshow': 1,
          'broader': 1,
          'commentary': 1,
          'conventional': 1,
          'story': 1,
          'often': 1,
          'violent': 1,
          'gruesome': 1,
          'mostly': 1,
          'almost': 1,
          'every': 1,
          'played': 1,
          'value': 1,
          'discussion': 1,
          'quirks': 1,
          'cliches': 1,
          'nearly': 1,
          'premise': 1,
          'series': 1,
          'copycat': 1,
          'begin': 1,
          'called': 1,
          'stab': 1,
          'based': 1,
          'book': 1,
          'written': 1,
          'opportunistic': 1,
          'reporter': 1,
          'gail': 1,
          'courtney': 1,
          'cox': 1,
          'events': 1,
          'released': 1,
          'two': 1,
          'members': 1,
          'killed': 1,
          'opening': 1,
          'screening': 1,
          'heard': 1,
          'went': 1,
          'surprised': 1,
          'find': 1,
          'sequence': 1,
          'largely': 1,
          'comedy': 1,
          'nits': 1,
          'conclusion': 1,
          'bleeding': 1,
          'wounded': 1,
          'woman': 1,
          'stumbles': 1,
          'screen': 1,
          'dies': 1,
          'cheers': 1,
          'think': 1,
          'publicity': 1,
          'stunt': 1,
          'surreal': 1,
          'anything': 1,
          'else': 1,
          'satire': 1,
          'thus': 1,
          'takes': 1,
          'broad': 1,
          'focus': 1,
          'gradually': 1,
          'evolves': 1,
          'exploration': 1,
          'general': 1,
          'nalthough': 1,
          'resident': 1,
          'geek': 1,
          'jamie': 1,
          'kennedy': 1,
          'back': 1,
          'fresh': 1,
          'dialogue': 1,
          'interestingly': 1,
          'enough': 1,
          'usually': 1,
          'inferior': 1,
          'predecessors': 1,
          'drawing': 1,
          'entries': 1,
          'pop': 1,
          'culture': 1,
          'encyclopedia': 1,
          'neverything': 1,
          'saved': 1,
          'bell': 1,
          'showgirls': 1,
          'terminator': 1,
          'referenced': 1,
          'many': 1,
          'genres': 1,
          'available': 1,
          'lampooning': 1,
          'arent': 1,
          'carpenter': 1,
          'jokes': 1,
          'time': 1,
          'nmore': 1,
          'importantly': 1,
          'portrays': 1,
          'lengths': 1,
          'attention': 1,
          'warped': 1,
          'tv': 1,
          'imitation': 1,
          'previous': 1,
          'murders': 1,
          'culprit': 1,
          'plans': 1,
          'use': 1,
          'influence': 1,
          'courtroom': 1,
          'defense': 1,
          'exploits': 1,
          'notoriety': 1,
          'man': 1,
          'seems': 1,
          'save': 1,
          'heroines': 1,
          'earn': 1,
          'interview': 1,
          'today': 1,
          'show': 1,
          'nunderstandably': 1,
          'far': 1,
          'actually': 1,
          'blame': 1,
          'rather': 1,
          'shows': 1,
          'imitate': 1,
          'already': 1,
          'sick': 1,
          'twisted': 1,
          'ncouple': 1,
          'notably': 1,
          'lead': 1,
          'sidney': 1,
          'prescott': 1,
          'neve': 1,
          'campbell': 1,
          'fairly': 1,
          'welldeveloped': 1,
          'moments': 1,
          'spinechilling': 1,
          'suspense': 1,
          'darned': 1,
          'right': 1,
          'nwe': 1,
          'dont': 1,
          'scary': 1,
          'masks': 1,
          'graphic': 1,
          'gore': 1,
          'sympathetic': 1,
          'helpless': 1,
          'slaughtered': 1,
          'case': 1,
          'significant': 1,
          'favorite': 1,
          'bites': 1,
          'dust': 1,
          'lives': 1,
          'reduced': 1,
          'fear': 1,
          'crazed': 1,
          'murderer': 1,
          'lurking': 1,
          'around': 1,
          'corner': 1,
          'work': 1,
          'easy': 1,
          'generally': 1,
          'touted': 1,
          'sophisticated': 1,
          'cares': 1,
          'something': 1,
          'actual': 1,
          'acts': 1,
          'slashing': 1,
          'nunfortunately': 1,
          'occasionally': 1,
          'reverts': 1,
          'timehonored': 1,
          'tradition': 1,
          'throwing': 1,
          'logic': 1,
          'window': 1,
          'nfor': 1,
          'example': 1,
          'quite': 1,
          'dead': 1,
          'inexplicably': 1,
          'turn': 1,
          'alive': 1,
          'later': 1,
          'running': 1,
          'gag': 1,
          'villain': 1,
          'able': 1,
          'pull': 1,
          'particular': 1,
          'trick': 1,
          'happens': 1,
          'less': 1,
          'believable': 1,
          'fashion': 1,
          'nthere': 1,
          'scenes': 1,
          'killer': 1,
          'suddenly': 1,
          'appears': 1,
          'behind': 1,
          'next': 1,
          'victim': 1,
          'would': 1,
          'moving': 1,
          'direction': 1,
          'nas': 1,
          'question': 1,
          'whether': 1,
          'yet': 1,
          'another': 1,
          'predecessor': 1,
          'nwell': 1,
          'hard': 1,
          'say': 1,
          'gave': 1,
          '3': 1,
          '12': 1,
          'stars': 1,
          'worked': 1,
          'consistently': 1,
          'lighthearted': 1,
          'bounces': 1,
          'place': 1,
          'stylistically': 1,
          'job': 1,
          'delivering': 1,
          'asking': 1,
          'questions': 1,
          'hinted': 1,
          'installment': 1,
          'nim': 1,
          'sure': 1,
          'leave': 1,
          'theater': 1,
          'convinced': 1,
          'thing': 1,
          'however': 1,
          'much': 1,
          'might': 1,
          'argue': 1,
          'necessarily': 1,
          'suck': 1,
          'npos': 1}),
 Counter({'full': 5,
          'monty': 5,
          'movie': 3,
          'show': 3,
          'nthe': 3,
          'great': 3,
          'fun': 2,
          'nits': 2,
          'oscar': 2,
          'nominations': 2,
          'million': 2,
          'film': 2,
          'may': 2,
          'year': 2,
          'put': 2,
          'nas': 2,
          'worried': 2,
          'one': 2,
          'best': 2,
          'picture': 2,
          'trainspotting': 2,
          'whole': 1,
          'lot': 1,
          'wacky': 1,
          'witty': 1,
          'original': 1,
          'written': 1,
          'directed': 1,
          'relatively': 1,
          'unknowns': 1,
          'simon': 1,
          'beaufoy': 1,
          'peter': 1,
          'cattaneo': 1,
          'turned': 1,
          'nhow': 1,
          'budget': 1,
          '10': 1,
          'gross': 1,
          '175': 1,
          'worldwide': 1,
          'rumored': 1,
          'second': 1,
          'profitable': 1,
          'nand': 1,
          'think': 1,
          'male': 1,
          'exotic': 1,
          'dancers': 1,
          'sinking': 1,
          'ships': 1,
          'nsix': 1,
          'steel': 1,
          'workers': 1,
          'recently': 1,
          'laid': 1,
          'looking': 1,
          'jobs': 1,
          'ninspired': 1,
          'success': 1,
          'chippendales': 1,
          'production': 1,
          'gaz': 1,
          'robert': 1,
          'carlyle': 1,
          'decides': 1,
          'strip': 1,
          'make': 1,
          'money': 1,
          'quickly': 1,
          'six': 1,
          'team': 1,
          'lives': 1,
          'run': 1,
          'problems': 1,
          'nfor': 1,
          'instance': 1,
          'dave': 1,
          'mark': 1,
          'addy': 1,
          'weight': 1,
          'horse': 1,
          'paul': 1,
          'barber': 1,
          'thinks': 1,
          'inadequate': 1,
          'gerald': 1,
          'tom': 1,
          'wilkinson': 1,
          'reputation': 1,
          'timing': 1,
          'nso': 1,
          'night': 1,
          'comes': 1,
          'men': 1,
          'able': 1,
          'said': 1,
          'really': 1,
          'artistically': 1,
          'good': 1,
          'writing': 1,
          'direction': 1,
          'acting': 1,
          'appealing': 1,
          'performances': 1,
          'human': 1,
          'quality': 1,
          'relate': 1,
          'least': 1,
          'characters': 1,
          'received': 1,
          'four': 1,
          'including': 1,
          'nwhich': 1,
          'left': 1,
          'wondering': 1,
          'thing': 1,
          'didnt': 1,
          'get': 1,
          'nomination': 1,
          'last': 1,
          'nwhile': 1,
          'lighthearted': 1,
          'comedy': 1,
          'doesnt': 1,
          'carry': 1,
          'social': 1,
          'impact': 1,
          'brilliant': 1,
          'nstill': 1,
          'must': 1,
          'see': 1,
          'npos': 1}),
 Counter({'film': 15,
          'gattaca': 12,
          'nthe': 9,
          'one': 7,
          'science': 6,
          'fiction': 6,
          'films': 6,
          'genetic': 6,
          'good': 5,
          'story': 5,
          'well': 5,
          'character': 5,
          'gives': 5,
          'nand': 4,
          'seen': 4,
          'even': 4,
          'vincent': 4,
          'parents': 4,
          'thurman': 4,
          'best': 4,
          'aliens': 3,
          'engineering': 3,
          'due': 3,
          'however': 3,
          'audience': 3,
          'ngattaca': 3,
          'way': 3,
          'jerome': 3,
          'morrow': 3,
          'nhowever': 3,
          'result': 3,
          'flaws': 3,
          'valid': 3,
          'get': 3,
          'past': 3,
          'intelligent': 3,
          'flat': 3,
          'like': 3,
          'performance': 3,
          'nice': 3,
          'general': 2,
          'audiences': 2,
          'thrills': 2,
          'alien': 2,
          'characters': 2,
          'etc': 2,
          'contact': 2,
          'hollywood': 2,
          'never': 2,
          'look': 2,
          '2001': 2,
          'space': 2,
          'made': 2,
          'race': 2,
          'technology': 2,
          'comes': 2,
          'nmost': 2,
          'movie': 2,
          'niccol': 2,
          'nunfortunately': 2,
          'may': 2,
          'asking': 2,
          'people': 2,
          'realize': 2,
          'ndespite': 2,
          'tell': 2,
          'nniccols': 2,
          'day': 2,
          'produced': 2,
          'realistic': 2,
          'begins': 2,
          'done': 2,
          'child': 2,
          'birth': 2,
          'hawke': 2,
          'program': 2,
          'directors': 2,
          'freeman': 2,
          'nvincent': 2,
          'world': 2,
          'love': 2,
          'several': 2,
          'heart': 2,
          'poor': 2,
          'nas': 2,
          'bring': 2,
          'dean': 2,
          'dream': 2,
          'around': 2,
          'society': 2,
          'vincents': 2,
          'law': 2,
          'gattacas': 2,
          'provide': 2,
          'dreams': 2,
          'left': 2,
          'scene': 2,
          'uma': 2,
          'two': 2,
          'thing': 2,
          'scenes': 2,
          'sets': 2,
          'futuristic': 2,
          'far': 2,
          'brings': 2,
          'plot': 2,
          'credibility': 2,
          'nif': 2,
          'rid': 2,
          'lot': 2,
          'job': 2,
          'behind': 2,
          'giving': 2,
          'slightly': 2,
          'provides': 2,
          'also': 2,
          'berkeley': 2,
          'turned': 2,
          'much': 2,
          'release': 1,
          'began': 1,
          'wonder': 1,
          'deal': 1,
          'destructive': 1,
          'nhollywood': 1,
          'given': 1,
          'plenty': 1,
          'usually': 1,
          'lacking': 1,
          'acting': 1,
          'exception': 1,
          'reason': 1,
          'taken': 1,
          'earth': 1,
          'closest': 1,
          'anyway': 1,
          'odyssey': 1,
          'mankind': 1,
          'dwarfed': 1,
          'created': 1,
          'nnow': 1,
          'another': 1,
          'reigning': 1,
          'supreme': 1,
          'except': 1,
          'planet': 1,
          'difference': 1,
          'simple': 1,
          'frightening': 1,
          'concepts': 1,
          'based': 1,
          'recent': 1,
          'discoveries': 1,
          'nusing': 1,
          'premise': 1,
          'writerdirector': 1,
          'andrew': 1,
          'creates': 1,
          'genuine': 1,
          'suspense': 1,
          'lack': 1,
          'advertising': 1,
          'fear': 1,
          'fair': 1,
          'horribly': 1,
          'box': 1,
          'office': 1,
          'nsince': 1,
          'seeing': 1,
          'nlately': 1,
          'heard': 1,
          'dont': 1,
          'fact': 1,
          'surely': 1,
          'hope': 1,
          'members': 1,
          'friends': 1,
          'deserves': 1,
          'independence': 1,
          'smarter': 1,
          'better': 1,
          '21st': 1,
          'century': 1,
          'nprocreating': 1,
          'petri': 1,
          'dish': 1,
          'normal': 1,
          'nnatural': 1,
          'considered': 1,
          'oldfashioned': 1,
          'nwe': 1,
          'introduced': 1,
          'ethan': 1,
          'employee': 1,
          'none': 1,
          'murdered': 1,
          'main': 1,
          'suspect': 1,
          'problem': 1,
          'born': 1,
          'natural': 1,
          'decided': 1,
          'bringing': 1,
          'first': 1,
          'tests': 1,
          'doctors': 1,
          '99': 1,
          'chance': 1,
          'weak': 1,
          'eye': 1,
          'sight': 1,
          'short': 1,
          'life': 1,
          'span': 1,
          'decide': 1,
          'next': 1,
          'baby': 1,
          'via': 1,
          'genetics': 1,
          'nanton': 1,
          'loren': 1,
          'without': 1,
          'competition': 1,
          'brothers': 1,
          'spawns': 1,
          'fly': 1,
          'soloflight': 1,
          'titan': 1,
          '14th': 1,
          'moon': 1,
          'saturn': 1,
          'condition': 1,
          'forces': 1,
          'menial': 1,
          'labor': 1,
          'company': 1,
          'nlabeled': 1,
          'invalid': 1,
          'seems': 1,
          'impossible': 1,
          'meets': 1,
          'blackmarket': 1,
          'dna': 1,
          'specialist': 1,
          'german': 1,
          'tony': 1,
          'shalhoub': 1,
          'ngerman': 1,
          'introduces': 1,
          'paralized': 1,
          'waste': 1,
          'automobile': 1,
          'accident': 1,
          'njerome': 1,
          'jude': 1,
          'agrees': 1,
          'give': 1,
          'proper': 1,
          'identification': 1,
          'tools': 1,
          'urine': 1,
          'blood': 1,
          'skin': 1,
          'hair': 1,
          'samples': 1,
          'need': 1,
          'tight': 1,
          'security': 1,
          'nin': 1,
          'exchange': 1,
          'rent': 1,
          'money': 1,
          'friendship': 1,
          'nafter': 1,
          'murder': 1,
          'put': 1,
          'risk': 1,
          'eyelashes': 1,
          'crime': 1,
          'nirene': 1,
          'cassini': 1,
          'genetically': 1,
          'flawed': 1,
          'working': 1,
          'fall': 1,
          'vincentjerome': 1,
          'long': 1,
          'time': 1,
          'nonly': 1,
          'come': 1,
          'years': 1,
          'arrival': 1,
          'rank': 1,
          'among': 1,
          'whenever': 1,
          'special': 1,
          'effectsladen': 1,
          'normally': 1,
          'gets': 1,
          'buried': 1,
          'second': 1,
          'production': 1,
          'design': 1,
          'jan': 1,
          'roelfs': 1,
          'orange': 1,
          'glow': 1,
          'impressive': 1,
          'deserve': 1,
          'credit': 1,
          'creating': 1,
          'sense': 1,
          'alienate': 1,
          'viewers': 1,
          'designs': 1,
          'buildings': 1,
          'arent': 1,
          'future': 1,
          'nthis': 1,
          'becomes': 1,
          'possible': 1,
          'every': 1,
          'passing': 1,
          'average': 1,
          'scifithriller': 1,
          'nat': 1,
          'develops': 1,
          'theme': 1,
          'overpowering': 1,
          'always': 1,
          'present': 1,
          'nperhaps': 1,
          'warning': 1,
          'changes': 1,
          'tampering': 1,
          'could': 1,
          'nwould': 1,
          'become': 1,
          'bunch': 1,
          'soulless': 1,
          'zombies': 1,
          'nmaybe': 1,
          'human': 1,
          'nature': 1,
          'mankinds': 1,
          'script': 1,
          'handles': 1,
          'questions': 1,
          'extremely': 1,
          'incredibly': 1,
          'smart': 1,
          'thriller': 1,
          'set': 1,
          'dramatic': 1,
          'vice': 1,
          'versa': 1,
          'power': 1,
          'actors': 1,
          'nwhile': 1,
          'sound': 1,
          'niccols': 1,
          'part': 1,
          'actually': 1,
          'enhances': 1,
          'meaning': 1,
          'nethan': 1,
          'developed': 1,
          'handsome': 1,
          'adult': 1,
          'actor': 1,
          'lifetime': 1,
          'nhis': 1,
          'curiosity': 1,
          'motivation': 1,
          'pushes': 1,
          'discouraging': 1,
          'remarks': 1,
          'peers': 1,
          'numa': 1,
          'nher': 1,
          'underdeveloped': 1,
          'isnt': 1,
          'depth': 1,
          'njude': 1,
          'complex': 1,
          'disturbingly': 1,
          'nhe': 1,
          'touches': 1,
          'final': 1,
          'touching': 1,
          'heartwrenching': 1,
          'nloren': 1,
          'welldeveloped': 1,
          'ndean': 1,
          'responsible': 1,
          'suspenseful': 1,
          'nalan': 1,
          'arkin': 1,
          'portrays': 1,
          'detectives': 1,
          'little': 1,
          'less': 1,
          'excitement': 1,
          'psychiatrist': 1,
          'grosse': 1,
          'pointe': 1,
          'blank': 1,
          'nstill': 1,
          'ngore': 1,
          'vidal': 1,
          'xander': 1,
          'supporting': 1,
          'roles': 1,
          'heartfelt': 1,
          'discussion': 1,
          'towards': 1,
          'end': 1,
          'rated': 1,
          'pg13': 1,
          'brief': 1,
          'violent': 1,
          'images': 1,
          'language': 1,
          'sexuality': 1,
          'nudity': 1,
          'somber': 1,
          'desolate': 1,
          'mood': 1,
          'entire': 1,
          'wasnt': 1,
          'exactly': 1,
          'prepared': 1,
          'ending': 1,
          'feeling': 1,
          'empty': 1,
          'nit': 1,
          'realized': 1,
          'everything': 1,
          'typical': 1,
          'would': 1,
          'ended': 1,
          'differently': 1,
          'mindless': 1,
          'doesnt': 1,
          'talk': 1,
          'especially': 1,
          'ironic': 1,
          'title': 1,
          'consists': 1,
          'four': 1,
          'letters': 1,
          'make': 1,
          'coding': 1,
          'g': 1,
          'c': 1,
          'ninstead': 1,
          'needed': 1,
          'entertainment': 1,
          'us': 1,
          'fanatics': 1,
          'want': 1,
          'morals': 1,
          'nwhatever': 1,
          'happened': 1,
          'lesson': 1,
          'entertaining': 1,
          'nhopefully': 1,
          'writers': 1,
          'learn': 1,
          'hopefully': 1,
          'np': 1,
          'personal': 1,
          'note': 1,
          'p': 1,
          'j': 1,
          'gladnick': 1,
          'dare': 1,
          'call': 1,
          'worst': 1,
          'year': 1,
          'ni': 1,
          'cant': 1,
          'begin': 1,
          'image': 1,
          'nthat': 1,
          'frightens': 1,
          'beyond': 1,
          'anything': 1,
          'npos': 1}),
 Counter({'truman': 8,
          'nthe': 5,
          'would': 4,
          'carrey': 4,
          'best': 3,
          'nand': 3,
          'nit': 3,
          'years': 3,
          'character': 3,
          'camera': 3,
          'role': 3,
          'trumans': 3,
          'little': 3,
          'vehicle': 2,
          'jim': 2,
          'niccol': 2,
          'script': 2,
          'ten': 2,
          'existence': 2,
          'audience': 2,
          'weir': 2,
          'task': 2,
          'create': 2,
          'universe': 2,
          'stroke': 2,
          'goofy': 2,
          'academy': 2,
          'well': 2,
          'one': 2,
          'carreys': 2,
          'pivotal': 2,
          'christof': 2,
          'work': 2,
          'could': 2,
          'gigantic': 2,
          'dome': 2,
          'reason': 2,
          'effortlessly': 2,
          'must': 1,
          'sort': 1,
          'warped': 1,
          'critical': 1,
          'nightmare': 1,
          'movie': 1,
          'year': 1,
          'summer': 1,
          'n_the': 1,
          'show_': 1,
          'perplexing': 1,
          'crazed': 1,
          'paranoid': 1,
          'ribtickling': 1,
          'morality': 1,
          'play': 1,
          'ive': 1,
          'seen': 1,
          'since': 1,
          'idontknowwhen': 1,
          'ndont': 1,
          'credit': 1,
          'starts': 1,
          'andrew': 1,
          'gattaca': 1,
          'created': 1,
          'ago': 1,
          'story': 1,
          'replete': 1,
          'sublte': 1,
          'religious': 1,
          'philisophical': 1,
          'undertones': 1,
          'man': 1,
          'discovers': 1,
          'every': 1,
          'day': 1,
          'televised': 1,
          'mass': 1,
          'n': 1,
          'ironically': 1,
          'within': 1,
          'past': 1,
          'realitybased': 1,
          'television': 1,
          'become': 1,
          'predominant': 1,
          'fixture': 1,
          'culture': 1,
          'nwho': 1,
          'knew': 1,
          'noneupping': 1,
          'unlikely': 1,
          'candidatedirector': 1,
          'peter': 1,
          'took': 1,
          'helm': 1,
          'things': 1,
          'fell': 1,
          'place': 1,
          'nweir': 1,
          'nearly': 1,
          'impossible': 1,
          'unimitible': 1,
          'tone': 1,
          'deftly': 1,
          'mixing': 1,
          'capra': 1,
          'kafka': 1,
          'throwing': 1,
          'george': 1,
          'bailey': 1,
          'inhabited': 1,
          'rod': 1,
          'serling': 1,
          'weirs': 1,
          'first': 1,
          'genius': 1,
          'seahaven': 1,
          'suburban': 1,
          'paradiseprison': 1,
          'make': 1,
          'spielberg': 1,
          'cower': 1,
          'shame': 1,
          'nfor': 1,
          'example': 1,
          'bystanderextras': 1,
          'walk': 1,
          'around': 1,
          'block': 1,
          'incessantly': 1,
          'flowers': 1,
          'along': 1,
          'latest': 1,
          'issue': 1,
          '_dog': 1,
          'fancy_': 1,
          'nicest': 1,
          'touch': 1,
          'plethora': 1,
          'subtle': 1,
          'hints': 1,
          '_not_': 1,
          'leave': 1,
          'island': 1,
          'ncredit': 1,
          'second': 1,
          'casting': 1,
          'ncarrey': 1,
          'seems': 1,
          'type': 1,
          'actor': 1,
          'always': 1,
          'turn': 1,
          'act': 1,
          'whenever': 1,
          'near': 1,
          'nnot': 1,
          'nhis': 1,
          'performance': 1,
          'subverted': 1,
          'sometimes': 1,
          'wonder': 1,
          'ever': 1,
          'aware': 1,
          'although': 1,
          'deserve': 1,
          'award': 1,
          'nomination': 1,
          'rarely': 1,
          'honors': 1,
          'comedians': 1,
          'excepting': 1,
          'robin': 1,
          'williams': 1,
          'stretches': 1,
          'enough': 1,
          'alter': 1,
          'hypersilly': 1,
          'image': 1,
          'considerably': 1,
          'nplaying': 1,
          'cameras': 1,
          'constantly': 1,
          'invading': 1,
          'intimate': 1,
          'moments': 1,
          'turns': 1,
          'quite': 1,
          'life': 1,
          'nno': 1,
          'pun': 1,
          'intended': 1,
          'nbetter': 1,
          'smaller': 1,
          'ed': 1,
          'harris': 1,
          'mixes': 1,
          'right': 1,
          'amount': 1,
          'apollo': 1,
          '13': 1,
          'problem': 1,
          'people': 1,
          'dustin': 1,
          'hoffmans': 1,
          'megaglomaniac': 1,
          'producer': 1,
          '_wag': 1,
          'dog_': 1,
          'slightly': 1,
          'svengalian': 1,
          'clear': 1,
          'torn': 1,
          'nielson': 1,
          'ratings': 1,
          'nyes': 1,
          'misguided': 1,
          'way': 1,
          'loves': 1,
          'father': 1,
          'son': 1,
          'provided': 1,
          'provide': 1,
          'nhe': 1,
          'thinks': 1,
          'nrounding': 1,
          'cast': 1,
          'natascha': 1,
          'mcelhone': 1,
          'mrs': 1,
          'ndalloway': 1,
          'true': 1,
          'forbidden': 1,
          'love': 1,
          'sylvia': 1,
          'effective': 1,
          'another': 1,
          'small': 1,
          'nlaura': 1,
          'linney': 1,
          'congo': 1,
          'noah': 1,
          'emmerich': 1,
          'copland': 1,
          'unfortunate': 1,
          'playing': 1,
          'wife': 1,
          'friend': 1,
          'sitcomish': 1,
          'dialogue': 1,
          'allow': 1,
          'room': 1,
          'authentic': 1,
          'development': 1,
          'exception': 1,
          'beginning': 1,
          'speak': 1,
          'wholeheartedly': 1,
          'believing': 1,
          'participation': 1,
          'truly': 1,
          'good': 1,
          'society': 1,
          'general': 1,
          'nthere': 1,
          'problems': 1,
          'nare': 1,
          'assume': 1,
          'toddler': 1,
          'recollection': 1,
          'hearing': 1,
          'construction': 1,
          'formative': 1,
          'nwas': 1,
          'scene': 1,
          'rained': 1,
          'solely': 1,
          'even': 1,
          'though': 1,
          'never': 1,
          'nhow': 1,
          'hire': 1,
          'hundreds': 1,
          'extras': 1,
          'none': 1,
          'drive': 1,
          'boat': 1,
          'yet': 1,
          'fearful': 1,
          'water': 1,
          'helming': 1,
          'sailboat': 1,
          'couldnt': 1,
          'turned': 1,
          'wind': 1,
          'strand': 1,
          'sea': 1,
          'nthese': 1,
          'contrivances': 1,
          'however': 1,
          'hold': 1,
          'candle': 1,
          'overall': 1,
          'effect': 1,
          'gets': 1,
          'feeling': 1,
          'watching': 1,
          'actual': 1,
          'show': 1,
          'drawn': 1,
          'mundane': 1,
          'final': 1,
          'result': 1,
          'combines': 1,
          'emotional': 1,
          'happy': 1,
          'ending': 1,
          'mainstream': 1,
          'picture': 1,
          'gnawing': 1,
          'discomfort': 1,
          'hits': 1,
          'square': 1,
          'gut': 1,
          'nupon': 1,
          'leaving': 1,
          'theater': 1,
          'looking': 1,
          'sky': 1,
          'wondering': 1,
          'nothing': 1,
          'njust': 1,
          'checking': 1,
          'npos': 1}),
 Counter({'shark': 5,
          'jaws': 5,
          'film': 3,
          'within': 3,
          'water': 3,
          'films': 2,
          'nthe': 2,
          'genre': 2,
          'like': 2,
          'cgi': 2,
          'blue': 2,
          'sea': 2,
          'big': 2,
          'research': 2,
          'extraction': 2,
          'hormone': 2,
          'substance': 2,
          'get': 2,
          'time': 2,
          'days': 2,
          'action': 2,
          'role': 2,
          'cook': 2,
          'offer': 2,
          'thrills': 2,
          'lets': 1,
          'first': 1,
          'look': 1,
          'history': 1,
          'nthere': 1,
          'unforgettable': 1,
          'exciting': 1,
          '2': 1,
          'rather': 1,
          'flaky': 1,
          '3d': 1,
          'sometime': 1,
          'late': 1,
          '90s': 1,
          'another': 1,
          'cant': 1,
          'seem': 1,
          'recall': 1,
          'son': 1,
          'returning': 1,
          'wreak': 1,
          'revenge': 1,
          'something': 1,
          'nnow': 1,
          'magic': 1,
          'one': 1,
          'simply': 1,
          'enough': 1,
          'deep': 1,
          '3': 1,
          'mean': 1,
          'really': 1,
          'smart': 1,
          'ones': 1,
          'nrussell': 1,
          'frankiln': 1,
          'jackson': 1,
          'visits': 1,
          'aquatica': 1,
          'seabound': 1,
          'center': 1,
          'conducted': 1,
          'found': 1,
          'uniquely': 1,
          'brain': 1,
          'cure': 1,
          'reverse': 1,
          'effects': 1,
          'alzheimers': 1,
          'disease': 1,
          'small': 1,
          'quantity': 1,
          'lead': 1,
          'researcher': 1,
          'dr': 1,
          'susan': 1,
          'macalaester': 1,
          'genetically': 1,
          'alters': 1,
          'dna': 1,
          'grows': 1,
          'twice': 1,
          'size': 1,
          'brains': 1,
          'humans': 1,
          'naturally': 1,
          'producing': 1,
          'much': 1,
          'treasured': 1,
          'hormones': 1,
          'nas': 1,
          'sure': 1,
          'sun': 1,
          'sets': 1,
          'west': 1,
          'breaks': 1,
          'lose': 1,
          'wreaks': 1,
          'havoc': 1,
          'facility': 1,
          'procedure': 1,
          'nwith': 1,
          'flexibility': 1,
          'offered': 1,
          'sharks': 1,
          'fulllength': 1,
          'screen': 1,
          'predecessors': 1,
          'remotecontrolled': 1,
          'rubber': 1,
          'suit': 1,
          'ngone': 1,
          'people': 1,
          'getting': 1,
          'pulled': 1,
          'turning': 1,
          'red': 1,
          'right': 1,
          'nthis': 1,
          'see': 1,
          'entire': 1,
          'gobbling': 1,
          'floating': 1,
          'limbs': 1,
          'nsoso': 1,
          'acting': 1,
          'expected': 1,
          'average': 1,
          'njackson': 1,
          'fresh': 1,
          'jedi': 1,
          'master': 1,
          'phantom': 1,
          'menace': 1,
          'takes': 1,
          'darkside': 1,
          'force': 1,
          'different': 1,
          'kind': 1,
          'fits': 1,
          'well': 1,
          'wisecracking': 1,
          'lines': 1,
          'nll': 1,
          'cool': 1,
          'js': 1,
          'preacher': 1,
          'steven': 1,
          'seagals': 1,
          'could': 1,
          'dream': 1,
          'achieve': 1,
          'two': 1,
          'siege': 1,
          'ndeep': 1,
          'psychological': 1,
          'nit': 1,
          'however': 1,
          'prove': 1,
          'refreshing': 1,
          'followup': 1,
          'full': 1,
          'visual': 1,
          'suspense': 1,
          'believe': 1,
          'humour': 1,
          'nits': 1,
          'jurassic': 1,
          'park': 1,
          'nnothing': 1,
          'stressful': 1,
          'pure': 1,
          'entertainment': 1,
          'nrenny': 1,
          'harlin': 1,
          'forgiven': 1,
          'making': 1,
          'cutthroat': 1,
          'island': 1,
          'npos': 1}),
 Counter({'film': 5,
          'nhe': 5,
          'world': 4,
          'evil': 3,
          'kingpin': 3,
          'seen': 3,
          'creates': 3,
          'like': 3,
          'best': 2,
          'good': 2,
          'school': 2,
          'recent': 2,
          'makes': 2,
          'lair': 2,
          'sewer': 2,
          'nit': 2,
          'images': 2,
          'nthis': 2,
          'violence': 2,
          'hear': 2,
          'see': 2,
          'great': 2,
          'deal': 2,
          'scale': 2,
          '4': 2,
          'british': 1,
          'gangster': 1,
          'since': 1,
          'long': 1,
          'friday': 1,
          'njon': 1,
          'bennet': 1,
          'played': 1,
          'andrew': 1,
          'howard': 1,
          'extremely': 1,
          'assassin': 1,
          'nas': 1,
          'probably': 1,
          'man': 1,
          'worry': 1,
          'become': 1,
          'unquestioning': 1,
          'weapon': 1,
          'employ': 1,
          'david': 1,
          'calder': 1,
          'far': 1,
          'nbut': 1,
          'even': 1,
          'assassins': 1,
          'innocent': 1,
          'pasts': 1,
          'runs': 1,
          'old': 1,
          'days': 1,
          'married': 1,
          'mutual': 1,
          'girl': 1,
          'friend': 1,
          'ncomplicating': 1,
          'matters': 1,
          'live': 1,
          'near': 1,
          'job': 1,
          'young': 1,
          'daughter': 1,
          'may': 1,
          'crime': 1,
          'na': 1,
          'big': 1,
          'piece': 1,
          'work': 1,
          'depiction': 1,
          'ncalder': 1,
          'familiar': 1,
          'actor': 1,
          'britain': 1,
          'though': 1,
          'frequently': 1,
          'us': 1,
          'enough': 1,
          'nhere': 1,
          'one': 1,
          'screen': 1,
          'villains': 1,
          'years': 1,
          'seductive': 1,
          'repellent': 1,
          'beautiful': 1,
          'venomous': 1,
          'snake': 1,
          'nhis': 1,
          'underground': 1,
          'apparently': 1,
          'lives': 1,
          'king': 1,
          'rats': 1,
          'pulls': 1,
          'strings': 1,
          'control': 1,
          'bennets': 1,
          'life': 1,
          'npaul': 1,
          'sarossy': 1,
          'directs': 1,
          'spent': 1,
          'career': 1,
          'cinematographer': 1,
          'kingpins': 1,
          'molded': 1,
          'class': 1,
          'style': 1,
          'darkness': 1,
          'nby': 1,
          'using': 1,
          'semidarkness': 1,
          'letting': 1,
          'colors': 1,
          'deep': 1,
          'blue': 1,
          'black': 1,
          'dominate': 1,
          'every': 1,
          'scene': 1,
          'visually': 1,
          'ominous': 1,
          'anything': 1,
          'nether': 1,
          'cold': 1,
          'unfriendly': 1,
          'nsorossy': 1,
          'much': 1,
          'physical': 1,
          'occurring': 1,
          'reach': 1,
          'nwe': 1,
          'little': 1,
          'imagine': 1,
          'nthe': 1,
          'screenplay': 1,
          'peter': 1,
          'waddington': 1,
          'based': 1,
          'novel': 1,
          'neil': 1,
          'cross': 1,
          'sarossys': 1,
          'way': 1,
          'indelible': 1,
          'ni': 1,
          'rate': 1,
          '8': 1,
          '0': 1,
          '10': 1,
          'low': 1,
          '3': 1,
          'n': 1,
          'hope': 1,
          'use': 1,
          'tagline': 1,
          'dont': 1,
          'mess': 1,
          'mr': 1,
          'inbetween': 1,
          'npos': 1}),
 Counter({'casablanca': 5,
          'film': 4,
          'computer': 4,
          'body': 4,
          'nthe': 4,
          'memory': 3,
          'fingal': 3,
          'nas': 3,
          'system': 3,
          'fingals': 3,
          'peter': 3,
          'lorre': 3,
          'characters': 3,
          'seen': 3,
          'quite': 3,
          'put': 2,
          'overdrawn': 2,
          'bank': 2,
          'production': 2,
          'special': 2,
          'effects': 2,
          'science': 2,
          'fiction': 2,
          'time': 2,
          'julia': 2,
          'data': 2,
          'processing': 2,
          'novicorp': 2,
          'imagination': 2,
          'hacking': 2,
          'happens': 2,
          'virtual': 2,
          'reality': 2,
          'fantasy': 2,
          'world': 2,
          'way': 2,
          'hack': 2,
          'bogart': 2,
          'appearances': 2,
          'best': 2,
          'aspects': 2,
          'fat': 2,
          'man': 2,
          'films': 2,
          'futuristic': 2,
          'today': 2,
          'may': 2,
          'keeping': 2,
          'genre': 2,
          'produced': 1,
          'robert': 1,
          'lantos': 1,
          'stephen': 1,
          'j': 1,
          'roth': 1,
          'ndirected': 1,
          'douglas': 1,
          'williams': 1,
          'nmpaa': 1,
          'rated': 1,
          'though': 1,
          'language': 1,
          'violence': 1,
          'medicalgrossouts': 1,
          'sexual': 1,
          'content': 1,
          'id': 1,
          'pg': 1,
          'nthough': 1,
          'made': 1,
          'canada': 1,
          'traces': 1,
          'roots': 1,
          'bbc': 1,
          'school': 1,
          'nusing': 1,
          'part': 1,
          'cheap': 1,
          'video': 1,
          'chyron': 1,
          'text': 1,
          'wildlife': 1,
          'documentary': 1,
          'footage': 1,
          'sets': 1,
          'sometimes': 1,
          'obviously': 1,
          'faked': 1,
          'nonetheless': 1,
          'manages': 1,
          'tell': 1,
          'good': 1,
          'enough': 1,
          'story': 1,
          'youre': 1,
          'twenty': 1,
          'minutes': 1,
          'hooked': 1,
          'nraul': 1,
          'plays': 1,
          'aram': 1,
          'drone': 1,
          'worker': 1,
          'whose': 1,
          'active': 1,
          'predilection': 1,
          'gets': 1,
          'trouble': 1,
          'authority': 1,
          'ncaught': 1,
          'watching': 1,
          'desk': 1,
          'monitor': 1,
          'sentenced': 1,
          'doppling': 1,
          'rehabilitationhe': 1,
          'spend': 1,
          'fortyeight': 1,
          'hours': 1,
          'baboon': 1,
          'n': 1,
          'exactly': 1,
          'supposed': 1,
          'rehabilitate': 1,
          'anybodys': 1,
          'guess': 1,
          'thanks': 1,
          'visiting': 1,
          'schoolboys': 1,
          'prank': 1,
          'temporarily': 1,
          'misplaced': 1,
          'mind': 1,
          'shunted': 1,
          'central': 1,
          'keep': 1,
          'alive': 1,
          'find': 1,
          'ticks': 1,
          'away': 1,
          'cube': 1,
          'selfdestructs': 1,
          'frantic': 1,
          'search': 1,
          'nfingal': 1,
          'first': 1,
          'creates': 1,
          'finds': 1,
          'theres': 1,
          'better': 1,
          'inside': 1,
          'nduring': 1,
          'chaos': 1,
          'technician': 1,
          'apollonia': 1,
          'james': 1,
          'linda': 1,
          'griffiths': 1,
          'maintains': 1,
          'contact': 1,
          'datalink': 1,
          'manifesting': 1,
          'several': 1,
          'different': 1,
          'times': 1,
          'offer': 1,
          'advice': 1,
          'warnings': 1,
          'nover': 1,
          'course': 1,
          'interactions': 1,
          'interest': 1,
          'parts': 1,
          'grows': 1,
          'budding': 1,
          'romance': 1,
          'ngiven': 1,
          'favorite': 1,
          'basis': 1,
          'great': 1,
          'deal': 1,
          'movie': 1,
          'homage': 1,
          'nin': 1,
          'fact': 1,
          'humphrey': 1,
          'make': 1,
          'played': 1,
          'dual': 1,
          'role': 1,
          'louis': 1,
          'negin': 1,
          'respectively': 1,
          'bar': 1,
          'called': 1,
          'place': 1,
          'njulias': 1,
          'portrayal': 1,
          'passable': 1,
          'avoids': 1,
          'becoming': 1,
          'schweethaat': 1,
          'spouting': 1,
          'parody': 1,
          'cartoons': 1,
          'nnegins': 1,
          'credible': 1,
          'easily': 1,
          'ive': 1,
          'ever': 1,
          'wasnt': 1,
          'real': 1,
          'thing': 1,
          'two': 1,
          'created': 1,
          'serve': 1,
          'personality': 1,
          'driving': 1,
          'quest': 1,
          'nthose': 1,
          'arent': 1,
          'sydney': 1,
          'greenstreet': 1,
          'character': 1,
          'also': 1,
          'around': 1,
          'alternate': 1,
          'aspect': 1,
          'main': 1,
          'villain': 1,
          'chairman': 1,
          'donald': 1,
          'c': 1,
          'moore': 1,
          'nwhile': 1,
          'lost': 1,
          'tries': 1,
          'stop': 1,
          'nless': 1,
          'salutory': 1,
          'results': 1,
          'nits': 1,
          'interesting': 1,
          'note': 1,
          'slang': 1,
          'words': 1,
          'thrown': 1,
          'left': 1,
          'right': 1,
          'goldenage': 1,
          'tradition': 1,
          'nwords': 1,
          'like': 1,
          'dopple': 1,
          'psychist': 1,
          'computech': 1,
          'cinema': 1,
          'reconst': 1,
          'apparently': 1,
          'common': 1,
          'use': 1,
          'nand': 1,
          'people': 1,
          'well': 1,
          'laugh': 1,
          'fourteen': 1,
          'years': 1,
          'pasts': 1,
          'idea': 1,
          'clerks': 1,
          'surprisingly': 1,
          'perfectly': 1,
          'think': 1,
          'cyberpunk': 1,
          'go': 1,
          'staple': 1,
          'definitely': 1,
          'recommended': 1,
          'viewing': 1,
          'primitive': 1,
          'placing': 1,
          'realm': 1,
          'lowtomediumbudget': 1,
          'television': 1,
          'music': 1,
          'completely': 1,
          'electronicsynthesized': 1,
          'fits': 1,
          'low': 1,
          'budget': 1,
          'isnt': 1,
          'really': 1,
          'nhowever': 1,
          'writing': 1,
          'makes': 1,
          'nthere': 1,
          'funny': 1,
          'moments': 1,
          'little': 1,
          'injokes': 1,
          'one': 1,
          'needs': 1,
          'appreciate': 1,
          'properly': 1,
          'nall': 1,
          'give': 1,
          'npos': 1}),
 Counter({'film': 8,
          'life': 6,
          'comedy': 5,
          'beautiful': 5,
          'movie': 4,
          'benigni': 4,
          'see': 3,
          'really': 3,
          'guido': 3,
          'first': 2,
          'headlines': 2,
          'statement': 2,
          'found': 2,
          'fact': 2,
          'greatest': 2,
          'critics': 2,
          'human': 2,
          'something': 2,
          'holocaust': 2,
          'get': 2,
          'camp': 2,
          'nbut': 2,
          'nthe': 2,
          'films': 2,
          'saying': 2,
          'remember': 1,
          'hearing': 1,
          'appeared': 1,
          'cannes': 1,
          'year': 1,
          'ago': 1,
          'picking': 1,
          'grand': 1,
          'jury': 1,
          'prize': 1,
          'festival': 1,
          'nholocaust': 1,
          'receives': 1,
          'standing': 1,
          'ovation': 1,
          'read': 1,
          'nintrigued': 1,
          'looked': 1,
          'information': 1,
          'sure': 1,
          'enough': 1,
          'atrocity': 1,
          'last': 1,
          'thousand': 1,
          'years': 1,
          'neven': 1,
          'though': 1,
          'extremely': 1,
          'wellreceived': 1,
          'public': 1,
          'alike': 1,
          'couldnt': 1,
          'help': 1,
          'disgusted': 1,
          'notion': 1,
          'tragedy': 1,
          'feel': 1,
          'celebrated': 1,
          'nonly': 1,
          'error': 1,
          'ways': 1,
          'nafter': 1,
          'finally': 1,
          'viewing': 1,
          'avoiding': 1,
          'time': 1,
          'became': 1,
          'clear': 1,
          'proclaimed': 1,
          'contrary': 1,
          'even': 1,
          'depict': 1,
          'graphic': 1,
          'events': 1,
          'took': 1,
          'place': 1,
          'nazi': 1,
          'deathcamps': 1,
          'nrather': 1,
          'focuses': 1,
          'relationship': 1,
          'father': 1,
          'son': 1,
          'trying': 1,
          'desperately': 1,
          'shield': 1,
          'horrors': 1,
          'situation': 1,
          'nroberto': 1,
          'also': 1,
          'wrote': 1,
          'directed': 1,
          'stars': 1,
          'orefice': 1,
          'chaplininspired': 1,
          'clown': 1,
          'round': 1,
          'jolly': 1,
          'guy': 1,
          'opens': 1,
          'vying': 1,
          'affections': 1,
          'attractive': 1,
          'school': 1,
          'teacher': 1,
          'nicoletta': 1,
          'braschi': 1,
          'real': 1,
          'spouse': 1,
          'nthrough': 1,
          'course': 1,
          'hour': 1,
          'striving': 1,
          'attention': 1,
          'princess': 1,
          'calls': 1,
          'nemploying': 1,
          'magic': 1,
          'laughter': 1,
          'italian': 1,
          'comedian': 1,
          'wins': 1,
          'heart': 1,
          'together': 1,
          'raise': 1,
          'young': 1,
          'boy': 1,
          'named': 1,
          'giosue': 1,
          'child': 1,
          'actor': 1,
          'giorgio': 1,
          'cantarini': 1,
          'nlife': 1,
          'treats': 1,
          'well': 1,
          'hitlers': 1,
          'minions': 1,
          'rise': 1,
          'power': 1,
          'family': 1,
          'whisked': 1,
          'away': 1,
          'german': 1,
          'becomes': 1,
          'convinced': 1,
          'must': 1,
          'upholds': 1,
          'sons': 1,
          'innocence': 1,
          'matter': 1,
          'sacrifice': 1,
          'ngranted': 1,
          'contains': 1,
          'uproariously': 1,
          'funny': 1,
          'moments': 1,
          'concentration': 1,
          'pull': 1,
          'hogans': 1,
          'heros': 1,
          'make': 1,
          'light': 1,
          'slaughtering': 1,
          'six': 1,
          'million': 1,
          'innocent': 1,
          'jews': 1,
          'nsomehow': 1,
          'achieves': 1,
          'hilarity': 1,
          'without': 1,
          'disrespecting': 1,
          'gravely': 1,
          'serious': 1,
          'subject': 1,
          'nso': 1,
          'weve': 1,
          'established': 1,
          'another': 1,
          'complete': 1,
          'misrepresentation': 1,
          'material': 1,
          'disturbs': 1,
          'despite': 1,
          'declarations': 1,
          'triumph': 1,
          'spirit': 1,
          'thing': 1,
          'eyes': 1,
          'anyway': 1,
          'nsome': 1,
          'called': 1,
          'story': 1,
          'affirmation': 1,
          'beauty': 1,
          'say': 1,
          'dark': 1,
          'bleak': 1,
          'mans': 1,
          'capability': 1,
          'denial': 1,
          'masquerading': 1,
          'endearing': 1,
          'ending': 1,
          'recognized': 1,
          'entirely': 1,
          'uplifting': 1,
          'moment': 1,
          'released': 1,
          'recently': 1,
          'truly': 1,
          'discerning': 1,
          'upsetting': 1,
          'nessentially': 1,
          'quite': 1,
          'possibly': 1,
          'hoax': 1,
          'history': 1,
          'nhowever': 1,
          'denying': 1,
          'movies': 1,
          'greatness': 1,
          'nbelieve': 1,
          'fantastic': 1,
          'nim': 1,
          'think': 1,
          'different': 1,
          'people': 1,
          'interpreting': 1,
          'perhaps': 1,
          'im': 1,
          'reading': 1,
          'nmaybe': 1,
          'brilliance': 1,
          'relies': 1,
          'idea': 1,
          'viewer': 1,
          'interpret': 1,
          'meaning': 1,
          'way': 1,
          'fit': 1,
          'nin': 1,
          'maybe': 1,
          'roberto': 1,
          'made': 1,
          'sole': 1,
          'argument': 1,
          'old': 1,
          'exactly': 1,
          'put': 1,
          'npos': 1}),
 Counter({'rocky': 11,
          'nthe': 6,
          'fight': 5,
          'movie': 3,
          'showing': 3,
          'clubber': 3,
          'nrockys': 3,
          'seems': 2,
          'wins': 2,
          'last': 2,
          'film': 2,
          'well': 2,
          'series': 2,
          'fighting': 2,
          'trainer': 2,
          'movies': 1,
          'seem': 1,
          'release': 1,
          'third': 1,
          'called': 1,
          'trilogy': 1,
          'nrocky': 1,
          'iii': 1,
          'kind': 1,
          'fit': 1,
          'category': 1,
          'manages': 1,
          'slightly': 1,
          'unique': 1,
          'formula': 1,
          'loses': 1,
          'fightrocky': 1,
          'trainsrocky': 1,
          'carried': 1,
          'letter': 1,
          'nalso': 1,
          'tradition': 1,
          'five': 1,
          'minutes': 1,
          'past': 1,
          'used': 1,
          'nthis': 1,
          'begins': 1,
          'clips': 1,
          'famous': 1,
          'sylvester': 1,
          'stallone': 1,
          'become': 1,
          'neven': 1,
          'brief': 1,
          'appearance': 1,
          'sesame': 1,
          'street': 1,
          'nthen': 1,
          'moves': 1,
          'fixed': 1,
          'thunderlips': 1,
          'hulk': 1,
          'hogan': 1,
          'na': 1,
          'mysterious': 1,
          'badass': 1,
          'known': 1,
          'lang': 1,
          'mr': 1,
          'trashtalks': 1,
          'stupid': 1,
          'decision': 1,
          'retire': 1,
          'boxing': 1,
          'pities': 1,
          'fool': 1,
          'coming': 1,
          'outright': 1,
          'burgess': 1,
          'meredith': 1,
          'tells': 1,
          'italian': 1,
          'stallion': 1,
          'doesnt': 1,
          'listen': 1,
          'nnaturally': 1,
          'gets': 1,
          'ass': 1,
          'kicked': 1,
          'nsomewhere': 1,
          'along': 1,
          'line': 1,
          'several': 1,
          'things': 1,
          'happen': 1,
          'longtime': 1,
          'dies': 1,
          'causing': 1,
          'train': 1,
          'former': 1,
          'opponent': 1,
          'apollo': 1,
          'creed': 1,
          'wife': 1,
          'complains': 1,
          'husband': 1,
          'final': 1,
          'ensues': 1,
          'nguess': 1,
          'winners': 1,
          'name': 1,
          'rhymes': 1,
          'smocky': 1,
          'entertaning': 1,
          'mainly': 1,
          'langs': 1,
          'top': 1,
          'performance': 1,
          'dramatic': 1,
          'aspect': 1,
          'toned': 1,
          'considerably': 1,
          'since': 1,
          'ii': 1,
          'action': 1,
          'strong': 1,
          'point': 1,
          'nwhich': 1,
          'good': 1,
          'like': 1,
          'scenes': 1,
          'match': 1,
          'quite': 1,
          'decent': 1,
          'actually': 1,
          'nif': 1,
          'liked': 1,
          'previous': 1,
          'films': 1,
          'rent': 1,
          'one': 1,
          'nits': 1,
          'worth': 1,
          'seeing': 1,
          'fan': 1,
          'nbut': 1,
          'cant': 1,
          'stand': 1,
          'shouting': 1,
          'adrianne': 1,
          'none': 1,
          'time': 1,
          'see': 1,
          'something': 1,
          'else': 1,
          'npos': 1}),
 Counter({'nello': 20,
          'film': 13,
          'flanders': 12,
          'dog': 10,
          'aloise': 8,
          'one': 8,
          'story': 6,
          'good': 6,
          'really': 6,
          'family': 6,
          'life': 5,
          'time': 5,
          'nthis': 5,
          'century': 4,
          'grandfather': 4,
          'also': 4,
          'beautiful': 4,
          'n': 4,
          'patrasche': 4,
          'enough': 4,
          'kids': 4,
          'nbut': 4,
          'heart': 4,
          'year': 4,
          'home': 4,
          'films': 4,
          'delightful': 4,
          'see': 4,
          'nthe': 4,
          'little': 3,
          'boy': 3,
          '19th': 3,
          'happiness': 3,
          'times': 3,
          'pay': 3,
          'ever': 3,
          'seen': 3,
          'movie': 3,
          'things': 3,
          'nellos': 3,
          'however': 3,
          'nhe': 3,
          'nin': 3,
          'addition': 3,
          'even': 3,
          'two': 3,
          'mentioned': 3,
          'day': 3,
          'artist': 3,
          'voight': 3,
          'save': 3,
          'around': 3,
          'nwill': 3,
          'heartwarming': 3,
          'nthere': 3,
          'right': 3,
          'touching': 3,
          'characters': 3,
          'makes': 3,
          'like': 3,
          'big': 3,
          'adorable': 2,
          'named': 2,
          'jehan': 2,
          'warden': 2,
          'cottage': 2,
          'landlord': 2,
          'dont': 2,
          'rather': 2,
          'drawing': 2,
          'great': 2,
          'nnot': 2,
          'make': 2,
          'happy': 2,
          'best': 2,
          'father': 2,
          'none': 2,
          'mysterious': 2,
          'yet': 2,
          'michel': 2,
          'jon': 2,
          'might': 2,
          'every': 2,
          'contest': 2,
          'painting': 2,
          'circus': 2,
          'scenes': 2,
          'gives': 2,
          'performers': 2,
          'naloises': 2,
          'kindly': 2,
          'miller': 2,
          'william': 2,
          'sweet': 2,
          'get': 2,
          'freezing': 2,
          'win': 2,
          'sure': 2,
          'older': 2,
          'ones': 2,
          'powerful': 2,
          'drama': 2,
          'nit': 2,
          'feel': 2,
          'whole': 2,
          'music': 2,
          'another': 2,
          'james': 2,
          'kissner': 2,
          'play': 2,
          'young': 2,
          'stars': 2,
          'amount': 2,
          'humor': 2,
          'character': 2,
          'charming': 2,
          'us': 2,
          'though': 2,
          'since': 2,
          'stuff': 2,
          'kind': 2,
          'better': 2,
          'reviews': 2,
          'critics': 2,
          'entertainment': 2,
          'bad': 2,
          'review': 1,
          'trials': 1,
          'tribulations': 1,
          'nliving': 1,
          'jack': 1,
          'poverty': 1,
          'finds': 1,
          'spite': 1,
          'difficult': 1,
          'renting': 1,
          'spare': 1,
          'oneroom': 1,
          'greedy': 1,
          'malevolent': 1,
          'owns': 1,
          'threatens': 1,
          'throw': 1,
          'house': 1,
          'rent': 1,
          'nnello': 1,
          'creative': 1,
          'talent': 1,
          'pictures': 1,
          'either': 1,
          'real': 1,
          'hero': 1,
          'peter': 1,
          'paul': 1,
          'rubens': 1,
          'flemish': 1,
          'painter': 1,
          '17th': 1,
          'names': 1,
          'heroic': 1,
          'rintintin': 1,
          'rescues': 1,
          'cruel': 1,
          'unkind': 1,
          'master': 1,
          'friend': 1,
          'future': 1,
          'sweetheart': 1,
          'lovely': 1,
          'wealthy': 1,
          'whose': 1,
          'strongly': 1,
          'disapproves': 1,
          'hanging': 1,
          'lowerclass': 1,
          'thinks': 1,
          'hes': 1,
          'would': 1,
          'hate': 1,
          'idea': 1,
          'marrying': 1,
          'poor': 1,
          'guy': 1,
          'married': 1,
          'later': 1,
          'encounters': 1,
          'kindhearted': 1,
          'la': 1,
          'grande': 1,
          'played': 1,
          'wonderfully': 1,
          'tells': 1,
          'keep': 1,
          'perhaps': 1,
          'land': 1,
          'career': 1,
          'nand': 1,
          'christmas': 1,
          'winner': 1,
          'getting': 1,
          'lot': 1,
          'money': 1,
          'neager': 1,
          'aging': 1,
          'dying': 1,
          'willingly': 1,
          'decides': 1,
          'become': 1,
          'asking': 1,
          'pose': 1,
          'night': 1,
          'travel': 1,
          'fortune': 1,
          'told': 1,
          'destined': 1,
          'nshe': 1,
          'ring': 1,
          'places': 1,
          'aloises': 1,
          'hand': 1,
          'afterwards': 1,
          'rollickingly': 1,
          'dancing': 1,
          'front': 1,
          'nunfortunately': 1,
          'ladeedah': 1,
          'tale': 1,
          'finally': 1,
          'becomes': 1,
          'angry': 1,
          'forbids': 1,
          'nbad': 1,
          'cant': 1,
          'although': 1,
          'know': 1,
          'thats': 1,
          'start': 1,
          'troubles': 1,
          'farm': 1,
          'burned': 1,
          'wrongfully': 1,
          'accused': 1,
          'landord': 1,
          'starting': 1,
          'fire': 1,
          'order': 1,
          'take': 1,
          'revenge': 1,
          'forbidden': 1,
          'decreases': 1,
          'reputation': 1,
          'town': 1,
          'parents': 1,
          'drops': 1,
          'nmatters': 1,
          'much': 1,
          'worse': 1,
          'dies': 1,
          'funeral': 1,
          'nasty': 1,
          'exiles': 1,
          'paying': 1,
          'rental': 1,
          'permanetly': 1,
          'means': 1,
          'starve': 1,
          'walk': 1,
          'cold': 1,
          'wind': 1,
          'nworst': 1,
          'desperately': 1,
          'working': 1,
          'portrait': 1,
          'princess': 1,
          'fails': 1,
          'prize': 1,
          'festival': 1,
          'nnow': 1,
          'depressed': 1,
          'close': 1,
          'death': 1,
          'able': 1,
          'find': 1,
          'fateful': 1,
          'trip': 1,
          'join': 1,
          'mother': 1,
          'paradise': 1,
          'na': 1,
          'entertain': 1,
          'ages': 1,
          'neven': 1,
          'consider': 1,
          'sophisticated': 1,
          'kiddie': 1,
          'fare': 1,
          'surprised': 1,
          'hear': 1,
          'grownups': 1,
          'movies': 1,
          'ilk': 1,
          'falls': 1,
          'category': 1,
          'mostly': 1,
          'overcoming': 1,
          'difficulties': 1,
          'finding': 1,
          'nmove': 1,
          'roll': 1,
          'old': 1,
          'yeller': 1,
          'delight': 1,
          'cinematography': 1,
          'courtesy': 1,
          'walther': 1,
          'van': 1,
          'den': 1,
          'ende': 1,
          'adds': 1,
          'respectably': 1,
          'shot': 1,
          'richard': 1,
          'friedman': 1,
          'remarkable': 1,
          'evocative': 1,
          'poignant': 1,
          'score': 1,
          'recaptures': 1,
          'opening': 1,
          'song': 1,
          'credits': 1,
          'hope': 1,
          'soundtrack': 1,
          'available': 1,
          'theres': 1,
          'brief': 1,
          'excerpt': 1,
          'cheer': 1,
          'charlie': 1,
          'willy': 1,
          'wonka': 1,
          'chocolate': 1,
          'factory': 1,
          'sung': 1,
          'scene': 1,
          'cast': 1,
          'firstrate': 1,
          'jesse': 1,
          'jeremy': 1,
          'endearing': 1,
          'girls': 1,
          'madyline': 1,
          'sweeten': 1,
          'younger': 1,
          'farren': 1,
          'monet': 1,
          'njack': 1,
          'ideal': 1,
          'eliciting': 1,
          'compassion': 1,
          'required': 1,
          'involving': 1,
          'nalso': 1,
          'bruce': 1,
          'mcgill': 1,
          'nhes': 1,
          'favorite': 1,
          'perfect': 1,
          'choice': 1,
          'brings': 1,
          'gentle': 1,
          'performance': 1,
          'reassures': 1,
          'insecure': 1,
          'fun': 1,
          'watch': 1,
          'welldefined': 1,
          'pace': 1,
          'ending': 1,
          'give': 1,
          'away': 1,
          'sorry': 1,
          'strong': 1,
          'identify': 1,
          'nfor': 1,
          'first': 1,
          'beginning': 1,
          '1999': 1,
          'comes': 1,
          'doesnt': 1,
          'rely': 1,
          'popular': 1,
          'formula': 1,
          'bigbudget': 1,
          'special': 1,
          'effects': 1,
          'commercial': 1,
          'rock': 1,
          'soundtracks': 1,
          'relies': 1,
          'telling': 1,
          'fully': 1,
          'characteroriented': 1,
          'nthat': 1,
          'neleanor': 1,
          'osullivan': 1,
          'news': 1,
          'tribune': 1,
          'noticed': 1,
          'generous': 1,
          'welcome': 1,
          'want': 1,
          'word': 1,
          'glow': 1,
          'surrounds': 1,
          'nits': 1,
          'place': 1,
          'engages': 1,
          'nyou': 1,
          'guess': 1,
          'going': 1,
          'welltraveled': 1,
          'territory': 1,
          'pros': 1,
          'appealing': 1,
          'oftentold': 1,
          'well': 1,
          'worth': 1,
          'revisit': 1,
          'couple': 1,
          'enthusiasts': 1,
          'chicagosun': 1,
          'washington': 1,
          'post': 1,
          'read': 1,
          'theyre': 1,
          'positive': 1,
          'nother': 1,
          'nstephen': 1,
          'holden': 1,
          'new': 1,
          'york': 1,
          'share': 1,
          'beatings': 1,
          'lay': 1,
          'upon': 1,
          'via': 1,
          'pen': 1,
          'writing': 1,
          'found': 1,
          'sea': 1,
          'sugary': 1,
          'bromides': 1,
          'condemned': 1,
          'mr': 1,
          'voights': 1,
          'hopelessly': 1,
          'wooden': 1,
          'adopts': 1,
          'accent': 1,
          'indeterminate': 1,
          'came': 1,
          'anaconda': 1,
          'weekly': 1,
          'slamdunked': 1,
          'condemning': 1,
          'worst': 1,
          'many': 1,
          'nmy': 1,
          'suggestion': 1,
          'disregard': 1,
          'nthey': 1,
          'problem': 1,
          'never': 1,
          'attention': 1,
          'may': 1,
          'probably': 1,
          'wont': 1,
          'hit': 1,
          'style': 1,
          'titanic': 1,
          'thing': 1,
          'warm': 1,
          'matters': 1,
          'nnone': 1,
          'lowkey': 1,
          'nif': 1,
          'youre': 1,
          'looking': 1,
          'familystyle': 1,
          'look': 1,
          'boyanddog': 1,
          'yarn': 1,
          'ngo': 1,
          'still': 1,
          'bowwow': 1,
          'box': 1,
          'office': 1,
          'long': 1,
          'nsee': 1,
          'need': 1,
          'compare': 1,
          'multimillion': 1,
          'dollar': 1,
          'blockbuster': 1,
          'star': 1,
          'wars': 1,
          'episode': 1,
          'phantom': 1,
          'menace': 1,
          'tarzan': 1,
          'iron': 1,
          'giant': 1,
          'tender': 1,
          'npos': 1}),
 Counter({'film': 16,
          'pulp': 10,
          'jackie': 9,
          'fiction': 9,
          'ordell': 8,
          'good': 6,
          'movie': 5,
          'would': 5,
          'going': 5,
          'much': 5,
          'made': 5,
          'really': 5,
          'brown': 5,
          'tarantino': 5,
          'grier': 5,
          'isnt': 5,
          'critic': 4,
          'first': 4,
          'one': 4,
          'comparison': 4,
          'nit': 4,
          'likely': 4,
          'question': 4,
          'role': 4,
          'jackson': 4,
          'niro': 4,
          'characters': 4,
          'dont': 3,
          'go': 3,
          'director': 3,
          'na': 3,
          'nthis': 3,
          'viewpoint': 3,
          'another': 3,
          'fair': 3,
          'think': 3,
          'nand': 3,
          'back': 3,
          'know': 3,
          'character': 3,
          'help': 3,
          'time': 3,
          'become': 3,
          'could': 3,
          'tarantinos': 3,
          'getting': 3,
          'nnaturally': 2,
          'tough': 2,
          'accomplish': 2,
          'along': 2,
          'stars': 2,
          'wed': 2,
          'dumb': 2,
          'im': 2,
          'hand': 2,
          'nits': 2,
          'comparing': 2,
          'compare': 2,
          'actor': 2,
          'even': 2,
          'involved': 2,
          'expect': 2,
          'example': 2,
          'take': 2,
          'wrote': 2,
          'average': 2,
          'still': 2,
          'taking': 2,
          'behind': 2,
          'n': 2,
          'sides': 2,
          'better': 2,
          'well': 2,
          'person': 2,
          'interested': 2,
          'ask': 2,
          'responsible': 2,
          'njackie': 2,
          'big': 2,
          'thanks': 2,
          'part': 2,
          'money': 2,
          'nordell': 2,
          'robert': 2,
          'de': 2,
          'prison': 2,
          'ordells': 2,
          'jackies': 2,
          'bail': 2,
          'nthe': 2,
          'hes': 2,
          'way': 2,
          'wont': 2,
          'yet': 2,
          'face': 2,
          'storytelling': 2,
          'maybe': 2,
          'play': 2,
          'forster': 2,
          'thin': 2,
          'nde': 2,
          'nin': 2,
          'script': 2,
          'nsadly': 2,
          'bit': 2,
          'story': 2,
          'njackson': 2,
          'new': 2,
          'jules': 2,
          'beginning': 2,
          'makes': 2,
          'directing': 2,
          'youll': 2,
          'critics': 1,
          'morals': 1,
          'nare': 1,
          'unwritten': 1,
          'laws': 1,
          'ethical': 1,
          'follow': 1,
          'want': 1,
          'preconceived': 1,
          'notions': 1,
          'pretty': 1,
          'something': 1,
          'nsecondly': 1,
          'line': 1,
          'cant': 1,
          'prejudge': 1,
          'etc': 1,
          'difference': 1,
          'nwell': 1,
          'thinking': 1,
          'affect': 1,
          'viewing': 1,
          'sounds': 1,
          'looks': 1,
          'expecting': 1,
          'non': 1,
          'second': 1,
          'simply': 1,
          'assuming': 1,
          'bad': 1,
          'personal': 1,
          'grudge': 1,
          'company': 1,
          'disney': 1,
          'noh': 1,
          'merchandising': 1,
          'ploy': 1,
          'actors': 1,
          'jim': 1,
          'carreys': 1,
          'gon': 1,
          'stink': 1,
          'ncant': 1,
          'biased': 1,
          'opposed': 1,
          'impression': 1,
          'nmake': 1,
          'sense': 1,
          'nok': 1,
          'nisnt': 1,
          'kind': 1,
          'lines': 1,
          'nwhen': 1,
          'certain': 1,
          'composers': 1,
          'credibility': 1,
          'nsure': 1,
          'sequels': 1,
          'accept': 1,
          'comparisons': 1,
          'lot': 1,
          'nis': 1,
          'review': 1,
          'turn': 1,
          'quentin': 1,
          'directed': 1,
          'screenplay': 1,
          'ni': 1,
          'ill': 1,
          'tell': 1,
          'able': 1,
          'view': 1,
          'joe': 1,
          'jane': 1,
          'account': 1,
          'artistic': 1,
          'integrity': 1,
          'nsometimes': 1,
          'acting': 1,
          'superb': 1,
          'bored': 1,
          'loved': 1,
          'sooooo': 1,
          'cheezy': 1,
          'nmight': 1,
          'used': 1,
          'describe': 1,
          'nthese': 1,
          'contradictions': 1,
          'weigh': 1,
          'come': 1,
          'suitable': 1,
          'balanced': 1,
          'critique': 1,
          'nbut': 1,
          'important': 1,
          'nan': 1,
          'extremely': 1,
          'shot': 1,
          'acted': 1,
          'boring': 1,
          'amateurish': 1,
          'wan': 1,
          'ngetting': 1,
          'point': 1,
          'philosophy': 1,
          'films': 1,
          'works': 1,
          'reflecting': 1,
          'public': 1,
          'wants': 1,
          'anyway': 1,
          'nevery': 1,
          'whos': 1,
          'already': 1,
          'pam': 1,
          'blaxploitation': 1,
          'heroine': 1,
          '1970s': 1,
          'make': 1,
          'comeback': 1,
          'title': 1,
          'ntarantinos': 1,
          'john': 1,
          'travoltas': 1,
          'sudden': 1,
          'revival': 1,
          'industry': 1,
          'talks': 1,
          'oscar': 1,
          'nomination': 1,
          'happen': 1,
          'weve': 1,
          'thru': 1,
          '1': 1,
          '44yearold': 1,
          'airline': 1,
          'stewardess': 1,
          'brings': 1,
          'extra': 1,
          'cash': 1,
          'probably': 1,
          'main': 1,
          'revenue': 1,
          'smuggling': 1,
          'large': 1,
          'sums': 1,
          'united': 1,
          'states': 1,
          'robbie': 1,
          'fictions': 1,
          'samuel': 1,
          'l': 1,
          '2': 1,
          'illegal': 1,
          'firearms': 1,
          'business': 1,
          'enlisted': 1,
          'aid': 1,
          'louis': 1,
          'gara': 1,
          'bank': 1,
          'robber': 1,
          'got': 1,
          'serving': 1,
          'four': 1,
          'years': 1,
          'scheme': 1,
          'worth': 1,
          'half': 1,
          'million': 1,
          'dollars': 1,
          'ntrouble': 1,
          'arises': 1,
          'stopped': 1,
          'atf': 1,
          'agent': 1,
          'ray': 1,
          'nicolet': 1,
          'michael': 1,
          'keaton': 1,
          'taken': 1,
          'custody': 1,
          'possession': 1,
          'narcotics': 1,
          'allowed': 1,
          'airport': 1,
          'without': 1,
          'claimed': 1,
          'proves': 1,
          'obstacle': 1,
          'plans': 1,
          'friendly': 1,
          'intended': 1,
          'hope': 1,
          'posts': 1,
          'put': 1,
          'bars': 1,
          'thing': 1,
          'learn': 1,
          'previous': 1,
          'actions': 1,
          'willing': 1,
          'kill': 1,
          'anyone': 1,
          'stands': 1,
          'finds': 1,
          'tight': 1,
          'squeeze': 1,
          'twice': 1,
          'fails': 1,
          'shes': 1,
          'always': 1,
          'done': 1,
          'compromise': 1,
          'authorities': 1,
          'order': 1,
          'evidence': 1,
          'provided': 1,
          'comes': 1,
          'simple': 1,
          'rather': 1,
          'nwhat': 1,
          'ensues': 1,
          'rich': 1,
          'intriguing': 1,
          'law': 1,
          'ncoming': 1,
          '70s': 1,
          'veteran': 1,
          'bondsmen': 1,
          'max': 1,
          'cherry': 1,
          'nmaxs': 1,
          'obvious': 1,
          'fondness': 1,
          'major': 1,
          'benefactor': 1,
          'fight': 1,
          'beat': 1,
          'system': 1,
          'plays': 1,
          'subtle': 1,
          'charm': 1,
          'adds': 1,
          'depth': 1,
          'unbrewed': 1,
          'romance': 1,
          'nalso': 1,
          'surfer': 1,
          'girl': 1,
          'girlfriend': 1,
          'melanie': 1,
          'bridget': 1,
          'fonda': 1,
          'ditzy': 1,
          'sun': 1,
          'bleached': 1,
          'babe': 1,
          'spends': 1,
          'watching': 1,
          'tv': 1,
          'bong': 1,
          'nfonda': 1,
          'best': 1,
          'essentially': 1,
          'theres': 1,
          'nothing': 1,
          'therefore': 1,
          'becomes': 1,
          'tossable': 1,
          'addition': 1,
          'otherwise': 1,
          'flourishing': 1,
          'bouquet': 1,
          'also': 1,
          'wasted': 1,
          'quiet': 1,
          'nobody': 1,
          'crook': 1,
          'score': 1,
          'bucks': 1,
          'brilliant': 1,
          'hardly': 1,
          'ever': 1,
          'speaks': 1,
          'doesnt': 1,
          'need': 1,
          'ncompared': 1,
          '3': 1,
          'replaceable': 1,
          'small': 1,
          'seemingly': 1,
          'irrelevant': 1,
          'wonderful': 1,
          'complete': 1,
          'lifelike': 1,
          'whereas': 1,
          'common': 1,
          'figures': 1,
          'wouldnt': 1,
          'suffered': 1,
          'lesser': 1,
          'talented': 1,
          'cast': 1,
          'exception': 1,
          'ntarantino': 1,
          'specifically': 1,
          'mind': 1,
          'say': 1,
          'reversed': 1,
          'truth': 1,
          'received': 1,
          'attention': 1,
          'especially': 1,
          'newlyjarred': 1,
          'perception': 1,
          'life': 1,
          'teams': 1,
          'chemical': 1,
          'reaction': 1,
          'awesome': 1,
          'njules': 1,
          'rambling': 1,
          'biblequoting': 1,
          'hitman': 1,
          'pulled': 1,
          'although': 1,
          'quite': 1,
          'irreplaceable': 1,
          'fact': 1,
          'couldve': 1,
          'remained': 1,
          'guy': 1,
          'forever': 1,
          'remain': 1,
          'memories': 1,
          'except': 1,
          'impressive': 1,
          'putting': 1,
          'hands': 1,
          'deter': 1,
          'fond': 1,
          'recollections': 1,
          'nanother': 1,
          'problem': 1,
          'focused': 1,
          'griers': 1,
          'spend': 1,
          'long': 1,
          'man': 1,
          'supporting': 1,
          'progresses': 1,
          'feel': 1,
          'little': 1,
          'slanted': 1,
          'slow': 1,
          'longer': 1,
          'meat': 1,
          'pouring': 1,
          'theater': 1,
          'see': 1,
          'anxious': 1,
          'partake': 1,
          'quirky': 1,
          'dialogue': 1,
          'eccentric': 1,
          'style': 1,
          'seeing': 1,
          'silver': 1,
          'screen': 1,
          'adaption': 1,
          'elmore': 1,
          'leonards': 1,
          'novel': 1,
          'rum': 1,
          'punch': 1,
          'nfor': 1,
          'moviegoers': 1,
          'satisfied': 1,
          'oozes': 1,
          'familiar': 1,
          'brash': 1,
          'qualities': 1,
          'icon': 1,
          '90s': 1,
          'making': 1,
          'toned': 1,
          'however': 1,
          'reminded': 1,
          'odd': 1,
          'splitscreen': 1,
          'devices': 1,
          'scenes': 1,
          'replayed': 1,
          'multiple': 1,
          'times': 1,
          'different': 1,
          'viewpoints': 1,
          'nso': 1,
          'began': 1,
          'anything': 1,
          'revolutionary': 1,
          'effort': 1,
          'place': 1,
          'conservative': 1,
          'satiate': 1,
          'true': 1,
          'fans': 1,
          'nif': 1,
          'realize': 1,
          'knock': 1,
          'socks': 1,
          'happy': 1,
          'least': 1,
          'let': 1,
          'massage': 1,
          'feet': 1,
          'nafter': 1,
          'loves': 1,
          'particular': 1,
          'human': 1,
          'anatomy': 1,
          'npos': 1}),
 Counter({'jerry': 5,
          'black': 3,
          'killer': 3,
          'lori': 3,
          'pledge': 3,
          'becomes': 2,
          'gas': 2,
          'station': 2,
          'takes': 2,
          'befriends': 2,
          'first': 2,
          'nit': 2,
          'npenn': 2,
          'jerrys': 2,
          'much': 2,
          'synopsis': 1,
          'retiring': 1,
          'detective': 1,
          'nicholson': 1,
          'involved': 1,
          'case': 1,
          'murdered': 1,
          'girl': 1,
          'promises': 1,
          'parents': 1,
          'find': 1,
          'nhe': 1,
          'purchases': 1,
          'route': 1,
          'believes': 1,
          'wright': 1,
          'penn': 1,
          'young': 1,
          'daughter': 1,
          'nas': 1,
          'fall': 1,
          'love': 1,
          'must': 1,
          'done': 1,
          'fulfill': 1,
          'nreview': 1,
          'appears': 1,
          'another': 1,
          'standard': 1,
          'wellexecuted': 1,
          'crime': 1,
          'drama': 1,
          'anything': 1,
          'final': 1,
          'hour': 1,
          'turns': 1,
          'corner': 1,
          'riveting': 1,
          'terrifying': 1,
          'study': 1,
          'lead': 1,
          'character': 1,
          'pays': 1,
          'attention': 1,
          'trappings': 1,
          'serial': 1,
          'genre': 1,
          'window': 1,
          'dressing': 1,
          'nhis': 1,
          'interest': 1,
          'unequivocally': 1,
          'man': 1,
          'haunted': 1,
          'consumes': 1,
          'entirety': 1,
          'existence': 1,
          'nat': 1,
          'see': 1,
          'small': 1,
          'hints': 1,
          'habits': 1,
          'change': 1,
          'instance': 1,
          'suddenly': 1,
          'smoking': 1,
          'big': 1,
          'way': 1,
          'nbut': 1,
          'buys': 1,
          'true': 1,
          'extent': 1,
          'mania': 1,
          'draws': 1,
          'horrifyingly': 1,
          'focus': 1,
          'nnicholson': 1,
          'fantastic': 1,
          'portraying': 1,
          'rare': 1,
          'subtlety': 1,
          'animus': 1,
          'gradual': 1,
          'descent': 1,
          'obsession': 1,
          'like': 1,
          'car': 1,
          'wreck': 1,
          'thing': 1,
          'horrible': 1,
          'look': 1,
          'impossible': 1,
          'turn': 1,
          'away': 1,
          'coaxes': 1,
          'good': 1,
          'supporting': 1,
          'performances': 1,
          'rest': 1,
          'cast': 1,
          'nonly': 1,
          'eckhart': 1,
          'disappoints': 1,
          'replacement': 1,
          'stan': 1,
          'never': 1,
          'seems': 1,
          'entirely': 1,
          'convincing': 1,
          'tool': 1,
          'plot': 1,
          'npenns': 1,
          'direction': 1,
          'astounding': 1,
          'frame': 1,
          'looking': 1,
          'though': 1,
          'parched': 1,
          'water': 1,
          'perhaps': 1,
          'sanity': 1,
          'builds': 1,
          'shattering': 1,
          'devastating': 1,
          'climax': 1,
          'lingers': 1,
          'uncomfortably': 1,
          'mind': 1,
          'long': 1,
          'house': 1,
          'lights': 1,
          'come': 1,
          'npos': 1}),
 Counter({'mamet': 7,
          'one': 6,
          'nit': 6,
          'get': 4,
          'film': 4,
          'plot': 4,
          'going': 3,
          'story': 3,
          'films': 3,
          'team': 3,
          'security': 3,
          'heist': 3,
          'clever': 3,
          'robbery': 3,
          'like': 3,
          'problem': 3,
          'joe': 3,
          'time': 3,
          'nthe': 3,
          'never': 2,
          'little': 2,
          'really': 2,
          'nheist': 2,
          'thriller': 2,
          'kind': 2,
          'frequently': 2,
          'viewer': 2,
          'around': 2,
          'enough': 2,
          'professional': 2,
          'ricky': 2,
          'jay': 2,
          'rebecca': 2,
          'ways': 2,
          'nbut': 2,
          'mamets': 2,
          'dialog': 2,
          'money': 2,
          'timing': 2,
          'good': 2,
          'high': 2,
          'nmy': 2,
          'scale': 2,
          '4': 2,
          'quite': 1,
          'knows': 1,
          'nhis': 1,
          'american': 1,
          'buffalo': 1,
          'setbound': 1,
          'piece': 1,
          'nsometimes': 1,
          'tell': 1,
          'moves': 1,
          'entertaining': 1,
          'work': 1,
          'nunlike': 1,
          'spanish': 1,
          'prisoner': 1,
          'lapses': 1,
          'credibility': 1,
          'probably': 1,
          'best': 1,
          'since': 1,
          'house': 1,
          'games': 1,
          'sure': 1,
          'doublecross': 1,
          'doublecrossing': 1,
          'nwatching': 1,
          'getting': 1,
          'asking': 1,
          'either': 1,
          'heck': 1,
          'didnt': 1,
          'anybody': 1,
          'think': 1,
          'nappropriately': 1,
          'opens': 1,
          'jewelry': 1,
          'store': 1,
          'job': 1,
          'wonders': 1,
          'thinks': 1,
          'ideas': 1,
          'help': 1,
          'magician': 1,
          'con': 1,
          'expert': 1,
          'regular': 1,
          'actor': 1,
          'nthis': 1,
          'works': 1,
          'welloiled': 1,
          'machine': 1,
          'nthere': 1,
          'moore': 1,
          'played': 1,
          'gene': 1,
          'hackman': 1,
          'filmed': 1,
          'camera': 1,
          'nnow': 1,
          'business': 1,
          'coming': 1,
          'anyway': 1,
          'njoes': 1,
          'including': 1,
          'bobby': 1,
          'blane': 1,
          'delroy': 1,
          'lindo': 1,
          'fran': 1,
          'moor': 1,
          'pidgeon': 1,
          'pinky': 1,
          'pincus': 1,
          'split': 1,
          'go': 1,
          'separate': 1,
          'crime': 1,
          'boss': 1,
          'bergman': 1,
          'danny': 1,
          'devito': 1,
          'pulling': 1,
          'strings': 1,
          'says': 1,
          'people': 1,
          'manage': 1,
          'nand': 1,
          'take': 1,
          'along': 1,
          'young': 1,
          'kid': 1,
          'short': 1,
          'fused': 1,
          'jimmy': 1,
          'silk': 1,
          'sam': 1,
          'rockwell': 1,
          'nimmediately': 1,
          'obvious': 1,
          'meets': 1,
          'eye': 1,
          'nmuch': 1,
          'distinguishes': 1,
          'nremarkably': 1,
          'serves': 1,
          'double': 1,
          'purpose': 1,
          'sounds': 1,
          'special': 1,
          'feel': 1,
          'nhackman': 1,
          'lines': 1,
          'everybody': 1,
          'needs': 1,
          'nthats': 1,
          'call': 1,
          'nmamets': 1,
          'perfect': 1,
          'direction': 1,
          'terrible': 1,
          'production': 1,
          'coincidentally': 1,
          'lot': 1,
          'recent': 1,
          'score': 1,
          'fact': 1,
          'similar': 1,
          'nboth': 1,
          'perhaps': 1,
          'reasons': 1,
          'least': 1,
          'level': 1,
          'much': 1,
          'involves': 1,
          'airport': 1,
          'ni': 1,
          'saw': 1,
          'toronto': 1,
          'international': 1,
          'festival': 1,
          'september': 1,
          '12': 1,
          '2001': 1,
          'nthat': 1,
          'made': 1,
          'subject': 1,
          'matter': 1,
          'timely': 1,
          'understanding': 1,
          'release': 1,
          'delayed': 1,
          'biggest': 1,
          'pidgeons': 1,
          'acting': 1,
          'times': 1,
          'seems': 1,
          'poor': 1,
          'trademark': 1,
          'understand': 1,
          'women': 1,
          'talk': 1,
          'without': 1,
          'inflection': 1,
          'reading': 1,
          'words': 1,
          'first': 1,
          'irritation': 1,
          'distracts': 1,
          'us': 1,
          'otherwise': 1,
          'rate': 1,
          '8': 1,
          '0': 1,
          '10': 1,
          '2': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'foster': 9,
          'scene': 8,
          'nthe': 7,
          'science': 5,
          'one': 4,
          'nit': 4,
          'good': 4,
          'audience': 4,
          'sense': 4,
          'contact': 3,
          'jodie': 3,
          'john': 3,
          'zemeckis': 3,
          'case': 3,
          'fiction': 3,
          'nthis': 3,
          'supporting': 3,
          'cast': 3,
          'acting': 3,
          'scenes': 3,
          'new': 3,
          'fosters': 3,
          'beach': 3,
          'ncontact': 2,
          'hurt': 2,
          'director': 2,
          'star': 2,
          'predictable': 2,
          'terms': 2,
          'evoke': 2,
          'let': 2,
          'characterization': 2,
          'movies': 2,
          'certainly': 2,
          'long': 2,
          'lowe': 2,
          'world': 2,
          'immensely': 2,
          'memory': 2,
          'nin': 2,
          'manipulated': 2,
          'nbut': 2,
          'film': 2,
          'clinton': 2,
          'vis': 2,
          'sagan': 2,
          'shows': 1,
          'best': 1,
          'actresses': 1,
          'nsee': 1,
          'family': 1,
          'ages': 1,
          'na': 1,
          'review': 1,
          'stuart': 1,
          'cracraft': 1,
          'starring': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'robert': 1,
          'nafter': 1,
          'mit': 1,
          'phillip': 1,
          'morrison': 1,
          'powersof10': 1,
          'zoomout': 1,
          'start': 1,
          'surprising': 1,
          'familiar': 1,
          'prof': 1,
          'morrisons': 1,
          'work': 1,
          'picks': 1,
          'steam': 1,
          'gradually': 1,
          'building': 1,
          'bytheend': 1,
          'irresistable': 1,
          'juggernaut': 1,
          'often': 1,
          'fall': 1,
          'outofbalance': 1,
          'much': 1,
          'pandering': 1,
          'technological': 1,
          'geek': 1,
          'side': 1,
          'nby': 1,
          'end': 1,
          'left': 1,
          'supposed': 1,
          'wonder': 1,
          'universe': 1,
          'questions': 1,
          'mind': 1,
          'whats': 1,
          'technology': 1,
          'overshadow': 1,
          'unusual': 1,
          'amongst': 1,
          'hightech': 1,
          'nhowever': 1,
          'except': 1,
          'elie': 1,
          'arroway': 1,
          'r': 1,
          'nhadden': 1,
          'actors': 1,
          'exceptional': 1,
          'caliber': 1,
          'especially': 1,
          'impressive': 1,
          'nhurt': 1,
          'better': 1,
          'roles': 1,
          'stephen': 1,
          'ward': 1,
          'scandal': 1,
          'multibillionare': 1,
          'hadden': 1,
          'skills': 1,
          'justice': 1,
          'clearly': 1,
          'great': 1,
          'hollywood': 1,
          'lights': 1,
          'generation': 1,
          'nfosters': 1,
          'radiance': 1,
          'never': 1,
          'strong': 1,
          'finally': 1,
          'meets': 1,
          'vegans': 1,
          'nearly': 1,
          'take': 1,
          'time': 1,
          'build': 1,
          'pacing': 1,
          'subtle': 1,
          'panoramas': 1,
          'radio': 1,
          'dishes': 1,
          'arecibo': 1,
          'ceti': 1,
          'mexico': 1,
          'puerto': 1,
          'rico': 1,
          'beautiful': 1,
          'politics': 1,
          'character': 1,
          'attempting': 1,
          'obtain': 1,
          'funding': 1,
          'research': 1,
          'places': 1,
          'trite': 1,
          'however': 1,
          'none': 1,
          'entertaining': 1,
          'short': 1,
          'confronted': 1,
          'rob': 1,
          'cabinetlevel': 1,
          'presidential': 1,
          'meeting': 1,
          'discuss': 1,
          'alien': 1,
          'invitation': 1,
          'nthere': 1,
          'real': 1,
          'sparks': 1,
          'would': 1,
          'behoove': 1,
          'consider': 1,
          'vehicles': 1,
          'dynamism': 1,
          'could': 1,
          'explored': 1,
          'tremendous': 1,
          'dynamics': 1,
          'two': 1,
          'characters': 1,
          'neverything': 1,
          'else': 1,
          'onesided': 1,
          'e': 1,
          'g': 1,
          'nfoster': 1,
          'nlowe': 1,
          'stand': 1,
          'showed': 1,
          'cabinet': 1,
          'table': 1,
          'core': 1,
          'set': 1,
          'surrealistic': 1,
          'faraway': 1,
          'starsystem': 1,
          'vega': 1,
          'feels': 1,
          'lot': 1,
          'like': 1,
          'writer': 1,
          'varleys': 1,
          'book': 1,
          'steel': 1,
          'female': 1,
          'protagonists': 1,
          'encounters': 1,
          'superior': 1,
          'intelligence': 1,
          'computer': 1,
          'manufactured': 1,
          'mankind': 1,
          'illusion': 1,
          'drawn': 1,
          'another': 1,
          'moving': 1,
          'evokes': 1,
          'gene': 1,
          'roddenberrys': 1,
          'trek': 1,
          'pilot': 1,
          'cage': 1,
          'later': 1,
          'menagerie': 1,
          'jeffrey': 1,
          'hunter': 1,
          'susan': 1,
          'oliver': 1,
          'memories': 1,
          'create': 1,
          'worlds': 1,
          'live': 1,
          'encounter': 1,
          'aliens': 1,
          'concept': 1,
          'centerpiece': 1,
          'whole': 1,
          'driven': 1,
          'nfreed': 1,
          'needs': 1,
          'direct': 1,
          'zemecki': 1,
          'able': 1,
          'hang': 1,
          'lead': 1,
          'provides': 1,
          'nas': 1,
          'gains': 1,
          'speed': 1,
          'intensifies': 1,
          'really': 1,
          'experience': 1,
          'oscarcaliber': 1,
          'unquestionably': 1,
          'well': 1,
          'throws': 1,
          'humor': 1,
          'president': 1,
          'cameos': 1,
          'cleverly': 1,
          'george': 1,
          'stephanopolusstyle': 1,
          'seem': 1,
          'forrest': 1,
          'gump': 1,
          'fact': 1,
          'et': 1,
          'nal': 1,
          'ngot': 1,
          'trouble': 1,
          'usage': 1,
          'footage': 1,
          'seen': 1,
          'attended': 1,
          'chuckles': 1,
          'clintons': 1,
          'walkons': 1,
          'muchdiscussed': 1,
          'tension': 1,
          'religion': 1,
          'particularly': 1,
          'insightful': 1,
          'already': 1,
          'gone': 1,
          'course': 1,
          'though': 1,
          'helpful': 1,
          'nalso': 1,
          'nearfinal': 1,
          'senate': 1,
          'judiciary': 1,
          'hearing': 1,
          'room': 1,
          'disappointing': 1,
          'fitting': 1,
          'memorial': 1,
          'carl': 1,
          'popularizer': 1,
          'sometime': 1,
          'pedantic': 1,
          'gadfly': 1,
          'halls': 1,
          'academe': 1,
          'nperhaps': 1,
          'said': 1,
          'dragons': 1,
          'eden': 1,
          'npos': 1}),
 Counter({'film': 11,
          'first': 9,
          'sight': 9,
          'virgil': 8,
          'nthe': 6,
          'since': 5,
          'amy': 5,
          'awakenings': 4,
          'begins': 4,
          'sorvino': 4,
          'kilmer': 4,
          'even': 4,
          'surgery': 4,
          'relationship': 4,
          'directed': 3,
          'irwin': 3,
          'winkler': 3,
          'inspired': 3,
          'story': 3,
          'made': 3,
          'new': 3,
          'york': 3,
          'time': 3,
          'later': 3,
          'blind': 3,
          'finally': 3,
          'virgils': 3,
          'amys': 3,
          'done': 3,
          'life': 3,
          'always': 3,
          'usually': 3,
          'little': 3,
          'come': 3,
          'drama': 2,
          'true': 2,
          'documented': 2,
          'nsince': 2,
          'year': 2,
          'strong': 2,
          'still': 2,
          'intelligent': 2,
          'take': 2,
          'country': 2,
          'nat': 2,
          'care': 2,
          'love': 2,
          'type': 2,
          'years': 2,
          'comes': 2,
          'though': 2,
          'travels': 2,
          'sister': 2,
          'mcgillis': 2,
          'problems': 2,
          'apartment': 2,
          'many': 2,
          'also': 2,
          'easily': 2,
          'romantic': 2,
          'well': 2,
          'scenes': 2,
          'known': 2,
          'given': 2,
          'performances': 2,
          'role': 2,
          'character': 2,
          'play': 2,
          'nin': 2,
          'one': 2,
          'bad': 2,
          'simply': 2,
          'would': 2,
          'way': 2,
          'like': 1,
          'wonderful': 1,
          '1990': 1,
          'starring': 1,
          'robin': 1,
          'williams': 1,
          'robert': 1,
          'de': 1,
          'niro': 1,
          'physicfirst': 1,
          'physician': 1,
          'oliver': 1,
          'sacks': 1,
          'good': 1,
          'top': 1,
          'ten': 1,
          'list': 1,
          'released': 1,
          'quite': 1,
          'sure': 1,
          'hand': 1,
          'penny': 1,
          'marshall': 1,
          'vibrantlyacted': 1,
          'mira': 1,
          'stressedout': 1,
          'architect': 1,
          'decides': 1,
          'travel': 1,
          'upstate': 1,
          'hotel': 1,
          'staying': 1,
          'makes': 1,
          'massage': 1,
          'appointment': 1,
          'long': 1,
          'soothing': 1,
          'session': 1,
          'ends': 1,
          'crying': 1,
          'release': 1,
          'emotions': 1,
          'strikes': 1,
          'conversation': 1,
          'handsome': 1,
          'masseur': 1,
          'val': 1,
          'find': 1,
          'actually': 1,
          'namy': 1,
          'doesnt': 1,
          'really': 1,
          'handicap': 1,
          'spend': 1,
          'start': 1,
          'fall': 1,
          'nonce': 1,
          'returned': 1,
          'research': 1,
          'certain': 1,
          'retinal': 1,
          'blindness': 1,
          'three': 1,
          'age': 1,
          'stroke': 1,
          'luck': 1,
          'contact': 1,
          'doctor': 1,
          'bruce': 1,
          'davison': 1,
          'believes': 1,
          'repair': 1,
          'thirty': 1,
          'similar': 1,
          'cases': 1,
          'history': 1,
          'reluctant': 1,
          'nyc': 1,
          'agrees': 1,
          'much': 1,
          'hesitance': 1,
          'overbearing': 1,
          'loving': 1,
          'older': 1,
          'kelly': 1,
          'nultimately': 1,
          'success': 1,
          'arise': 1,
          'relate': 1,
          'sees': 1,
          'never': 1,
          'visually': 1,
          'seen': 1,
          'anything': 1,
          'touched': 1,
          'objects': 1,
          'nhe': 1,
          'moves': 1,
          'eager': 1,
          'stand': 1,
          'maladjustment': 1,
          'put': 1,
          'strain': 1,
          'non': 1,
          'basis': 1,
          'overall': 1,
          'indeed': 1,
          'times': 1,
          'owes': 1,
          'great': 1,
          'deal': 1,
          'predecessor': 1,
          'nwhat': 1,
          'happen': 1,
          'throughout': 1,
          'telegraphed': 1,
          'advance': 1,
          'nhowever': 1,
          'helps': 1,
          'rise': 1,
          'predictability': 1,
          'mature': 1,
          'develops': 1,
          'nusually': 1,
          'pictures': 1,
          'shameless': 1,
          'puppydog': 1,
          'sort': 1,
          'recent': 1,
          'tom': 1,
          'hanksmeg': 1,
          'ryanstarrer': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          'immediately': 1,
          'pops': 1,
          'mind': 1,
          'grew': 1,
          'characters': 1,
          'plight': 1,
          'starts': 1,
          'noticably': 1,
          'north': 1,
          'meets': 1,
          'massaging': 1,
          'sequences': 1,
          'strangely': 1,
          'erotic': 1,
          'maybe': 1,
          'actual': 1,
          'involvement': 1,
          'quickly': 1,
          'developed': 1,
          'entertaining': 1,
          'sweet': 1,
          'clearly': 1,
          'lot': 1,
          'chemistry': 1,
          'two': 1,
          'nthese': 1,
          'joyous': 1,
          'moments': 1,
          'early': 1,
          'balanced': 1,
          'seriously': 1,
          'tested': 1,
          'due': 1,
          'contrast': 1,
          'styles': 1,
          'completely': 1,
          'used': 1,
          'comforting': 1,
          'peaceful': 1,
          'eventful': 1,
          'big': 1,
          'city': 1,
          'major': 1,
          'compliment': 1,
          'must': 1,
          'nearly': 1,
          'flawless': 1,
          'across': 1,
          'board': 1,
          'nval': 1,
          'cast': 1,
          'macho': 1,
          'believable': 1,
          'person': 1,
          'playing': 1,
          'probably': 1,
          'tricky': 1,
          'appears': 1,
          'nit': 1,
          'someone': 1,
          'pity': 1,
          'sympathize': 1,
          'pulled': 1,
          'nmira': 1,
          'spectacular': 1,
          'debuting': 1,
          'splash': 1,
          '1995s': 1,
          'hilarious': 1,
          'woody': 1,
          'allen': 1,
          'comedy': 1,
          'mighty': 1,
          'aphrodite': 1,
          'welldeserved': 1,
          'oscar': 1,
          'kindhearted': 1,
          'ditzy': 1,
          'hooker': 1,
          'standout': 1,
          'nalthough': 1,
          'mediocre': 1,
          'choices': 1,
          '1997s': 1,
          'mimic': 1,
          '1998s': 1,
          'replacement': 1,
          'killers': 1,
          'managed': 1,
          'unscathed': 1,
          'another': 1,
          'juicy': 1,
          'truthful': 1,
          'climactic': 1,
          'scene': 1,
          'set': 1,
          'proves': 1,
          'gifted': 1,
          'young': 1,
          'actresses': 1,
          'around': 1,
          'today': 1,
          'flare': 1,
          'comedic': 1,
          'dramatic': 1,
          'pieces': 1,
          'nkelly': 1,
          'could': 1,
          'onedimensional': 1,
          'instead': 1,
          'unexpectedly': 1,
          'multifaceted': 1,
          'woman': 1,
          'may': 1,
          'overly': 1,
          'protective': 1,
          'cares': 1,
          'brother': 1,
          'nfinally': 1,
          'nathan': 1,
          'lane': 1,
          'overthetop': 1,
          'appropriately': 1,
          'restrained': 1,
          'vision': 1,
          'therapist': 1,
          'misstep': 1,
          'treatment': 1,
          'medical': 1,
          'procedure': 1,
          'nvery': 1,
          'ever': 1,
          'said': 1,
          'discussed': 1,
          'concerning': 1,
          'occurs': 1,
          'briefly': 1,
          'glimpsed': 1,
          'impossible': 1,
          'see': 1,
          'eyes': 1,
          'nperhaps': 1,
          'reason': 1,
          'aspect': 1,
          'indepth': 1,
          'makers': 1,
          'afraid': 1,
          'gross': 1,
          'audiences': 1,
          'personally': 1,
          'realism': 1,
          'graphic': 1,
          'day': 1,
          'giving': 1,
          'explanation': 1,
          'cold': 1,
          'shoulder': 1,
          'patients': 1,
          'illness': 1,
          'far': 1,
          'satisfyingly': 1,
          'portrayed': 1,
          'nbecause': 1,
          'screenplay': 1,
          'written': 1,
          'steve': 1,
          'levitt': 1,
          'deals': 1,
          'main': 1,
          'fabulous': 1,
          'films': 1,
          'swept': 1,
          'side': 1,
          'adult': 1,
          'romance': 1,
          'depicted': 1,
          'director': 1,
          'doubt': 1,
          'respect': 1,
          'reallife': 1,
          'couple': 1,
          'together': 1,
          'setting': 1,
          'changed': 1,
          'january': 1,
          'dumping': 1,
          'ground': 1,
          'movies': 1,
          'refreshing': 1,
          'sophisticated': 1,
          'change': 1,
          'pace': 1,
          'npos': 1}),
 Counter({'chad': 14,
          'film': 8,
          'christine': 7,
          'men': 6,
          'office': 6,
          'howard': 6,
          'nthe': 5,
          'us': 5,
          'may': 4,
          'company': 3,
          'nit': 3,
          'nchad': 3,
          'nhoward': 3,
          'one': 3,
          'loves': 3,
          'allegory': 3,
          'year': 2,
          'outside': 2,
          'think': 2,
          'eckhart': 2,
          'two': 2,
          'corporate': 2,
          'branch': 2,
          'find': 2,
          'golden': 2,
          'boy': 2,
          'chads': 2,
          'nwe': 2,
          'nthere': 2,
          'woman': 2,
          'easy': 2,
          'route': 2,
          'little': 2,
          'dignity': 2,
          'edwards': 2,
          'temp': 2,
          'smile': 2,
          'since': 2,
          'social': 2,
          'level': 2,
          'nhis': 2,
          'coworkers': 2,
          'humiliates': 2,
          'works': 2,
          'real': 2,
          'happen': 2,
          'go': 2,
          'walk': 2,
          'best': 2,
          'black': 2,
          'functions': 2,
          'moment': 2,
          'world': 2,
          'script': 2,
          'nbut': 2,
          'work': 2,
          'well': 2,
          'end': 2,
          'made': 1,
          'splash': 1,
          'sundance': 1,
          'festival': 1,
          'plagued': 1,
          'brothers': 1,
          'mcmullenstyle': 1,
          'earnestly': 1,
          'shallow': 1,
          'genx': 1,
          'angst': 1,
          'pictures': 1,
          'seemed': 1,
          'actually': 1,
          'something': 1,
          'angered': 1,
          'people': 1,
          'started': 1,
          'arguments': 1,
          'theater': 1,
          'riled': 1,
          'things': 1,
          'ignited': 1,
          'spark': 1,
          'excitement': 1,
          'otherwise': 1,
          'disappointing': 1,
          'independent': 1,
          'nhaving': 1,
          'endured': 1,
          'share': 1,
          'hype': 1,
          'waited': 1,
          'calmly': 1,
          'reach': 1,
          'hinterlands': 1,
          'wherein': 1,
          'reside': 1,
          'checked': 1,
          'see': 1,
          'fuss': 1,
          'ndoes': 1,
          'live': 1,
          'press': 1,
          'nwell': 1,
          'yes': 1,
          'nand': 1,
          'make': 1,
          'twice': 1,
          'consider': 1,
          'dating': 1,
          'anyone': 1,
          'nfor': 1,
          'uninitiated': 1,
          'newcomers': 1,
          'aaron': 1,
          'matt': 1,
          'malloy': 1,
          'play': 1,
          'drones': 1,
          'dispatched': 1,
          'nameless': 1,
          'remote': 1,
          'six': 1,
          'week': 1,
          'assignment': 1,
          'archetypes': 1,
          'examples': 1,
          'doubt': 1,
          'place': 1,
          'business': 1,
          'blond': 1,
          'genetically': 1,
          'engineered': 1,
          'success': 1,
          'natural': 1,
          'charmer': 1,
          'seems': 1,
          'glide': 1,
          'effortlessly': 1,
          'ladder': 1,
          'boss': 1,
          'weaker': 1,
          'clumsy': 1,
          'practitioner': 1,
          'politics': 1,
          'achieved': 1,
          'position': 1,
          'dogged': 1,
          'persistence': 1,
          'rather': 1,
          'raw': 1,
          'talent': 1,
          'first': 1,
          'meet': 1,
          'awaiting': 1,
          'flight': 1,
          'drab': 1,
          'airport': 1,
          'lounge': 1,
          'suggests': 1,
          'scheme': 1,
          'worthy': 1,
          'shakespearean': 1,
          'villain': 1,
          'vulnerable': 1,
          'single': 1,
          'woo': 1,
          'simultaneously': 1,
          'win': 1,
          'love': 1,
          'dump': 1,
          'reason': 1,
          'nboth': 1,
          'recently': 1,
          'dumped': 1,
          'sees': 1,
          'revenge': 1,
          'fairer': 1,
          'sex': 1,
          'n': 1,
          'itll': 1,
          'restore': 1,
          'lives': 1,
          'says': 1,
          'helpless': 1,
          'force': 1,
          'agrees': 1,
          'plan': 1,
          'nthey': 1,
          'quickly': 1,
          'spot': 1,
          'prey': 1,
          'form': 1,
          'stacy': 1,
          'fragile': 1,
          'deaf': 1,
          'working': 1,
          'moves': 1,
          'kill': 1,
          'flashing': 1,
          'plying': 1,
          'lunch': 1,
          'flowers': 1,
          'dinner': 1,
          'follows': 1,
          'suit': 1,
          'though': 1,
          'efforts': 1,
          'contrast': 1,
          'hamhanded': 1,
          'desperate': 1,
          'nflattered': 1,
          'attention': 1,
          'eligible': 1,
          'dates': 1,
          'nyou': 1,
          'guess': 1,
          'falls': 1,
          'nsoon': 1,
          'tragic': 1,
          'lovers': 1,
          'triangle': 1,
          'develops': 1,
          'grounds': 1,
          'shes': 1,
          'handicapped': 1,
          'shy': 1,
          'might': 1,
          'wretched': 1,
          'lonely': 1,
          'enough': 1,
          'settle': 1,
          'nadult': 1,
          'interaction': 1,
          'never': 1,
          'really': 1,
          'progresses': 1,
          'beyond': 1,
          'junior': 1,
          'high': 1,
          'nin': 1,
          'writerdirector': 1,
          'labute': 1,
          'actor': 1,
          'created': 1,
          'chilling': 1,
          'monsters': 1,
          'ever': 1,
          'committed': 1,
          'filmhannibal': 1,
          'lector': 1,
          'eat': 1,
          'human': 1,
          'flesh': 1,
          'eater': 1,
          'souls': 1,
          'evil': 1,
          'subtle': 1,
          'vipers': 1,
          'watch': 1,
          'stunned': 1,
          'disbelief': 1,
          'backstabs': 1,
          'subordinates': 1,
          'deadly': 1,
          'venom': 1,
          'christines': 1,
          'heart': 1,
          'character': 1,
          'would': 1,
          'joke': 1,
          'wasnt': 1,
          'chillingly': 1,
          'worked': 1,
          'nhes': 1,
          'guy': 1,
          'takes': 1,
          'job': 1,
          'laughs': 1,
          'weakness': 1,
          'nif': 1,
          'postal': 1,
          'bag': 1,
          'full': 1,
          'handguns': 1,
          'escape': 1,
          'clearly': 1,
          'mind': 1,
          'npolitics': 1,
          'game': 1,
          'modern': 1,
          'cubiclefilled': 1,
          'playground': 1,
          'nmen': 1,
          'wears': 1,
          'guise': 1,
          'comedy': 1,
          'controversial': 1,
          'happens': 1,
          'asking': 1,
          'badly': 1,
          'wants': 1,
          'succeed': 1,
          'forces': 1,
          'prove': 1,
          'manner': 1,
          'wont': 1,
          'describe': 1,
          'scene': 1,
          'charged': 1,
          'racism': 1,
          'fraught': 1,
          'peril': 1,
          'ncould': 1,
          'nprobably': 1,
          'ntaken': 1,
          'however': 1,
          'representative': 1,
          'treatment': 1,
          'meek': 1,
          'powerful': 1,
          'facets': 1,
          'society': 1,
          'nmaybe': 1,
          'english': 1,
          'major': 1,
          'motiveless': 1,
          'cruelty': 1,
          'towards': 1,
          'careful': 1,
          'manipulation': 1,
          'seen': 1,
          'symbol': 1,
          'unbridled': 1,
          'capitalism': 1,
          'greed': 1,
          'without': 1,
          'conscience': 1,
          'entire': 1,
          'metaphor': 1,
          'darwinism': 1,
          'strong': 1,
          'survive': 1,
          'marvel': 1,
          'labutes': 1,
          'multilayered': 1,
          'disturb': 1,
          'member': 1,
          'audience': 1,
          'entirely': 1,
          'different': 1,
          'way': 1,
          'entertainment': 1,
          'nits': 1,
          'darned': 1,
          'funny': 1,
          'spots': 1,
          'particularly': 1,
          'mens': 1,
          'room': 1,
          'scenes': 1,
          'demonstrate': 1,
          'lengths': 1,
          'guys': 1,
          'hold': 1,
          'conversation': 1,
          'engaged': 1,
          'basic': 1,
          'bodily': 1,
          'less': 1,
          'drama': 1,
          'necessity': 1,
          'characters': 1,
          'tend': 1,
          'flat': 1,
          'ciphers': 1,
          'nstacy': 1,
          'gives': 1,
          'measured': 1,
          'succeeds': 1,
          'making': 1,
          'care': 1,
          'still': 1,
          'know': 1,
          'nothing': 1,
          'nlikewise': 1,
          'simply': 1,
          'sum': 1,
          'actions': 1,
          'nby': 1,
          'youll': 1,
          'feel': 1,
          'youve': 1,
          'met': 1,
          'genuine': 1,
          'monster': 1,
          'perhaps': 1,
          'also': 1,
          'classify': 1,
          'horror': 1,
          'ncertainly': 1,
          'expecting': 1,
          'conventional': 1,
          'hollywood': 1,
          'resolution': 1,
          'story': 1,
          'away': 1,
          'disappointed': 1,
          'picture': 1,
          'often': 1,
          'mesmerizing': 1,
          'fine': 1,
          'craftsmanship': 1,
          'makes': 1,
          'worth': 1,
          'time': 1,
          'nlike': 1,
          'good': 1,
          'films': 1,
          'offers': 1,
          'myriad': 1,
          'parallels': 1,
          'nwhile': 1,
          'watching': 1,
          'triumph': 1,
          'couldnt': 1,
          'help': 1,
          'bill': 1,
          'gates': 1,
          'must': 1,
          'felt': 1,
          'sort': 1,
          'cold': 1,
          'merciless': 1,
          'satisfaction': 1,
          'finally': 1,
          'stuck': 1,
          'steve': 1,
          'jobs': 1,
          'bit': 1,
          'taken': 1,
          'chadness': 1,
          'art': 1,
          'npos': 1}),
 Counter({'good': 9,
          'quaid': 6,
          'mars': 6,
          'nthe': 5,
          'none': 4,
          'played': 4,
          'film': 4,
          'goes': 4,
          'action': 4,
          'bad': 4,
          'schwarzenegger': 3,
          'wife': 3,
          'plot': 3,
          'nquaid': 3,
          'cohagen': 3,
          'air': 3,
          'like': 3,
          'pretty': 3,
          'getting': 3,
          'nbut': 3,
          'course': 3,
          'guys': 3,
          'great': 3,
          'red': 2,
          'two': 2,
          'face': 2,
          'wakes': 2,
          'nhe': 2,
          'next': 2,
          'beautiful': 2,
          'recall': 2,
          'never': 2,
          'planet': 2,
          'hes': 2,
          'called': 2,
          'rekall': 2,
          'agent': 2,
          'really': 2,
          'wrong': 2,
          'minutes': 2,
          'normal': 2,
          'cant': 2,
          'remember': 2,
          'thing': 2,
          'knows': 2,
          'gets': 2,
          'rebels': 2,
          'yet': 2,
          'reactor': 2,
          'deaths': 2,
          'lot': 2,
          'death': 2,
          'sex': 2,
          'movie': 2,
          'heads': 2,
          'violent': 2,
          'useless': 2,
          'even': 2,
          'hero': 2,
          'poor': 2,
          'end': 2,
          'special': 2,
          'effects': 2,
          'work': 2,
          'model': 2,
          'look': 2,
          'hugely': 2,
          'booming': 1,
          'introduction': 1,
          'music': 1,
          'finishes': 1,
          'camera': 1,
          'sweeps': 1,
          'mountains': 1,
          'nwe': 1,
          'see': 1,
          'figures': 1,
          'looking': 1,
          'barren': 1,
          'landscape': 1,
          'nthey': 1,
          'kiss': 1,
          'walk': 1,
          'characters': 1,
          'slips': 1,
          'falls': 1,
          'glass': 1,
          'mask': 1,
          'cracks': 1,
          'nhis': 1,
          'scruches': 1,
          'eyes': 1,
          'begin': 1,
          'pop': 1,
          'nthen': 1,
          'doug': 1,
          'nits': 1,
          'dream': 1,
          'stone': 1,
          'begins': 1,
          'ntotal': 1,
          'typical': 1,
          'scifi': 1,
          'wrapped': 1,
          'around': 1,
          'intresting': 1,
          'far': 1,
          'fetched': 1,
          'keeps': 1,
          'dreams': 1,
          'colanised': 1,
          'day': 1,
          'riding': 1,
          'train': 1,
          'sees': 1,
          'ad': 1,
          'company': 1,
          'implants': 1,
          'memories': 1,
          'holiday': 1,
          'instead': 1,
          'actually': 1,
          'going': 1,
          'chooses': 1,
          'secret': 1,
          'memory': 1,
          'hits': 1,
          'fan': 1,
          'implant': 1,
          'thinks': 1,
          'back': 1,
          'nhowever': 1,
          'everyone': 1,
          'workmates': 1,
          'turn': 1,
          'saying': 1,
          'blabbed': 1,
          'blew': 1,
          'cover': 1,
          'mission': 1,
          'strange': 1,
          'man': 1,
          'richter': 1,
          'ironside': 1,
          'wants': 1,
          'kill': 1,
          'hopelessly': 1,
          'confused': 1,
          'follows': 1,
          'advice': 1,
          'given': 1,
          'friend': 1,
          'ass': 1,
          'nmars': 1,
          'ruled': 1,
          'cox': 1,
          'charges': 1,
          'people': 1,
          'nagainst': 1,
          'mainly': 1,
          'mutants': 1,
          'need': 1,
          'defeat': 1,
          'produces': 1,
          'neventually': 1,
          'kills': 1,
          'turns': 1,
          'saves': 1,
          'away': 1,
          'girl': 1,
          'guy': 1,
          'promised': 1,
          'nthroughout': 1,
          'huge': 1,
          'explosions': 1,
          'thousands': 1,
          'mean': 1,
          'swearing': 1,
          'everything': 1,
          'else': 1,
          'makes': 1,
          'verhoeven': 1,
          'director': 1,
          'basic': 1,
          'instinct': 1,
          'starship': 1,
          'troopers': 1,
          'nnaturally': 1,
          'theres': 1,
          'imaginative': 1,
          'arms': 1,
          'ripped': 1,
          'someone': 1,
          'drilled': 1,
          'exploding': 1,
          'nas': 1,
          'tell': 1,
          'stuff': 1,
          'done': 1,
          'stylishly': 1,
          'arnie': 1,
          'tones': 1,
          'one': 1,
          'liner': 1,
          'thats': 1,
          'excusable': 1,
          'acting': 1,
          'variable': 1,
          'narnie': 1,
          'lines': 1,
          'first': 1,
          'twenty': 1,
          'acts': 1,
          'bloke': 1,
          'nstone': 1,
          'making': 1,
          'scenes': 1,
          'alright': 1,
          'nticoton': 1,
          'recently': 1,
          'seen': 1,
          'con': 1,
          'ok': 1,
          'emotions': 1,
          'minute': 1,
          'hates': 1,
          'loves': 1,
          'tranisition': 1,
          'right': 1,
          'nso': 1,
          'awful': 1,
          'excellent': 1,
          'ncox': 1,
          'basically': 1,
          'reprising': 1,
          'robocop': 1,
          'still': 1,
          'delivers': 1,
          'best': 1,
          'line': 1,
          'whole': 1,
          'near': 1,
          'nironside': 1,
          'superbly': 1,
          'evil': 1,
          'utterly': 1,
          'emotionless': 1,
          'supporting': 1,
          'cast': 1,
          'fine': 1,
          'comedy': 1,
          'sidekick': 1,
          'time': 1,
          'form': 1,
          'taxi': 1,
          'driver': 1,
          'annoying': 1,
          'disappointing': 1,
          'aspect': 1,
          'though': 1,
          'nilm': 1,
          'dreamquest': 1,
          'subway': 1,
          'station': 1,
          'scene': 1,
          'nsome': 1,
          'appaling': 1,
          'fake': 1,
          'quatto': 1,
          'major': 1,
          'disappointment': 1,
          'nanother': 1,
          'irritating': 1,
          'product': 1,
          'placement': 1,
          'nthere': 1,
          'plugs': 1,
          'today': 1,
          'gag': 1,
          'however': 1,
          'sets': 1,
          'arent': 1,
          'either': 1,
          'ntheres': 1,
          'also': 1,
          'soundtrack': 1,
          'running': 1,
          'jerry': 1,
          'goldsmith': 1,
          'omen': 1,
          'poltergeist': 1,
          'star': 1,
          'trek': 1,
          'motion': 1,
          'picture': 1,
          'noverall': 1,
          'total': 1,
          'enjoyable': 1,
          'fest': 1,
          'reasonable': 1,
          'thrown': 1,
          'imaganitive': 1,
          'nfor': 1,
          'nin': 1,
          'fact': 1,
          'npos': 1}),
 Counter({'one': 8,
          'sethe': 6,
          'book': 5,
          'film': 5,
          'beloved': 5,
          'sethes': 5,
          'ghost': 5,
          'novel': 4,
          'morrisons': 4,
          'story': 4,
          'nthe': 4,
          'years': 4,
          'woman': 4,
          'films': 4,
          'end': 3,
          'know': 3,
          'denver': 3,
          'paul': 3,
          'demme': 3,
          'role': 3,
          'suggs': 3,
          '_the': 3,
          'demmes': 2,
          '_beloved_': 2,
          'non': 2,
          'hand': 2,
          'storys': 2,
          'nthis': 2,
          'choice': 2,
          'much': 2,
          'long': 2,
          'n_beloved_': 2,
          'takes': 2,
          'nfor': 2,
          'slave': 2,
          'escaped': 2,
          'kentucky': 2,
          'farmhouse': 2,
          'terror': 2,
          'would': 2,
          'family': 2,
          'across': 2,
          'run': 2,
          'daughter': 2,
          'take': 2,
          'ghosts': 2,
          'glover': 2,
          'house': 2,
          'later': 2,
          'doesnt': 2,
          'nas': 2,
          'fact': 2,
          'nsethe': 2,
          'least': 2,
          'newton': 2,
          'appears': 2,
          'eighteen': 2,
          'make': 2,
          'baby': 2,
          'used': 2,
          'viewer': 2,
          'movie': 2,
          'like': 2,
          'jonathan': 1,
          'based': 1,
          'toni': 1,
          'morrison': 1,
          'study': 1,
          'skillful': 1,
          'literary': 1,
          'adaptation': 1,
          'manages': 1,
          'recreate': 1,
          'key': 1,
          'moments': 1,
          'evoking': 1,
          'pragmatic': 1,
          'narrative': 1,
          'style': 1,
          'without': 1,
          'using': 1,
          'authorial': 1,
          'voice': 1,
          'omits': 1,
          'finer': 1,
          'details': 1,
          'favoring': 1,
          'ambiguously': 1,
          'defined': 1,
          'back': 1,
          'upon': 1,
          'build': 1,
          'main': 1,
          'events': 1,
          'smartly': 1,
          'made': 1,
          'creates': 1,
          'open': 1,
          'space': 1,
          'wide': 1,
          'range': 1,
          'emotions': 1,
          'gestate': 1,
          'grow': 1,
          'nindeed': 1,
          'impact': 1,
          'protracted': 1,
          'felt': 1,
          'credits': 1,
          'rolled': 1,
          'place': 1,
          'second': 1,
          'half': 1,
          '19th': 1,
          'century': 1,
          'socalled': 1,
          'reconstruction': 1,
          'era': 1,
          'civil': 1,
          'war': 1,
          'newlyfreed': 1,
          'slaves': 1,
          'time': 1,
          'confusion': 1,
          'turmoil': 1,
          'noprah': 1,
          'winfrey': 1,
          'plantation': 1,
          'took': 1,
          'children': 1,
          'ohio': 1,
          'hoped': 1,
          'nwhat': 1,
          'follow': 1,
          'remain': 1,
          'physical': 1,
          'threat': 1,
          'vanished': 1,
          'ultimately': 1,
          'tells': 1,
          'search': 1,
          'forgiveness': 1,
          'longhampered': 1,
          'unforgettable': 1,
          'sin': 1,
          'starts': 1,
          'dreary': 1,
          'day': 1,
          'ten': 1,
          'escape': 1,
          'violent': 1,
          'unseen': 1,
          'energy': 1,
          'rocks': 1,
          'dilapidated': 1,
          'ninvisible': 1,
          'hands': 1,
          'terrorize': 1,
          'flinging': 1,
          'objects': 1,
          'rooms': 1,
          'shaking': 1,
          'tables': 1,
          'rattling': 1,
          'floorboards': 1,
          'nsethes': 1,
          'sons': 1,
          'away': 1,
          'perhaps': 1,
          'good': 1,
          'leaving': 1,
          'fend': 1,
          'ndemmes': 1,
          'matteroffact': 1,
          'handling': 1,
          'supernatural': 1,
          'element': 1,
          '_beloved_s': 1,
          'intriguing': 1,
          'aspects': 1,
          'nall': 1,
          'characters': 1,
          'granted': 1,
          'real': 1,
          'nwhen': 1,
          'danny': 1,
          'former': 1,
          'along': 1,
          'arrives': 1,
          'eight': 1,
          'confronted': 1,
          'hellish': 1,
          'visions': 1,
          'ninstead': 1,
          'asks': 1,
          'quickly': 1,
          'establishes': 1,
          'horror': 1,
          'come': 1,
          'terrifying': 1,
          'past': 1,
          'created': 1,
          'haunted': 1,
          'fears': 1,
          'nin': 1,
          'reasons': 1,
          'chooses': 1,
          'stay': 1,
          'bizarre': 1,
          'turn': 1,
          'appearance': 1,
          'thandie': 1,
          'young': 1,
          'blackclad': 1,
          'front': 1,
          'lawn': 1,
          'leaned': 1,
          'christlike': 1,
          'tree': 1,
          'stump': 1,
          'immediately': 1,
          'rasping': 1,
          'try': 1,
          'nurse': 1,
          'health': 1,
          'nthey': 1,
          'matter': 1,
          'nonly': 1,
          'suspicious': 1,
          'stranger': 1,
          'nlittle': 1,
          'bring': 1,
          'many': 1,
          'changes': 1,
          'force': 1,
          'release': 1,
          'guilt': 1,
          'held': 1,
          'onto': 1,
          'urgently': 1,
          'nwinfrey': 1,
          'arguably': 1,
          'beloveds': 1,
          'greatest': 1,
          'asset': 1,
          'nshe': 1,
          'inhabits': 1,
          'convincingly': 1,
          'hard': 1,
          'believe': 1,
          'shines': 1,
          'brightly': 1,
          'tv': 1,
          'talk': 1,
          'show': 1,
          'nlisa': 1,
          'gay': 1,
          'hamilton': 1,
          'impressive': 1,
          'job': 1,
          'emotionally': 1,
          'demanding': 1,
          'younger': 1,
          'whose': 1,
          'appalling': 1,
          'actions': 1,
          'disturbed': 1,
          'see': 1,
          'ndanny': 1,
          'affable': 1,
          'sympathetic': 1,
          'kimberly': 1,
          'elise': 1,
          'wanderlusting': 1,
          'sagelike': 1,
          'motherinlaw': 1,
          'old': 1,
          'beah': 1,
          'richards': 1,
          'authoritatively': 1,
          'commands': 1,
          'every': 1,
          'scene': 1,
          'palatable': 1,
          'casting': 1,
          'unfortunately': 1,
          'nthandie': 1,
          'plays': 1,
          'glassyeyed': 1,
          'girl': 1,
          'demented': 1,
          'fervor': 1,
          'endearing': 1,
          'first': 1,
          'becomes': 1,
          'offputting': 1,
          'unintentionally': 1,
          'laughable': 1,
          'ndeparting': 1,
          'honed': 1,
          'aesthetic': 1,
          'silence': 1,
          'lambs_': 1,
          '_melvin': 1,
          'howard_': 1,
          'director': 1,
          'bit': 1,
          'dramatic': 1,
          'overstatement': 1,
          'get': 1,
          'vivid': 1,
          'descriptions': 1,
          'ntotemic': 1,
          'camera': 1,
          'shots': 1,
          'colorsaturated': 1,
          'scenery': 1,
          'decidedly': 1,
          'uncommon': 1,
          'uses': 1,
          'work': 1,
          'benefit': 1,
          'n_beloved_s': 1,
          'memorable': 1,
          'scenes': 1,
          'gatherings': 1,
          'forest': 1,
          'clearing': 1,
          'bright': 1,
          'yellowgreens': 1,
          'nature': 1,
          'entrance': 1,
          'words': 1,
          'part': 1,
          'though': 1,
          'maintains': 1,
          'trademark': 1,
          'directorial': 1,
          'neutrality': 1,
          'combined': 1,
          'equally': 1,
          'frugal': 1,
          'method': 1,
          'storytelling': 1,
          'may': 1,
          'somewhat': 1,
          'challenge': 1,
          'watch': 1,
          'even': 1,
          'familiar': 1,
          'nthough': 1,
          'compliments': 1,
          'extraordinarily': 1,
          'well': 1,
          'falls': 1,
          'short': 1,
          'allowing': 1,
          'sort': 1,
          'accessibility': 1,
          'usually': 1,
          'expects': 1,
          'nnothing': 1,
          'spoonfed': 1,
          'nmorrisons': 1,
          'enigmatic': 1,
          'unlike': 1,
          'put': 1,
          'allow': 1,
          'various': 1,
          'undercurrents': 1,
          'themes': 1,
          'churn': 1,
          'absorb': 1,
          'begins': 1,
          '_poltergeist_': 1,
          'ends': 1,
          'color': 1,
          'purple_': 1,
          'shades': 1,
          'scarlet': 1,
          'letter_': 1,
          '_little': 1,
          'women_': 1,
          'somewhere': 1,
          'middle': 1,
          'ntaken': 1,
          'whole': 1,
          'disquieting': 1,
          'oneofakind': 1,
          'experience': 1,
          'viewed': 1,
          'guards': 1,
          'spirits': 1,
          'abeyance': 1,
          'npos': 1}),
 Counter({'scream': 12,
          '2': 9,
          'movie': 6,
          'original': 6,
          'horror': 5,
          'sidney': 5,
          'theres': 4,
          'two': 4,
          'little': 4,
          'stab': 4,
          'dont': 3,
          'one': 3,
          'films': 3,
          'craven': 3,
          'david': 3,
          'film': 3,
          'features': 3,
          'characters': 3,
          'pinkett': 3,
          'scenes': 3,
          'go': 2,
          'latest': 2,
          'slasher': 2,
          'nscream': 2,
          'nthe': 2,
          'surprise': 2,
          'whose': 2,
          'time': 2,
          'na': 2,
          'sequel': 2,
          'williamson': 2,
          'neve': 2,
          'campbell': 2,
          'courtney': 2,
          'cox': 2,
          'arquette': 2,
          'jamie': 2,
          'kennedy': 2,
          'liev': 2,
          'schreiber': 2,
          'nas': 2,
          'lot': 2,
          'less': 2,
          'ncraven': 2,
          'second': 2,
          'movies': 2,
          'first': 2,
          'picture': 2,
          'prologue': 2,
          'victims': 2,
          'epps': 2,
          'local': 2,
          'addition': 2,
          'boyfriend': 2,
          'act': 2,
          'played': 2,
          'prescott': 2,
          'see': 2,
          'fun': 2,
          'windsor': 2,
          'college': 2,
          'murder': 2,
          'big': 2,
          'last': 2,
          'sorority': 2,
          'sisters': 2,
          'like': 2,
          'could': 2,
          'n': 2,
          'end': 2,
          'isnt': 1,
          'quite': 1,
          'clever': 1,
          'predecessor': 1,
          'fills': 1,
          'gap': 1,
          'cutting': 1,
          'wit': 1,
          'ndeath': 1,
          'even': 1,
          'gruesome': 1,
          'bloody': 1,
          'death': 1,
          'funny': 1,
          'handled': 1,
          'right': 1,
          'way': 1,
          'offended': 1,
          'statement': 1,
          'need': 1,
          'look': 1,
          'pulp': 1,
          'fiction': 1,
          'example': 1,
          'nand': 1,
          'plenty': 1,
          'around': 1,
          '90s': 1,
          'flick': 1,
          'incarnation': 1,
          'also': 1,
          'laughs': 1,
          'sliceanddice': 1,
          'take': 1,
          'seriously': 1,
          'success': 1,
          'took': 1,
          'everyone': 1,
          'industry': 1,
          'unexpected': 1,
          'blockbuster': 1,
          'gross': 1,
          'soared': 1,
          '100': 1,
          'million': 1,
          'mark': 1,
          'six': 1,
          'month': 1,
          'release': 1,
          'window': 1,
          'opened': 1,
          'year': 1,
          'ago': 1,
          'turned': 1,
          'profitable': 1,
          'inevitable': 1,
          'fortunately': 1,
          'nearly': 1,
          'entire': 1,
          'creative': 1,
          'team': 1,
          'returned': 1,
          'including': 1,
          'director': 1,
          'wes': 1,
          'screenwriter': 1,
          'kevin': 1,
          'actors': 1,
          'stipulated': 1,
          'rules': 1,
          'sequels': 1,
          'uttered': 1,
          'obsessed': 1,
          'character': 1,
          'body': 1,
          'count': 1,
          'higher': 1,
          'nparadoxically': 1,
          'gore': 1,
          'nthere': 1,
          'blood': 1,
          'course': 1,
          'nothing': 1,
          'excessive': 1,
          'slashermovie': 1,
          'standards': 1,
          'depictions': 1,
          'spilled': 1,
          'entrails': 1,
          'remembered': 1,
          'scares': 1,
          'important': 1,
          'graphic': 1,
          'displays': 1,
          'human': 1,
          'insides': 1,
          'bodily': 1,
          'fluids': 1,
          'strength': 1,
          'gallery': 1,
          'legitimate': 1,
          'rather': 1,
          'group': 1,
          'cardboard': 1,
          'cutout': 1,
          'stereotypes': 1,
          'lined': 1,
          'slaughter': 1,
          'nafter': 1,
          'weve': 1,
          'known': 1,
          'people': 1,
          'almost': 1,
          'impossible': 1,
          'care': 1,
          'least': 1,
          'opens': 1,
          'approximately': 1,
          'years': 1,
          'slick': 1,
          'selfmocking': 1,
          'nthis': 1,
          'jada': 1,
          'omar': 1,
          'visiting': 1,
          'theater': 1,
          'preview': 1,
          'screening': 1,
          'based': 1,
          'true': 1,
          'life': 1,
          'events': 1,
          'nsome': 1,
          'smartest': 1,
          'dialogue': 1,
          'comes': 1,
          'sequence': 1,
          'bemoans': 1,
          'lack': 1,
          'african': 1,
          'american': 1,
          'participation': 1,
          'surely': 1,
          'coincidence': 1,
          'black': 1,
          'nshortly': 1,
          'thereafter': 1,
          'gutted': 1,
          'signaling': 1,
          'beginning': 1,
          'series': 1,
          'copycat': 1,
          'murders': 1,
          'lets': 1,
          'loose': 1,
          'burst': 1,
          'tongueincheek': 1,
          'creativity': 1,
          'within': 1,
          'sequences': 1,
          'nthey': 1,
          'give': 1,
          'opportunity': 1,
          'openly': 1,
          'parody': 1,
          'accomplishes': 1,
          'great': 1,
          'panache': 1,
          'nstab': 1,
          'heather': 1,
          'graham': 1,
          'casey': 1,
          'becker': 1,
          'role': 1,
          'drew': 1,
          'barrymore': 1,
          'tori': 1,
          'spelling': 1,
          'nsadly': 1,
          'couple': 1,
          'nit': 1,
          'would': 1,
          'think': 1,
          'used': 1,
          'joe': 1,
          'dantes': 1,
          'approach': 1,
          'matinee': 1,
          'shown': 1,
          'lengthy': 1,
          'excerpts': 1,
          'satirical': 1,
          'production': 1,
          'nfollowing': 1,
          'reintroduced': 1,
          'left': 1,
          'sleepy': 1,
          'hometown': 1,
          'nher': 1,
          'friend': 1,
          'randy': 1,
          'student': 1,
          'well': 1,
          'hes': 1,
          'knowledgeable': 1,
          'ever': 1,
          'nonce': 1,
          'double': 1,
          'becomes': 1,
          'news': 1,
          'media': 1,
          'converges': 1,
          'looking': 1,
          'interview': 1,
          'victim': 1,
          'nat': 1,
          'head': 1,
          'flock': 1,
          'vultures': 1,
          'gale': 1,
          'weathers': 1,
          'nshe': 1,
          'brought': 1,
          'cotton': 1,
          'weary': 1,
          'man': 1,
          'falsely': 1,
          'accused': 1,
          'nalso': 1,
          'arriving': 1,
          'deputy': 1,
          'dewey': 1,
          'brother': 1,
          'round': 1,
          'tribulations': 1,
          'nin': 1,
          'survivors': 1,
          'field': 1,
          'potential': 1,
          'wellpopulated': 1,
          'ntheres': 1,
          'blond': 1,
          'coed': 1,
          'named': 1,
          'cece': 1,
          'sarah': 1,
          'michelle': 1,
          'gellar': 1,
          'appeared': 1,
          'williamsons': 1,
          'know': 1,
          'summer': 1,
          'sidneys': 1,
          'requisite': 1,
          'derek': 1,
          'jerry': 1,
          'oconnell': 1,
          'newswoman': 1,
          'laurie': 1,
          'metcalf': 1,
          'gales': 1,
          'new': 1,
          'cameraman': 1,
          'duane': 1,
          'martin': 1,
          'british': 1,
          'drama': 1,
          'teacher': 1,
          'warner': 1,
          'several': 1,
          'wouldbe': 1,
          'portia': 1,
          'de': 1,
          'rossi': 1,
          'rebecca': 1,
          'gayheart': 1,
          'elise': 1,
          'neal': 1,
          'marisol': 1,
          'nichols': 1,
          'nultimately': 1,
          'lots': 1,
          'attractive': 1,
          'corpses': 1,
          'nfrom': 1,
          'lines': 1,
          'brothers': 1,
          'long': 1,
          'situations': 1,
          'clearly': 1,
          'enjoyable': 1,
          'overlong': 1,
          'livelier': 1,
          'hour': 1,
          'better': 1,
          'ntheir': 1,
          'resolution': 1,
          'obligatory': 1,
          'whodunit': 1,
          'nis': 1,
          'letdown': 1,
          'knowingly': 1,
          'offers': 1,
          'wink': 1,
          'nod': 1,
          'past': 1,
          'unmasking': 1,
          'nice': 1,
          'twist': 1,
          'quips': 1,
          'killer': 1,
          'didnt': 1,
          'coming': 1,
          'didya': 1,
          'none': 1,
          'senses': 1,
          'however': 1,
          'overall': 1,
          'concept': 1,
          'hip': 1,
          'selfreferential': 1,
          'nsupposedly': 1,
          'going': 1,
          '3': 1,
          'makers': 1,
          'come': 1,
          'something': 1,
          'radical': 1,
          'classic': 1,
          'case': 1,
          'overkill': 1,
          'npos': 1}),
 Counter({'beau': 7,
          'reese': 7,
          'nthe': 6,
          'becomes': 4,
          'mom': 3,
          'margaret': 3,
          'swinton': 3,
          'lake': 3,
          'body': 3,
          'deep': 3,
          'end': 3,
          'turn': 3,
          'year': 2,
          'old': 2,
          'tucker': 2,
          'gets': 2,
          'car': 2,
          'companion': 2,
          'tahoe': 2,
          'learns': 2,
          'mother': 2,
          'dead': 2,
          'spera': 2,
          'visnjic': 2,
          'jack': 2,
          'shows': 2,
          'even': 2,
          'apparent': 2,
          'concerns': 2,
          'later': 2,
          'yet': 2,
          'terrific': 2,
          'directors': 2,
          'mcgehee': 2,
          'reno': 2,
          'set': 2,
          'though': 2,
          'comes': 2,
          'love': 2,
          'nhis': 2,
          'deeper': 2,
          'early': 2,
          'story': 2,
          '17': 1,
          'hall': 1,
          'jonathan': 1,
          'virgin': 1,
          'suicides': 1,
          'accident': 1,
          'drinking': 1,
          '30': 1,
          'club': 1,
          'owner': 1,
          'darby': 1,
          'josh': 1,
          'lucas': 1,
          'session': 1,
          '9': 1,
          'tilda': 1,
          'war': 1,
          'zone': 1,
          'pays': 1,
          'visit': 1,
          'convince': 1,
          'leave': 1,
          'son': 1,
          'alone': 1,
          'ninstead': 1,
          'travels': 1,
          'home': 1,
          'lures': 1,
          'boat': 1,
          'house': 1,
          'right': 1,
          'next': 1,
          'morning': 1,
          'discovers': 1,
          'darbys': 1,
          'beach': 1,
          'suspecting': 1,
          'worst': 1,
          'weights': 1,
          'distant': 1,
          'part': 1,
          'nbut': 1,
          'troubles': 1,
          'beginning': 1,
          'soon': 1,
          'arrival': 1,
          'blackmailer': 1,
          'alek': 1,
          'goran': 1,
          'practical': 1,
          'magic': 1,
          'incredibly': 1,
          'pale': 1,
          'redheaded': 1,
          'scottish': 1,
          'actress': 1,
          'immerses': 1,
          'role': 1,
          'reserved': 1,
          'american': 1,
          'supermom': 1,
          'whose': 1,
          'life': 1,
          'revolves': 1,
          'around': 1,
          'serving': 1,
          'needs': 1,
          'three': 1,
          'children': 1,
          'livein': 1,
          'fatherinlaw': 1,
          'peter': 1,
          'donat': 1,
          'game': 1,
          'nshe': 1,
          'great': 1,
          'strength': 1,
          'allowing': 1,
          'emotions': 1,
          'glimmer': 1,
          'discomfort': 1,
          'challenging': 1,
          'gay': 1,
          'disco': 1,
          'named': 1,
          'near': 1,
          'panic': 1,
          'dive': 1,
          'retrieve': 1,
          'keys': 1,
          'wry': 1,
          'humor': 1,
          'attempt': 1,
          'get': 1,
          'help': 1,
          'hopelessly': 1,
          'miscommunicated': 1,
          'ngradually': 1,
          'loneliness': 1,
          'husbands': 1,
          'naval': 1,
          'officer': 1,
          'usually': 1,
          'away': 1,
          'sea': 1,
          'attempts': 1,
          'email': 1,
          'deleted': 1,
          'unusual': 1,
          'chaste': 1,
          'romance': 1,
          'turns': 1,
          'tragic': 1,
          'nits': 1,
          'performance': 1,
          'stendahl': 1,
          'syndromelike': 1,
          'script': 1,
          'adapted': 1,
          'elisabeth': 1,
          'sanxay': 1,
          'holdings': 1,
          '40s': 1,
          'noir': 1,
          'novel': 1,
          'blank': 1,
          'wall': 1,
          'scott': 1,
          'david': 1,
          'siegel': 1,
          'would': 1,
          'unbelievable': 1,
          'costar': 1,
          'nalek': 1,
          'wrong': 1,
          'side': 1,
          'tracks': 1,
          'loser': 1,
          'arrives': 1,
          'reeses': 1,
          'discovered': 1,
          'nhe': 1,
          'videotape': 1,
          'sex': 1,
          'demands': 1,
          '50': 1,
          '000': 1,
          'hell': 1,
          'tape': 1,
          'police': 1,
          'nsubsequent': 1,
          'visits': 1,
          'mind': 1,
          'upside': 1,
          'backwards': 1,
          'admire': 1,
          'woman': 1,
          'blackmail': 1,
          'ntheres': 1,
          'another': 1,
          'problem': 1,
          'partner': 1,
          'nagle': 1,
          'raymond': 1,
          'barry': 1,
          'man': 1,
          'walking': 1,
          'harder': 1,
          'cored': 1,
          'criminal': 1,
          'wont': 1,
          'let': 1,
          'share': 1,
          'money': 1,
          'delivered': 1,
          'nvisnjics': 1,
          'dark': 1,
          'brooding': 1,
          'interior': 1,
          'shading': 1,
          'makes': 1,
          'us': 1,
          'believe': 1,
          'hes': 1,
          'victim': 1,
          'circumstance': 1,
          'environment': 1,
          'turnaround': 1,
          'palpable': 1,
          'witnesses': 1,
          'margarets': 1,
          'inherent': 1,
          'decency': 1,
          'workaday': 1,
          'surroundings': 1,
          'nalso': 1,
          'outstanding': 1,
          'character': 1,
          'arc': 1,
          'pas': 1,
          'de': 1,
          'deux': 1,
          'ninitially': 1,
          'beaus': 1,
          'typical': 1,
          'sullen': 1,
          'teen': 1,
          'nyoure': 1,
          'blowing': 1,
          'proportion': 1,
          'says': 1,
          'comprehending': 1,
          'enough': 1,
          'insight': 1,
          'divined': 1,
          'true': 1,
          'nature': 1,
          'relationship': 1,
          'nas': 1,
          'trying': 1,
          'cover': 1,
          'crime': 1,
          'didnt': 1,
          'commit': 1,
          'suspicious': 1,
          'actions': 1,
          'new': 1,
          'turning': 1,
          'tables': 1,
          'black': 1,
          'eye': 1,
          'split': 1,
          'lip': 1,
          'nwhile': 1,
          'two': 1,
          'never': 1,
          'completely': 1,
          'honest': 1,
          'strongly': 1,
          'suture': 1,
          'firm': 1,
          'grip': 1,
          'material': 1,
          'cast': 1,
          'builds': 1,
          'perfectly': 1,
          'bold': 1,
          'strokes': 1,
          'amidst': 1,
          'myriad': 1,
          'subtler': 1,
          'underpinnings': 1,
          'nwater': 1,
          'imagery': 1,
          'constant': 1,
          'shot': 1,
          'weirdly': 1,
          'rushing': 1,
          'green': 1,
          'revealed': 1,
          'young': 1,
          'boy': 1,
          'cleaning': 1,
          'aquarium': 1,
          'ngiles': 1,
          'nuttgens': 1,
          'fire': 1,
          'cinematography': 1,
          '2001': 1,
          'sundance': 1,
          'festival': 1,
          'award': 1,
          'crisp': 1,
          'startlingly': 1,
          'clear': 1,
          'locations': 1,
          'production': 1,
          'design': 1,
          'kelly': 1,
          'christopher': 1,
          'tandon': 1,
          'provide': 1,
          'dual': 1,
          'personality': 1,
          'film': 1,
          'contrasting': 1,
          'calm': 1,
          'well': 1,
          'existence': 1,
          'gambling': 1,
          'city': 1,
          'n': 1,
          'complex': 1,
          'domino': 1,
          'deeds': 1,
          'shifting': 1,
          'relationships': 1,
          'ntake': 1,
          'plunge': 1,
          'npos': 1}),
 Counter({'shakespeares': 4,
          'juliet': 4,
          'film': 3,
          'decaprio': 2,
          'danes': 2,
          'luhrmanns': 2,
          'version': 2,
          'romeo': 2,
          'sorvino': 2,
          'dennehy': 2,
          'boys': 2,
          'one': 2,
          'another': 2,
          'like': 2,
          'old': 2,
          'could': 2,
          'rival': 2,
          'led': 2,
          'problem': 2,
          'movie': 2,
          'leonardo': 1,
          'whats': 1,
          'eating': 1,
          'gilbert': 1,
          'grape': 1,
          'claire': 1,
          'tvs': 1,
          'called': 1,
          'life': 1,
          'star': 1,
          'director': 1,
          'baz': 1,
          'modernized': 1,
          'william': 1,
          'classic': 1,
          'nsurrounded': 1,
          'superb': 1,
          'supporting': 1,
          'cast': 1,
          'including': 1,
          'paul': 1,
          'goodfellas': 1,
          'brian': 1,
          'tommy': 1,
          'boy': 1,
          'pete': 1,
          'poslethwaite': 1,
          'usual': 1,
          'suspects': 1,
          'john': 1,
          'leguizamo': 1,
          'executive': 1,
          'decision': 1,
          'shine': 1,
          'throughout': 1,
          'nthe': 1,
          'story': 1,
          'starts': 1,
          'gas': 1,
          'station': 1,
          'montague': 1,
          'meet': 1,
          'capulet': 1,
          'square': 1,
          'nsymbolizing': 1,
          'swords': 1,
          'day': 1,
          'weapons': 1,
          'rapier9mm': 1,
          'longsword': 1,
          'shotgun': 1,
          'ninstead': 1,
          'killing': 1,
          'right': 1,
          'away': 1,
          'shoot': 1,
          'around': 1,
          'sword': 1,
          'fights': 1,
          'nanother': 1,
          'great': 1,
          'thing': 1,
          'performance': 1,
          'harold': 1,
          'perrineau': 1,
          'romeos': 1,
          'best': 1,
          'friend': 1,
          'nmercutio': 1,
          'novel': 1,
          'quite': 1,
          'stud': 1,
          'portrayed': 1,
          'africanamerican': 1,
          'crossdresser': 1,
          'whose': 1,
          'violent': 1,
          'nature': 1,
          'definite': 1,
          'plus': 1,
          'nmiriam': 1,
          'margoyles': 1,
          'virtually': 1,
          'unknown': 1,
          'actress': 1,
          'astounding': 1,
          'juliets': 1,
          'nurse': 1,
          'even': 1,
          'though': 1,
          'never': 1,
          'given': 1,
          'name': 1,
          'nshe': 1,
          'keep': 1,
          'fantasy': 1,
          'world': 1,
          'nverona': 1,
          'home': 1,
          'families': 1,
          'slightly': 1,
          'changed': 1,
          'nnow': 1,
          'known': 1,
          'verona': 1,
          'beach': 1,
          'capulets': 1,
          'montagues': 1,
          'corporate': 1,
          'dynasties': 1,
          'nand': 1,
          'small': 1,
          'family': 1,
          'skirmishes': 1,
          'huge': 1,
          'gang': 1,
          'wars': 1,
          'none': 1,
          'slight': 1,
          'difficulty': 1,
          'comprehend': 1,
          'dialogue': 1,
          'since': 1,
          'spoken': 1,
          'english': 1,
          'nsubtitles': 1,
          'helped': 1,
          'beginning': 1,
          'toward': 1,
          'end': 1,
          'became': 1,
          'easier': 1,
          'understand': 1,
          'nthis': 1,
          'excellent': 1,
          'poses': 1,
          'genre': 1,
          'nromeo': 1,
          'contains': 1,
          'much': 1,
          'drama': 1,
          'yet': 1,
          'enough': 1,
          'comedy': 1,
          'action': 1,
          'placed': 1,
          'either': 1,
          'categories': 1,
          'nwith': 1,
          'awardwinning': 1,
          'formula': 1,
          'used': 1,
          'quentin': 1,
          'tarantino': 1,
          'reservoir': 1,
          'dogs': 1,
          'pulp': 1,
          'fiction': 1,
          'sure': 1,
          'fire': 1,
          'modern': 1,
          'masterpiece': 1,
          'n': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'south': 6,
          'park': 6,
          'nbut': 5,
          'kids': 4,
          'kid': 3,
          'terrance': 3,
          'phillip': 3,
          'get': 3,
          'bigger': 2,
          'longer': 2,
          'uncut': 2,
          'tv': 2,
          'show': 2,
          'cartman': 2,
          'nkenny': 2,
          'talks': 2,
          'regular': 2,
          'nand': 2,
          'kyle': 2,
          'nthe': 2,
          'kenny': 2,
          'fire': 2,
          'tickets': 2,
          'anyone': 2,
          'nwhile': 2,
          'laughing': 2,
          'cuss': 2,
          'go': 2,
          'isnt': 2,
          'good': 2,
          'voices': 1,
          'trey': 1,
          'parker': 1,
          'matt': 1,
          'stone': 1,
          'george': 1,
          'clooney': 1,
          'minnie': 1,
          'driver': 1,
          'n': 1,
          'undoubtedly': 1,
          'crude': 1,
          'offensive': 1,
          'meanspirited': 1,
          'comes': 1,
          'politcally': 1,
          'correct': 1,
          'nif': 1,
          'canadian': 1,
          'strong': 1,
          'christian': 1,
          'fat': 1,
          'gay': 1,
          'anything': 1,
          'else': 1,
          'offended': 1,
          'watch': 1,
          'doubt': 1,
          'laugh': 1,
          'nbased': 1,
          'wildly': 1,
          'popular': 1,
          'comedy': 1,
          'central': 1,
          'stars': 1,
          'overweight': 1,
          'foulmouthed': 1,
          'attitude': 1,
          'sweet': 1,
          'side': 1,
          'poor': 1,
          'gets': 1,
          'killed': 1,
          'every': 1,
          'episode': 1,
          'coat': 1,
          'hood': 1,
          'covering': 1,
          'head': 1,
          'nstan': 1,
          'sometimes': 1,
          'boring': 1,
          'problems': 1,
          'women': 1,
          'lonely': 1,
          'jew': 1,
          'poop': 1,
          'opens': 1,
          'funny': 1,
          'messageable': 1,
          'song': 1,
          'people': 1,
          'sing': 1,
          'ncartman': 1,
          'stan': 1,
          'excited': 1,
          'see': 1,
          'new': 1,
          'beavis': 1,
          'butthead': 1,
          'types': 1,
          'asses': 1,
          'learn': 1,
          'rated': 1,
          'r': 1,
          'course': 1,
          'means': 1,
          'age': 1,
          '17': 1,
          'without': 1,
          'parent': 1,
          'legal': 1,
          'guardian': 1,
          'understand': 1,
          'pay': 1,
          'homeless': 1,
          'man': 1,
          'buy': 1,
          'repeatedly': 1,
          'entertaining': 1,
          'nthey': 1,
          'getting': 1,
          'trouble': 1,
          'causing': 1,
          'kyles': 1,
          'mom': 1,
          'mpaa': 1,
          'learns': 1,
          'thing': 1,
          'proving': 1,
          'light': 1,
          'fart': 1,
          'dies': 1,
          'goes': 1,
          'hell': 1,
          'find': 1,
          'satan': 1,
          'saddam': 1,
          'huiessan': 1,
          'homosexual': 1,
          'lovers': 1,
          'take': 1,
          'world': 1,
          'die': 1,
          'nfrom': 1,
          'nothing': 1,
          'said': 1,
          'keep': 1,
          'rest': 1,
          'surprise': 1,
          'believe': 1,
          'seen': 1,
          '14': 1,
          'nthis': 1,
          'film': 1,
          'contains': 1,
          'extreme': 1,
          'profanity': 1,
          '130': 1,
          'f': 1,
          'words': 1,
          'collection': 1,
          'others': 1,
          'beyond': 1,
          'bad': 1,
          'tasteless': 1,
          'type': 1,
          'way': 1,
          'many': 1,
          'messages': 1,
          'embedded': 1,
          'inside': 1,
          'bet': 1,
          'leave': 1,
          'least': 1,
          'one': 1,
          'time': 1,
          'enjoying': 1,
          'ntake': 1,
          'b': 1,
          'l': 1,
          'u': 1,
          'youd': 1,
          'hope': 1,
          'laughs': 1,
          'npos': 1}),
 Counter({'n': 33,
          'spice': 14,
          'girls': 11,
          'film': 8,
          'like': 6,
          'world': 5,
          'fun': 5,
          'melanie': 4,
          'great': 3,
          'music': 3,
          'well': 3,
          'concert': 3,
          'richard': 3,
          'dance': 3,
          'quite': 3,
          'people': 2,
          'exactly': 2,
          'done': 2,
          'perhaps': 2,
          'first': 2,
          'isnt': 2,
          'songs': 2,
          'lot': 2,
          'number': 2,
          'films': 2,
          'get': 2,
          'plot': 2,
          'minutes': 2,
          'geri': 2,
          'victoria': 2,
          'adams': 2,
          'chisolm': 2,
          'brown': 2,
          'emma': 2,
          'bunton': 2,
          'part': 2,
          'look': 2,
          'e': 2,
          'grant': 2,
          'quick': 2,
          'roger': 2,
          'moore': 2,
          'bob': 2,
          'spiers': 2,
          '1998': 2,
          'hate': 1,
          'wrong': 1,
          'offend': 1,
          'fashion': 1,
          'police': 1,
          'singersthey': 1,
          'aint': 1,
          'singing': 1,
          'opera': 1,
          'folks': 1,
          'pop': 1,
          'singer': 1,
          'njudging': 1,
          'opening': 1,
          'paragraph': 1,
          'obvious': 1,
          'dosing': 1,
          'catchy': 1,
          'tunesand': 1,
          'pretty': 1,
          'able': 1,
          'carry': 1,
          'certainly': 1,
          'filmgoing': 1,
          'experience': 1,
          'nwhat': 1,
          'girl': 1,
          'power': 1,
          'ndrawing': 1,
          'different': 1,
          'beatles': 1,
          'hard': 1,
          'days': 1,
          'night': 1,
          'chronicles': 1,
          'week': 1,
          'heading': 1,
          'londons': 1,
          'albert': 1,
          'hall': 1,
          'tool': 1,
          'around': 1,
          'london': 1,
          'big': 1,
          'ol': 1,
          'bus': 1,
          'driven': 1,
          'meat': 1,
          'loaf': 1,
          'generally': 1,
          'order': 1,
          'semblence': 1,
          'evil': 1,
          'tabloid': 1,
          'publisher': 1,
          'played': 1,
          'barry': 1,
          'humphries': 1,
          'better': 1,
          'known': 1,
          'americans': 1,
          '15': 1,
          'dame': 1,
          'edna': 1,
          'remember': 1,
          'wants': 1,
          'sabotage': 1,
          'sell': 1,
          'papers': 1,
          'nof': 1,
          'course': 1,
          'point': 1,
          'movie': 1,
          'center': 1,
          'ginger': 1,
          'recently': 1,
          'departed': 1,
          'haliwell': 1,
          'posh': 1,
          'sporty': 1,
          'scary': 1,
          'baby': 1,
          'one': 1,
          'personality': 1,
          'best': 1,
          'honesttogoodness': 1,
          'something': 1,
          'cant': 1,
          'said': 1,
          'today': 1,
          'nalong': 1,
          'ride': 1,
          'manager': 1,
          'clifford': 1,
          'various': 1,
          'characters': 1,
          'making': 1,
          'cameo': 1,
          'appearances': 1,
          'including': 1,
          'teriffic': 1,
          'british': 1,
          'actors': 1,
          'briers': 1,
          'stephen': 1,
          'fry': 1,
          'every': 1,
          'pops': 1,
          'chief': 1,
          'spout': 1,
          'odd': 1,
          'koans': 1,
          'added': 1,
          'bonus': 1,
          'gets': 1,
          'words': 1,
          'craig': 1,
          'kilborn': 1,
          'nwatching': 1,
          'slow': 1,
          'segments': 1,
          'overly': 1,
          'director': 1,
          'keeps': 1,
          'things': 1,
          'moving': 1,
          'pace': 1,
          'plenty': 1,
          'hummable': 1,
          'background': 1,
          'camerawork': 1,
          'fairly': 1,
          'pedestrian': 1,
          'though': 1,
          'final': 1,
          'effective': 1,
          'use': 1,
          'editing': 1,
          'nthe': 1,
          'promotes': 1,
          'high': 1,
          'design': 1,
          'spicebus': 1,
          'original': 1,
          'eyecatching': 1,
          'add': 1,
          'walltowall': 1,
          'lovable': 1,
          'romp': 1,
          'dont': 1,
          'wont': 1,
          'change': 1,
          'mind': 1,
          'find': 1,
          'least': 1,
          'tolerable': 1,
          'ready': 1,
          'sit': 1,
          'back': 1,
          'chill': 1,
          'entertain': 1,
          'nand': 1,
          'directed': 1,
          'written': 1,
          'kim': 1,
          'fuller': 1,
          'halliwell': 1,
          'claire': 1,
          'rushbrook': 1,
          'distributed': 1,
          'columbia': 1,
          'pictures': 1,
          'running': 1,
          'time': 1,
          '92': 1,
          'rated': 1,
          'pg': 1,
          'available': 1,
          'home': 1,
          'video': 1,
          '29': 1,
          'june': 1,
          'npos': 1}),
 Counter({'n': 12,
          'gladiator': 8,
          'maximus': 8,
          'commodus': 5,
          'epic': 4,
          'roman': 4,
          'son': 4,
          'phoenix': 4,
          'look': 4,
          'emperor': 3,
          'braveheart': 3,
          'wife': 3,
          'family': 3,
          'nthe': 3,
          'evil': 3,
          'battle': 3,
          'genre': 2,
          'hollywood': 2,
          'give': 2,
          'grand': 2,
          'empire': 2,
          'last': 2,
          'best': 2,
          'russell': 2,
          'crowe': 2,
          'richard': 2,
          'rome': 2,
          'nwhen': 2,
          'father': 2,
          'murdered': 2,
          'nmaximus': 2,
          'late': 2,
          'na': 2,
          'caravan': 2,
          'hero': 2,
          'never': 2,
          'juba': 2,
          'oliver': 2,
          'reed': 2,
          'king': 2,
          'nalso': 2,
          'like': 2,
          'appeal': 2,
          'forward': 2,
          'devotion': 2,
          'opposite': 2,
          'way': 2,
          'seems': 2,
          'flick': 2,
          'parts': 2,
          'character': 2,
          'nin': 2,
          'role': 2,
          'ni': 2,
          'scenes': 2,
          'tinted': 2,
          'payback': 2,
          'style': 2,
          'forty': 1,
          'years': 1,
          'ago': 1,
          'sword': 1,
          'sandals': 1,
          'historical': 1,
          'ruled': 1,
          'box': 1,
          'office': 1,
          'nduring': 1,
          '1950s': 1,
          'sought': 1,
          'audiences': 1,
          'reason': 1,
          'turn': 1,
          'televisions': 1,
          'go': 1,
          'movies': 1,
          'offering': 1,
          'spectacle': 1,
          'cinemascope': 1,
          'benhur': 1,
          'cleopatra': 1,
          'robe': 1,
          'sparticus': 1,
          'fall': 1,
          'quo': 1,
          'vadis': 1,
          'nsometimes': 1,
          'brilliant': 1,
          'sometimes': 1,
          'campy': 1,
          'technicolor': 1,
          'funeral': 1,
          'pyre': 1,
          'classic': 1,
          'nsince': 1,
          'epics': 1,
          'appeared': 1,
          'infrequently': 1,
          'smallscreen': 1,
          'affairs': 1,
          'produced': 1,
          '1970s': 1,
          'roots': 1,
          'shogun': 1,
          'nyet': 1,
          'phrase': 1,
          'die': 1,
          'salute': 1,
          'absent': 1,
          'begins': 1,
          'germania': 1,
          '180': 1,
          'nroman': 1,
          'general': 1,
          'conquered': 1,
          'yet': 1,
          'another': 1,
          'group': 1,
          'barbarians': 1,
          'marcus': 1,
          'aurelius': 1,
          'harris': 1,
          'eager': 1,
          'retire': 1,
          'plantation': 1,
          'spain': 1,
          'waiting': 1,
          'nhowever': 1,
          'worried': 1,
          'decadent': 1,
          'weakling': 1,
          'joaquin': 1,
          'prove': 1,
          'poor': 1,
          'successor': 1,
          'wants': 1,
          'make': 1,
          'heir': 1,
          'transition': 1,
          'toward': 1,
          'becoming': 1,
          'republic': 1,
          'hears': 1,
          'plan': 1,
          'strangles': 1,
          'orders': 1,
          'escapes': 1,
          'executioners': 1,
          'arrives': 1,
          'home': 1,
          'save': 1,
          'slavers': 1,
          'pick': 1,
          'wounded': 1,
          'carry': 1,
          'north': 1,
          'africa': 1,
          'happened': 1,
          'cruising': 1,
          'place': 1,
          'explained': 1,
          'nan': 1,
          'african': 1,
          'named': 1,
          'djimon': 1,
          'hounsou': 1,
          'treats': 1,
          'wounds': 1,
          'nproximo': 1,
          'freedom': 1,
          'purchases': 1,
          'fodder': 1,
          'arena': 1,
          'nof': 1,
          'course': 1,
          'proves': 1,
          'able': 1,
          'soldier': 1,
          'fame': 1,
          'spreads': 1,
          'reopens': 1,
          'coliseum': 1,
          'proximo': 1,
          'brings': 1,
          'troupe': 1,
          'warriors': 1,
          'compete': 1,
          'nour': 1,
          'wins': 1,
          'hearts': 1,
          'minds': 1,
          'cheering': 1,
          'crowds': 1,
          'finds': 1,
          'ally': 1,
          'sister': 1,
          'lucilla': 1,
          'connie': 1,
          'nielsen': 1,
          'similarities': 1,
          'obvious': 1,
          'determined': 1,
          'warrior': 1,
          'seeking': 1,
          'revenge': 1,
          'aid': 1,
          'lovestruck': 1,
          'princess': 1,
          'mel': 1,
          'gibsons': 1,
          'primarily': 1,
          'visceral': 1,
          'driven': 1,
          'heros': 1,
          'anger': 1,
          'nits': 1,
          'simple': 1,
          'tale': 1,
          'good': 1,
          'versus': 1,
          'manly': 1,
          'virtues': 1,
          'nobility': 1,
          'purpose': 1,
          'courage': 1,
          'loyalty': 1,
          'country': 1,
          'physical': 1,
          'stamina': 1,
          'ncommodus': 1,
          'every': 1,
          'sniveling': 1,
          'selfish': 1,
          'coward': 1,
          'intended': 1,
          'disgust': 1,
          'audience': 1,
          'opening': 1,
          'night': 1,
          'crowd': 1,
          'theater': 1,
          '70': 1,
          'male': 1,
          'appropriate': 1,
          'guy': 1,
          'movie': 1,
          'would': 1,
          'chick': 1,
          'dick': 1,
          'ntheres': 1,
          'much': 1,
          'pumping': 1,
          'testosterone': 1,
          'chopping': 1,
          'body': 1,
          'gruesome': 1,
          'sequences': 1,
          'easily': 1,
          'offended': 1,
          'gore': 1,
          'stay': 1,
          'away': 1,
          'nlucilla': 1,
          'female': 1,
          'sparks': 1,
          'dampened': 1,
          'dead': 1,
          'njoaquin': 1,
          'gives': 1,
          'astounding': 1,
          'performance': 1,
          'scene': 1,
          'kills': 1,
          'shows': 1,
          'pain': 1,
          'fathers': 1,
          'love': 1,
          'pride': 1,
          'nthroughout': 1,
          'picture': 1,
          'manages': 1,
          'depth': 1,
          'whos': 1,
          'scripted': 1,
          'caricature': 1,
          'nive': 1,
          'fan': 1,
          'since': 1,
          'romper': 1,
          'stomper': 1,
          'nthis': 1,
          'doesnt': 1,
          'offer': 1,
          'complexities': 1,
          'l': 1,
          'confidential': 1,
          'insider': 1,
          'essentially': 1,
          'job': 1,
          'grunt': 1,
          'heroically': 1,
          'voice': 1,
          'burton': 1,
          'resonance': 1,
          'textured': 1,
          'clint': 1,
          'eastwood': 1,
          'rasp': 1,
          'perfect': 1,
          'gave': 1,
          'us': 1,
          'work': 1,
          'career': 1,
          'hope': 1,
          'rewarded': 1,
          'oscar': 1,
          'nmy': 1,
          'major': 1,
          'quibble': 1,
          'stylized': 1,
          'nseveral': 1,
          'nweve': 1,
          'seen': 1,
          'lot': 1,
          'lately': 1,
          'particularly': 1,
          'matrix': 1,
          'dont': 1,
          'get': 1,
          'makes': 1,
          'feature': 1,
          'films': 1,
          'tv': 1,
          'ads': 1,
          'merely': 1,
          'annoying': 1,
          'bleaches': 1,
          'color': 1,
          'spectacles': 1,
          'raison': 1,
          'detre': 1,
          'perhaps': 1,
          'meant': 1,
          'gloss': 1,
          'imperfections': 1,
          'computergenerated': 1,
          'shots': 1,
          'filmed': 1,
          'strange': 1,
          'herky': 1,
          'jerky': 1,
          'slo': 1,
          'mo': 1,
          'fast': 1,
          'simultaneously': 1,
          'reminds': 1,
          'flash': 1,
          'runs': 1,
          'comic': 1,
          'books': 1,
          'leaving': 1,
          'halfblurred': 1,
          'trail': 1,
          'images': 1,
          'behind': 1,
          'nwith': 1,
          'realistic': 1,
          'could': 1,
          'even': 1,
          'satisfying': 1,
          'tighter': 1,
          'script': 1,
          'fulfilling': 1,
          'conclusion': 1,
          'nbottom': 1,
          'line': 1,
          'rousing': 1,
          'action': 1,
          'film': 1,
          'enriched': 1,
          'fine': 1,
          'performances': 1,
          'tarnished': 1,
          'stylistic': 1,
          'choices': 1,
          'npos': 1}),
 Counter({'andromeda': 6,
          'science': 6,
          'town': 6,
          'film': 5,
          'scientists': 5,
          'strain': 4,
          'fiction': 4,
          'find': 4,
          'one': 3,
          'nthe': 3,
          'satellite': 3,
          'call': 3,
          'every': 3,
          'organism': 3,
          'like': 3,
          'made': 2,
          'films': 2,
          'stories': 2,
          'space': 2,
          'probably': 2,
          'really': 2,
          'action': 2,
          'two': 2,
          'looking': 2,
          'stone': 2,
          'directly': 2,
          'blood': 2,
          'baby': 2,
          'old': 2,
          'nthey': 2,
          'back': 2,
          'lab': 2,
          'around': 2,
          'bomb': 2,
          'nwhat': 2,
          'mutates': 2,
          'time': 2,
          'nbut': 2,
          'labs': 2,
          'nthis': 2,
          'nto': 2,
          'seem': 2,
          'screens': 2,
          'see': 2,
          'step': 2,
          'way': 2,
          'greatest': 1,
          'ever': 1,
          'ni': 1,
          'know': 1,
          'sweeping': 1,
          'statement': 1,
          'ill': 1,
          'qualify': 1,
          'adding': 1,
          'genuinely': 1,
          'deserve': 1,
          'label': 1,
          'speculative': 1,
          'core': 1,
          'plot': 1,
          'n2001': 1,
          'odyssey': 1,
          'better': 1,
          'qualifies': 1,
          'consider': 1,
          'metaphysics': 1,
          'nmost': 1,
          'normally': 1,
          'classify': 1,
          'sf': 1,
          'fantasy': 1,
          'horror': 1,
          'set': 1,
          'futuristic': 1,
          'setting': 1,
          'starts': 1,
          'soldiers': 1,
          'hightech': 1,
          '1970': 1,
          'van': 1,
          'crashed': 1,
          'tiny': 1,
          'new': 1,
          'mexico': 1,
          'nsomething': 1,
          'bad': 1,
          'happens': 1,
          'npictures': 1,
          'reconnaissance': 1,
          'plane': 1,
          'show': 1,
          'shocking': 1,
          'sight': 1,
          'napparently': 1,
          'everyone': 1,
          'dead': 1,
          'authorities': 1,
          'wildfire': 1,
          'alert': 1,
          'summoning': 1,
          'four': 1,
          'somewhat': 1,
          'reluctant': 1,
          'supersecret': 1,
          'underground': 1,
          'germ': 1,
          'warfare': 1,
          'laboratory': 1,
          'nevada': 1,
          'ntwo': 1,
          'hall': 1,
          'fly': 1,
          'suits': 1,
          'almost': 1,
          'single': 1,
          'resident': 1,
          'literally': 1,
          'dropped': 1,
          'tracks': 1,
          'turned': 1,
          'powder': 1,
          'veins': 1,
          'nsome': 1,
          'went': 1,
          'insane': 1,
          'died': 1,
          'wino': 1,
          'miraculously': 1,
          'still': 1,
          'alive': 1,
          'take': 1,
          'survivors': 1,
          'pressures': 1,
          'white': 1,
          'house': 1,
          'directive': 1,
          '712': 1,
          'executive': 1,
          'order': 1,
          'cauterize': 1,
          'area': 1,
          'nuclear': 1,
          'get': 1,
          'defies': 1,
          'normal': 1,
          'rules': 1,
          'earthlike': 1,
          'life': 1,
          'grows': 1,
          'ntheir': 1,
          'hope': 1,
          'cure': 1,
          'perfectly': 1,
          'healthy': 1,
          'boy': 1,
          'common': 1,
          'derelict': 1,
          'feeds': 1,
          'energy': 1,
          'detonating': 1,
          'abomb': 1,
          'would': 1,
          'spread': 1,
          'across': 1,
          'entire': 1,
          'planet': 1,
          'barely': 1,
          'bombing': 1,
          'something': 1,
          'threatens': 1,
          'eat': 1,
          'defenses': 1,
          'break': 1,
          'triggers': 1,
          'lastditch': 1,
          'defense': 1,
          'mechanism': 1,
          'atomic': 1,
          'raised': 1,
          'brainless': 1,
          'fare': 1,
          'pollutes': 1,
          'movie': 1,
          'theaters': 1,
          'days': 1,
          'interminably': 1,
          'slow': 1,
          'nmuch': 1,
          'lot': 1,
          'people': 1,
          'standing': 1,
          'video': 1,
          'computer': 1,
          'readouts': 1,
          'characters': 1,
          'ratchets': 1,
          'tension': 1,
          'turn': 1,
          'screw': 1,
          'performances': 1,
          'universally': 1,
          'fine': 1,
          'actors': 1,
          'keeping': 1,
          'things': 1,
          'lowkey': 1,
          'restrained': 1,
          'real': 1,
          'appeal': 1,
          'fact': 1,
          'shows': 1,
          'acting': 1,
          'makes': 1,
          'exciting': 1,
          'nwe': 1,
          'follow': 1,
          'logic': 1,
          'deduction': 1,
          'methodical': 1,
          'puzzling': 1,
          'behaves': 1,
          'dont': 1,
          'expect': 1,
          'available': 1,
          'wide': 1,
          'screen': 1,
          'dvd': 1,
          'nit': 1,
          'originally': 1,
          'rated': 1,
          'g': 1,
          'first': 1,
          'released': 1,
          'carries': 1,
          'pg': 1,
          'rating': 1,
          'mostly': 1,
          'mild': 1,
          'nudity': 1,
          'scene': 1,
          'bodys': 1,
          'wrist': 1,
          'slashed': 1,
          'spilling': 1,
          'powdered': 1,
          'npos': 1}),
 Counter({'charles': 8,
          'charlie': 4,
          'uncle': 4,
          'know': 3,
          'scene': 3,
          'nthe': 3,
          'family': 3,
          'niece': 2,
          'welsh': 2,
          'ncharlie': 2,
          'widow': 2,
          'doubt': 2,
          'avoid': 2,
          'victim': 2,
          'story': 2,
          'small': 2,
          'town': 2,
          'petaluma': 2,
          'movie': 2,
          'visit': 2,
          'magazine': 2,
          'picture': 2,
          'first': 2,
          'feel': 2,
          'nis': 2,
          'would': 2,
          'good': 1,
          'much': 1,
          'someone': 1,
          'warns': 1,
          'margaret': 1,
          'devilish': 1,
          'grin': 1,
          'infatuated': 1,
          'namesake': 1,
          'soul': 1,
          'mate': 1,
          'calls': 1,
          'since': 1,
          'mother': 1,
          'gave': 1,
          'name': 1,
          'ntheres': 1,
          'lot': 1,
          'least': 1,
          'strangled': 1,
          '3': 1,
          'widows': 1,
          'back': 1,
          'east': 1,
          'nmark': 1,
          'harmon': 1,
          'looks': 1,
          'like': 1,
          'anything': 1,
          'killer': 1,
          'specializes': 1,
          'playing': 1,
          'plays': 1,
          'merry': 1,
          'murderer': 1,
          '1991': 1,
          'hallmark': 1,
          'hall': 1,
          'fame': 1,
          'remake': 1,
          '1943': 1,
          'hitchcock': 1,
          'film': 1,
          'shadow': 1,
          'nand': 1,
          'questions': 1,
          'guilt': 1,
          'see': 1,
          'action': 1,
          'opening': 1,
          'last': 1,
          'takes': 1,
          'place': 1,
          'early': 1,
          '1950s': 1,
          'california': 1,
          'heads': 1,
          'police': 1,
          'njohn': 1,
          'gays': 1,
          'script': 1,
          'uses': 1,
          'original': 1,
          'screenplay': 1,
          'sally': 1,
          'benson': 1,
          'alma': 1,
          'reville': 1,
          'thornton': 1,
          'wilder': 1,
          'nkaren': 1,
          'arthurs': 1,
          'direction': 1,
          'certainly': 1,
          'match': 1,
          'great': 1,
          'master': 1,
          'absolute': 1,
          'scale': 1,
          'maintains': 1,
          'high': 1,
          'level': 1,
          'suspense': 1,
          'nwhen': 1,
          'supercilious': 1,
          'deceitful': 1,
          'comes': 1,
          'pay': 1,
          'indeterminate': 1,
          'length': 1,
          'sister': 1,
          'dont': 1,
          'nefarious': 1,
          'activities': 1,
          'nhe': 1,
          'showers': 1,
          'elaborate': 1,
          'gifts': 1,
          'buy': 1,
          'love': 1,
          'already': 1,
          'given': 1,
          'anyway': 1,
          'ntwo': 1,
          'mysterious': 1,
          'exceedingly': 1,
          'cleancut': 1,
          'writers': 1,
          'show': 1,
          'take': 1,
          'pictures': 1,
          'spread': 1,
          'average': 1,
          'american': 1,
          'interest': 1,
          'focused': 1,
          'especially': 1,
          'taking': 1,
          'learning': 1,
          'background': 1,
          'welcomed': 1,
          'uncles': 1,
          'begins': 1,
          'uncomfortable': 1,
          'suspicious': 1,
          'disingenuous': 1,
          'reporters': 1,
          'advances': 1,
          'delicate': 1,
          'power': 1,
          'using': 1,
          'details': 1,
          'newspaper': 1,
          'article': 1,
          'tries': 1,
          'secretly': 1,
          'remove': 1,
          'discovers': 1,
          'beauty': 1,
          'pas': 1,
          'de': 1,
          'deux': 1,
          'try': 1,
          'psych': 1,
          'nshe': 1,
          'wants': 1,
          'leave': 1,
          'doesnt': 1,
          'want': 1,
          'go': 1,
          'local': 1,
          'rich': 1,
          'prospective': 1,
          'nwill': 1,
          'kill': 1,
          'get': 1,
          'nharmon': 1,
          'wonderfully': 1,
          'creepy': 1,
          'smug': 1,
          'tough': 1,
          'trapped': 1,
          'nwith': 1,
          'deft': 1,
          'touch': 1,
          'director': 1,
          'sets': 1,
          'several': 1,
          'thunderstorms': 1,
          'tom': 1,
          'neuwirths': 1,
          'sepiatoned': 1,
          'cinematography': 1,
          'makes': 1,
          'filmed': 1,
          '50s': 1,
          'nmy': 1,
          'quibble': 1,
          'directors': 1,
          'awkward': 1,
          'staging': 1,
          'final': 1,
          'train': 1,
          'hitchcocks': 1,
          'version': 1,
          'better': 1,
          'nof': 1,
          'course': 1,
          'one': 1,
          'worth': 1,
          'watching': 1,
          'well': 1,
          'nactually': 1,
          'yes': 1,
          'nshadow': 1,
          'runs': 1,
          '1': 1,
          '40': 1,
          'nit': 1,
          'rated': 1,
          'pg': 1,
          'adult': 1,
          'themes': 1,
          'fine': 1,
          'kids': 1,
          'around': 1,
          'nine': 1,
          'npos': 1}),
 Counter({'abby': 5,
          'man': 5,
          'nthe': 4,
          'men': 3,
          'nora': 3,
          'person': 3,
          'dog': 3,
          'know': 2,
          'truth': 2,
          'cats': 2,
          'dogs': 2,
          'movie': 2,
          'us': 2,
          'certain': 2,
          'get': 2,
          'beautiful': 2,
          'thing': 2,
          'janeane': 2,
          'well': 2,
          'nlike': 2,
          'sees': 2,
          'uma': 2,
          'noras': 2,
          'knows': 2,
          'personality': 2,
          'asks': 2,
          'though': 2,
          'body': 2,
          'doesnt': 2,
          'quite': 2,
          'furthering': 2,
          'phone': 2,
          'rather': 2,
          'life': 2,
          'want': 1,
          'ndo': 1,
          'nwell': 1,
          'shows': 1,
          'make': 1,
          'good': 1,
          'companions': 1,
          'pale': 1,
          'comparison': 1,
          'joy': 1,
          'fulfillment': 1,
          'romantic': 1,
          'relationships': 1,
          'bring': 1,
          'nunfortunately': 1,
          'theres': 1,
          'giant': 1,
          'roadblock': 1,
          'set': 1,
          'culture': 1,
          'people': 1,
          'rest': 1,
          'mill': 1,
          'around': 1,
          'outside': 1,
          'feeling': 1,
          'sorry': 1,
          'na': 1,
          'checkpoint': 1,
          'kind': 1,
          'garafolos': 1,
          'character': 1,
          'relates': 1,
          'oversized': 1,
          'teenage': 1,
          'critic': 1,
          'intelligent': 1,
          'great': 1,
          'sense': 1,
          'humor': 1,
          'strikes': 1,
          'opposite': 1,
          'sex': 1,
          'physically': 1,
          'unattractive': 1,
          'seem': 1,
          'backing': 1,
          'nmeanwhile': 1,
          'gorgeous': 1,
          'neighbor': 1,
          'thurman': 1,
          'numa': 1,
          'womans': 1,
          'name': 1,
          'worse': 1,
          'attracts': 1,
          'like': 1,
          'flies': 1,
          'nas': 1,
          'tells': 1,
          'burp': 1,
          'think': 1,
          'cute': 1,
          'nyou': 1,
          'barf': 1,
          'line': 1,
          'hold': 1,
          'hair': 1,
          'back': 1,
          'nbut': 1,
          'shallow': 1,
          'superficial': 1,
          'nwe': 1,
          'prwhen': 1,
          'calls': 1,
          'veterinarian': 1,
          'abbys': 1,
          'talk': 1,
          'radio': 1,
          'show': 1,
          'wanting': 1,
          'roller': 1,
          'skates': 1,
          'basset': 1,
          'hound': 1,
          'n': 1,
          'oh': 1,
          'come': 1,
          'idiot': 1,
          'handle': 1,
          'problem': 1,
          'nhe': 1,
          'likes': 1,
          'professional': 1,
          'demeanor': 1,
          'meet': 1,
          'nabby': 1,
          'match': 1,
          'probably': 1,
          'wont': 1,
          'chance': 1,
          'nso': 1,
          'gives': 1,
          'description': 1,
          'stands': 1,
          'nnora': 1,
          'happens': 1,
          'studio': 1,
          'next': 1,
          'day': 1,
          'comes': 1,
          'big': 1,
          'favor': 1,
          'nshe': 1,
          'goes': 1,
          'along': 1,
          'masquerade': 1,
          'three': 1,
          'head': 1,
          'night': 1,
          'fun': 1,
          'assuming': 1,
          'role': 1,
          'goat': 1,
          'cheese': 1,
          'farmer': 1,
          'named': 1,
          'donna': 1,
          'finds': 1,
          'even': 1,
          'girl': 1,
          'shes': 1,
          'intellectual': 1,
          'confident': 1,
          'suspect': 1,
          'anything': 1,
          'realizing': 1,
          'hes': 1,
          'living': 1,
          'threes': 1,
          'company': 1,
          'episode': 1,
          'charade': 1,
          'continues': 1,
          'relationship': 1,
          'including': 1,
          'decidedly': 1,
          'unnecessary': 1,
          'sexmasturbation': 1,
          'sequence': 1,
          'eventually': 1,
          'finding': 1,
          'attracted': 1,
          'sleepless': 1,
          'seattle': 1,
          'comedyromance': 1,
          'predictable': 1,
          'way': 1,
          'care': 1,
          'enough': 1,
          'characters': 1,
          'root': 1,
          'romance': 1,
          'blossom': 1,
          'isnt': 1,
          'entertaining': 1,
          'expecting': 1,
          'handles': 1,
          'theme': 1,
          'could': 1,
          'identify': 1,
          'find': 1,
          'garafolo': 1,
          'attractive': 1,
          'nshes': 1,
          'im': 1,
          'sure': 1,
          'real': 1,
          'shed': 1,
          'problems': 1,
          'attracting': 1,
          'ni': 1,
          'hand': 1,
          'couldnt': 1,
          'attract': 1,
          'save': 1,
          'nand': 1,
          'proud': 1,
          'fact': 1,
          'npos': 1}),
 Counter({'alien': 31,
          'film': 23,
          '3': 15,
          'one': 14,
          'nthe': 13,
          'ripley': 10,
          'aliens': 9,
          'see': 7,
          'films': 7,
          'characters': 7,
          'fincher': 7,
          'quite': 6,
          'ni': 5,
          'like': 5,
          'dialogue': 5,
          'two': 5,
          'nalien': 5,
          'lot': 5,
          'didnt': 4,
          'course': 4,
          'nin': 4,
          'action': 4,
          'scene': 4,
          'long': 4,
          'nas': 4,
          'nhowever': 4,
          'really': 4,
          'movie': 4,
          'sets': 4,
          'title': 4,
          'nits': 4,
          'actors': 4,
          'order': 3,
          'camerons': 3,
          'many': 3,
          'people': 3,
          'series': 3,
          'extremely': 3,
          'entertaining': 3,
          'nmany': 3,
          'chase': 3,
          'much': 3,
          'bit': 3,
          'suspense': 3,
          'screen': 3,
          'dark': 3,
          'result': 3,
          'nwe': 3,
          'care': 3,
          'dance': 3,
          'exactly': 3,
          'entire': 3,
          'little': 3,
          'n': 3,
          'first': 3,
          'facehugger': 3,
          'sent': 3,
          'nripley': 3,
          'inmates': 3,
          'nthis': 3,
          'memorable': 3,
          'nfincher': 3,
          'symbolism': 3,
          'creates': 3,
          'finchers': 3,
          'fake': 3,
          'actually': 3,
          'several': 3,
          'terrific': 3,
          'thing': 3,
          'though': 3,
          'could': 3,
          'turns': 3,
          'performance': 3,
          'must': 2,
          'admit': 2,
          'nof': 2,
          'need': 2,
          'away': 2,
          'best': 2,
          'critics': 2,
          'thought': 2,
          'final': 2,
          'sequence': 2,
          'confusion': 2,
          'something': 2,
          'normally': 2,
          'language': 2,
          'always': 2,
          'get': 2,
          'saying': 2,
          'swearing': 2,
          'seeing': 2,
          'mainly': 2,
          'aspect': 2,
          'major': 2,
          'never': 2,
          'scenes': 2,
          'lt': 2,
          'weaver': 2,
          'although': 2,
          'character': 2,
          'charles': 2,
          'cinematic': 2,
          'impressive': 2,
          'shot': 2,
          'nand': 2,
          'remarkable': 2,
          'time': 2,
          'escape': 2,
          'pod': 2,
          'planet': 2,
          'refinery': 2,
          'prison': 2,
          'killed': 2,
          'taken': 2,
          'back': 2,
          'dog': 2,
          'asks': 2,
          'dutton': 2,
          'found': 2,
          'moments': 2,
          'easily': 2,
          'kubrick': 2,
          'fact': 2,
          'figure': 2,
          'complete': 2,
          'metaphorical': 2,
          'images': 2,
          'nothing': 2,
          'portrayal': 2,
          'motion': 2,
          'nice': 2,
          'iron': 2,
          'mood': 2,
          'seem': 2,
          'want': 2,
          'die': 2,
          'nwhy': 2,
          'ending': 2,
          'faces': 2,
          'look': 2,
          'makes': 2,
          'context': 2,
          'plot': 2,
          'take': 2,
          'predecessors': 2,
          'thats': 2,
          'pretty': 2,
          'nagain': 2,
          'different': 2,
          'life': 2,
          'even': 2,
          'previous': 2,
          'nwhile': 2,
          'camera': 2,
          'well': 2,
          'around': 2,
          'create': 2,
          'yet': 2,
          'future': 2,
          'far': 2,
          'critical': 2,
          'ncharles': 2,
          'strong': 2,
          'immediately': 2,
          'reminds': 2,
          'throughout': 2,
          'may': 2,
          'us': 2,
          'mistake': 2,
          'seen': 1,
          'theaters': 1,
          'saw': 1,
          '13': 1,
          'years': 1,
          'old': 1,
          'expecting': 1,
          'believe': 1,
          'fault': 1,
          'appreciate': 1,
          'also': 1,
          'wipe': 1,
          'expectations': 1,
          'predecessor': 1,
          'njames': 1,
          'consider': 1,
          'among': 1,
          'group': 1,
          'bashed': 1,
          'originality': 1,
          'went': 1,
          'others': 1,
          'enough': 1,
          'nboth': 1,
          'untrue': 1,
          'essential': 1,
          'wellwritten': 1,
          'overly': 1,
          'creating': 1,
          'nperhaps': 1,
          'watching': 1,
          'video': 1,
          'helped': 1,
          'non': 1,
          'big': 1,
          'overwhelmed': 1,
          'nit': 1,
          'harsh': 1,
          'figured': 1,
          'rely': 1,
          'smart': 1,
          'instead': 1,
          'moronic': 1,
          'profanities': 1,
          'ndont': 1,
          'wrongim': 1,
          'eliminate': 1,
          'substitutes': 1,
          'profane': 1,
          'remarks': 1,
          'gets': 1,
          'rather': 1,
          'distracting': 1,
          'since': 1,
          'realize': 1,
          'restrained': 1,
          'hatred': 1,
          '3s': 1,
          'flaw': 1,
          'albeit': 1,
          'underdeveloped': 1,
          'feeling': 1,
          'cut': 1,
          'shorten': 1,
          'length': 1,
          'nthere': 1,
          'liked': 1,
          'sigourney': 1,
          'gotten': 1,
          'know': 1,
          'dr': 1,
          'clemens': 1,
          'inevitable': 1,
          'occurs': 1,
          'begins': 1,
          'left': 1,
          'prologue': 1,
          'pure': 1,
          'achievement': 1,
          'director': 1,
          'david': 1,
          'directed': 1,
          'music': 1,
          'videos': 1,
          'chance': 1,
          'entry': 1,
          'nwithout': 1,
          'using': 1,
          'single': 1,
          'line': 1,
          'unless': 1,
          'count': 1,
          'computer': 1,
          'warnings': 1,
          'nan': 1,
          'shows': 1,
          'seconds': 1,
          'cutting': 1,
          'card': 1,
          'girl': 1,
          'cryogenic': 1,
          'compartments': 1,
          'na': 1,
          'egg': 1,
          'legs': 1,
          'stretch': 1,
          'air': 1,
          'nduring': 1,
          'ten': 1,
          'minutes': 1,
          'learned': 1,
          'everything': 1,
          'proceed': 1,
          'opening': 1,
          'remain': 1,
          'mind': 1,
          'nbecause': 1,
          'hatched': 1,
          'aboard': 1,
          'vessel': 1,
          'hypersleep': 1,
          'containers': 1,
          'nearest': 1,
          'fiorina': 1,
          'fury161': 1,
          'ore': 1,
          'turned': 1,
          'maximum': 1,
          'security': 1,
          'managed': 1,
          'attach': 1,
          'cryotubes': 1,
          'nunfortunately': 1,
          'landing': 1,
          'survivors': 1,
          'discovered': 1,
          'carrier': 1,
          'attachs': 1,
          'came': 1,
          'team': 1,
          'revived': 1,
          'ship': 1,
          'nafter': 1,
          'mysterious': 1,
          'acideaten': 1,
          'section': 1,
          'dead': 1,
          'bodies': 1,
          'cremated': 1,
          'cremation': 1,
          'powerful': 1,
          'nfeaturing': 1,
          'monologue': 1,
          'dillon': 1,
          'prisoner': 1,
          'god': 1,
          'cuts': 1,
          'forth': 1,
          'ceremony': 1,
          'dogs': 1,
          'demise': 1,
          'speech': 1,
          'reflects': 1,
          'going': 1,
          'succeeds': 1,
          'injects': 1,
          'becoming': 1,
          'next': 1,
          'stanley': 1,
          'alfred': 1,
          'hitchcock': 1,
          'mixture': 1,
          'knows': 1,
          'directors': 1,
          'control': 1,
          'riddled': 1,
          'symbolic': 1,
          'speeches': 1,
          'nby': 1,
          'franchise': 1,
          'criticized': 1,
          'filming': 1,
          'death': 1,
          'reveal': 1,
          'looking': 1,
          'enjoy': 1,
          'relish': 1,
          'nshowing': 1,
          'fall': 1,
          'slow': 1,
          'touch': 1,
          'showing': 1,
          'hit': 1,
          'vat': 1,
          'great': 1,
          'deal': 1,
          'derived': 1,
          'feel': 1,
          'would': 1,
          'spoiled': 1,
          'shown': 1,
          'splash': 1,
          'molten': 1,
          'witness': 1,
          'paradox': 1,
          'surprises': 1,
          'dont': 1,
          'plan': 1,
          'spoiling': 1,
          'review': 1,
          'nfrom': 1,
          'every': 1,
          'comes': 1,
          'stick': 1,
          'forever': 1,
          'moment': 1,
          'burst': 1,
          'kanes': 1,
          'stomach': 1,
          'showdown': 1,
          'machine': 1,
          'involving': 1,
          'pushed': 1,
          'wall': 1,
          'stands': 1,
          'inches': 1,
          'doesnt': 1,
          'kill': 1,
          'shocker': 1,
          'later': 1,
          'leads': 1,
          'surprise': 1,
          'apparently': 1,
          'loves': 1,
          'use': 1,
          'closeups': 1,
          'michael': 1,
          'douglas': 1,
          'clown': 1,
          'faceoff': 1,
          'game': 1,
          'style': 1,
          'shaving': 1,
          'hair': 1,
          'bald': 1,
          'sense': 1,
          'nmost': 1,
          'works': 1,
          'story': 1,
          'try': 1,
          'compare': 1,
          'turn': 1,
          'seems': 1,
          'gloomy': 1,
          'bad': 1,
          'rehash': 1,
          'twists': 1,
          'setup': 1,
          'picked': 1,
          'tons': 1,
          'arsenal': 1,
          'especially': 1,
          'takes': 1,
          'place': 1,
          'devoid': 1,
          'human': 1,
          'except': 1,
          'rundown': 1,
          'weapons': 1,
          'tension': 1,
          'added': 1,
          'worst': 1,
          'wellmade': 1,
          'picture': 1,
          'merits': 1,
          'unfortunate': 1,
          'surrounding': 1,
          'second': 1,
          'sequel': 1,
          'onedimensional': 1,
          'emotionally': 1,
          'involved': 1,
          'hardcore': 1,
          'criminals': 1,
          'less': 1,
          'ndespite': 1,
          'central': 1,
          'important': 1,
          'began': 1,
          'act': 1,
          'guys': 1,
          'technical': 1,
          'side': 1,
          'better': 1,
          'versions': 1,
          'version': 1,
          'pumped': 1,
          'massive': 1,
          'artillary': 1,
          'uses': 1,
          'brilliant': 1,
          'angles': 1,
          'lighting': 1,
          'moody': 1,
          'cinematography': 1,
          'alex': 1,
          'thomson': 1,
          'done': 1,
          'towards': 1,
          'end': 1,
          'draws': 1,
          'viewer': 1,
          'confused': 1,
          'chased': 1,
          'yellows': 1,
          'reds': 1,
          'oranges': 1,
          'lights': 1,
          'nshadows': 1,
          'walls': 1,
          'shadows': 1,
          'swiftness': 1,
          'intense': 1,
          'likes': 1,
          'perspective': 1,
          'racing': 1,
          'incredible': 1,
          'reminiscient': 1,
          'nostromo': 1,
          'narrow': 1,
          'corridors': 1,
          'labrynthine': 1,
          'hallways': 1,
          'constructed': 1,
          'appear': 1,
          'none': 1,
          'set': 1,
          'pieces': 1,
          'aids': 1,
          'destruction': 1,
          'surprising': 1,
          'nsigourney': 1,
          'another': 1,
          'good': 1,
          'equaling': 1,
          'nshe': 1,
          'snubbed': 1,
          'oscars': 1,
          'bomb': 1,
          'nher': 1,
          'reactions': 1,
          'realistic': 1,
          'crying': 1,
          'loss': 1,
          'child': 1,
          'risked': 1,
          'saving': 1,
          'encounter': 1,
          'touching': 1,
          'brink': 1,
          'caring': 1,
          'lowkey': 1,
          'cared': 1,
          'nlance': 1,
          'henriksen': 1,
          'brief': 1,
          'appearance': 1,
          'bishop': 1,
          'ii': 1,
          'rest': 1,
          'cast': 1,
          'stale': 1,
          'pete': 1,
          'postlethwaite': 1,
          'sticks': 1,
          'due': 1,
          'recent': 1,
          'usual': 1,
          'suspects': 1,
          'lost': 1,
          'world': 1,
          'rated': 1,
          'r': 1,
          'violence': 1,
          'sex': 1,
          'nalthough': 1,
          'flaws': 1,
          'highly': 1,
          'rich': 1,
          'fun': 1,
          'spot': 1,
          'moral': 1,
          'message': 1,
          'relies': 1,
          'devices': 1,
          'bring': 1,
          'meanings': 1,
          'okay': 1,
          'sacrifice': 1,
          'quality': 1,
          'quantity': 1,
          'tells': 1,
          'society': 1,
          'become': 1,
          'things': 1,
          'happen': 1,
          'nwhenever': 1,
          'looks': 1,
          'point': 1,
          'nbut': 1,
          'perhaps': 1,
          'isnt': 1,
          'npos': 1}),
 Counter({'film': 13,
          'dead': 5,
          'films': 5,
          'two': 5,
          'scene': 5,
          'evil': 4,
          'nthe': 4,
          'sam': 4,
          'title': 4,
          'budget': 3,
          'woods': 3,
          '1': 3,
          'audio': 3,
          'track': 3,
          'rob': 3,
          'nalso': 3,
          'time': 3,
          'footage': 3,
          'many': 3,
          'much': 3,
          'low': 2,
          'extremely': 2,
          'horror': 2,
          'group': 2,
          'friends': 2,
          'book': 2,
          'campbell': 2,
          'demons': 2,
          'dvd': 2,
          'release': 2,
          'entertainment': 2,
          'contains': 2,
          'original': 2,
          'disc': 2,
          'commentary': 2,
          'features': 2,
          'raimi': 2,
          'tapert': 2,
          'bruce': 2,
          'informative': 2,
          'thats': 2,
          'marijuana': 2,
          'became': 2,
          'say': 2,
          'entertaining': 2,
          'long': 2,
          'good': 2,
          'raw': 2,
          'edition': 2,
          'fan': 2,
          'ultra': 1,
          'inventive': 1,
          'vacationing': 1,
          'cabin': 1,
          'accidentally': 1,
          'awaken': 1,
          'force': 1,
          'via': 1,
          'necronomicon': 1,
          'nbruce': 1,
          'stars': 1,
          'ash': 1,
          'eventually': 1,
          'becomes': 1,
          'sole': 1,
          'survivor': 1,
          'battle': 1,
          'become': 1,
          'including': 1,
          'girlfriend': 1,
          'results': 1,
          'shown': 1,
          'screen': 1,
          'amazing': 1,
          'considering': 1,
          'tiny': 1,
          'constant': 1,
          'location': 1,
          'changes': 1,
          'filming': 1,
          'schedule': 1,
          'sporadic': 1,
          'years': 1,
          'nfollowed': 1,
          'sequels': 1,
          'ii': 1,
          '1987': 1,
          'army': 1,
          'darkness': 1,
          '1993': 1,
          'elite': 1,
          'aspect': 1,
          'ratio': 1,
          '33': 1,
          'versions': 1,
          'stereo': 1,
          '2': 1,
          '0': 1,
          'newly': 1,
          'remastered': 1,
          'dolby': 1,
          'digital': 1,
          '5': 1,
          'nincluded': 1,
          'separate': 1,
          'running': 1,
          'tracks': 1,
          'first': 1,
          'writerdirector': 1,
          'producer': 1,
          'second': 1,
          'star': 1,
          'ncampbells': 1,
          'witty': 1,
          'story': 1,
          'tell': 1,
          'virtually': 1,
          'every': 1,
          'nsuch': 1,
          'tidbits': 1,
          'include': 1,
          'going': 1,
          'fact': 1,
          'premiered': 1,
          '1981': 1,
          'asked': 1,
          'change': 1,
          'everyone': 1,
          'thought': 1,
          'worst': 1,
          'ever': 1,
          'heard': 1,
          'theres': 1,
          'early': 1,
          'sits': 1,
          'around': 1,
          'listens': 1,
          'tape': 1,
          'recorder': 1,
          'theyve': 1,
          'found': 1,
          'explaining': 1,
          'demonic': 1,
          'forces': 1,
          'nfor': 1,
          'written': 1,
          'characters': 1,
          'smoking': 1,
          'wacky': 1,
          'kids': 1,
          'decided': 1,
          'actually': 1,
          'smoke': 1,
          'nalmost': 1,
          'unusable': 1,
          'actors': 1,
          'never': 1,
          'smoked': 1,
          'result': 1,
          'confused': 1,
          'unable': 1,
          'perform': 1,
          'ni': 1,
          'wish': 1,
          'factor': 1,
          'high': 1,
          'raimirob': 1,
          'people': 1,
          'youd': 1,
          'think': 1,
          'would': 1,
          'enthusiastic': 1,
          'talking': 1,
          'instead': 1,
          'barely': 1,
          'ndont': 1,
          'get': 1,
          'wrong': 1,
          'speak': 1,
          'hear': 1,
          'instances': 1,
          'silent': 1,
          'periods': 1,
          'nsometimes': 1,
          'one': 1,
          'silences': 1,
          'ask': 1,
          'anything': 1,
          'nto': 1,
          'sign': 1,
          'seems': 1,
          'like': 1,
          'doesnt': 1,
          'remember': 1,
          'production': 1,
          'nwell': 1,
          'compared': 1,
          'anyway': 1,
          'included': 1,
          'photo': 1,
          'gallery': 1,
          'includes': 1,
          'pictures': 1,
          'gala': 1,
          'premiere': 1,
          'twenty': 1,
          'minutes': 1,
          'nthis': 1,
          'really': 1,
          'shows': 1,
          'improved': 1,
          'upon': 1,
          'using': 1,
          'simple': 1,
          'techniques': 1,
          'noverall': 1,
          'superior': 1,
          'genre': 1,
          'nand': 1,
          'collectors': 1,
          'well': 1,
          'worth': 1,
          'youre': 1,
          'either': 1,
          'filmmaking': 1,
          'process': 1,
          'nall': 1,
          'special': 1,
          'dvds': 1,
          'thorough': 1,
          'npos': 1}),
 Counter({'film': 6,
          'jack': 6,
          'karen': 5,
          'sight': 4,
          'foley': 4,
          'nbut': 4,
          'gives': 3,
          'best': 3,
          'clooney': 3,
          'love': 3,
          'crime': 3,
          'delivers': 3,
          'actually': 3,
          'good': 3,
          'leonard': 2,
          'quickly': 2,
          'one': 2,
          'nout': 2,
          'robber': 2,
          'nhe': 2,
          'escape': 2,
          'zahn': 2,
          'sisco': 2,
          'lopez': 2,
          'nhowever': 2,
          'performance': 2,
          'role': 2,
          'excellent': 2,
          'nshe': 2,
          'may': 2,
          'cast': 2,
          'nwith': 2,
          'films': 2,
          'action': 2,
          'seem': 2,
          'spots': 2,
          'elmore': 1,
          'become': 1,
          'hollywoods': 1,
          'favorite': 1,
          'authors': 1,
          'four': 1,
          'adaptations': 1,
          'many': 1,
          'years': 1,
          'witty': 1,
          'inventive': 1,
          'get': 1,
          'shorty': 1,
          'run': 1,
          'money': 1,
          'adaptation': 1,
          'around': 1,
          'ngeorge': 1,
          'stars': 1,
          'nice': 1,
          'bank': 1,
          'nknow': 1,
          'type': 1,
          'uses': 1,
          'charm': 1,
          'wits': 1,
          'rather': 1,
          'gun': 1,
          'even': 1,
          'charming': 1,
          'guys': 1,
          'end': 1,
          'unlucky': 1,
          'ends': 1,
          'jail': 1,
          'long': 1,
          'plots': 1,
          'help': 1,
          'friend': 1,
          'fellow': 1,
          'buddy': 1,
          'bragg': 1,
          'ving': 1,
          'rhames': 1,
          'slowwitted': 1,
          'pothead': 1,
          'associate': 1,
          'glenn': 1,
          'michaels': 1,
          'steve': 1,
          'didnt': 1,
          'count': 1,
          'u': 1,
          'marshal': 1,
          'jennifer': 1,
          'nappearing': 1,
          'right': 1,
          'place': 1,
          'wrong': 1,
          'time': 1,
          'gets': 1,
          'involved': 1,
          'foleys': 1,
          'attempt': 1,
          'subsequent': 1,
          'manhunt': 1,
          'bring': 1,
          'develops': 1,
          'rapport': 1,
          'finds': 1,
          'begrudgingly': 1,
          'likes': 1,
          'guy': 1,
          'prosper': 1,
          'opposite': 1,
          'sides': 1,
          'law': 1,
          'straighten': 1,
          'goes': 1,
          'far': 1,
          'pursuit': 1,
          'last': 1,
          'nclooney': 1,
          'string': 1,
          'solid': 1,
          'never': 1,
          'stellar': 1,
          'roles': 1,
          'date': 1,
          'blends': 1,
          'perfectly': 1,
          'risk': 1,
          'taking': 1,
          'whos': 1,
          'willing': 1,
          'gamble': 1,
          'everything': 1,
          'chance': 1,
          'might': 1,
          'true': 1,
          'njennifer': 1,
          'job': 1,
          'well': 1,
          'trickier': 1,
          'woman': 1,
          'balance': 1,
          'emotions': 1,
          'sense': 1,
          'duty': 1,
          'develop': 1,
          'chemistry': 1,
          'together': 1,
          'nthe': 1,
          'boasts': 1,
          'superb': 1,
          'ensemble': 1,
          'nsteve': 1,
          'hilarious': 1,
          'steals': 1,
          'nearly': 1,
          'every': 1,
          'scene': 1,
          'hes': 1,
          'ndon': 1,
          'cheadle': 1,
          'appropriately': 1,
          'sinister': 1,
          'violent': 1,
          'excon': 1,
          'teaming': 1,
          'nalbert': 1,
          'brooks': 1,
          'enjoyable': 1,
          'white': 1,
          'collar': 1,
          'criminal': 1,
          'talks': 1,
          'much': 1,
          'dennis': 1,
          'farina': 1,
          'seems': 1,
          'underused': 1,
          'karens': 1,
          'exlawman': 1,
          'father': 1,
          'nsteven': 1,
          'soderbergh': 1,
          'sharp': 1,
          'stylistic': 1,
          'direction': 1,
          'affectation': 1,
          'freeze': 1,
          'frames': 1,
          'unique': 1,
          'take': 1,
          'scenes': 1,
          'places': 1,
          'notch': 1,
          'routine': 1,
          'na': 1,
          'recurring': 1,
          'series': 1,
          'flashbacks': 1,
          'makes': 1,
          'complex': 1,
          'ndevoid': 1,
          'bells': 1,
          'whistles': 1,
          'fairly': 1,
          'straightforward': 1,
          'story': 1,
          'bare': 1,
          'pass': 1,
          'smart': 1,
          'dialogue': 1,
          'characters': 1,
          'easily': 1,
          'smoothes': 1,
          'rough': 1,
          'plot': 1,
          'romantic': 1,
          'fronts': 1,
          'npos': 1}),
 Counter({'matrix': 3,
          'reeves': 3,
          'neo': 2,
          'role': 2,
          'ntheres': 2,
          'story': 2,
          'fishburne': 2,
          'quite': 2,
          'fight': 2,
          'wachowskis': 2,
          'great': 2,
          'build': 2,
          'films': 2,
          'plenty': 2,
          'course': 2,
          'bob': 1,
          'happy': 1,
          'bastards': 1,
          'quickie': 1,
          'review': 1,
          'nthe': 1,
          'nwhats': 1,
          'worse': 1,
          'y2k': 1,
          'nhow': 1,
          'fully': 1,
          'digital': 1,
          'future': 1,
          'nothing': 1,
          'real': 1,
          'nthats': 1,
          'computer': 1,
          'programmer': 1,
          'keanu': 1,
          'slowly': 1,
          'learns': 1,
          'enters': 1,
          'dangerous': 1,
          'world': 1,
          'movie': 1,
          'directed': 1,
          'wachowski': 1,
          'brothers': 1,
          'guys': 1,
          'behind': 1,
          'hip': 1,
          'thriller': 1,
          'bound': 1,
          'nbefore': 1,
          'groan': 1,
          'presence': 1,
          'lead': 1,
          'hold': 1,
          'actually': 1,
          'depth': 1,
          'nit': 1,
          'seems': 1,
          'group': 1,
          'hackers': 1,
          'stop': 1,
          'system': 1,
          'led': 1,
          'bald': 1,
          'brilliant': 1,
          'laurence': 1,
          'assisted': 1,
          'carrie': 1,
          'ann': 1,
          'moss': 1,
          'looks': 1,
          'cool': 1,
          'leather': 1,
          'must': 1,
          'say': 1,
          'nneo': 1,
          'pretty': 1,
          'much': 1,
          'key': 1,
          'player': 1,
          'although': 1,
          'really': 1,
          'doesnt': 1,
          'look': 1,
          'first': 1,
          'ncould': 1,
          'amateur': 1,
          'one': 1,
          'fisburne': 1,
          'thinks': 1,
          'ncredit': 1,
          'putting': 1,
          'together': 1,
          'allows': 1,
          'suspense': 1,
          'something': 1,
          'special': 1,
          'effectsladen': 1,
          'seem': 1,
          'days': 1,
          'effects': 1,
          'go': 1,
          'around': 1,
          'least': 1,
          'theres': 1,
          'backbone': 1,
          'well': 1,
          'nreeves': 1,
          'surprisingly': 1,
          'good': 1,
          'particularly': 1,
          'scene': 1,
          'comes': 1,
          'across': 1,
          'goofy': 1,
          'yet': 1,
          'ni': 1,
          'wish': 1,
          'villains': 1,
          'werent': 1,
          'generic': 1,
          'leftover': 1,
          'gmen': 1,
          'looking': 1,
          'sweet': 1,
          'scifi': 1,
          'actioner': 1,
          'stopmotion': 1,
          'swooping': 1,
          'camera': 1,
          'angles': 1,
          'motherlode': 1,
          'helicopter': 1,
          'explosion': 1,
          'nnow': 1,
          'headed': 1,
          'horror': 1,
          'next': 1,
          'project': 1,
          'nbring': 1,
          'npos': 1}),
 Counter({'dalai': 3,
          'lama': 3,
          'kundun': 2,
          'buddhist': 2,
          'china': 2,
          'way': 2,
          'political': 2,
          'interesting': 2,
          'martin': 1,
          'scorseses': 1,
          'chronicles': 1,
          'roughly': 1,
          'first': 1,
          'twenty': 1,
          'years': 1,
          'life': 1,
          'currently': 1,
          'exiled': 1,
          'criticized': 1,
          'lack': 1,
          'narrative': 1,
          'structure': 1,
          'npersonally': 1,
          'dont': 1,
          'think': 1,
          'needs': 1,
          'one': 1,
          'works': 1,
          'perfectly': 1,
          'well': 1,
          'study': 1,
          'tibetan': 1,
          'culture': 1,
          'communist': 1,
          'nscorsese': 1,
          'views': 1,
          'many': 1,
          'tibetans': 1,
          'probably': 1,
          'largerthanlife': 1,
          'symbol': 1,
          'spirituality': 1,
          'leadership': 1,
          'glimpses': 1,
          'head': 1,
          'come': 1,
          'several': 1,
          'yet': 1,
          'oblique': 1,
          'dream': 1,
          'sequences': 1,
          'portrayal': 1,
          'appropriate': 1,
          'film': 1,
          'concentrates': 1,
          'spiritual': 1,
          'rather': 1,
          'personal': 1,
          'nthe': 1,
          'set': 1,
          'design': 1,
          'cinematography': 1,
          'outstanding': 1,
          'scorsese': 1,
          'occasionally': 1,
          'seems': 1,
          'get': 1,
          'carried': 1,
          'away': 1,
          'spectacle': 1,
          'helps': 1,
          'augment': 1,
          'cultural': 1,
          'contrast': 1,
          'travels': 1,
          'meet': 1,
          'chairman': 1,
          'mao': 1,
          'npolitical': 1,
          'art': 1,
          'sometimes': 1,
          'succumbs': 1,
          'temptation': 1,
          'start': 1,
          'shouting': 1,
          'slogans': 1,
          'succeeds': 1,
          'delivering': 1,
          'message': 1,
          'artistically': 1,
          'without': 1,
          'overly': 1,
          'manipulative': 1,
          'npos': 1}),
 Counter({'beauty': 5,
          'feel': 4,
          'nthe': 4,
          'lester': 3,
          'people': 3,
          'appreciate': 3,
          'american': 3,
          'movie': 3,
          'family': 2,
          'kevin': 2,
          'spacey': 2,
          'able': 2,
          'edge': 2,
          'world': 2,
          'person': 2,
          'life': 2,
          'like': 2,
          'ability': 2,
          'good': 2,
          'simply': 2,
          'nonformula': 2,
          'offers': 2,
          'performances': 2,
          'synopsis': 1,
          'upper': 1,
          'middle': 1,
          'class': 1,
          'suburban': 1,
          'man': 1,
          'realizes': 1,
          'going': 1,
          'motions': 1,
          'unable': 1,
          'passion': 1,
          'soulless': 1,
          'cynical': 1,
          'longer': 1,
          'success': 1,
          'failure': 1,
          'neveryone': 1,
          'else': 1,
          'around': 1,
          'similar': 1,
          'symptoms': 1,
          'nlesters': 1,
          'unassertive': 1,
          'daughter': 1,
          'jane': 1,
          'thora': 1,
          'birch': 1,
          'lethargic': 1,
          'change': 1,
          'yet': 1,
          'ready': 1,
          'whine': 1,
          'complain': 1,
          'nhis': 1,
          'wife': 1,
          'carolyn': 1,
          'annette': 1,
          'bening': 1,
          'reduced': 1,
          'keeping': 1,
          'appearances': 1,
          'reciting': 1,
          'commercialist': 1,
          'slogans': 1,
          'nand': 1,
          'big': 1,
          'house': 1,
          'decent': 1,
          'standard': 1,
          'living': 1,
          'seems': 1,
          'freedom': 1,
          'deprived': 1,
          'dopedealing': 1,
          'teen': 1,
          'across': 1,
          'street': 1,
          'practically': 1,
          'imprisoned': 1,
          'domineering': 1,
          'bullying': 1,
          'father': 1,
          'nwhen': 1,
          'embarks': 1,
          'mad': 1,
          'scramble': 1,
          'fact': 1,
          'quit': 1,
          'job': 1,
          'newfound': 1,
          'interest': 1,
          'exercise': 1,
          'impress': 1,
          'teenage': 1,
          'girl': 1,
          'ruffle': 1,
          'lot': 1,
          'feathers': 1,
          'nwill': 1,
          'regain': 1,
          'nopinion': 1,
          'say': 1,
          'time': 1,
          'never': 1,
          'health': 1,
          'gone': 1,
          'nlikewise': 1,
          'raised': 1,
          'fabulously': 1,
          'pampered': 1,
          'prosperity': 1,
          'become': 1,
          'unhappy': 1,
          'spiteful': 1,
          'dumbest': 1,
          'inconsequential': 1,
          'problems': 1,
          'clue': 1,
          'nsometimes': 1,
          'takes': 1,
          'near': 1,
          'fall': 1,
          'accidentally': 1,
          'deliberate': 1,
          'fasting': 1,
          'move': 1,
          'apathy': 1,
          'reclaim': 1,
          'challenge': 1,
          'deprivationappreciation': 1,
          'cycle': 1,
          'major': 1,
          'theme': 1,
          'namerican': 1,
          'intelligent': 1,
          'articulate': 1,
          'fantastic': 1,
          'everyone': 1,
          'cast': 1,
          'especially': 1,
          'gosh': 1,
          'darn': 1,
          'amazing': 1,
          'thing': 1,
          'sentimental': 1,
          'music': 1,
          'hospital': 1,
          'scene': 1,
          'overly': 1,
          'dramatic': 1,
          'hokum': 1,
          'entertains': 1,
          'brilliant': 1,
          'nif': 1,
          'mood': 1,
          'thoughtful': 1,
          'flick': 1,
          'highly': 1,
          'recommend': 1,
          'npos': 1}),
 Counter({'elizabeth': 7,
          'nthe': 5,
          'much': 4,
          'though': 3,
          'films': 3,
          'didnt': 3,
          'characters': 3,
          'well': 3,
          'england': 3,
          'queen': 3,
          'would': 3,
          'film': 3,
          'love': 3,
          'light': 3,
          'piece': 2,
          'something': 2,
          'think': 2,
          'quite': 2,
          'care': 2,
          'create': 2,
          'many': 2,
          'half': 2,
          'sister': 2,
          'side': 2,
          'result': 2,
          'council': 2,
          'political': 2,
          'cinematographer': 2,
          'beautifully': 2,
          'frame': 2,
          'fine': 1,
          'filmmaking': 1,
          'theres': 1,
          'nleft': 1,
          'bit': 1,
          'cold': 1,
          'bugs': 1,
          'often': 1,
          'particularly': 1,
          'days': 1,
          'nto': 1,
          'first': 1,
          'foremost': 1,
          'job': 1,
          'filmmaker': 1,
          'imagined': 1,
          'historical': 1,
          'case': 1,
          'may': 1,
          'audience': 1,
          'gives': 1,
          'hoot': 1,
          'nand': 1,
          'works': 1,
          'levels': 1,
          'falls': 1,
          'short': 1,
          'excellence': 1,
          'reason': 1,
          'nelizabeth': 1,
          'takes': 1,
          'place': 1,
          '1554': 1,
          'mary': 1,
          'monarch': 1,
          'catholicism': 1,
          'dying': 1,
          'nbefore': 1,
          'dies': 1,
          'bear': 1,
          'sign': 1,
          'document': 1,
          'condemn': 1,
          'death': 1,
          'heretical': 1,
          'protestant': 1,
          'beliefs': 1,
          'nas': 1,
          'amidst': 1,
          'anger': 1,
          'within': 1,
          'becomes': 1,
          'chronicles': 1,
          'rise': 1,
          'power': 1,
          'fights': 1,
          'unified': 1,
          'church': 1,
          'tries': 1,
          'bring': 1,
          'order': 1,
          'personal': 1,
          'life': 1,
          'nmuch': 1,
          'deals': 1,
          'elizabeths': 1,
          'lord': 1,
          'robert': 1,
          'mysterious': 1,
          'man': 1,
          'thrusts': 1,
          'lordship': 1,
          'onto': 1,
          'woman': 1,
          'continues': 1,
          'proclaim': 1,
          'nthere': 1,
          'ado': 1,
          'lack': 1,
          'husband': 1,
          'pressures': 1,
          'spain': 1,
          'france': 1,
          'enter': 1,
          'equation': 1,
          'problem': 1,
          'lies': 1,
          'centerpiece': 1,
          'interests': 1,
          'character': 1,
          'driven': 1,
          'element': 1,
          'ni': 1,
          'perhaps': 1,
          'aside': 1,
          'played': 1,
          'blanchett': 1,
          'interest': 1,
          'join': 1,
          'nuptials': 1,
          'cast': 1,
          'rounded': 1,
          'marvelous': 1,
          'rush': 1,
          'plays': 1,
          'queens': 1,
          'loyal': 1,
          'advisor': 1,
          'sir': 1,
          'francis': 1,
          'attenborough': 1,
          'wellmeaning': 1,
          'oldfashioned': 1,
          'lead': 1,
          'nwhy': 1,
          'must': 1,
          'asking': 1,
          'recommend': 1,
          'nsimply': 1,
          'perfect': 1,
          'pairing': 1,
          'director': 1,
          'nkapur': 1,
          'remi': 1,
          'adefarasin': 1,
          'neither': 1,
          'heard': 1,
          'realized': 1,
          'filmmkaing': 1,
          'technical': 1,
          'streams': 1,
          'painting': 1,
          'period': 1,
          'captures': 1,
          'realistic': 1,
          'sources': 1,
          'found': 1,
          'churches': 1,
          'cellars': 1,
          'castles': 1,
          '16th': 1,
          'century': 1,
          'europe': 1,
          'neach': 1,
          'rich': 1,
          'color': 1,
          'contrasted': 1,
          'blackness': 1,
          'blownout': 1,
          'white': 1,
          'windows': 1,
          'costumes': 1,
          'alexandra': 1,
          'byrne': 1,
          'deserve': 1,
          'mention': 1,
          'inportant': 1,
          'aspect': 1,
          'shot': 1,
          'nindeed': 1,
          'one': 1,
          'visually': 1,
          'beautiful': 1,
          'decade': 1,
          'ranking': 1,
          'kundun': 1,
          'braveheart': 1,
          'nwatch': 1,
          'also': 1,
          'incredibly': 1,
          'godfatheresque': 1,
          'mass': 1,
          'murder': 1,
          'scene': 1,
          'nit': 1,
          'made': 1,
          'retrospect': 1,
          'similarities': 1,
          'two': 1,
          'npos': 1}),
 Counter({'nthe': 10,
          'film': 6,
          'effects': 5,
          'action': 4,
          'science': 3,
          'fiction': 3,
          'best': 3,
          'memory': 3,
          'robocop': 2,
          'create': 2,
          'total': 2,
          'recall': 2,
          'sets': 2,
          'special': 2,
          'nquaid': 2,
          'mars': 2,
          'go': 2,
          'people': 2,
          'really': 2,
          'plot': 2,
          'twist': 2,
          'terrific': 2,
          'level': 2,
          'carolco': 1,
          'pictures': 1,
          'dutch': 1,
          'director': 1,
          'paul': 1,
          'verhoeven': 1,
          'came': 1,
          'together': 1,
          '1990': 1,
          'mega': 1,
          'hit': 1,
          'masterpiece': 1,
          'naction': 1,
          'dont': 1,
          'get': 1,
          'better': 1,
          'story': 1,
          'involves': 1,
          'construction': 1,
          'worker': 1,
          'named': 1,
          'douglas': 1,
          'quaid': 1,
          'arnold': 1,
          'schwarzenegger': 1,
          'lives': 1,
          'earth': 1,
          'beautiful': 1,
          'wife': 1,
          'lori': 1,
          'sharon': 1,
          'stone': 1,
          'obsessed': 1,
          'decides': 1,
          'second': 1,
          'choice': 1,
          'brain': 1,
          'implant': 1,
          'fake': 1,
          'two': 1,
          'week': 1,
          'vacation': 1,
          'nwhile': 1,
          'implanted': 1,
          'cap': 1,
          'triggered': 1,
          'doctors': 1,
          'realize': 1,
          'quaids': 1,
          'previously': 1,
          'erased': 1,
          'nnow': 1,
          'must': 1,
          'find': 1,
          'want': 1,
          'dead': 1,
          'unfolds': 1,
          'rapid': 1,
          'pace': 1,
          'explaining': 1,
          'great': 1,
          'mindboggling': 1,
          'nit': 1,
          'grabs': 1,
          'never': 1,
          'lets': 1,
          'nthis': 1,
          'winner': 1,
          'beginning': 1,
          'end': 1,
          'superb': 1,
          'combining': 1,
          'elements': 1,
          'psychological': 1,
          'mystery': 1,
          'riproaring': 1,
          'saga': 1,
          'nschwarzenegger': 1,
          'gives': 1,
          'performance': 1,
          'ever': 1,
          'supporting': 1,
          'cast': 1,
          'good': 1,
          'stunts': 1,
          'huge': 1,
          'elaborate': 1,
          'lot': 1,
          'attention': 1,
          'payed': 1,
          'detail': 1,
          'music': 1,
          'sound': 1,
          'perfect': 1,
          'add': 1,
          'certain': 1,
          'impact': 1,
          'makeup': 1,
          'rob': 1,
          'bottin': 1,
          'howling': 1,
          'thing': 1,
          'top': 1,
          'notch': 1,
          'mention': 1,
          'extremely': 1,
          'outlandish': 1,
          'visual': 1,
          'dream': 1,
          'quest': 1,
          'abyss': 1,
          'industrial': 1,
          'light': 1,
          'magic': 1,
          'star': 1,
          'wars': 1,
          'trilogy': 1,
          'jurassic': 1,
          'park': 1,
          'terminator': 1,
          '2': 1,
          'phenomenal': 1,
          'visuals': 1,
          'state': 1,
          'art': 1,
          'slickness': 1,
          'oscar': 1,
          'nof': 1,
          'course': 1,
          'isnt': 1,
          'always': 1,
          'realistic': 1,
          'nfor': 1,
          'example': 1,
          'true': 1,
          'body': 1,
          'wont': 1,
          'explode': 1,
          'vacuum': 1,
          'space': 1,
          'nwho': 1,
          'cares': 1,
          'nits': 1,
          'movie': 1,
          'nmovies': 1,
          'supposed': 1,
          'entertain': 1,
          'nand': 1,
          'opinion': 1,
          'achieves': 1,
          'entertainment': 1,
          'may': 1,
          'impossible': 1,
          'beat': 1,
          'npos': 1}),
 Counter({'run': 8,
          'movie': 7,
          'lola': 5,
          'something': 4,
          'marks': 3,
          'minutes': 3,
          'movies': 2,
          'late': 2,
          'film': 2,
          'truly': 2,
          'perhaps': 2,
          'need': 2,
          'tykwers': 2,
          'boyfriend': 2,
          'one': 2,
          'nit': 2,
          'hundred': 2,
          'thousand': 2,
          'twenty': 2,
          'like': 2,
          'much': 2,
          'achievement': 2,
          'abundance': 1,
          'trite': 1,
          'recycled': 1,
          '90s': 1,
          'tremendous': 1,
          'demand': 1,
          'lovers': 1,
          'never': 1,
          'mind': 1,
          'critics': 1,
          'present': 1,
          'wide': 1,
          'audience': 1,
          'original': 1,
          'audaciously': 1,
          'purely': 1,
          'thematically': 1,
          'nfor': 1,
          'former': 1,
          'look': 1,
          'director': 1,
          'tom': 1,
          'incredible': 1,
          'german': 1,
          'thriller': 1,
          'may': 1,
          'make': 1,
          'viewers': 1,
          'cooling': 1,
          'period': 1,
          'afterwards': 1,
          'nlola': 1,
          'contemporary': 1,
          'gothgirl': 1,
          'blazing': 1,
          'red': 1,
          'hair': 1,
          'receives': 1,
          'desperate': 1,
          'phone': 1,
          'call': 1,
          'manni': 1,
          'day': 1,
          'seems': 1,
          'delivering': 1,
          'lost': 1,
          'bag': 1,
          'containing': 1,
          'doesnt': 1,
          'deliver': 1,
          'within': 1,
          'next': 1,
          'killed': 1,
          'nthis': 1,
          'gives': 1,
          'come': 1,
          '100': 1,
          '000': 1,
          'dies': 1,
          'nso': 1,
          'runs': 1,
          'jogs': 1,
          'sprints': 1,
          'hopes': 1,
          'somehow': 1,
          'someway': 1,
          'shell': 1,
          'able': 1,
          'obtain': 1,
          'money': 1,
          'save': 1,
          'life': 1,
          'nfrom': 1,
          'critic': 1,
          'steve': 1,
          'rhodes': 1,
          'described': 1,
          'plays': 1,
          'bit': 1,
          'sliding': 1,
          'doors': 1,
          'steroids': 1,
          'nwith': 1,
          'nonstop': 1,
          'techno': 1,
          'soundtrack': 1,
          'wierd': 1,
          'camerawork': 1,
          'kinds': 1,
          'insane': 1,
          'zooms': 1,
          'breakneck': 1,
          'pace': 1,
          'anyone': 1,
          'bored': 1,
          'smoking': 1,
          'nindeed': 1,
          'often': 1,
          'outrageously': 1,
          'exciting': 1,
          'well': 1,
          'bitterly': 1,
          'ironic': 1,
          'subtly': 1,
          'serious': 1,
          'nvery': 1,
          'titanic': 1,
          'filmmaking': 1,
          'nthe': 1,
          'way': 1,
          'made': 1,
          'pure': 1,
          'visual': 1,
          'style': 1,
          'breathtaking': 1,
          'literally': 1,
          'sometimes': 1,
          'nthematically': 1,
          'leave': 1,
          'desired': 1,
          'toys': 1,
          'around': 1,
          'intriguing': 1,
          'ideas': 1,
          'occasionally': 1,
          'seem': 1,
          'little': 1,
          'substance': 1,
          'behind': 1,
          'flash': 1,
          'nwhile': 1,
          'watching': 1,
          'matter': 1,
          'nrunning': 1,
          'breezy': 1,
          '81': 1,
          'wished': 1,
          'longer': 1,
          'damn': 1,
          'good': 1,
          'lasted': 1,
          'equivalent': 1,
          'rollercoaster': 1,
          'amount': 1,
          'thrills': 1,
          'fun': 1,
          'offers': 1,
          'n': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'npos': 1}),
 Counter({'horror': 12,
          'film': 7,
          'know': 5,
          'neve': 4,
          'campbell': 4,
          'movie': 4,
          'good': 4,
          'familar': 3,
          'killer': 3,
          'whos': 3,
          'typical': 3,
          'stuff': 3,
          'scene': 3,
          'casey': 3,
          'killed': 3,
          'sidneys': 3,
          'director': 3,
          'wes': 3,
          'craven': 3,
          'time': 2,
          'friend': 2,
          'stupid': 2,
          'cant': 2,
          'act': 2,
          'running': 2,
          'door': 2,
          'watching': 2,
          'question': 2,
          'ntheyre': 2,
          'guy': 2,
          'makes': 2,
          'scary': 2,
          'funny': 2,
          'drew': 2,
          'barrymore': 2,
          'like': 2,
          'gets': 2,
          'boyfriend': 2,
          'answer': 2,
          'nthat': 2,
          'half': 2,
          'happen': 2,
          'would': 2,
          'nthe': 2,
          'impressive': 2,
          'school': 2,
          'movies': 2,
          'first': 2,
          'nightmare': 2,
          'obviously': 2,
          'carpenter': 2,
          'ni': 2,
          'hate': 2,
          'actors': 2,
          'overexposed': 2,
          'enough': 2,
          'anxious': 1,
          'see': 1,
          'long': 1,
          'na': 1,
          'mine': 1,
          'recommended': 1,
          'crush': 1,
          'wanted': 1,
          'prove': 1,
          'shes': 1,
          'hot': 1,
          'thinks': 1,
          'nhe': 1,
          'proved': 1,
          'right': 1,
          'reasons': 1,
          'enjoy': 1,
          'go': 1,
          'way': 1,
          'beyond': 1,
          'nscream': 1,
          'treads': 1,
          'ground': 1,
          'star': 1,
          'puts': 1,
          'stalking': 1,
          'big': 1,
          'breasted': 1,
          'girl': 1,
          'always': 1,
          'stairs': 1,
          'front': 1,
          'nits': 1,
          'nso': 1,
          'may': 1,
          'ask': 1,
          'seem': 1,
          'new': 1,
          'original': 1,
          'nbecause': 1,
          'treats': 1,
          'hasnt': 1,
          'done': 1,
          'thus': 1,
          'viewer': 1,
          'disilusioned': 1,
          'believing': 1,
          'old': 1,
          'tired': 1,
          'nthis': 1,
          'raises': 1,
          'another': 1,
          'nsimple': 1,
          'characters': 1,
          'victims': 1,
          'dont': 1,
          'hell': 1,
          'chased': 1,
          'ski': 1,
          'mask': 1,
          'machette': 1,
          'nthey': 1,
          'fans': 1,
          'happens': 1,
          'even': 1,
          'certain': 1,
          'times': 1,
          'nyou': 1,
          'tell': 1,
          'opening': 1,
          'becker': 1,
          'making': 1,
          'popcorn': 1,
          'getting': 1,
          'ready': 1,
          'watch': 1,
          'video': 1,
          'sounds': 1,
          'calls': 1,
          'play': 1,
          'game': 1,
          'involves': 1,
          'triva': 1,
          'wrong': 1,
          'get': 1,
          'nshe': 1,
          'knows': 1,
          'asks': 1,
          'questions': 1,
          'final': 1,
          'nand': 1,
          'works': 1,
          'normal': 1,
          'things': 1,
          'never': 1,
          'plot': 1,
          'sidney': 1,
          'prescott': 1,
          'attractive': 1,
          'young': 1,
          'high': 1,
          'student': 1,
          'mother': 1,
          'year': 1,
          'ago': 1,
          'tommorrow': 1,
          'stalked': 1,
          'previously': 1,
          'murdered': 1,
          'one': 1,
          'classmates': 1,
          'naturally': 1,
          'everybody': 1,
          'small': 1,
          'california': 1,
          'town': 1,
          'suspect': 1,
          'including': 1,
          'billy': 1,
          'loomis': 1,
          'nbut': 1,
          'said': 1,
          'people': 1,
          'work': 1,
          'thats': 1,
          'appealing': 1,
          'references': 1,
          'says': 1,
          'elm': 1,
          'street': 1,
          'rest': 1,
          'sucked': 1,
          'nwhich': 1,
          'job': 1,
          'poking': 1,
          'fun': 1,
          'genre': 1,
          'made': 1,
          'legend': 1,
          'patting': 1,
          'back': 1,
          'directed': 1,
          'none': 1,
          'others': 1,
          'tatum': 1,
          'mentions': 1,
          'homage': 1,
          'writer': 1,
          'kevin': 1,
          'williamson': 1,
          'also': 1,
          'john': 1,
          'cast': 1,
          'well': 1,
          'chosen': 1,
          'pulls': 1,
          'heroine': 1,
          'unlike': 1,
          'heroines': 1,
          'janet': 1,
          'leigh': 1,
          'impression': 1,
          'little': 1,
          'david': 1,
          'arquette': 1,
          'nalso': 1,
          'role': 1,
          'henry': 1,
          'winkler': 1,
          'fonz': 1,
          'principal': 1,
          'took': 1,
          'point': 1,
          'unnecessary': 1,
          'albeit': 1,
          'limited': 1,
          'appearance': 1,
          'friends': 1,
          'courteney': 1,
          'cox': 1,
          'reporter': 1,
          'gail': 1,
          'edwards': 1,
          'rival': 1,
          'covered': 1,
          'mothers': 1,
          'disappearance': 1,
          'show': 1,
          'untalented': 1,
          'overpaid': 1,
          'imho': 1,
          'think': 1,
          'smart': 1,
          'suppose': 1,
          'isnt': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          'mulan': 6,
          'disney': 4,
          'nmulan': 4,
          'place': 4,
          'mulans': 4,
          'movie': 3,
          'story': 3,
          'father': 3,
          'new': 2,
          'world': 2,
          'strong': 2,
          'characters': 2,
          'young': 2,
          'woman': 2,
          'nmulans': 2,
          'takes': 2,
          'nation': 2,
          'emperor': 2,
          'called': 2,
          'asianamerican': 2,
          'voices': 2,
          'interest': 2,
          'nalso': 2,
          'mushu': 2,
          'youngsters': 2,
          'animated': 2,
          'paraphrase': 1,
          'song': 1,
          'title': 1,
          'earlier': 1,
          'whole': 1,
          'mouse': 1,
          'factorys': 1,
          'latest': 1,
          'feature': 1,
          'treasure': 1,
          'featuring': 1,
          'magnificent': 1,
          'animation': 1,
          'finely': 1,
          'drawn': 1,
          'fiesty': 1,
          'headstrong': 1,
          'unlike': 1,
          'heroines': 1,
          'isnt': 1,
          'seeking': 1,
          'prince': 1,
          'charming': 1,
          'motivations': 1,
          'simple': 1,
          'save': 1,
          'serve': 1,
          'country': 1,
          'find': 1,
          'females': 1,
          'say': 1,
          'ancient': 1,
          'china': 1,
          'time': 1,
          'huns': 1,
          'invaded': 1,
          'conscription': 1,
          'one': 1,
          'man': 1,
          'family': 1,
          'join': 1,
          'army': 1,
          'defend': 1,
          'crippled': 1,
          'sneaks': 1,
          'steals': 1,
          'armor': 1,
          'saga': 1,
          'courage': 1,
          'selfdiscovery': 1,
          'nyet': 1,
          'despite': 1,
          'grim': 1,
          'backdrop': 1,
          'war': 1,
          'lively': 1,
          'tale': 1,
          'selfreliance': 1,
          'brainoverbrawn': 1,
          'even': 1,
          'smallest': 1,
          'child': 1,
          'appreciate': 1,
          'enjoy': 1,
          'utilizes': 1,
          'corps': 1,
          'talent': 1,
          'main': 1,
          'including': 1,
          'wonderful': 1,
          'mingna': 1,
          'wen': 1,
          'joy': 1,
          'luck': 1,
          'club': 1,
          'b': 1,
          'nwong': 1,
          'shang': 1,
          'commanding': 1,
          'officer': 1,
          'later': 1,
          'love': 1,
          'pat': 1,
          'morita': 1,
          'veteran': 1,
          'soontek': 1,
          'oh': 1,
          'proud': 1,
          'loving': 1,
          'adding': 1,
          'proceedings': 1,
          'eddie': 1,
          'murphy': 1,
          'dragon': 1,
          'sent': 1,
          'ancestors': 1,
          'watch': 1,
          'help': 1,
          'nhis': 1,
          'fast': 1,
          'wisecracking': 1,
          'hiptalking': 1,
          'may': 1,
          'seem': 1,
          'crowd': 1,
          'pleasing': 1,
          'performance': 1,
          'especially': 1,
          'features': 1,
          'couple': 1,
          'songs': 1,
          'fewer': 1,
          'previous': 1,
          'flicks': 1,
          'winners': 1,
          'music': 1,
          'matthew': 1,
          'wilder': 1,
          'lyrics': 1,
          'david': 1,
          'zippel': 1,
          'fit': 1,
          'nicely': 1,
          'plot': 1,
          'overall': 1,
          'score': 1,
          'jerry': 1,
          'goldsmith': 1,
          'also': 1,
          'plus': 1,
          'treat': 1,
          'powerful': 1,
          'hercules': 1,
          'heart': 1,
          'hunchback': 1,
          'notre': 1,
          'dame': 1,
          'nat': 1,
          '85': 1,
          'minutes': 1,
          'moves': 1,
          'rapidly': 1,
          'hold': 1,
          'attention': 1,
          'beginning': 1,
          'end': 1,
          'set': 1,
          'standard': 1,
          'future': 1,
          'efforts': 1,
          'studios': 1,
          'work': 1,
          'hard': 1,
          'attain': 1,
          'hoped': 1,
          'success': 1,
          'doubt': 1,
          'prove': 1,
          'popular': 1,
          'vehicle': 1,
          'spur': 1,
          'movies': 1,
          'oriential': 1,
          'themes': 1,
          'provide': 1,
          'substantial': 1,
          'roles': 1,
          'talented': 1,
          'performers': 1,
          'gave': 1,
          'production': 1,
          'nit': 1,
          'would': 1,
          'nice': 1,
          'see': 1,
          'screen': 1,
          'well': 1,
          'hear': 1,
          'ncommitted': 1,
          'lifelong': 1,
          'learning': 1,
          'effective': 1,
          'communication': 1,
          'npos': 1}),
 Counter({'martin': 7,
          'patriot': 6,
          'war': 5,
          'film': 4,
          'time': 4,
          'nand': 4,
          'hero': 3,
          'nas': 3,
          'away': 3,
          'british': 3,
          'battle': 3,
          'tavington': 3,
          'revolutionary': 2,
          'gibson': 2,
          'another': 2,
          'nyou': 2,
          'type': 2,
          'always': 2,
          'face': 2,
          'kill': 2,
          'enemies': 2,
          'emmerich': 2,
          'action': 2,
          'like': 2,
          'gladiator': 2,
          'times': 2,
          'good': 2,
          'ni': 2,
          'images': 2,
          'weapon': 2,
          'day': 2,
          'left': 2,
          'children': 2,
          'colonel': 2,
          'jason': 2,
          'isaacs': 2,
          'save': 2,
          'america': 2,
          'farmers': 2,
          'tactics': 2,
          'unfair': 2,
          'one': 2,
          'nthe': 2,
          'scenes': 2,
          'general': 2,
          'give': 2,
          'performed': 2,
          'side': 2,
          'evil': 2,
          'even': 2,
          'stick': 2,
          'figures': 2,
          'guys': 2,
          'bless': 2,
          'mel': 1,
          'provides': 1,
          'macho': 1,
          'man': 1,
          'performance': 1,
          'hollywood': 1,
          'audiences': 1,
          'know': 1,
          'shirt': 1,
          'shredded': 1,
          'scarred': 1,
          'soft': 1,
          'spot': 1,
          'loved': 1,
          'ones': 1,
          'list': 1,
          'noscarhungry': 1,
          'directorexecutive': 1,
          'producer': 1,
          'roland': 1,
          'intend': 1,
          'made': 1,
          'stereotypical': 1,
          '18th': 1,
          'century': 1,
          'delivers': 1,
          'lines': 1,
          'going': 1,
          'schwarzenegger': 1,
          'commando': 1,
          'stallone': 1,
          'cobra': 1,
          'immediately': 1,
          'come': 1,
          'mind': 1,
          'noddly': 1,
          'enough': 1,
          'much': 1,
          'epic': 1,
          'threehourtearfest': 1,
          'ninetyminute': 1,
          'guilty': 1,
          'pleasure': 1,
          'nat': 1,
          'absorbing': 1,
          'others': 1,
          'enjoyably': 1,
          'insipid': 1,
          'bloody': 1,
          'summer': 1,
          'fun': 1,
          'probably': 1,
          'would': 1,
          'despised': 1,
          'released': 1,
          'july': 1,
          '4th': 1,
          'weekend': 1,
          'nsome': 1,
          'zealously': 1,
          'americanized': 1,
          'flag': 1,
          'used': 1,
          'lifesaving': 1,
          'example': 1,
          'independence': 1,
          'seems': 1,
          'appropriate': 1,
          'year': 1,
          'wholeheartedly': 1,
          'accept': 1,
          'nlike': 1,
          'emmerichs': 1,
          'id4': 1,
          'obvious': 1,
          'propaganda': 1,
          'americans': 1,
          'hapless': 1,
          'underdogs': 1,
          'motivated': 1,
          'freedom': 1,
          'nsure': 1,
          'predictable': 1,
          'melodramatic': 1,
          'moment': 1,
          'leaving': 1,
          'theater': 1,
          'dumbfounded': 1,
          'patriotism': 1,
          'isnt': 1,
          'point': 1,
          'ngibson': 1,
          'plays': 1,
          'benjamin': 1,
          'lionized': 1,
          'french': 1,
          'indian': 1,
          'veteran': 1,
          'beginning': 1,
          'emotionally': 1,
          'suffering': 1,
          'loving': 1,
          'wife': 1,
          'passed': 1,
          'nhe': 1,
          'father': 1,
          'seven': 1,
          'south': 1,
          'carolina': 1,
          'estate': 1,
          'along': 1,
          'black': 1,
          'servants': 1,
          'slaves': 1,
          'rumbles': 1,
          'miles': 1,
          'swears': 1,
          'keep': 1,
          'family': 1,
          'close': 1,
          'battlefields': 1,
          'nbut': 1,
          'oldest': 1,
          'son': 1,
          'enlists': 1,
          'anyway': 1,
          'murdered': 1,
          'wicked': 1,
          'redcoat': 1,
          'quickly': 1,
          'decides': 1,
          'fate': 1,
          'presented': 1,
          'nforming': 1,
          'band': 1,
          'aggressive': 1,
          'using': 1,
          'guerilla': 1,
          'considered': 1,
          'art': 1,
          'becomes': 1,
          'number': 1,
          'target': 1,
          'army': 1,
          'best': 1,
          'parts': 1,
          'rugged': 1,
          'militia': 1,
          'men': 1,
          'outsmart': 1,
          'armies': 1,
          'right': 1,
          'nevery': 1,
          'attacked': 1,
          'unsuspecting': 1,
          'enemy': 1,
          'see': 1,
          'disbelief': 1,
          'cornwallis': 1,
          'tom': 1,
          'wilkinson': 1,
          'priceless': 1,
          'entertainment': 1,
          'tension': 1,
          'gradually': 1,
          'formulates': 1,
          'running': 1,
          'final': 1,
          'inevitable': 1,
          'numerous': 1,
          'expertly': 1,
          'done': 1,
          'nclearer': 1,
          'realistic': 1,
          'gruesome': 1,
          'r': 1,
          'rating': 1,
          'really': 1,
          'get': 1,
          'sense': 1,
          'warfare': 1,
          'period': 1,
          'neverything': 1,
          'orderly': 1,
          'still': 1,
          'quite': 1,
          'gory': 1,
          'fashion': 1,
          'shoots': 1,
          'remaining': 1,
          'soldiers': 1,
          'charge': 1,
          'nits': 1,
          'organized': 1,
          'strategic': 1,
          'according': 1,
          'ineffective': 1,
          'nthere': 1,
          'interesting': 1,
          'contrast': 1,
          'traditional': 1,
          'style': 1,
          'martins': 1,
          'takenoprisoners': 1,
          'method': 1,
          'nwhat': 1,
          'drives': 1,
          'supposedly': 1,
          'actions': 1,
          'originally': 1,
          'brutal': 1,
          'nplayed': 1,
          'wonderfully': 1,
          'loves': 1,
          'glare': 1,
          'horse': 1,
          'civilians': 1,
          'nervously': 1,
          'avoid': 1,
          'eye': 1,
          'contact': 1,
          'nthis': 1,
          'character': 1,
          'viciously': 1,
          'kills': 1,
          'women': 1,
          'laughs': 1,
          'way': 1,
          'home': 1,
          'eyes': 1,
          'nhis': 1,
          'portrayal': 1,
          'sparked': 1,
          'controversy': 1,
          'britain': 1,
          'claim': 1,
          'falsely': 1,
          'represents': 1,
          'countrymen': 1,
          'cowardly': 1,
          'sadistic': 1,
          'disagree': 1,
          'accusation': 1,
          'ntavington': 1,
          'represent': 1,
          'country': 1,
          'unnecessary': 1,
          'executions': 1,
          'shock': 1,
          'colleagues': 1,
          'anger': 1,
          'nbesides': 1,
          'redcoats': 1,
          'remain': 1,
          'neither': 1,
          'glorified': 1,
          'patronized': 1,
          'make': 1,
          'easiest': 1,
          'kinds': 1,
          'movies': 1,
          'audience': 1,
          'reason': 1,
          'love': 1,
          'bad': 1,
          'nheck': 1,
          'spend': 1,
          'entire': 1,
          'glossing': 1,
          'three': 1,
          'hours': 1,
          'fictional': 1,
          'fireworks': 1,
          'nwith': 1,
          'seeking': 1,
          'revenge': 1,
          'comic': 1,
          'book': 1,
          'villain': 1,
          'ready': 1,
          'take': 1,
          'lethal': 1,
          'colonial': 1,
          'ngod': 1,
          'god': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'path': 8,
          'jordan': 6,
          'fairy': 6,
          'tales': 6,
          'story': 5,
          'angela': 4,
          'carter': 4,
          'wolves': 4,
          'nin': 3,
          'world': 3,
          'life': 3,
          'become': 3,
          'dark': 3,
          'fate': 3,
          'stories': 3,
          'company': 3,
          'werewolves': 3,
          'dream': 3,
          'ways': 3,
          'film': 3,
          'sense': 3,
          'nthis': 3,
          'women': 2,
          'sarah': 2,
          'patterson': 2,
          'lansbury': 2,
          'neil': 2,
          'years': 2,
          'trend': 2,
          'fantasy': 2,
          'tale': 2,
          'witches': 2,
          'nbut': 2,
          'wicked': 2,
          'eyes': 2,
          'version': 2,
          'old': 2,
          'going': 2,
          'mind': 2,
          'rosaleen': 2,
          'told': 2,
          'surprisingly': 2,
          'many': 2,
          'nand': 2,
          'wise': 2,
          'becomes': 2,
          'village': 2,
          'script': 2,
          'good': 2,
          'girls': 2,
          'forest': 2,
          'stray': 2,
          'conventional': 2,
          'leave': 2,
          'death': 2,
          'sex': 2,
          'knowledge': 2,
          'risk': 2,
          'theres': 1,
          'beast': 1,
          'men': 1,
          'meets': 1,
          'match': 1,
          'nstarring': 1,
          'tusse': 1,
          'silberg': 1,
          'david': 1,
          'warner': 1,
          'directed': 1,
          'written': 1,
          'cinematography': 1,
          'bryan': 1,
          'loftus': 1,
          'recent': 1,
          'field': 1,
          'writers': 1,
          'revisiting': 1,
          'fertile': 1,
          'myth': 1,
          'reclaiming': 1,
          'investing': 1,
          'new': 1,
          'energy': 1,
          'modern': 1,
          'times': 1,
          'disneyfied': 1,
          'debased': 1,
          'trite': 1,
          'adventures': 1,
          'involving': 1,
          'leering': 1,
          'friendly': 1,
          'dwarves': 1,
          'cuddly': 1,
          'talking': 1,
          'animals': 1,
          'original': 1,
          'forms': 1,
          'edge': 1,
          'ncrows': 1,
          'tear': 1,
          'cinderellas': 1,
          'sisters': 1,
          'gorier': 1,
          'receive': 1,
          'animated': 1,
          'nhansel': 1,
          'gretel': 1,
          'relish': 1,
          'cooking': 1,
          'witch': 1,
          'oven': 1,
          'nwriters': 1,
          'fascinated': 1,
          'bloodier': 1,
          'morally': 1,
          'ambivalent': 1,
          'aspects': 1,
          'modernizing': 1,
          'simultaneously': 1,
          'back': 1,
          'roots': 1,
          'nbefore': 1,
          'vogue': 1,
          'carterwhose': 1,
          'always': 1,
          'subversive': 1,
          'edgehad': 1,
          'reinventing': 1,
          'retell': 1,
          'red': 1,
          'riding': 1,
          'hood': 1,
          'enlivening': 1,
          'rolls': 1,
          'royces': 1,
          'visit': 1,
          'satan': 1,
          'structured': 1,
          'occurring': 1,
          'adolescent': 1,
          'girl': 1,
          'whose': 1,
          'real': 1,
          'learn': 1,
          'little': 1,
          'nwithin': 1,
          'number': 1,
          'inset': 1,
          'dreamrosaleens': 1,
          'grandmother': 1,
          'gloss': 1,
          'central': 1,
          'intriguing': 1,
          'suggestive': 1,
          'result': 1,
          'successful': 1,
          'example': 1,
          'sinister': 1,
          'contemporary': 1,
          'ni': 1,
          'say': 1,
          'could': 1,
          'gone': 1,
          'wrong': 1,
          'performances': 1,
          'mediocre': 1,
          'except': 1,
          'lansburysshe': 1,
          'finds': 1,
          'right': 1,
          'note': 1,
          'prim': 1,
          'applecheeked': 1,
          'granny': 1,
          'stern': 1,
          'teller': 1,
          'cautionary': 1,
          'soundtrack': 1,
          'synthheavy': 1,
          'reminded': 1,
          'bad': 1,
          '80s': 1,
          'horror': 1,
          'movies': 1,
          'special': 1,
          'effects': 1,
          'shapechanging': 1,
          'scenes': 1,
          'nprobably': 1,
          'stateoftheart': 1,
          'time': 1,
          'laughable': 1,
          'succeeds': 1,
          'consider': 1,
          'trickiest': 1,
          'aspect': 1,
          'transcends': 1,
          'poor': 1,
          'actingmusiceffects': 1,
          'conveys': 1,
          'fantastic': 1,
          'otherness': 1,
          'none': 1,
          'problems': 1,
          'adapting': 1,
          'fullblown': 1,
          'fantasies': 1,
          'often': 1,
          'best': 1,
          'left': 1,
          'imagination': 1,
          'reader': 1,
          'rather': 1,
          'subjected': 1,
          'realism': 1,
          'screen': 1,
          'npart': 1,
          'would': 1,
          'love': 1,
          'see': 1,
          'adaptation': 1,
          'lord': 1,
          'rings': 1,
          'hand': 1,
          'know': 1,
          'filmmakers': 1,
          'recreation': 1,
          'ents': 1,
          'hobbits': 1,
          'balrogs': 1,
          'inevitably': 1,
          'really': 1,
          'lame': 1,
          'compared': 1,
          'picture': 1,
          'makes': 1,
          'jordans': 1,
          'accomplishment': 1,
          'seem': 1,
          'mighty': 1,
          'impressive': 1,
          'imbues': 1,
          'genuine': 1,
          'magic': 1,
          'mystery': 1,
          'somewhat': 1,
          'ruritanian': 1,
          'dreamworld': 1,
          'kind': 1,
          'urreality': 1,
          'sunshine': 1,
          'exceptionally': 1,
          'warm': 1,
          'abundant': 1,
          'nights': 1,
          'quiet': 1,
          'misty': 1,
          'eerie': 1,
          'ghostly': 1,
          'peasant': 1,
          'rustic': 1,
          'cozy': 1,
          'woods': 1,
          'hoary': 1,
          'archetypal': 1,
          'realm': 1,
          'setting': 1,
          'smart': 1,
          'subtle': 1,
          'literate': 1,
          'youd': 1,
          'expect': 1,
          'accomplished': 1,
          'fiction': 1,
          'writer': 1,
          'nfor': 1,
          'cauldron': 1,
          'brew': 1,
          'bubbling': 1,
          'primal': 1,
          'ingredients': 1,
          'mistshrouded': 1,
          'forests': 1,
          'ancient': 1,
          'graveyards': 1,
          'virginal': 1,
          'glowing': 1,
          'nshe': 1,
          'adeptly': 1,
          'blends': 1,
          'together': 1,
          'nthere': 1,
          'symbolic': 1,
          'richness': 1,
          'everything': 1,
          'permeated': 1,
          'significance': 1,
          'point': 1,
          'think': 1,
          'represent': 1,
          'ritesofpassage': 1,
          'unconscious': 1,
          'primordial': 1,
          'level': 1,
          'na': 1,
          'nightjourney': 1,
          'grandmothers': 1,
          'home': 1,
          'crux': 1,
          'n': 1,
          'dont': 1,
          'literal': 1,
          'figurative': 1,
          'nstaying': 1,
          'approach': 1,
          'suggested': 1,
          'rosaleens': 1,
          'elders': 1,
          'ncarter': 1,
          'never': 1,
          'explore': 1,
          'goes': 1,
          'nthose': 1,
          'supposedly': 1,
          'meet': 1,
          'literalized': 1,
          'connote': 1,
          'things': 1,
          'nif': 1,
          'straying': 1,
          'leads': 1,
          'ideabut': 1,
          'thats': 1,
          'get': 1,
          'therefore': 1,
          'power': 1,
          'maybe': 1,
          'worth': 1,
          'nwhen': 1,
          'dangerous': 1,
          'ambiguous': 1,
          'place': 1,
          'full': 1,
          'potential': 1,
          'certainly': 1,
          'interesting': 1,
          'disney': 1,
          'npos': 1}),
 Counter({'story': 11,
          'film': 7,
          'great': 7,
          'boxing': 5,
          'love': 5,
          'one': 4,
          'danny': 4,
          'nbut': 4,
          'eachother': 4,
          'nthe': 4,
          'good': 4,
          'theyre': 4,
          'characters': 4,
          'boxer': 3,
          'time': 3,
          'political': 3,
          'work': 3,
          'seen': 3,
          'excellent': 3,
          'daylewis': 3,
          'prison': 3,
          'two': 3,
          'together': 3,
          'since': 3,
          'get': 3,
          'really': 3,
          'acting': 3,
          'could': 3,
          'title': 2,
          'nits': 2,
          'three': 2,
          'pretty': 2,
          'elements': 2,
          'nweve': 2,
          'like': 2,
          'well': 2,
          'still': 2,
          'jim': 2,
          'sheridan': 2,
          'daniel': 2,
          'ira': 2,
          'leader': 2,
          'cox': 2,
          'opposing': 2,
          'many': 2,
          'going': 2,
          'old': 2,
          'ike': 2,
          'ken': 2,
          'stott': 2,
          'begins': 2,
          'shape': 2,
          'start': 2,
          'real': 2,
          'people': 2,
          'nand': 2,
          'watson': 2,
          'liam': 2,
          'works': 2,
          'least': 2,
          'sometimes': 2,
          'even': 2,
          'times': 2,
          'never': 2,
          'didnt': 2,
          'circumstances': 2,
          'chemistry': 2,
          'worse': 2,
          'hollywood': 2,
          'much': 2,
          'equally': 2,
          'parts': 2,
          'ni': 2,
          'sure': 2,
          'nim': 2,
          'greatly': 2,
          'cowriting': 2,
          'half': 2,
          'better': 2,
          'contrary': 1,
          'another': 1,
          'rocky': 1,
          'spliced': 1,
          'cold': 1,
          'hard': 1,
          'politics': 1,
          'actually': 1,
          'movies': 1,
          'nall': 1,
          'respects': 1,
          'decent': 1,
          'balancing': 1,
          'betwixt': 1,
          'somehow': 1,
          'seems': 1,
          'kind': 1,
          'cliched': 1,
          'unoriginal': 1,
          'blown': 1,
          'away': 1,
          'noh': 1,
          'irish': 1,
          'n': 1,
          'flynn': 1,
          'staple': 1,
          'exira': 1,
          'member': 1,
          'gets': 1,
          'belfast': 1,
          '14': 1,
          'years': 1,
          'finds': 1,
          'troubles': 1,
          'far': 1,
          'nfirst': 1,
          'small': 1,
          'civil': 1,
          'war': 1,
          'joe': 1,
          'hamill': 1,
          'brian': 1,
          'subleaders': 1,
          'harry': 1,
          'gerard': 1,
          'mcsorley': 1,
          'views': 1,
          'getting': 1,
          'members': 1,
          'jail': 1,
          'nwhile': 1,
          'drunkard': 1,
          'buddie': 1,
          'played': 1,
          'chief': 1,
          'inspector': 1,
          'boyles': 1,
          'shallow': 1,
          'grave': 1,
          'reopen': 1,
          'gym': 1,
          'allows': 1,
          'religios': 1,
          'sects': 1,
          'protestant': 1,
          'catholics': 1,
          'ndanny': 1,
          'teaching': 1,
          'kids': 1,
          'box': 1,
          'stayed': 1,
          'whilst': 1,
          'ready': 1,
          'runs': 1,
          'exlove': 1,
          'maggie': 1,
          'breaking': 1,
          'waves': 1,
          'emily': 1,
          'hasnt': 1,
          'went': 1,
          'nthey': 1,
          'dont': 1,
          'easily': 1,
          'romance': 1,
          'shes': 1,
          'wife': 1,
          'prisoner': 1,
          'married': 1,
          'dannys': 1,
          'tenure': 1,
          'also': 1,
          'son': 1,
          'ciaran': 1,
          'fitzgerald': 1,
          'hoping': 1,
          'soon': 1,
          'slowly': 1,
          'redrawn': 1,
          'complicate': 1,
          'things': 1,
          'nothing': 1,
          'special': 1,
          'interesting': 1,
          'emotional': 1,
          'riveting': 1,
          'ntheres': 1,
          'big': 1,
          'riot': 1,
          'towards': 1,
          'middle': 1,
          'frightening': 1,
          'brutality': 1,
          'honesty': 1,
          'minor': 1,
          'represent': 1,
          'coming': 1,
          'fight': 1,
          'fairly': 1,
          'sportsmanship': 1,
          'nthere': 1,
          'scenes': 1,
          'raging': 1,
          'bull': 1,
          'letsstripdownthesporttoitsbones': 1,
          'brilliant': 1,
          'ntheyre': 1,
          'realistic': 1,
          'instead': 1,
          'bone': 1,
          'crunching': 1,
          'hear': 1,
          'sound': 1,
          'gloves': 1,
          'hitting': 1,
          'slightly': 1,
          'unerving': 1,
          'know': 1,
          'backbone': 1,
          'nbecause': 1,
          'given': 1,
          'horrible': 1,
          'leads': 1,
          'feel': 1,
          'plight': 1,
          'nas': 1,
          'goes': 1,
          'make': 1,
          'human': 1,
          'decisions': 1,
          'sympathize': 1,
          'humans': 1,
          'nthis': 1,
          'write': 1,
          'take': 1,
          'note': 1,
          'nthese': 1,
          'balanced': 1,
          'stories': 1,
          'working': 1,
          'handinhand': 1,
          'loved': 1,
          'different': 1,
          'plot': 1,
          'mattered': 1,
          'spilled': 1,
          'next': 1,
          'nit': 1,
          'made': 1,
          'care': 1,
          'saying': 1,
          'carries': 1,
          'respectively': 1,
          'amazing': 1,
          'giving': 1,
          'performances': 1,
          'showing': 1,
          'oscarnominee': 1,
          'bound': 1,
          'nin': 1,
          'supporting': 1,
          'roles': 1,
          'billy': 1,
          'sympathetic': 1,
          'losing': 1,
          'control': 1,
          'daughter': 1,
          'workers': 1,
          'stolen': 1,
          'wise': 1,
          'scene': 1,
          'stealer': 1,
          'direction': 1,
          'credit': 1,
          'terry': 1,
          'george': 1,
          'rounding': 1,
          'pacing': 1,
          'everything': 1,
          'noticed': 1,
          'first': 1,
          'leisurely': 1,
          'yet': 1,
          'fascinating': 1,
          'second': 1,
          'whirls': 1,
          'quick': 1,
          'pace': 1,
          'ends': 1,
          'quickly': 1,
          'nmore': 1,
          'spent': 1,
          'thinking': 1,
          'ending': 1,
          'seem': 1,
          'quite': 1,
          'sloppy': 1,
          'nthough': 1,
          'achieves': 1,
          'greatness': 1,
          'nsure': 1,
          'masterpiece': 1,
          'compared': 1,
          'drivel': 1,
          'usually': 1,
          'gives': 1,
          'us': 1,
          'combined': 1,
          'drama': 1,
          'features': 1,
          'neven': 1,
          'thisll': 1,
          'npos': 1}),
 Counter({'mike': 7,
          'like': 4,
          'friends': 4,
          'hes': 3,
          'get': 3,
          'want': 2,
          'badly': 2,
          'bad': 2,
          'comedian': 2,
          'starbucks': 2,
          'gets': 2,
          'even': 2,
          'worse': 2,
          'played': 2,
          'nswingers': 2,
          'mikes': 2,
          'swing': 2,
          'nto': 2,
          'films': 2,
          'gift': 2,
          'lack': 2,
          'talk': 2,
          'never': 2,
          'walk': 2,
          'look': 2,
          'cheerleading': 2,
          'dont': 1,
          'nmike': 1,
          'nembarrassingly': 1,
          'nhe': 1,
          'broke': 1,
          'sixyear': 1,
          'relationship': 1,
          'six': 1,
          'months': 1,
          'ago': 1,
          'move': 1,
          'n': 1,
          'l': 1,
          'still': 1,
          'nas': 1,
          'result': 1,
          'jokes': 1,
          'fall': 1,
          'flat': 1,
          'tries': 1,
          'impress': 1,
          'nwell': 1,
          'unemployed': 1,
          'one': 1,
          'hollywoods': 1,
          'little': 1,
          'fish': 1,
          'gotten': 1,
          'asked': 1,
          'application': 1,
          'nactually': 1,
          'thing': 1,
          'nand': 1,
          'nyou': 1,
          'wont': 1,
          'fail': 1,
          'however': 1,
          'endearingly': 1,
          'jon': 1,
          'favreau': 1,
          'revolves': 1,
          'around': 1,
          'halfhearted': 1,
          'awkward': 1,
          'efforts': 1,
          'back': 1,
          'social': 1,
          'things': 1,
          'end': 1,
          'enthusiastically': 1,
          'assisted': 1,
          'equally': 1,
          'underachieving': 1,
          'twentysomething': 1,
          'actor': 1,
          'trent': 1,
          'vince': 1,
          'vaughn': 1,
          'animated': 1,
          'performance': 1,
          'gab': 1,
          'bordering': 1,
          'disturbing': 1,
          'side': 1,
          'motivational': 1,
          'speaking': 1,
          'guntoting': 1,
          'sue': 1,
          'patrick': 1,
          'van': 1,
          'horn': 1,
          'rob': 1,
          'ron': 1,
          'livingston': 1,
          'hamlet': 1,
          'longs': 1,
          'work': 1,
          'goofy': 1,
          'disneyland': 1,
          'doesnt': 1,
          'succeed': 1,
          'theme': 1,
          'park': 1,
          'experience': 1,
          'ntogether': 1,
          'women': 1,
          'make': 1,
          'eye': 1,
          'contact': 1,
          'involves': 1,
          'avoiding': 1,
          'call': 1,
          'appear': 1,
          'desperate': 1,
          'two': 1,
          'days': 1,
          'industry': 1,
          'standard': 1,
          'nafter': 1,
          'talking': 1,
          'strutting': 1,
          'cool': 1,
          'swingers': 1,
          'aspire': 1,
          'always': 1,
          'laughable': 1,
          'effect': 1,
          'funk': 1,
          'persistently': 1,
          'convince': 1,
          'outside': 1,
          'whether': 1,
          'quickie': 1,
          'night': 1,
          'trip': 1,
          'seedy': 1,
          'vegas': 1,
          'casino': 1,
          'cutthroat': 1,
          'hollywood': 1,
          'party': 1,
          'beautiful': 1,
          'people': 1,
          '50s': 1,
          'lounge': 1,
          'neverywhere': 1,
          'encourage': 1,
          'replacement': 1,
          'honey': 1,
          'keep': 1,
          'vigil': 1,
          'progress': 1,
          'nlike': 1,
          'dotty': 1,
          'doting': 1,
          'parents': 1,
          'leaves': 1,
          'company': 1,
          'without': 1,
          'recipient': 1,
          'confidence': 1,
          'youre': 1,
          'money': 1,
          'honeys': 1,
          'know': 1,
          'equipped': 1,
          'eccentric': 1,
          'dating': 1,
          'philosophies': 1,
          'analogy': 1,
          'flirting': 1,
          'bear': 1,
          'bunny': 1,
          'nwith': 1,
          'unwavering': 1,
          'support': 1,
          'maybe': 1,
          'nfavreau': 1,
          'also': 1,
          'doubled': 1,
          'screenwriter': 1,
          'proves': 1,
          'creating': 1,
          'engaging': 1,
          'characters': 1,
          'witty': 1,
          'banter': 1,
          'goes': 1,
          'beyond': 1,
          'todays': 1,
          'bon': 1,
          'mot': 1,
          'nthere': 1,
          'reassuring': 1,
          'honesty': 1,
          'friendships': 1,
          'hits': 1,
          'low': 1,
          'points': 1,
          'commiserate': 1,
          'nwhen': 1,
          'gumption': 1,
          'love': 1,
          'join': 1,
          'section': 1,
          'well': 1,
          'light': 1,
          'unassuming': 1,
          'fare': 1,
          'sweet': 1,
          'candy': 1,
          'bust': 1,
          'gut': 1,
          'laughing': 1,
          'npos': 1}),
 Counter({'one': 6,
          'years': 5,
          'president': 4,
          'nthe': 4,
          'ford': 3,
          'afraid': 3,
          'film': 3,
          'actors': 3,
          'hes': 3,
          'could': 3,
          'movie': 2,
          'marshall': 2,
          'force': 2,
          'alexander': 2,
          'radek': 2,
          'general': 2,
          'ready': 2,
          'fight': 2,
          'n': 2,
          'chance': 2,
          'nmarshall': 2,
          'doesnt': 2,
          'us': 2,
          'look': 2,
          'best': 2,
          'become': 2,
          'nwhen': 2,
          'guns': 2,
          'man': 2,
          'action': 2,
          'executive': 2,
          'political': 2,
          'work': 2,
          'america': 1,
          'finally': 1,
          'gotten': 1,
          'needed': 1,
          'compassionate': 1,
          'sincere': 1,
          'impressive': 1,
          'ethics': 1,
          'charisma': 1,
          'nregretfully': 1,
          'npresident': 1,
          'james': 1,
          'harrison': 1,
          'fed': 1,
          'terrorist': 1,
          'activities': 1,
          'nteaming': 1,
          'russian': 1,
          'government': 1,
          'orders': 1,
          'strike': 1,
          'capture': 1,
          'reactionary': 1,
          'reunite': 1,
          'soviet': 1,
          'union': 1,
          'fascist': 1,
          'reign': 1,
          'nduring': 1,
          'celebration': 1,
          'dinner': 1,
          'announces': 1,
          'world': 1,
          'send': 1,
          'troops': 1,
          'oppression': 1,
          'wherever': 1,
          'exists': 1,
          'turn': 1,
          'declares': 1,
          'nreturning': 1,
          'home': 1,
          'air': 1,
          'gets': 1,
          'demonstrate': 1,
          'words': 1,
          'personally': 1,
          'nultranationalist': 1,
          'militants': 1,
          'loyal': 1,
          'lead': 1,
          'ivan': 1,
          'korshunov': 1,
          'gary': 1,
          'oldman': 1,
          'hijack': 1,
          'plane': 1,
          'threatening': 1,
          'kill': 1,
          'hostage': 1,
          'every': 1,
          'half': 1,
          'hour': 1,
          'released': 1,
          'escape': 1,
          'jettisoned': 1,
          'capsule': 1,
          'clinton': 1,
          'says': 1,
          'exist': 1,
          'real': 1,
          'life': 1,
          'refuses': 1,
          'preferring': 1,
          'stay': 1,
          'ndirector': 1,
          'wolfgang': 1,
          'peterson': 1,
          'das': 1,
          'boot': 1,
          'line': 1,
          'fire': 1,
          'outbreak': 1,
          'takes': 1,
          'overused': 1,
          'die': 1,
          'hard': 1,
          'theme': 1,
          'gives': 1,
          'something': 1,
          'new': 1,
          'combines': 1,
          'brilliant': 1,
          'acting': 1,
          'holdyourbreath': 1,
          'intensity': 1,
          'nif': 1,
          'take': 1,
          'eyes': 1,
          'screen': 1,
          'steal': 1,
          'audience': 1,
          'neveryone': 1,
          'totally': 1,
          'engrossed': 1,
          'two': 1,
          'probably': 1,
          'noldman': 1,
          'typecast': 1,
          'psychotic': 1,
          'sadist': 1,
          'wonder': 1,
          'well': 1,
          'engages': 1,
          'teenage': 1,
          'first': 1,
          'daughter': 1,
          'sensitive': 1,
          'conversation': 1,
          'family': 1,
          'next': 1,
          'minute': 1,
          'threatens': 1,
          'blow': 1,
          'hole': 1,
          'forehead': 1,
          'know': 1,
          'edge': 1,
          'manner': 1,
          'people': 1,
          'cause': 1,
          'nyou': 1,
          'convinced': 1,
          'young': 1,
          'alice': 1,
          'end': 1,
          'terminated': 1,
          'time': 1,
          'korshonov': 1,
          'executes': 1,
          'passengers': 1,
          'frightening': 1,
          'reality': 1,
          'deadly': 1,
          'weapons': 1,
          'cartoons': 1,
          'nharrison': 1,
          'done': 1,
          'role': 1,
          'several': 1,
          'nhis': 1,
          'mastery': 1,
          'suit': 1,
          'propelled': 1,
          'desperate': 1,
          'top': 1,
          'form': 1,
          'medal': 1,
          'honor': 1,
          'recipient': 1,
          'desk': 1,
          'job': 1,
          'nrealistically': 1,
          'act': 1,
          'nford': 1,
          'make': 1,
          'believe': 1,
          'united': 1,
          'states': 1,
          'hero': 1,
          'nindiana': 1,
          'jones': 1,
          'oval': 1,
          'office': 1,
          'nhe': 1,
          'oldmans': 1,
          'archetypes': 1,
          'match': 1,
          'perfectly': 1,
          'roles': 1,
          'also': 1,
          'go': 1,
          'accomplished': 1,
          'nglenn': 1,
          'close': 1,
          'determined': 1,
          'unsure': 1,
          'vicepresident': 1,
          'picture': 1,
          'forced': 1,
          'position': 1,
          'shes': 1,
          'quite': 1,
          'ndean': 1,
          'stockwell': 1,
          'defense': 1,
          'secretary': 1,
          'eager': 1,
          'authority': 1,
          'im': 1,
          'charge': 1,
          'nis': 1,
          'nemesis': 1,
          'turns': 1,
          'good': 1,
          'haig': 1,
          'performance': 1,
          'nof': 1,
          'course': 1,
          'politics': 1,
          'wrong': 1,
          'na': 1,
          'cowboy': 1,
          'even': 1,
          'name': 1,
          'big': 1,
          'shoots': 1,
          'way': 1,
          'problems': 1,
          'nmuch': 1,
          'like': 1,
          'american': 1,
          'collective': 1,
          'memory': 1,
          'jfks': 1,
          'camelot': 1,
          'image': 1,
          'wondrous': 1,
          'dont': 1,
          'deep': 1,
          'pulls': 1,
          'patriotic': 1,
          'heartstrings': 1,
          'would': 1,
          'much': 1,
          'nno': 1,
          'matter': 1,
          'spin': 1,
          'put': 1,
          'story': 1,
          'outstanding': 1,
          'ni': 1,
          'left': 1,
          'theater': 1,
          'feeling': 1,
          'hope': 1,
          'countrys': 1,
          'future': 1,
          'common': 1,
          'belief': 1,
          'nowadays': 1,
          'nnow': 1,
          'get': 1,
          'run': 1,
          'njust': 1,
          'actor': 1,
          'didnt': 1,
          'chief': 1,
          'mean': 1,
          'different': 1,
          'couldnt': 1,
          'michael': 1,
          'redman': 1,
          'lost': 1,
          'count': 1,
          'many': 1,
          'writing': 1,
          'column': 1,
          '21': 1,
          '22': 1,
          'watching': 1,
          'sunflowers': 1,
          'outside': 1,
          'window': 1,
          'swaying': 1,
          'cool': 1,
          'breezes': 1,
          'npos': 1}),
 Counter({'songcatcher': 3,
          'romantic': 2,
          'mountains': 2,
          'elna': 2,
          'folk': 2,
          'theres': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'midst': 1,
          'summers': 1,
          'fare': 1,
          'dinos': 1,
          'revisited': 1,
          'fiascoes': 1,
          'thoughtful': 1,
          'movies': 1,
          'appalachian': 1,
          'period': 1,
          'drama': 1,
          'one': 1,
          'noscar': 1,
          'nominee': 1,
          'janet': 1,
          'mcteer': 1,
          'tumbleweeds': 1,
          'stars': 1,
          'dr': 1,
          'lily': 1,
          'penleric': 1,
          'accomplished': 1,
          'musicologist': 1,
          'back': 1,
          'prefeminist': 1,
          'era': 1,
          'refused': 1,
          'full': 1,
          'professorship': 1,
          'university': 1,
          'ndetermined': 1,
          'prove': 1,
          'worth': 1,
          'ventures': 1,
          'deep': 1,
          'rugged': 1,
          'north': 1,
          'carolina': 1,
          'younger': 1,
          'sister': 1,
          'jane': 1,
          'adams': 1,
          'runs': 1,
          'school': 1,
          'nthere': 1,
          'bear': 1,
          'creek': 1,
          'discovers': 1,
          'treasuretrove': 1,
          'traditional': 1,
          'scotsirish': 1,
          'english': 1,
          'ballads': 1,
          'given': 1,
          'unique': 1,
          'interpretation': 1,
          'insular': 1,
          'locals': 1,
          'nexcited': 1,
          'sends': 1,
          'recording': 1,
          'equipment': 1,
          'persuades': 1,
          'vinie': 1,
          'butler': 1,
          'pat': 1,
          'carroll': 1,
          'selfsustaining': 1,
          'mountain': 1,
          'share': 1,
          'musical': 1,
          'heritage': 1,
          'edison': 1,
          'phonograph': 1,
          'cylinders': 1,
          'ntheir': 1,
          'music': 1,
          'puts': 1,
          'much': 1,
          'part': 1,
          'life': 1,
          'air': 1,
          'breathe': 1,
          'nthats': 1,
          'main': 1,
          'thrust': 1,
          'writerdirector': 1,
          'maggie': 1,
          'greenwalds': 1,
          'occasionally': 1,
          'uneven': 1,
          'cultureclash': 1,
          'story': 1,
          'loosely': 1,
          'based': 1,
          'olive': 1,
          'dame': 1,
          'campbells': 1,
          'foray': 1,
          'blue': 1,
          'ridge': 1,
          '1908': 1,
          'also': 1,
          'melodramatic': 1,
          'spice': 1,
          'nornery': 1,
          'bearded': 1,
          'banjopicking': 1,
          'aidan': 1,
          'quinn': 1,
          'falls': 1,
          'statuesque': 1,
          'passionate': 1,
          'secretly': 1,
          'engages': 1,
          'lesbian': 1,
          'relationship': 1,
          'colleague': 1,
          'e': 1,
          'nkatherine': 1,
          'kerr': 1,
          'nim': 1,
          'ready': 1,
          'buy': 1,
          'soulful': 1,
          'soundtrack': 1,
          'vocalists': 1,
          'like': 1,
          'emmylou': 1,
          'harris': 1,
          'iris': 1,
          'dement': 1,
          'taj': 1,
          'mahal': 1,
          'young': 1,
          'opera': 1,
          'star': 1,
          'emmy': 1,
          'rossum': 1,
          'plays': 1,
          'pivotal': 1,
          'role': 1,
          'mcteers': 1,
          'wideeyed': 1,
          'prot': 1,
          'g': 1,
          'nrated': 1,
          'pg13': 1,
          'intense': 1,
          'scene': 1,
          'primitive': 1,
          'childbirth': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'intelligent': 1,
          'extraordinary': 1,
          '8': 1,
          'transported': 1,
          'transcendent': 1,
          'power': 1,
          'song': 1,
          'npos': 1}),
 Counter({'elizabeth': 12,
          'queen': 5,
          'england': 3,
          'struggle': 3,
          'one': 3,
          'sir': 3,
          'time': 2,
          'power': 2,
          'young': 2,
          'blanchett': 2,
          'nthe': 2,
          'film': 2,
          'elizabeths': 2,
          'kingdom': 2,
          'nas': 2,
          'subjects': 2,
          'ruler': 2,
          'performance': 2,
          'deserves': 2,
          'nshe': 2,
          'right': 2,
          'nthough': 2,
          'little': 2,
          'potent': 1,
          'historical': 1,
          'drama': 1,
          'set': 1,
          'mid1500s': 1,
          'nit': 1,
          'stately': 1,
          'royal': 1,
          'ceremonies': 1,
          'commonplace': 1,
          'public': 1,
          'burnings': 1,
          'ninternally': 1,
          'catholics': 1,
          'wage': 1,
          'war': 1,
          'protestants': 1,
          'nmeanwhile': 1,
          'spain': 1,
          'scotland': 1,
          'france': 1,
          'strategize': 1,
          'next': 1,
          'moves': 1,
          'nlittle': 1,
          'know': 1,
          'woman': 1,
          'named': 1,
          'cate': 1,
          'greatest': 1,
          'hope': 1,
          'survival': 1,
          'charts': 1,
          'tumultuous': 1,
          'gain': 1,
          'true': 1,
          'protestant': 1,
          'last': 1,
          'person': 1,
          'catholic': 1,
          'royalty': 1,
          'would': 1,
          'want': 1,
          'nbut': 1,
          'halfsister': 1,
          'mary': 1,
          'kathy': 1,
          'burke': 1,
          'deathly': 1,
          'ill': 1,
          'unable': 1,
          'conceive': 1,
          'child': 1,
          'pleas': 1,
          'take': 1,
          'throne': 1,
          'nmary': 1,
          'gives': 1,
          'blessing': 1,
          'condition': 1,
          'renounce': 1,
          'faith': 1,
          'uphold': 1,
          'teachings': 1,
          'catholicism': 1,
          'across': 1,
          'land': 1,
          'nonce': 1,
          'declared': 1,
          'immediately': 1,
          'finds': 1,
          'assault': 1,
          'including': 1,
          'duke': 1,
          'norfolk': 1,
          'played': 1,
          'steelyeyed': 1,
          'grace': 1,
          'christopher': 1,
          'eccleston': 1,
          'forces': 1,
          'abroad': 1,
          'nslowly': 1,
          'surely': 1,
          'neophyte': 1,
          'takes': 1,
          'reigns': 1,
          'forges': 1,
          'new': 1,
          'path': 1,
          'nelizabeth': 1,
          'surrounded': 1,
          'keenly': 1,
          'drawn': 1,
          'cadre': 1,
          'advisers': 1,
          'nher': 1,
          'closest': 1,
          'ally': 1,
          'mysterious': 1,
          'francis': 1,
          'walsingham': 1,
          'geoffrey': 1,
          'rush': 1,
          'perfectly': 1,
          'subtle': 1,
          'nalso': 1,
          'side': 1,
          'william': 1,
          'cecil': 1,
          'richard': 1,
          'attenborough': 1,
          'wellmeaning': 1,
          'misguided': 1,
          'chief': 1,
          'adviser': 1,
          'nwith': 1,
          'people': 1,
          'trust': 1,
          'must': 1,
          'prove': 1,
          'selfworth': 1,
          'way': 1,
          'even': 1,
          'means': 1,
          'ironfisted': 1,
          'secretly': 1,
          'despises': 1,
          'nblanchett': 1,
          'oscar': 1,
          'portrays': 1,
          'balance': 1,
          'gawky': 1,
          'selfconsciousness': 1,
          'shrewd': 1,
          'charisma': 1,
          'classical': 1,
          'beauty': 1,
          'able': 1,
          'entrance': 1,
          'viewer': 1,
          'coy': 1,
          'smile': 1,
          'impish': 1,
          'smirk': 1,
          'home': 1,
          'characters': 1,
          'playful': 1,
          'tendencies': 1,
          'particularly': 1,
          'scene': 1,
          'dances': 1,
          'unabashedly': 1,
          'childhood': 1,
          'friend': 1,
          'lover': 1,
          'lord': 1,
          'robert': 1,
          'dudley': 1,
          'joseph': 1,
          'fiennes': 1,
          'nwhether': 1,
          'fending': 1,
          'unctuous': 1,
          'suitors': 1,
          'playing': 1,
          'houses': 1,
          'court': 1,
          'blanchetts': 1,
          'radiates': 1,
          'confidence': 1,
          'impossible': 1,
          'dislike': 1,
          'nalmost': 1,
          'interesting': 1,
          'character': 1,
          'shekhar': 1,
          'kapurs': 1,
          'visual': 1,
          'delights': 1,
          'nhe': 1,
          'cinematographer': 1,
          'remi': 1,
          'adefarasin': 1,
          'crafted': 1,
          'rich': 1,
          'color': 1,
          'palette': 1,
          'feast': 1,
          'eyes': 1,
          'nrolling': 1,
          'green': 1,
          'hills': 1,
          'extravagant': 1,
          'ceremonial': 1,
          'galas': 1,
          'dark': 1,
          'foreboding': 1,
          'corridors': 1,
          'depicted': 1,
          'real': 1,
          'sense': 1,
          'artistic': 1,
          'appreciation': 1,
          'castles': 1,
          'cathedrals': 1,
          'europe': 1,
          'rarely': 1,
          'doted': 1,
          'lovingly': 1,
          'writer': 1,
          'michael': 1,
          'hirsts': 1,
          'script': 1,
          'gets': 1,
          'murky': 1,
          'times': 1,
          'injections': 1,
          'humor': 1,
          'get': 1,
          'overplayed': 1,
          'pulses': 1,
          'amount': 1,
          'dramatic': 1,
          'cinematic': 1,
          'verve': 1,
          'make': 1,
          'deserving': 1,
          'theatrical': 1,
          'viewing': 1,
          'whole': 1,
          'story': 1,
          'survives': 1,
          'attention': 1,
          'nby': 1,
          'makes': 1,
          'shocking': 1,
          'sensible': 1,
          'final': 1,
          'declaration': 1,
          'ready': 1,
          'bow': 1,
          'npos': 1}),
 Counter({'ricky': 6,
          'bobby': 5,
          'two': 4,
          'vaughn': 3,
          'nfavreau': 3,
          'also': 3,
          'bobbys': 3,
          'max': 3,
          'directorial': 2,
          'debut': 2,
          'favreau': 2,
          'along': 2,
          'much': 2,
          'job': 2,
          'new': 2,
          'york': 2,
          'nbobby': 2,
          'another': 2,
          'nearly': 2,
          'nthe': 2,
          'made': 2,
          'watch': 2,
          'like': 2,
          'yakking': 2,
          'creates': 2,
          'heart': 2,
          'making': 1,
          'actor': 1,
          'jon': 1,
          'brings': 1,
          'swingers': 1,
          'costar': 1,
          'vince': 1,
          'tale': 1,
          'mugs': 1,
          'career': 1,
          'trajectory': 1,
          'nowheresville': 1,
          'wrote': 1,
          'script': 1,
          'nby': 1,
          'day': 1,
          'construction': 1,
          'workers': 1,
          'nthey': 1,
          'wannabe': 1,
          'contenders': 1,
          'neither': 1,
          'success': 1,
          'ntheir': 1,
          'last': 1,
          'bout': 1,
          'pitted': 1,
          'draw': 1,
          'leaving': 1,
          'record': 1,
          '551': 1,
          'nthese': 1,
          'l': 1,
          'notsowise': 1,
          'guys': 1,
          'work': 1,
          'peter': 1,
          'falk': 1,
          'midlevel': 1,
          'mobster': 1,
          'patient': 1,
          'understanding': 1,
          'hates': 1,
          'rickys': 1,
          'guts': 1,
          'nmax': 1,
          'easy': 1,
          'fly': 1,
          'make': 1,
          'simple': 1,
          'delivery': 1,
          'gangster': 1,
          'named': 1,
          'ruiz': 1,
          'smooth': 1,
          'silky': 1,
          'sean': 1,
          'combs': 1,
          'lifelong': 1,
          'friendship': 1,
          'pleads': 1,
          'give': 1,
          'pal': 1,
          'chance': 1,
          'let': 1,
          'tag': 1,
          'big': 1,
          'apple': 1,
          'nagainst': 1,
          'better': 1,
          'judgment': 1,
          'agrees': 1,
          'nof': 1,
          'course': 1,
          'motormouth': 1,
          'inserts': 1,
          'feet': 1,
          'everytime': 1,
          'speaks': 1,
          'screws': 1,
          'everything': 1,
          'nwhile': 1,
          'tries': 1,
          'stay': 1,
          'calm': 1,
          'professional': 1,
          'begins': 1,
          'swaggering': 1,
          'throwing': 1,
          'money': 1,
          'around': 1,
          'john': 1,
          'gotti': 1,
          'tony': 1,
          'soprano': 1,
          'constrast': 1,
          'styles': 1,
          'chemistry': 1,
          'makes': 1,
          'enjoyable': 1,
          'hounddog': 1,
          'face': 1,
          'slowburn': 1,
          'personality': 1,
          'could': 1,
          'modernday': 1,
          'oliver': 1,
          'hardy': 1,
          'wiser': 1,
          'nvaughn': 1,
          'someone': 1,
          'vaccinated': 1,
          'phonograph': 1,
          'needle': 1,
          'keeps': 1,
          'unaware': 1,
          'havoc': 1,
          'nyet': 1,
          'despite': 1,
          'constant': 1,
          'aggravation': 1,
          'agitation': 1,
          'partner': 1,
          'bond': 1,
          'affection': 1,
          'loyalty': 1,
          'binds': 1,
          'contrast': 1,
          'friends': 1,
          'interesting': 1,
          'buttondowned': 1,
          'tightlywound': 1,
          'always': 1,
          'waiting': 1,
          'next': 1,
          'shoe': 1,
          'courtesy': 1,
          'drop': 1,
          'nricky': 1,
          'mostly': 1,
          'oblivious': 1,
          'problems': 1,
          'genuinely': 1,
          'surprised': 1,
          'comes': 1,
          'attack': 1,
          'faux': 1,
          'paus': 1,
          'nin': 1,
          'lackeys': 1,
          'fish': 1,
          'water': 1,
          'stumbling': 1,
          'one': 1,
          'situation': 1,
          'trying': 1,
          'keep': 1,
          'alive': 1,
          'ncombs': 1,
          'elegant': 1,
          'cool': 1,
          'lowkey': 1,
          'menacing': 1,
          'gangsta': 1,
          'sent': 1,
          'meet': 1,
          'nfalk': 1,
          'amusing': 1,
          'small': 1,
          'role': 1,
          'famke': 1,
          'janssen': 1,
          'breaks': 1,
          'lowlife': 1,
          'girlfriend': 1,
          'nmore': 1,
          'anything': 1,
          'movie': 1,
          'nit': 1,
          'loud': 1,
          'obnoxious': 1,
          'talkative': 1,
          'nbut': 1,
          'cameraderie': 1,
          'holds': 1,
          'key': 1,
          'interest': 1,
          'commendable': 1,
          'nhe': 1,
          'player': 1,
          'watched': 1,
          'improve': 1,
          'experience': 1,
          'npos': 1}),
 Counter({'carry': 7,
          'rumpo': 7,
          'marshall': 6,
          'kid': 5,
          'film': 5,
          'city': 4,
          'part': 4,
          'james': 3,
          'stodge': 3,
          'judge': 3,
          'williams': 3,
          'sheriff': 3,
          'sanitary': 3,
          'heap': 3,
          'played': 3,
          'west': 2,
          'burke': 2,
          'kenneth': 2,
          'albert': 2,
          'earp': 2,
          'jon': 2,
          'pertwee': 2,
          'law': 2,
          'misunderstanding': 2,
          'engineer': 2,
          'dale': 2,
          'arrives': 2,
          'annie': 2,
          'oakley': 2,
          'angela': 2,
          'douglas': 2,
          'rather': 2,
          'past': 2,
          'provides': 2,
          'best': 2,
          'movie': 2,
          'hawtrey': 2,
          'local': 2,
          'amusing': 2,
          'performance': 2,
          'na': 2,
          'nthe': 2,
          'song': 2,
          'set': 1,
          'wild': 1,
          'centres': 1,
          'around': 1,
          'arrival': 1,
          'sidney': 1,
          'cronies': 1,
          'nhis': 1,
          'dodgy': 1,
          'dealings': 1,
          'summary': 1,
          'shootings': 1,
          'aggravate': 1,
          'much': 1,
          'asks': 1,
          'drive': 1,
          'town': 1,
          'ninstead': 1,
          'shoots': 1,
          'dead': 1,
          'ntherefore': 1,
          'sends': 1,
          'come': 1,
          'clean': 1,
          'ndue': 1,
          'english': 1,
          'called': 1,
          'p': 1,
          'knutt': 1,
          'jim': 1,
          'assigned': 1,
          'without': 1,
          'knowing': 1,
          'nhe': 1,
          'time': 1,
          'seeking': 1,
          'revenge': 1,
          'father': 1,
          'sheriffs': 1,
          'murder': 1,
          'nwhen': 1,
          'soon': 1,
          'becomes': 1,
          'aware': 1,
          'due': 1,
          'limited': 1,
          'intellect': 1,
          'manipulated': 1,
          'always': 1,
          'ends': 1,
          'getting': 1,
          'things': 1,
          'wrong': 1,
          'nin': 1,
          'end': 1,
          'headtohead': 1,
          'nwith': 1,
          'rumpos': 1,
          'experience': 1,
          'would': 1,
          'seem': 1,
          'depth': 1,
          'using': 1,
          'skills': 1,
          'learning': 1,
          'ways': 1,
          'least': 1,
          'stands': 1,
          'chance': 1,
          'nsid': 1,
          'american': 1,
          'accent': 1,
          'perfect': 1,
          'suits': 1,
          'ground': 1,
          'njim': 1,
          'one': 1,
          'performances': 1,
          'stupid': 1,
          'effective': 1,
          'role': 1,
          'revengeful': 1,
          'daughter': 1,
          'nother': 1,
          'regulars': 1,
          'appear': 1,
          'include': 1,
          'charles': 1,
          'bernard': 1,
          'bresslaw': 1,
          'debut': 1,
          'big': 1,
          'little': 1,
          'respectively': 1,
          'nbig': 1,
          'indian': 1,
          'leader': 1,
          'crazy': 1,
          'casting': 1,
          'steals': 1,
          'every': 1,
          'scene': 1,
          'even': 1,
          'though': 1,
          'enter': 1,
          'thirty': 1,
          'minutes': 1,
          'njoan': 1,
          'sims': 1,
          'useful': 1,
          'support': 1,
          'belle': 1,
          'bar': 1,
          'owner': 1,
          'takes': 1,
          'fancy': 1,
          'nhowever': 1,
          'doc': 1,
          'peter': 1,
          'butterworth': 1,
          'really': 1,
          'necessary': 1,
          'pertwees': 1,
          'poor': 1,
          'nkenneth': 1,
          'uses': 1,
          'new': 1,
          'voice': 1,
          'struggles': 1,
          'weak': 1,
          'neven': 1,
          'sid': 1,
          'favourite': 1,
          'different': 1,
          'seriously': 1,
          'actors': 1,
          'possesses': 1,
          'realism': 1,
          'death': 1,
          'count': 1,
          'highest': 1,
          'nsets': 1,
          'costumes': 1,
          'action': 1,
          'sequences': 1,
          'commendable': 1,
          'songs': 1,
          'included': 1,
          'title': 1,
          'annies': 1,
          'impressive': 1,
          'strange': 1,
          'therefore': 1,
          'interesting': 1,
          'nnot': 1,
          'kind': 1,
          'certainly': 1,
          'distinctive': 1,
          'series': 1,
          'npos': 1}),
 Counter({'sandler': 10,
          'movie': 8,
          'wedding': 8,
          'robbie': 7,
          'doesnt': 6,
          'nthe': 5,
          'nhe': 5,
          'someone': 5,
          'make': 4,
          'really': 4,
          'singer': 4,
          'story': 4,
          'weddings': 4,
          'new': 4,
          'happy': 3,
          'gilmore': 3,
          'would': 3,
          'seems': 3,
          'fun': 3,
          'love': 3,
          'barrymore': 3,
          'chemistry': 3,
          'two': 3,
          'soundtrack': 3,
          'ha': 3,
          'example': 2,
          'rookie': 2,
          'selfconfident': 2,
          'jerk': 2,
          'also': 2,
          'nthat': 2,
          'motive': 2,
          'nin': 2,
          'fact': 2,
          'nbut': 2,
          'sandlers': 2,
          'gesture': 2,
          'right': 2,
          'ndavid': 2,
          'could': 2,
          'embarrassing': 2,
          'people': 2,
          'mature': 2,
          'nrobbie': 2,
          'gets': 2,
          'exactly': 2,
          'man': 2,
          'hard': 2,
          'njulia': 2,
          'julia': 2,
          'fianc': 2,
          'leave': 2,
          'serious': 2,
          'works': 2,
          'looking': 2,
          'settle': 2,
          '80s': 2,
          'references': 2,
          'part': 2,
          'liked': 2,
          'get': 2,
          'van': 2,
          'halen': 2,
          'n': 2,
          'herlihy': 2,
          'good': 2,
          'plays': 1,
          'golfer': 1,
          'trying': 1,
          'beat': 1,
          'pro': 1,
          'nif': 1,
          'star': 1,
          'comic': 1,
          'enough': 1,
          'motivation': 1,
          'drive': 1,
          'wants': 1,
          'win': 1,
          'prize': 1,
          'money': 1,
          'help': 1,
          'grandma': 1,
          'keep': 1,
          'house': 1,
          'extra': 1,
          'funnier': 1,
          'nit': 1,
          'add': 1,
          'genuine': 1,
          'emotional': 1,
          'depth': 1,
          'either': 1,
          'almost': 1,
          'totally': 1,
          'irrelevant': 1,
          'philosophy': 1,
          'token': 1,
          'nice': 1,
          'endlessly': 1,
          'refreshing': 1,
          'track': 1,
          'hes': 1,
          'superficially': 1,
          'relevant': 1,
          'nwhat': 1,
          'kind': 1,
          'even': 1,
          'less': 1,
          'important': 1,
          'spade': 1,
          'filled': 1,
          'role': 1,
          'cynicism': 1,
          'sarcasm': 1,
          'fat': 1,
          'ugly': 1,
          'meets': 1,
          'intact': 1,
          'instead': 1,
          'brings': 1,
          'goodness': 1,
          'character': 1,
          'enjoy': 1,
          'treats': 1,
          'though': 1,
          'family': 1,
          'hart': 1,
          'sing': 1,
          'loners': 1,
          'join': 1,
          'smooths': 1,
          'something': 1,
          'want': 1,
          'day': 1,
          'comes': 1,
          'stood': 1,
          'heavymetal': 1,
          'bride': 1,
          'set': 1,
          '1985': 1,
          'takes': 1,
          'sleep': 1,
          'eat': 1,
          'punched': 1,
          'work': 1,
          'sings': 1,
          'stinks': 1,
          'drew': 1,
          'waitresses': 1,
          'town': 1,
          'gives': 1,
          'shoulder': 1,
          'cry': 1,
          'ear': 1,
          'talk': 1,
          'neventually': 1,
          'starts': 1,
          'rebounding': 1,
          'toward': 1,
          'likes': 1,
          'shes': 1,
          'engaged': 1,
          'nher': 1,
          'see': 1,
          'trend': 1,
          'nope': 1,
          'formula': 1,
          'deserve': 1,
          'depressed': 1,
          'fight': 1,
          'hand': 1,
          'like': 1,
          'cant': 1,
          'seemingly': 1,
          'safe': 1,
          'stable': 1,
          'offchance': 1,
          'might': 1,
          'nyou': 1,
          'know': 1,
          'nyouve': 1,
          'seen': 1,
          'million': 1,
          'times': 1,
          'ntheres': 1,
          'always': 1,
          'way': 1,
          'tell': 1,
          'lovers': 1,
          'details': 1,
          'nand': 1,
          'sometimes': 1,
          'nfirst': 1,
          'effective': 1,
          'nactually': 1,
          'much': 1,
          'ones': 1,
          'romantic': 1,
          'tension': 1,
          'nsandler': 1,
          'captures': 1,
          'forlorn': 1,
          'sleepwalking': 1,
          'look': 1,
          'jilted': 1,
          'struck': 1,
          'unattainable': 1,
          'nbarrymore': 1,
          'charming': 1,
          'girl': 1,
          'next': 1,
          'door': 1,
          'nsparks': 1,
          'dont': 1,
          'fly': 1,
          'kiss': 1,
          'seem': 1,
          'nsecond': 1,
          'nthey': 1,
          'driven': 1,
          'passionate': 1,
          'sexual': 1,
          'attraction': 1,
          'theyre': 1,
          'cute': 1,
          'couple': 1,
          'neither': 1,
          'centerfold': 1,
          'material': 1,
          'ninstead': 1,
          'meaningful': 1,
          'grow': 1,
          'old': 1,
          'nat': 1,
          'comforts': 1,
          'kid': 1,
          'throwing': 1,
          'dumpster': 1,
          'sits': 1,
          'repulsing': 1,
          'situation': 1,
          'taken': 1,
          'stride': 1,
          'already': 1,
          'parents': 1,
          'caring': 1,
          'sick': 1,
          'child': 1,
          'play': 1,
          'big': 1,
          'nother': 1,
          'critics': 1,
          'ni': 1,
          'spite': 1,
          'noften': 1,
          'music': 1,
          'felt': 1,
          'forced': 1,
          'nfor': 1,
          'tells': 1,
          'exfianc': 1,
          'tshirt': 1,
          'jinx': 1,
          'band': 1,
          'break': 1,
          'nget': 1,
          'lee': 1,
          'roth': 1,
          'sammy': 1,
          'allen': 1,
          'covert': 1,
          'robbies': 1,
          'chauffeur': 1,
          'friend': 1,
          'shows': 1,
          'party': 1,
          'wearing': 1,
          'michael': 1,
          'jackson': 1,
          'jacket': 1,
          'single': 1,
          'silver': 1,
          'glove': 1,
          'thats': 1,
          'mj': 1,
          'used': 1,
          'wear': 1,
          'time': 1,
          'nunfortunately': 1,
          'making': 1,
          'generalizations': 1,
          'past': 1,
          'era': 1,
          'easy': 1,
          'rewarding': 1,
          'nthats': 1,
          'say': 1,
          'isnt': 1,
          'funny': 1,
          'nscreenwriter': 1,
          'tim': 1,
          'written': 1,
          'billy': 1,
          'madison': 1,
          'combination': 1,
          'nherlihy': 1,
          'knows': 1,
          'sort': 1,
          'jokes': 1,
          'tailored': 1,
          'script': 1,
          'straightfaced': 1,
          'smartaleck': 1,
          'style': 1,
          'nlets': 1,
          'hope': 1,
          'stick': 1,
          'together': 1,
          'projects': 1,
          'nwith': 1,
          'barrymores': 1,
          'charm': 1,
          'heart': 1,
          'go': 1,
          'wrong': 1,
          'npos': 1}),
 Counter({'neverything': 4,
          'lives': 4,
          'say': 4,
          'nthe': 4,
          'think': 4,
          'one': 4,
          'clean': 3,
          'mikey': 3,
          'wood': 3,
          'ice': 3,
          'storm': 3,
          'story': 3,
          'character': 3,
          'start': 3,
          'film': 3,
          'family': 3,
          'nhe': 3,
          'movie': 3,
          'might': 3,
          'dont': 3,
          'characters': 3,
          'cold': 2,
          'molecules': 2,
          'arent': 2,
          'moving': 2,
          'words': 2,
          'elijah': 2,
          'young': 2,
          'teenage': 2,
          'boy': 2,
          'much': 2,
          'parallel': 2,
          'life': 2,
          'affair': 2,
          'hood': 2,
          'kevin': 2,
          'kline': 2,
          'wife': 2,
          'joan': 2,
          'doesnt': 2,
          'anything': 2,
          'ricci': 2,
          'sexual': 2,
          'ntobey': 2,
          'maguire': 2,
          'paul': 2,
          'nwe': 2,
          'even': 2,
          'something': 2,
          'return': 2,
          'go': 2,
          'trying': 2,
          'drugs': 2,
          'sex': 2,
          'nobody': 2,
          'neven': 2,
          'families': 2,
          'empty': 2,
          'thats': 2,
          'point': 2,
          'nat': 2,
          'first': 2,
          'seem': 2,
          'know': 2,
          'watch': 2,
          'lost': 2,
          'quite': 2,
          'good': 2,
          'perhaps': 2,
          'many': 2,
          'films': 2,
          'nthese': 1,
          'essential': 1,
          'carver': 1,
          'living': 1,
          '1973': 1,
          'new': 1,
          'canaan': 1,
          'connecticut': 1,
          'nwhen': 1,
          'delivers': 1,
          'bored': 1,
          'science': 1,
          'class': 1,
          'unlikely': 1,
          'anyone': 1,
          'realizes': 1,
          'mikeys': 1,
          'surround': 1,
          'nhis': 1,
          'father': 1,
          'jim': 1,
          'jamey': 1,
          'sheridan': 1,
          'rarely': 1,
          'seen': 1,
          'mother': 1,
          'janey': 1,
          'sigourney': 1,
          'weaver': 1,
          'married': 1,
          'neighbor': 1,
          'ben': 1,
          'nbens': 1,
          'elena': 1,
          'allen': 1,
          'suspects': 1,
          'nmeanwhile': 1,
          'bens': 1,
          '14yearold': 1,
          'daughter': 1,
          'wendy': 1,
          'christina': 1,
          'continuously': 1,
          'lures': 1,
          'younger': 1,
          'brother': 1,
          'sandy': 1,
          'adam': 1,
          'hannbyrd': 1,
          'explorations': 1,
          'plays': 1,
          '16yearold': 1,
          'narrator': 1,
          'also': 1,
          'happens': 1,
          'least': 1,
          'prevalent': 1,
          'interesting': 1,
          'outlook': 1,
          'compares': 1,
          'fantastic': 1,
          'four': 1,
          'comic': 1,
          'book': 1,
          'goes': 1,
          'far': 1,
          'everybodys': 1,
          'antimatter': 1,
          'everybody': 1,
          'eventually': 1,
          'farther': 1,
          'deeper': 1,
          'youll': 1,
          'piece': 1,
          'explores': 1,
          'dismal': 1,
          'time': 1,
          'america': 1,
          'individual': 1,
          'portrayed': 1,
          'parallels': 1,
          'everything': 1,
          'else': 1,
          'teenagers': 1,
          'discover': 1,
          'thru': 1,
          'alcohol': 1,
          'really': 1,
          'almost': 1,
          'identical': 1,
          'parents': 1,
          'figure': 1,
          'purpose': 1,
          'using': 1,
          'methods': 1,
          'n': 1,
          'outside': 1,
          'admit': 1,
          'whats': 1,
          'going': 1,
          'president': 1,
          'tv': 1,
          'denying': 1,
          'wrongdoings': 1,
          'nhow': 1,
          'expect': 1,
          'couple': 1,
          'suburban': 1,
          'riding': 1,
          'coattails': 1,
          'revolution': 1,
          'nall': 1,
          'obviously': 1,
          'viewing': 1,
          'entire': 1,
          'shouldnt': 1,
          'nyou': 1,
          'get': 1,
          'deeply': 1,
          'knows': 1,
          'either': 1,
          'sadly': 1,
          'two': 1,
          'nearly': 1,
          'oblivious': 1,
          'another': 1,
          'glance': 1,
          'emotion': 1,
          'ending': 1,
          'scenes': 1,
          'havent': 1,
          'gotten': 1,
          'well': 1,
          'enough': 1,
          'sympathize': 1,
          'realize': 1,
          'feel': 1,
          'pain': 1,
          'acting': 1,
          'particularly': 1,
          'liked': 1,
          'receiving': 1,
          'recognition': 1,
          'others': 1,
          'still': 1,
          'found': 1,
          'possess': 1,
          'real': 1,
          'sense': 1,
          'nchristina': 1,
          'acclaimed': 1,
          'part': 1,
          'misguided': 1,
          'temptress': 1,
          'looks': 1,
          'pants': 1,
          'every': 1,
          'available': 1,
          'nstill': 1,
          'hats': 1,
          'remain': 1,
          'allens': 1,
          'subtle': 1,
          'believable': 1,
          'performance': 1,
          'lonely': 1,
          'unappreciated': 1,
          'always': 1,
          'excellent': 1,
          'fine': 1,
          'job': 1,
          'intact': 1,
          'sensible': 1,
          'person': 1,
          'seemed': 1,
          'little': 1,
          'needed': 1,
          'shouldve': 1,
          'used': 1,
          'hailed': 1,
          'best': 1,
          'year': 1,
          'ni': 1,
          'hate': 1,
          'agree': 1,
          'nin': 1,
          'fact': 1,
          'would': 1,
          'rank': 1,
          'higher': 1,
          'nit': 1,
          'takes': 1,
          'lot': 1,
          'retrospect': 1,
          'fully': 1,
          'appreciate': 1,
          'art': 1,
          'finally': 1,
          'seeing': 1,
          'things': 1,
          'didnt': 1,
          'grow': 1,
          'fonder': 1,
          'nperhaps': 1,
          'see': 1,
          'ponder': 1,
          'different': 1,
          'eyes': 1,
          'npos': 1}),
 Counter({'neil': 4,
          'nits': 4,
          'nit': 4,
          'jordan': 3,
          'moving': 3,
          'film': 3,
          'maurice': 3,
          'sarah': 3,
          'moore': 3,
          'well': 3,
          'love': 3,
          'really': 3,
          'affair': 2,
          'dark': 2,
          'slow': 2,
          'confusing': 2,
          'still': 2,
          'ralph': 2,
          'fiennes': 2,
          'henry': 2,
          'finds': 2,
          'guy': 2,
          'work': 2,
          'nwhile': 2,
          'anything': 2,
          'two': 2,
          'nthis': 2,
          'us': 2,
          'present': 2,
          'see': 2,
          'may': 2,
          'sound': 2,
          'ever': 2,
          'movie': 2,
          'definitely': 2,
          'films': 2,
          'nthe': 2,
          'also': 2,
          'little': 2,
          'never': 2,
          'best': 2,
          'end': 1,
          'moody': 1,
          'romantic': 1,
          'period': 1,
          'piece': 1,
          'exquisitely': 1,
          'writes': 1,
          'directs': 1,
          'nalthough': 1,
          'sometimes': 1,
          'follow': 1,
          'manages': 1,
          'give': 1,
          'audiences': 1,
          'experience': 1,
          'nbased': 1,
          'graham': 1,
          'greenes': 1,
          'novel': 1,
          'name': 1,
          'mainly': 1,
          'follows': 1,
          '3': 1,
          'characters': 1,
          'ntheres': 1,
          'bendrix': 1,
          'miles': 1,
          'stephen': 1,
          'rea': 1,
          'wife': 1,
          'julianne': 1,
          'nsarah': 1,
          'bore': 1,
          'hes': 1,
          'normal': 1,
          'play': 1,
          'hand': 1,
          'falls': 1,
          'madly': 1,
          'would': 1,
          'nunfortunately': 1,
          'break': 1,
          'witnessed': 1,
          'serious': 1,
          'flashbacks': 1,
          'leads': 1,
          'years': 1,
          'later': 1,
          'think': 1,
          'hires': 1,
          'private': 1,
          'detective': 1,
          'ian': 1,
          'hart': 1,
          'straight': 1,
          'forward': 1,
          'deep': 1,
          'tale': 1,
          'jealousy': 1,
          'lies': 1,
          'men': 1,
          'unhappiness': 1,
          'lasting': 1,
          'nall': 1,
          'like': 1,
          'drag': 1,
          'captures': 1,
          'interest': 1,
          'nwith': 1,
          'great': 1,
          'performances': 1,
          'another': 1,
          'english': 1,
          'patient': 1,
          'type': 1,
          'better': 1,
          'julianna': 1,
          'deserves': 1,
          'oscar': 1,
          '5': 1,
          '1999': 1,
          'believe': 1,
          'role': 1,
          'passion': 1,
          'story': 1,
          'written': 1,
          'thanks': 1,
          'neven': 1,
          'though': 1,
          'didnt': 1,
          'read': 1,
          'book': 1,
          'theres': 1,
          'doubt': 1,
          'mind': 1,
          'descriptive': 1,
          'nwhats': 1,
          'ask': 1,
          'tragedy': 1,
          'typical': 1,
          'romance': 1,
          'girl': 1,
          'fall': 1,
          'complicated': 1,
          'depressing': 1,
          'shows': 1,
          'complexity': 1,
          'relationship': 1,
          'nothing': 1,
          'perfect': 1,
          'neveryone': 1,
          'feels': 1,
          'different': 1,
          'way': 1,
          'tears': 1,
          'pieces': 1,
          'nback': 1,
          'jordans': 1,
          'script': 1,
          'wasnt': 1,
          'red': 1,
          'roses': 1,
          'nthere': 1,
          'times': 1,
          'felt': 1,
          'romances': 1,
          'tended': 1,
          'bit': 1,
          'especially': 1,
          'start': 1,
          'keep': 1,
          'jumping': 1,
          'around': 1,
          'past': 1,
          'obviously': 1,
          'took': 1,
          'awhile': 1,
          'get': 1,
          'grasp': 1,
          'things': 1,
          'nalso': 1,
          'notable': 1,
          'superb': 1,
          'direction': 1,
          'nid': 1,
          'say': 1,
          'finest': 1,
          'achievement': 1,
          'date': 1,
          'quite': 1,
          'frankly': 1,
          'ive': 1,
          'found': 1,
          'par': 1,
          'nwhen': 1,
          'ends': 1,
          'leaves': 1,
          'viewers': 1,
          'saddened': 1,
          'provoked': 1,
          'nonetheless': 1,
          'one': 1,
          '99': 1,
          'acting': 1,
          'notably': 1,
          'nnot': 1,
          'goers': 1,
          'buffs': 1,
          'want': 1,
          'something': 1,
          'value': 1,
          'npos': 1}),
 Counter({'titanic': 9,
          'film': 8,
          'movie': 5,
          'nthe': 5,
          'diamond': 5,
          'nits': 4,
          'true': 4,
          'rose': 4,
          'jack': 4,
          'love': 4,
          'seen': 3,
          'truly': 3,
          'picture': 3,
          'hour': 3,
          'said': 3,
          'doesnt': 3,
          'didnt': 3,
          'nof': 3,
          'course': 3,
          'cameron': 3,
          'bill': 3,
          'would': 3,
          'young': 3,
          'named': 3,
          'cal': 3,
          'dawson': 3,
          'story': 3,
          'people': 3,
          'best': 2,
          'year': 2,
          'nand': 2,
          'old': 2,
          'eyes': 2,
          'screen': 2,
          'watch': 2,
          'see': 2,
          'despite': 2,
          'time': 2,
          'friend': 2,
          'like': 2,
          'want': 2,
          'comes': 2,
          'one': 2,
          'nif': 2,
          'terminator': 2,
          'bottom': 2,
          'paxton': 2,
          'woman': 2,
          'girl': 2,
          'narration': 2,
          'us': 2,
          'man': 2,
          'hockley': 2,
          'marry': 2,
          'nthey': 2,
          'sailing': 2,
          'america': 2,
          'aboard': 2,
          'nfor': 2,
          'life': 2,
          'first': 2,
          'half': 2,
          'make': 2,
          'help': 2,
          'characters': 2,
          'nmost': 2,
          'back': 2,
          'get': 2,
          'going': 2,
          'part': 2,
          'opinion': 2,
          'roses': 2,
          'dream': 2,
          'think': 2,
          'without': 1,
          'doubt': 1,
          'ive': 1,
          'believe': 1,
          'im': 1,
          'easy': 1,
          'critic': 1,
          'impress': 1,
          'english': 1,
          'patient': 1,
          'long': 1,
          'men': 1,
          'black': 1,
          'overhyped': 1,
          'several': 1,
          'big': 1,
          'summer': 1,
          'releases': 1,
          'dead': 1,
          'water': 1,
          'nthank': 1,
          'god': 1,
          'got': 1,
          'delayed': 1,
          'december': 1,
          'christmas': 1,
          'present': 1,
          'ntitanic': 1,
          'tradition': 1,
          'hollywood': 1,
          'epics': 1,
          'yearsgoneby': 1,
          'stunning': 1,
          'nwhile': 1,
          'watching': 1,
          'completely': 1,
          'mesmerized': 1,
          'never': 1,
          'taking': 1,
          'checking': 1,
          'much': 1,
          'longer': 1,
          'gon': 1,
          'na': 1,
          'last': 1,
          '3': 1,
          'plus': 1,
          'running': 1,
          'nas': 1,
          'mine': 1,
          'whos': 1,
          'titanicbuff': 1,
          'someone': 1,
          'ntruer': 1,
          'words': 1,
          'hard': 1,
          'come': 1,
          'hurt': 1,
          'favorite': 1,
          'directors': 1,
          'james': 1,
          'unarguably': 1,
          'greatest': 1,
          'action': 1,
          'director': 1,
          'wish': 1,
          'argue': 1,
          'point': 1,
          'look': 1,
          'list': 1,
          'credits': 1,
          'aliens': 1,
          'abyss': 1,
          '2': 1,
          'lies': 1,
          'etc': 1,
          'still': 1,
          'care': 1,
          'disagree': 1,
          'nnot': 1,
          'helmed': 1,
          'directorial': 1,
          'duties': 1,
          'also': 1,
          'wrote': 1,
          'produced': 1,
          'edited': 1,
          'show': 1,
          'faith': 1,
          'project': 1,
          'renenged': 1,
          'directing': 1,
          'fees': 1,
          'percentage': 1,
          'points': 1,
          'ease': 1,
          'budget': 1,
          'costs': 1,
          'obvious': 1,
          'loves': 1,
          'opens': 1,
          'footage': 1,
          'real': 1,
          'fake': 1,
          'underwater': 1,
          'excursion': 1,
          'special': 1,
          'submarines': 1,
          'atlantic': 1,
          'team': 1,
          'explorers': 1,
          'lead': 1,
          'searcing': 1,
          'called': 1,
          'heart': 1,
          'ocean': 1,
          'according': 1,
          'paxtons': 1,
          'character': 1,
          'worth': 1,
          'hope': 1,
          'today': 1,
          'ntheir': 1,
          'search': 1,
          'turns': 1,
          'dissapointly': 1,
          'instead': 1,
          'drawing': 1,
          'wearing': 1,
          'nthis': 1,
          'broadcast': 1,
          'cnn': 1,
          '101': 1,
          'claims': 1,
          'nshe': 1,
          'flown': 1,
          'sea': 1,
          'meet': 1,
          'tell': 1,
          'nalmost': 1,
          'rest': 1,
          'past': 1,
          'nroses': 1,
          'shows': 1,
          'unhappy': 1,
          'engaged': 1,
          'rich': 1,
          'billy': 1,
          'zane': 1,
          'nher': 1,
          'mother': 1,
          'pushy': 1,
          'obnoxious': 1,
          'arrogant': 1,
          'boarding': 1,
          'nmeanwhile': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'italian': 1,
          'danny': 1,
          'nucci': 1,
          'win': 1,
          'two': 1,
          '3rd': 1,
          'class': 1,
          'tickets': 1,
          'poker': 1,
          'game': 1,
          'overjoyed': 1,
          'rush': 1,
          'boat': 1,
          'leaving': 1,
          'ticket': 1,
          'better': 1,
          'doom': 1,
          'tells': 1,
          'dewitt': 1,
          'kate': 1,
          'winslet': 1,
          'fall': 1,
          'classic': 1,
          'wrongsideofthetracks': 1,
          'sometimes': 1,
          'resort': 1,
          'cliches': 1,
          'nbut': 1,
          'portion': 1,
          'isnt': 1,
          'sappy': 1,
          'weigh': 1,
          'critics': 1,
          'sweet': 1,
          'restless': 1,
          'fact': 1,
          'usually': 1,
          'hate': 1,
          'stories': 1,
          'might': 1,
          'introduces': 1,
          'pretty': 1,
          'interesting': 1,
          'keep': 1,
          'glued': 1,
          'actually': 1,
          'passengers': 1,
          '1912': 1,
          'including': 1,
          'enigmatic': 1,
          'molly': 1,
          'brown': 1,
          'played': 1,
          'talented': 1,
          'kathy': 1,
          'bates': 1,
          'captain': 1,
          'bernard': 1,
          'hill': 1,
          'nall': 1,
          'add': 1,
          'extra': 1,
          'depth': 1,
          'easier': 1,
          'things': 1,
          'really': 1,
          'start': 1,
          'mark': 1,
          'strikes': 1,
          'iceberg': 1,
          'begins': 1,
          'slow': 1,
          'sink': 1,
          'sinking': 1,
          'depicted': 1,
          'realisticly': 1,
          'effects': 1,
          'amazing': 1,
          'nit': 1,
          'told': 1,
          'heroic': 1,
          'fashion': 1,
          'sense': 1,
          'either': 1,
          'portrayed': 1,
          'panicking': 1,
          'pushing': 1,
          'others': 1,
          'aside': 1,
          'limited': 1,
          'lifeboats': 1,
          'drowning': 1,
          'dying': 1,
          'horrible': 1,
          'deaths': 1,
          'end': 1,
          'flash': 1,
          'future': 1,
          'crew': 1,
          'skeptical': 1,
          'totally': 1,
          'aborbed': 1,
          'nrose': 1,
          'goes': 1,
          'onto': 1,
          'ships': 1,
          'ledge': 1,
          'learn': 1,
          'secret': 1,
          'catches': 1,
          'guard': 1,
          'nwe': 1,
          'returns': 1,
          'dancing': 1,
          'talked': 1,
          'saw': 1,
          'nhowever': 1,
          'symbolized': 1,
          'meant': 1,
          'died': 1,
          'sort': 1,
          'heaven': 1,
          'happiest': 1,
          'anyone': 1,
          'voice': 1,
          'email': 1,
          'venom8hotmail': 1,
          'com': 1,
          'npos': 1}),
 Counter({'truman': 17,
          'film': 6,
          'cams': 6,
          'nthe': 5,
          'wife': 5,
          'show': 4,
          'nbut': 4,
          'best': 4,
          'town': 4,
          'marlon': 4,
          'us': 4,
          'picture': 3,
          'good': 3,
          'carrey': 3,
          'sky': 3,
          'world': 3,
          'weir': 3,
          'watching': 3,
          'christof': 3,
          'reality': 3,
          'enjoy': 2,
          'latest': 2,
          'take': 2,
          'may': 2,
          'say': 2,
          'id': 2,
          'really': 2,
          'seems': 2,
          'side': 2,
          'jim': 2,
          'however': 2,
          'ncarrey': 2,
          'burbank': 2,
          'perfect': 2,
          'small': 2,
          'would': 2,
          'nthere': 2,
          'life': 2,
          'work': 2,
          'nthis': 2,
          'worlds': 2,
          'soundstage': 2,
          '000': 2,
          'television': 2,
          'nwhat': 2,
          'magical': 2,
          'second': 2,
          'manmade': 2,
          'camera': 2,
          'creator': 2,
          'nhis': 2,
          'always': 2,
          'nhe': 2,
          'people': 2,
          'way': 2,
          'sincerity': 2,
          'much': 2,
          'doubted': 2,
          'credit': 2,
          'jimmy': 2,
          'stewart': 2,
          'sometimes': 1,
          'tip': 1,
          'hat': 1,
          'nsometimes': 1,
          'jump': 1,
          'bandwagon': 1,
          'ride': 1,
          'ni': 1,
          'saw': 1,
          'audience': 1,
          'full': 1,
          'teenagers': 1,
          'doubt': 1,
          'drawn': 1,
          'ace': 1,
          'ventura': 1,
          'hoping': 1,
          'see': 1,
          'fart': 1,
          'jokes': 1,
          'nsurprised': 1,
          'realized': 1,
          'actually': 1,
          'something': 1,
          'attentiveness': 1,
          'crowd': 1,
          'cant': 1,
          'tell': 1,
          'yet': 1,
          'comparison': 1,
          'awful': 1,
          'mountain': 1,
          'crap': 1,
          'spewed': 1,
          'forth': 1,
          'bowls': 1,
          'hollywood': 1,
          'far': 1,
          'year': 1,
          'ntime': 1,
          'alone': 1,
          'make': 1,
          'call': 1,
          'end': 1,
          'burbanks': 1,
          'nwe': 1,
          'concerned': 1,
          'wellbeing': 1,
          'wanted': 1,
          'win': 1,
          'nthat': 1,
          'felt': 1,
          'tribute': 1,
          'achieved': 1,
          'legitimacy': 1,
          'last': 1,
          'viewed': 1,
          'cold': 1,
          'little': 1,
          'foreknowledge': 1,
          'possible': 1,
          'plot': 1,
          'nunless': 1,
          'youre': 1,
          'media': 1,
          'blackout': 1,
          'probably': 1,
          'know': 1,
          'basics': 1,
          'stars': 1,
          'capraesque': 1,
          'everyman': 1,
          'insurance': 1,
          'agent': 1,
          'living': 1,
          'beautiful': 1,
          'meryl': 1,
          'laura': 1,
          'linney': 1,
          'south': 1,
          'florida': 1,
          'island': 1,
          'seahaven': 1,
          'looks': 1,
          'like': 1,
          'michael': 1,
          'eisners': 1,
          'idea': 1,
          'american': 1,
          'ntruman': 1,
          'seem': 1,
          'live': 1,
          'middle': 1,
          'class': 1,
          'lifestyle': 1,
          'complete': 1,
          'working': 1,
          'bud': 1,
          'friendly': 1,
          'neighbors': 1,
          'interesting': 1,
          'coworkers': 1,
          'tragedy': 1,
          'past': 1,
          'father': 1,
          'drowned': 1,
          'horrible': 1,
          'boating': 1,
          'accident': 1,
          'leaving': 1,
          'dreadful': 1,
          'fear': 1,
          'water': 1,
          'travel': 1,
          'general': 1,
          'overall': 1,
          'one': 1,
          'day': 1,
          'leaves': 1,
          'house': 1,
          'klieg': 1,
          'light': 1,
          'falls': 1,
          'magically': 1,
          'curious': 1,
          'event': 1,
          'lead': 1,
          'discover': 1,
          'rest': 1,
          'already': 1,
          'knows': 1,
          'prisoner': 1,
          'biggest': 1,
          'friends': 1,
          'relatives': 1,
          'actors': 1,
          'paid': 1,
          'interact': 1,
          '10': 1,
          'days': 1,
          'broadcast': 1,
          'popular': 1,
          'program': 1,
          'makes': 1,
          'first': 1,
          'hour': 1,
          'enjoyable': 1,
          'watch': 1,
          'verisimilitude': 1,
          'painstakingly': 1,
          'constructed': 1,
          'niccol': 1,
          'told': 1,
          'structure': 1,
          'visible': 1,
          'space': 1,
          'ntrumans': 1,
          'movements': 1,
          'tracked': 1,
          'ceaselessly': 1,
          '5': 1,
          'cameras': 1,
          'scattered': 1,
          'throughout': 1,
          'button': 1,
          'dashboard': 1,
          'mirror': 1,
          'big': 1,
          'nweir': 1,
          'cuts': 1,
          'never': 1,
          'quite': 1,
          'sure': 1,
          'director': 1,
          'shows': 1,
          'omnipotent': 1,
          'ed': 1,
          'harris': 1,
          'oversees': 1,
          'control': 1,
          'room': 1,
          'built': 1,
          'moon': 1,
          'seahavens': 1,
          'act': 1,
          'offers': 1,
          'plethora': 1,
          'clues': 1,
          'truth': 1,
          'existence': 1,
          'friend': 1,
          'noah': 1,
          'emmerich': 1,
          'six': 1,
          'pack': 1,
          'beer': 1,
          'exist': 1,
          'eternal': 1,
          'commercial': 1,
          'endorsing': 1,
          'hot': 1,
          'household': 1,
          'product': 1,
          'sees': 1,
          'walking': 1,
          'set': 1,
          'patterns': 1,
          'none': 1,
          'wonders': 1,
          'didnt': 1,
          'pick': 1,
          'earlier': 1,
          'answer': 1,
          'tend': 1,
          'accept': 1,
          'theyre': 1,
          'presented': 1,
          'nnevertheless': 1,
          'begins': 1,
          'grow': 1,
          'restless': 1,
          'dreams': 1,
          'escape': 1,
          'fiji': 1,
          'old': 1,
          'college': 1,
          'sweetheart': 1,
          'natasha': 1,
          'mcelhone': 1,
          'supposedly': 1,
          'lives': 1,
          'convincing': 1,
          'progenitor': 1,
          'provocative': 1,
          'concept': 1,
          'thing': 1,
          'stay': 1,
          'nby': 1,
          'underplaying': 1,
          'allows': 1,
          'subtle': 1,
          'manipulations': 1,
          'particularly': 1,
          'poignant': 1,
          'scene': 1,
          'confides': 1,
          'fears': 1,
          'answers': 1,
          'bestfriend': 1,
          'gladly': 1,
          'step': 1,
          'front': 1,
          'bus': 1,
          'line': 1,
          'fed': 1,
          'earpiece': 1,
          'abject': 1,
          'cruelty': 1,
          'subjected': 1,
          'hits': 1,
          'home': 1,
          'moment': 1,
          'derives': 1,
          'success': 1,
          'playing': 1,
          'secret': 1,
          'paranoid': 1,
          'fantasies': 1,
          'havent': 1,
          'least': 1,
          'place': 1,
          'closest': 1,
          'nultimately': 1,
          'rises': 1,
          'artifice': 1,
          'raise': 1,
          'real': 1,
          'questions': 1,
          'relationship': 1,
          'humankind': 1,
          'god': 1,
          'think': 1,
          'ndoes': 1,
          'resent': 1,
          'abandonment': 1,
          'paradise': 1,
          'nwho': 1,
          'exactly': 1,
          'nif': 1,
          'allowing': 1,
          'magic': 1,
          'screenplay': 1,
          'nas': 1,
          'well': 1,
          'kind': 1,
          'role': 1,
          'born': 1,
          'play': 1,
          'doesnt': 1,
          'try': 1,
          'tries': 1,
          'feel': 1,
          'suddenly': 1,
          'found': 1,
          'whole': 1,
          'npos': 1}),
 Counter({'movie': 8,
          'n': 5,
          'homosexuality': 5,
          'trailer': 5,
          'mpaa': 4,
          'gay': 4,
          'see': 4,
          'someone': 4,
          'r': 3,
          'rated': 3,
          'closet': 3,
          'lesbian': 3,
          'time': 3,
          'seen': 3,
          'times': 3,
          'could': 3,
          'one': 3,
          'dont': 3,
          'america': 2,
          'decide': 2,
          'ask': 2,
          'preview': 2,
          'make': 2,
          'sense': 2,
          'let': 2,
          'celluloid': 2,
          'documentary': 2,
          'past': 2,
          'nit': 2,
          'watch': 2,
          'audiences': 2,
          'feel': 2,
          'seems': 2,
          'nthe': 2,
          'good': 2,
          'sex': 2,
          'knowing': 2,
          'things': 2,
          'whether': 2,
          'nbut': 2,
          'nnow': 2,
          'film': 2,
          'violence': 2,
          'would': 2,
          'words': 2,
          'scene': 2,
          'nwhen': 2,
          'rating': 2,
          'handbook': 2,
          'contain': 2,
          'lesbianism': 2,
          'ive': 2,
          'well': 2,
          'trained': 2,
          'nin': 2,
          'made': 2,
          'ni': 2,
          'like': 2,
          'suggest': 2,
          'light': 2,
          'straight': 2,
          'people': 2,
          'point': 2,
          'go': 2,
          'nlet': 2,
          'reflect': 2,
          'content': 2,
          'id': 2,
          'didnt': 1,
          'realize': 1,
          'apt': 1,
          'name': 1,
          'called': 1,
          'motion': 1,
          'picture': 1,
          'association': 1,
          'folks': 1,
          'whats': 1,
          'g': 1,
          'nc': 1,
          '17': 1,
          'pg': 1,
          'x': 1,
          'response': 1,
          'tell': 1,
          'portrayed': 1,
          'movies': 1,
          'several': 1,
          'decades': 1,
          'nits': 1,
          'brilliant': 1,
          'funny': 1,
          'naughty': 1,
          'extremely': 1,
          'poignant': 1,
          'tore': 1,
          'heart': 1,
          'gifted': 1,
          'screenwriter': 1,
          'explain': 1,
          'rule': 1,
          'hunger': 1,
          'hint': 1,
          'screen': 1,
          'nregardless': 1,
          'veiled': 1,
          'sordid': 1,
          'presence': 1,
          'person': 1,
          'allows': 1,
          'others': 1,
          'lessen': 1,
          'isolation': 1,
          'makes': 1,
          'theyre': 1,
          'quite': 1,
          'invisible': 1,
          'want': 1,
          'reason': 1,
          'contains': 1,
          'scenes': 1,
          'bloody': 1,
          'violent': 1,
          'bashing': 1,
          'graphic': 1,
          'uninhibited': 1,
          'nas': 1,
          'appreciate': 1,
          'ahead': 1,
          'friend': 1,
          'date': 1,
          '11': 1,
          'year': 1,
          'old': 1,
          'niece': 1,
          'alone': 1,
          'thats': 1,
          'back': 1,
          'nprior': 1,
          'theatrically': 1,
          'released': 1,
          'originally': 1,
          'filmed': 1,
          'hbo': 1,
          'coming': 1,
          'attractions': 1,
          'least': 1,
          'six': 1,
          'nthere': 1,
          'nudity': 1,
          'bad': 1,
          'language': 1,
          'nothing': 1,
          'offensive': 1,
          'inappropriate': 1,
          'general': 1,
          'audience': 1,
          'okay': 1,
          'whoopi': 1,
          'goldberg': 1,
          'refer': 1,
          'boning': 1,
          'last': 1,
          'knew': 1,
          'wasnt': 1,
          'seven': 1,
          'cant': 1,
          'say': 1,
          'tv': 1,
          'nexcept': 1,
          'two': 1,
          'fully': 1,
          'clothed': 1,
          'men': 1,
          'kissing': 1,
          'nhmmmmm': 1,
          'inquired': 1,
          'nice': 1,
          'woman': 1,
          'quoted': 1,
          'approved': 1,
          'going': 1,
          'nhello': 1,
          'office': 1,
          'middle': 1,
          'day': 1,
          'nbravely': 1,
          'pursued': 1,
          'oh': 1,
          'nprobably': 1,
          'half': 1,
          'dozen': 1,
          'gulped': 1,
          'remember': 1,
          'chirped': 1,
          'nour': 1,
          'little': 1,
          'eyes': 1,
          'nno': 1,
          'really': 1,
          'dave': 1,
          'barry': 1,
          'making': 1,
          'nthey': 1,
          'shocked': 1,
          'first': 1,
          'note': 1,
          'carefully': 1,
          'following': 1,
          'five': 1,
          'managed': 1,
          'slip': 1,
          'ngosh': 1,
          'certainly': 1,
          'mean': 1,
          'question': 1,
          'however': 1,
          'nand': 1,
          'aint': 1,
          'handful': 1,
          'involved': 1,
          'primarily': 1,
          'weekly': 1,
          'bible': 1,
          'study': 1,
          'email': 1,
          'ill': 1,
          'give': 1,
          'details': 1,
          'none': 1,
          'big': 1,
          'surprise': 1,
          'even': 1,
          'politically': 1,
          'correct': 1,
          '90s': 1,
          'ridiculously': 1,
          'perceived': 1,
          'threat': 1,
          'mostly': 1,
          'heterosexual': 1,
          'society': 1,
          'na': 1,
          'candid': 1,
          'honest': 1,
          'mpaas': 1,
          'ruling': 1,
          'must': 1,
          'defined': 1,
          'particularly': 1,
          'sexual': 1,
          'nonsexual': 1,
          'watched': 1,
          'trailers': 1,
          'need': 1,
          'obvious': 1,
          'nill': 1,
          'instead': 1,
          'reevaluated': 1,
          'evaluation': 1,
          'criteria': 1,
          'ratings': 1,
          'subject': 1,
          'attitude': 1,
          'future': 1,
          'interested': 1,
          'disrespectful': 1,
          'stereotyped': 1,
          'nthen': 1,
          'truly': 1,
          'able': 1,
          'informed': 1,
          'decision': 1,
          'spent': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'film': 7,
          'patlabor': 7,
          'series': 7,
          'labors': 7,
          'nas': 6,
          'movie': 6,
          'story': 5,
          'new': 5,
          'nthis': 5,
          'though': 4,
          'animated': 4,
          '_ghost': 4,
          'shell_': 4,
          'japan': 4,
          'characters': 4,
          'labor': 4,
          'action': 4,
          'animation': 3,
          'many': 3,
          'two': 3,
          'ever': 3,
          'giant': 3,
          'robot': 3,
          'come': 3,
          'special': 3,
          'vehicle': 3,
          'around': 3,
          'sv2': 3,
          'almost': 3,
          'hos': 3,
          'go': 3,
          'movie_': 3,
          'part': 3,
          'setting': 3,
          'far': 3,
          'used': 3,
          'rated': 2,
          'oshii': 2,
          'audiences': 2,
          'perhaps': 2,
          'japanese': 2,
          'known': 2,
          'among': 2,
          'fans': 2,
          'anime': 2,
          'films': 2,
          'deep': 2,
          'first': 2,
          'novels': 2,
          'different': 2,
          'oavs': 2,
          'short': 2,
          'television': 2,
          'running': 2,
          'one': 2,
          'near': 2,
          'future': 2,
          'features': 2,
          'whole': 2,
          'robots': 2,
          'interesting': 2,
          'however': 2,
          'crime': 2,
          'patrol': 2,
          'centers': 2,
          'deadly': 2,
          'serious': 2,
          'may': 2,
          'find': 2,
          'slightly': 2,
          'much': 2,
          'project': 2,
          'tokyo': 2,
          'notably': 2,
          'case': 2,
          'heavy': 2,
          'industries': 2,
          'operating': 2,
          'system': 2,
          'including': 2,
          'shinohara': 2,
          'movies': 2,
          'make': 2,
          'old': 2,
          'similar': 2,
          'sequences': 2,
          'large': 2,
          'ive': 2,
          'seen': 2,
          'clear': 2,
          'storyline': 2,
          'cinematography': 2,
          '_patlabor': 2,
          'dont': 2,
          'side': 2,
          'screen': 2,
          'subtitles': 2,
          'enough': 2,
          'nalthough': 2,
          '118': 1,
          'minutes': 1,
          'suspect': 1,
          'would': 1,
          'pg': 1,
          'adult': 1,
          'themes': 1,
          'language': 1,
          'nmamoru': 1,
          'name': 1,
          'probably': 1,
          'isnt': 1,
          'wellknown': 1,
          'american': 1,
          'noshii': 1,
          'director': 1,
          'last': 1,
          'years': 1,
          'bestknown': 1,
          'import': 1,
          'making': 1,
          'philosophical': 1,
          'bent': 1,
          'none': 1,
          'theatrical': 1,
          'venture': 1,
          'nin': 1,
          'incarnationsgraphic': 1,
          'manga': 1,
          'runs': 1,
          'madeforvideo': 1,
          'episodes': 1,
          'original': 1,
          'videos': 1,
          'nearly': 1,
          'fifty': 1,
          'episodespatlabor': 1,
          'proven': 1,
          'popular': 1,
          'nset': 1,
          'somewhat': 1,
          'farther': 1,
          'away': 1,
          'conceived': 1,
          'atypical': 1,
          'rather': 1,
          'machinery': 1,
          'primary': 1,
          'focus': 1,
          'exciting': 1,
          'time': 1,
          'prologue': 1,
          'episode': 1,
          'explains': 1,
          'industrial': 1,
          'play': 1,
          'words': 1,
          'considering': 1,
          'derived': 1,
          'czech': 1,
          'word': 1,
          'widespread': 1,
          'use': 1,
          'toward': 1,
          'close': 1,
          'twentieth': 1,
          'century': 1,
          'nwith': 1,
          'rise': 1,
          'menacelabor': 1,
          'led': 1,
          'creation': 1,
          'divisions': 1,
          'using': 1,
          'fight': 1,
          'second': 1,
          'division': 1,
          'fault': 1,
          'acquired': 1,
          'bad': 1,
          'reputation': 1,
          'destructiveness': 1,
          'nsometimes': 1,
          'utterly': 1,
          'hilarious': 1,
          'sometimes': 1,
          'explores': 1,
          'interpersonal': 1,
          'relationships': 1,
          'crewmembers': 1,
          'also': 1,
          'looks': 1,
          'effects': 1,
          'technology': 1,
          'modern': 1,
          'life': 1,
          'nthose': 1,
          'unfamiliar': 1,
          'confused': 1,
          'coming': 1,
          'although': 1,
          'ample': 1,
          'background': 1,
          'exposition': 1,
          'provided': 1,
          'viewers': 1,
          'controversial': 1,
          'babylon': 1,
          'gigantic': 1,
          'seawall': 1,
          'completion': 1,
          'allow': 1,
          'reclamation': 1,
          'thousands': 1,
          'square': 1,
          'miles': 1,
          'land': 1,
          'bay': 1,
          'constant': 1,
          'target': 1,
          'environmentalist': 1,
          'terrorists': 1,
          'house': 1,
          'sea': 1,
          'organization': 1,
          'nhowever': 1,
          'threat': 1,
          'comes': 1,
          'terrorist': 1,
          'someone': 1,
          'already': 1,
          'dead': 1,
          'nshinohara': 1,
          'premier': 1,
          'manufacturer': 1,
          'world': 1,
          'increases': 1,
          'movement': 1,
          'speed': 1,
          'efficiency': 1,
          '30': 1,
          'hyper': 1,
          'quickly': 1,
          'installed': 1,
          'well': 1,
          '90': 1,
          'nations': 1,
          'nsince': 1,
          'installation': 1,
          'dozens': 1,
          'heavilyarmed': 1,
          'military': 1,
          'model': 1,
          'begun': 1,
          'berzerk': 1,
          'rampages': 1,
          'apparent': 1,
          'reason': 1,
          'factor': 1,
          'common': 1,
          'n': 1,
          'wags': 1,
          'compared': 1,
          'windows': 1,
          '95': 1,
          'nits': 1,
          'asuma': 1,
          'command': 1,
          'officer': 1,
          'son': 1,
          'president': 1,
          'source': 1,
          'problems': 1,
          'laborsincluding': 1,
          'sv2s': 1,
          'ownfall': 1,
          'victim': 1,
          'drags': 1,
          'fathers': 1,
          'company': 1,
          'want': 1,
          'nobrainer': 1,
          'actionfest': 1,
          'might': 1,
          'n_patlabor': 1,
          'psychological': 1,
          'thriller': 1,
          'technological': 1,
          'suspense': 1,
          'drama': 1,
          'nit': 1,
          'closer': 1,
          'chrichton': 1,
          'novel': 1,
          'crichton': 1,
          'made': 1,
          '_into_': 1,
          'notwithstanding': 1,
          'nthere': 1,
          'long': 1,
          'thoughtful': 1,
          'montages': 1,
          'dialogueless': 1,
          'footage': 1,
          'investigators': 1,
          'way': 1,
          'slums': 1,
          'derelict': 1,
          'housing': 1,
          'quarters': 1,
          'fraught': 1,
          'symbolismin': 1,
          'fact': 1,
          'based': 1,
          'christian': 1,
          'symbolism': 1,
          'npatlabors': 1,
          'nearfuture': 1,
          'aside': 1,
          'tromping': 1,
          'present': 1,
          'day': 1,
          'uses': 1,
          'central': 1,
          'point': 1,
          'progress': 1,
          'moving': 1,
          'fast': 1,
          'humans': 1,
          'keep': 1,
          'nare': 1,
          'history': 1,
          'culture': 1,
          'falling': 1,
          'wayside': 1,
          'like': 1,
          'buildings': 1,
          'torn': 1,
          'replaced': 1,
          'question': 1,
          'applicable': 1,
          'today': 1,
          'patlabors': 1,
          'alternate1999': 1,
          'technical': 1,
          'aspects': 1,
          'referring': 1,
          'subtitled': 1,
          'version': 1,
          'thats': 1,
          'transfer': 1,
          'phenomenally': 1,
          'quality': 1,
          'incredible': 1,
          'character': 1,
          'design': 1,
          'tv': 1,
          'cheerful': 1,
          'bettersuited': 1,
          'humor': 1,
          'makes': 1,
          'everyone': 1,
          'look': 1,
          'great': 1,
          'deal': 1,
          'less': 1,
          'cute': 1,
          'emphasizes': 1,
          'going': 1,
          'goes': 1,
          'moments': 1,
          'ni': 1,
          'think': 1,
          'recall': 1,
          'seeing': 1,
          'fisheye': 1,
          'perspective': 1,
          'save': 1,
          'another': 1,
          'indeed': 1,
          'wellsuited': 1,
          'emphasizing': 1,
          'needs': 1,
          'couple': 1,
          'scenes': 1,
          'exaggerated': 1,
          'anger': 1,
          'seem': 1,
          'strange': 1,
          'western': 1,
          'audio': 1,
          'track': 1,
          'glorious': 1,
          'hifi': 1,
          'stereo': 1,
          'demonstrate': 1,
          'home': 1,
          'theater': 1,
          'systemsit': 1,
          '_is_': 1,
          'good': 1,
          'neven': 1,
          'without': 1,
          'headphones': 1,
          'sounds': 1,
          'either': 1,
          'clearly': 1,
          'heard': 1,
          '_come_': 1,
          'ngiant': 1,
          'footsteps': 1,
          'booming': 1,
          'sometimesunderstated': 1,
          'sometimesblaring': 1,
          'score': 1,
          'crisp': 1,
          'always': 1,
          'right': 1,
          'mark': 1,
          'enhancing': 1,
          'moods': 1,
          'created': 1,
          'scenery': 1,
          'say': 1,
          'theyre': 1,
          'easilyreadable': 1,
          '_anything_': 1,
          'nlarge': 1,
          'strain': 1,
          'eyes': 1,
          'small': 1,
          'conceal': 1,
          'several': 1,
          'climactic': 1,
          'conclusion': 1,
          '_patlabor_': 1,
          'foremost': 1,
          'superblyrealized': 1,
          'relies': 1,
          'upon': 1,
          'prior': 1,
          'familiarity': 1,
          'carry': 1,
          'could': 1,
          'detract': 1,
          'peoples': 1,
          'enjoyment': 1,
          'nmy': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'beavis': 4,
          'butthead': 4,
          'show': 4,
          'tv': 3,
          'wants': 3,
          'keep': 3,
          'first': 2,
          'nif': 2,
          'like': 2,
          'go': 2,
          'see': 2,
          'nthe': 2,
          'starts': 2,
          'nthey': 2,
          'find': 2,
          'nthis': 2,
          'searching': 2,
          'think': 2,
          'okay': 1,
          'let': 1,
          'say': 1,
          'nhowever': 1,
          'recommened': 1,
          'get': 1,
          'right': 1,
          'boys': 1,
          'wondering': 1,
          'happened': 1,
          'notice': 1,
          'stolen': 1,
          'vow': 1,
          'wind': 1,
          'way': 1,
          'america': 1,
          'dallas': 1,
          'woman': 1,
          'look': 1,
          'drunk': 1,
          'wife': 1,
          'nwell': 1,
          'course': 1,
          'score': 1,
          'actually': 1,
          'kill': 1,
          'nand': 1,
          'fun': 1,
          'mix': 1,
          'funny': 1,
          'gags': 1,
          'anly': 1,
          'could': 1,
          'pull': 1,
          'nit': 1,
          'quality': 1,
          'entertainment': 1,
          'fan': 1,
          'would': 1,
          'enjoy': 1,
          'ni': 1,
          'enjoyed': 1,
          'alot': 1,
          'mike': 1,
          'judge': 1,
          'knew': 1,
          'pace': 1,
          'neven': 1,
          'crawling': 1,
          'desert': 1,
          'thought': 1,
          'started': 1,
          'lag': 1,
          'manages': 1,
          'laughs': 1,
          'coming': 1,
          'expecting': 1,
          'changes': 1,
          'looking': 1,
          'character': 1,
          'voices': 1,
          'everything': 1,
          'thats': 1,
          'makes': 1,
          'good': 1,
          'nyou': 1,
          'might': 1,
          'change': 1,
          'things': 1,
          'noften': 1,
          'times': 1,
          'spells': 1,
          'disaster': 1,
          'films': 1,
          'film': 1,
          'makers': 1,
          'veer': 1,
          'away': 1,
          'made': 1,
          'popular': 1,
          'place': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'go': 5,
          'film': 4,
          'much': 4,
          'one': 4,
          'swingers': 3,
          'get': 3,
          'entertaining': 3,
          'enjoy': 3,
          'good': 3,
          'cast': 3,
          'never': 3,
          'rather': 3,
          'stories': 3,
          'script': 3,
          'movie': 3,
          'pulp': 2,
          'fiction': 2,
          'director': 2,
          'story': 2,
          'around': 2,
          'checkout': 2,
          'polley': 2,
          'three': 2,
          'chapters': 2,
          'touch': 2,
          'rollercoaster': 2,
          'ride': 2,
          'also': 2,
          'scenes': 2,
          'particular': 2,
          'pretty': 2,
          'twisted': 2,
          'throughout': 2,
          'talent': 2,
          'largely': 2,
          'make': 2,
          'dimensional': 2,
          'slightly': 2,
          'audience': 2,
          'funny': 2,
          'annoying': 2,
          'makes': 2,
          'drug': 2,
          'performance': 2,
          'nalso': 2,
          'dialogue': 2,
          'nit': 2,
          'starts': 2,
          'however': 2,
          'little': 2,
          'parts': 2,
          'ngo': 2,
          'characters': 2,
          'things': 2,
          'taking': 1,
          'tips': 1,
          'school': 1,
          'filmmaking': 1,
          'new': 1,
          'feature': 1,
          'cult': 1,
          'hit': 1,
          'centres': 1,
          'group': 1,
          'people': 1,
          'include': 1,
          'brit': 1,
          'simon': 1,
          'askew': 1,
          'girls': 1,
          'claire': 1,
          'holmes': 1,
          'ronna': 1,
          'misadventures': 1,
          'split': 1,
          'neverything': 1,
          'sex': 1,
          'drugs': 1,
          'violence': 1,
          'covered': 1,
          'blacker': 1,
          'edge': 1,
          'comedy': 1,
          'nalthough': 1,
          'qts': 1,
          'evident': 1,
          'nearly': 1,
          'every': 1,
          'frame': 1,
          'enough': 1,
          'forget': 1,
          'similarities': 1,
          'nliman': 1,
          'photographed': 1,
          'deft': 1,
          'camera': 1,
          'looks': 1,
          'seems': 1,
          'benefited': 1,
          'budget': 1,
          'nightclub': 1,
          'looking': 1,
          'ntheres': 1,
          'sense': 1,
          'humour': 1,
          'running': 1,
          'ensures': 1,
          'even': 1,
          'darkest': 1,
          'smirk': 1,
          'young': 1,
          'talented': 1,
          'help': 1,
          'bring': 1,
          'life': 1,
          'nholmes': 1,
          'dawsons': 1,
          'creek': 1,
          'show': 1,
          'im': 1,
          'particularly': 1,
          'fond': 1,
          'displays': 1,
          'despite': 1,
          'limited': 1,
          'screen': 1,
          'time': 1,
          'manages': 1,
          'character': 1,
          'becomes': 1,
          'caricature': 1,
          'naskew': 1,
          'successful': 1,
          'obnoxious': 1,
          'nno': 1,
          'doubt': 1,
          'filmmakers': 1,
          'intended': 1,
          'cheer': 1,
          'happens': 1,
          'instead': 1,
          'hes': 1,
          'nhe': 1,
          'drags': 1,
          'funniest': 1,
          'tale': 1,
          'real': 1,
          'standout': 1,
          'sarah': 1,
          'dealing': 1,
          'girl': 1,
          'refreshing': 1,
          'deeply': 1,
          'enjoyable': 1,
          'heavy': 1,
          'going': 1,
          'involved': 1,
          'timothy': 1,
          'olyphant': 1,
          'sinister': 1,
          'dealer': 1,
          'gives': 1,
          'nice': 1,
          'evil': 1,
          'written': 1,
          'john': 1,
          'august': 1,
          'sharp': 1,
          'witty': 1,
          'jokes': 1,
          'slow': 1,
          'twenty': 1,
          'minutes': 1,
          'found': 1,
          'footing': 1,
          'keeps': 1,
          'getting': 1,
          'better': 1,
          'satisfying': 1,
          'although': 1,
          'occasionally': 1,
          'theres': 1,
          'attention': 1,
          'detail': 1,
          'another': 1,
          'endings': 1,
          'seem': 1,
          'forced': 1,
          'lucky': 1,
          'nstill': 1,
          'meaty': 1,
          'obviously': 1,
          'could': 1,
          'tried': 1,
          'harder': 1,
          'lag': 1,
          'nbecause': 1,
          'genxer': 1,
          'obligatory': 1,
          'rave': 1,
          'soundtrack': 1,
          'must': 1,
          'accompany': 1,
          'gos': 1,
          'decent': 1,
          'nunlike': 1,
          'genxers': 1,
          'movies': 1,
          'allows': 1,
          'music': 1,
          'substitute': 1,
          'plot': 1,
          'plus': 1,
          'easy': 1,
          'absorb': 1,
          'really': 1,
          'feeling': 1,
          'nthankfully': 1,
          'become': 1,
          'two': 1,
          'bent': 1,
          'fit': 1,
          'mechanics': 1,
          'like': 1,
          'heroine': 1,
          '10': 1,
          'hate': 1,
          'nthey': 1,
          'stay': 1,
          'way': 1,
          'great': 1,
          'fun': 1,
          'worthy': 1,
          'follow': 1,
          'nignore': 1,
          'fact': 1,
          'steals': 1,
          'bad': 1,
          'sit': 1,
          'back': 1,
          'nerm': 1,
          'guess': 1,
          'npos': 1}),
 Counter({'film': 7,
          'planet': 6,
          'nthe': 5,
          'well': 5,
          'character': 4,
          'disc': 4,
          'shandling': 3,
          'makes': 3,
          'harold': 3,
          'gets': 3,
          'see': 3,
          'fine': 3,
          'isolated': 3,
          'score': 3,
          'track': 3,
          'long': 2,
          'men': 2,
          'given': 2,
          'disastrous': 2,
          'bening': 2,
          'tells': 2,
          'married': 2,
          'kingsley': 2,
          'nis': 2,
          'funny': 2,
          'sort': 2,
          'gives': 2,
          'cast': 2,
          'certainly': 2,
          'good': 2,
          'nwhat': 2,
          'dvd': 2,
          'columbia': 2,
          'tristar': 2,
          'home': 2,
          'video': 2,
          'original': 2,
          'theatrical': 2,
          '1': 2,
          'great': 2,
          'garry': 1,
          'overdue': 1,
          'starring': 1,
          'debut': 1,
          'alien': 1,
          'populated': 1,
          'genetically': 1,
          'created': 1,
          'looking': 1,
          'take': 1,
          'earth': 1,
          'propagating': 1,
          'species': 1,
          'nshandling': 1,
          'chosen': 1,
          'mission': 1,
          'name': 1,
          'anderson': 1,
          'set': 1,
          'banker': 1,
          'seattle': 1,
          'nafter': 1,
          'mating': 1,
          'attempts': 1,
          'figures': 1,
          'best': 1,
          'bet': 1,
          'susan': 1,
          'annette': 1,
          'former': 1,
          'alcoholic': 1,
          'eventually': 1,
          'wont': 1,
          'sex': 1,
          'leader': 1,
          'harolds': 1,
          'ben': 1,
          'marry': 1,
          'soon': 1,
          'exposed': 1,
          'joys': 1,
          'life': 1,
          'ndespite': 1,
          'title': 1,
          'premise': 1,
          'seem': 1,
          'imply': 1,
          'jerry': 1,
          'lewis': 1,
          'vehicle': 1,
          'late': 1,
          '1960s': 1,
          'movie': 1,
          'plot': 1,
          'wisely': 1,
          'doesnt': 1,
          'linger': 1,
          'specifics': 1,
          'course': 1,
          'nothing': 1,
          'framework': 1,
          'jokes': 1,
          'work': 1,
          'material': 1,
          'may': 1,
          'considered': 1,
          'crude': 1,
          'tasteless': 1,
          'many': 1,
          'might': 1,
          'thought': 1,
          'lead': 1,
          'nbut': 1,
          'brings': 1,
          'pathetic': 1,
          'charm': 1,
          'role': 1,
          'performance': 1,
          'truly': 1,
          'instead': 1,
          'offensive': 1,
          'nplus': 1,
          'think': 1,
          'ncould': 1,
          'easily': 1,
          'gone': 1,
          'grossout': 1,
          'route': 1,
          'considering': 1,
          'shandlings': 1,
          'detachable': 1,
          'penis': 1,
          'vibrates': 1,
          'hums': 1,
          'excited': 1,
          'nwe': 1,
          'never': 1,
          'anything': 1,
          'though': 1,
          'implied': 1,
          'touch': 1,
          'class': 1,
          'amidst': 1,
          'crudeness': 1,
          'nim': 1,
          'glad': 1,
          'someone': 1,
          'hollywood': 1,
          'still': 1,
          'understands': 1,
          'concept': 1,
          'less': 1,
          'talented': 1,
          'supporting': 1,
          'adds': 1,
          'ones': 1,
          'enjoyment': 1,
          'nannette': 1,
          'oddly': 1,
          'playing': 1,
          'merged': 1,
          'version': 1,
          'real': 1,
          'estate': 1,
          'salesman': 1,
          'american': 1,
          'beauty': 1,
          'ditzy': 1,
          'spiritualist': 1,
          'mars': 1,
          'attacks': 1,
          'ndoes': 1,
          'job': 1,
          'keeping': 1,
          'catalyst': 1,
          'brand': 1,
          'humor': 1,
          'nshe': 1,
          'even': 1,
          'manages': 1,
          'pull': 1,
          'potentially': 1,
          'scene': 1,
          'perform': 1,
          'rather': 1,
          'goofy': 1,
          'rendition': 1,
          'high': 1,
          'hopes': 1,
          'lengthy': 1,
          'period': 1,
          'time': 1,
          'nben': 1,
          'john': 1,
          'goodman': 1,
          'greg': 1,
          'kinnear': 1,
          'fare': 1,
          'performances': 1,
          'linda': 1,
          'fiorentino': 1,
          'ngood': 1,
          'lord': 1,
          'law': 1,
          'stating': 1,
          'woman': 1,
          'sexy': 1,
          'neverything': 1,
          'oozes': 1,
          'raw': 1,
          'sexuality': 1,
          'available': 1,
          'choice': 1,
          'either': 1,
          'watching': 1,
          'full': 1,
          'frame': 1,
          'aspect': 1,
          'ratio': 1,
          '85': 1,
          'enhanced': 1,
          '16x9': 1,
          'televisions': 1,
          'nalso': 1,
          'included': 1,
          'extras': 1,
          'decent': 1,
          'makingof': 1,
          'featurette': 1,
          'talent': 1,
          'files': 1,
          'crew': 1,
          'films': 1,
          'trailer': 1,
          'trailers': 1,
          'wolf': 1,
          'black': 1,
          'bugsy': 1,
          'nwhen': 1,
          'first': 1,
          'saw': 1,
          'featured': 1,
          'actually': 1,
          'laughed': 1,
          'nhow': 1,
          'could': 1,
          'music': 1,
          'silly': 1,
          'little': 1,
          'comedy': 1,
          'get': 1,
          'nwell': 1,
          'turns': 1,
          'mighty': 1,
          'carter': 1,
          'burwell': 1,
          'fargo': 1,
          'hudsucker': 1,
          'proxy': 1,
          'enjoyed': 1,
          'listening': 1,
          'typed': 1,
          'review': 1,
          'nkudos': 1,
          'adding': 1,
          'feature': 1,
          'nwas': 1,
          'unjustly': 1,
          'ignored': 1,
          'theaters': 1,
          'hope': 1,
          'finds': 1,
          'deserved': 1,
          'audience': 1,
          'nthis': 1,
          'way': 1,
          'nr': 1,
          'npos': 1}),
 Counter({'film': 6,
          'nthe': 5,
          'nit': 4,
          'man': 4,
          'schindlers': 3,
          'list': 3,
          'nthis': 3,
          'one': 3,
          'leaves': 3,
          'much': 3,
          'moment': 2,
          'jews': 2,
          'ground': 2,
          'red': 2,
          'eyes': 2,
          'probably': 2,
          'nwhen': 2,
          'saw': 2,
          'could': 2,
          'many': 2,
          'see': 2,
          'godfather': 2,
          'films': 2,
          'money': 2,
          'nbut': 2,
          'movie': 2,
          'spielberg': 2,
          'filmmaker': 2,
          'sense': 2,
          'deep': 2,
          'watch': 2,
          'schindler': 2,
          'experience': 2,
          'hands': 2,
          'masterpiece': 2,
          'would': 2,
          'told': 2,
          'theres': 1,
          'number': 1,
          'trudging': 1,
          'snow': 1,
          'clean': 1,
          'crisp': 1,
          'dark': 1,
          'edges': 1,
          'frost': 1,
          'none': 1,
          'girl': 1,
          'waltzes': 1,
          'wearing': 1,
          'dress': 1,
          'stings': 1,
          'finest': 1,
          'first': 1,
          'began': 1,
          'cry': 1,
          'though': 1,
          'say': 1,
          'landscape': 1,
          'setting': 1,
          'small': 1,
          'moments': 1,
          'add': 1,
          'big': 1,
          'whole': 1,
          'shot': 1,
          'head': 1,
          'blood': 1,
          'oozing': 1,
          'onto': 1,
          'black': 1,
          'murky': 1,
          'almost': 1,
          'pomegranate': 1,
          'nat': 1,
          'another': 1,
          'time': 1,
          'follow': 1,
          'young': 1,
          'boy': 1,
          'runs': 1,
          'searching': 1,
          'hiding': 1,
          'spot': 1,
          'finally': 1,
          'squeezing': 1,
          'toilet': 1,
          'already': 1,
          'occupied': 1,
          'nlike': 1,
          'citizen': 1,
          'kane': 1,
          'fargo': 1,
          'part': 1,
          'ii': 1,
          'greed': 1,
          'greatest': 1,
          'american': 1,
          'plays': 1,
          'concepts': 1,
          'power': 1,
          'soul': 1,
          'right': 1,
          'thing': 1,
          'nstarkly': 1,
          'emotional': 1,
          'brutally': 1,
          'powerful': 1,
          'strips': 1,
          'away': 1,
          'everything': 1,
          'outset': 1,
          'us': 1,
          'ony': 1,
          'feelings': 1,
          'following': 1,
          'gained': 1,
          'suprising': 1,
          'thus': 1,
          'far': 1,
          'best': 1,
          'decade': 1,
          'nsteven': 1,
          'always': 1,
          'skilfull': 1,
          'assured': 1,
          'hand': 1,
          'churned': 1,
          'jurassic': 1,
          'parks': 1,
          'jaws': 1,
          'indiana': 1,
          'jones': 1,
          'e': 1,
          'n': 1,
          'wasnt': 1,
          '1993': 1,
          'brilliant': 1,
          'product': 1,
          'genuis': 1,
          'really': 1,
          'something': 1,
          'bring': 1,
          'tears': 1,
          'uplifts': 1,
          'nthroughout': 1,
          'control': 1,
          'masterfully': 1,
          'spreads': 1,
          'nwe': 1,
          'oskar': 1,
          'liam': 1,
          'neeson': 1,
          'grow': 1,
          'arrogant': 1,
          'self': 1,
          'important': 1,
          'hires': 1,
          'save': 1,
          'moving': 1,
          'figure': 1,
          'pride': 1,
          'accomplishment': 1,
          'requires': 1,
          'work': 1,
          'harrowing': 1,
          'go': 1,
          'expecting': 1,
          'quick': 1,
          'entertainment': 1,
          'youll': 1,
          'bitterly': 1,
          'dissapointed': 1,
          'reward': 1,
          'patient': 1,
          'viewer': 1,
          'mature': 1,
          'deft': 1,
          'shape': 1,
          'absoloute': 1,
          'eqsuisite': 1,
          'beautiful': 1,
          'rare': 1,
          'gem': 1,
          'good': 1,
          'job': 1,
          'summarizing': 1,
          'love': 1,
          'movies': 1,
          'breathless': 1,
          'uplifted': 1,
          'think': 1,
          'nafterwards': 1,
          'reflect': 1,
          'individual': 1,
          'images': 1,
          'visions': 1,
          'people': 1,
          'nlaconic': 1,
          'removed': 1,
          'strides': 1,
          'detached': 1,
          'prescence': 1,
          'watches': 1,
          'feeling': 1,
          'done': 1,
          'able': 1,
          'change': 1,
          'seems': 1,
          'natural': 1,
          'lesser': 1,
          'crude': 1,
          'cheat': 1,
          'audience': 1,
          'ninstead': 1,
          'tale': 1,
          'story': 1,
          'punishing': 1,
          'yes': 1,
          'anyone': 1,
          'allows': 1,
          'get': 1,
          'involved': 1,
          'miracle': 1,
          'genuine': 1,
          'npos': 1}),
 Counter({'nbut': 6,
          'sex': 5,
          'years': 3,
          'girls': 3,
          'sometimes': 3,
          'pie': 3,
          'four': 3,
          'want': 3,
          'know': 3,
          'rating': 3,
          'school': 2,
          'say': 2,
          'thing': 2,
          'raging': 2,
          'hormones': 2,
          'curiosity': 2,
          'scarier': 2,
          'trying': 2,
          'like': 2,
          'fight': 2,
          'invisible': 2,
          'monster': 2,
          'almost': 2,
          'nand': 2,
          'funny': 2,
          'shocking': 2,
          'brought': 2,
          'watching': 2,
          'nthe': 2,
          'jim': 2,
          'one': 2,
          'doesnt': 2,
          'time': 2,
          'nthere': 2,
          'way': 2,
          'nhe': 2,
          'chance': 2,
          'completely': 2,
          'yet': 2,
          'film': 2,
          'recall': 1,
          'trials': 1,
          'tribulations': 1,
          'high': 1,
          'nit': 1,
          'period': 1,
          'would': 1,
          'mercilessly': 1,
          'force': 1,
          'exit': 1,
          'boyhood': 1,
          'thrust': 1,
          'unwelcome': 1,
          'arms': 1,
          'adulthood': 1,
          'experiences': 1,
          'collected': 1,
          'throughout': 1,
          'tender': 1,
          'honestly': 1,
          'toughest': 1,
          'scariest': 1,
          'cope': 1,
          'crazed': 1,
          'nyes': 1,
          'seventh': 1,
          'grade': 1,
          'english': 1,
          'teacher': 1,
          'even': 1,
          'bullies': 1,
          'constantly': 1,
          'hounded': 1,
          'deal': 1,
          'personal': 1,
          'wonderment': 1,
          'nfor': 1,
          'teenagers': 1,
          'rite': 1,
          'passage': 1,
          'downright': 1,
          'nasty': 1,
          'terrifically': 1,
          'shamelessly': 1,
          'light': 1,
          'might': 1,
          'funniest': 1,
          'movie': 1,
          'summer': 1,
          'namerican': 1,
          'comedy': 1,
          'sexually': 1,
          'frustrated': 1,
          'seniors': 1,
          'enter': 1,
          'pact': 1,
          'lose': 1,
          'virginity': 1,
          'end': 1,
          'year': 1,
          'njust': 1,
          'great': 1,
          'none': 1,
          'notes': 1,
          'disneys': 1,
          'little': 1,
          'mermaid': 1,
          'ariel': 1,
          'soooo': 1,
          'hot': 1,
          'schoolmates': 1,
          'kevin': 1,
          'oz': 1,
          'finch': 1,
          'nkevin': 1,
          'steady': 1,
          'girlfriend': 1,
          'right': 1,
          'perfect': 1,
          'frightens': 1,
          'noz': 1,
          'big': 1,
          'jock': 1,
          'decides': 1,
          'score': 1,
          'listen': 1,
          'sensitive': 1,
          'joins': 1,
          'jazz': 1,
          'choir': 1,
          'discovers': 1,
          'getting': 1,
          'touch': 1,
          'feminine': 1,
          'side': 1,
          'tremendous': 1,
          'advantages': 1,
          'nfinch': 1,
          'phobic': 1,
          'hermit': 1,
          'stand': 1,
          'girl': 1,
          'nso': 1,
          'pays': 1,
          'someone': 1,
          '200': 1,
          'start': 1,
          'spreading': 1,
          'rumors': 1,
          'prowess': 1,
          'nsuddenly': 1,
          'lining': 1,
          'go': 1,
          'among': 1,
          'friends': 1,
          'curious': 1,
          'fearful': 1,
          'nwhen': 1,
          'romp': 1,
          'pretty': 1,
          'exchange': 1,
          'student': 1,
          'inexperience': 1,
          'comes': 1,
          'shining': 1,
          'much': 1,
          'learn': 1,
          'anything': 1,
          'seek': 1,
          'kind': 1,
          'knowledge': 1,
          'nthis': 1,
          'may': 1,
          'include': 1,
          'scrambled': 1,
          'porn': 1,
          'channels': 1,
          'experimenting': 1,
          'moms': 1,
          'apple': 1,
          'scene': 1,
          'raunchy': 1,
          'unbelievably': 1,
          'well': 1,
          'deserves': 1,
          'r': 1,
          'stuff': 1,
          'gross': 1,
          'manner': 1,
          'theres': 1,
          'something': 1,
          'mary': 1,
          'gloriously': 1,
          'ribald': 1,
          'nin': 1,
          'fact': 1,
          'first': 1,
          'received': 1,
          'sinful': 1,
          'nc17': 1,
          'couple': 1,
          'cuts': 1,
          'finally': 1,
          'teenaccessible': 1,
          'guess': 1,
          'seeing': 1,
          'noholdsbarred': 1,
          'coarseness': 1,
          'south': 1,
          'park': 1,
          'seems': 1,
          'tame': 1,
          'comparison': 1,
          'nteens': 1,
          'anyone': 1,
          'still': 1,
          'remember': 1,
          'acne': 1,
          'ones': 1,
          'laugh': 1,
          'hardest': 1,
          'unlike': 1,
          'many': 1,
          'teen': 1,
          'comedies': 1,
          'genuine': 1,
          'intelligence': 1,
          'work': 1,
          'nthese': 1,
          'normal': 1,
          'boys': 1,
          'natural': 1,
          'ntheir': 1,
          'plans': 1,
          'action': 1,
          'thoughtful': 1,
          'think': 1,
          'consequences': 1,
          'nthey': 1,
          'temper': 1,
          'responsibility': 1,
          'always': 1,
          'impossible': 1,
          'episodes': 1,
          'make': 1,
          'american': 1,
          'carnal': 1,
          'delight': 1,
          'watch': 1,
          'npos': 1}),
 Counter({'film': 6,
          'metal': 5,
          'jacket': 5,
          'war': 5,
          'joker': 5,
          'full': 4,
          'vietnam': 4,
          'extremely': 4,
          'nhe': 4,
          'platoon': 3,
          'way': 3,
          'man': 3,
          'private': 3,
          'life': 3,
          'nthe': 3,
          'well': 3,
          'drill': 3,
          'instructor': 3,
          'sgt': 3,
          'nhartman': 3,
          'like': 2,
          'everyone': 2,
          'nthis': 2,
          'young': 2,
          'played': 2,
          'combat': 2,
          'best': 2,
          'even': 2,
          'found': 2,
          'gets': 2,
          'start': 2,
          'recruits': 2,
          'find': 2,
          'sergeant': 2,
          'ermey': 2,
          'subjected': 2,
          'nprivate': 2,
          'pyle': 2,
          'continually': 2,
          'however': 2,
          'worst': 2,
          'punishment': 2,
          'nthat': 2,
          'npyle': 2,
          'ever': 2,
          'documenting': 2,
          'along': 2,
          'also': 2,
          'powerful': 2,
          'others': 2,
          'much': 1,
          'every': 1,
          'hardhitting': 1,
          'shocking': 1,
          'emotional': 1,
          'depiction': 1,
          'effected': 1,
          'almost': 1,
          'america': 1,
          'chronicles': 1,
          'struggles': 1,
          'matthew': 1,
          'modine': 1,
          'tour': 1,
          'nhowever': 1,
          'gives': 1,
          'audience': 1,
          'insight': 1,
          'rarely': 1,
          'seen': 1,
          'boot': 1,
          'camp': 1,
          'nthese': 1,
          'sequences': 1,
          'considered': 1,
          'part': 1,
          'three': 1,
          'act': 1,
          'though': 1,
          'later': 1,
          'portions': 1,
          'equally': 1,
          'stunning': 1,
          'nas': 1,
          'quick': 1,
          'opening': 1,
          'sequence': 1,
          'initiation': 1,
          'getting': 1,
          'heads': 1,
          'shaved': 1,
          'nfrom': 1,
          'standing': 1,
          'attention': 1,
          'receiving': 1,
          'orders': 1,
          'hard': 1,
          'punishing': 1,
          'hartman': 1,
          'former': 1,
          'r': 1,
          'lee': 1,
          'napparently': 1,
          'solution': 1,
          'perfect': 1,
          'play': 1,
          'movies': 1,
          'depicts': 1,
          'character': 1,
          'make': 1,
          'thank': 1,
          'whomever': 1,
          'never': 1,
          'horrible': 1,
          'situations': 1,
          'wrong': 1,
          'foot': 1,
          'large': 1,
          'bodied': 1,
          'leonard': 1,
          'lawrence': 1,
          'vincent': 1,
          'donofrio': 1,
          'dubbed': 1,
          'gomer': 1,
          'narrated': 1,
          'explains': 1,
          'visions': 1,
          'going': 1,
          'entire': 1,
          'corps': 1,
          'although': 1,
          'repeatedly': 1,
          'hammered': 1,
          'continues': 1,
          'seems': 1,
          'rag': 1,
          'doll': 1,
          'absorbs': 1,
          'humiliation': 1,
          'basically': 1,
          'stop': 1,
          'comes': 1,
          'new': 1,
          'plan': 1,
          'punish': 1,
          'rest': 1,
          'soontobemarines': 1,
          'pyles': 1,
          'goofups': 1,
          'assigned': 1,
          'help': 1,
          'receives': 1,
          'fellow': 1,
          'things': 1,
          'take': 1,
          'turn': 1,
          'proves': 1,
          'emotionally': 1,
          'physically': 1,
          'mentally': 1,
          'cut': 1,
          'marine': 1,
          'nafter': 1,
          'graduation': 1,
          'sent': 1,
          'height': 1,
          'action': 1,
          'order': 1,
          'document': 1,
          'service': 1,
          'member': 1,
          'infantry': 1,
          'unclear': 1,
          'actually': 1,
          'nwhen': 1,
          'sets': 1,
          'mission': 1,
          'question': 1,
          'becomes': 1,
          'clear': 1,
          'njoker': 1,
          'joins': 1,
          'hometown': 1,
          'friend': 1,
          'cowboy': 1,
          'arliss': 1,
          'howard': 1,
          'follows': 1,
          'everyday': 1,
          'actions': 1,
          'interviewing': 1,
          'filmming': 1,
          'soon': 1,
          'finds': 1,
          'position': 1,
          'must': 1,
          'fight': 1,
          'die': 1,
          'nagain': 1,
          'tradition': 1,
          'films': 1,
          'debated': 1,
          'whether': 1,
          'antiwar': 1,
          'na': 1,
          'scenes': 1,
          'toward': 1,
          'end': 1,
          'leave': 1,
          'decide': 1,
          'nfull': 1,
          'succeeds': 1,
          'past': 1,
          'different': 1,
          'ways': 1,
          'viewed': 1,
          'debate': 1,
          'depends': 1,
          'opinion': 1,
          'none': 1,
          'thing': 1,
          'sure': 1,
          'one': 1,
          'wants': 1,
          'experience': 1,
          'absolute': 1,
          'hell': 1,
          'soldiers': 1,
          'nunfortunately': 1,
          'many': 1,
          'npos': 1}),
 Counter({'nixon': 6,
          'nthe': 4,
          'one': 3,
          'nstone': 3,
          'white': 3,
          'nhe': 3,
          'long': 2,
          'american': 2,
          'presidents': 2,
          'saga': 2,
          'doesnt': 2,
          'politics': 2,
          'legal': 2,
          'maneuvers': 2,
          'house': 2,
          'nat': 2,
          'time': 2,
          'human': 2,
          'character': 2,
          'nixons': 2,
          'flaws': 2,
          'magnificent': 2,
          'captivating': 2,
          'honest': 2,
          'showing': 2,
          'oliver': 1,
          'stones': 1,
          'latest': 1,
          'feature': 1,
          'last': 1,
          'standing': 1,
          'line': 1,
          'biographies': 1,
          'nits': 1,
          'threehour': 1,
          'life': 1,
          'hated': 1,
          'misunderstood': 1,
          'leaders': 1,
          '20th': 1,
          'century': 1,
          'hold': 1,
          'back': 1,
          'anything': 1,
          'digs': 1,
          'deep': 1,
          'inside': 1,
          'director': 1,
          'holds': 1,
          'responsible': 1,
          'everything': 1,
          'done': 1,
          'creates': 1,
          'brilliant': 1,
          'tortured': 1,
          'man': 1,
          'caught': 1,
          'dirty': 1,
          'game': 1,
          'pictured': 1,
          'wild': 1,
          'animal': 1,
          'simply': 1,
          'trying': 1,
          'tame': 1,
          'nbut': 1,
          'occasional': 1,
          'switch': 1,
          'raging': 1,
          'sky': 1,
          'clouds': 1,
          'swiftly': 1,
          'fleeing': 1,
          'events': 1,
          'run': 1,
          'ahead': 1,
          'ability': 1,
          'control': 1,
          'way': 1,
          'apologize': 1,
          'blames': 1,
          'also': 1,
          'imperial': 1,
          'presidency': 1,
          'system': 1,
          'set': 1,
          'motion': 1,
          'behaves': 1,
          'mindlessness': 1,
          'n': 1,
          'modern': 1,
          'shakespeare': 1,
          'story': 1,
          'ruler': 1,
          'destroyed': 1,
          'fatal': 1,
          'ntheres': 1,
          'something': 1,
          'almost': 1,
          'majestic': 1,
          'process': 1,
          'goes': 1,
          'film': 1,
          'gloating': 1,
          'watery': 1,
          'sigh': 1,
          'great': 1,
          'ship': 1,
          'sinking': 1,
          'nsir': 1,
          'anthony': 1,
          'hopkins': 1,
          'staggering': 1,
          'plays': 1,
          'incredible': 1,
          'honesty': 1,
          'understanding': 1,
          'creating': 1,
          'emotional': 1,
          'picture': 1,
          '37th': 1,
          'president': 1,
          'njoan': 1,
          'allens': 1,
          'performance': 1,
          'certainly': 1,
          'worth': 1,
          'oscar': 1,
          'statuette': 1,
          'nshe': 1,
          'strong': 1,
          'loyal': 1,
          'mrs': 1,
          'rest': 1,
          'cast': 1,
          'equally': 1,
          'including': 1,
          'james': 1,
          'woods': 1,
          'j': 1,
          'walsh': 1,
          'paul': 1,
          'sorvino': 1,
          'ed': 1,
          'harris': 1,
          'bob': 1,
          'hoskins': 1,
          'neveryone': 1,
          'serious': 1,
          'demanding': 1,
          'job': 1,
          'disappointing': 1,
          'never': 1,
          'loses': 1,
          'focus': 1,
          'direction': 1,
          'steddy': 1,
          'determined': 1,
          'displaying': 1,
          'historical': 1,
          'facts': 1,
          'concentrating': 1,
          'element': 1,
          'times': 1,
          'black': 1,
          'flashbacks': 1,
          'youth': 1,
          'childhood': 1,
          'flashy': 1,
          'editing': 1,
          'brian': 1,
          'berdan': 1,
          'frank': 1,
          'corwin': 1,
          'robert': 1,
          'richardsons': 1,
          'rich': 1,
          'cinematography': 1,
          'john': 1,
          'williams': 1,
          'musical': 1,
          'score': 1,
          'create': 1,
          'hectic': 1,
          'bizarre': 1,
          'atmosphere': 1,
          'films': 1,
          'fault': 1,
          'bit': 1,
          'tiering': 1,
          'overloaded': 1,
          'much': 1,
          'political': 1,
          'material': 1,
          'nstill': 1,
          'solid': 1,
          'piece': 1,
          'movie': 1,
          'making': 1,
          'npos': 1}),
 Counter({'hollow': 8,
          'sleepy': 7,
          'horseman': 5,
          'burton': 5,
          'nthe': 5,
          'burtons': 4,
          'film': 4,
          'crane': 4,
          'headless': 3,
          'mystery': 3,
          'nas': 3,
          'murders': 3,
          'ichabod': 3,
          'tim': 2,
          'residents': 2,
          'town': 2,
          'classic': 2,
          'tale': 2,
          'offers': 2,
          'horror': 2,
          'walker': 2,
          'decapitated': 2,
          'constable': 2,
          'depp': 2,
          'von': 2,
          'michael': 2,
          'taken': 2,
          'separate': 2,
          'wonderful': 2,
          'perfectly': 2,
          'particularly': 2,
          'enjoy': 2,
          'enjoyable': 2,
          'still': 2,
          'effective': 2,
          'elusive': 2,
          'demon': 2,
          'many': 2,
          'mysterious': 1,
          'decapitates': 1,
          'small': 1,
          'name': 1,
          'nhe': 1,
          'rides': 1,
          'beautiful': 1,
          'black': 1,
          'steed': 1,
          'carries': 1,
          'imposing': 1,
          'sword': 1,
          'cauterizes': 1,
          'wound': 1,
          'victims': 1,
          'immediate': 1,
          'swipe': 1,
          'nburtons': 1,
          'update': 1,
          'washington': 1,
          'irvings': 1,
          'legend': 1,
          'us': 1,
          'screenplay': 1,
          'merely': 1,
          'settled': 1,
          'aspect': 1,
          'nwriter': 1,
          'andrew': 1,
          'kevin': 1,
          'seven': 1,
          'throws': 1,
          'perhaps': 1,
          'healthy': 1,
          'dosage': 1,
          'sherlock': 1,
          'holmes': 1,
          'visual': 1,
          'treatment': 1,
          'absolutely': 1,
          'entrancing': 1,
          'foggy': 1,
          'locales': 1,
          'detailed': 1,
          'costumes': 1,
          'gorgeous': 1,
          'stirring': 1,
          'examine': 1,
          'opens': 1,
          'greeted': 1,
          'juicy': 1,
          'cameo': 1,
          'martin': 1,
          'landau': 1,
          'oscar': 1,
          'ed': 1,
          'wood': 1,
          'nlandau': 1,
          'plays': 1,
          'prominent': 1,
          'citizen': 1,
          'fateful': 1,
          'carriage': 1,
          'ride': 1,
          'forest': 1,
          'unseen': 1,
          'horseback': 1,
          'rider': 1,
          'nafter': 1,
          'two': 1,
          'haunt': 1,
          'quaint': 1,
          'little': 1,
          'johnny': 1,
          'sent': 1,
          'investigate': 1,
          'nlandlord': 1,
          'baltus': 1,
          'tassel': 1,
          'gambon': 1,
          'explains': 1,
          'heads': 1,
          'severed': 1,
          'carcass': 1,
          'mysteriously': 1,
          'case': 1,
          'believe': 1,
          'murderer': 1,
          'dead': 1,
          'hessian': 1,
          'trooper': 1,
          'played': 1,
          'briefly': 1,
          'wonderfully': 1,
          'jarring': 1,
          'christopher': 1,
          'walken': 1,
          'risen': 1,
          'grave': 1,
          'western': 1,
          'woods': 1,
          'ncrane': 1,
          'man': 1,
          'great': 1,
          'superstition': 1,
          'determined': 1,
          'root': 1,
          'human': 1,
          'culprit': 1,
          'assortment': 1,
          'gizmos': 1,
          'gadgets': 1,
          'things': 1,
          'surprised': 1,
          'find': 1,
          'movie': 1,
          'nfirst': 1,
          'foremost': 1,
          'fun': 1,
          'virtually': 1,
          'movies': 1,
          'treated': 1,
          'score': 1,
          'composer': 1,
          'danny': 1,
          'elfman': 1,
          'poured': 1,
          'excitement': 1,
          'imagination': 1,
          'atmospheric': 1,
          'soundtrack': 1,
          'accentuates': 1,
          'gothic': 1,
          'mood': 1,
          'fx': 1,
          'stylish': 1,
          'impressive': 1,
          'blended': 1,
          'battle': 1,
          'sequences': 1,
          'involving': 1,
          'actual': 1,
          'actors': 1,
          'nbut': 1,
          'much': 1,
          'nalthough': 1,
          'numerous': 1,
          'beheadings': 1,
          'plentiful': 1,
          'gore': 1,
          'spurted': 1,
          'left': 1,
          'right': 1,
          'nit': 1,
          'light': 1,
          'comic': 1,
          'touch': 1,
          'applied': 1,
          'sweetness': 1,
          'candy': 1,
          'apple': 1,
          'usually': 1,
          'channeled': 1,
          'depps': 1,
          'performance': 1,
          'lovable': 1,
          'geek': 1,
          'longer': 1,
          'mildmannered': 1,
          'school': 1,
          'teacher': 1,
          'attains': 1,
          'cowardly': 1,
          'qualities': 1,
          'nthis': 1,
          'certainly': 1,
          'alteration': 1,
          'thats': 1,
          'made': 1,
          'progresses': 1,
          'becomes': 1,
          'apparent': 1,
          'concerned': 1,
          'momentum': 1,
          'slowed': 1,
          'considerably': 1,
          'begins': 1,
          'piecing': 1,
          'together': 1,
          'audience': 1,
          'issue': 1,
          'wish': 1,
          'solved': 1,
          'nits': 1,
          'ulterior': 1,
          'motive': 1,
          'nstill': 1,
          'captivated': 1,
          'breathtaking': 1,
          'technical': 1,
          'detail': 1,
          'keen': 1,
          'eye': 1,
          'capture': 1,
          'attention': 1,
          'costuming': 1,
          'exceptional': 1,
          'dialogue': 1,
          'crisp': 1,
          'throughout': 1,
          'recognizable': 1,
          'script': 1,
          'refined': 1,
          'awardwinning': 1,
          'playwright': 1,
          'tom': 1,
          'stoppard': 1,
          'supporting': 1,
          'cast': 1,
          'exhibits': 1,
          'color': 1,
          'playfulness': 1,
          'na': 1,
          'blonde': 1,
          'christina': 1,
          'ricci': 1,
          'fine': 1,
          'form': 1,
          'tassels': 1,
          'daughter': 1,
          'katrina': 1,
          'unlikely': 1,
          'romance': 1,
          'surprisingly': 1,
          'consistent': 1,
          'nwalken': 1,
          'gough': 1,
          'appeared': 1,
          'batman': 1,
          'films': 1,
          'miranda': 1,
          'richardson': 1,
          'tackling': 1,
          'roles': 1,
          'ni': 1,
          'suppose': 1,
          'strengths': 1,
          'behind': 1,
          'lie': 1,
          'within': 1,
          'central': 1,
          'trio': 1,
          'director': 1,
          'hunts': 1,
          'ruthless': 1,
          'accuracy': 1,
          'nall': 1,
          'seriously': 1,
          'course': 1,
          'nsleepy': 1,
          'lavish': 1,
          'frightening': 1,
          'altogether': 1,
          'amusing': 1,
          'reworking': 1,
          'people': 1,
          'cherished': 1,
          'children': 1,
          'nif': 1,
          'youve': 1,
          'got': 1,
          'decent': 1,
          'head': 1,
          'shoulders': 1,
          'youll': 1,
          'good': 1,
          'sense': 1,
          'gallop': 1,
          'theater': 1,
          'one': 1,
          'last': 1,
          'time': 1,
          'npos': 1}),
 Counter({'film': 5,
          'kids': 5,
          'nwill': 4,
          'n': 4,
          'good': 3,
          'really': 3,
          'movie': 3,
          'predictable': 3,
          'one': 3,
          'bad': 2,
          'single': 2,
          'working': 2,
          'parents': 2,
          'cute': 2,
          'thrown': 2,
          'nbut': 2,
          'nit': 2,
          'lot': 2,
          'nin': 2,
          'though': 2,
          'think': 2,
          'together': 2,
          'get': 2,
          'another': 2,
          'hate': 2,
          'much': 2,
          'nthe': 2,
          'screwball': 2,
          'certain': 2,
          'especially': 2,
          'pretty': 2,
          'ok': 1,
          'admit': 1,
          'attitude': 1,
          'start': 1,
          'na': 1,
          'romantic': 1,
          'comedy': 1,
          'trials': 1,
          'tribulations': 1,
          'nwith': 1,
          'couple': 1,
          'incredibly': 1,
          'measure': 1,
          'nyuck': 1,
          'least': 1,
          'addition': 1,
          'typical': 1,
          'recent': 1,
          'movies': 1,
          'glorified': 1,
          'madefortv': 1,
          'longer': 1,
          'bigger': 1,
          'stars': 1,
          'pay': 1,
          'see': 1,
          'win': 1,
          'even': 1,
          'painfully': 1,
          'njust': 1,
          'two': 1,
          'due': 1,
          'missed': 1,
          'field': 1,
          'trip': 1,
          'nthrough': 1,
          'day': 1,
          'near': 1,
          'disasters': 1,
          'cont': 1,
          'inually': 1,
          'meet': 1,
          'anothers': 1,
          'way': 1,
          'cause': 1,
          'trouble': 1,
          'generally': 1,
          'insult': 1,
          'every': 1,
          'opportunity': 1,
          'fact': 1,
          'know': 1,
          'soon': 1,
          'love': 1,
          'people': 1,
          'lovers': 1,
          'married': 1,
          'couples': 1,
          'nso': 1,
          'comedies': 1,
          'classical': 1,
          'hollywood': 1,
          'cinema': 1,
          'genre': 1,
          'obviously': 1,
          'hoffmans': 1,
          'model': 1,
          'fired': 1,
          'yuppie': 1,
          'jobs': 1,
          'make': 1,
          'big': 1,
          'soccer': 1,
          'game': 1,
          'important': 1,
          'pfeiffer': 1,
          'realize': 1,
          'jerk': 1,
          'exhusband': 1,
          'drummer': 1,
          'bruce': 1,
          'springsteen': 1,
          'arent': 1,
          'finally': 1,
          'kiss': 1,
          'nwell': 1,
          'expect': 1,
          'amount': 1,
          'satisfaction': 1,
          'expectations': 1,
          'fulfilled': 1,
          'done': 1,
          'humour': 1,
          'along': 1,
          'lack': 1,
          'sticky': 1,
          'sentimentality': 1,
          'npfeiffer': 1,
          'clooney': 1,
          'chemistry': 1,
          'surprisingly': 1,
          'charming': 1,
          'neither': 1,
          'shoved': 1,
          'background': 1,
          'allowed': 1,
          'steal': 1,
          'show': 1,
          'none': 1,
          'word': 1,
          'caution': 1,
          'nthis': 1,
          'billed': 1,
          'places': 1,
          'family': 1,
          'ndont': 1,
          'let': 1,
          'stop': 1,
          'nhowever': 1,
          'boys': 1,
          'would': 1,
          'bored': 1,
          'move': 1,
          'nafter': 1,
          'nobody': 1,
          'gets': 1,
          'killed': 1,
          'explosions': 1,
          'nall': 1,
          'nonoffensive': 1,
          'date': 1,
          'flying': 1,
          'inkpot': 1,
          'rating': 1,
          'system': 1,
          'wait': 1,
          'tv2': 1,
          'broadcast': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'better': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'npos': 1}),
 Counter({'bowfinger': 8,
          'nthe': 6,
          'ramsey': 6,
          'murphy': 5,
          'movie': 4,
          'martin': 4,
          'film': 4,
          'star': 4,
          'scenes': 4,
          'one': 3,
          'hollywood': 3,
          'comedy': 3,
          'behind': 3,
          'producer': 3,
          'kit': 3,
          'jiff': 3,
          'making': 2,
          'bad': 2,
          'screenplay': 2,
          'entire': 2,
          'premise': 2,
          'always': 2,
          'never': 2,
          'new': 2,
          'script': 2,
          'entitled': 2,
          'chubby': 2,
          'rain': 2,
          'caught': 2,
          'bowfingers': 2,
          'nafter': 2,
          'named': 2,
          'made': 2,
          'nbut': 2,
          'eddie': 2,
          'still': 2,
          'cast': 2,
          'actors': 2,
          'actually': 2,
          'even': 2,
          'nthese': 2,
          'include': 2,
          'attempting': 2,
          'supporting': 2,
          'actress': 2,
          'heather': 2,
          'graham': 2,
          'high': 2,
          'real': 2,
          'nthis': 2,
          'every': 2,
          'well': 2,
          'good': 1,
          'written': 1,
          'costar': 1,
          'steve': 1,
          'skewers': 1,
          'everything': 1,
          'cheesy': 1,
          'sciencefiction': 1,
          'movies': 1,
          'chopsocky': 1,
          'fight': 1,
          'sequences': 1,
          'crafty': 1,
          'accomplished': 1,
          'manner': 1,
          'nanyone': 1,
          'knows': 1,
          'association': 1,
          'moviemaking': 1,
          'thoroughly': 1,
          'enjoy': 1,
          'clever': 1,
          'duration': 1,
          'central': 1,
          'inspired': 1,
          'promising': 1,
          'nbobby': 1,
          'cheapskate': 1,
          'smalltime': 1,
          'dreamed': 1,
          'successful': 1,
          'motion': 1,
          'picture': 1,
          'attained': 1,
          'proper': 1,
          'tools': 1,
          'na': 1,
          'alien': 1,
          'invasion': 1,
          'story': 1,
          'eye': 1,
          'confronting': 1,
          'bigname': 1,
          'jerry': 1,
          'renfro': 1,
          'robert': 1,
          'downey': 1,
          'jr': 1,
          'restaurant': 1,
          'agreement': 1,
          'finance': 1,
          'first': 1,
          'must': 1,
          'get': 1,
          'renowned': 1,
          'action': 1,
          'sign': 1,
          'project': 1,
          'nkit': 1,
          'turns': 1,
          'offer': 1,
          'immediately': 1,
          'intent': 1,
          'shoot': 1,
          'emptying': 1,
          'life': 1,
          'savings': 1,
          'hapless': 1,
          'tells': 1,
          'remaining': 1,
          'crew': 1,
          'involved': 1,
          'prepares': 1,
          'without': 1,
          'stars': 1,
          'knowledge': 1,
          'confront': 1,
          'street': 1,
          'saying': 1,
          'lines': 1,
          'hidden': 1,
          'cameras': 1,
          'peek': 1,
          'bushes': 1,
          'capture': 1,
          'footage': 1,
          'unknowing': 1,
          'terrified': 1,
          'aliens': 1,
          'abducted': 1,
          'brought': 1,
          'believe': 1,
          'pod': 1,
          'people': 1,
          'nwhen': 1,
          'conditions': 1,
          'become': 1,
          'treacherous': 1,
          'forced': 1,
          'hire': 1,
          'lookalike': 1,
          'also': 1,
          'sweetnatured': 1,
          'dork': 1,
          'runs': 1,
          'coffee': 1,
          'inbetween': 1,
          'shooting': 1,
          'vital': 1,
          'suicide': 1,
          'run': 1,
          'across': 1,
          '8lane': 1,
          'freeway': 1,
          'hot': 1,
          'involving': 1,
          'daisy': 1,
          'removing': 1,
          'blouse': 1,
          'nbowfinger': 1,
          'takes': 1,
          'sweet': 1,
          'time': 1,
          'getting': 1,
          'started': 1,
          'plot': 1,
          'switches': 1,
          'gear': 1,
          'great': 1,
          'things': 1,
          'happen': 1,
          'ncertain': 1,
          'precisely': 1,
          'executed': 1,
          'perfectly': 1,
          'framing': 1,
          'moments': 1,
          'absolutely': 1,
          'falldown': 1,
          'funny': 1,
          'nno': 1,
          'hilarious': 1,
          'nstandouts': 1,
          'chase': 1,
          'parking': 1,
          'garage': 1,
          'whos': 1,
          'supposed': 1,
          'followed': 1,
          'keeps': 1,
          'checking': 1,
          'investigate': 1,
          'strange': 1,
          'tapping': 1,
          'noise': 1,
          'dog': 1,
          'heels': 1,
          'nand': 1,
          'try': 1,
          'laugh': 1,
          'climactic': 1,
          'kungfu': 1,
          'sequence': 1,
          'featuring': 1,
          'excerpt': 1,
          'another': 1,
          'classic': 1,
          'fake': 1,
          'purse': 1,
          'ninjas': 1,
          'nwhile': 1,
          '97minutes': 1,
          'isnt': 1,
          'target': 1,
          'individual': 1,
          'may': 1,
          'rolling': 1,
          'aisles': 1,
          'nmasterful': 1,
          'director': 1,
          'frank': 1,
          'oz': 1,
          'dirty': 1,
          'rotten': 1,
          'scoundrels': 1,
          'ensures': 1,
          'quality': 1,
          'final': 1,
          'product': 1,
          'aided': 1,
          'immensely': 1,
          'martins': 1,
          'sharpedged': 1,
          'nhowever': 1,
          'onscreen': 1,
          'finest': 1,
          'work': 1,
          'since': 1,
          'breakthrough': 1,
          'market': 1,
          'early': 1,
          '80s': 1,
          'nmurphy': 1,
          'excels': 1,
          'corner': 1,
          'succeeding': 1,
          'presenting': 1,
          'believable': 1,
          'paranoia': 1,
          'eyes': 1,
          'creating': 1,
          'likable': 1,
          'buffoon': 1,
          'three': 1,
          'talented': 1,
          'comic': 1,
          'minds': 1,
          'squeezed': 1,
          'morsel': 1,
          'potential': 1,
          'reward': 1,
          'virtually': 1,
          'guaranteed': 1,
          'helping': 1,
          'hearty': 1,
          'laughs': 1,
          'nsteve': 1,
          'generates': 1,
          'power': 1,
          'fuels': 1,
          'summertime': 1,
          'unlike': 1,
          'something': 1,
          'american': 1,
          'pie': 1,
          'south': 1,
          'park': 1,
          'doesnt': 1,
          'break': 1,
          'rules': 1,
          'uproarious': 1,
          'perhaps': 1,
          'sidesplitting': 1,
          'anything': 1,
          'weve': 1,
          'seen': 1,
          'season': 1,
          'including': 1,
          'christine': 1,
          'baranski': 1,
          'workloving': 1,
          'jamie': 1,
          'kennedy': 1,
          'cameraman': 1,
          'perform': 1,
          'within': 1,
          'limits': 1,
          'presence': 1,
          'demands': 1,
          'attention': 1,
          'placed': 1,
          'next': 1,
          'beautiful': 1,
          'young': 1,
          'plans': 1,
          'sleep': 1,
          'way': 1,
          'top': 1,
          'ngraham': 1,
          'stardom': 1,
          'appearing': 1,
          'powers': 1,
          'girl': 1,
          'ap2': 1,
          'displays': 1,
          'cheerful': 1,
          'naive': 1,
          'persona': 1,
          'nicely': 1,
          'corresponds': 1,
          'wackiness': 1,
          'ni': 1,
          'wouldnt': 1,
          'dead': 1,
          'buying': 1,
          'ticket': 1,
          'watching': 1,
          'came': 1,
          'certainly': 1,
          'entertaining': 1,
          'enough': 1,
          'npos': 1}),
 Counter({'film': 9,
          'two': 9,
          'man': 6,
          'men': 5,
          'vincent': 5,
          'jules': 5,
          'nthe': 5,
          'dialogue': 4,
          'marsellus': 4,
          'fiction': 3,
          'quentin': 3,
          'one': 3,
          'films': 3,
          'perfect': 3,
          'tarantino': 3,
          'characters': 3,
          'butch': 3,
          'pumpkin': 3,
          'honey': 3,
          'bunny': 3,
          'mia': 3,
          'nafter': 3,
          'rather': 3,
          'pulp': 2,
          'tarantinos': 2,
          'superb': 2,
          'reservoir': 2,
          'dogs': 2,
          'alltime': 2,
          'greatly': 2,
          'ahead': 2,
          'movie': 2,
          'violence': 2,
          'major': 2,
          'terrific': 2,
          'acting': 2,
          'actor': 2,
          'hit': 2,
          'vega': 2,
          'nthese': 2,
          'boxer': 2,
          'coolidge': 2,
          'big': 2,
          'wallace': 2,
          'young': 2,
          'wife': 2,
          'lance': 2,
          'end': 2,
          'stories': 2,
          'seem': 2,
          'coffee': 2,
          'shop': 2,
          'things': 2,
          'foot': 2,
          'apartment': 2,
          'recover': 2,
          'briefcase': 2,
          'especially': 2,
          'nthis': 2,
          'completely': 2,
          'take': 2,
          'new': 2,
          'nvincent': 2,
          'date': 2,
          'proves': 2,
          'anxiously': 1,
          'awaited': 1,
          'followup': 1,
          'absolutely': 1,
          'without': 1,
          'doubt': 1,
          'progressing': 1,
          'talked': 1,
          'loved': 1,
          'hated': 1,
          'nin': 1,
          'fairness': 1,
          'noted': 1,
          'love': 1,
          'outnumber': 1,
          'hate': 1,
          'nas': 1,
          'wasnt': 1,
          'went': 1,
          'improved': 1,
          'perfection': 1,
          'creating': 1,
          'fastpaced': 1,
          'hard': 1,
          'talking': 1,
          'roller': 1,
          'coaster': 1,
          'ride': 1,
          'combines': 1,
          'extraordinary': 1,
          'seemingly': 1,
          'way': 1,
          'nevery': 1,
          'character': 1,
          'represented': 1,
          'performance': 1,
          'nto': 1,
          'begin': 1,
          'john': 1,
          'travolta': 1,
          'winnfield': 1,
          'samuel': 1,
          'l': 1,
          'jackson': 1,
          'work': 1,
          'together': 1,
          'perfectly': 1,
          'performances': 1,
          'nearly': 1,
          'ntravolta': 1,
          'fact': 1,
          'still': 1,
          'trying': 1,
          'get': 1,
          'role': 1,
          'nif': 1,
          'enough': 1,
          'theres': 1,
          'struggling': 1,
          'bruce': 1,
          'willis': 1,
          'smalltime': 1,
          'criminals': 1,
          'tim': 1,
          'roth': 1,
          'amanda': 1,
          'plummer': 1,
          'charge': 1,
          'ving': 1,
          'rhames': 1,
          'attractive': 1,
          'uma': 1,
          'thurman': 1,
          'problem': 1,
          'solver': 1,
          'wolf': 1,
          'harvey': 1,
          'keitel': 1,
          'nsmaller': 1,
          'roles': 1,
          'equally': 1,
          'handed': 1,
          'jimmie': 1,
          'married': 1,
          'gets': 1,
          'caught': 1,
          'serious': 1,
          'gangster': 1,
          'business': 1,
          'eric': 1,
          'stoltz': 1,
          'farout': 1,
          'drug': 1,
          'dealer': 1,
          'well': 1,
          'maynard': 1,
          'duane': 1,
          'whitaker': 1,
          'zed': 1,
          'peter': 1,
          'greene': 1,
          'hillbillies': 1,
          'behind': 1,
          'pun': 1,
          'intended': 1,
          'seen': 1,
          'disturbing': 1,
          'scene': 1,
          'towards': 1,
          'interweaves': 1,
          'three': 1,
          'first': 1,
          'nothing': 1,
          'alike': 1,
          'later': 1,
          'prove': 1,
          'critical': 1,
          'begins': 1,
          'small': 1,
          'discussing': 1,
          'recent': 1,
          'robberies': 1,
          'holdups': 1,
          'quickly': 1,
          'decide': 1,
          'hold': 1,
          'unknowing': 1,
          'lies': 1,
          'focuses': 1,
          'time': 1,
          'lifestyle': 1,
          'nutilizing': 1,
          'unforgettable': 1,
          'discuss': 1,
          'hamburgers': 1,
          'massages': 1,
          'bust': 1,
          'terrorize': 1,
          'occupants': 1,
          'sent': 1,
          'mysterious': 1,
          'boss': 1,
          'basically': 1,
          'toying': 1,
          'unfortunate': 1,
          'brett': 1,
          'frank': 1,
          'whaley': 1,
          'complete': 1,
          'mission': 1,
          'jumps': 1,
          'bathroom': 1,
          '357': 1,
          'n': 1,
          'hand': 1,
          'cannon': 1,
          'shooting': 1,
          'gangsters': 1,
          'nhe': 1,
          'somehow': 1,
          'misses': 1,
          'leading': 1,
          'cite': 1,
          'divine': 1,
          'intervention': 1,
          'also': 1,
          'basis': 1,
          'nowfamous': 1,
          'shifts': 1,
          'focus': 1,
          'boxing': 1,
          'escapades': 1,
          'nbutch': 1,
          'ordered': 1,
          'fall': 1,
          'latest': 1,
          'fight': 1,
          'vows': 1,
          'find': 1,
          'wherever': 1,
          'make': 1,
          'sure': 1,
          'able': 1,
          'enjoy': 1,
          'fortune': 1,
          'meanwhile': 1,
          'honor': 1,
          'taking': 1,
          'town': 1,
          'obviously': 1,
          'nervous': 1,
          'hearing': 1,
          'tale': 1,
          'thrown': 1,
          'window': 1,
          'supposedly': 1,
          'giving': 1,
          'massage': 1,
          'seems': 1,
          'smoothly': 1,
          'turn': 1,
          'worst': 1,
          'hands': 1,
          'vincents': 1,
          'highpriced': 1,
          'heroin': 1,
          'dubbed': 1,
          'monster': 1,
          'neach': 1,
          'story': 1,
          'continually': 1,
          'progresses': 1,
          'amazing': 1,
          'events': 1,
          'occur': 1,
          'neventually': 1,
          'meet': 1,
          'holding': 1,
          'restaurant': 1,
          'happens': 1,
          'contain': 1,
          'npulp': 1,
          'definitely': 1,
          'best': 1,
          'decade': 1,
          'possibly': 1,
          'nalong': 1,
          'action': 1,
          'writing': 1,
          'directing': 1,
          'latch': 1,
          'onto': 1,
          'want': 1,
          'release': 1,
          'sunk': 1,
          'claws': 1,
          'nand': 1,
          'fans': 1,
          'proved': 1,
          'easy': 1,
          'task': 1,
          'although': 1,
          'times': 1,
          'graphic': 1,
          'images': 1,
          'language': 1,
          'may': 1,
          'bit': 1,
          'overpowering': 1,
          'nsurely': 1,
          'fame': 1,
          'escalated': 1,
          'fade': 1,
          'existence': 1,
          'soon': 1,
          'npos': 1}),
 Counter({'movie': 22,
          'xfiles': 8,
          'movies': 8,
          'summer': 8,
          'nthe': 7,
          'nyou': 7,
          'time': 7,
          'mulder': 7,
          'series': 5,
          'several': 5,
          'know': 5,
          'go': 5,
          'duchovny': 4,
          'never': 4,
          'effects': 4,
          'good': 4,
          'monster': 4,
          'half': 4,
          'one': 4,
          'think': 3,
          'first': 3,
          'thing': 3,
          'looks': 3,
          'many': 3,
          'great': 3,
          'nin': 3,
          'ni': 3,
          'need': 3,
          'maybe': 3,
          'get': 3,
          'coming': 3,
          'scary': 3,
          'take': 3,
          'last': 3,
          'would': 3,
          'like': 3,
          'right': 3,
          'scenes': 3,
          'scene': 3,
          'nif': 3,
          'godzilla': 3,
          'twice': 3,
          'fan': 2,
          'let': 2,
          'experience': 2,
          'fully': 2,
          'enjoy': 2,
          'fans': 2,
          'nonfans': 2,
          'behind': 2,
          'nbut': 2,
          'later': 2,
          'provide': 2,
          'going': 2,
          'feel': 2,
          'watch': 2,
          'nothing': 2,
          'kind': 2,
          'episodes': 2,
          'watched': 2,
          'far': 2,
          'chance': 2,
          'hill': 2,
          'sound': 2,
          'unlike': 2,
          'nthis': 2,
          'best': 2,
          'way': 2,
          'always': 2,
          'critter': 2,
          'jump': 2,
          'heroes': 2,
          'fact': 2,
          'might': 2,
          'much': 2,
          'saw': 2,
          'creature': 2,
          'nso': 2,
          'even': 2,
          'see': 2,
          'nno': 2,
          'gets': 2,
          'find': 2,
          'dialogue': 2,
          'every': 2,
          'happens': 2,
          'purpose': 2,
          'something': 2,
          'enough': 2,
          'important': 2,
          'people': 2,
          'truman': 2,
          'show': 2,
          'nits': 2,
          'four': 2,
          'five': 2,
          'stars': 2,
          'give': 2,
          'truck': 2,
          'miles': 2,
          'driving': 2,
          'reviewer': 1,
          'mention': 1,
          'wether': 1,
          'nfirst': 1,
          'assure': 1,
          'prior': 1,
          'required': 1,
          'producers': 1,
          'stupid': 1,
          'making': 1,
          'profitable': 1,
          'reach': 1,
          'larger': 1,
          'audience': 1,
          'ntherefore': 1,
          'quite': 1,
          'userfriendly': 1,
          'naltough': 1,
          'fail': 1,
          'understand': 1,
          'certain': 1,
          'emotions': 1,
          'characters': 1,
          'exchange': 1,
          'fear': 1,
          'another': 1,
          'man': 1,
          'adequate': 1,
          'background': 1,
          'info': 1,
          'walked': 1,
          'third': 1,
          'act': 1,
          'opera': 1,
          'case': 1,
          'answer': 1,
          'else': 1,
          'prefer': 1,
          'millennium': 1,
          'nhowever': 1,
          'since': 1,
          'fox': 1,
          'network': 1,
          'air': 1,
          'key': 1,
          'weeks': 1,
          'opening': 1,
          'weekend': 1,
          'took': 1,
          'opportunity': 1,
          'test': 1,
          'taped': 1,
          'seing': 1,
          'glad': 1,
          'report': 1,
          'learned': 1,
          'new': 1,
          'neverything': 1,
          'explained': 1,
          'viewer': 1,
          'others': 1,
          'bit': 1,
          'make': 1,
          'point': 1,
          'everybody': 1,
          'nwarning': 1,
          'major': 1,
          'spoilers': 1,
          'follow': 1,
          'nplease': 1,
          'read': 1,
          'must': 1,
          'able': 1,
          'exactly': 1,
          'weird': 1,
          'hummm': 1,
          'warned': 1,
          'nexciting': 1,
          'special': 1,
          'really': 1,
          'necessary': 1,
          'performances': 1,
          'guy': 1,
          'thinks': 1,
          'david': 1,
          'human': 1,
          'equivalent': 1,
          'wooden': 1,
          'plank': 1,
          'nfrom': 1,
          'start': 1,
          'finish': 1,
          'nwhen': 1,
          'compare': 1,
          'summers': 1,
          'describe': 1,
          'excitement': 1,
          'score': 1,
          'faceoff': 1,
          'deadly': 1,
          'use': 1,
          'event': 1,
          'horizon': 1,
          'flick': 1,
          'b': 1,
          'makes': 1,
          'apperance': 1,
          'totally': 1,
          'blue': 1,
          'well': 1,
          'bring': 1,
          'ear': 1,
          'plugs': 1,
          'louuuudd': 1,
          'scared': 1,
          'aliens': 1,
          'six': 1,
          'year': 1,
          'old': 1,
          'kid': 1,
          'affraid': 1,
          'put': 1,
          'feet': 1,
          'floor': 1,
          'chair': 1,
          'keep': 1,
          'trying': 1,
          'cover': 1,
          'throat': 1,
          'shirt': 1,
          'yeah': 1,
          'nand': 1,
          'guess': 1,
          'imagination': 1,
          'works': 1,
          'overtime': 1,
          'sure': 1,
          'beats': 1,
          'flawed': 1,
          'computer': 1,
          'generated': 1,
          'babyzilla': 1,
          'could': 1,
          'walk': 1,
          'scarier': 1,
          'grandma': 1,
          'undies': 1,
          'type': 1,
          'ndo': 1,
          'three': 1,
          'minutes': 1,
          'total': 1,
          'definately': 1,
          'episode': 1,
          'nscully': 1,
          'side': 1,
          'course': 1,
          'gillian': 1,
          'anderson': 1,
          'screen': 1,
          'nshe': 1,
          'couple': 1,
          'kidnapped': 1,
          'hour': 1,
          'mulders': 1,
          'spotlight': 1,
          'nby': 1,
          'heard': 1,
          'showers': 1,
          'independence': 1,
          'day': 1,
          'spoil': 1,
          'lets': 1,
          'say': 1,
          'due': 1,
          'recent': 1,
          'events': 1,
          'showering': 1,
          'instead': 1,
          'nto': 1,
          'wondering': 1,
          'discovers': 1,
          'truth': 1,
          'indeed': 1,
          'ncares': 1,
          'anyway': 1,
          'complaining': 1,
          'interesting': 1,
          'director': 1,
          'marvelous': 1,
          'camera': 1,
          'almost': 1,
          'looking': 1,
          'shoulder': 1,
          'open': 1,
          'door': 1,
          'climb': 1,
          'script': 1,
          'spotless': 1,
          'confused': 1,
          'worry': 1,
          'become': 1,
          'clear': 1,
          'stress': 1,
          'pay': 1,
          'attention': 1,
          'nunlike': 1,
          'nmiss': 1,
          'vital': 1,
          'piece': 1,
          'information': 1,
          'talk': 1,
          'home': 1,
          'tell': 1,
          'friends': 1,
          'made': 1,
          'sense': 1,
          'nalso': 1,
          'bathroom': 1,
          'dont': 1,
          'person': 1,
          'missed': 1,
          'conversation': 1,
          'nthere': 1,
          'breather': 1,
          'anybody': 1,
          'n': 1,
          'fill': 1,
          'suspense': 1,
          'action': 1,
          'useless': 1,
          'subplots': 1,
          'crucial': 1,
          'serves': 1,
          'nwho': 1,
          'needs': 1,
          'blond': 1,
          'chiouaoua': 1,
          'big': 1,
          'emotional': 1,
          'attacks': 1,
          'seen': 1,
          'ranks': 1,
          'higher': 1,
          'list': 1,
          'id': 1,
          'recommend': 1,
          'wins': 1,
          'nose': 1,
          'call': 1,
          'nwhat': 1,
          'ask': 1,
          'excited': 1,
          'ncool': 1,
          'npulse': 1,
          'pounding': 1,
          'nhell': 1,
          'yes': 1,
          'nstrangely': 1,
          'hate': 1,
          'nit': 1,
          'answers': 1,
          'shows': 1,
          'questions': 1,
          'status': 1,
          'quo': 1,
          'remains': 1,
          'nearly': 1,
          'scully': 1,
          'together': 1,
          'nrating': 1,
          'yet': 1,
          'seat': 1,
          'thrills': 1,
          'whoah': 1,
          'nmoments': 1,
          'holy': 1,
          'shit': 1,
          'hell': 1,
          'come': 1,
          'heck': 1,
          'ending': 1,
          'may': 1,
          'wonder': 1,
          'lost': 1,
          'star': 1,
          'nwell': 1,
          'swore': 1,
          'full': 1,
          'ice': 1,
          'tracks': 1,
          'leaves': 1,
          'snow': 1,
          'stop': 1,
          'pretty': 1,
          'obvious': 1,
          'films': 1,
          'makers': 1,
          'drove': 1,
          'appearance': 1,
          'long': 1,
          'end': 1,
          'dropped': 1,
          'sky': 1,
          'started': 1,
          'npos': 1}),
 Counter({'rushmore': 4,
          'one': 4,
          'max': 4,
          'nthe': 4,
          'cross': 4,
          'eventually': 3,
          'herman': 3,
          'miss': 3,
          'got': 2,
          'feeling': 2,
          'scene': 2,
          'happy': 2,
          'good': 2,
          'well': 2,
          'academy': 2,
          'schools': 2,
          'aquarium': 2,
          'bill': 2,
          'love': 2,
          'fun': 2,
          'head': 2,
          'wasnt': 2,
          'film': 2,
          'know': 1,
          'already': 1,
          'opened': 1,
          'december': 1,
          'finally': 1,
          'around': 1,
          'seeing': 1,
          'last': 1,
          'weekend': 1,
          'rare': 1,
          'oppritunites': 1,
          'leave': 1,
          'theatre': 1,
          'proud': 1,
          'paying': 1,
          'expensive': 1,
          'ticket': 1,
          'price': 1,
          'nas': 1,
          'final': 1,
          'closed': 1,
          'slowmo': 1,
          'fashion': 1,
          'felt': 1,
          'priveleged': 1,
          'enough': 1,
          'watch': 1,
          'display': 1,
          'filmmaking': 1,
          'njason': 1,
          'schwartzman': 1,
          'face': 1,
          'oddly': 1,
          'intriguing': 1,
          'behind': 1,
          'large': 1,
          'braces': 1,
          'glasses': 1,
          'steals': 1,
          'show': 1,
          'fischer': 1,
          'known': 1,
          'student': 1,
          'gets': 1,
          'terrible': 1,
          'grades': 1,
          'compensates': 1,
          'organizing': 1,
          'clubs': 1,
          'organizations': 1,
          'e': 1,
          'fencing': 1,
          'team': 1,
          'writing': 1,
          'producing': 1,
          'school': 1,
          'plays': 1,
          'often': 1,
          'pulling': 1,
          'outrageous': 1,
          'stunts': 1,
          'earns': 1,
          'expulsion': 1,
          'nthis': 1,
          'stunt': 1,
          'building': 1,
          'baseball': 1,
          'diamond': 1,
          'plot': 1,
          'steal': 1,
          'heart': 1,
          'widowed': 1,
          'elementary': 1,
          'teacher': 1,
          'rosemary': 1,
          'olivia': 1,
          'williams': 1,
          'nhe': 1,
          'funds': 1,
          'help': 1,
          'millionare': 1,
          'blume': 1,
          'oscarworthy': 1,
          'murray': 1,
          'finds': 1,
          'falling': 1,
          'nrosemary': 1,
          'begin': 1,
          'datingand': 1,
          'begins': 1,
          'go': 1,
          'battle': 1,
          'nherman': 1,
          'manages': 1,
          'destroy': 1,
          'maxs': 1,
          'bike': 1,
          'cuts': 1,
          'hermans': 1,
          'brakes': 1,
          'goes': 1,
          'like': 1,
          'nbut': 1,
          'realizes': 1,
          'young': 1,
          'cant': 1,
          'stand': 1,
          'way': 1,
          'two': 1,
          'people': 1,
          'arts': 1,
          'sciences': 1,
          'really': 1,
          'messed': 1,
          'year': 1,
          'completely': 1,
          'overlooked': 1,
          'ask': 1,
          'accident': 1,
          'nit': 1,
          'maybe': 1,
          'best': 1,
          'picture': 1,
          'material': 1,
          'certainly': 1,
          'deserved': 1,
          'screenplay': 1,
          'nod': 1,
          'instead': 1,
          'elizabeth': 1,
          'murrays': 1,
          'absense': 1,
          'ballot': 1,
          'complete': 1,
          'snub': 1,
          'entire': 1,
          'mood': 1,
          'reason': 1,
          'point': 1,
          'next': 1,
          'turn': 1,
          'serious': 1,
          'dramatic': 1,
          'cinematography': 1,
          'gives': 1,
          'movie': 1,
          'important': 1,
          'ni': 1,
          'hope': 1,
          'overcome': 1,
          'oscar': 1,
          'snubs': 1,
          'enjoyed': 1,
          'intelligent': 1,
          'goers': 1,
          'npos': 1}),
 Counter({'film': 8,
          'furtwangler': 8,
          'arnold': 6,
          'orchestra': 4,
          'conductor': 4,
          'nazis': 4,
          'war': 4,
          'nthe': 4,
          'investigation': 4,
          '4': 4,
          'germany': 3,
          'much': 3,
          'nin': 3,
          'one': 3,
          'never': 3,
          'greatest': 2,
          'stayed': 2,
          'know': 2,
          'crimes': 2,
          'high': 2,
          '2': 2,
          'films': 2,
          'hungarian': 2,
          'nit': 2,
          'classical': 2,
          'music': 2,
          'assigned': 2,
          'perhaps': 2,
          'nwhen': 2,
          'members': 2,
          'told': 2,
          'something': 2,
          'nas': 2,
          'may': 2,
          'point': 2,
          'nthere': 2,
          'getting': 2,
          'nperhaps': 2,
          'end': 2,
          'obvious': 2,
          'like': 2,
          'stage': 2,
          'play': 2,
          'scale': 2,
          'na': 2,
          'could': 2,
          'capsule': 1,
          'avoids': 1,
          'easy': 1,
          'answers': 1,
          'nwilhelm': 1,
          'worlds': 1,
          'cooperated': 1,
          'nwhat': 1,
          'views': 1,
          'criminal': 1,
          'secret': 1,
          'resistance': 1,
          'fighter': 1,
          'nhow': 1,
          'humanity': 1,
          'us': 1,
          'government': 1,
          'investigated': 1,
          'dramatization': 1,
          'n': 1,
          'opinion': 1,
          'best': 1,
          'last': 1,
          'years': 1,
          'istvan': 1,
          'szabos': 1,
          'sunshine': 1,
          'covers': 1,
          'fortunes': 1,
          'jewish': 1,
          'family': 1,
          'reigns': 1,
          'three': 1,
          'different': 1,
          'regimes': 1,
          'aristocrats': 1,
          'communists': 1,
          'nszabos': 1,
          'followup': 1,
          'german': 1,
          'production': 1,
          'limited': 1,
          'scope': 1,
          'postwar': 1,
          'criminally': 1,
          'supported': 1,
          'opposed': 1,
          'nronald': 1,
          'harwoods': 1,
          'screenplay': 1,
          'ambiguously': 1,
          'looks': 1,
          'great': 1,
          'took': 1,
          'power': 1,
          'became': 1,
          'popular': 1,
          'third': 1,
          'reich': 1,
          'nmaj': 1,
          'steve': 1,
          'played': 1,
          'harvey': 1,
          'keitel': 1,
          'superiors': 1,
          'investigate': 1,
          'wilhelm': 1,
          'stellan': 1,
          'skarsgard': 1,
          'europes': 1,
          'artists': 1,
          'fled': 1,
          'remained': 1,
          'behind': 1,
          'conducted': 1,
          'hitler': 1,
          'henchmen': 1,
          'nafter': 1,
          'interview': 1,
          'appropriate': 1,
          'prosecute': 1,
          'nhe': 1,
          'secretly': 1,
          'commanding': 1,
          'officer': 1,
          'find': 1,
          'guilty': 1,
          'nfrom': 1,
          'follow': 1,
          'learn': 1,
          'little': 1,
          'interviews': 1,
          'wartime': 1,
          'starts': 1,
          'noticing': 1,
          'odd': 1,
          'peculiarities': 1,
          'conspiracy': 1,
          'certain': 1,
          'sameness': 1,
          'responses': 1,
          'cooperation': 1,
          'ways': 1,
          'managed': 1,
          'nif': 1,
          'come': 1,
          'truth': 1,
          'large': 1,
          'part': 1,
          'mind': 1,
          'games': 1,
          'uses': 1,
          'manipulate': 1,
          'interviewees': 1,
          'especially': 1,
          'nwhere': 1,
          'script': 1,
          'problems': 1,
          'ambiguous': 1,
          'resolution': 1,
          'final': 1,
          'act': 1,
          'whether': 1,
          'anything': 1,
          'established': 1,
          'open': 1,
          'interpretation': 1,
          'better': 1,
          'many': 1,
          'make': 1,
          'audience': 1,
          'believe': 1,
          'watching': 1,
          'murder': 1,
          'mystery': 1,
          'finding': 1,
          'killer': 1,
          'nwe': 1,
          'given': 1,
          'clues': 1,
          'tied': 1,
          'basically': 1,
          'visual': 1,
          'important': 1,
          'ncorners': 1,
          'cut': 1,
          'visually': 1,
          'including': 1,
          'touches': 1,
          'filling': 1,
          'windows': 1,
          'photographs': 1,
          'avoid': 1,
          'shoot': 1,
          'location': 1,
          'centers': 1,
          'dialog': 1,
          'intriguing': 1,
          'ni': 1,
          'rate': 1,
          '8': 1,
          '0': 1,
          '10': 1,
          'piece': 1,
          'sloppiness': 1,
          'people': 1,
          'would': 1,
          'notice': 1,
          'nat': 1,
          'clearly': 1,
          'see': 1,
          'arnolds': 1,
          'desk': 1,
          'calendar': 1,
          'say': 1,
          'jan': 1,
          '16': 1,
          'tues': 1,
          'quick': 1,
          'mental': 1,
          'calculation': 1,
          'combination': 1,
          'occur': 1,
          '1945': 1,
          '1951': 1,
          'events': 1,
          'take': 1,
          'place': 1,
          '1946': 1,
          '1947': 1,
          'possible': 1,
          'date': 1,
          'obtained': 1,
          'world': 1,
          'almanac': 1,
          'npos': 1}),
 Counter({'gattaca': 8,
          'one': 5,
          'vincent': 5,
          'movie': 4,
          'jerome': 4,
          'takes': 3,
          'eye': 3,
          'also': 3,
          'way': 3,
          'hawke': 3,
          'upcoming': 3,
          'vincents': 3,
          'without': 3,
          'smart': 3,
          'films': 2,
          'doesnt': 2,
          'story': 2,
          'nthe': 2,
          'futuristic': 2,
          'genetic': 2,
          'life': 2,
          'pesky': 2,
          'invalids': 2,
          'confined': 2,
          'home': 2,
          'brother': 2,
          'position': 2,
          'nhis': 2,
          'jude': 2,
          'law': 2,
          'blood': 2,
          'skin': 2,
          'high': 2,
          'thurman': 2,
          'flawless': 2,
          'neven': 2,
          'production': 2,
          'ever': 2,
          'designer': 2,
          'comes': 2,
          'film': 2,
          'represents': 1,
          'solid': 1,
          'breakthrough': 1,
          'recent': 1,
          'onslaught': 1,
          'sciencefiction': 1,
          'genre': 1,
          'picture': 1,
          'rely': 1,
          'alien': 1,
          'creatures': 1,
          'loud': 1,
          'explosions': 1,
          'tell': 1,
          'place': 1,
          'world': 1,
          'babies': 1,
          'created': 1,
          'tampering': 1,
          'sexual': 1,
          'reproduction': 1,
          'nthis': 1,
          'allows': 1,
          'parents': 1,
          'predetermine': 1,
          'kind': 1,
          'color': 1,
          'intelligence': 1,
          'span': 1,
          'theyd': 1,
          'like': 1,
          'child': 1,
          'eliminates': 1,
          'chances': 1,
          'health': 1,
          'defects': 1,
          'nthose': 1,
          'made': 1,
          'oldfashioned': 1,
          'labeled': 1,
          'lower': 1,
          'rung': 1,
          'society': 1,
          'nvincent': 1,
          'freeman': 1,
          'ethan': 1,
          'person': 1,
          'born': 1,
          'long': 1,
          'process': 1,
          'perfected': 1,
          'forced': 1,
          'grow': 1,
          'petrie': 1,
          'dishmolded': 1,
          'younger': 1,
          'anton': 1,
          'nfed': 1,
          'secondrate': 1,
          'enchanted': 1,
          'dreams': 1,
          'day': 1,
          'traveling': 1,
          'space': 1,
          'leaves': 1,
          'janitorial': 1,
          'aerospace': 1,
          'corporation': 1,
          'neveryday': 1,
          'watches': 1,
          'superior': 1,
          'folk': 1,
          'make': 1,
          'fantasy': 1,
          'reality': 1,
          'ndetermined': 1,
          'meets': 1,
          'dna': 1,
          'broker': 1,
          'tony': 1,
          'shalhoub': 1,
          'funny': 1,
          'cameo': 1,
          'sells': 1,
          'fake': 1,
          'identities': 1,
          'counterpart': 1,
          'scam': 1,
          'morrow': 1,
          'exathlete': 1,
          'left': 1,
          'paralyzed': 1,
          'accident': 1,
          'wheelchair': 1,
          'nfor': 1,
          'price': 1,
          'promise': 1,
          'caretaker': 1,
          'supplies': 1,
          'identity': 1,
          'well': 1,
          'urine': 1,
          'samples': 1,
          'onthejob': 1,
          'tests': 1,
          'physical': 1,
          'examinations': 1,
          'future': 1,
          'employees': 1,
          'clock': 1,
          'pricking': 1,
          'fingers': 1,
          'instead': 1,
          'punching': 1,
          'time': 1,
          'card': 1,
          'nbecause': 1,
          'drastically': 1,
          'improved': 1,
          'status': 1,
          'quickly': 1,
          'propelled': 1,
          'catches': 1,
          'comely': 1,
          'coworker': 1,
          'irene': 1,
          'uma': 1,
          'obsessed': 1,
          'minor': 1,
          'heart': 1,
          'defect': 1,
          'shes': 1,
          'enamored': 1,
          'persona': 1,
          'know': 1,
          'lie': 1,
          'nbut': 1,
          'figurative': 1,
          'eve': 1,
          'planetary': 1,
          'departure': 1,
          'mission': 1,
          'director': 1,
          'murdered': 1,
          'ntwo': 1,
          'ardent': 1,
          'detectives': 1,
          'alan': 1,
          'arkin': 1,
          'billy': 1,
          'bathgates': 1,
          'loren': 1,
          'dean': 1,
          'determine': 1,
          'killer': 1,
          'inside': 1,
          'sole': 1,
          'clue': 1,
          'find': 1,
          'crime': 1,
          'scene': 1,
          'eyelashes': 1,
          'threatens': 1,
          'blow': 1,
          'cover': 1,
          'derail': 1,
          'goal': 1,
          'dramatically': 1,
          'empty': 1,
          'would': 1,
          'still': 1,
          'boast': 1,
          'sublime': 1,
          'set': 1,
          'credentials': 1,
          'look': 1,
          'dazzling': 1,
          'flashy': 1,
          'nfirsttime': 1,
          'directorwriter': 1,
          'andrew': 1,
          'niccol': 1,
          'wrote': 1,
          'screenplay': 1,
          'jim': 1,
          'carrey': 1,
          'drama': 1,
          'truman': 1,
          'show': 1,
          'demonstrates': 1,
          'keen': 1,
          'stylish': 1,
          'collaboration': 1,
          'cinematographer': 1,
          'slawomir': 1,
          'idziak': 1,
          'jan': 1,
          'roelfs': 1,
          'costume': 1,
          'colleen': 1,
          'atwood': 1,
          'result': 1,
          'sophisticated': 1,
          'composition': 1,
          'emanates': 1,
          'classy': 1,
          'retro': 1,
          'ambiance': 1,
          'nan': 1,
          'opening': 1,
          'credits': 1,
          'sequence': 1,
          'nail': 1,
          'hair': 1,
          'fragments': 1,
          'fall': 1,
          'slowmotion': 1,
          'colored': 1,
          'camera': 1,
          'lens': 1,
          'displays': 1,
          'combined': 1,
          'talents': 1,
          'uncannily': 1,
          'nniccol': 1,
          'even': 1,
          'utilizes': 1,
          'voiceover': 1,
          'narration': 1,
          'device': 1,
          'almost': 1,
          'always': 1,
          'poorlyemployed': 1,
          'effective': 1,
          'nwhen': 1,
          'acting': 1,
          'nethan': 1,
          'magnificent': 1,
          'work': 1,
          'proving': 1,
          'ability': 1,
          'carry': 1,
          'reaffirming': 1,
          'enormously': 1,
          'charisma': 1,
          'level': 1,
          'chemistry': 1,
          'bit': 1,
          'icy': 1,
          'side': 1,
          'needfully': 1,
          'adding': 1,
          'settings': 1,
          'clinical': 1,
          'chill': 1,
          'nas': 1,
          'bitter': 1,
          'starmaking': 1,
          'presence': 1,
          'scenes': 1,
          'give': 1,
          'fine': 1,
          'emotional': 1,
          'core': 1,
          'nin': 1,
          'series': 1,
          'final': 1,
          'shots': 1,
          'fates': 1,
          'superimposed': 1,
          'effect': 1,
          'sad': 1,
          'lyrical': 1,
          'beautiful': 1,
          'nthings': 1,
          'get': 1,
          'little': 1,
          'strange': 1,
          'nears': 1,
          'climax': 1,
          'relationship': 1,
          'back': 1,
          'view': 1,
          'big': 1,
          'dramatic': 1,
          'culmination': 1,
          'swim': 1,
          'race': 1,
          'somewhat': 1,
          'silly': 1,
          'albeit': 1,
          'beautifully': 1,
          'photographed': 1,
          'nstill': 1,
          'single': 1,
          'surprising': 1,
          'aspect': 1,
          'use': 1,
          'backdrop': 1,
          'successful': 1,
          'scifi': 1,
          'showy': 1,
          'special': 1,
          'effects': 1,
          'crisp': 1,
          'thriller': 1,
          'characterdriven': 1,
          'thrills': 1,
          'fable': 1,
          'guts': 1,
          'murder': 1,
          'mystery': 1,
          'relegated': 1,
          'secondary': 1,
          'subplot': 1,
          'ensuring': 1,
          'people': 1,
          'science': 1,
          'center': 1,
          'stage': 1,
          'nalthough': 1,
          'portrayal': 1,
          'century': 1,
          'grim': 1,
          'serves': 1,
          'thoughtprovoking': 1,
          'societal': 1,
          'forecasts': 1,
          'depicted': 1,
          'npos': 1}),
 Counter({'nephew': 5,
          'movie': 5,
          'nthe': 4,
          'premiere': 3,
          'scenes': 3,
          'irish': 3,
          'many': 2,
          'screening': 2,
          'first': 2,
          'ireland': 2,
          'nhe': 2,
          'character': 2,
          'brady': 2,
          'america': 2,
          'rest': 2,
          'source': 2,
          'huge': 1,
          'crowd': 1,
          '100': 1,
          'people': 1,
          'could': 1,
          'admitted': 1,
          'major': 1,
          'general': 1,
          'audience': 1,
          'admittance': 1,
          'nthis': 1,
          'santa': 1,
          'barbara': 1,
          'international': 1,
          'film': 1,
          'festival': 1,
          'npierce': 1,
          'brosnan': 1,
          '007': 1,
          'produced': 1,
          'beau': 1,
          'st': 1,
          'clair': 1,
          'nit': 1,
          'constantly': 1,
          'mindmoving': 1,
          'personal': 1,
          'lovely': 1,
          'nchad': 1,
          'hill': 1,
          'harper': 1,
          'beloved': 1,
          'cute': 1,
          '17': 1,
          'year': 1,
          'old': 1,
          'mixed': 1,
          'race': 1,
          'african': 1,
          'american': 1,
          'whos': 1,
          'mother': 1,
          'died': 1,
          'comes': 1,
          'back': 1,
          'living': 1,
          'curmudgeon': 1,
          'uncle': 1,
          'tony': 1,
          'egan': 1,
          'donal': 1,
          'mccann': 1,
          'meets': 1,
          'pierce': 1,
          'brosnans': 1,
          'mr': 1,
          'obrady': 1,
          'falls': 1,
          'love': 1,
          'beautiful': 1,
          'daughter': 1,
          'nthere': 1,
          'ah': 1,
          'laugh': 1,
          'others': 1,
          'pull': 1,
          'tears': 1,
          'three': 1,
          'mentioned': 1,
          'flesh': 1,
          'director': 1,
          'eugene': 1,
          'nafter': 1,
          'took': 1,
          'questions': 1,
          'good': 1,
          'fantastic': 1,
          'picked': 1,
          'north': 1,
          'world': 1,
          'generation': 1,
          'secrecy': 1,
          'titanic': 1,
          'proportion': 1,
          'nlets': 1,
          'hope': 1,
          'able': 1,
          'see': 1,
          'ncontact': 1,
          'given': 1,
          'program': 1,
          'guide': 1,
          'print': 1,
          'dream': 1,
          'inc': 1,
          'tel': 1,
          '310': 1,
          '4493411': 1,
          'npos': 1}),
 Counter({'film': 8,
          'nthe': 7,
          'murnaus': 4,
          'nosferatu': 4,
          'title': 4,
          'video': 3,
          'vampire': 3,
          'one': 3,
          'bram': 3,
          'like': 3,
          'latest': 3,
          'new': 2,
          'arrow': 2,
          'entertainment': 2,
          'carradine': 2,
          'written': 2,
          'man': 2,
          'probably': 2,
          'symphony': 2,
          'horror': 2,
          'schreck': 2,
          'silent': 2,
          'stokers': 2,
          'dracula': 2,
          'hutter': 2,
          'count': 2,
          'emily': 2,
          'orlocks': 2,
          'digitally': 2,
          'cover': 2,
          'art': 2,
          'goateed': 2,
          'sexy': 2,
          'writhing': 2,
          'woman': 2,
          'movie': 2,
          'nthis': 2,
          'makes': 2,
          'scenes': 2,
          'seems': 2,
          'cards': 2,
          'music': 2,
          'type': 2,
          'negative': 2,
          'called': 2,
          'available': 1,
          'edition': 1,
          '29': 1,
          '95': 1,
          'introduction': 1,
          'david': 1,
          'produced': 1,
          'wayne': 1,
          'j': 1,
          'keeley': 1,
          'nf': 1,
          'w': 1,
          'career': 1,
          'ended': 1,
          'sadly': 1,
          'prematurely': 1,
          'german': 1,
          'director': 1,
          'classics': 1,
          'sunrise': 1,
          'last': 1,
          'laugh': 1,
          'died': 1,
          'car': 1,
          'accident': 1,
          'shortly': 1,
          'signing': 1,
          'deal': 1,
          'make': 1,
          'american': 1,
          'pictures': 1,
          'paramount': 1,
          'nmurnau': 1,
          'reportedly': 1,
          'giant': 1,
          'well': 1,
          'six': 1,
          'feet': 1,
          'towering': 1,
          'figure': 1,
          'incapable': 1,
          'anything': 1,
          'grand': 1,
          'entrance': 1,
          'nwhich': 1,
          'brings': 1,
          'us': 1,
          'surely': 1,
          'felt': 1,
          'kinship': 1,
          'character': 1,
          'looming': 1,
          'embodied': 1,
          'intimidating': 1,
          'max': 1,
          'indelible': 1,
          'images': 1,
          'history': 1,
          'otherwise': 1,
          'rises': 1,
          'grave': 1,
          'gnarled': 1,
          'hands': 1,
          'outstretched': 1,
          'hes': 1,
          'big': 1,
          'part': 1,
          'head': 1,
          'cropped': 1,
          'top': 1,
          'frame': 1,
          'plot': 1,
          'nis': 1,
          'liftedunauthorizedfrom': 1,
          'british': 1,
          'eager': 1,
          'real': 1,
          'estate': 1,
          'assigned': 1,
          'visit': 1,
          'discuss': 1,
          'future': 1,
          'living': 1,
          'arrangements': 1,
          'orlock': 1,
          'transylvania': 1,
          'nhe': 1,
          'leaves': 1,
          'behind': 1,
          'girlfriend': 1,
          'discover': 1,
          'secrethes': 1,
          'bloodsuckerand': 1,
          'struggle': 1,
          'return': 1,
          'england': 1,
          'reaches': 1,
          'lady': 1,
          'love': 1,
          'nin': 1,
          'addition': 1,
          'schrecks': 1,
          'performance': 1,
          'cinematography': 1,
          'effects': 1,
          'outstanding': 1,
          'narrow': 1,
          'videos': 1,
          'remastered': 1,
          'version': 1,
          'classic': 1,
          'something': 1,
          'mixedcoffin': 1,
          'features': 1,
          'redtinted': 1,
          'hairy': 1,
          'staring': 1,
          'straight': 1,
          'fanged': 1,
          'mouth': 1,
          'agape': 1,
          'bodies': 1,
          'two': 1,
          'women': 1,
          'entice': 1,
          'ntrouble': 1,
          'monster': 1,
          'palefaced': 1,
          'bald': 1,
          'pointyeared': 1,
          'nongoateed': 1,
          'isnt': 1,
          'single': 1,
          'found': 1,
          'sort': 1,
          'misleading': 1,
          'packaging': 1,
          'little': 1,
          'sense': 1,
          'recalls': 1,
          'countless': 1,
          'number': 1,
          'ghouslish': 1,
          'cool': 1,
          'could': 1,
          'extracted': 1,
          'nadditionally': 1,
          'notifying': 1,
          'viewer': 1,
          'fact': 1,
          'afterthought': 1,
          'since': 1,
          'name': 1,
          'genuine': 1,
          'small': 1,
          'print': 1,
          'nthat': 1,
          'said': 1,
          'good': 1,
          'mastering': 1,
          'job': 1,
          'performed': 1,
          'original': 1,
          'elements': 1,
          'best': 1,
          'conditionnonstudio': 1,
          'silents': 1,
          'unlucky': 1,
          'preservation': 1,
          'still': 1,
          'dealing': 1,
          'slightly': 1,
          'washed': 1,
          'scratched': 1,
          'jittering': 1,
          'image': 1,
          'nbut': 1,
          'least': 1,
          'day': 1,
          'night': 1,
          'tinted': 1,
          'sepia': 1,
          'blue': 1,
          'respectively': 1,
          'especially': 1,
          'helpful': 1,
          'audience': 1,
          'may': 1,
          'question': 1,
          'nosferatus': 1,
          'waltzing': 1,
          'around': 1,
          'sunlight': 1,
          'took': 1,
          'lot': 1,
          'light': 1,
          'expose': 1,
          'stock': 1,
          'twenties': 1,
          'redone': 1,
          'legible': 1,
          'accurate': 1,
          'altered': 1,
          'flickera': 1,
          'nice': 1,
          'touch': 1,
          'n': 1,
          'even': 1,
          'opening': 1,
          'copyright': 1,
          'warning': 1,
          'flickers': 1,
          'score': 1,
          'replaced': 1,
          'hardrock': 1,
          'group': 1,
          'arguably': 1,
          'gothic': 1,
          'songs': 1,
          'underscore': 1,
          'nicely': 1,
          'certainly': 1,
          'coolest': 1,
          'band': 1,
          'ask': 1,
          'nwhen': 1,
          'hero': 1,
          'first': 1,
          'steps': 1,
          'onto': 1,
          'doomed': 1,
          'carriage': 1,
          'castle': 1,
          'hear': 1,
          'welltimed': 1,
          'youre': 1,
          'dead': 1,
          'nfrom': 1,
          'lead': 1,
          'singer': 1,
          'peter': 1,
          'steele': 1,
          'ndavid': 1,
          'appropriately': 1,
          'vampiric': 1,
          'host': 1,
          'fiddles': 1,
          'blade': 1,
          'cane': 1,
          'introducing': 1,
          'nafter': 1,
          'feature': 1,
          'runs': 1,
          '63': 1,
          'minutes': 1,
          'included': 1,
          'blackandwhite': 1,
          'fangfest': 1,
          'black': 1,
          '1': 1,
          'nof': 1,
          'course': 1,
          'main': 1,
          'attraction': 1,
          'viewing': 1,
          'raised': 1,
          'questions': 1,
          'mina': 1,
          'stoker': 1,
          'herin': 1,
          'hutters': 1,
          'letters': 1,
          'instance': 1,
          'made': 1,
          'realize': 1,
          'much': 1,
          'inspired': 1,
          'stolen': 1,
          'ncoppolas': 1,
          '1992': 1,
          'owes': 1,
          'great': 1,
          'stylistic': 1,
          'debt': 1,
          'masterpiece': 1,
          'thing': 1,
          'couldnt': 1,
          'thieve': 1,
          'originals': 1,
          'abstract': 1,
          'charms': 1,
          'incarnation': 1,
          'rescored': 1,
          'metropolis': 1,
          'years': 1,
          'backturn': 1,
          'palpable': 1,
          'generation': 1,
          'freaks': 1,
          'npos': 1}),
 Counter({'film': 8,
          'lost': 7,
          'highway': 7,
          'mystery': 7,
          'lynchs': 4,
          'fred': 4,
          'arquette': 4,
          'man': 4,
          'nthe': 4,
          'pete': 4,
          'dayton': 4,
          'like': 3,
          'lynch': 3,
          'one': 3,
          'much': 3,
          'time': 3,
          'character': 3,
          'typically': 3,
          'left': 2,
          'put': 2,
          'years': 2,
          'picture': 2,
          'enough': 2,
          'make': 2,
          'nit': 2,
          'describe': 2,
          'ni': 2,
          'renee': 2,
          'infidelity': 2,
          'house': 2,
          'little': 2,
          'doesnt': 2,
          'help': 2,
          'proceeds': 2,
          'unnerving': 2,
          'another': 2,
          'murder': 2,
          'prison': 2,
          'whose': 2,
          'otherwise': 2,
          'sound': 2,
          'giddy': 2,
          'weird': 2,
          'takes': 2,
          'nthere': 2,
          'times': 2,
          'disturbing': 2,
          'psyche': 2,
          'freds': 2,
          'case': 2,
          'characters': 2,
          'story': 2,
          'scenes': 2,
          'nothing': 2,
          'effective': 2,
          'nlynchs': 2,
          'exactly': 2,
          'two': 2,
          'films': 2,
          'theater': 1,
          'seeing': 1,
          'david': 1,
          'remarked': 1,
          'fellow': 1,
          'moviegoer': 1,
          'feel': 1,
          'someone': 1,
          'sucked': 1,
          'brains': 1,
          'nose': 1,
          'back': 1,
          'ears': 1,
          'nin': 1,
          'first': 1,
          'feature': 1,
          'five': 1,
          'delivers': 1,
          'second': 1,
          'debut': 1,
          'eraserhead': 1,
          'weirdness': 1,
          'scale': 1,
          'nyou': 1,
          'wont': 1,
          'know': 1,
          'happened': 1,
          'though': 1,
          'certainly': 1,
          'clues': 1,
          'reasonable': 1,
          'guesses': 1,
          'difficult': 1,
          'plot': 1,
          'depends': 1,
          'partly': 1,
          'interpret': 1,
          'however': 1,
          'see': 1,
          'screen': 1,
          'l': 1,
          'jazz': 1,
          'saxophonist': 1,
          'madison': 1,
          'bill': 1,
          'pullman': 1,
          'wife': 1,
          'patricia': 1,
          'clearly': 1,
          'suspects': 1,
          'receive': 1,
          'series': 1,
          'videotapes': 1,
          'apparently': 1,
          'filmed': 1,
          'inside': 1,
          'asleep': 1,
          'nthey': 1,
          'naturally': 1,
          'frightened': 1,
          'confused': 1,
          'matters': 1,
          'robert': 1,
          'blake': 1,
          'approaches': 1,
          'party': 1,
          'call': 1,
          'telephone': 1,
          'madisons': 1,
          'scene': 1,
          'hilarious': 1,
          'next': 1,
          'morning': 1,
          'finds': 1,
          'videotape': 1,
          'surprise': 1,
          'shows': 1,
          'brutally': 1,
          'murdering': 1,
          'bedroom': 1,
          'nhe': 1,
          'convicted': 1,
          'sent': 1,
          'death': 1,
          'row': 1,
          'inexplicably': 1,
          'disappears': 1,
          'night': 1,
          'replaced': 1,
          'young': 1,
          'mechanic': 1,
          'named': 1,
          'balthazar': 1,
          'getty': 1,
          'perplexed': 1,
          'officials': 1,
          'release': 1,
          'life': 1,
          'begins': 1,
          'intersect': 1,
          'number': 1,
          'ways': 1,
          'notably': 1,
          'affair': 1,
          'alice': 1,
          'wakefield': 1,
          'blonde': 1,
          'renees': 1,
          'spitting': 1,
          'image': 1,
          'encounter': 1,
          'would': 1,
          'giving': 1,
          'away': 1,
          'reveal': 1,
          'suffice': 1,
          'say': 1,
          'offer': 1,
          'neat': 1,
          'wrap': 1,
          'ups': 1,
          'lid': 1,
          'metaphysical': 1,
          'confusion': 1,
          'cinematic': 1,
          'demons': 1,
          'full': 1,
          'force': 1,
          'beginning': 1,
          'end': 1,
          'nthis': 1,
          'description': 1,
          'might': 1,
          'exercise': 1,
          'haywire': 1,
          'surrealism': 1,
          'fact': 1,
          'traces': 1,
          'sense': 1,
          'humor': 1,
          'anything': 1,
          'non': 1,
          'contrary': 1,
          'dark': 1,
          'perplexing': 1,
          'previous': 1,
          'excursions': 1,
          'intrigue': 1,
          'step': 1,
          'farther': 1,
          'revolve': 1,
          'around': 1,
          'investigating': 1,
          'rather': 1,
          'recurring': 1,
          'deeply': 1,
          'images': 1,
          'suspicion': 1,
          'distrust': 1,
          'thoughout': 1,
          'seem': 1,
          'indicate': 1,
          'deluded': 1,
          'fractured': 1,
          'root': 1,
          'bizarre': 1,
          'goingson': 1,
          'nwe': 1,
          'audience': 1,
          'puzzle': 1,
          'driving': 1,
          'probably': 1,
          'opinion': 1,
          'events': 1,
          'meant': 1,
          'represent': 1,
          'nall': 1,
          'appropriately': 1,
          'slowpaced': 1,
          'idiosyncratic': 1,
          'style': 1,
          'nas': 1,
          'often': 1,
          'relies': 1,
          'imagery': 1,
          'mood': 1,
          'dialogue': 1,
          'action': 1,
          'tell': 1,
          'works': 1,
          'perfectly': 1,
          'camera': 1,
          'lingers': 1,
          'blank': 1,
          'expression': 1,
          'drifts': 1,
          'uncomfortably': 1,
          'hallway': 1,
          'pained': 1,
          'face': 1,
          'cell': 1,
          'haunting': 1,
          'strains': 1,
          'mortal': 1,
          'coils': 1,
          'song': 1,
          'siren': 1,
          'heard': 1,
          'faintly': 1,
          'background': 1,
          'technically': 1,
          'happening': 1,
          'yet': 1,
          'present': 1,
          'vivid': 1,
          'losing': 1,
          'grip': 1,
          'hysterical': 1,
          'screaming': 1,
          'found': 1,
          'movie': 1,
          'presentations': 1,
          'insanity': 1,
          'direction': 1,
          'director': 1,
          'photography': 1,
          'demings': 1,
          'darkly': 1,
          'lit': 1,
          'cinematography': 1,
          'serve': 1,
          'create': 1,
          'nearly': 1,
          'suffocating': 1,
          'atmosphere': 1,
          'tension': 1,
          'fear': 1,
          'needed': 1,
          'nwell': 1,
          'anyway': 1,
          'admit': 1,
          'bit': 1,
          'bored': 1,
          'section': 1,
          'protgaonist': 1,
          'less': 1,
          'inherently': 1,
          'interesting': 1,
          'mostly': 1,
          'keeps': 1,
          'viewers': 1,
          'attention': 1,
          'tieins': 1,
          'original': 1,
          'main': 1,
          'reality': 1,
          'wellmeaning': 1,
          'none': 1,
          'intelligent': 1,
          '24yearold': 1,
          'sleazy': 1,
          'gangster': 1,
          'reason': 1,
          'names': 1,
          'pretty': 1,
          'stock': 1,
          'pornstar': 1,
          'girlfriend': 1,
          'blond': 1,
          'couldnt': 1,
          'find': 1,
          'dozen': 1,
          'pulp': 1,
          'fiction': 1,
          'wannabes': 1,
          'fortunately': 1,
          'reappearance': 1,
          'well': 1,
          'lynchian': 1,
          'elements': 1,
          'strained': 1,
          'awkward': 1,
          'conversations': 1,
          'parents': 1,
          'preserve': 1,
          'spooky': 1,
          'tone': 1,
          'stretch': 1,
          'graphic': 1,
          'portrayals': 1,
          'fringe': 1,
          'sexuality': 1,
          'relevant': 1,
          'themes': 1,
          'jealousy': 1,
          'adultery': 1,
          'also': 1,
          'somewhat': 1,
          'overdone': 1,
          'nits': 1,
          'exploitative': 1,
          'almost': 1,
          'everything': 1,
          'else': 1,
          'sex': 1,
          'thoroughly': 1,
          'creepy': 1,
          'unlikely': 1,
          'provide': 1,
          'cheap': 1,
          'lurid': 1,
          'thrills': 1,
          'unnecessary': 1,
          'frankly': 1,
          'kind': 1,
          'dumb': 1,
          'seventh': 1,
          'eighth': 1,
          'clothes': 1,
          'nthat': 1,
          'said': 1,
          'minor': 1,
          'flaws': 1,
          'dont': 1,
          'prevent': 1,
          'attaining': 1,
          'place': 1,
          'darkest': 1,
          'unsettling': 1,
          'hit': 1,
          'screens': 1,
          'recent': 1,
          'oneway': 1,
          'ride': 1,
          'disturbed': 1,
          'mind': 1,
          'gripping': 1,
          'intense': 1,
          'brilliantly': 1,
          'npos': 1}),
 Counter({'melvin': 6,
          'dog': 4,
          'simon': 3,
          'playing': 3,
          'none': 2,
          'day': 2,
          'serve': 2,
          'carol': 2,
          'threatens': 2,
          'shut': 2,
          'brooks': 2,
          'udall': 1,
          'heartless': 1,
          'man': 1,
          'nhe': 1,
          'spends': 1,
          'days': 1,
          'inside': 1,
          'spacious': 1,
          'manhattan': 1,
          'apartment': 1,
          'writing': 1,
          'romance': 1,
          'novels': 1,
          'nit': 1,
          'also': 1,
          'seems': 1,
          'never': 1,
          'change': 1,
          'dines': 1,
          'ar': 1,
          'favorite': 1,
          'restaurant': 1,
          'little': 1,
          'mean': 1,
          'normal': 1,
          'waitress': 1,
          'waittress': 1,
          'played': 1,
          'perfection': 1,
          'lovely': 1,
          'sexy': 1,
          'helen': 1,
          'hunt': 1,
          'nshe': 1,
          'doesnt': 1,
          'asthmatic': 1,
          'son': 1,
          'nto': 1,
          'make': 1,
          'matters': 1,
          'considerably': 1,
          'worse': 1,
          'obsessive': 1,
          'compulsive': 1,
          'disorder': 1,
          'gay': 1,
          'artist': 1,
          'neighbor': 1,
          'greg': 1,
          'kinear': 1,
          'talk': 1,
          'soup': 1,
          'fame': 1,
          'oscarworthy': 1,
          'role': 1,
          'dismiss': 1,
          'melvons': 1,
          'door': 1,
          'nthe': 1,
          'meets': 1,
          'garbage': 1,
          'chute': 1,
          'nsoon': 1,
          'sadly': 1,
          'beaten': 1,
          'thieveing': 1,
          'burglars': 1,
          'ray': 1,
          'cuba': 1,
          'gooding': 1,
          'jr': 1,
          'simons': 1,
          'agent': 1,
          'takes': 1,
          'verdell': 1,
          'dogsit': 1,
          'nand': 1,
          'rather': 1,
          'heartwrenching': 1,
          'car': 1,
          'trip': 1,
          'involves': 1,
          'learns': 1,
          'emerge': 1,
          'cantakerous': 1,
          'shell': 1,
          'njack': 1,
          'nicholson': 1,
          'gives': 1,
          'yet': 1,
          'another': 1,
          'oscarcaliber': 1,
          'performance': 1,
          'films': 1,
          'cynical': 1,
          'lead': 1,
          'back': 1,
          'work': 1,
          'goofy': 1,
          'u': 1,
          'president': 1,
          'comic': 1,
          'book': 1,
          'villian': 1,
          'instead': 1,
          'jack': 1,
          'nicjolson': 1,
          'full': 1,
          'force': 1,
          'nall': 1,
          'adds': 1,
          'years': 1,
          'funniest': 1,
          'comedy': 1,
          'creative': 1,
          'witty': 1,
          'scathing': 1,
          'film': 1,
          'james': 1,
          'l': 1,
          'gets': 1,
          'awardworthy': 1,
          'performances': 1,
          'entire': 1,
          'cast': 1,
          'na': 1,
          'winner': 1,
          'every': 1,
          'aspect': 1,
          'truly': 1,
          'delicious': 1,
          'slice': 1,
          'cyncial': 1,
          'life': 1,
          'npos': 1}),
 Counter({'film': 14,
          'sex': 11,
          'nthe': 11,
          'car': 10,
          'people': 9,
          'porn': 8,
          'one': 8,
          'scene': 8,
          'pretty': 7,
          'james': 7,
          'crash': 6,
          'also': 6,
          'another': 6,
          'almost': 6,
          'nbut': 5,
          'nwhile': 5,
          'scenes': 5,
          'hes': 5,
          'completely': 4,
          'like': 4,
          'several': 4,
          'little': 4,
          'edge': 4,
          'two': 4,
          'sure': 3,
          'boring': 3,
          'cool': 3,
          'generally': 3,
          'see': 3,
          'good': 3,
          'erotic': 3,
          'thing': 3,
          'even': 3,
          'spader': 3,
          'freaky': 3,
          'go': 3,
          'get': 3,
          'crashes': 3,
          'rush': 3,
          'shes': 3,
          'nhe': 3,
          'really': 2,
          'think': 2,
          'cold': 2,
          'name': 2,
          'director': 2,
          'mean': 2,
          'kinda': 2,
          'plot': 2,
          'maybe': 2,
          'characterization': 2,
          'acting': 2,
          'dont': 2,
          'lot': 2,
          'different': 2,
          'fact': 2,
          'nthis': 2,
          'would': 2,
          'leaves': 2,
          'many': 2,
          'group': 2,
          'live': 2,
          'woman': 2,
          'catherine': 2,
          'deborah': 2,
          'kara': 2,
          'ungar': 2,
          'man': 2,
          'take': 2,
          'doesnt': 2,
          'nc17': 2,
          'next': 2,
          'together': 2,
          'us': 2,
          'nsoon': 2,
          'afterwards': 2,
          'something': 2,
          'face': 2,
          'hunter': 2,
          'getting': 2,
          'run': 2,
          'accident': 2,
          'aroused': 2,
          'wouldnt': 2,
          'kind': 2,
          'fetish': 2,
          'elias': 2,
          'kosteas': 2,
          'rosanna': 2,
          'arquette': 2,
          'living': 2,
          'level': 2,
          'recreate': 2,
          'nin': 2,
          'bit': 2,
          'portrayal': 2,
          'main': 2,
          'connection': 2,
          'shows': 2,
          'definite': 2,
          'quick': 2,
          'looks': 2,
          'happens': 2,
          'breath': 2,
          'although': 2,
          'nthese': 2,
          'taking': 2,
          'tad': 2,
          'na': 2,
          'hour': 2,
          'still': 2,
          'creating': 2,
          'nand': 2,
          'amazing': 2,
          'way': 2,
          'shot': 2,
          'especially': 2,
          'speaks': 2,
          'showing': 2,
          'viewer': 2,
          'role': 2,
          'later': 2,
          'share': 2,
          'light': 2,
          'im': 1,
          'non': 1,
          'surface': 1,
          'unerotic': 1,
          'starts': 1,
          'camerawork': 1,
          'ni': 1,
          'left': 1,
          'bored': 1,
          'unsatisfied': 1,
          'weirded': 1,
          'every': 1,
          'films': 1,
          'supposed': 1,
          'leave': 1,
          'entertained': 1,
          'n': 1,
          'structured': 1,
          'play': 1,
          'flick': 1,
          'significantly': 1,
          'dialogue': 1,
          'extremely': 1,
          'taboo': 1,
          'weirdo': 1,
          'skimpy': 1,
          'going': 1,
          'mostly': 1,
          'towards': 1,
          'beginning': 1,
          'hair': 1,
          'nnot': 1,
          'mention': 1,
          'actors': 1,
          'exposed': 1,
          'makes': 1,
          'supremely': 1,
          'experience': 1,
          'posess': 1,
          'hypnotism': 1,
          'henry': 1,
          'june': 1,
          'plain': 1,
          'horniness': 1,
          'say': 1,
          'deep': 1,
          'throat': 1,
          'ive': 1,
          'seen': 1,
          'nif': 1,
          'made': 1,
          'hot': 1,
          'probably': 1,
          'whole': 1,
          'auto': 1,
          'eroticism': 1,
          'erotically': 1,
          'ways': 1,
          'present': 1,
          'opens': 1,
          'game': 1,
          'pressing': 1,
          'bare': 1,
          'breast': 1,
          'public': 1,
          'air': 1,
          'hangar': 1,
          'nsuddenly': 1,
          'enters': 1,
          'frame': 1,
          'begins': 1,
          'behind': 1,
          'show': 1,
          'though': 1,
          'camera': 1,
          'alice': 1,
          'poon': 1,
          'office': 1,
          'highlypopulated': 1,
          'set': 1,
          'movie': 1,
          'coming': 1,
          'revealing': 1,
          'theyre': 1,
          'husband': 1,
          'wife': 1,
          'sharing': 1,
          'anothers': 1,
          'escapades': 1,
          'arguably': 1,
          'least': 1,
          'know': 1,
          'love': 1,
          'driving': 1,
          'road': 1,
          'night': 1,
          'reclessly': 1,
          'course': 1,
          'reading': 1,
          'drifts': 1,
          'lane': 1,
          'hits': 1,
          'njames': 1,
          'killed': 1,
          'passenger': 1,
          'flies': 1,
          'seat': 1,
          'obviously': 1,
          'dying': 1,
          'leaving': 1,
          'driver': 1,
          'helen': 1,
          'remington': 1,
          'holly': 1,
          'alive': 1,
          'therapy': 1,
          'eachother': 1,
          'nwhen': 1,
          'gives': 1,
          'ride': 1,
          'home': 1,
          'immeadiately': 1,
          'unbusy': 1,
          'parking': 1,
          'quickie': 1,
          'nyou': 1,
          'shared': 1,
          'guy': 1,
          'named': 1,
          'vaughan': 1,
          'crutchcarrying': 1,
          'girlfriend': 1,
          'gabrielle': 1,
          'nvaughan': 1,
          'takes': 1,
          'loves': 1,
          'famous': 1,
          'friend': 1,
          'colin': 1,
          'seagrave': 1,
          'peter': 1,
          'macneill': 1,
          'deans': 1,
          'without': 1,
          'padding': 1,
          'safety': 1,
          'belts': 1,
          'suffer': 1,
          'concussions': 1,
          'nevertheless': 1,
          'attention': 1,
          'police': 1,
          'five': 1,
          'straight': 1,
          'gay': 1,
          'lesbian': 1,
          'admittingly': 1,
          'comical': 1,
          'black': 1,
          'comedy': 1,
          'awesome': 1,
          'whos': 1,
          'nim': 1,
          'somewhere': 1,
          'accidents': 1,
          'personally': 1,
          'cronenberg': 1,
          'give': 1,
          'nhis': 1,
          'exciting': 1,
          'minimasterpieces': 1,
          'first': 1,
          'theyll': 1,
          'place': 1,
          'everytime': 1,
          'may': 1,
          'occur': 1,
          'gasp': 1,
          'nthen': 1,
          'hold': 1,
          'fashion': 1,
          'merely': 1,
          'problem': 1,
          'redundant': 1,
          'normal': 1,
          'lasts': 1,
          'half': 1,
          'goes': 1,
          '100': 1,
          'minutes': 1,
          'seems': 1,
          'long': 1,
          'far': 1,
          'time': 1,
          'side': 1,
          'ntheres': 1,
          'could': 1,
          'definitely': 1,
          'argued': 1,
          'hey': 1,
          'sympathize': 1,
          'coulda': 1,
          'cut': 1,
          'saved': 1,
          'presentation': 1,
          'well': 1,
          'elements': 1,
          'atmosphere': 1,
          'dark': 1,
          'forboding': 1,
          'weird': 1,
          'feeling': 1,
          'none': 1,
          'softly': 1,
          'asks': 1,
          'questions': 1,
          'sounds': 1,
          'says': 1,
          'sequence': 1,
          'involving': 1,
          'characters': 1,
          'death': 1,
          'filled': 1,
          'edgy': 1,
          'disjointment': 1,
          'needs': 1,
          'final': 1,
          'perfectly': 1,
          'image': 1,
          'couple': 1,
          'front': 1,
          'despite': 1,
          'wounded': 1,
          'ousting': 1,
          'linda': 1,
          'lovelace': 1,
          'best': 1,
          'actress': 1,
          'usually': 1,
          'intense': 1,
          'nshe': 1,
          'words': 1,
          'zombielike': 1,
          'hushes': 1,
          'blank': 1,
          'look': 1,
          'whether': 1,
          'enjoying': 1,
          'actually': 1,
          'dead': 1,
          'someone': 1,
          'nholly': 1,
          'gets': 1,
          'extra': 1,
          'credit': 1,
          'appearing': 1,
          'adds': 1,
          'kinkiness': 1,
          'stolen': 1,
          'plays': 1,
          'character': 1,
          'intensely': 1,
          'upstages': 1,
          'everyone': 1,
          'often': 1,
          'affinity': 1,
          'life': 1,
          'great': 1,
          'deal': 1,
          'energy': 1,
          'photographs': 1,
          'picture': 1,
          'tatoo': 1,
          'sexual': 1,
          'chemistry': 1,
          'foreshadowing': 1,
          'nkosteas': 1,
          'known': 1,
          'actor': 1,
          'biggest': 1,
          'casey': 1,
          'jones': 1,
          'teenage': 1,
          'mutant': 1,
          'ninja': 1,
          'turtles': 1,
          'denirolike': 1,
          'presence': 1,
          'hinting': 1,
          'capable': 1,
          'bigger': 1,
          'roles': 1,
          'hardly': 1,
          'enjoyed': 1,
          'intriguing': 1,
          'exist': 1,
          'strangest': 1,
          'bizarre': 1,
          'world': 1,
          'able': 1,
          'entities': 1,
          'exactly': 1,
          'pain': 1,
          'negative': 1,
          'sucessful': 1,
          'bringing': 1,
          'unnerved': 1,
          'freaked': 1,
          'ndespite': 1,
          'hardcore': 1,
          'nature': 1,
          'subsequent': 1,
          'rating': 1,
          'theres': 1,
          'rrated': 1,
          'version': 1,
          'near': 1,
          'anyone': 1,
          'looking': 1,
          'turnon': 1,
          'rent': 1,
          'regular': 1,
          'porno': 1,
          'npos': 1}),
 Counter({'scenes': 4,
          'movie': 2,
          'cold': 2,
          'minnesota': 2,
          'long': 2,
          'works': 2,
          'way': 2,
          'possible': 2,
          'get': 2,
          'shot': 2,
          'face': 2,
          'film': 2,
          'every': 2,
          'first': 1,
          'thing': 1,
          'notice': 1,
          'nplaced': 1,
          'north': 1,
          'dakota': 1,
          'winter': 1,
          'many': 1,
          'take': 1,
          'place': 1,
          'outside': 1,
          'snowcovered': 1,
          'ground': 1,
          'background': 1,
          'white': 1,
          'njust': 1,
          'need': 1,
          'bloomington': 1,
          'struggles': 1,
          'endless': 1,
          'night': 1,
          'nas': 1,
          'coen': 1,
          'brothers': 1,
          'films': 1,
          'features': 1,
          'outlandish': 1,
          'characters': 1,
          'nefarious': 1,
          'schemes': 1,
          'oddest': 1,
          'na': 1,
          'car': 1,
          'salesman': 1,
          'hires': 1,
          'couple': 1,
          'hoods': 1,
          'kidnap': 1,
          'wife': 1,
          'collect': 1,
          'ransom': 1,
          'father': 1,
          'nalong': 1,
          'everything': 1,
          'possibly': 1,
          'go': 1,
          'wrong': 1,
          'nin': 1,
          'brief': 1,
          'vicious': 1,
          'violence': 1,
          'people': 1,
          'head': 1,
          'back': 1,
          'chest': 1,
          'various': 1,
          'areas': 1,
          'anatomy': 1,
          'nthere': 1,
          'also': 1,
          'one': 1,
          'unpleasant': 1,
          'body': 1,
          'disposal': 1,
          'yet': 1,
          'seen': 1,
          'screen': 1,
          'nremarkably': 1,
          'enough': 1,
          'played': 1,
          'laughs': 1,
          'neven': 1,
          'remarkably': 1,
          'nthe': 1,
          'likable': 1,
          'person': 1,
          'pregnant': 1,
          'sheriff': 1,
          'frances': 1,
          'mcdormand': 1,
          'hunts': 1,
          'killers': 1,
          'eating': 1,
          'opportunity': 1,
          'nwith': 1,
          'good': 1,
          'audience': 1,
          'gains': 1,
          'new': 1,
          'knowledge': 1,
          'nhere': 1,
          'learn': 1,
          '_two_': 1,
          'things': 1,
          'neveryone': 1,
          'speaks': 1,
          'annoying': 1,
          'whining': 1,
          'accent': 1,
          'would': 1,
          'drive': 1,
          'crazy': 1,
          'nand': 1,
          'dont': 1,
          'violent': 1,
          'illegal': 1,
          'business': 1,
          'lowlife': 1,
          'amoral': 1,
          'degenerate': 1,
          'scumsucking': 1,
          'losers': 1,
          'noh': 1,
          'yeah': 1,
          'using': 1,
          'brightly': 1,
          'decorated': 1,
          'napkin': 1,
          'stop': 1,
          'bleeding': 1,
          'makes': 1,
          'look': 1,
          'goofy': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'also': 5,
          'character': 5,
          'ni': 5,
          'much': 5,
          'nin': 4,
          'fact': 4,
          'film': 4,
          'pretty': 4,
          'great': 3,
          'high': 3,
          'school': 3,
          'basketball': 3,
          'like': 3,
          'love': 3,
          'definitely': 3,
          'scene': 3,
          'nits': 3,
          '710': 3,
          'girl': 2,
          'coach': 2,
          'loves': 2,
          'set': 2,
          'one': 2,
          'thing': 2,
          'leads': 2,
          'see': 2,
          'nelson': 2,
          'shakespearian': 2,
          'performances': 2,
          'taking': 2,
          'especially': 2,
          'good': 2,
          'actor': 2,
          'side': 2,
          'things': 2,
          'appreciated': 2,
          'man': 2,
          'music': 2,
          'little': 2,
          'nthe': 2,
          'thats': 2,
          'final': 2,
          'plot': 1,
          'odin': 1,
          'player': 1,
          'nhes': 1,
          'dating': 1,
          'hot': 1,
          'ass': 1,
          'even': 1,
          'admits': 1,
          'fatherly': 1,
          'feelings': 1,
          'towards': 1,
          'nunfortunately': 1,
          'coachs': 1,
          'real': 1,
          'son': 1,
          'hugo': 1,
          'isnt': 1,
          'pleased': 1,
          'hear': 1,
          'doesnt': 1,
          'hearing': 1,
          'odins': 1,
          'triumphs': 1,
          'generally': 1,
          'supersede': 1,
          'nso': 1,
          'nwell': 1,
          'lets': 1,
          'say': 1,
          'starts': 1,
          'mess': 1,
          'peoples': 1,
          'heads': 1,
          'another': 1,
          'well': 1,
          'nyoull': 1,
          'ncritique': 1,
          'powerful': 1,
          'thoroughly': 1,
          'depressing': 1,
          'wellacted': 1,
          'nonteen': 1,
          'starring': 1,
          'bunch': 1,
          'teens': 1,
          'ncredit': 1,
          'director': 1,
          'tim': 1,
          'blake': 1,
          'creating': 1,
          'modern': 1,
          'day': 1,
          'version': 1,
          'classic': 1,
          'realistic': 1,
          'environment': 1,
          'championships': 1,
          'backdrop': 1,
          'impending': 1,
          'sense': 1,
          'doom': 1,
          'core': 1,
          'nyou': 1,
          'give': 1,
          'actors': 1,
          'turn': 1,
          'convincing': 1,
          'characters': 1,
          'ups': 1,
          'downs': 1,
          'nhartnett': 1,
          'applauded': 1,
          'despicable': 1,
          'dude': 1,
          'want': 1,
          'grab': 1,
          'throat': 1,
          'beat': 1,
          'shit': 1,
          'sign': 1,
          'ask': 1,
          'nphifer': 1,
          'comes': 1,
          'play': 1,
          'nice': 1,
          'blend': 1,
          'charisma': 1,
          'fear': 1,
          'anger': 1,
          'spread': 1,
          'always': 1,
          'guys': 1,
          'felt': 1,
          'sorry': 1,
          'moved': 1,
          'along': 1,
          'njulia': 1,
          'stiles': 1,
          'wasnt': 1,
          'different': 1,
          'others': 1,
          'shes': 1,
          'played': 1,
          'recently': 1,
          'however': 1,
          'surprised': 1,
          'martin': 1,
          'sheens': 1,
          'showing': 1,
          'since': 1,
          'hadnt': 1,
          'taken': 1,
          'seriously': 1,
          'past': 1,
          'years': 1,
          'nhis': 1,
          'overthetop': 1,
          'fervor': 1,
          'rage': 1,
          'ultimate': 1,
          'blind': 1,
          'desire': 1,
          'win': 1,
          'na': 1,
          'example': 1,
          'workaholic': 1,
          'trees': 1,
          'forest': 1,
          'reservations': 1,
          'though': 1,
          'nfirst': 1,
          'gangsta': 1,
          'hiphop': 1,
          'used': 1,
          'every': 1,
          'transition': 1,
          'nit': 1,
          'cute': 1,
          'first': 1,
          'became': 1,
          'obvious': 1,
          'annoying': 1,
          'times': 1,
          'edited': 1,
          'choppily': 1,
          'nsome': 1,
          'scenes': 1,
          'cut': 1,
          'cleaned': 1,
          'afterwards': 1,
          'didnt': 1,
          'hartnetts': 1,
          'behind': 1,
          'nastiness': 1,
          'goes': 1,
          'infallible': 1,
          'words': 1,
          'everything': 1,
          'says': 1,
          'asks': 1,
          'someone': 1,
          'happens': 1,
          'automatically': 1,
          'without': 1,
          'goofups': 1,
          'mean': 1,
          'know': 1,
          'guy': 1,
          'smart': 1,
          'would': 1,
          'realism': 1,
          'circumstances': 1,
          'nbut': 1,
          'overall': 1,
          'devastate': 1,
          'fun': 1,
          'date': 1,
          'team': 1,
          'black': 1,
          'star': 1,
          'falls': 1,
          'white': 1,
          'tracks': 1,
          'jealousy': 1,
          'envy': 1,
          'fury': 1,
          'passion': 1,
          'revenge': 1,
          'negative': 1,
          'thought': 1,
          'ever': 1,
          'passed': 1,
          'head': 1,
          'nis': 1,
          'worth': 1,
          'seeing': 1,
          'noh': 1,
          'n': 1,
          'pun': 1,
          'intended': 1,
          'moving': 1,
          'picture': 1,
          'speak': 1,
          'thank': 1,
          'god': 1,
          'outstanding': 1,
          'directorial': 1,
          'job': 1,
          'alone': 1,
          'enough': 1,
          'send': 1,
          'massive': 1,
          'chill': 1,
          'spine': 1,
          'impressed': 1,
          'directors': 1,
          'choice': 1,
          'near': 1,
          'end': 1,
          'whole': 1,
          'sequence': 1,
          'quite': 1,
          'reminiscent': 1,
          'showdown': 1,
          'taxi': 1,
          'driver': 1,
          'guess': 1,
          'saying': 1,
          'something': 1,
          'right': 1,
          'nwheres': 1,
          'joblo': 1,
          'coming': 1,
          'n10': 1,
          'hate': 1,
          'election': 1,
          'hamlet': 1,
          '610': 1,
          'labors': 1,
          'lost': 1,
          '810': 1,
          'natural': 1,
          'born': 1,
          'killers': 1,
          '910': 1,
          'save': 1,
          'last': 1,
          'dance': 1,
          'shakespeare': 1,
          '510': 1,
          'npos': 1}),
 Counter({'brooks': 5,
          'also': 3,
          'life': 2,
          'days': 2,
          'judgement': 2,
          'city': 2,
          'higher': 2,
          'torn': 2,
          'movie': 2,
          'away': 2,
          'defending': 1,
          'imaginative': 1,
          'vision': 1,
          'afterlife': 1,
          'twisted': 1,
          'mind': 1,
          'writerdirector': 1,
          'albert': 1,
          'stars': 1,
          'comedy': 1,
          'nafter': 1,
          'dying': 1,
          'car': 1,
          'crash': 1,
          'birthday': 1,
          'wakes': 1,
          'satirical': 1,
          'rendition': 1,
          'purgatory': 1,
          'beings': 1,
          'evaluate': 1,
          'lives': 1,
          'newly': 1,
          'deceased': 1,
          'earthlings': 1,
          'nbrooks': 1,
          'five': 1,
          'convince': 1,
          'two': 1,
          'judges': 1,
          'hes': 1,
          'worthy': 1,
          'passing': 1,
          'plains': 1,
          'existence': 1,
          'nenter': 1,
          'rip': 1,
          'slick': 1,
          'lawyer': 1,
          'defends': 1,
          'court': 1,
          'prosecutor': 1,
          'lee': 1,
          'grant': 1,
          'nduring': 1,
          'trial': 1,
          'must': 1,
          'view': 1,
          'episodes': 1,
          'screen': 1,
          'scenes': 1,
          'hysterically': 1,
          'funny': 1,
          'painfully': 1,
          'poignant': 1,
          'nits': 1,
          'impossible': 1,
          'resist': 1,
          'chuckling': 1,
          'cringing': 1,
          'try': 1,
          'explain': 1,
          'cowardly': 1,
          'behavior': 1,
          'earth': 1,
          'ntorn': 1,
          'particular': 1,
          'vintage': 1,
          'comic': 1,
          'form': 1,
          'walks': 1,
          'picture': 1,
          'nthe': 1,
          'features': 1,
          'meryl': 1,
          'streep': 1,
          'appealing': 1,
          'loveinterest': 1,
          'shirley': 1,
          'maclaine': 1,
          'pops': 1,
          'hilarious': 1,
          'cameo': 1,
          'nwhile': 1,
          'film': 1,
          'uneven': 1,
          'many': 1,
          'gags': 1,
          'price': 1,
          'less': 1,
          'ntake': 1,
          'example': 1,
          'food': 1,
          'always': 1,
          'delicious': 1,
          'youve': 1,
          'ever': 1,
          'tasted': 1,
          'nand': 1,
          'caloriefreeso': 1,
          'chow': 1,
          'npos': 1}),
 Counter({'zero': 10,
          'zeros': 6,
          'part': 5,
          'character': 5,
          'case': 5,
          'nhowever': 5,
          'scenes': 5,
          'kasdan': 3,
          'one': 3,
          'film': 3,
          'nhe': 3,
          'many': 3,
          'effect': 3,
          'never': 3,
          'well': 3,
          'best': 2,
          'around': 2,
          'detective': 2,
          'mystery': 2,
          'nfor': 2,
          'pullman': 2,
          'though': 2,
          'rather': 2,
          'even': 2,
          'way': 2,
          'detachment': 2,
          'makes': 2,
          'arlo': 2,
          'ben': 2,
          'brilliance': 2,
          'behavior': 2,
          'frustrating': 2,
          'nand': 2,
          'nthis': 2,
          'stark': 2,
          'kept': 2,
          'box': 2,
          'key': 2,
          'time': 2,
          'gloria': 2,
          'may': 2,
          'less': 2,
          'nzero': 2,
          'daryl': 2,
          'theres': 2,
          'place': 2,
          'begins': 2,
          'viewer': 2,
          'moment': 2,
          'jake': 1,
          'son': 1,
          'screenwriters': 1,
          'breaks': 1,
          'filmmaking': 1,
          'writing': 1,
          'directing': 1,
          'hardtocategorize': 1,
          'story': 1,
          'comedy': 1,
          'study': 1,
          'romance': 1,
          'manages': 1,
          'combine': 1,
          'genres': 1,
          'successfully': 1,
          'create': 1,
          'captivating': 1,
          'ndaryl': 1,
          'bill': 1,
          'modern': 1,
          'day': 1,
          'sherlock': 1,
          'holmes': 1,
          'nthe': 1,
          'parallel': 1,
          'present': 1,
          'love': 1,
          'music': 1,
          'plays': 1,
          'guitar': 1,
          'violin': 1,
          'addiction': 1,
          'drugs': 1,
          'amphetamines': 1,
          'morphine': 1,
          'titles': 1,
          'cases': 1,
          'sherlockian': 1,
          'epigrams': 1,
          'mismatched': 1,
          'shoelaces': 1,
          'man': 1,
          'lied': 1,
          'age': 1,
          'hired': 1,
          'gun': 1,
          'made': 1,
          'mistakes': 1,
          'observance': 1,
          'fine': 1,
          'art': 1,
          'brilliant': 1,
          'private': 1,
          'investigator': 1,
          'somewhat': 1,
          'selfimposed': 1,
          'outcast': 1,
          'society': 1,
          'could': 1,
          'nothing': 1,
          'without': 1,
          'legwork': 1,
          'trusty': 1,
          'assistant': 1,
          'dr': 1,
          'watson': 1,
          'mean': 1,
          'steve': 1,
          'stiller': 1,
          'narlo': 1,
          'happy': 1,
          'job': 1,
          'thrilled': 1,
          'bizarre': 1,
          'strange': 1,
          'requests': 1,
          'former': 1,
          'lawyer': 1,
          'theyre': 1,
          'girlfriend': 1,
          'jess': 1,
          'angela': 1,
          'featherstone': 1,
          'fed': 1,
          'boyfriends': 1,
          'boss': 1,
          'means': 1,
          'situation': 1,
          'new': 1,
          'comes': 1,
          'knocking': 1,
          'ngregory': 1,
          'ryan': 1,
          'oneill': 1,
          'hires': 1,
          'find': 1,
          'lost': 1,
          'keys': 1,
          'nit': 1,
          'seems': 1,
          'safety': 1,
          'deposit': 1,
          'ring': 1,
          'apparently': 1,
          'contains': 1,
          'incriminating': 1,
          'evidence': 1,
          'nnow': 1,
          'blackmailed': 1,
          'needs': 1,
          'reclaim': 1,
          'nightmare': 1,
          'end': 1,
          'nto': 1,
          'solve': 1,
          'reluctantly': 1,
          'crawls': 1,
          'shell': 1,
          'vulnerable': 1,
          'falls': 1,
          'charms': 1,
          'wily': 1,
          'paramedic': 1,
          'sullivan': 1,
          'kim': 1,
          'dickens': 1,
          'involved': 1,
          'blackmail': 1,
          'scheme': 1,
          'first': 1,
          'question': 1,
          'objectivity': 1,
          'finds': 1,
          'client': 1,
          'sympathetic': 1,
          'weakest': 1,
          'obviously': 1,
          'wacky': 1,
          'depicting': 1,
          'odd': 1,
          'nsuch': 1,
          'might': 1,
          'appropriate': 1,
          'outandout': 1,
          'satire': 1,
          'making': 1,
          'ace': 1,
          'venturaish': 1,
          'much': 1,
          'meatier': 1,
          'movie': 1,
          'takes': 1,
          'get': 1,
          'nthats': 1,
          'say': 1,
          'humor': 1,
          'nin': 1,
          'fact': 1,
          'stillers': 1,
          'wonderfully': 1,
          'underplayed': 1,
          'comic': 1,
          'moments': 1,
          'absolute': 1,
          'disgust': 1,
          'frustration': 1,
          'employer': 1,
          'overthetop': 1,
          'quite': 1,
          'gel': 1,
          'rest': 1,
          'arent': 1,
          'funny': 1,
          'enough': 1,
          'stand': 1,
          'nonce': 1,
          'investigation': 1,
          'underway': 1,
          'however': 1,
          'really': 1,
          'shine': 1,
          'nhis': 1,
          'lightning': 1,
          'quick': 1,
          'inferences': 1,
          'fascinating': 1,
          'sherlocks': 1,
          'nas': 1,
          'unfold': 1,
          'deductions': 1,
          'lead': 1,
          'plot': 1,
          'interesting': 1,
          'directions': 1,
          'lose': 1,
          'works': 1,
          'romantic': 1,
          'nzeros': 1,
          'relationship': 1,
          'lowkey': 1,
          'hits': 1,
          'right': 1,
          'notes': 1,
          'always': 1,
          'distant': 1,
          'glorias': 1,
          'nshes': 1,
          'given': 1,
          'plenty': 1,
          'development': 1,
          'understand': 1,
          'thinking': 1,
          'nperhaps': 1,
          'intentional': 1,
          'audience': 1,
          'zone': 1,
          'nbut': 1,
          'whole': 1,
          'nbill': 1,
          'hes': 1,
          'spacing': 1,
          'creates': 1,
          'vibrant': 1,
          'ntheres': 1,
          'briefly': 1,
          'connects': 1,
          'world': 1,
          'managed': 1,
          'detach': 1,
          'years': 1,
          'shockingly': 1,
          'moving': 1,
          'expressing': 1,
          'seriousness': 1,
          'heretofore': 1,
          'unassociated': 1,
          'fits': 1,
          'although': 1,
          'sometimes': 1,
          'hard': 1,
          'take': 1,
          'called': 1,
          'seriously': 1,
          'understands': 1,
          'meaning': 1,
          'behind': 1,
          'name': 1,
          'nalthough': 1,
          'bit': 1,
          'awkward': 1,
          'places': 1,
          'strong': 1,
          'debut': 1,
          'shows': 1,
          'great': 1,
          'promise': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'earth': 4,
          'film': 4,
          'blood': 4,
          'far': 3,
          'scifi': 3,
          'johnson': 3,
          'michael': 3,
          'york': 3,
          'nbut': 3,
          'nand': 3,
          'one': 3,
          'nnot': 2,
          '1988': 2,
          'remake': 2,
          'real': 2,
          'quite': 2,
          'best': 2,
          'bmovie': 2,
          'original': 2,
          'time': 2,
          'video': 2,
          'alien': 2,
          'eccentric': 2,
          'nhe': 2,
          'nurse': 2,
          'amanda': 2,
          'performance': 2,
          'cool': 2,
          'made': 2,
          'doesnt': 2,
          'schlock': 2,
          'given': 2,
          'well': 1,
          'ill': 1,
          'damned': 1,
          'excellent': 1,
          'surprise': 1,
          'confused': 1,
          'campy': 1,
          'inferior': 1,
          'starring': 1,
          'exporn': 1,
          'star': 1,
          'traci': 1,
          'lords': 1,
          'recent': 1,
          'attempt': 1,
          'remaking': 1,
          '1950s': 1,
          'drivein': 1,
          'schlockfest': 1,
          'gem': 1,
          'possibly': 1,
          'flick': 1,
          '1995': 1,
          'nonce': 1,
          'king': 1,
          'roger': 1,
          'corman': 1,
          'behind': 1,
          'effort': 1,
          'directed': 1,
          'appears': 1,
          'role': 1,
          'executive': 1,
          'producer': 1,
          'rest': 1,
          'crew': 1,
          'cast': 1,
          'relative': 1,
          'unknowns': 1,
          'nit': 1,
          'seems': 1,
          'criminal': 1,
          'released': 1,
          'direct': 1,
          'countries': 1,
          'absolute': 1,
          'mustsee': 1,
          'fans': 1,
          'treat': 1,
          'anyone': 1,
          'enjoys': 1,
          'decently': 1,
          'acted': 1,
          'written': 1,
          'thrillers': 1,
          'kooky': 1,
          'bent': 1,
          'plot': 1,
          'brief': 1,
          'npaul': 1,
          'posing': 1,
          'millionaire': 1,
          'though': 1,
          'needing': 1,
          'kill': 1,
          'people': 1,
          'live': 1,
          'visiting': 1,
          'selfish': 1,
          'reasons': 1,
          'nhis': 1,
          'race': 1,
          'dying': 1,
          'mysterious': 1,
          'disease': 1,
          'desperately': 1,
          'trying': 1,
          'find': 1,
          'cure': 1,
          'key': 1,
          'lies': 1,
          'humans': 1,
          'visits': 1,
          'soon': 1,
          'puts': 1,
          'spell': 1,
          'respected': 1,
          'physician': 1,
          'dr': 1,
          'rochelle': 1,
          'hypnotises': 1,
          'secret': 1,
          'research': 1,
          'behalf': 1,
          'also': 1,
          'doctor': 1,
          'convince': 1,
          'smart': 1,
          'sexy': 1,
          'elizabeth': 1,
          'barondes': 1,
          'move': 1,
          'private': 1,
          'give': 1,
          'transfusions': 1,
          'constantly': 1,
          'requires': 1,
          'long': 1,
          'johnsons': 1,
          'sleazy': 1,
          'chauffeur': 1,
          'release': 1,
          'lot': 1,
          'ni': 1,
          'must': 1,
          'admit': 1,
          'first': 1,
          'glimpse': 1,
          'cover': 1,
          'encouraging': 1,
          'nbritish': 1,
          'actor': 1,
          'appeared': 1,
          'stinkers': 1,
          'past': 1,
          'decades': 1,
          'cry': 1,
          'quality': 1,
          'fare': 1,
          'younger': 1,
          'days': 1,
          'caberat': 1,
          '1972': 1,
          'human': 1,
          'disguise': 1,
          'nothing': 1,
          'short': 1,
          'outstanding': 1,
          'weird': 1,
          'twitches': 1,
          'bizarre': 1,
          'modes': 1,
          'speech': 1,
          'dapper': 1,
          'clothes': 1,
          'spectacles': 1,
          'unexpected': 1,
          'pathos': 1,
          'invests': 1,
          'character': 1,
          'nyork': 1,
          'turns': 1,
          'hilarious': 1,
          'menacing': 1,
          'tragic': 1,
          'nthis': 1,
          'tourdeforce': 1,
          'simply': 1,
          'ive': 1,
          'seen': 1,
          'obviously': 1,
          'modest': 1,
          'budget': 1,
          'boasts': 1,
          'enormous': 1,
          'strengths': 1,
          'casting': 1,
          'spot': 1,
          'acting': 1,
          'terrific': 1,
          'script': 1,
          'intelligent': 1,
          'witty': 1,
          'consistently': 1,
          'engaging': 1,
          'cleverly': 1,
          'updating': 1,
          'balance': 1,
          'horror': 1,
          'humour': 1,
          'perfect': 1,
          'marked': 1,
          'contrast': 1,
          'earlier': 1,
          'drag': 1,
          'second': 1,
          '90': 1,
          'minute': 1,
          'running': 1,
          'thanks': 1,
          'tight': 1,
          'editing': 1,
          'sure': 1,
          'hand': 1,
          'littleknown': 1,
          'director': 1,
          'terrance': 1,
          'h': 1,
          'winkless': 1,
          'matter': 1,
          'bit': 1,
          'special': 1,
          'effects': 1,
          'cheesy': 1,
          'even': 1,
          'high': 1,
          'class': 1,
          'nin': 1,
          'fact': 1,
          'criticism': 1,
          'things': 1,
          'get': 1,
          'tad': 1,
          'weak': 1,
          'towards': 1,
          'end': 1,
          'ntighter': 1,
          'direction': 1,
          'could': 1,
          'climax': 1,
          'urgency': 1,
          'characters': 1,
          'act': 1,
          'rather': 1,
          'illogically': 1,
          'lifethreatening': 1,
          'situation': 1,
          'minor': 1,
          'complaints': 1,
          'njust': 1,
          'see': 1,
          'biggest': 1,
          'surprises': 1,
          'years': 1,
          'swoop': 1,
          'youve': 1,
          'legend': 1,
          'dude': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'rush': 8,
          'hour': 8,
          'carter': 7,
          'chan': 6,
          'tucker': 5,
          'film': 5,
          'time': 5,
          'lee': 5,
          'jackie': 4,
          '2': 4,
          'bad': 4,
          'well': 3,
          'original': 3,
          'getting': 3,
          'first': 3,
          'point': 3,
          'hong': 3,
          'kong': 3,
          'chief': 3,
          'friend': 3,
          'high': 3,
          'best': 3,
          'takes': 3,
          'gives': 3,
          'ratner': 2,
          'chris': 2,
          'genre': 2,
          'million': 2,
          'team': 2,
          'better': 2,
          'combo': 2,
          'terrific': 2,
          'physical': 2,
          'motor': 2,
          'mouth': 2,
          'made': 2,
          'duet': 2,
          'around': 2,
          'nim': 2,
          'wastes': 2,
          'characters': 2,
          'developed': 2,
          'right': 2,
          'us': 2,
          'two': 2,
          'american': 2,
          'much': 2,
          'case': 2,
          'get': 2,
          'chemistry': 2,
          'things': 2,
          'rh2': 2,
          'chans': 2,
          'artistry': 2,
          'martial': 2,
          'arts': 2,
          'work': 2,
          'guys': 2,
          'continues': 2,
          'look': 2,
          'las': 2,
          'vegas': 2,
          'casino': 2,
          'watch': 2,
          'nwhen': 2,
          'big': 2,
          'fun': 2,
          'karaoke': 2,
          'bar': 2,
          'guy': 2,
          'ricky': 2,
          'tan': 2,
          'lone': 2,
          'stage': 2,
          'move': 2,
          'fast': 2,
          'make': 2,
          'behind': 2,
          'doesnt': 2,
          'camera': 2,
          'summer': 2,
          '1998': 1,
          'director': 1,
          'brett': 1,
          'stars': 1,
          'breathed': 1,
          'new': 1,
          'life': 1,
          'buddyaction': 1,
          'crosscultural': 1,
          'tune': 1,
          '250': 1,
          'nyou': 1,
          'dont': 1,
          'mess': 1,
          'success': 1,
          'back': 1,
          'talents': 1,
          'nonstop': 1,
          'ethnically': 1,
          'unusual': 1,
          'played': 1,
          'audiences': 1,
          'world': 1,
          'formula': 1,
          'worked': 1,
          'fact': 1,
          'sequel': 1,
          'inevitable': 1,
          'never': 1,
          'thrilled': 1,
          'idea': 1,
          'followup': 1,
          'successful': 1,
          'since': 1,
          'rarely': 1,
          'meet': 1,
          'previously': 1,
          'set': 1,
          'expectations': 1,
          'nsurprisingly': 1,
          'business': 1,
          'turns': 1,
          'flick': 1,
          'spawned': 1,
          'script': 1,
          'jeff': 1,
          'nathanson': 1,
          'utilizing': 1,
          'ross': 1,
          'lamanna': 1,
          'start': 1,
          'nterrorists': 1,
          'bombed': 1,
          'embassy': 1,
          'killing': 1,
          'translators': 1,
          'inspector': 1,
          'handed': 1,
          'job': 1,
          'solving': 1,
          'crime': 1,
          'nconcurrently': 1,
          'james': 1,
          'arrives': 1,
          'island': 1,
          'needed': 1,
          'rr': 1,
          'expects': 1,
          'spend': 1,
          'show': 1,
          'sights': 1,
          'ninstead': 1,
          'drags': 1,
          'duo': 1,
          'involved': 1,
          'stopping': 1,
          'conspiracy': 1,
          'counterfeit': 1,
          'hundreds': 1,
          'dollars': 1,
          'makers': 1,
          'working': 1,
          'distinct': 1,
          'advantage': 1,
          'nwe': 1,
          'viewer': 1,
          'familiar': 1,
          'lead': 1,
          'alreadyexisting': 1,
          'nthat': 1,
          'probably': 1,
          'saving': 1,
          'pair': 1,
          'wears': 1,
          'friendship': 1,
          'like': 1,
          'comfortable': 1,
          'suit': 1,
          'nlittle': 1,
          'wasted': 1,
          'know': 1,
          'key': 1,
          'players': 1,
          'screenplay': 1,
          'capitalizes': 1,
          'liked': 1,
          'nfirst': 1,
          'foremost': 1,
          'immense': 1,
          'pleasure': 1,
          'watching': 1,
          'fight': 1,
          'choreography': 1,
          '47year': 1,
          'old': 1,
          'master': 1,
          'renowned': 1,
          'reputation': 1,
          'stunt': 1,
          'disappoint': 1,
          'nchans': 1,
          'use': 1,
          'props': 1,
          'battling': 1,
          'pulverizes': 1,
          'opponents': 1,
          'whatever': 1,
          'item': 1,
          'comes': 1,
          'hand': 1,
          'trash': 1,
          'bucket': 1,
          'nhis': 1,
          'moves': 1,
          'every': 1,
          'bit': 1,
          'good': 1,
          'ever': 1,
          'fights': 1,
          'four': 1,
          'five': 1,
          'nemesis': 1,
          'bamboo': 1,
          'scaffolding': 1,
          'tail': 1,
          'end': 1,
          'yacht': 1,
          'massage': 1,
          'parlor': 1,
          'finale': 1,
          'nlike': 1,
          'harold': 1,
          'lloyd': 1,
          'buster': 1,
          'keaton': 1,
          'pride': 1,
          'putting': 1,
          'self': 1,
          'line': 1,
          'pursuit': 1,
          'joy': 1,
          'nchris': 1,
          'reprises': 1,
          'role': 1,
          'mouthed': 1,
          'la': 1,
          'cop': 1,
          'teams': 1,
          'put': 1,
          'unceremoniously': 1,
          'pulled': 1,
          'vacation': 1,
          'help': 1,
          'colleague': 1,
          'still': 1,
          'looks': 1,
          'goes': 1,
          'lair': 1,
          'john': 1,
          'hoods': 1,
          'spotlight': 1,
          'credible': 1,
          'michael': 1,
          'jackson': 1,
          'riff': 1,
          'comedian': 1,
          'improv': 1,
          'screen': 1,
          'franchise': 1,
          'hang': 1,
          'coat': 1,
          'pay': 1,
          'bills': 1,
          'flying': 1,
          'feet': 1,
          'fists': 1,
          'tuckers': 1,
          'endearing': 1,
          'riggs': 1,
          'murtaugh': 1,
          'lethal': 1,
          'weapon': 1,
          'films': 1,
          'supporting': 1,
          'cast': 1,
          'along': 1,
          'efficiently': 1,
          'njohn': 1,
          'suave': 1,
          'villain': 1,
          'real': 1,
          'power': 1,
          'throne': 1,
          'bigwig': 1,
          'steven': 1,
          'reign': 1,
          'alan': 1,
          'king': 1,
          'walk': 1,
          'performance': 1,
          'nlone': 1,
          'chew': 1,
          'scenery': 1,
          'pronouncements': 1,
          'elegance': 1,
          'nzhang': 1,
          'ziyi': 1,
          'crouching': 1,
          'tiger': 1,
          'hidden': 1,
          'dragon': 1,
          'display': 1,
          'skills': 1,
          'rickys': 1,
          'taciturn': 1,
          'henchlady': 1,
          'hu': 1,
          'li': 1,
          'carries': 1,
          'ongoing': 1,
          'battle': 1,
          'n': 1,
          'problem': 1,
          'hitting': 1,
          'woman': 1,
          'falls': 1,
          'aside': 1,
          'eventual': 1,
          'oneonone': 1,
          'melee': 1,
          'conclusion': 1,
          'nroselyn': 1,
          'sanchez': 1,
          'knockdown': 1,
          'gorgeous': 1,
          'resembles': 1,
          'sandra': 1,
          'bullock': 1,
          'undercover': 1,
          'agent': 1,
          'isabella': 1,
          'molina': 1,
          'add': 1,
          'equation': 1,
          'ndirector': 1,
          'production': 1,
          'assembled': 1,
          'crew': 1,
          'skilled': 1,
          'craftsmen': 1,
          'ncinematographer': 1,
          'matthew': 1,
          'f': 1,
          'leonetti': 1,
          'long': 1,
          'career': 1,
          'shooting': 1,
          'action': 1,
          'flicks': 1,
          'fluid': 1,
          'movement': 1,
          'needs': 1,
          'nproduction': 1,
          'design': 1,
          'terrence': 1,
          'marsh': 1,
          'spans': 1,
          'continents': 1,
          'whether': 1,
          'stakes': 1,
          'rest': 1,
          'techs': 1,
          'quality': 1,
          'surprised': 1,
          'even': 1,
          'say': 1,
          'entertaining': 1,
          'blockbuster': 1,
          'movies': 1,
          'nit': 1,
          'kicks': 1,
          'jurassic': 1,
          'dino': 1,
          'butt': 1,
          'frolic': 1,
          'pace': 1,
          'mainstream': 1,
          'thing': 1,
          'far': 1,
          'ni': 1,
          'give': 1,
          'b': 1,
          'npos': 1}),
 Counter({'actor': 6,
          'hamlet': 5,
          'well': 5,
          'shakespeare': 4,
          'english': 4,
          'nhamlet': 4,
          'nthe': 4,
          'branagh': 4,
          'scene': 4,
          'hamlets': 4,
          'high': 3,
          'would': 3,
          'nif': 3,
          'right': 3,
          'read': 3,
          'king': 3,
          'ghost': 3,
          'story': 3,
          'help': 3,
          'scenes': 3,
          'also': 3,
          'quite': 3,
          'nin': 3,
          'nas': 3,
          'actors': 3,
          'many': 3,
          'heston': 3,
          'time': 3,
          'us': 3,
          'school': 2,
          'kenneth': 2,
          'branaghs': 2,
          'might': 2,
          'lover': 2,
          'something': 2,
          'denmark': 2,
          'kings': 2,
          'brother': 2,
          'claudius': 2,
          'play': 2,
          'nhis': 2,
          'father': 2,
          'friend': 2,
          'horatio': 2,
          'treachery': 2,
          'one': 2,
          'grand': 2,
          'equally': 2,
          'characters': 2,
          'film': 2,
          'best': 2,
          'directing': 2,
          'around': 2,
          'much': 2,
          'seems': 2,
          'classic': 2,
          'nrichard': 2,
          'excellent': 2,
          'known': 2,
          'lines': 2,
          'think': 2,
          'attention': 2,
          'ni': 2,
          'lemmon': 2,
          'lord': 2,
          'role': 2,
          'two': 2,
          'handsome': 2,
          'kind': 2,
          'hardly': 1,
          'understood': 1,
          'nwhy': 1,
          'want': 1,
          'grade': 1,
          'doesnt': 1,
          'count': 1,
          'attitude': 1,
          'ill': 1,
          'say': 1,
          'bat': 1,
          'probably': 1,
          'stop': 1,
          'reading': 1,
          'however': 1,
          'bard': 1,
          'least': 1,
          'openminded': 1,
          'challenging': 1,
          'script': 1,
          'rotten': 1,
          'state': 1,
          'nnamely': 1,
          'died': 1,
          'widow': 1,
          'queen': 1,
          'wed': 1,
          'prince': 1,
          'suspects': 1,
          'foul': 1,
          'suspicions': 1,
          'confirmed': 1,
          'appears': 1,
          'relates': 1,
          'murder': 1,
          'brothers': 1,
          'hands': 1,
          'enlisting': 1,
          'conspires': 1,
          'capture': 1,
          'conscience': 1,
          'new': 1,
          'expose': 1,
          'game': 1,
          'afoot': 1,
          'first': 1,
          'things': 1,
          'notice': 1,
          'production': 1,
          'sets': 1,
          'costumes': 1,
          'nwith': 1,
          'external': 1,
          'filmed': 1,
          'blemheim': 1,
          'palace': 1,
          'england': 1,
          'sites': 1,
          'recent': 1,
          'avengers': 1,
          'grandiose': 1,
          'quality': 1,
          'setting': 1,
          'immediately': 1,
          'established': 1,
          'ninterior': 1,
          'similarly': 1,
          'graced': 1,
          'intricate': 1,
          'flamboyant': 1,
          'rooms': 1,
          'chambers': 1,
          'castles': 1,
          'throne': 1,
          'room': 1,
          'impressive': 1,
          'piece': 1,
          'work': 1,
          'incorporating': 1,
          'ceilings': 1,
          'mirrorpanel': 1,
          'doors': 1,
          'bridges': 1,
          'connect': 1,
          'opposite': 1,
          'sides': 1,
          'secondstory': 1,
          'loft': 1,
          'ncostuming': 1,
          'drawing': 1,
          'upon': 1,
          'history': 1,
          'imagination': 1,
          'nnot': 1,
          '1600s': 1,
          'attire': 1,
          'cross': 1,
          'era': 1,
          'turn': 1,
          'century': 1,
          'russia': 1,
          'effectively': 1,
          'giving': 1,
          'timeless': 1,
          'feel': 1,
          'nit': 1,
          'surprising': 1,
          'tim': 1,
          'harvey': 1,
          'alexandra': 1,
          'byrne': 1,
          'nominated': 1,
          'art': 1,
          'direction': 1,
          'costume': 1,
          'design': 1,
          'oscars': 1,
          'respectively': 1,
          'addition': 1,
          'plays': 1,
          'title': 1,
          'character': 1,
          'revengedriven': 1,
          'royal': 1,
          'heir': 1,
          'provides': 1,
          'riveting': 1,
          'performance': 1,
          'emotional': 1,
          'highs': 1,
          'lows': 1,
          'nfrom': 1,
          'anticipation': 1,
          'seeing': 1,
          'fathers': 1,
          'melancholy': 1,
          'finding': 1,
          'burial': 1,
          'site': 1,
          'childhood': 1,
          'jester': 1,
          'eventual': 1,
          'wrath': 1,
          'delivers': 1,
          'spades': 1,
          'nevery': 1,
          'truly': 1,
          'revolves': 1,
          'tribute': 1,
          'acting': 1,
          'shakespeares': 1,
          'manuscript': 1,
          'whos': 1,
          'shakespeareantrained': 1,
          'watching': 1,
          'perform': 1,
          'craft': 1,
          'love': 1,
          'delight': 1,
          'njulie': 1,
          'christie': 1,
          'mother': 1,
          'gertrude': 1,
          'derek': 1,
          'jacobi': 1,
          'murderous': 1,
          'uncle': 1,
          'fill': 1,
          'roles': 1,
          'superbly': 1,
          'supporting': 1,
          'players': 1,
          'nkate': 1,
          'winslet': 1,
          'ophelia': 1,
          'outstanding': 1,
          'job': 1,
          'demonstrating': 1,
          'plummet': 1,
          'depths': 1,
          'dispair': 1,
          'madness': 1,
          'briers': 1,
          'ophelias': 1,
          'polonius': 1,
          'michael': 1,
          'moloney': 1,
          'laertes': 1,
          'convincing': 1,
          'nnicholas': 1,
          'farrell': 1,
          'trusted': 1,
          'timothy': 1,
          'spall': 1,
          'reece': 1,
          'dinsdale': 1,
          'twotiming': 1,
          'rosencrantz': 1,
          'guildenstern': 1,
          'round': 1,
          'core': 1,
          'cast': 1,
          'someone': 1,
          'tried': 1,
          'stuff': 1,
          'possible': 1,
          'cases': 1,
          'made': 1,
          'interesting': 1,
          'nbilly': 1,
          'crystal': 1,
          'surprisingly': 1,
          'good': 1,
          'gravedigger': 1,
          'unearths': 1,
          'skull': 1,
          'yorick': 1,
          'knew': 1,
          'ncrystal': 1,
          'proves': 1,
          'able': 1,
          'deliver': 1,
          'timing': 1,
          'verbal': 1,
          'countenance': 1,
          'comedian': 1,
          'result': 1,
          'funny': 1,
          'nhowever': 1,
          'charleton': 1,
          'butcher': 1,
          'biggest': 1,
          'surprise': 1,
          'player': 1,
          'leader': 1,
          'troupe': 1,
          'traveling': 1,
          'absolutely': 1,
          'breathtaking': 1,
          'narrating': 1,
          'priam': 1,
          'hecuba': 1,
          'npart': 1,
          'monologue': 1,
          'overlaid': 1,
          'visual': 1,
          'enactment': 1,
          'sir': 1,
          'john': 1,
          'gielgud': 1,
          'judi': 1,
          'dench': 1,
          'unfortunate': 1,
          'robs': 1,
          'deserves': 1,
          'offcamera': 1,
          'speaking': 1,
          'gripping': 1,
          'sort': 1,
          'downplays': 1,
          'narration': 1,
          'done': 1,
          'wellvoiced': 1,
          'wish': 1,
          'chosen': 1,
          'allow': 1,
          'envision': 1,
          'minds': 1,
          'lays': 1,
          'let': 1,
          'venerable': 1,
          'nunfortunately': 1,
          'casting': 1,
          'choices': 1,
          'led': 1,
          'poor': 1,
          'distractions': 1,
          'njack': 1,
          'cant': 1,
          'marcellus': 1,
          'guard': 1,
          'sees': 1,
          'elder': 1,
          'sadly': 1,
          'underperforms': 1,
          'shown': 1,
          'left': 1,
          'ngerard': 1,
          'depardieu': 1,
          'another': 1,
          'talented': 1,
          'wasted': 1,
          'given': 1,
          'little': 1,
          'utterances': 1,
          'yes': 1,
          'reynaldo': 1,
          'attenborough': 1,
          'literally': 1,
          'walkon': 1,
          'showing': 1,
          'eleventh': 1,
          'hour': 1,
          'ambassador': 1,
          'nthen': 1,
          'rufus': 1,
          'sewell': 1,
          'fortinbras': 1,
          'norway': 1,
          'nwhen': 1,
          'went': 1,
          'see': 1,
          'dangerous': 1,
          'beauty': 1,
          'earlier': 1,
          'year': 1,
          'ladies': 1,
          'behind': 1,
          'kept': 1,
          'commenting': 1,
          'bulging': 1,
          'eyes': 1,
          'idea': 1,
          'guess': 1,
          'comic': 1,
          'marty': 1,
          'feldman': 1,
          'sex': 1,
          'symbol': 1,
          'complicated': 1,
          'tale': 1,
          'revenge': 1,
          'triumph': 1,
          'defeat': 1,
          'become': 1,
          'nbranagh': 1,
          'attempts': 1,
          'intricacies': 1,
          'visually': 1,
          'representing': 1,
          'elusive': 1,
          'stretches': 1,
          'dialogue': 1,
          'presenting': 1,
          'flashbacktype': 1,
          'images': 1,
          'nthis': 1,
          'works': 1,
          'half': 1,
          'wonder': 1,
          'without': 1,
          'nyou': 1,
          'dont': 1,
          'genius': 1,
          'appreciate': 1,
          'difficult': 1,
          'understand': 1,
          'unless': 1,
          'hear': 1,
          'carefully': 1,
          'repeatedly': 1,
          'alternate': 1,
          'method': 1,
          'comprehension': 1,
          'familiar': 1,
          'course': 1,
          'hopefully': 1,
          'fortunate': 1,
          'enough': 1,
          'educator': 1,
          'willing': 1,
          'plot': 1,
          'points': 1,
          'nuances': 1,
          'essential': 1,
          'understanding': 1,
          'written': 1,
          'rigmarole': 1,
          'suppose': 1,
          'could': 1,
          'cliff': 1,
          'notes': 1,
          'npos': 1}),
 Counter({'nthe': 11,
          'hank': 8,
          'nhe': 6,
          'carly': 6,
          'family': 6,
          'co': 5,
          'tests': 4,
          'two': 4,
          'deal': 4,
          'film': 4,
          'one': 3,
          'ncarly': 3,
          'tries': 3,
          'home': 3,
          'even': 3,
          'wife': 3,
          'military': 2,
          'jones': 2,
          'army': 2,
          'time': 2,
          'underground': 2,
          'also': 2,
          'way': 2,
          'shes': 2,
          'shed': 2,
          'violent': 2,
          'husband': 2,
          'daughters': 2,
          'testing': 2,
          'alabama': 2,
          'new': 2,
          'try': 2,
          'things': 2,
          'together': 2,
          'problems': 2,
          'locane': 2,
          'cos': 2,
          'mother': 2,
          'nhank': 2,
          'put': 2,
          'strong': 2,
          'performances': 2,
          'stagner': 2,
          'year': 1,
          '1962': 1,
          'conducting': 1,
          'nuclear': 1,
          'testings': 1,
          'ninvolved': 1,
          'marshall': 1,
          'colonel': 1,
          'critical': 1,
          'aboveground': 1,
          'done': 1,
          'urges': 1,
          'belowground': 1,
          'consider': 1,
          'learned': 1,
          'soviets': 1,
          'conducted': 1,
          'nmarshall': 1,
          'troubled': 1,
          'turbulent': 1,
          'marriage': 1,
          'lange': 1,
          'topless': 1,
          'bases': 1,
          'beach': 1,
          'full': 1,
          'view': 1,
          'entire': 1,
          'personnel': 1,
          'nhanks': 1,
          'reaction': 1,
          'amusement': 1,
          'nhes': 1,
          'deals': 1,
          'knows': 1,
          'problem': 1,
          'manicdepressive': 1,
          'isnt': 1,
          'flirting': 1,
          'man': 1,
          'happens': 1,
          'near': 1,
          'fantasizing': 1,
          'fictious': 1,
          'world': 1,
          'rather': 1,
          'ntypical': 1,
          'mental': 1,
          'illness': 1,
          'promiscuous': 1,
          'foultempered': 1,
          'mood': 1,
          'swings': 1,
          'quick': 1,
          'torment': 1,
          'puts': 1,
          'considerable': 1,
          'nfrom': 1,
          'hanks': 1,
          'reports': 1,
          'state': 1,
          'opposition': 1,
          'armys': 1,
          'methods': 1,
          'transferred': 1,
          'hawaii': 1,
          'patterns': 1,
          'movie': 1,
          'stars': 1,
          'become': 1,
          'marilyn': 1,
          'monroe': 1,
          'bleachblond': 1,
          'pretty': 1,
          'rundown': 1,
          'depressing': 1,
          'sets': 1,
          'tantrum': 1,
          'nafter': 1,
          'meeting': 1,
          'commanding': 1,
          'officer': 1,
          'booth': 1,
          'sees': 1,
          'familiar': 1,
          'pattern': 1,
          'begin': 1,
          'repeat': 1,
          'openly': 1,
          'flirts': 1,
          'situation': 1,
          'resort': 1,
          'carry': 1,
          'throw': 1,
          'nearby': 1,
          'pool': 1,
          'narguments': 1,
          'ensue': 1,
          'becomes': 1,
          'alienated': 1,
          'interested': 1,
          'pursuing': 1,
          'encounter': 1,
          'sends': 1,
          'observe': 1,
          'test': 1,
          'causes': 1,
          'irradiation': 1,
          'local': 1,
          'ranchers': 1,
          'much': 1,
          'vocal': 1,
          'objections': 1,
          'spots': 1,
          'unable': 1,
          'cancel': 1,
          'detonation': 1,
          'bomb': 1,
          'nback': 1,
          'girls': 1,
          'hold': 1,
          'wonder': 1,
          'father': 1,
          'cant': 1,
          'mothers': 1,
          'none': 1,
          'daughter': 1,
          'says': 1,
          'hes': 1,
          'blind': 1,
          'crazy': 1,
          'answers': 1,
          'theyre': 1,
          'perfect': 1,
          'nit': 1,
          'reaches': 1,
          'breaking': 1,
          'point': 1,
          'older': 1,
          'girl': 1,
          'boy': 1,
          'son': 1,
          'odonnell': 1,
          'see': 1,
          'making': 1,
          'love': 1,
          'abandoned': 1,
          'nshe': 1,
          'forces': 1,
          'tell': 1,
          'get': 1,
          'open': 1,
          'returns': 1,
          'finds': 1,
          'middle': 1,
          'musical': 1,
          'wives': 1,
          'including': 1,
          'snodgress': 1,
          'confronts': 1,
          'c': 1,
          'nbut': 1,
          'upset': 1,
          'coverup': 1,
          'surrounding': 1,
          'accident': 1,
          'na': 1,
          'fight': 1,
          'breaks': 1,
          'accuses': 1,
          'able': 1,
          'satisfy': 1,
          'arrested': 1,
          'nwhat': 1,
          'follows': 1,
          'manipulation': 1,
          'revenge': 1,
          'part': 1,
          'convinces': 1,
          'commit': 1,
          'hospital': 1,
          'observation': 1,
          'ninstead': 1,
          'fill': 1,
          'many': 1,
          'drugs': 1,
          'barely': 1,
          'cope': 1,
          'foams': 1,
          'mouth': 1,
          'finish': 1,
          'sewing': 1,
          'leather': 1,
          'wallet': 1,
          'presents': 1,
          'determined': 1,
          'free': 1,
          'clutches': 1,
          'succeeds': 1,
          'first': 1,
          'upbeat': 1,
          'ending': 1,
          'hope': 1,
          'found': 1,
          'solid': 1,
          'throughout': 1,
          'njones': 1,
          'sympathetic': 1,
          'loving': 1,
          'effective': 1,
          'quiet': 1,
          'moments': 1,
          'wifes': 1,
          'rage': 1,
          'comforts': 1,
          'offers': 1,
          'protection': 1,
          'nlange': 1,
          'gives': 1,
          'spirited': 1,
          'portrayal': 1,
          'woman': 1,
          'edge': 1,
          'draws': 1,
          'courage': 1,
          'right': 1,
          'namy': 1,
          'good': 1,
          'fights': 1,
          'keep': 1,
          'struggling': 1,
          'doubts': 1,
          'whether': 1,
          'nblue': 1,
          'sky': 1,
          'based': 1,
          'story': 1,
          'screenplay': 1,
          'written': 1,
          'rama': 1,
          'laurie': 1,
          'arlene': 1,
          'sarner': 1,
          'jerry': 1,
          'leichtling': 1,
          'marks': 1,
          'final': 1,
          'work': 1,
          'tony': 1,
          'richardson': 1,
          'died': 1,
          'shortly': 1,
          'completion': 1,
          '1991': 1,
          'made': 1,
          'classics': 1,
          'look': 1,
          'back': 1,
          'anger': 1,
          '1958': 1,
          'tom': 1,
          '1963': 1,
          'norion': 1,
          'pictures': 1,
          'underwent': 1,
          'bankruptcy': 1,
          'caused': 1,
          'sit': 1,
          'shelf': 1,
          'three': 1,
          'years': 1,
          'joins': 1,
          'alread': 1,
          'promising': 1,
          'fall': 1,
          'lineup': 1,
          'films': 1,
          'well': 1,
          'worth': 1,
          'catching': 1,
          'alone': 1,
          'npos': 1}),
 Counter({'pie': 4,
          'movie': 4,
          'nthe': 3,
          'nif': 3,
          'youre': 3,
          'one': 3,
          'raunch': 2,
          'theatres': 2,
          'sick': 2,
          'american': 2,
          'levy': 2,
          'school': 2,
          'get': 2,
          'bits': 2,
          'sex': 2,
          'happy': 1,
          'bastards': 1,
          '30second': 1,
          'review': 1,
          'namerican': 1,
          'summer': 1,
          'continues': 1,
          'spread': 1,
          'latest': 1,
          'yuk': 1,
          'fest': 1,
          'filled': 1,
          'jokes': 1,
          'teen': 1,
          'dialogue': 1,
          'aplenty': 1,
          'go': 1,
          'expecting': 1,
          'dawsons': 1,
          'creek': 1,
          'problem': 1,
          'expectations': 1,
          'lower': 1,
          'better': 1,
          'might': 1,
          'add': 1,
          'enjoy': 1,
          'hell': 1,
          'casts': 1,
          'several': 1,
          'unknowns': 1,
          'real': 1,
          'recognizable': 1,
          'sctvs': 1,
          'eugene': 1,
          'happygolucky': 1,
          'dad': 1,
          'story': 1,
          'revolves': 1,
          'around': 1,
          'four': 1,
          'high': 1,
          'seniors': 1,
          'goal': 1,
          'year': 1,
          'gets': 1,
          'laid': 1,
          'nthats': 1,
          'pretty': 1,
          'much': 1,
          'nthroughout': 1,
          'little': 1,
          'comic': 1,
          'sprinkled': 1,
          'throughout': 1,
          'including': 1,
          'memorable': 1,
          'scene': 1,
          'involving': 1,
          'apple': 1,
          'wont': 1,
          'give': 1,
          'away': 1,
          'probably': 1,
          'know': 1,
          'internet': 1,
          'broadcast': 1,
          'gone': 1,
          'horribly': 1,
          'awry': 1,
          'nof': 1,
          'course': 1,
          'slightly': 1,
          'sentimental': 1,
          'dont': 1,
          'drag': 1,
          'movies': 1,
          'humor': 1,
          'content': 1,
          'bad': 1,
          'nmost': 1,
          'actors': 1,
          'job': 1,
          'done': 1,
          'whos': 1,
          'hoot': 1,
          'father': 1,
          'tries': 1,
          'talk': 1,
          'son': 1,
          'help': 1,
          'curious': 1,
          'visual': 1,
          'aids': 1,
          'ni': 1,
          'couldnt': 1,
          'stop': 1,
          'laughing': 1,
          'stand': 1,
          'references': 1,
          'conservative': 1,
          'types': 1,
          'well': 1,
          'ill': 1,
          'bet': 1,
          'fun': 1,
          'home': 1,
          'south': 1,
          'park': 1,
          'austin': 1,
          'powers': 1,
          'ii': 1,
          'plays': 1,
          'arent': 1,
          'npos': 1}),
 Counter({'film': 11,
          'ni': 9,
          'hour': 9,
          'would': 8,
          'well': 7,
          'nits': 6,
          'story': 6,
          'rose': 6,
          'though': 6,
          'lot': 5,
          'titanic': 5,
          'think': 5,
          'dialogue': 5,
          'films': 5,
          'first': 4,
          'see': 4,
          'last': 4,
          'didnt': 4,
          'much': 4,
          'nthe': 4,
          'romance': 4,
          'winslet': 4,
          'dicaprio': 4,
          'gloria': 4,
          'moving': 4,
          'half': 4,
          'cameron': 4,
          'dont': 4,
          'one': 4,
          'powerful': 4,
          'bit': 4,
          'havent': 3,
          'seen': 3,
          'yes': 3,
          'like': 3,
          'saw': 3,
          'happy': 3,
          'talk': 3,
          'ship': 3,
          'jack': 3,
          'stuart': 3,
          'script': 3,
          'form': 3,
          'fact': 3,
          'ending': 3,
          'second': 3,
          'get': 3,
          'far': 3,
          'sunk': 3,
          'nbut': 3,
          'rescue': 3,
          'oscars': 3,
          'brief': 2,
          'nwell': 2,
          'theres': 2,
          'without': 2,
          'went': 2,
          'tragedy': 2,
          'entirely': 2,
          'anticipation': 2,
          'wasnt': 2,
          'sister': 2,
          'nso': 2,
          'slightly': 2,
          'id': 2,
          'ndid': 2,
          'im': 2,
          'beautifully': 2,
          'stunning': 2,
          'camerons': 2,
          'directing': 2,
          'cast': 2,
          'strong': 2,
          'knew': 2,
          'n': 2,
          'often': 2,
          'device': 2,
          'use': 2,
          'sometimes': 2,
          'work': 2,
          'nin': 2,
          'add': 2,
          'know': 2,
          'love': 2,
          'jacks': 2,
          'touching': 2,
          'enjoyable': 2,
          'us': 2,
          'sure': 2,
          'jackrose': 2,
          'emotionally': 2,
          'iceberg': 2,
          'nand': 2,
          'perhaps': 2,
          'certainly': 2,
          'shocking': 2,
          'expect': 2,
          '2': 2,
          'nis': 2,
          'overdone': 2,
          'thought': 2,
          'quite': 2,
          'whether': 2,
          'really': 2,
          'someone': 2,
          'go': 2,
          'fine': 2,
          'excessive': 2,
          'mentioned': 2,
          'ive': 2,
          'thats': 2,
          'period': 2,
          'little': 2,
          'doubt': 2,
          'deserving': 2,
          'alltime': 2,
          '_in': 1,
          '_': 1,
          'needs': 1,
          'introduction': 1,
          'nif': 1,
          'heard': 1,
          'must': 1,
          'space': 1,
          'sabbatical': 1,
          'suspect': 1,
          'youre': 1,
          'small': 1,
          'minority': 1,
          'nfirst': 1,
          'things': 1,
          'hyped': 1,
          'good': 1,
          'problems': 1,
          'nwhen': 1,
          'trailer': 1,
          'bean': 1,
          'summer': 1,
          'intial': 1,
          'reaction': 1,
          'aint': 1,
          'downright': 1,
          'sick': 1,
          'make': 1,
          'disaster': 1,
          'movie': 1,
          'dreadful': 1,
          'reallife': 1,
          'mean': 1,
          'whats': 1,
          'happened': 1,
          'hollywoods': 1,
          'scriptwriters': 1,
          'run': 1,
          'new': 1,
          'ideas': 1,
          'ngads': 1,
          'whatever': 1,
          'next': 1,
          'asked': 1,
          'action': 1,
          'based': 1,
          'hiroshima': 1,
          'starring': 1,
          'jean': 1,
          'claude': 1,
          'van': 1,
          'damme': 1,
          'filled': 1,
          'alone': 1,
          'respect': 1,
          'came': 1,
          'cinema': 1,
          'rave': 1,
          'reviews': 1,
          'mostly': 1,
          'anyone': 1,
          'whod': 1,
          'seemed': 1,
          'disturbingly': 1,
          'obsessed': 1,
          'started': 1,
          'take': 1,
          'notice': 1,
          'several': 1,
          'months': 1,
          'release': 1,
          'time': 1,
          'four': 1,
          'times': 1,
          'open': 1,
          'mind': 1,
          'still': 1,
          'enjoy': 1,
          'nmainly': 1,
          'say': 1,
          'done': 1,
          'scripting': 1,
          'ill': 1,
          'later': 1,
          'recreated': 1,
          'sets': 1,
          'look': 1,
          'performances': 1,
          'principal': 1,
          'human': 1,
          'aspect': 1,
          'kate': 1,
          'leonardo': 1,
          'enchanting': 1,
          'told': 1,
          'via': 1,
          'flashback': 1,
          'playing': 1,
          'elderly': 1,
          'modern': 1,
          'day': 1,
          'course': 1,
          'effective': 1,
          'storytelling': 1,
          'fall': 1,
          'flat': 1,
          'ndoes': 1,
          'doesnt': 1,
          'nwhat': 1,
          'whose': 1,
          'performance': 1,
          'strongest': 1,
          'nher': 1,
          'presence': 1,
          'brings': 1,
          'deeper': 1,
          'level': 1,
          'passion': 1,
          'depth': 1,
          'appearances': 1,
          'relatively': 1,
          'suffered': 1,
          'nalso': 1,
          'impressive': 1,
          'wholly': 1,
          'succeed': 1,
          'rising': 1,
          'poor': 1,
          'bond': 1,
          'heartfelt': 1,
          'old': 1,
          'forbidden': 1,
          'ala': 1,
          'romeo': 1,
          'juliet': 1,
          'works': 1,
          'rescuing': 1,
          'literal': 1,
          'figurative': 1,
          'senses': 1,
          'teaching': 1,
          'live': 1,
          'life': 1,
          'counts': 1,
          'pointed': 1,
          'enjoyed': 1,
          'largely': 1,
          'bring': 1,
          'charm': 1,
          'energy': 1,
          'engaging': 1,
          'ntheres': 1,
          'tinge': 1,
          'poignancy': 1,
          'simply': 1,
          'going': 1,
          'nwhich': 1,
          'leads': 1,
          'nwe': 1,
          'coming': 1,
          'nim': 1,
          'director': 1,
          'looking': 1,
          'forward': 1,
          'eager': 1,
          'hes': 1,
          'stated': 1,
          'interviews': 1,
          'real': 1,
          'thrust': 1,
          'sinking': 1,
          'merely': 1,
          'manipulative': 1,
          'plot': 1,
          'understates': 1,
          'importance': 1,
          'found': 1,
          'watching': 1,
          'people': 1,
          'die': 1,
          'arrives': 1,
          'captain': 1,
          'announces': 1,
          'nmy': 1,
          'goodness': 1,
          'miss': 1,
          'ngratuitous': 1,
          'todays': 1,
          'standards': 1,
          'worse': 1,
          'produced': 1,
          'banner': 1,
          'entertainment': 1,
          'prepared': 1,
          'graphic': 1,
          'nnot': 1,
          'word': 1,
          'understatement': 1,
          'part': 1,
          'vocabulary': 1,
          'brought': 1,
          'umm': 1,
          'vivid': 1,
          'terminator': 1,
          'aliens': 1,
          'nunderstatement': 1,
          'wonders': 1,
          'conveying': 1,
          'nno': 1,
          'expected': 1,
          'horrendously': 1,
          'scenes': 1,
          'bombarded': 1,
          'throughout': 1,
          'nstill': 1,
          'heavyhanded': 1,
          'shockfactor': 1,
          'worked': 1,
          'shocked': 1,
          'moved': 1,
          'spent': 1,
          'tears': 1,
          'nyou': 1,
          'couldnt': 1,
          'help': 1,
          'involved': 1,
          'wishing': 1,
          'knock': 1,
          'dreadfully': 1,
          'psychotic': 1,
          'fiance': 1,
          'roses': 1,
          'overboard': 1,
          'desperately': 1,
          'hoping': 1,
          'survive': 1,
          'nperhaps': 1,
          'harrowing': 1,
          'scene': 1,
          'along': 1,
          'freeze': 1,
          'death': 1,
          'water': 1,
          'surface': 1,
          'lets': 1,
          'hand': 1,
          'promising': 1,
          'shell': 1,
          'never': 1,
          'let': 1,
          'heart': 1,
          'particularly': 1,
          'heartwrenching': 1,
          'sight': 1,
          'boats': 1,
          'sailing': 1,
          'amid': 1,
          'ocean': 1,
          'corpses': 1,
          'pretty': 1,
          'image': 1,
          'put': 1,
          'point': 1,
          'loved': 1,
          'however': 1,
          'uplifting': 1,
          'following': 1,
          'horror': 1,
          'past': 1,
          'weve': 1,
          'established': 1,
          'rather': 1,
          'nhavent': 1,
          'nplotwise': 1,
          'ok': 1,
          'relationship': 1,
          'developed': 1,
          'feeling': 1,
          'actors': 1,
          'credit': 1,
          'anything': 1,
          'nas': 1,
          'set': 1,
          '1912': 1,
          'drama': 1,
          'indication': 1,
          'concerned': 1,
          'phrases': 1,
          'goddamn': 1,
          'nback': 1,
          'turn': 1,
          'century': 1,
          'nwould': 1,
          'ya': 1,
          'guy': 1,
          'eyes': 1,
          'clumsy': 1,
          'nyes': 1,
          'na': 1,
          'attention': 1,
          'gone': 1,
          'astray': 1,
          'blame': 1,
          'wrote': 1,
          'nstick': 1,
          'dude': 1,
          'redeemed': 1,
          'acting': 1,
          'ably': 1,
          'supported': 1,
          'nstar': 1,
          'show': 1,
          'win': 1,
          'oscar': 1,
          'nafter': 1,
          'throwing': 1,
          'left': 1,
          'right': 1,
          'centre': 1,
          'nominee': 1,
          'ndirectingwise': 1,
          'spectacular': 1,
          'job': 1,
          'nlike': 1,
          'said': 1,
          'vision': 1,
          'least': 1,
          'directed': 1,
          'even': 1,
          'james': 1,
          'horners': 1,
          'beautiful': 1,
          'score': 1,
          'nutterly': 1,
          'heavenly': 1,
          'dad': 1,
          'play': 1,
          'soundtrack': 1,
          'start': 1,
          'bored': 1,
          'nive': 1,
          'finished': 1,
          'rant': 1,
          'lasted': 1,
          'longer': 1,
          'njust': 1,
          'leaves': 1,
          'couple': 1,
          'questions': 1,
          'worth': 1,
          'nhell': 1,
          'nbloomin': 1,
          'farce': 1,
          'nit': 1,
          'number': 1,
          'departments': 1,
          'nlast': 1,
          'question': 1,
          'suggest': 1,
          'best': 1,
          'nnope': 1,
          'memorable': 1,
          'ever': 1,
          'ranks': 1,
          'favourites': 1,
          'theyre': 1,
          'reportedly': 1,
          'making': 1,
          'guess': 1,
          'typical': 1,
          'hollywood': 1,
          'npos': 1}),
 Counter({'jackie': 9,
          'chan': 9,
          'film': 6,
          'hour': 5,
          'films': 5,
          'nthe': 4,
          'character': 4,
          'makes': 4,
          'rush': 3,
          'cop': 3,
          'case': 3,
          'element': 3,
          'necessarily': 3,
          'chans': 3,
          'one': 3,
          'lee': 3,
          'carter': 3,
          'action': 3,
          'culture': 3,
          'nwhile': 3,
          'hero': 2,
          'chinese': 2,
          'people': 2,
          'must': 2,
          'always': 2,
          'nhowever': 2,
          'first': 2,
          'hollywood': 2,
          'nstill': 2,
          'may': 2,
          'familiar': 2,
          'east': 2,
          'meets': 2,
          'west': 2,
          'njackie': 2,
          'help': 2,
          'tucker': 2,
          'fbi': 2,
          'also': 2,
          'fun': 2,
          'youll': 2,
          'kicks': 2,
          'nchris': 2,
          'whiny': 2,
          'still': 2,
          'characters': 2,
          'attempts': 2,
          'american': 2,
          'nwhen': 2,
          'kung': 2,
          'fu': 2,
          'come': 2,
          'level': 2,
          'mouth': 2,
          'fastest': 2,
          'appropriate': 2,
          'well': 2,
          'knowledge': 2,
          'teaches': 2,
          'respects': 1,
          'ultimate': 1,
          'exercise': 1,
          'cliched': 1,
          'filmmaking': 1,
          'renegade': 1,
          'prefers': 1,
          'work': 1,
          'alone': 1,
          'question': 1,
          'solve': 1,
          'gets': 1,
          'trouble': 1,
          'nall': 1,
          'somehow': 1,
          'involved': 1,
          'criminal': 1,
          'duo': 1,
          'completely': 1,
          'mismatched': 1,
          'say': 1,
          'smartassed': 1,
          'comment': 1,
          'shooting': 1,
          'someone': 1,
          'doesnt': 1,
          'make': 1,
          'bad': 1,
          'nrush': 1,
          'major': 1,
          'since': 1,
          'dismal': 1,
          'protector': 1,
          '1985': 1,
          'nproving': 1,
          'learn': 1,
          'many': 1,
          'things': 1,
          'foreign': 1,
          'markets': 1,
          'ie': 1,
          'hong': 1,
          'kong': 1,
          'given': 1,
          'much': 1,
          'free': 1,
          'reign': 1,
          'diehard': 1,
          'fans': 1,
          'disappointed': 1,
          'even': 1,
          'voiced': 1,
          'displeasure': 1,
          'length': 1,
          'fight': 1,
          'scenes': 1,
          'views': 1,
          'short': 1,
          'according': 1,
          'interview': 1,
          'nthis': 1,
          'takes': 1,
          'theme': 1,
          'straight': 1,
          'laced': 1,
          'inspector': 1,
          'imported': 1,
          'deal': 1,
          'kidnapping': 1,
          'chris': 1,
          'loudmouthed': 1,
          'destructive': 1,
          'promoted': 1,
          'least': 1,
          'thinks': 1,
          'another': 1,
          'classic': 1,
          'notion': 1,
          'get': 1,
          'way': 1,
          'heroes': 1,
          'ndespite': 1,
          'necessary': 1,
          'conventions': 1,
          'spend': 1,
          'forty': 1,
          'minutes': 1,
          'watching': 1,
          'continues': 1,
          'exciting': 1,
          'martial': 1,
          'artists': 1,
          'big': 1,
          'screen': 1,
          'continuing': 1,
          'perform': 1,
          'stunts': 1,
          'dazzling': 1,
          'audiences': 1,
          'flashy': 1,
          'punches': 1,
          'annoying': 1,
          'role': 1,
          'fifth': 1,
          'palatable': 1,
          'complementing': 1,
          'straightlaced': 1,
          'maintains': 1,
          'comicslapstick': 1,
          'edge': 1,
          'expected': 1,
          'nperfectly': 1,
          'downplaying': 1,
          'fishoutofwater': 1,
          'routine': 1,
          'mixing': 1,
          'time': 1,
          'experiences': 1,
          'however': 1,
          'amused': 1,
          'dazzled': 1,
          'inventive': 1,
          'use': 1,
          'objects': 1,
          'beat': 1,
          'steering': 1,
          'wheel': 1,
          'serving': 1,
          'tray': 1,
          'barstool': 1,
          'proves': 1,
          'pioneer': 1,
          'slapstick': 1,
          'tuckers': 1,
          'across': 1,
          'irritating': 1,
          'yet': 1,
          'humorous': 1,
          'nsince': 1,
          'hes': 1,
          'physical': 1,
          'actor': 1,
          'uses': 1,
          'main': 1,
          'weapon': 1,
          'hence': 1,
          'tagline': 1,
          'hands': 1,
          'dialogue': 1,
          'shakespeare': 1,
          'funny': 1,
          'poignant': 1,
          'development': 1,
          'growth': 1,
          'surprisingly': 1,
          'nlees': 1,
          'pop': 1,
          'thats': 1,
          'beach': 1,
          'boys': 1,
          'contrasted': 1,
          'carters': 1,
          'lack': 1,
          'interesting': 1,
          'scene': 1,
          'disarming': 1,
          'trick': 1,
          'hiphop': 1,
          'dance': 1,
          'moves': 1,
          'police': 1,
          'story': 1,
          '3': 1,
          '4': 1,
          'known': 1,
          'north': 1,
          'america': 1,
          'supercop': 1,
          'strike': 1,
          'respectively': 1,
          'poorly': 1,
          'received': 1,
          'operation': 1,
          'condor': 1,
          'mr': 1,
          'nice': 1,
          'guy': 1,
          'nwith': 1,
          'mixture': 1,
          'high': 1,
          'lots': 1,
          'laughs': 1,
          'nas': 1,
          'true': 1,
          'departure': 1,
          'missing': 1,
          'common': 1,
          'female': 1,
          'costar': 1,
          'npos': 1}),
 Counter({'movie': 5,
          'kramer': 3,
          'garner': 3,
          'glance': 2,
          'two': 2,
          'together': 2,
          'nthis': 2,
          'exactly': 2,
          'quick': 2,
          'lemmon': 2,
          'douglas': 2,
          'haney': 2,
          'president': 2,
          'found': 2,
          'people': 2,
          'well': 2,
          'one': 2,
          'man': 2,
          'played': 2,
          'fellow': 1,
          'americans': 1,
          'first': 1,
          'looks': 1,
          'little': 1,
          'substance': 1,
          'weve': 1,
          'seen': 1,
          'million': 1,
          'times': 1,
          'lifetime': 1,
          'rivals': 1,
          'thrown': 1,
          'fun': 1,
          'begins': 1,
          'happened': 1,
          'fortunately': 1,
          'managed': 1,
          'interesting': 1,
          'funny': 1,
          'way': 1,
          'nthe': 1,
          'starts': 1,
          'mean': 1,
          'presidents': 1,
          'russell': 1,
          'jack': 1,
          'matt': 1,
          'james': 1,
          'nwilliam': 1,
          'dan': 1,
          'aykroyd': 1,
          'ted': 1,
          'matthews': 1,
          'john': 1,
          'heard': 1,
          'new': 1,
          'vice': 1,
          'nthere': 1,
          'scandal': 1,
          'arises': 1,
          'involving': 1,
          'kickback': 1,
          'contractor': 1,
          'positive': 1,
          'buried': 1,
          'years': 1,
          'ago': 1,
          'nhe': 1,
          'finds': 1,
          'scapegoat': 1,
          'everyone': 1,
          'wants': 1,
          'dead': 1,
          'exceptional': 1,
          'many': 1,
          'reasons': 1,
          'none': 1,
          'good': 1,
          'chemisty': 1,
          'nthey': 1,
          'worked': 1,
          'unit': 1,
          'mirrored': 1,
          'perfectly': 1,
          'ladies': 1,
          'old': 1,
          'ill': 1,
          'let': 1,
          'fiqure': 1,
          'nalso': 1,
          'know': 1,
          'parts': 1,
          'govenment': 1,
          'officials': 1,
          'nit': 1,
          'seemed': 1,
          'almost': 1,
          'role': 1,
          'distinquished': 1,
          'gentleman': 1,
          'except': 1,
          'congressman': 1,
          'nexperience': 1,
          'counts': 1,
          'lot': 1,
          'npos': 1}),
 Counter({'steven': 8,
          'muse': 6,
          'nand': 5,
          'jack': 4,
          'albert': 3,
          'brooks': 3,
          'hes': 3,
          'something': 3,
          'success': 3,
          'doesnt': 3,
          'wants': 3,
          'like': 3,
          'although': 3,
          'good': 3,
          'movie': 3,
          'phillips': 2,
          'hollywood': 2,
          'screenwriter': 2,
          'quick': 2,
          'nhe': 2,
          'best': 2,
          'enjoyed': 2,
          'sees': 2,
          'woman': 2,
          'sharon': 2,
          'stone': 2,
          'think': 2,
          'n': 2,
          'nsteven': 2,
          'take': 2,
          'meeting': 2,
          'sarah': 2,
          'life': 2,
          'nthe': 2,
          'question': 2,
          'thats': 2,
          'film': 2,
          'plays': 1,
          'winning': 1,
          'humanitarian': 1,
          'award': 1,
          'work': 1,
          'dumped': 1,
          'studio': 1,
          'nthey': 1,
          'claim': 1,
          'lost': 1,
          'edge': 1,
          'agent': 1,
          'agree': 1,
          'knows': 1,
          'needs': 1,
          'write': 1,
          'fresh': 1,
          'original': 1,
          'else': 1,
          'career': 1,
          'nso': 1,
          'turns': 1,
          'friend': 1,
          'jeff': 1,
          'bridges': 1,
          'another': 1,
          'whos': 1,
          'non': 1,
          'way': 1,
          'jacks': 1,
          'house': 1,
          'helping': 1,
          'attractive': 1,
          'cab': 1,
          'begins': 1,
          'affair': 1,
          'nwhen': 1,
          'confronted': 1,
          'relunctently': 1,
          'tells': 1,
          'mystery': 1,
          'fact': 1,
          'mythological': 1,
          'figure': 1,
          'believed': 1,
          'inspired': 1,
          'creativity': 1,
          'helped': 1,
          'garner': 1,
          'actual': 1,
          'writing': 1,
          'told': 1,
          'inspires': 1,
          'excited': 1,
          'hearing': 1,
          'asks': 1,
          'call': 1,
          'see': 1,
          'shell': 1,
          'new': 1,
          'client': 1,
          'njack': 1,
          'arranges': 1,
          'two': 1,
          'suggests': 1,
          'bring': 1,
          'present': 1,
          'preferably': 1,
          'tiffanys': 1,
          'nafter': 1,
          'decides': 1,
          'price': 1,
          'suite': 1,
          'four': 1,
          'seasons': 1,
          'perform': 1,
          'odd': 1,
          'tasks': 1,
          'bringing': 1,
          'salads': 1,
          'middle': 1,
          'night': 1,
          'nstevens': 1,
          'wife': 1,
          'andy': 1,
          'macdowell': 1,
          'food': 1,
          'store': 1,
          'questions': 1,
          'tampons': 1,
          'wagon': 1,
          'confesses': 1,
          'everything': 1,
          'first': 1,
          'suspicious': 1,
          'later': 1,
          'allows': 1,
          'move': 1,
          'guest': 1,
          'room': 1,
          'eventually': 1,
          'worth': 1,
          'trouble': 1,
          'going': 1,
          'time': 1,
          'tell': 1,
          'sixth': 1,
          'writerdirectoractor': 1,
          'cowrote': 1,
          'monica': 1,
          'johnson': 1,
          'level': 1,
          'works': 1,
          'defending': 1,
          'mother': 1,
          'problem': 1,
          'lies': 1,
          'script': 1,
          'relies': 1,
          'dialogue': 1,
          'humor': 1,
          'arent': 1,
          'nearly': 1,
          'many': 1,
          'laughs': 1,
          'chuckles': 1,
          'despite': 1,
          'oneliners': 1,
          'nit': 1,
          'great': 1,
          'premise': 1,
          'deliver': 1,
          'full': 1,
          'potential': 1,
          'nbut': 1,
          'identify': 1,
          'little': 1,
          'bit': 1,
          'may': 1,
          'whine': 1,
          'complain': 1,
          'support': 1,
          'family': 1,
          'happy': 1,
          'nice': 1,
          'change': 1,
          'pace': 1,
          'also': 1,
          'cameos': 1,
          'featuring': 1,
          'likes': 1,
          'rob': 1,
          'reiner': 1,
          'james': 1,
          'cameron': 1,
          'martin': 1,
          'scorsese': 1,
          'much': 1,
          'say': 1,
          'robert': 1,
          'altmans': 1,
          'player': 1,
          'still': 1,
          'left': 1,
          'theater': 1,
          'feeling': 1,
          'wish': 1,
          'got': 1,
          'movies': 1,
          'npos': 1}),
 Counter({'football': 9,
          'film': 7,
          'movie': 6,
          'james': 4,
          'van': 4,
          'der': 4,
          'also': 4,
          'good': 3,
          'high': 3,
          'school': 3,
          'nthe': 3,
          'ta': 3,
          'beek': 3,
          'plays': 3,
          'watch': 3,
          'ol': 2,
          'texan': 2,
          'kid': 2,
          'play': 2,
          'teams': 2,
          'team': 2,
          'coach': 2,
          'want': 2,
          'said': 2,
          'fun': 2,
          'nthis': 2,
          'towards': 2,
          'teen': 2,
          'behind': 2,
          'tv': 2,
          'actor': 2,
          'role': 2,
          'enjoyed': 2,
          'thought': 2,
          'performance': 2,
          'loved': 2,
          'ni': 2,
          'actually': 2,
          'comedy': 2,
          'might': 2,
          'stuff': 2,
          'like': 2,
          'stars': 2,
          'real': 2,
          'life': 2,
          'caan': 2,
          'son': 2,
          'played': 2,
          'plot': 1,
          'suddenly': 1,
          'gets': 1,
          'firststring': 1,
          'quarterback': 1,
          'town': 1,
          'considered': 1,
          'religion': 1,
          'biggest': 1,
          'ahole': 1,
          'youd': 1,
          'ever': 1,
          'meet': 1,
          'practically': 1,
          'anything': 1,
          'win': 1,
          'boy': 1,
          'approve': 1,
          'mans': 1,
          'methods': 1,
          'ncritique': 1,
          'obviously': 1,
          'geared': 1,
          'market': 1,
          'mtv': 1,
          'production': 1,
          'big': 1,
          'star': 1,
          'lead': 1,
          'rockin': 1,
          'hip': 1,
          'music': 1,
          'galore': 1,
          'plenty': 1,
          'nhaving': 1,
          'look': 1,
          'feel': 1,
          'gave': 1,
          'solid': 1,
          'slick': 1,
          'sounds': 1,
          'yup': 1,
          'going': 1,
          'overall': 1,
          'dramatic': 1,
          'jon': 1,
          'voights': 1,
          'stubborn': 1,
          'dick': 1,
          'well': 1,
          'many': 1,
          'character': 1,
          'players': 1,
          'classic': 1,
          'stretch': 1,
          'imagination': 1,
          'teach': 1,
          'kids': 1,
          'hard': 1,
          'lessons': 1,
          'game': 1,
          'allow': 1,
          'time': 1,
          'hour': 1,
          'fortyfive': 1,
          'minutes': 1,
          'theatre': 1,
          'comfort': 1,
          'home': 1,
          'depending': 1,
          'nall': 1,
          'would': 1,
          'definitely': 1,
          'succeed': 1,
          'nyou': 1,
          'could': 1,
          'flicks': 1,
          'lot': 1,
          'cute': 1,
          'guys': 1,
          'girls': 1,
          'running': 1,
          'around': 1,
          'nand': 1,
          'mention': 1,
          'n': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'started': 1,
          'acting': 1,
          'concussion': 1,
          'stopped': 1,
          'playing': 1,
          'nhe': 1,
          'oldest': 1,
          'three': 1,
          'children': 1,
          'father': 1,
          'cellular': 1,
          'phone': 1,
          'salesman': 1,
          'mom': 1,
          'runs': 1,
          'gymnastics': 1,
          'studio': 1,
          'nhes': 1,
          'born': 1,
          'connecticut': 1,
          'received': 1,
          '200': 1,
          '000': 1,
          'nactor': 1,
          'scott': 1,
          'player': 1,
          'tweeder': 1,
          'famed': 1,
          'nthats': 1,
          'right': 1,
          'hes': 1,
          'sonnys': 1,
          'nactress': 1,
          'amy': 1,
          'smart': 1,
          'beeks': 1,
          'girlfriend': 1,
          'main': 1,
          'girl': 1,
          '1999': 1,
          'outside': 1,
          'providence': 1,
          '6': 1,
          '510': 1,
          'nscreenwriter': 1,
          'w': 1,
          'peter': 1,
          'iliff': 1,
          'part': 1,
          'writing': 1,
          'screenplays': 1,
          '1992': 1,
          'harrison': 1,
          'ford': 1,
          'patriot': 1,
          'games': 1,
          'keanu': 1,
          'reeves': 1,
          'surfing': 1,
          'flick': 1,
          'point': 1,
          'break': 1,
          'ndirector': 1,
          'brian': 1,
          'robbins': 1,
          'best': 1,
          'remembered': 1,
          'cool': 1,
          'dude': 1,
          'series': 1,
          'head': 1,
          'class': 1,
          'nhis': 1,
          'name': 1,
          'eric': 1,
          'mandrian': 1,
          'generally': 1,
          'wore': 1,
          'long': 1,
          'black': 1,
          'trench': 1,
          'coat': 1,
          'show': 1,
          'book': 1,
          'mox': 1,
          'reading': 1,
          'sidelines': 1,
          'hidden': 1,
          'inside': 1,
          'playbook': 1,
          'slaughterhousefive': 1,
          'kurt': 1,
          'vonnegut': 1,
          'jr': 1,
          'fight': 1,
          'song': 1,
          'pep': 1,
          'rally': 1,
          'texas': 1,
          'war': 1,
          'hymn': 1,
          'npos': 1}),
 Counter({'film': 13,
          'halloween': 8,
          'ni': 5,
          'edition': 4,
          'dvd': 4,
          'michael': 4,
          'creepy': 3,
          'made': 3,
          'years': 3,
          'time': 3,
          'new': 3,
          'myers': 3,
          'person': 3,
          '1978': 3,
          'nthe': 3,
          'movie': 3,
          'classic': 2,
          'score': 2,
          'john': 2,
          'carpenter': 2,
          'brilliant': 2,
          'think': 2,
          'scared': 2,
          'even': 2,
          'going': 2,
          'vhs': 2,
          'limited': 2,
          'nin': 2,
          'words': 2,
          'nit': 2,
          'horror': 2,
          'spawned': 2,
          '4': 2,
          '7': 2,
          'released': 2,
          'one': 2,
          'best': 2,
          'ever': 2,
          'nno': 2,
          'laurie': 2,
          'strode': 2,
          'played': 2,
          'october': 2,
          'flick': 2,
          'nhalloween': 2,
          'starts': 1,
          'opening': 1,
          'sequence': 1,
          'writerdirectorproducer': 1,
          'mind': 1,
          'director': 1,
          'really': 1,
          'nhe': 1,
          'wrote': 1,
          'directed': 1,
          'produced': 1,
          'excessively': 1,
          'always': 1,
          'famous': 1,
          '21': 1,
          'lost': 1,
          'popularity': 1,
          'ability': 1,
          'scare': 1,
          'wits': 1,
          'people': 1,
          'seen': 1,
          '100': 1,
          'times': 1,
          'find': 1,
          'something': 1,
          'though': 1,
          'know': 1,
          'happen': 1,
          'three': 1,
          'different': 1,
          'versions': 1,
          'regular': 1,
          'version': 1,
          'came': 1,
          '20th': 1,
          'anniversary': 1,
          'tshirt': 1,
          'boxed': 1,
          'hardcover': 1,
          'case': 1,
          'digitally': 1,
          'remastered': 1,
          'original': 1,
          'theatrical': 1,
          'widescreen': 1,
          'presentation': 1,
          'nifty': 1,
          'plastic': 1,
          'picture': 1,
          'decorated': 1,
          'box': 1,
          'numbered': 1,
          'snowglobe': 1,
          'completely': 1,
          'utterly': 1,
          'obsessed': 1,
          'changed': 1,
          'movies': 1,
          'forever': 1,
          'six': 1,
          'sequels': 1,
          '2': 1,
          'truly': 1,
          'good': 1,
          'also': 1,
          'several': 1,
          'cheap': 1,
          'imitations': 1,
          'offensive': 1,
          'ways': 1,
          'true': 1,
          'fan': 1,
          'nsince': 1,
          'heard': 1,
          '30': 1,
          '000': 1,
          'copies': 1,
          'knew': 1,
          'buy': 1,
          'matter': 1,
          'man': 1,
          'manufactured': 1,
          'brilliance': 1,
          'describe': 1,
          'evil': 1,
          'killed': 1,
          'sister': 1,
          'cold': 1,
          'blood': 1,
          '16': 1,
          'ago': 1,
          '1963': 1,
          'nnow': 1,
          'grown': 1,
          'mental': 1,
          'hospital': 1,
          'escapes': 1,
          'go': 1,
          'back': 1,
          'hometown': 1,
          'haddonfield': 1,
          'illinois': 1,
          'followed': 1,
          'past': 1,
          'doctor': 1,
          'sam': 1,
          'loomis': 1,
          'targeting': 1,
          'jamie': 1,
          'lee': 1,
          'curtis': 1,
          'debut': 1,
          'nwhy': 1,
          'stalking': 1,
          'ncheck': 1,
          'ii': 1,
          'explains': 1,
          'non': 1,
          'unholy': 1,
          'night': 1,
          '31': 1,
          'two': 1,
          'friends': 1,
          'lives': 1,
          'trying': 1,
          'stay': 1,
          'alive': 1,
          'whole': 1,
          'filled': 1,
          'terrifying': 1,
          'moments': 1,
          'coming': 1,
          'seeing': 1,
          'walk': 1,
          'nnick': 1,
          'castle': 1,
          'shape': 1,
          'first': 1,
          'incredible': 1,
          'job': 1,
          'nwhat': 1,
          'groundbreaking': 1,
          'scares': 1,
          'wit': 1,
          'style': 1,
          'flawless': 1,
          'perfect': 1,
          'sequel': 1,
          'lived': 1,
          'opinion': 1,
          'never': 1,
          'like': 1,
          'psycho': 1,
          'still': 1,
          'extremely': 1,
          'popular': 1,
          'almost': 1,
          '40': 1,
          'later': 1,
          'hope': 1,
          'someday': 1,
          'dolby': 1,
          'soundtrack': 1,
          'extra': 1,
          'scenes': 1,
          'isnt': 1,
          'another': 1,
          'sliceanddice': 1,
          'intelligent': 1,
          'horrifying': 1,
          'experience': 1,
          'nsee': 1,
          'nwatch': 1,
          'nreviewed': 1,
          'brandon': 1,
          'herring': 1,
          '1999': 1,
          'npos': 1}),
 Counter({'nthe': 10,
          'film': 9,
          'second': 6,
          'first': 6,
          'two': 6,
          'movie': 4,
          'act': 4,
          'battle': 4,
          'ryan': 4,
          'mood': 3,
          'one': 3,
          'nits': 3,
          'disliked': 2,
          'nit': 2,
          'sheer': 2,
          'nthat': 2,
          'said': 2,
          'right': 2,
          'absolutely': 2,
          'incredible': 2,
          'favorite': 2,
          '1998': 2,
          'would': 2,
          'films': 2,
          'compare': 2,
          'seen': 2,
          'artsy': 2,
          'incredibly': 2,
          'structure': 2,
          'sort': 2,
          'set': 2,
          'characters': 2,
          'even': 2,
          'intense': 2,
          'soldiers': 2,
          'scenes': 2,
          'amazing': 2,
          'saving': 2,
          'private': 2,
          'times': 2,
          'ever': 2,
          'problems': 2,
          'come': 2,
          'long': 2,
          'nalthough': 2,
          'going': 2,
          'effective': 2,
          'nolte': 2,
          'hard': 2,
          'yet': 2,
          'war': 2,
          'easily': 2,
          'thin': 2,
          'red': 2,
          'line': 2,
          'admit': 1,
          'initially': 1,
          'certianly': 1,
          'isnt': 1,
          'every': 1,
          'taste': 1,
          'torture': 1,
          'sit': 1,
          'youre': 1,
          'restless': 1,
          'nthis': 1,
          'shooin': 1,
          'almost': 1,
          'year': 1,
          'nperhaps': 1,
          'big': 1,
          'turnoff': 1,
          'many': 1,
          'unconventionality': 1,
          'nid': 1,
          'hardpressed': 1,
          'ive': 1,
          'slow': 1,
          'amazingly': 1,
          'works': 1,
          'beautifully': 1,
          'non': 1,
          'viewing': 1,
          'realized': 1,
          'follows': 1,
          'three': 1,
          'didnt': 1,
          'think': 1,
          'saw': 1,
          'serves': 1,
          'exists': 1,
          'moreso': 1,
          'tension': 1,
          'restlesness': 1,
          'perhaps': 1,
          'feelings': 1,
          'boredom': 1,
          'nand': 1,
          'shattered': 1,
          'violence': 1,
          'encompasses': 1,
          'majority': 1,
          'extended': 1,
          'scene': 1,
          'intercut': 1,
          'brief': 1,
          'flashbacks': 1,
          'voiceovers': 1,
          'artsier': 1,
          'elements': 1,
          'detract': 1,
          'action': 1,
          'add': 1,
          'succeed': 1,
          'briefly': 1,
          'letting': 1,
          'viewer': 1,
          'peek': 1,
          'minds': 1,
          'suddenly': 1,
          'yanked': 1,
          'back': 1,
          'reality': 1,
          'resumes': 1,
          'opinion': 1,
          'ntheyre': 1,
          'brutal': 1,
          'horrifying': 1,
          'beautiful': 1,
          'due': 1,
          'cinematography': 1,
          'immersive': 1,
          'brilliant': 1,
          'haunting': 1,
          'third': 1,
          'acts': 1,
          'nmalick': 1,
          'takes': 1,
          'little': 1,
          'get': 1,
          'started': 1,
          'initial': 1,
          'consist': 1,
          'experiencing': 1,
          'nearedenlike': 1,
          'paradise': 1,
          'awol': 1,
          'preperations': 1,
          'necessary': 1,
          'hints': 1,
          'pretentiousness': 1,
          'sink': 1,
          'tad': 1,
          'near': 1,
          'beginning': 1,
          'lot': 1,
          'people': 1,
          'probably': 1,
          'gave': 1,
          'final': 1,
          'winding': 1,
          'persist': 1,
          'bit': 1,
          'comes': 1,
          'pretentious': 1,
          'sequences': 1,
          'soldier': 1,
          'gets': 1,
          'devastating': 1,
          'note': 1,
          'wife': 1,
          'another': 1,
          'main': 1,
          'killed': 1,
          'nothing': 1,
          'short': 1,
          'performances': 1,
          'phenominal': 1,
          'around': 1,
          'standouts': 1,
          'nick': 1,
          'newcomer': 1,
          'jim': 1,
          'caviezel': 1,
          'nominated': 1,
          'oscars': 1,
          'nnolte': 1,
          'riveting': 1,
          'colonel': 1,
          'charge': 1,
          'operation': 1,
          'nhis': 1,
          'character': 1,
          'mean': 1,
          'somewhat': 1,
          'reckless': 1,
          'lives': 1,
          'men': 1,
          'somehow': 1,
          'manages': 1,
          'evoke': 1,
          'sympathy': 1,
          'ncaviezel': 1,
          'forever': 1,
          'questioning': 1,
          'nature': 1,
          'place': 1,
          'theres': 1,
          'deeper': 1,
          'meaning': 1,
          'hell': 1,
          'hes': 1,
          'nhe': 1,
          'perfect': 1,
          'genuine': 1,
          'sympathetic': 1,
          'sincere': 1,
          'strong': 1,
          'needs': 1,
          'restricted': 1,
          'relatively': 1,
          'small': 1,
          'role': 1,
          'sean': 1,
          'penn': 1,
          'also': 1,
          'good': 1,
          'companys': 1,
          'pessimistic': 1,
          'seargent': 1,
          'nas': 1,
          'stacks': 1,
          'really': 1,
          'different': 1,
          'wont': 1,
          'beyond': 1,
          'saying': 1,
          'spielbergs': 1,
          'impact': 1,
          'nhowever': 1,
          'comparable': 1,
          'standpoint': 1,
          'quality': 1,
          'see': 1,
          'someone': 1,
          'ni': 1,
          'highly': 1,
          'recommend': 1,
          'consider': 1,
          'best': 1,
          'movies': 1,
          'made': 1,
          'nall': 1,
          'filmmaking': 1,
          'high': 1,
          'order': 1,
          'slight': 1,
          'faults': 1,
          'offset': 1,
          'brilliance': 1,
          'done': 1,
          'real': 1,
          'shame': 1,
          'tanked': 1,
          'box': 1,
          'office': 1,
          'unconventional': 1,
          'powerful': 1,
          'thoughtprovoking': 1,
          'dont': 1,
          'along': 1,
          'often': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'nelson': 4,
          'see': 3,
          'mst3k': 3,
          'film': 3,
          'making': 3,
          'big': 3,
          'films': 3,
          'effects': 3,
          'tm': 2,
          'episodes': 2,
          'show': 2,
          'watched': 2,
          'comedy': 2,
          'many': 2,
          'nfor': 2,
          'world': 2,
          'series': 2,
          'missing': 2,
          'movies': 2,
          'time': 2,
          'two': 2,
          'robot': 2,
          'servo': 2,
          'crow': 2,
          'nthe': 2,
          'format': 2,
          'segments': 2,
          'set': 2,
          'jokes': 2,
          'screen': 2,
          'special': 2,
          'larger': 2,
          'nunfortunately': 2,
          'seat': 2,
          'keep': 2,
          'months': 2,
          'rainy': 1,
          'friday': 1,
          'afternoon': 1,
          'columbus': 1,
          'persuaded': 1,
          'friend': 1,
          'matinee': 1,
          'performance': 1,
          'nhe': 1,
          'never': 1,
          'seen': 1,
          'scant': 1,
          'due': 1,
          'unsocial': 1,
          'airtime': 1,
          'central': 1,
          'uneven': 1,
          'nature': 1,
          'familiar': 1,
          'premise': 1,
          'dr': 1,
          'clayton': 1,
          'forrester': 1,
          'beaulieu': 1,
          'wishes': 1,
          'take': 1,
          'finding': 1,
          'worst': 1,
          'ever': 1,
          'made': 1,
          'unleashing': 1,
          'upon': 1,
          'unsuspecting': 1,
          'public': 1,
          'nto': 1,
          'achieve': 1,
          'words': 1,
          'tv': 1,
          'theme': 1,
          'bumped': 1,
          'mike': 1,
          'noggin': 1,
          'shot': 1,
          'space': 1,
          'monitoring': 1,
          'nelsons': 1,
          'reactions': 1,
          'forced': 1,
          'endure': 1,
          'nrather': 1,
          'succumb': 1,
          'sheer': 1,
          'awfulness': 1,
          'spends': 1,
          'wisecracks': 1,
          'help': 1,
          'companions': 1,
          'tom': 1,
          'consists': 1,
          'comments': 1,
          'silhouetted': 1,
          'breaks': 1,
          'every': 1,
          '20': 1,
          'minutes': 1,
          'satellite': 1,
          'love': 1,
          'ship': 1,
          'heroes': 1,
          'marooned': 1,
          'nonly': 1,
          'things': 1,
          'different': 1,
          'absence': 1,
          'forresters': 1,
          'sidekick': 1,
          'tvs': 1,
          'frank': 1,
          'slower': 1,
          'pace': 1,
          'nthis': 1,
          'latter': 1,
          'change': 1,
          'presumably': 1,
          'deliberate': 1,
          'avoid': 1,
          'viewing': 1,
          'audience': 1,
          'best': 1,
          'lines': 1,
          'laughing': 1,
          'previous': 1,
          'joke': 1,
          'outing': 1,
          'producers': 1,
          'chosen': 1,
          'island': 1,
          'earth': 1,
          '1954': 1,
          'classic': 1,
          'one': 1,
          'first': 1,
          'sf': 1,
          'budget': 1,
          'average': 1,
          'grocery': 1,
          'bill': 1,
          'ideal': 1,
          'fodder': 1,
          'acting': 1,
          'dialogue': 1,
          'appear': 1,
          'taken': 1,
          'back': 1,
          'todays': 1,
          'standards': 1,
          'less': 1,
          'impressive': 1,
          'nnelson': 1,
          'co': 1,
          'make': 1,
          'everything': 1,
          'japans': 1,
          'dominance': 1,
          'market': 1,
          'star': 1,
          'trek': 1,
          'state': 1,
          'disrepair': 1,
          'seattles': 1,
          'kingdome': 1,
          'work': 1,
          'outside': 1,
          'satellites': 1,
          'theater': 1,
          'seem': 1,
          'place': 1,
          'arent': 1,
          'particularly': 1,
          'funny': 1,
          'least': 1,
          'theyre': 1,
          'fairly': 1,
          'short': 1,
          'question': 1,
          'though': 1,
          'ni': 1,
          'presume': 1,
          'attempt': 1,
          'gain': 1,
          'following': 1,
          'support': 1,
          'behind': 1,
          'rumours': 1,
          'impending': 1,
          'demise': 1,
          'circulated': 1,
          'plug': 1,
          'eventually': 1,
          'pulled': 1,
          'ago': 1,
          'gains': 1,
          'nothing': 1,
          'transition': 1,
          'dazzle': 1,
          'action': 1,
          'sequences': 1,
          'edge': 1,
          'use': 1,
          'digital': 1,
          'surround': 1,
          'sound': 1,
          'nso': 1,
          'seems': 1,
          'pointless': 1,
          'spend': 1,
          '8': 1,
          'per': 1,
          'person': 1,
          'video': 1,
          'watch': 1,
          '3': 1,
          'sit': 1,
          'room': 1,
          'full': 1,
          'popcorn': 1,
          'addicts': 1,
          'nnevertheless': 1,
          'provides': 1,
          'laughoutloud': 1,
          'opportunities': 1,
          'youre': 1,
          'going': 1,
          'year': 1,
          'thoroughly': 1,
          'recommend': 1,
          'anyone': 1,
          'pulse': 1,
          'ngiven': 1,
          'uniqueness': 1,
          'hesitate': 1,
          'grade': 1,
          'fulfils': 1,
          'claims': 1,
          'class': 1,
          'unsubtle': 1,
          'whose': 1,
          'laughs': 1,
          'come': 1,
          'expense': 1,
          'bad': 1,
          'bmovies': 1,
          'well': 1,
          'npos': 1}),
 Counter({'rylance': 6,
          'fox': 5,
          'scenes': 4,
          'intimacy': 3,
          'may': 3,
          'jay': 3,
          'one': 3,
          'much': 2,
          'mark': 2,
          'eyes': 2,
          'raw': 2,
          'less': 2,
          'often': 2,
          'without': 2,
          'single': 2,
          'sexual': 2,
          'nthe': 2,
          'human': 2,
          'especially': 2,
          'nintimacy': 2,
          'might': 2,
          'love': 2,
          'scene': 2,
          'cake': 2,
          'two': 2,
          'meet': 2,
          'nhes': 2,
          'restaurant': 2,
          'nas': 2,
          'takes': 2,
          'claires': 2,
          'routines': 2,
          'nin': 2,
          'attempt': 2,
          'restless': 2,
          'shots': 2,
          'opposite': 2,
          'also': 2,
          'spall': 2,
          'best': 2,
          'uncompromising': 1,
          'nudity': 1,
          'bared': 1,
          'throughout': 1,
          'petrice': 1,
          'chereaus': 1,
          'already': 1,
          'garnered': 1,
          'notoriety': 1,
          'naked': 1,
          'faces': 1,
          'fearless': 1,
          'actors': 1,
          'angels': 1,
          'insects': 1,
          'kerry': 1,
          'welcome': 1,
          'sarajevo': 1,
          'tender': 1,
          'ache': 1,
          'emotional': 1,
          'resonance': 1,
          'discovered': 1,
          'nwith': 1,
          'sharp': 1,
          'intelligent': 1,
          'reflect': 1,
          'experience': 1,
          'maturity': 1,
          'refreshingly': 1,
          'detached': 1,
          'false': 1,
          'glamour': 1,
          'hollywood': 1,
          'idols': 1,
          'ntheir': 1,
          'sex': 1,
          'together': 1,
          'bracing': 1,
          'honesty': 1,
          'acceptance': 1,
          'flesh': 1,
          'messiness': 1,
          'nless': 1,
          'apparent': 1,
          'remarkable': 1,
          'astute': 1,
          'observations': 1,
          'behavior': 1,
          'revealed': 1,
          'carnal': 1,
          'beats': 1,
          'haste': 1,
          'hesitance': 1,
          'line': 1,
          'dialogue': 1,
          'nnot': 1,
          'aiming': 1,
          'spiritual': 1,
          'poetry': 1,
          'realm': 1,
          'senses': 1,
          'philosophical': 1,
          'transgressions': 1,
          'crash': 1,
          'chereau': 1,
          'keeps': 1,
          'odyssey': 1,
          'firmly': 1,
          'grounded': 1,
          'terms': 1,
          'straightforward': 1,
          'character': 1,
          'development': 1,
          'nthat': 1,
          'reason': 1,
          'seems': 1,
          'unerringly': 1,
          'impressive': 1,
          'never': 1,
          'particularly': 1,
          'significant': 1,
          'tactile': 1,
          'sensory': 1,
          'level': 1,
          'themes': 1,
          'isolation': 1,
          'barren': 1,
          'obvious': 1,
          'science': 1,
          'project': 1,
          'devoid': 1,
          'groundbreaking': 1,
          'hypothesis': 1,
          'manage': 1,
          'stand': 1,
          'lesser': 1,
          'portraits': 1,
          'interconnectedness': 1,
          'pinteresque': 1,
          'rummages': 1,
          'psychological': 1,
          'dirty': 1,
          'drawers': 1,
          'okay': 1,
          'kill': 1,
          'nshallow': 1,
          'though': 1,
          'sound': 1,
          'amazing': 1,
          'filled': 1,
          'inspired': 1,
          'cast': 1,
          'perceptive': 1,
          'camerawork': 1,
          'imaginative': 1,
          'ways': 1,
          'treating': 1,
          'nthose': 1,
          'ingredients': 1,
          'assured': 1,
          'confident': 1,
          'merely': 1,
          'dismiss': 1,
          'icing': 1,
          'since': 1,
          'substance': 1,
          'nadapted': 1,
          'pair': 1,
          'short': 1,
          'stories': 1,
          'british': 1,
          'novelist': 1,
          'hanif': 1,
          'kureishi': 1,
          'weaves': 1,
          'desperate': 1,
          'lovemaking': 1,
          'strangers': 1,
          'london': 1,
          'nevery': 1,
          'wednesday': 1,
          'claire': 1,
          'cluttered': 1,
          'dank': 1,
          'apartment': 1,
          'hour': 1,
          'release': 1,
          'uninspired': 1,
          'lives': 1,
          'head': 1,
          'bartender': 1,
          'posh': 1,
          'six': 1,
          'years': 1,
          'nshes': 1,
          'mystery': 1,
          'glum': 1,
          'workaday': 1,
          'appearance': 1,
          'reveals': 1,
          'similar': 1,
          'dissatisfaction': 1,
          'ntheyre': 1,
          'married': 1,
          'relationship': 1,
          'curdled': 1,
          'embittered': 1,
          'separation': 1,
          'weeks': 1,
          'draw': 1,
          'obsessively': 1,
          'upon': 1,
          'uncover': 1,
          'personal': 1,
          'gain': 1,
          'fuller': 1,
          'semblance': 1,
          'opens': 1,
          'wounds': 1,
          'hadnt': 1,
          'existed': 1,
          'singlehandedly': 1,
          'corrupting': 1,
          'fantasy': 1,
          'nif': 1,
          'werent': 1,
          'unnecessary': 1,
          'subplots': 1,
          'involving': 1,
          'jays': 1,
          'brother': 1,
          'bevy': 1,
          'disgruntled': 1,
          'coworkers': 1,
          'minimalist': 1,
          'premise': 1,
          'described': 1,
          'modern': 1,
          'fable': 1,
          'perils': 1,
          'wish': 1,
          'fulfillment': 1,
          'nchareaus': 1,
          'camera': 1,
          'wielded': 1,
          'superb': 1,
          'everattentive': 1,
          'cinematographer': 1,
          'eric': 1,
          'gautier': 1,
          'appropriate': 1,
          'family': 1,
          'transitoriented': 1,
          'take': 1,
          'train': 1,
          'linger': 1,
          'still': 1,
          'ones': 1,
          'separately': 1,
          'pensively': 1,
          'carry': 1,
          'makeshift': 1,
          'household': 1,
          'nthese': 1,
          'captured': 1,
          'lingering': 1,
          'unblinking': 1,
          'wide': 1,
          'view': 1,
          'stranded': 1,
          'amidst': 1,
          'drab': 1,
          'workplaces': 1,
          'homes': 1,
          'nseparation': 1,
          'proves': 1,
          'haunting': 1,
          'melancholy': 1,
          'series': 1,
          'intercut': 1,
          'undress': 1,
          'sides': 1,
          'room': 1,
          'crawling': 1,
          'across': 1,
          'floor': 1,
          'center': 1,
          'ndespite': 1,
          'fly': 1,
          'hyperactive': 1,
          'better': 1,
          'blend': 1,
          'hustling': 1,
          'crowd': 1,
          'gabby': 1,
          'trendsetters': 1,
          'youd': 1,
          'hard': 1,
          'pressed': 1,
          'find': 1,
          'uninteresting': 1,
          'image': 1,
          'interest': 1,
          'sordid': 1,
          'world': 1,
          'lowermiddle': 1,
          'class': 1,
          'lonely': 1,
          'pubs': 1,
          'busy': 1,
          'shopping': 1,
          'streets': 1,
          'understands': 1,
          'people': 1,
          'inhabit': 1,
          'spaces': 1,
          'viewing': 1,
          'sympathy': 1,
          'scraped': 1,
          'nan': 1,
          'evaluation': 1,
          'would': 1,
          'incomplete': 1,
          'highlighting': 1,
          'great': 1,
          'timothy': 1,
          'robust': 1,
          'scenestealer': 1,
          'many': 1,
          'mike': 1,
          'leigh': 1,
          'collaboration': 1,
          'cuckolded': 1,
          'husband': 1,
          'jocular': 1,
          'heavyweight': 1,
          'plays': 1,
          'handful': 1,
          'bitter': 1,
          'pill': 1,
          'unforced': 1,
          'menace': 1,
          'selfeffacing': 1,
          'embarrassment': 1,
          'imposing': 1,
          'bulk': 1,
          'nbangs': 1,
          'mouth': 1,
          'forming': 1,
          'quizzical': 1,
          'pouts': 1,
          'dry': 1,
          'smirks': 1,
          'seem': 1,
          'fool': 1,
          'barroom': 1,
          'encounters': 1,
          'sarcastic': 1,
          'gleaming': 1,
          'whose': 1,
          'arrived': 1,
          'looking': 1,
          'stir': 1,
          'trouble': 1,
          'trifle': 1,
          'nhis': 1,
          'overreaching': 1,
          'pal': 1,
          'demeanor': 1,
          'suggests': 1,
          'mind': 1,
          'abuzz': 1,
          'secret': 1,
          'passageways': 1,
          'guile': 1,
          'pointed': 1,
          'questions': 1,
          'na': 1,
          'choose': 1,
          'read': 1,
          'crafty': 1,
          'insinuations': 1,
          'unassuming': 1,
          'way': 1,
          'spalls': 1,
          'carefully': 1,
          'etched': 1,
          'interpretation': 1,
          'hostility': 1,
          'buried': 1,
          'mountain': 1,
          'surface': 1,
          'propriety': 1,
          'become': 1,
          'criminally': 1,
          'underappreciated': 1,
          'performances': 1,
          'year': 1,
          'maybe': 1,
          'good': 1,
          'npos': 1}),
 Counter({'little': 11,
          'stuart': 10,
          'film': 8,
          'dvd': 7,
          'commentary': 7,
          'track': 6,
          'features': 6,
          'nthe': 5,
          'effects': 5,
          'nthere': 4,
          'also': 4,
          'movie': 4,
          'films': 4,
          'video': 4,
          'director': 4,
          'called': 4,
          'mouse': 3,
          'house': 3,
          'family': 3,
          'boat': 3,
          'race': 3,
          'nstuart': 3,
          'computer': 3,
          'great': 3,
          'one': 3,
          'columbia': 3,
          'tristar': 3,
          'full': 3,
          '1': 3,
          'audio': 3,
          'animation': 3,
          'visual': 3,
          'know': 3,
          'song': 3,
          'party': 3,
          'way': 3,
          'wants': 2,
          'brother': 2,
          'voiced': 2,
          'ngeorge': 2,
          'snowbell': 2,
          'cat': 2,
          'nathan': 2,
          'lane': 2,
          'live': 2,
          'generated': 2,
          'obviously': 2,
          'youll': 2,
          'see': 2,
          'special': 2,
          'actual': 2,
          'cats': 2,
          'nits': 2,
          'give': 2,
          'without': 2,
          'script': 2,
          'sequence': 2,
          'nkids': 2,
          'love': 2,
          'original': 2,
          'theatrical': 2,
          'nboth': 2,
          'versions': 2,
          'dolby': 2,
          'lot': 2,
          'length': 2,
          'rob': 2,
          'minkoff': 2,
          'supervisor': 2,
          'henry': 2,
          'anderson': 2,
          'supervisors': 2,
          'interactive': 2,
          'game': 2,
          'step': 2,
          'eight': 2,
          'story': 2,
          'read': 2,
          'music': 2,
          'videos': 2,
          'six': 2,
          'trailers': 2,
          'baby': 2,
          'geniuses': 2,
          'disc': 2,
          'wait': 2,
          'ntheres': 2,
          'animators': 2,
          'scenes': 2,
          'gag': 2,
          'reel': 2,
          'production': 2,
          'scene': 2,
          'first': 2,
          'nthey': 2,
          'like': 2,
          'larry': 2,
          'wrote': 2,
          'people': 2,
          'worked': 2,
          'second': 2,
          'need': 2,
          'nthis': 2,
          'girls': 2,
          'slumber': 2,
          'words': 2,
          'nwhat': 2,
          'suitable': 2,
          'kids': 2,
          'george': 1,
          'jonathan': 1,
          'lipnicki': 1,
          'nafter': 1,
          'mr': 1,
          'mrs': 1,
          'hugh': 1,
          'laurie': 1,
          'geena': 1,
          'davis': 1,
          'visit': 1,
          'orphange': 1,
          'decide': 1,
          'adopt': 1,
          'talking': 1,
          'michael': 1,
          'j': 1,
          'fox': 1,
          'isnt': 1,
          'fond': 1,
          'new': 1,
          'arrives': 1,
          'neither': 1,
          'eventually': 1,
          'bond': 1,
          'preparing': 1,
          'remote': 1,
          'control': 1,
          'hes': 1,
          'unable': 1,
          'taunts': 1,
          'neighborhood': 1,
          'felines': 1,
          'saying': 1,
          'ridiculous': 1,
          'pet': 1,
          'mix': 1,
          'action': 1,
          'imagery': 1,
          'cgi': 1,
          'character': 1,
          'image': 1,
          'grows': 1,
          'progresses': 1,
          'soon': 1,
          'much': 1,
          'mere': 1,
          'effect': 1,
          'deal': 1,
          'animal': 1,
          'training': 1,
          'involved': 1,
          'many': 1,
          'supporting': 1,
          'cast': 1,
          'animated': 1,
          'mouths': 1,
          'speak': 1,
          'fascinating': 1,
          'watch': 1,
          'performances': 1,
          'interact': 1,
          'charming': 1,
          'laughs': 1,
          'cowritten': 1,
          'sixth': 1,
          'senses': 1,
          'night': 1,
          'shyamalan': 1,
          'less': 1,
          'nsome': 1,
          'moments': 1,
          'described': 1,
          'cute': 1,
          'even': 1,
          'majority': 1,
          'oneliners': 1,
          'common': 1,
          'nowadays': 1,
          'childrens': 1,
          'featuring': 1,
          'tolerable': 1,
          'parents': 1,
          'available': 1,
          'home': 1,
          'two': 1,
          'different': 1,
          'dvds': 1,
          'sale': 1,
          'contains': 1,
          'frame': 1,
          'presents': 1,
          'aspect': 1,
          'ratio': 1,
          '66': 1,
          'feature': 1,
          'choices': 1,
          'either': 1,
          'surround': 1,
          'digital': 1,
          '5': 1,
          'contain': 1,
          'following': 1,
          'extras': 1,
          'hang': 1,
          'theres': 1,
          'isolated': 1,
          'score': 1,
          'trivia': 1,
          'featurette': 1,
          'goes': 1,
          'making': 1,
          'documentary': 1,
          'originally': 1,
          'aried': 1,
          'hbo': 1,
          'readalong': 1,
          'three': 1,
          'thecatrical': 1,
          'nget': 1,
          'funny': 1,
          'five': 1,
          'releases': 1,
          'adventures': 1,
          'elmo': 1,
          'grouchland': 1,
          'madeline': 1,
          'nuttiest': 1,
          'nutcracker': 1,
          'muppets': 1,
          'space': 1,
          'bad': 1,
          'thing': 1,
          'entire': 1,
          'ni': 1,
          'want': 1,
          'reminded': 1,
          'awfulness': 1,
          'ndvdrom': 1,
          'including': 1,
          'web': 1,
          'links': 1,
          'demo': 1,
          'cdrom': 1,
          'nbut': 1,
          'still': 1,
          'section': 1,
          'basement': 1,
          'treasures': 1,
          'find': 1,
          'auditions': 1,
          'deleted': 1,
          'select': 1,
          'view': 1,
          'incredible': 1,
          'minute': 1,
          'storyboard': 1,
          'detailing': 1,
          'concept': 1,
          'insightful': 1,
          'detailed': 1,
          'thoughts': 1,
          'nminkoff': 1,
          'likes': 1,
          'point': 1,
          'screenwriters': 1,
          'came': 1,
          'polished': 1,
          'namely': 1,
          'writers': 1,
          'scott': 1,
          'alexander': 1,
          'karaszewski': 1,
          'vs': 1,
          'flynt': 1,
          'ed': 1,
          'wood': 1,
          'lowell': 1,
          'ganz': 1,
          'babaloo': 1,
          'mandel': 1,
          'splash': 1,
          'multiplicity': 1,
          'among': 1,
          'others': 1,
          'nanderson': 1,
          'appreciative': 1,
          'often': 1,
          'points': 1,
          'animator': 1,
          'occur': 1,
          'john': 1,
          'dykstra': 1,
          'jerome': 1,
          'chen': 1,
          'discuss': 1,
          'specific': 1,
          'details': 1,
          'nmovie': 1,
          'fans': 1,
          'enjoy': 1,
          'informative': 1,
          'serious': 1,
          'buffs': 1,
          'nnow': 1,
          'slightly': 1,
          'topic': 1,
          'related': 1,
          'specifically': 1,
          'must': 1,
          'voice': 1,
          'none': 1,
          'group': 1,
          'r': 1,
          'angels': 1,
          'four': 1,
          'midteenage': 1,
          'singers': 1,
          'ask': 1,
          'ouija': 1,
          'board': 1,
          'nwho': 1,
          'begins': 1,
          'sneak': 1,
          'along': 1,
          'strike': 1,
          'pose': 1,
          'pajamas': 1,
          'magically': 1,
          'transformed': 1,
          'middle': 1,
          'class': 1,
          'streetwalker': 1,
          'outfits': 1,
          'nthen': 1,
          'head': 1,
          'dance': 1,
          'suggestively': 1,
          'guys': 1,
          'singing': 1,
          'lyrics': 1,
          'ill': 1,
          'pleasure': 1,
          'time': 1,
          'njust': 1,
          'say': 1,
          'mine': 1,
          'num': 1,
          'hell': 1,
          'nhow': 1,
          'let': 1,
          'alone': 1,
          'nwhen': 1,
          'concludes': 1,
          'continued': 1,
          'appear': 1,
          'noh': 1,
          'cant': 1,
          'theyve': 1,
          'slept': 1,
          'toy': 1,
          '2': 1,
          'comes': 1,
          'wont': 1,
          'care': 1,
          'us': 1,
          'sometimes': 1,
          'turned': 1,
          'kid': 1,
          'heart': 1,
          'thanks': 1,
          'winning': 1,
          'sure': 1,
          'appreciate': 1,
          'good': 1,
          'loaded': 1,
          'reasonable': 1,
          'cost': 1,
          'diney': 1,
          'could': 1,
          'learn': 1,
          'npos': 1}),
 Counter({'star': 15,
          'wars': 14,
          'movie': 10,
          'movies': 10,
          'lucas': 9,
          'science': 8,
          'fiction': 8,
          'film': 7,
          'nthe': 7,
          'time': 7,
          'hollywood': 7,
          'would': 6,
          'old': 6,
          'special': 5,
          'nin': 5,
          'even': 5,
          'personal': 5,
          'two': 5,
          'one': 4,
          'like': 4,
          'new': 4,
          'audience': 4,
          'dark': 4,
          'space': 4,
          'sf': 4,
          'man': 4,
          'enough': 4,
          'reviewers': 3,
          '1977': 3,
          'epic': 3,
          'george': 3,
          'millions': 3,
          'must': 3,
          'also': 3,
          'use': 3,
          'many': 3,
          'ago': 3,
          'away': 3,
          'important': 3,
          'authors': 3,
          'mostly': 3,
          'ngeorge': 3,
          'among': 3,
          'success': 3,
          'inspiration': 3,
          'popular': 3,
          'good': 3,
          'considered': 3,
          'young': 3,
          'death': 3,
          'information': 3,
          'last': 3,
          'effects': 3,
          'john': 3,
          'could': 2,
          'arent': 2,
          'small': 2,
          'case': 2,
          'fans': 2,
          'something': 2,
          'seen': 2,
          'best': 2,
          'nthose': 2,
          'dont': 2,
          'usually': 2,
          'artistic': 2,
          'first': 2,
          'years': 2,
          'long': 2,
          'galaxy': 2,
          'far': 2,
          'perhaps': 2,
          'comic': 2,
          'books': 2,
          'going': 2,
          'come': 2,
          'probably': 2,
          'nuntil': 2,
          'american': 2,
          'industry': 2,
          'social': 2,
          '1960s': 2,
          'financial': 2,
          'technical': 2,
          'serious': 2,
          'artsy': 2,
          'nas': 2,
          'result': 2,
          'didnt': 2,
          'want': 2,
          'role': 2,
          'began': 2,
          'blockbuster': 2,
          'genre': 2,
          '2001': 2,
          'odyssey': 2,
          'nbut': 2,
          'production': 2,
          'dystopic': 2,
          'nhowever': 2,
          'although': 2,
          'continued': 2,
          'early': 2,
          'nafter': 2,
          'family': 2,
          'member': 2,
          'begins': 2,
          'evil': 2,
          'empire': 2,
          'republic': 2,
          'order': 2,
          'princess': 2,
          'carrie': 2,
          'fisher': 2,
          'imperial': 2,
          'voice': 2,
          'james': 2,
          'earl': 2,
          'jones': 2,
          'robots': 2,
          'r2d2': 2,
          'luke': 2,
          'mark': 2,
          'hamill': 2,
          'become': 2,
          'pilot': 2,
          'obi': 2,
          'wan': 2,
          'alec': 2,
          'guiness': 2,
          'force': 2,
          'harrison': 2,
          'ford': 2,
          'peter': 2,
          'cant': 2,
          'non': 2,
          'might': 2,
          'yet': 2,
          'element': 2,
          'decades': 2,
          'impressive': 2,
          'somewhat': 2,
          'form': 2,
          'whose': 2,
          'main': 2,
          'career': 2,
          'release': 2,
          'countries': 1,
          'legal': 1,
          'systems': 1,
          'take': 1,
          'rule': 1,
          'law': 1,
          'principle': 1,
          'seriously': 1,
          'forbidden': 1,
          'judges': 1,
          'juries': 1,
          'make': 1,
          'judgements': 1,
          'matters': 1,
          'involve': 1,
          'personally': 1,
          'nluckily': 1,
          'burdened': 1,
          'legislation': 1,
          'notherwise': 1,
          'pool': 1,
          'forever': 1,
          'ignored': 1,
          'reviewer': 1,
          'consequences': 1,
          'severe': 1,
          'tens': 1,
          'hundreds': 1,
          'objectivity': 1,
          'seldom': 1,
          'reviews': 1,
          'undisputed': 1,
          'majority': 1,
          'rate': 1,
          'times': 1,
          'difficulties': 1,
          'hiding': 1,
          'snobbery': 1,
          'author': 1,
          'review': 1,
          'concede': 1,
          'inability': 1,
          'cold': 1,
          'objective': 1,
          'standards': 1,
          'reviewing': 1,
          'nlike': 1,
          'previous': 1,
          'note': 1,
          'watched': 1,
          'twenty': 1,
          'remained': 1,
          'enchanted': 1,
          'experience': 1,
          'ever': 1,
          'since': 1,
          'nperhaps': 1,
          'childlike': 1,
          'fascination': 1,
          'unimaginable': 1,
          'wonders': 1,
          'happened': 1,
          'rush': 1,
          'felt': 1,
          'minutes': 1,
          'opening': 1,
          'shots': 1,
          'expectations': 1,
          'already': 1,
          'pumped': 1,
          'serialised': 1,
          'novelisation': 1,
          'read': 1,
          'nanyway': 1,
          'watching': 1,
          'experiences': 1,
          'life': 1,
          'nand': 1,
          'unmatched': 1,
          'managed': 1,
          'strong': 1,
          'impact': 1,
          'nstar': 1,
          'wasnt': 1,
          'share': 1,
          'sentiment': 1,
          'nit': 1,
          'defining': 1,
          'moment': 1,
          'history': 1,
          'modern': 1,
          'cinema': 1,
          'motion': 1,
          'picture': 1,
          'limbo': 1,
          'turmoil': 1,
          'practically': 1,
          'destroyed': 1,
          'filled': 1,
          'void': 1,
          'using': 1,
          'hollywoods': 1,
          'resources': 1,
          'create': 1,
          'traumatised': 1,
          'reality': 1,
          'vietnam': 1,
          'watergate': 1,
          'see': 1,
          'content': 1,
          'silver': 1,
          'screen': 1,
          'rescue': 1,
          'responded': 1,
          'unprecedented': 1,
          'enthusiasm': 1,
          'huge': 1,
          'later': 1,
          'backed': 1,
          'supplement': 1,
          'toys': 1,
          'comics': 1,
          'playing': 1,
          'games': 1,
          'merchandise': 1,
          'slowly': 1,
          'change': 1,
          'face': 1,
          'nserious': 1,
          'adult': 1,
          'ambitions': 1,
          'faded': 1,
          'oblivion': 1,
          'replaced': 1,
          'industrial': 1,
          'products': 1,
          'philosophy': 1,
          'none': 1,
          'biggest': 1,
          'casualties': 1,
          'trend': 1,
          'bproduction': 1,
          'domain': 1,
          'late': 1,
          'bigger': 1,
          'budgets': 1,
          'look': 1,
          'strange': 1,
          'anymore': 1,
          'thanks': 1,
          'great': 1,
          'coincided': 1,
          'surge': 1,
          'pesimism': 1,
          'bleak': 1,
          'rest': 1,
          'showed': 1,
          'doesnt': 1,
          'seriousness': 1,
          'cinematic': 1,
          'fading': 1,
          'cult': 1,
          'quality': 1,
          'filmed': 1,
          '1980s': 1,
          'synonym': 1,
          'entertainment': 1,
          'nironically': 1,
          'responsible': 1,
          'generation': 1,
          'made': 1,
          'films': 1,
          '1970s': 1,
          'established': 1,
          'thx': 1,
          '1138': 1,
          'nostalgic': 1,
          'drama': 1,
          'graffiti': 1,
          'nboth': 1,
          'despite': 1,
          'latter': 1,
          'becoming': 1,
          'sense': 1,
          'thorny': 1,
          'way': 1,
          'final': 1,
          'shows': 1,
          'commercial': 1,
          'considerations': 1,
          'unlike': 1,
          'era': 1,
          'personality': 1,
          'line': 1,
          'wishes': 1,
          'general': 1,
          'plot': 1,
          'set': 1,
          'civil': 1,
          'war': 1,
          'threatened': 1,
          'rebels': 1,
          'restore': 1,
          'quash': 1,
          'opposition': 1,
          'built': 1,
          'superweapon': 1,
          'powerful': 1,
          'destroy': 1,
          'whole': 1,
          'planets': 1,
          'acquired': 1,
          'rebel': 1,
          'intelligence': 1,
          'transported': 1,
          'leia': 1,
          'organa': 1,
          'ship': 1,
          'gets': 1,
          'intercepted': 1,
          'cruiser': 1,
          'nprincess': 1,
          'arrested': 1,
          'warlord': 1,
          'darth': 1,
          'vader': 1,
          'played': 1,
          'david': 1,
          'prowse': 1,
          'sent': 1,
          'nearby': 1,
          'desert': 1,
          'planet': 1,
          'tatooine': 1,
          'via': 1,
          'humanoid': 1,
          'c3po': 1,
          'anthony': 1,
          'daniels': 1,
          'kenny': 1,
          'baker': 1,
          'sold': 1,
          'skywalker': 1,
          'restless': 1,
          'wants': 1,
          'leave': 1,
          'farm': 1,
          'nhis': 1,
          'adventure': 1,
          'escapes': 1,
          'reach': 1,
          'mysterious': 1,
          'local': 1,
          'hermit': 1,
          'kenobi': 1,
          'nold': 1,
          'actually': 1,
          'surviving': 1,
          'jedi': 1,
          'knight': 1,
          'ancient': 1,
          'defended': 1,
          'mystical': 1,
          'hesitation': 1,
          'agrees': 1,
          'join': 1,
          'mission': 1,
          'save': 1,
          'teach': 1,
          'ways': 1,
          'ntheir': 1,
          'band': 1,
          'comes': 1,
          'colourful': 1,
          'spaceport': 1,
          'moss': 1,
          'eisely': 1,
          'hire': 1,
          'spaceship': 1,
          'owned': 1,
          'rogue': 1,
          'han': 1,
          'solo': 1,
          'furry': 1,
          'sidekick': 1,
          'chewbacca': 1,
          'mayhew': 1,
          'ncritics': 1,
          'especially': 1,
          'forgive': 1,
          'contribution': 1,
          'quashing': 1,
          'prone': 1,
          'point': 1,
          'lack': 1,
          'originality': 1,
          'surface': 1,
          'right': 1,
          'admits': 1,
          'found': 1,
          'lot': 1,
          'lore': 1,
          'westerns': 1,
          'wwii': 1,
          'aviation': 1,
          'cliffhanger': 1,
          'serials': 1,
          '1930s': 1,
          '1940s': 1,
          'obvious': 1,
          'akira': 1,
          'kurosawas': 1,
          'samurai': 1,
          'classic': 1,
          'hidden': 1,
          'fortress': 1,
          'hand': 1,
          'spent': 1,
          'studying': 1,
          'say': 1,
          'went': 1,
          'collective': 1,
          'subconscious': 1,
          'western': 1,
          'civilisation': 1,
          'hinted': 1,
          'mild': 1,
          'tolkien': 1,
          'references': 1,
          'others': 1,
          'find': 1,
          'within': 1,
          'story': 1,
          'anti': 1,
          'establishment': 1,
          'longhaired': 1,
          'easy': 1,
          'natureloving': 1,
          'heroes': 1,
          'fighting': 1,
          'uptight': 1,
          'oppressive': 1,
          'forces': 1,
          'supertechnology': 1,
          'demonic': 1,
          'purposes': 1,
          'neven': 1,
          'historical': 1,
          'context': 1,
          'strictly': 1,
          'piece': 1,
          'seven': 1,
          'art': 1,
          'direction': 1,
          'clever': 1,
          'editing': 1,
          'wellpaced': 1,
          'segments': 1,
          'action': 1,
          'dramatic': 1,
          'buildup': 1,
          'ncharacters': 1,
          'welldrawn': 1,
          'deliver': 1,
          'necessary': 1,
          'ingredients': 1,
          'opera': 1,
          'nwe': 1,
          'comingofage': 1,
          'hero': 1,
          'damselindistress': 1,
          'toned': 1,
          'due': 1,
          'feminist': 1,
          'trends': 1,
          'reluctant': 1,
          'helper': 1,
          'benevolent': 1,
          'mentor': 1,
          'diabolical': 1,
          'villain': 1,
          'finally': 1,
          'relief': 1,
          'nonhuman': 1,
          'characters': 1,
          'nsome': 1,
          'actors': 1,
          'famous': 1,
          'date': 1,
          'cause': 1,
          'unease': 1,
          'cushing': 1,
          'incarnation': 1,
          'pure': 1,
          'human': 1,
          'nunfortunately': 1,
          'said': 1,
          'leads': 1,
          'trio': 1,
          'character': 1,
          'threedimensional': 1,
          'launch': 1,
          'acting': 1,
          'thing': 1,
          'looked': 1,
          'segment': 1,
          'phenomena': 1,
          'initial': 1,
          'level': 1,
          'technology': 1,
          'noften': 1,
          'comparisons': 1,
          'another': 1,
          'groundbreaking': 1,
          'citing': 1,
          'sheer': 1,
          'number': 1,
          'proof': 1,
          'superiority': 1,
          'kubrick': 1,
          'dykstra': 1,
          'stears': 1,
          'indeed': 1,
          '1997': 1,
          'edition': 1,
          'improve': 1,
          'significantly': 1,
          'remembered': 1,
          'trademark': 1,
          'nthat': 1,
          'honour': 1,
          'definitely': 1,
          'go': 1,
          'oscar': 1,
          'winning': 1,
          'soundtrack': 1,
          'williams': 1,
          'work': 1,
          'brightest': 1,
          'gem': 1,
          'brilliant': 1,
          'nnewer': 1,
          'generations': 1,
          'viewers': 1,
          'deprived': 1,
          'enchantment': 1,
          'still': 1,
          'holds': 1,
          'lucky': 1,
          'witness': 1,
          'original': 1,
          'nyet': 1,
          'immune': 1,
          'magic': 1,
          'watch': 1,
          'nevertheless': 1,
          'familiar': 1,
          'essential': 1,
          'part': 1,
          'contemporary': 1,
          'culture': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'frequency': 4,
          'film': 4,
          'n': 3,
          'number': 3,
          'know': 3,
          'new': 3,
          'john': 3,
          'frank': 3,
          'past': 3,
          'future': 3,
          'movie': 3,
          'specified': 2,
          'nwhen': 2,
          'premise': 2,
          'may': 2,
          'york': 2,
          'father': 2,
          'thirty': 2,
          'years': 2,
          'ago': 2,
          'stop': 2,
          'wasnt': 2,
          'one': 2,
          'serial': 2,
          'killer': 2,
          'save': 2,
          'present': 2,
          'buy': 2,
          'plot': 2,
          'people': 2,
          'would': 2,
          'family': 2,
          'kids': 2,
          'nfrequency': 2,
          'also': 2,
          'nboth': 2,
          'change': 2,
          'scene': 2,
          'story': 2,
          'end': 2,
          'think': 2,
          'times': 1,
          'phenomenon': 1,
          'occurs': 1,
          'within': 1,
          'interval': 1,
          'repetitions': 1,
          'complete': 1,
          'sequence': 1,
          'values': 1,
          'periodic': 1,
          'function': 1,
          'per': 1,
          'unit': 1,
          'variation': 1,
          'independent': 1,
          'variable': 1,
          'etc': 1,
          'ndont': 1,
          'worry': 1,
          'watching': 1,
          'thriller': 1,
          'wont': 1,
          'heck': 1,
          'means': 1,
          'although': 1,
          'sound': 1,
          'complex': 1,
          'basic': 1,
          'big': 1,
          'screen': 1,
          'na': 1,
          'cop': 1,
          'jim': 1,
          'caviezel': 1,
          'finds': 1,
          'radio': 1,
          'house': 1,
          'allows': 1,
          'communicate': 1,
          'firefighter': 1,
          'dennis': 1,
          'quaid': 1,
          'died': 1,
          'nimmediately': 1,
          'warns': 1,
          'die': 1,
          'trying': 1,
          'fire': 1,
          'abandoned': 1,
          'warehouse': 1,
          'takes': 1,
          'advice': 1,
          'survives': 1,
          'accident': 1,
          'supposed': 1,
          'two': 1,
          'eventually': 1,
          'realize': 1,
          'changing': 1,
          'moment': 1,
          'created': 1,
          'whole': 1,
          'murders': 1,
          'johns': 1,
          'mother': 1,
          'nine': 1,
          'women': 1,
          'nit': 1,
          'use': 1,
          'special': 1,
          'connection': 1,
          'make': 1,
          'time': 1,
          'better': 1,
          'place': 1,
          'told': 1,
          'confusing': 1,
          'noverall': 1,
          'pleased': 1,
          'nits': 1,
          'occasional': 1,
          'sappy': 1,
          'moments': 1,
          'perfectly': 1,
          'synchronized': 1,
          'suspenseful': 1,
          'scenes': 1,
          'ni': 1,
          'usually': 1,
          'dont': 1,
          'cheesy': 1,
          'love': 1,
          'dad': 1,
          'segments': 1,
          'movies': 1,
          'surprisingly': 1,
          'satisfied': 1,
          'nmaybe': 1,
          'creative': 1,
          'universal': 1,
          'believed': 1,
          'act': 1,
          'talking': 1,
          'dead': 1,
          'relative': 1,
          'nfrequencys': 1,
          'creepy': 1,
          'left': 1,
          'thinking': 1,
          'ended': 1,
          'nwhat': 1,
          'nwould': 1,
          'help': 1,
          'historical': 1,
          'figure': 1,
          'assasinated': 1,
          'shooting': 1,
          'stock': 1,
          'yahoo': 1,
          'character': 1,
          'latter': 1,
          'humorous': 1,
          'consequences': 1,
          'reminded': 1,
          'fantastic': 1,
          'back': 1,
          'share': 1,
          'slightly': 1,
          'youll': 1,
          'heavily': 1,
          'warning': 1,
          'changes': 1,
          'different': 1,
          'newspaper': 1,
          'headlines': 1,
          'disappearing': 1,
          'reappearing': 1,
          'photographs': 1,
          'similar': 1,
          'wonderful': 1,
          'feelgood': 1,
          'films': 1,
          'attract': 1,
          'generations': 1,
          'difference': 1,
          'worth': 1,
          'noting': 1,
          'frequencys': 1,
          'final': 1,
          'doesnt': 1,
          'set': 1,
          'possibility': 1,
          'lucrative': 1,
          'sequel': 1,
          'already': 1,
          'making': 1,
          'nthere': 1,
          'problems': 1,
          'though': 1,
          'nfirst': 1,
          'major': 1,
          'flaw': 1,
          'towards': 1,
          'somewhat': 1,
          'distracting': 1,
          'email': 1,
          'seen': 1,
          'want': 1,
          'must': 1,
          'confused': 1,
          'even': 1,
          'filmmakers': 1,
          'frequently': 1,
          'pun': 1,
          'intended': 1,
          'switch': 1,
          '1969': 1,
          '1999': 1,
          'telling': 1,
          'nanother': 1,
          'problem': 1,
          'supporting': 1,
          'cast': 1,
          'including': 1,
          'noah': 1,
          'emmerich': 1,
          'andre': 1,
          'braugher': 1,
          'underused': 1,
          'nwhile': 1,
          'enough': 1,
          'aforementioned': 1,
          'actors': 1,
          'steal': 1,
          'every': 1,
          'pleasant': 1,
          'surprise': 1,
          'audience': 1,
          'saw': 1,
          'cheered': 1,
          'neven': 1,
          'going': 1,
          'happen': 1,
          'preview': 1,
          'ruined': 1,
          'like': 1,
          'almost': 1,
          'check': 1,
          'nyou': 1,
          'surprised': 1,
          'well': 1,
          'npos': 1}),
 Counter({'suspiria': 6,
          'argentos': 5,
          'film': 5,
          'nthe': 5,
          'argento': 4,
          'one': 4,
          'na': 3,
          'italian': 3,
          'always': 3,
          'well': 3,
          'ballet': 3,
          'school': 3,
          'harper': 3,
          'quite': 3,
          'example': 3,
          'psycho': 2,
          'like': 2,
          'comes': 2,
          'horror': 2,
          'director': 2,
          'dario': 2,
          'nwhat': 2,
          'directorial': 2,
          'flair': 2,
          'better': 2,
          'nfortunately': 2,
          'de': 2,
          'films': 2,
          'major': 2,
          'sequence': 2,
          'intensity': 2,
          'scene': 2,
          'baroque': 2,
          'gore': 2,
          'gothic': 2,
          'else': 2,
          'minutes': 2,
          'played': 2,
          'would': 2,
          'thats': 2,
          'english': 2,
          'actors': 2,
          'nand': 2,
          'soundtrack': 2,
          'use': 2,
          'music': 2,
          'overall': 2,
          'superb': 2,
          'also': 2,
          'bassan': 2,
          'meets': 1,
          'exorcist': 1,
          'holds': 1,
          'barred': 1,
          'blurb': 1,
          'sounds': 1,
          'desperate': 1,
          'publicity': 1,
          'low': 1,
          'budget': 1,
          'third': 1,
          'rate': 1,
          'ripoff': 1,
          'nbut': 1,
          'tacky': 1,
          'plug': 1,
          'poster': 1,
          'perhaps': 1,
          'consistently': 1,
          'successful': 1,
          'impresses': 1,
          'rewatching': 1,
          'surrealistic': 1,
          'supernatural': 1,
          'thriller': 1,
          'stylish': 1,
          'visuals': 1,
          'matched': 1,
          'nearfully': 1,
          'coherent': 1,
          'narrative': 1,
          'nscreenplays': 1,
          'achilles': 1,
          'heel': 1,
          'confusing': 1,
          'subplots': 1,
          'gaping': 1,
          'holes': 1,
          'totally': 1,
          'illogical': 1,
          'incidents': 1,
          'reactions': 1,
          'nno': 1,
          'question': 1,
          'writer': 1,
          'gets': 1,
          'plotting': 1,
          'pretty': 1,
          'right': 1,
          'taking': 1,
          'cue': 1,
          'book': 1,
          'thomas': 1,
          'quincey': 1,
          'called': 1,
          'profundis': 1,
          'storyline': 1,
          'suffers': 1,
          'lapses': 1,
          'logic': 1,
          'provided': 1,
          'accept': 1,
          'premise': 1,
          'front': 1,
          'coven': 1,
          'witches': 1,
          'njessica': 1,
          'plays': 1,
          'american': 1,
          'travels': 1,
          'germany': 1,
          'studies': 1,
          'dance': 1,
          'narriving': 1,
          'late': 1,
          'night': 1,
          'driving': 1,
          'rain': 1,
          'sees': 1,
          'girl': 1,
          'leave': 1,
          'run': 1,
          'storm': 1,
          'clearly': 1,
          'distressed': 1,
          'state': 1,
          'happens': 1,
          'next': 1,
          'dont': 1,
          'make': 1,
          'comparison': 1,
          'lightly': 1,
          'murder': 1,
          'shock': 1,
          'value': 1,
          'sheer': 1,
          'ranks': 1,
          'alongside': 1,
          'alfred': 1,
          'hitchcocks': 1,
          'infamous': 1,
          'shower': 1,
          'nits': 1,
          'possibly': 1,
          'homage': 1,
          'hitchcock': 1,
          'sets': 1,
          'graphic': 1,
          'brilliantly': 1,
          'chaotic': 1,
          'musical': 1,
          'accompaniment': 1,
          'rock': 1,
          'group': 1,
          'goblin': 1,
          'stunning': 1,
          'remains': 1,
          'much': 1,
          'nthough': 1,
          'nothing': 1,
          'equals': 1,
          'suspirias': 1,
          'opening': 1,
          '15': 1,
          'continues': 1,
          'never': 1,
          'anything': 1,
          'less': 1,
          'engrossing': 1,
          'begins': 1,
          'investigations': 1,
          'slowly': 1,
          'realise': 1,
          'ordinary': 1,
          'nwe': 1,
          'meet': 1,
          'assortment': 1,
          'slightly': 1,
          'sinister': 1,
          'characters': 1,
          'notably': 1,
          'head': 1,
          'teacher': 1,
          'alida': 1,
          'valli': 1,
          'another': 1,
          'delicious': 1,
          'souroldmatriarchfromhell': 1,
          'roles': 1,
          'nseveral': 1,
          'violent': 1,
          'murders': 1,
          'ensue': 1,
          'including': 1,
          'startling': 1,
          'deserted': 1,
          'square': 1,
          'blind': 1,
          'man': 1,
          'wouldnt': 1,
          'want': 1,
          'spoil': 1,
          'things': 1,
          'climax': 1,
          'staged': 1,
          'amid': 1,
          'secret': 1,
          'corridors': 1,
          'hidden': 1,
          'rooms': 1,
          'ghoulishness': 1,
          'impressive': 1,
          'language': 1,
          'versions': 1,
          'movies': 1,
          'usually': 1,
          'suffer': 1,
          'trimming': 1,
          'violence': 1,
          'deep': 1,
          'red': 1,
          'phenomena': 1,
          'appallingly': 1,
          'hacked': 1,
          'cuts': 1,
          '7': 1,
          'version': 1,
          'adversely': 1,
          'affected': 1,
          'dubbing': 1,
          'competently': 1,
          'done': 1,
          'excepting': 1,
          'appalling': 1,
          'unintentionally': 1,
          'hilarious': 1,
          'effort': 1,
          'conversation': 1,
          'professor': 1,
          'history': 1,
          'witchcraft': 1,
          'region': 1,
          'nit': 1,
          'interesting': 1,
          'imagine': 1,
          'power': 1,
          'lost': 1,
          'scored': 1,
          'someone': 1,
          'nas': 1,
          'stands': 1,
          'goblins': 1,
          'outstanding': 1,
          'napparently': 1,
          'location': 1,
          'filming': 1,
          'could': 1,
          'hear': 1,
          'acted': 1,
          'parts': 1,
          'stereo': 1,
          'video': 1,
          'player': 1,
          'adds': 1,
          'greatly': 1,
          'viewers': 1,
          'experience': 1,
          'neven': 1,
          'see': 1,
          'cinema': 1,
          'youll': 1,
          'get': 1,
          'added': 1,
          'bonus': 1,
          'widescreen': 1,
          'colours': 1,
          'ndeep': 1,
          'reds': 1,
          'eerie': 1,
          'blues': 1,
          'shadow': 1,
          'contrast': 1,
          'cinematography': 1,
          'luciano': 1,
          'tovoli': 1,
          'whose': 1,
          'recent': 1,
          'credits': 1,
          'include': 1,
          'reversal': 1,
          'fortune': 1,
          'single': 1,
          'white': 1,
          'female': 1,
          'uniformly': 1,
          'nod': 1,
          'must': 1,
          'go': 1,
          'production': 1,
          'designer': 1,
          'giuseppe': 1,
          'wonderful': 1,
          'interiors': 1,
          'nthese': 1,
          'kinds': 1,
          'settings': 1,
          'crucial': 1,
          'atmosphere': 1,
          'surreal': 1,
          'excursions': 1,
          'notable': 1,
          'inferno': 1,
          '1980': 1,
          'worked': 1,
          'nsuspiria': 1,
          'broke': 1,
          'league': 1,
          'european': 1,
          'directors': 1,
          'fully': 1,
          'deserving': 1,
          'cult': 1,
          'status': 1,
          'times': 1,
          'little': 1,
          'excessive': 1,
          'overstated': 1,
          'shortcomings': 1,
          'fascinating': 1,
          'compelling': 1,
          'npos': 1}),
 Counter({'jackie': 16,
          'film': 12,
          'ordell': 10,
          'one': 6,
          'get': 6,
          'brown': 5,
          'tarantino': 5,
          'money': 5,
          'us': 5,
          'really': 5,
          'since': 4,
          'scene': 4,
          'max': 4,
          'de': 4,
          'niro': 4,
          'little': 3,
          'nthis': 3,
          'also': 3,
          'njackie': 3,
          'back': 3,
          'makes': 3,
          'gun': 3,
          'nhowever': 3,
          'bringing': 3,
          'time': 3,
          'ordells': 3,
          'deal': 3,
          'think': 3,
          'actually': 3,
          'many': 3,
          'even': 3,
          'see': 3,
          'nin': 3,
          'looking': 3,
          'say': 2,
          'four': 2,
          'last': 2,
          'silver': 2,
          'surfer': 2,
          'screen': 2,
          'never': 2,
          'years': 2,
          'making': 2,
          'nthe': 2,
          'grier': 2,
          'cabo': 2,
          'cash': 2,
          'courier': 2,
          'l': 2,
          'jackson': 2,
          'mexico': 2,
          'dollars': 2,
          'agent': 2,
          'dargus': 2,
          'michael': 2,
          'nicolet': 2,
          'couple': 2,
          'know': 2,
          'thats': 2,
          'course': 2,
          'using': 2,
          'turn': 2,
          'honest': 2,
          'robert': 2,
          'forster': 2,
          'enough': 2,
          'apartment': 2,
          'ninstead': 2,
          'head': 2,
          'might': 2,
          'interesting': 2,
          'attention': 2,
          'shes': 2,
          'well': 2,
          'way': 2,
          'around': 2,
          'movies': 2,
          'least': 2,
          'plays': 2,
          'character': 2,
          'comes': 2,
          'simply': 2,
          'nature': 2,
          'louis': 2,
          'melanie': 2,
          'lines': 2,
          'hes': 2,
          'much': 2,
          'hand': 2,
          'whats': 2,
          'going': 2,
          'nwe': 2,
          'idea': 2,
          'follow': 2,
          'something': 2,
          'entered': 1,
          'theaters': 1,
          'fanfare': 1,
          'lot': 1,
          'expectation': 1,
          'neven': 1,
          'though': 1,
          'advance': 1,
          'publicity': 1,
          'fairly': 1,
          'limited': 1,
          'audiences': 1,
          'waited': 1,
          'showings': 1,
          'heightened': 1,
          'anticipation': 1,
          'first': 1,
          'movie': 1,
          'quentin': 1,
          'directed': 1,
          'highly': 1,
          'touted': 1,
          'pulp': 1,
          'fiction': 1,
          'nto': 1,
          'inactive': 1,
          'would': 1,
          'tell': 1,
          'falsehood': 1,
          'involved': 1,
          'projects': 1,
          'destiny': 1,
          'turns': 1,
          'radio': 1,
          'desperado': 1,
          'rooms': 1,
          'dusk': 1,
          'til': 1,
          'dawn': 1,
          'nhe': 1,
          'called': 1,
          'minute': 1,
          'help': 1,
          'punch': 1,
          'screenplay': 1,
          'crimson': 1,
          'tide': 1,
          'n': 1,
          'im': 1,
          'willing': 1,
          'wager': 1,
          'debate': 1,
          'true': 1,
          'penned': 1,
          'ntarantino': 1,
          'contributed': 1,
          'films': 1,
          'took': 1,
          'directors': 1,
          'helm': 1,
          'nnearly': 1,
          'gaining': 1,
          'notoriety': 1,
          'hollywood': 1,
          'john': 1,
          'travolta': 1,
          'star': 1,
          'returns': 1,
          'call': 1,
          'opens': 1,
          'homage': 1,
          'graduate': 1,
          'pam': 1,
          'airport': 1,
          'people': 1,
          'movers': 1,
          'credits': 1,
          'displayed': 1,
          'front': 1,
          'flight': 1,
          'attendant': 1,
          'air': 1,
          'flies': 1,
          'fourth': 1,
          'los': 1,
          'angeles': 1,
          'san': 1,
          'lucas': 1,
          'convenient': 1,
          'dealer': 1,
          'robbi': 1,
          'samuel': 1,
          'currently': 1,
          'keeping': 1,
          'stashed': 1,
          'fifty': 1,
          'thousand': 1,
          'u': 1,
          'apprehended': 1,
          'fbi': 1,
          'mark': 1,
          'bowen': 1,
          'atf': 1,
          'ray': 1,
          'keaton': 1,
          'catch': 1,
          'bonus': 1,
          'ounces': 1,
          'illicit': 1,
          'drugs': 1,
          'didnt': 1,
          'package': 1,
          'consequence': 1,
          'authorities': 1,
          'threaten': 1,
          'hard': 1,
          'convicted': 1,
          'nof': 1,
          'sentence': 1,
          'big': 1,
          'fish': 1,
          'nordell': 1,
          'uses': 1,
          'bail': 1,
          'bondsman': 1,
          'cherry': 1,
          'jail': 1,
          'immediately': 1,
          'attracted': 1,
          'concerned': 1,
          'immediate': 1,
          'safety': 1,
          'killed': 1,
          'operatives': 1,
          'got': 1,
          'picked': 1,
          'police': 1,
          'nsure': 1,
          'shows': 1,
          'jackies': 1,
          'evening': 1,
          'tries': 1,
          'silence': 1,
          'good': 1,
          'borrows': 1,
          'maxs': 1,
          'pistol': 1,
          'manages': 1,
          'tables': 1,
          'closing': 1,
          'irony': 1,
          'circle': 1,
          'relocating': 1,
          'bullet': 1,
          'pistols': 1,
          'chamber': 1,
          'proposes': 1,
          'nsince': 1,
          'wants': 1,
          'old': 1,
          'tricks': 1,
          'substantial': 1,
          'fee': 1,
          'fifteen': 1,
          'percent': 1,
          'half': 1,
          'million': 1,
          'nwith': 1,
          'face': 1,
          'agree': 1,
          'nby': 1,
          'premise': 1,
          'carry': 1,
          'introduced': 1,
          'number': 1,
          'double': 1,
          'crosses': 1,
          'make': 1,
          'pay': 1,
          'claims': 1,
          'feds': 1,
          'throws': 1,
          'every': 1,
          'leading': 1,
          'believe': 1,
          'thought': 1,
          'authentic': 1,
          'sham': 1,
          'done': 1,
          'extent': 1,
          'feel': 1,
          'jerked': 1,
          'nice': 1,
          'departure': 1,
          'predictability': 1,
          'prevalent': 1,
          'todays': 1,
          'nat': 1,
          'imagination': 1,
          'nmost': 1,
          'performances': 1,
          'par': 1,
          'npam': 1,
          'taken': 1,
          'notice': 1,
          'mix': 1,
          'confidence': 1,
          'vulnerability': 1,
          'believable': 1,
          'nsamuel': 1,
          'kind': 1,
          'mesmerizing': 1,
          'quality': 1,
          'handles': 1,
          'situations': 1,
          'total': 1,
          'control': 1,
          'nrobert': 1,
          'thoroughly': 1,
          'likable': 1,
          'across': 1,
          'guy': 1,
          'trying': 1,
          'best': 1,
          'nnever': 1,
          'mind': 1,
          'belongs': 1,
          'profession': 1,
          'sneaking': 1,
          'guys': 1,
          'zap': 1,
          'stun': 1,
          'matter': 1,
          'nhes': 1,
          'downtoearth': 1,
          'job': 1,
          'doesnt': 1,
          'occur': 1,
          'shown': 1,
          'handcuffed': 1,
          'woman': 1,
          'prison': 1,
          'tools': 1,
          'trade': 1,
          'supporting': 1,
          'roles': 1,
          'gara': 1,
          'recently': 1,
          'paroled': 1,
          'friend': 1,
          'bridget': 1,
          'fonda': 1,
          'girls': 1,
          'keeps': 1,
          'town': 1,
          'nunfortunately': 1,
          'basically': 1,
          'wasted': 1,
          'far': 1,
          'mostly': 1,
          'clipped': 1,
          'sentences': 1,
          'stereotypical': 1,
          'uttering': 1,
          'things': 1,
          'like': 1,
          'bit': 1,
          'pretty': 1,
          'nfonda': 1,
          'slightly': 1,
          'spacedout': 1,
          'satisfactory': 1,
          'relish': 1,
          'cuteness': 1,
          'annoying': 1,
          'taking': 1,
          'side': 1,
          'nas': 1,
          'characteristic': 1,
          'dialog': 1,
          'quick': 1,
          'snappy': 1,
          'nit': 1,
          'grabs': 1,
          'respects': 1,
          'needs': 1,
          'visuals': 1,
          'form': 1,
          'art': 1,
          'amongst': 1,
          'ndont': 1,
          'count': 1,
          'camera': 1,
          'however': 1,
          'ntheres': 1,
          'unwittingly': 1,
          'watching': 1,
          'dry': 1,
          'run': 1,
          'exchange': 1,
          'sure': 1,
          'happening': 1,
          'composing': 1,
          'realization': 1,
          'felt': 1,
          'simultaneously': 1,
          'audience': 1,
          'look': 1,
          'gee': 1,
          'clever': 1,
          'thing': 1,
          'induced': 1,
          'wonderful': 1,
          'feeling': 1,
          'catching': 1,
          'nalthough': 1,
          'isnt': 1,
          'afraid': 1,
          'drag': 1,
          'shot': 1,
          'dramatic': 1,
          'effect': 1,
          'unfortunately': 1,
          'works': 1,
          'varying': 1,
          'degrees': 1,
          'nthere': 1,
          'shots': 1,
          'driving': 1,
          'watch': 1,
          'person': 1,
          'somehow': 1,
          'tribute': 1,
          'direction': 1,
          'acting': 1,
          'mall': 1,
          'desperately': 1,
          'frantic': 1,
          'search': 1,
          'long': 1,
          'end': 1,
          'caring': 1,
          'instead': 1,
          'hoping': 1,
          'shell': 1,
          'stop': 1,
          'noverall': 1,
          'viewing': 1,
          'spent': 1,
          'nsome': 1,
          'flap': 1,
          'already': 1,
          'made': 1,
          'language': 1,
          'used': 1,
          'worse': 1,
          'today': 1,
          'fact': 1,
          'able': 1,
          'offensive': 1,
          'words': 1,
          'employed': 1,
          'almost': 1,
          'cause': 1,
          'parody': 1,
          'therefore': 1,
          'transcend': 1,
          'offensiveness': 1,
          'ngo': 1,
          'mean': 1,
          'npos': 1}),
 Counter({'fantasia': 7,
          '2000': 5,
          'images': 4,
          'james': 3,
          'paul': 3,
          'released': 3,
          'music': 3,
          'program': 3,
          'new': 3,
          'original': 3,
          'segment': 3,
          'levine': 2,
          'george': 2,
          'camille': 2,
          'saintsaens': 2,
          'dukas': 2,
          'sir': 2,
          'edward': 2,
          'elgar': 2,
          'igor': 2,
          '1': 2,
          'disney': 2,
          'nfantasia': 2,
          'two': 2,
          'art': 2,
          'animation': 2,
          'something': 2,
          'nit': 2,
          'old': 2,
          'shorter': 2,
          'audience': 2,
          'short': 2,
          'theaters': 2,
          'nthere': 2,
          'enough': 2,
          'people': 2,
          'story': 2,
          'animals': 2,
          'playing': 2,
          'also': 2,
          'positive': 2,
          'upon': 2,
          'tell': 2,
          'nbut': 2,
          'directed': 1,
          'pixote': 1,
          'hunt': 1,
          'hendel': 1,
          'butoy': 1,
          'eric': 1,
          'goldberg': 1,
          'algar': 1,
          'francis': 1,
          'glebas': 1,
          'gaetan': 1,
          'brizzi': 1,
          'conducted': 1,
          'composed': 1,
          'ludwig': 1,
          'van': 1,
          'beethoven': 1,
          'ottorino': 1,
          'respighi': 1,
          'gershwin': 1,
          'dmitri': 1,
          'shostakovich': 1,
          'stravinsky': 1,
          'rated': 1,
          'g': 1,
          'scripture': 1,
          'references': 1,
          'samuel': 1,
          '16': 1,
          '23': 1,
          'ephesians': 1,
          '5': 1,
          '19': 1,
          'chronicles': 1,
          '15': 1,
          '1516': 1,
          'nin': 1,
          '1940': 1,
          'walt': 1,
          'filmed': 1,
          'experiment': 1,
          'blend': 1,
          'forms': 1,
          'classical': 1,
          'nwhile': 1,
          'immediately': 1,
          'popular': 1,
          'audiences': 1,
          'day': 1,
          'since': 1,
          'become': 1,
          'recognized': 1,
          'classic': 1,
          'naccording': 1,
          'notes': 1,
          'mr': 1,
          'disneys': 1,
          'intention': 1,
          'continual': 1,
          'work': 1,
          'progress': 1,
          'nsixty': 1,
          'years': 1,
          'later': 1,
          'thanks': 1,
          'ongoing': 1,
          'efforts': 1,
          'walts': 1,
          'nephew': 1,
          'worth': 1,
          'waiting': 1,
          'evidence': 1,
          'far': 1,
          'come': 1,
          'past': 1,
          'halfdecade': 1,
          'nwith': 1,
          'seven': 1,
          'sequences': 1,
          'one': 1,
          'favorite': 1,
          'exhibits': 1,
          'imagination': 1,
          'respect': 1,
          'form': 1,
          'absent': 1,
          'feature': 1,
          'films': 1,
          'nlike': 1,
          'likely': 1,
          'bore': 1,
          'young': 1,
          'although': 1,
          'narrative': 1,
          'appeal': 1,
          'newer': 1,
          'version': 1,
          'segments': 1,
          'appear': 1,
          'substantially': 1,
          'perhaps': 1,
          'nod': 1,
          'attention': 1,
          'span': 1,
          'studios': 1,
          'primary': 1,
          'nranging': 1,
          'silly': 1,
          'sublime': 1,
          'preceded': 1,
          'humorous': 1,
          'introduction': 1,
          'interstitial': 1,
          'guest': 1,
          'celebrity': 1,
          'host': 1,
          'steve': 1,
          'martin': 1,
          'bowfinger': 1,
          'first': 1,
          'effective': 1,
          'nthese': 1,
          'quickly': 1,
          'forgotten': 1,
          'conductor': 1,
          'leads': 1,
          'chicago': 1,
          'symphony': 1,
          'orchestra': 1,
          'musical': 1,
          'along': 1,
          'drawn': 1,
          'team': 1,
          'animators': 1,
          'thoughtfully': 1,
          'beautifully': 1,
          'brought': 1,
          'stunning': 1,
          'synthesis': 1,
          'exclusively': 1,
          'giantscreened': 1,
          'imax': 1,
          'making': 1,
          'unique': 1,
          'viewing': 1,
          'experience': 1,
          'variety': 1,
          'provide': 1,
          'enjoyable': 1,
          'everyone': 1,
          'surely': 1,
          'exit': 1,
          'personal': 1,
          'favorites': 1,
          'nfor': 1,
          'would': 1,
          'jazz': 1,
          'age': 1,
          'four': 1,
          'unconnected': 1,
          'discontented': 1,
          'living': 1,
          'nyc': 1,
          'unknowingly': 1,
          'help': 1,
          'realize': 1,
          'dreams': 1,
          'ndrawn': 1,
          'style': 1,
          'caricaturist': 1,
          'al': 1,
          'hirschfeld': 1,
          'inspired': 1,
          'gershwins': 1,
          'rhapsody': 1,
          'blue': 1,
          'blended': 1,
          'perfectly': 1,
          'resulting': 1,
          'product': 1,
          'greater': 1,
          'sum': 1,
          'parts': 1,
          'nchildren': 1,
          'like': 1,
          'piece': 1,
          'set': 1,
          'carnival': 1,
          'nhere': 1,
          'goofy': 1,
          'looking': 1,
          'flamingo': 1,
          'irritates': 1,
          'rest': 1,
          'flock': 1,
          'yoyo': 1,
          'antics': 1,
          'nthey': 1,
          'giggle': 1,
          'donald': 1,
          'duck': 1,
          'noahs': 1,
          'assistant': 1,
          'tries': 1,
          'load': 1,
          'ark': 1,
          'familiar': 1,
          'strains': 1,
          'pomp': 1,
          'circumstance': 1,
          'n': 1,
          'depiction': 1,
          'biblically': 1,
          'accurate': 1,
          'entertaining': 1,
          'might': 1,
          'excuse': 1,
          'familiarize': 1,
          'true': 1,
          'record': 1,
          'reading': 1,
          'written': 1,
          'genesis': 1,
          '7': 1,
          'na': 1,
          'note': 1,
          'studio': 1,
          'avoided': 1,
          'perversely': 1,
          'dark': 1,
          'nihgt': 1,
          'bald': 1,
          'mountain': 1,
          'film': 1,
          'ended': 1,
          'based': 1,
          'fantasy': 1,
          'flying': 1,
          'whales': 1,
          'respighis': 1,
          'pines': 1,
          'rome': 1,
          'roots': 1,
          'mythology': 1,
          'ethereal': 1,
          'creatures': 1,
          'natures': 1,
          'cycle': 1,
          'life': 1,
          'death': 1,
          'rebirth': 1,
          'stravinskys': 1,
          'firebird': 1,
          'suite': 1,
          'stories': 1,
          'uplifting': 1,
          'containing': 1,
          'nothing': 1,
          'frightening': 1,
          'younger': 1,
          'children': 1,
          'nthe': 1,
          'darkest': 1,
          'spiritually': 1,
          'speaking': 1,
          'actually': 1,
          'belongs': 1,
          'holdover': 1,
          'mickey': 1,
          'mouse': 1,
          'sorcerers': 1,
          'apprentice': 1,
          'overall': 1,
          'emotions': 1,
          'evoked': 1,
          'ones': 1,
          'full': 1,
          'hope': 1,
          'promise': 1,
          'nmusic': 1,
          'impact': 1,
          'undeniably': 1,
          'felt': 1,
          'capable': 1,
          'leading': 1,
          'listener': 1,
          'emotional': 1,
          'peaks': 1,
          'inspirational': 1,
          'highs': 1,
          'simply': 1,
          'attainable': 1,
          'mediums': 1,
          'wonder': 1,
          'levites': 1,
          'priestly': 1,
          'tribe': 1,
          'testament': 1,
          'appointed': 1,
          'musicians': 1,
          'nif': 1,
          'able': 1,
          'introduce': 1,
          'inspires': 1,
          'exalts': 1,
          'done': 1,
          'incredible': 1,
          'service': 1,
          'npos': 1}),
 Counter({'little': 6,
          'tree': 5,
          'boy': 4,
          'orphan': 3,
          'grandpa': 3,
          'grandma': 3,
          'grandparents': 2,
          'mountains': 2,
          'native': 2,
          'american': 2,
          'film': 2,
          'world': 2,
          'tennessee': 2,
          'wondrous': 2,
          'learns': 2,
          'nature': 2,
          'life': 2,
          'experiences': 2,
          'people': 2,
          'excellent': 2,
          'family': 2,
          'find': 2,
          'ingredients': 1,
          'rural': 1,
          'lore': 1,
          'nsynopsis': 1,
          'loving': 1,
          'portrayal': 1,
          'idyllic': 1,
          'pivotal': 1,
          'time': 1,
          'young': 1,
          'spends': 1,
          'self': 1,
          'recollections': 1,
          'unseen': 1,
          'narrator': 1,
          'focus': 1,
          'view': 1,
          'learning': 1,
          'heritage': 1,
          'nthe': 1,
          'setting': 1,
          'first': 1,
          'war': 1,
          'great': 1,
          'depression': 1,
          'years': 1,
          'na': 1,
          'nineyearold': 1,
          'named': 1,
          'joseph': 1,
          'ashton': 1,
          'taken': 1,
          'taught': 1,
          'ways': 1,
          'woods': 1,
          'caucasian': 1,
          'moonshiner': 1,
          'james': 1,
          'cromwell': 1,
          'tantoo': 1,
          'cardinal': 1,
          'wilderness': 1,
          'nhere': 1,
          'almost': 1,
          'magical': 1,
          'appreciation': 1,
          'farm': 1,
          'beautiful': 1,
          'things': 1,
          'sunrise': 1,
          'neverything': 1,
          'miraculous': 1,
          'child': 1,
          'nbut': 1,
          'comes': 1,
          'crashing': 1,
          'u': 1,
          'government': 1,
          'forcibly': 1,
          'takes': 1,
          'custody': 1,
          'away': 1,
          'forces': 1,
          'attend': 1,
          'notched': 1,
          'gap': 1,
          'boarding': 1,
          'school': 1,
          'kind': 1,
          'internment': 1,
          'camp': 1,
          'multiracial': 1,
          'cherokee': 1,
          'kids': 1,
          'indoctrinated': 1,
          'dress': 1,
          'pray': 1,
          'speak': 1,
          'think': 1,
          'like': 1,
          'white': 1,
          'face': 1,
          'solitary': 1,
          'confinement': 1,
          'corporeal': 1,
          'punishment': 1,
          'nthrough': 1,
          'childhood': 1,
          'lessons': 1,
          'love': 1,
          'race': 1,
          'death': 1,
          'folk': 1,
          'wisdom': 1,
          'nopinion': 1,
          'movie': 1,
          'nit': 1,
          'one': 1,
          'priceless': 1,
          'screen': 1,
          'gems': 1,
          'nobody': 1,
          'knows': 1,
          'highly': 1,
          'advertised': 1,
          'nyou': 1,
          'wont': 1,
          'formula': 1,
          'schlock': 1,
          'cutesy': 1,
          'characters': 1,
          'canned': 1,
          'spirituality': 1,
          'sequel': 1,
          'teasers': 1,
          'commercial': 1,
          'tie': 1,
          'ins': 1,
          'education': 1,
          'refreshing': 1,
          'impeccably': 1,
          'acted': 1,
          'original': 1,
          'wonderful': 1,
          'touching': 1,
          'ntake': 1,
          'whole': 1,
          'bring': 1,
          'box': 1,
          'tissues': 1,
          'tearjerkers': 1,
          'nthis': 1,
          'ones': 1,
          'good': 1,
          'old': 1,
          'yeller': 1,
          'npos': 1}),
 Counter({'film': 7,
          'nthe': 7,
          'disney': 5,
          'mulan': 5,
          'nothing': 3,
          'family': 3,
          'time': 3,
          'nbut': 3,
          'nmulan': 3,
          'humor': 3,
          'place': 2,
          'animation': 2,
          'nwhile': 2,
          'singing': 2,
          'doesnt': 2,
          'customs': 2,
          'man': 2,
          'well': 2,
          'story': 2,
          'could': 2,
          'good': 2,
          'disneys': 2,
          'songs': 2,
          'death': 2,
          'tradition': 2,
          'cements': 1,
          'forefront': 1,
          'feature': 1,
          'release': 1,
          'latest': 1,
          'animated': 1,
          'adventure': 1,
          'adheres': 1,
          'bit': 1,
          'close': 1,
          'formula': 1,
          'perfect': 1,
          'nonetheless': 1,
          'entertaining': 1,
          'kids': 1,
          'adults': 1,
          'nfa': 1,
          'mingna': 1,
          'wen': 1,
          'lea': 1,
          'salonga': 1,
          'wants': 1,
          'dutiful': 1,
          'daughter': 1,
          'honor': 1,
          'njust': 1,
          'quite': 1,
          'fit': 1,
          'chafing': 1,
          'girls': 1,
          'age': 1,
          'trying': 1,
          'quietly': 1,
          'demurely': 1,
          'seek': 1,
          'approval': 1,
          'local': 1,
          'matchmaker': 1,
          'miriam': 1,
          'margoyles': 1,
          'would': 1,
          'prefer': 1,
          'speaking': 1,
          'mind': 1,
          'trouble': 1,
          'horizon': 1,
          'evil': 1,
          'huns': 1,
          'led': 1,
          'shanyu': 1,
          'miguel': 1,
          'ferrer': 1,
          'invading': 1,
          'china': 1,
          'emperor': 1,
          'pat': 1,
          'morita': 1,
          'decreed': 1,
          'must': 1,
          'donate': 1,
          'one': 1,
          'serve': 1,
          'army': 1,
          'male': 1,
          'mulans': 1,
          'father': 1,
          'fa': 1,
          'zhou': 1,
          'soontek': 1,
          'oh': 1,
          'old': 1,
          'bad': 1,
          'leg': 1,
          'honorably': 1,
          'accepts': 1,
          'fate': 1,
          'hand': 1,
          'decides': 1,
          'save': 1,
          'fathers': 1,
          'life': 1,
          'nsecretly': 1,
          'masquerading': 1,
          'taking': 1,
          'battlefield': 1,
          'assumed': 1,
          'name': 1,
          'ping': 1,
          'appears': 1,
          'camp': 1,
          'along': 1,
          'bumbling': 1,
          'recruits': 1,
          'yao': 1,
          'harvey': 1,
          'fierstein': 1,
          'chienpo': 1,
          'jerry': 1,
          'tondo': 1,
          'ling': 1,
          'gedde': 1,
          'watanabe': 1,
          'trained': 1,
          'art': 1,
          'war': 1,
          'captain': 1,
          'shang': 1,
          'b': 1,
          'nwong': 1,
          'donny': 1,
          'osmond': 1,
          'shes': 1,
          'alone': 1,
          'tasks': 1,
          'ntypical': 1,
          'fashion': 1,
          'three': 1,
          'animal': 1,
          'companions': 1,
          'horse': 1,
          'khan': 1,
          'lucky': 1,
          'cricket': 1,
          'crickey': 1,
          'pintsized': 1,
          'guardian': 1,
          'dragon': 1,
          'called': 1,
          'mushu': 1,
          'eddie': 1,
          'murphy': 1,
          'nmuch': 1,
          'like': 1,
          'gargoyles': 1,
          'hunchback': 1,
          'notre': 1,
          'dame': 1,
          'lukewarm': 1,
          'flow': 1,
          'rest': 1,
          'serious': 1,
          'nsure': 1,
          'occasional': 1,
          'comic': 1,
          'relief': 1,
          'welcome': 1,
          'particularly': 1,
          'geared': 1,
          'younger': 1,
          'set': 1,
          'overdoes': 1,
          'overdose': 1,
          'turns': 1,
          'powerfully': 1,
          'great': 1,
          'schizophrenic': 1,
          'experience': 1,
          'commentary': 1,
          'aside': 1,
          'made': 1,
          'makes': 1,
          'formulaic': 1,
          'additions': 1,
          'regrettable': 1,
          'par': 1,
          'best': 1,
          'interesting': 1,
          'action': 1,
          'scenes': 1,
          'aweinspiring': 1,
          'musical': 1,
          'score': 1,
          'enjoyable': 1,
          'though': 1,
          'case': 1,
          'recent': 1,
          'work': 1,
          'mostly': 1,
          'forgettable': 1,
          'nat': 1,
          'least': 1,
          'subjected': 1,
          'four': 1,
          'around': 1,
          'boasts': 1,
          'highest': 1,
          'toll': 1,
          'cartoon': 1,
          'date': 1,
          'nmost': 1,
          'killing': 1,
          'offscreen': 1,
          'highly': 1,
          'depersonalized': 1,
          'theres': 1,
          'compare': 1,
          'mufasa': 1,
          'bambis': 1,
          'mom': 1,
          'ntheres': 1,
          'graphic': 1,
          'resides': 1,
          'snugly': 1,
          'inside': 1,
          'g': 1,
          'rating': 1,
          'nchildren': 1,
          'probably': 1,
          'questions': 1,
          'restrictive': 1,
          'ancient': 1,
          'slaughter': 1,
          'armies': 1,
          'nits': 1,
          'ironic': 1,
          'concerned': 1,
          'bucking': 1,
          'hampered': 1,
          'strict': 1,
          'adherence': 1,
          'nif': 1,
          'filmmakers': 1,
          'guts': 1,
          'lessen': 1,
          'ax': 1,
          'compulsory': 1,
          'remove': 1,
          'obligatory': 1,
          'somewhat': 1,
          'unrealistic': 1,
          'romance': 1,
          'classic': 1,
          'hands': 1,
          'ninstead': 1,
          'merely': 1,
          'deliver': 1,
          'movies': 1,
          'npos': 1}),
 Counter({'n': 16,
          'film': 5,
          'last': 4,
          'nthe': 4,
          'would': 4,
          'world': 3,
          'end': 3,
          'midnight': 3,
          'people': 3,
          'much': 3,
          'may': 3,
          'science': 2,
          'fiction': 2,
          'special': 2,
          'effects': 2,
          '4': 2,
          'night': 2,
          'david': 2,
          'wrote': 2,
          'story': 2,
          'matheson': 2,
          'release': 2,
          'though': 2,
          'appropriate': 2,
          'nit': 2,
          'get': 2,
          'person': 2,
          'nwhat': 2,
          'capsule': 1,
          'come': 1,
          'neveryone': 1,
          'knows': 1,
          'must': 1,
          'make': 1,
          'final': 1,
          'peace': 1,
          'hours': 1,
          'lives': 1,
          'nthis': 1,
          'intelligent': 1,
          'personalities': 1,
          'ideas': 1,
          'high': 1,
          '2': 1,
          'planet': 1,
          'several': 1,
          'different': 1,
          'reacting': 1,
          'way': 1,
          'covers': 1,
          '6': 1,
          'pm': 1,
          'main': 1,
          'character': 1,
          'patrick': 1,
          'played': 1,
          'mckellan': 1,
          'also': 1,
          'directed': 1,
          'reminiscent': 1,
          'beach': 1,
          'nbut': 1,
          'richard': 1,
          'day': 1,
          'p': 1,
          'non': 1,
          'rereading': 1,
          '1953': 1,
          'almost': 1,
          'loose': 1,
          'adaptation': 1,
          'similarities': 1,
          'mere': 1,
          'coincidence': 1,
          'numerous': 1,
          'striking': 1,
          'us': 1,
          'problematical': 1,
          'title': 1,
          'lackluster': 1,
          'nonmemorable': 1,
          'know': 1,
          'nalso': 1,
          'provincial': 1,
          'americans': 1,
          'care': 1,
          'coming': 1,
          'toronto': 1,
          'nthey': 1,
          'probably': 1,
          'feel': 1,
          'affect': 1,
          'nperhaps': 1,
          'pbs': 1,
          'possible': 1,
          'patricks': 1,
          'family': 1,
          'declared': 1,
          'christmas': 1,
          'hurt': 1,
          'adult': 1,
          'children': 1,
          'spend': 1,
          'whole': 1,
          'evening': 1,
          'grocery': 1,
          'stores': 1,
          'mostly': 1,
          'looted': 1,
          'seems': 1,
          'one': 1,
          'everything': 1,
          'left': 1,
          'continue': 1,
          'business': 1,
          'usual': 1,
          'want': 1,
          'sex': 1,
          'react': 1,
          'religion': 1,
          'riot': 1,
          'nsome': 1,
          'total': 1,
          'denial': 1,
          'comedy': 1,
          'drama': 1,
          'canadian': 1,
          'cast': 1,
          'dark': 1,
          'always': 1,
          'daytime': 1,
          'radio': 1,
          'playing': 1,
          'didnt': 1,
          'sleep': 1,
          'nhow': 1,
          'cronenberg': 1,
          'kind': 1,
          'bland': 1,
          'functionary': 1,
          'manager': 1,
          'gas': 1,
          'company': 1,
          'ngenvieve': 1,
          'bujold': 1,
          'french': 1,
          'teacher': 1,
          'visiting': 1,
          'former': 1,
          'student': 1,
          'cost': 1,
          'two': 1,
          'million': 1,
          'dollars': 1,
          'thrown': 1,
          'together': 1,
          'chance': 1,
          'becomes': 1,
          'important': 1,
          'rest': 1,
          'life': 1,
          'precisely': 1,
          'time': 1,
          'zones': 1,
          'nature': 1,
          'destroying': 1,
          'npos': 1}),
 Counter({'josie': 6,
          'movie': 5,
          'cole': 4,
          'wife': 3,
          'one': 3,
          'nbut': 3,
          'going': 3,
          'tony': 3,
          'nand': 3,
          'rich': 2,
          'mans': 2,
          'like': 2,
          'body': 2,
          'know': 2,
          'get': 2,
          'things': 2,
          'bad': 2,
          'better': 2,
          'ni': 2,
          'realize': 2,
          'best': 2,
          'right': 2,
          'guy': 2,
          'good': 2,
          'married': 2,
          'much': 2,
          'cough': 2,
          'jake': 2,
          'work': 2,
          'begins': 2,
          'night': 2,
          'suspense': 2,
          'movies': 1,
          'final': 1,
          'analysis': 1,
          'double': 1,
          'story': 1,
          'characters': 1,
          'onedimensional': 1,
          'contrived': 1,
          'shouldnt': 1,
          'enjoying': 1,
          'somehow': 1,
          'tries': 1,
          'hard': 1,
          'begin': 1,
          'forgive': 1,
          'swing': 1,
          'nnot': 1,
          'done': 1,
          'opinion': 1,
          'sound': 1,
          'pretty': 1,
          'bizarre': 1,
          'probably': 1,
          'analogy': 1,
          'come': 1,
          'see': 1,
          'spider': 1,
          'something': 1,
          'toilet': 1,
          'striving': 1,
          'helplessly': 1,
          'instead': 1,
          'flushing': 1,
          'end': 1,
          'kind': 1,
          'rooting': 1,
          'little': 1,
          'nthats': 1,
          'basically': 1,
          'felt': 1,
          'mean': 1,
          'completely': 1,
          'either': 1,
          'nthe': 1,
          'title': 1,
          'potenza': 1,
          'played': 1,
          'nicely': 1,
          'halle': 1,
          'berry': 1,
          'nshe': 1,
          'christopher': 1,
          'mcdonald': 1,
          'nknow': 1,
          'looks': 1,
          'joe': 1,
          'piscapo': 1,
          'really': 1,
          'stressedout': 1,
          'businessman': 1,
          'drinks': 1,
          'way': 1,
          'doesnt': 1,
          'give': 1,
          'attention': 1,
          'deserves': 1,
          'nthus': 1,
          'driven': 1,
          'arms': 1,
          'another': 1,
          'man': 1,
          'golden': 1,
          'clive': 1,
          'owen': 1,
          'nnear': 1,
          'beginning': 1,
          'film': 1,
          'decides': 1,
          'try': 1,
          'dumping': 1,
          'vacation': 1,
          'remote': 1,
          'cabin': 1,
          'woods': 1,
          'nonce': 1,
          'however': 1,
          'leave': 1,
          'almost': 1,
          'immediately': 1,
          'due': 1,
          'business': 1,
          'details': 1,
          'im': 1,
          'still': 1,
          'quite': 1,
          'sure': 1,
          'line': 1,
          'hes': 1,
          'nmaking': 1,
          'situation': 1,
          'stays': 1,
          'making': 1,
          'rounds': 1,
          'local': 1,
          'bars': 1,
          'none': 1,
          'meets': 1,
          'stranger': 1,
          'named': 1,
          'peter': 1,
          'greene': 1,
          'finally': 1,
          'getting': 1,
          'meaty': 1,
          'role': 1,
          'nthey': 1,
          'dinner': 1,
          'together': 1,
          'eventually': 1,
          'audience': 1,
          'start': 1,
          'homicidal': 1,
          'nafter': 1,
          'learning': 1,
          'happily': 1,
          'offers': 1,
          'take': 1,
          'care': 1,
          'problem': 1,
          'nmanaging': 1,
          'escape': 1,
          'psychotic': 1,
          'maniac': 1,
          'returns': 1,
          'home': 1,
          'starts': 1,
          'reconciliation': 1,
          'estranged': 1,
          'wealthy': 1,
          'husband': 1,
          'shows': 1,
          'fun': 1,
          'nfrom': 1,
          'point': 1,
          'noholds': 1,
          'barred': 1,
          'clichefest': 1,
          'ripping': 1,
          'every': 1,
          'strangers': 1,
          'train': 1,
          'usual': 1,
          'suspects': 1,
          'nthis': 1,
          'critics': 1,
          'panned': 1,
          'first': 1,
          'came': 1,
          'part': 1,
          'theyre': 1,
          'nary': 1,
          'original': 1,
          'bone': 1,
          'cares': 1,
          'nif': 1,
          'youre': 1,
          'looking': 1,
          'ol': 1,
          'dumb': 1,
          'cant': 1,
          'buffs': 1,
          'arent': 1,
          'already': 1,
          'sold': 1,
          'killer': 1,
          'ending': 1,
          'npos': 1}),
 Counter({'film': 7,
          'game': 3,
          'final': 3,
          'fantasy': 3,
          'nbut': 3,
          'story': 3,
          'dialogue': 3,
          'humans': 3,
          'aliens': 3,
          'anything': 2,
          'like': 2,
          'see': 2,
          'great': 2,
          'individual': 2,
          'dont': 2,
          'animation': 2,
          'much': 2,
          'one': 2,
          'plot': 2,
          'outside': 2,
          'japanese': 2,
          'nits': 2,
          'world': 2,
          'phantoms': 2,
          'pass': 2,
          'nwhile': 2,
          'plan': 2,
          'dr': 2,
          'spirits': 2,
          'team': 1,
          '200': 1,
          'graphic': 1,
          'artists': 1,
          'animators': 1,
          'working': 1,
          'first': 1,
          'production': 1,
          'developer': 1,
          'squaresofts': 1,
          'square': 1,
          'pictures': 1,
          'inspired': 1,
          'topselling': 1,
          'franchise': 1,
          'visually': 1,
          'aweinspiring': 1,
          'groundbreaking': 1,
          'nno': 1,
          'doubt': 1,
          'never': 1,
          'seen': 1,
          'hyperbolic': 1,
          'fanfare': 1,
          'surrounding': 1,
          'release': 1,
          'absolutely': 1,
          'deserved': 1,
          'tremendous': 1,
          'feat': 1,
          'eye': 1,
          'candy': 1,
          'weighted': 1,
          'problematic': 1,
          'wooden': 1,
          'generally': 1,
          'uncharismatic': 1,
          'voice': 1,
          'acting': 1,
          'nobviously': 1,
          'primary': 1,
          'goal': 1,
          'stun': 1,
          'amaze': 1,
          'audiences': 1,
          'extremely': 1,
          'sophisticated': 1,
          'cgi': 1,
          'neverything': 1,
          'rendered': 1,
          'detail': 1,
          'threads': 1,
          'fabric': 1,
          'strands': 1,
          'hair': 1,
          'swaying': 1,
          'wrinkles': 1,
          'pimples': 1,
          'skin': 1,
          'incredible': 1,
          'water': 1,
          'effects': 1,
          'noverall': 1,
          'expressions': 1,
          'lip': 1,
          'movements': 1,
          'fairly': 1,
          'accurately': 1,
          'match': 1,
          'emotions': 1,
          'times': 1,
          'sync': 1,
          'perfectly': 1,
          'really': 1,
          'stand': 1,
          'since': 1,
          'usually': 1,
          'dazzling': 1,
          'wont': 1,
          'spend': 1,
          'time': 1,
          'dwelling': 1,
          'gaffes': 1,
          'soon': 1,
          'catch': 1,
          'next': 1,
          'stellar': 1,
          'monster': 1,
          'effect': 1,
          'muttering': 1,
          'wow': 1,
          'nlike': 1,
          'series': 1,
          'games': 1,
          'fantasys': 1,
          'characters': 1,
          'little': 1,
          'predecessors': 1,
          'born': 1,
          'mastermind': 1,
          'hironobu': 1,
          'sakaguchi': 1,
          'year': 1,
          '2065': 1,
          'prisoners': 1,
          'caged': 1,
          'cities': 1,
          'making': 1,
          'guard': 1,
          'overrun': 1,
          'deadly': 1,
          'alien': 1,
          'nwhenever': 1,
          'human': 1,
          'comes': 1,
          'contact': 1,
          'ghostly': 1,
          'visitors': 1,
          'ofteninvisible': 1,
          'beings': 1,
          'body': 1,
          'wrench': 1,
          'soul': 1,
          'unexplainable': 1,
          'reason': 1,
          'many': 1,
          'agree': 1,
          'monomaniacal': 1,
          'general': 1,
          'hein': 1,
          'james': 1,
          'woods': 1,
          'blast': 1,
          'zeus': 1,
          'cannon': 1,
          'aki': 1,
          'ross': 1,
          'mingna': 1,
          'sid': 1,
          'donald': 1,
          'sutherland': 1,
          'build': 1,
          'wave': 1,
          'using': 1,
          'eight': 1,
          'collected': 1,
          'counteract': 1,
          'kill': 1,
          'images': 1,
          'serve': 1,
          'scifi': 1,
          'aspect': 1,
          'well': 1,
          'storytelling': 1,
          'doesnt': 1,
          'unfortunate': 1,
          'seems': 1,
          'intricately': 1,
          'thought': 1,
          'nperhaps': 1,
          'far': 1,
          'complex': 1,
          'enormous': 1,
          'entirely': 1,
          'incorporated': 1,
          'script': 1,
          'nsome': 1,
          'could': 1,
          'blame': 1,
          'weakness': 1,
          'fact': 1,
          'concept': 1,
          'translated': 1,
          'english': 1,
          'except': 1,
          'two': 1,
          'americans': 1,
          'wrote': 1,
          'screenplay': 1,
          'nnevertheless': 1,
          'end': 1,
          'result': 1,
          'elaborate': 1,
          'complicated': 1,
          'confusing': 1,
          'holes': 1,
          'nwhy': 1,
          'feed': 1,
          'souls': 1,
          'nif': 1,
          'bodies': 1,
          'ships': 1,
          'hurt': 1,
          'guns': 1,
          'nwhat': 1,
          'special': 1,
          'would': 1,
          'create': 1,
          'force': 1,
          'strong': 1,
          'enough': 1,
          'destroy': 1,
          'nworse': 1,
          'yet': 1,
          'scripted': 1,
          'either': 1,
          'scienceheavy': 1,
          'star': 1,
          'trek': 1,
          'episode': 1,
          'installment': 1,
          'die': 1,
          'hard': 1,
          'sappy': 1,
          'love': 1,
          'depending': 1,
          'whos': 1,
          'talking': 1,
          'nfor': 1,
          'part': 1,
          'bearable': 1,
          'considering': 1,
          'genre': 1,
          'tedious': 1,
          'speeches': 1,
          'cheesy': 1,
          'lines': 1,
          'help': 1,
          'actors': 1,
          'get': 1,
          'annoying': 1,
          'longer': 1,
          'scenes': 1,
          'nthe': 1,
          'exception': 1,
          'steve': 1,
          'buscemi': 1,
          'pilot': 1,
          'neil': 1,
          'fleming': 1,
          'always': 1,
          'cracks': 1,
          'tense': 1,
          'moments': 1,
          'lights': 1,
          'come': 1,
          'credits': 1,
          'roll': 1,
          'youre': 1,
          'likely': 1,
          'remarking': 1,
          'fantastic': 1,
          'looked': 1,
          'ntheres': 1,
          'question': 1,
          'roughly': 1,
          '33': 1,
          'million': 1,
          'people': 1,
          'bought': 1,
          'least': 1,
          'eager': 1,
          'movie': 1,
          'anyone': 1,
          'enjoys': 1,
          'floored': 1,
          'best': 1,
          'cg': 1,
          'ever': 1,
          'put': 1,
          'nyoud': 1,
          'living': 1,
          'expected': 1,
          'npos': 1}),
 Counter({'film': 27,
          'troopers': 20,
          'nthe': 12,
          'starship': 11,
          'star': 7,
          'rico': 7,
          'scifi': 6,
          'nstarship': 6,
          'wars': 6,
          'gives': 6,
          'nhowever': 6,
          'fiction': 5,
          'nin': 5,
          'quite': 5,
          'characters': 5,
          'cast': 5,
          'performance': 5,
          'nand': 4,
          'ni': 4,
          'sense': 4,
          'humor': 4,
          'result': 4,
          'science': 4,
          'never': 4,
          'would': 4,
          'verhoeven': 4,
          'plot': 4,
          'violence': 4,
          'extremely': 4,
          'war': 4,
          'also': 4,
          'funny': 4,
          'one': 4,
          'setup': 4,
          'carmen': 4,
          'dizzy': 4,
          'see': 4,
          'independence': 3,
          'day': 3,
          'nits': 3,
          'realize': 3,
          'first': 3,
          'hour': 3,
          'still': 3,
          'give': 3,
          'well': 3,
          'may': 3,
          'seem': 3,
          'fact': 3,
          'watching': 3,
          'another': 3,
          'nthis': 3,
          'alien': 3,
          'bugs': 3,
          'morals': 3,
          'something': 3,
          'like': 3,
          'know': 3,
          'take': 3,
          'year': 3,
          'van': 3,
          'dien': 3,
          'signs': 3,
          'position': 3,
          'left': 3,
          'special': 3,
          'effects': 3,
          'many': 3,
          'good': 3,
          'violent': 3,
          'character': 3,
          'surprising': 3,
          'surprisingly': 2,
          'entertaining': 2,
          'gave': 2,
          'years': 2,
          'rating': 2,
          'nafter': 2,
          'feel': 2,
          'really': 2,
          'review': 2,
          'perfectly': 2,
          'probably': 2,
          'could': 2,
          'space': 2,
          'nwhile': 2,
          'comes': 2,
          'easiest': 2,
          'call': 2,
          'nperhaps': 2,
          'romance': 2,
          'way': 2,
          'films': 2,
          'original': 2,
          'style': 2,
          'except': 2,
          'likely': 2,
          'basic': 2,
          'mankind': 2,
          'species': 2,
          'civilization': 2,
          'scenes': 2,
          'us': 2,
          'time': 2,
          'intended': 2,
          'event': 2,
          'nit': 2,
          'watch': 2,
          'begins': 2,
          'gory': 2,
          'nwe': 2,
          'richards': 2,
          'isnt': 2,
          'interested': 2,
          'pilot': 2,
          'meyer': 2,
          'nunfortunately': 2,
          'gets': 2,
          'patrick': 2,
          'harris': 2,
          'training': 2,
          'main': 2,
          'story': 2,
          'place': 2,
          'better': 2,
          'na': 2,
          'grew': 2,
          'audience': 2,
          'sometimes': 2,
          'flat': 2,
          'hard': 2,
          'superficial': 2,
          'dramas': 2,
          'planet': 2,
          'much': 2,
          'hopefully': 2,
          'ndirector': 2,
          'despite': 2,
          'book': 2,
          'gore': 2,
          'r': 2,
          'old': 2,
          'guess': 2,
          'chiseled': 2,
          'world': 2,
          'made': 2,
          'nthankfully': 2,
          'guys': 2,
          'come': 2,
          'job': 2,
          'rest': 2,
          'nhis': 2,
          'bad': 2,
          'screenplay': 2,
          'smart': 2,
          'dont': 2,
          'governmental': 2,
          'even': 2,
          'ladies': 1,
          'gentlemen': 1,
          '1997s': 1,
          'title': 1,
          'id4': 1,
          'last': 1,
          'hit': 1,
          '4': 1,
          'spell': 1,
          'powerful': 1,
          'subsequent': 1,
          'viewings': 1,
          'wasnt': 1,
          'great': 1,
          'seemedthough': 1,
          'positive': 1,
          'hand': 1,
          'mocking': 1,
          'knowing': 1,
          'ridiculous': 1,
          'nas': 1,
          'exciting': 1,
          'energetic': 1,
          'lively': 1,
          'get': 1,
          'tired': 1,
          'reminiscient': 1,
          'kickass': 1,
          'opera': 1,
          'reinvented': 1,
          'drama': 1,
          'altogether': 1,
          'close': 1,
          'assessment': 1,
          '90s': 1,
          'nam': 1,
          'generous': 1,
          'along': 1,
          'mix': 1,
          'effectively': 1,
          'warring': 1,
          'races': 1,
          'essence': 1,
          'equivolence': 1,
          'pulp': 1,
          'write': 1,
          'compare': 1,
          'persay': 1,
          'director': 1,
          'paul': 1,
          'kickthealiensasses': 1,
          'nid4': 1,
          'forced': 1,
          'cause': 1,
          'smith': 1,
          'major': 1,
          'role': 1,
          'new': 1,
          'simple': 1,
          'vs': 1,
          'question': 1,
          'seemingly': 1,
          'advanced': 1,
          'arachnidtype': 1,
          'insects': 1,
          'underlying': 1,
          'fleshed': 1,
          'deadly': 1,
          'accuracy': 1,
          'nsometimes': 1,
          'buried': 1,
          'bloody': 1,
          'intense': 1,
          'action': 1,
          'quiet': 1,
          'moments': 1,
          'tell': 1,
          'nmore': 1,
          'overpowered': 1,
          'quickly': 1,
          'forgotten': 1,
          'movie': 1,
          'ends': 1,
          'doubt': 1,
          'thoughtprovoking': 1,
          'average': 1,
          'refreshing': 1,
          'actually': 1,
          'root': 1,
          'human': 1,
          'side': 1,
          'achieved': 1,
          'satirical': 1,
          'portrayal': 1,
          'strange': 1,
          'join': 1,
          'army': 1,
          'ads': 1,
          'nmixing': 1,
          'webbased': 1,
          'interface': 1,
          'summations': 1,
          'events': 1,
          'refreshingly': 1,
          'nstating': 1,
          'nthese': 1,
          'short': 1,
          'news': 1,
          'bulletins': 1,
          'immediate': 1,
          'seriously': 1,
          'witness': 1,
          'murder': 1,
          'several': 1,
          'battle': 1,
          'yet': 1,
          'witnessing': 1,
          'slaughter': 1,
          'jumps': 1,
          'back': 1,
          'saw': 1,
          'introduced': 1,
          'johnny': 1,
          'casper': 1,
          'ibanez': 1,
          'denise': 1,
          'nrico': 1,
          'flirts': 1,
          'sending': 1,
          'messages': 1,
          'computer': 1,
          'terminals': 1,
          'school': 1,
          'classrooms': 1,
          'becoming': 1,
          'classmate': 1,
          'flores': 1,
          'dina': 1,
          'eye': 1,
          'rather': 1,
          'cliched': 1,
          'fun': 1,
          'ncarmen': 1,
          'become': 1,
          'trooper': 1,
          'neveryone': 1,
          'assigned': 1,
          'certain': 1,
          'academy': 1,
          'wanted': 1,
          'carl': 1,
          'jenkins': 1,
          'neil': 1,
          'psychic': 1,
          'program': 1,
          'lowest': 1,
          'class': 1,
          'mobile': 1,
          'infantry': 1,
          'follows': 1,
          'trials': 1,
          'relationships': 1,
          'reality': 1,
          'found': 1,
          'version': 1,
          'melrose': 1,
          'nan': 1,
          'tension': 1,
          'watched': 1,
          'unintentionally': 1,
          'care': 1,
          'matter': 1,
          'tried': 1,
          'gorgeous': 1,
          'looks': 1,
          'must': 1,
          'nfollowing': 1,
          'sessions': 1,
          'mention': 1,
          'sent': 1,
          'live': 1,
          'klendathu': 1,
          'consists': 1,
          'dirt': 1,
          'rock': 1,
          'pretty': 1,
          'nothing': 1,
          'else': 1,
          'nmany': 1,
          'occur': 1,
          'finally': 1,
          'behind': 1,
          'attacks': 1,
          'sort': 1,
          'intelligence': 1,
          'masterminds': 1,
          'defense': 1,
          'ordered': 1,
          'locate': 1,
          'brain': 1,
          'capture': 1,
          'vague': 1,
          'possible': 1,
          'known': 1,
          'nudie': 1,
          'showgirls': 1,
          'instinct': 1,
          'returns': 1,
          'days': 1,
          'total': 1,
          'recall': 1,
          'nverhoeven': 1,
          'likes': 1,
          'push': 1,
          'envelope': 1,
          'mpaa': 1,
          'comic': 1,
          'falsehood': 1,
          'horizon': 1,
          'deserved': 1,
          'parents': 1,
          'allow': 1,
          '12': 1,
          'children': 1,
          'nmy': 1,
          'verhoevens': 1,
          'target': 1,
          '18': 1,
          '25': 1,
          'male': 1,
          'group': 1,
          'testosterone': 1,
          'level': 1,
          'charts': 1,
          'men': 1,
          'beautiful': 1,
          'women': 1,
          'ndespite': 1,
          'elements': 1,
          'creates': 1,
          'successful': 1,
          'second': 1,
          'decisions': 1,
          'clear': 1,
          'hero': 1,
          'punching': 1,
          'aliens': 1,
          'face': 1,
          'depth': 1,
          'identify': 1,
          'annoying': 1,
          'begin': 1,
          'soon': 1,
          'grow': 1,
          'ncasper': 1,
          'facial': 1,
          'features': 1,
          'tan': 1,
          'skin': 1,
          'make': 1,
          'girls': 1,
          'swoon': 1,
          'nto': 1,
          'across': 1,
          'artificial': 1,
          'nfortunately': 1,
          'worst': 1,
          'tries': 1,
          'real': 1,
          'ndina': 1,
          'fleshing': 1,
          'nher': 1,
          'likeable': 1,
          'ndenise': 1,
          'done': 1,
          'njake': 1,
          'busey': 1,
          'gary': 1,
          'buseys': 1,
          'son': 1,
          'wonderfully': 1,
          'provides': 1,
          'biggest': 1,
          'laughs': 1,
          'nneil': 1,
          'remember': 1,
          'doogie': 1,
          'howser': 1,
          'little': 1,
          'wooden': 1,
          'slightly': 1,
          'nmichael': 1,
          'ironside': 1,
          'best': 1,
          'teacher': 1,
          'arm': 1,
          'rises': 1,
          'developed': 1,
          'think': 1,
          'ironsides': 1,
          'presence': 1,
          'screen': 1,
          'particular': 1,
          'member': 1,
          'starmaking': 1,
          'material': 1,
          'members': 1,
          'stars': 1,
          'direction': 1,
          'fast': 1,
          'unrelentless': 1,
          'nhe': 1,
          'slows': 1,
          'pace': 1,
          'makes': 1,
          'wild': 1,
          'ride': 1,
          'nwriter': 1,
          'edward': 1,
          'neumeier': 1,
          'adapted': 1,
          'robert': 1,
          'heinlein': 1,
          'writing': 1,
          'usually': 1,
          'corny': 1,
          'dialogue': 1,
          'arent': 1,
          'required': 1,
          'everything': 1,
          'holes': 1,
          'unanswered': 1,
          'notice': 1,
          'lingered': 1,
          'mind': 1,
          'namazingly': 1,
          'going': 1,
          'manages': 1,
          'include': 1,
          'issues': 1,
          'changes': 1,
          'fairly': 1,
          'plausible': 1,
          'adds': 1,
          'layer': 1,
          'moral': 1,
          'debate': 1,
          'find': 1,
          'genre': 1,
          'amount': 1,
          'included': 1,
          'carnage': 1,
          'havent': 1,
          'laughed': 1,
          'loud': 1,
          'comedies': 1,
          'noh': 1,
          'rate': 1,
          'rated': 1,
          'graphic': 1,
          'language': 1,
          'nudity': 1,
          'nbelieve': 1,
          'say': 1,
          'young': 1,
          'kids': 1,
          'enough': 1,
          '17': 1,
          'guaranteed': 1,
          'entertain': 1,
          'long': 1,
          'since': 1,
          'cheered': 1,
          'heros': 1,
          'cheering': 1,
          'dream': 1,
          'race': 1,
          'destroys': 1,
          'nnow': 1,
          'npos': 1}),
 Counter({'film': 13,
          'porn': 6,
          'bubbles': 5,
          'one': 4,
          'nthe': 4,
          'sex': 3,
          'galore': 3,
          'hartley': 3,
          'takes': 3,
          'nthis': 3,
          'role': 3,
          'traditional': 3,
          'women': 3,
          'fantasy': 2,
          'canadian': 2,
          'cynthia': 2,
          'roberts': 2,
          'doubt': 2,
          'title': 2,
          'character': 2,
          'nina': 2,
          'films': 2,
          'however': 2,
          'love': 2,
          'story': 2,
          'romantic': 2,
          'sexton': 2,
          'nin': 2,
          'tracy': 2,
          'wright': 2,
          'considerable': 2,
          'godfrey': 2,
          'macivor': 2,
          'make': 2,
          'presence': 2,
          'god': 2,
          'sexy': 2,
          'performances': 2,
          'nmaking': 2,
          'debut': 2,
          'star': 2,
          'screen': 2,
          'appears': 2,
          'appearance': 2,
          'trade': 2,
          'place': 2,
          'subversive': 2,
          'funding': 2,
          'billed': 1,
          'feminist': 1,
          'spirited': 1,
          'imaginative': 1,
          'thoroughly': 1,
          'engaging': 1,
          'awardwinning': 1,
          'director': 1,
          'destined': 1,
          'extreme': 1,
          'reactions': 1,
          'ncamille': 1,
          'paglia': 1,
          'enthusiasts': 1,
          'champion': 1,
          'heartfelt': 1,
          'tale': 1,
          'pornactressturnedpornproducer': 1,
          'faces': 1,
          'uphill': 1,
          'battle': 1,
          'quest': 1,
          'sexual': 1,
          'economic': 1,
          'independence': 1,
          'nhowever': 1,
          'andrea': 1,
          'dworkin': 1,
          'camp': 1,
          'loathe': 1,
          'decidedly': 1,
          'proporn': 1,
          'stance': 1,
          'npolitical': 1,
          'considerations': 1,
          'aside': 1,
          'delightful': 1,
          'lesbian': 1,
          'us': 1,
          'whirlwind': 1,
          'tour': 1,
          'entanglements': 1,
          'naive': 1,
          'virginal': 1,
          'young': 1,
          'starlet': 1,
          'dory': 1,
          'drawers': 1,
          'shauny': 1,
          'backdrop': 1,
          'loyal': 1,
          'assistant': 1,
          'vivian': 1,
          'klitorsky': 1,
          'pines': 1,
          'longingly': 1,
          'affections': 1,
          'bubbly': 1,
          'boss': 1,
          'femmebutchfemme': 1,
          'triangle': 1,
          'provides': 1,
          'humanity': 1,
          'sensuality': 1,
          'addition': 1,
          'aspects': 1,
          'stalked': 1,
          'terrorized': 1,
          'exboyfriend': 1,
          'montana': 1,
          'daniel': 1,
          'slimy': 1,
          'mogul': 1,
          'wishes': 1,
          'life': 1,
          'miserable': 1,
          'possibly': 1,
          'nwhen': 1,
          'plans': 1,
          'sabotage': 1,
          'latest': 1,
          'fall': 1,
          'snaps': 1,
          'psychotically': 1,
          'decides': 1,
          'kill': 1,
          'nthese': 1,
          'proceedings': 1,
          'presided': 1,
          'heavenly': 1,
          'ngod': 1,
          'yes': 1,
          'world': 1,
          'definitely': 1,
          'chorus': 1,
          'undulating': 1,
          'scantilyclad': 1,
          'angels': 1,
          'watchful': 1,
          'lustful': 1,
          'eyes': 1,
          'events': 1,
          'unfold': 1,
          'adding': 1,
          'lovely': 1,
          'element': 1,
          'frothy': 1,
          'concoction': 1,
          'bright': 1,
          'colourful': 1,
          'deliriously': 1,
          'chockfull': 1,
          'great': 1,
          'dramatic': 1,
          'appearing': 1,
          '300': 1,
          'triple': 1,
          'x': 1,
          'adult': 1,
          'command': 1,
          'assurance': 1,
          'puts': 1,
          'many': 1,
          'contemporary': 1,
          'straight': 1,
          'actresses': 1,
          'shame': 1,
          'nhartley': 1,
          'overwhelming': 1,
          'power': 1,
          'wonders': 1,
          'nontriplex': 1,
          'producers': 1,
          'havent': 1,
          'used': 1,
          'bountiful': 1,
          'talents': 1,
          'nit': 1,
          'also': 1,
          'interesting': 1,
          'note': 1,
          'recent': 1,
          'release': 1,
          'boogie': 1,
          'nights': 1,
          'far': 1,
          'doomandgloom': 1,
          'approach': 1,
          'industry': 1,
          'cameo': 1,
          'former': 1,
          'actress': 1,
          'annie': 1,
          'sprinkle': 1,
          'true': 1,
          'artist': 1,
          'right': 1,
          'gives': 1,
          'entire': 1,
          'earthy': 1,
          'sensual': 1,
          'glow': 1,
          'certainly': 1,
          'solidifies': 1,
          'downright': 1,
          'justifies': 1,
          'themes': 1,
          'movie': 1,
          'equally': 1,
          'solid': 1,
          'ndaniel': 1,
          'appropriately': 1,
          'chews': 1,
          'scenery': 1,
          'villainous': 1,
          'lends': 1,
          'able': 1,
          'support': 1,
          'complex': 1,
          'nshauny': 1,
          'erotic': 1,
          'dancer': 1,
          'pinup': 1,
          'model': 1,
          'makes': 1,
          'impressive': 1,
          'noverall': 1,
          'wears': 1,
          'politics': 1,
          'sleeve': 1,
          'proudly': 1,
          'indeed': 1,
          'nat': 1,
          'point': 1,
          'declares': 1,
          'instead': 1,
          'trying': 1,
          'save': 1,
          'working': 1,
          'ensure': 1,
          'safe': 1,
          'work': 1,
          'direction': 1,
          'daring': 1,
          'nroberts': 1,
          'afraid': 1,
          'plunge': 1,
          'otherwise': 1,
          'straightahead': 1,
          'simple': 1,
          'narrative': 1,
          'extended': 1,
          'extremely': 1,
          'avantgarde': 1,
          'montage': 1,
          'sequences': 1,
          'scenes': 1,
          'especially': 1,
          'beautiful': 1,
          'musical': 1,
          'score': 1,
          'nicholas': 1,
          'stirling': 1,
          'blends': 1,
          'cool': 1,
          'jazz': 1,
          'lounge': 1,
          'stylings': 1,
          'skilful': 1,
          'cinematography': 1,
          'harald': 1,
          'bachmann': 1,
          'terrifically': 1,
          'captures': 1,
          'blend': 1,
          'garish': 1,
          '70s': 1,
          'psychedelia': 1,
          'namazingly': 1,
          'received': 1,
          'good': 1,
          'deal': 1,
          'variety': 1,
          'government': 1,
          'cultural': 1,
          'agencies': 1,
          'speaks': 1,
          'volumes': 1,
          'towards': 1,
          'importance': 1,
          'state': 1,
          'culture': 1,
          'imagine': 1,
          'entertaining': 1,
          'original': 1,
          'vital': 1,
          'made': 1,
          'setting': 1,
          'conformity': 1,
          'formula': 1,
          'rule': 1,
          'day': 1,
          'nbubbles': 1,
          'seems': 1,
          'making': 1,
          'festival': 1,
          'rounds': 1,
          'present': 1,
          'appear': 1,
          'distribution': 1,
          'keep': 1,
          'eye': 1,
          'alternative': 1,
          'listings': 1,
          'nits': 1,
          'funny': 1,
          'nand': 1,
          'shouldnt': 1,
          'missed': 1,
          'npos': 1}),
 Counter({'film': 11,
          'nand': 6,
          'supermarket': 5,
          'woman': 5,
          'itami': 5,
          'also': 5,
          'much': 5,
          'juzo': 4,
          'way': 4,
          'taxing': 4,
          'hanako': 4,
          'many': 4,
          'food': 3,
          'satire': 3,
          'films': 3,
          'funny': 3,
          'take': 3,
          'prices': 3,
          'end': 3,
          'operation': 3,
          'even': 3,
          'store': 3,
          'one': 3,
          'director': 2,
          'nif': 2,
          'buy': 2,
          'local': 2,
          'better': 2,
          'give': 2,
          'go': 2,
          'funeral': 2,
          'returns': 2,
          'side': 2,
          'ngoro': 2,
          'less': 2,
          'else': 2,
          'gets': 2,
          'discovers': 2,
          'elders': 2,
          'new': 2,
          'customers': 2,
          'work': 2,
          'along': 2,
          'make': 2,
          'away': 2,
          'people': 2,
          'things': 2,
          'well': 2,
          'nwith': 2,
          'ways': 2,
          'although': 2,
          'would': 2,
          'nworth': 2,
          'seeing': 2,
          'nwe': 2,
          'seen': 1,
          '21st': 1,
          'portland': 1,
          'international': 1,
          'festival': 1,
          'nfilm': 1,
          'title': 1,
          'country': 1,
          'japan': 1,
          '1997': 1,
          'cinematography': 1,
          'yonezo': 1,
          'maeda': 1,
          'music': 1,
          'toshiyuki': 1,
          'honda': 1,
          'cast': 1,
          'nobuko': 1,
          'miyamoto': 1,
          'masahitko': 1,
          'tsugawa': 1,
          'shiro': 1,
          'ito': 1,
          'yuji': 1,
          'miyake': 1,
          'akiko': 1,
          'matsumoto': 1,
          'super': 1,
          'features': 1,
          'typical': 1,
          'nfunny': 1,
          'pointed': 1,
          'dont': 1,
          'care': 1,
          'goes': 1,
          'nmaybe': 1,
          'ignore': 1,
          'strong': 1,
          'biting': 1,
          'deliver': 1,
          'insight': 1,
          'foods': 1,
          'nhaving': 1,
          'past': 1,
          'made': 1,
          'pulled': 1,
          'every': 1,
          'punch': 1,
          'imaginable': 1,
          'family': 1,
          'traditions': 1,
          'taxes': 1,
          'diabolical': 1,
          'gangsters': 1,
          'minbo': 1,
          'hospitals': 1,
          'seriously': 1,
          'ill': 1,
          'time': 1,
          'takes': 1,
          'supermarkets': 1,
          'war': 1,
          'get': 1,
          'consumers': 1,
          'crazy': 1,
          'situations': 1,
          'creates': 1,
          'shows': 1,
          'another': 1,
          'attitude': 1,
          'corporate': 1,
          'structure': 1,
          'concerned': 1,
          'profits': 1,
          'customer': 1,
          'competitor': 1,
          'comes': 1,
          'neighborhood': 1,
          'trying': 1,
          'business': 1,
          'providing': 1,
          'expensive': 1,
          'everything': 1,
          'sold': 1,
          'nbargains': 1,
          'galore': 1,
          'name': 1,
          'mind': 1,
          'closure': 1,
          'goros': 1,
          'humbler': 1,
          'venue': 1,
          'mark': 1,
          'hires': 1,
          'housewife': 1,
          'whose': 1,
          'talents': 1,
          'seem': 1,
          'suited': 1,
          'management': 1,
          'anything': 1,
          'nhanako': 1,
          'familiar': 1,
          'tricks': 1,
          'trade': 1,
          'done': 1,
          'charge': 1,
          'section': 1,
          'market': 1,
          'procedures': 1,
          'always': 1,
          'fresh': 1,
          'packaging': 1,
          'date': 1,
          'try': 1,
          'convince': 1,
          'quality': 1,
          'shelves': 1,
          'nhanakos': 1,
          'ideas': 1,
          'hold': 1,
          'starting': 1,
          'women': 1,
          'shop': 1,
          'giveaways': 1,
          'bit': 1,
          'difference': 1,
          'cause': 1,
          'serious': 1,
          'problems': 1,
          'running': 1,
          'na': 1,
          'price': 1,
          'error': 1,
          'forces': 1,
          'eggs': 1,
          'low': 1,
          'causes': 1,
          'hassles': 1,
          'brought': 1,
          'everyone': 1,
          'knows': 1,
          'nas': 1,
          'stronger': 1,
          'competition': 1,
          'trickery': 1,
          'sleeve': 1,
          'undermining': 1,
          'paybacks': 1,
          'managers': 1,
          'meat': 1,
          'fish': 1,
          'elder': 1,
          'supervisors': 1,
          'neventually': 1,
          'found': 1,
          'tread': 1,
          'slowly': 1,
          'carefully': 1,
          'showdown': 1,
          'truth': 1,
          'honesty': 1,
          'win': 1,
          'decides': 1,
          'stay': 1,
          'rather': 1,
          'corrupt': 1,
          'opponent': 1,
          'nin': 1,
          'process': 1,
          'find': 1,
          'freshness': 1,
          'jokes': 1,
          'word': 1,
          'becomes': 1,
          'important': 1,
          'tool': 1,
          'imagined': 1,
          'nice': 1,
          'performances': 1,
          'hectic': 1,
          'fast': 1,
          'paced': 1,
          'gives': 1,
          'us': 1,
          'sitting': 1,
          'two': 1,
          'hours': 1,
          'satisfying': 1,
          'failed': 1,
          'love': 1,
          'story': 1,
          'goro': 1,
          'come': 1,
          'though': 1,
          'towards': 1,
          'suggested': 1,
          'nbut': 1,
          'strengths': 1,
          'gags': 1,
          'place': 1,
          'lets': 1,
          'fun': 1,
          'n': 1,
          'editorial': 1,
          'died': 1,
          'shortly': 1,
          'finished': 1,
          'left': 1,
          'behind': 1,
          'legacy': 1,
          'comedy': 1,
          'rare': 1,
          'uncompromising': 1,
          'wish': 1,
          'able': 1,
          'making': 1,
          'must': 1,
          'stories': 1,
          'tell': 1,
          'japanese': 1,
          'society': 1,
          'errant': 1,
          'nnot': 1,
          'say': 1,
          'happen': 1,
          'anywhere': 1,
          'namerica': 1,
          'guilty': 1,
          'subjects': 1,
          'anyone': 1,
          'guts': 1,
          'tackle': 1,
          'could': 1,
          'learn': 1,
          'something': 1,
          'specially': 1,
          'follow': 1,
          'nthe': 1,
          'good': 1,
          'later': 1,
          'ntampopo': 1,
          'enjoyable': 1,
          'nall': 1,
          'four': 1,
          'available': 1,
          'video': 1,
          'means': 1,
          'best': 1,
          'site': 1,
          'foreign': 1,
          'may': 1,
          'nask': 1,
          'npos': 1}),
 Counter({'strike': 4,
          'first': 3,
          'chan': 3,
          'film': 3,
          'one': 2,
          'jackie': 2,
          'nfor': 2,
          'simple': 2,
          'reason': 2,
          'stunts': 2,
          'hes': 2,
          'nthe': 2,
          'rumble': 2,
          'well': 2,
          'practice': 2,
          'almost': 2,
          'mafia': 2,
          'thats': 2,
          'sum': 1,
          'word': 1,
          'awesome': 1,
          'nnever': 1,
          'life': 1,
          'seen': 1,
          'actor': 1,
          'insanely': 1,
          'dedicated': 1,
          'performed': 1,
          'every': 1,
          'movie': 1,
          'ever': 1,
          'appeared': 1,
          'awarded': 1,
          'greatly': 1,
          'tom': 1,
          'jerry': 1,
          'formula': 1,
          'used': 1,
          'make': 1,
          'chans': 1,
          'bronx': 1,
          'supercop': 1,
          'entertaining': 1,
          'found': 1,
          'nhowever': 1,
          'probably': 1,
          'exciting': 1,
          'three': 1,
          'makes': 1,
          'perfect': 1,
          'nhis': 1,
          'last': 1,
          'two': 1,
          'movies': 1,
          'like': 1,
          'great': 1,
          'nlike': 1,
          'former': 1,
          'kgb': 1,
          'nnow': 1,
          'must': 1,
          'battle': 1,
          'freezing': 1,
          'arctic': 1,
          'temperatures': 1,
          'ukraine': 1,
          'group': 1,
          'large': 1,
          'bad': 1,
          'men': 1,
          'trailer': 1,
          'sums': 1,
          'quite': 1,
          'nfirst': 1,
          'actionpacked': 1,
          'fight': 1,
          'scenes': 1,
          'fast': 1,
          'furious': 1,
          'witty': 1,
          'italianlike': 1,
          'humor': 1,
          'njackie': 1,
          'regular': 1,
          'comedian': 1,
          'nwell': 1,
          'eddie': 1,
          'murphy': 1,
          'really': 1,
          'crack': 1,
          'example': 1,
          'hanging': 1,
          'roof': 1,
          'humorously': 1,
          'taunts': 1,
          'foes': 1,
          'come': 1,
          'get': 1,
          'claims': 1,
          'korean': 1,
          '007': 1,
          'secret': 1,
          'agent': 1,
          'james': 1,
          'bond': 1,
          'neven': 1,
          'plot': 1,
          'improved': 1,
          'others': 1,
          'sortof': 1,
          'twisted': 1,
          'nuclearweapon': 1,
          'smuggling': 1,
          'deal': 1,
          'botched': 1,
          'takes': 1,
          'blame': 1,
          'nbut': 1,
          'never': 1,
          'fear': 1,
          'chinese': 1,
          'aids': 1,
          'uncovering': 1,
          'truth': 1,
          'behind': 1,
          'incident': 1,
          'nwith': 1,
          'highflying': 1,
          'sidesplitting': 1,
          'comedy': 1,
          'surefire': 1,
          'hit': 1,
          'guaranteed': 1,
          'draw': 1,
          'major': 1,
          'worldwide': 1,
          'attention': 1,
          'n': 1,
          'npos': 1}),
 Counter({'aliens': 5,
          'say': 3,
          'proof': 3,
          'god': 3,
          'religion': 2,
          'believe': 2,
          'nellie': 2,
          'believes': 2,
          'nhow': 2,
          'fax': 2,
          'one': 2,
          'go': 2,
          'end': 2,
          'best': 2,
          'movie': 2,
          'devout': 1,
          'atheist': 1,
          'avowed': 1,
          'believer': 1,
          'idea': 1,
          'ellie': 1,
          'aroway': 1,
          'jodie': 1,
          'foster': 1,
          'feels': 1,
          'nbut': 1,
          'reasons': 1,
          'partaking': 1,
          'different': 1,
          'cant': 1,
          'exactly': 1,
          'nher': 1,
          'reason': 1,
          'needs': 1,
          'solid': 1,
          'existed': 1,
          'therefor': 1,
          'also': 1,
          'spent': 1,
          'life': 1,
          'trying': 1,
          'prove': 1,
          'exist': 1,
          'doesnt': 1,
          'lack': 1,
          'gereally': 1,
          'less': 1,
          'believed': 1,
          'without': 1,
          'sounding': 1,
          'like': 1,
          'hypocrite': 1,
          'nthats': 1,
          'catch22': 1,
          'nwhen': 1,
          'star': 1,
          'vega': 1,
          'plans': 1,
          'device': 1,
          'transport': 1,
          'someone': 1,
          'okay': 1,
          'well': 1,
          'didnt': 1,
          'really': 1,
          'wants': 1,
          'atheism': 1,
          'denied': 1,
          'position': 1,
          'dumb': 1,
          'nshe': 1,
          'discovers': 1,
          'transmitions': 1,
          'isnt': 1,
          'allowed': 1,
          'nwell': 1,
          'bomb': 1,
          'psychopath': 1,
          'jake': 1,
          'busey': 1,
          'going': 1,
          'way': 1,
          'wouldve': 1,
          'thought': 1,
          'ncontact': 1,
          'based': 1,
          'novel': 1,
          'carl': 1,
          'sagan': 1,
          'died': 1,
          'filmmaking': 1,
          'nit': 1,
          'alien': 1,
          'since': 1,
          'close': 1,
          'encounters': 1,
          '3rd': 1,
          'kind': 1,
          'film': 1,
          'year': 1,
          'nits': 1,
          'views': 1,
          'science': 1,
          'doubt': 1,
          'aggrivate': 1,
          'stimulate': 1,
          'nim': 1,
          'glad': 1,
          'least': 1,
          '90s': 1,
          'portray': 1,
          'psitive': 1,
          'light': 1,
          'rather': 1,
          'bunch': 1,
          'slimey': 1,
          'beasts': 1,
          'eat': 1,
          'insides': 1,
          'put': 1,
          'body': 1,
          'npos': 1}),
 Counter({'paradine': 8,
          'nthe': 7,
          'mrs': 6,
          'case': 5,
          'hitchcock': 4,
          'one': 4,
          'nas': 4,
          'plays': 4,
          'n': 4,
          'first': 4,
          'nto': 3,
          'fine': 3,
          'anthony': 3,
          'gay': 3,
          'half': 3,
          'part': 3,
          'id': 2,
          'film': 2,
          'times': 2,
          'master': 2,
          'movies': 2,
          'nthis': 2,
          'like': 2,
          'films': 2,
          'story': 2,
          'husband': 2,
          'woman': 2,
          'music': 2,
          'tells': 2,
          'barrister': 2,
          'shes': 2,
          'wife': 2,
          'back': 2,
          'client': 2,
          'comes': 2,
          'high': 2,
          'camera': 2,
          'paradines': 2,
          'nin': 2,
          'little': 2,
          'mr': 2,
          'valet': 2,
          'coburn': 2,
          'horfield': 2,
          'british': 2,
          'judges': 2,
          'many': 2,
          'none': 2,
          'sometimes': 2,
          'make': 2,
          'nomination': 2,
          'second': 2,
          'would': 2,
          'figured': 1,
          'seen': 1,
          'every': 1,
          'alfred': 1,
          'least': 1,
          'halfdozen': 1,
          'im': 1,
          'complaining': 1,
          'call': 1,
          'suspense': 1,
          'understatement': 1,
          '1947': 1,
          'admittedly': 1,
          'hitchcocks': 1,
          'lesser': 1,
          'turned': 1,
          'missed': 1,
          'well': 1,
          'worth': 1,
          'savoring': 1,
          'opens': 1,
          'rich': 1,
          'maddalena': 1,
          'anna': 1,
          'arrested': 1,
          'home': 1,
          'poisoning': 1,
          'blind': 1,
          'alida': 1,
          'valli': 1,
          'aloof': 1,
          'alluring': 1,
          'world': 1,
          'franz': 1,
          'waxmans': 1,
          'stark': 1,
          'moody': 1,
          'see': 1,
          'prison': 1,
          'guards': 1,
          'divesting': 1,
          'luxurious': 1,
          'garments': 1,
          'jewels': 1,
          'nstripped': 1,
          'raiment': 1,
          'becomes': 1,
          'commoner': 1,
          'turns': 1,
          'met': 1,
          'brief': 1,
          'skirmish': 1,
          'youll': 1,
          'lunching': 1,
          'savoy': 1,
          'keane': 1,
          'ultraconfident': 1,
          'attorney': 1,
          'meeting': 1,
          'predicting': 1,
          'fast': 1,
          'easy': 1,
          'trial': 1,
          'ngregory': 1,
          'peck': 1,
          'successful': 1,
          'debonair': 1,
          'murderess': 1,
          'argues': 1,
          'simplistically': 1,
          'smitten': 1,
          'beauty': 1,
          'nhis': 1,
          'attitude': 1,
          'upsets': 1,
          'beautiful': 1,
          'increasing': 1,
          'jealous': 1,
          'ann': 1,
          'todd': 1,
          'nunlike': 1,
          'centered': 1,
          'thriller': 1,
          'mystery': 1,
          'romantic': 1,
          'melodrama': 1,
          'ntypical': 1,
          'scene': 1,
          'flings': 1,
          'head': 1,
          'shakes': 1,
          'hair': 1,
          'bathed': 1,
          'light': 1,
          'nshe': 1,
          'deflects': 1,
          'husbands': 1,
          'affections': 1,
          'fears': 1,
          'beginning': 1,
          'fall': 1,
          'love': 1,
          'dramatic': 1,
          'dwells': 1,
          'portrait': 1,
          'nearby': 1,
          'relatively': 1,
          'unsatisfying': 1,
          'happens': 1,
          'domestic': 1,
          'squabbles': 1,
          'overtones': 1,
          'intense': 1,
          'adulterous': 1,
          'desires': 1,
          'sound': 1,
          'sweeping': 1,
          'violins': 1,
          'must': 1,
          'get': 1,
          'acquitted': 1,
          'dies': 1,
          'heart': 1,
          'go': 1,
          'nif': 1,
          'freed': 1,
          'able': 1,
          'forget': 1,
          'soap': 1,
          'opera': 1,
          'mysterious': 1,
          'louis': 1,
          'jordan': 1,
          'discussed': 1,
          'relationships': 1,
          'ncharles': 1,
          'anthonys': 1,
          'legal': 1,
          'partner': 1,
          'sir': 1,
          'simon': 1,
          'flaquer': 1,
          'nand': 1,
          'charles': 1,
          'laughton': 1,
          'looks': 1,
          'judge': 1,
          'lord': 1,
          'proper': 1,
          'society': 1,
          'dine': 1,
          'together': 1,
          'house': 1,
          'long': 1,
          'begins': 1,
          'ncourt': 1,
          'tv': 1,
          'junkies': 1,
          'probably': 1,
          'pick': 1,
          'differences': 1,
          'subtle': 1,
          'others': 1,
          'american': 1,
          'judicial': 1,
          'systems': 1,
          'example': 1,
          'aware': 1,
          'speak': 1,
          'recess': 1,
          'process': 1,
          'testifying': 1,
          'wonders': 1,
          'academy': 1,
          'thinking': 1,
          'oscar': 1,
          'nominations': 1,
          'lady': 1,
          'sophie': 1,
          'ethel': 1,
          'barrymore': 1,
          'got': 1,
          'best': 1,
          'supporting': 1,
          'actress': 1,
          'inconsequential': 1,
          'merit': 1,
          'big': 1,
          'question': 1,
          'obligatory': 1,
          'walkon': 1,
          'nat': 1,
          '37': 1,
          'minutes': 1,
          'leaves': 1,
          'train': 1,
          'station': 1,
          'carrying': 1,
          'large': 1,
          'musical': 1,
          'instrument': 1,
          'ndont': 1,
          'miss': 1,
          'finally': 1,
          'alive': 1,
          'gets': 1,
          'courtroom': 1,
          'great': 1,
          'shows': 1,
          'hand': 1,
          'tensions': 1,
          'build': 1,
          'rapidly': 1,
          'lay': 1,
          'fallow': 1,
          'nwatch': 1,
          'angles': 1,
          'way': 1,
          'set': 1,
          'exact': 1,
          'tone': 1,
          'trials': 1,
          'action': 1,
          'explains': 1,
          'simple': 1,
          '3': 1,
          'possibilities': 1,
          'poisoned': 1,
          'end': 1,
          'includes': 1,
          'devastating': 1,
          'revelations': 1,
          'nice': 1,
          'twists': 1,
          'bad': 1,
          'languid': 1,
          'runs': 1,
          '1': 1,
          '53': 1,
          'picture': 1,
          'black': 1,
          'white': 1,
          'nit': 1,
          'rated': 1,
          'pg': 1,
          'mature': 1,
          'themes': 1,
          'kids': 1,
          'around': 1,
          'nine': 1,
          'interested': 1,
          'npos': 1}),
 Counter({'nthe': 11,
          'wayland': 5,
          'like': 5,
          'deceiver': 4,
          'film': 4,
          'ndeceiver': 4,
          'police': 3,
          'michael': 3,
          'two': 3,
          'three': 3,
          'audience': 3,
          'effective': 3,
          'work': 3,
          'investigation': 2,
          'prostitute': 2,
          'zellweger': 2,
          'none': 2,
          'half': 2,
          'station': 2,
          'miles': 2,
          'away': 2,
          'chris': 2,
          'penn': 2,
          'kennesaw': 2,
          'rooker': 2,
          'leads': 2,
          'one': 2,
          'suspect': 2,
          'tim': 2,
          'roth': 2,
          'character': 2,
          'movie': 2,
          'plays': 2,
          'us': 2,
          'waylands': 2,
          'contrast': 2,
          'kennesaws': 2,
          'setting': 2,
          'room': 2,
          'days': 2,
          'questions': 2,
          'characters': 2,
          'plot': 2,
          'wife': 2,
          'arquette': 2,
          'elizabeths': 2,
          'mostly': 2,
          'play': 2,
          'atmosphere': 2,
          'could': 2,
          'manner': 2,
          'occasionally': 2,
          'pates': 2,
          'use': 2,
          'noir': 2,
          'although': 2,
          'nsome': 2,
          'things': 2,
          'several': 2,
          'performance': 2,
          'arent': 2,
          'best': 2,
          'never': 2,
          'wednesday': 1,
          'march': 1,
          '27': 1,
          'murder': 1,
          'underway': 1,
          'charlotte': 1,
          'south': 1,
          'carolina': 1,
          'crime': 1,
          'young': 1,
          'elizabeth': 1,
          'renee': 1,
          'brutally': 1,
          'slain': 1,
          'severed': 1,
          'body': 1,
          'found': 1,
          'bag': 1,
          'train': 1,
          'discovered': 1,
          'trunk': 1,
          'harbor': 1,
          'authority': 1,
          'duo': 1,
          'braxton': 1,
          'strapped': 1,
          'nat': 1,
          'moment': 1,
          'possible': 1,
          'wealthy': 1,
          'unemployed': 1,
          'genius': 1,
          'graduated': 1,
          'summa': 1,
          'cum': 1,
          'laude': 1,
          'princeton': 1,
          'appears': 1,
          'least': 1,
          'likely': 1,
          'commit': 1,
          'heinous': 1,
          'act': 1,
          'nthats': 1,
          'premise': 1,
          'new': 1,
          'thriller': 1,
          'pate': 1,
          'brothers': 1,
          'jonas': 1,
          'josh': 1,
          'made': 1,
          'mark': 1,
          'world': 1,
          'years': 1,
          'ago': 1,
          'sundance': 1,
          'grave': 1,
          'mind': 1,
          'game': 1,
          'intellectually': 1,
          'superior': 1,
          'sobright': 1,
          'cops': 1,
          'captions': 1,
          'early': 1,
          'proceedings': 1,
          'let': 1,
          'know': 1,
          'iq': 1,
          '151': 1,
          '122': 1,
          'braxtons': 1,
          '102': 1,
          'interrogation': 1,
          'lie': 1,
          'detector': 1,
          'test': 1,
          'administered': 1,
          'nover': 1,
          'returns': 1,
          'answer': 1,
          'drama': 1,
          'tension': 1,
          'among': 1,
          'gradually': 1,
          'escalates': 1,
          'inevitably': 1,
          'boils': 1,
          'nother': 1,
          'elements': 1,
          'thrown': 1,
          'good': 1,
          'measure': 1,
          'nwayland': 1,
          'suffers': 1,
          'peculiar': 1,
          'kind': 1,
          'epilepsy': 1,
          'stressful': 1,
          'situations': 1,
          'render': 1,
          'virtually': 1,
          'catatonic': 1,
          'extremely': 1,
          'violent': 1,
          'nbraxton': 1,
          'compulsive': 1,
          'gambler': 1,
          'deep': 1,
          'debt': 1,
          'local': 1,
          'syndicate': 1,
          'nand': 1,
          'haunted': 1,
          'dark': 1,
          'abusive': 1,
          'side': 1,
          'delights': 1,
          'terrorizing': 1,
          'women': 1,
          'especially': 1,
          'rosanna': 1,
          'suspects': 1,
          'unfaithful': 1,
          'foibles': 1,
          'failings': 1,
          'brought': 1,
          'open': 1,
          'mystery': 1,
          'around': 1,
          'death': 1,
          'deepens': 1,
          'becomes': 1,
          'unclear': 1,
          'upper': 1,
          'hand': 1,
          'questioners': 1,
          'transpires': 1,
          'dimlylit': 1,
          'involves': 1,
          'lot': 1,
          'smart': 1,
          'dialogue': 1,
          'feel': 1,
          'david': 1,
          'mamet': 1,
          'edgy': 1,
          'claustrophobic': 1,
          'tense': 1,
          'explosive': 1,
          'pivotal': 1,
          'moments': 1,
          'confrontation': 1,
          'riveting': 1,
          'power': 1,
          'grab': 1,
          'nunfortunately': 1,
          'end': 1,
          'succumbs': 1,
          'need': 1,
          'throw': 1,
          'last': 1,
          'unexpected': 1,
          'twist': 1,
          'undoing': 1,
          'nfor': 1,
          'surprise': 1,
          'certainly': 1,
          'shock': 1,
          'viewers': 1,
          'also': 1,
          'stretches': 1,
          'credulity': 1,
          'much': 1,
          'raises': 1,
          'answers': 1,
          'nits': 1,
          'wrapup': 1,
          'dont': 1,
          'think': 1,
          'carefully': 1,
          'full': 1,
          'implications': 1,
          'nof': 1,
          'course': 1,
          'whole': 1,
          'fast': 1,
          'loose': 1,
          'reality': 1,
          'logic': 1,
          'npolice': 1,
          'procedure': 1,
          'totally': 1,
          'ignored': 1,
          'almost': 1,
          'impossible': 1,
          'accept': 1,
          'criminal': 1,
          'would': 1,
          'proceed': 1,
          'nbut': 1,
          'real': 1,
          'focus': 1,
          'interaction': 1,
          'details': 1,
          'gets': 1,
          'instances': 1,
          'occur': 1,
          'primarily': 1,
          'flashbacks': 1,
          'featuring': 1,
          'employ': 1,
          'number': 1,
          'interesting': 1,
          'techniques': 1,
          'present': 1,
          'vignettes': 1,
          'final': 1,
          'hours': 1,
          'intriguing': 1,
          'unreliable': 1,
          'narrator': 1,
          'underlining': 1,
          'discrepancies': 1,
          'voiceover': 1,
          'visually': 1,
          'showing': 1,
          'really': 1,
          'happened': 1,
          'nmoments': 1,
          'dismissed': 1,
          'gimmicks': 1,
          'obviously': 1,
          'fashioned': 1,
          'classic': 1,
          'drips': 1,
          'nthere': 1,
          'fascinating': 1,
          'stylistic': 1,
          'touches': 1,
          'example': 1,
          'contemporary': 1,
          'telephones': 1,
          'oldfashioned': 1,
          'rotary': 1,
          'models': 1,
          'ncinematographer': 1,
          'bill': 1,
          'butler': 1,
          'given': 1,
          'opportunity': 1,
          'unconventional': 1,
          'camera': 1,
          'liven': 1,
          'deceivers': 1,
          'look': 1,
          'tries': 1,
          'involve': 1,
          'light': 1,
          'shadow': 1,
          'exceptionally': 1,
          'well': 1,
          'others': 1,
          'lazy': 1,
          'susan': 1,
          'shots': 1,
          'seem': 1,
          'unnecessary': 1,
          'visual': 1,
          'tricks': 1,
          'nas': 1,
          'gives': 1,
          'films': 1,
          'top': 1,
          'despite': 1,
          'treading': 1,
          'tightrope': 1,
          'acting': 1,
          'overacting': 1,
          'nroth': 1,
          'makes': 1,
          'believe': 1,
          'brilliant': 1,
          'troubled': 1,
          'hes': 1,
          'supposed': 1,
          'nboth': 1,
          'familiar': 1,
          'types': 1,
          'npenns': 1,
          'uninspired': 1,
          'rookers': 1,
          'lacks': 1,
          'subtlety': 1,
          'turned': 1,
          'supporting': 1,
          'actors': 1,
          'nrenee': 1,
          'role': 1,
          'thats': 1,
          'starmaking': 1,
          'turn': 1,
          'jerry': 1,
          'maguire': 1,
          'brings': 1,
          'note': 1,
          'vulnerability': 1,
          'humanity': 1,
          'part': 1,
          'easily': 1,
          'become': 1,
          'caricature': 1,
          'nrosanna': 1,
          'solid': 1,
          'parks': 1,
          'delivers': 1,
          'wonderful': 1,
          'scenes': 1,
          'psychiatrist': 1,
          'whos': 1,
          'entrusted': 1,
          'evaluating': 1,
          'condition': 1,
          'talks': 1,
          'nplot': 1,
          'points': 1,
          'hammered': 1,
          'home': 1,
          'ending': 1,
          'weaknesses': 1,
          'everything': 1,
          'isnt': 1,
          'spelled': 1,
          'bold': 1,
          'letters': 1,
          'give': 1,
          'members': 1,
          'credit': 1,
          'brains': 1,
          'increasingly': 1,
          'rare': 1,
          'characteristic': 1,
          'makers': 1,
          'noccasionally': 1,
          'gripping': 1,
          'uninteresting': 1,
          'fine': 1,
          'effort': 1,
          'npos': 1}),
 Counter({'film': 5,
          'jack': 4,
          'emotion': 3,
          'nit': 3,
          'nthe': 3,
          'rose': 3,
          'titanic': 2,
          'made': 2,
          'movie': 2,
          'paxton': 2,
          'ships': 2,
          'comes': 2,
          'nude': 2,
          'drawing': 2,
          'young': 2,
          'woman': 2,
          'seems': 2,
          'time': 2,
          'us': 2,
          'people': 2,
          'certain': 2,
          '200': 2,
          'million': 2,
          'also': 2,
          'first': 2,
          'april': 1,
          '12th': 1,
          '1912': 1,
          'astonishing': 1,
          'shipwreck': 1,
          'history': 1,
          'world': 1,
          'occurred': 1,
          'non': 1,
          'fateful': 1,
          'night': 1,
          'sunk': 1,
          'nnow': 1,
          '50': 1,
          'years': 1,
          'later': 1,
          'nand': 1,
          'njames': 1,
          'camerons': 1,
          'newest': 1,
          'landmark': 1,
          'storytelling': 1,
          'special': 1,
          'effects': 1,
          'starts': 1,
          'present': 1,
          'bill': 1,
          'band': 1,
          'scientists': 1,
          'explore': 1,
          'depths': 1,
          'wreckage': 1,
          'nexploring': 1,
          'old': 1,
          'chest': 1,
          'across': 1,
          'televised': 1,
          'gloria': 1,
          'stuart': 1,
          'whose': 1,
          'portrait': 1,
          'painting': 1,
          'forward': 1,
          'slowly': 1,
          'surely': 1,
          'story': 1,
          'told': 1,
          'nleonardo': 1,
          'dicaprio': 1,
          'stars': 1,
          'dawson': 1,
          'man': 1,
          'sketch': 1,
          'book': 1,
          'heart': 1,
          'gold': 1,
          'intelligent': 1,
          'mind': 1,
          'much': 1,
          'else': 1,
          'wins': 1,
          'ticket': 1,
          'aboard': 1,
          'poker': 1,
          'game': 1,
          'perfect': 1,
          'match': 1,
          'dewitt': 1,
          'bukater': 1,
          'kate': 1,
          'winslett': 1,
          'nshe': 1,
          'grows': 1,
          'love': 1,
          'unable': 1,
          'escape': 1,
          'slimy': 1,
          'clutches': 1,
          'arranged': 1,
          'fiance': 1,
          'cal': 1,
          'hockley': 1,
          'billy': 1,
          'zane': 1,
          'takes': 1,
          'makes': 1,
          'care': 1,
          'characters': 1,
          'shows': 1,
          'full': 1,
          'aspects': 1,
          'human': 1,
          'leads': 1,
          'shine': 1,
          'bad': 1,
          'performance': 1,
          'fact': 1,
          'like': 1,
          'performances': 1,
          'genuine': 1,
          'trapped': 1,
          'doomed': 1,
          'vessel': 1,
          'facing': 1,
          'death': 1,
          'nwatching': 1,
          'amazed': 1,
          'vivid': 1,
          'real': 1,
          'situations': 1,
          'feel': 1,
          'spend': 1,
          'together': 1,
          'thirdclassparty': 1,
          'naivety': 1,
          'feels': 1,
          'skecthes': 1,
          'terror': 1,
          'felt': 1,
          'onboard': 1,
          'doom': 1,
          'turns': 1,
          'cowards': 1,
          'heroes': 1,
          'nthis': 1,
          'expensive': 1,
          'ever': 1,
          'destined': 1,
          'make': 1,
          'profit': 1,
          'back': 1,
          'warmth': 1,
          'year': 1,
          'even': 1,
          'decade': 1,
          'yet': 1,
          'another': 1,
          'dollar': 1,
          'romance': 1,
          'every': 1,
          'critic': 1,
          'country': 1,
          'agree': 1,
          'indeed': 1,
          'money': 1,
          'extremely': 1,
          'n': 1,
          'well': 1,
          'nspent': 1,
          'npos': 1}),
 Counter({'band': 8,
          'song': 5,
          'group': 4,
          'nbut': 3,
          'fame': 3,
          'lead': 3,
          'become': 3,
          'nthe': 3,
          'contest': 3,
          'much': 3,
          'thing': 2,
          'film': 2,
          'hanks': 2,
          'enjoyable': 2,
          'wonders': 2,
          'fastest': 2,
          'selling': 2,
          'album': 2,
          'another': 2,
          'gig': 2,
          'play': 2,
          'guy': 2,
          'nhe': 2,
          'well': 2,
          'way': 2,
          'doesnt': 2,
          'playtone': 2,
          'records': 2,
          'members': 2,
          'appear': 2,
          'television': 2,
          'things': 2,
          'work': 2,
          'firsttime': 1,
          'director': 1,
          'tom': 1,
          'tale': 1,
          'fictional': 1,
          'goes': 1,
          'garage': 1,
          'country': 1,
          'question': 1,
          'arrises': 1,
          'seduction': 1,
          'fortune': 1,
          'corrupt': 1,
          'onehit': 1,
          'wonder': 1,
          'stick': 1,
          'together': 1,
          'next': 1,
          'teen': 1,
          'sensations': 1,
          'oneders': 1,
          'originally': 1,
          'known': 1,
          'first': 1,
          'smalltime': 1,
          'njimmy': 1,
          'singer': 1,
          'written': 1,
          'catchy': 1,
          'intends': 1,
          'short': 1,
          'time': 1,
          'begins': 1,
          'current': 1,
          'drummer': 1,
          'becomes': 1,
          'injured': 1,
          'replacement': 1,
          'needed': 1,
          'nenter': 1,
          'patterson': 1,
          'skilled': 1,
          'musician': 1,
          'currently': 1,
          'works': 1,
          'fathers': 1,
          'appliance': 1,
          'store': 1,
          'looking': 1,
          'break': 1,
          'free': 1,
          'restricting': 1,
          'clutches': 1,
          'bind': 1,
          'seems': 1,
          'fit': 1,
          'takes': 1,
          'stage': 1,
          'nwhen': 1,
          'begin': 1,
          'guys': 1,
          'beat': 1,
          'fast': 1,
          'pace': 1,
          'intended': 1,
          'nit': 1,
          'looks': 1,
          'though': 1,
          'doomed': 1,
          'failure': 1,
          'new': 1,
          'hit': 1,
          'nthis': 1,
          'leads': 1,
          'soon': 1,
          'enough': 1,
          'agent': 1,
          'get': 1,
          'played': 1,
          'radio': 1,
          'neventually': 1,
          'mr': 1,
          'white': 1,
          'approaches': 1,
          'informs': 1,
          'want': 1,
          'release': 1,
          'record': 1,
          'nbefore': 1,
          'say': 1,
          'billboard': 1,
          'renamed': 1,
          'speeding': 1,
          'gigs': 1,
          'getting': 1,
          'better': 1,
          'increasing': 1,
          'history': 1,
          'invited': 1,
          'feature': 1,
          'fly': 1,
          'hollywood': 1,
          'nafter': 1,
          'appearance': 1,
          'start': 1,
          'fall': 1,
          'apart': 1,
          'ntwo': 1,
          'pretty': 1,
          'disappear': 1,
          'working': 1,
          'jimmy': 1,
          'nwill': 1,
          'split': 1,
          'go': 1,
          'separate': 1,
          'journeys': 1,
          'towards': 1,
          'success': 1,
          'nthat': 1,
          'complete': 1,
          'nifty': 1,
          'original': 1,
          'actually': 1,
          'sounded': 1,
          'authentic': 1,
          'fun': 1,
          'movie': 1,
          'although': 1,
          'clear': 1,
          'wants': 1,
          'comedy': 1,
          'drama': 1,
          'romance': 1,
          'wellmade': 1,
          'look': 1,
          'world': 1,
          'music': 1,
          'ntom': 1,
          'directorial': 1,
          'debut': 1,
          'good': 1,
          'one': 1,
          'npos': 1}),
 Counter({'film': 6,
          'mute': 5,
          'witness': 3,
          'first': 3,
          'movie': 2,
          'moscow': 2,
          'snuff': 2,
          'subsequently': 2,
          'sister': 2,
          'video': 2,
          'one': 2,
          'nthe': 2,
          'billys': 2,
          'figures': 2,
          'comic': 2,
          'several': 2,
          'scenes': 2,
          'synopsis': 1,
          'attractive': 1,
          'makeup': 1,
          'artist': 1,
          'working': 1,
          'ultracheesy': 1,
          'slasher': 1,
          'witnesses': 1,
          'production': 1,
          'brutal': 1,
          'chased': 1,
          'really': 1,
          'bad': 1,
          'russians': 1,
          'nmeanwhile': 1,
          'artists': 1,
          'boyfriend': 1,
          'clumsily': 1,
          'try': 1,
          'save': 1,
          'ncomments': 1,
          'came': 1,
          'surprise': 1,
          'time': 1,
          'watched': 1,
          'ndrawn': 1,
          'clever': 1,
          'artwork': 1,
          'box': 1,
          'rented': 1,
          'expecting': 1,
          'complete': 1,
          'turkey': 1,
          'nmute': 1,
          'however': 1,
          'original': 1,
          'offbeat': 1,
          'wellmade': 1,
          'nits': 1,
          'cool': 1,
          'little': 1,
          'finds': 1,
          'seems': 1,
          'know': 1,
          'nive': 1,
          'found': 1,
          'rental': 1,
          'places': 1,
          'visit': 1,
          'may': 1,
          'seen': 1,
          'occasion': 1,
          'independent': 1,
          'channel': 1,
          'hour': 1,
          'extremely': 1,
          'tense': 1,
          'billy': 1,
          'quite': 1,
          'believable': 1,
          'heroine': 1,
          'sees': 1,
          'members': 1,
          'russian': 1,
          'mob': 1,
          'brutally': 1,
          'kill': 1,
          'prostitute': 1,
          'filming': 1,
          'illegal': 1,
          'rest': 1,
          'takes': 1,
          'good': 1,
          'advantage': 1,
          'vulnerable': 1,
          'position': 1,
          'foreigner': 1,
          'pursued': 1,
          'powerful': 1,
          'criminal': 1,
          'nto': 1,
          'throw': 1,
          'curveball': 1,
          'fray': 1,
          'karen': 1,
          'filmmaking': 1,
          'beau': 1,
          'become': 1,
          'bizarre': 1,
          'relief': 1,
          'offset': 1,
          'violent': 1,
          'sequences': 1,
          'genuinely': 1,
          'funny': 1,
          'na': 1,
          'disappointingly': 1,
          'trite': 1,
          'ending': 1,
          'occasional': 1,
          'blunders': 1,
          'two': 1,
          'things': 1,
          'mar': 1,
          'otherwise': 1,
          'suspenseful': 1,
          'nlook': 1,
          'alec': 1,
          'guinness': 1,
          'obiwan': 1,
          'kenobi': 1,
          'star': 1,
          'wars': 1,
          'trilogy': 1,
          'small': 1,
          'role': 1,
          'evil': 1,
          'reaper': 1,
          'ndefinately': 1,
          'check': 1,
          'although': 1,
          'word': 1,
          'warning': 1,
          'contain': 1,
          'rather': 1,
          'grisly': 1,
          'violence': 1,
          'certainly': 1,
          'arent': 1,
          'squeamish': 1,
          'npos': 1}),
 Counter({'italian': 5,
          'bava': 5,
          'horror': 4,
          'door': 4,
          'beyond': 3,
          'ii': 3,
          'film': 3,
          'dora': 3,
          'movies': 2,
          'director': 2,
          'chair': 2,
          'one': 2,
          'note': 2,
          'behind': 2,
          'story': 2,
          'son': 2,
          'marco': 2,
          'nthe': 2,
          'bruno': 2,
          'usually': 2,
          'somehow': 2,
          'suffering': 2,
          'surprisingly': 2,
          'grandfather': 1,
          'late': 1,
          'mario': 1,
          'credits': 1,
          'nearly': 1,
          '100': 1,
          'films': 1,
          'tv': 1,
          'produced': 1,
          'italy': 1,
          '1939': 1,
          'death': 1,
          'early': 1,
          '80s': 1,
          'nmore': 1,
          'practiced': 1,
          'cinematographer': 1,
          'nonetheless': 1,
          'sat': 1,
          'directors': 1,
          'project': 1,
          'turned': 1,
          'last': 1,
          'fulllength': 1,
          'feature': 1,
          'nalongside': 1,
          'appalling': 1,
          'zombie': 1,
          'schlock': 1,
          'hacks': 1,
          'like': 1,
          'lucio': 1,
          'fulci': 1,
          'simply': 1,
          'revelation': 1,
          'nin': 1,
          'day': 1,
          'considered': 1,
          'great': 1,
          'filmmaker': 1,
          'yet': 1,
          'fashioned': 1,
          'finest': 1,
          '1970s': 1,
          'n': 1,
          'connection': 1,
          '1975': 1,
          'exorcistrip': 1,
          'unexplained': 1,
          'reason': 1,
          'given': 1,
          'related': 1,
          'title': 1,
          'release': 1,
          'usa': 1,
          'australia': 1,
          'nthis': 1,
          'focuses': 1,
          'women': 1,
          'set': 1,
          'upon': 1,
          'malevolent': 1,
          'spirit': 1,
          'channels': 1,
          'young': 1,
          'opens': 1,
          'second': 1,
          'husband': 1,
          'returning': 1,
          'house': 1,
          'sea': 1,
          'scene': 1,
          'first': 1,
          'husbands': 1,
          'suicide': 1,
          'subsequent': 1,
          'trauma': 1,
          '7': 1,
          'years': 1,
          'earlier': 1,
          'nthey': 1,
          'hope': 1,
          'put': 1,
          'past': 1,
          'small': 1,
          'accidents': 1,
          'start': 1,
          'befall': 1,
          'away': 1,
          'business': 1,
          'starts': 1,
          'suspect': 1,
          'played': 1,
          'uncanny': 1,
          'ability': 1,
          '8': 1,
          'year': 1,
          'old': 1,
          'david': 1,
          'colin': 1,
          'jr': 1,
          'involved': 1,
          'strange': 1,
          'goings': 1,
          'nto': 1,
          'reveal': 1,
          'would': 1,
          'unfair': 1,
          'nsuffice': 1,
          'say': 1,
          'artfully': 1,
          'paced': 1,
          'study': 1,
          'woman': 1,
          'nervous': 1,
          'breakdown': 1,
          'offers': 1,
          'intriguing': 1,
          'plot': 1,
          'loads': 1,
          'atmosphere': 1,
          'solid': 1,
          'acting': 1,
          'though': 1,
          'dialogue': 1,
          'somewhat': 1,
          'weakened': 1,
          'dubbing': 1,
          'english': 1,
          'nbava': 1,
          'coaches': 1,
          'good': 1,
          'performance': 1,
          'wooden': 1,
          'daria': 1,
          'nicolodi': 1,
          'wife': 1,
          'famed': 1,
          'dario': 1,
          'argento': 1,
          'nher': 1,
          'character': 1,
          'invested': 1,
          'sufficient': 1,
          'depth': 1,
          'allow': 1,
          'audience': 1,
          'real': 1,
          'empathy': 1,
          'doras': 1,
          'troubled': 1,
          'soul': 1,
          'music': 1,
          'ensemble': 1,
          'libra': 1,
          'also': 1,
          'effective': 1,
          'mixing': 1,
          'oddsounding': 1,
          '70s': 1,
          'rock': 1,
          'classic': 1,
          'gothic': 1,
          'piano': 1,
          'sequences': 1,
          'nand': 1,
          'least': 1,
          'moment': 1,
          'brilliantly': 1,
          'engineered': 1,
          'guaranteed': 1,
          'lift': 1,
          'ten': 1,
          'feet': 1,
          'nyet': 1,
          'bloodletting': 1,
          'minimal': 1,
          'nlamberto': 1,
          'francesco': 1,
          'barbieris': 1,
          'script': 1,
          'concerned': 1,
          'deeper': 1,
          'psychological': 1,
          'terrors': 1,
          'themes': 1,
          'guilt': 1,
          'notion': 1,
          'sow': 1,
          'shall': 1,
          'somewhere': 1,
          'eventually': 1,
          'reap': 1,
          'nscholars': 1,
          'genre': 1,
          'take': 1,
          'stylish': 1,
          'chilling': 1,
          'essential': 1,
          'npos': 1}),
 Counter({'comic': 11,
          'film': 10,
          'nthe': 10,
          'one': 9,
          'book': 8,
          'vampire': 8,
          'vampires': 6,
          'batman': 6,
          'blade': 5,
          'films': 5,
          'robin': 5,
          'snipes': 4,
          'blood': 4,
          'crow': 4,
          'im': 4,
          'atmosphere': 4,
          'effects': 4,
          'based': 3,
          'story': 3,
          'wesley': 3,
          'books': 3,
          'director': 3,
          'nthis': 3,
          'single': 3,
          'also': 3,
          'use': 3,
          'scenes': 3,
          'cgi': 3,
          'spiderman': 2,
          'played': 2,
          'latest': 2,
          'deacon': 2,
          'frost': 2,
          'summoning': 2,
          'god': 2,
          'least': 2,
          'often': 2,
          'standards': 2,
          'list': 2,
          'would': 2,
          'come': 2,
          'medium': 2,
          'nto': 2,
          'number': 2,
          'including': 2,
          'mask': 2,
          'appropriate': 2,
          'comics': 2,
          'flash': 2,
          'uses': 2,
          'incorporates': 2,
          'show': 2,
          'audience': 2,
          'back': 2,
          'trace': 2,
          'every': 2,
          'means': 2,
          'elements': 2,
          'interesting': 2,
          'sword': 2,
          'antitheft': 2,
          'device': 2,
          'extensive': 2,
          'comes': 2,
          'fight': 2,
          'ritual': 2,
          'standing': 2,
          'murdered': 2,
          'surface': 2,
          'scene': 2,
          'either': 2,
          'special': 2,
          'nwhile': 2,
          'computer': 2,
          'generated': 2,
          'given': 2,
          'look': 2,
          'rating': 2,
          'violence': 2,
          'made': 2,
          'saving': 2,
          'without': 2,
          'much': 2,
          'relatively': 1,
          'unknown': 1,
          'comparison': 1,
          'marvel': 1,
          'tells': 1,
          'halfvampire': 1,
          'halfhuman': 1,
          'born': 1,
          'meal': 1,
          'nnow': 1,
          'swearing': 1,
          'vengeance': 1,
          'hunts': 1,
          'nhis': 1,
          'challenge': 1,
          'biggest': 1,
          'though': 1,
          'nmust': 1,
          'stop': 1,
          'stephen': 1,
          'dorff': 1,
          'turning': 1,
          'rest': 1,
          'world': 1,
          'nadmitedly': 1,
          'appreciated': 1,
          'mediums': 1,
          'viewed': 1,
          'juvenile': 1,
          'even': 1,
          'seen': 1,
          'illiterate': 1,
          'njudging': 1,
          'series': 1,
          'poorly': 1,
          'recieved': 1,
          'financial': 1,
          'critical': 1,
          'steel': 1,
          'barb': 1,
          'wire': 1,
          'city': 1,
          'angels': 1,
          'goes': 1,
          'conclusion': 1,
          'worst': 1,
          'translate': 1,
          'degree': 1,
          'agree': 1,
          'sentiment': 1,
          'nhaving': 1,
          'read': 1,
          'since': 1,
          'age': 1,
          'nine': 1,
          '21': 1,
          'right': 1,
          'count': 1,
          'good': 1,
          'movies': 1,
          'japanese': 1,
          'manga': 1,
          'hand': 1,
          '1': 1,
          '1994': 1,
          '2': 1,
          '1989': 1,
          '3': 1,
          'superman': 1,
          '4': 1,
          '5': 1,
          'n': 1,
          'men': 1,
          'black': 1,
          'extreme': 1,
          'deviation': 1,
          'original': 1,
          'nwhy': 1,
          'nfor': 1,
          'part': 1,
          'filmmakers': 1,
          'understand': 1,
          'match': 1,
          'call': 1,
          'dark': 1,
          'gothic': 1,
          'provided': 1,
          'features': 1,
          'wacky': 1,
          'superhero': 1,
          'wall': 1,
          'antics': 1,
          'casting': 1,
          'cg': 1,
          'reflect': 1,
          'nsuperman': 1,
          'nis': 1,
          'top': 1,
          'colour': 1,
          'reflects': 1,
          'nblade': 1,
          'common': 1,
          'notions': 1,
          'creating': 1,
          'stark': 1,
          'contrast': 1,
          'joel': 1,
          'schumachers': 1,
          'contrived': 1,
          'vision': 1,
          'reflecting': 1,
          'dated': 1,
          '1960s': 1,
          'television': 1,
          'nbatman': 1,
          'proved': 1,
          'failed': 1,
          'realize': 1,
          'fundamental': 1,
          'fact': 1,
          'grown': 1,
          'working': 1,
          'scathing': 1,
          'review': 1,
          'post': 1,
          'ready': 1,
          'nwhich': 1,
          'brings': 1,
          'nalthough': 1,
          'may': 1,
          'familiar': 1,
          'character': 1,
          'due': 1,
          'appearances': 1,
          'animated': 1,
          'fox': 1,
          'find': 1,
          'warmandfuzzy': 1,
          'hunter': 1,
          'depicted': 1,
          'cartoon': 1,
          'depicts': 1,
          'vicious': 1,
          'killer': 1,
          'nuses': 1,
          'disposal': 1,
          'reach': 1,
          'ends': 1,
          'end': 1,
          'results': 1,
          'pretty': 1,
          'work': 1,
          'well': 1,
          'nscreenwriter': 1,
          'david': 1,
          'goyer': 1,
          'wrote': 1,
          'lore': 1,
          'using': 1,
          'science': 1,
          'explain': 1,
          'many': 1,
          'ideas': 1,
          'dismissed': 1,
          'presented': 1,
          'karen': 1,
          'hematologist': 1,
          'portrayed': 1,
          'nbushe': 1,
          'wright': 1,
          'leads': 1,
          'inventive': 1,
          'standard': 1,
          'medical': 1,
          'treatments': 1,
          'kill': 1,
          'nadd': 1,
          'neat': 1,
          'little': 1,
          'gadgets': 1,
          'titanium': 1,
          'complete': 1,
          'premise': 1,
          'nhowever': 1,
          'works': 1,
          'best': 1,
          'action': 1,
          'nactor': 1,
          'nan': 1,
          'background': 1,
          'martial': 1,
          'arts': 1,
          'capoeira': 1,
          'brazillian': 1,
          'form': 1,
          'incorporating': 1,
          'flashy': 1,
          'kicks': 1,
          'choreographing': 1,
          'move': 1,
          'nproving': 1,
          'quick': 1,
          'cutting': 1,
          'edits': 1,
          'substitute': 1,
          'choreographed': 1,
          'sequences': 1,
          'see': 1,
          'ngood': 1,
          'example': 1,
          'dazzles': 1,
          'incredible': 1,
          'nregardless': 1,
          'far': 1,
          'perfect': 1,
          'suffers': 1,
          'major': 1,
          'plot': 1,
          'hole': 1,
          'regarding': 1,
          'requires': 1,
          'pure': 1,
          'nmarked': 1,
          'squares': 1,
          'yet': 1,
          'viciously': 1,
          'allowing': 1,
          'pass': 1,
          'later': 1,
          'shown': 1,
          'square': 1,
          'nobvious': 1,
          'continuity': 1,
          'errors': 1,
          'especially': 1,
          'takes': 1,
          'drag': 1,
          'cigarette': 1,
          'exhaling': 1,
          'next': 1,
          'frame': 1,
          'smoke': 1,
          'nmuch': 1,
          'spectacular': 1,
          'disintegration': 1,
          'intriguing': 1,
          'watch': 1,
          'imagery': 1,
          'almost': 1,
          'slapped': 1,
          'together': 1,
          'surprising': 1,
          'amount': 1,
          'time': 1,
          'released': 1,
          'release': 1,
          'date': 1,
          'pushed': 1,
          'multiple': 1,
          'times': 1,
          'nscenes': 1,
          'extremely': 1,
          'fake': 1,
          'knocking': 1,
          'believability': 1,
          'factor': 1,
          'notches': 1,
          'really': 1,
          'hard': 1,
          'impress': 1,
          'r': 1,
          'gory': 1,
          'lack': 1,
          'nrealism': 1,
          'wonder': 1,
          'got': 1,
          'realistic': 1,
          'nwatch': 1,
          'private': 1,
          'ryan': 1,
          'overuse': 1,
          'yearn': 1,
          'days': 1,
          'george': 1,
          'romero': 1,
          'makeup': 1,
          'wizard': 1,
          'rob': 1,
          'bottin': 1,
          'pioneers': 1,
          'art': 1,
          'gore': 1,
          'nstill': 1,
          'involving': 1,
          'noncgi': 1,
          'impressive': 1,
          'particularly': 1,
          'gruesome': 1,
          'tries': 1,
          'blades': 1,
          'deactivating': 1,
          'nwesley': 1,
          'grace': 1,
          'behind': 1,
          'otherwise': 1,
          'muddled': 1,
          'mess': 1,
          'talking': 1,
          'grand': 1,
          'physical': 1,
          'presence': 1,
          'leaving': 1,
          'superheroes': 1,
          'dust': 1,
          'na': 1,
          'decent': 1,
          'storyline': 1,
          'helps': 1,
          'npos': 1}),
 Counter({'brown': 17,
          'film': 14,
          'one': 13,
          'tarantino': 11,
          'jackie': 10,
          'nthe': 8,
          'performance': 7,
          'pulp': 6,
          'fiction': 6,
          'grier': 6,
          'good': 6,
          'time': 6,
          'seems': 5,
          'njackie': 5,
          'quentin': 4,
          'acting': 4,
          'well': 4,
          'gives': 4,
          'jackson': 4,
          'fonda': 4,
          'much': 4,
          'ordell': 4,
          'tell': 4,
          'side': 4,
          'nafter': 3,
          'many': 3,
          'quite': 3,
          'except': 3,
          'pam': 3,
          'really': 3,
          'name': 3,
          'writing': 3,
          'another': 3,
          'l': 3,
          'michael': 3,
          'keaton': 3,
          'forster': 3,
          'see': 3,
          'oscar': 3,
          'cant': 3,
          'ni': 3,
          'impressive': 3,
          'order': 3,
          'cops': 3,
          'nhowever': 3,
          'find': 3,
          'nthey': 3,
          'ordells': 3,
          'course': 3,
          'characters': 3,
          'role': 3,
          'even': 3,
          'giving': 2,
          'stars': 2,
          'jobs': 2,
          'made': 2,
          'hand': 2,
          'cast': 2,
          'likely': 2,
          'films': 2,
          'whose': 2,
          'result': 2,
          'entertainment': 2,
          'robert': 2,
          'de': 2,
          'niro': 2,
          'come': 2,
          'nominations': 2,
          'spoil': 2,
          'ends': 2,
          'buyers': 2,
          'money': 2,
          'agent': 2,
          'bowen': 2,
          'try': 2,
          'tucker': 2,
          'nbut': 2,
          'friends': 2,
          'nordell': 2,
          'bail': 2,
          'told': 2,
          'like': 2,
          'scheme': 2,
          'nthis': 2,
          'going': 2,
          'may': 2,
          'biggest': 2,
          'hitmen': 2,
          'slang': 2,
          'terms': 2,
          'done': 2,
          'nhis': 2,
          'nof': 2,
          'know': 2,
          'expect': 2,
          'nand': 2,
          'lot': 2,
          'perspective': 2,
          'around': 2,
          'although': 2,
          'tarantinos': 2,
          'use': 2,
          'offensive': 2,
          'back': 2,
          'understand': 2,
          'previous': 2,
          'nperhaps': 2,
          'elmore': 2,
          'leonard': 2,
          'performances': 2,
          'nher': 2,
          'didnt': 2,
          'actually': 2,
          'comes': 2,
          'small': 2,
          'nrobert': 2,
          'best': 2,
          'terrific': 2,
          'short': 2,
          'hopefully': 2,
          'knack': 1,
          'big': 1,
          'careers': 1,
          'actors': 1,
          'began': 1,
          'receiving': 1,
          'offers': 1,
          'njohn': 1,
          'travolta': 1,
          'comeback': 1,
          'todays': 1,
          'bankable': 1,
          'nbruce': 1,
          'willis': 1,
          'proved': 1,
          'chops': 1,
          'considered': 1,
          'actual': 1,
          'actor': 1,
          'boasts': 1,
          'known': 1,
          'main': 1,
          'lead': 1,
          'nmost': 1,
          'heard': 1,
          'seen': 1,
          'shes': 1,
          'never': 1,
          'breakthrough': 1,
          'first': 1,
          'roger': 1,
          'ebertwritten': 1,
          'beyond': 1,
          'valley': 1,
          'dolls': 1,
          'nthat': 1,
          'highly': 1,
          'anticipated': 1,
          'feature': 1,
          'last': 1,
          'huge': 1,
          'hit': 1,
          'mediocre': 1,
          'returns': 1,
          'household': 1,
          'directing': 1,
          'fantastic': 1,
          'ndespite': 1,
          'excellent': 1,
          'direction': 1,
          'steals': 1,
          'npam': 1,
          'stunning': 1,
          'supported': 1,
          'incredible': 1,
          'mix': 1,
          'talentsamuel': 1,
          'bridget': 1,
          'nmore': 1,
          'names': 1,
          'pool': 1,
          'ndescribing': 1,
          'difficult': 1,
          'say': 1,
          'everyone': 1,
          'else': 1,
          'tread': 1,
          'lightly': 1,
          'opens': 1,
          'shot': 1,
          'blue': 1,
          'outfit': 1,
          'walking': 1,
          'airport': 1,
          'camera': 1,
          'tracks': 1,
          'along': 1,
          'revealing': 1,
          'occupation': 1,
          'nwe': 1,
          'also': 1,
          'introduced': 1,
          'robbie': 1,
          'sells': 1,
          'illegal': 1,
          'guns': 1,
          'interested': 1,
          'nfor': 1,
          'hefty': 1,
          'price': 1,
          'nms': 1,
          'carries': 1,
          'buyer': 1,
          'keep': 1,
          'away': 1,
          'fbi': 1,
          'local': 1,
          'cop': 1,
          'catch': 1,
          'taking': 1,
          'reach': 1,
          'beaumont': 1,
          'livingston': 1,
          'chris': 1,
          'mysteriously': 1,
          'dead': 1,
          'hesitant': 1,
          'admit': 1,
          'wrongdoing': 1,
          'unknowingly': 1,
          'carrying': 1,
          'drugs': 1,
          'caught': 1,
          'sent': 1,
          'jail': 1,
          'pays': 1,
          'bond': 1,
          'max': 1,
          'cherry': 1,
          'wants': 1,
          'claims': 1,
          'said': 1,
          'nothing': 1,
          'reveals': 1,
          'fact': 1,
          'stay': 1,
          'prison': 1,
          'doesnt': 1,
          'throw': 1,
          'feds': 1,
          'track': 1,
          'planned': 1,
          'unexpected': 1,
          'occurances': 1,
          'foul': 1,
          'goal': 1,
          'nrevealing': 1,
          'would': 1,
          'fun': 1,
          'thats': 1,
          'reason': 1,
          'go': 1,
          'ntarantino': 1,
          'fascination': 1,
          'unusual': 1,
          'predicaments': 1,
          'always': 1,
          'believably': 1,
          'normally': 1,
          'cruel': 1,
          'pleasant': 1,
          'nasty': 1,
          'sort': 1,
          'way': 1,
          'talk': 1,
          'normal': 1,
          'people': 1,
          'business': 1,
          'rude': 1,
          'girlfriends': 1,
          'awkward': 1,
          'situations': 1,
          'arise': 1,
          'perhaps': 1,
          'flaw': 1,
          'slow': 1,
          'middle': 1,
          'section': 1,
          'pace': 1,
          'begins': 1,
          'drop': 1,
          'fixes': 1,
          'moving': 1,
          'onto': 1,
          'climax': 1,
          'adding': 1,
          'reservoir': 1,
          'dogsstyle': 1,
          'storytelling': 1,
          'nthings': 1,
          'persons': 1,
          'learning': 1,
          'leads': 1,
          'interesting': 1,
          'conclusion': 1,
          'decides': 1,
          'non': 1,
          'technical': 1,
          'directs': 1,
          'style': 1,
          '1994': 1,
          'isnt': 1,
          'nearly': 1,
          'original': 1,
          'story': 1,
          'jumps': 1,
          'forth': 1,
          'easy': 1,
          'needed': 1,
          'second': 1,
          'viewing': 1,
          'differentiation': 1,
          'simply': 1,
          'follow': 1,
          'especially': 1,
          'considering': 1,
          'given': 1,
          'leaps': 1,
          'screenplay': 1,
          'written': 1,
          'novel': 1,
          'rum': 1,
          'punch': 1,
          'dialogue': 1,
          'pretty': 1,
          'intelligent': 1,
          'fully': 1,
          'realized': 1,
          'cinematography': 1,
          'guillermo': 1,
          'navarro': 1,
          'worked': 1,
          'editing': 1,
          'music': 1,
          'highlight': 1,
          'bringing': 1,
          'memorable': 1,
          'songs': 1,
          '70s': 1,
          '80s': 1,
          'unforgettable': 1,
          'incredibly': 1,
          'rich': 1,
          'hidden': 1,
          'meaning': 1,
          'behind': 1,
          'every': 1,
          'actions': 1,
          'nnothing': 1,
          'person': 1,
          'real': 1,
          'treat': 1,
          'astonishing': 1,
          'poor': 1,
          'living': 1,
          'conditions': 1,
          'superceded': 1,
          'superior': 1,
          'wits': 1,
          'play': 1,
          'important': 1,
          'nwatching': 1,
          'grieg': 1,
          'could': 1,
          'mind': 1,
          'thinking': 1,
          'face': 1,
          'portrays': 1,
          'emotion': 1,
          'sad': 1,
          'happy': 1,
          'deep': 1,
          'thought': 1,
          'nbridget': 1,
          'druggie': 1,
          'couch': 1,
          'potato': 1,
          'realize': 1,
          'saw': 1,
          'final': 1,
          'credits': 1,
          'reminded': 1,
          'heather': 1,
          'grahams': 1,
          'boogie': 1,
          'nights': 1,
          'nmichael': 1,
          'across': 1,
          'nchris': 1,
          'effective': 1,
          'nsamuel': 1,
          'replaying': 1,
          'jules': 1,
          'winnfield': 1,
          'character': 1,
          'less': 1,
          'cynical': 1,
          'matter': 1,
          'njackson': 1,
          'strong': 1,
          'little': 1,
          'annoying': 1,
          'times': 1,
          'overall': 1,
          'job': 1,
          'clients': 1,
          'developed': 1,
          'nhe': 1,
          'present': 1,
          'throughout': 1,
          'holds': 1,
          'rated': 1,
          'r': 1,
          'language': 1,
          'sex': 1,
          'violence': 1,
          'drug': 1,
          'remarks': 1,
          'nas': 1,
          'piece': 1,
          'complex': 1,
          'plot': 1,
          'draw': 1,
          'viewers': 1,
          'help': 1,
          'compare': 1,
          'great': 1,
          'results': 1,
          'nwhen': 1,
          'compared': 1,
          'nits': 1,
          'worthy': 1,
          'effort': 1,
          'thing': 1,
          'discovery': 1,
          'major': 1,
          'hollywood': 1,
          'actress': 1,
          'remember': 1,
          'seeing': 1,
          'anything': 1,
          'mars': 1,
          'attacks': 1,
          'get': 1,
          'roles': 1,
          'nexpect': 1,
          'floating': 1,
          'able': 1,
          'nab': 1,
          'npos': 1}),
 Counter({'twister': 10,
          'n': 8,
          'destruction': 6,
          'tornadoes': 5,
          'bill': 5,
          'nthe': 4,
          'path': 4,
          'get': 4,
          'storm': 3,
          'nunlike': 3,
          'terror': 3,
          'sure': 3,
          'effects': 3,
          'caused': 3,
          'close': 3,
          'tornado': 3,
          'good': 3,
          'device': 3,
          'action': 3,
          'sequences': 3,
          'director': 2,
          'speed': 2,
          'earthquakes': 2,
          'precise': 2,
          'hurricanes': 2,
          'part': 2,
          'seen': 2,
          'twisters': 2,
          'comes': 2,
          'near': 2,
          'may': 2,
          'unpredictable': 2,
          'houses': 2,
          'livestock': 2,
          'anything': 2,
          'see': 2,
          'ntwister': 2,
          'group': 2,
          'chasers': 2,
          'people': 2,
          'njo': 2,
          'hunt': 2,
          'leader': 2,
          'pack': 2,
          'satellite': 2,
          'paxton': 2,
          'team': 2,
          'jo': 2,
          'days': 2,
          'implemented': 2,
          'better': 2,
          'system': 2,
          'film': 2,
          'movie': 2,
          'digital': 2,
          'well': 2,
          'sound': 2,
          'makers': 1,
          'jurassic': 1,
          'park': 1,
          'conjure': 1,
          'reviewed': 1,
          'eng': 1,
          'wahs': 1,
          'new': 1,
          'jubilee': 1,
          'cineplex': 1,
          'ang': 1,
          'mo': 1,
          'kio': 1,
          'unlike': 1,
          'fury': 1,
          'reach': 1,
          'unlimited': 1,
          'fires': 1,
          'way': 1,
          'combat': 1,
          'floods': 1,
          'sudden': 1,
          'excerpt': 1,
          'production': 1,
          'notes': 1,
          'nim': 1,
          'many': 1,
          'us': 1,
          'living': 1,
          'world': 1,
          'never': 1,
          'ni': 1,
          'one': 1,
          'devastating': 1,
          'footage': 1,
          'news': 1,
          'reports': 1,
          'tv': 1,
          'personally': 1,
          'feel': 1,
          'tornadocaused': 1,
          'saw': 1,
          'widespread': 1,
          'moves': 1,
          'fast': 1,
          'nit': 1,
          'suck': 1,
          'cars': 1,
          'etc': 1,
          'nbasically': 1,
          'firmly': 1,
          'rooted': 1,
          'ground': 1,
          'youll': 1,
          'tells': 1,
          'tale': 1,
          'nthese': 1,
          'basically': 1,
          'outoftheirmind': 1,
          'sake': 1,
          'obtaining': 1,
          'data': 1,
          'twisteroccurrences': 1,
          'risk': 1,
          'lives': 1,
          'literally': 1,
          'chasing': 1,
          'trying': 1,
          'nis': 1,
          'suddenly': 1,
          'decide': 1,
          'change': 1,
          'towards': 1,
          'helen': 1,
          'kamikazes': 1,
          'nwhile': 1,
          'gearing': 1,
          'motherofallstorms': 1,
          'predicted': 1,
          'recon': 1,
          'former': 1,
          'co': 1,
          'returns': 1,
          'settle': 1,
          'divorce': 1,
          'papers': 1,
          'napparently': 1,
          'left': 1,
          'rogueish': 1,
          'greener': 1,
          'practical': 1,
          'pastures': 1,
          'television': 1,
          'weatherman': 1,
          'nhe': 1,
          'catches': 1,
          'oldself': 1,
          'follows': 1,
          'like': 1,
          'ole': 1,
          'bringing': 1,
          'wifetobe': 1,
          'melissa': 1,
          'jamie': 1,
          'gertz': 1,
          'along': 1,
          'citybred': 1,
          'woman': 1,
          'toting': 1,
          'around': 1,
          'handphone': 1,
          'finally': 1,
          'bills': 1,
          'initial': 1,
          'idea': 1,
          'called': 1,
          'dorothy': 1,
          'measurements': 1,
          'lead': 1,
          'understanding': 1,
          'formed': 1,
          'reliable': 1,
          'earlywarning': 1,
          'problem': 1,
          'placed': 1,
          'practically': 1,
          'order': 1,
          'function': 1,
          'nto': 1,
          'add': 1,
          'current': 1,
          'challenge': 1,
          'another': 1,
          'corporationfunded': 1,
          'led': 1,
          'jonas': 1,
          'cary': 1,
          'elwes': 1,
          'similar': 1,
          'nthus': 1,
          'begins': 1,
          'race': 1,
          'jos': 1,
          'cheap': 1,
          'government': 1,
          'equipment': 1,
          'beatenup': 1,
          'vehicles': 1,
          'jonass': 1,
          'hightech': 1,
          'computers': 1,
          'linkups': 1,
          'sleek': 1,
          'black': 1,
          'allterrain': 1,
          'vans': 1,
          'nplot': 1,
          'wise': 1,
          'really': 1,
          'shout': 1,
          'predictable': 1,
          'summer': 1,
          'boxoffice': 1,
          'hit': 1,
          'nthere': 1,
          'danger': 1,
          'competition': 1,
          'jonasos': 1,
          'welloff': 1,
          'course': 1,
          'settling': 1,
          'differences': 1,
          'gives': 1,
          'human': 1,
          'substance': 1,
          'nhelen': 1,
          'rest': 1,
          'actorsactresses': 1,
          'give': 1,
          'average': 1,
          'performances': 1,
          'take': 1,
          'back': 1,
          'seat': 1,
          'main': 1,
          'thespian': 1,
          'nthanks': 1,
          'impressive': 1,
          'ilm': 1,
          'lucasfilms': 1,
          'industrial': 1,
          'light': 1,
          'magic': 1,
          'stripping': 1,
          'barns': 1,
          'lifting': 1,
          'njan': 1,
          'de': 1,
          'bont': 1,
          'proves': 1,
          'visual': 1,
          'abiility': 1,
          'thanks': 1,
          'years': 1,
          'experience': 1,
          'photography': 1,
          'films': 1,
          'nlike': 1,
          'previous': 1,
          'essentially': 1,
          'visualised': 1,
          'edited': 1,
          'naudiences': 1,
          'holding': 1,
          'tight': 1,
          'chairs': 1,
          'everytime': 1,
          'screen': 1,
          'surround': 1,
          'help': 1,
          'lot': 1,
          'stressing': 1,
          'cinema': 1,
          'must': 1,
          'least': 1,
          'support': 1,
          'fully': 1,
          'appreciate': 1,
          'definitely': 1,
          'effectdependent': 1,
          'nnow': 1,
          'id4': 1,
          'fever': 1,
          'begun': 1,
          'reside': 1,
          'getting': 1,
          'bored': 1,
          'watching': 1,
          'smith': 1,
          'whoop': 1,
          'ets': 1,
          'ass': 1,
          'umpteenth': 1,
          'time': 1,
          'bet': 1,
          '7': 1,
          'bucks': 1,
          'spent': 1,
          'nwatch': 1,
          'theatre': 1,
          'please': 1,
          'flying': 1,
          'inkpots': 1,
          'rating': 1,
          'wait': 1,
          'video': 1,
          'little': 1,
          'creaky': 1,
          'still': 1,
          'staying': 1,
          'home': 1,
          'gotcha': 1,
          'pretty': 1,
          'bring': 1,
          'friend': 1,
          'amazing': 1,
          'potent': 1,
          'stuff': 1,
          'perfection': 1,
          'nsee': 1,
          'twice': 1,
          'npos': 1}),
 Counter({'carter': 14,
          'film': 13,
          'hurricane': 13,
          'one': 8,
          'washington': 8,
          'nthe': 8,
          'good': 8,
          'work': 6,
          'scene': 6,
          'rubin': 5,
          'carters': 5,
          'prison': 5,
          'every': 5,
          'real': 5,
          'people': 4,
          'could': 4,
          'convicted': 4,
          'boxer': 4,
          'canadians': 4,
          'efforts': 4,
          'much': 4,
          'entirely': 3,
          'person': 3,
          'would': 3,
          'jewison': 3,
          'denzel': 3,
          'group': 3,
          'racist': 3,
          'cop': 3,
          'life': 3,
          'feels': 3,
          'make': 3,
          'actor': 3,
          'well': 3,
          'time': 3,
          'look': 3,
          'wanted': 3,
          'actors': 2,
          'performance': 2,
          'rather': 2,
          'movie': 2,
          'something': 2,
          'nwhen': 2,
          'comes': 2,
          'along': 2,
          'put': 2,
          'possible': 2,
          'carry': 2,
          'nbut': 2,
          'case': 2,
          'director': 2,
          'though': 2,
          'reason': 2,
          'works': 2,
          'nwashington': 2,
          'plays': 2,
          'never': 2,
          'remained': 2,
          'jail': 2,
          'second': 2,
          'trial': 2,
          'eventually': 2,
          'ruled': 2,
          'dan': 2,
          'multiple': 2,
          'lesra': 2,
          'shannon': 2,
          'young': 2,
          'canadian': 2,
          'book': 2,
          'round': 2,
          'n': 2,
          'nhe': 2,
          'nits': 2,
          'accurate': 2,
          'say': 2,
          'character': 2,
          'far': 2,
          'hope': 2,
          'masterful': 2,
          'audience': 2,
          'fight': 2,
          'nhis': 2,
          'job': 2,
          'drawn': 2,
          'nicely': 2,
          'njewison': 2,
          'boxing': 2,
          'clear': 2,
          'get': 2,
          'pretty': 2,
          'game': 2,
          'showing': 2,
          'films': 2,
          'gets': 2,
          'route': 2,
          'example': 2,
          'ncarter': 2,
          'everyone': 2,
          'bad': 2,
          'commune': 2,
          'takes': 2,
          'ni': 2,
          'hes': 2,
          'truth': 2,
          'really': 2,
          'giardello': 2,
          'times': 1,
          'success': 1,
          'particular': 1,
          'depends': 1,
          'effort': 1,
          'noften': 1,
          'single': 1,
          'turn': 1,
          'might': 1,
          'mediocre': 1,
          'worthwhile': 1,
          'usually': 1,
          'try': 1,
          'think': 1,
          'many': 1,
          'way': 1,
          'entire': 1,
          'project': 1,
          'shoulders': 1,
          'sometimes': 1,
          'simply': 1,
          'explanation': 1,
          'nthis': 1,
          'biopic': 1,
          'falsely': 1,
          'normally': 1,
          'called': 1,
          'norman': 1,
          'jewisons': 1,
          'per': 1,
          'tradition': 1,
          'referring': 1,
          'belonging': 1,
          'decent': 1,
          'claim': 1,
          'ownership': 1,
          'name': 1,
          '1967': 1,
          'latenight': 1,
          'shooting': 1,
          'bar': 1,
          'njailed': 1,
          '20': 1,
          'years': 1,
          'maintained': 1,
          'committed': 1,
          'crimes': 1,
          'countless': 1,
          'appeals': 1,
          'situation': 1,
          'changed': 1,
          'moved': 1,
          'worked': 1,
          'freeing': 1,
          'nthrough': 1,
          'lawyers': 1,
          'freed': 1,
          'heard': 1,
          'federal': 1,
          'court': 1,
          'judge': 1,
          'unfairly': 1,
          'details': 1,
          'childhood': 1,
          'hedaya': 1,
          'finally': 1,
          'got': 1,
          'became': 1,
          'rising': 1,
          'star': 1,
          'middleweight': 1,
          'pro': 1,
          'seemingly': 1,
          'career': 1,
          'track': 1,
          'police': 1,
          'framed': 1,
          'homicide': 1,
          'ndespite': 1,
          'political': 1,
          'activists': 1,
          'celebrities': 1,
          'imprisoned': 1,
          'nflash': 1,
          'forward': 1,
          '1983': 1,
          'vicellous': 1,
          'reon': 1,
          'africanamerican': 1,
          'boy': 1,
          'living': 1,
          'tutors': 1,
          'reads': 1,
          'wrote': 1,
          'entitled': 1,
          'sixteenth': 1,
          'opens': 1,
          'lesras': 1,
          'eyes': 1,
          'injustice': 1,
          'vows': 1,
          'help': 1,
          'free': 1,
          'incarcerated': 1,
          'nlesra': 1,
          'convinces': 1,
          'friends': 1,
          'deborah': 1,
          'unger': 1,
          'liev': 1,
          'schreiber': 1,
          'john': 1,
          'hannah': 1,
          'towards': 1,
          'goal': 1,
          'leans': 1,
          'must': 1,
          'virtually': 1,
          'sheer': 1,
          'force': 1,
          'brilliantly': 1,
          'probably': 1,
          'embody': 1,
          'stronger': 1,
          'nobler': 1,
          'nit': 1,
          'perhaps': 1,
          'embodies': 1,
          'cartera': 1,
          'fictional': 1,
          'personality': 1,
          'invented': 1,
          'solely': 1,
          'throws': 1,
          'moment': 1,
          'refusing': 1,
          'keep': 1,
          'arms': 1,
          'length': 1,
          'nwe': 1,
          'feel': 1,
          'everything': 1,
          'humiliation': 1,
          'return': 1,
          'fighting': 1,
          'hard': 1,
          'pain': 1,
          'order': 1,
          'wife': 1,
          'give': 1,
          'utter': 1,
          'despair': 1,
          'coming': 1,
          'conclusion': 1,
          'lost': 1,
          'nwashingtons': 1,
          'weight': 1,
          'emotional': 1,
          'depth': 1,
          'doesnt': 1,
          'merely': 1,
          'play': 1,
          'angry': 1,
          'happy': 1,
          'sad': 1,
          'deepest': 1,
          'level': 1,
          'half': 1,
          'realized': 1,
          'watching': 1,
          'nearly': 1,
          'affecting': 1,
          'hands': 1,
          'another': 1,
          'nnorman': 1,
          'directs': 1,
          'reasonably': 1,
          'pacing': 1,
          'shot': 1,
          'selection': 1,
          'moves': 1,
          'quickly': 1,
          'necessary': 1,
          'narrative': 1,
          'galloping': 1,
          'handles': 1,
          'flashbacks': 1,
          'always': 1,
          'aware': 1,
          'place': 1,
          'nothing': 1,
          'terribly': 1,
          'confusing': 1,
          'scenes': 1,
          'constructed': 1,
          'inspiration': 1,
          'raging': 1,
          'bull': 1,
          'inside': 1,
          'action': 1,
          'believable': 1,
          'sports': 1,
          'footage': 1,
          'puts': 1,
          'together': 1,
          'particularly': 1,
          'nice': 1,
          'utilizing': 1,
          'cool': 1,
          'trick': 1,
          'sent': 1,
          'solitary': 1,
          'confinement': 1,
          '90': 1,
          'days': 1,
          'refuses': 1,
          'wear': 1,
          'uniform': 1,
          'assisted': 1,
          'wonderful': 1,
          'acting': 1,
          'shows': 1,
          'gradually': 1,
          'starts': 1,
          'lose': 1,
          'mind': 1,
          'constant': 1,
          'solitude': 1,
          'three': 1,
          'arguing': 1,
          'cell': 1,
          'njewisons': 1,
          'best': 1,
          'achievement': 1,
          'succeeding': 1,
          'becomes': 1,
          'embittered': 1,
          'man': 1,
          'hardknock': 1,
          'able': 1,
          'break': 1,
          'bitterness': 1,
          'learn': 1,
          'trust': 1,
          'nsadly': 1,
          'chief': 1,
          'failures': 1,
          'lie': 1,
          'screenplay': 1,
          'goodbutnotgreat': 1,
          'pike': 1,
          'winter': 1,
          'nthere': 1,
          'interest': 1,
          'viewer': 1,
          'seems': 1,
          'chance': 1,
          'take': 1,
          'clich': 1,
          'ntake': 1,
          'supporting': 1,
          'characters': 1,
          'either': 1,
          'evil': 1,
          'played': 1,
          'deserves': 1,
          'credit': 1,
          'else': 1,
          'stereotype': 1,
          'cops': 1,
          'spend': 1,
          'dolefully': 1,
          'grinning': 1,
          'loveydovey': 1,
          'despite': 1,
          'failure': 1,
          'especially': 1,
          'hedayas': 1,
          'melts': 1,
          'shadows': 1,
          'glowers': 1,
          'black': 1,
          'enters': 1,
          'room': 1,
          'nmuch': 1,
          'dialogue': 1,
          'hokey': 1,
          'hate': 1,
          'nloves': 1,
          'gon': 1,
          'na': 1,
          'bust': 1,
          'big': 1,
          'courtroom': 1,
          'climax': 1,
          'impassioned': 1,
          'speech': 1,
          'lifted': 1,
          'madefortv': 1,
          'lifetime': 1,
          'special': 1,
          'cast': 1,
          'subject': 1,
          'matter': 1,
          'interesting': 1,
          'script': 1,
          'safer': 1,
          'slightly': 1,
          'boring': 1,
          'often': 1,
          'hold': 1,
          'grudge': 1,
          'pig': 1,
          'evidence': 1,
          'faults': 1,
          'virtues': 1,
          'instead': 1,
          'bunch': 1,
          'saintly': 1,
          'crusaders': 1,
          'looking': 1,
          'justice': 1,
          'nin': 1,
          'short': 1,
          'see': 1,
          'less': 1,
          'distorted': 1,
          'lens': 1,
          'ncriticism': 1,
          'levied': 1,
          'liberties': 1,
          'happened': 1,
          'deserved': 1,
          'nfor': 1,
          'gives': 1,
          'us': 1,
          'pummeling': 1,
          'defending': 1,
          'champ': 1,
          'joey': 1,
          'screwed': 1,
          'judges': 1,
          'winner': 1,
          'nmost': 1,
          'accounts': 1,
          'however': 1,
          'losing': 1,
          'fairly': 1,
          'nfurthermore': 1,
          'criminal': 1,
          'past': 1,
          'conveniently': 1,
          'left': 1,
          'explained': 1,
          'nof': 1,
          'course': 1,
          'mainly': 1,
          'fable': 1,
          'digressions': 1,
          'excused': 1,
          'least': 1,
          'partially': 1,
          'even': 1,
          'dismissing': 1,
          'issues': 1,
          'dont': 1,
          'remove': 1,
          'fact': 1,
          'highly': 1,
          'flawed': 1,
          'nonly': 1,
          'made': 1,
          'schmaltzy': 1,
          'predictable': 1,
          'picture': 1,
          'like': 1,
          'thing': 1,
          'quoted': 1,
          'saying': 1,
          'making': 1,
          'makes': 1,
          'ndenzel': 1,
          'washingtons': 1,
          'nsounds': 1,
          'npos': 1}),
 Counter({'film': 12,
          'ellie': 11,
          'nthe': 11,
          'first': 8,
          'science': 8,
          'machine': 8,
          'religious': 7,
          'faith': 6,
          'real': 6,
          'even': 5,
          'signal': 4,
          'message': 4,
          'one': 4,
          'person': 4,
          'like': 4,
          'place': 4,
          'take': 4,
          'form': 4,
          'character': 4,
          'contact': 3,
          'radio': 3,
          'project': 3,
          'nher': 3,
          'research': 3,
          'david': 3,
          'drumlin': 3,
          'nin': 3,
          'appears': 3,
          'gets': 3,
          'n': 3,
          'right': 3,
          'interest': 3,
          'nellie': 3,
          'father': 3,
          'say': 3,
          'know': 3,
          'nothing': 3,
          'use': 3,
          'end': 3,
          'dealing': 3,
          'religion': 3,
          'never': 3,
          'problem': 3,
          'ni': 3,
          'nalso': 3,
          'president': 3,
          'would': 3,
          'nit': 2,
          'life': 2,
          'named': 2,
          'arroway': 2,
          'meet': 2,
          'part': 2,
          'search': 2,
          'killed': 2,
          'however': 2,
          'pure': 2,
          'nshe': 2,
          'nhadden': 2,
          'nthen': 2,
          'sitting': 2,
          'large': 2,
          'array': 2,
          'another': 2,
          'aliens': 2,
          'home': 2,
          'world': 2,
          'big': 2,
          'question': 2,
          'ride': 2,
          'thing': 2,
          'rather': 2,
          'professes': 2,
          'ndrumlin': 2,
          'god': 2,
          'second': 2,
          'lot': 2,
          'gone': 2,
          'hours': 2,
          'story': 2,
          'although': 2,
          'dont': 2,
          'static': 2,
          'portrayed': 2,
          'best': 2,
          'interesting': 2,
          'figures': 2,
          'movie': 2,
          'love': 2,
          'obviously': 2,
          'palmer': 2,
          'joss': 2,
          'presentation': 2,
          'since': 2,
          'nthis': 2,
          'level': 2,
          'really': 2,
          'actual': 2,
          'issues': 2,
          'pretty': 2,
          'people': 2,
          'voice': 2,
          'supposed': 2,
          'atheist': 2,
          'send': 2,
          'last': 2,
          'want': 2,
          'shouldnt': 2,
          'evidence': 2,
          'using': 2,
          'nobly': 1,
          'intentioned': 1,
          'ultimately': 1,
          'unsatisfying': 1,
          'adaptation': 1,
          'carl': 1,
          'sagans': 1,
          'novel': 1,
          'details': 1,
          'circumstances': 1,
          'surrounding': 1,
          'clear': 1,
          'sign': 1,
          'intelligent': 1,
          'outer': 1,
          'space': 1,
          'effects': 1,
          'young': 1,
          'idealistic': 1,
          'astronomer': 1,
          'jodie': 1,
          'foster': 1,
          'nwe': 1,
          'giant': 1,
          'telescope': 1,
          'puerto': 1,
          'rico': 1,
          'seti': 1,
          'extraterrestrial': 1,
          'intelligence': 1,
          'quickly': 1,
          'highly': 1,
          'political': 1,
          'tom': 1,
          'skerrit': 1,
          'disdains': 1,
          'favor': 1,
          'commercial': 1,
          'applications': 1,
          'goes': 1,
          'private': 1,
          'funding': 1,
          'turned': 1,
          'every': 1,
          'step': 1,
          'pitches': 1,
          'corporation': 1,
          'run': 1,
          'mysterious': 1,
          'r': 1,
          'john': 1,
          'hurt': 1,
          'money': 1,
          'finally': 1,
          'dry': 1,
          'desert': 1,
          'near': 1,
          'new': 1,
          'mexico': 1,
          'hears': 1,
          'headphones': 1,
          'powerful': 1,
          'pulsing': 1,
          'movies': 1,
          'exciting': 1,
          'believable': 1,
          'sequence': 1,
          'coworkers': 1,
          'determine': 1,
          'coming': 1,
          'star': 1,
          'vega': 1,
          'nat': 1,
          'sequences': 1,
          'prime': 1,
          'numbers': 1,
          'turns': 1,
          'tv': 1,
          'berlin': 1,
          'olympics': 1,
          'bounced': 1,
          'back': 1,
          'earth': 1,
          '50': 1,
          'years': 1,
          'nfurther': 1,
          'decoding': 1,
          'haddens': 1,
          'help': 1,
          'reveals': 1,
          'layer': 1,
          'containing': 1,
          'detailed': 1,
          'plans': 1,
          'massive': 1,
          'complex': 1,
          'transport': 1,
          'allow': 1,
          'travel': 1,
          'nof': 1,
          'course': 1,
          'becomes': 1,
          'whos': 1,
          'gon': 1,
          'na': 1,
          'pay': 1,
          'nto': 1,
          'boil': 1,
          'denied': 1,
          'seat': 1,
          'bluntly': 1,
          'acknowledges': 1,
          'atheism': 1,
          'go': 1,
          'insincerely': 1,
          'deep': 1,
          'destroyed': 1,
          'fanatics': 1,
          'bomb': 1,
          'launch': 1,
          'platform': 1,
          'apparently': 1,
          'keep': 1,
          'godless': 1,
          'talking': 1,
          'something': 1,
          'hadden': 1,
          'reappears': 1,
          'startling': 1,
          'news': 1,
          'nhe': 1,
          'secretly': 1,
          'constructed': 1,
          'coast': 1,
          'japan': 1,
          'reserved': 1,
          'taken': 1,
          'paternal': 1,
          'boards': 1,
          'transported': 1,
          'kind': 1,
          'wormhole': 1,
          'dreamlike': 1,
          'looks': 1,
          'waikiki': 1,
          'beach': 1,
          'built': 1,
          'hotels': 1,
          'meets': 1,
          'late': 1,
          'morse': 1,
          'nwhen': 1,
          'returns': 1,
          'believes': 1,
          'though': 1,
          'remembers': 1,
          '18': 1,
          'officially': 1,
          'discredited': 1,
          'believed': 1,
          'segment': 1,
          'public': 1,
          'computer': 1,
          'records': 1,
          'trip': 1,
          'contain': 1,
          'neighteen': 1,
          'worth': 1,
          'nthere': 1,
          'highlight': 1,
          'points': 1,
          'wellrounded': 1,
          'actresses': 1,
          'currently': 1,
          'working': 1,
          'nneither': 1,
          'performance': 1,
          'depth': 1,
          'clarice': 1,
          'starling': 1,
          'silence': 1,
          'lambs': 1,
          'thats': 1,
          'tough': 1,
          'standard': 1,
          'woman': 1,
          'defined': 1,
          'strange': 1,
          'idealized': 1,
          'dad': 1,
          'daughter': 1,
          'unconditionally': 1,
          'comes': 1,
          'across': 1,
          'distant': 1,
          'stepfather': 1,
          'irritating': 1,
          'teenager': 1,
          'wants': 1,
          'toys': 1,
          'get': 1,
          'trouble': 1,
          'affection': 1,
          'seems': 1,
          'see': 1,
          'creation': 1,
          'favorite': 1,
          'piece': 1,
          'chess': 1,
          'board': 1,
          'neven': 1,
          'matthew': 1,
          'mcconaughey': 1,
          'ellies': 1,
          'takes': 1,
          'paternalistic': 1,
          'seeing': 1,
          'misguided': 1,
          'needs': 1,
          'protection': 1,
          'impulses': 1,
          'technically': 1,
          'impressive': 1,
          'especially': 1,
          'scenes': 1,
          'received': 1,
          'destruction': 1,
          'andromeda': 1,
          'strain': 1,
          'falls': 1,
          'apart': 1,
          'central': 1,
          'theme': 1,
          'dichotomy': 1,
          'debate': 1,
          'boils': 1,
          'simplistic': 1,
          'touches': 1,
          'involved': 1,
          'presents': 1,
          'well': 1,
          'stems': 1,
          'nreligious': 1,
          'presented': 1,
          'shallow': 1,
          'caricatures': 1,
          'nrob': 1,
          'lowe': 1,
          'plays': 1,
          'ralph': 1,
          'reed': 1,
          'clone': 1,
          'richard': 1,
          'rank': 1,
          'subtle': 1,
          'guys': 1,
          'nanother': 1,
          'figure': 1,
          'fanatic': 1,
          'blows': 1,
          'jake': 1,
          'busey': 1,
          'fleshedout': 1,
          'minister': 1,
          'sort': 1,
          'left': 1,
          'vague': 1,
          'cant': 1,
          'certain': 1,
          'christian': 1,
          'nall': 1,
          'dropped': 1,
          'seminary': 1,
          'qualms': 1,
          'premarital': 1,
          'sex': 1,
          'drops': 1,
          'ball': 1,
          'assert': 1,
          'things': 1,
          'scientists': 1,
          'must': 1,
          'day': 1,
          'age': 1,
          'theory': 1,
          'evolution': 1,
          'denounced': 1,
          'doctrine': 1,
          'exactly': 1,
          'wrong': 1,
          'scientist': 1,
          'abandon': 1,
          'principle': 1,
          'scientific': 1,
          'skepticism': 1,
          'nwhat': 1,
          'said': 1,
          'believe': 1,
          'nnot': 1,
          'without': 1,
          'happened': 1,
          'word': 1,
          'alone': 1,
          'nthat': 1,
          'speaking': 1,
          'nhis': 1,
          'attitudes': 1,
          'toward': 1,
          'seem': 1,
          'position': 1,
          'profession': 1,
          'selection': 1,
          'committee': 1,
          'nakedly': 1,
          'transparently': 1,
          'insincere': 1,
          'pack': 1,
          'idiots': 1,
          'fallen': 1,
          'personalities': 1,
          'various': 1,
          'roles': 1,
          'media': 1,
          'bernard': 1,
          'shaw': 1,
          'jay': 1,
          'leno': 1,
          'arent': 1,
          'bad': 1,
          'much': 1,
          'participation': 1,
          'voluntary': 1,
          'bill': 1,
          'clinton': 1,
          'give': 1,
          'anyone': 1,
          'pause': 1,
          'nfirst': 1,
          'lifting': 1,
          'image': 1,
          'head': 1,
          'state': 1,
          'inserting': 1,
          'fictional': 1,
          'line': 1,
          'thus': 1,
          'words': 1,
          'outside': 1,
          'context': 1,
          'spoken': 1,
          'plain': 1,
          'creepy': 1,
          'places': 1,
          '1993': 1,
          '2001': 1,
          'forever': 1,
          'dating': 1,
          'npeople': 1,
          'watching': 1,
          'future': 1,
          'hey': 1,
          'took': 1,
          'clintons': 1,
          'term': 1,
          'bit': 1,
          'unreality': 1,
          'jar': 1,
          'suspension': 1,
          'disbelief': 1,
          'technology': 1,
          'advanced': 1,
          'decade': 1,
          'next': 1,
          'century': 1,
          'nbetter': 1,
          'fictitious': 1,
          'played': 1,
          'actor': 1,
          'raise': 1,
          'develops': 1,
          'satisfying': 1,
          'way': 1,
          'nif': 1,
          'picking': 1,
          'emissary': 1,
          'alien': 1,
          'culture': 1,
          'automatically': 1,
          'disqualified': 1,
          'ninety': 1,
          'percent': 1,
          'population': 1,
          'belief': 1,
          'least': 1,
          'supernatural': 1,
          'creator': 1,
          'npersonally': 1,
          'hope': 1,
          'basically': 1,
          'opinion': 1,
          'ideology': 1,
          'ideological': 1,
          'test': 1,
          'import': 1,
          'task': 1,
          'npos': 1}),
 Counter({'world': 10,
          'existenz': 9,
          'game': 8,
          'reality': 7,
          'film': 7,
          'nit': 5,
          'virtual': 5,
          'place': 5,
          'dark': 5,
          'life': 5,
          'one': 4,
          'many': 4,
          'films': 4,
          'nthe': 4,
          'real': 4,
          'characters': 4,
          'different': 4,
          'n': 4,
          'cronenberg': 3,
          'future': 3,
          'events': 3,
          'plot': 3,
          'complete': 3,
          'matrix': 3,
          'unreal': 3,
          'worth': 3,
          'another': 2,
          'strange': 2,
          'science': 2,
          'fiction': 2,
          'last': 2,
          'issues': 2,
          'play': 2,
          'important': 2,
          'story': 2,
          'games': 2,
          'jennifer': 2,
          'jason': 2,
          'leigh': 2,
          'leading': 2,
          'designer': 2,
          'organic': 2,
          'ted': 2,
          'doesnt': 2,
          'exist': 2,
          'players': 2,
          'forced': 2,
          'impossible': 2,
          'premise': 2,
          'city': 2,
          'entertaining': 2,
          'experience': 2,
          'frightening': 2,
          'possibilities': 2,
          'never': 2,
          'nand': 2,
          'seemed': 2,
          'failure': 2,
          'dialogue': 2,
          'silly': 2,
          'performances': 2,
          'scenes': 2,
          'fails': 2,
          'character': 2,
          'rather': 2,
          'create': 2,
          'sacrificing': 2,
          'mutated': 2,
          'creatures': 2,
          'even': 2,
          'like': 2,
          'blood': 2,
          'see': 2,
          'time': 2,
          'everyday': 2,
          'interesting': 2,
          'david': 1,
          'presents': 1,
          'us': 1,
          'tale': 1,
          'crawling': 1,
          'impressively': 1,
          'twisted': 1,
          'head': 1,
          'released': 1,
          'year': 1,
          'millenium': 1,
          'tackles': 1,
          'role': 1,
          'unfolds': 1,
          'near': 1,
          'line': 1,
          'blurs': 1,
          'unfriendly': 1,
          'scared': 1,
          'inhabitants': 1,
          'hiding': 1,
          'fantasy': 1,
          'escape': 1,
          'uncertainty': 1,
          'nallegra': 1,
          'geller': 1,
          'testing': 1,
          'new': 1,
          'focus': 1,
          'group': 1,
          'nas': 1,
          'begin': 1,
          'attacked': 1,
          'fanatic': 1,
          'assassin': 1,
          'employing': 1,
          'bizarre': 1,
          'gun': 1,
          'nshe': 1,
          'flees': 1,
          'young': 1,
          'marketing': 1,
          'trainee': 1,
          'pikul': 1,
          'jude': 1,
          'law': 1,
          'suddenly': 1,
          'assigned': 1,
          'bodyguard': 1,
          'nunfortunately': 1,
          'pod': 1,
          'gaming': 1,
          'device': 1,
          'contains': 1,
          'copy': 1,
          'program': 1,
          'damaged': 1,
          'nto': 1,
          'inspect': 1,
          'talks': 1,
          'accepting': 1,
          'gameport': 1,
          'body': 1,
          'resulting': 1,
          'lead': 1,
          'pair': 1,
          'adventure': 1,
          'individuality': 1,
          'perform': 1,
          'unknown': 1,
          'nhere': 1,
          'actions': 1,
          'determine': 1,
          'either': 1,
          'perspective': 1,
          'ni': 1,
          'dont': 1,
          'intend': 1,
          'reveal': 1,
          'structured': 1,
          'computer': 1,
          'tasks': 1,
          'must': 1,
          'win': 1,
          'nreleased': 1,
          'similarities': 1,
          'parallels': 1,
          'connect': 1,
          'nhowever': 1,
          'moving': 1,
          'direction': 1,
          'na': 1,
          'combination': 1,
          'dazzling': 1,
          'special': 1,
          'effects': 1,
          'brilliantly': 1,
          'coordinated': 1,
          'action': 1,
          'sequences': 1,
          'intelligent': 1,
          'sophisticated': 1,
          'made': 1,
          'rare': 1,
          'ideas': 1,
          'hidden': 1,
          'sparkling': 1,
          'facade': 1,
          'completely': 1,
          'atmosphere': 1,
          'resembling': 1,
          'darker': 1,
          'serious': 1,
          'less': 1,
          'opportunities': 1,
          'potential': 1,
          'enormous': 1,
          'quite': 1,
          'explored': 1,
          'nafter': 1,
          'engaging': 1,
          'beginning': 1,
          'starts': 1,
          'falter': 1,
          'nwhile': 1,
          'watching': 1,
          'left': 1,
          'theatre': 1,
          'first': 1,
          'hour': 1,
          'indeed': 1,
          'actors': 1,
          'unfinished': 1,
          'relationships': 1,
          'unexplained': 1,
          'followed': 1,
          'nbut': 1,
          'fifteen': 1,
          'minutes': 1,
          'lifted': 1,
          'level': 1,
          'explaining': 1,
          'past': 1,
          'within': 1,
          'jet': 1,
          'several': 1,
          'nprobably': 1,
          'best': 1,
          'written': 1,
          'would': 1,
          'spend': 1,
          'rest': 1,
          'face': 1,
          'nthis': 1,
          'great': 1,
          'possibility': 1,
          'magnificent': 1,
          'stretches': 1,
          'cronenbergs': 1,
          'script': 1,
          'limits': 1,
          'advantages': 1,
          'comparison': 1,
          'shown': 1,
          'nexistenz': 1,
          'might': 1,
          'dream': 1,
          'fantasies': 1,
          'nits': 1,
          'cold': 1,
          'interrelate': 1,
          'eat': 1,
          'murder': 1,
          'look': 1,
          'thinking': 1,
          'ndavid': 1,
          'creator': 1,
          'fly': 1,
          'videodrome': 1,
          'dead': 1,
          'zone': 1,
          'hard': 1,
          'guess': 1,
          'violent': 1,
          'gory': 1,
          'nbesides': 1,
          'regular': 1,
          'murders': 1,
          'innocent': 1,
          'people': 1,
          'audiences': 1,
          'enjoy': 1,
          'autopsy': 1,
          'twoheaded': 1,
          'amfibium': 1,
          'nscenes': 1,
          'become': 1,
          'trademark': 1,
          'seems': 1,
          'cant': 1,
          'make': 1,
          'without': 1,
          'flowing': 1,
          'foul': 1,
          'way': 1,
          'crucial': 1,
          'cronenbergto': 1,
          'beautiful': 1,
          'space': 1,
          'problems': 1,
          'blooming': 1,
          'blossoms': 1,
          'green': 1,
          'forests': 1,
          'clear': 1,
          'waters': 1,
          'really': 1,
          'nbecause': 1,
          'lack': 1,
          'three': 1,
          'dimensionality': 1,
          'looses': 1,
          'stays': 1,
          'afloat': 1,
          'amusing': 1,
          'especially': 1,
          'willem': 1,
          'dafoe': 1,
          'thought': 1,
          'depicted': 1,
          'ways': 1,
          'throughout': 1,
          'movie': 1,
          'nduring': 1,
          'audience': 1,
          'confused': 1,
          'detached': 1,
          'existence': 1,
          'longer': 1,
          'able': 1,
          'difference': 1,
          'alternative': 1,
          'created': 1,
          'despite': 1,
          'disturbing': 1,
          'thoughts': 1,
          'ends': 1,
          'light': 1,
          'end': 1,
          'tunnel': 1,
          'ending': 1,
          'gore': 1,
          'madness': 1,
          'forecast': 1,
          'tomorrow': 1,
          'npos': 1}),
 Counter({'nthe': 6,
          'makes': 5,
          'film': 5,
          'mystery': 4,
          'killer': 4,
          'much': 4,
          'mills': 4,
          'even': 4,
          'sommerset': 4,
          'seven': 3,
          'intriguing': 3,
          'quite': 3,
          'dont': 3,
          'story': 3,
          'way': 3,
          'nits': 2,
          'catch': 2,
          'man': 2,
          'ni': 2,
          'go': 2,
          'give': 2,
          'good': 2,
          'seem': 2,
          'detective': 2,
          'nthere': 2,
          'nthis': 2,
          'mood': 2,
          'tense': 2,
          'place': 2,
          'city': 2,
          'evil': 2,
          'scary': 2,
          'many': 2,
          'words': 2,
          'really': 2,
          'suspense': 2,
          'detectives': 2,
          'films': 2,
          'suspect': 2,
          'doe': 2,
          'terrific': 2,
          'scene': 2,
          'surprising': 2,
          'comes': 2,
          'justice': 2,
          'one': 1,
          'best': 1,
          'movies': 1,
          'ive': 1,
          'ever': 1,
          'seen': 1,
          'extremely': 1,
          'suspenseful': 1,
          'also': 1,
          'fun': 1,
          'serial': 1,
          'care': 1,
          'making': 1,
          'pay': 1,
          'hope': 1,
          'copsonthetrailofserialkiller': 1,
          'nsomeone': 1,
          'murdering': 1,
          'people': 1,
          'offenders': 1,
          'deadly': 1,
          'sins': 1,
          'na': 1,
          'fat': 1,
          'gluttony': 1,
          'forced': 1,
          'eat': 1,
          'death': 1,
          'lawyer': 1,
          'greed': 1,
          'slaughtered': 1,
          'rich': 1,
          'possessions': 1,
          'could': 1,
          'revealing': 1,
          'would': 1,
          'away': 1,
          'entirely': 1,
          'nwhat': 1,
          'unique': 1,
          'characterization': 1,
          'guys': 1,
          'unseen': 1,
          'villain': 1,
          'vile': 1,
          'nbrad': 1,
          'pitt': 1,
          'stars': 1,
          'excellent': 1,
          'david': 1,
          'cocky': 1,
          'rookie': 1,
          'nhowever': 1,
          'morgan': 1,
          'freeman': 1,
          'better': 1,
          'william': 1,
          'wise': 1,
          'veteran': 1,
          'verge': 1,
          'retirement': 1,
          'doesnt': 1,
          'get': 1,
          'killed': 1,
          'end': 1,
          'great': 1,
          'sense': 1,
          'camaraderie': 1,
          'often': 1,
          'provides': 1,
          'breath': 1,
          'comic': 1,
          'relief': 1,
          'impressive': 1,
          'fact': 1,
          'downplayed': 1,
          'well': 1,
          'let': 1,
          'alone': 1,
          'accomplishment': 1,
          'setting': 1,
          'takes': 1,
          'present': 1,
          'day': 1,
          'new': 1,
          'york': 1,
          'art': 1,
          'direction': 1,
          'able': 1,
          'feeling': 1,
          'believe': 1,
          'production': 1,
          'design': 1,
          'superb': 1,
          'spirit': 1,
          'batman': 1,
          'crow': 1,
          'embodies': 1,
          'gothic': 1,
          'fade': 1,
          'along': 1,
          'freaky': 1,
          'nine': 1,
          'inch': 1,
          'nails': 1,
          'music': 1,
          'add': 1,
          'lot': 1,
          'subconscious': 1,
          'level': 1,
          'credits': 1,
          'killers': 1,
          'victims': 1,
          'connections': 1,
          'thus': 1,
          'solve': 1,
          'case': 1,
          'nthey': 1,
          'wait': 1,
          'next': 1,
          'murder': 1,
          'occur': 1,
          'tremendous': 1,
          'nwe': 1,
          'become': 1,
          'worried': 1,
          'thick': 1,
          'atmosphere': 1,
          'unknown': 1,
          'nnot': 1,
          'interesting': 1,
          'screenplay': 1,
          'problem': 1,
          'lead': 1,
          'nlets': 1,
          'say': 1,
          'seems': 1,
          'little': 1,
          'movie': 1,
          'convenient': 1,
          'nwhen': 1,
          'led': 1,
          'name': 1,
          'john': 1,
          'chase': 1,
          'ensues': 1,
          'typical': 1,
          'thrilling': 1,
          'element': 1,
          'works': 1,
          'perfectly': 1,
          'process': 1,
          'nif': 1,
          'anything': 1,
          'epitome': 1,
          'twist': 1,
          'endings': 1,
          'tell': 1,
          'finally': 1,
          'criminal': 1,
          'happens': 1,
          'philosophy': 1,
          'though': 1,
          'hes': 1,
          'obviously': 1,
          'insane': 1,
          'charisma': 1,
          'points': 1,
          'nwhats': 1,
          'last': 1,
          'scenes': 1,
          'climax': 1,
          'resolution': 1,
          'question': 1,
          'n': 1,
          'crime': 1,
          'within': 1,
          'njohn': 1,
          'felt': 1,
          'society': 1,
          'favor': 1,
          'ridding': 1,
          'scum': 1,
          'nbut': 1,
          'justified': 1,
          'must': 1,
          'never': 1,
          'tempted': 1,
          'twisted': 1,
          'ideals': 1,
          'npos': 1}),
 Counter({'film': 23,
          'allen': 14,
          'one': 10,
          'really': 10,
          'woody': 9,
          'great': 9,
          'nthe': 7,
          'films': 6,
          'like': 6,
          'celebrities': 6,
          'never': 5,
          'good': 5,
          'character': 5,
          'lee': 5,
          'davis': 5,
          'allens': 4,
          'movie': 4,
          'celebrity': 4,
          'personal': 4,
          'almost': 4,
          'fact': 4,
          'become': 4,
          'n': 4,
          'totally': 4,
          'takes': 4,
          'hes': 4,
          'happiness': 4,
          'opening': 3,
          'time': 3,
          'ive': 3,
          'ever': 3,
          'help': 3,
          'old': 3,
          'take': 3,
          'nand': 3,
          'griffith': 3,
          'though': 3,
          'close': 3,
          'could': 3,
          'yes': 3,
          'world': 3,
          'knows': 3,
          'crisis': 3,
          'thing': 3,
          'blah': 3,
          'still': 3,
          'trying': 3,
          'scenes': 3,
          'exactly': 3,
          'get': 3,
          'may': 3,
          'terribly': 2,
          'heart': 2,
          'closely': 2,
          'manhattan': 2,
          'favorite': 2,
          'nwoody': 2,
          'flair': 2,
          'seen': 2,
          'beautiful': 2,
          'black': 2,
          'white': 2,
          'best': 2,
          'cant': 2,
          'feel': 2,
          'soundtrack': 2,
          'screen': 2,
          'city': 2,
          'moment': 2,
          'look': 2,
          'lead': 2,
          'actress': 2,
          'wrong': 2,
          'nits': 2,
          'stale': 2,
          'scene': 2,
          'without': 2,
          'soon': 2,
          'new': 2,
          'years': 2,
          'deconstructing': 2,
          'harry': 2,
          'less': 2,
          'funny': 2,
          'insightful': 2,
          'wonderful': 2,
          'story': 2,
          'everyone': 2,
          'love': 2,
          'way': 2,
          'even': 2,
          'subject': 2,
          'bit': 2,
          'fashioned': 2,
          'la': 2,
          'dolce': 2,
          'vita': 2,
          'flaws': 2,
          'performance': 2,
          'makes': 2,
          'actually': 2,
          'charm': 2,
          'witty': 2,
          'nhis': 2,
          'ryder': 2,
          'goes': 2,
          'nwe': 2,
          'nhe': 2,
          'job': 2,
          'journalist': 2,
          'places': 2,
          'maybe': 2,
          'script': 2,
          'girlfriend': 2,
          'fling': 2,
          'comes': 2,
          'escapades': 2,
          'theron': 2,
          'see': 2,
          'jokes': 2,
          'ha': 2,
          'wild': 2,
          'ride': 2,
          'relationship': 2,
          'smart': 2,
          'woman': 2,
          'becomes': 2,
          'happy': 2,
          'mediums': 2,
          'work': 2,
          'nbut': 2,
          'sequence': 2,
          'darrow': 2,
          'gets': 2,
          'despite': 2,
          'either': 2,
          'seem': 2,
          'enough': 2,
          'make': 2,
          'hearing': 1,
          'reviews': 1,
          'upteenth': 1,
          'history': 1,
          'range': 1,
          'boring': 1,
          'soso': 1,
          'lept': 1,
          'images': 1,
          'resembled': 1,
          'director': 1,
          'rely': 1,
          'visual': 1,
          'textual': 1,
          'resembles': 1,
          'two': 1,
          'entities': 1,
          'fit': 1,
          'handinhand': 1,
          'bestlooking': 1,
          'photography': 1,
          'citys': 1,
          'areas': 1,
          'etc': 1,
          'fan': 1,
          'visibly': 1,
          'moved': 1,
          'opens': 1,
          'usual': 1,
          'credits': 1,
          'plain': 1,
          'font': 1,
          'backgrounds': 1,
          'ironic': 1,
          'standard': 1,
          'playing': 1,
          'fills': 1,
          'gorgeous': 1,
          'dull': 1,
          'gray': 1,
          'sky': 1,
          'word': 1,
          'spelled': 1,
          'airplane': 1,
          'nbeethovens': 1,
          '5th': 1,
          'blasts': 1,
          'seems': 1,
          'stop': 1,
          'notice': 1,
          'rather': 1,
          'lovely': 1,
          'cut': 1,
          'crew': 1,
          'shooting': 1,
          'hilariously': 1,
          'banal': 1,
          'key': 1,
          'melanie': 1,
          'looking': 1,
          'buxom': 1,
          'realize': 1,
          'somethings': 1,
          'life': 1,
          'whatever': 1,
          'shots': 1,
          'sank': 1,
          'got': 1,
          'used': 1,
          'going': 1,
          'past': 1,
          'works': 1,
          'record': 1,
          'last': 1,
          'came': 1,
          'awfully': 1,
          'nwhat': 1,
          'hell': 1,
          'happened': 1,
          'man': 1,
          'relied': 1,
          'neurotic': 1,
          'freshness': 1,
          'cinema': 1,
          'tossed': 1,
          'together': 1,
          'unfinished': 1,
          'ideas': 1,
          'bullets': 1,
          'broadway': 1,
          'relies': 1,
          'irony': 1,
          'pull': 1,
          'farce': 1,
          'mighty': 1,
          'aphrodite': 1,
          'full': 1,
          'moments': 1,
          'lines': 1,
          'says': 1,
          'idea': 1,
          'neven': 1,
          'admittingly': 1,
          'cheap': 1,
          'top': 1,
          'truly': 1,
          'hilarious': 1,
          'nif': 1,
          'anything': 1,
          'reception': 1,
          'tip': 1,
          'audience': 1,
          'critics': 1,
          'marginally': 1,
          'satisfying': 1,
          'ninstead': 1,
          'creating': 1,
          'created': 1,
          'based': 1,
          'entirely': 1,
          'uninformed': 1,
          'philosophy': 1,
          'plays': 1,
          'series': 1,
          'skits': 1,
          'minor': 1,
          'connections': 1,
          'accuracy': 1,
          'right': 1,
          'amount': 1,
          'wit': 1,
          'correct': 1,
          'becoming': 1,
          'insecure': 1,
          'age': 1,
          'choses': 1,
          'drop': 1,
          'hang': 1,
          'scrutiny': 1,
          'casting': 1,
          'brit': 1,
          'actor': 1,
          'kenneth': 1,
          'branagh': 1,
          'nmuch': 1,
          'said': 1,
          'dead': 1,
          'irritating': 1,
          'yearn': 1,
          'real': 1,
          'anyone': 1,
          'branaghs': 1,
          'featuring': 1,
          'mannerisms': 1,
          'stuttering': 1,
          'whining': 1,
          'lots': 1,
          'hand': 1,
          'gestures': 1,
          'hardly': 1,
          'wartsandall': 1,
          'impersonation': 1,
          'nbranagh': 1,
          'brings': 1,
          'along': 1,
          'little': 1,
          'allows': 1,
          'characters': 1,
          'apparent': 1,
          'nwoodys': 1,
          'flawed': 1,
          'guy': 1,
          'know': 1,
          'anyway': 1,
          'intelligent': 1,
          'nbranaghs': 1,
          'flatout': 1,
          'bad': 1,
          'sure': 1,
          'person': 1,
          'simon': 1,
          'first': 1,
          'set': 1,
          'aforementioned': 1,
          'hits': 1,
          'extra': 1,
          'winona': 1,
          'interview': 1,
          'childhood': 1,
          'home': 1,
          'pass': 1,
          'denies': 1,
          'sorta': 1,
          'learn': 1,
          'flashbacks': 1,
          'sucked': 1,
          'thanks': 1,
          'midlife': 1,
          'appearance': 1,
          'high': 1,
          'school': 1,
          'reunion': 1,
          'since': 1,
          'quit': 1,
          'travel': 1,
          'gossip': 1,
          'sorts': 1,
          'covering': 1,
          'sets': 1,
          'congregate': 1,
          'meet': 1,
          'sell': 1,
          'bank': 1,
          'robbery': 1,
          'deep': 1,
          'nas': 1,
          'divorced': 1,
          'wife': 1,
          'several': 1,
          'regular': 1,
          'judy': 1,
          'continues': 1,
          'quest': 1,
          'sexual': 1,
          'boucing': 1,
          'course': 1,
          'nafter': 1,
          'model': 1,
          'charlize': 1,
          'polymorphously': 1,
          'perverse': 1,
          'glad': 1,
          'using': 1,
          'different': 1,
          'anita': 1,
          'ekberg': 1,
          'segment': 1,
          'nfollowing': 1,
          'safe': 1,
          'working': 1,
          'famke': 1,
          'janssen': 1,
          'assures': 1,
          'success': 1,
          'continued': 1,
          'fancies': 1,
          'juxtaposed': 1,
          'flips': 1,
          'stumbles': 1,
          'onto': 1,
          'runs': 1,
          'handsome': 1,
          'friendly': 1,
          'tv': 1,
          'exec': 1,
          'joe': 1,
          'mantegna': 1,
          'lands': 1,
          'furthers': 1,
          'career': 1,
          'national': 1,
          'status': 1,
          'nwhile': 1,
          'fumbling': 1,
          'selfishly': 1,
          'ensure': 1,
          'kind': 1,
          'always': 1,
          'hated': 1,
          'nim': 1,
          'loving': 1,
          'nwithout': 1,
          'result': 1,
          'highs': 1,
          'sitations': 1,
          'dont': 1,
          'pat': 1,
          'back': 1,
          'wished': 1,
          'hadnt': 1,
          'ended': 1,
          'na': 1,
          'banana': 1,
          'bebe': 1,
          'neuwirth': 1,
          'droll': 1,
          'perhaps': 1,
          'romp': 1,
          'hotashell': 1,
          'teen': 1,
          'idol': 1,
          'brandon': 1,
          'played': 1,
          'none': 1,
          'leo': 1,
          'dicaprio': 1,
          'undicaprioesque': 1,
          'fans': 1,
          'sit': 1,
          'theyd': 1,
          'ignites': 1,
          'intensity': 1,
          'spares': 1,
          'nothing': 1,
          'showing': 1,
          'narcissistically': 1,
          'tyrannical': 1,
          'heartbreaking': 1,
          'talk': 1,
          'read': 1,
          'finds': 1,
          'allday': 1,
          'nthey': 1,
          'go': 1,
          'atlantic': 1,
          'watch': 1,
          'fight': 1,
          'gamble': 1,
          'wind': 1,
          'hotel': 1,
          'room': 1,
          'flame': 1,
          'gretchen': 1,
          'mol': 1,
          'lends': 1,
          'leftover': 1,
          'groupies': 1,
          'nallens': 1,
          'writing': 1,
          'id': 1,
          'recommend': 1,
          'nalmost': 1,
          'liked': 1,
          'mess': 1,
          'needs': 1,
          'rewrite': 1,
          'nthough': 1,
          'misplaced': 1,
          'cartoonish': 1,
          'environment': 1,
          'manages': 1,
          'across': 1,
          'itd': 1,
          'extremely': 1,
          'outoftouch': 1,
          'want': 1,
          'equate': 1,
          'celebrityhood': 1,
          'actual': 1,
          'theyre': 1,
          'appear': 1,
          'surface': 1,
          'nlee': 1,
          'obsessed': 1,
          'phenomenon': 1,
          'arms': 1,
          'length': 1,
          'involved': 1,
          'nbesides': 1,
          'nit': 1,
          'fresh': 1,
          'lively': 1,
          'brilliant': 1,
          'depiction': 1,
          'part': 1,
          'oeuvre': 1,
          'merely': 1,
          'blip': 1,
          'annie': 1,
          'hall': 1,
          'shadows': 1,
          'fog': 1,
          'prove': 1,
          'godard': 1,
          'possibly': 1,
          'horrible': 1,
          'metaphor': 1,
          'beginning': 1,
          'twice': 1,
          'npos': 1}),
 Counter({'film': 11,
          'jesus': 11,
          'christ': 9,
          'life': 8,
          'nthe': 7,
          'n': 5,
          'also': 5,
          'message': 5,
          'moments': 5,
          'truly': 5,
          'nit': 5,
          'die': 4,
          'simply': 4,
          'one': 4,
          'new': 4,
          'york': 4,
          'temptation': 3,
          'njesus': 3,
          'judas': 3,
          'confused': 3,
          'audience': 3,
          'movie': 2,
          'last': 2,
          'scorseses': 2,
          'yet': 2,
          'nscorsese': 2,
          '20': 2,
          'dafoe': 2,
          'carpenter': 2,
          'learns': 2,
          'desert': 2,
          'god': 2,
          'leaving': 2,
          'asks': 2,
          'forgiveness': 2,
          'mary': 2,
          'magdelene': 2,
          'true': 2,
          'purpose': 2,
          'world': 2,
          'way': 2,
          'prophets': 2,
          'tries': 2,
          'nchrist': 2,
          'story': 2,
          'love': 2,
          'n20': 2,
          'cross': 2,
          'saved': 2,
          'girl': 2,
          'angel': 2,
          'man': 2,
          'deathbed': 2,
          'breathtaking': 2,
          'capture': 2,
          'frailties': 2,
          'nschrader': 2,
          'words': 2,
          'nthere': 2,
          'glory': 2,
          'us': 2,
          'give': 2,
          'hilarity': 2,
          'scene': 2,
          'astonishingly': 1,
          'difficult': 1,
          'watch': 1,
          'may': 1,
          'important': 1,
          'impossibly': 1,
          'abstract': 1,
          'well': 1,
          'presents': 1,
          'nikos': 1,
          'kazantzakis': 1,
          'novel': 1,
          'details': 1,
          'approximately': 1,
          'day': 1,
          'crucifixtion': 1,
          'nazareth': 1,
          'opens': 1,
          'making': 1,
          'crosses': 1,
          'escape': 1,
          'fate': 1,
          'subjected': 1,
          'destiny': 1,
          'earth': 1,
          'soon': 1,
          'evil': 1,
          'ways': 1,
          'aiding': 1,
          'deaths': 1,
          'others': 1,
          'subjects': 1,
          'exile': 1,
          'hopes': 1,
          'reach': 1,
          'nbefore': 1,
          'barbara': 1,
          'hershey': 1,
          'prostitute': 1,
          'childhood': 1,
          'friend': 1,
          'nafter': 1,
          'going': 1,
          'must': 1,
          'naided': 1,
          'keitel': 1,
          'sets': 1,
          'teaching': 1,
          'nalong': 1,
          'meets': 1,
          'john': 1,
          'baptist': 1,
          'rest': 1,
          'teach': 1,
          'confronted': 1,
          'internal': 1,
          'demons': 1,
          'selfdoubt': 1,
          'find': 1,
          'throughout': 1,
          'entire': 1,
          'nduring': 1,
          'closese': 1,
          'ally': 1,
          'betrayal': 1,
          'argues': 1,
          'hate': 1,
          'order': 1,
          'allow': 1,
          'nhe': 1,
          'eventually': 1,
          'captured': 1,
          'crucified': 1,
          'per': 1,
          'bibile': 1,
          'however': 1,
          'brings': 1,
          'marriage': 1,
          'guardian': 1,
          'death': 1,
          'goes': 1,
          'live': 1,
          'non': 1,
          'final': 1,
          'visited': 1,
          'denounces': 1,
          'master': 1,
          'keeping': 1,
          'end': 1,
          'bargain': 1,
          'njudas': 1,
          'reveals': 1,
          'devil': 1,
          'lived': 1,
          'ultimate': 1,
          'selfish': 1,
          'act': 1,
          'escapes': 1,
          'father': 1,
          'succumbing': 1,
          'nvisually': 1,
          'aurally': 1,
          'absolutely': 1,
          'nno': 1,
          'director': 1,
          'even': 1,
          'come': 1,
          'close': 1,
          'realizing': 1,
          'jerusalem': 1,
          'time': 1,
          'christs': 1,
          'screen': 1,
          'npeter': 1,
          'gabriel': 1,
          'contributes': 1,
          'score': 1,
          'astonishing': 1,
          'pulsing': 1,
          'rhythms': 1,
          'viewer': 1,
          'performances': 1,
          'exquisite': 1,
          'leading': 1,
          'mesmerizing': 1,
          'turn': 1,
          'nkeitel': 1,
          'although': 1,
          'accent': 1,
          'problem': 1,
          'passionately': 1,
          'brilliant': 1,
          'fighting': 1,
          'language': 1,
          'bring': 1,
          'character': 1,
          'visuals': 1,
          'amazing': 1,
          'frames': 1,
          'harsh': 1,
          'tone': 1,
          'impression': 1,
          'human': 1,
          'though': 1,
          'many': 1,
          'trouble': 1,
          'spots': 1,
          'npaul': 1,
          'schraders': 1,
          'script': 1,
          'uses': 1,
          'modernday': 1,
          'english': 1,
          'tell': 1,
          'along': 1,
          'mannerisms': 1,
          'slang': 1,
          'speech': 1,
          'focus': 1,
          'godly': 1,
          'aspects': 1,
          'underlying': 1,
          'behind': 1,
          'mans': 1,
          'fails': 1,
          'splendor': 1,
          'nhad': 1,
          'faithfully': 1,
          'explored': 1,
          'aspect': 1,
          'dichotomy': 1,
          'soul': 1,
          'doubt': 1,
          'mixed': 1,
          'unmistakable': 1,
          'would': 1,
          'spectacular': 1,
          'violence': 1,
          'merely': 1,
          'tells': 1,
          'great': 1,
          'instead': 1,
          'showing': 1,
          'greatness': 1,
          'overlong': 1,
          'drags': 1,
          'middle': 1,
          'nothing': 1,
          'happening': 1,
          'figure': 1,
          'sense': 1,
          'doesnt': 1,
          'know': 1,
          'really': 1,
          'forgets': 1,
          'show': 1,
          'messiah': 1,
          'divinity': 1,
          'nwithout': 1,
          'rambling': 1,
          'prophet': 1,
          'believe': 1,
          'several': 1,
          'accidental': 1,
          'occur': 1,
          'attempting': 1,
          'preach': 1,
          'brief': 1,
          'awe': 1,
          'power': 1,
          'followed': 1,
          'nthat': 1,
          'said': 1,
          'controversial': 1,
          'sequence': 1,
          'something': 1,
          'behold': 1,
          'step': 1,
          'unexpected': 1,
          'direction': 1,
          'leaves': 1,
          'puzzled': 1,
          'arrival': 1,
          'disciples': 1,
          'mortal': 1,
          'finest': 1,
          'unfortunate': 1,
          'scorsese': 1,
          'couldnt': 1,
          'make': 1,
          'powerful': 1,
          'npos': 1}),
 Counter({'ryan': 15,
          'movie': 10,
          'private': 9,
          'one': 8,
          'saving': 6,
          'soldiers': 6,
          'army': 6,
          'hanks': 6,
          'good': 5,
          'scenes': 5,
          'war': 5,
          'movies': 5,
          'time': 4,
          'nthe': 4,
          'battle': 3,
          'like': 3,
          'nand': 3,
          'men': 3,
          'interesting': 3,
          'three': 3,
          'mission': 3,
          'way': 3,
          'make': 3,
          'get': 3,
          'long': 3,
          'crazy': 2,
          'na': 2,
          'realistic': 2,
          'emotion': 2,
          'spielbergs': 2,
          'spielberg': 2,
          'wouldnt': 2,
          'go': 2,
          'schindlers': 2,
          'list': 2,
          'thing': 2,
          'flick': 2,
          'damn': 2,
          'goes': 2,
          'audience': 2,
          'find': 2,
          'never': 2,
          'none': 2,
          'different': 2,
          'combat': 2,
          'mother': 2,
          'telegram': 2,
          'ni': 2,
          'conversation': 2,
          'worth': 2,
          'admits': 2,
          'following': 2,
          'things': 2,
          'would': 2,
          'nby': 2,
          'self': 2,
          'person': 2,
          'first': 2,
          'man': 2,
          'guy': 2,
          'affleck': 2,
          'isnt': 2,
          'available': 2,
          'hours': 2,
          'still': 2,
          'apparently': 2,
          'definitely': 2,
          'place': 2,
          'eyes': 2,
          'life': 2,
          'dogtags': 2,
          'theyre': 2,
          'poker': 2,
          'call': 1,
          'dont': 1,
          'see': 1,
          'film': 1,
          'summer': 1,
          'yes': 1,
          'chillingly': 1,
          'spare': 1,
          'nan': 1,
          'utterly': 1,
          'riviting': 1,
          'par': 1,
          'steven': 1,
          'best': 1,
          'work': 1,
          'npersonally': 1,
          'back': 1,
          'world': 1,
          'ii': 1,
          'era': 1,
          'indiana': 1,
          'jones': 1,
          'nim': 1,
          'guessing': 1,
          'steve': 1,
          'nazis': 1,
          'really': 1,
          'surprised': 1,
          'velociraptor': 1,
          'ate': 1,
          'swastikawearing': 1,
          'dudes': 1,
          'next': 1,
          'jurassic': 1,
          'park': 1,
          'nall': 1,
          'lofty': 1,
          'pretenses': 1,
          'aside': 1,
          'goriest': 1,
          'side': 1,
          '1980s': 1,
          'slasher': 1,
          'difference': 1,
          'easy': 1,
          'friday': 1,
          '13th': 1,
          'laugh': 1,
          'spear': 1,
          'sticking': 1,
          'kevin': 1,
          'bacons': 1,
          'chest': 1,
          'blood': 1,
          'spurts': 1,
          'hard': 1,
          'sit': 1,
          'eat': 1,
          'reeses': 1,
          'pieces': 1,
          'suffer': 1,
          'machine': 1,
          'gun': 1,
          'bullets': 1,
          'head': 1,
          'intestines': 1,
          'spilled': 1,
          'onto': 1,
          'battlefield': 1,
          'believe': 1,
          'theres': 1,
          'plenty': 1,
          '30minute': 1,
          'sequence': 1,
          'beginning': 1,
          'captain': 1,
          'tom': 1,
          'landing': 1,
          'omaha': 1,
          'beach': 1,
          'join': 1,
          'countless': 1,
          'americans': 1,
          'already': 1,
          'fire': 1,
          'nlives': 1,
          'lost': 1,
          'seconds': 1,
          'purposefully': 1,
          'confusing': 1,
          'jarring': 1,
          'scene': 1,
          'young': 1,
          'ever': 1,
          'wanting': 1,
          'drafted': 1,
          'ncut': 1,
          'bureaucratic': 1,
          'defense': 1,
          'office': 1,
          'hundred': 1,
          'women': 1,
          'pound': 1,
          'sympathy': 1,
          'form': 1,
          'letters': 1,
          'families': 1,
          'casualties': 1,
          'woman': 1,
          'happens': 1,
          'upon': 1,
          'detail': 1,
          'brothers': 1,
          'platoons': 1,
          'killed': 1,
          'getting': 1,
          'today': 1,
          'guess': 1,
          'piece': 1,
          'everyone': 1,
          'chief': 1,
          'harve': 1,
          'presnell': 1,
          'sends': 1,
          'essentially': 1,
          'public': 1,
          'relations': 1,
          'fourth': 1,
          'brother': 1,
          'send': 1,
          'home': 1,
          'nthat': 1,
          'saves': 1,
          'postage': 1,
          'yet': 1,
          'another': 1,
          'mrs': 1,
          'headed': 1,
          'rescue': 1,
          'know': 1,
          'designed': 1,
          'look': 1,
          'nthey': 1,
          'question': 1,
          'risking': 1,
          'eight': 1,
          'lives': 1,
          'save': 1,
          'character': 1,
          'doesnt': 1,
          'give': 1,
          'hes': 1,
          'orders': 1,
          'nif': 1,
          'john': 1,
          'wayne': 1,
          'nthered': 1,
          'phony': 1,
          'lets': 1,
          'boy': 1,
          'gosh': 1,
          'darn': 1,
          'nattitude': 1,
          'sugarcoat': 1,
          'reality': 1,
          'instincts': 1,
          'preservation': 1,
          'complacency': 1,
          'every': 1,
          'normal': 1,
          'nit': 1,
          'makes': 1,
          'lot': 1,
          'powerful': 1,
          'testosteronedriven': 1,
          'stallone': 1,
          'pattern': 1,
          'followed': 1,
          'quiet': 1,
          'semiintrospective': 1,
          'among': 1,
          'nhanks': 1,
          'painted': 1,
          'nailstough': 1,
          'careful': 1,
          'hide': 1,
          'true': 1,
          'nits': 1,
          'nedward': 1,
          'burns': 1,
          'ben': 1,
          'impulsive': 1,
          'njeremy': 1,
          'davies': 1,
          'plays': 1,
          'translator': 1,
          'seeing': 1,
          'nnone': 1,
          'characters': 1,
          'fascinating': 1,
          'natural': 1,
          'born': 1,
          'heroes': 1,
          'obvious': 1,
          'intention': 1,
          'wondered': 1,
          'heard': 1,
          'going': 1,
          'fill': 1,
          'searching': 1,
          'nthere': 1,
          'false': 1,
          'starts': 1,
          'finds': 1,
          'ted': 1,
          'dansons': 1,
          'company': 1,
          'danson': 1,
          'joined': 1,
          'ink': 1,
          'canceled': 1,
          'breaks': 1,
          'bad': 1,
          'news': 1,
          'learning': 1,
          'wrong': 1,
          'course': 1,
          'far': 1,
          'locate': 1,
          'matt': 1,
          'damon': 1,
          'nthats': 1,
          'turns': 1,
          'conventional': 1,
          'although': 1,
          'body': 1,
          'parts': 1,
          'limbs': 1,
          'fly': 1,
          'nsaving': 1,
          'intense': 1,
          'attempts': 1,
          'sincere': 1,
          'arent': 1,
          'bookends': 1,
          'particularly': 1,
          'cheesy': 1,
          'old': 1,
          'cemetary': 1,
          'family': 1,
          'bawls': 1,
          'whining': 1,
          'tell': 1,
          'ive': 1,
          'led': 1,
          'ntell': 1,
          'im': 1,
          'nspielberg': 1,
          'james': 1,
          'cameron': 1,
          'line': 1,
          'thought': 1,
          'threehour': 1,
          'past': 1,
          'framed': 1,
          'selfcontained': 1,
          'prologue': 1,
          'epilogue': 1,
          'takes': 1,
          'present': 1,
          'nmuch': 1,
          'effective': 1,
          'subtler': 1,
          'several': 1,
          'rifling': 1,
          'thrugh': 1,
          'bag': 1,
          'dead': 1,
          'light': 1,
          'pretending': 1,
          'playing': 1,
          'nthis': 1,
          'airborne': 1,
          'division': 1,
          'marches': 1,
          'full': 1,
          'mound': 1,
          'explicitly': 1,
          'pointing': 1,
          'symbolizes': 1,
          'random': 1,
          'game': 1,
          'death': 1,
          'gets': 1,
          'message': 1,
          'even': 1,
          'classic': 1,
          'better': 1,
          'npos': 1}),
 Counter({'nthe': 12,
          'war': 8,
          'one': 8,
          'film': 8,
          'men': 8,
          'ryan': 7,
          'sense': 7,
          'battle': 6,
          'soldiers': 6,
          'good': 5,
          'way': 5,
          'killing': 5,
          'fact': 4,
          'saving': 4,
          'private': 4,
          'nazis': 4,
          'reality': 4,
          'make': 4,
          'mission': 4,
          'even': 3,
          'nits': 3,
          'n': 3,
          'films': 3,
          'theres': 3,
          'seems': 3,
          'characters': 3,
          'must': 3,
          'theyre': 3,
          'germans': 3,
          'really': 3,
          'miller': 3,
          'man': 3,
          'like': 3,
          'doesnt': 3,
          'death': 3,
          '6': 2,
          'rotterdam': 2,
          'help': 2,
          'portrayed': 2,
          'since': 2,
          'general': 2,
          'aspects': 2,
          'victory': 2,
          'easy': 2,
          'armies': 2,
          'nit': 2,
          'graphic': 2,
          'world': 2,
          'military': 2,
          'many': 2,
          'nthere': 2,
          'us': 2,
          'feeling': 2,
          'poor': 2,
          'yet': 2,
          'fighting': 2,
          'little': 2,
          'dont': 2,
          'get': 2,
          'actors': 2,
          'killed': 2,
          'nin': 2,
          'happen': 2,
          'nothing': 2,
          'dead': 2,
          'americans': 2,
          'direction': 2,
          'avoid': 2,
          'group': 2,
          'ni': 2,
          'feel': 2,
          'odds': 2,
          'cliche': 2,
          'story': 2,
          'concerned': 2,
          'never': 2,
          'nhe': 2,
          'want': 2,
          'mother': 2,
          'nwhen': 2,
          'trying': 2,
          'find': 2,
          'isnt': 2,
          'millers': 2,
          'hope': 2,
          'major': 2,
          'act': 2,
          'go': 2,
          'boys': 2,
          'calvin': 2,
          'dad': 2,
          'seen': 1,
          'august': 1,
          '8': 1,
          '1998': 1,
          'p': 1,
          'square': 1,
          'cinemas': 1,
          'ny': 1,
          'theater': 1,
          'free': 1,
          'using': 1,
          'sonyloews': 1,
          'critics': 1,
          'pass': 1,
          'ntheater': 1,
          'rating': 1,
          'seats': 1,
          'sound': 1,
          'picture': 1,
          'nwar': 1,
          'topic': 1,
          'cant': 1,
          'glorified': 1,
          'media': 1,
          'nmovies': 1,
          'documentaries': 1,
          'history': 1,
          'books': 1,
          'making': 1,
          'darker': 1,
          'side': 1,
          'humanity': 1,
          'exciting': 1,
          'focused': 1,
          'strategy': 1,
          'politics': 1,
          'forget': 1,
          'basic': 1,
          'form': 1,
          'slaughter': 1,
          'nforgotten': 1,
          'easily': 1,
          'soldier': 1,
          'matter': 1,
          'rank': 1,
          'importance': 1,
          'real': 1,
          'fleshandblood': 1,
          'person': 1,
          'number': 1,
          'dares': 1,
          'play': 1,
          'aspect': 1,
          'especially': 1,
          'unapologetic': 1,
          'realistic': 1,
          'delivery': 1,
          'proves': 1,
          'huge': 1,
          'difference': 1,
          'battling': 1,
          'opens': 1,
          'disturbing': 1,
          'scenes': 1,
          'recent': 1,
          'memory': 1,
          'ii': 1,
          'dday': 1,
          'exact': 1,
          'u': 1,
          'invading': 1,
          'omaha': 1,
          'beach': 1,
          'ready': 1,
          'nspielberg': 1,
          'uses': 1,
          'techniques': 1,
          'create': 1,
          'total': 1,
          'ninstead': 1,
          'positioned': 1,
          'cameras': 1,
          'footage': 1,
          'shot': 1,
          'camera': 1,
          'operators': 1,
          'running': 1,
          'alongside': 1,
          'scared': 1,
          'stability': 1,
          'constant': 1,
          'anxious': 1,
          'confusing': 1,
          'motion': 1,
          'giving': 1,
          'middle': 1,
          'vulnerable': 1,
          'troops': 1,
          'proper': 1,
          'word': 1,
          'describe': 1,
          'pathetic': 1,
          'innocent': 1,
          'dialogue': 1,
          'throughout': 1,
          'loud': 1,
          'prologue': 1,
          'define': 1,
          'nwe': 1,
          'handsome': 1,
          'playing': 1,
          'heroic': 1,
          'roles': 1,
          'kill': 1,
          'reasons': 1,
          'beyond': 1,
          'understanding': 1,
          'enemies': 1,
          'hated': 1,
          'people': 1,
          'destroyed': 1,
          'movies': 1,
          'guys': 1,
          'run': 1,
          'firestorm': 1,
          'bullets': 1,
          'bombs': 1,
          'scratch': 1,
          'wouldnt': 1,
          'shield': 1,
          'protect': 1,
          'besides': 1,
          'metal': 1,
          'flanks': 1,
          'bodies': 1,
          'nthey': 1,
          'sitting': 1,
          'ducks': 1,
          'realize': 1,
          'perspective': 1,
          'wellsecured': 1,
          'actually': 1,
          'see': 1,
          'shooting': 1,
          'unlike': 1,
          'fire': 1,
          'getting': 1,
          'heads': 1,
          'blown': 1,
          'nperhaps': 1,
          'flawed': 1,
          'providing': 1,
          'backstory': 1,
          'part': 1,
          'theme': 1,
          'rely': 1,
          'audiences': 1,
          'patriotism': 1,
          'american': 1,
          'right': 1,
          'inherently': 1,
          'evil': 1,
          'scene': 1,
          'eventually': 1,
          'focuses': 1,
          'miraculously': 1,
          'survived': 1,
          'made': 1,
          'close': 1,
          'enemy': 1,
          'stronghold': 1,
          'whole': 1,
          '50foot': 1,
          'progression': 1,
          'begin': 1,
          'inflict': 1,
          'damage': 1,
          'admit': 1,
          'first': 1,
          'glimpse': 1,
          'sprang': 1,
          'couldnt': 1,
          'joy': 1,
          'relief': 1,
          'nto': 1,
          'triumph': 1,
          'sure': 1,
          'detailed': 1,
          'atmosphere': 1,
          'happened': 1,
          'none': 1,
          'surprising': 1,
          'construction': 1,
          'events': 1,
          'take': 1,
          'place': 1,
          'interesting': 1,
          'plot': 1,
          'practically': 1,
          'irrelevant': 1,
          'meet': 1,
          'ntom': 1,
          'hanks': 1,
          'stars': 1,
          'captain': 1,
          'relatively': 1,
          'average': 1,
          'happens': 1,
          'leader': 1,
          'platoon': 1,
          'nhes': 1,
          'obsessive': 1,
          'generic': 1,
          'cartoonish': 1,
          'characteristic': 1,
          'might': 1,
          'dominate': 1,
          'character': 1,
          'given': 1,
          'intends': 1,
          'carry': 1,
          'title': 1,
          'states': 1,
          'nthrough': 1,
          'series': 1,
          'command': 1,
          'started': 1,
          'ordinary': 1,
          'clerical': 1,
          'worker': 1,
          'brought': 1,
          'generals': 1,
          'attention': 1,
          'three': 1,
          'brothers': 1,
          'iowa': 1,
          'action': 1,
          'receive': 1,
          'notices': 1,
          'eachs': 1,
          'simultaneously': 1,
          'learn': 1,
          'fourth': 1,
          'brother': 1,
          'stationed': 1,
          'somewhere': 1,
          'europe': 1,
          'top': 1,
          'priority': 1,
          'returned': 1,
          'safely': 1,
          'sympathize': 1,
          'situation': 1,
          'lose': 1,
          'children': 1,
          'nbut': 1,
          'finding': 1,
          'puts': 1,
          'needle': 1,
          'stack': 1,
          'needles': 1,
          'dramatic': 1,
          'device': 1,
          'thematic': 1,
          'nhis': 1,
          'salvation': 1,
          'represents': 1,
          'innocence': 1,
          'country': 1,
          'convince': 1,
          'still': 1,
          'company': 1,
          'hears': 1,
          'scoff': 1,
          'idea': 1,
          'assuming': 1,
          'quick': 1,
          'shrug': 1,
          'knows': 1,
          'thing': 1,
          'save': 1,
          'opportunity': 1,
          'someones': 1,
          'gives': 1,
          'destination': 1,
          'nalong': 1,
          'things': 1,
          'bad': 1,
          'na': 1,
          'battles': 1,
          'fought': 1,
          'accomplishments': 1,
          'encounter': 1,
          'german': 1,
          'choice': 1,
          'becomes': 1,
          'philosophical': 1,
          'metaphors': 1,
          'mind': 1,
          'blind': 1,
          'come': 1,
          'across': 1,
          'lone': 1,
          'survivor': 1,
          'begs': 1,
          'let': 1,
          'barely': 1,
          'stop': 1,
          'cold': 1,
          'blood': 1,
          'kind': 1,
          'vengeance': 1,
          'losses': 1,
          'nunfortunately': 1,
          'try': 1,
          'comes': 1,
          'main': 1,
          'spielberg': 1,
          'think': 1,
          'invincible': 1,
          'small': 1,
          'amount': 1,
          'color': 1,
          'personality': 1,
          'sketched': 1,
          'performances': 1,
          'enough': 1,
          'method': 1,
          'work': 1,
          'nalthough': 1,
          'somewhat': 1,
          'typical': 1,
          'maintain': 1,
          'control': 1,
          'material': 1,
          'time': 1,
          'nwhether': 1,
          'arguing': 1,
          'telling': 1,
          'stories': 1,
          'back': 1,
          'home': 1,
          'overboard': 1,
          'always': 1,
          'seem': 1,
          'believable': 1,
          'nsure': 1,
          'zinger': 1,
          'change': 1,
          'nif': 1,
          'dies': 1,
          'loss': 1,
          'though': 1,
          'hardly': 1,
          'knew': 1,
          'final': 1,
          'brings': 1,
          'full': 1,
          'circle': 1,
          'another': 1,
          'tremendous': 1,
          'violent': 1,
          'sequence': 1,
          'nprivate': 1,
          'found': 1,
          'facing': 1,
          'four': 1,
          'defeat': 1,
          'keep': 1,
          'alive': 1,
          'nthats': 1,
          'premise': 1,
          'thrills': 1,
          'symbolic': 1,
          'everything': 1,
          'worked': 1,
          'would': 1,
          'wrong': 1,
          'say': 1,
          'either': 1,
          'happy': 1,
          'sad': 1,
          'ending': 1,
          'ends': 1,
          'end': 1,
          'remember': 1,
          'reading': 1,
          'hobbes': 1,
          'comic': 1,
          'strip': 1,
          'asked': 1,
          'something': 1,
          'solve': 1,
          'problems': 1,
          'adult': 1,
          'version': 1,
          'question': 1,
          'npos': 1}),
 Counter({'movie': 11,
          'placid': 7,
          'lake': 6,
          'funny': 4,
          'plays': 3,
          'man': 3,
          'find': 3,
          'great': 3,
          'nbut': 3,
          'definately': 2,
          'clever': 2,
          'film': 2,
          'kinda': 2,
          'scary': 2,
          'isnt': 2,
          'original': 2,
          'go': 2,
          'really': 2,
          'croc': 2,
          'though': 2,
          'huge': 2,
          'see': 2,
          'came': 2,
          'watch': 2,
          'enjoyed': 2,
          'popcorn': 2,
          'gore': 2,
          'typical': 1,
          'creature': 1,
          'attacking': 1,
          'people': 1,
          'ok': 1,
          'maybe': 1,
          'one': 1,
          'enjoyable': 1,
          'nactually': 1,
          'comes': 1,
          'comedy': 1,
          'horror': 1,
          'nwell': 1,
          'ending': 1,
          'horrorcomedies': 1,
          'ni': 1,
          'admit': 1,
          'oscar': 1,
          'worthy': 1,
          'come': 1,
          'inventive': 1,
          'nbridget': 1,
          'fonda': 1,
          'palentologist': 1,
          'finding': 1,
          'boyfriend': 1,
          'cheating': 1,
          'forced': 1,
          'investigate': 1,
          'tooth': 1,
          'bit': 1,
          'half': 1,
          'nshe': 1,
          'gets': 1,
          'doesnt': 1,
          'understand': 1,
          'nbill': 1,
          'pullman': 1,
          'also': 1,
          'investigating': 1,
          'happened': 1,
          'along': 1,
          'sherriff': 1,
          'rich': 1,
          'obsessed': 1,
          'going': 1,
          'nwhat': 1,
          'na': 1,
          'mean': 1,
          'crocodile': 1,
          'living': 1,
          '150': 1,
          'years': 1,
          'old': 1,
          'migrated': 1,
          'knows': 1,
          'nthey': 1,
          'fight': 1,
          'try': 1,
          'trap': 1,
          'study': 1,
          'nbetty': 1,
          'white': 1,
          'woman': 1,
          'lives': 1,
          'shores': 1,
          'well': 1,
          'youll': 1,
          'nher': 1,
          'character': 1,
          'foulmouthed': 1,
          'surprising': 1,
          'hear': 1,
          'betty': 1,
          'spew': 1,
          'words': 1,
          'phrases': 1,
          'pretty': 1,
          'bad': 1,
          'nto': 1,
          'spoof': 1,
          'jaws': 1,
          'nwith': 1,
          'opening': 1,
          'sequence': 1,
          'others': 1,
          'nwhen': 1,
          'notice': 1,
          'smartness': 1,
          'cleverness': 1,
          'ndavid': 1,
          'e': 1,
          'kelly': 1,
          'mastermind': 1,
          'practice': 1,
          'ally': 1,
          'mcbeal': 1,
          'writes': 1,
          'ease': 1,
          'surprisingly': 1,
          'job': 1,
          'nthe': 1,
          'characters': 1,
          'smartmouths': 1,
          'two': 1,
          'foul': 1,
          'oneliners': 1,
          'believe': 1,
          'dont': 1,
          'take': 1,
          'seriously': 1,
          'wont': 1,
          'like': 1,
          'fun': 1,
          'type': 1,
          'guess': 1,
          'rates': 1,
          'rating': 1,
          'nsit': 1,
          'back': 1,
          'laugh': 1,
          'scream': 1,
          'whatever': 1,
          'want': 1,
          'neven': 1,
          'r': 1,
          'put': 1,
          'violence': 1,
          'ntheres': 1,
          'much': 1,
          'might': 1,
          'seem': 1,
          'gross': 1,
          'nlake': 1,
          'smart': 1,
          'think': 1,
          'npos': 1}),
 Counter({'black': 4,
          'one': 4,
          'introduced': 4,
          'film': 3,
          'nmen': 3,
          'n': 3,
          'fun': 3,
          'agent': 3,
          'kay': 3,
          'alien': 3,
          'mib': 3,
          'cant': 3,
          'earth': 3,
          'threestar': 2,
          'ntheyre': 2,
          'usually': 2,
          'kind': 2,
          'watch': 2,
          'tommy': 2,
          'lee': 2,
          'jones': 2,
          'organization': 2,
          'edwards': 2,
          'smith': 2,
          'nthe': 2,
          'going': 2,
          'even': 2,
          'nedwards': 2,
          'jay': 2,
          'comes': 2,
          'na': 2,
          'bug': 2,
          'films': 2,
          'summer': 2,
          'lot': 1,
          'times': 1,
          'favorite': 1,
          'movie': 1,
          'often': 1,
          'deep': 1,
          'allowing': 1,
          'semibrainless': 1,
          'relaxation': 1,
          'time': 1,
          'dumb': 1,
          'fourstar': 1,
          'hope': 1,
          'could': 1,
          'follow': 1,
          'doesnt': 1,
          'wait': 1,
          'get': 1,
          'njust': 1,
          'minutes': 1,
          'awesome': 1,
          'memorydiminishing': 1,
          'tool': 1,
          'agents': 1,
          'use': 1,
          'nafter': 1,
          'witnesses': 1,
          'running': 1,
          'around': 1,
          'knowledge': 1,
          'course': 1,
          'moniters': 1,
          'extraterrestrial': 1,
          'activity': 1,
          'nnypd': 1,
          'officer': 1,
          'james': 1,
          'routine': 1,
          'foot': 1,
          'chase': 1,
          'suddenly': 1,
          'nogood': 1,
          'punk': 1,
          'hes': 1,
          'chasing': 1,
          'starts': 1,
          'leaping': 1,
          'buildings': 1,
          'blinking': 1,
          'pair': 1,
          'eyes': 1,
          'delivers': 1,
          'simple': 1,
          'message': 1,
          'world': 1,
          'end': 1,
          'dives': 1,
          'roof': 1,
          'nnaturally': 1,
          'nobody': 1,
          'believes': 1,
          'story': 1,
          'nnobody': 1,
          'except': 1,
          'top': 1,
          'secret': 1,
          'government': 1,
          'aware': 1,
          'meets': 1,
          'man': 1,
          'never': 1,
          'seems': 1,
          'crack': 1,
          'smile': 1,
          'winds': 1,
          'joining': 1,
          'team': 1,
          'stripped': 1,
          'anything': 1,
          'point': 1,
          'back': 1,
          'birth': 1,
          'certificate': 1,
          'drivers': 1,
          'license': 1,
          'literal': 1,
          'removal': 1,
          'fingerprints': 1,
          'njames': 1,
          'longer': 1,
          'exists': 1,
          'nmeet': 1,
          'nagent': 1,
          'takes': 1,
          'rookie': 1,
          'wing': 1,
          'go': 1,
          'regular': 1,
          'duties': 1,
          'neventually': 1,
          'far': 1,
          'treacherous': 1,
          'event': 1,
          'play': 1,
          'landed': 1,
          'wipe': 1,
          'mankind': 1,
          'two': 1,
          'dont': 1,
          'stop': 1,
          'plot': 1,
          'isnt': 1,
          'exactly': 1,
          'clear': 1,
          'know': 1,
          'galaxy': 1,
          'big': 1,
          'jewel': 1,
          'marble': 1,
          'sought': 1,
          'crucial': 1,
          'find': 1,
          'nbarry': 1,
          'sonnenfeld': 1,
          'also': 1,
          'addams': 1,
          'family': 1,
          'directs': 1,
          'nicely': 1,
          'nits': 1,
          'funny': 1,
          'actionpacked': 1,
          'nice': 1,
          'blockbuster': 1,
          'rightfully': 1,
          'turned': 1,
          'nthis': 1,
          'movies': 1,
          'really': 1,
          'summed': 1,
          'nicer': 1,
          'clearer': 1,
          'nwill': 1,
          'great': 1,
          'jobs': 1,
          'blast': 1,
          'ndefinitely': 1,
          'best': 1,
          '97': 1,
          'men': 1,
          'highly': 1,
          'recommeded': 1,
          'npos': 1}),
 Counter({'film': 10,
          'nthe': 8,
          'nit': 7,
          'nbut': 5,
          'nand': 5,
          'world': 4,
          'land': 4,
          'fbi': 4,
          'u': 4,
          'nwhat': 3,
          'city': 3,
          'new': 3,
          'terrorist': 3,
          'much': 3,
          'cia': 3,
          'siege': 3,
          'never': 3,
          'nhe': 3,
          'one': 2,
          'became': 2,
          'target': 2,
          'terror': 2,
          'america': 2,
          'really': 2,
          'terrorism': 2,
          'willing': 2,
          'opportunities': 2,
          'freedom': 2,
          'nthis': 2,
          'reality': 2,
          'military': 2,
          'william': 2,
          'devereaux': 2,
          'willis': 2,
          'takes': 2,
          'york': 2,
          'na': 2,
          'must': 2,
          'way': 2,
          'martial': 2,
          'law': 2,
          'men': 2,
          'american': 2,
          'washington': 2,
          'agent': 2,
          'intelligent': 2,
          'usual': 2,
          'group': 2,
          'bening': 2,
          'knows': 2,
          'nthey': 2,
          'great': 2,
          'well': 2,
          'terrifying': 2,
          'best': 2,
          'films': 2,
          'director': 2,
          'several': 2,
          'power': 2,
          'army': 2,
          'involved': 2,
          'palestinian': 2,
          'exactly': 2,
          'nin': 2,
          'looses': 2,
          'protests': 2,
          'population': 2,
          'n': 2,
          'nzwick': 2,
          'matter': 2,
          'twist': 2,
          'get': 2,
          'comes': 2,
          'point': 2,
          'emotions': 2,
          'patriotism': 2,
          'courage': 2,
          'enough': 2,
          'cities': 1,
          'increasing': 1,
          'threat': 1,
          'basic': 1,
          'human': 1,
          'rights': 1,
          'sacrifice': 1,
          'prevent': 1,
          'another': 1,
          'oklahoma': 1,
          'disaster': 1,
          'nso': 1,
          'far': 1,
          'leading': 1,
          'nation': 1,
          'opposing': 1,
          'fundamentalist': 1,
          'terrorists': 1,
          'around': 1,
          'dark': 1,
          'fantasy': 1,
          'unfortunately': 1,
          'strong': 1,
          'grounding': 1,
          'nwhen': 1,
          'special': 1,
          'branch': 1,
          'united': 1,
          'states': 1,
          'command': 1,
          'general': 1,
          'bruce': 1,
          'prisoner': 1,
          'suspected': 1,
          'mastermind': 1,
          'sheik': 1,
          'ahmed': 1,
          'bin': 1,
          'talal': 1,
          'islamic': 1,
          'fundamentalists': 1,
          'across': 1,
          'take': 1,
          'notice': 1,
          'warning': 1,
          'receives': 1,
          'single': 1,
          'cryptic': 1,
          'message': 1,
          'release': 1,
          'nthen': 1,
          'hell': 1,
          'breaks': 1,
          'loose': 1,
          'bus': 1,
          'destroyed': 1,
          'killing': 1,
          '25': 1,
          'civilians': 1,
          'broadway': 1,
          'theater': 1,
          'bombed': 1,
          'nhostages': 1,
          'taken': 1,
          'school': 1,
          'nas': 1,
          'wave': 1,
          'activity': 1,
          'crests': 1,
          'president': 1,
          'consider': 1,
          'save': 1,
          'break': 1,
          'grip': 1,
          'fear': 1,
          'declare': 1,
          'ndevereaux': 1,
          'argues': 1,
          'eventuality': 1,
          'nevertheless': 1,
          'ready': 1,
          'lead': 1,
          '10': 1,
          '000': 1,
          'action': 1,
          'soil': 1,
          'nanother': 1,
          'person': 1,
          'favor': 1,
          'anthony': 1,
          'hubbard': 1,
          'denzel': 1,
          'charge': 1,
          'investigating': 1,
          'activities': 1,
          'nhis': 1,
          'staff': 1,
          'comprised': 1,
          'smart': 1,
          'energetic': 1,
          'women': 1,
          'unlike': 1,
          'nf': 1,
          'moronic': 1,
          'feds': 1,
          'used': 1,
          'seeing': 1,
          'movies': 1,
          'nhubbard': 1,
          'develops': 1,
          'uneasy': 1,
          'alliance': 1,
          'elise': 1,
          'kraft': 1,
          'annette': 1,
          'whose': 1,
          'department': 1,
          'situation': 1,
          'theyre': 1,
          'reveal': 1,
          'attacks': 1,
          'escalate': 1,
          'helpless': 1,
          'chasing': 1,
          'invisible': 1,
          'enemy': 1,
          'lost': 1,
          'control': 1,
          'nterror': 1,
          'coming': 1,
          'within': 1,
          'nwhats': 1,
          'made': 1,
          'holding': 1,
          'mirror': 1,
          'life': 1,
          'reflects': 1,
          'thats': 1,
          'makes': 1,
          'impact': 1,
          'nedward': 1,
          'zwick': 1,
          'created': 1,
          'clever': 1,
          'written': 1,
          'thriller': 1,
          'may': 1,
          'season': 1,
          'manages': 1,
          'tell': 1,
          'stories': 1,
          'simultaneously': 1,
          'plays': 1,
          'levels': 1,
          'loosing': 1,
          'focus': 1,
          'main': 1,
          'objective': 1,
          'exploring': 1,
          'abuse': 1,
          'distrustful': 1,
          'relationships': 1,
          'exist': 1,
          'various': 1,
          'segments': 1,
          'government': 1,
          'look': 1,
          'complexities': 1,
          'inherent': 1,
          'many': 1,
          'secrets': 1,
          'lies': 1,
          'community': 1,
          '1998': 1,
          'treated': 1,
          'japanese': 1,
          'americans': 1,
          'war': 1,
          'ii': 1,
          'nthere': 1,
          'concentration': 1,
          'camps': 1,
          'unlawful': 1,
          'interments': 1,
          'name': 1,
          'greater': 1,
          'good': 1,
          'latter': 1,
          'part': 1,
          'heart': 1,
          'soul': 1,
          'nwas': 1,
          'nists': 1,
          'wanted': 1,
          'evoked': 1,
          'objections': 1,
          'arabamerican': 1,
          'especially': 1,
          'seem': 1,
          'unnecessary': 1,
          'careful': 1,
          'step': 1,
          'line': 1,
          'make': 1,
          'palestinians': 1,
          'typical': 1,
          'hollywood': 1,
          'bad': 1,
          'guys': 1,
          'script': 1,
          'therefore': 1,
          'wonderfully': 1,
          'balanced': 1,
          'nagent': 1,
          'hubbards': 1,
          'friend': 1,
          'loyal': 1,
          'colleague': 1,
          'frank': 1,
          'haddad': 1,
          'tony': 1,
          'shalhoub': 1,
          'lebaneseamerican': 1,
          'quite': 1,
          'often': 1,
          'hear': 1,
          'lines': 1,
          'first': 1,
          'boyfriend': 1,
          'seduce': 1,
          'suffering': 1,
          'love': 1,
          'country': 1,
          'wont': 1,
          'away': 1,
          'fact': 1,
          'wide': 1,
          'arabspeaking': 1,
          'majority': 1,
          'nmore': 1,
          'demonstrates': 1,
          'injustice': 1,
          'blanket': 1,
          'condemnation': 1,
          'ethnic': 1,
          'depicting': 1,
          'unfair': 1,
          'treatment': 1,
          'arabamericans': 1,
          'thus': 1,
          'serve': 1,
          'source': 1,
          'discrimination': 1,
          'nway': 1,
          'ndenzel': 1,
          'dashing': 1,
          'always': 1,
          'role': 1,
          'determined': 1,
          'stronger': 1,
          'nanette': 1,
          'enjoyable': 1,
          'believable': 1,
          'shadowy': 1,
          'operative': 1,
          'prefers': 1,
          'espionage': 1,
          'network': 1,
          'snitches': 1,
          'seduction': 1,
          'gather': 1,
          'information': 1,
          'nbruce': 1,
          'sadist': 1,
          'hungry': 1,
          'connection': 1,
          'audience': 1,
          'since': 1,
          'view': 1,
          'hard': 1,
          'understand': 1,
          'elegantly': 1,
          'shaped': 1,
          'scenes': 1,
          'easily': 1,
          'floating': 1,
          'seems': 1,
          'overlong': 1,
          'provoke': 1,
          'tension': 1,
          'horror': 1,
          'rarely': 1,
          'observed': 1,
          'professionalism': 1,
          'tightens': 1,
          'intensity': 1,
          'events': 1,
          'progress': 1,
          'plot': 1,
          'actually': 1,
          'surprising': 1,
          'drained': 1,
          'like': 1,
          'work': 1,
          'roland': 1,
          'emerich': 1,
          'nnor': 1,
          'portrays': 1,
          'explosions': 1,
          'purely': 1,
          'entertainment': 1,
          'values': 1,
          'daring': 1,
          'picture': 1,
          'undertake': 1,
          'risky': 1,
          'story': 1,
          'difficult': 1,
          'journey': 1,
          'politics': 1,
          'questions': 1,
          'foreign': 1,
          'policies': 1,
          'mentality': 1,
          'defense': 1,
          'ni': 1,
          'admit': 1,
          'ends': 1,
          'rather': 1,
          'disappointing': 1,
          'turns': 1,
          'innovation': 1,
          'despite': 1,
          'certainly': 1,
          'thrilling': 1,
          'provokes': 1,
          'thoughts': 1,
          'virtue': 1,
          'summer': 1,
          'boast': 1,
          'nits': 1,
          'broadsword': 1,
          'scalpel': 1,
          'nbelieve': 1,
          'want': 1,
          'us': 1,
          'gen': 1,
          'npos': 1}),
 Counter({'film': 6,
          'keaton': 6,
          'nthe': 6,
          'save': 4,
          'life': 3,
          'movies': 3,
          'kill': 3,
          'one': 3,
          'would': 3,
          'character': 3,
          'desperate': 2,
          'measures': 2,
          'reason': 2,
          'son': 2,
          'san': 2,
          'francisco': 2,
          'police': 2,
          'garcia': 2,
          'escape': 2,
          'could': 2,
          'trying': 2,
          'movie': 2,
          'certainly': 2,
          'keatons': 2,
          'garcias': 2,
          'many': 2,
          'kids': 2,
          'evil': 2,
          'good': 2,
          'really': 2,
          'seen': 2,
          'final': 2,
          'scene': 2,
          'menacing': 2,
          'batman': 2,
          'nand': 2,
          'something': 1,
          'excited': 1,
          'seeing': 1,
          'back': 1,
          'originally': 1,
          'scheduled': 1,
          'released': 1,
          'summer': 1,
          '97': 1,
          'nfor': 1,
          'delayed': 1,
          'hollywoods': 1,
          'traditional': 1,
          'dumping': 1,
          'ground': 1,
          'january': 1,
          'nnow': 1,
          'see': 1,
          'real': 1,
          'delay': 1,
          'simple': 1,
          'yet': 1,
          'highly': 1,
          'entertaining': 1,
          'nmichael': 1,
          'stars': 1,
          'maniacial': 1,
          'murderer': 1,
          'whos': 1,
          'bone': 1,
          'marrow': 1,
          'dying': 1,
          'detective': 1,
          'nkeaton': 1,
          'agrees': 1,
          'transplant': 1,
          'attempt': 1,
          'nhe': 1,
          'succeeds': 1,
          'plan': 1,
          'course': 1,
          'work': 1,
          'force': 1,
          'working': 1,
          'keep': 1,
          'alive': 1,
          'order': 1,
          'definately': 1,
          'flaws': 1,
          'plot': 1,
          'strictly': 1,
          'tv': 1,
          'week': 1,
          'fare': 1,
          'acting': 1,
          'direction': 1,
          'boost': 1,
          'far': 1,
          'status': 1,
          'nalso': 1,
          'captain': 1,
          'barks': 1,
          'men': 1,
          'die': 1,
          'nwhich': 1,
          'treats': 1,
          'insignificant': 1,
          'remark': 1,
          'thing': 1,
          'vaild': 1,
          'point': 1,
          'nhow': 1,
          'people': 1,
          'needlessly': 1,
          'crippled': 1,
          'burned': 1,
          'killed': 1,
          'child': 1,
          'nwhats': 1,
          'greater': 1,
          'nmany': 1,
          'lives': 1,
          'nif': 1,
          'guts': 1,
          'nowadays': 1,
          'loved': 1,
          'come': 1,
          'choice': 1,
          'nplace': 1,
          'situation': 1,
          'knows': 1,
          'someone': 1,
          'else': 1,
          'nalas': 1,
          'days': 1,
          'generally': 1,
          'ambition': 1,
          'pull': 1,
          'audiences': 1,
          'strings': 1,
          'ways': 1,
          'might': 1,
          'make': 1,
          'uncomfortable': 1,
          'ndespite': 1,
          'silly': 1,
          'moments': 1,
          'two': 1,
          'stupid': 1,
          'ones': 1,
          'things': 1,
          'outnumber': 1,
          'bad': 1,
          'main': 1,
          'highlight': 1,
          'performance': 1,
          'easily': 1,
          'overacting': 1,
          'chewing': 1,
          'freak': 1,
          'underplays': 1,
          'nicely': 1,
          'nhes': 1,
          'pacific': 1,
          'heights': 1,
          'even': 1,
          'yes': 1,
          'used': 1,
          'dark': 1,
          'get': 1,
          'idea': 1,
          'hes': 1,
          'neven': 1,
          'normally': 1,
          'hate': 1,
          'seems': 1,
          'strangely': 1,
          'appropriate': 1,
          'nso': 1,
          'much': 1,
          'didnt': 1,
          'mind': 1,
          'slightest': 1,
          'another': 1,
          'bonus': 1,
          'takes': 1,
          'place': 1,
          'usually': 1,
          'means': 1,
          'car': 1,
          'chase': 1,
          'hills': 1,
          'youve': 1,
          'billion': 1,
          'times': 1,
          'moment': 1,
          'looked': 1,
          'though': 1,
          'happen': 1,
          'nbut': 1,
          'doesnt': 1,
          'thats': 1,
          'creative': 1,
          'nr': 1,
          'npos': 1}),
 Counter({'movie': 8,
          'exorcist': 6,
          'film': 6,
          'new': 5,
          'regan': 5,
          'horror': 4,
          'seen': 4,
          'still': 4,
          'man': 4,
          'best': 4,
          'ending': 3,
          'actress': 3,
          'help': 3,
          'karras': 3,
          'little': 3,
          'girl': 3,
          'scary': 2,
          'nis': 2,
          'person': 2,
          'wants': 2,
          'forever': 2,
          'wait': 2,
          'rave': 2,
          'reviews': 2,
          'audiences': 2,
          'death': 2,
          'year': 2,
          'never': 2,
          'six': 2,
          'channel': 2,
          'digital': 2,
          'sound': 2,
          'fifteen': 2,
          'minutes': 2,
          'footage': 2,
          'daughter': 2,
          'chris': 2,
          'starts': 2,
          'possessed': 2,
          'getting': 2,
          'jason': 2,
          'miller': 2,
          'father': 2,
          'twenty': 2,
          'years': 2,
          'way': 2,
          'cut': 2,
          'friedkin': 2,
          'time': 2,
          'well': 2,
          'nthe': 2,
          'wonderful': 2,
          'amazing': 2,
          'one': 2,
          'burstyn': 2,
          'going': 2,
          'think': 2,
          'performance': 2,
          'people': 2,
          'laughing': 2,
          'stuff': 2,
          'come': 2,
          'rerelease': 2,
          'anyhow': 1,
          'gets': 1,
          'ripped': 1,
          'shreds': 1,
          'chased': 1,
          'damned': 1,
          'teenager': 1,
          'revenge': 1,
          'npossibly': 1,
          'guy': 1,
          'hook': 1,
          'know': 1,
          'last': 1,
          'summer': 1,
          'nwhat': 1,
          'ever': 1,
          'happened': 1,
          'movies': 1,
          'atmosphere': 1,
          'characters': 1,
          'nmovies': 1,
          'like': 1,
          'halloween': 1,
          'psycho': 1,
          'revolutionized': 1,
          'genre': 1,
          '1973': 1,
          'came': 1,
          'based': 1,
          'bestselling': 1,
          'book': 1,
          'william': 1,
          'peter': 1,
          'blatty': 1,
          'entitled': 1,
          'opened': 1,
          'scared': 1,
          '2000': 1,
          'comes': 1,
          'back': 1,
          'big': 1,
          'screen': 1,
          'version': 1,
          'youve': 1,
          'complete': 1,
          'surround': 1,
          'long': 1,
          'nchris': 1,
          'mcniell': 1,
          'living': 1,
          'georgetown': 1,
          'washington': 1,
          'twelve': 1,
          'old': 1,
          'nwhile': 1,
          'working': 1,
          'stays': 1,
          'close': 1,
          'wonder': 1,
          'bed': 1,
          'shakes': 1,
          'night': 1,
          'convulsions': 1,
          'sudden': 1,
          'nwhen': 1,
          'finds': 1,
          'demon': 1,
          'shuns': 1,
          'fact': 1,
          'considers': 1,
          'priest': 1,
          'nfather': 1,
          'bring': 1,
          'mother': 1,
          'died': 1,
          'mourning': 1,
          'decides': 1,
          'nchrist': 1,
          'nanny': 1,
          'sharon': 1,
          'kitty': 1,
          'winn': 1,
          'sit': 1,
          'shows': 1,
          'nexcrutiatingly': 1,
          'classic': 1,
          'seven': 1,
          'later': 1,
          'scares': 1,
          'half': 1,
          'nnow': 1,
          'get': 1,
          'experience': 1,
          'meant': 1,
          'directors': 1,
          'incorpates': 1,
          'release': 1,
          'content': 1,
          'added': 1,
          'adds': 1,
          'lighter': 1,
          'feeling': 1,
          'prefer': 1,
          'original': 1,
          'darker': 1,
          'also': 1,
          'remastered': 1,
          'mix': 1,
          'voices': 1,
          'clear': 1,
          'music': 1,
          'pours': 1,
          'engulfs': 1,
          'richness': 1,
          'nas': 1,
          'director': 1,
          'known': 1,
          'films': 1,
          'standout': 1,
          'nominated': 1,
          'several': 1,
          'academy': 1,
          'awards': 1,
          'somehow': 1,
          'doubted': 1,
          'picture': 1,
          'ellen': 1,
          'supporting': 1,
          'linda': 1,
          'blair': 1,
          'age': 1,
          'believe': 1,
          'thirteen': 1,
          'job': 1,
          'alone': 1,
          'unable': 1,
          'stop': 1,
          'nellen': 1,
          'gives': 1,
          'date': 1,
          'currently': 1,
          'requiem': 1,
          'dream': 1,
          'njason': 1,
          'patriks': 1,
          'dad': 1,
          'embedded': 1,
          'mind': 1,
          'character': 1,
          'makes': 1,
          'entire': 1,
          'float': 1,
          'along': 1,
          'ni': 1,
          'saddened': 1,
          'saw': 1,
          'audience': 1,
          'mostly': 1,
          'younger': 1,
          'see': 1,
          'comical': 1,
          'yes': 1,
          'says': 1,
          'funny': 1,
          'head': 1,
          'spinning': 1,
          'green': 1,
          'pea': 1,
          'soup': 1,
          'creepy': 1,
          'nanyway': 1,
          'managed': 1,
          'make': 1,
          '40': 1,
          'million': 1,
          'dollars': 1,
          'nhopefully': 1,
          'day': 1,
          'generations': 1,
          'enjoy': 1,
          'npos': 1}),
 Counter({'graham': 5,
          'nthe': 4,
          'second': 4,
          'best': 4,
          'njames': 4,
          'chris': 3,
          'must': 3,
          'father': 3,
          'person': 3,
          'also': 3,
          'really': 2,
          'theme': 2,
          'cleary': 2,
          'miles': 2,
          'boy': 2,
          'home': 2,
          'mother': 2,
          'nhe': 2,
          'living': 2,
          'life': 2,
          'feels': 2,
          'social': 2,
          'worker': 2,
          'adopt': 2,
          'nthis': 2,
          'holt': 2,
          'hurt': 2,
          'ngraham': 2,
          'real': 2,
          'parents': 2,
          'love': 2,
          'get': 2,
          'james': 2,
          'nbut': 2,
          'n': 2,
          'film': 2,
          'directed': 2,
          'menges': 2,
          'made': 2,
          'nand': 2,
          'wonderful': 1,
          'little': 1,
          'movie': 1,
          'interested': 1,
          'characters': 1,
          'scene': 1,
          'laid': 1,
          'wales': 1,
          '10yearold': 1,
          'live': 1,
          'keith': 1,
          'allen': 1,
          'prison': 1,
          'committed': 1,
          'suicide': 1,
          'mentally': 1,
          'unbalanced': 1,
          'child': 1,
          'cant': 1,
          'forget': 1,
          'happened': 1,
          'past': 1,
          'dreams': 1,
          'happy': 1,
          'beloved': 1,
          'nin': 1,
          'sadly': 1,
          'lonely': 1,
          'none': 1,
          'day': 1,
          'alan': 1,
          'cumming': 1,
          'tells': 1,
          'wants': 1,
          'william': 1,
          'manages': 1,
          'post': 1,
          'office': 1,
          'shop': 1,
          'village': 1,
          'single': 1,
          'hasnt': 1,
          'friends': 1,
          'nhis': 1,
          'dead': 1,
          'ill': 1,
          'die': 1,
          'disappointment': 1,
          'nthere': 1,
          'never': 1,
          'ngrahams': 1,
          'monotonous': 1,
          'would': 1,
          'new': 1,
          'sense': 1,
          'could': 1,
          'convince': 1,
          'institutions': 1,
          'win': 1,
          'open': 1,
          'theirselves': 1,
          'nthey': 1,
          'know': 1,
          'learn': 1,
          'understand': 1,
          'trust': 1,
          'aid': 1,
          'cope': 1,
          'problems': 1,
          'relationship': 1,
          'future': 1,
          'based': 1,
          'novel': 1,
          'david': 1,
          'cook': 1,
          'wrote': 1,
          'screenplay': 1,
          'directing': 1,
          'debut': 1,
          'good': 1,
          'antiapartheid': 1,
          'drama': 1,
          'world': 1,
          'apart': 1,
          '198788': 1,
          'maybe': 1,
          'even': 1,
          'greater': 1,
          'picture': 1,
          'precise': 1,
          'richly': 1,
          'detailed': 1,
          'sensitively': 1,
          'convincingly': 1,
          'study': 1,
          'special': 1,
          'adoption': 1,
          'treats': 1,
          'great': 1,
          'seriousness': 1,
          'breathtakingly': 1,
          'intense': 1,
          'shows': 1,
          'necessity': 1,
          'human': 1,
          'contact': 1,
          'communication': 1,
          'nwilliam': 1,
          'delivers': 1,
          'outstanding': 1,
          'performance': 1,
          'remarkably': 1,
          'convincing': 1,
          'role': 1,
          'supporting': 1,
          'cast': 1,
          'fine': 1,
          'especially': 1,
          'jane': 1,
          'horrocks': 1,
          'debbie': 1,
          'charged': 1,
          'examine': 1,
          'grahams': 1,
          'circumstances': 1,
          'underestimated': 1,
          'masterpiece': 1,
          'nits': 1,
          'pity': 1,
          'films': 1,
          'like': 1,
          'one': 1,
          'seldom': 1,
          'ni': 1,
          'eagerly': 1,
          'await': 1,
          'next': 1,
          'directorial': 1,
          'work': 1,
          'lost': 1,
          'son': 1,
          'star': 1,
          'daniel': 1,
          'auteuil': 1,
          'npos': 1}),
 Counter({'event': 6,
          'horizon': 6,
          'good': 5,
          'nthe': 5,
          'ship': 5,
          'film': 5,
          'search': 4,
          'team': 3,
          'events': 3,
          'nit': 3,
          'becomes': 3,
          'year': 2,
          'plenty': 2,
          'black': 2,
          'later': 2,
          'invented': 2,
          'gravity': 2,
          'drive': 2,
          'na': 2,
          'craft': 2,
          'case': 2,
          'nhowever': 2,
          'trace': 2,
          'leaving': 2,
          'years': 2,
          'starts': 2,
          'laurence': 2,
          'fishburne': 2,
          'neill': 2,
          'scientist': 2,
          'find': 2,
          'nnot': 2,
          'make': 2,
          'worse': 2,
          'bloody': 2,
          'occur': 2,
          'together': 2,
          'acting': 2,
          'quite': 2,
          'behind': 2,
          'one': 2,
          'biting': 2,
          'want': 1,
          'scifi': 1,
          'multiplex': 1,
          'nfrom': 1,
          'comedies': 1,
          'mars': 1,
          'attacks': 1,
          'men': 1,
          'luc': 1,
          'bessons': 1,
          'powerful': 1,
          'fifth': 1,
          'element': 1,
          'scifihorror': 1,
          'n': 1,
          'way': 1,
          'contact': 1,
          'alien': 1,
          'ressurection': 1,
          'released': 1,
          'story': 1,
          'thus': 1,
          '2040': 1,
          'explorer': 1,
          'called': 1,
          'tests': 1,
          'newly': 1,
          'device': 1,
          'enables': 1,
          'travel': 1,
          'anywhere': 1,
          'universe': 1,
          'instantaneously': 1,
          'nthis': 1,
          'achieved': 1,
          'creating': 1,
          'gateway': 1,
          'infact': 1,
          'hole': 1,
          'required': 1,
          'destination': 1,
          'nin': 1,
          'near': 1,
          'neptune': 1,
          'proxima': 1,
          'prime': 1,
          'attempts': 1,
          'dissappears': 1,
          'without': 1,
          'two': 1,
          'searches': 1,
          'fruitless': 1,
          'nseven': 1,
          'reappears': 1,
          'transmitting': 1,
          'distress': 1,
          'signal': 1,
          'rescue': 1,
          'sent': 1,
          'investigate': 1,
          'led': 1,
          'joining': 1,
          'sam': 1,
          'plays': 1,
          'nas': 1,
          'crew': 1,
          'blood': 1,
          'lying': 1,
          'around': 1,
          'sign': 1,
          'nto': 1,
          'matters': 1,
          'subjected': 1,
          'series': 1,
          'illusions': 1,
          'based': 1,
          'individual': 1,
          'inner': 1,
          'secrets': 1,
          'start': 1,
          'slowly': 1,
          'piece': 1,
          'transpired': 1,
          'seven': 1,
          'ago': 1,
          'soon': 1,
          'apparent': 1,
          'wherever': 1,
          'went': 1,
          'bought': 1,
          'something': 1,
          'back': 1,
          'nsomething': 1,
          'evil': 1,
          'first': 1,
          'thing': 1,
          'youll': 1,
          'notice': 1,
          'incredible': 1,
          'visual': 1,
          'effects': 1,
          'nthey': 1,
          'really': 1,
          'eye': 1,
          'popping': 1,
          'great': 1,
          'models': 1,
          'boot': 1,
          'occasional': 1,
          'witty': 1,
          'moments': 1,
          'nsam': 1,
          'job': 1,
          'increasingly': 1,
          'disturbed': 1,
          'continues': 1,
          'tip': 1,
          'hat': 1,
          'goes': 1,
          'leads': 1,
          'cool': 1,
          'calm': 1,
          'take': 1,
          'nonense': 1,
          'manner': 1,
          'skills': 1,
          'help': 1,
          'hold': 1,
          'idea': 1,
          'certainly': 1,
          'incredibly': 1,
          'well': 1,
          'middle': 1,
          'section': 1,
          'confused': 1,
          'sometimes': 1,
          'muddled': 1,
          'viewer': 1,
          'unsure': 1,
          'reasons': 1,
          'bizarre': 1,
          'closing': 1,
          '20': 1,
          'minutes': 1,
          'producing': 1,
          'nail': 1,
          'straw': 1,
          'drink': 1,
          'nclimaxes': 1,
          'ive': 1,
          'recently': 1,
          'witnessed': 1,
          'noverall': 1,
          'smart': 1,
          'indeed': 1,
          'nits': 1,
          'enjoyable': 1,
          'amazing': 1,
          'visuals': 1,
          'nbut': 1,
          'warned': 1,
          'horror': 1,
          'scenes': 1,
          'despite': 1,
          'brief': 1,
          'gory': 1,
          'squemish': 1,
          'npos': 1}),
 Counter({'one': 8,
          'film': 6,
          'tony': 5,
          'also': 3,
          'performance': 3,
          'miami': 3,
          'crime': 3,
          'scarface': 2,
          'story': 2,
          'corruption': 2,
          'pacino': 2,
          'montana': 2,
          'movie': 2,
          'becomes': 2,
          'respected': 2,
          'feared': 2,
          'nthe': 2,
          'begins': 2,
          'cubans': 2,
          'gangster': 2,
          'ntony': 2,
          'fall': 2,
          'time': 2,
          'force': 2,
          'trust': 2,
          'basically': 2,
          'although': 2,
          'stands': 2,
          'nin': 2,
          'nomination': 2,
          'remake': 1,
          '1932': 1,
          'name': 1,
          'gripping': 1,
          'far': 1,
          'know': 1,
          'truetolife': 1,
          'power': 1,
          'violence': 1,
          'lead': 1,
          'nal': 1,
          'named': 1,
          'provides': 1,
          'brilliant': 1,
          'cuban': 1,
          'refugee': 1,
          'comes': 1,
          'america': 1,
          'less': 1,
          'nothing': 1,
          'highly': 1,
          'drug': 1,
          'lords': 1,
          'noliver': 1,
          'stone': 1,
          'penned': 1,
          'screenplay': 1,
          'earlier': 1,
          'writing': 1,
          'roles': 1,
          'disclosing': 1,
          'fidel': 1,
          'castro': 1,
          'ordered': 1,
          'thousands': 1,
          'set': 1,
          'sail': 1,
          'head': 1,
          'coasts': 1,
          'united': 1,
          'states': 1,
          'nmany': 1,
          'criminal': 1,
          'records': 1,
          'cocky': 1,
          'fasttalking': 1,
          'man': 1,
          'look': 1,
          'nnearly': 1,
          'right': 1,
          'arrival': 1,
          'thrust': 1,
          'life': 1,
          'participates': 1,
          'cocaine': 1,
          'buy': 1,
          'goes': 1,
          'awry': 1,
          'nalong': 1,
          'friend': 1,
          'partner': 1,
          'manolo': 1,
          'steven': 1,
          'bauer': 1,
          'rises': 1,
          'ranks': 1,
          'forms': 1,
          'friendship': 1,
          'frank': 1,
          'lopez': 1,
          'robert': 1,
          'loggia': 1,
          'highroller': 1,
          'organized': 1,
          'field': 1,
          'love': 1,
          'elvira': 1,
          'michelle': 1,
          'pfeiffer': 1,
          'franks': 1,
          'lover': 1,
          'nof': 1,
          'course': 1,
          'sooner': 1,
          'later': 1,
          'industry': 1,
          'betrayal': 1,
          'amount': 1,
          'greater': 1,
          'anything': 1,
          'else': 1,
          'ones': 1,
          'victim': 1,
          'nthis': 1,
          'often': 1,
          'men': 1,
          'gets': 1,
          'point': 1,
          'anyone': 1,
          'everyone': 1,
          'knows': 1,
          'feels': 1,
          'way': 1,
          'towards': 1,
          'nno': 1,
          'nscarface': 1,
          'incredibly': 1,
          'violent': 1,
          'best': 1,
          'films': 1,
          'another': 1,
          'great': 1,
          'al': 1,
          'nalthough': 1,
          'receive': 1,
          'recognition': 1,
          'academy': 1,
          'truly': 1,
          'good': 1,
          'fact': 1,
          'accent': 1,
          'facial': 1,
          'movements': 1,
          'alone': 1,
          'enough': 1,
          'mind': 1,
          'win': 1,
          'least': 1,
          'get': 1,
          'golden': 1,
          'globe': 1,
          'nanother': 1,
          'element': 1,
          'someone': 1,
          'mentions': 1,
          'profanity': 1,
          'na': 1,
          'figure': 1,
          'tagged': 1,
          'boasts': 1,
          'word': 1,
          'fuck': 1,
          'uses': 1,
          'uttered': 1,
          '206': 1,
          'times': 1,
          'throughout': 1,
          'apparently': 1,
          'record': 1,
          'thing': 1,
          'vulgarity': 1,
          'fits': 1,
          'rather': 1,
          'well': 1,
          'nas': 1,
          'odd': 1,
          'sounds': 1,
          'true': 1,
          'end': 1,
          'powerful': 1,
          'hits': 1,
          'home': 1,
          'hard': 1,
          'npos': 1}),
 Counter({'trekkies': 8,
          'nthe': 8,
          'star': 6,
          'trek': 6,
          'conventions': 5,
          'n': 5,
          'would': 5,
          'time': 5,
          'film': 4,
          'movie': 3,
          'even': 3,
          'certain': 3,
          'fan': 3,
          'fans': 3,
          'people': 3,
          'q': 3,
          'nhe': 3,
          'documentary': 2,
          'fits': 2,
          'reminds': 2,
          'us': 2,
          'oed': 2,
          'new': 2,
          'idea': 2,
          'dedication': 2,
          'none': 2,
          'uniform': 2,
          'many': 2,
          'every': 2,
          'nher': 2,
          'well': 2,
          'day': 2,
          'reporters': 2,
          'says': 2,
          'crowd': 2,
          'doesnt': 2,
          'im': 2,
          'federation': 2,
          'show': 2,
          'various': 2,
          'seriess': 2,
          'stars': 2,
          'thought': 2,
          'one': 2,
          'briefly': 2,
          'drank': 2,
          'water': 2,
          'nthey': 2,
          'virus': 2,
          'guy': 2,
          'dentist': 2,
          'like': 2,
          'nit': 2,
          'family': 2,
          'klingon': 2,
          'customs': 2,
          'roger': 1,
          'nygards': 1,
          'energetic': 1,
          'hilarious': 1,
          'brings': 1,
          'viewers': 1,
          'world': 1,
          'beauty': 1,
          'good': 1,
          'old': 1,
          'fashion': 1,
          'fun': 1,
          'nonfans': 1,
          'alike': 1,
          'generally': 1,
          'writes': 1,
          'vs': 1,
          'trekker': 1,
          'polemic': 1,
          'worth': 1,
          'arguing': 1,
          'goodspirited': 1,
          'easily': 1,
          'forces': 1,
          'cynical': 1,
          'viewer': 1,
          'uncontrollable': 1,
          'loud': 1,
          'giggles': 1,
          'yet': 1,
          'picture': 1,
          'treats': 1,
          'subject': 1,
          'matter': 1,
          'respect': 1,
          'awe': 1,
          'ndenise': 1,
          'crosby': 1,
          'played': 1,
          'tasha': 1,
          'yar': 1,
          'next': 1,
          'generation': 1,
          'serves': 1,
          'host': 1,
          'nin': 1,
          'opening': 1,
          'credits': 1,
          'group': 1,
          'listed': 1,
          'oxford': 1,
          'english': 1,
          'dictionary': 1,
          'cites': 1,
          'february': 1,
          '1976': 1,
          'caption': 1,
          'yorker': 1,
          'first': 1,
          'recorded': 1,
          'usage': 1,
          'word': 1,
          'nunless': 1,
          'youve': 1,
          'posit': 1,
          'pointed': 1,
          'apologetically': 1,
          'stripe': 1,
          'slightly': 1,
          'inaccurate': 1,
          'nothers': 1,
          'talked': 1,
          'attended': 1,
          'several': 1,
          'dozen': 1,
          'typical': 1,
          'hundreds': 1,
          'unheard': 1,
          'nmy': 1,
          'personal': 1,
          'favorite': 1,
          'sir': 1,
          'speedy': 1,
          'photocopying': 1,
          'worker': 1,
          'barbara': 1,
          'adams': 1,
          'narguably': 1,
          'famous': 1,
          'wears': 1,
          'waking': 1,
          'hour': 1,
          'diehard': 1,
          'claim': 1,
          'fame': 1,
          'juror': 1,
          'whitewater': 1,
          'trial': 1,
          'wore': 1,
          'court': 1,
          'walk': 1,
          'past': 1,
          'vulcanlike': 1,
          'stoicism': 1,
          'describing': 1,
          'way': 1,
          'dealing': 1,
          'became': 1,
          'obsessed': 1,
          'obsession': 1,
          'nshe': 1,
          'quite': 1,
          'understand': 1,
          'uproar': 1,
          'officer': 1,
          '24': 1,
          'hours': 1,
          'fealty': 1,
          'hobby': 1,
          'approaches': 1,
          'religious': 1,
          'faith': 1,
          'nalong': 1,
          'laugher': 1,
          'evokes': 1,
          'equal': 1,
          'measure': 1,
          'sincere': 1,
          'appreciation': 1,
          'loyalty': 1,
          'nand': 1,
          'infectious': 1,
          'joy': 1,
          'provokes': 1,
          'envy': 1,
          'enjoyment': 1,
          'nfew': 1,
          'avocations': 1,
          'could': 1,
          'give': 1,
          'much': 1,
          'satisfaction': 1,
          'nthese': 1,
          'lives': 1,
          'record': 1,
          'although': 1,
          'seen': 1,
          'movies': 1,
          'interviews': 1,
          'convention': 1,
          'lark': 1,
          'soon': 1,
          'fade': 1,
          'twenty': 1,
          'years': 1,
          'later': 1,
          'still': 1,
          'going': 1,
          'strong': 1,
          'nfilled': 1,
          'anecdotes': 1,
          'talks': 1,
          'happenings': 1,
          'nat': 1,
          'actor': 1,
          'plays': 1,
          'sick': 1,
          'cancel': 1,
          'nafter': 1,
          'appearing': 1,
          'left': 1,
          'decided': 1,
          'auction': 1,
          'halfempty': 1,
          'glass': 1,
          'joking': 1,
          'bidding': 1,
          'immediately': 1,
          'screamed': 1,
          'nwith': 1,
          'comes': 1,
          'amount': 1,
          'stupidity': 1,
          'nnot': 1,
          'flitting': 1,
          'among': 1,
          'takes': 1,
          'let': 1,
          'get': 1,
          'know': 1,
          'trekkie': 1,
          'crossdresser': 1,
          'another': 1,
          'dresses': 1,
          'cat': 1,
          'entire': 1,
          'office': 1,
          'made': 1,
          'look': 1,
          'set': 1,
          'oral': 1,
          'hygienists': 1,
          'receptionist': 1,
          'wife': 1,
          'kids': 1,
          'wear': 1,
          'outfits': 1,
          'appears': 1,
          'workers': 1,
          'permitted': 1,
          'take': 1,
          'go': 1,
          'home': 1,
          'nfor': 1,
          'variety': 1,
          'change': 1,
          'characters': 1,
          'patients': 1,
          'nwell': 1,
          'complainer': 1,
          'problem': 1,
          'bill': 1,
          'anyway': 1,
          'nthere': 1,
          'summer': 1,
          'schools': 1,
          'ph': 1,
          'linguists': 1,
          'teach': 1,
          'language': 1,
          'nhamlet': 1,
          'available': 1,
          'albeit': 1,
          'perhaps': 1,
          'local': 1,
          'bookstore': 1,
          'working': 1,
          'translating': 1,
          'bible': 1,
          'sell': 1,
          'united': 1,
          'passports': 1,
          'real': 1,
          'enough': 1,
          'used': 1,
          'fool': 1,
          'u': 1,
          'bogs': 1,
          'tries': 1,
          'argue': 1,
          'larger': 1,
          'meaning': 1,
          'diversity': 1,
          'humanitarian': 1,
          'concerns': 1,
          'nsandwiched': 1,
          'inbetween': 1,
          'levity': 1,
          'switch': 1,
          'tone': 1,
          'work': 1,
          'incessantly': 1,
          'upbeat': 1,
          'ends': 1,
          'singing': 1,
          'elvis': 1,
          'impersonator': 1,
          'right': 1,
          'ntrekkies': 1,
          'runs': 1,
          'breezy': 1,
          '1': 1,
          '26': 1,
          'rated': 1,
          'pg': 1,
          'brief': 1,
          'sexual': 1,
          'references': 1,
          'fine': 1,
          'ages': 1,
          'npos': 1}),
 Counter({'red': 9,
          'october': 9,
          'nthe': 8,
          'hunt': 6,
          'connery': 5,
          'youre': 3,
          'submarine': 3,
          'sub': 3,
          'neil': 3,
          'love': 2,
          'also': 2,
          'film': 2,
          'sean': 2,
          'alec': 2,
          'baldwin': 2,
          'films': 2,
          'die': 2,
          'hard': 2,
          'since': 2,
          'best': 2,
          'movie': 2,
          'ramius': 2,
          'played': 2,
          'ryan': 2,
          'doesnt': 2,
          'u': 2,
          'james': 2,
          'plot': 2,
          'story': 2,
          'action': 2,
          'type': 1,
          'person': 1,
          'goes': 1,
          'ride': 1,
          'every': 1,
          'time': 1,
          'visit': 1,
          'disneyland': 1,
          'going': 1,
          'nyoull': 1,
          'enjoy': 1,
          'cat': 1,
          'mouse': 1,
          'military': 1,
          'tactics': 1,
          'fan': 1,
          'admired': 1,
          'director': 1,
          'john': 1,
          'mctiernans': 1,
          'earlier': 1,
          'predator': 1,
          'nin': 1,
          'fact': 1,
          'people': 1,
          'likely': 1,
          'disappointed': 1,
          'read': 1,
          'book': 1,
          'almost': 1,
          'never': 1,
          'live': 1,
          'novels': 1,
          'inspired': 1,
          'epic': 1,
          'thriller': 1,
          'adapted': 1,
          'tom': 1,
          'clancys': 1,
          'selling': 1,
          'novel': 1,
          'nset': 1,
          'era': 1,
          'glasnost': 1,
          'revolves': 1,
          'around': 1,
          'topsecret': 1,
          'soviet': 1,
          'called': 1,
          'nuclear': 1,
          'revolutionary': 1,
          'propulsion': 1,
          'system': 1,
          'makes': 1,
          'vessel': 1,
          'silent': 1,
          'allows': 1,
          'escape': 1,
          'sonar': 1,
          'detection': 1,
          'embarks': 1,
          'maiden': 1,
          'voyage': 1,
          'command': 1,
          'captain': 1,
          'marko': 1,
          'nramius': 1,
          'strict': 1,
          'orders': 1,
          'test': 1,
          'ideas': 1,
          'nhe': 1,
          'takes': 1,
          'crew': 1,
          'disappears': 1,
          'atlantic': 1,
          'ocean': 1,
          'nis': 1,
          'planning': 1,
          'start': 1,
          'world': 1,
          'war': 1,
          'iii': 1,
          'ncia': 1,
          'analyst': 1,
          'jack': 1,
          'think': 1,
          'hes': 1,
          'convinced': 1,
          'plans': 1,
          'defect': 1,
          'given': 1,
          'three': 1,
          'days': 1,
          'prove': 1,
          'theory': 1,
          'find': 1,
          'missing': 1,
          'characters': 1,
          'paper': 1,
          'thin': 1,
          'performances': 1,
          'thankfully': 1,
          'rock': 1,
          'solid': 1,
          'nbaldwin': 1,
          'anchor': 1,
          'customary': 1,
          'vigor': 1,
          'nsam': 1,
          'gives': 1,
          'sturdy': 1,
          'performance': 1,
          'connerys': 1,
          'somber': 1,
          'first': 1,
          'officer': 1,
          'nits': 1,
          'ironic': 1,
          'see': 1,
          'playing': 1,
          'russians': 1,
          'known': 1,
          'roles': 1,
          'british': 1,
          'agents': 1,
          'bond': 1,
          'reilly': 1,
          'ace': 1,
          'spies': 1,
          'large': 1,
          'cast': 1,
          'includes': 1,
          'scott': 1,
          'glenn': 1,
          'earl': 1,
          'jones': 1,
          'tim': 1,
          'curry': 1,
          'joss': 1,
          'ackland': 1,
          'plus': 1,
          'richard': 1,
          'jordan': 1,
          'smooth': 1,
          'national': 1,
          'security': 1,
          'adviser': 1,
          'special': 1,
          'effects': 1,
          'remarkable': 1,
          'anything': 1,
          'distinguished': 1,
          'watertight': 1,
          'nscreenwriters': 1,
          'larry': 1,
          'ferguson': 1,
          'donald': 1,
          'stewart': 1,
          'gracefully': 1,
          'navigated': 1,
          'line': 1,
          'full': 1,
          'twists': 1,
          'turns': 1,
          'nthey': 1,
          'keep': 1,
          'us': 1,
          'involved': 1,
          'unveiling': 1,
          'strands': 1,
          'right': 1,
          'moment': 1,
          'get': 1,
          'sweaty': 1,
          'breathless': 1,
          'would': 1,
          'rather': 1,
          'tell': 1,
          'good': 1,
          'hit': 1,
          'head': 1,
          'nonstop': 1,
          'finale': 1,
          'rousing': 1,
          'suspenseful': 1,
          'essentially': 1,
          'superior': 1,
          'potboiler': 1,
          'npos': 1}),
 Counter({'titanic': 11,
          'film': 7,
          'ship': 5,
          'story': 5,
          'nthe': 5,
          'good': 5,
          'action': 4,
          'movie': 4,
          'nin': 4,
          'zane': 4,
          'well': 4,
          'one': 3,
          'would': 3,
          'nhow': 3,
          'could': 3,
          'found': 3,
          'lovett': 3,
          'rose': 3,
          'cal': 3,
          'dicaprio': 3,
          'love': 3,
          'even': 3,
          'winslet': 3,
          'else': 3,
          'way': 3,
          'nwith': 2,
          'budget': 2,
          'throwing': 2,
          'money': 2,
          'see': 2,
          'much': 2,
          'many': 2,
          'effects': 2,
          'ive': 2,
          'nthere': 2,
          'made': 2,
          'ocean': 2,
          'james': 2,
          'cameron': 2,
          'tells': 2,
          'two': 2,
          'starts': 2,
          'team': 2,
          'atlantic': 2,
          'necklace': 2,
          'woman': 2,
          'vessel': 2,
          'young': 2,
          'class': 2,
          'ships': 2,
          'snob': 2,
          'expectations': 2,
          'jack': 2,
          'steerage': 2,
          'performances': 2,
          'role': 2,
          'usually': 2,
          'nhis': 2,
          'character': 2,
          'immediately': 2,
          'makes': 2,
          'characters': 2,
          'fact': 2,
          'cast': 2,
          'something': 2,
          'model': 2,
          'warner': 2,
          'unsinkable': 2,
          'nalso': 2,
          'passengers': 2,
          'anyone': 2,
          'scale': 2,
          'beginning': 2,
          'three': 2,
          'pleasantly': 1,
          'surprised': 1,
          'topping': 1,
          '200': 1,
          'million': 1,
          'quite': 1,
          'skeptical': 1,
          'whether': 1,
          'toward': 1,
          'twentieth': 1,
          'centurys': 1,
          'greatest': 1,
          'tragedies': 1,
          'make': 1,
          'exciting': 1,
          'enough': 1,
          'dress': 1,
          'sets': 1,
          'models': 1,
          'computer': 1,
          'use': 1,
          'pack': 1,
          'sinks': 1,
          'noh': 1,
          'given': 1,
          'away': 1,
          'part': 1,
          'plot': 1,
          'go': 1,
          'back': 1,
          'school': 1,
          'nafter': 1,
          'viewed': 1,
          'however': 1,
          'wellpaced': 1,
          'welldesigned': 1,
          'overall': 1,
          'wellmade': 1,
          'films': 1,
          'maiden': 1,
          'final': 1,
          'voyage': 1,
          'liner': 1,
          'latest': 1,
          'offering': 1,
          'director': 1,
          'best': 1,
          'seen': 1,
          'ntitanic': 1,
          'time': 1,
          'periods': 1,
          'nit': 1,
          'present': 1,
          'explorer': 1,
          'brock': 1,
          'bill': 1,
          'paxton': 1,
          'exploring': 1,
          'wreckage': 1,
          'floor': 1,
          'searching': 1,
          'priceless': 1,
          'diamond': 1,
          'supposedly': 1,
          'went': 1,
          'nwhat': 1,
          'find': 1,
          'instead': 1,
          'drawing': 1,
          'wearing': 1,
          'broadcast': 1,
          'news': 1,
          'picture': 1,
          'recognizes': 1,
          'phones': 1,
          'flown': 1,
          'exploration': 1,
          'high': 1,
          'seas': 1,
          '1912': 1,
          'dewitt': 1,
          'bukater': 1,
          'kate': 1,
          'winslett': 1,
          'lady': 1,
          'belonging': 1,
          'societys': 1,
          'upper': 1,
          'boards': 1,
          'first': 1,
          'crossing': 1,
          'southampton': 1,
          'england': 1,
          'new': 1,
          'york': 1,
          'nshe': 1,
          'engaged': 1,
          'hockley': 1,
          'billy': 1,
          'heir': 1,
          'old': 1,
          'every': 1,
          'sense': 1,
          'word': 1,
          'non': 1,
          'board': 1,
          'feels': 1,
          'stifling': 1,
          'trappings': 1,
          'highsocietys': 1,
          'resolves': 1,
          'escape': 1,
          'titanics': 1,
          'stern': 1,
          'saved': 1,
          'selfproclaimed': 1,
          'fate': 1,
          'dawson': 1,
          'leonardo': 1,
          'passenger': 1,
          'thirdclass': 1,
          'referred': 1,
          'talks': 1,
          'jumping': 1,
          'nalthough': 1,
          'attraction': 1,
          'immediate': 1,
          'affair': 1,
          'soon': 1,
          'develops': 1,
          'endangers': 1,
          'roses': 1,
          'social': 1,
          'standing': 1,
          'engagement': 1,
          'jealous': 1,
          'sounds': 1,
          'simple': 1,
          'perhaps': 1,
          'unexciting': 1,
          'solid': 1,
          'leads': 1,
          'direction': 1,
          'comes': 1,
          'ndicaprio': 1,
          'marvelous': 1,
          'worldlywise': 1,
          'playing': 1,
          'confidence': 1,
          'older': 1,
          'actors': 1,
          'likable': 1,
          'knows': 1,
          'wants': 1,
          'life': 1,
          'charmingly': 1,
          'able': 1,
          'handle': 1,
          'variety': 1,
          'situations': 1,
          'ngirls': 1,
          'going': 1,
          'swoon': 1,
          'nwinslet': 1,
          'also': 1,
          'proves': 1,
          'actress': 1,
          'delivering': 1,
          'lines': 1,
          'convincingly': 1,
          'quality': 1,
          'relationship': 1,
          'believable': 1,
          'problem': 1,
          'carry': 1,
          'accordance': 1,
          'upbringing': 1,
          'nsimply': 1,
          'judgment': 1,
          'gait': 1,
          'distracted': 1,
          'supposed': 1,
          'uppercrust': 1,
          'debutante': 1,
          'nrather': 1,
          'demonstrate': 1,
          'poise': 1,
          'expect': 1,
          'possess': 1,
          'sometimes': 1,
          'looks': 1,
          'positively': 1,
          'clumsy': 1,
          'unfortunately': 1,
          'detracts': 1,
          'otherwise': 1,
          'great': 1,
          'acting': 1,
          'nbilly': 1,
          'aristocratic': 1,
          'since': 1,
          'certain': 1,
          'look': 1,
          'want': 1,
          'hate': 1,
          'features': 1,
          'smiles': 1,
          'theres': 1,
          'mistrustful': 1,
          'scowls': 1,
          'evil': 1,
          'incarnate': 1,
          'nhes': 1,
          'like': 1,
          'porcelain': 1,
          'version': 1,
          'peter': 1,
          'gallagher': 1,
          'cheaper': 1,
          'nlike': 1,
          'slips': 1,
          'comfortably': 1,
          'plays': 1,
          'nbacking': 1,
          'david': 1,
          'lovejoy': 1,
          'cals': 1,
          'personal': 1,
          'assistant': 1,
          'man': 1,
          'said': 1,
          'turn': 1,
          'century': 1,
          'nno': 1,
          'matter': 1,
          'always': 1,
          'count': 1,
          'performance': 1,
          'seems': 1,
          'play': 1,
          'distinguished': 1,
          'gentleman': 1,
          'gaze': 1,
          'steel': 1,
          'match': 1,
          'nadditionally': 1,
          'number': 1,
          'smaller': 1,
          'fictional': 1,
          'nonfictional': 1,
          'roles': 1,
          'thrown': 1,
          'color': 1,
          'kathy': 1,
          'bates': 1,
          'molly': 1,
          'brown': 1,
          'danny': 1,
          'nucci': 1,
          'jacks': 1,
          'friend': 1,
          'fabrizio': 1,
          'de': 1,
          'rossi': 1,
          'eric': 1,
          'braeden': 1,
          'john': 1,
          'jacob': 1,
          'astor': 1,
          'bernard': 1,
          'fox': 1,
          'colonel': 1,
          'archibald': 1,
          'gracie': 1,
          'nnice': 1,
          'dr': 1,
          'bombay': 1,
          'getting': 1,
          'work': 1,
          'scattered': 1,
          'basically': 1,
          'feel': 1,
          'sorry': 1,
          'die': 1,
          'nthis': 1,
          'may': 1,
          'largely': 1,
          'compulsory': 1,
          'transcends': 1,
          'status': 1,
          'putting': 1,
          'direct': 1,
          'conflict': 1,
          'crewmembers': 1,
          'strive': 1,
          'maintain': 1,
          'order': 1,
          'assure': 1,
          'firstclass': 1,
          'placed': 1,
          'aboard': 1,
          'lifeboats': 1,
          'possesses': 1,
          'depth': 1,
          'pictures': 1,
          'nyou': 1,
          'dont': 1,
          'get': 1,
          'tragedy': 1,
          'backdrop': 1,
          'real': 1,
          'account': 1,
          'struggle': 1,
          'nas': 1,
          'mentioned': 1,
          'tremendous': 1,
          'certainly': 1,
          'showed': 1,
          'set': 1,
          'dressing': 1,
          'special': 1,
          'interiors': 1,
          'nearly': 1,
          'breathtaking': 1,
          'elaborate': 1,
          'trimmings': 1,
          'intricate': 1,
          'detail': 1,
          'little': 1,
          'doubt': 1,
          'layouts': 1,
          'authentic': 1,
          'regard': 1,
          'exteriors': 1,
          'dare': 1,
          'point': 1,
          'recreated': 1,
          'meticulousness': 1,
          'ncameron': 1,
          'actually': 1,
          'built': 1,
          'water': 1,
          'tank': 1,
          'room': 1,
          '90': 1,
          'therefore': 1,
          'computergenerate': 1,
          'remaining': 1,
          '40': 1,
          'feet': 1,
          'ncouldve': 1,
          'fooled': 1,
          'everyone': 1,
          'theater': 1,
          'splicing': 1,
          'seamless': 1,
          'note': 1,
          'audience': 1,
          'presented': 1,
          'anatomy': 1,
          'disaster': 1,
          'right': 1,
          'nwe': 1,
          'told': 1,
          'iceberg': 1,
          'struck': 1,
          'flooding': 1,
          'occurred': 1,
          'sank': 1,
          'manner': 1,
          'nthese': 1,
          'technical': 1,
          'details': 1,
          'serve': 1,
          'guide': 1,
          'later': 1,
          'happening': 1,
          'allow': 1,
          'us': 1,
          'view': 1,
          'sinking': 1,
          'informed': 1,
          'analytic': 1,
          'detraction': 1,
          'addition': 1,
          'conventional': 1,
          'placement': 1,
          'midst': 1,
          'mayhem': 1,
          'confusion': 1,
          'camerons': 1,
          'blend': 1,
          'history': 1,
          'runs': 1,
          'longer': 1,
          'hours': 1,
          'almost': 1,
          'unnoticed': 1,
          'viewers': 1,
          'attention': 1,
          'held': 1,
          'alternately': 1,
          'main': 1,
          'elements': 1,
          'movies': 1,
          'intriguing': 1,
          'satisfactory': 1,
          'ending': 1,
          'box': 1,
          'office': 1,
          'receipts': 1,
          'undoubtedly': 1,
          'live': 1,
          'npos': 1}),
 Counter({'nthe': 7,
          'kimble': 7,
          'man': 6,
          'fugitive': 5,
          'jones': 5,
          'gerard': 5,
          'one': 4,
          'go': 4,
          'ford': 4,
          'nits': 4,
          'kimbles': 4,
          'job': 4,
          'action': 3,
          'never': 3,
          'lee': 3,
          'always': 3,
          'easy': 2,
          'fear': 2,
          'direction': 2,
          'could': 2,
          'genre': 2,
          'davis': 2,
          'tommy': 2,
          'harrison': 2,
          'wife': 2,
          'escape': 2,
          'finds': 2,
          'run': 2,
          'find': 2,
          'script': 2,
          'nin': 2,
          'intelligence': 2,
          'sequence': 2,
          'way': 2,
          'tells': 2,
          'know': 2,
          'exactly': 2,
          'recognized': 2,
          'likely': 2,
          'two': 2,
          'leads': 2,
          'nfor': 2,
          'turn': 2,
          'nthis': 2,
          'actor': 2,
          'nhowever': 2,
          'worst': 1,
          'nbegin': 1,
          'classic': 1,
          '1960s': 1,
          'television': 1,
          'series': 1,
          'add': 1,
          'big': 1,
          'budget': 1,
          'alist': 1,
          'star': 1,
          'lead': 1,
          'role': 1,
          'stir': 1,
          'nscript': 1,
          'ask': 1,
          'nwho': 1,
          'needs': 1,
          'kid': 1,
          'nweve': 1,
          'got': 1,
          'formula': 1,
          'nthat': 1,
          'bloated': 1,
          'monster': 1,
          'without': 1,
          'sense': 1,
          'nthen': 1,
          'much': 1,
          'amazement': 1,
          'everything': 1,
          'possibly': 1,
          'wrong': 1,
          'ndidnt': 1,
          'lean': 1,
          'taut': 1,
          'tense': 1,
          'anything': 1,
          'produced': 1,
          'last': 1,
          'several': 1,
          'years': 1,
          'nunder': 1,
          'andrew': 1,
          '1992s': 1,
          'siege': 1,
          'grips': 1,
          'throat': 1,
          'outset': 1,
          'lets': 1,
          'nexpect': 1,
          'box': 1,
          'office': 1,
          'roof': 1,
          'deservedly': 1,
          'expect': 1,
          'academy': 1,
          'award': 1,
          'nomination': 1,
          'premise': 1,
          'simple': 1,
          'ndr': 1,
          'richard': 1,
          'wrongly': 1,
          'convicted': 1,
          'murder': 1,
          'struggling': 1,
          'real': 1,
          'killer': 1,
          'artificial': 1,
          'arm': 1,
          'nafter': 1,
          'attempt': 1,
          'prisoners': 1,
          'transfer': 1,
          'goes': 1,
          'awry': 1,
          'nhis': 1,
          'goal': 1,
          'onearmed': 1,
          'andreas': 1,
          'katsulas': 1,
          'u': 1,
          'marshall': 1,
          'sam': 1,
          'nwhere': 1,
          'surprises': 1,
          'jeb': 1,
          'stuart': 1,
          'david': 1,
          'twohy': 1,
          'almost': 1,
          'asked': 1,
          'allow': 1,
          'leaps': 1,
          'logic': 1,
          'repeatedly': 1,
          'astonished': 1,
          'attention': 1,
          'detail': 1,
          'respect': 1,
          'audience': 1,
          'early': 1,
          'sneaks': 1,
          'hospital': 1,
          'shave': 1,
          'beard': 1,
          'slick': 1,
          'back': 1,
          'hair': 1,
          'change': 1,
          'lab': 1,
          'coat': 1,
          'non': 1,
          'police': 1,
          'officer': 1,
          'jokingly': 1,
          'doesnt': 1,
          'zip': 1,
          'pants': 1,
          'small': 1,
          'moment': 1,
          'punches': 1,
          'home': 1,
          'urgency': 1,
          'situation': 1,
          'concerned': 1,
          'might': 1,
          'easily': 1,
          'forget': 1,
          'nlater': 1,
          'trying': 1,
          'lose': 1,
          'parade': 1,
          'thinks': 1,
          'drop': 1,
          'overcoat': 1,
          'hed': 1,
          'behind': 1,
          'details': 1,
          'convince': 1,
          'us': 1,
          'colleague': 1,
          'hes': 1,
          'smart': 1,
          'caught': 1,
          'may': 1,
          'right': 1,
          'ncredit': 1,
          'must': 1,
          'also': 1,
          'given': 1,
          'special': 1,
          'effects': 1,
          'stunt': 1,
          'coordinators': 1,
          'bus': 1,
          'crash': 1,
          'allows': 1,
          'spectacular': 1,
          'leap': 1,
          'dam': 1,
          'water': 1,
          'crisp': 1,
          'brutal': 1,
          'romanticized': 1,
          'nspecial': 1,
          'kudos': 1,
          'director': 1,
          'maintaining': 1,
          'relentless': 1,
          'pace': 1,
          'underscores': 1,
          'singlemindedness': 1,
          'nand': 1,
          'pair': 1,
          'performances': 1,
          'ntommy': 1,
          'nothing': 1,
          'short': 1,
          'brilliant': 1,
          'manages': 1,
          'incredibly': 1,
          'challenging': 1,
          'feat': 1,
          'first': 1,
          'third': 1,
          'film': 1,
          'really': 1,
          'villain': 1,
          'per': 1,
          'se': 1,
          'nit': 1,
          'would': 1,
          'malevolent': 1,
          'vindictive': 1,
          'inspector': 1,
          'javert': 1,
          'happens': 1,
          'ninstead': 1,
          'plays': 1,
          'sharp': 1,
          'committed': 1,
          'whos': 1,
          'responds': 1,
          'comment': 1,
          'didnt': 1,
          'kill': 1,
          'matteroffact': 1,
          'dont': 1,
          'care': 1,
          'means': 1,
          'determine': 1,
          'guilt': 1,
          'innocence': 1,
          'bring': 1,
          'well': 1,
          'written': 1,
          'character': 1,
          'played': 1,
          'relish': 1,
          'top': 1,
          'form': 1,
          'unfortunate': 1,
          'thing': 1,
          'stunning': 1,
          'overshadow': 1,
          'thats': 1,
          'shame': 1,
          'entire': 1,
          'career': 1,
          'underappreciated': 1,
          'due': 1,
          'pigeonholing': 1,
          'hero': 1,
          'fine': 1,
          'less': 1,
          'flashy': 1,
          'part': 1,
          'keeping': 1,
          'forefront': 1,
          'advantage': 1,
          'work': 1,
          'fullest': 1,
          'protagonists': 1,
          'seemed': 1,
          'equal': 1,
          'footing': 1,
          'task': 1,
          'summer': 1,
          'loaded': 1,
          'actionsuspense': 1,
          'films': 1,
          'brisk': 1,
          'business': 1,
          'time': 1,
          'clint': 1,
          'sean': 1,
          'various': 1,
          'dinosaurs': 1,
          'step': 1,
          'aside': 1,
          'chase': 1,
          'nmy': 1,
          'advice': 1,
          'catch': 1,
          'npos': 1}),
 Counter({'pollocks': 8,
          'harris': 7,
          'pollock': 6,
          'n': 6,
          '_pollock_': 6,
          'ed': 3,
          'film': 3,
          'love': 3,
          'like': 3,
          'art': 3,
          'krasner': 3,
          'killing': 3,
          'marcia': 2,
          'gay': 2,
          'harden': 2,
          'jennifer': 2,
          'connelly': 2,
          'jackson': 2,
          'movie': 2,
          'know': 2,
          'making': 2,
          'njackson': 2,
          'famous': 2,
          'thing': 2,
          'nthe': 2,
          'actor': 2,
          'director': 2,
          'artist': 2,
          'na': 2,
          'paint': 2,
          'leaves': 2,
          'marrying': 2,
          'would': 2,
          'wife': 2,
          'one': 2,
          'nyou': 2,
          'namuth': 2,
          'starring': 1,
          'tom': 1,
          'bower': 1,
          'screenplay': 1,
          'barbara': 1,
          'turner': 1,
          'susan': 1,
          'j': 1,
          'emshwiller': 1,
          'based': 1,
          'book': 1,
          'american': 1,
          'saga': 1,
          'steven': 1,
          'naifeh': 1,
          'gregory': 1,
          'white': 1,
          'smith': 1,
          'directed': 1,
          'dvd': 1,
          'books': 1,
          'reviews': 1,
          'plus': 1,
          'annual': 1,
          'coverage': 1,
          'toronto': 1,
          'international': 1,
          'festival': 1,
          'visit': 1,
          '_film': 1,
          'freak': 1,
          'central_': 1,
          'http': 1,
          'filmfreakcentral': 1,
          'net': 1,
          'search': 1,
          'engine': 1,
          'youre': 1,
          'finished': 1,
          'life': 1,
          'magazine': 1,
          'reporter': 1,
          'recognizing': 1,
          'youve': 1,
          'completed': 1,
          'painting': 1,
          'quote': 1,
          'practically': 1,
          'breath': 1,
          'said': 1,
          'constructive': 1,
          'looking': 1,
          'bed': 1,
          'flowerstear': 1,
          'hair': 1,
          'means': 1,
          'nit': 1,
          'took': 1,
          'sixteen': 1,
          'words': 1,
          'whole': 1,
          'dissertations': 1,
          'tried': 1,
          'failed': 1,
          'equate': 1,
          'god': 1,
          'abstract': 1,
          'offer': 1,
          'kind': 1,
          'backhanded': 1,
          'comfort': 1,
          'confused': 1,
          'point': 1,
          'resentment': 1,
          'concept': 1,
          'biopic': 1,
          'directorial': 1,
          'debut': 1,
          'reflects': 1,
          'second': 1,
          'soundbite': 1,
          'accepts': 1,
          'creations': 1,
          'part': 1,
          'order': 1,
          'things': 1,
          'similarly': 1,
          'disarm': 1,
          'haters': 1,
          'fine': 1,
          'narguably': 1,
          'living': 1,
          'also': 1,
          'plays': 1,
          'embodies': 1,
          'archetypal': 1,
          'working': 1,
          'stiff': 1,
          'bluecollar': 1,
          'demystification': 1,
          'labourintensive': 1,
          'performer': 1,
          'makes': 1,
          'unpretentious': 1,
          'cinema': 1,
          'born': 1,
          'gifted': 1,
          'lucky': 1,
          'instead': 1,
          'strong': 1,
          'work': 1,
          'ethic': 1,
          'seed': 1,
          'success': 1,
          'ngranted': 1,
          'possible': 1,
          'alienate': 1,
          'viewers': 1,
          'perplexed': 1,
          'imponderable': 1,
          'purpose': 1,
          'splatter': 1,
          'series': 1,
          'common': 1,
          'thread': 1,
          'lack': 1,
          'editorializing': 1,
          'purposeful': 1,
          'gazes': 1,
          'silent': 1,
          'exchanges': 1,
          'dotted': 1,
          'tantrums': 1,
          'motivations': 1,
          'left': 1,
          'perceptions': 1,
          'nand': 1,
          'sympathetic': 1,
          'yet': 1,
          'altogether': 1,
          'forgiving': 1,
          'illustrated': 1,
          'disheartening': 1,
          'conclusion': 1,
          'n_pollock_': 1,
          'encapsulates': 1,
          'period': 1,
          'fought': 1,
          'losing': 1,
          'battle': 1,
          'personal': 1,
          'demons': 1,
          'alcoholism': 1,
          'depression': 1,
          'general': 1,
          'attendant': 1,
          'miseries': 1,
          'finding': 1,
          'place': 1,
          'subconscious': 1,
          'expression': 1,
          'brief': 1,
          'introduction': 1,
          'raging': 1,
          'drunk': 1,
          'side': 1,
          'segues': 1,
          'getting': 1,
          'accosted': 1,
          'fellow': 1,
          'new': 1,
          'york': 1,
          'lee': 1,
          'awarded': 1,
          'best': 1,
          'supporting': 1,
          'actress': 1,
          'oscar': 1,
          'brilliant': 1,
          'portrayal': 1,
          'works': 1,
          'outsidein': 1,
          'preintellectualizing': 1,
          'every': 1,
          'stroke': 1,
          'brush': 1,
          'nin': 1,
          'scene': 1,
          'moved': 1,
          'together': 1,
          'established': 1,
          'adjoining': 1,
          'studios': 1,
          'asks': 1,
          'hopes': 1,
          'achieve': 1,
          'latest': 1,
          'canvas': 1,
          'grilling': 1,
          'interplay': 1,
          'cubism': 1,
          'surrealism': 1,
          'says': 1,
          'fucking': 1,
          'huff': 1,
          'nby': 1,
          'time': 1,
          'wed': 1,
          'become': 1,
          'de': 1,
          'facto': 1,
          'manager': 1,
          'form': 1,
          'function': 1,
          'chaos': 1,
          'discipline': 1,
          'harmonious': 1,
          'collision': 1,
          'denies': 1,
          'baby': 1,
          'indicating': 1,
          'upset': 1,
          'balance': 1,
          'nsuch': 1,
          'union': 1,
          'destined': 1,
          'implode': 1,
          'hope': 1,
          'im': 1,
          'ruining': 1,
          'experience': 1,
          'saying': 1,
          'nwhile': 1,
          'never': 1,
          'depicted': 1,
          'romantic': 1,
          'matrimony': 1,
          'startpollock': 1,
          'channel': 1,
          'passions': 1,
          'elsewheretheir': 1,
          'symbiosis': 1,
          'picked': 1,
          'dry': 1,
          'several': 1,
          'years': 1,
          'comes': 1,
          'suffering': 1,
          'conniptions': 1,
          'many': 1,
          'aside': 1,
          'amy': 1,
          'madigan': 1,
          'unrecognizable': 1,
          'exceptional': 1,
          'gallery': 1,
          'diva': 1,
          'peggy': 1,
          'guggenheim': 1,
          'npollock': 1,
          'moves': 1,
          'dalliances': 1,
          'younger': 1,
          'women': 1,
          'ruth': 1,
          'klingman': 1,
          'scorching': 1,
          'hoping': 1,
          'supposes': 1,
          'catch': 1,
          'revitalizing': 1,
          'whiff': 1,
          'youth': 1,
          'ni': 1,
          'stuff': 1,
          'enamoured': 1,
          'well': 1,
          'nits': 1,
          'scrappy': 1,
          'observant': 1,
          'coincidence': 1,
          'minor': 1,
          'failings': 1,
          'occasional': 1,
          'invasive': 1,
          'flourish': 1,
          'jeff': 1,
          'beals': 1,
          'hummable': 1,
          'less': 1,
          'lamentable': 1,
          'scorei': 1,
          'cant': 1,
          'imagine': 1,
          'anyone': 1,
          'music': 1,
          'puts': 1,
          'filling': 1,
          'soundtrack': 1,
          'voids': 1,
          'ahead': 1,
          'complementing': 1,
          'images': 1,
          'none': 1,
          'favourite': 1,
          'sequences': 1,
          'eerily': 1,
          'quiet': 1,
          'reenactment': 1,
          'hans': 1,
          'shooting': 1,
          'footage': 1,
          'east': 1,
          'hampton': 1,
          'long': 1,
          'island': 1,
          'mounting': 1,
          'tension': 1,
          'almost': 1,
          'comic': 1,
          'keeps': 1,
          'interrupting': 1,
          'process': 1,
          'reload': 1,
          'camera': 1,
          'take': 1,
          'dinner': 1,
          'break': 1,
          'seasoned': 1,
          'mightve': 1,
          'arrogant': 1,
          'admit': 1,
          'artists': 1,
          'mediums': 1,
          'created': 1,
          'equal': 1,
          'npos': 1}),
 Counter({'tarzan': 10,
          'disney': 4,
          'film': 4,
          'animation': 4,
          'nthe': 4,
          'big': 4,
          'like': 3,
          'nothing': 3,
          'find': 3,
          'gorilla': 3,
          'nas': 3,
          'classic': 2,
          'along': 2,
          'years': 2,
          'hercules': 2,
          'nbut': 2,
          'rice': 2,
          'burroughs': 2,
          'new': 2,
          'family': 2,
          'tarzans': 2,
          'forced': 2,
          'voiced': 2,
          'effective': 2,
          'close': 2,
          'mother': 2,
          'pack': 2,
          'raised': 2,
          'one': 2,
          'nof': 2,
          'course': 2,
          'characters': 2,
          'quite': 2,
          'guy': 2,
          'game': 2,
          'clayton': 2,
          'brian': 2,
          'blessed': 2,
          'whos': 2,
          'jane': 2,
          'character': 2,
          'also': 2,
          'nthere': 2,
          'presence': 2,
          'much': 2,
          'long': 1,
          'time': 1,
          'since': 1,
          'walt': 1,
          'delivered': 1,
          'us': 1,
          'lines': 1,
          'little': 1,
          'mermaid': 1,
          'beauty': 1,
          'beast': 1,
          'nsure': 1,
          'delightful': 1,
          'outings': 1,
          'last': 1,
          'entirely': 1,
          'groundbreaking': 1,
          'nwith': 1,
          'release': 1,
          'studios': 1,
          'newest': 1,
          'feature': 1,
          'length': 1,
          'remake': 1,
          'edgar': 1,
          'creation': 1,
          'plunged': 1,
          'waters': 1,
          'maturity': 1,
          'techniques': 1,
          'nits': 1,
          'represents': 1,
          'exactly': 1,
          'plot': 1,
          'loyal': 1,
          'original': 1,
          'storyline': 1,
          'parents': 1,
          'abandon': 1,
          'ship': 1,
          'caught': 1,
          'fire': 1,
          'shelter': 1,
          'jungles': 1,
          'africa': 1,
          'killed': 1,
          'offscreen': 1,
          'snarling': 1,
          'cheetah': 1,
          'sabor': 1,
          'leaving': 1,
          'baby': 1,
          'alone': 1,
          'unharmed': 1,
          'crib': 1,
          'nfound': 1,
          'kala': 1,
          'gentleness': 1,
          'glenn': 1,
          'kindhearted': 1,
          'member': 1,
          'taken': 1,
          'primate': 1,
          'group': 1,
          'nwe': 1,
          'follow': 1,
          'young': 1,
          'boy': 1,
          'partakes': 1,
          'various': 1,
          'adventures': 1,
          'loud': 1,
          'mouth': 1,
          'friend': 1,
          'terk': 1,
          'brash': 1,
          'funny': 1,
          'rosie': 1,
          'odonnell': 1,
          'clumsy': 1,
          'elephant': 1,
          'tantor': 1,
          'wayne': 1,
          'knight': 1,
          'given': 1,
          'kind': 1,
          'goofy': 1,
          'sidekick': 1,
          'humorous': 1,
          'chum': 1,
          'hero': 1,
          'nin': 1,
          'fill': 1,
          'space': 1,
          'rather': 1,
          'inconspicuously': 1,
          'ngags': 1,
          'magnified': 1,
          'films': 1,
          'kept': 1,
          'minor': 1,
          'nmost': 1,
          'amusing': 1,
          'without': 1,
          'grows': 1,
          'manhood': 1,
          'suspected': 1,
          'antagonist': 1,
          'stumbles': 1,
          'picture': 1,
          'nhere': 1,
          'notorious': 1,
          'bad': 1,
          'hunter': 1,
          'accompanying': 1,
          'hapless': 1,
          'professor': 1,
          'nigel': 1,
          'hawthorne': 1,
          'expedition': 1,
          'jungle': 1,
          'theres': 1,
          'professors': 1,
          'daughter': 1,
          'nicely': 1,
          'vocalized': 1,
          'cheerful': 1,
          'minnie': 1,
          'driver': 1,
          'help': 1,
          'supply': 1,
          'romantic': 1,
          'quotient': 1,
          'movie': 1,
          'thing': 1,
          'blew': 1,
          'socks': 1,
          'version': 1,
          'stunning': 1,
          'ndirectors': 1,
          'chris': 1,
          'buck': 1,
          'kevin': 1,
          'lima': 1,
          'applied': 1,
          'breathtaking': 1,
          '3d': 1,
          'element': 1,
          'movement': 1,
          'athletic': 1,
          'title': 1,
          'fastpaced': 1,
          'editing': 1,
          'absolutely': 1,
          'marvel': 1,
          'carries': 1,
          'treetops': 1,
          'narrowly': 1,
          'escaping': 1,
          'nasty': 1,
          'baboons': 1,
          'slips': 1,
          'slides': 1,
          'daredevil': 1,
          'snow': 1,
          'boarder': 1,
          'star': 1,
          'surfer': 1,
          'riding': 1,
          'wave': 1,
          'nyour': 1,
          'eyes': 1,
          'barely': 1,
          'keep': 1,
          'fantastic': 1,
          'accomplishment': 1,
          'subject': 1,
          'matter': 1,
          'notch': 1,
          'two': 1,
          'average': 1,
          'important': 1,
          'questions': 1,
          'place': 1,
          'world': 1,
          'handled': 1,
          'exceptionally': 1,
          'well': 1,
          'screenwriters': 1,
          'shred': 1,
          'doubt': 1,
          'left': 1,
          'ponder': 1,
          'afterward': 1,
          'surprising': 1,
          'plus': 1,
          'wasnt': 1,
          'expecting': 1,
          'nsuffice': 1,
          'say': 1,
          'adults': 1,
          'children': 1,
          'thoroughly': 1,
          'entertained': 1,
          'grownup': 1,
          'tony': 1,
          'goldwyn': 1,
          'made': 1,
          'name': 1,
          'mean': 1,
          'jerk': 1,
          'ghost': 1,
          'ngoldwyn': 1,
          'playing': 1,
          'someone': 1,
          'aware': 1,
          'worlds': 1,
          'dangers': 1,
          'nglenn': 1,
          'memorable': 1,
          'lance': 1,
          'henriksen': 1,
          'tvs': 1,
          'millennium': 1,
          'terrific': 1,
          'silverback': 1,
          'father': 1,
          'unsure': 1,
          'accept': 1,
          'human': 1,
          'child': 1,
          'movies': 1,
          'villain': 1,
          'particularly': 1,
          'special': 1,
          'catching': 1,
          'nit': 1,
          'helps': 1,
          'supplies': 1,
          'voice': 1,
          'enthusiasm': 1,
          'compared': 1,
          'james': 1,
          'woods': 1,
          'hilarious': 1,
          'hades': 1,
          'na': 1,
          'burley': 1,
          'gun': 1,
          'wants': 1,
          'capture': 1,
          'gorillas': 1,
          'constitute': 1,
          'alltogether': 1,
          'noticeable': 1,
          'screen': 1,
          'nstill': 1,
          'great': 1,
          'thrillride': 1,
          'constructed': 1,
          'ni': 1,
          'never': 1,
          'expected': 1,
          'work': 1,
          'transformed': 1,
          'successfully': 1,
          'live': 1,
          'action': 1,
          'emotional': 1,
          'depth': 1,
          'nparents': 1,
          'kiddies': 1,
          'going': 1,
          'npos': 1}),
 Counter({'film': 13,
          'much': 6,
          'wars': 5,
          'phantom': 5,
          'menace': 5,
          'star': 5,
          'skywalker': 4,
          'nthe': 4,
          'many': 4,
          'see': 3,
          'nwhile': 3,
          'jedi': 3,
          'young': 3,
          'anakin': 3,
          'critics': 3,
          'special': 3,
          'fun': 3,
          'times': 3,
          'really': 3,
          'blow': 2,
          'plot': 2,
          'difficult': 2,
          'makes': 2,
          'nwith': 2,
          'level': 2,
          'would': 2,
          'definitely': 2,
          'expectations': 2,
          'story': 2,
          'luke': 2,
          'kenobi': 2,
          'become': 2,
          'planet': 2,
          'naboo': 2,
          'played': 2,
          'direction': 2,
          'actors': 2,
          'effects': 2,
          'nstill': 2,
          'previous': 2,
          'films': 2,
          'nthere': 2,
          'race': 2,
          'made': 2,
          'something': 2,
          'bit': 2,
          'jar': 2,
          'character': 2,
          'although': 2,
          'seems': 2,
          'warning': 1,
          'actually': 1,
          'wish': 1,
          'stop': 1,
          'reading': 1,
          'dont': 1,
          'details': 1,
          'know': 1,
          'movie': 1,
          'disappointing': 1,
          'built': 1,
          'becomes': 1,
          'waiting': 1,
          'month': 1,
          'titanic': 1,
          'thing': 1,
          'nbut': 1,
          'nutshell': 1,
          'good': 1,
          'nstar': 1,
          'episode': 1,
          'reviewed': 1,
          'vince': 1,
          'yim': 1,
          'nnever': 1,
          'biggest': 1,
          'fanatic': 1,
          'world': 1,
          'trek': 1,
          'next': 1,
          'generation': 1,
          'relate': 1,
          'mass': 1,
          'fandom': 1,
          'surrounding': 1,
          'latest': 1,
          'installment': 1,
          'nhowever': 1,
          'cant': 1,
          'ignored': 1,
          'nendless': 1,
          'toys': 1,
          'lining': 1,
          'shelves': 1,
          'endless': 1,
          'news': 1,
          'reports': 1,
          'multibillion': 1,
          'dollar': 1,
          'advertising': 1,
          'campaign': 1,
          'hype': 1,
          'one': 1,
          'recall': 1,
          'overhyped': 1,
          'disaster': 1,
          '1998': 1,
          'godzilla': 1,
          'failed': 1,
          'live': 1,
          'nthankfully': 1,
          'better': 1,
          'first': 1,
          'trilogy': 1,
          'told': 1,
          'knight': 1,
          'prequels': 1,
          'backpedal': 1,
          'tell': 1,
          'backstory': 1,
          'obi': 1,
          'wan': 1,
          'named': 1,
          'father': 1,
          'eventually': 1,
          'darth': 1,
          'vader': 1,
          'nwithout': 1,
          'blowing': 1,
          'evolves': 1,
          'around': 1,
          'peaceful': 1,
          'held': 1,
          'hostage': 1,
          'greedy': 1,
          'trade': 1,
          'federation': 1,
          'two': 1,
          'knights': 1,
          'quigon': 1,
          'ji': 1,
          'liam': 1,
          'neeson': 1,
          'obiwan': 1,
          'ewan': 1,
          'mcgreggor': 1,
          'free': 1,
          'taken': 1,
          'literal': 1,
          'beating': 1,
          'various': 1,
          'leaving': 1,
          'lower': 1,
          'somewhat': 1,
          'ncommon': 1,
          'complaints': 1,
          'range': 1,
          'lack': 1,
          'characterization': 1,
          'weak': 1,
          'narrative': 1,
          'poor': 1,
          'dated': 1,
          'style': 1,
          'focus': 1,
          'often': 1,
          'apply': 1,
          'historical': 1,
          'theory': 1,
          'regards': 1,
          'criticism': 1,
          'average': 1,
          'buff': 1,
          'care': 1,
          'nhence': 1,
          'lot': 1,
          'improvement': 1,
          'even': 1,
          'improvements': 1,
          'editions': 1,
          'memorable': 1,
          'sequences': 1,
          'throughout': 1,
          'ranging': 1,
          'fast': 1,
          'furious': 1,
          'pod': 1,
          'sequence': 1,
          'take': 1,
          'chariot': 1,
          'races': 1,
          'ben': 1,
          'hur': 1,
          'fight': 1,
          'scenes': 1,
          'involving': 1,
          'legions': 1,
          'battle': 1,
          'droids': 1,
          'nutilizing': 1,
          'technology': 1,
          'light': 1,
          'years': 1,
          'beyond': 1,
          'anything': 1,
          'computers': 1,
          'used': 1,
          'create': 1,
          'everything': 1,
          'monsters': 1,
          'robots': 1,
          'amazing': 1,
          'cityscapes': 1,
          'incredible': 1,
          'detail': 1,
          'nno': 1,
          'matter': 1,
          'watch': 1,
          'catch': 1,
          'new': 1,
          'humour': 1,
          'higher': 1,
          'well': 1,
          'mostly': 1,
          'conveyed': 1,
          'reluctant': 1,
          'hero': 1,
          'binks': 1,
          'belongs': 1,
          'known': 1,
          'gungans': 1,
          'nbest': 1,
          'described': 1,
          'mr': 1,
          'bean': 1,
          'steals': 1,
          'show': 1,
          'nunfortunately': 1,
          'computergenerated': 1,
          'tells': 1,
          'natalie': 1,
          'portman': 1,
          'queen': 1,
          'pretty': 1,
          'effective': 1,
          'jake': 1,
          'lloyd': 1,
          'mania': 1,
          'time': 1,
          'high': 1,
          'risk': 1,
          'disappoint': 1,
          'doubts': 1,
          'tendency': 1,
          'logic': 1,
          'problems': 1,
          'several': 1,
          'things': 1,
          'left': 1,
          'unchecked': 1,
          'diehard': 1,
          'fans': 1,
          'appearance': 1,
          'tusken': 1,
          'raiders': 1,
          'laughs': 1,
          'nthat': 1,
          'annoying': 1,
          'coming': 1,
          'smarmy': 1,
          'arrogant': 1,
          'brat': 1,
          'attitude': 1,
          'wonder': 1,
          'turns': 1,
          'dark': 1,
          'side': 1,
          'people': 1,
          'especially': 1,
          'missing': 1,
          'point': 1,
          '2': 1,
          'half': 1,
          'hours': 1,
          'youll': 1,
          'life': 1,
          'wouldnt': 1,
          'mind': 1,
          'may': 1,
          'psychological': 1,
          'impact': 1,
          'academy': 1,
          'award': 1,
          'contender': 1,
          'cares': 1,
          'pure': 1,
          'beginning': 1,
          'end': 1,
          'nand': 1,
          'isnt': 1,
          'matters': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'love': 5,
          'american': 4,
          'americans': 3,
          'right': 3,
          'flynt': 3,
          'nbut': 3,
          'great': 3,
          'america': 2,
          'political': 2,
          'paradox': 2,
          'exist': 2,
          'movies': 2,
          'born': 2,
          'people': 2,
          'larry': 2,
          'pornography': 2,
          'last': 2,
          'movie': 2,
          'picture': 2,
          'harrelson': 2,
          'atheist': 2,
          'courtney': 2,
          'award': 2,
          'much': 2,
          'like': 2,
          'go': 2,
          'beyond': 2,
          'nthis': 2,
          'doubt': 2,
          'blah': 2,
          'shows': 1,
          'remains': 1,
          'ambivalent': 1,
          'nature': 1,
          'system': 1,
          'nno': 1,
          'major': 1,
          'surprise': 1,
          'j': 1,
          'mill': 1,
          'victorian': 1,
          'classic': 1,
          'liberty': 1,
          'could': 1,
          'make': 1,
          'mind': 1,
          'liberal': 1,
          'democracy': 1,
          'either': 1,
          'wrought': 1,
          'archetypal': 1,
          'supreme': 1,
          'contradiction': 1,
          'one': 1,
          'majority': 1,
          'nsmall': 1,
          'wonder': 1,
          'hollywoods': 1,
          'compelling': 1,
          'oft': 1,
          'struggle': 1,
          'individualunderdog': 1,
          'larger': 1,
          'collective': 1,
          'oppressive': 1,
          'witness': 1,
          'braveheart': 1,
          'fourth': 1,
          'july': 1,
          'rocky': 1,
          'first': 1,
          'blood': 1,
          'clear': 1,
          'present': 1,
          'danger': 1,
          'jfk': 1,
          'list': 1,
          'goes': 1,
          'ntheres': 1,
          'little': 1,
          'singapore': 1,
          'barred': 1,
          'access': 1,
          'playboy': 1,
          'penthouse': 1,
          'line': 1,
          'though': 1,
          'governments': 1,
          'long': 1,
          'worried': 1,
          'younger': 1,
          'getting': 1,
          'americanised': 1,
          'advocating': 1,
          'individual': 1,
          'rights': 1,
          'parliamentary': 1,
          'opposition': 1,
          'vs': 1,
          'locates': 1,
          'debate': 1,
          'within': 1,
          'greatest': 1,
          'social': 1,
          'taboo': 1,
          'sex': 1,
          'ndoes': 1,
          'circulate': 1,
          'nlarry': 1,
          'publisher': 1,
          'hustler': 1,
          'magazine': 1,
          'thinks': 1,
          'obviously': 1,
          'u': 1,
          'congress': 1,
          'month': 1,
          'threw': 1,
          'bill': 1,
          'curb': 1,
          'net': 1,
          'even': 1,
          'actions': 1,
          'remain': 1,
          'undecided': 1,
          'oscars': 1,
          'apparently': 1,
          'shunned': 1,
          'embarrassing': 1,
          'sensitive': 1,
          'livewire': 1,
          'nwhat': 1,
          'ignored': 1,
          'actually': 1,
          'nwoody': 1,
          'lead': 1,
          'character': 1,
          'reprises': 1,
          'role': 1,
          'tohellwithmorality': 1,
          'tohellwiththelaw': 1,
          'tohellwiththesystem': 1,
          'antichrist': 1,
          'saw': 1,
          'natural': 1,
          'killers': 1,
          'nand': 1,
          'outrageous': 1,
          'convincing': 1,
          'nihilistic': 1,
          'nonetheless': 1,
          'loves': 1,
          'exstripper': 1,
          'wife': 1,
          'dearly': 1,
          'latter': 1,
          'played': 1,
          'abandon': 1,
          'conviction': 1,
          'sensitivity': 1,
          'real': 1,
          'star': 1,
          'show': 1,
          'really': 1,
          'snubbed': 1,
          'academy': 1,
          'best': 1,
          'actress': 1,
          'nomination': 1,
          'nedward': 1,
          'norton': 1,
          'plays': 1,
          'jerky': 1,
          'lawyer': 1,
          'relationship': 1,
          'brings': 1,
          'another': 1,
          'superficially': 1,
          'immoral': 1,
          'outcasts': 1,
          'whove': 1,
          'coming': 1,
          'woody': 1,
          'gets': 1,
          'shot': 1,
          'becomes': 1,
          'paralysed': 1,
          'waist': 1,
          'dies': 1,
          'aids': 1,
          'ngods': 1,
          'damnation': 1,
          'powerful': 1,
          'standing': 1,
          'turn': 1,
          'two': 1,
          'leads': 1,
          'highlight': 1,
          'question': 1,
          'nihilist': 1,
          'still': 1,
          'moralist': 1,
          'context': 1,
          'christian': 1,
          'care': 1,
          'feel': 1,
          'anyone': 1,
          'else': 1,
          'personal': 1,
          'level': 1,
          'nfriedrich': 1,
          'nietzsche': 1,
          'talked': 1,
          'must': 1,
          'uncover': 1,
          'full': 1,
          'consequences': 1,
          'atheism': 1,
          'ridding': 1,
          'moralchristian': 1,
          'influences': 1,
          'nto': 1,
          'good': 1,
          'evil': 1,
          'personally': 1,
          'nbecause': 1,
          'moving': 1,
          'funny': 1,
          'ends': 1,
          'open': 1,
          'optimism': 1,
          'admire': 1,
          'comes': 1,
          'fine': 1,
          'tradition': 1,
          'dares': 1,
          'raise': 1,
          'difficult': 1,
          'questions': 1,
          'call': 1,
          'ideas': 1,
          'doctrines': 1,
          'otherwise': 1,
          'used': 1,
          'catchphrases': 1,
          'nthere': 1,
          'times': 1,
          'story': 1,
          'tell': 1,
          'reflect': 1,
          'something': 1,
          'hidden': 1,
          'realities': 1,
          'society': 1,
          'npos': 1}),
 Counter({'film': 5,
          'horror': 4,
          'nthe': 4,
          'ring': 3,
          'one': 2,
          'ive': 2,
          'films': 2,
          'really': 2,
          'long': 2,
          'movie': 2,
          'west': 2,
          'much': 2,
          'gore': 2,
          'something': 2,
          'japanese': 2,
          'japan': 2,
          'week': 2,
          'prior': 2,
          'husband': 2,
          'plot': 2,
          'audience': 2,
          'probably': 1,
          'creepiest': 1,
          'movies': 1,
          'seen': 1,
          'years': 1,
          'nbut': 1,
          'always': 1,
          'phobia': 1,
          'asian': 1,
          'born': 1,
          'ni': 1,
          'remember': 1,
          'kid': 1,
          'scared': 1,
          'hell': 1,
          'green': 1,
          'faced': 1,
          'longhaired': 1,
          'floating': 1,
          'ghosts': 1,
          'donning': 1,
          'white': 1,
          'gownseuuugh': 1,
          'brings': 1,
          'back': 1,
          'memories': 1,
          'grips': 1,
          'ended': 1,
          'nunlike': 1,
          'coming': 1,
          'im': 1,
          'pretty': 1,
          'used': 1,
          'visual': 1,
          'effects': 1,
          'become': 1,
          'rather': 1,
          'bland': 1,
          'nowadays': 1,
          'ntheres': 1,
          'scary': 1,
          'time': 1,
          'nif': 1,
          'mind': 1,
          'please': 1,
          'tell': 1,
          'nthis': 1,
          'flick': 1,
          'supposed': 1,
          'based': 1,
          'upon': 1,
          'stories': 1,
          'written': 1,
          'stephen': 1,
          'king': 1,
          'also': 1,
          'heard': 1,
          'televised': 1,
          'air': 1,
          'revolves': 1,
          'around': 1,
          'mysterious': 1,
          'videotape': 1,
          'bring': 1,
          'death': 1,
          'sure': 1,
          'person': 1,
          'watches': 1,
          'viewing': 1,
          'na': 1,
          'journalist': 1,
          'stupid': 1,
          'enough': 1,
          'tests': 1,
          'call': 1,
          'urban': 1,
          'legend': 1,
          'ends': 1,
          'meets': 1,
          'doom': 1,
          'nshe': 1,
          'goes': 1,
          'search': 1,
          'origin': 1,
          'videocassette': 1,
          'get': 1,
          'root': 1,
          'whole': 1,
          'curse': 1,
          'hopes': 1,
          'freeing': 1,
          'plays': 1,
          'senses': 1,
          'like': 1,
          'today': 1,
          'nvisual': 1,
          'subtlety': 1,
          'minimal': 1,
          'music': 1,
          'intriguing': 1,
          'puts': 1,
          'within': 1,
          'aura': 1,
          'suspense': 1,
          'throughout': 1,
          'entire': 1,
          'nvery': 1,
          'well': 1,
          'done': 1,
          'indeed': 1,
          'especially': 1,
          'single': 1,
          'trace': 1,
          'violence': 1,
          'nnow': 1,
          'thats': 1,
          'budding': 1,
          'filmmaker': 1,
          'wannabes': 1,
          'consider': 1,
          'looking': 1,
          'njust': 1,
          'idea': 1,
          'visually': 1,
          'powerful': 1,
          'subtitled': 1,
          'chinese': 1,
          'cant': 1,
          'understand': 1,
          'ok': 1,
          'friend': 1,
          'gave': 1,
          'gist': 1,
          'watching': 1,
          'revealed': 1,
          'little': 1,
          'twists': 1,
          'leading': 1,
          'unforgettable': 1,
          'climax': 1,
          'definitely': 1,
          'leave': 1,
          'impression': 1,
          'edge': 1,
          'seat': 1,
          'npos': 1}),
 Counter({'movie': 8,
          'know': 8,
          'deep': 7,
          'rising': 7,
          'b': 7,
          'good': 6,
          'movies': 5,
          'us': 4,
          'guy': 4,
          'nthe': 3,
          'big': 3,
          'person': 3,
          'always': 3,
          'funny': 3,
          'times': 3,
          'n': 3,
          'one': 2,
          'kind': 2,
          'except': 2,
          'like': 2,
          'see': 2,
          'monsters': 2,
          'little': 2,
          'nof': 2,
          'course': 2,
          'fails': 2,
          'explain': 2,
          'effects': 2,
          'explosions': 2,
          'things': 2,
          'actually': 2,
          'time': 2,
          'behind': 2,
          'door': 2,
          'said': 2,
          'make': 2,
          'nwe': 2,
          'dont': 2,
          'ni': 2,
          'went': 2,
          'treat': 2,
          'couple': 2,
          'man': 2,
          'hell': 2,
          'live': 2,
          'glasses': 2,
          'dies': 2,
          'black': 2,
          'nhow': 2,
          'kill': 2,
          'fifteen': 2,
          'minutes': 2,
          'need': 2,
          'firepower': 2,
          'go': 2,
          'serves': 1,
          'purpose': 1,
          'entertain': 1,
          'nit': 1,
          'ask': 1,
          'think': 1,
          'important': 1,
          'questions': 1,
          'life': 1,
          'planets': 1,
          'possibility': 1,
          'god': 1,
          'screw': 1,
          'says': 1,
          'boldly': 1,
          'lets': 1,
          'computer': 1,
          'generated': 1,
          'rip': 1,
          'decapitate': 1,
          'generally': 1,
          'cause': 1,
          'irreparable': 1,
          'booboos': 1,
          'bunch': 1,
          'known': 1,
          'actors': 1,
          'nheh': 1,
          'nthem': 1,
          'wacky': 1,
          'got': 1,
          'ta': 1,
          'love': 1,
          'em': 1,
          'since': 1,
          'rent': 1,
          'thousand': 1,
          'story': 1,
          'hollywood': 1,
          'must': 1,
          'give': 1,
          'extra': 1,
          'oumph': 1,
          'get': 1,
          'people': 1,
          'theaters': 1,
          'nthat': 1,
          'thing': 1,
          'nconfused': 1,
          'nlet': 1,
          'ndespite': 1,
          'flashy': 1,
          'still': 1,
          'heart': 1,
          'ol': 1,
          'nluckily': 1,
          'worst': 1,
          'cliches': 1,
          'history': 1,
          'bread': 1,
          'butter': 1,
          'ntherefore': 1,
          'would': 1,
          'destroy': 1,
          'serious': 1,
          'help': 1,
          'watching': 1,
          'lower': 1,
          'calibre': 1,
          'theres': 1,
          'slimy': 1,
          'creature': 1,
          'wander': 1,
          'picked': 1,
          'monster': 1,
          'persons': 1,
          'alive': 1,
          'horrible': 1,
          'expections': 1,
          'low': 1,
          'tolerance': 1,
          'bad': 1,
          'dialogue': 1,
          'high': 1,
          'nimagine': 1,
          'surprise': 1,
          'discover': 1,
          'well': 1,
          'pretty': 1,
          'darn': 1,
          'na': 1,
          'nwell': 1,
          'thats': 1,
          'new': 1,
          'nthese': 1,
          'flicks': 1,
          'supposed': 1,
          'laugh': 1,
          'unintended': 1,
          'laughs': 1,
          'nand': 1,
          'williams': 1,
          'wes': 1,
          'studi': 1,
          'famke': 1,
          'jansen': 1,
          'appear': 1,
          'screen': 1,
          'nhey': 1,
          'guys': 1,
          'gal': 1,
          'ncool': 1,
          'nfamiliar': 1,
          'faces': 1,
          'nso': 1,
          'far': 1,
          'nour': 1,
          'hero': 1,
          'nwes': 1,
          'staple': 1,
          'token': 1,
          'victim': 1,
          'buy': 1,
          'farm': 1,
          'take': 1,
          'creeps': 1,
          'way': 1,
          'nfamke': 1,
          'babe': 1,
          'nuff': 1,
          'nthere': 1,
          'also': 1,
          'buffs': 1,
          'never': 1,
          'nerdy': 1,
          'ah': 1,
          'ncomic': 1,
          'relief': 1,
          'possibly': 1,
          'let': 1,
          'nhim': 1,
          'nafter': 1,
          'first': 1,
          'felt': 1,
          'right': 1,
          'home': 1,
          'root': 1,
          'boo': 1,
          'gum': 1,
          'chew': 1,
          'please': 1,
          'nsuffice': 1,
          'say': 1,
          'next': 1,
          'hour': 1,
          'half': 1,
          'jumped': 1,
          'seat': 1,
          'ewwww': 1,
          'dozen': 1,
          'nearly': 1,
          'orgasm': 1,
          'heroes': 1,
          'packing': 1,
          'nim': 1,
          'nottice': 1,
          'nall': 1,
          'id': 1,
          'recommend': 1,
          'looking': 1,
          'care': 1,
          'leave': 1,
          'brain': 1,
          'nbring': 1,
          'sense': 1,
          'humor': 1,
          'excitement': 1,
          'acting': 1,
          'decent': 1,
          'top': 1,
          'rate': 1,
          'best': 1,
          'describe': 1,
          'nput': 1,
          'together': 1,
          'jet': 1,
          'ski': 1,
          'scene': 1,
          'hard': 1,
          'rain': 1,
          'bug': 1,
          'attacks': 1,
          'starship': 1,
          'troopers': 1,
          'james': 1,
          'bond': 1,
          'stunts': 1,
          'scenes': 1,
          'friday': 1,
          'thirteenth': 1,
          'freddy': 1,
          'keep': 1,
          'screaming': 1,
          'hes': 1,
          'end': 1,
          'nfor': 1,
          'creepy': 1,
          'crawly': 1,
          'goodness': 1,
          'tight': 1,
          'tshirts': 1,
          'major': 1,
          'bathroom': 1,
          'every': 1,
          'seing': 1,
          'water': 1,
          'npos': 1}),
 Counter({'lestat': 10,
          'nthe': 8,
          'dark': 6,
          'vampire': 5,
          'film': 5,
          'luis': 5,
          'beautiful': 5,
          'young': 4,
          'louis': 4,
          'new': 4,
          'films': 3,
          'interesting': 3,
          'rices': 3,
          'life': 3,
          'eternal': 3,
          'nwhen': 3,
          'script': 3,
          'like': 3,
          'well': 2,
          'horror': 2,
          'meant': 2,
          'scare': 2,
          'neil': 2,
          'jordans': 2,
          'also': 2,
          'novel': 2,
          'opens': 2,
          'gothic': 2,
          'man': 2,
          'darkness': 2,
          'n': 2,
          'story': 2,
          'pitt': 2,
          'nhis': 2,
          'orleans': 2,
          'tom': 2,
          'cruise': 2,
          'one': 2,
          'never': 2,
          'damned': 2,
          'hunger': 2,
          'blood': 2,
          'kill': 2,
          'claudia': 2,
          'dunst': 2,
          'nbut': 2,
          'claudias': 2,
          'paris': 2,
          'stephen': 2,
          'rea': 2,
          'banderas': 2,
          'world': 2,
          'incredible': 2,
          'everything': 2,
          'direction': 2,
          'casting': 2,
          'incredibly': 2,
          'effective': 2,
          'loneliness': 2,
          'less': 2,
          'emotional': 2,
          'little': 2,
          'child': 2,
          'eternity': 2,
          'nclaudia': 2,
          'nmoments': 2,
          'issues': 2,
          'usually': 1,
          'dumb': 1,
          'predictable': 1,
          'bmovies': 1,
          'us': 1,
          'cliches': 1,
          'simple': 1,
          'shocks': 1,
          'nit': 1,
          'therefore': 1,
          'watch': 1,
          'recent': 1,
          'visually': 1,
          'stunning': 1,
          'plot': 1,
          'worth': 1,
          'making': 1,
          'movies': 1,
          'nbased': 1,
          'anne': 1,
          'interview': 1,
          'long': 1,
          'trip': 1,
          'hell': 1,
          'quire': 1,
          'streets': 1,
          'presentday': 1,
          'san': 1,
          'francisco': 1,
          'camera': 1,
          'slowly': 1,
          'find': 1,
          'particular': 1,
          'window': 1,
          'na': 1,
          'shape': 1,
          'visible': 1,
          'want': 1,
          'tell': 1,
          'mysterious': 1,
          'brad': 1,
          'twocentury': 1,
          'old': 1,
          'telling': 1,
          'fascinated': 1,
          'interviewer': 1,
          'christian': 1,
          'slater': 1,
          'tale': 1,
          '1791': 1,
          'louisiana': 1,
          'south': 1,
          'falls': 1,
          'victim': 1,
          'ngiven': 1,
          'choice': 1,
          'death': 1,
          'undead': 1,
          'chooses': 1,
          'latter': 1,
          'decision': 1,
          'forever': 1,
          'regret': 1,
          'neverlasting': 1,
          'youth': 1,
          'promised': 1,
          'turn': 1,
          'instead': 1,
          'ending': 1,
          'suffering': 1,
          'longing': 1,
          'peace': 1,
          'nlouis': 1,
          'impunity': 1,
          'sate': 1,
          'must': 1,
          'feed': 1,
          'animals': 1,
          'enough': 1,
          'neventually': 1,
          'pierces': 1,
          'neck': 1,
          'griefstricken': 1,
          'girl': 1,
          'named': 1,
          'kirsten': 1,
          'curses': 1,
          'unholy': 1,
          'form': 1,
          'resurrection': 1,
          'surrogate': 1,
          'daughter': 1,
          'nfor': 1,
          'big': 1,
          'happy': 1,
          'family': 1,
          'things': 1,
          'end': 1,
          'growing': 1,
          'resentment': 1,
          'fuels': 1,
          'bloody': 1,
          'confrontation': 1,
          'break': 1,
          'loose': 1,
          'travel': 1,
          'eurovamps': 1,
          'santiago': 1,
          'armand': 1,
          'antonio': 1,
          'introduced': 1,
          'bigger': 1,
          'ndirector': 1,
          'jordan': 1,
          'crying': 1,
          'game': 1,
          'together': 1,
          'talented': 1,
          'director': 1,
          'cinematography': 1,
          'philippe': 1,
          'rousselot': 1,
          'composer': 1,
          'elliot': 1,
          'goldenthal': 1,
          'created': 1,
          'atmosphere': 1,
          'nas': 1,
          'begins': 1,
          'palette': 1,
          'colors': 1,
          'sunrises': 1,
          'lush': 1,
          'golden': 1,
          'fields': 1,
          'green': 1,
          'forests': 1,
          'inkyblue': 1,
          'clouds': 1,
          'blending': 1,
          'sun': 1,
          'born': 1,
          'suddenly': 1,
          'changes': 1,
          'velvet': 1,
          'lit': 1,
          'silver': 1,
          'moonlight': 1,
          'production': 1,
          'design': 1,
          'dante': 1,
          'ferretti': 1,
          'wonderful': 1,
          'costumes': 1,
          'art': 1,
          'malcolm': 1,
          'middleton': 1,
          'recreate': 1,
          'multiple': 1,
          'historical': 1,
          'periods': 1,
          'nfrom': 1,
          'renaissance': 1,
          'rococo': 1,
          '18th': 1,
          'century': 1,
          'present': 1,
          'days': 1,
          'likewise': 1,
          'good': 1,
          'involving': 1,
          'famous': 1,
          'stars': 1,
          'hollywood': 1,
          'ireland': 1,
          'spain': 1,
          'controversial': 1,
          'ncruise': 1,
          'energetic': 1,
          'sinister': 1,
          'charismatic': 1,
          'wild': 1,
          'bloodthirsty': 1,
          'ncruises': 1,
          'likes': 1,
          'seduce': 1,
          'women': 1,
          'exacting': 1,
          'red': 1,
          'sustenance': 1,
          'nwith': 1,
          'alarming': 1,
          'swiftness': 1,
          'victims': 1,
          'switch': 1,
          'sexual': 1,
          'excitement': 1,
          'outright': 1,
          'murderous': 1,
          'purpose': 1,
          'becomes': 1,
          'clear': 1,
          'mercifully': 1,
          'nyou': 1,
          'ndo': 1,
          'doubt': 1,
          'killer': 1,
          'nthat': 1,
          'teaching': 1,
          'behind': 1,
          'furious': 1,
          'facade': 1,
          'anger': 1,
          'carries': 1,
          'centuries': 1,
          'tries': 1,
          'smother': 1,
          'nightly': 1,
          'rampages': 1,
          'nbrad': 1,
          'equally': 1,
          'convincing': 1,
          'human': 1,
          'soul': 1,
          'nantonio': 1,
          'since': 1,
          'play': 1,
          'secondary': 1,
          'characters': 1,
          'performances': 1,
          'almost': 1,
          'invisible': 1,
          'greatest': 1,
          'performance': 1,
          'comes': 1,
          'suprisingly': 1,
          'kristen': 1,
          'manages': 1,
          'create': 1,
          'believable': 1,
          'character': 1,
          'changing': 1,
          'around': 1,
          'nshe': 1,
          'remains': 1,
          'unchangeable': 1,
          'nonly': 1,
          'wise': 1,
          'eyes': 1,
          'reveal': 1,
          'age': 1,
          'nironically': 1,
          'miss': 1,
          'nanne': 1,
          'read': 1,
          'rich': 1,
          'colorful': 1,
          'tiering': 1,
          'melancholic': 1,
          'times': 1,
          'resembling': 1,
          'soap': 1,
          'opera': 1,
          'nlet': 1,
          'go': 1,
          'nfather': 1,
          'made': 1,
          'look': 1,
          'angel': 1,
          'gone': 1,
          'nluis': 1,
          'alright': 1,
          'really': 1,
          'believe': 1,
          'nand': 1,
          'hug': 1,
          'emotionally': 1,
          'displayed': 1,
          'selfpity': 1,
          'bit': 1,
          'tiresome': 1,
          'nhowever': 1,
          'otherwise': 1,
          'strong': 1,
          'structured': 1,
          'bringing': 1,
          'humor': 1,
          'comic': 1,
          'episodes': 1,
          'hidden': 1,
          'book': 1,
          'finds': 1,
          'dead': 1,
          'dressmaker': 1,
          'killed': 1,
          'cries': 1,
          'make': 1,
          'dress': 1,
          'nbe': 1,
          'practical': 1,
          'nin': 1,
          'house': 1,
          'entertaining': 1,
          'appealing': 1,
          'nneil': 1,
          'sensual': 1,
          'plays': 1,
          'homosexuality': 1,
          'love': 1,
          'saga': 1,
          'display': 1,
          'differently': 1,
          'nwrapped': 1,
          'mystery': 1,
          'original': 1,
          'picture': 1,
          'brings': 1,
          'vampirefilms': 1,
          'height': 1,
          'npos': 1}),
 Counter({'film': 20,
          'nthe': 7,
          'alice': 7,
          'nbill': 6,
          'see': 6,
          'bill': 6,
          'party': 5,
          'nhe': 5,
          'kidman': 4,
          'nthis': 4,
          'strange': 4,
          'minutes': 3,
          'kubrick': 3,
          'ni': 3,
          'follows': 3,
          'another': 3,
          'bit': 3,
          'one': 3,
          'nthey': 3,
          'friend': 3,
          'gets': 3,
          'opportunity': 3,
          'home': 3,
          'hooker': 3,
          'young': 3,
          'events': 3,
          'shot': 2,
          'time': 2,
          '2': 2,
          'cruise': 2,
          'hardford': 2,
          'pollack': 2,
          'leelee': 2,
          'sobieski': 2,
          'nick': 2,
          'inspired': 2,
          'state': 2,
          'ncruise': 2,
          'scene': 2,
          'two': 2,
          'would': 2,
          'suggest': 2,
          'sex': 2,
          'look': 2,
          'translation': 2,
          'dream': 2,
          'makes': 2,
          'shooting': 2,
          'got': 2,
          'lighting': 2,
          'much': 2,
          'looks': 2,
          'nas': 2,
          'good': 2,
          'occur': 2,
          'least': 2,
          'apartment': 2,
          'almost': 2,
          'quite': 2,
          'version': 2,
          'supposed': 2,
          'next': 2,
          'little': 2,
          'starts': 2,
          'getting': 2,
          'go': 2,
          'old': 2,
          'medical': 2,
          'school': 2,
          'flirting': 2,
          'called': 2,
          'day': 2,
          'previous': 2,
          'women': 2,
          'nin': 2,
          'patients': 2,
          'daughter': 2,
          'nwhen': 2,
          'affair': 2,
          'wife': 2,
          'heads': 2,
          'night': 2,
          'meets': 2,
          'girl': 2,
          'father': 2,
          'nafter': 2,
          'woman': 2,
          'together': 2,
          'life': 2,
          'point': 2,
          'many': 2,
          'major': 1,
          'spoilers': 1,
          'forwarned': 1,
          'wont': 1,
          'appear': 1,
          'till': 1,
          'later': 1,
          'article': 1,
          'youre': 1,
          'safe': 1,
          'neyes': 1,
          'wide': 1,
          '1999': 1,
          'running': 1,
          'hours': 1,
          '39': 1,
          '35': 1,
          '1': 1,
          'theatrical': 1,
          'aspect': 1,
          'nstarring': 1,
          'tom': 1,
          'dr': 1,
          'nicole': 1,
          'sidney': 1,
          'todd': 1,
          'field': 1,
          'nightingale': 1,
          'directed': 1,
          'cowritten': 1,
          'produced': 1,
          'stanley': 1,
          'traumnovelle': 1,
          'arthur': 1,
          'schnitzer': 1,
          'interesting': 1,
          'must': 1,
          'first': 1,
          'musnt': 1,
          'believe': 1,
          'rumors': 1,
          'cross': 1,
          'dresser': 1,
          'doesnt': 1,
          'shoot': 1,
          'heroin': 1,
          'theres': 1,
          'aided': 1,
          'therapist': 1,
          'book': 1,
          'written': 1,
          'novel': 1,
          'thing': 1,
          'titled': 1,
          'nthere': 1,
          'noticable': 1,
          'amount': 1,
          'graininess': 1,
          'nrather': 1,
          'complain': 1,
          'may': 1,
          'already': 1,
          'style': 1,
          'gather': 1,
          'kick': 1,
          'natural': 1,
          'light': 1,
          'could': 1,
          'like': 1,
          'pushed': 1,
          'stops': 1,
          'add': 1,
          'grain': 1,
          'brighten': 1,
          'slightly': 1,
          'auteur': 1,
          'stickler': 1,
          'details': 1,
          'seemed': 1,
          'lax': 1,
          'great': 1,
          'deal': 1,
          'bloopersflubs': 1,
          'nyou': 1,
          'lots': 1,
          'boom': 1,
          'shots': 1,
          'reflection': 1,
          'camera': 1,
          'twice': 1,
          'n16': 1,
          'months': 1,
          'nwow': 1,
          'nreflection': 1,
          'biggest': 1,
          'killer': 1,
          'ntheir': 1,
          'everything': 1,
          'casts': 1,
          'reflections': 1,
          'crew': 1,
          'seen': 1,
          'glaringly': 1,
          'none': 1,
          'topic': 1,
          'heated': 1,
          'discussion': 1,
          'saw': 1,
          'austin': 1,
          'powers': 1,
          'perfectly': 1,
          'frank': 1,
          'unless': 1,
          'know': 1,
          'overlays': 1,
          'youll': 1,
          'probably': 1,
          'ntwo': 1,
          'girls': 1,
          'standing': 1,
          'suspicious': 1,
          'wait': 1,
          'unrated': 1,
          'video': 1,
          'way': 1,
          'nspoilers': 1,
          'ready': 1,
          'xmas': 1,
          'soiree': 1,
          'elegant': 1,
          'seems': 1,
          'storagehouse': 1,
          'equipment': 1,
          'actually': 1,
          'owned': 1,
          'runs': 1,
          'partys': 1,
          'entertainment': 1,
          'nsoon': 1,
          'others': 1,
          'thinking': 1,
          'noticed': 1,
          'help': 1,
          'partygoer': 1,
          'casually': 1,
          'smoking': 1,
          'marijunana': 1,
          'bedroom': 1,
          'discuss': 1,
          'nights': 1,
          'flirtations': 1,
          'discover': 1,
          'knew': 1,
          'talking': 1,
          'provide': 1,
          'relationship': 1,
          'extremely': 1,
          'angry': 1,
          'hazy': 1,
          'tells': 1,
          'acted': 1,
          'cheat': 1,
          'caring': 1,
          'possible': 1,
          'aftereffects': 1,
          'away': 1,
          'dies': 1,
          'goes': 1,
          'console': 1,
          'engaged': 1,
          'plea': 1,
          'love': 1,
          'affection': 1,
          'struck': 1,
          'images': 1,
          'never': 1,
          'occured': 1,
          'naval': 1,
          'officer': 1,
          'sees': 1,
          'betrayal': 1,
          'continue': 1,
          'interrupted': 1,
          'strolls': 1,
          'encounters': 1,
          'nseeing': 1,
          'arise': 1,
          'toy': 1,
          'around': 1,
          'act': 1,
          'ensues': 1,
          'calls': 1,
          'cell': 1,
          'phone': 1,
          'breaks': 1,
          'date': 1,
          'back': 1,
          'passes': 1,
          'lounge': 1,
          'notices': 1,
          'buddy': 1,
          'playing': 1,
          'reveals': 1,
          'extra': 1,
          'scratch': 1,
          'plays': 1,
          'parties': 1,
          'blindfolded': 1,
          'intrigued': 1,
          'wants': 1,
          'nnick': 1,
          'reluctantly': 1,
          'sets': 1,
          'directions': 1,
          'password': 1,
          'nwhat': 1,
          'short': 1,
          'meeting': 1,
          'obtains': 1,
          'costume': 1,
          'drawn': 1,
          'eye': 1,
          'age': 1,
          'prescence': 1,
          'deter': 1,
          'happening': 1,
          'say': 1,
          'partaking': 1,
          'religious': 1,
          'right': 1,
          'men': 1,
          'pair': 1,
          'orgy': 1,
          'end': 1,
          'orgies': 1,
          'na': 1,
          'warns': 1,
          'disguise': 1,
          'leave': 1,
          'exposed': 1,
          'fraud': 1,
          'detained': 1,
          'second': 1,
          'warning': 1,
          'outed': 1,
          'group': 1,
          'hides': 1,
          'evidence': 1,
          'evenings': 1,
          'nunable': 1,
          'carry': 1,
          'tries': 1,
          'piece': 1,
          'process': 1,
          'finds': 1,
          'disappeared': 1,
          'possibly': 1,
          'danger': 1,
          'warned': 1,
          'died': 1,
          'nim': 1,
          'trying': 1,
          'save': 1,
          'worth': 1,
          'sitting': 1,
          'get': 1,
          '100': 1,
          'despite': 1,
          'strong': 1,
          'family': 1,
          'message': 1,
          'behind': 1,
          'nit': 1,
          'hard': 1,
          'pidgeonhole': 1,
          'certain': 1,
          'kind': 1,
          'nits': 1,
          'nudity': 1,
          'drugs': 1,
          'immoralistic': 1,
          'values': 1,
          'nbut': 1,
          'serve': 1,
          'show': 1,
          'bad': 1,
          'ones': 1,
          'recommend': 1,
          'highly': 1,
          'merits': 1,
          'rarely': 1,
          'longer': 1,
          '5': 1,
          'opening': 1,
          'secrecy': 1,
          'shrouded': 1,
          'hopefully': 1,
          'apparent': 1,
          'kept': 1,
          'npos': 1}),
 Counter({'robin': 6,
          'film': 5,
          'picture': 5,
          'nand': 4,
          'hood': 4,
          'nrobin': 4,
          'old': 3,
          'even': 3,
          'high': 3,
          'story': 3,
          'best': 3,
          'acting': 3,
          'nthe': 3,
          'movie': 3,
          'one': 2,
          'kids': 2,
          'nalthough': 2,
          'films': 2,
          'viewed': 2,
          'ones': 2,
          'color': 2,
          'family': 2,
          'classic': 2,
          'section': 2,
          'adventures': 2,
          'three': 2,
          'sir': 2,
          'smile': 2,
          'charms': 2,
          'audience': 2,
          'clearly': 2,
          'popular': 2,
          'rhodes': 2,
          'much': 2,
          'without': 2,
          'rich': 2,
          'poor': 2,
          'gives': 2,
          'nin': 2,
          'king': 2,
          'role': 2,
          'scene': 2,
          'win': 2,
          'doesnt': 2,
          'like': 2,
          'people': 2,
          'bloody': 2,
          'nothing': 2,
          'favorite': 2,
          'fun': 1,
          'activity': 1,
          'parents': 1,
          'holidays': 1,
          'suggest': 1,
          'see': 1,
          'interest': 1,
          'blackandwhite': 1,
          'frequently': 1,
          'suspect': 1,
          'greeted': 1,
          'open': 1,
          'mind': 1,
          'find': 1,
          'colorful': 1,
          'action': 1,
          'six': 1,
          'decades': 1,
          'ago': 1,
          'real': 1,
          'possibility': 1,
          'take': 1,
          'home': 1,
          'hit': 1,
          'nso': 1,
          'wandered': 1,
          'local': 1,
          'video': 1,
          'store': 1,
          'day': 1,
          'picked': 1,
          'copy': 1,
          'spirited': 1,
          'version': 1,
          'walter': 1,
          'scott': 1,
          'nnominated': 1,
          '1938': 1,
          'academy': 1,
          'award': 1,
          'winner': 1,
          'oscars': 1,
          'erich': 1,
          'wolfgang': 1,
          'korngolds': 1,
          'melodramatic': 1,
          'music': 1,
          'ralph': 1,
          'dawsons': 1,
          'fast': 1,
          'paced': 1,
          'editing': 1,
          'carl': 1,
          'jules': 1,
          'weyls': 1,
          'lush': 1,
          'sets': 1,
          'probably': 1,
          'remembered': 1,
          'errol': 1,
          'flynns': 1,
          'charismatic': 1,
          'locksley': 1,
          'k': 1,
          'nflynn': 1,
          'handsome': 1,
          'figure': 1,
          'toothy': 1,
          'time': 1,
          'nlet': 1,
          'cut': 1,
          'chase': 1,
          'say': 1,
          'tape': 1,
          'indeed': 1,
          'household': 1,
          'littlest': 1,
          'jeffrey': 1,
          'age': 1,
          '8': 1,
          'liked': 1,
          'least': 1,
          'times': 1,
          'maybe': 1,
          'nill': 1,
          'let': 1,
          'discuss': 1,
          'fascination': 1,
          'usual': 1,
          'end': 1,
          'review': 1,
          'nsimply': 1,
          'stated': 1,
          'derives': 1,
          'success': 1,
          'genre': 1,
          'swashbuckler': 1,
          'eartoear': 1,
          'fights': 1,
          'hundred': 1,
          'men': 1,
          'scratch': 1,
          'considered': 1,
          'little': 1,
          '1930s': 1,
          'james': 1,
          'bond': 1,
          'production': 1,
          'values': 1,
          'raise': 1,
          'level': 1,
          'steals': 1,
          'every': 1,
          'schoolchild': 1,
          'knows': 1,
          'however': 1,
          'seems': 1,
          'less': 1,
          'interested': 1,
          'income': 1,
          'redistribution': 1,
          'fighting': 1,
          'country': 1,
          'courage': 1,
          'athletic': 1,
          'skills': 1,
          'serves': 1,
          'model': 1,
          'lovely': 1,
          'olivia': 1,
          'de': 1,
          'havilland': 1,
          'playing': 1,
          'dreamyeyed': 1,
          'lady': 1,
          'marian': 1,
          'fitzswalter': 1,
          'heavy': 1,
          'romantic': 1,
          'overtones': 1,
          'nfilmed': 1,
          'typical': 1,
          'richly': 1,
          'oversaturated': 1,
          'colors': 1,
          'produced': 1,
          'early': 1,
          'technicolor': 1,
          'flesh': 1,
          'tones': 1,
          'overly': 1,
          'pink': 1,
          'subtleties': 1,
          'match': 1,
          'perfectly': 1,
          'wonderfully': 1,
          'exaggerated': 1,
          'players': 1,
          'nwho': 1,
          'wouldnt': 1,
          'fall': 1,
          'shows': 1,
          'incognito': 1,
          'archery': 1,
          'contest': 1,
          'outcome': 1,
          'preordained': 1,
          'course': 1,
          'splitting': 1,
          'mans': 1,
          'arrow': 1,
          'nwatching': 1,
          'today': 1,
          'provide': 1,
          'jarring': 1,
          'moments': 1,
          'nsherlock': 1,
          'holmes': 1,
          'villain': 1,
          'guy': 1,
          'gisbourne': 1,
          'example': 1,
          'seem': 1,
          'right': 1,
          'basil': 1,
          'rathbone': 1,
          'reallife': 1,
          'identity': 1,
          'outside': 1,
          'famous': 1,
          'wigs': 1,
          'makeup': 1,
          'department': 1,
          'bad': 1,
          'look': 1,
          'rejects': 1,
          'mel': 1,
          'brooks': 1,
          'comedy': 1,
          'nas': 1,
          'cinema': 1,
          'era': 1,
          'die': 1,
          'gentle': 1,
          'prick': 1,
          'sword': 1,
          'nasty': 1,
          'holes': 1,
          'spoil': 1,
          'wardrobe': 1,
          'looks': 1,
          'nbad': 1,
          'guys': 1,
          'banished': 1,
          'rather': 1,
          'killed': 1,
          'lovers': 1,
          'go': 1,
          'handinhand': 1,
          'explicitly': 1,
          'sexual': 1,
          'kissing': 1,
          'result': 1,
          'wonderful': 1,
          'fairy': 1,
          'tale': 1,
          'delightful': 1,
          'cartoonish': 1,
          'figures': 1,
          'nhollywood': 1,
          'rarely': 1,
          'makes': 1,
          'quality': 1,
          'anymore': 1,
          'try': 1,
          'savor': 1,
          'runs': 1,
          '1': 1,
          '42': 1,
          'nit': 1,
          'rated': 1,
          'containing': 1,
          'absolutely': 1,
          'offensive': 1,
          'would': 1,
          'get': 1,
          'g': 1,
          'rating': 1,
          'fine': 1,
          'ages': 1,
          'njeffrey': 1,
          'thinks': 1,
          'great': 1,
          'nhe': 1,
          'recommends': 1,
          'particularly': 1,
          'likely': 1,
          'pictures': 1,
          'hates': 1,
          'sight': 1,
          'blood': 1,
          'movies': 1,
          'nhis': 1,
          'parts': 1,
          'battles': 1,
          'ending': 1,
          'characters': 1,
          'richard': 1,
          'ian': 1,
          'hunter': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'one': 6,
          'film': 6,
          'little': 6,
          'zorro': 5,
          'action': 4,
          'banderas': 4,
          'movie': 3,
          'comedy': 3,
          'nhowever': 3,
          'bad': 3,
          'jones': 3,
          'put': 3,
          'plot': 3,
          'adventure': 2,
          'money': 2,
          'big': 2,
          'nhopkins': 2,
          'vega': 2,
          'rafael': 2,
          'montero': 2,
          'wilson': 2,
          'also': 2,
          'still': 2,
          'wants': 2,
          'hes': 2,
          'nbanderas': 2,
          'letscher': 2,
          'keeps': 2,
          'scene': 2,
          'sword': 2,
          'hopkins': 2,
          'chemistry': 2,
          'seems': 2,
          'excellent': 2,
          'seem': 2,
          'dimensional': 2,
          'guy': 2,
          'provides': 2,
          'ntheres': 2,
          'together': 2,
          'well': 2,
          'nalthough': 2,
          'theres': 2,
          'barely': 2,
          'nit': 2,
          'gold': 2,
          'swashbuckling': 1,
          'enjoyed': 1,
          'children': 1,
          'adults': 1,
          'nsteven': 1,
          'spielberg': 1,
          'may': 1,
          'directed': 1,
          'executive': 1,
          'produced': 1,
          'touch': 1,
          'certainly': 1,
          'evident': 1,
          'nand': 1,
          'knows': 1,
          'making': 1,
          'winner': 1,
          'sees': 1,
          'mask': 1,
          'hallmarks': 1,
          'blockbuster': 1,
          'funny': 1,
          'pacing': 1,
          'rollercoaster': 1,
          'plays': 1,
          'diego': 1,
          'de': 1,
          'la': 1,
          'otherwise': 1,
          'known': 1,
          'na': 1,
          'fighter': 1,
          'people': 1,
          'eventually': 1,
          'captured': 1,
          'stuart': 1,
          'unintentionally': 1,
          'kills': 1,
          'wife': 1,
          'cuts': 1,
          'twenty': 1,
          'years': 1,
          'later': 1,
          'dead': 1,
          'far': 1,
          'old': 1,
          'trains': 1,
          'thief': 1,
          'alejandro': 1,
          'murrieta': 1,
          'become': 1,
          'new': 1,
          'motive': 1,
          'nto': 1,
          'avenge': 1,
          'death': 1,
          'brother': 1,
          'killed': 1,
          'hands': 1,
          'captain': 1,
          'love': 1,
          'matthew': 1,
          'rather': 1,
          'tastefully': 1,
          'head': 1,
          'jar': 1,
          'graphic': 1,
          'scenes': 1,
          'family': 1,
          'nwith': 1,
          'set': 1,
          'goes': 1,
          'full': 1,
          'blast': 1,
          'fights': 1,
          'aplenty': 1,
          'witty': 1,
          'liners': 1,
          'marvellous': 1,
          'two': 1,
          'zorros': 1,
          'playing': 1,
          'ease': 1,
          'come': 1,
          'better': 1,
          'work': 1,
          'nas': 1,
          'guys': 1,
          'go': 1,
          'shtick': 1,
          'average': 1,
          'way': 1,
          'audience': 1,
          'hate': 1,
          'cant': 1,
          'ncatherine': 1,
          'zetajones': 1,
          'pops': 1,
          'daughter': 1,
          'although': 1,
          'usual': 1,
          'female': 1,
          'lead': 1,
          'delivers': 1,
          'charming': 1,
          'note': 1,
          'performance': 1,
          'delightful': 1,
          'fight': 1,
          'every': 1,
          'swipe': 1,
          'item': 1,
          'clothing': 1,
          'gets': 1,
          'slashed': 1,
          'clothes': 1,
          'fall': 1,
          'director': 1,
          'fresh': 1,
          'enjoyable': 1,
          'goldeneye': 1,
          '1995': 1,
          'handles': 1,
          'perfectly': 1,
          'done': 1,
          'fast': 1,
          'paced': 1,
          'across': 1,
          'cast': 1,
          'help': 1,
          'lot': 1,
          'direction': 1,
          'outstanding': 1,
          'long': 1,
          'chugging': 1,
          'along': 1,
          'dull': 1,
          'moment': 1,
          'indulgent': 1,
          'could': 1,
          'trimmed': 1,
          'manages': 1,
          'hold': 1,
          'attention': 1,
          'thankfully': 1,
          'charm': 1,
          'holds': 1,
          'right': 1,
          'last': 1,
          'reel': 1,
          'nscreenwriters': 1,
          'john': 1,
          'eskow': 1,
          'ted': 1,
          'elliot': 1,
          'terry': 1,
          'rosio': 1,
          'unfortunately': 1,
          'written': 1,
          'cliched': 1,
          'script': 1,
          'theyve': 1,
          'bought': 1,
          'date': 1,
          'explosions': 1,
          'wild': 1,
          'existent': 1,
          'lots': 1,
          'sub': 1,
          'plots': 1,
          'hanging': 1,
          'around': 1,
          'nothing': 1,
          'substantial': 1,
          'bring': 1,
          'main': 1,
          'story': 1,
          'fact': 1,
          'buy': 1,
          'california': 1,
          'using': 1,
          'stolen': 1,
          'buying': 1,
          'land': 1,
          'nthis': 1,
          'sets': 1,
          'temple': 1,
          'doom': 1,
          'type': 1,
          'see': 1,
          'peasants': 1,
          'slave': 1,
          'driven': 1,
          'getting': 1,
          'mines': 1,
          'doesnt': 1,
          'appear': 1,
          'nearly': 1,
          'hour': 1,
          'never': 1,
          'quite': 1,
          'sure': 1,
          'going': 1,
          'nin': 1,
          'end': 1,
          'however': 1,
          'spades': 1,
          'suitable': 1,
          'everyone': 1,
          'guilt': 1,
          'behind': 1,
          'spielbergs': 1,
          'bank': 1,
          'account': 1,
          'nyou': 1,
          'wont': 1,
          'regret': 1,
          'npos': 1}),
 Counter({'generation': 7,
          'without': 5,
          'film': 5,
          'dean': 5,
          'rebel': 4,
          'cause': 4,
          'nthis': 4,
          'america': 3,
          'shows': 3,
          'also': 3,
          'stark': 3,
          'past': 3,
          'american': 2,
          'everyone': 2,
          'relate': 2,
          'different': 2,
          'way': 2,
          'belong': 2,
          'universal': 2,
          'emotions': 2,
          'nno': 2,
          'matter': 2,
          'actions': 2,
          'nin': 2,
          'strong': 2,
          'change': 2,
          'people': 2,
          'could': 2,
          'parents': 2,
          'neven': 2,
          'scene': 2,
          'wood': 2,
          'cool': 2,
          'coolness': 2,
          'nthe': 2,
          'still': 2,
          'even': 2,
          'end': 2,
          'important': 1,
          'history': 1,
          'true': 1,
          'analysis': 1,
          'youth': 1,
          'ages': 1,
          'neveryone': 1,
          'feels': 1,
          'dont': 1,
          'places': 1,
          'successfully': 1,
          'screen': 1,
          'feelings': 1,
          'present': 1,
          'james': 1,
          'admired': 1,
          'represents': 1,
          'us': 1,
          'would': 1,
          'execute': 1,
          'minds': 1,
          'try': 1,
          'right': 1,
          'thing': 1,
          'like': 1,
          'deans': 1,
          'jim': 1,
          'nnot': 1,
          'display': 1,
          'suffered': 1,
          'uniqe': 1,
          'pattern': 1,
          'social': 1,
          'structure': 1,
          'neach': 1,
          'looks': 1,
          'connection': 1,
          'times': 1,
          'response': 1,
          'popular': 1,
          'grows': 1,
          'older': 1,
          'newer': 1,
          'breeds': 1,
          'look': 1,
          'light': 1,
          'friends': 1,
          'never': 1,
          'form': 1,
          'relationship': 1,
          'insisted': 1,
          'rebellious': 1,
          'troublesome': 1,
          'teens': 1,
          'believe': 1,
          'one': 1,
          'humorous': 1,
          'girlfriend': 1,
          'judy': 1,
          'natalie': 1,
          'pal': 1,
          'plato': 1,
          'sal': 1,
          'mineo': 1,
          'pretend': 1,
          'adults': 1,
          'nthey': 1,
          'use': 1,
          'upper': 1,
          'class': 1,
          'british': 1,
          'accents': 1,
          'conversations': 1,
          'make': 1,
          'appear': 1,
          'kids': 1,
          'good': 1,
          'ignored': 1,
          'complete': 1,
          'opposite': 1,
          'another': 1,
          'nspeaking': 1,
          'behalf': 1,
          'feel': 1,
          'lost': 1,
          'lot': 1,
          'perspective': 1,
          'years': 1,
          'grown': 1,
          'ones': 1,
          'seem': 1,
          'lionize': 1,
          'members': 1,
          'ngoes': 1,
          'brando': 1,
          'redford': 1,
          'deniro': 1,
          'ni': 1,
          'imagine': 1,
          'vaguely': 1,
          'matt': 1,
          'damon': 1,
          'ben': 1,
          'affleck': 1,
          'brad': 1,
          'pitt': 1,
          'viewed': 1,
          'mid': 1,
          'point': 1,
          'twenty': 1,
          'first': 1,
          'century': 1,
          'nwill': 1,
          'remembered': 1,
          'newcomers': 1,
          'forgotten': 1,
          'nany': 1,
          'sparks': 1,
          'kind': 1,
          'thought': 1,
          'certainly': 1,
          'milestone': 1,
          'ridiculous': 1,
          'scenes': 1,
          'game': 1,
          'chicken': 1,
          'really': 1,
          'act': 1,
          'unbelievable': 1,
          'conclusion': 1,
          'abandoned': 1,
          'mansion': 1,
          'silly': 1,
          'romance': 1,
          'declares': 1,
          'love': 1,
          'talking': 1,
          'couple': 1,
          'hours': 1,
          'fabulous': 1,
          'acting': 1,
          'believable': 1,
          'wonder': 1,
          'considered': 1,
          'epitome': 1,
          'nnow': 1,
          'however': 1,
          'fading': 1,
          'npos': 1}),
 Counter({'mamet': 5,
          'winslow': 5,
          'still': 4,
          'david': 3,
          'seems': 3,
          'boy': 3,
          'arthur': 3,
          'man': 3,
          'n': 3,
          'case': 3,
          'fairly': 3,
          'make': 3,
          'films': 3,
          'movie': 3,
          'director': 2,
          'dialogue': 2,
          'style': 2,
          'nearly': 2,
          'require': 2,
          'look': 2,
          'plot': 2,
          'concealed': 2,
          'even': 2,
          'real': 2,
          'time': 2,
          'century': 2,
          'nhe': 2,
          'ronnie': 2,
          'didnt': 2,
          'enough': 2,
          'oldest': 2,
          'daughter': 2,
          'pidgeon': 2,
          'help': 2,
          'sir': 2,
          'robert': 2,
          'morton': 2,
          'nit': 2,
          'nbut': 2,
          'nthe': 2,
          'mamets': 2,
          'wonderful': 2,
          'performance': 2,
          'nhis': 2,
          'game': 2,
          'like': 2,
          'courtroom': 2,
          'without': 2,
          'long': 1,
          'favorite': 1,
          'screenwriter': 1,
          'nwith': 1,
          'distinctive': 1,
          'often': 1,
          'ingenious': 1,
          'laid': 1,
          'back': 1,
          'direction': 1,
          'movies': 1,
          'absolutely': 1,
          'irresistible': 1,
          'nsome': 1,
          'tend': 1,
          'thickly': 1,
          'layered': 1,
          'deceptive': 1,
          'productions': 1,
          'audience': 1,
          'film': 1,
          'less': 1,
          'superficial': 1,
          'manner': 1,
          'order': 1,
          'discern': 1,
          'message': 1,
          'sometimes': 1,
          'storyline': 1,
          'nand': 1,
          'although': 1,
          'new': 1,
          'project': 1,
          'slightly': 1,
          'conspicuous': 1,
          'endeavors': 1,
          'brilliantly': 1,
          'complex': 1,
          'consistently': 1,
          'riveting': 1,
          'motion': 1,
          'picture': 1,
          'honor': 1,
          'sacrifice': 1,
          'difference': 1,
          'commonly': 1,
          'known': 1,
          'justice': 1,
          'right': 1,
          'noh': 1,
          'rated': 1,
          'g': 1,
          'nincidentally': 1,
          'first': 1,
          'decided': 1,
          'adapt': 1,
          'someone': 1,
          'elses': 1,
          'work': 1,
          'namely': 1,
          'play': 1,
          'terrence': 1,
          'rattigan': 1,
          'set': 1,
          '19th': 1,
          'casts': 1,
          'nigel': 1,
          'hawthorne': 1,
          'lead': 1,
          'role': 1,
          'rich': 1,
          'aging': 1,
          'finds': 1,
          '14': 1,
          'year': 1,
          'old': 1,
          'son': 1,
          'kicked': 1,
          'naval': 1,
          'academy': 1,
          'allegedly': 1,
          'stealing': 1,
          '5': 1,
          'shilling': 1,
          'postal': 1,
          'note': 1,
          'asks': 1,
          'father': 1,
          'answers': 1,
          'nthats': 1,
          'rebecca': 1,
          'immediately': 1,
          'starts': 1,
          'crusade': 1,
          'bring': 1,
          'sons': 1,
          'court': 1,
          'nthey': 1,
          'enlist': 1,
          'notorious': 1,
          'attorney': 1,
          'achieve': 1,
          'formidably': 1,
          'daunting': 1,
          'task': 1,
          'frivolous': 1,
          'matter': 1,
          'trial': 1,
          'determined': 1,
          'keep': 1,
          'familys': 1,
          'word': 1,
          'clean': 1,
          'willing': 1,
          'go': 1,
          'quite': 1,
          'far': 1,
          'sure': 1,
          'nsoon': 1,
          'along': 1,
          'rest': 1,
          'country': 1,
          'becomes': 1,
          'equally': 1,
          'wrapped': 1,
          'proceedings': 1,
          'nso': 1,
          'nall': 1,
          'script': 1,
          'tighten': 1,
          'hone': 1,
          'apparent': 1,
          'characters': 1,
          'talk': 1,
          'trademark': 1,
          'staccatto': 1,
          'lines': 1,
          'tension': 1,
          'present': 1,
          'conversations': 1,
          'ordinary': 1,
          'writer': 1,
          'would': 1,
          'able': 1,
          'tense': 1,
          'norm': 1,
          'refreshing': 1,
          'see': 1,
          'deviate': 1,
          'world': 1,
          'crooks': 1,
          'gangsters': 1,
          'con': 1,
          'men': 1,
          'nnigel': 1,
          'hawthornes': 1,
          'flawless': 1,
          'delivery': 1,
          'dignified': 1,
          'yet': 1,
          'pompous': 1,
          'getting': 1,
          'beaten': 1,
          'nwe': 1,
          'pity': 1,
          'also': 1,
          'nrebecca': 1,
          'wife': 1,
          'gave': 1,
          'awful': 1,
          'spanish': 1,
          'prisoner': 1,
          'top': 1,
          'arthurs': 1,
          'flailing': 1,
          'feminist': 1,
          'gives': 1,
          'way': 1,
          'making': 1,
          'lack': 1,
          'success': 1,
          'womens': 1,
          'suffrage': 1,
          'movement': 1,
          'avoids': 1,
          'cliches': 1,
          'seemingly': 1,
          'inevitable': 1,
          'scene': 1,
          'shoots': 1,
          'higher': 1,
          'wants': 1,
          'impact': 1,
          'rather': 1,
          'phony': 1,
          'one': 1,
          'nbe': 1,
          'honest': 1,
          'feel': 1,
          'anything': 1,
          'profound': 1,
          'scenes': 1,
          'kill': 1,
          'nif': 1,
          'wanted': 1,
          'epitome': 1,
          'subtlety': 1,
          'powerful': 1,
          'emotional': 1,
          'sad': 1,
          'trying': 1,
          'depressing': 1,
          'ndavid': 1,
          'churn': 1,
          'great': 1,
          'scripts': 1,
          'proves': 1,
          'ever': 1,
          'doubted': 1,
          'hell': 1,
          'almost': 1,
          'national': 1,
          'treasure': 1,
          'deserve': 1,
          'genre': 1,
          '1999': 1,
          'eugene': 1,
          'novikov137': 1,
          'npos': 1}),
 Counter({'film': 15,
          'cell': 9,
          'stargher': 6,
          'nthe': 6,
          'images': 6,
          'starghers': 5,
          'mind': 5,
          'victim': 4,
          'first': 4,
          'also': 4,
          'project': 3,
          'victims': 3,
          'boys': 3,
          'nas': 3,
          'na': 3,
          'donofrio': 3,
          'like': 3,
          'singh': 3,
          'video': 3,
          'script': 3,
          'sequences': 3,
          'music': 3,
          'one': 3,
          'catherine': 2,
          'deane': 2,
          'try': 2,
          'attempt': 2,
          'moderate': 2,
          'parents': 2,
          'life': 2,
          'mental': 2,
          'vincent': 2,
          'kidnapping': 2,
          'locking': 2,
          'slowly': 2,
          'catatonia': 2,
          'body': 2,
          'nin': 2,
          'completely': 2,
          'lambs': 2,
          'films': 2,
          'seems': 2,
          'contain': 2,
          'elements': 2,
          'feature': 2,
          'r': 2,
          'e': 2,
          'could': 2,
          'contains': 2,
          'remarkable': 2,
          'imagery': 2,
          'would': 2,
          'lead': 2,
          'sequence': 2,
          'far': 2,
          'best': 2,
          'ever': 2,
          'seen': 2,
          'probably': 2,
          'nipple': 2,
          'ring': 2,
          'removal': 2,
          'floor': 2,
          'character': 2,
          'though': 2,
          'violence': 2,
          'disturbing': 2,
          'done': 2,
          'mtv': 2,
          'jennifer': 1,
          'lopez': 1,
          'psychologist': 1,
          'hired': 1,
          'participate': 1,
          'enter': 1,
          'minds': 1,
          'comatose': 1,
          'interact': 1,
          'subconscious': 1,
          'wake': 1,
          'nshe': 1,
          'experiencing': 1,
          'success': 1,
          'young': 1,
          'boy': 1,
          'coma': 1,
          'arent': 1,
          'happy': 1,
          'apparent': 1,
          'lack': 1,
          'progress': 1,
          'toll': 1,
          'job': 1,
          'adverse': 1,
          'affects': 1,
          'regular': 1,
          'trying': 1,
          'assure': 1,
          'wasnt': 1,
          'hard': 1,
          'enough': 1,
          'new': 1,
          'development': 1,
          'arises': 1,
          'furthers': 1,
          'strain': 1,
          'deanes': 1,
          'faculties': 1,
          'vicious': 1,
          'serial': 1,
          'killer': 1,
          'named': 1,
          'carl': 1,
          'women': 1,
          'automated': 1,
          'drowns': 1,
          'matter': 1,
          'days': 1,
          'soaking': 1,
          'corpses': 1,
          'bleach': 1,
          'turn': 1,
          'lifesized': 1,
          'dolls': 1,
          'njust': 1,
          'latest': 1,
          'traumatic': 1,
          'experience': 1,
          'triggers': 1,
          'schizophrenic': 1,
          'virus': 1,
          'brain': 1,
          'causes': 1,
          'sink': 1,
          'eternal': 1,
          'police': 1,
          'led': 1,
          'fbi': 1,
          'agent': 1,
          'peter': 1,
          'novak': 1,
          'vince': 1,
          'vaughn': 1,
          'able': 1,
          'locate': 1,
          'clues': 1,
          'left': 1,
          'dumping': 1,
          'previous': 1,
          'feel': 1,
          'hope': 1,
          'lost': 1,
          'current': 1,
          'due': 1,
          'vegetative': 1,
          'state': 1,
          'last': 1,
          'ditch': 1,
          'ask': 1,
          'scientists': 1,
          'created': 1,
          'undergo': 1,
          'frightening': 1,
          'task': 1,
          'entering': 1,
          'find': 1,
          'location': 1,
          'locked': 1,
          'deadly': 1,
          'fill': 1,
          'water': 1,
          'next': 1,
          '40': 1,
          'hours': 1,
          'ninitial': 1,
          'reports': 1,
          'described': 1,
          'cross': 1,
          'silence': 1,
          'matrix': 1,
          'nwhile': 1,
          'share': 1,
          'characteristics': 1,
          'particularly': 1,
          'forty': 1,
          'minutes': 1,
          'seem': 1,
          'almost': 1,
          'condensed': 1,
          'version': 1,
          'dreamscape': 1,
          'brainstorm': 1,
          'buzz': 1,
          'around': 1,
          'firsttime': 1,
          'director': 1,
          'tarsem': 1,
          'many': 1,
          'awards': 1,
          'losing': 1,
          'religion': 1,
          'wanted': 1,
          'fashion': 1,
          'instead': 1,
          'cohesive': 1,
          'story': 1,
          'good': 1,
          'portion': 1,
          'supports': 1,
          'theory': 1,
          'ndespite': 1,
          'borrowed': 1,
          'aforementioned': 1,
          'several': 1,
          'logically': 1,
          'questionable': 1,
          'moments': 1,
          'nall': 1,
          'delve': 1,
          'someones': 1,
          'incredibly': 1,
          'beautiful': 1,
          'including': 1,
          'dank': 1,
          'whose': 1,
          'thoughts': 1,
          'reminiscent': 1,
          'h': 1,
          'giger': 1,
          'painting': 1,
          'come': 1,
          'mixed': 1,
          'tool': 1,
          'proving': 1,
          'adept': 1,
          'filming': 1,
          'strange': 1,
          'wonderful': 1,
          'acclaim': 1,
          'us': 1,
          'believe': 1,
          'takes': 1,
          'place': 1,
          'featuring': 1,
          'ingenious': 1,
          'traps': 1,
          'ive': 1,
          'involving': 1,
          'horse': 1,
          'seeing': 1,
          'forget': 1,
          'zoolike': 1,
          'display': 1,
          'animated': 1,
          'marionettes': 1,
          'giant': 1,
          'purple': 1,
          'cape': 1,
          'spans': 1,
          'walls': 1,
          'throne': 1,
          'room': 1,
          'nif': 1,
          'continued': 1,
          'within': 1,
          'dirty': 1,
          'monstrous': 1,
          'world': 1,
          'deemed': 1,
          'brilliant': 1,
          'alas': 1,
          'become': 1,
          'silly': 1,
          'go': 1,
          'along': 1,
          'despite': 1,
          'painful': 1,
          'later': 1,
          'cast': 1,
          'basically': 1,
          'excuse': 1,
          'plot': 1,
          'semblance': 1,
          'parade': 1,
          'least': 1,
          'turns': 1,
          'usual': 1,
          'bizarre': 1,
          'psychotic': 1,
          'performance': 1,
          'magnified': 1,
          'ten': 1,
          'thanks': 1,
          'environment': 1,
          'placed': 1,
          'opinion': 1,
          'creepy': 1,
          'actors': 1,
          'choices': 1,
          'late': 1,
          'awful': 1,
          'newton': 1,
          'feeling': 1,
          'minnesota': 1,
          'thirteenth': 1,
          'velocity': 1,
          'gary': 1,
          'begun': 1,
          'rethink': 1,
          'initial': 1,
          'assessment': 1,
          'excellent': 1,
          'role': 1,
          'bit': 1,
          'typecasting': 1,
          'ndetractors': 1,
          'want': 1,
          'stay': 1,
          'away': 1,
          'heavy': 1,
          'doses': 1,
          'nbesides': 1,
          'mention': 1,
          'penchant': 1,
          'hanging': 1,
          'suspended': 1,
          'rings': 1,
          'pierce': 1,
          'back': 1,
          'legs': 1,
          'prior': 1,
          'capture': 1,
          'audiences': 1,
          'recoiling': 1,
          'enters': 1,
          'finds': 1,
          'recreating': 1,
          'disemboweling': 1,
          'pretty': 1,
          'disquieting': 1,
          'none': 1,
          'moment': 1,
          'features': 1,
          'intestines': 1,
          'removed': 1,
          'old': 1,
          'fashioned': 1,
          'hand': 1,
          'cranked': 1,
          'spitlike': 1,
          'device': 1,
          'narrative': 1,
          'sorely': 1,
          'lacking': 1,
          'collection': 1,
          'extremely': 1,
          'well': 1,
          'nalthough': 1,
          'latter': 1,
          'fewer': 1,
          'half': 1,
          'supposedly': 1,
          'set': 1,
          'make': 1,
          'solely': 1,
          'purpose': 1,
          'stringing': 1,
          'together': 1,
          'nunfortunately': 1,
          'wellwritten': 1,
          'considered': 1,
          'without': 1,
          'see': 1,
          'provided': 1,
          'course': 1,
          'allowed': 1,
          'use': 1,
          'graphic': 1,
          'language': 1,
          'videos': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'prince': 6,
          'egypt': 6,
          'moses': 5,
          'movie': 5,
          'first': 4,
          'casting': 3,
          'voice': 3,
          'would': 3,
          'animated': 3,
          'one': 3,
          'make': 3,
          'adults': 3,
          'antz': 3,
          'life': 3,
          'half': 3,
          'probably': 2,
          'kilmer': 2,
          'traditionally': 2,
          'dreamworks': 2,
          'took': 2,
          'department': 2,
          'animation': 2,
          'film': 2,
          'movies': 2,
          'appropriate': 2,
          'quite': 2,
          'much': 2,
          'martin': 2,
          'queen': 2,
          'story': 2,
          'classic': 2,
          'mosess': 2,
          'nwe': 2,
          'finds': 2,
          'ramses': 2,
          'true': 2,
          'identity': 2,
          'nafter': 2,
          'nthis': 2,
          'nit': 2,
          'temple': 2,
          'family': 2,
          'key': 1,
          'part': 1,
          'peoples': 1,
          'candidate': 1,
          'controversial': 1,
          'actor': 1,
          'val': 1,
          'saint': 1,
          'island': 1,
          'dr': 1,
          'nmoreau': 1,
          'dreamworkss': 1,
          'choice': 1,
          'selection': 1,
          'proved': 1,
          'wise': 1,
          'biggest': 1,
          'risk': 1,
          'wasnt': 1,
          'radical': 1,
          'departure': 1,
          'decided': 1,
          'use': 1,
          'medium': 1,
          'biblical': 1,
          'epic': 1,
          'la': 1,
          'cecil': 1,
          'b': 1,
          'demille': 1,
          'move': 1,
          'hearts': 1,
          'minds': 1,
          'rather': 1,
          'tickle': 1,
          'funny': 1,
          'bones': 1,
          'nin': 1,
          'press': 1,
          'kit': 1,
          'producer': 1,
          'penney': 1,
          'cox': 1,
          'says': 1,
          'wanted': 1,
          'based': 1,
          'sophisticated': 1,
          'themes': 1,
          'exclude': 1,
          'children': 1,
          'nanimated': 1,
          'kids': 1,
          'comedies': 1,
          'something': 1,
          'fresh': 1,
          'nlet': 1,
          'admit': 1,
          'upfront': 1,
          'skeptical': 1,
          'whether': 1,
          'could': 1,
          'pull': 1,
          'ndreamworkss': 1,
          'seemed': 1,
          'age': 1,
          'group': 1,
          'may': 1,
          'harder': 1,
          'market': 1,
          'satisfying': 1,
          'nlike': 1,
          'unlike': 1,
          'modest': 1,
          'pixars': 1,
          'bugs': 1,
          'egpyt': 1,
          'hollywood': 1,
          'voices': 1,
          'ndanny': 1,
          'glover': 1,
          'jethro': 1,
          'jeff': 1,
          'goldblum': 1,
          'aaron': 1,
          'steve': 1,
          'hotep': 1,
          'helen': 1,
          'mirren': 1,
          'michelle': 1,
          'pfeiffer': 1,
          'tzipporah': 1,
          'short': 1,
          'huy': 1,
          'patrick': 1,
          'stewart': 1,
          'seti': 1,
          'nyou': 1,
          'figure': 1,
          'god': 1,
          'weakest': 1,
          'cliffs': 1,
          'notes': 1,
          'version': 1,
          'demilles': 1,
          'ten': 1,
          'commandments': 1,
          'script': 1,
          'kelly': 1,
          'asbury': 1,
          'lorna': 1,
          'cook': 1,
          'obsession': 1,
          'touching': 1,
          'briefly': 1,
          'every': 1,
          'event': 1,
          'ndemille': 1,
          'three': 1,
          'hours': 1,
          'order': 1,
          'justice': 1,
          'nat': 1,
          'less': 1,
          'rushes': 1,
          'material': 1,
          'doesnt': 1,
          'establish': 1,
          'sufficient': 1,
          'depth': 1,
          'us': 1,
          'bond': 1,
          'characters': 1,
          'meet': 1,
          'floating': 1,
          'little': 1,
          'basket': 1,
          'watch': 1,
          'grow': 1,
          'become': 1,
          'best': 1,
          'bud': 1,
          'chariot': 1,
          'racing': 1,
          'partner': 1,
          'ralph': 1,
          'fiennes': 1,
          'future': 1,
          'pharaoh': 1,
          'nmoses': 1,
          'free': 1,
          'spirit': 1,
          'practical': 1,
          'joker': 1,
          'jew': 1,
          'n': 1,
          'ive': 1,
          'ever': 1,
          'known': 1,
          'lie': 1,
          'complains': 1,
          'finding': 1,
          'real': 1,
          'sees': 1,
          'time': 1,
          'oppression': 1,
          'jewish': 1,
          'slaves': 1,
          'around': 1,
          'leaving': 1,
          'comes': 1,
          'back': 1,
          'ask': 1,
          'let': 1,
          'people': 1,
          'go': 1,
          'leads': 1,
          'scene': 1,
          'parting': 1,
          'red': 1,
          'sea': 1,
          'many': 1,
          'places': 1,
          'computers': 1,
          'used': 1,
          'enhance': 1,
          'handdrawn': 1,
          'production': 1,
          'absolutely': 1,
          'stunning': 1,
          'visuals': 1,
          'compelling': 1,
          'ndrawn': 1,
          'rich': 1,
          'palette': 1,
          'luxurious': 1,
          'roses': 1,
          'blues': 1,
          'golds': 1,
          'picture': 1,
          'looks': 1,
          'sumptuous': 1,
          'frame': 1,
          'last': 1,
          'construction': 1,
          'shown': 1,
          'blowing': 1,
          'dust': 1,
          'scenes': 1,
          'shot': 1,
          'glow': 1,
          'rising': 1,
          'sun': 1,
          'original': 1,
          'visual': 1,
          'sequence': 1,
          'occurs': 1,
          'dream': 1,
          'ndone': 1,
          'explicit': 1,
          'twodimensional': 1,
          'look': 1,
          'colorful': 1,
          'images': 1,
          'painted': 1,
          'walls': 1,
          'come': 1,
          'tell': 1,
          'neven': 1,
          'though': 1,
          'weaknesses': 1,
          'noble': 1,
          'attempt': 1,
          'carve': 1,
          'new': 1,
          'genre': 1,
          'serious': 1,
          'acceptable': 1,
          'entire': 1,
          'aweinspiring': 1,
          'deserves': 1,
          'seen': 1,
          'runs': 1,
          '1': 1,
          '30': 1,
          'rated': 1,
          'pg': 1,
          'thematic': 1,
          'elements': 1,
          'fine': 1,
          'whole': 1,
          'nhow': 1,
          'old': 1,
          'kid': 1,
          'need': 1,
          'interested': 1,
          'depends': 1,
          'child': 1,
          '8': 1,
          'like': 1,
          'npos': 1}),
 Counter({'frankenstein': 15,
          'nthe': 10,
          'film': 9,
          'victor': 8,
          'life': 6,
          'death': 6,
          'story': 5,
          'branagh': 5,
          'novel': 5,
          'one': 5,
          'creation': 5,
          'previous': 4,
          'nbut': 4,
          'nbranagh': 4,
          'nhis': 4,
          'man': 4,
          'character': 4,
          'monster': 3,
          'picture': 3,
          'every': 3,
          'adaptions': 3,
          'ends': 3,
          'nhe': 3,
          'without': 3,
          'mother': 3,
          'surrogate': 3,
          'sister': 3,
          'creature': 3,
          'never': 3,
          'characters': 3,
          'nand': 3,
          'nin': 3,
          'certainly': 2,
          'n': 2,
          'kenneth': 2,
          'mary': 2,
          'shelleys': 2,
          'nkenneth': 2,
          'throughout': 2,
          'almost': 2,
          'world': 2,
          'version': 2,
          'dark': 2,
          'body': 2,
          'probably': 2,
          'total': 2,
          'horror': 2,
          'classic': 2,
          'begins': 2,
          'arctic': 2,
          'ocean': 2,
          'ship': 2,
          'unknown': 2,
          'nas': 2,
          'terrifying': 2,
          'nhere': 2,
          'boham': 2,
          'carter': 2,
          'changed': 2,
          'quite': 2,
          'science': 2,
          'becomes': 2,
          'mothers': 2,
          'grave': 2,
          'die': 2,
          'nafter': 2,
          'ingolstadt': 2,
          'obsession': 2,
          'dead': 2,
          'bodies': 2,
          'wanted': 2,
          'create': 2,
          'perfect': 2,
          'strong': 2,
          'electrical': 2,
          'managed': 2,
          'ugliness': 2,
          'done': 2,
          'everything': 2,
          'loved': 2,
          'less': 2,
          'nanother': 2,
          'thing': 2,
          'magnificent': 2,
          'cast': 2,
          'comes': 2,
          'de': 2,
          'niro': 2,
          'love': 2,
          'frankensteins': 2,
          'face': 2,
          'nature': 2,
          'evil': 2,
          'vital': 2,
          'simply': 2,
          'scientist': 2,
          'god': 2,
          'charecter': 2,
          'sets': 2,
          'constantly': 2,
          'playing': 2,
          'camera': 2,
          'fire': 2,
          'actions': 2,
          'dracula': 2,
          'stronger': 2,
          'best': 2,
          'directoractorcowriter': 1,
          'branaghs': 1,
          'new': 1,
          'motion': 1,
          'compete': 1,
          'frankensteinfilms': 1,
          'made': 1,
          'years': 1,
          'part': 1,
          'including': 1,
          'controversial': 1,
          'directed': 1,
          'james': 1,
          'whale': 1,
          'stormy': 1,
          'nights': 1,
          'lightning': 1,
          'bolts': 1,
          'charnel': 1,
          'houses': 1,
          'spare': 1,
          'parts': 1,
          'laboratory': 1,
          'stirs': 1,
          'steaming': 1,
          'cauldron': 1,
          'effectful': 1,
          'center': 1,
          'quieter': 1,
          'thoughtful': 1,
          'contains': 1,
          'real': 1,
          'nhorrorfans': 1,
          'disappointed': 1,
          'lack': 1,
          'instead': 1,
          'concentrated': 1,
          'serious': 1,
          'issues': 1,
          'morality': 1,
          'philosophy': 1,
          'human': 1,
          'elements': 1,
          'old': 1,
          'fashioned': 1,
          'cliches': 1,
          'much': 1,
          'closer': 1,
          'book': 1,
          'somewhere': 1,
          'year': 1,
          '1794': 1,
          'na': 1,
          'bold': 1,
          'captain': 1,
          'steering': 1,
          'waters': 1,
          'gole': 1,
          'reach': 1,
          'north': 1,
          'pole': 1,
          'costs': 1,
          'ice': 1,
          'closes': 1,
          'around': 1,
          'figure': 1,
          'appears': 1,
          'horizon': 1,
          'nits': 1,
          'nexhausted': 1,
          'brink': 1,
          'approaches': 1,
          'frightening': 1,
          'crew': 1,
          'name': 1,
          'scare': 1,
          'everyone': 1,
          'venturing': 1,
          'myserious': 1,
          'stranger': 1,
          'tale': 1,
          'precisely': 1,
          'confession': 1,
          'geneva': 1,
          '1773': 1,
          'remembering': 1,
          'childhood': 1,
          'youth': 1,
          'nlaughter': 1,
          'banquets': 1,
          'parties': 1,
          'happy': 1,
          'troubles': 1,
          'concerns': 1,
          'lived': 1,
          'father': 1,
          'ian': 1,
          'holm': 1,
          'cherie': 1,
          'lunghi': 1,
          'helena': 1,
          'servants': 1,
          'happiness': 1,
          'harmony': 1,
          'nthis': 1,
          'idyllic': 1,
          'lifestyle': 1,
          'suddenly': 1,
          'nlike': 1,
          'thunder': 1,
          'sky': 1,
          'dies': 1,
          'giving': 1,
          'birth': 1,
          'youngest': 1,
          'brother': 1,
          'nshocked': 1,
          'baffled': 1,
          'gradually': 1,
          'grief': 1,
          'despair': 1,
          'already': 1,
          'interested': 1,
          'obsessed': 1,
          'nstanding': 1,
          'says': 1,
          'oh': 1,
          'ndid': 1,
          'ever': 1,
          'nwill': 1,
          'stop': 1,
          'npromiss': 1,
          'proposing': 1,
          'marridge': 1,
          'promising': 1,
          'return': 1,
          'soon': 1,
          'studies': 1,
          'finished': 1,
          'travels': 1,
          'presuite': 1,
          'medical': 1,
          'career': 1,
          'totally': 1,
          'overtakes': 1,
          'working': 1,
          'day': 1,
          'night': 1,
          'creating': 1,
          'ncomposing': 1,
          'physically': 1,
          'mentally': 1,
          'nwith': 1,
          'impulses': 1,
          'breeth': 1,
          'result': 1,
          'nrealizing': 1,
          'tried': 1,
          'undo': 1,
          'work': 1,
          'late': 1,
          'escaped': 1,
          'nbecause': 1,
          'epidemic': 1,
          'hoped': 1,
          'died': 1,
          'returned': 1,
          'home': 1,
          'making': 1,
          'plans': 1,
          'wedding': 1,
          'nfor': 1,
          'dying': 1,
          'mysteriously': 1,
          'nwhales': 1,
          'although': 1,
          'powerful': 1,
          'capture': 1,
          'depth': 1,
          'nbrannagh': 1,
          'actors': 1,
          'developed': 1,
          'assembled': 1,
          'greatest': 1,
          'performances': 1,
          'played': 1,
          'among': 1,
          'others': 1,
          'charles': 1,
          'ogle': 1,
          'karloff': 1,
          'lon': 1,
          'chaney': 1,
          'bela': 1,
          'lugosi': 1,
          'glenn': 1,
          'strange': 1,
          'christopher': 1,
          'lee': 1,
          'fred': 1,
          'gwynne': 1,
          'herman': 1,
          'munster': 1,
          'robert': 1,
          'nalone': 1,
          'hated': 1,
          'feared': 1,
          'completely': 1,
          'aware': 1,
          'nat': 1,
          'first': 1,
          'like': 1,
          'helpless': 1,
          'abandoned': 1,
          'child': 1,
          'desperately': 1,
          'reaching': 1,
          'nlater': 1,
          'reads': 1,
          'journal': 1,
          'learns': 1,
          'composed': 1,
          'turns': 1,
          'rage': 1,
          'seeking': 1,
          'revenge': 1,
          'capable': 1,
          'killing': 1,
          'regret': 1,
          'took': 1,
          'lifted': 1,
          'ground': 1,
          'nthen': 1,
          'slowly': 1,
          'crushed': 1,
          'neck': 1,
          'killed': 1,
          'saw': 1,
          'nthat': 1,
          'reveals': 1,
          'savage': 1,
          'creator': 1,
          'yet': 1,
          'eyes': 1,
          'vaulerbility': 1,
          'loneliness': 1,
          'palpable': 1,
          'sympathy': 1,
          'living': 1,
          'would': 1,
          'make': 1,
          'peace': 1,
          'nrarely': 1,
          'cinematic': 1,
          'interpretation': 1,
          'daemon': 1,
          'approached': 1,
          'level': 1,
          'threedimensionality': 1,
          'humanity': 1,
          'portrayed': 1,
          'mad': 1,
          'trolls': 1,
          'graveyards': 1,
          'corpses': 1,
          'creates': 1,
          'knows': 1,
          'power': 1,
          'storm': 1,
          'nalmost': 1,
          'time': 1,
          'granted': 1,
          'important': 1,
          'introduces': 1,
          'establishes': 1,
          'intellectual': 1,
          'ideological': 1,
          'conflict': 1,
          'academic': 1,
          'establishment': 1,
          'somehow': 1,
          'manages': 1,
          'build': 1,
          'rousing': 1,
          'horrifying': 1,
          'scene': 1,
          'plays': 1,
          'remarkable': 1,
          'understanding': 1,
          'non': 1,
          'outside': 1,
          'ambitious': 1,
          'talented': 1,
          'deep': 1,
          'unsecure': 1,
          'fragile': 1,
          'vaulerble': 1,
          'haunted': 1,
          'ghosts': 1,
          'past': 1,
          'nhelen': 1,
          'equally': 1,
          'wonderful': 1,
          'end': 1,
          'wife': 1,
          'little': 1,
          'drives': 1,
          'apart': 1,
          'rest': 1,
          'secondary': 1,
          'solid': 1,
          'nothing': 1,
          'convincing': 1,
          'nvisually': 1,
          'stunning': 1,
          'especially': 1,
          'makeup': 1,
          'spinning': 1,
          'buildingup': 1,
          'musical': 1,
          'acore': 1,
          'art': 1,
          'direction': 1,
          'production': 1,
          'design': 1,
          'costumes': 1,
          'swiss': 1,
          'alps': 1,
          'forests': 1,
          'plagueriddled': 1,
          'streets': 1,
          'wonder': 1,
          'behold': 1,
          'directs': 1,
          'script': 1,
          'written': 1,
          'shakespeare': 1,
          'ni': 1,
          'lies': 1,
          'shallow': 1,
          'nmy': 1,
          'hand': 1,
          'exacly': 1,
          'hamlet': 1,
          'creators': 1,
          'burning': 1,
          'hellish': 1,
          'darkness': 1,
          'last': 1,
          'closeup': 1,
          'creatures': 1,
          'smiling': 1,
          'ncan': 1,
          'abandon': 1,
          'appearance': 1,
          'horrifies': 1,
          'nto': 1,
          'attributable': 1,
          'brought': 1,
          'existence': 1,
          'nshelley': 1,
          'answer': 1,
          'questions': 1,
          'posed': 1,
          'nfollowing': 1,
          'example': 1,
          'tragic': 1,
          'saga': 1,
          'nvictor': 1,
          'change': 1,
          'better': 1,
          'represents': 1,
          'stands': 1,
          'acting': 1,
          'doubts': 1,
          'considering': 1,
          'consequences': 1,
          'nproduced': 1,
          'francis': 1,
          'ford': 1,
          'coppola': 1,
          'resembles': 1,
          'respects': 1,
          'coppolas': 1,
          'comparison': 1,
          'say': 1,
          'visuals': 1,
          'even': 1,
          'live': 1,
          'casting': 1,
          'aspect': 1,
          'neil': 1,
          'jordans': 1,
          'interview': 1,
          'vampire': 1,
          'nalthough': 1,
          'refuses': 1,
          'stay': 1,
          'still': 1,
          'occasionally': 1,
          'pushy': 1,
          'score': 1,
          'times': 1,
          'tiering': 1,
          'effective': 1,
          'minor': 1,
          'faults': 1,
          'easily': 1,
          'forgivable': 1,
          'otherwise': 1,
          'captivating': 1,
          'stimulating': 1,
          'created': 1,
          'shellys': 1,
          'npos': 1}),
 Counter({'film': 21,
          'one': 10,
          'love': 7,
          'like': 7,
          'way': 6,
          'bizarre': 6,
          'ni': 6,
          'rather': 5,
          'bacon': 5,
          'george': 5,
          'almost': 5,
          'devil': 4,
          'looks': 4,
          'nthe': 4,
          'nhe': 4,
          'still': 4,
          'shot': 3,
          'looking': 3,
          'life': 3,
          'something': 3,
          'world': 3,
          'nas': 3,
          'nits': 3,
          'delight': 3,
          'friends': 3,
          'night': 3,
          'nbacon': 3,
          'substance': 3,
          'drove': 3,
          'even': 3,
          'wish': 3,
          'mans': 3,
          'audience': 2,
          'plot': 2,
          'perhaps': 2,
          'artists': 2,
          'psyche': 2,
          'nwatching': 2,
          'look': 2,
          'neverything': 2,
          'painter': 2,
          'francis': 2,
          'wasnt': 2,
          'close': 2,
          'times': 2,
          'bacons': 2,
          'real': 2,
          'first': 2,
          'really': 2,
          'come': 2,
          'great': 2,
          'derek': 2,
          'jacobi': 2,
          'lives': 2,
          'wants': 2,
          'taking': 2,
          'maybe': 2,
          'pain': 2,
          'anything': 2,
          'shows': 2,
          'together': 2,
          'least': 2,
          'another': 2,
          'nwhile': 2,
          'certain': 2,
          'doesnt': 2,
          'especially': 2,
          'thought': 2,
          'hypnotic': 2,
          'point': 2,
          'merely': 2,
          'style': 2,
          'scene': 2,
          'bit': 2,
          'meaning': 2,
          'humanity': 2,
          'truly': 2,
          'respect': 2,
          'sit': 2,
          'seems': 2,
          'challenging': 1,
          'munundating': 1,
          'wild': 1,
          'imagery': 1,
          'structure': 1,
          'disallows': 1,
          'attempt': 1,
          'get': 1,
          'us': 1,
          'know': 1,
          'lifeline': 1,
          'enthralled': 1,
          'director': 1,
          'everything': 1,
          'personalized': 1,
          'filter': 1,
          'films': 1,
          'subject': 1,
          'looked': 1,
          'personally': 1,
          'nbut': 1,
          'engrossed': 1,
          'stumbled': 1,
          'upon': 1,
          'thoughts': 1,
          'halfway': 1,
          'awakened': 1,
          'trance': 1,
          'inner': 1,
          'distraction': 1,
          'began': 1,
          'try': 1,
          'follow': 1,
          'whats': 1,
          'going': 1,
          'nexactly': 1,
          'sure': 1,
          'insightful': 1,
          'ever': 1,
          'seen': 1,
          'vacuous': 1,
          'ndirected': 1,
          'written': 1,
          'john': 1,
          'maybury': 1,
          'stylish': 1,
          'masterpiece': 1,
          'senses': 1,
          'originally': 1,
          'perplexing': 1,
          'camera': 1,
          'angles': 1,
          'ferociously': 1,
          'askew': 1,
          'closeups': 1,
          'uncomfortably': 1,
          'editing': 1,
          'deft': 1,
          'occasionally': 1,
          'cutting': 1,
          'away': 1,
          'every': 1,
          'couple': 1,
          'seconds': 1,
          'holding': 1,
          'long': 1,
          'wonder': 1,
          'supposed': 1,
          'voyeurs': 1,
          'intruders': 1,
          'story': 1,
          'nive': 1,
          'heard': 1,
          'much': 1,
          'didnt': 1,
          'read': 1,
          'prior': 1,
          'learned': 1,
          'england': 1,
          'reached': 1,
          'peak': 1,
          '60s': 1,
          '70s': 1,
          'drawing': 1,
          'hideously': 1,
          'drawings': 1,
          'carnage': 1,
          'closet': 1,
          'interviews': 1,
          'notoriously': 1,
          'drunk': 1,
          'yet': 1,
          'incredibly': 1,
          'witty': 1,
          'played': 1,
          'shakesperean': 1,
          'actor': 1,
          'hes': 1,
          'foppish': 1,
          'selfabsorbed': 1,
          'cross': 1,
          'oscar': 1,
          'wilde': 1,
          'nero': 1,
          'live': 1,
          'disatisfaction': 1,
          'privelege': 1,
          'destruction': 1,
          'others': 1,
          'champagne': 1,
          'sham': 1,
          'says': 1,
          'bar': 1,
          'frequents': 1,
          'n': 1,
          'chronicles': 1,
          'latter': 1,
          'part': 1,
          'wellknown': 1,
          'midlife': 1,
          'awakens': 1,
          'hears': 1,
          'man': 1,
          'tumble': 1,
          'ceiling': 1,
          'window': 1,
          'land': 1,
          'floor': 1,
          'walks': 1,
          'unafraid': 1,
          'finds': 1,
          'discovers': 1,
          'thief': 1,
          'dyer': 1,
          'daniel': 1,
          'craig': 1,
          'gives': 1,
          'offer': 1,
          'spends': 1,
          'take': 1,
          'morning': 1,
          'ngeorge': 1,
          'agrees': 1,
          'bed': 1,
          'goes': 1,
          'ends': 1,
          'staying': 1,
          'whatever': 1,
          'reason': 1,
          'reference': 1,
          'creating': 1,
          'high': 1,
          'art': 1,
          'minors': 1,
          'showing': 1,
          'group': 1,
          'people': 1,
          'radiate': 1,
          'connection': 1,
          'shown': 1,
          'understood': 1,
          'relationship': 1,
          'remains': 1,
          'stagnant': 1,
          'haughty': 1,
          'simple': 1,
          'understand': 1,
          'paintings': 1,
          'watching': 1,
          'thats': 1,
          'basically': 1,
          'feel': 1,
          'free': 1,
          'restraints': 1,
          'form': 1,
          'uniquely': 1,
          'felt': 1,
          'attention': 1,
          'entirely': 1,
          'made': 1,
          'nonce': 1,
          'easier': 1,
          'piece': 1,
          'kept': 1,
          'thinking': 1,
          'wondering': 1,
          'nsomeone': 1,
          'make': 1,
          'accident': 1,
          'allow': 1,
          'creep': 1,
          'nthinking': 1,
          'remembered': 1,
          'two': 1,
          'fed': 1,
          'eachother': 1,
          'masochist': 1,
          'cruelty': 1,
          'watches': 1,
          'boxing': 1,
          'match': 1,
          'orgiastic': 1,
          'lets': 1,
          'squeal': 1,
          'pleasure': 1,
          'blood': 1,
          'boxers': 1,
          'head': 1,
          'splashes': 1,
          'across': 1,
          'face': 1,
          'masturbates': 1,
          'odessa': 1,
          'steps': 1,
          'sequence': 1,
          'eisensteins': 1,
          'battleship': 1,
          'potemkin': 1,
          'far': 1,
          'edge': 1,
          'guess': 1,
          'explains': 1,
          'title': 1,
          'na': 1,
          'nthats': 1,
          'devoid': 1,
          'hadnt': 1,
          'reduced': 1,
          'making': 1,
          'selfish': 1,
          'thing': 1,
          'avoided': 1,
          'inside': 1,
          'twisted': 1,
          'pysche': 1,
          'always': 1,
          'best': 1,
          'obtain': 1,
          'insights': 1,
          'uniqueness': 1,
          'forcing': 1,
          'universality': 1,
          'audiences': 1,
          'throat': 1,
          'nthat': 1,
          'dont': 1,
          'reduce': 1,
          'cant': 1,
          'say': 1,
          'totally': 1,
          'enjoyed': 1,
          'though': 1,
          'ndespite': 1,
          'things': 1,
          'movie': 1,
          'uncomfortable': 1,
          'neven': 1,
          'normally': 1,
          'trite': 1,
          'length': 1,
          'ninety': 1,
          'minutes': 1,
          'arduous': 1,
          'task': 1,
          'exhausting': 1,
          'hour': 1,
          'nthough': 1,
          'gimmicky': 1,
          'redundant': 1,
          'advantage': 1,
          'nature': 1,
          'deeper': 1,
          'beautiful': 1,
          'painstakingly': 1,
          'crafted': 1,
          'along': 1,
          'dreams': 1,
          'may': 1,
          'dark': 1,
          'city': 1,
          'years': 1,
          'visually': 1,
          'stunning': 1,
          'nin': 1,
          'fact': 1,
          'better': 1,
          'script': 1,
          'forged': 1,
          'id': 1,
          'compare': 1,
          'visual': 1,
          'power': 1,
          'peter': 1,
          'greenaway': 1,
          'complete': 1,
          'similar': 1,
          'haunting': 1,
          'images': 1,
          'stick': 1,
          'mind': 1,
          'forever': 1,
          'nand': 1,
          'dymanite': 1,
          'performance': 1,
          'comic': 1,
          'distanced': 1,
          'tone': 1,
          'needs': 1,
          'mostly': 1,
          'hair': 1,
          'nthen': 1,
          'would': 1,
          'hold': 1,
          'npos': 1}),
 Counter({'elizabeth': 8,
          'queen': 4,
          'love': 4,
          'set': 2,
          'upset': 2,
          'protestant': 2,
          'catholic': 2,
          'country': 2,
          'blanchette': 2,
          'nelizabeth': 2,
          'shakespeare': 2,
          'found': 2,
          'costume': 1,
          'drama': 1,
          '1500s': 1,
          'england': 1,
          'lush': 1,
          'romantic': 1,
          'political': 1,
          'masterpiece': 1,
          'crossing': 1,
          'respected': 1,
          'one': 1,
          'nwhen': 1,
          'court': 1,
          'whole': 1,
          'passing': 1,
          'queens': 1,
          'royal': 1,
          'family': 1,
          'speak': 1,
          'crowened': 1,
          'another': 1,
          'plus': 1,
          'new': 1,
          'cate': 1,
          'bastard': 1,
          'baby': 1,
          'previous': 1,
          'marys': 1,
          'father': 1,
          'nthe': 1,
          'persecution': 1,
          'catholics': 1,
          'protestants': 1,
          'isnt': 1,
          'majority': 1,
          'must': 1,
          'face': 1,
          'decision': 1,
          'give': 1,
          'personal': 1,
          'pleasures': 1,
          'lover': 1,
          'joseph': 1,
          'fiennes': 1,
          'order': 1,
          'rule': 1,
          'successfully': 1,
          '40': 1,
          'years': 1,
          'nboth': 1,
          'elizabethian': 1,
          'era': 1,
          'feature': 1,
          'judi': 1,
          'dench': 1,
          'plays': 1,
          'course': 1,
          'nyet': 1,
          'stimulating': 1,
          'involving': 1,
          'features': 1,
          'great': 1,
          'deal': 1,
          'powerful': 1,
          'hypnotic': 1,
          'sense': 1,
          'role': 1,
          'also': 1,
          'featuring': 1,
          'geoffrey': 1,
          'rush': 1,
          'richard': 1,
          'attenborough': 1,
          'pick': 1,
          'best': 1,
          'picture': 1,
          '1998': 1,
          'award': 1,
          'nits': 1,
          'dynamic': 1,
          'important': 1,
          'breathtaking': 1,
          'film': 1,
          'loyalty': 1,
          'power': 1,
          'greed': 1,
          'trust': 1,
          'nshakespeare': 1,
          'would': 1,
          'die': 1,
          'book': 1,
          'rights': 1,
          'npos': 1}),
 Counter({'jay': 8,
          'silent': 8,
          'bob': 8,
          'film': 5,
          'smith': 4,
          'smiths': 3,
          'characters': 3,
          'van': 3,
          'book': 3,
          'nthe': 3,
          'clerks': 2,
          'nso': 2,
          'latest': 2,
          'good': 2,
          'feature': 2,
          'miramax': 2,
          'bobs': 2,
          'include': 2,
          'affleck': 2,
          'damon': 2,
          'george': 2,
          'nthis': 2,
          'road': 2,
          'jason': 2,
          'hitching': 2,
          'hollywood': 2,
          'bluntman': 2,
          'chronic': 2,
          'comic': 2,
          'two': 2,
          'people': 2,
          'though': 2,
          'duo': 2,
          'nbut': 2,
          'played': 2,
          'laughs': 2,
          'movies': 2,
          'hunting': 2,
          'comes': 2,
          'strike': 1,
          'back': 1,
          'rightfully': 1,
          'subtitled': 1,
          'kevin': 1,
          'greatest': 1,
          'hits': 1,
          'comprised': 1,
          'numerous': 1,
          'references': 1,
          'earlier': 1,
          'works': 1,
          'including': 1,
          'mall': 1,
          'rats': 1,
          'nchasing': 1,
          'amy': 1,
          'dogma': 1,
          'advised': 1,
          'bone': 1,
          'cinematic': 1,
          'quartet': 1,
          'order': 1,
          'achieve': 1,
          'maximum': 1,
          'enjoyment': 1,
          'outing': 1,
          'nkevin': 1,
          'must': 1,
          'likable': 1,
          'person': 1,
          'several': 1,
          'sports': 1,
          'took': 1,
          'ton': 1,
          'kidding': 1,
          'notably': 1,
          'studio': 1,
          'whose': 1,
          'subsidiary': 1,
          'dimension': 1,
          'films': 1,
          'distributor': 1,
          'nothers': 1,
          'deserving': 1,
          'accolades': 1,
          'ben': 1,
          'matt': 1,
          'directors': 1,
          'gus': 1,
          'zant': 1,
          'wes': 1,
          'craven': 1,
          'mighty': 1,
          'lucas': 1,
          'laughfilled': 1,
          'foulmouthed': 1,
          'mewes': 1,
          'sabotage': 1,
          'miramaxs': 1,
          'production': 1,
          'based': 1,
          'jersey': 1,
          'slackers': 1,
          'njays': 1,
          'convoluted': 1,
          'reasoning': 1,
          'shut': 1,
          'internet': 1,
          'stop': 1,
          'insulting': 1,
          'even': 1,
          'dissing': 1,
          'rather': 1,
          'counterparts': 1,
          'nno': 1,
          'matter': 1,
          'begin': 1,
          'long': 1,
          'trek': 1,
          'rides': 1,
          'across': 1,
          'country': 1,
          'first': 1,
          'get': 1,
          'tips': 1,
          'veteran': 1,
          'hitchhiker': 1,
          'carlin': 1,
          'tells': 1,
          'follow': 1,
          'rules': 1,
          'nof': 1,
          'course': 1,
          'jays': 1,
          'interpretation': 1,
          'immediately': 1,
          'gets': 1,
          'trouble': 1,
          'friendly': 1,
          'nun': 1,
          'carrie': 1,
          'fisher': 1,
          'offers': 1,
          'ride': 1,
          'njay': 1,
          'contains': 1,
          'enough': 1,
          'weaker': 1,
          'aspects': 1,
          'lame': 1,
          'subplot': 1,
          'girl': 1,
          'gang': 1,
          'diamond': 1,
          'thieves': 1,
          'well': 1,
          'buffoonish': 1,
          'federal': 1,
          'park': 1,
          'ranger': 1,
          'ferrell': 1,
          'easily': 1,
          'tolerated': 1,
          'nreally': 1,
          'laugh': 1,
          'heroes': 1,
          'picked': 1,
          'mystery': 1,
          'potinduced': 1,
          'hallucination': 1,
          'concerning': 1,
          'velma': 1,
          'daphne': 1,
          'highlight': 1,
          'near': 1,
          'finale': 1,
          'nin': 1,
          'sneak': 1,
          'onto': 1,
          'lot': 1,
          'crash': 1,
          'set': 1,
          'mistaken': 1,
          'extras': 1,
          'affleckdamon': 1,
          'picture': 1,
          '2': 1,
          'season': 1,
          'nhere': 1,
          'privy': 1,
          'hilarious': 1,
          'conversation': 1,
          'put': 1,
          'others': 1,
          'careers': 1,
          'choices': 1,
          'nand': 1,
          'continue': 1,
          'grow': 1,
          'nnext': 1,
          'american': 1,
          'pie': 1,
          'biggs': 1,
          'james': 1,
          'dawsons': 1,
          'creek': 1,
          'der': 1,
          'beek': 1,
          'actors': 1,
          'chosen': 1,
          'portray': 1,
          'pair': 1,
          'mistake': 1,
          'stunt': 1,
          'doubles': 1,
          'nfinally': 1,
          'star': 1,
          'wars': 1,
          'homage': 1,
          'featuring': 1,
          'one': 1,
          'stars': 1,
          'legendary': 1,
          'bit': 1,
          'leave': 1,
          'howling': 1,
          'nsmiths': 1,
          'obvious': 1,
          'affection': 1,
          'pop': 1,
          'culture': 1,
          'icons': 1,
          'evident': 1,
          'way': 1,
          'shoots': 1,
          'scenes': 1,
          'handles': 1,
          'performers': 1,
          'nhe': 1,
          'allows': 1,
          'play': 1,
          'tongueincheek': 1,
          'ntheir': 1,
          'fun': 1,
          'screen': 1,
          'audience': 1,
          'nit': 1,
          'bad': 1,
          'swan': 1,
          'song': 1,
          'grown': 1,
          'since': 1,
          'supporting': 1,
          'role': 1,
          'debuts': 1,
          'realizes': 1,
          'times': 1,
          'changed': 1,
          'doesnt': 1,
          'want': 1,
          'creations': 1,
          'overstay': 1,
          'welcome': 1,
          'provided': 1,
          'right': 1,
          'kind': 1,
          'exit': 1,
          'saving': 1,
          'best': 1,
          'last': 1,
          'ngoodbye': 1,
          'nat': 1,
          'least': 1,
          'youre': 1,
          'going': 1,
          'blast': 1,
          'npos': 1}),
 Counter({'film': 6,
          'nthe': 5,
          'martians': 4,
          'invasion': 3,
          'hillarous': 2,
          'cinema': 2,
          'people': 2,
          'earth': 2,
          'ray': 2,
          'guns': 2,
          'nthey': 2,
          'nbut': 2,
          'great': 2,
          'involving': 2,
          'aliens': 2,
          'lots': 2,
          'sci': 1,
          'ficomedy': 1,
          'starring': 1,
          'jack': 1,
          'nicholson': 1,
          'pierce': 1,
          'brosnan': 1,
          'annette': 1,
          'benning': 1,
          'glenn': 1,
          'close': 1,
          'martin': 1,
          'short': 1,
          'stars': 1,
          'na': 1,
          'warner': 1,
          'bros': 1,
          'picture': 1,
          'landed': 1,
          'tim': 1,
          'burton': 1,
          'movie': 1,
          'nbefore': 1,
          'entering': 1,
          'initially': 1,
          'little': 1,
          'bit': 1,
          'nervous': 1,
          'would': 1,
          'like': 1,
          'nmany': 1,
          'saying': 1,
          'silly': 1,
          'rubbish': 1,
          'point': 1,
          'nhow': 1,
          'wrong': 1,
          'ni': 1,
          'left': 1,
          'feeling': 1,
          'much': 1,
          'happier': 1,
          'entered': 1,
          'story': 1,
          'attacking': 1,
          'nusing': 1,
          'hooray': 1,
          'generally': 1,
          'cause': 1,
          'havoc': 1,
          'around': 1,
          'u': 1,
          'countries': 1,
          'nnicholson': 1,
          'plays': 1,
          'president': 1,
          'must': 1,
          'try': 1,
          'stop': 1,
          'also': 1,
          'taking': 1,
          'advice': 1,
          'loopy': 1,
          'officials': 1,
          'basically': 1,
          'load': 1,
          'set': 1,
          'pieces': 1,
          'showing': 1,
          'destroying': 1,
          'way': 1,
          'killed': 1,
          'mildly': 1,
          'disturbing': 1,
          'scene': 1,
          'martian': 1,
          'lady': 1,
          'mad': 1,
          'general': 1,
          'wants': 1,
          'nuke': 1,
          'away': 1,
          'ends': 1,
          'getting': 1,
          'squashed': 1,
          'foot': 1,
          'gory': 1,
          'finale': 1,
          'alien': 1,
          'heads': 1,
          'exploding': 1,
          'fun': 1,
          'full': 1,
          'character': 1,
          'performances': 1,
          'spot': 1,
          'star': 1,
          'cast': 1,
          'help': 1,
          'make': 1,
          'enjoyable': 1,
          'million': 1,
          'times': 1,
          'better': 1,
          'dire': 1,
          'independance': 1,
          'day': 1,
          'real': 1,
          'tribute': 1,
          'tacky': 1,
          '50s': 1,
          'movies': 1,
          'score': 1,
          'danny': 1,
          'elfman': 1,
          'laughs': 1,
          'nthis': 1,
          'best': 1,
          'ive': 1,
          'seen': 1,
          'long': 1,
          'time': 1,
          'npos': 1}),
 Counter({'bond': 4,
          'tomorrow': 4,
          'never': 4,
          'dies': 4,
          'pryce': 4,
          'many': 4,
          'goldeneye': 3,
          'new': 3,
          'time': 3,
          'film': 2,
          'take': 2,
          'nthe': 2,
          'n': 2,
          'picture': 2,
          'entertaining': 2,
          'nas': 2,
          'carver': 2,
          'turner': 2,
          'sellars': 2,
          'nits': 2,
          'none': 2,
          'brosnan': 2,
          'last': 2,
          'years': 2,
          'nand': 2,
          'though': 2,
          'taking': 2,
          'perhaps': 2,
          'dialogue': 2,
          'special': 2,
          'lets': 1,
          'face': 1,
          '100': 1,
          'millionplus': 1,
          'smash': 1,
          'good': 1,
          'means': 1,
          'movie': 1,
          'marginally': 1,
          'better': 1,
          'say': 1,
          'view': 1,
          'kill': 1,
          'either': 1,
          'timothy': 1,
          'dalton': 1,
          'pictures': 1,
          'virtue': 1,
          'nice': 1,
          'pacing': 1,
          'nbut': 1,
          'revive': 1,
          'series': 1,
          'granted': 1,
          'producers': 1,
          'directions': 1,
          'ie': 1,
          'woman': 1,
          'also': 1,
          'outing': 1,
          'since': 1,
          'spy': 1,
          'loved': 1,
          'opens': 1,
          'china': 1,
          'considering': 1,
          'war': 1,
          'britain': 1,
          'standard': 1,
          'military': 1,
          'operation': 1,
          'misconstrued': 1,
          'hostile': 1,
          'threat': 1,
          'english': 1,
          'submarine': 1,
          'attack': 1,
          'occurs': 1,
          'frontpage': 1,
          'headline': 1,
          'already': 1,
          'prepared': 1,
          'courtesy': 1,
          'media': 1,
          'ncarver': 1,
          'man': 1,
          'deluded': 1,
          'magnate': 1,
          'sort': 1,
          'hybrid': 1,
          'ted': 1,
          'bill': 1,
          'gates': 1,
          'peter': 1,
          'german': 1,
          'scientist': 1,
          'dr': 1,
          'nstrangelove': 1,
          'physically': 1,
          'even': 1,
          'recalls': 1,
          'kubrick': 1,
          'days': 1,
          'james': 1,
          'assistance': 1,
          'course': 1,
          'wealth': 1,
          'gadgets': 1,
          'including': 1,
          'multipurpose': 1,
          'cell': 1,
          'phone': 1,
          'beautiful': 1,
          'women': 1,
          'nenter': 1,
          'michelle': 1,
          'yeoh': 1,
          'fresh': 1,
          'supercop': 1,
          'chinese': 1,
          'secret': 1,
          'agent': 1,
          'agenda': 1,
          'effortless': 1,
          'grace': 1,
          'cat': 1,
          'burgles': 1,
          'dispatches': 1,
          'baddies': 1,
          'seemingly': 1,
          'ease': 1,
          'preparing': 1,
          'pasta': 1,
          'refuses': 1,
          'advances': 1,
          'philandering': 1,
          'hero': 1,
          'nthey': 1,
          'make': 1,
          'great': 1,
          'team': 1,
          'surprisingly': 1,
          'efficient': 1,
          'given': 1,
          'helm': 1,
          'director': 1,
          'hooch': 1,
          'nspottiswoode': 1,
          'crafted': 1,
          'breathtaking': 1,
          'set': 1,
          'pieces': 1,
          'much': 1,
          'intricate': 1,
          'impressive': 1,
          'instance': 1,
          'tank': 1,
          'scene': 1,
          'nmoreover': 1,
          'settled': 1,
          'role': 1,
          'feel': 1,
          'born': 1,
          'play': 1,
          'fate': 1,
          'franchise': 1,
          'rested': 1,
          'shoulders': 1,
          'noticeable': 1,
          'discomfort': 1,
          'body': 1,
          'language': 1,
          'nreturned': 1,
          'brosnans': 1,
          'eyes': 1,
          'playfulness': 1,
          'demonstrated': 1,
          'tvs': 1,
          'remington': 1,
          'steele': 1,
          'deadpan': 1,
          'wit': 1,
          'carvers': 1,
          'motives': 1,
          'muddy': 1,
          'explains': 1,
          'genius': 1,
          'insanity': 1,
          'success': 1,
          'screenwriter': 1,
          'fierstein': 1,
          'lazy': 1,
          'shortcut': 1,
          'makes': 1,
          'agreeable': 1,
          'memorable': 1,
          'villain': 1,
          'nin': 1,
          'future': 1,
          'pursue': 1,
          'actors': 1,
          'talented': 1,
          'experienced': 1,
          'breathe': 1,
          'life': 1,
          'cardboard': 1,
          'figures': 1,
          'nthere': 1,
          'explosions': 1,
          'qualify': 1,
          'could': 1,
          'used': 1,
          'sharper': 1,
          'script': 1,
          'amused': 1,
          'double': 1,
          'entendres': 1,
          'reveal': 1,
          'stands': 1,
          'plot': 1,
          'suffers': 1,
          'holes': 1,
          'im': 1,
          'implausibilities': 1,
          'tends': 1,
          'towards': 1,
          'hackneyed': 1,
          'nnow': 1,
          'elements': 1,
          'place': 1,
          'modern': 1,
          'effects': 1,
          'stunt': 1,
          'work': 1,
          'cool': 1,
          'pierce': 1,
          'kickass': 1,
          'female': 1,
          'allies': 1,
          'put': 1,
          'use': 1,
          'something': 1,
          'truly': 1,
          'ntheres': 1,
          'mistaking': 1,
          'however': 1,
          'ideal': 1,
          'holiday': 1,
          'escapism': 1,
          'first': 1,
          'youll': 1,
          'walk': 1,
          'wanting': 1,
          'movies': 1,
          'nreviewed': 1,
          'december': 1,
          '17': 1,
          '1997': 1,
          'npos': 1}),
 Counter({'movie': 12,
          'kevin': 10,
          'little': 6,
          'great': 6,
          'smith': 5,
          'jason': 5,
          'best': 5,
          'god': 5,
          'angels': 5,
          'jay': 5,
          'silent': 5,
          'bob': 5,
          'us': 5,
          'matt': 4,
          'damon': 4,
          'fiorentino': 4,
          'people': 4,
          'rather': 4,
          'really': 4,
          'one': 4,
          'cast': 4,
          'two': 4,
          'way': 4,
          'may': 4,
          'well': 4,
          'ben': 3,
          'affleck': 3,
          'linda': 3,
          'hayek': 3,
          'rock': 3,
          'lee': 3,
          'lot': 3,
          'dogma': 3,
          'nit': 3,
          'funny': 3,
          'clerks': 3,
          'movies': 3,
          'made': 3,
          'nnow': 3,
          'get': 3,
          'much': 3,
          'stop': 3,
          'back': 3,
          'heaven': 3,
          'give': 3,
          'new': 3,
          'also': 3,
          'end': 3,
          'think': 3,
          'message': 3,
          'seems': 3,
          'gives': 3,
          'see': 3,
          'characters': 3,
          'course': 3,
          'nthe': 3,
          'classic': 3,
          'lines': 3,
          'strong': 2,
          'sexual': 2,
          'dialogue': 2,
          'use': 2,
          'salma': 2,
          'rickman': 2,
          'chris': 2,
          'mewes': 2,
          'george': 2,
          'carlin': 2,
          'time': 2,
          'nbeing': 2,
          'huge': 2,
          'kevins': 2,
          'date': 2,
          'smart': 2,
          'serious': 2,
          'actually': 2,
          'isnt': 2,
          'nin': 2,
          'nthis': 2,
          'film': 2,
          'cant': 2,
          'person': 2,
          'hailed': 2,
          'critics': 2,
          'good': 2,
          'nok': 2,
          'plays': 2,
          'house': 2,
          'must': 2,
          'find': 2,
          'however': 2,
          'gets': 2,
          'performances': 2,
          'try': 2,
          'helps': 2,
          'along': 2,
          'help': 2,
          'make': 2,
          'comedy': 2,
          'could': 2,
          'know': 2,
          'go': 2,
          'goes': 2,
          'hilarious': 2,
          'start': 2,
          'nof': 2,
          'script': 2,
          'many': 2,
          'important': 2,
          'makes': 2,
          'performance': 2,
          'character': 2,
          'priceless': 2,
          'rated': 1,
          'r': 1,
          'language': 1,
          'drug': 1,
          'crude': 1,
          'humor': 1,
          'violence': 1,
          'brief': 1,
          'nudity': 1,
          'nstarring': 1,
          'alan': 1,
          'alanis': 1,
          'morissette': 1,
          'nrunning': 1,
          '130': 1,
          'minutes': 1,
          'fan': 1,
          'expecting': 1,
          'newest': 1,
          'project': 1,
          'might': 1,
          'work': 1,
          'nits': 1,
          'foulmouthed': 1,
          'unexpectedly': 1,
          'undertone': 1,
          'besides': 1,
          'going': 1,
          'jesus': 1,
          'christ': 1,
          'tries': 1,
          'tell': 1,
          'thing': 1,
          '1994': 1,
          '27': 1,
          '000': 1,
          'premiered': 1,
          'sundance': 1,
          'called': 1,
          'went': 1,
          'become': 1,
          'video': 1,
          'sensation': 1,
          'nyou': 1,
          'meet': 1,
          'green': 1,
          'earth': 1,
          'seen': 1,
          'year': 1,
          'soon': 1,
          'sequel': 1,
          'coming': 1,
          '1995': 1,
          'another': 1,
          'mallrats': 1,
          'flopped': 1,
          'horribly': 1,
          'thought': 1,
          'ever': 1,
          'pretty': 1,
          'flick': 1,
          'panned': 1,
          'audiences': 1,
          '1997': 1,
          'chasing': 1,
          'amy': 1,
          'came': 1,
          'biggest': 1,
          'success': 1,
          '1999': 1,
          'name': 1,
          'nwow': 1,
          'plot': 1,
          'regular': 1,
          'woman': 1,
          'works': 1,
          'abortion': 1,
          'clinic': 1,
          'none': 1,
          'day': 1,
          'metatron': 1,
          'voice': 1,
          'appears': 1,
          'surprise': 1,
          'tells': 1,
          'fallen': 1,
          'getting': 1,
          'ways': 1,
          'church': 1,
          'told': 1,
          'prophets': 1,
          'talks': 1,
          'doesnt': 1,
          'instead': 1,
          'jersey': 1,
          '13th': 1,
          'apostle': 1,
          'falls': 1,
          'sky': 1,
          'guide': 1,
          'nsalma': 1,
          'serendipity': 1,
          'nazrael': 1,
          'demon': 1,
          'trying': 1,
          'win': 1,
          'nbethany': 1,
          'cheat': 1,
          'leading': 1,
          'violent': 1,
          'bloody': 1,
          'twice': 1,
          'faith': 1,
          'nwhat': 1,
          'everything': 1,
          'rolled': 1,
          'offensive': 1,
          'offbeat': 1,
          'sassy': 1,
          'surprisingly': 1,
          'ends': 1,
          'feelgood': 1,
          'nwho': 1,
          'would': 1,
          'known': 1,
          'soft': 1,
          'side': 1,
          'faithful': 1,
          'offended': 1,
          'take': 1,
          'heart': 1,
          'nyes': 1,
          'target': 1,
          'catholic': 1,
          'community': 1,
          'bash': 1,
          'review': 1,
          'sound': 1,
          'confusing': 1,
          'first': 1,
          'understand': 1,
          'excellent': 1,
          'nkevin': 1,
          'lengths': 1,
          'background': 1,
          'study': 1,
          'watch': 1,
          'funniest': 1,
          'duo': 1,
          'history': 1,
          'fall': 1,
          'chair': 1,
          'laughing': 1,
          'friends': 1,
          'nprobably': 1,
          'like': 1,
          'starstudded': 1,
          'amazing': 1,
          'cameos': 1,
          'jeanne': 1,
          'garafolo': 1,
          'lose': 1,
          'track': 1,
          'written': 1,
          'fwords': 1,
          'emphasis': 1,
          'talk': 1,
          'concentrate': 1,
          'laugh': 1,
          'nchris': 1,
          'nlinda': 1,
          'perfect': 1,
          'role': 1,
          'believe': 1,
          'job': 1,
          'nalan': 1,
          'round': 1,
          'starring': 1,
          'roles': 1,
          'oscar': 1,
          'winners': 1,
          'hunting': 1,
          'held': 1,
          'nben': 1,
          'got': 1,
          'story': 1,
          'big': 1,
          'flaw': 1,
          'unfunny': 1,
          'slow': 1,
          'parts': 1,
          'nhowever': 1,
          'direction': 1,
          'members': 1,
          'stands': 1,
          'safely': 1,
          'compare': 1,
          'nwhile': 1,
          'times': 1,
          'becomes': 1,
          'agree': 1,
          'deny': 1,
          'ndogma': 1,
          'offend': 1,
          'especially': 1,
          'deeply': 1,
          'religious': 1,
          'open': 1,
          'minded': 1,
          'want': 1,
          'material': 1,
          'nall': 1,
          'fans': 1,
          'npos': 1}),
 Counter({'time': 10,
          'machine': 6,
          'george': 6,
          'would': 6,
          'nthe': 5,
          'genre': 4,
          'films': 4,
          'wells': 4,
          'future': 4,
          'film': 4,
          'classic': 4,
          'one': 3,
          'science': 3,
          'fiction': 3,
          'travel': 3,
          'concept': 3,
          'travels': 3,
          'h': 3,
          'g': 3,
          'novel': 3,
          'way': 3,
          'new': 3,
          'could': 3,
          'became': 3,
          'years': 3,
          'world': 3,
          'war': 3,
          'eloi': 3,
          'people': 3,
          'good': 3,
          'although': 2,
          'many': 2,
          'century': 2,
          'nhowever': 2,
          'great': 2,
          'idle': 2,
          'class': 2,
          'messages': 2,
          'traveling': 2,
          'pal': 2,
          'directed': 2,
          'rod': 2,
          'taylor': 2,
          'victorian': 2,
          'scientist': 2,
          'nat': 2,
          'first': 2,
          'three': 2,
          'wars': 2,
          'looks': 2,
          'young': 2,
          'nbut': 2,
          'weena': 2,
          'mimieux': 2,
          'morlocs': 2,
          'nfor': 2,
          'threat': 2,
          'days': 2,
          'oldfashioned': 2,
          'today': 2,
          'example': 2,
          'rather': 2,
          'hand': 2,
          'remembered': 2,
          'popular': 1,
          'subplots': 1,
          'entire': 1,
          'nthat': 1,
          'purists': 1,
          'doubt': 1,
          'scientific': 1,
          'credentials': 1,
          'spawned': 1,
          'interesting': 1,
          'novels': 1,
          'comic': 1,
          'books': 1,
          'last': 1,
          'big': 1,
          'granddaddy': 1,
          'wasnt': 1,
          'written': 1,
          'intention': 1,
          'speculate': 1,
          'consequences': 1,
          'author': 1,
          'merely': 1,
          'used': 1,
          'convenient': 1,
          'express': 1,
          'socialist': 1,
          'views': 1,
          'condemn': 1,
          'social': 1,
          'gap': 1,
          'rich': 1,
          'capitalist': 1,
          'impoverished': 1,
          'labour': 1,
          'nwhatever': 1,
          'intentions': 1,
          'generations': 1,
          'readers': 1,
          'less': 1,
          'impressed': 1,
          'political': 1,
          'ninstead': 1,
          'fascinated': 1,
          'idea': 1,
          'strange': 1,
          'worlds': 1,
          'explored': 1,
          'without': 1,
          'trough': 1,
          'space': 1,
          'classics': 1,
          'natural': 1,
          'filmmakers': 1,
          'use': 1,
          'inspiration': 1,
          'nfirst': 1,
          '1960': 1,
          'become': 1,
          'plot': 1,
          'revolves': 1,
          'discovered': 1,
          'fourth': 1,
          'dimension': 1,
          'eve': 1,
          '20th': 1,
          'gathers': 1,
          'friends': 1,
          'order': 1,
          'present': 1,
          'invention': 1,
          'enable': 1,
          'nthey': 1,
          'skeptical': 1,
          'doesnt': 1,
          'prevent': 1,
          'carrying': 1,
          'plan': 1,
          'slowly': 1,
          'seeing': 1,
          'london': 1,
          'changes': 1,
          'nfinally': 1,
          'witnessing': 1,
          'far': 1,
          'hoping': 1,
          'cease': 1,
          'witness': 1,
          'senseless': 1,
          'destructions': 1,
          'nwhen': 1,
          'finally': 1,
          'reaches': 1,
          'year': 1,
          '802': 1,
          '701': 1,
          'ad': 1,
          'glance': 1,
          'like': 1,
          'utopia': 1,
          'humanity': 1,
          'consists': 1,
          'beautiful': 1,
          'fed': 1,
          'clothed': 1,
          'taken': 1,
          'care': 1,
          'unseen': 1,
          'machines': 1,
          'yvette': 1,
          'woman': 1,
          'tells': 1,
          'another': 1,
          'side': 1,
          'coin': 1,
          'night': 1,
          'preyed': 1,
          'upon': 1,
          'humanoid': 1,
          'creatures': 1,
          'underworld': 1,
          'cinematic': 1,
          'reason': 1,
          'literature': 1,
          'fantastic': 1,
          'brilliant': 1,
          'authors': 1,
          'talk': 1,
          'burning': 1,
          'issues': 1,
          'fears': 1,
          'respective': 1,
          'times': 1,
          'frightening': 1,
          'struggle': 1,
          'screenwriter': 1,
          'david': 1,
          'duncan': 1,
          'produced': 1,
          'worst': 1,
          'cold': 1,
          'constant': 1,
          'imminent': 1,
          'nuclear': 1,
          'holocaust': 1,
          'underlined': 1,
          'negative': 1,
          'references': 1,
          'throughout': 1,
          'movie': 1,
          'neven': 1,
          'modern': 1,
          'audience': 1,
          'tempted': 1,
          'discard': 1,
          'find': 1,
          'values': 1,
          'universal': 1,
          'fit': 1,
          'era': 1,
          'ncompared': 1,
          'even': 1,
          'better': 1,
          'serve': 1,
          'make': 1,
          'intelligent': 1,
          'thoughtprovoking': 1,
          'nof': 1,
          'course': 1,
          'since': 1,
          'hollywood': 1,
          'product': 1,
          'delivers': 1,
          'concepts': 1,
          'form': 1,
          'adventure': 1,
          'sometimes': 1,
          'sacrificing': 1,
          'plausibility': 1,
          'sake': 1,
          'attractiveness': 1,
          'hard': 1,
          'imagine': 1,
          'someone': 1,
          'able': 1,
          'understand': 1,
          'perfect': 1,
          'english': 1,
          'million': 1,
          'degenerating': 1,
          'mutant': 1,
          'monsters': 1,
          'remain': 1,
          'undistinguished': 1,
          'nsome': 1,
          'final': 1,
          'scenes': 1,
          'turn': 1,
          'action': 1,
          'superhero': 1,
          'also': 1,
          'unconvincing': 1,
          'well': 1,
          'cleverly': 1,
          'paced': 1,
          'special': 1,
          'effects': 1,
          'definitely': 1,
          'adequate': 1,
          'kind': 1,
          'picture': 1,
          'acting': 1,
          'roles': 1,
          'alan': 1,
          'brings': 1,
          'memorable': 1,
          'performance': 1,
          'georges': 1,
          'trusted': 1,
          'friend': 1,
          'filby': 1,
          'nyvette': 1,
          'plays': 1,
          'complexity': 1,
          'role': 1,
          'despite': 1,
          'flaws': 1,
          'piece': 1,
          'cinema': 1,
          'something': 1,
          'connoisseurs': 1,
          'quality': 1,
          'sciencefiction': 1,
          'sorely': 1,
          'miss': 1,
          'npos': 1}),
 Counter({'fanny': 6,
          'ms': 5,
          'nthe': 5,
          'love': 4,
          'one': 4,
          'sense': 3,
          'park': 3,
          'well': 3,
          'mother': 3,
          'nfanny': 3,
          'character': 3,
          'rozema': 3,
          'upon': 3,
          'marriage': 3,
          'two': 3,
          'shall': 3,
          'keeps': 2,
          'austen': 2,
          'screen': 2,
          'novel': 2,
          'made': 2,
          'century': 2,
          'story': 2,
          'old': 2,
          'father': 2,
          'mansfield': 2,
          'bertram': 2,
          'also': 2,
          'times': 2,
          'eventually': 2,
          'films': 2,
          'main': 2,
          'central': 2,
          'work': 2,
          'cousin': 2,
          'soon': 2,
          'acceptable': 2,
          'mary': 2,
          'man': 2,
          'henry': 2,
          'thematic': 2,
          'nfannys': 2,
          'decision': 2,
          'based': 2,
          'jane': 1,
          'sensibility': 1,
          'pride': 1,
          'prejudice': 1,
          'may': 1,
          'apply': 1,
          'posthumous': 1,
          'membership': 1,
          'writers': 1,
          'guild': 1,
          'nyet': 1,
          'another': 1,
          'transition': 1,
          'silver': 1,
          'nmansfield': 1,
          'turn': 1,
          '18th': 1,
          'going': 1,
          '19th': 1,
          'among': 1,
          'classes': 1,
          'examination': 1,
          'proper': 1,
          'society': 1,
          'family': 1,
          'ties': 1,
          'nten': 1,
          'year': 1,
          'price': 1,
          'hannah': 1,
          'taylorgordon': 1,
          'jakob': 1,
          'liar': 1,
          'taken': 1,
          'poverty': 1,
          'dwell': 1,
          'sent': 1,
          'live': 1,
          'aunt': 1,
          'privileged': 1,
          'class': 1,
          'stern': 1,
          'patriarchal': 1,
          'hand': 1,
          'uncle': 1,
          'sir': 1,
          'thomas': 1,
          'harold': 1,
          'pinter': 1,
          'mojo': 1,
          'nspending': 1,
          'days': 1,
          'reminded': 1,
          'lower': 1,
          'status': 1,
          'invents': 1,
          'writes': 1,
          'fanciful': 1,
          'stories': 1,
          'private': 1,
          'grows': 1,
          'become': 1,
          'beautiful': 1,
          'intelligent': 1,
          'engaging': 1,
          'heroine': 1,
          'quite': 1,
          'unlike': 1,
          'original': 1,
          'originally': 1,
          'penned': 1,
          'nwriterdirector': 1,
          'patricia': 1,
          'night': 1,
          'falling': 1,
          'responsible': 1,
          'textual': 1,
          'changes': 1,
          'nfrom': 1,
          'purely': 1,
          'dramatic': 1,
          'perspective': 1,
          'revision': 1,
          'makes': 1,
          'perfect': 1,
          'improves': 1,
          'audience': 1,
          'appeal': 1,
          'nwhat': 1,
          'done': 1,
          'infuse': 1,
          'much': 1,
          'austens': 1,
          'personality': 1,
          'including': 1,
          'excerpts': 1,
          'authors': 1,
          'journals': 1,
          'giving': 1,
          'dialogue': 1,
          'result': 1,
          'immediately': 1,
          'appealing': 1,
          'nas': 1,
          'grown': 1,
          'australian': 1,
          'actress': 1,
          'frances': 1,
          'oconnor': 1,
          'adam': 1,
          'wonderfully': 1,
          'textured': 1,
          'nat': 1,
          'address': 1,
          'camera': 1,
          'directly': 1,
          'communicate': 1,
          'many': 1,
          'novels': 1,
          'introspective': 1,
          'observations': 1,
          'nthis': 1,
          'difficult': 1,
          'device': 1,
          'seamlessly': 1,
          'period': 1,
          'film': 1,
          'oconnors': 1,
          'credit': 1,
          'works': 1,
          'theme': 1,
          'gives': 1,
          'legs': 1,
          'nwhether': 1,
          'better': 1,
          'marry': 1,
          'social': 1,
          'standing': 1,
          'fallen': 1,
          'edmund': 1,
          'jonny': 1,
          'lee': 1,
          'miller': 1,
          'plunkett': 1,
          'macleane': 1,
          'appears': 1,
          'fond': 1,
          'nhis': 1,
          'attentions': 1,
          'divided': 1,
          'stylish': 1,
          'socially': 1,
          'crawford': 1,
          'embeth': 1,
          'davidtz': 1,
          'bicentennial': 1,
          'enters': 1,
          'picture': 1,
          'along': 1,
          'equally': 1,
          'brother': 1,
          'alessandro': 1,
          'nivola': 1,
          'inventing': 1,
          'abbotts': 1,
          'sets': 1,
          'romantic': 1,
          'sights': 1,
          'nwhile': 1,
          'evidently': 1,
          'less': 1,
          'sincere': 1,
          'affections': 1,
          'presence': 1,
          'provide': 1,
          'movie': 1,
          'characters': 1,
          'necessary': 1,
          'conflict': 1,
          'interest': 1,
          'appropriately': 1,
          'austenlike': 1,
          'ending': 1,
          'nother': 1,
          'devices': 1,
          'include': 1,
          'awkwardly': 1,
          'inserted': 1,
          'reference': 1,
          'source': 1,
          'wealth': 1,
          'slave': 1,
          'trade': 1,
          'nthere': 1,
          'hint': 1,
          'lesbianism': 1,
          'incest': 1,
          'neither': 1,
          'carried': 1,
          'far': 1,
          'forgotten': 1,
          'motivation': 1,
          'remains': 1,
          'primary': 1,
          'thrust': 1,
          'maria': 1,
          'victoria': 1,
          'hamilton': 1,
          'persuasion': 1,
          'example': 1,
          'making': 1,
          'poor': 1,
          'match': 1,
          'marrying': 1,
          'welltodo': 1,
          'fool': 1,
          'able': 1,
          'make': 1,
          'comfortable': 1,
          'never': 1,
          'happy': 1,
          'trapped': 1,
          'chosen': 1,
          'life': 1,
          'squalor': 1,
          'warns': 1,
          'admitting': 1,
          'situation': 1,
          'due': 1,
          'fact': 1,
          'married': 1,
          'given': 1,
          'terrible': 1,
          'examples': 1,
          'faced': 1,
          'choice': 1,
          'understandably': 1,
          'indecisive': 1,
          'way': 1,
          'lean': 1,
          'spiritual': 1,
          'answer': 1,
          'course': 1,
          'lies': 1,
          'middle': 1,
          'extremes': 1,
          'nmarriage': 1,
          'cold': 1,
          'calculating': 1,
          'selfpreservation': 1,
          'nneither': 1,
          'senseless': 1,
          'warm': 1,
          'afterglow': 1,
          'passionate': 1,
          'embrace': 1,
          'nin': 1,
          'purest': 1,
          'forms': 1,
          'insoluble': 1,
          'union': 1,
          'whereby': 1,
          'people': 1,
          'agree': 1,
          'function': 1,
          'n': 1,
          'said': 1,
          'cause': 1,
          'leave': 1,
          'cleave': 1,
          'wife': 1,
          'twain': 1,
          'flesh': 1,
          'nmatthew': 1,
          '19': 1,
          '5': 1,
          'kjv': 1,
          'nlove': 1,
          'logic': 1,
          'combined': 1,
          'ngods': 1,
          'word': 1,
          'contains': 1,
          'nso': 1,
          'truth': 1,
          'npos': 1}),
 Counter({'film': 8,
          'private': 7,
          'ryan': 7,
          'movie': 7,
          'war': 5,
          'one': 5,
          'nit': 4,
          'excellent': 4,
          'battle': 4,
          'scenes': 4,
          'nthis': 4,
          'nthe': 4,
          'saving': 3,
          'tom': 3,
          'hanks': 3,
          'damon': 3,
          'greatest': 3,
          'action': 3,
          'away': 3,
          'dreamworks': 2,
          'time': 2,
          'burns': 2,
          'sizemore': 2,
          'matt': 2,
          'spielberg': 2,
          'made': 2,
          'certainly': 2,
          'best': 2,
          'ntom': 2,
          'troop': 2,
          'find': 2,
          'drama': 2,
          'found': 2,
          'terrifying': 2,
          'superb': 2,
          'roles': 2,
          'better': 2,
          'delivers': 2,
          'performance': 2,
          'lot': 2,
          'also': 2,
          'makes': 2,
          'actors': 2,
          'audience': 2,
          'help': 2,
          'never': 2,
          'great': 2,
          'major': 2,
          'weak': 2,
          'really': 2,
          'running': 1,
          '2': 1,
          'hours': 1,
          '48': 1,
          'minutes': 1,
          'nstarring': 1,
          'edward': 1,
          'directed': 1,
          'steven': 1,
          'already': 1,
          'hailed': 1,
          'ever': 1,
          'harrowing': 1,
          'saddening': 1,
          'riveting': 1,
          'may': 1,
          'opinion': 1,
          'movies': 1,
          '1998': 1,
          'stars': 1,
          'captain': 1,
          'whos': 1,
          'ticket': 1,
          'home': 1,
          'three': 1,
          'brothers': 1,
          'killed': 1,
          'naction': 1,
          'even': 1,
          'humour': 1,
          'occur': 1,
          'journeys': 1,
          'wartime': 1,
          'france': 1,
          'nafter': 1,
          'disappointing': 1,
          'amistad': 1,
          '1997': 1,
          'returned': 1,
          'form': 1,
          'nim': 1,
          'genre': 1,
          'biggest': 1,
          'fan': 1,
          'gripping': 1,
          'scary': 1,
          'thanks': 1,
          'cast': 1,
          'direction': 1,
          'straying': 1,
          'usually': 1,
          'soppy': 1,
          'dramatic': 1,
          'forrest': 1,
          'gump': 1,
          '1994': 1,
          'plays': 1,
          'role': 1,
          'gritty': 1,
          'realism': 1,
          'much': 1,
          'noccasionally': 1,
          'overacts': 1,
          'sentimentally': 1,
          'generally': 1,
          'fine': 1,
          'nedward': 1,
          'looking': 1,
          'like': 1,
          'armageddons': 1,
          'ben': 1,
          'affleck': 1,
          'top': 1,
          'notch': 1,
          'moving': 1,
          'films': 1,
          'shes': 1,
          '1996': 1,
          'less': 1,
          'impact': 1,
          'still': 1,
          'watchable': 1,
          'reinforcing': 1,
          'position': 1,
          'finest': 1,
          'young': 1,
          'working': 1,
          'today': 1,
          'nspielberg': 1,
          'directs': 1,
          'well': 1,
          'putting': 1,
          'right': 1,
          'heart': 1,
          'nand': 1,
          'ntheyre': 1,
          'truly': 1,
          'yet': 1,
          'drag': 1,
          'eyes': 1,
          'screen': 1,
          'filmed': 1,
          'jerky': 1,
          'handheld': 1,
          'camera': 1,
          'panic': 1,
          'confusion': 1,
          'felt': 1,
          'soldiers': 1,
          'emphasized': 1,
          'technique': 1,
          'gore': 1,
          'violence': 1,
          'isnt': 1,
          'spared': 1,
          'either': 1,
          'body': 1,
          'parts': 1,
          'flying': 1,
          'blood': 1,
          'spurting': 1,
          'kids': 1,
          'sensitive': 1,
          'adults': 1,
          'nother': 1,
          'factors': 1,
          'masterpiece': 1,
          '90s': 1,
          'making': 1,
          'cinematography': 1,
          'music': 1,
          'score': 1,
          'john': 1,
          'williams': 1,
          'intrusive': 1,
          'adds': 1,
          'onscreen': 1,
          'nbut': 1,
          'thousands': 1,
          'good': 1,
          'things': 1,
          'theres': 1,
          'flaw': 1,
          'detracts': 1,
          'genius': 1,
          'writing': 1,
          'unusually': 1,
          'flat': 1,
          'many': 1,
          'speeches': 1,
          'strangely': 1,
          'profound': 1,
          'statements': 1,
          'gripe': 1,
          'words': 1,
          'nstill': 1,
          'script': 1,
          'could': 1,
          'nthankfully': 1,
          'partly': 1,
          'rectify': 1,
          'situation': 1,
          'delivery': 1,
          'lines': 1,
          'nsaving': 1,
          'end': 1,
          'due': 1,
          'acting': 1,
          'viewed': 1,
          'everyone': 1,
          'stomach': 1,
          'rewarding': 1,
          'extremely': 1,
          'worthwhile': 1,
          'shouldnt': 1,
          'missed': 1,
          'skg': 1,
          'finally': 1,
          'first': 1,
          'hit': 1,
          'npos': 1}),
 Counter({'movie': 10,
          'aliens': 6,
          'nid4': 5,
          'alien': 5,
          'id4': 4,
          'nthe': 4,
          'many': 4,
          'attack': 4,
          'one': 4,
          'idea': 3,
          'nif': 3,
          'film': 3,
          'earth': 3,
          'bit': 3,
          'effects': 3,
          '50s': 2,
          'could': 2,
          'year': 2,
          'us': 2,
          'million': 2,
          'back': 2,
          'produced': 2,
          'star': 2,
          'wars': 2,
          'ship': 2,
          'major': 2,
          'cities': 2,
          'president': 2,
          'pullman': 2,
          'take': 2,
          'make': 2,
          'battle': 2,
          'return': 2,
          'jedi': 2,
          'plot': 2,
          'holes': 2,
          'thus': 2,
          'special': 2,
          'vs': 1,
          'nearth': 1,
          'revamped': 1,
          'following': 1,
          'news': 1,
          'net': 1,
          'escaped': 1,
          'hype': 1,
          'nit': 1,
          'promises': 1,
          'summer': 1,
          'elements': 1,
          'necessary': 1,
          'opened': 1,
          '2nd': 1,
          'july': 1,
          'till': 1,
          'week': 1,
          'release': 1,
          'nearly': 1,
          'touched': 1,
          'us100': 1,
          'mark': 1,
          'phenomenon': 1,
          'last': 1,
          'observed': 1,
          'jurassic': 1,
          'park': 1,
          'released': 1,
          '1993': 1,
          'premise': 1,
          'disgustingly': 1,
          'simple': 1,
          'defends': 1,
          'typical': 1,
          'highly': 1,
          'popular': 1,
          'hollywood': 1,
          'theme': 1,
          'manifested': 1,
          'films': 1,
          'era': 1,
          'opens': 1,
          'via': 1,
          'however': 1,
          'unoriginal': 1,
          'may': 1,
          'worked': 1,
          'sent': 1,
          'large': 1,
          'mother': 1,
          'supposedly': 1,
          '14': 1,
          'size': 1,
          'moon': 1,
          'deploying': 1,
          'ships': 1,
          '15': 1,
          'miles': 1,
          'radius': 1,
          'know': 1,
          'intention': 1,
          'soon': 1,
          'finds': 1,
          'david': 1,
          'goldblum': 1,
          'scientist': 1,
          'discovers': 1,
          'counting': 1,
          'synchronised': 1,
          'ncapt': 1,
          'hiller': 1,
          'smith': 1,
          'hotshot': 1,
          'f18': 1,
          'pilot': 1,
          'hundreds': 1,
          'assigned': 1,
          'hovering': 1,
          'washington': 1,
          'dc': 1,
          'nhis': 1,
          'squadron': 1,
          'came': 1,
          'heavy': 1,
          'fire': 1,
          'discovering': 1,
          'weapons': 1,
          'useless': 1,
          'invaders': 1,
          'crash': 1,
          'lands': 1,
          'spectacular': 1,
          '1on1': 1,
          'chase': 1,
          'grand': 1,
          'canyon': 1,
          'highlights': 1,
          'features': 1,
          'characters': 1,
          'shown': 1,
          'impact': 1,
          'story': 1,
          'progresses': 1,
          'nacting': 1,
          'whole': 1,
          'ok': 1,
          'although': 1,
          'thought': 1,
          'bill': 1,
          'unsuitable': 1,
          'role': 1,
          'rousing': 1,
          'speech': 1,
          'sending': 1,
          'troops': 1,
          'smell': 1,
          'braveheart': 1,
          'nno': 1,
          'prizes': 1,
          'guessing': 1,
          'ends': 1,
          'plain': 1,
          'obvious': 1,
          'borrows': 1,
          'heavily': 1,
          'parts': 1,
          'even': 1,
          'sense': 1,
          'xfiles': 1,
          'screen': 1,
          'critically': 1,
          'review': 1,
          'full': 1,
          'corny': 1,
          'dialogue': 1,
          'ridiculously': 1,
          'dumb': 1,
          'nhowever': 1,
          'waferthin': 1,
          'onscreen': 1,
          'flaws': 1,
          'scored': 1,
          'well': 1,
          'playing': 1,
          'appealing': 1,
          'entire': 1,
          'world': 1,
          'giving': 1,
          'petty': 1,
          'differences': 1,
          'unite': 1,
          'force': 1,
          'invasion': 1,
          'nan': 1,
          'audience': 1,
          'strongly': 1,
          'rooting': 1,
          'united': 1,
          'front': 1,
          'throughout': 1,
          'maintaining': 1,
          'screenviewer': 1,
          'interaction': 1,
          'virtually': 1,
          'render': 1,
          'acceptable': 1,
          'matter': 1,
          'ridiculous': 1,
          'modest': 1,
          'budget': 1,
          'us68': 1,
          'magnitude': 1,
          'would': 1,
          'easily': 1,
          'another': 1,
          'waterworld': 1,
          'director': 1,
          'roland': 1,
          'emmerich': 1,
          'universal': 1,
          'soldier': 1,
          'stargate': 1,
          'producer': 1,
          'dean': 1,
          'devlin': 1,
          'assembled': 1,
          'team': 1,
          'rather': 1,
          'commissioning': 1,
          'ilm': 1,
          'company': 1,
          'nsome': 1,
          'good': 1,
          'believable': 1,
          'especially': 1,
          'epic': 1,
          'standoff': 1,
          '150': 1,
          'f18s': 1,
          '250': 1,
          'saucers': 1,
          'reminiscence': 1,
          'classic': 1,
          'space': 1,
          'featured': 1,
          'nthough': 1,
          'explosions': 1,
          'implied': 1,
          'deaths': 1,
          'gory': 1,
          'scenes': 1,
          'human': 1,
          'destruction': 1,
          'young': 1,
          'kids': 1,
          'able': 1,
          'nsit': 1,
          'dont': 1,
          'critical': 1,
          'chances': 1,
          'absorbed': 1,
          'planning': 1,
          'watch': 1,
          'movies': 1,
          'please': 1,
          'least': 1,
          'time': 1,
          'nthis': 1,
          'best': 1,
          'watched': 1,
          'bigscreen': 1,
          'npos': 1}),
 Counter({'ni': 7,
          'film': 7,
          'movie': 6,
          'nthis': 4,
          'home': 4,
          'video': 4,
          'camera': 4,
          'nthe': 3,
          'blair': 2,
          'witch': 2,
          'footage': 2,
          'year': 2,
          'one': 2,
          'little': 2,
          'ever': 2,
          'impact': 2,
          'know': 2,
          'mind': 2,
          'shot': 2,
          'dont': 2,
          'real': 2,
          'close': 2,
          'screen': 2,
          'special': 2,
          'dvd': 2,
          'trailers': 1,
          'beginning': 1,
          'move': 1,
          'sum': 1,
          'plot': 1,
          'easily': 1,
          'nthree': 1,
          'filmmakers': 1,
          'venture': 1,
          'woods': 1,
          'maryland': 1,
          'track': 1,
          'legend': 1,
          'documentary': 1,
          'making': 1,
          'nthey': 1,
          'disappear': 1,
          'discovered': 1,
          'later': 1,
          'buried': 1,
          'underneath': 1,
          'foundation': 1,
          'hundred': 1,
          'old': 1,
          'house': 1,
          'nfrom': 1,
          'things': 1,
          'become': 1,
          'complicated': 1,
          'say': 1,
          'absolute': 1,
          'assurance': 1,
          'quite': 1,
          'nalthough': 1,
          'staged': 1,
          'mockumentary': 1,
          'theres': 1,
          'denying': 1,
          'psychological': 1,
          'leave': 1,
          'didnt': 1,
          'feel': 1,
          'much': 1,
          'upon': 1,
          'initially': 1,
          'watching': 1,
          'thought': 1,
          'interesting': 1,
          'pretty': 1,
          'creepy': 1,
          'parts': 1,
          'never': 1,
          'even': 1,
          'dreamed': 1,
          'thirty': 1,
          'minutes': 1,
          'ended': 1,
          'would': 1,
          'frightened': 1,
          'discussing': 1,
          'friend': 1,
          'nive': 1,
          'gotten': 1,
          'chills': 1,
          'every': 1,
          'time': 1,
          'ive': 1,
          'brought': 1,
          'since': 1,
          'hits': 1,
          'right': 1,
          'away': 1,
          'ninstead': 1,
          'sits': 1,
          'base': 1,
          'spine': 1,
          'waits': 1,
          'think': 1,
          'everything': 1,
          'okay': 1,
          'slowly': 1,
          'starts': 1,
          'creep': 1,
          'way': 1,
          'truly': 1,
          'frightening': 1,
          'pleasure': 1,
          'watch': 1,
          'comprised': 1,
          '16mm': 1,
          'documentarians': 1,
          'supposedly': 1,
          'expect': 1,
          'steadicam': 1,
          'shots': 1,
          'fancy': 1,
          'work': 1,
          'gets': 1,
          'folks': 1,
          'recommend': 1,
          'sitting': 1,
          'theater': 1,
          'though': 1,
          'guarantee': 1,
          'get': 1,
          'motion': 1,
          'sickness': 1,
          'constant': 1,
          'movement': 1,
          'performances': 1,
          'three': 1,
          'lead': 1,
          'actors': 1,
          'may': 1,
          'find': 1,
          'questioning': 1,
          'whether': 1,
          'really': 1,
          'happened': 1,
          'definitely': 1,
          'warrants': 1,
          'viewing': 1,
          'especially': 1,
          'due': 1,
          'fact': 1,
          'bulk': 1,
          'standard': 1,
          'reality': 1,
          'images': 1,
          'strike': 1,
          'frighteningly': 1,
          'viewed': 1,
          'actual': 1,
          'instead': 1,
          'tapetofilm': 1,
          'transfer': 1,
          'done': 1,
          'big': 1,
          'nword': 1,
          'edition': 1,
          'boatloads': 1,
          'extras': 1,
          'hours': 1,
          'deleted': 1,
          'scenes': 1,
          'alternate': 1,
          'endings': 1,
          'commentary': 1,
          'scifi': 1,
          'channel': 1,
          'others': 1,
          'planned': 1,
          'release': 1,
          'urge': 1,
          'artisan': 1,
          'entertainment': 1,
          'forge': 1,
          'ahead': 1,
          'plan': 1,
          'give': 1,
          'us': 1,
          'could': 1,
          'rival': 1,
          'dvds': 1,
          'ill': 1,
          'first': 1,
          'line': 1,
          'buy': 1,
          'nr': 1,
          'npos': 1}),
 Counter({'mission': 6,
          'willard': 6,
          'war': 5,
          'film': 4,
          'colonel': 4,
          'men': 4,
          'vietnam': 3,
          'napocalypse': 3,
          'memorable': 3,
          'kurtz': 3,
          'kilgore': 3,
          'apocalypse': 2,
          'horrifying': 2,
          'na': 2,
          'debate': 2,
          'movie': 2,
          'actually': 2,
          'nin': 2,
          'many': 2,
          'one': 2,
          'films': 2,
          'ever': 2,
          'made': 2,
          'gone': 2,
          'look': 2,
          'captain': 2,
          'ordered': 2,
          'nwillard': 2,
          'situation': 2,
          'nthe': 2,
          'lance': 2,
          'johnson': 2,
          'know': 2,
          'bizarre': 2,
          'situations': 2,
          'nbut': 2,
          'lieutenant': 2,
          'things': 2,
          'followers': 2,
          'madness': 2,
          'based': 1,
          'novel': 1,
          'hearts': 1,
          'darkness': 1,
          'extremely': 1,
          'striking': 1,
          'gripping': 1,
          'depiction': 1,
          'another': 1,
          'angle': 1,
          'long': 1,
          'surrounded': 1,
          'antiwar': 1,
          'ways': 1,
          'could': 1,
          'go': 1,
          'either': 1,
          'way': 1,
          'probably': 1,
          'addition': 1,
          'extremes': 1,
          'disturbing': 1,
          'corruption': 1,
          'terrifying': 1,
          'effects': 1,
          'devastating': 1,
          'recent': 1,
          'years': 1,
          'follows': 1,
          'benjamin': 1,
          'l': 1,
          'played': 1,
          'martin': 1,
          'sheen': 1,
          'seek': 1,
          'eliminate': 1,
          'walter': 1,
          'e': 1,
          'green': 1,
          'beret': 1,
          'thought': 1,
          'insane': 1,
          'set': 1,
          'militant': 1,
          'base': 1,
          'cambodia': 1,
          'ncaptain': 1,
          'assassinate': 1,
          'extreme': 1,
          'prejudice': 1,
          'deemed': 1,
          'murderer': 1,
          'accepts': 1,
          'pondering': 1,
          'accusation': 1,
          'naccusing': 1,
          'someone': 1,
          'murder': 1,
          'like': 1,
          'handing': 1,
          'speeding': 1,
          'tickets': 1,
          'indy': 1,
          '500': 1,
          'puts': 1,
          'nit': 1,
          'doesnt': 1,
          'make': 1,
          'much': 1,
          'sense': 1,
          'nescorting': 1,
          'group': 1,
          'operate': 1,
          'riverboat': 1,
          'chef': 1,
          'frederic': 1,
          'forrest': 1,
          'chief': 1,
          'albert': 1,
          'hall': 1,
          'sam': 1,
          'bottoms': 1,
          'mr': 1,
          'clean': 1,
          'fifteen': 1,
          'yearold': 1,
          'laurence': 1,
          'fishburne': 1,
          'let': 1,
          'exactly': 1,
          'something': 1,
          'big': 1,
          'encounter': 1,
          'exciting': 1,
          'dangerous': 1,
          'infamous': 1,
          'napalm': 1,
          'scene': 1,
          'eccentric': 1,
          'robert': 1,
          'duvall': 1,
          'nkilgore': 1,
          'decides': 1,
          'attack': 1,
          'overtake': 1,
          'certain': 1,
          'beach': 1,
          'area': 1,
          'surf': 1,
          'nsurf': 1,
          'nthis': 1,
          'inspired': 1,
          'able': 1,
          'meet': 1,
          'famed': 1,
          'california': 1,
          'surfer': 1,
          'nduvalls': 1,
          'portrayal': 1,
          'terrific': 1,
          'provides': 1,
          'number': 1,
          'quotes': 1,
          'neventually': 1,
          'encounters': 1,
          'kurtzs': 1,
          'frightening': 1,
          'community': 1,
          'full': 1,
          'strange': 1,
          'everywhere': 1,
          'especially': 1,
          'none': 1,
          'main': 1,
          'freelance': 1,
          'photographer': 1,
          'dennis': 1,
          'hopper': 1,
          'attempts': 1,
          'convey': 1,
          'understand': 1,
          'encompasses': 1,
          'colony': 1,
          'nkurtz': 1,
          'well': 1,
          'aware': 1,
          'willards': 1,
          'refers': 1,
          'errand': 1,
          'boy': 1,
          'sent': 1,
          'grocery': 1,
          'clerks': 1,
          'collect': 1,
          'bill': 1,
          'nyet': 1,
          'intent': 1,
          'completing': 1,
          'matter': 1,
          'shocking': 1,
          'possibly': 1,
          'greatest': 1,
          'stunning': 1,
          'vision': 1,
          'corresponds': 1,
          'hypnotize': 1,
          'brilliant': 1,
          'cinematography': 1,
          'outstanding': 1,
          'epic': 1,
          'drama': 1,
          'controversial': 1,
          'ravages': 1,
          'ndefinitely': 1,
          'miss': 1,
          'list': 1,
          'nbe': 1,
          'prepared': 1,
          'npos': 1}),
 Counter({'millie': 10,
          'merton': 8,
          'kate': 8,
          'nkate': 6,
          'love': 5,
          'nthe': 4,
          'wings': 4,
          'dove': 4,
          'nmerton': 4,
          'marry': 4,
          'made': 3,
          'like': 3,
          'money': 3,
          'rich': 3,
          'elliot': 3,
          'venice': 3,
          'shes': 3,
          'british': 2,
          'class': 2,
          'movies': 2,
          'well': 2,
          'always': 2,
          'story': 2,
          'fits': 2,
          'roache': 2,
          'newspaper': 2,
          'ends': 2,
          'giving': 2,
          'hes': 2,
          'friend': 2,
          'nat': 2,
          'sees': 2,
          'realizes': 2,
          'might': 2,
          'trying': 2,
          'still': 2,
          'end': 2,
          'together': 2,
          'feelings': 2,
          'hand': 2,
          'someone': 2,
          'couple': 2,
          'na': 2,
          'win': 2,
          'two': 2,
          'finds': 2,
          'sure': 2,
          'interesting': 2,
          'film': 2,
          'noir': 2,
          'ntheir': 2,
          'ni': 2,
          'sometimes': 1,
          'find': 1,
          '19th': 1,
          'century': 1,
          'costume': 1,
          'dramas': 1,
          'little': 1,
          'hard': 1,
          'relate': 1,
          'nits': 1,
          'time': 1,
          'distance': 1,
          'rules': 1,
          'conventions': 1,
          'social': 1,
          'deserves': 1,
          'resentment': 1,
          'rather': 1,
          'sympathy': 1,
          'nyet': 1,
          'somehow': 1,
          'get': 1,
          'caught': 1,
          'pattern': 1,
          'helena': 1,
          'bonham': 1,
          'carter': 1,
          'linus': 1,
          'writer': 1,
          'would': 1,
          'nbut': 1,
          'kates': 1,
          'job': 1,
          'member': 1,
          'upper': 1,
          'nher': 1,
          'father': 1,
          'lost': 1,
          'familys': 1,
          'wealthy': 1,
          'aunt': 1,
          'agreed': 1,
          'take': 1,
          'care': 1,
          'married': 1,
          'nice': 1,
          'man': 1,
          'nnaturally': 1,
          'writers': 1,
          'wages': 1,
          'dont': 1,
          'count': 1,
          'leads': 1,
          'cold': 1,
          'shoulder': 1,
          'ultimately': 1,
          'marriageable': 1,
          'nkates': 1,
          'american': 1,
          'alison': 1,
          'stops': 1,
          'visit': 1,
          'way': 1,
          'party': 1,
          'catches': 1,
          'glimpse': 1,
          'likes': 1,
          'introduced': 1,
          'forget': 1,
          'nit': 1,
          'appears': 1,
          'spare': 1,
          'heartbreak': 1,
          'inevitable': 1,
          'breakup': 1,
          'resents': 1,
          'nhe': 1,
          'accept': 1,
          'substitute': 1,
          'three': 1,
          'along': 1,
          'fourth': 1,
          'elizabeth': 1,
          'mcgovern': 1,
          'holiday': 1,
          'interactions': 1,
          'quite': 1,
          'complicated': 1,
          'nlets': 1,
          'sum': 1,
          'fallen': 1,
          'loves': 1,
          'cant': 1,
          'one': 1,
          'match': 1,
          'make': 1,
          'happy': 1,
          'jealous': 1,
          'clear': 1,
          'solution': 1,
          'presents': 1,
          'sick': 1,
          'dying': 1,
          'fact': 1,
          'point': 1,
          'decides': 1,
          'dies': 1,
          'nmillie': 1,
          'leave': 1,
          'enough': 1,
          'nshe': 1,
          'lets': 1,
          'know': 1,
          'schemes': 1,
          'since': 1,
          'help': 1,
          'reluctantly': 1,
          'agrees': 1,
          'leaves': 1,
          'ms': 1,
          'alone': 1,
          'pretending': 1,
          'lot': 1,
          'actually': 1,
          'loving': 1,
          'nhes': 1,
          'separate': 1,
          'really': 1,
          'wants': 1,
          'falling': 1,
          'marrying': 1,
          'anyone': 1,
          'else': 1,
          'brilliant': 1,
          'scheme': 1,
          'proves': 1,
          'painful': 1,
          'involved': 1,
          'nwithout': 1,
          'revealing': 1,
          'details': 1,
          'suffice': 1,
          'say': 1,
          'situation': 1,
          'badly': 1,
          'title': 1,
          'refers': 1,
          'object': 1,
          'mertons': 1,
          'vain': 1,
          'hope': 1,
          'something': 1,
          'lift': 1,
          'predicament': 1,
          'none': 1,
          'left': 1,
          'regret': 1,
          'despair': 1,
          'nwhat': 1,
          'started': 1,
          'promising': 1,
          'relationship': 1,
          'damaged': 1,
          'greed': 1,
          'anger': 1,
          'jealousy': 1,
          'nan': 1,
          'thought': 1,
          'struck': 1,
          'movie': 1,
          'almost': 1,
          'line': 1,
          'conspires': 1,
          'cheat': 1,
          'live': 1,
          'happily': 1,
          'ever': 1,
          'involvement': 1,
          'deception': 1,
          'makes': 1,
          'less': 1,
          'attractive': 1,
          'things': 1,
          'go': 1,
          'wrong': 1,
          'whole': 1,
          'idea': 1,
          'seems': 1,
          'awful': 1,
          'liferuining': 1,
          'mistake': 1,
          'wouldnt': 1,
          'call': 1,
          'comparison': 1,
          'nas': 1,
          'acknowledged': 1,
          'wonderful': 1,
          'judge': 1,
          'acting': 1,
          'liked': 1,
          'performances': 1,
          'nroache': 1,
          'successfully': 1,
          'conveyed': 1,
          'characters': 1,
          'ambivalence': 1,
          'toward': 1,
          'near': 1,
          'hugs': 1,
          'first': 1,
          'staring': 1,
          'space': 1,
          'thinking': 1,
          'plan': 1,
          'fully': 1,
          'embrace': 1,
          'nmillies': 1,
          'part': 1,
          'didnt': 1,
          'require': 1,
          'much': 1,
          'range': 1,
          'gave': 1,
          'necessary': 1,
          'bubbly': 1,
          'personality': 1,
          'irresistible': 1,
          'probably': 1,
          'file': 1,
          'away': 1,
          'lowtraffic': 1,
          'corner': 1,
          'mind': 1,
          'sense': 1,
          'sensibility': 1,
          'persuasion': 1,
          'settings': 1,
          'far': 1,
          'removed': 1,
          'personal': 1,
          'experience': 1,
          'geographically': 1,
          'historically': 1,
          'socially': 1,
          'nstill': 1,
          'stories': 1,
          'inevitably': 1,
          'npos': 1}),
 Counter({'ned': 7,
          'devine': 6,
          'two': 5,
          'nthe': 5,
          'movie': 4,
          'michael': 4,
          'man': 3,
          'real': 3,
          'waking': 3,
          'plot': 3,
          'one': 3,
          'audience': 2,
          'end': 2,
          'comedy': 2,
          'ntheres': 2,
          'winner': 2,
          'old': 2,
          'jackie': 2,
          'bannen': 2,
          'david': 2,
          'kelly': 2,
          'town': 2,
          'sympathetic': 2,
          'like': 2,
          'earlier': 1,
          'year': 1,
          'holy': 1,
          'opened': 1,
          'meager': 1,
          'box': 1,
          'office': 1,
          'receipt': 1,
          'indifference': 1,
          'audiences': 1,
          'critics': 1,
          'na': 1,
          'charmer': 1,
          'possible': 1,
          'subject': 1,
          'matter': 1,
          'hip': 1,
          'trendy': 1,
          'attract': 1,
          'nnow': 1,
          '1998': 1,
          'comes': 1,
          'inspires': 1,
          'vein': 1,
          'easygoing': 1,
          'laughter': 1,
          'substantial': 1,
          'difference': 1,
          'refined': 1,
          'atmosphere': 1,
          'strike': 1,
          'chords': 1,
          'still': 1,
          'worth': 1,
          'seeing': 1,
          'interesting': 1,
          'robust': 1,
          'latest': 1,
          'lottery': 1,
          'jimmy': 1,
          'keogh': 1,
          'tullymore': 1,
          'ireland': 1,
          'nneds': 1,
          'prize': 1,
          'six': 1,
          'million': 1,
          'pounds': 1,
          'shock': 1,
          'winning': 1,
          'killed': 1,
          'poor': 1,
          'check': 1,
          'remains': 1,
          'unclaimed': 1,
          'nenter': 1,
          'oshea': 1,
          'ian': 1,
          'osullivan': 1,
          'residents': 1,
          'aware': 1,
          'village': 1,
          'men': 1,
          'eventually': 1,
          'find': 1,
          'ticket': 1,
          'decide': 1,
          'convince': 1,
          'lotto': 1,
          'authorities': 1,
          'hes': 1,
          'actually': 1,
          'entire': 1,
          'reap': 1,
          'benefits': 1,
          'adversary': 1,
          'ancient': 1,
          'woman': 1,
          'eileen': 1,
          'dromey': 1,
          'sees': 1,
          'profit': 1,
          'reporting': 1,
          'fraud': 1,
          'nian': 1,
          'truly': 1,
          'shine': 1,
          'njackie': 1,
          'stocky': 1,
          'large': 1,
          'brains': 1,
          'behind': 1,
          'operation': 1,
          'scrawny': 1,
          'short': 1,
          'method': 1,
          'contrast': 1,
          'delightfully': 1,
          'time': 1,
          'remain': 1,
          'nevery': 1,
          'viewer': 1,
          'sure': 1,
          'nthere': 1,
          'minor': 1,
          'subplots': 1,
          'included': 1,
          'well': 1,
          'unlikely': 1,
          'romance': 1,
          'local': 1,
          'girl': 1,
          'pig': 1,
          'farmer': 1,
          'nthis': 1,
          'appears': 1,
          'quite': 1,
          'inconsequential': 1,
          'even': 1,
          'startling': 1,
          'revelation': 1,
          'tad': 1,
          'bit': 1,
          'unnecessary': 1,
          'noverall': 1,
          'predictable': 1,
          'outcome': 1,
          'twists': 1,
          'never': 1,
          'really': 1,
          'taken': 1,
          'seriously': 1,
          'ending': 1,
          'hilarious': 1,
          'ironic': 1,
          'twist': 1,
          'fate': 1,
          'somehow': 1,
          'fits': 1,
          'twisted': 1,
          'sense': 1,
          'humor': 1,
          'exhibits': 1,
          'throughout': 1,
          'kirk': 1,
          'jones': 1,
          'script': 1,
          'indeed': 1,
          'offthecuff': 1,
          'nin': 1,
          'way': 1,
          'exactly': 1,
          'class': 1,
          'people': 1,
          'presents': 1,
          'warm': 1,
          'friendly': 1,
          'outgoing': 1,
          'jovial': 1,
          'nits': 1,
          'perfect': 1,
          'kind': 1,
          'gem': 1,
          'tale': 1,
          'sets': 1,
          'trivial': 1,
          'outline': 1,
          'introduce': 1,
          'cast': 1,
          'characters': 1,
          'string': 1,
          'jokes': 1,
          'nothing': 1,
          'remotely': 1,
          'serious': 1,
          'grounded': 1,
          'moment': 1,
          'spirit': 1,
          'lighthearted': 1,
          'nindeed': 1,
          'years': 1,
          'best': 1,
          'feelgood': 1,
          'movies': 1,
          '91': 1,
          'minutes': 1,
          'unrestrained': 1,
          'joy': 1,
          'miss': 1,
          'npos': 1}),
 Counter({'storm': 3,
          'perfect': 2,
          'people': 2,
          'fishing': 2,
          'boat': 2,
          'life': 2,
          'terrifying': 2,
          'thats': 2,
          'nthe': 2,
          'fish': 2,
          'man': 2,
          'ntheres': 2,
          'john': 2,
          'bad': 2,
          'nbut': 2,
          'susan': 1,
          'grangers': 1,
          'review': 1,
          'warner': 1,
          'bros': 1,
          'n': 1,
          'die': 1,
          'boats': 1,
          'per': 1,
          'capita': 1,
          'working': 1,
          'job': 1,
          'u': 1,
          'nevery': 1,
          'journey': 1,
          'makes': 1,
          'allornothing': 1,
          'risk': 1,
          'nit': 1,
          'exhilarating': 1,
          'says': 1,
          'director': 1,
          'wolfgang': 1,
          'petersen': 1,
          'das': 1,
          'boot': 1,
          'nand': 1,
          'captures': 1,
          'true': 1,
          'story': 1,
          'struggle': 1,
          'humanity': 1,
          'aboard': 1,
          'swordfishing': 1,
          'andrea': 1,
          'gail': 1,
          'sailing': 1,
          'gloucester': 1,
          'massachusetts': 1,
          'late': 1,
          'october': 1,
          '1991': 1,
          'nearly': 1,
          'bill': 1,
          'wittliffs': 1,
          'screenplay': 1,
          'based': 1,
          'sebastian': 1,
          'jungers': 1,
          'bestseller': 1,
          'meet': 1,
          'crew': 1,
          'six': 1,
          'veteran': 1,
          'captain': 1,
          'george': 1,
          'clooney': 1,
          'frustrated': 1,
          'cant': 1,
          'find': 1,
          'grand': 1,
          'banks': 1,
          'yet': 1,
          'rival': 1,
          'skipper': 1,
          'mary': 1,
          'elizabeth': 1,
          'mastrantonio': 1,
          'brings': 1,
          'huge': 1,
          'hauls': 1,
          'nhis': 1,
          'righthand': 1,
          'mark': 1,
          'walhberg': 1,
          'needs': 1,
          'money': 1,
          'build': 1,
          'new': 1,
          'girlfriend': 1,
          'diane': 1,
          'lane': 1,
          'devoted': 1,
          'dad': 1,
          'c': 1,
          'reilly': 1,
          'estranged': 1,
          'wife': 1,
          'son': 1,
          'freespirited': 1,
          'jamaican': 1,
          'allen': 1,
          'payne': 1,
          'lonely': 1,
          'guy': 1,
          'hawkes': 1,
          'lastminute': 1,
          'replacement': 1,
          'attitude': 1,
          'william': 1,
          'fichtner': 1,
          'skippers': 1,
          'convinced': 1,
          'change': 1,
          'luck': 1,
          'streak': 1,
          'remote': 1,
          'flemish': 1,
          'cap': 1,
          'trouble': 1,
          'begins': 1,
          'rogue': 1,
          'wave': 1,
          'overboard': 1,
          'ice': 1,
          'machine': 1,
          'breaks': 1,
          '60': 1,
          '000': 1,
          'lb': 1,
          'nof': 1,
          'could': 1,
          'spoil': 1,
          'minor': 1,
          'compared': 1,
          'deadly': 1,
          'monster': 1,
          'approaching': 1,
          'boston': 1,
          'meteorologist': 1,
          'describes': 1,
          'disaster': 1,
          'epic': 1,
          'proportions': 1,
          'also': 1,
          'threatens': 1,
          'lives': 1,
          'coast': 1,
          'guard': 1,
          'helicopter': 1,
          'rescue': 1,
          'team': 1,
          'trying': 1,
          'save': 1,
          'three': 1,
          'stranded': 1,
          'sailboat': 1,
          'high': 1,
          'seas': 1,
          'nits': 1,
          'formulaic': 1,
          'cliches': 1,
          'walls': 1,
          'water': 1,
          'created': 1,
          'fluid': 1,
          'dynamics': 1,
          'simulating': 1,
          'reallife': 1,
          'phenomena': 1,
          'awesome': 1,
          'non': 1,
          'granger': 1,
          'movie': 1,
          'gauge': 1,
          '1': 1,
          '10': 1,
          'suspenseful': 1,
          '8': 1,
          'nhang': 1,
          'whiteknuckle': 1,
          'thrill': 1,
          'ride': 1,
          'summer': 1,
          'npos': 1}),
 Counter({'halloween': 7,
          'christmas': 6,
          'halloweentown': 4,
          'world': 4,
          'film': 4,
          'nightmare': 3,
          'years': 3,
          'behind': 3,
          'holiday': 3,
          'jack': 3,
          'burton': 3,
          'nthe': 3,
          'time': 2,
          'nwith': 2,
          'films': 2,
          'characters': 2,
          'animation': 2,
          'achievements': 2,
          'movie': 2,
          'big': 2,
          'story': 2,
          'one': 2,
          'discover': 2,
          'life': 2,
          'pumpkin': 2,
          'king': 2,
          'everywhere': 2,
          'creates': 2,
          'holidays': 2,
          'happy': 2,
          'toys': 2,
          'children': 2,
          'design': 2,
          'directed': 2,
          'reissue': 1,
          'couldnt': 1,
          'appropriate': 1,
          'attention': 1,
          'thrown': 1,
          'family': 1,
          'recent': 1,
          'namely': 1,
          'starring': 1,
          'pocket': 1,
          'monsters': 1,
          'nickelodeon': 1,
          'high': 1,
          'raised': 1,
          'intellectual': 1,
          'level': 1,
          'childrens': 1,
          'fare': 1,
          'well': 1,
          'studios': 1,
          'mind': 1,
          'refreshing': 1,
          'revisit': 1,
          'classic': 1,
          'screen': 1,
          'still': 1,
          'retains': 1,
          'originality': 1,
          'freshness': 1,
          'seven': 1,
          'ago': 1,
          'nnightmare': 1,
          'mans': 1,
          'quest': 1,
          'true': 1,
          'purpose': 1,
          'look': 1,
          'beyond': 1,
          'accolades': 1,
          'peers': 1,
          'praise': 1,
          'ego': 1,
          'njack': 1,
          'skellington': 1,
          'main': 1,
          'dude': 1,
          'kids': 1,
          'nbut': 1,
          'reign': 1,
          'somehow': 1,
          'lost': 1,
          'understanding': 1,
          'place': 1,
          'magic': 1,
          'nafter': 1,
          'completion': 1,
          'particular': 1,
          'season': 1,
          'walks': 1,
          'heavy': 1,
          'heart': 1,
          'ends': 1,
          'discovering': 1,
          'woods': 1,
          'outside': 1,
          'grove': 1,
          'trees': 1,
          'doors': 1,
          'nimagine': 1,
          'surprise': 1,
          'christmastown': 1,
          'far': 1,
          'impressive': 1,
          'uplifting': 1,
          'surrounded': 1,
          'elves': 1,
          'making': 1,
          'good': 1,
          'cheer': 1,
          'around': 1,
          'nupon': 1,
          'return': 1,
          'decides': 1,
          'combine': 1,
          'together': 1,
          'kidnapping': 1,
          'sandy': 1,
          'claws': 1,
          'employing': 1,
          'residents': 1,
          'build': 1,
          'nhe': 1,
          'aims': 1,
          'take': 1,
          'role': 1,
          'primary': 1,
          'joyprovider': 1,
          'giftbearer': 1,
          'hopes': 1,
          'rediscovering': 1,
          'zest': 1,
          'nalas': 1,
          'comingling': 1,
          'disastrous': 1,
          'results': 1,
          'involving': 1,
          'shrunken': 1,
          'heads': 1,
          'psychotic': 1,
          'wooden': 1,
          'ducks': 1,
          'sleigh': 1,
          'pulled': 1,
          'phantom': 1,
          'dog': 1,
          'lighted': 1,
          'nose': 1,
          'large': 1,
          'sinister': 1,
          'singing': 1,
          'bag': 1,
          'named': 1,
          'oogie': 1,
          'boogie': 1,
          'ntim': 1,
          'man': 1,
          'great': 1,
          'ed': 1,
          'wood': 1,
          'beetlejuice': 1,
          'peewees': 1,
          'adventure': 1,
          'edward': 1,
          'scissorhands': 1,
          'creative': 1,
          'force': 1,
          'noriginally': 1,
          'authored': 1,
          'poem': 1,
          'became': 1,
          'basis': 1,
          'storyline': 1,
          'jointly': 1,
          'involved': 1,
          'production': 1,
          'though': 1,
          'many': 1,
          'mistakenly': 1,
          'assume': 1,
          'picture': 1,
          'stamp': 1,
          'clearly': 1,
          'bold': 1,
          'colors': 1,
          'imaginative': 1,
          'character': 1,
          'simple': 1,
          'yet': 1,
          'compelling': 1,
          'direction': 1,
          'harry': 1,
          'selick': 1,
          'also': 1,
          'james': 1,
          'giant': 1,
          'peach': 1,
          'strong': 1,
          'offering': 1,
          'intimate': 1,
          'views': 1,
          'strange': 1,
          'collection': 1,
          'nalso': 1,
          'memorable': 1,
          'songs': 1,
          'written': 1,
          'former': 1,
          'oingo': 1,
          'boingo': 1,
          'lead': 1,
          'singer': 1,
          'danny': 1,
          'elfman': 1,
          'next': 1,
          'john': 1,
          'williams': 1,
          'composing': 1,
          'intended': 1,
          'kid': 1,
          'adult': 1,
          'everyone': 1,
          'nits': 1,
          'childs': 1,
          'play': 1,
          'truly': 1,
          'tough': 1,
          'saying': 1,
          'need': 1,
          'exactly': 1,
          'without': 1,
          'compromise': 1,
          'nwhat': 1,
          'better': 1,
          'message': 1,
          'npos': 1}),
 Counter({'film': 12,
          'action': 9,
          'aliens': 8,
          'alien': 8,
          'movie': 6,
          'ripley': 6,
          'best': 5,
          'cameron': 4,
          'planet': 4,
          'one': 3,
          'years': 3,
          'james': 3,
          'say': 3,
          'marines': 3,
          'colony': 3,
          'next': 3,
          'great': 3,
          'drama': 3,
          'good': 3,
          'completely': 2,
          'genre': 2,
          'guy': 2,
          'huge': 2,
          'combines': 2,
          'big': 2,
          'films': 2,
          't2': 2,
          'judgement': 2,
          'day': 2,
          'scifi': 2,
          'original': 2,
          'featured': 2,
          'nand': 2,
          'take': 2,
          'weaver': 2,
          'found': 2,
          'ship': 2,
          'nif': 2,
          'quickly': 2,
          'nin': 2,
          'soon': 2,
          'nit': 2,
          'nasty': 2,
          'happens': 2,
          'half': 2,
          'like': 2,
          'time': 2,
          'nwell': 2,
          'actress': 2,
          'right': 2,
          'fx': 2,
          'another': 2,
          'wait': 2,
          'every': 1,
          'comes': 1,
          'along': 1,
          'redefines': 1,
          'dramas': 1,
          'citizen': 1,
          'kane': 1,
          'arthouse': 1,
          'pulp': 1,
          'fiction': 1,
          'comedy': 1,
          'well': 1,
          'jim': 1,
          'carrey': 1,
          'okay': 1,
          'hes': 1,
          'influence': 1,
          'nnot': 1,
          'mention': 1,
          'expensive': 1,
          'nsometimes': 1,
          'even': 1,
          'sprawling': 1,
          'motion': 1,
          'picture': 1,
          'event': 1,
          'forrest': 1,
          'gump': 1,
          'four': 1,
          'ago': 1,
          'nwith': 1,
          'whic': 1,
          'released': 1,
          'much': 1,
          'hype': 1,
          'seven': 1,
          'equallyinnovative': 1,
          'parent': 1,
          '1979': 1,
          'ndirected': 1,
          'written': 1,
          'abyss': 1,
          'true': 1,
          'lies': 1,
          'authority': 1,
          'masterful': 1,
          'encore': 1,
          'thriller': 1,
          'terminator': 1,
          '1984': 1,
          'nwhile': 1,
          'dark': 1,
          'enclosed': 1,
          'horror': 1,
          'slowly': 1,
          'massacering': 1,
          'horrified': 1,
          'crew': 1,
          'took': 1,
          'bigbudget': 1,
          'multiple': 1,
          'basically': 1,
          'thing': 1,
          'although': 1,
          'muchlarger': 1,
          'scale': 1,
          'boy': 1,
          'route': 1,
          'nid': 1,
          '165': 1,
          'mph': 1,
          'nthe': 1,
          'opens': 1,
          '57': 1,
          'lt': 1,
          'cryogenic': 1,
          'state': 1,
          'salvage': 1,
          'vessel': 1,
          'youll': 1,
          'recall': 1,
          'end': 1,
          'surviving': 1,
          'member': 1,
          'cryogenically': 1,
          'hibernated': 1,
          'expelling': 1,
          'rogue': 1,
          'nunfortunately': 1,
          'thought': 1,
          'shed': 1,
          'couple': 1,
          'weeks': 1,
          'nonce': 1,
          'shes': 1,
          'returned': 1,
          'earth': 1,
          'interrogated': 1,
          'company': 1,
          'dismiss': 1,
          'stories': 1,
          'lunacy': 1,
          'truth': 1,
          'believe': 1,
          'approach': 1,
          'offer': 1,
          'travel': 1,
          'new': 1,
          'advisor': 1,
          'seems': 1,
          'oncebreeding': 1,
          'ground': 1,
          'communication': 1,
          'lost': 1,
          'doesnt': 1,
          'exactly': 1,
          'genius': 1,
          'guess': 1,
          'agrees': 1,
          'mistake': 1,
          'dozen': 1,
          'plus': 1,
          'slimy': 1,
          'corporate': 1,
          'reiser': 1,
          'looks': 1,
          'sleeve': 1,
          'nwhen': 1,
          'arrive': 1,
          'find': 1,
          'ruins': 1,
          'nonly': 1,
          'survivor': 1,
          'little': 1,
          'girl': 1,
          'newt': 1,
          'confirms': 1,
          'yes': 1,
          'managed': 1,
          'survive': 1,
          'hidding': 1,
          'ventilation': 1,
          'system': 1,
          'enough': 1,
          'come': 1,
          'attack': 1,
          'nwhat': 1,
          'hour': 1,
          'sets': 1,
          'apart': 1,
          'standard': 1,
          'scenes': 1,
          'ncameron': 1,
          'directs': 1,
          'skillfully': 1,
          'suspensefully': 1,
          'youre': 1,
          'literally': 1,
          'ringing': 1,
          'hands': 1,
          'finale': 1,
          'rolls': 1,
          'around': 1,
          'nwhich': 1,
          'features': 1,
          'opinion': 1,
          'fight': 1,
          'scene': 1,
          'ever': 1,
          'recorded': 1,
          'straps': 1,
          'robot': 1,
          'battles': 1,
          'queen': 1,
          'death': 1,
          'nmany': 1,
          'people': 1,
          'tell': 1,
          'real': 1,
          'cliches': 1,
          'would': 1,
          'wrong': 1,
          'friends': 1,
          'sigourney': 1,
          'nominated': 1,
          '1987': 1,
          'academy': 1,
          'awards': 1,
          'nthats': 1,
          'nyou': 1,
          'know': 1,
          'oscar': 1,
          'nomination': 1,
          'attached': 1,
          'something': 1,
          'technical': 1,
          'stuff': 1,
          'editing': 1,
          'got': 1,
          'short': 1,
          'elements': 1,
          'plot': 1,
          'dialogue': 1,
          'villains': 1,
          'could': 1,
          'arguably': 1,
          'called': 1,
          'nthen': 1,
          'maybe': 1,
          'nmovies': 1,
          'rise': 1,
          'fall': 1,
          'glory': 1,
          'sad': 1,
          'wrestled': 1,
          'throne': 1,
          '1991': 1,
          'nso': 1,
          'king': 1,
          'lets': 1,
          'december': 1,
          '19th': 1,
          'see': 1,
          'yet': 1,
          'filmthe': 1,
          'highest': 1,
          'budgeted': 1,
          'timetitanic': 1,
          'make': 1,
          'decision': 1,
          'ni': 1,
          'cant': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'nthe': 6,
          'film': 6,
          'one': 5,
          'audience': 4,
          'character': 4,
          'singer': 3,
          'created': 3,
          'last': 3,
          'years': 3,
          'plot': 3,
          'story': 3,
          'kint': 3,
          'kevin': 3,
          'toro': 3,
          'also': 3,
          'good': 3,
          'performance': 3,
          'ending': 3,
          'mcquarrie': 2,
          'plotdriven': 2,
          'usual': 2,
          'word': 2,
          'screen': 2,
          'spacey': 2,
          'cop': 2,
          'keaton': 2,
          'new': 2,
          'fenster': 2,
          'benicio': 2,
          'del': 2,
          'finest': 2,
          'service': 2,
          'nwhat': 2,
          'keyser': 2,
          'soze': 2,
          'minutes': 2,
          'youll': 2,
          'ever': 2,
          'true': 2,
          'terrific': 2,
          'actor': 2,
          'nhowever': 2,
          'giving': 2,
          'end': 2,
          'best': 2,
          '10': 2,
          'cinematic': 2,
          'believe': 2,
          'nkudos': 2,
          'characters': 2,
          'puzzle': 2,
          'setting': 2,
          'flaws': 2,
          '1995': 1,
          'brian': 1,
          'christopher': 1,
          'dreamed': 1,
          'simple': 1,
          'concept': 1,
          'isnt': 1,
          'stupid': 1,
          'nfrom': 1,
          'went': 1,
          'intricately': 1,
          'pieced': 1,
          '25': 1,
          'result': 1,
          'suspects': 1,
          'hell': 1,
          'redefines': 1,
          'twist': 1,
          'convoluted': 1,
          'really': 1,
          'confusing': 1,
          'read': 1,
          'although': 1,
          'easy': 1,
          'follow': 1,
          'nspecial': 1,
          'investigator': 1,
          'kujan': 1,
          'chazz': 1,
          'palminteri': 1,
          'grills': 1,
          'verbal': 1,
          'crippled': 1,
          'conman': 1,
          'lone': 1,
          'survivor': 1,
          'la': 1,
          'boat': 1,
          'explosion': 1,
          'claimed': 1,
          '20': 1,
          'victims': 1,
          'nkujan': 1,
          'wants': 1,
          'confirm': 1,
          'nemesis': 1,
          'rogue': 1,
          'gabriel': 1,
          'byrne': 1,
          'actually': 1,
          'dead': 1,
          'nkint': 1,
          'relates': 1,
          'majority': 1,
          'flashback': 1,
          'beginning': 1,
          'fateful': 1,
          'day': 1,
          'five': 1,
          'shifty': 1,
          'guys': 1,
          'meet': 1,
          'policestation': 1,
          'lineup': 1,
          'york': 1,
          'city': 1,
          'nalong': 1,
          'dour': 1,
          'encounters': 1,
          'cheerfully': 1,
          'sociopathic': 1,
          'mcmanus': 1,
          'stephen': 1,
          'baldwin': 1,
          'mordantly': 1,
          'sarcastic': 1,
          'hockney': 1,
          'pollak': 1,
          'whose': 1,
          'speech': 1,
          'virtually': 1,
          'incomprehensible': 1,
          'ntogether': 1,
          'steal': 1,
          'small': 1,
          'fortune': 1,
          'gems': 1,
          'yorks': 1,
          'taxi': 1,
          'crooked': 1,
          'cops': 1,
          'provide': 1,
          'escort': 1,
          'visiting': 1,
          'drug': 1,
          'kingpins': 1,
          'follows': 1,
          'shellgame': 1,
          'violence': 1,
          'betrayal': 1,
          'hinging': 1,
          'identity': 1,
          'mysterious': 1,
          'villain': 1,
          'called': 1,
          'brilliantly': 1,
          'compact': 1,
          'shortest': 1,
          '90': 1,
          'spend': 1,
          'theater': 1,
          'cast': 1,
          'exceptional': 1,
          'npalminteri': 1,
          'shines': 1,
          'brutally': 1,
          'honest': 1,
          'going': 1,
          'whole': 1,
          'nbyrne': 1,
          'brooding': 1,
          'seriousness': 1,
          'needed': 1,
          'supplement': 1,
          'hysteria': 1,
          'riot': 1,
          'ndel': 1,
          'brilliant': 1,
          'lines': 1,
          'jumbled': 1,
          'mess': 1,
          'cant': 1,
          'understand': 1,
          'man': 1,
          'says': 1,
          'sure': 1,
          'damn': 1,
          'funny': 1,
          'nbaldwin': 1,
          'careful': 1,
          'methodical': 1,
          'cold': 1,
          'chilling': 1,
          'nasty': 1,
          'streak': 1,
          'hotblooded': 1,
          'sarcasm': 1,
          'npollak': 1,
          'forever': 1,
          'known': 1,
          'launched': 1,
          'nspacey': 1,
          'simply': 1,
          'breathtaking': 1,
          'force': 1,
          'magnetic': 1,
          'jars': 1,
          'senses': 1,
          'twisting': 1,
          'maze': 1,
          'nspaceys': 1,
          'remembered': 1,
          'career': 1,
          'may': 1,
          'supporting': 1,
          '50': 1,
          'nverbal': 1,
          'clever': 1,
          'storyteller': 1,
          'weak': 1,
          'oppressed': 1,
          'gleefully': 1,
          'evil': 1,
          'bone': 1,
          'yet': 1,
          'pitiful': 1,
          'draws': 1,
          'sympathy': 1,
          'decent': 1,
          'boils': 1,
          'greatest': 1,
          'history': 1,
          'least': 1,
          'revelation': 1,
          'closing': 1,
          'gunfights': 1,
          'something': 1,
          'wondrous': 1,
          'nyou': 1,
          'see': 1,
          'times': 1,
          'delightful': 1,
          'fastpaced': 1,
          'furiously': 1,
          'quirky': 1,
          'phenomenal': 1,
          'acting': 1,
          'hilarious': 1,
          'moments': 1,
          'stuck': 1,
          'middle': 1,
          'nmcquarrie': 1,
          'refuses': 1,
          'dumb': 1,
          'nwithout': 1,
          'furnishing': 1,
          'many': 1,
          'details': 1,
          'concocts': 1,
          'lets': 1,
          'run': 1,
          'hoping': 1,
          'gets': 1,
          'nwe': 1,
          'nthis': 1,
          'might': 1,
          'john': 1,
          'ottman': 1,
          'score': 1,
          'nthey': 1,
          'create': 1,
          'filmnoir': 1,
          'carefully': 1,
          'intricate': 1,
          'final': 1,
          'jarring': 1,
          'nthere': 1,
          'questions': 1,
          'raised': 1,
          'answers': 1,
          'lack': 1,
          'development': 1,
          'strong': 1,
          'female': 1,
          'save': 1,
          'stunning': 1,
          'make': 1,
          'nif': 1,
          'havent': 1,
          'seen': 1,
          'rent': 1,
          'nwatch': 1,
          'nthen': 1,
          'rewind': 1,
          'tape': 1,
          'watch': 1,
          'ntrust': 1,
          'amazed': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'sees': 5,
          'crowe': 5,
          'boy': 5,
          'well': 4,
          'nit': 4,
          'one': 4,
          'lie': 4,
          'willis': 4,
          'dead': 4,
          'time': 4,
          'movie': 3,
          'even': 3,
          'also': 3,
          'sixth': 3,
          'sense': 3,
          'osment': 3,
          'troubled': 3,
          'cole': 3,
          'nand': 3,
          'nhe': 3,
          'around': 3,
          'help': 3,
          'throughout': 3,
          'shall': 3,
          'directed': 2,
          'like': 2,
          'nbut': 2,
          'accept': 2,
          'must': 2,
          'child': 2,
          'haley': 2,
          'joel': 2,
          'people': 2,
          'nnot': 2,
          'first': 2,
          'frightened': 2,
          'emotionally': 2,
          'mother': 2,
          'collette': 2,
          'ncrowe': 2,
          'wife': 2,
          'olivia': 2,
          'williams': 2,
          'script': 2,
          'work': 2,
          'character': 2,
          'treating': 2,
          'remain': 2,
          'manages': 2,
          'man': 2,
          'crowes': 2,
          'shyamalan': 2,
          'film': 2,
          'final': 2,
          'death': 2,
          'happened': 1,
          'na': 1,
          'scripted': 1,
          'acted': 1,
          'involving': 1,
          'suspenseful': 1,
          'unexpected': 1,
          'twist': 1,
          'end': 1,
          'packs': 1,
          'punch': 1,
          'blow': 1,
          'solar': 1,
          'plexus': 1,
          'order': 1,
          'premise': 1,
          'spiritual': 1,
          'nstarring': 1,
          'bruce': 1,
          'armageddon': 1,
          'psychologist': 1,
          'forrest': 1,
          'gump': 1,
          'youngster': 1,
          'spooky': 1,
          'scary': 1,
          'though': 1,
          'contain': 1,
          'disturbing': 1,
          'images': 1,
          'designed': 1,
          'startle': 1,
          'neightyearold': 1,
          'sear': 1,
          'dreams': 1,
          'lifeless': 1,
          'bodies': 1,
          'walking': 1,
          'regular': 1,
          'ndr': 1,
          'malcolm': 1,
          'trying': 1,
          'recognizes': 1,
          'many': 1,
          'attributes': 1,
          'earlier': 1,
          'patients': 1,
          'failed': 1,
          'resulting': 1,
          'patient': 1,
          'shooting': 1,
          'turning': 1,
          'gun': 1,
          'nif': 1,
          'could': 1,
          'manage': 1,
          'find': 1,
          'way': 1,
          'believes': 1,
          'might': 1,
          'able': 1,
          'put': 1,
          'demons': 1,
          'rest': 1,
          'needs': 1,
          'gain': 1,
          'coles': 1,
          'trust': 1,
          'closed': 1,
          'unwilling': 1,
          'tell': 1,
          'anyone': 1,
          'toni': 1,
          'clockwatchers': 1,
          'nabout': 1,
          'secrets': 1,
          'begins': 1,
          'spend': 1,
          'marriage': 1,
          'starts': 1,
          'dissolve': 1,
          'anna': 1,
          'rushmore': 1,
          'becoming': 1,
          'cold': 1,
          'distant': 1,
          'neglect': 1,
          'preoccupation': 1,
          'nbruce': 1,
          'underplays': 1,
          'role': 1,
          'allowing': 1,
          'excellent': 1,
          'building': 1,
          'development': 1,
          'moves': 1,
          'wont': 1,
          'communicate': 1,
          'hallucinations': 1,
          'wondering': 1,
          'perhaps': 1,
          'isnt': 1,
          'truth': 1,
          'behind': 1,
          'nmr': 1,
          'serviceable': 1,
          'job': 1,
          'letting': 1,
          'focus': 1,
          'story': 1,
          'instead': 1,
          'familiar': 1,
          'action': 1,
          'hero': 1,
          'screen': 1,
          'persona': 1,
          'nelevenyearold': 1,
          'impress': 1,
          'us': 1,
          'performance': 1,
          'demonstrates': 1,
          'amazing': 1,
          'amount': 1,
          'selfcomposure': 1,
          'ability': 1,
          'play': 1,
          'nuances': 1,
          'complex': 1,
          'seasoned': 1,
          'pro': 1,
          'fine': 1,
          'tender': 1,
          'age': 1,
          'nkeep': 1,
          'eye': 1,
          'young': 1,
          'supporting': 1,
          'cast': 1,
          'quite': 1,
          'effective': 1,
          'ntoni': 1,
          'confused': 1,
          'frustrated': 1,
          'cant': 1,
          'understand': 1,
          'happening': 1,
          'loving': 1,
          'shutting': 1,
          'due': 1,
          'lack': 1,
          'attention': 1,
          'husband': 1,
          'donnie': 1,
          'wahlberg': 1,
          'ransom': 1,
          'expatient': 1,
          'grown': 1,
          'illustrates': 1,
          'doctors': 1,
          'failure': 1,
          'vivid': 1,
          'terms': 1,
          'imaginable': 1,
          'ntwentyeight': 1,
          'year': 1,
          'old': 1,
          'night': 1,
          'wide': 1,
          'awake': 1,
          'maintaining': 1,
          'proper': 1,
          'tension': 1,
          'crafting': 1,
          'storytelling': 1,
          'expertly': 1,
          'films': 1,
          'full': 1,
          'impact': 1,
          'reached': 1,
          'moments': 1,
          'surprising': 1,
          'revelation': 1,
          'forces': 1,
          'reevaluation': 1,
          'preceded': 1,
          'rare': 1,
          'pull': 1,
          'mr': 1,
          'responsible': 1,
          'certainly': 1,
          'commended': 1,
          'nin': 1,
          'giving': 1,
          'favorable': 1,
          'three': 1,
          'star': 1,
          'review': 1,
          'craftsmanship': 1,
          'artistic': 1,
          'merit': 1,
          'point': 1,
          'spiritually': 1,
          'speaking': 1,
          'highly': 1,
          'misleading': 1,
          'nthere': 1,
          'scriptural': 1,
          'foundation': 1,
          'upon': 1,
          'base': 1,
          'belief': 1,
          'ghosts': 1,
          'living': 1,
          'concept': 1,
          'doorway': 1,
          'another': 1,
          'plane': 1,
          'existence': 1,
          'devilish': 1,
          'long': 1,
          'recorded': 1,
          'bible': 1,
          'devised': 1,
          'serpent': 1,
          'assured': 1,
          'eve': 1,
          'thou': 1,
          'surely': 1,
          'die': 1,
          'direct': 1,
          'contradiction': 1,
          'gods': 1,
          'admonition': 1,
          'nthat': 1,
          'perpetuated': 1,
          'ad': 1,
          'infinitum': 1,
          'ages': 1,
          'nscriptures': 1,
          'speak': 1,
          'rise': 1,
          'wonderful': 1,
          'demonstration': 1,
          'victory': 1,
          'commence': 1,
          'second': 1,
          'coming': 1,
          'christ': 1,
          'nan': 1,
          'event': 1,
          'yet': 1,
          'occurred': 1,
          'ntherefore': 1,
          'state': 1,
          'oblivion': 1,
          'consciousness': 1,
          'longawaited': 1,
          'trump': 1,
          'sound': 1,
          'youll': 1,
          'need': 1,
          'six': 1,
          'senses': 1,
          'register': 1,
          'joy': 1,
          'rejoicing': 1,
          'resound': 1,
          'heavens': 1,
          'npos': 1}),
 Counter({'mel': 8,
          'film': 5,
          'good': 4,
          'would': 4,
          'one': 4,
          'gibson': 3,
          'payback': 3,
          'nin': 3,
          'gibsons': 3,
          'partner': 3,
          'pay': 3,
          'get': 3,
          'audience': 3,
          'better': 2,
          'couple': 2,
          'ngibson': 2,
          'money': 2,
          'mob': 2,
          'nso': 2,
          'dead': 2,
          'goes': 2,
          'nbut': 2,
          'isnt': 2,
          'real': 2,
          'movie': 2,
          'nto': 2,
          'make': 2,
          'back': 2,
          'director': 2,
          'nthe': 2,
          'bit': 2,
          'another': 2,
          'original': 2,
          'love': 2,
          'end': 2,
          'character': 2,
          'redeeming': 2,
          'qualities': 2,
          'cold': 2,
          'role': 2,
          'quite': 2,
          'big': 2,
          'coburn': 2,
          'grand': 1,
          'scheme': 1,
          'movies': 1,
          'conspiracy': 1,
          'theory': 1,
          'braveheart': 1,
          'lethal': 1,
          'weapon': 1,
          'words': 1,
          'decent': 1,
          'hours': 1,
          'entertainment': 1,
          '20': 1,
          'years': 1,
          'compile': 1,
          'list': 1,
          'greatest': 1,
          'hits': 1,
          'probably': 1,
          'wont': 1,
          'plays': 1,
          'crook': 1,
          'gets': 1,
          'double': 1,
          'crossed': 1,
          'heist': 1,
          'payroll': 1,
          'nmels': 1,
          'needed': 1,
          'debt': 1,
          'puts': 1,
          'bullets': 1,
          'leaving': 1,
          'creditors': 1,
          'short': 1,
          'certainly': 1,
          'happy': 1,
          'matters': 1,
          'worse': 1,
          'wants': 1,
          'willing': 1,
          'go': 1,
          'lengths': 1,
          'accomplish': 1,
          'feat': 1,
          'nhis': 1,
          'ex': 1,
          'already': 1,
          'used': 1,
          'mobsters': 1,
          'npayback': 1,
          'often': 1,
          'violent': 1,
          'credit': 1,
          'scenes': 1,
          'could': 1,
          'graphic': 1,
          'im': 1,
          'sure': 1,
          'second': 1,
          'made': 1,
          'choice': 1,
          'let': 1,
          'use': 1,
          'imagination': 1,
          'instead': 1,
          'subjecting': 1,
          'us': 1,
          'usual': 1,
          'gratuitous': 1,
          'gore': 1,
          'found': 1,
          'many': 1,
          'films': 1,
          'appears': 1,
          'disjointed': 1,
          'places': 1,
          'understandable': 1,
          'considering': 1,
          'producer': 1,
          'star': 1,
          'wasnt': 1,
          'thrilled': 1,
          'turned': 1,
          'wanted': 1,
          'parts': 1,
          'reshot': 1,
          'nwhen': 1,
          'refused': 1,
          'brought': 1,
          'reshoot': 1,
          'result': 1,
          'final': 1,
          'product': 1,
          'apparently': 1,
          'although': 1,
          'personally': 1,
          'see': 1,
          'version': 1,
          'comparisons': 1,
          'sake': 1,
          'choppy': 1,
          'feel': 1,
          'towards': 1,
          'nits': 1,
          'always': 1,
          'tough': 1,
          'main': 1,
          'villain': 1,
          'unless': 1,
          'person': 1,
          'case': 1,
          'hey': 1,
          'even': 1,
          'killing': 1,
          'people': 1,
          'blood': 1,
          'still': 1,
          'rooting': 1,
          'nmy': 1,
          'guess': 1,
          'put': 1,
          'johnny': 1,
          'bananas': 1,
          'actor': 1,
          'responsive': 1,
          'whether': 1,
          'playing': 1,
          'suicidal': 1,
          'cop': 1,
          'stone': 1,
          'killer': 1,
          'job': 1,
          'nhe': 1,
          'almost': 1,
          'guarantees': 1,
          'matter': 1,
          'else': 1,
          'happens': 1,
          'rest': 1,
          'least': 1,
          'going': 1,
          'performance': 1,
          'nthis': 1,
          'time': 1,
          'surrounded': 1,
          'supporting': 1,
          'cast': 1,
          'including': 1,
          'maria': 1,
          'bello': 1,
          'interest': 1,
          'william': 1,
          'devane': 1,
          'kris': 1,
          'kristofferson': 1,
          'mod': 1,
          'bosses': 1,
          'man': 1,
          'steals': 1,
          'show': 1,
          'unfortunately': 1,
          'doesnt': 1,
          'part': 1,
          'james': 1,
          'yet': 1,
          'mobster': 1,
          'nif': 1,
          'disappointment': 1,
          'didnt': 1,
          'bigger': 1,
          'fairly': 1,
          'solid': 1,
          'action': 1,
          'thriller': 1,
          'league': 1,
          'work': 1,
          'npos': 1}),
 Counter({'leila': 27,
          'reza': 16,
          'first': 6,
          'film': 6,
          'another': 5,
          'characters': 4,
          'hatami': 4,
          'second': 4,
          'woman': 4,
          'marriage': 4,
          'easily': 3,
          'birthday': 3,
          'character': 3,
          'husband': 3,
          'children': 3,
          'able': 3,
          'go': 3,
          'well': 3,
          'perfect': 3,
          'much': 3,
          'could': 3,
          'thoughtprovoking': 2,
          'tradition': 2,
          'director': 2,
          'mehrjui': 2,
          'motion': 2,
          'picture': 2,
          'nalthough': 2,
          'country': 2,
          'iran': 2,
          'ali': 2,
          'mosaffa': 2,
          'parents': 2,
          'isnt': 2,
          'quite': 2,
          'little': 2,
          'child': 2,
          'married': 2,
          'doesnt': 2,
          'give': 2,
          'motherinlaw': 2,
          'jamileh': 2,
          'sheikhi': 2,
          'always': 2,
          'polygamy': 2,
          'wife': 2,
          'nleila': 2,
          'even': 2,
          'though': 2,
          'found': 2,
          'within': 2,
          'told': 2,
          'taken': 2,
          'really': 2,
          'american': 2,
          'audiences': 2,
          'upon': 2,
          'come': 2,
          'idea': 2,
          'aspects': 2,
          'relationship': 2,
          'love': 2,
          'sequence': 2,
          'one': 2,
          'moments': 2,
          'half': 2,
          'scene': 2,
          'date': 2,
          'whole': 2,
          'going': 2,
          'ndespite': 2,
          'believe': 2,
          'everything': 2,
          'may': 2,
          'leilas': 2,
          'consider': 2,
          'question': 1,
          'morals': 1,
          'subject': 1,
          'directly': 1,
          'core': 1,
          'powerfully': 1,
          'articulated': 1,
          'subtle': 1,
          'drama': 1,
          'famous': 1,
          'iranian': 1,
          'dariush': 1,
          'prosperous': 1,
          'thirtyyear': 1,
          'career': 1,
          'gain': 1,
          'u': 1,
          'distribution': 1,
          'thanks': 1,
          'run': 1,
          'features': 1,
          'unfamiliar': 1,
          'mehrjuis': 1,
          'previous': 1,
          'directing': 1,
          'efforts': 1,
          'perhaps': 1,
          'reason': 1,
          'predicament': 1,
          'hand': 1,
          'doubt': 1,
          'exclusive': 1,
          'heartbreaking': 1,
          'solely': 1,
          'truthful': 1,
          'emotions': 1,
          'understood': 1,
          'viewers': 1,
          'nset': 1,
          'modernday': 1,
          'begins': 1,
          'title': 1,
          'brief': 1,
          'prologue': 1,
          'shown': 1,
          'encounter': 1,
          'future': 1,
          'nas': 1,
          'set': 1,
          'visit': 1,
          'celebration': 1,
          'planned': 1,
          'things': 1,
          'seem': 1,
          'rosy': 1,
          'couple': 1,
          'outside': 1,
          'life': 1,
          'sweet': 1,
          'nearlier': 1,
          'day': 1,
          'gone': 1,
          'see': 1,
          'physician': 1,
          'ultimately': 1,
          'discovered': 1,
          'holds': 1,
          'chance': 1,
          'ever': 1,
          'conceiving': 1,
          'nwhen': 1,
          'conditions': 1,
          'ruled': 1,
          'passes': 1,
          'possibility': 1,
          'adoption': 1,
          'firmly': 1,
          'lovingly': 1,
          'tells': 1,
          'care': 1,
          'nnonetheless': 1,
          'ashamed': 1,
          'never': 1,
          'baby': 1,
          'societal': 1,
          'norm': 1,
          'selfesteem': 1,
          'helped': 1,
          'domineering': 1,
          'whose': 1,
          'hopes': 1,
          'carry': 1,
          'sacred': 1,
          'family': 1,
          'name': 1,
          'vanishes': 1,
          'hearing': 1,
          'news': 1,
          'son': 1,
          'nbluntly': 1,
          'explaining': 1,
          'wished': 1,
          'accepted': 1,
          'suggests': 1,
          'take': 1,
          'bear': 1,
          'hesitantly': 1,
          'agrees': 1,
          'shallowly': 1,
          'laugh': 1,
          'afterwards': 1,
          'hopeful': 1,
          'womens': 1,
          'inadequacies': 1,
          'finally': 1,
          'meet': 1,
          'claims': 1,
          'like': 1,
          'refuses': 1,
          'full': 1,
          'blessing': 1,
          'nthere': 1,
          'easy': 1,
          'answers': 1,
          'thoughtfully': 1,
          'examines': 1,
          'central': 1,
          'unfortunate': 1,
          'plight': 1,
          'inner': 1,
          'workings': 1,
          'matteroffact': 1,
          'narration': 1,
          'nalmost': 1,
          'completely': 1,
          'shame': 1,
          'option': 1,
          'agree': 1,
          'forceful': 1,
          'motherinlaws': 1,
          'requests': 1,
          'unsure': 1,
          'react': 1,
          'end': 1,
          'marrying': 1,
          'nmaybe': 1,
          'unquestionably': 1,
          'shocking': 1,
          'since': 1,
          'concept': 1,
          'looked': 1,
          'less': 1,
          'everyday': 1,
          'occurrence': 1,
          'however': 1,
          'unable': 1,
          'terms': 1,
          'feels': 1,
          'duty': 1,
          'make': 1,
          'happy': 1,
          'matter': 1,
          'circumstances': 1,
          'none': 1,
          'strongest': 1,
          'portrayal': 1,
          'three': 1,
          'months': 1,
          'meeting': 1,
          'obviously': 1,
          'deeply': 1,
          'nit': 1,
          'key': 1,
          'ingredient': 1,
          'making': 1,
          'follows': 1,
          'opening': 1,
          'scenes': 1,
          'powerful': 1,
          'succeeded': 1,
          'possible': 1,
          'seemingly': 1,
          'unimportant': 1,
          'glance': 1,
          'early': 1,
          'eating': 1,
          'dinner': 1,
          'laughing': 1,
          'nearly': 1,
          'uncontrollably': 1,
          'actually': 1,
          'vital': 1,
          'unmistakably': 1,
          'sets': 1,
          'boundary': 1,
          'unrequisite': 1,
          'nditto': 1,
          'gives': 1,
          'large': 1,
          'stuffed': 1,
          'animal': 1,
          'reveals': 1,
          'beautiful': 1,
          'necklace': 1,
          'also': 1,
          'gotten': 1,
          'nthese': 1,
          'small': 1,
          'contrast': 1,
          'solemn': 1,
          'outraging': 1,
          'sequences': 1,
          'latter': 1,
          'drops': 1,
          'side': 1,
          'busy': 1,
          'road': 1,
          'zooms': 1,
          'nleft': 1,
          'ponder': 1,
          'quickly': 1,
          'diminishing': 1,
          'foolishly': 1,
          'unbeknownst': 1,
          'prays': 1,
          'time': 1,
          'keep': 1,
          'longer': 1,
          'nrefusing': 1,
          'stay': 1,
          'house': 1,
          'inevitably': 1,
          'leads': 1,
          'wedding': 1,
          'night': 1,
          'extraordinary': 1,
          'sorrow': 1,
          'potency': 1,
          'finds': 1,
          'emotionally': 1,
          'torn': 1,
          'apart': 1,
          'closed': 1,
          'upstairs': 1,
          'bedroom': 1,
          'proceedings': 1,
          'initial': 1,
          'agreement': 1,
          'thing': 1,
          'realizes': 1,
          'betrayed': 1,
          'believed': 1,
          'cared': 1,
          'nsure': 1,
          'mothers': 1,
          'initially': 1,
          'wanting': 1,
          'still': 1,
          'backed': 1,
          'couldnt': 1,
          'nin': 1,
          'pivotal': 1,
          'role': 1,
          'appears': 1,
          'every': 1,
          'nothing': 1,
          'short': 1,
          'remarkable': 1,
          'injecting': 1,
          'equal': 1,
          'measure': 1,
          'startling': 1,
          'strength': 1,
          'unavoidable': 1,
          'vulnerability': 1,
          'utter': 1,
          'despair': 1,
          'nunlike': 1,
          'films': 1,
          'spelled': 1,
          'says': 1,
          'elusive': 1,
          'expression': 1,
          'face': 1,
          'possibly': 1,
          'conveyed': 1,
          'words': 1,
          'nevery': 1,
          'bit': 1,
          'match': 1,
          'man': 1,
          'hold': 1,
          'unbreakable': 1,
          'bond': 1,
          'naive': 1,
          'realize': 1,
          'marries': 1,
          'someone': 1,
          'else': 1,
          'nfor': 1,
          'strong': 1,
          'non': 1,
          'technical': 1,
          'level': 1,
          'many': 1,
          'blatant': 1,
          'punctiation': 1,
          'spelling': 1,
          'mistakes': 1,
          'subtitles': 1,
          'need': 1,
          'fixed': 1,
          'nand': 1,
          'concerning': 1,
          'plot': 1,
          'developments': 1,
          'final': 1,
          'five': 1,
          'minutes': 1,
          'ring': 1,
          'false': 1,
          'compared': 1,
          'nmehrjuis': 1,
          'decision': 1,
          'use': 1,
          'extremely': 1,
          'stylized': 1,
          'approach': 1,
          'ending': 1,
          'wrong': 1,
          'choice': 1,
          'particularly': 1,
          'almost': 1,
          'comedic': 1,
          'way': 1,
          'wrapping': 1,
          'spiteful': 1,
          'played': 1,
          'memorably': 1,
          'minor': 1,
          'missteps': 1,
          'important': 1,
          'definately': 1,
          'sought': 1,
          'limited': 1,
          '16': 1,
          'release': 1,
          'new': 1,
          'yorks': 1,
          'cinema': 1,
          'village': 1,
          '21': 1,
          'la': 1,
          'nthe': 1,
          'questions': 1,
          'deals': 1,
          'balanced': 1,
          'evenly': 1,
          'uneasy': 1,
          'morales': 1,
          'climax': 1,
          'arrives': 1,
          'selfworth': 1,
          'startlingly': 1,
          'stripped': 1,
          'away': 1,
          'reveal': 1,
          'victim': 1,
          'led': 1,
          'complete': 1,
          'devastation': 1,
          'return': 1,
          'nits': 1,
          'difficult': 1,
          'culminating': 1,
          'interior': 1,
          'demise': 1,
          'simply': 1,
          'avoided': 1,
          'selfish': 1,
          'lives': 1,
          'major': 1,
          'pawn': 1,
          'unforgivable': 1,
          'scheme': 1,
          'npos': 1}),
 Counter({'nthe': 4,
          'like': 3,
          'old': 3,
          'hutton': 2,
          'hes': 2,
          'high': 2,
          'school': 2,
          'movie': 2,
          'film': 2,
          'uma': 2,
          'thurman': 2,
          'odonnell': 2,
          'people': 2,
          'buddies': 2,
          'relationship': 2,
          'beautiful': 2,
          'one': 2,
          'girlfriend': 2,
          'little': 2,
          'time': 2,
          'barely': 1,
          'scrapping': 1,
          'playing': 1,
          'nyc': 1,
          'piano': 1,
          'bar': 1,
          'timothy': 1,
          'returns': 1,
          'massachusetts': 1,
          'hometown': 1,
          'couple': 1,
          'weeks': 1,
          'non': 1,
          'surface': 1,
          'coming': 1,
          'home': 1,
          'reunion': 1,
          'since': 1,
          'know': 1,
          'really': 1,
          'looking': 1,
          'major': 1,
          'life': 1,
          'decisions': 1,
          'na': 1,
          'fairly': 1,
          'small': 1,
          'sports': 1,
          'impressive': 1,
          'ensemble': 1,
          'cast': 1,
          'including': 1,
          'rosie': 1,
          'bunch': 1,
          'actors': 1,
          'youve': 1,
          'seen': 1,
          'cant': 1,
          'quite': 1,
          'place': 1,
          'ncommendable': 1,
          'jobs': 1,
          'around': 1,
          'seem': 1,
          'real': 1,
          'nhutton': 1,
          'arrives': 1,
          'past': 1,
          'greeted': 1,
          'spiritdead': 1,
          'father': 1,
          'terminally': 1,
          'goony': 1,
          'brother': 1,
          'chums': 1,
          'nall': 1,
          'engaged': 1,
          'snow': 1,
          'removal': 1,
          'business': 1,
          'midst': 1,
          'crisis': 1,
          'perfect': 1,
          'stuff': 1,
          'comedy': 1,
          'twenties': 1,
          'angst': 1,
          'nhe': 1,
          'meets': 1,
          'falls': 1,
          'new': 1,
          'next': 1,
          'door': 1,
          'neighbor': 1,
          'intelligent': 1,
          'lively': 1,
          'girl': 1,
          'obviously': 1,
          'taken': 1,
          'problem': 1,
          '13': 1,
          'nunconsummated': 1,
          '_that_': 1,
          'type': 1,
          'builds': 1,
          'neither': 1,
          'knows': 1,
          'nstarcrossed': 1,
          'lovers': 1,
          'go': 1,
          'nso': 1,
          'gaga': 1,
          'barelyteen': 1,
          'twotiming': 1,
          'married': 1,
          'flame': 1,
          'anothers': 1,
          'sleeping': 1,
          'meat': 1,
          'cutter': 1,
          'shes': 1,
          'vegetarian': 1,
          'nthings': 1,
          'mess': 1,
          'nenter': 1,
          'stranger': 1,
          'town': 1,
          'days': 1,
          'delight': 1,
          'minor': 1,
          'downfalls': 1,
          'nher': 1,
          'character': 1,
          'fun': 1,
          'watch': 1,
          'neven': 1,
          'entertaining': 1,
          'observing': 1,
          'guys': 1,
          'falling': 1,
          'trying': 1,
          'impress': 1,
          'nlike': 1,
          'lone': 1,
          'ranger': 1,
          'leaves': 1,
          'solves': 1,
          'problems': 1,
          'sets': 1,
          'everyone': 1,
          'onward': 1,
          'lives': 1,
          'ending': 1,
          'bit': 1,
          'pat': 1,
          'neverything': 1,
          'tied': 1,
          'neat': 1,
          'bow': 1,
          'nrosie': 1,
          'standout': 1,
          'limited': 1,
          'screen': 1,
          'brash': 1,
          'personality': 1,
          'tell': 1,
          'pronouncements': 1,
          'nstructured': 1,
          'somewhat': 1,
          'diner': 1,
          'years': 1,
          'later': 1,
          'feelgood': 1,
          'story': 1,
          'good': 1,
          'ends': 1,
          'nice': 1,
          'npos': 1}),
 Counter({'film': 9,
          'nthe': 7,
          'one': 6,
          'little': 5,
          'reeves': 5,
          'neo': 5,
          'also': 5,
          'action': 5,
          'nwhat': 4,
          'artificial': 4,
          'matrix': 4,
          'computer': 4,
          'cameras': 4,
          'motion': 4,
          'interesting': 3,
          'reality': 3,
          'scifi': 3,
          'new': 3,
          'fishburne': 3,
          'nthis': 3,
          'movie': 3,
          'would': 3,
          'rather': 3,
          'nature': 3,
          'like': 3,
          'really': 3,
          'lot': 3,
          'character': 3,
          'special': 3,
          'still': 3,
          'nour': 2,
          'real': 2,
          'us': 2,
          'nin': 2,
          'truth': 2,
          'entire': 2,
          'minds': 2,
          'computergenerated': 2,
          'intelligence': 2,
          'kept': 2,
          'machines': 2,
          'isnt': 2,
          'sham': 2,
          'world': 2,
          'ability': 2,
          'plays': 2,
          'morpheus': 2,
          'nfrom': 2,
          'even': 2,
          'life': 2,
          'nmore': 2,
          'keanu': 2,
          'roles': 2,
          'good': 2,
          'much': 2,
          'nearly': 2,
          'characters': 2,
          'weaving': 2,
          'appropriate': 2,
          'becomes': 2,
          'moss': 2,
          'number': 2,
          'somewhat': 2,
          'delivers': 2,
          'picture': 2,
          'effects': 2,
          'employed': 2,
          'two': 2,
          'theres': 2,
          'nsome': 2,
          'premise': 1,
          'perceive': 1,
          'existences': 1,
          'lived': 1,
          'fed': 1,
          'information': 1,
          'electronic': 1,
          'inputs': 1,
          'directly': 1,
          'brains': 1,
          'see': 1,
          'everything': 1,
          'around': 1,
          'nothing': 1,
          'construct': 1,
          'interlinked': 1,
          'others': 1,
          'vastly': 1,
          'powerful': 1,
          'bodies': 1,
          'severely': 1,
          'atrophied': 1,
          'alive': 1,
          'sole': 1,
          'purpose': 1,
          'generating': 1,
          'heat': 1,
          'electrical': 1,
          'energy': 1,
          'dominating': 1,
          'order': 1,
          'control': 1,
          'planet': 1,
          'realm': 1,
          'waiting': 1,
          'something': 1,
          'come': 1,
          'along': 1,
          'idea': 1,
          'war': 1,
          'man': 1,
          'sentient': 1,
          'network': 1,
          'plug': 1,
          'ones': 1,
          'brain': 1,
          'gleaned': 1,
          'sources': 1,
          'terminator': 1,
          'dark': 1,
          'city': 1,
          'star': 1,
          'trek': 1,
          'episodes': 1,
          'classic': 1,
          'next': 1,
          'generation': 1,
          'weave': 1,
          'various': 1,
          'elements': 1,
          'together': 1,
          'succeed': 1,
          'producing': 1,
          'entertaining': 1,
          'well': 1,
          'thoughtprovoking': 1,
          'nkeanu': 1,
          'whiz': 1,
          'nicknamed': 1,
          'plucked': 1,
          'known': 1,
          'group': 1,
          'renegade': 1,
          'humans': 1,
          'clandestinely': 1,
          'fighting': 1,
          'expose': 1,
          'fallacy': 1,
          'existence': 1,
          'free': 1,
          'humankind': 1,
          'oppression': 1,
          'groups': 1,
          'leader': 1,
          'laurence': 1,
          'chosen': 1,
          'believes': 1,
          'destined': 1,
          'lead': 1,
          'attack': 1,
          'beginning': 1,
          'toes': 1,
          'trying': 1,
          'figure': 1,
          'things': 1,
          'lesser': 1,
          'annoying': 1,
          'presents': 1,
          'intelligent': 1,
          'manner': 1,
          'makes': 1,
          'puzzle': 1,
          'fun': 1,
          'turns': 1,
          'perception': 1,
          'side': 1,
          'presented': 1,
          'question': 1,
          'whether': 1,
          'know': 1,
          'harsh': 1,
          'live': 1,
          'relative': 1,
          'bliss': 1,
          'oblivious': 1,
          'true': 1,
          'surroundings': 1,
          'nas': 1,
          'viewers': 1,
          'intriguing': 1,
          'enough': 1,
          'imagine': 1,
          'nand': 1,
          'better': 1,
          'play': 1,
          'bewildered': 1,
          'person': 1,
          'nreeves': 1,
          'ive': 1,
          'never': 1,
          'cared': 1,
          'actor': 1,
          'competent': 1,
          'require': 1,
          'straightforwardness': 1,
          'subtlety': 1,
          'nhe': 1,
          'speed': 1,
          'example': 1,
          'laughably': 1,
          'poor': 1,
          'walk': 1,
          'clouds': 1,
          'nneo': 1,
          'actually': 1,
          'slips': 1,
          'nicely': 1,
          'expectation': 1,
          'happily': 1,
          'naught': 1,
          'couple': 1,
          'places': 1,
          'script': 1,
          'capitalizes': 1,
          'upon': 1,
          'wooden': 1,
          'heavy': 1,
          'credit': 1,
          'writersdirectors': 1,
          'andy': 1,
          'larry': 1,
          'wachowski': 1,
          'ni': 1,
          'mean': 1,
          'since': 1,
          'bill': 1,
          'teds': 1,
          'excellent': 1,
          'adventure': 1,
          'could': 1,
          'say': 1,
          'utilized': 1,
          'whos': 1,
          'runs': 1,
          'gamut': 1,
          'emotions': 1,
          'convincingly': 1,
          'nvery': 1,
          'surprising': 1,
          'nfishburne': 1,
          'maintains': 1,
          'certain': 1,
          'demeanor': 1,
          'throughout': 1,
          'always': 1,
          'knows': 1,
          'expect': 1,
          'helps': 1,
          'aura': 1,
          'proficiency': 1,
          'extensive': 1,
          'knowledge': 1,
          'nhugo': 1,
          'agent': 1,
          'smith': 1,
          'intelligences': 1,
          'antiintruder': 1,
          'programs': 1,
          'playing': 1,
          'deadpan': 1,
          'nononsense': 1,
          'kick': 1,
          'ass': 1,
          'role': 1,
          'requires': 1,
          'show': 1,
          'emotion': 1,
          'time': 1,
          'nunfortunately': 1,
          'speaks': 1,
          'sentences': 1,
          'row': 1,
          'speech': 1,
          'pattern': 1,
          'laughable': 1,
          'impressive': 1,
          'ncarrieanne': 1,
          'trinity': 1,
          'morpheuss': 1,
          'assistant': 1,
          'love': 1,
          'interest': 1,
          'nalthough': 1,
          'inconsistent': 1,
          'nevertheless': 1,
          'par': 1,
          'performance': 1,
          'nthere': 1,
          'expenses': 1,
          'spared': 1,
          'comes': 1,
          'nmany': 1,
          'methods': 1,
          'imagery': 1,
          'modeling': 1,
          'bluescreen': 1,
          'graphics': 1,
          'nof': 1,
          'note': 1,
          'use': 1,
          'freeze': 1,
          'turn': 1,
          'effect': 1,
          'scene': 1,
          'frozen': 1,
          'turned': 1,
          'continued': 1,
          'angle': 1,
          'accomplished': 1,
          'using': 1,
          'large': 1,
          'semicircle': 1,
          'placed': 1,
          'ends': 1,
          'moment': 1,
          'fire': 1,
          'nplace': 1,
          'image': 1,
          'sequence': 1,
          'get': 1,
          'seamless': 1,
          'transition': 1,
          'first': 1,
          'camera': 1,
          'second': 1,
          'npretty': 1,
          'slick': 1,
          'drips': 1,
          'style': 1,
          'clothing': 1,
          'music': 1,
          'watching': 1,
          'exaggerated': 1,
          'version': 1,
          'used': 1,
          'nmuch': 1,
          'seems': 1,
          'combination': 1,
          'genres': 1,
          'hong': 1,
          'kong': 1,
          'kung': 1,
          'fu': 1,
          'gunplay': 1,
          'nwhen': 1,
          'letting': 1,
          'go': 1,
          'automatic': 1,
          'weapon': 1,
          'made': 1,
          'empty': 1,
          'cartridges': 1,
          'falling': 1,
          'floor': 1,
          'slow': 1,
          'ntheres': 1,
          'element': 1,
          'japanese': 1,
          'cartoon': 1,
          'called': 1,
          'anime': 1,
          'aficionados': 1,
          'especially': 1,
          'way': 1,
          'sequences': 1,
          'filmed': 1,
          'sweeping': 1,
          'pans': 1,
          'emphasized': 1,
          'actions': 1,
          'ncombined': 1,
          'liveaction': 1,
          'ever': 1,
          'seen': 1,
          'without': 1,
          'faults': 1,
          'scenes': 1,
          'ideas': 1,
          'borrowed': 1,
          'liberally': 1,
          'films': 1,
          'component': 1,
          'ending': 1,
          'decidedly': 1,
          'disappointing': 1,
          'lines': 1,
          'pretty': 1,
          'bad': 1,
          'instance': 1,
          'supporting': 1,
          'incorrectly': 1,
          'famous': 1,
          'saying': 1,
          'wasnt': 1,
          'meant': 1,
          'joke': 1,
          'nhowever': 1,
          'shortcomings': 1,
          'detract': 1,
          'overall': 1,
          'solid': 1,
          'merely': 1,
          'entertain': 1,
          'npos': 1}),
 Counter({'movie': 4,
          'alien': 4,
          'first': 3,
          'one': 2,
          'kyle': 2,
          'films': 2,
          '810': 2,
          'picture': 2,
          'likes': 2,
          'thing': 2,
          'late': 2,
          'action': 2,
          'back': 2,
          'film': 2,
          'scenes': 2,
          'mclachlans': 1,
          'earlier': 1,
          'cinematic': 1,
          'features': 1,
          'obvious': 1,
          'influence': 1,
          'terminator': 1,
          'species': 1,
          '710': 1,
          'recent': 1,
          'fallen': 1,
          'denzel': 1,
          'washington': 1,
          'nplot': 1,
          'sciencefiction': 1,
          'set': 1,
          'modern': 1,
          'times': 1,
          'thriller': 1,
          'follows': 1,
          'exploits': 1,
          'entity': 1,
          'outer': 1,
          'space': 1,
          'inhabit': 1,
          'human': 1,
          'bodies': 1,
          'use': 1,
          'completely': 1,
          'worn': 1,
          'switch': 1,
          'next': 1,
          'available': 1,
          'receptacle': 1,
          'nfbi': 1,
          'agent': 1,
          'mclachlan': 1,
          'local': 1,
          'top': 1,
          'cop': 1,
          'nouri': 1,
          'charged': 1,
          'capture': 1,
          'ncritique': 1,
          'fastpaced': 1,
          'urban': 1,
          'equivalent': 1,
          'checks': 1,
          'cylinders': 1,
          'ultraviolence': 1,
          'god': 1,
          'knows': 1,
          'many': 1,
          'people': 1,
          'died': 1,
          'overall': 1,
          'rock': 1,
          'n': 1,
          'roll': 1,
          'attitude': 1,
          'nthen': 1,
          'go': 1,
          'wrong': 1,
          'ferraris': 1,
          'guns': 1,
          'heavy': 1,
          'metal': 1,
          'music': 1,
          'sexy': 1,
          'girls': 1,
          'ngranted': 1,
          'plot': 1,
          'isnt': 1,
          'elaborate': 1,
          'tales': 1,
          'bad': 1,
          'find': 1,
          'kill': 1,
          'honestly': 1,
          'say': 1,
          'never': 1,
          'bored': 1,
          'viewing': 1,
          'entire': 1,
          'ni': 1,
          'wouldnt': 1,
          'recommend': 1,
          'dont': 1,
          'like': 1,
          'car': 1,
          'chases': 1,
          'murders': 1,
          'bland': 1,
          'acting': 1,
          'rest': 1,
          'enjoy': 1,
          'putting': 1,
          'away': 1,
          'brains': 1,
          'every': 1,
          'sitting': 1,
          'slamming': 1,
          'salsad': 1,
          'nachos': 1,
          'relishing': 1,
          'cheeze': 1,
          'call': 1,
          'nhave': 1,
          'blast': 1,
          'ntwo': 1,
          'watch': 1,
          'within': 1,
          'ten': 1,
          'minutes': 1,
          'gorefest': 1,
          'nthe': 1,
          'opening': 1,
          'sequence': 1,
          'rockin': 1,
          'open': 1,
          'subsequent': 1,
          'extraterrestrial': 1,
          'transformation': 1,
          'another': 1,
          'eyecatcher': 1,
          'neven': 1,
          '80s': 1,
          'special': 1,
          'effects': 1,
          'okay': 1,
          'nfollowed': 1,
          'hidden': 1,
          'ii': 1,
          '1994': 1,
          'nlittle': 1,
          'known': 1,
          'facts': 1,
          'maclachlans': 1,
          'nondavid': 1,
          'lynch': 1,
          'foray': 1,
          'world': 1,
          'feature': 1,
          'nhis': 1,
          'two': 1,
          'appearances': 1,
          'lynchs': 1,
          'wretched': 1,
          'dune': 1,
          '410': 1,
          'sensational': 1,
          'blue': 1,
          'velvet': 1,
          '8': 1,
          '510': 1,
          'npos': 1}),
 Counter({'col': 9,
          'film': 7,
          'bridge': 7,
          'japanese': 7,
          'nicholson': 7,
          'british': 6,
          'war': 4,
          'picture': 4,
          'nbut': 4,
          'nthe': 4,
          'american': 3,
          'nand': 3,
          'river': 3,
          'kwai': 3,
          'shears': 3,
          'military': 3,
          'leans': 2,
          'ni': 2,
          'think': 2,
          'doesnt': 2,
          'men': 2,
          'paths': 2,
          'glory': 2,
          'na': 2,
          'soldiers': 2,
          'guinness': 2,
          'officers': 2,
          'work': 2,
          'saito': 2,
          'building': 2,
          'high': 2,
          'shall': 2,
          'question': 2,
          'also': 2,
          'supposed': 2,
          'risks': 2,
          'n': 2,
          'perfect': 2,
          'well': 2,
          'nit': 2,
          'shows': 2,
          'like': 2,
          'interesting': 2,
          'despite': 2,
          'want': 1,
          'correct': 1,
          'wrote': 1,
          'former': 1,
          'retrospective': 1,
          'david': 1,
          'still': 1,
          'deserve': 1,
          'number': 1,
          '13': 1,
          'institutes': 1,
          'list': 1,
          '100': 1,
          'greatest': 1,
          'movies': 1,
          'lumets': 1,
          '12': 1,
          'angry': 1,
          'wilders': 1,
          'witness': 1,
          'prosecution': 1,
          'kubricks': 1,
          'would': 1,
          'better': 1,
          'choices': 1,
          'best': 1,
          'oscar': 1,
          '1958': 1,
          'cant': 1,
          'deny': 1,
          'importance': 1,
          'cinematically': 1,
          'contents': 1,
          'set': 1,
          'burma': 1,
          '1943': 1,
          'bataillon': 1,
          'captivity': 1,
          'forced': 1,
          'build': 1,
          'strategically': 1,
          'momentous': 1,
          'railway': 1,
          'commanding': 1,
          'officer': 1,
          'colonel': 1,
          'alec': 1,
          'insists': 1,
          'corresponding': 1,
          'geneva': 1,
          'conventions': 1,
          'neednt': 1,
          'simple': 1,
          'workmen': 1,
          'nstruggling': 1,
          'toughly': 1,
          'forces': 1,
          'commandant': 1,
          'sessue': 1,
          'hayakawa': 1,
          'give': 1,
          'way': 1,
          'respect': 1,
          'nafterwards': 1,
          'assiduously': 1,
          'commits': 1,
          'nhe': 1,
          'considers': 1,
          'opportunity': 1,
          'raise': 1,
          'mens': 1,
          'morale': 1,
          'wants': 1,
          'prove': 1,
          'superior': 1,
          'capabilities': 1,
          'command': 1,
          'sends': 1,
          'destroy': 1,
          'among': 1,
          'william': 1,
          'holden': 1,
          'escapee': 1,
          'prison': 1,
          'camp': 1,
          'major': 1,
          'warden': 1,
          'jack': 1,
          'hawkins': 1,
          'flaw': 1,
          'clich': 1,
          'characterization': 1,
          'people': 1,
          'nthey': 1,
          'presented': 1,
          'intellectually': 1,
          'inferior': 1,
          'incapable': 1,
          'consistently': 1,
          'spirit': 1,
          'kubrick': 1,
          'nlean': 1,
          'seems': 1,
          'rather': 1,
          'fascinated': 1,
          'hierarchies': 1,
          'nthis': 1,
          'perceptible': 1,
          'conversations': 1,
          'nin': 1,
          'regard': 1,
          'symptomatic': 1,
          'doubts': 1,
          'logic': 1,
          'somehow': 1,
          'unpleasant': 1,
          'person': 1,
          'audience': 1,
          'applaud': 1,
          'nicholsons': 1,
          'perseverance': 1,
          'concerning': 1,
          'spectators': 1,
          'neglect': 1,
          'takes': 1,
          'plot': 1,
          'bypasses': 1,
          'nthat': 1,
          'means': 1,
          'isnt': 1,
          'lot': 1,
          'virtues': 1,
          'madness': 1,
          'produce': 1,
          'peoples': 1,
          'minds': 1,
          'becomes': 1,
          'possessed': 1,
          'idea': 1,
          'hero': 1,
          'others': 1,
          'get': 1,
          'cynics': 1,
          'study': 1,
          'characters': 1,
          'clashing': 1,
          'interests': 1,
          'nthese': 1,
          'points': 1,
          'sometimes': 1,
          'ironic': 1,
          'dialogue': 1,
          'make': 1,
          'antiwar': 1,
          'inconsistencies': 1,
          'treatment': 1,
          'theme': 1,
          'ndavid': 1,
          'effective': 1,
          'atmospherically': 1,
          'direction': 1,
          'creates': 1,
          'suspense': 1,
          'especially': 1,
          'dramatic': 1,
          'though': 1,
          'wholly': 1,
          'plausible': 1,
          'showdown': 1,
          'nalec': 1,
          'magnificent': 1,
          'job': 1,
          'bringing': 1,
          'life': 1,
          'making': 1,
          'character': 1,
          'actors': 1,
          'deliver': 1,
          'good': 1,
          'performances': 1,
          'njack': 1,
          'hildyards': 1,
          'fine': 1,
          'color': 1,
          'cinematography': 1,
          'apt': 1,
          'score': 1,
          'helpful': 1,
          'extraordinary': 1,
          'weaknesses': 1,
          'c': 1,
          'karl': 1,
          'rackwitz': 1,
          'klein': 1,
          'k': 1,
          'ris': 1,
          'germany': 1,
          '1999': 1,
          'npos': 1}),
 Counter({'vampire': 11,
          'movie': 9,
          'blade': 8,
          'vampires': 6,
          'movies': 5,
          'action': 4,
          'play': 3,
          'much': 2,
          'still': 2,
          'made': 2,
          'virus': 2,
          'something': 2,
          'michael': 2,
          'j': 2,
          'fox': 2,
          'could': 2,
          'want': 2,
          'n': 2,
          'anything': 2,
          'nyou': 2,
          'traditional': 2,
          'day': 2,
          'well': 2,
          'order': 2,
          'hong': 2,
          'kong': 2,
          'role': 2,
          'silent': 2,
          'everything': 2,
          'nblade': 2,
          'without': 2,
          'heavy': 2,
          'using': 2,
          'replacement': 2,
          'killers': 2,
          'us': 2,
          'might': 2,
          'summer': 2,
          'keep': 2,
          'major': 1,
          'horror': 1,
          'subgenres': 1,
          'easily': 1,
          'adaptable': 1,
          'nthink': 1,
          'nfrankenstein': 1,
          'havent': 1,
          'changed': 1,
          'need': 1,
          'madscientistinbavariancastle': 1,
          'setting': 1,
          'nif': 1,
          'frankenstein': 1,
          'today': 1,
          'youd': 1,
          'monster': 1,
          'outside': 1,
          'arent': 1,
          'actors': 1,
          'convincingly': 1,
          'nmovies': 1,
          'mummies': 1,
          'would': 1,
          'set': 1,
          'egypt': 1,
          'ntheres': 1,
          'werewolves': 1,
          'except': 1,
          'take': 1,
          'london': 1,
          'paris': 1,
          'unless': 1,
          'teenage': 1,
          'werewolf': 1,
          'theres': 1,
          'thing': 1,
          'nbut': 1,
          'place': 1,
          'genre': 1,
          'bram': 1,
          'stokers': 1,
          'dracula': 1,
          'anne': 1,
          'rice': 1,
          'version': 1,
          'interview': 1,
          'laughs': 1,
          'brooklyn': 1,
          'put': 1,
          'locales': 1,
          'sunny': 1,
          'southern': 1,
          'california': 1,
          'lost': 1,
          'boys': 1,
          'squalid': 1,
          'mexican': 1,
          'dives': 1,
          'dusk': 1,
          'till': 1,
          'dawn': 1,
          'local': 1,
          'high': 1,
          'school': 1,
          'buffy': 1,
          'slayer': 1,
          'nwere': 1,
          'redundant': 1,
          'law': 1,
          'firm': 1,
          'full': 1,
          'nany': 1,
          'expect': 1,
          'see': 1,
          'third': 1,
          'baseman': 1,
          'decide': 1,
          'whether': 1,
          'game': 1,
          'break': 1,
          'home': 1,
          'run': 1,
          'record': 1,
          'insert': 1,
          'legend': 1,
          'get': 1,
          'nwesley': 1,
          'snipes': 1,
          'chow': 1,
          'yun': 1,
          'fat': 1,
          'expressionless': 1,
          'hit': 1,
          'man': 1,
          'destroys': 1,
          'path': 1,
          'nin': 1,
          'case': 1,
          'happens': 1,
          'explode': 1,
          'cgi': 1,
          'shards': 1,
          'instead': 1,
          'dead': 1,
          'bleeding': 1,
          'corpses': 1,
          'nsnipes': 1,
          'less': 1,
          'say': 1,
          'fugitive': 1,
          'u': 1,
          'marshals': 1,
          'demonstrably': 1,
          'better': 1,
          'job': 1,
          'halfvampire': 1,
          'wreaking': 1,
          'vengeance': 1,
          'bloodsuckers': 1,
          'brooding': 1,
          'presence': 1,
          'laying': 1,
          'waste': 1,
          'shred': 1,
          'remorse': 1,
          'nhe': 1,
          'cold': 1,
          'silverbladed': 1,
          'sword': 1,
          'single': 1,
          'minded': 1,
          'garlicfilled': 1,
          'bullets': 1,
          'nyet': 1,
          'hes': 1,
          'quirks': 1,
          'drives': 1,
          'battered': 1,
          'muscle': 1,
          'car': 1,
          'glean': 1,
          'rolex': 1,
          'watches': 1,
          'victims': 1,
          'stay': 1,
          'solvent': 1,
          'nlike': 1,
          'good': 1,
          'chopsocky': 1,
          'nfor': 1,
          'reason': 1,
          'spends': 1,
          'lot': 1,
          'time': 1,
          'kung': 1,
          'fu': 1,
          'artistry': 1,
          'antivampire': 1,
          'weapons': 1,
          'garlic': 1,
          'silver': 1,
          'dismisses': 1,
          'manportable': 1,
          'arc': 1,
          'lamp': 1,
          'although': 1,
          'looks': 1,
          'efficient': 1,
          'tool': 1,
          'dispatch': 1,
          'nunfortunately': 1,
          'guiding': 1,
          'hand': 1,
          'john': 1,
          'woo': 1,
          'absent': 1,
          'film': 1,
          'relegating': 1,
          'status': 1,
          'strongly': 1,
          'resembles': 1,
          'nthe': 1,
          'last': 1,
          'saw': 1,
          'didnt': 1,
          'review': 1,
          'mostly': 1,
          'impression': 1,
          'couldnt': 1,
          'remember': 1,
          'noise': 1,
          'violence': 1,
          'intensity': 1,
          'fats': 1,
          'performance': 1,
          'little': 1,
          'going': 1,
          'myth': 1,
          'draw': 1,
          'kind': 1,
          'exciting': 1,
          'choreographed': 1,
          'scenes': 1,
          'resonance': 1,
          'nwith': 1,
          'stronger': 1,
          'villain': 1,
          'stephen': 1,
          'dorff': 1,
          'pardon': 1,
          'pun': 1,
          'curiously': 1,
          'bloodless': 1,
          'head': 1,
          'leaving': 1,
          'wonder': 1,
          'denis': 1,
          'leary': 1,
          'done': 1,
          'wittier': 1,
          'script': 1,
          'strong': 1,
          'supporting': 1,
          'cast': 1,
          'able': 1,
          'rise': 1,
          'beyond': 1,
          'level': 1,
          'commonplace': 1,
          'entertainment': 1,
          'nas': 1,
          'average': 1,
          'serves': 1,
          'nothing': 1,
          'remind': 1,
          'getting': 1,
          'dumber': 1,
          'multiplying': 1,
          'npos': 1}),
 Counter({'film': 8,
          'fiction': 6,
          'nthe': 6,
          'pulp': 5,
          'movie': 5,
          'like': 5,
          'story': 5,
          'making': 4,
          'marcellus': 4,
          'cool': 4,
          'nthey': 4,
          'end': 4,
          'two': 4,
          'help': 4,
          '90s': 3,
          'nbut': 3,
          'giving': 3,
          'n': 3,
          'actually': 3,
          'nit': 3,
          'way': 3,
          'nin': 3,
          'already': 3,
          'john': 3,
          'travolta': 3,
          'best': 3,
          'version': 3,
          'tarantino': 2,
          'made': 2,
          'also': 2,
          'believe': 2,
          'time': 2,
          'citizen': 2,
          'kane': 2,
          'new': 2,
          'excellent': 2,
          'original': 2,
          'isnt': 2,
          'much': 2,
          'classic': 2,
          'speech': 2,
          'told': 2,
          'nonlinear': 2,
          'around': 2,
          'three': 2,
          'episodes': 2,
          'wife': 2,
          'sequence': 2,
          'wallace': 2,
          'performance': 2,
          'called': 2,
          'guy': 2,
          'turns': 2,
          'stars': 2,
          'would': 2,
          'take': 2,
          'fall': 2,
          'ends': 2,
          'takes': 2,
          'apartment': 2,
          'make': 2,
          'place': 2,
          'deliverance': 2,
          'features': 2,
          'jackson': 2,
          'played': 2,
          'havent': 2,
          'seen': 2,
          'scenes': 2,
          'nwhat': 2,
          'see': 2,
          'things': 2,
          'one': 2,
          'quentin': 1,
          'greatest': 1,
          'influential': 1,
          'send': 1,
          'hatemail': 1,
          'title': 1,
          'hear': 1,
          'nmuch': 1,
          'changed': 1,
          'forever': 1,
          'think': 1,
          'latter': 1,
          'tad': 1,
          'impact': 1,
          'ushered': 1,
          'era': 1,
          'altered': 1,
          'films': 1,
          'viewed': 1,
          'spawned': 1,
          'many': 1,
          'imitations': 1,
          'ive': 1,
          'lost': 1,
          'count': 1,
          'nsure': 1,
          'bound': 1,
          'usual': 1,
          'suspects': 1,
          'spring': 1,
          'immediately': 1,
          'mind': 1,
          'serious': 1,
          'moviegoer': 1,
          'recognizes': 1,
          'neonoir': 1,
          'review': 1,
          'hope': 1,
          'change': 1,
          'peoples': 1,
          'minds': 1,
          'criticized': 1,
          'excessive': 1,
          'profanity': 1,
          'violence': 1,
          'really': 1,
          'graphic': 1,
          'brilliant': 1,
          'aspect': 1,
          'tarantinos': 1,
          'masterpiece': 1,
          'screenplay': 1,
          'filled': 1,
          'dialogue': 1,
          'quarter': 1,
          'pounder': 1,
          'cheese': 1,
          'go': 1,
          'history': 1,
          'required': 1,
          'reading': 1,
          'student': 1,
          'unorthodox': 1,
          'format': 1,
          'centers': 1,
          'main': 1,
          'eventually': 1,
          'intertwine': 1,
          'first': 1,
          'titled': 1,
          'vincent': 1,
          'vega': 1,
          'wallaces': 1,
          'deals': 1,
          'loaded': 1,
          'forgot': 1,
          'mention': 1,
          'heroin': 1,
          'shootup': 1,
          'taking': 1,
          'mia': 1,
          'starmaking': 1,
          'uma': 1,
          'thurman': 1,
          'bosses': 1,
          'date': 1,
          '50s': 1,
          'restaurant': 1,
          'jack': 1,
          'rabbit': 1,
          'slims': 1,
          'talk': 1,
          'occasional': 1,
          'uncomfortable': 1,
          'silence': 1,
          'mostly': 1,
          'tony': 1,
          'rocky': 1,
          'horror': 1,
          'nafter': 1,
          'bride': 1,
          'foot': 1,
          'massage': 1,
          'thrown': 1,
          'building': 1,
          'greenhouse': 1,
          'impediment': 1,
          'partake': 1,
          'dance': 1,
          'contest': 1,
          'twisting': 1,
          'chuck': 1,
          'berry': 1,
          'never': 1,
          'tell': 1,
          'ni': 1,
          'wont': 1,
          'reveal': 1,
          'rest': 1,
          'ill': 1,
          'definitely': 1,
          'say': 1,
          'real': 1,
          'bummer': 1,
          'night': 1,
          'despite': 1,
          'trophy': 1,
          'win': 1,
          'second': 1,
          'least': 1,
          'still': 1,
          'four': 1,
          'bruce': 1,
          'willis': 1,
          'proving': 1,
          'play': 1,
          'someone': 1,
          'mcclain': 1,
          'die': 1,
          'hard': 1,
          'flicks': 1,
          'boxer': 1,
          'butch': 1,
          'coolidge': 1,
          'npreviously': 1,
          'said': 1,
          'form': 1,
          'deal': 1,
          'match': 1,
          'nas': 1,
          'doesnt': 1,
          'killing': 1,
          'opponent': 1,
          'nhe': 1,
          'cab': 1,
          'halfwitted': 1,
          'girlfriends': 1,
          'long': 1,
          'short': 1,
          'going': 1,
          'back': 1,
          'retrieve': 1,
          'gold': 1,
          'watch': 1,
          'sort': 1,
          'family': 1,
          'heirloom': 1,
          'explained': 1,
          'christopher': 1,
          'walken': 1,
          'hilarious': 1,
          'flashback': 1,
          'non': 1,
          'home': 1,
          'bumps': 1,
          'literally': 1,
          'winde': 1,
          'prisoner': 1,
          'hillbilly': 1,
          'sex': 1,
          'murderers': 1,
          'results': 1,
          'infamous': 1,
          'gimp': 1,
          'scene': 1,
          'reminicent': 1,
          'squeal': 1,
          'pig': 1,
          'nscene': 1,
          'last': 1,
          'opinion': 1,
          'samuel': 1,
          'l': 1,
          'supporting': 1,
          'actor': 1,
          'ever': 1,
          'slightly': 1,
          'offkilter': 1,
          'hitmen': 1,
          'trying': 1,
          'rid': 1,
          'bloody': 1,
          'car': 1,
          'seek': 1,
          'friend': 1,
          'jacksons': 1,
          'qman': 1,
          'desperately': 1,
          'need': 1,
          'stress': 1,
          'ball': 1,
          'calling': 1,
          'cleaner': 1,
          'sorts': 1,
          'god': 1,
          'among': 1,
          'men': 1,
          'harvey': 1,
          'keitel': 1,
          'brilliantly': 1,
          'loops': 1,
          'ending': 1,
          'began': 1,
          'nif': 1,
          'even': 1,
          'matter': 1,
          'suggest': 1,
          'invest': 1,
          'money': 1,
          'copy': 1,
          'letterbox': 1,
          'collectors': 1,
          'edition': 1,
          'previously': 1,
          'unreleased': 1,
          'restored': 1,
          'originally': 1,
          'meant': 1,
          'nearlier': 1,
          'today': 1,
          'bought': 1,
          'watched': 1,
          'hours': 1,
          'ago': 1,
          'panandscan': 1,
          'inexcusable': 1,
          'nthat': 1,
          'cut': 1,
          'half': 1,
          'missed': 1,
          'past': 1,
          'years': 1,
          'viewing': 1,
          'flick': 1,
          'amazing': 1,
          'nfor': 1,
          'instance': 1,
          'near': 1,
          'widescreen': 1,
          'allows': 1,
          'several': 1,
          'walls': 1,
          'crosses': 1,
          'nthis': 1,
          'might': 1,
          'explain': 1,
          'divine': 1,
          'intervention': 1,
          'njust': 1,
          'theory': 1,
          'none': 1,
          'pisses': 1,
          'people': 1,
          'borrowed': 1,
          'alot': 1,
          'movies': 1,
          'e': 1,
          'psycho': 1,
          'kiss': 1,
          'deadly': 1,
          'etc': 1,
          'shouldnt': 1,
          'nits': 1,
          'outright': 1,
          'blatantly': 1,
          'stole': 1,
          'ngive': 1,
          'break': 1,
          'case': 1,
          'noticed': 1,
          'supremely': 1,
          'greats': 1,
          'casablanca': 1,
          'godfather': 1,
          'ntrust': 1,
          'better': 1,
          'come': 1,
          'nand': 1,
          'besides': 1,
          'hell': 1,
          'ride': 1,
          'nnote': 1,
          'anyone': 1,
          'knows': 1,
          'could': 1,
          'get': 1,
          'bad': 1,
          'motherfucker': 1,
          'wallet': 1,
          'please': 1,
          'email': 1,
          'nany': 1,
          'greatly': 1,
          'appreciated': 1,
          'npos': 1}),
 Counter({'characters': 6,
          'funny': 4,
          'time': 3,
          'fargo': 3,
          'movie': 3,
          'somehow': 3,
          'ni': 3,
          'nthe': 3,
          'film': 3,
          'tv': 3,
          'russ': 3,
          'job': 3,
          'lottery': 3,
          'like': 3,
          'story': 3,
          'take': 3,
          'basically': 3,
          'hes': 3,
          'makes': 3,
          'movies': 2,
          'even': 2,
          'though': 2,
          'know': 2,
          'trying': 2,
          'explain': 2,
          'lucky': 2,
          'numbers': 2,
          'perfect': 2,
          'elmore': 2,
          'leonard': 2,
          'travolta': 2,
          'local': 2,
          'richards': 2,
          'doesnt': 2,
          'genuinely': 2,
          'tells': 2,
          'going': 2,
          'get': 2,
          'thug': 2,
          'gets': 2,
          'plot': 2,
          'comedy': 2,
          'nits': 2,
          'great': 2,
          'role': 2,
          'character': 2,
          'shes': 2,
          'since': 2,
          'phoebe': 2,
          'main': 2,
          'money': 2,
          '10': 2,
          'good': 2,
          'theres': 1,
          'enjoy': 1,
          'probably': 1,
          'shouldnt': 1,
          'difficult': 1,
          'n': 1,
          'example': 1,
          'blatant': 1,
          'ripoff': 1,
          'every': 1,
          'based': 1,
          'novel': 1,
          'yet': 1,
          'still': 1,
          'works': 1,
          'im': 1,
          'minority': 1,
          'let': 1,
          'takes': 1,
          'place': 1,
          'harrisburg': 1,
          'pa': 1,
          '1988': 1,
          'unseasonably': 1,
          'warm': 1,
          'winter': 1,
          'njohn': 1,
          'plays': 1,
          'bigshot': 1,
          'weatherman': 1,
          'idolized': 1,
          'townsfolk': 1,
          'john': 1,
          'bumbling': 1,
          'nruss': 1,
          'married': 1,
          'crystal': 1,
          'lisa': 1,
          'kudrow': 1,
          'blonde': 1,
          'bimbo': 1,
          'ever': 1,
          'one': 1,
          'history': 1,
          'cinema': 1,
          'nshes': 1,
          'selfish': 1,
          'nasty': 1,
          'bitch': 1,
          'full': 1,
          'lust': 1,
          'desire': 1,
          'got': 1,
          'ball': 1,
          'girl': 1,
          'exactly': 1,
          'intellectually': 1,
          'taxing': 1,
          'market': 1,
          'ncrystals': 1,
          'cheating': 1,
          'collective': 1,
          'boss': 1,
          'dick': 1,
          'ed': 1,
          'oneil': 1,
          'station': 1,
          'manager': 1,
          'nshe': 1,
          'seem': 1,
          'either': 1,
          'onehorse': 1,
          'town': 1,
          'nmuch': 1,
          'man': 1,
          'whos': 1,
          'broke': 1,
          'pull': 1,
          'huge': 1,
          'scam': 1,
          'rich': 1,
          'quick': 1,
          'nhe': 1,
          'enlists': 1,
          'help': 1,
          'english': 1,
          'friend': 1,
          'gig': 1,
          'tim': 1,
          'roth': 1,
          'stripclub': 1,
          'owner': 1,
          'fix': 1,
          'nalong': 1,
          'way': 1,
          'subplot': 1,
          'involving': 1,
          'twobit': 1,
          'named': 1,
          'accurately': 1,
          'dale': 1,
          'michael': 1,
          'rappaport': 1,
          'mixed': 1,
          'process': 1,
          'ntheres': 1,
          'also': 1,
          'bookie': 1,
          'thrown': 1,
          'mix': 1,
          'deal': 1,
          'goes': 1,
          'nim': 1,
          'elaborate': 1,
          'much': 1,
          'continues': 1,
          'unwind': 1,
          'twists': 1,
          'turns': 1,
          'youre': 1,
          'expecting': 1,
          'nthis': 1,
          'farce': 1,
          'straightforward': 1,
          'adultoriented': 1,
          'go': 1,
          'far': 1,
          'classic': 1,
          'black': 1,
          'nwhere': 1,
          'sometimes': 1,
          'shocking': 1,
          'disturbing': 1,
          'cant': 1,
          'outrageous': 1,
          'situations': 1,
          'seriously': 1,
          'big': 1,
          'cartoon': 1,
          'respect': 1,
          'ntravolta': 1,
          'really': 1,
          'likable': 1,
          'nice': 1,
          'guy': 1,
          'despite': 1,
          'fact': 1,
          'creep': 1,
          'nhes': 1,
          'gangster': 1,
          'morals': 1,
          'feels': 1,
          'sorry': 1,
          'guys': 1,
          'kill': 1,
          'ncrystal': 1,
          'opposite': 1,
          'constantly': 1,
          'arguing': 1,
          'using': 1,
          'whatever': 1,
          'brain': 1,
          'cells': 1,
          'left': 1,
          'look': 1,
          'nkudrow': 1,
          'spent': 1,
          '8': 1,
          'years': 1,
          'dimwitted': 1,
          'friends': 1,
          'nhere': 1,
          'evil': 1,
          'incarnation': 1,
          'admit': 1,
          'honestly': 1,
          'surprised': 1,
          'pleased': 1,
          'unraveled': 1,
          'methods': 1,
          'use': 1,
          'try': 1,
          'share': 1,
          'nlike': 1,
          'jackie': 1,
          'brown': 1,
          'adaption': 1,
          'circle': 1,
          'illegally': 1,
          'screenplay': 1,
          'fine': 1,
          'balancing': 1,
          'slowly': 1,
          'revealing': 1,
          'motivations': 1,
          'hidden': 1,
          'agendas': 1,
          'keep': 1,
          'focus': 1,
          'nmore': 1,
          'introduced': 1,
          'iconic': 1,
          'cartoony': 1,
          'atmosphere': 1,
          'faith': 1,
          'minor': 1,
          'ending': 1,
          'surprising': 1,
          'feel': 1,
          'nyou': 1,
          'realize': 1,
          'packed': 1,
          'different': 1,
          'worth': 1,
          'stories': 1,
          'two': 1,
          'hours': 1,
          'didnt': 1,
          'fall': 1,
          'apart': 1,
          'although': 1,
          'many': 1,
          'critics': 1,
          'might': 1,
          'beg': 1,
          'differ': 1,
          'liked': 1,
          'could': 1,
          'see': 1,
          'isnt': 1,
          'npos': 1}),
 Counter({'time': 4,
          'mississippi': 4,
          'kill': 3,
          'ghosts': 3,
          'husbands': 3,
          'woods': 3,
          'baldwin': 3,
          'one': 2,
          'grishams': 2,
          'basically': 2,
          'film': 2,
          'evars': 2,
          'goldberg': 2,
          'racist': 2,
          'beckwith': 2,
          'james': 2,
          'turns': 2,
          'like': 2,
          'got': 2,
          'nthis': 2,
          'serious': 2,
          'performance': 2,
          'acting': 2,
          'poor': 2,
          'wrong': 2,
          'goldbergs': 2,
          'make': 2,
          'summer': 1,
          'racially': 1,
          'charged': 1,
          'novels': 1,
          'john': 1,
          'series': 1,
          'made': 1,
          'major': 1,
          'motion': 1,
          'picture': 1,
          'non': 1,
          'january': 1,
          '3': 1,
          'year': 1,
          'director': 1,
          'rob': 1,
          'reiner': 1,
          'rereleased': 1,
          'title': 1,
          'nbased': 1,
          'true': 1,
          'story': 1,
          '1963': 1,
          'civil': 1,
          'rights': 1,
          'leader': 1,
          'medgar': 1,
          'assassination': 1,
          'revolves': 1,
          'around': 1,
          '25year': 1,
          'legal': 1,
          'battle': 1,
          'faced': 1,
          'myrlie': 1,
          'whoopi': 1,
          'sister': 1,
          'act': 1,
          'quest': 1,
          'obvious': 1,
          'assassin': 1,
          'byron': 1,
          'de': 1,
          'la': 1,
          'casino': 1,
          'jailed': 1,
          'nso': 1,
          'assistant': 1,
          'district': 1,
          'attorney': 1,
          'prosecutor': 1,
          'bobby': 1,
          'delaughter': 1,
          'alec': 1,
          'heavens': 1,
          'prisoners': 1,
          'imprison': 1,
          'former': 1,
          'kkk': 1,
          'member': 1,
          'nghosts': 1,
          'sets': 1,
          'tone': 1,
          'opening': 1,
          'montage': 1,
          'images': 1,
          'africanamerican': 1,
          'history': 1,
          'slaveship': 1,
          'miseries': 1,
          'life': 1,
          'south': 1,
          '1960s': 1,
          'nbut': 1,
          'soon': 1,
          'white': 1,
          'folks': 1,
          'take': 1,
          'intoning': 1,
          'lines': 1,
          'whats': 1,
          'america': 1,
          'anything': 1,
          'nas': 1,
          'head': 1,
          'larded': 1,
          'latex': 1,
          'old': 1,
          'man': 1,
          'teeters': 1,
          'portraying': 1,
          'evil': 1,
          'character': 1,
          'nmeanwhile': 1,
          'weepy': 1,
          'wife': 1,
          'wouldnt': 1,
          'let': 1,
          'death': 1,
          'rest': 1,
          'conviction': 1,
          'nboth': 1,
          'deserve': 1,
          'oscarconsideration': 1,
          'brings': 1,
          'us': 1,
          'dull': 1,
          'nlets': 1,
          'face': 1,
          'trying': 1,
          'match': 1,
          'matthew': 1,
          'mcconaugheys': 1,
          'wonderful': 1,
          'impossible': 1,
          'nand': 1,
          'living': 1,
          'proof': 1,
          'emotions': 1,
          'could': 1,
          'felt': 1,
          'nit': 1,
          'seemed': 1,
          'actually': 1,
          'struggle': 1,
          'shed': 1,
          'single': 1,
          'tear': 1,
          'neither': 1,
          'directing': 1,
          'something': 1,
          'definitely': 1,
          'went': 1,
          'nanother': 1,
          'strange': 1,
          'mishap': 1,
          'fact': 1,
          'facial': 1,
          'features': 1,
          'didnt': 1,
          'change': 1,
          'looked': 1,
          'courtroom': 1,
          'holding': 1,
          'dead': 1,
          'body': 1,
          '25years': 1,
          'earlier': 1,
          'nyet': 1,
          'plastered': 1,
          'enough': 1,
          'look': 1,
          'father': 1,
          'nat': 1,
          'least': 1,
          'makeup': 1,
          'realistic': 1,
          'nwith': 1,
          'emotional': 1,
          'moments': 1,
          'poorly': 1,
          'written': 1,
          'script': 1,
          'lacked': 1,
          'heart': 1,
          'predecessor': 1,
          'brought': 1,
          'tears': 1,
          'everyones': 1,
          'eyes': 1,
          'ndont': 1,
          'get': 1,
          'movie': 1,
          'wasnt': 1,
          'bad': 1,
          'youve': 1,
          'seen': 1,
          'masterpiece': 1,
          'dont': 1,
          'expect': 1,
          'excellent': 1,
          'n': 1,
          'npos': 1}),
 Counter({'bus': 4,
          'sweet': 3,
          'hereafter': 3,
          'scene': 3,
          'nthe': 3,
          'film': 3,
          'nits': 3,
          'road': 2,
          'surface': 2,
          'see': 2,
          'vehicle': 2,
          'slowly': 2,
          'like': 2,
          'field': 2,
          'nit': 2,
          'moment': 2,
          'bright': 2,
          'time': 2,
          'canadian': 2,
          'children': 2,
          'doesnt': 2,
          'town': 2,
          'parents': 2,
          'stephens': 2,
          'one': 2,
          'towards': 1,
          'middle': 1,
          'crowded': 1,
          'school': 1,
          'skids': 1,
          'icy': 1,
          'rounds': 1,
          'bend': 1,
          'careens': 1,
          'steel': 1,
          'guard': 1,
          'rail': 1,
          'disappears': 1,
          'sight': 1,
          'nthen': 1,
          'long': 1,
          'shot': 1,
          'sliding': 1,
          'across': 1,
          'looks': 1,
          'snowcovered': 1,
          'pauses': 1,
          'cracks': 1,
          'weight': 1,
          'yellow': 1,
          'vanishes': 1,
          'effortless': 1,
          'single': 1,
          'smooth': 1,
          'second': 1,
          'ncompare': 1,
          'last': 1,
          'eighty': 1,
          'minutes': 1,
          'titanic': 1,
          'behemoth': 1,
          'sinks': 1,
          'spectacularly': 1,
          'watery': 1,
          'demise': 1,
          'youll': 1,
          'appreciate': 1,
          'futility': 1,
          'comparing': 1,
          'greatness': 1,
          'films': 1,
          'epitomizes': 1,
          'thats': 1,
          'right': 1,
          'independent': 1,
          'director': 1,
          'atom': 1,
          'egoyans': 1,
          'sensational': 1,
          'nwe': 1,
          'dont': 1,
          'inside': 1,
          'payload': 1,
          'screaming': 1,
          'terrified': 1,
          'bloodied': 1,
          'battered': 1,
          'explode': 1,
          'break': 1,
          'thousand': 1,
          'tiny': 1,
          'pieces': 1,
          'simply': 1,
          'leaves': 1,
          'silently': 1,
          'slips': 1,
          'beneath': 1,
          'frozen': 1,
          'lake': 1,
          'horrifying': 1,
          'sequence': 1,
          'made': 1,
          'calm': 1,
          'distance': 1,
          'nusing': 1,
          'nonlinear': 1,
          'approach': 1,
          'narrative': 1,
          'egoyan': 1,
          'shifts': 1,
          'back': 1,
          'forward': 1,
          'connecting': 1,
          'us': 1,
          'inhabitants': 1,
          'small': 1,
          'british': 1,
          'columbian': 1,
          'severely': 1,
          'affected': 1,
          'tragedy': 1,
          'nfourteen': 1,
          'died': 1,
          'accident': 1,
          'leaving': 1,
          'paralyzed': 1,
          'grief': 1,
          'catalyst': 1,
          'center': 1,
          'ambulance': 1,
          'chaser': 1,
          'mitchell': 1,
          'wonderfully': 1,
          'moving': 1,
          'performance': 1,
          'ian': 1,
          'holm': 1,
          'comes': 1,
          'sam': 1,
          'dent': 1,
          'persuade': 1,
          'townsfolk': 1,
          'engage': 1,
          'class': 1,
          'action': 1,
          'suit': 1,
          'nstephens': 1,
          'believe': 1,
          'accidents': 1,
          'functions': 1,
          'concerned': 1,
          'involved': 1,
          'observer': 1,
          'scribbling': 1,
          'details': 1,
          'notebook': 1,
          'providing': 1,
          'opportunity': 1,
          'reach': 1,
          'kind': 1,
          'closure': 1,
          'harrowing': 1,
          'aftermath': 1,
          'nwhile': 1,
          'initial': 1,
          'drive': 1,
          'may': 1,
          'financial': 1,
          'third': 1,
          'total': 1,
          'settlement': 1,
          'wins': 1,
          'involvement': 1,
          'provides': 1,
          'outlet': 1,
          'come': 1,
          'grips': 1,
          'loss': 1,
          'nhis': 1,
          'selfdestructive': 1,
          'drugaddicted': 1,
          'daughter': 1,
          'clinics': 1,
          'halfway': 1,
          'houses': 1,
          'detox': 1,
          'units': 1,
          'years': 1,
          'negoyans': 1,
          'attention': 1,
          'detail': 1,
          'ability': 1,
          'establish': 1,
          'mood': 1,
          'impeccable': 1,
          'even': 1,
          'sound': 1,
          'kettle': 1,
          'boiling': 1,
          'resonates': 1,
          'plaintive': 1,
          'cry': 1,
          'nmychael': 1,
          'danna': 1,
          'composed': 1,
          'shimmering': 1,
          'music': 1,
          'ice': 1,
          'storm': 1,
          'contributes': 1,
          'another': 1,
          'memorable': 1,
          'score': 1,
          'shivers': 1,
          'tingles': 1,
          'nequally': 1,
          'impressive': 1,
          'paul': 1,
          'sarossys': 1,
          'cinematography': 1,
          'capturing': 1,
          'imposing': 1,
          'mountainsides': 1,
          'lowhanging': 1,
          'fogs': 1,
          'splendidly': 1,
          'shadowy': 1,
          'interiorsin': 1,
          'wall': 1,
          'calendar': 1,
          'serves': 1,
          'illuminate': 1,
          'portions': 1,
          'room': 1,
          'n': 1,
          'undeniably': 1,
          'grim': 1,
          'urges': 1,
          'viewer': 1,
          'grab': 1,
          'onto': 1,
          'life': 1,
          'hands': 1,
          'let': 1,
          'go': 1,
          'generous': 1,
          'subtlety': 1,
          'emotion': 1,
          'npos': 1}),
 Counter({'sam': 6,
          'like': 5,
          'museum': 5,
          'max': 5,
          'one': 4,
          'job': 3,
          'children': 3,
          'hostage': 3,
          'dont': 3,
          'banks': 3,
          'enough': 3,
          'story': 3,
          'news': 3,
          'taking': 2,
          'group': 2,
          'small': 2,
          'bit': 2,
          'nwhile': 2,
          'head': 2,
          'shotgun': 2,
          'view': 2,
          'nthis': 2,
          'isnt': 2,
          'mad': 2,
          'city': 2,
          'listen': 2,
          'guard': 2,
          'cutbacks': 2,
          'security': 2,
          'sams': 2,
          'fully': 2,
          'two': 2,
          'hes': 2,
          'somewhat': 2,
          'intentions': 2,
          'reporter': 2,
          'hoffman': 2,
          'couldve': 2,
          'network': 2,
          'reporting': 2,
          'turn': 2,
          'nmax': 2,
          'even': 2,
          'maxs': 2,
          'good': 2,
          'become': 2,
          'nthe': 2,
          'media': 2,
          'film': 2,
          'prosky': 2,
          'station': 2,
          'falls': 2,
          'roles': 2,
          'seeing': 2,
          'travolta': 2,
          'losing': 1,
          'uncommon': 1,
          'thing': 1,
          'nreacting': 1,
          'personal': 1,
          'setback': 1,
          'rare': 1,
          'might': 1,
          'feel': 1,
          'desire': 1,
          'blow': 1,
          'someones': 1,
          'seem': 1,
          'grasp': 1,
          'point': 1,
          'actually': 1,
          'threatening': 1,
          'usually': 1,
          'something': 1,
          'avoid': 1,
          'case': 1,
          'baily': 1,
          'john': 1,
          'travoltas': 1,
          'slightly': 1,
          'askew': 1,
          'averagejoe': 1,
          'persona': 1,
          'n': 1,
          'think': 1,
          'people': 1,
          'guys': 1,
          'laments': 1,
          'exclusive': 1,
          'interview': 1,
          'behind': 1,
          'walls': 1,
          'njust': 1,
          'days': 1,
          'ago': 1,
          'led': 1,
          'elimination': 1,
          'position': 1,
          'apprehension': 1,
          'resulted': 1,
          'brash': 1,
          'decision': 1,
          'nin': 1,
          'effort': 1,
          'get': 1,
          'exboss': 1,
          'director': 1,
          'mrs': 1,
          'blythe': 1,
          'danner': 1,
          'barges': 1,
          'day': 1,
          'equipped': 1,
          'loaded': 1,
          'uncooperative': 1,
          'school': 1,
          'nsams': 1,
          'overall': 1,
          'concern': 1,
          'valid': 1,
          'loses': 1,
          'paycheck': 1,
          'benefits': 1,
          'etc': 1,
          'wife': 1,
          'wont': 1,
          'provided': 1,
          'nhes': 1,
          'lunatic': 1,
          'hottempered': 1,
          'madman': 1,
          'child': 1,
          'panicky': 1,
          'compulsive': 1,
          'running': 1,
          'emotion': 1,
          'naive': 1,
          'arent': 1,
          'helped': 1,
          'fact': 1,
          'wasnt': 1,
          'overly': 1,
          'compassionate': 1,
          'let': 1,
          'go': 1,
          'noverall': 1,
          'except': 1,
          'capacity': 1,
          'line': 1,
          'wed': 1,
          'deem': 1,
          'far': 1,
          'starting': 1,
          'mark': 1,
          'crazy': 1,
          'race': 1,
          'nmeanwhile': 1,
          'television': 1,
          'brackett': 1,
          'dustin': 1,
          'also': 1,
          'scene': 1,
          'ncovering': 1,
          'fluff': 1,
          'evening': 1,
          'concerning': 1,
          'suddenly': 1,
          'finds': 1,
          'middle': 1,
          'biggestbreaking': 1,
          'ever': 1,
          'hoped': 1,
          'nhaving': 1,
          'demoted': 1,
          'newsman': 1,
          'smalltime': 1,
          'affiliate': 1,
          'anxious': 1,
          'immediately': 1,
          'bonds': 1,
          'coaches': 1,
          'thru': 1,
          'negotiations': 1,
          'writes': 1,
          'scripts': 1,
          'use': 1,
          'police': 1,
          'phone': 1,
          'nat': 1,
          'first': 1,
          'stretch': 1,
          'beyond': 1,
          'high': 1,
          'ratings': 1,
          'boost': 1,
          'ole': 1,
          'pride': 1,
          'factor': 1,
          'gets': 1,
          'know': 1,
          'personally': 1,
          'begins': 1,
          'sympathize': 1,
          'advocate': 1,
          'however': 1,
          'creating': 1,
          'frenzy': 1,
          'leaves': 1,
          'fickle': 1,
          'public': 1,
          'shifting': 1,
          'gears': 1,
          'often': 1,
          'diesel': 1,
          'truck': 1,
          'moving': 1,
          'downhill': 1,
          'accidental': 1,
          'shooting': 1,
          'exco': 1,
          'worker': 1,
          'cliff': 1,
          'bill': 1,
          'nunn': 1,
          'black': 1,
          'becomes': 1,
          'main': 1,
          'factors': 1,
          'controversy': 1,
          'honest': 1,
          'ambitions': 1,
          'nalso': 1,
          'involved': 1,
          'robert': 1,
          'lou': 1,
          'potts': 1,
          'department': 1,
          'directly': 1,
          'alan': 1,
          'alda': 1,
          'nationally': 1,
          'famed': 1,
          'kevin': 1,
          'hollander': 1,
          'uses': 1,
          'power': 1,
          'try': 1,
          'outshine': 1,
          'nalda': 1,
          'fine': 1,
          'performances': 1,
          'fit': 1,
          'gloves': 1,
          'acting': 1,
          'abilities': 1,
          'nthen': 1,
          'mia': 1,
          'kirshner': 1,
          'plays': 1,
          'young': 1,
          'tv': 1,
          'intern': 1,
          'laurie': 1,
          'nshe': 1,
          'wings': 1,
          'student': 1,
          'taught': 1,
          'well': 1,
          'way': 1,
          'sensationalistic': 1,
          'nkirshners': 1,
          'credits': 1,
          'relatively': 1,
          'including': 1,
          'films': 1,
          'exotica': 1,
          'forgettable': 1,
          'sequel': 1,
          'crow': 1,
          'nstill': 1,
          'kirshners': 1,
          'character': 1,
          'transformation': 1,
          'shows': 1,
          'shining': 1,
          'ability': 1,
          'play': 1,
          'girl': 1,
          'kindabitchyinareservedway': 1,
          'ni': 1,
          'wouldnt': 1,
          'mind': 1,
          'prevalent': 1,
          'parts': 1,
          'perhaps': 1,
          'talent': 1,
          'able': 1,
          'blossom': 1,
          'onscreen': 1,
          'viewpoint': 1,
          'greedy': 1,
          'selfrighteous': 1,
          'monster': 1,
          'indeed': 1,
          'tackled': 1,
          'provides': 1,
          'solid': 1,
          'hours': 1,
          'enjoyability': 1,
          'nhoffman': 1,
          'excellent': 1,
          'actors': 1,
          'together': 1,
          'real': 1,
          'treat': 1,
          'nthey': 1,
          'great': 1,
          'smoothly': 1,
          'naturally': 1,
          'becoming': 1,
          'characters': 1,
          'provide': 1,
          'chemistry': 1,
          'us': 1,
          'genuinely': 1,
          'care': 1,
          'nthere': 1,
          'quite': 1,
          'humor': 1,
          'without': 1,
          'fallen': 1,
          'drab': 1,
          'cliched': 1,
          'social': 1,
          'statement': 1,
          'likely': 1,
          'garner': 1,
          'sleep': 1,
          'audience': 1,
          'applause': 1,
          'flick': 1,
          'grip': 1,
          'funny': 1,
          'bone': 1,
          'heart': 1,
          'lightly': 1,
          'touch': 1,
          'making': 1,
          'recommendable': 1,
          'movie': 1,
          'nif': 1,
          'nothing': 1,
          'opportunity': 1,
          'watch': 1,
          'time': 1,
          'urge': 1,
          'check': 1,
          'npos': 1}),
 Counter({'film': 25,
          'see': 14,
          'one': 13,
          'nand': 11,
          'nthe': 10,
          'things': 9,
          'plot': 9,
          'may': 8,
          'way': 7,
          'nits': 7,
          'n': 6,
          'campbell': 6,
          'performance': 6,
          'r': 6,
          'sex': 6,
          'even': 6,
          'much': 5,
          'like': 5,
          'love': 5,
          'nwild': 5,
          'good': 5,
          'watch': 5,
          'want': 5,
          'time': 5,
          'probably': 5,
          'scenes': 5,
          'wild': 4,
          'neve': 4,
          'nearly': 4,
          'rating': 4,
          'nhowever': 4,
          'rich': 4,
          'people': 4,
          'dont': 4,
          'get': 4,
          'sam': 4,
          'also': 4,
          'richards': 4,
          'bacon': 4,
          'nthis': 4,
          'though': 4,
          'think': 4,
          'pleased': 3,
          'scream': 3,
          'day': 3,
          'films': 3,
          'cast': 3,
          'seen': 3,
          'yet': 3,
          'actors': 3,
          'gorgeous': 3,
          'tell': 3,
          'begins': 3,
          'almost': 3,
          'doesnt': 3,
          'denise': 3,
          'however': 3,
          'none': 3,
          'give': 3,
          'twists': 3,
          'surprises': 3,
          'murray': 3,
          'best': 3,
          'character': 3,
          'although': 3,
          'graphic': 3,
          'long': 3,
          'first': 3,
          'role': 3,
          'range': 3,
          'around': 3,
          'nhis': 3,
          'credits': 3,
          'left': 2,
          'newspaper': 2,
          'gives': 2,
          'twisty': 2,
          'yeah': 2,
          'rules': 2,
          'mpaa': 2,
          'let': 2,
          'bound': 2,
          '90s': 2,
          'filled': 2,
          'pool': 2,
          'fun': 2,
          'movies': 2,
          'along': 2,
          'nthere': 2,
          'high': 2,
          'school': 2,
          'would': 2,
          'students': 2,
          'put': 2,
          'course': 2,
          'slightly': 2,
          'average': 2,
          'tone': 2,
          'turn': 2,
          'right': 2,
          'thing': 2,
          'characters': 2,
          'ntheres': 2,
          'matt': 2,
          'dillon': 2,
          'class': 2,
          'kelly': 2,
          'two': 2,
          'kevin': 2,
          'daphne': 2,
          'rubinvega': 2,
          'student': 2,
          'pretty': 2,
          'sets': 2,
          'part': 2,
          'nshe': 2,
          'thats': 2,
          'away': 2,
          'many': 2,
          'actually': 2,
          'ngoing': 2,
          'genuine': 2,
          'rather': 2,
          'boundaries': 2,
          'convoluted': 2,
          'us': 2,
          'twist': 2,
          'nas': 2,
          'trashy': 2,
          'hard': 2,
          'includes': 2,
          'mother': 2,
          'bill': 2,
          'movie': 2,
          'heterosexual': 2,
          'quite': 2,
          'scene': 2,
          'judging': 2,
          'makes': 2,
          'nneve': 2,
          'nhere': 2,
          'every': 2,
          'done': 2,
          'nyou': 2,
          'works': 2,
          'home': 2,
          'wonderfully': 2,
          'take': 2,
          'ending': 2,
          'use': 2,
          'explain': 2,
          'rated': 2,
          'nudity': 2,
          'language': 2,
          '18': 2,
          'wanted': 1,
          'went': 1,
          'nfirst': 1,
          'getting': 1,
          'usual': 1,
          'lines': 1,
          'glitz': 1,
          'liked': 1,
          'youll': 1,
          'stunning': 1,
          'dazzled': 1,
          'days': 1,
          'oh': 1,
          'uses': 1,
          'falls': 1,
          'nnow': 1,
          'onto': 1,
          'serious': 1,
          'stuff': 1,
          'mean': 1,
          'sarcastic': 1,
          'singlehandedly': 1,
          'broken': 1,
          'surrounding': 1,
          'nim': 1,
          'saying': 1,
          'bad': 1,
          'shocked': 1,
          'perhaps': 1,
          'charming': 1,
          'tricky': 1,
          'slide': 1,
          'nbeing': 1,
          'mormon': 1,
          'im': 1,
          'hear': 1,
          'uproar': 1,
          'religious': 1,
          'zealots': 1,
          'warning': 1,
          'ntrouble': 1,
          'already': 1,
          'noir': 1,
          '40s': 1,
          'sensibilities': 1,
          'breaking': 1,
          'modernday': 1,
          'taboos': 1,
          'culture': 1,
          'style': 1,
          'filmed': 1,
          'color': 1,
          'seemingly': 1,
          'drawn': 1,
          'gene': 1,
          'placed': 1,
          'nsure': 1,
          'true': 1,
          'aint': 1,
          'nwhen': 1,
          'come': 1,
          'sort': 1,
          'better': 1,
          'version': 1,
          'basic': 1,
          'instinct': 1,
          'either': 1,
          'hate': 1,
          'admit': 1,
          'liking': 1,
          'anyone': 1,
          'sees': 1,
          'blue': 1,
          'bay': 1,
          'world': 1,
          'teenager': 1,
          'entrance': 1,
          'exams': 1,
          'admittance': 1,
          'totally': 1,
          'based': 1,
          'looks': 1,
          'alone': 1,
          'nof': 1,
          'select': 1,
          'look': 1,
          'ugly': 1,
          'compared': 1,
          'person': 1,
          'nimmediately': 1,
          'finds': 1,
          'audience': 1,
          'settles': 1,
          'enjoyable': 1,
          'nwe': 1,
          'brains': 1,
          'nwrong': 1,
          'nwhile': 1,
          'expecting': 1,
          'happen': 1,
          'certainly': 1,
          'classroom': 1,
          'main': 1,
          'present': 1,
          'lombardo': 1,
          'counselor': 1,
          'nhes': 1,
          'heading': 1,
          'discussion': 1,
          'van': 1,
          'ryan': 1,
          'snobby': 1,
          'teen': 1,
          'fallen': 1,
          'nteaching': 1,
          'policemen': 1,
          'ray': 1,
          'duquette': 1,
          'gloria': 1,
          'perez': 1,
          'talk': 1,
          'cheers': 1,
          'crimes': 1,
          'boos': 1,
          'crime': 1,
          'nray': 1,
          'asks': 1,
          'gettin': 1,
          'responds': 1,
          'upon': 1,
          'hearing': 1,
          'suzie': 1,
          'toller': 1,
          'stands': 1,
          'leaves': 1,
          'room': 1,
          'commenting': 1,
          'kiss': 1,
          'body': 1,
          'motion': 1,
          'nquickly': 1,
          'hitting': 1,
          'anything': 1,
          'advances': 1,
          'nkelly': 1,
          'stubborn': 1,
          'continues': 1,
          'pursue': 1,
          'pleads': 1,
          'wash': 1,
          'jeep': 1,
          'nsurprisingly': 1,
          'really': 1,
          'nany': 1,
          'crucial': 1,
          'whats': 1,
          'unpredictable': 1,
          'maintains': 1,
          'adds': 1,
          'ever': 1,
          'tired': 1,
          'pleasing': 1,
          'back': 1,
          'mind': 1,
          'work': 1,
          'stretch': 1,
          'belief': 1,
          'nthankfully': 1,
          'pouncing': 1,
          'another': 1,
          'shock': 1,
          'previous': 1,
          'worn': 1,
          'critics': 1,
          'complain': 1,
          'trashywell': 1,
          'kind': 1,
          'isnt': 1,
          'trash': 1,
          'sense': 1,
          'screenplay': 1,
          'knows': 1,
          'taken': 1,
          'seriously': 1,
          'lot': 1,
          'humor': 1,
          'satire': 1,
          'story': 1,
          'varies': 1,
          'everywhere': 1,
          'kellys': 1,
          'theresa': 1,
          'russell': 1,
          'caricature': 1,
          'ambulancechasing': 1,
          'lawyer': 1,
          'wears': 1,
          'neckbrace': 1,
          'cover': 1,
          'insurance': 1,
          'scam': 1,
          'running': 1,
          'nbill': 1,
          'provides': 1,
          'laughs': 1,
          'gratuitous': 1,
          'unwelcomed': 1,
          'supposed': 1,
          'title': 1,
          'wouldnt': 1,
          'breaks': 1,
          'ninstead': 1,
          'lesbian': 1,
          'worry': 1,
          'might': 1,
          'surprise': 1,
          'shocker': 1,
          'bacons': 1,
          'fullfrontal': 1,
          'nude': 1,
          'brief': 1,
          'blink': 1,
          'miss': 1,
          'ahem': 1,
          'remember': 1,
          'rrated': 1,
          'show': 1,
          'erect': 1,
          'completely': 1,
          'audiences': 1,
          'reaction': 1,
          'expected': 1,
          'nalso': 1,
          'late': 1,
          'seemed': 1,
          'relationship': 1,
          'brewing': 1,
          'dillons': 1,
          'nothing': 1,
          'came': 1,
          'wonder': 1,
          'director': 1,
          'cut': 1,
          'order': 1,
          'refused': 1,
          'nwhat': 1,
          'made': 1,
          'favorite': 1,
          'actresses': 1,
          'since': 1,
          'released': 1,
          'turns': 1,
          'typical': 1,
          'head': 1,
          'plays': 1,
          'gothic': 1,
          'pothead': 1,
          'closest': 1,
          'craft': 1,
          'nice': 1,
          'girl': 1,
          'ncampbell': 1,
          'shows': 1,
          'wide': 1,
          'talent': 1,
          'ndenise': 1,
          'limited': 1,
          'roles': 1,
          'without': 1,
          'gets': 1,
          'express': 1,
          'emotions': 1,
          'stiff': 1,
          'effective': 1,
          'starship': 1,
          'troopers': 1,
          'nhopefully': 1,
          'land': 1,
          'display': 1,
          'ability': 1,
          'newcomer': 1,
          'mostly': 1,
          'background': 1,
          'hour': 1,
          'half': 1,
          'ntowards': 1,
          'end': 1,
          'bigger': 1,
          'non': 1,
          'male': 1,
          'side': 1,
          'giving': 1,
          'subtle': 1,
          'nkevin': 1,
          'wooden': 1,
          'must': 1,
          'admiration': 1,
          'screen': 1,
          'womens': 1,
          'reactions': 1,
          'theater': 1,
          'shot': 1,
          'grown': 1,
          'deeper': 1,
          'appreciation': 1,
          'comic': 1,
          'relief': 1,
          'steals': 1,
          'whole': 1,
          'entire': 1,
          'wondrously': 1,
          'together': 1,
          'seem': 1,
          'menage': 1,
          'troi': 1,
          'ndirector': 1,
          'john': 1,
          'mcnaughton': 1,
          'previously': 1,
          'critically': 1,
          'acclaimed': 1,
          'henry': 1,
          'portrait': 1,
          'serial': 1,
          'killer': 1,
          'constructed': 1,
          'direction': 1,
          'smooth': 1,
          'stylish': 1,
          'visuals': 1,
          'striking': 1,
          'colors': 1,
          'realistic': 1,
          'breathe': 1,
          'humidity': 1,
          'air': 1,
          'seems': 1,
          'arent': 1,
          'talking': 1,
          'flyby': 1,
          'shots': 1,
          'swampy': 1,
          'areas': 1,
          'brilliant': 1,
          'photography': 1,
          'climbing': 1,
          'highlight': 1,
          'cinematography': 1,
          'details': 1,
          'often': 1,
          'camera': 1,
          'pictures': 1,
          'nthen': 1,
          'music': 1,
          'obvious': 1,
          'set': 1,
          'perfect': 1,
          'mood': 1,
          'describe': 1,
          'words': 1,
          'listen': 1,
          'composed': 1,
          'presented': 1,
          'sure': 1,
          'stick': 1,
          'closing': 1,
          'nmcnaughton': 1,
          'finally': 1,
          'comedies': 1,
          'outtakes': 1,
          'nhe': 1,
          'included': 1,
          'small': 1,
          'help': 1,
          'preceding': 1,
          'events': 1,
          'nsome': 1,
          'say': 1,
          'lame': 1,
          'attempts': 1,
          'entertaining': 1,
          'finish': 1,
          'nplus': 1,
          'shocking': 1,
          'moments': 1,
          'add': 1,
          'appropriately': 1,
          'strong': 1,
          'sexuality': 1,
          'violence': 1,
          'nagain': 1,
          'unnecessary': 1,
          'lets': 1,
          'face': 1,
          'itpeople': 1,
          'nso': 1,
          'admirably': 1,
          'nonudity': 1,
          'clause': 1,
          'contract': 1,
          'behind': 1,
          'takes': 1,
          'top': 1,
          'go': 1,
          'especially': 1,
          'deck': 1,
          'hands': 1,
          'wonders': 1,
          'got': 1,
          'harsh': 1,
          'ranging': 1,
          'sexual': 1,
          'innuendo': 1,
          'everyday': 1,
          'profanity': 1,
          'cant': 1,
          'stress': 1,
          'enough': 1,
          'allow': 1,
          'kids': 1,
          'target': 1,
          'age': 1,
          '1824': 1,
          'definitely': 1,
          'ndid': 1,
          'mention': 1,
          'chance': 1,
          'likely': 1,
          'friends': 1,
          'next': 1,
          'npos': 1}),
 Counter({'nthe': 9,
          'postman': 7,
          'film': 6,
          'michael': 4,
          'redman': 4,
          'costner': 4,
          'nits': 4,
          'like': 4,
          'army': 4,
          'bethlehem': 4,
          'postal': 4,
          'many': 3,
          'kevin': 3,
          'year': 3,
          'things': 3,
          'world': 3,
          'nalthough': 3,
          'even': 3,
          'mail': 3,
          'way': 3,
          'new': 3,
          'movie': 3,
          'films': 3,
          'hope': 2,
          'neven': 2,
          'worse': 2,
          'waterworld': 2,
          '2013': 2,
          'war': 2,
          'united': 2,
          'states': 2,
          'never': 2,
          'land': 2,
          'general': 2,
          'called': 2,
          'come': 2,
          'form': 2,
          'child': 2,
          'husband': 2,
          'rest': 2,
          'become': 2,
          'express': 2,
          'service': 2,
          'holnists': 2,
          'costners': 2,
          'civilization': 2,
          'seems': 2,
          'beyond': 2,
          'nthere': 2,
          'evil': 2,
          'much': 2,
          'takes': 2,
          'years': 2,
          'federal': 2,
          'government': 2,
          'audience': 2,
          'going': 2,
          'delivers': 1,
          'first': 1,
          'class': 1,
          'review': 1,
          'copyright': 1,
          '1997': 1,
          'nwarning': 1,
          'opinion': 1,
          'definitely': 1,
          'minority': 1,
          'reviewers': 1,
          'perhaps': 1,
          'hits': 1,
          'cinematic': 1,
          'buttons': 1,
          'postapocalypse': 1,
          'stories': 1,
          'desperate': 1,
          'situation': 1,
          'grassroots': 1,
          'uprisings': 1,
          'thought': 1,
          'watchable': 1,
          'nread': 1,
          'following': 1,
          'particular': 1,
          'grains': 1,
          'salt': 1,
          'fallen': 1,
          'apart': 1,
          'ndue': 1,
          'late': 1,
          'nineties': 1,
          'resulting': 1,
          'threeyear': 1,
          'winter': 1,
          'devastating': 1,
          'plague': 1,
          'life': 1,
          'former': 1,
          'reduced': 1,
          'isolated': 1,
          'primitive': 1,
          'fiefdoms': 1,
          'future': 1,
          'looks': 1,
          'western': 1,
          'nas': 1,
          'opens': 1,
          'characters': 1,
          'name': 1,
          'revealed': 1,
          'wandering': 1,
          'utah': 1,
          'wastelands': 1,
          'mule': 1,
          'bill': 1,
          'company': 1,
          'ngiving': 1,
          'extraordinarily': 1,
          'bad': 1,
          'shakespearean': 1,
          'performances': 1,
          'exchange': 1,
          'food': 1,
          'lodging': 1,
          'outsider': 1,
          'outsiders': 1,
          'nrunning': 1,
          'luck': 1,
          'forcibly': 1,
          'conscripted': 1,
          'racially': 1,
          'pure': 1,
          'holnist': 1,
          'patton': 1,
          'ragtag': 1,
          'retrofuturistic': 1,
          'cavalry': 1,
          'descendent': 1,
          'militia': 1,
          'groups': 1,
          'clan': 1,
          'nafter': 1,
          'brutal': 1,
          'boot': 1,
          'camp': 1,
          'see': 1,
          'coming': 1,
          'mile': 1,
          'away': 1,
          'escapes': 1,
          'ntaking': 1,
          'shelter': 1,
          'wrecked': 1,
          'truck': 1,
          'liberates': 1,
          'uniform': 1,
          'bag': 1,
          'skeleton': 1,
          'cab': 1,
          'longer': 1,
          'use': 1,
          'either': 1,
          'nonce': 1,
          'reaches': 1,
          'oregon': 1,
          'beautiful': 1,
          'women': 1,
          'bright': 1,
          'youngsters': 1,
          'rock': 1,
          'roll': 1,
          'pretends': 1,
          'representative': 1,
          'restored': 1,
          'congress': 1,
          'america': 1,
          'nthis': 1,
          'scam': 1,
          'gets': 1,
          'inside': 1,
          'walled': 1,
          'towns': 1,
          'promise': 1,
          'delivery': 1,
          'renews': 1,
          'optimism': 1,
          'hearts': 1,
          'inhabitants': 1,
          'nfood': 1,
          'opportunities': 1,
          'spirited': 1,
          'abby': 1,
          'olivia': 1,
          'williams': 1,
          'wants': 1,
          'father': 1,
          'sterile': 1,
          'nshortly': 1,
          'killed': 1,
          'referred': 1,
          'reluctant': 1,
          'item': 1,
          'knows': 1,
          'hes': 1,
          'running': 1,
          'fraud': 1,
          'concept': 1,
          'renewed': 1,
          'communications': 1,
          'sets': 1,
          'kids': 1,
          'imagination': 1,
          'afire': 1,
          'especially': 1,
          'ford': 1,
          'lincoln': 1,
          'mercury': 1,
          'larenz': 1,
          'tate': 1,
          'secondincommand': 1,
          'pony': 1,
          'dedicated': 1,
          'getting': 1,
          'revived': 1,
          'doubles': 1,
          'fight': 1,
          'tyranny': 1,
          'symbol': 1,
          'rube': 1,
          'goldberg': 1,
          'manner': 1,
          'appeals': 1,
          'sensibilities': 1,
          'wrong': 1,
          'hardly': 1,
          'counted': 1,
          'derivitive': 1,
          'clint': 1,
          'eastwood': 1,
          'westerns': 1,
          'ntheres': 1,
          'little': 1,
          'havent': 1,
          'seen': 1,
          'dozens': 1,
          'times': 1,
          'often': 1,
          'downright': 1,
          'corny': 1,
          'na': 1,
          'scene': 1,
          'horseback': 1,
          'grabs': 1,
          'letter': 1,
          'hands': 1,
          'brighteyed': 1,
          'embarrassing': 1,
          'slowmotion': 1,
          'banality': 1,
          'final': 1,
          'minutes': 1,
          'left': 1,
          'cutting': 1,
          'room': 1,
          'floor': 1,
          'ndespite': 1,
          'excessive': 1,
          'three': 1,
          'hour': 1,
          'length': 1,
          'several': 1,
          'explained': 1,
          'nwhat': 1,
          'nhow': 1,
          'change': 1,
          'rapidly': 1,
          'neveryone': 1,
          'horses': 1,
          'law': 1,
          'eights': 1,
          'lives': 1,
          'origins': 1,
          'somewhere': 1,
          'nare': 1,
          'believe': 1,
          'shape': 1,
          'hasnt': 1,
          'made': 1,
          'west': 1,
          'help': 1,
          'conquer': 1,
          'jumbled': 1,
          'symbolism': 1,
          'doesnt': 1,
          'appear': 1,
          'make': 1,
          'sense': 1,
          'tale': 1,
          'obviously': 1,
          'saying': 1,
          'communication': 1,
          'defeat': 1,
          'internet': 1,
          'potential': 1,
          'topple': 1,
          'governments': 1,
          'oddities': 1,
          'sounds': 1,
          'coincidentally': 1,
          'age': 1,
          'holism': 1,
          'nis': 1,
          'another': 1,
          'coincidence': 1,
          'place': 1,
          'one': 1,
          'ancient': 1,
          'prophesies': 1,
          'including': 1,
          'ending': 1,
          'mayan': 1,
          'calendar': 1,
          'predict': 1,
          'mankind': 1,
          'nwhy': 1,
          'named': 1,
          'reason': 1,
          'nsometimes': 1,
          'feels': 1,
          'joke': 1,
          'nan': 1,
          'workers': 1,
          'armed': 1,
          'guns': 1,
          'nconsidering': 1,
          'headlines': 1,
          'recent': 1,
          'tremendous': 1,
          'leap': 1,
          'faith': 1,
          'cheer': 1,
          'guys': 1,
          'difficult': 1,
          'accept': 1,
          'repowering': 1,
          'heroes': 1,
          'ngiven': 1,
          'current': 1,
          'climate': 1,
          'country': 1,
          'distrust': 1,
          'big': 1,
          'asking': 1,
          'lot': 1,
          'get': 1,
          'behind': 1,
          'nationalism': 1,
          'numerous': 1,
          'flaws': 1,
          'comes': 1,
          'together': 1,
          'weaknesses': 1,
          'doubtful': 1,
          'find': 1,
          'us': 1,
          'good': 1,
          'time': 1,
          'nbesides': 1,
          'awaiting': 1,
          'fall': 1,
          'caused': 1,
          '2000': 1,
          'millennium': 1,
          'computer': 1,
          'bug': 1,
          'n': 1,
          'written': 1,
          'column': 1,
          '22': 1,
          'would': 1,
          'announce': 1,
          'arrested': 1,
          'near': 1,
          'indianapolis': 1,
          'last': 1,
          'week': 1,
          'accepting': 1,
          'illicit': 1,
          'package': 1,
          'best': 1,
          'knowledge': 1,
          'nperhaps': 1,
          'similarlynamed': 1,
          'person': 1,
          'used': 1,
          'npos': 1}),
 Counter({'film': 16,
          'relationship': 9,
          'one': 8,
          'sean': 8,
          'nand': 7,
          'lambeau': 7,
          'nthe': 6,
          'two': 6,
          'like': 6,
          'scene': 5,
          'people': 4,
          'damon': 4,
          'get': 4,
          'affleck': 4,
          'great': 4,
          'moments': 4,
          'amazing': 4,
          'nwe': 4,
          'skylar': 4,
          'best': 4,
          'seems': 4,
          'hunting': 3,
          'face': 3,
          'puts': 3,
          'problem': 3,
          'board': 3,
          'done': 3,
          'course': 3,
          'tries': 3,
          'also': 3,
          'ni': 3,
          'friends': 3,
          'underwritten': 3,
          'never': 3,
          'good': 2,
          'title': 2,
          'would': 2,
          'cowriter': 2,
          'mathematical': 2,
          'genius': 2,
          'time': 2,
          'takes': 2,
          'day': 2,
          'professor': 2,
          'stellan': 2,
          'skarsg': 2,
          'rd': 2,
          'another': 2,
          'guy': 2,
          'gets': 2,
          'therapy': 2,
          'going': 2,
          'college': 2,
          'williams': 2,
          'want': 2,
          'life': 2,
          'ben': 2,
          'something': 2,
          'doesnt': 2,
          'enjoyable': 2,
          'tons': 2,
          'driver': 2,
          'wills': 2,
          'nthere': 2,
          'scenes': 2,
          'even': 2,
          'first': 2,
          'meeting': 2,
          'enough': 2,
          'either': 2,
          'interesting': 2,
          'chuckie': 2,
          'see': 2,
          'decision': 2,
          'goes': 2,
          'human': 2,
          'pretty': 2,
          'extremely': 2,
          'dialogue': 2,
          'director': 2,
          'van': 2,
          'certain': 1,
          'world': 1,
          'talent': 1,
          'chose': 1,
          'take': 1,
          'advantage': 1,
          'personal': 1,
          'reason': 1,
          'n': 1,
          'horrible': 1,
          'lets': 1,
          'bitch': 1,
          'played': 1,
          'matt': 1,
          'nhe': 1,
          'almost': 1,
          'connundrum': 1,
          'brew': 1,
          'cup': 1,
          'irish': 1,
          'cream': 1,
          'cappuccino': 1,
          'works': 1,
          'mit': 1,
          'janitor': 1,
          'none': 1,
          'challenging': 1,
          'courses': 1,
          'proffessor': 1,
          'breaking': 1,
          'waves': 1,
          'big': 1,
          'students': 1,
          'attempt': 1,
          'complete': 1,
          'next': 1,
          'already': 1,
          'class': 1,
          'claims': 1,
          'nso': 1,
          'took': 1,
          'colleagues': 1,
          'years': 1,
          'prove': 1,
          'duh': 1,
          'nof': 1,
          'catch': 1,
          'red': 1,
          'handed': 1,
          'nbefore': 1,
          'find': 1,
          'ran': 1,
          'away': 1,
          'caught': 1,
          'gotten': 1,
          'fight': 1,
          'bunch': 1,
          'punks': 1,
          'basketball': 1,
          'court': 1,
          'struck': 1,
          'police': 1,
          'officer': 1,
          'probation': 1,
          'agreements': 1,
          'work': 1,
          'math': 1,
          'b': 1,
          'nafter': 1,
          'therapists': 1,
          'psyches': 1,
          'way': 1,
          'hypnotist': 1,
          'fakes': 1,
          'spell': 1,
          'launches': 1,
          'impromptu': 1,
          'performance': 1,
          '70s': 1,
          'classic': 1,
          'afternoon': 1,
          'delight': 1,
          'nfinally': 1,
          'lambeaus': 1,
          'old': 1,
          'roomate': 1,
          'mcguire': 1,
          'robin': 1,
          'psych': 1,
          'agrees': 1,
          'treat': 1,
          'begin': 1,
          'rocky': 1,
          'open': 1,
          'nturns': 1,
          'rough': 1,
          'childhood': 1,
          'abandoned': 1,
          'placed': 1,
          'foster': 1,
          'homes': 1,
          'nit': 1,
          'turns': 1,
          'simple': 1,
          'mathematics': 1,
          'wants': 1,
          'challenge': 1,
          'hang': 1,
          'buds': 1,
          'including': 1,
          'honorable': 1,
          'jobs': 1,
          'construction': 1,
          'nis': 1,
          'right': 1,
          'make': 1,
          'follow': 1,
          'footsteps': 1,
          'einstein': 1,
          'kasinsky': 1,
          'nshould': 1,
          'forced': 1,
          'nthis': 1,
          'appears': 1,
          'million': 1,
          'questions': 1,
          'jampacked': 1,
          'greatness': 1,
          'totally': 1,
          'brilliant': 1,
          'whole': 1,
          'nim': 1,
          'saying': 1,
          'bad': 1,
          'nits': 1,
          'lots': 1,
          'things': 1,
          'acting': 1,
          'oscarnominationworthy': 1,
          'performances': 1,
          'chemistry': 1,
          'together': 1,
          'support': 1,
          'name': 1,
          'minnie': 1,
          'plays': 1,
          'love': 1,
          'interest': 1,
          'individual': 1,
          'adored': 1,
          'loved': 1,
          'comedy': 1,
          'especially': 1,
          'proves': 1,
          'schmuck': 1,
          'student': 1,
          'quoting': 1,
          'historian': 1,
          'impress': 1,
          'chicks': 1,
          'various': 1,
          'attempts': 1,
          'favorite': 1,
          'entire': 1,
          'delivers': 1,
          'long': 1,
          'exstensive': 1,
          'rant': 1,
          'nsa': 1,
          'agents': 1,
          'downside': 1,
          'working': 1,
          'liked': 1,
          'watch': 1,
          'honest': 1,
          'portrayal': 1,
          'felt': 1,
          'rightfully': 1,
          'uncomfortable': 1,
          'nlike': 1,
          'breakup': 1,
          'seans': 1,
          'bar': 1,
          'tells': 1,
          'detail': 1,
          'regret': 1,
          'wife': 1,
          'later': 1,
          'suffer': 1,
          'slow': 1,
          'painful': 1,
          'death': 1,
          'leave': 1,
          'lonely': 1,
          'slightly': 1,
          'bitter': 1,
          'nhowever': 1,
          'main': 1,
          'flaw': 1,
          'theres': 1,
          'much': 1,
          'everything': 1,
          'deeper': 1,
          'relations': 1,
          'characters': 1,
          'theyre': 1,
          'sometimes': 1,
          'overwritten': 1,
          'ntake': 1,
          'example': 1,
          'fatherson': 1,
          'well': 1,
          'doctorpatient': 1,
          'problems': 1,
          'show': 1,
          'equals': 1,
          'falls': 1,
          'hear': 1,
          'went': 1,
          'town': 1,
          'shows': 1,
          'hypocritical': 1,
          'times': 1,
          'nbut': 1,
          'parts': 1,
          'nalso': 1,
          'friend': 1,
          'nice': 1,
          'climax': 1,
          'rising': 1,
          'action': 1,
          'joking': 1,
          'around': 1,
          'arrives': 1,
          'superficial': 1,
          'reasoning': 1,
          'selected': 1,
          'ntheir': 1,
          'beyond': 1,
          'generalization': 1,
          'instead': 1,
          'nmaybe': 1,
          'parallelism': 1,
          'films': 1,
          'girlboy': 1,
          'understand': 1,
          'confesses': 1,
          'loves': 1,
          'plot': 1,
          'details': 1,
          'anything': 1,
          'else': 1,
          'nminnie': 1,
          'though': 1,
          'breathes': 1,
          'character': 1,
          'writing': 1,
          'bit': 1,
          'fault': 1,
          'makes': 1,
          'worthwhile': 1,
          'little': 1,
          'acheives': 1,
          'true': 1,
          'awesomeness': 1,
          'nsure': 1,
          'feels': 1,
          'overstuffed': 1,
          'written': 1,
          'amazingly': 1,
          'fresh': 1,
          'think': 1,
          'nomination': 1,
          'script': 1,
          'chiefly': 1,
          'nwhile': 1,
          'probably': 1,
          'gus': 1,
          'sants': 1,
          'conservative': 1,
          'youd': 1,
          'hardly': 1,
          'know': 1,
          'die': 1,
          'sant': 1,
          'ive': 1,
          'seen': 1,
          'really': 1,
          'still': 1,
          'remarkable': 1,
          'albeit': 1,
          'tad': 1,
          'overrated': 1,
          'whats': 1,
          'picture': 1,
          'deal': 1,
          'smile': 1,
          'despite': 1,
          'posessing': 1,
          'lot': 1,
          'flaws': 1,
          'reccomending': 1,
          'anyone': 1,
          'npos': 1}),
 Counter({'chan': 9,
          'jackie': 5,
          'movie': 5,
          'hour': 4,
          '2': 4,
          'tucker': 4,
          'rush': 3,
          'chris': 3,
          'nthe': 3,
          'ni': 3,
          'like': 3,
          'jokes': 3,
          'guess': 2,
          'even': 2,
          'comedy': 2,
          'martial': 2,
          'arts': 2,
          'show': 2,
          'well': 2,
          'would': 2,
          'name': 2,
          'stunts': 2,
          'makes': 2,
          'fortune': 2,
          'money': 2,
          'one': 2,
          'way': 2,
          'see': 2,
          'detective': 2,
          'lee': 2,
          'carter': 2,
          'take': 2,
          'get': 2,
          'anyone': 2,
          'funny': 2,
          'realize': 2,
          'laughs': 2,
          'man': 2,
          'completely': 2,
          'nits': 2,
          'often': 2,
          'funnier': 2,
          'isnt': 2,
          'credit': 1,
          'general': 1,
          'likeability': 1,
          'franchise': 1,
          'could': 1,
          'ruined': 1,
          'nauseating': 1,
          'nim': 1,
          'fan': 1,
          'medium': 1,
          'lets': 1,
          'impressiveasever': 1,
          'schtick': 1,
          'comic': 1,
          'timing': 1,
          'nit': 1,
          'worked': 1,
          'better': 1,
          'title': 1,
          'plot': 1,
          'basic': 1,
          'flick': 1,
          'clothesline': 1,
          'special': 1,
          'effects': 1,
          'nthis': 1,
          'time': 1,
          'around': 1,
          'evil': 1,
          'smugglers': 1,
          'led': 1,
          'ricky': 1,
          'tan': 1,
          'john': 1,
          'lone': 1,
          'shipping': 1,
          'counterfeit': 1,
          'united': 1,
          'states': 1,
          'im': 1,
          'still': 1,
          'sure': 1,
          'make': 1,
          'place': 1,
          'exchange': 1,
          'fake': 1,
          'bills': 1,
          'real': 1,
          'ones': 1,
          'tell': 1,
          'phony': 1,
          'genuine': 1,
          'article': 1,
          'set': 1,
          'fire': 1,
          'color': 1,
          'burns': 1,
          'nof': 1,
          'course': 1,
          'hong': 1,
          'kong': 1,
          'trashtalking': 1,
          'lapd': 1,
          'james': 1,
          'bad': 1,
          'guys': 1,
          'authorities': 1,
          'extent': 1,
          'exist': 1,
          'stay': 1,
          'nrush': 1,
          'turns': 1,
          'tables': 1,
          'first': 1,
          'film': 1,
          'gets': 1,
          'two': 1,
          'trouble': 1,
          'winds': 1,
          'guarantee': 1,
          'rating': 1,
          'least': 1,
          'half': 1,
          'grade': 1,
          'higher': 1,
          'cast': 1,
          'foil': 1,
          'nhe': 1,
          'refuses': 1,
          'shut': 1,
          'nnot': 1,
          'voice': 1,
          'feel': 1,
          'jackhammer': 1,
          'head': 1,
          'arent': 1,
          'pathetic': 1,
          'mixture': 1,
          'subpar': 1,
          'eddie': 1,
          'murphy': 1,
          'fasttalking': 1,
          'blather': 1,
          'wannabe': 1,
          'rock': 1,
          'whitemanblackman': 1,
          'wind': 1,
          'offensive': 1,
          'biggest': 1,
          'come': 1,
          'letting': 1,
          'actors': 1,
          'ad': 1,
          'lib': 1,
          'beyond': 1,
          'script': 1,
          'dictates': 1,
          'didnt': 1,
          'irritating': 1,
          'tuckers': 1,
          'incessant': 1,
          'ranting': 1,
          'raving': 1,
          'nif': 1,
          'comedian': 1,
          'offer': 1,
          'dont': 1,
          'care': 1,
          'films': 1,
          'nfortunately': 1,
          'marvelous': 1,
          'straight': 1,
          'redeems': 1,
          'fledgling': 1,
          'actor': 1,
          'save': 1,
          'whenever': 1,
          'hes': 1,
          'screen': 1,
          'comes': 1,
          'nearly': 1,
          'breathtaking': 1,
          'hilarious': 1,
          'life': 1,
          'nmuch': 1,
          'hinges': 1,
          'dubious': 1,
          'value': 1,
          'cute': 1,
          'watch': 1,
          'try': 1,
          'player': 1,
          'cares': 1,
          'think': 1,
          'high': 1,
          'concepts': 1,
          'ends': 1,
          'outtakes': 1,
          'usual': 1,
          'perfect': 1,
          'indeed': 1,
          'tries': 1,
          'incredible': 1,
          'look': 1,
          'seamless': 1,
          'nchris': 1,
          'botches': 1,
          'lines': 1,
          'mistakes': 1,
          'anything': 1,
          'says': 1,
          'whole': 1,
          'na': 1,
          'lot': 1,
          'people': 1,
          'pointed': 1,
          'different': 1,
          'predecessor': 1,
          'tone': 1,
          'style': 1,
          'nbut': 1,
          'liked': 1,
          'original': 1,
          'sequel': 1,
          'though': 1,
          'certain': 1,
          'sidekick': 1,
          'seems': 1,
          'done': 1,
          'best': 1,
          'ruin': 1,
          'ndirector': 1,
          'brett': 1,
          'ratner': 1,
          'family': 1,
          'keeps': 1,
          'moving': 1,
          'entertaining': 1,
          'pace': 1,
          'manages': 1,
          'keep': 1,
          'coming': 1,
          'despite': 1,
          'fairly': 1,
          'miserable': 1,
          'hit': 1,
          'miss': 1,
          'ratio': 1,
          'sometimes': 1,
          'shotgun': 1,
          'approach': 1,
          'works': 1,
          'great': 1,
          'thats': 1,
          'enough': 1,
          'nup': 1,
          'next': 1,
          'jay': 1,
          'silent': 1,
          'bob': 1,
          'strike': 1,
          'back': 1,
          'npos': 1}),
 Counter({'la': 17,
          'bull': 14,
          'motta': 13,
          'raging': 11,
          'nthe': 9,
          'de': 8,
          'one': 7,
          'jake': 6,
          'film': 6,
          'wife': 6,
          'niro': 5,
          'violence': 5,
          'boxing': 5,
          'best': 4,
          'great': 4,
          'two': 4,
          'movie': 4,
          'scorsese': 4,
          'mottas': 4,
          'nin': 4,
          'ring': 4,
          'vicki': 4,
          'scorseses': 3,
          '80s': 3,
          'still': 3,
          'films': 3,
          'picture': 3,
          'would': 3,
          'nraging': 3,
          'perfect': 3,
          'middleweight': 3,
          'character': 3,
          'director': 3,
          'although': 3,
          'man': 3,
          'joey': 3,
          'brother': 3,
          'sugar': 3,
          'ray': 3,
          'championship': 3,
          'n': 3,
          'niros': 3,
          'blackandwhite': 3,
          'including': 2,
          'martin': 2,
          'boxer': 2,
          'number': 2,
          'feel': 2,
          'make': 2,
          'say': 2,
          'motion': 2,
          'released': 2,
          'close': 2,
          'level': 2,
          'fall': 2,
          'life': 2,
          'continue': 2,
          'work': 2,
          'takes': 2,
          '40s': 2,
          '50s': 2,
          'ever': 2,
          'minutes': 2,
          'title': 2,
          'said': 2,
          'result': 2,
          'extreme': 2,
          'canvas': 2,
          'moriarty': 2,
          'joe': 2,
          'pesci': 2,
          'nhe': 2,
          'loose': 2,
          'years': 2,
          'wins': 2,
          'away': 2,
          'love': 2,
          'first': 2,
          'woman': 2,
          'could': 2,
          'late': 2,
          'fight': 2,
          'must': 2,
          'almost': 2,
          'lost': 2,
          'rocky': 2,
          'oscar': 2,
          'nbut': 2,
          'look': 2,
          'never': 2,
          'shows': 2,
          'ntheres': 2,
          'performance': 2,
          'career': 2,
          'many': 2,
          'nand': 2,
          'go': 2,
          'nas': 2,
          'pounds': 2,
          'turned': 2,
          'parody': 2,
          'nscorsese': 2,
          'color': 2,
          'choice': 2,
          'shots': 2,
          'critics': 1,
          'siskel': 1,
          'ebert': 1,
          'record': 1,
          'stating': 1,
          'story': 1,
          'nsince': 1,
          'havent': 1,
          'seen': 1,
          'dont': 1,
          'qualified': 1,
          'judgment': 1,
          'ill': 1,
          'without': 1,
          'hesitation': 1,
          'surprised': 1,
          'handful': 1,
          'january': 1,
          '1': 1,
          '1980': 1,
          'december': 1,
          '31': 1,
          '1989': 1,
          'come': 1,
          'nbiopics': 1,
          'often': 1,
          'categories': 1,
          'overblown': 1,
          'hero': 1,
          'worship': 1,
          'dry': 1,
          'dull': 1,
          'textbook': 1,
          'account': 1,
          'nits': 1,
          'rare': 1,
          'moniker': 1,
          'based': 1,
          'comes': 1,
          'across': 1,
          'anything': 1,
          'sporadically': 1,
          'energetic': 1,
          'marginally': 1,
          'entertaining': 1,
          'counterexample': 1,
          'brilliant': 1,
          'argument': 1,
          'makers': 1,
          'genre': 1,
          'icon': 1,
          'develops': 1,
          'compelling': 1,
          'studies': 1,
          'reach': 1,
          'big': 1,
          'screen': 1,
          'nfor': 1,
          '129': 1,
          'actor': 1,
          'robert': 1,
          'role': 1,
          'us': 1,
          'mesmerized': 1,
          'individual': 1,
          'turns': 1,
          'sympathetic': 1,
          'sad': 1,
          'horrifying': 1,
          'nhistorically': 1,
          'mostly': 1,
          'accurately': 1,
          'lions': 1,
          'share': 1,
          'details': 1,
          'culled': 1,
          'autobiography': 1,
          'cowritten': 1,
          'joseph': 1,
          'carter': 1,
          'peter': 1,
          'savage': 1,
          'nhowever': 1,
          'credited': 1,
          'movies': 1,
          'consultant': 1,
          'reportedly': 1,
          'unhappy': 1,
          'final': 1,
          'portrays': 1,
          'nothing': 1,
          'short': 1,
          'uncouth': 1,
          'insensitive': 1,
          'lout': 1,
          'appetites': 1,
          'driven': 1,
          'base': 1,
          'bestial': 1,
          'impulses': 1,
          'paranoia': 1,
          'jealousy': 1,
          'blind': 1,
          'rage': 1,
          'nsex': 1,
          'inextricably': 1,
          'linked': 1,
          'apt': 1,
          'terror': 1,
          'beating': 1,
          'opponents': 1,
          'destroying': 1,
          'noutside': 1,
          'less': 1,
          'vicious': 1,
          'easily': 1,
          'controlled': 1,
          'people': 1,
          'spar': 1,
          'lifes': 1,
          'cathy': 1,
          'brothermanager': 1,
          'nthese': 1,
          'mean': 1,
          'inability': 1,
          'trust': 1,
          'others': 1,
          'loses': 1,
          'beats': 1,
          'mercilessly': 1,
          'suspects': 1,
          'infidelity': 1,
          'inaccurately': 1,
          'believes': 1,
          'betrayed': 1,
          'lets': 1,
          'explosion': 1,
          'opens': 1,
          '1941': 1,
          'upandcoming': 1,
          'fighter': 1,
          'battling': 1,
          'way': 1,
          'upper': 1,
          'echelon': 1,
          'class': 1,
          'nover': 1,
          'several': 1,
          'key': 1,
          'bouts': 1,
          'archrival': 1,
          'robinson': 1,
          'johnny': 1,
          'barnes': 1,
          'unwillingness': 1,
          'capitulate': 1,
          'local': 1,
          'godfather': 1,
          'keeps': 1,
          'opportunity': 1,
          'participate': 1,
          'match': 1,
          'nmeanwhile': 1,
          'falls': 1,
          '15year': 1,
          'old': 1,
          'marries': 1,
          'discarding': 1,
          'shrewish': 1,
          'nvicki': 1,
          'becomes': 1,
          'jakes': 1,
          'greatest': 1,
          'prize': 1,
          'view': 1,
          'companion': 1,
          'possession': 1,
          'source': 1,
          'pain': 1,
          'nhis': 1,
          'insecurity': 1,
          'accept': 1,
          'beautiful': 1,
          'faithful': 1,
          'nhence': 1,
          'constantly': 1,
          'haunted': 1,
          'belief': 1,
          'sleeping': 1,
          'someone': 1,
          'else': 1,
          'perhaps': 1,
          'even': 1,
          'leads': 1,
          'famous': 1,
          'line': 1,
          'parodied': 1,
          'waiting': 1,
          'guffman': 1,
          'elsewhere': 1,
          'f': 1,
          'king': 1,
          'gets': 1,
          'shot': 1,
          'huge': 1,
          'condition': 1,
          'take': 1,
          'badly': 1,
          'investigation': 1,
          'launched': 1,
          'thrown': 1,
          'ntwo': 1,
          'later': 1,
          'lose': 1,
          'subsequent': 1,
          'bout': 1,
          'nby': 1,
          'early': 1,
          '60s': 1,
          'ends': 1,
          'become': 1,
          'pathetic': 1,
          'figure': 1,
          'broke': 1,
          'overweight': 1,
          'loser': 1,
          'spent': 1,
          'time': 1,
          'jail': 1,
          'corrupting': 1,
          'morals': 1,
          'minor': 1,
          'children': 1,
          'trying': 1,
          'earn': 1,
          'bucks': 1,
          'cheap': 1,
          'standup': 1,
          'routine': 1,
          'side': 1,
          'nsylvester': 1,
          'stallones': 1,
          'tale': 1,
          'triumph': 1,
          'critical': 1,
          'acclaim': 1,
          '1976': 1,
          'nit': 1,
          '1977': 1,
          'sequel': 1,
          'arrived': 1,
          'theaters': 1,
          'went': 1,
          'production': 1,
          'romanticizes': 1,
          'cold': 1,
          'unflinching': 1,
          'inside': 1,
          'outside': 1,
          'nwhile': 1,
          'primary': 1,
          'aim': 1,
          'present': 1,
          'riveting': 1,
          'deconstruction': 1,
          'backs': 1,
          'showing': 1,
          'seedy': 1,
          'ugly': 1,
          'underside': 1,
          'sport': 1,
          'gambling': 1,
          'greed': 1,
          'organized': 1,
          'crime': 1,
          'force': 1,
          'fighters': 1,
          'throw': 1,
          'matches': 1,
          'working': 1,
          'nrocky': 1,
          'noblest': 1,
          'diseased': 1,
          'little': 1,
          'hasnt': 1,
          'already': 1,
          'included': 1,
          'fine': 1,
          'roles': 1,
          'outstanding': 1,
          'intensity': 1,
          'brings': 1,
          'unwavering': 1,
          'theres': 1,
          'lot': 1,
          'travis': 1,
          'bickle': 1,
          'taxi': 1,
          'driver': 1,
          'lengths': 1,
          'sure': 1,
          'fully': 1,
          'sympathize': 1,
          'least': 1,
          'understand': 1,
          'forces': 1,
          'drive': 1,
          'nthis': 1,
          'complete': 1,
          'characterization': 1,
          'example': 1,
          'acting': 1,
          'younger': 1,
          'trim': 1,
          'fit': 1,
          'fat': 1,
          'older': 1,
          'gained': 1,
          '50': 1,
          'body': 1,
          'grotesque': 1,
          'normal': 1,
          'form': 1,
          'nhow': 1,
          'actors': 1,
          'far': 1,
          'statue': 1,
          'testimony': 1,
          'lasting': 1,
          'power': 1,
          'ncathy': 1,
          'earned': 1,
          'nominations': 1,
          'supporting': 1,
          'neither': 1,
          'ntheir': 1,
          'portrayals': 1,
          'raw': 1,
          'energy': 1,
          'infuses': 1,
          'npesci': 1,
          'basically': 1,
          'recreated': 1,
          'personality': 1,
          'goodfellas': 1,
          'casino': 1,
          'presents': 1,
          'slightly': 1,
          'intelligent': 1,
          'version': 1,
          'misogyny': 1,
          'better': 1,
          'concealed': 1,
          'snaps': 1,
          'scene': 1,
          'mobster': 1,
          'frank': 1,
          'vincent': 1,
          'startling': 1,
          'behold': 1,
          'nmoriarty': 1,
          'hand': 1,
          'play': 1,
          'temptress': 1,
          'virginal': 1,
          'qualities': 1,
          'kind': 1,
          'ensnare': 1,
          'nlater': 1,
          'shes': 1,
          'called': 1,
          'upon': 1,
          'portray': 1,
          'battered': 1,
          'mother': 1,
          'whose': 1,
          'fear': 1,
          'cinematographer': 1,
          'michael': 1,
          'chapman': 1,
          'elected': 1,
          'shoot': 1,
          'bulk': 1,
          'home': 1,
          'segments': 1,
          'giving': 1,
          'unique': 1,
          'era': 1,
          'approach': 1,
          'unheard': 1,
          'important': 1,
          'recent': 1,
          'exception': 1,
          'schindlers': 1,
          'list': 1,
          'eschewed': 1,
          'reasons': 1,
          'especially': 1,
          'considering': 1,
          'use': 1,
          'slow': 1,
          'stark': 1,
          'disturbing': 1,
          'room': 1,
          'romanticism': 1,
          'inky': 1,
          'black': 1,
          'blood': 1,
          'staining': 1,
          'nduring': 1,
          'sequences': 1,
          'also': 1,
          'uses': 1,
          'pointofview': 1,
          'designed': 1,
          'show': 1,
          'world': 1,
          'however': 1,
          'briefly': 1,
          'perspective': 1,
          'chosen': 1,
          'end': 1,
          'loss': 1,
          'surrendered': 1,
          'crown': 1,
          'nafter': 1,
          'downhill': 1,
          'nyet': 1,
          'allows': 1,
          'run': 1,
          'thirty': 1,
          'pivotal': 1,
          'moment': 1,
          'stretching': 1,
          'decade': 1,
          'future': 1,
          'reason': 1,
          'obvious': 1,
          'isnt': 1,
          'interested': 1,
          'nfollowing': 1,
          'retirement': 1,
          'violent': 1,
          'volatile': 1,
          'arena': 1,
          'legally': 1,
          'unleash': 1,
          'tendencies': 1,
          'nwe': 1,
          'see': 1,
          'results': 1,
          'beast': 1,
          'let': 1,
          'society': 1,
          'consequences': 1,
          'actions': 1,
          'reduce': 1,
          'former': 1,
          'self': 1,
          'nwho': 1,
          'surge': 1,
          'pity': 1,
          'quietly': 1,
          'recites': 1,
          'marlon': 1,
          'brandos': 1,
          'speech': 1,
          'waterfront': 1,
          'coulda': 1,
          'contenda': 1,
          'nperhaps': 1,
          'indeed': 1,
          'certainly': 1,
          'perilously': 1,
          'zenith': 1,
          'npos': 1}),
 Counter({'film': 21,
          'one': 15,
          'nthe': 15,
          'humbert': 14,
          'really': 13,
          'novel': 12,
          'lolita': 11,
          'time': 8,
          'first': 6,
          'see': 6,
          'way': 6,
          'even': 5,
          'story': 5,
          'character': 5,
          'book': 5,
          'original': 5,
          'nand': 5,
          'seeing': 4,
          'look': 4,
          'done': 4,
          'screen': 4,
          'two': 4,
          'played': 4,
          'much': 3,
          'made': 3,
          'adaptation': 3,
          'nwhen': 3,
          'nthis': 3,
          'watch': 3,
          'perhaps': 3,
          'lyne': 3,
          'least': 3,
          'second': 3,
          'good': 3,
          'pedophile': 3,
          'obsession': 3,
          'nits': 3,
          'obsessions': 3,
          'almost': 3,
          'something': 3,
          'us': 3,
          'without': 3,
          'bring': 3,
          'scenes': 3,
          'thing': 3,
          'get': 3,
          'sense': 3,
          'nhe': 3,
          'never': 3,
          'end': 3,
          'better': 3,
          'role': 3,
          'griffith': 3,
          'shes': 3,
          'takes': 3,
          'part': 3,
          'new': 2,
          'version': 2,
          'faithful': 2,
          'could': 2,
          'anticlimactic': 2,
          'people': 2,
          'well': 2,
          'worse': 2,
          'especially': 2,
          'anything': 2,
          'best': 2,
          'although': 2,
          'away': 2,
          'nit': 2,
          'dramatic': 2,
          'surprisingly': 2,
          'seems': 2,
          'emotionally': 2,
          'human': 2,
          'things': 2,
          'destroyed': 2,
          'sick': 2,
          'focus': 2,
          'emotional': 2,
          'life': 2,
          'images': 2,
          'comical': 2,
          'also': 2,
          'telling': 2,
          'perspective': 2,
          'exists': 2,
          'trapped': 2,
          'ultimately': 2,
          'weeps': 2,
          'lets': 2,
          'love': 2,
          'feelings': 2,
          'nothing': 2,
          'sympathize': 2,
          'deemed': 2,
          'reading': 2,
          'identify': 2,
          'final': 2,
          'similar': 2,
          'action': 2,
          'deep': 2,
          'kubrick': 2,
          'droll': 2,
          'comedy': 2,
          'nin': 2,
          'scene': 2,
          'allow': 2,
          'couple': 2,
          'relationship': 2,
          'play': 2,
          'know': 2,
          'different': 2,
          'lot': 2,
          'say': 2,
          'amazing': 2,
          'nearly': 2,
          'doesnt': 2,
          'totally': 2,
          'wonderful': 2,
          'easy': 2,
          'looks': 2,
          'wonderfully': 2,
          'qualities': 2,
          'whos': 2,
          'beginning': 2,
          'threat': 2,
          'charlotte': 2,
          'nas': 2,
          'nlangella': 2,
          'right': 2,
          'ballyhoo': 1,
          'would': 1,
          'think': 1,
          'infamous': 1,
          'use': 1,
          'pedophilia': 1,
          'important': 1,
          'address': 1,
          'straightforwardly': 1,
          'ideals': 1,
          'goodness': 1,
          'themes': 1,
          'discussed': 1,
          'limbo': 1,
          'number': 1,
          'years': 1,
          'lying': 1,
          'around': 1,
          'vaults': 1,
          'san': 1,
          'distributor': 1,
          'critics': 1,
          'waiting': 1,
          'either': 1,
          'hail': 1,
          'masterpiece': 1,
          'call': 1,
          'horseshit': 1,
          'hoopla': 1,
          'keeping': 1,
          'mind': 1,
          'namely': 1,
          'fans': 1,
          'eagerly': 1,
          'awaiting': 1,
          'flick': 1,
          'since': 1,
          'creation': 1,
          'nyou': 1,
          'wonder': 1,
          'picked': 1,
          'distribution': 1,
          'nwhats': 1,
          'youre': 1,
          'familiar': 1,
          'admittingly': 1,
          'real': 1,
          'pity': 1,
          'sit': 1,
          'ignoring': 1,
          'crap': 1,
          'preceeded': 1,
          'quite': 1,
          'director': 1,
          'adrian': 1,
          'competition': 1,
          'flashdance': 1,
          'fatal': 1,
          'attraction': 1,
          'indecent': 1,
          'proposal': 1,
          'besides': 1,
          'jacobs': 1,
          'ladder': 1,
          'nive': 1,
          'seen': 1,
          'twice': 1,
          'wasnt': 1,
          'blown': 1,
          'seemed': 1,
          'overly': 1,
          'unaffecting': 1,
          'thinking': 1,
          'ive': 1,
          'waited': 1,
          'like': 1,
          'forever': 1,
          'im': 1,
          'tv': 1,
          'set': 1,
          'premium': 1,
          'cable': 1,
          'channel': 1,
          'giant': 1,
          'movie': 1,
          'theatre': 1,
          'affected': 1,
          'heartbreaking': 1,
          'obsessed': 1,
          'young': 1,
          '14year': 1,
          'old': 1,
          'girl': 1,
          'named': 1,
          'dolores': 1,
          'k': 1,
          'great': 1,
          'trash': 1,
          'perverted': 1,
          'ones': 1,
          'reach': 1,
          'protagonist': 1,
          'comicallynamed': 1,
          'average': 1,
          'seriously': 1,
          'wounded': 1,
          'embodies': 1,
          'idosyncrasies': 1,
          'symbol': 1,
          'forbidden': 1,
          'apple': 1,
          'christian': 1,
          'mythology': 1,
          'destroy': 1,
          'cant': 1,
          'live': 1,
          'nthese': 1,
          'ideas': 1,
          'worked': 1,
          'nicely': 1,
          'heavyhanded': 1,
          'instead': 1,
          'lyrical': 1,
          'devastating': 1,
          'reason': 1,
          'making': 1,
          'penetrate': 1,
          'depths': 1,
          'beautifully': 1,
          'blatantly': 1,
          'overstylized': 1,
          'tone': 1,
          'tragic': 1,
          'blows': 1,
          'every': 1,
          'single': 1,
          'nhumbert': 1,
          'fantsy': 1,
          'world': 1,
          'desires': 1,
          'reflects': 1,
          'entire': 1,
          'designed': 1,
          'nwe': 1,
          'fate': 1,
          'leave': 1,
          'haggard': 1,
          'uncontrollably': 1,
          '14yearold': 1,
          'allows': 1,
          'embody': 1,
          'navigate': 1,
          'decisions': 1,
          'overlydramatic': 1,
          'recognizes': 1,
          'extreme': 1,
          'test': 1,
          'readers': 1,
          'someone': 1,
          'socially': 1,
          'pervert': 1,
          'wonders': 1,
          'author': 1,
          'vladimir': 1,
          'nabokov': 1,
          'wrote': 1,
          'means': 1,
          'peace': 1,
          'weirdest': 1,
          'reached': 1,
          'finale': 1,
          'obsessional': 1,
          'journey': 1,
          'easily': 1,
          'opening': 1,
          'hasnt': 1,
          'wandering': 1,
          'reality': 1,
          'else': 1,
          'sadness': 1,
          'adapted': 1,
          'filmed': 1,
          'shock': 1,
          '1962': 1,
          'stanley': 1,
          'couldnt': 1,
          'possibly': 1,
          'brought': 1,
          'faithfulness': 1,
          'able': 1,
          'next': 1,
          'economized': 1,
          'everything': 1,
          'came': 1,
          'black': 1,
          'general': 1,
          'used': 1,
          'traps': 1,
          'society': 1,
          'benefits': 1,
          'studio': 1,
          'demanded': 1,
          'heinous': 1,
          'murder': 1,
          'come': 1,
          'portray': 1,
          'murderer': 1,
          'gives': 1,
          'depth': 1,
          'man': 1,
          'censors': 1,
          'wouldnt': 1,
          'anymore': 1,
          'glances': 1,
          'subtle': 1,
          'dialogue': 1,
          'show': 1,
          'um': 1,
          'decided': 1,
          'still': 1,
          'tragedy': 1,
          'seep': 1,
          'nlooking': 1,
          'versions': 1,
          'weve': 1,
          'read': 1,
          'bound': 1,
          'angered': 1,
          'size': 1,
          'differences': 1,
          'impossible': 1,
          'compare': 1,
          'nthey': 1,
          'go': 1,
          'room': 1,
          'sexually': 1,
          'frank': 1,
          'true': 1,
          'several': 1,
          'thus': 1,
          'comparison': 1,
          'overall': 1,
          'unfair': 1,
          'ni': 1,
          'saying': 1,
          'level': 1,
          'greatness': 1,
          'wont': 1,
          'nhowever': 1,
          'pretty': 1,
          'mostly': 1,
          'hey': 1,
          'loved': 1,
          'reminded': 1,
          'wit': 1,
          'chuckles': 1,
          'witty': 1,
          'toll': 1,
          'nsome': 1,
          'casting': 1,
          'leads': 1,
          'njeremy': 1,
          'irons': 1,
          'soft': 1,
          'british': 1,
          'voice': 1,
          'gentle': 1,
          'nhes': 1,
          'unique': 1,
          'distraught': 1,
          'brings': 1,
          'sympathy': 1,
          'goes': 1,
          'beyond': 1,
          'pathos': 1,
          'comes': 1,
          'audience': 1,
          'lust': 1,
          'hes': 1,
          'prisoner': 1,
          'long': 1,
          'lives': 1,
          'dominique': 1,
          'swain': 1,
          'plays': 1,
          'title': 1,
          'rather': 1,
          'incredible': 1,
          'nshe': 1,
          'pulls': 1,
          'tough': 1,
          'sue': 1,
          'lyon': 1,
          'balancing': 1,
          'seduction': 1,
          'bratiness': 1,
          'selfcenteredness': 1,
          'marks': 1,
          'surrenders': 1,
          'loves': 1,
          'attention': 1,
          'knows': 1,
          'denies': 1,
          'blackmails': 1,
          'effortlessly': 1,
          'involving': 1,
          'rocking': 1,
          'chair': 1,
          'little': 1,
          'foot': 1,
          'damn': 1,
          'near': 1,
          'classic': 1,
          'stands': 1,
          'runs': 1,
          'leaving': 1,
          'follow': 1,
          'nthere': 1,
          'minor': 1,
          'characters': 1,
          'road': 1,
          'block': 1,
          'reappearing': 1,
          'former': 1,
          'lolitas': 1,
          'mother': 1,
          'melanie': 1,
          'monster': 1,
          'woman': 1,
          'overbearing': 1,
          'constantly': 1,
          'scolding': 1,
          'child': 1,
          'overlyreligious': 1,
          'selfish': 1,
          'obstacle': 1,
          'overcome': 1,
          'obtain': 1,
          'goal': 1,
          'shelly': 1,
          'winters': 1,
          'represented': 1,
          'half': 1,
          'annoying': 1,
          'game': 1,
          'try': 1,
          'mentioning': 1,
          'actor': 1,
          'though': 1,
          'bad': 1,
          'persay': 1,
          'clare': 1,
          'quilty': 1,
          'writer': 1,
          'trying': 1,
          'seduce': 1,
          'succeeds': 1,
          'price': 1,
          'direction': 1,
          'peter': 1,
          'sellars': 1,
          'took': 1,
          'nquilty': 1,
          'comic': 1,
          'form': 1,
          'many': 1,
          'forms': 1,
          'popping': 1,
          'states': 1,
          'rambling': 1,
          'german': 1,
          'proning': 1,
          'eventually': 1,
          'drunk': 1,
          'route': 1,
          'allowing': 1,
          'creepiness': 1,
          'unearthed': 1,
          'result': 1,
          'shadows': 1,
          'low': 1,
          'shots': 1,
          'meets': 1,
          'ironic': 1,
          'ending': 1,
          'exact': 1,
          'opposite': 1,
          'thought': 1,
          'improvements': 1,
          'mistakes': 1,
          'screenwriter': 1,
          'stephen': 1,
          'schiff': 1,
          'parts': 1,
          'whole': 1,
          'cinemawise': 1,
          'beautiful': 1,
          'perpetually': 1,
          'saddening': 1,
          'camera': 1,
          'movements': 1,
          'stylized': 1,
          'shot': 1,
          'breathtakingly': 1,
          'rich': 1,
          'acting': 1,
          'earth': 1,
          'nmore': 1,
          'importantly': 1,
          'brink': 1,
          'emotion': 1,
          'jumps': 1,
          'nby': 1,
          'sadly': 1,
          'driving': 1,
          'recklessly': 1,
          'car': 1,
          'following': 1,
          'says': 1,
          'regret': 1,
          'feel': 1,
          'lose': 1,
          'npos': 1}),
 Counter({'movie': 6,
          'one': 5,
          'funny': 5,
          'like': 5,
          'end': 4,
          'nhe': 4,
          'even': 4,
          'scene': 4,
          'almost': 3,
          'without': 3,
          'good': 3,
          'think': 3,
          'get': 3,
          'liar': 3,
          'nthe': 3,
          'cant': 3,
          'lie': 3,
          'tries': 3,
          'sidesplitting': 2,
          'nbut': 2,
          'laughs': 2,
          'real': 2,
          'people': 2,
          'way': 2,
          'nthis': 2,
          'movies': 2,
          'carrey': 2,
          'nthere': 2,
          'son': 2,
          'right': 2,
          'away': 2,
          'may': 2,
          'carreys': 2,
          'birthday': 2,
          'wish': 2,
          'gets': 2,
          'office': 2,
          'hes': 2,
          'gotten': 2,
          'breaking': 2,
          'ask': 2,
          'climax': 2,
          'capsule': 1,
          'comedy': 1,
          'follows': 1,
          'merciless': 1,
          'logic': 1,
          'providing': 1,
          'deal': 1,
          'genuine': 1,
          'nmost': 1,
          'comedies': 1,
          'days': 1,
          'flaw': 1,
          'ntheyre': 1,
          'nthey': 1,
          'theyre': 1,
          'devoid': 1,
          'anything': 1,
          'really': 1,
          'penetrating': 1,
          'dastardly': 1,
          'noccasionally': 1,
          'sneaks': 1,
          'past': 1,
          'deadening': 1,
          'hollywood': 1,
          'preconceptions': 1,
          'humor': 1,
          'gem': 1,
          'ruthless': 1,
          'instance': 1,
          'established': 1,
          'microcosm': 1,
          'setup': 1,
          'played': 1,
          'bitter': 1,
          'nliar': 1,
          'built': 1,
          'ive': 1,
          'seen': 1,
          'laughing': 1,
          'consistently': 1,
          'instead': 1,
          'couple': 1,
          'setpieces': 1,
          'inspired': 1,
          'laugh': 1,
          'dismal': 1,
          'fatal': 1,
          'instinct': 1,
          'whole': 1,
          'works': 1,
          'clockwork': 1,
          'njim': 1,
          'playes': 1,
          'highpowered': 1,
          'lawyer': 1,
          'lying': 1,
          'natural': 1,
          'breathing': 1,
          'thing': 1,
          'takes': 1,
          'seriously': 1,
          'though': 1,
          'sense': 1,
          'affection': 1,
          'wife': 1,
          'divorced': 1,
          'seeing': 1,
          'another': 1,
          'man': 1,
          'looks': 1,
          'move': 1,
          'together': 1,
          'goes': 1,
          'course': 1,
          'sets': 1,
          'early': 1,
          'material': 1,
          'timing': 1,
          'remarkable': 1,
          'balance': 1,
          'jim': 1,
          'overthetop': 1,
          'persona': 1,
          'reality': 1,
          'nthen': 1,
          'plot': 1,
          'springs': 1,
          'action': 1,
          'snubbed': 1,
          'deliberately': 1,
          'father': 1,
          'kid': 1,
          'makes': 1,
          'blows': 1,
          'candles': 1,
          'day': 1,
          'dad': 1,
          'nwhat': 1,
          'happens': 1,
          'next': 1,
          'neverything': 1,
          'turns': 1,
          'confrontation': 1,
          'cornered': 1,
          'bum': 1,
          'change': 1,
          'shouts': 1,
          'nim': 1,
          'giving': 1,
          'money': 1,
          'know': 1,
          'youll': 1,
          'spend': 1,
          'booze': 1,
          'nall': 1,
          'want': 1,
          'step': 1,
          'debris': 1,
          'decaying': 1,
          'society': 1,
          'elevator': 1,
          'earning': 1,
          'black': 1,
          'eye': 1,
          'nand': 1,
          'whats': 1,
          'worse': 1,
          'expensive': 1,
          'divorce': 1,
          'settlement': 1,
          'requires': 1,
          'twist': 1,
          'truth': 1,
          'abstract': 1,
          'wire': 1,
          'sculpture': 1,
          'ncarrey': 1,
          'used': 1,
          'find': 1,
          'unfunny': 1,
          'better': 1,
          'schtick': 1,
          'limited': 1,
          'uses': 1,
          'great': 1,
          'effect': 1,
          'test': 1,
          'ability': 1,
          'nearly': 1,
          'demolishes': 1,
          'process': 1,
          'theres': 1,
          'grin': 1,
          'across': 1,
          'face': 1,
          'remembering': 1,
          'write': 1,
          'fingers': 1,
          'twitch': 1,
          'body': 1,
          'buckles': 1,
          'someone': 1,
          'throes': 1,
          'cyanide': 1,
          'poisoning': 1,
          'talk': 1,
          'speaking': 1,
          'tongues': 1,
          'nequally': 1,
          'beats': 1,
          'pulp': 1,
          'dont': 1,
          'drink': 1,
          'water': 1,
          'keep': 1,
          'outbursts': 1,
          'courtroom': 1,
          'fails': 1,
          'semipredictable': 1,
          'results': 1,
          'winds': 1,
          'biting': 1,
          'bullet': 1,
          'called': 1,
          'boardroom': 1,
          'everyone': 1,
          'alone': 1,
          'force': 1,
          'stop': 1,
          'tape': 1,
          'minutes': 1,
          'sustains': 1,
          'also': 1,
          'flashes': 1,
          'insight': 1,
          'na': 1,
          'shame': 1,
          'insists': 1,
          'big': 1,
          'ridiculous': 1,
          'involves': 1,
          'character': 1,
          'flagging': 1,
          'plane': 1,
          'using': 1,
          'set': 1,
          'motorized': 1,
          'stairs': 1,
          'leg': 1,
          'etc': 1,
          'simple': 1,
          'reconciliation': 1,
          'would': 1,
          'trick': 1,
          'nwhy': 1,
          'stupid': 1,
          'pentup': 1,
          'always': 1,
          'obligatory': 1,
          'nits': 1,
          'part': 1,
          'agenda': 1,
          'nthankfully': 1,
          'survives': 1,
          'nmaybe': 1,
          'merciful': 1,
          'reflection': 1,
          'nif': 1,
          'id': 1,
          'laughed': 1,
          'might': 1,
          'needed': 1,
          'iron': 1,
          'lung': 1,
          'npos': 1}),
 Counter({'story': 8,
          'hilary': 7,
          'jackie': 7,
          'year': 7,
          'two': 6,
          'watson': 6,
          'playing': 6,
          'film': 5,
          'relationship': 5,
          'real': 5,
          'griffiths': 5,
          'seen': 5,
          'sister': 5,
          'one': 5,
          'performance': 5,
          'movie': 4,
          'like': 4,
          'well': 4,
          'could': 4,
          'great': 4,
          'nit': 4,
          'emotional': 4,
          'jealous': 4,
          'time': 4,
          'thing': 3,
          'handled': 3,
          'respectively': 3,
          'brilliant': 3,
          'way': 3,
          'go': 3,
          'plot': 3,
          'point': 3,
          'makes': 3,
          'ms': 3,
          'sisters': 3,
          'nits': 3,
          'tells': 3,
          'nthe': 3,
          'best': 3,
          'begins': 3,
          'nwhen': 3,
          'famous': 3,
          'world': 3,
          'marry': 3,
          'shes': 3,
          'nshe': 3,
          'would': 3,
          'love': 3,
          'eachother': 3,
          'never': 3,
          'watsons': 3,
          'job': 3,
          'though': 3,
          'insane': 3,
          'actually': 3,
          'academy': 3,
          'loves': 3,
          'otherwise': 3,
          'maybe': 2,
          'fame': 2,
          'tearjerker': 2,
          'ever': 2,
          'told': 2,
          'cinematography': 2,
          'wonderful': 2,
          'sure': 2,
          'totally': 2,
          'run': 2,
          'doesnt': 2,
          'merely': 2,
          'goes': 2,
          'character': 2,
          'cellist': 2,
          'contracts': 2,
          'musicians': 2,
          'nin': 2,
          'short': 2,
          'really': 2,
          'something': 2,
          'theyre': 2,
          'emily': 2,
          'nthey': 2,
          'also': 2,
          'works': 2,
          'comeback': 2,
          'around': 2,
          'country': 2,
          'since': 2,
          'life': 2,
          'hopes': 2,
          'may': 2,
          'see': 2,
          'scene': 2,
          'surpasses': 2,
          'technical': 2,
          'hadnt': 2,
          'insanity': 2,
          'anyone': 2,
          'make': 2,
          'get': 2,
          'top': 2,
          'man': 2,
          'nand': 2,
          'three': 2,
          'easy': 2,
          'good': 2,
          'woman': 2,
          'together': 2,
          'holds': 2,
          'deal': 2,
          'emotions': 2,
          'much': 2,
          'nbut': 2,
          'nif': 2,
          'gets': 2,
          'already': 2,
          'things': 2,
          'absolutely': 2,
          'role': 2,
          'gotten': 2,
          'treatment': 2,
          'important': 1,
          'hallmark': 1,
          'hall': 1,
          'month': 1,
          'manipulative': 1,
          'broadcasted': 1,
          'abc': 1,
          'monday': 1,
          'night': 1,
          'starring': 1,
          'kelly': 1,
          'martin': 1,
          'yasmeen': 1,
          'bleeth': 1,
          'nbecause': 1,
          'greatest': 1,
          'precisely': 1,
          'nunderneath': 1,
          'todiefor': 1,
          'acting': 1,
          'incessantly': 1,
          'direction': 1,
          'modesty': 1,
          'whether': 1,
          'balls': 1,
          'tell': 1,
          'certain': 1,
          'original': 1,
          'obsesses': 1,
          'depth': 1,
          'style': 1,
          'worldreknowned': 1,
          'dies': 1,
          'prematurely': 1,
          'unique': 1,
          'center': 1,
          'transcend': 1,
          'cornball': 1,
          'shamelessly': 1,
          'tired': 1,
          'qualities': 1,
          'unlike': 1,
          'patch': 1,
          'adams': 1,
          'effortlessly': 1,
          'awesome': 1,
          'thats': 1,
          'commended': 1,
          'days': 1,
          'stories': 1,
          'botched': 1,
          'storytellers': 1,
          'ndirector': 1,
          'anand': 1,
          'tucker': 1,
          'nhe': 1,
          'overdramaticizes': 1,
          'everything': 1,
          'still': 1,
          'keeps': 1,
          'jacqueline': 1,
          'du': 1,
          'pr': 1,
          'rachel': 1,
          'first': 1,
          'childhood': 1,
          'played': 1,
          'auriol': 1,
          'evans': 1,
          'keely': 1,
          'flanders': 1,
          'friends': 1,
          'flutist': 1,
          'considered': 1,
          'child': 1,
          'prodigies': 1,
          'better': 1,
          'njackie': 1,
          'bit': 1,
          'skills': 1,
          'soon': 1,
          'tables': 1,
          'turned': 1,
          'hit': 1,
          'adulthood': 1,
          'strives': 1,
          'halls': 1,
          'instead': 1,
          'captures': 1,
          'heart': 1,
          'hapless': 1,
          'joyful': 1,
          'conductor': 1,
          'kiffer': 1,
          'finzi': 1,
          'david': 1,
          'morissey': 1,
          'semistarmaking': 1,
          'turn': 1,
          'courtship': 1,
          'move': 1,
          'lovely': 1,
          'house': 1,
          'making': 1,
          'incredibly': 1,
          'cello': 1,
          'becomes': 1,
          'symbol': 1,
          'current': 1,
          'plays': 1,
          'eyes': 1,
          'stops': 1,
          'alone': 1,
          'enters': 1,
          'shallow': 1,
          'equally': 1,
          'pianist': 1,
          'daniel': 1,
          'barenboim': 1,
          'james': 1,
          'frain': 1,
          'overcloud': 1,
          'eventually': 1,
          'lose': 1,
          'runs': 1,
          'away': 1,
          'hilarys': 1,
          'home': 1,
          'gain': 1,
          'admittance': 1,
          'sleep': 1,
          'husband': 1,
          'sleeps': 1,
          'gives': 1,
          'pleasure': 1,
          'terribly': 1,
          'melodramtic': 1,
          'contracted': 1,
          'brilliantly': 1,
          'edited': 1,
          'breakdown': 1,
          'semismiliar': 1,
          'shine': 1,
          'devastation': 1,
          'easily': 1,
          'call': 1,
          'sign': 1,
          'melodramatic': 1,
          'overload': 1,
          'key': 1,
          'gradual': 1,
          'death': 1,
          'slip': 1,
          'rather': 1,
          'tumultuous': 1,
          'might': 1,
          'add': 1,
          'perfectly': 1,
          'realized': 1,
          'ntheir': 1,
          'downtoearth': 1,
          'complex': 1,
          'entity': 1,
          'else': 1,
          'entire': 1,
          'completely': 1,
          'another': 1,
          'young': 1,
          'abilities': 1,
          'tries': 1,
          'vain': 1,
          'cant': 1,
          'almost': 1,
          'seems': 1,
          'back': 1,
          'success': 1,
          'lands': 1,
          'sees': 1,
          'lifestyle': 1,
          'extensive': 1,
          'brinks': 1,
          'ive': 1,
          'truly': 1,
          'dare': 1,
          'share': 1,
          'whole': 1,
          'doubted': 1,
          'even': 1,
          'tested': 1,
          'nanother': 1,
          'liked': 1,
          'ni': 1,
          'usually': 1,
          'note': 1,
          'overpraise': 1,
          'actor': 1,
          'either': 1,
          'drunkard': 1,
          'lunatic': 1,
          'someone': 1,
          'mortal': 1,
          'disease': 1,
          'combination': 1,
          'nmy': 1,
          'reasoning': 1,
          'fucking': 1,
          'worst': 1,
          'case': 1,
          'thandie': 1,
          'newton': 1,
          'beloved': 1,
          'whats': 1,
          'tough': 1,
          'stumbles': 1,
          'slurs': 1,
          'words': 1,
          'acts': 1,
          'old': 1,
          'inside': 1,
          '20year': 1,
          'olds': 1,
          'body': 1,
          'nhell': 1,
          'play': 1,
          'pair': 1,
          'breasts': 1,
          'exact': 1,
          'kimberly': 1,
          'elise': 1,
          'rock': 1,
          'family': 1,
          'mother': 1,
          'slowly': 1,
          'brothers': 1,
          'mothers': 1,
          'lover': 1,
          'scared': 1,
          'harder': 1,
          'mere': 1,
          'stumbling': 1,
          'arts': 1,
          'sciences': 1,
          'overpraising': 1,
          'performances': 1,
          'newtons': 1,
          'dont': 1,
          'believe': 1,
          'look': 1,
          'jack': 1,
          'nicholsons': 1,
          'nthis': 1,
          'isnt': 1,
          'comes': 1,
          'thanks': 1,
          'opening': 1,
          'sequence': 1,
          'kids': 1,
          'understand': 1,
          'motives': 1,
          'behind': 1,
          'actions': 1,
          'loose': 1,
          'sanity': 1,
          'weve': 1,
          'understood': 1,
          'last': 1,
          'straw': 1,
          'plagued': 1,
          'terrible': 1,
          'neuroses': 1,
          'nrachel': 1,
          'understudy': 1,
          'protagonist': 1,
          'matches': 1,
          'stepforstep': 1,
          'grows': 1,
          'demands': 1,
          'unspeakable': 1,
          'able': 1,
          'give': 1,
          'needs': 1,
          'help': 1,
          'ngriffiths': 1,
          'unknown': 1,
          'actress': 1,
          'breaking': 1,
          'waves': 1,
          'boxer': 1,
          'critics': 1,
          'groups': 1,
          'whove': 1,
          'deemed': 1,
          'glance': 1,
          'read': 1,
          'boring': 1,
          'scream': 1,
          'hysteria': 1,
          'hear': 1,
          'nafter': 1,
          'thankless': 1,
          'keeping': 1,
          'tom': 1,
          'cruise': 1,
          'rainman': 1,
          'oscar': 1,
          'consideration': 1,
          'hoffman': 1,
          'deserves': 1,
          'accolades': 1,
          'ntogether': 1,
          'actresses': 1,
          'work': 1,
          'extremely': 1,
          'deep': 1,
          'hell': 1,
          'likes': 1,
          'havent': 1,
          'nottotallygreat': 1,
          'final': 1,
          'section': 1,
          'deals': 1,
          'enough': 1,
          'equal': 1,
          'entirety': 1,
          'id': 1,
          'say': 1,
          'ten': 1,
          'films': 1,
          'close': 1,
          'perfection': 1,
          'structure': 1,
          'subject': 1,
          'beautiful': 1,
          'specifications': 1,
          'nomination': 1,
          'without': 1,
          'shred': 1,
          'doubt': 1,
          'mind': 1,
          'editing': 1,
          'nearly': 1,
          'shame': 1,
          'flawless': 1,
          'gem': 1,
          'hey': 1,
          'hardly': 1,
          'complain': 1,
          'npos': 1}),
 Counter({'hanks': 12,
          'ryan': 11,
          'really': 9,
          'movie': 8,
          'well': 8,
          'meg': 6,
          'tom': 5,
          'films': 5,
          'going': 5,
          'one': 5,
          'romantic': 4,
          'ni': 4,
          'also': 4,
          'think': 4,
          'nthey': 4,
          'wonderful': 4,
          'like': 4,
          'best': 4,
          'get': 4,
          'great': 4,
          'know': 4,
          'sweet': 4,
          'see': 4,
          'nits': 4,
          'always': 4,
          'comedy': 3,
          'commercial': 3,
          'work': 3,
          'hes': 3,
          'obnoxious': 3,
          'idea': 3,
          'dont': 3,
          'nbut': 3,
          'nshe': 3,
          'nhanks': 3,
          'ephron': 3,
          'years': 3,
          'nyou': 3,
          'kathleen': 3,
          'two': 3,
          'romance': 3,
          'nit': 3,
          'nthe': 3,
          'made': 3,
          'aware': 2,
          'last': 2,
          'nand': 2,
          'wonder': 2,
          'long': 2,
          'watch': 2,
          'act': 2,
          'glorious': 2,
          'saving': 2,
          'private': 2,
          'ntom': 2,
          'girl': 2,
          'question': 2,
          'americas': 2,
          'including': 2,
          'scene': 2,
          'shes': 2,
          'perky': 2,
          'together': 2,
          'onscreen': 2,
          'back': 2,
          'classic': 2,
          'nall': 2,
          'even': 2,
          'cute': 2,
          'charming': 2,
          'little': 2,
          'kelly': 2,
          'childrens': 2,
          'kinnear': 2,
          'affair': 2,
          'fox': 2,
          'bookseller': 2,
          'run': 2,
          'father': 2,
          'right': 2,
          'named': 2,
          'around': 2,
          'immense': 2,
          'troubles': 2,
          'kiss': 2,
          'kids': 2,
          'good': 2,
          'still': 2,
          'pure': 2,
          'script': 2,
          'third': 2,
          'slow': 2,
          'big': 2,
          'home': 2,
          'nice': 2,
          'smile': 2,
          'movies': 2,
          'powerful': 2,
          'thought': 2,
          'something': 2,
          'thinking': 2,
          'behind': 2,
          'write': 1,
          'review': 1,
          'new': 1,
          'hanksryan': 1,
          'youve': 1,
          'got': 1,
          'mail': 1,
          'acutely': 1,
          'typing': 1,
          'computer': 1,
          'sending': 1,
          'billion': 1,
          'miles': 1,
          'away': 1,
          'internet': 1,
          'spent': 1,
          '2': 1,
          'hours': 1,
          'watching': 1,
          'worlds': 1,
          'biggest': 1,
          'paid': 1,
          'america': 1,
          'online': 1,
          'bad': 1,
          'nwell': 1,
          'part': 1,
          'nas': 1,
          'ill': 1,
          'okay': 1,
          'nto': 1,
          'paraphrase': 1,
          'james': 1,
          'berardinelli': 1,
          'whose': 1,
          'reviews': 1,
          'admire': 1,
          'much': 1,
          'serious': 1,
          'magnificent': 1,
          'performance': 1,
          'triumph': 1,
          'philadelphia': 1,
          'suitably': 1,
          'nmeg': 1,
          'high': 1,
          'school': 1,
          'sweetheart': 1,
          'nshes': 1,
          'handful': 1,
          'memorable': 1,
          'performances': 1,
          'diner': 1,
          'harry': 1,
          'met': 1,
          'sally': 1,
          'must': 1,
          'mention': 1,
          'due': 1,
          'um': 1,
          'fantastic': 1,
          'adorably': 1,
          'perkycute': 1,
          'amazing': 1,
          'duo': 1,
          'short': 1,
          'lifetime': 1,
          'nsome': 1,
          'people': 1,
          'old': 1,
          'couples': 1,
          'wonderfully': 1,
          'kinetic': 1,
          'chemistry': 1,
          'thats': 1,
          'hard': 1,
          'resist': 1,
          'im': 1,
          'try': 1,
          'ntheyre': 1,
          'collaborate': 1,
          'nora': 1,
          'directed': 1,
          'megahit': 1,
          'sleepless': 1,
          'seattle': 1,
          'nhere': 1,
          'setup': 1,
          'different': 1,
          'nkathleen': 1,
          'owns': 1,
          'small': 1,
          'bookstore': 1,
          'mother': 1,
          'founded': 1,
          '42': 1,
          'ago': 1,
          'passed': 1,
          'successful': 1,
          'beautiful': 1,
          'dates': 1,
          'wellknown': 1,
          'columnist': 1,
          'radical': 1,
          'sorts': 1,
          'handle': 1,
          'shopgirl': 1,
          'secretly': 1,
          'emailing': 1,
          'ny152': 1,
          'strictly': 1,
          'undetailed': 1,
          'relationship': 1,
          'specifics': 1,
          'nny152': 1,
          'happens': 1,
          'joe': 1,
          'multimillionaire': 1,
          'heir': 1,
          'fortune': 1,
          'chain': 1,
          'megabookstores': 1,
          'coleman': 1,
          'nfox': 1,
          'books': 1,
          'decided': 1,
          'open': 1,
          'store': 1,
          'west': 1,
          'side': 1,
          'across': 1,
          'shop': 1,
          'corner': 1,
          'nevery': 1,
          'morning': 1,
          'email': 1,
          'silly': 1,
          'every': 1,
          'day': 1,
          'fight': 1,
          'death': 1,
          'premise': 1,
          'works': 1,
          'nicely': 1,
          'balancing': 1,
          'wants': 1,
          'sense': 1,
          'lets': 1,
          'sex': 1,
          'tonight': 1,
          'mantra': 1,
          'youll': 1,
          'excuse': 1,
          'bluntness': 1,
          'nthis': 1,
          'solid': 1,
          'built': 1,
          'vague': 1,
          'concept': 1,
          'love': 1,
          'nhmm': 1,
          'goes': 1,
          'twists': 1,
          'turns': 1,
          'sad': 1,
          'moments': 1,
          'happy': 1,
          'ones': 1,
          'moment': 1,
          'hook': 1,
          'use': 1,
          'modern': 1,
          'terminology': 1,
          'way': 1,
          'happiness': 1,
          'happen': 1,
          'nthankfully': 1,
          'supporting': 1,
          'cast': 1,
          'posey': 1,
          'chappelle': 1,
          'host': 1,
          'others': 1,
          'involving': 1,
          'brothers': 1,
          'aunts': 1,
          'idealism': 1,
          'makes': 1,
          'feel': 1,
          'ever': 1,
          'outside': 1,
          'warm': 1,
          'inside': 1,
          'nhe': 1,
          'believe': 1,
          'greatest': 1,
          'actor': 1,
          'ndoes': 1,
          'show': 1,
          'nnah': 1,
          'nwhich': 1,
          'boils': 1,
          'confection': 1,
          'bits': 1,
          'godfather': 1,
          'jokes': 1,
          'superb': 1,
          'nthere': 1,
          'flaws': 1,
          'pacing': 1,
          'doesnt': 1,
          'would': 1,
          'liked': 1,
          'nonce': 1,
          'knows': 1,
          'secret': 1,
          'gets': 1,
          'looked': 1,
          'couple': 1,
          'times': 1,
          'make': 1,
          'sure': 1,
          'deliver': 1,
          'waiting': 1,
          'could': 1,
          'reasonable': 1,
          'hour': 1,
          'problem': 1,
          'shaping': 1,
          'dated': 1,
          'nemail': 1,
          'nwhen': 1,
          'age': 1,
          'using': 1,
          'eyeroll': 1,
          'anybody': 1,
          'loves': 1,
          'dive': 1,
          'pillow': 1,
          'better': 1,
          'anyone': 1,
          'history': 1,
          'gives': 1,
          'helps': 1,
          'lines': 1,
          'absolutely': 1,
          'hilarious': 1,
          'come': 1,
          'exact': 1,
          'time': 1,
          'keep': 1,
          'audience': 1,
          'awake': 1,
          'arguing': 1,
          'drive': 1,
          'purpose': 1,
          'nive': 1,
          'believed': 1,
          'indeed': 1,
          'mankind': 1,
          'three': 1,
          'abilities': 1,
          'needs': 1,
          'survive': 1,
          'ability': 1,
          'entertain': 1,
          'procreate': 1,
          'nmovies': 1,
          'definitely': 1,
          'first': 1,
          'id': 1,
          'rather': 1,
          'enlightened': 1,
          'another': 1,
          'viewpoint': 1,
          'entertained': 1,
          'forgot': 1,
          'night': 1,
          'incredible': 1,
          'year': 1,
          'driving': 1,
          'force': 1,
          'truly': 1,
          'someone': 1,
          'world': 1,
          'nhes': 1,
          'half': 1,
          'glue': 1,
          'example': 1,
          'entertainment': 1,
          'magical': 1,
          'lovely': 1,
          'technology': 1,
          'twist': 1,
          'may': 1,
          'gave': 1,
          'pretty': 1,
          'face': 1,
          'npos': 1}),
 Counter({'erin': 10,
          'life': 7,
          'nthe': 7,
          'fate': 4,
          'alan': 4,
          'movie': 4,
          'film': 3,
          'two': 3,
          'yet': 3,
          'relationship': 3,
          'hes': 3,
          'anderson': 2,
          'next': 2,
          'stop': 2,
          'wonderland': 2,
          'characters': 2,
          'carry': 2,
          'ending': 2,
          'boyfriend': 2,
          'nits': 2,
          'without': 2,
          'ad': 2,
          'erins': 2,
          'makes': 2,
          'glass': 2,
          'fish': 2,
          'boston': 2,
          'aquarium': 2,
          'window': 2,
          'gaze': 2,
          'see': 2,
          'away': 2,
          'attempts': 2,
          'get': 2,
          'track': 2,
          'guy': 2,
          'much': 2,
          'wait': 2,
          'meet': 2,
          'possible': 2,
          'films': 2,
          'victims': 1,
          'create': 1,
          'destiny': 1,
          'ndirectorwriter': 1,
          'brad': 1,
          'seems': 1,
          'saying': 1,
          'yes': 1,
          'questions': 1,
          'witty': 1,
          'main': 1,
          'spend': 1,
          'entire': 1,
          'others': 1,
          'orbit': 1,
          'catching': 1,
          'glimpses': 1,
          'one': 1,
          'another': 1,
          'quite': 1,
          'connecting': 1,
          'inevitable': 1,
          'conclusion': 1,
          'nis': 1,
          'keeps': 1,
          'near': 1,
          'ultimately': 1,
          'puts': 1,
          'together': 1,
          'ndoes': 1,
          'predestination': 1,
          'aspects': 1,
          'nas': 1,
          'starts': 1,
          'castleton': 1,
          'hope': 1,
          'davis': 1,
          'melancholy': 1,
          '29': 1,
          'year': 1,
          'old': 1,
          'late': 1,
          'shift': 1,
          'nurse': 1,
          'livein': 1,
          'hoffman': 1,
          'nrather': 1,
          'narriving': 1,
          'home': 1,
          'work': 1,
          'finds': 1,
          'parked': 1,
          'front': 1,
          'apartment': 1,
          'car': 1,
          'packed': 1,
          'belongings': 1,
          'nin': 1,
          'fumbling': 1,
          'amusing': 1,
          'self': 1,
          'deluding': 1,
          'ramble': 1,
          'instructs': 1,
          'watch': 1,
          'videotape': 1,
          'made': 1,
          'detailing': 1,
          'doomed': 1,
          'fail': 1,
          'leaving': 1,
          'obvious': 1,
          'lacks': 1,
          'courage': 1,
          'confront': 1,
          'directly': 1,
          'rails': 1,
          'accomplishing': 1,
          'something': 1,
          'taking': 1,
          'stand': 1,
          'backpedaling': 1,
          'way': 1,
          'nhe': 1,
          'flees': 1,
          'scene': 1,
          'grace': 1,
          'inept': 1,
          'thief': 1,
          'nerins': 1,
          'mother': 1,
          'holland': 1,
          'taylor': 1,
          'surprisingly': 1,
          'effective': 1,
          'small': 1,
          'role': 1,
          'fearing': 1,
          'daughter': 1,
          'man': 1,
          'takes': 1,
          'personal': 1,
          'nto': 1,
          'embarrassed': 1,
          'horror': 1,
          'describes': 1,
          'frisky': 1,
          'cultured': 1,
          'carefree': 1,
          'professional': 1,
          'zest': 1,
          'neventually': 1,
          'responds': 1,
          'tidal': 1,
          'wave': 1,
          'responses': 1,
          'humorous': 1,
          'telling': 1,
          'moments': 1,
          'meets': 1,
          'prospective': 1,
          'suitors': 1,
          'poseurs': 1,
          'nalan': 1,
          'plumber': 1,
          'aspiring': 1,
          'marine': 1,
          'biologist': 1,
          'first': 1,
          'spots': 1,
          'cleaning': 1,
          'inside': 1,
          'tank': 1,
          'nwearing': 1,
          'wet': 1,
          'suit': 1,
          'goggles': 1,
          'follows': 1,
          'separated': 1,
          'oblivious': 1,
          'enjoys': 1,
          'nlater': 1,
          'train': 1,
          'sits': 1,
          'platform': 1,
          'outside': 1,
          'mere': 1,
          'feet': 1,
          'spends': 1,
          'entirety': 1,
          'paths': 1,
          'circle': 1,
          'crossing': 1,
          'nthere': 1,
          'several': 1,
          'subplots': 1,
          'involving': 1,
          'none': 1,
          'concerns': 1,
          'job': 1,
          'thereby': 1,
          'escaping': 1,
          'apparent': 1,
          'family': 1,
          'plumbing': 1,
          'business': 1,
          'nanother': 1,
          'subplot': 1,
          'involves': 1,
          'fathers': 1,
          'desperate': 1,
          'force': 1,
          'fates': 1,
          'hand': 1,
          'gambling': 1,
          'dog': 1,
          'na': 1,
          'distracting': 1,
          'focus': 1,
          'put': 1,
          'alans': 1,
          'debt': 1,
          'loan': 1,
          'shark': 1,
          'manner': 1,
          'pays': 1,
          'tries': 1,
          'hard': 1,
          'make': 1,
          'likable': 1,
          'nthankfully': 1,
          'dream': 1,
          'persona': 1,
          'counterbalanced': 1,
          'distant': 1,
          'fundamentally': 1,
          'hopeful': 1,
          'personality': 1,
          'moves': 1,
          'along': 1,
          'unhurried': 1,
          'pace': 1,
          'albeit': 1,
          'latter': 1,
          'third': 1,
          'ncowriters': 1,
          'lyn': 1,
          'vaus': 1,
          'throw': 1,
          'couple': 1,
          'red': 1,
          'herrings': 1,
          'mix': 1,
          'find': 1,
          'relationships': 1,
          'shifts': 1,
          'slower': 1,
          'gear': 1,
          'romances': 1,
          'blow': 1,
          'nwhen': 1,
          'eventually': 1,
          'perhaps': 1,
          'destined': 1,
          'share': 1,
          'lingering': 1,
          'almost': 1,
          'subliminally': 1,
          'knowing': 1,
          'sweet': 1,
          'measured': 1,
          'moment': 1,
          'disappointment': 1,
          'comes': 1,
          'fact': 1,
          'weve': 1,
          'come': 1,
          'know': 1,
          'pair': 1,
          'dont': 1,
          'view': 1,
          'impending': 1,
          'romance': 1,
          'inherent': 1,
          'belief': 1,
          'subtle': 1,
          'persistence': 1,
          'wonder': 1,
          'bring': 1,
          'ones': 1,
          'quiet': 1,
          'pleasure': 1,
          'cinematic': 1,
          'landscape': 1,
          'littered': 1,
          'explosions': 1,
          'shallow': 1,
          'overdone': 1,
          'special': 1,
          'effects': 1,
          'npos': 1}),
 Counter({'alien': 14,
          'film': 12,
          'like': 9,
          'ripley': 8,
          'one': 7,
          'good': 6,
          'ship': 6,
          'really': 6,
          'nthe': 6,
          'scene': 6,
          'series': 5,
          'first': 5,
          'n': 5,
          'get': 5,
          'well': 5,
          'im': 4,
          'nof': 4,
          'course': 4,
          'much': 4,
          'two': 4,
          'although': 4,
          'nand': 4,
          'aliens': 4,
          'saga': 3,
          'amazing': 3,
          'never': 3,
          'style': 3,
          'inside': 3,
          'little': 3,
          'bad': 3,
          'including': 3,
          'might': 3,
          'bit': 3,
          'since': 3,
          'theres': 3,
          'tense': 3,
          'cool': 3,
          'scenes': 3,
          'takes': 3,
          'entire': 3,
          'nbut': 3,
          'best': 3,
          'review': 2,
          'doesnt': 2,
          'resurrection': 2,
          'nhowever': 2,
          'yet': 2,
          'another': 2,
          'years': 2,
          'last': 2,
          'sigourney': 2,
          'weaver': 2,
          'wasnt': 2,
          'great': 2,
          'anything': 2,
          'nso': 2,
          'back': 2,
          'thing': 2,
          'shes': 2,
          'cloned': 2,
          'even': 2,
          'dr': 2,
          'played': 2,
          'none': 2,
          'still': 2,
          'past': 2,
          'blood': 2,
          'third': 2,
          'films': 2,
          'ron': 2,
          'perlman': 2,
          'jeunet': 2,
          'ryder': 2,
          'call': 2,
          'turns': 2,
          'relationship': 2,
          'escape': 2,
          'around': 2,
          'pretty': 2,
          'away': 2,
          'people': 2,
          'dan': 2,
          'hedaya': 2,
          '8': 2,
          'towards': 2,
          'old': 2,
          'interesting': 2,
          'stylistically': 2,
          'piece': 2,
          'kind': 2,
          'filled': 2,
          'humor': 2,
          'scares': 2,
          'usual': 2,
          'surgery': 2,
          'afterwards': 2,
          'place': 2,
          'awesome': 2,
          'thrilling': 2,
          'allusion': 2,
          'lot': 2,
          'entertaining': 2,
          'part': 2,
          'avid': 1,
          'fan': 1,
          'obviously': 1,
          'tad': 1,
          'biased': 1,
          'least': 1,
          'admitted': 1,
          'mean': 1,
          'gon': 1,
          'na': 1,
          'giving': 1,
          'fourstar': 1,
          'something': 1,
          'fourth': 1,
          'coolashell': 1,
          'absolutely': 1,
          'fails': 1,
          'entertain': 1,
          'consists': 1,
          'mutation': 1,
          'nin': 1,
          'short': 1,
          'time': 1,
          'leaves': 1,
          '200': 1,
          'heroine': 1,
          'protagonist': 1,
          'ellen': 1,
          'science': 1,
          'fiction': 1,
          'genres': 1,
          'answer': 1,
          'job': 1,
          'killed': 1,
          'discovering': 1,
          'body': 1,
          'waiting': 1,
          'pop': 1,
          'john': 1,
          'hurt': 1,
          'liked': 1,
          'though': 1,
          'importantly': 1,
          'financially': 1,
          'successful': 1,
          'tawdry': 1,
          '55': 1,
          'million': 1,
          'bucks': 1,
          'clone': 1,
          'means': 1,
          'satirical': 1,
          'look': 1,
          'cloning': 1,
          'thats': 1,
          'becoming': 1,
          'cliche': 1,
          'aboard': 1,
          'futuristiclooking': 1,
          'called': 1,
          'auriga': 1,
          'doctors': 1,
          'necessary': 1,
          'government': 1,
          'guy': 1,
          'wren': 1,
          'j': 1,
          'e': 1,
          'freeman': 1,
          'littleseen': 1,
          'gediman': 1,
          'brad': 1,
          'douriff': 1,
          'mainly': 1,
          'version': 1,
          'nonce': 1,
          'fact': 1,
          'cant': 1,
          'figure': 1,
          'got': 1,
          'think': 1,
          'samples': 1,
          'taken': 1,
          'charles': 1,
          'dance': 1,
          'okay': 1,
          'nalso': 1,
          'board': 1,
          'band': 1,
          'mercenary': 1,
          'pirates': 1,
          'michael': 1,
          'wincott': 1,
          'kim': 1,
          'flowers': 1,
          'raymond': 1,
          'cruz': 1,
          'dominique': 1,
          'pinon': 1,
          'sytable': 1,
          'winona': 1,
          'plays': 1,
          'analee': 1,
          'secret': 1,
          'wont': 1,
          'state': 1,
          'unless': 1,
          'youve': 1,
          'shacking': 1,
          'salinger': 1,
          'probably': 1,
          'know': 1,
          'nicely': 1,
          'covered': 1,
          'ntheres': 1,
          'nonsexualyetslightlyhomoerotic': 1,
          'deepened': 1,
          'enough': 1,
          'noh': 1,
          'nwell': 1,
          'guessed': 1,
          'spawn': 1,
          'run': 1,
          'shocks': 1,
          'instance': 1,
          'whos': 1,
          'death': 1,
          'comical': 1,
          'sad': 1,
          'hes': 1,
          'remaining': 1,
          '7': 1,
          'left': 1,
          'try': 1,
          'stop': 1,
          'major': 1,
          'harm': 1,
          'heading': 1,
          'quickly': 1,
          'earth': 1,
          'plot': 1,
          'balderdash': 1,
          'excuse': 1,
          'brand': 1,
          'fun': 1,
          'real': 1,
          'focus': 1,
          'seems': 1,
          'substance': 1,
          'always': 1,
          'notably': 1,
          'girl': 1,
          'nwhats': 1,
          'different': 1,
          'approach': 1,
          'claustrophobic': 1,
          'exercise': 1,
          'quiet': 1,
          'frights': 1,
          'wild': 1,
          'thriller': 1,
          '3': 1,
          'bleak': 1,
          'moody': 1,
          'seminoir': 1,
          '4': 1,
          'offbeat': 1,
          'french': 1,
          'lots': 1,
          'njeanpierre': 1,
          'without': 1,
          'directing': 1,
          'partner': 1,
          'marc': 1,
          'caro': 1,
          'creates': 1,
          'das': 1,
          'boot': 1,
          'echoes': 1,
          'hinting': 1,
          'possible': 1,
          'threat': 1,
          'chills': 1,
          'especially': 1,
          'music': 1,
          'sometimes': 1,
          'turned': 1,
          'completely': 1,
          'certain': 1,
          'faceoff': 1,
          'beginning': 1,
          'every': 1,
          'chill': 1,
          'bloody': 1,
          'mess': 1,
          'nthis': 1,
          'combined': 1,
          'makes': 1,
          'visually': 1,
          'others': 1,
          'nthere': 1,
          'couple': 1,
          'stick': 1,
          'brilliantly': 1,
          'executed': 1,
          'aforementioned': 1,
          'nanother': 1,
          'underwater': 1,
          'chase': 1,
          'ladder': 1,
          'jawdropping': 1,
          'small': 1,
          'jeunets': 1,
          'earlier': 1,
          'delicatessen': 1,
          'way': 1,
          'final': 1,
          'hysterically': 1,
          'lovely': 1,
          'goldfinger': 1,
          'sure': 1,
          'mention': 1,
          'sees': 1,
          'variations': 1,
          'tatooed': 1,
          'arm': 1,
          'nit': 1,
          'emotionally': 1,
          'stimulating': 1,
          'screenplay': 1,
          'joss': 1,
          'whedon': 1,
          'work': 1,
          'deapens': 1,
          'characters': 1,
          'make': 1,
          'us': 1,
          'care': 1,
          'looks': 1,
          'may': 1,
          'become': 1,
          'chow': 1,
          'scared': 1,
          'yeah': 1,
          'funny': 1,
          'lines': 1,
          'fuck': 1,
          'boat': 1,
          'njohner': 1,
          'acting': 1,
          'standout': 1,
          'performances': 1,
          'male': 1,
          'chauvenist': 1,
          'pig': 1,
          'johner': 1,
          'leland': 1,
          'orser': 1,
          'poor': 1,
          'bastad': 1,
          'se7en': 1,
          'performed': 1,
          'lust': 1,
          'sin': 1,
          'anxietyridden': 1,
          'wannabe': 1,
          'woody': 1,
          'allen': 1,
          'nwinona': 1,
          'usually': 1,
          'meshes': 1,
          'steals': 1,
          'show': 1,
          'nplaying': 1,
          'variation': 1,
          'character': 1,
          'less': 1,
          'emotional': 1,
          'rude': 1,
          'bitter': 1,
          'pulls': 1,
          'utterly': 1,
          'lovable': 1,
          'nshes': 1,
          'going': 1,
          'oscar': 1,
          'nomination': 1,
          'noverall': 1,
          'amaze': 1,
          'installment': 1,
          'isnt': 1,
          'depth': 1,
          'occasionally': 1,
          'tries': 1,
          'apply': 1,
          'hell': 1,
          'definitely': 1,
          'fit': 1,
          'npos': 1}),
 Counter({'rock': 13,
          'film': 12,
          'really': 11,
          'era': 11,
          'nthe': 10,
          'like': 10,
          'slade': 10,
          'glam': 9,
          'one': 7,
          'movement': 7,
          'wild': 7,
          'story': 6,
          'music': 6,
          'sequence': 5,
          'else': 5,
          'thats': 5,
          'part': 5,
          'brian': 5,
          'meyers': 5,
          'rather': 5,
          'life': 4,
          'haynes': 4,
          'kane': 4,
          'stuart': 4,
          'totally': 4,
          'flashbacks': 4,
          'beginning': 4,
          'bitter': 4,
          'doesnt': 4,
          'scenes': 4,
          'world': 4,
          'way': 4,
          'much': 4,
          'seems': 4,
          'rhys': 4,
          'mcgregor': 4,
          'slades': 4,
          'first': 4,
          'may': 3,
          'everyone': 3,
          'result': 3,
          'career': 3,
          '70s': 3,
          'similar': 3,
          'end': 3,
          'nin': 3,
          'bale': 3,
          'death': 3,
          'engaging': 3,
          'though': 3,
          'everything': 3,
          'merely': 3,
          'played': 3,
          'finally': 3,
          'record': 3,
          'scene': 3,
          'hes': 3,
          'visual': 3,
          'concert': 3,
          'nit': 3,
          'especially': 3,
          'characters': 3,
          'good': 3,
          'manager': 3,
          'moments': 3,
          'point': 3,
          'seem': 2,
          'green': 2,
          'see': 2,
          'perhaps': 2,
          'half': 2,
          'philosophy': 2,
          'true': 2,
          'following': 2,
          'sexuality': 2,
          'less': 2,
          'nand': 2,
          'seemed': 2,
          'began': 2,
          'nits': 2,
          'velvet': 2,
          'goldmine': 2,
          'experienced': 2,
          'created': 2,
          'steals': 2,
          'lot': 2,
          'british': 2,
          'journalist': 2,
          '80s': 2,
          'arthur': 2,
          'back': 2,
          'happened': 2,
          'star': 2,
          'fictitious': 2,
          'entire': 2,
          'people': 2,
          'exwife': 2,
          'found': 2,
          'nthis': 2,
          'ninstead': 2,
          'contrast': 2,
          'cinematography': 2,
          'symbol': 2,
          'tale': 2,
          'youve': 2,
          'nhaynes': 2,
          'brought': 2,
          'anarchic': 2,
          'persona': 2,
          'maxwell': 2,
          'demon': 2,
          'well': 2,
          'partners': 2,
          'michael': 2,
          'feast': 2,
          'collette': 2,
          'fakes': 2,
          'experiences': 2,
          'including': 2,
          'moment': 2,
          'naked': 2,
          'lying': 2,
          'away': 2,
          'quite': 2,
          'long': 2,
          'eno': 2,
          'party': 2,
          'films': 2,
          'band': 2,
          'discovers': 2,
          'major': 2,
          'camp': 2,
          'middle': 2,
          'actual': 2,
          'real': 2,
          'eye': 2,
          'background': 2,
          'put': 2,
          'ending': 2,
          'comes': 2,
          'style': 2,
          'creates': 2,
          'using': 2,
          'wall': 2,
          'extremely': 2,
          'character': 2,
          'sell': 2,
          'personal': 2,
          'never': 2,
          'piece': 2,
          'everyman': 2,
          'great': 2,
          'could': 2,
          'right': 2,
          'lived': 2,
          'live': 2,
          'weird': 1,
          'begin': 1,
          'includes': 1,
          'spaceship': 1,
          'ovular': 1,
          'pin': 1,
          'birth': 1,
          'oscar': 1,
          'wilde': 1,
          'strains': 1,
          'maybe': 1,
          'connections': 1,
          'nwildes': 1,
          'human': 1,
          'nature': 1,
          'imprisoned': 1,
          'loosing': 1,
          'family': 1,
          'early': 1,
          'england': 1,
          'take': 1,
          'came': 1,
          'demise': 1,
          'main': 1,
          'difference': 1,
          'placing': 1,
          'makeup': 1,
          'face': 1,
          'acting': 1,
          'deepest': 1,
          'fantasies': 1,
          'inquiries': 1,
          'mostly': 1,
          'dealing': 1,
          'androgony': 1,
          'became': 1,
          'soon': 1,
          'said': 1,
          'todd': 1,
          'chronicles': 1,
          'citizen': 1,
          'christian': 1,
          'asked': 1,
          'go': 1,
          'find': 1,
          'faked': 1,
          'stage': 1,
          'bringing': 1,
          'nstructurewise': 1,
          'setup': 1,
          'interviews': 1,
          'three': 1,
          'things': 1,
          'newsreel': 1,
          'smaller': 1,
          'details': 1,
          'exfriend': 1,
          'wheelchair': 1,
          'washedup': 1,
          'lounge': 1,
          'singer': 1,
          'bar': 1,
          'hours': 1,
          'aspire': 1,
          'attempt': 1,
          'deep': 1,
          'outlook': 1,
          'something': 1,
          'gone': 1,
          'uncover': 1,
          'anything': 1,
          'poignant': 1,
          'humanity': 1,
          'uses': 1,
          'form': 1,
          'magic': 1,
          'boredom': 1,
          'participants': 1,
          'dry': 1,
          'deliriously': 1,
          'melancholy': 1,
          'equipped': 1,
          'performance': 1,
          'appropriately': 1,
          'dull': 1,
          'unengaging': 1,
          'nbut': 1,
          'mention': 1,
          'addictively': 1,
          'campy': 1,
          'nthey': 1,
          'radiate': 1,
          'gorgeous': 1,
          'nicely': 1,
          'accentuates': 1,
          'vibrant': 1,
          'colors': 1,
          'feel': 1,
          'eerily': 1,
          'lighthearted': 1,
          'combined': 1,
          'thenfootage': 1,
          'become': 1,
          'decadence': 1,
          'times': 1,
          'simple': 1,
          'creating': 1,
          'paints': 1,
          'narcotic': 1,
          'fairy': 1,
          'full': 1,
          'freedom': 1,
          'liberation': 1,
          'mundane': 1,
          'ntheres': 1,
          'outside': 1,
          'speak': 1,
          'secluding': 1,
          'inside': 1,
          'protective': 1,
          'globe': 1,
          'eventually': 1,
          'crack': 1,
          'focuses': 1,
          'blade': 1,
          'hero': 1,
          'curt': 1,
          'relationship': 1,
          'molded': 1,
          'reducing': 1,
          'contributed': 1,
          'contributors': 1,
          'nblade': 1,
          'reserve': 1,
          'pouty': 1,
          'jonathan': 1,
          'wildness': 1,
          'ewan': 1,
          'little': 1,
          'thinly': 1,
          'disguised': 1,
          'recreations': 1,
          'david': 1,
          'bowie': 1,
          'iggy': 1,
          'pop': 1,
          'respectively': 1,
          'complete': 1,
          'creation': 1,
          'ziggy': 1,
          'stardust': 1,
          'named': 1,
          'confirmation': 1,
          'two': 1,
          'stars': 1,
          'onetime': 1,
          'also': 1,
          'bed': 1,
          'nthrough': 1,
          'discussions': 1,
          'exmanager': 1,
          'cecil': 1,
          'mandy': 1,
          'toni': 1,
          'reinventing': 1,
          'american': 1,
          'blonde': 1,
          'dish': 1,
          'accent': 1,
          'expartner': 1,
          'begins': 1,
          'remember': 1,
          'discovery': 1,
          'rebelliousness': 1,
          'cum': 1,
          'conformity': 1,
          'questioning': 1,
          'opens': 1,
          'finds': 1,
          'crimson': 1,
          'blanket': 1,
          'running': 1,
          'home': 1,
          'london': 1,
          'resulting': 1,
          'leading': 1,
          'boring': 1,
          'job': 1,
          'america': 1,
          'demonstrates': 1,
          'auteur': 1,
          'molding': 1,
          'heald': 1,
          'breaths': 1,
          'seemingly': 1,
          'juxtaposing': 1,
          'sladewild': 1,
          'performing': 1,
          'cover': 1,
          'babys': 1,
          'fire': 1,
          'decadent': 1,
          'drug': 1,
          'wowinspiring': 1,
          'ratttz': 1,
          'lets': 1,
          'loose': 1,
          'steam': 1,
          'iggyesuqe': 1,
          'movements': 1,
          'stripping': 1,
          'screams': 1,
          'captures': 1,
          'perfect': 1,
          'talent': 1,
          'another': 1,
          'idle': 1,
          'neven': 1,
          'brief': 1,
          'videos': 1,
          'spoofs': 1,
          'bowies': 1,
          'rare': 1,
          'flair': 1,
          'pure': 1,
          'would': 1,
          'cause': 1,
          'ken': 1,
          'russell': 1,
          'drool': 1,
          'best': 1,
          'prelude': 1,
          'acts': 1,
          'ground': 1,
          'postmovement': 1,
          'mates': 1,
          'going': 1,
          'infamous': 1,
          'kills': 1,
          'alter': 1,
          'ego': 1,
          'appears': 1,
          'assasination': 1,
          'swift': 1,
          'fake': 1,
          'bullet': 1,
          'nwith': 1,
          'enos': 1,
          'famous': 1,
          'needle': 1,
          'camels': 1,
          'playing': 1,
          'detached': 1,
          'exhileration': 1,
          'song': 1,
          'songs': 1,
          'distance': 1,
          'hard': 1,
          'finger': 1,
          'represent': 1,
          'coming': 1,
          'quick': 1,
          'sad': 1,
          'sees': 1,
          'dressing': 1,
          'room': 1,
          'show': 1,
          'docked': 1,
          'silver': 1,
          'frock': 1,
          'wings': 1,
          'blue': 1,
          'hair': 1,
          'depressingly': 1,
          'staring': 1,
          'mirror': 1,
          'nonetooobvious': 1,
          'prophecy': 1,
          'finale': 1,
          'movies': 1,
          'plot': 1,
          'presented': 1,
          'making': 1,
          'classified': 1,
          'substance': 1,
          'statement': 1,
          'prompts': 1,
          'many': 1,
          'critics': 1,
          'line': 1,
          'attack': 1,
          'nhowever': 1,
          'sets': 1,
          'costumes': 1,
          'play': 1,
          'notable': 1,
          'soundtrack': 1,
          'consists': 1,
          'old': 1,
          'school': 1,
          'tunes': 1,
          'likes': 1,
          'trex': 1,
          'roxy': 1,
          'covers': 1,
          'vocals': 1,
          'thom': 1,
          'yorke': 1,
          'occasionally': 1,
          'even': 1,
          'newer': 1,
          'shudder': 1,
          'think': 1,
          'sounds': 1,
          'uncannily': 1,
          'bowielike': 1,
          'cast': 1,
          'impressive': 1,
          'walks': 1,
          'performances': 1,
          'nalthough': 1,
          'eddie': 1,
          'izzard': 1,
          'challenges': 1,
          'armwrestling': 1,
          'match': 1,
          'gets': 1,
          'control': 1,
          'tragic': 1,
          'come': 1,
          'greatly': 1,
          'noticably': 1,
          'subpar': 1,
          'neither': 1,
          'putting': 1,
          'effort': 1,
          'respective': 1,
          'roles': 1,
          'nsome': 1,
          'fault': 1,
          'construction': 1,
          'nrhys': 1,
          'remains': 1,
          'metaphor': 1,
          'dying': 1,
          'turned': 1,
          'retrogarbo': 1,
          'resorting': 1,
          'salingerism': 1,
          'mid70s': 1,
          'around': 1,
          'sniffing': 1,
          'coke': 1,
          'ass': 1,
          'girl': 1,
          'fact': 1,
          'seen': 1,
          'person': 1,
          'composite': 1,
          'type': 1,
          'thrived': 1,
          'nbales': 1,
          'tough': 1,
          'depressed': 1,
          'young': 1,
          'adulthood': 1,
          'cliched': 1,
          'hounded': 1,
          'store': 1,
          'guys': 1,
          'buying': 1,
          'poof': 1,
          'help': 1,
          'us': 1,
          'communicate': 1,
          'nnevertheless': 1,
          'excuses': 1,
          'results': 1,
          'left': 1,
          'others': 1,
          'helps': 1,
          'work': 1,
          'since': 1,
          'candy': 1,
          'nat': 1,
          'prime': 1,
          'movie': 1,
          'least': 1,
          'look': 1,
          'role': 1,
          'fashionable': 1,
          'leaders': 1,
          'perpetuallychanging': 1,
          'androgonys': 1,
          'topless': 1,
          'unpredictable': 1,
          'image': 1,
          'clash': 1,
          'fuse': 1,
          'unstable': 1,
          'union': 1,
          'ntheir': 1,
          'influenced': 1,
          'adapted': 1,
          'whocares': 1,
          'attitude': 1,
          'crossed': 1,
          'without': 1,
          'tougher': 1,
          'cant': 1,
          'identify': 1,
          'storys': 1,
          'slight': 1,
          'trouble': 1,
          'nas': 1,
          'cultural': 1,
          'takes': 1,
          'although': 1,
          'absolutely': 1,
          'flies': 1,
          'nothing': 1,
          'bunch': 1,
          'surrounded': 1,
          'material': 1,
          'better': 1,
          'captivating': 1,
          'slow': 1,
          'fantastic': 1,
          'shallow': 1,
          'worse': 1,
          'drags': 1,
          'final': 1,
          'hour': 1,
          'bring': 1,
          'conclusion': 1,
          'probably': 1,
          'stop': 1,
          'anyone': 1,
          'figure': 1,
          'mystery': 1,
          'unearths': 1,
          'almost': 1,
          'investigation': 1,
          'unearth': 1,
          'past': 1,
          'commendable': 1,
          'nstill': 1,
          'oliver': 1,
          'stone': 1,
          'pic': 1,
          'doors': 1,
          'didnt': 1,
          'becoming': 1,
          'insightful': 1,
          'hit': 1,
          'notes': 1,
          'made': 1,
          'living': 1,
          'halfassed': 1,
          'suppose': 1,
          'message': 1,
          'youll': 1,
          'forced': 1,
          'regretful': 1,
          'memories': 1,
          'superb': 1,
          'achievement': 1,
          'successfully': 1,
          'audience': 1,
          'must': 1,
          'felt': 1,
          'added': 1,
          'perk': 1,
          'knowing': 1,
          'goes': 1,
          'npos': 1}),
 Counter({'nthe': 5,
          'film': 4,
          'first': 3,
          'families': 3,
          'younger': 3,
          'love': 3,
          'romeo': 2,
          'juliet': 2,
          'ni': 2,
          'another': 2,
          'wrong': 2,
          'two': 2,
          'rival': 2,
          'version': 2,
          'generation': 2,
          'one': 2,
          'meet': 2,
          'site': 2,
          'scene': 2,
          'provides': 2,
          'heard': 1,
          'updated': 1,
          'shuddered': 1,
          'thought': 1,
          'yet': 1,
          'shakespeares': 1,
          'classics': 1,
          'destroyed': 1,
          'nfortunately': 1,
          'nbaz': 1,
          'luhrman': 1,
          'directed': 1,
          'face': 1,
          'visually': 1,
          'stunning': 1,
          'piece': 1,
          'nit': 1,
          'revolves': 1,
          'around': 1,
          'run': 1,
          'multimillion': 1,
          'dollar': 1,
          'enterprises': 1,
          'nthese': 1,
          'companiesfamilies': 1,
          'capulets': 1,
          'montagues': 1,
          'formed': 1,
          'gangs': 1,
          'despise': 1,
          'nas': 1,
          'storylines': 1,
          'goes': 1,
          'montague': 1,
          'played': 1,
          'leonardo': 1,
          'dicaprio': 1,
          'capulet': 1,
          'claire': 1,
          'danes': 1,
          'fancy': 1,
          'dress': 1,
          'party': 1,
          'never': 1,
          'believed': 1,
          'possible': 1,
          'saw': 1,
          'romeos': 1,
          'eyes': 1,
          'juliets': 1,
          'fish': 1,
          'tank': 1,
          'memorable': 1,
          'nof': 1,
          'course': 1,
          'publicly': 1,
          'reveal': 1,
          'arch': 1,
          'enemies': 1,
          'nso': 1,
          'marry': 1,
          'secret': 1,
          'things': 1,
          'begin': 1,
          'go': 1,
          'story': 1,
          'good': 1,
          'shakespeare': 1,
          'ends': 1,
          'tragedy': 1,
          'cinematography': 1,
          'spectacular': 1,
          'say': 1,
          'least': 1,
          'soundtrack': 1,
          'perfect': 1,
          'atmosphere': 1,
          'lay': 1,
          'says': 1,
          'nthere': 1,
          'little': 1,
          'criticise': 1,
          'performances': 1,
          'convincing': 1,
          'several': 1,
          'films': 1,
          'stars': 1,
          'may': 1,
          'find': 1,
          'launch': 1,
          'careers': 1,
          'modernisation': 1,
          'script': 1,
          'ingenious': 1,
          'clever': 1,
          'ndespite': 1,
          'well': 1,
          'known': 1,
          'storyline': 1,
          'latest': 1,
          'still': 1,
          'manages': 1,
          'cause': 1,
          'tears': 1,
          'among': 1,
          'many': 1,
          'members': 1,
          'audience': 1,
          'especially': 1,
          'certainly': 1,
          'great': 1,
          'credit': 1,
          'npos': 1}),
 Counter({'tribe': 8,
          'shelmikedmu': 4,
          'seem': 3,
          'nhowever': 3,
          'one': 3,
          'krippendorf': 3,
          'nhis': 3,
          'kids': 3,
          'films': 3,
          'film': 3,
          'humor': 3,
          'krippendorfs': 2,
          'comedy': 2,
          'like': 2,
          'james': 2,
          'dreyfuss': 2,
          'anthropologist': 2,
          'grant': 2,
          'lost': 2,
          'required': 2,
          'professor': 2,
          'suspension': 2,
          'disbelief': 2,
          'seems': 2,
          'bit': 2,
          'formula': 1,
          'ndone': 1,
          'poorly': 1,
          'formulaic': 1,
          'comedies': 1,
          'might': 1,
          'signify': 1,
          'downfall': 1,
          'american': 1,
          'cinema': 1,
          'every': 1,
          'emerges': 1,
          'actually': 1,
          'works': 1,
          'nprofessor': 1,
          'richard': 1,
          'renowned': 1,
          'trouble': 1,
          'university': 1,
          'gave': 1,
          'hefty': 1,
          'discover': 1,
          'new': 1,
          'guinea': 1,
          'found': 1,
          'nothing': 1,
          'wife': 1,
          'recently': 1,
          'died': 1,
          'spent': 1,
          'remainder': 1,
          'money': 1,
          'raising': 1,
          'three': 1,
          'shelly': 1,
          'natasha': 1,
          'lyonne': 1,
          'mickey': 1,
          'gregory': 1,
          'smith': 1,
          'edmund': 1,
          'carl': 1,
          'michael': 1,
          'lidner': 1,
          'ntonight': 1,
          'expected': 1,
          'lecture': 1,
          'newfound': 1,
          'nrather': 1,
          'break': 1,
          'news': 1,
          'face': 1,
          'consequences': 1,
          'misusing': 1,
          'funds': 1,
          'invents': 1,
          'named': 1,
          'lie': 1,
          'begets': 1,
          'another': 1,
          'deliver': 1,
          'filmed': 1,
          'proof': 1,
          'research': 1,
          'becomes': 1,
          'popular': 1,
          'phenomenon': 1,
          'nsoon': 1,
          'caught': 1,
          'elaborate': 1,
          'ruse': 1,
          'mockumentary': 1,
          'footage': 1,
          'starring': 1,
          'children': 1,
          'tribal': 1,
          'members': 1,
          'efforts': 1,
          'hampered': 1,
          'boasts': 1,
          'overeager': 1,
          'colleague': 1,
          'veronica': 1,
          'micelli': 1,
          'jenna': 1,
          'elfman': 1,
          'intense': 1,
          'scrutiny': 1,
          'rival': 1,
          'ruth': 1,
          'allen': 1,
          'lily': 1,
          'tomlin': 1,
          'nkrippendorfs': 1,
          'require': 1,
          'little': 1,
          'nno': 1,
          'question': 1,
          'way': 1,
          'field': 1,
          'documentaries': 1,
          'shot': 1,
          'multiple': 1,
          'cameras': 1,
          'newly': 1,
          'discovered': 1,
          'tribesmen': 1,
          'startlingly': 1,
          'blue': 1,
          'eyes': 1,
          'nluckily': 1,
          'builds': 1,
          'momentum': 1,
          'easy': 1,
          'come': 1,
          'nthough': 1,
          'theres': 1,
          'mild': 1,
          'family': 1,
          'trying': 1,
          'pass': 1,
          'real': 1,
          'gets': 1,
          'trapped': 1,
          'ever': 1,
          'increasing': 1,
          'snowball': 1,
          'lies': 1,
          'nthe': 1,
          'double': 1,
          'meanings': 1,
          'many': 1,
          'appearances': 1,
          'enjoyable': 1,
          'comic': 1,
          'timing': 1,
          'latter': 1,
          'scenes': 1,
          'superb': 1,
          'nrichard': 1,
          'terrific': 1,
          'hapless': 1,
          'soon': 1,
          'loses': 1,
          'control': 1,
          'imaginary': 1,
          'njenna': 1,
          'elfmans': 1,
          'position': 1,
          'romantic': 1,
          'lead': 1,
          'forced': 1,
          'times': 1,
          'plays': 1,
          'part': 1,
          'extreme': 1,
          'affability': 1,
          'neven': 1,
          'tend': 1,
          'precocious': 1,
          'side': 1,
          'endearing': 1,
          'humorous': 1,
          'nyes': 1,
          'veer': 1,
          'occasionally': 1,
          'rather': 1,
          'lowbrow': 1,
          'best': 1,
          'excuse': 1,
          'funny': 1,
          'nit': 1,
          'may': 1,
          'go': 1,
          'alltime': 1,
          'classic': 1,
          'certainly': 1,
          'delivers': 1,
          'expect': 1,
          'plenty': 1,
          'laughs': 1,
          'npos': 1}),
 Counter({'hilary': 5,
          'nthe': 5,
          'musicians': 4,
          'script': 4,
          'movie': 3,
          'one': 3,
          'together': 3,
          'jackie': 3,
          'watson': 3,
          'griffiths': 3,
          'du': 3,
          'pr': 3,
          'david': 2,
          'lives': 2,
          'fact': 2,
          'watch': 2,
          'leads': 2,
          'say': 2,
          'love': 2,
          'tale': 2,
          'rachel': 2,
          'two': 2,
          'different': 2,
          'family': 2,
          'style': 2,
          'characters': 2,
          'boyce': 2,
          'story': 2,
          'since': 1,
          '1996s': 1,
          'shine': 1,
          'starred': 1,
          'geoffrey': 1,
          'rush': 1,
          'pianist': 1,
          'helfgott': 1,
          'defiantly': 1,
          'laid': 1,
          'bare': 1,
          'worldclass': 1,
          'nin': 1,
          'films': 1,
          'would': 1,
          'almost': 1,
          'certainly': 1,
          'stand': 1,
          'convincing': 1,
          'argument': 1,
          'life': 1,
          'music': 1,
          'naturally': 1,
          'varieties': 1,
          'social': 1,
          'ills': 1,
          'nyet': 1,
          'sophomore': 1,
          'effort': 1,
          'director': 1,
          'anand': 1,
          'tucker': 1,
          'something': 1,
          'softly': 1,
          'strongly': 1,
          'explores': 1,
          'complex': 1,
          'relationships': 1,
          'sibling': 1,
          'rivalry': 1,
          'compelling': 1,
          'nemily': 1,
          'playing': 1,
          'sisters': 1,
          'nboth': 1,
          'childhood': 1,
          'renowned': 1,
          'flutist': 1,
          'jacqueline': 1,
          'easily': 1,
          'skilled': 1,
          'cello': 1,
          'comepete': 1,
          'win': 1,
          'many': 1,
          'honors': 1,
          'children': 1,
          'young': 1,
          'women': 1,
          'seperate': 1,
          'ntheir': 1,
          'careers': 1,
          'surpass': 1,
          'bow': 1,
          'anothers': 1,
          'although': 1,
          'take': 1,
          'paths': 1,
          'settles': 1,
          'marriage': 1,
          'skips': 1,
          'across': 1,
          'globe': 1,
          'world': 1,
          'concert': 1,
          'tour': 1,
          'bound': 1,
          'deep': 1,
          'performances': 1,
          'excellent': 1,
          'substance': 1,
          'nthey': 1,
          'contrast': 1,
          'wonderfully': 1,
          'watsons': 1,
          'portrayal': 1,
          'times': 1,
          'eccentric': 1,
          'perhaps': 1,
          'unsympathetic': 1,
          'charged': 1,
          'emotion': 1,
          'frank': 1,
          'cottrell': 1,
          'based': 1,
          'book': 1,
          'piers': 1,
          'brings': 1,
          'great': 1,
          'deal': 1,
          'depth': 1,
          'well': 1,
          'also': 1,
          'commended': 1,
          'wellpolished': 1,
          'dual': 1,
          'nature': 1,
          'ncottrell': 1,
          'adopts': 1,
          'might': 1,
          'expect': 1,
          'see': 1,
          'mystery': 1,
          'thriller': 1,
          'case': 1,
          'koepp': 1,
          'robert': 1,
          'townes': 1,
          'mission': 1,
          'impossible': 1,
          'skillfully': 1,
          'molds': 1,
          'rising': 1,
          'courses': 1,
          'fame': 1,
          'latter': 1,
          'parts': 1,
          'controversial': 1,
          'least': 1,
          'rather': 1,
          'depressing': 1,
          'ending': 1,
          'takes': 1,
          'wind': 1,
          'envigorating': 1,
          'nsome': 1,
          'leave': 1,
          'feeling': 1,
          'disenfranchised': 1,
          'nnevertheless': 1,
          'reaches': 1,
          'upper': 1,
          'echelon': 1,
          'contemporary': 1,
          'cinema': 1,
          'solid': 1,
          'fundamentals': 1,
          'decent': 1,
          'around': 1,
          'npos': 1}),
 Counter({'rico': 6,
          'troopers': 5,
          'starship': 4,
          'ready': 4,
          'gore': 4,
          'people': 3,
          'home': 3,
          'nif': 3,
          'much': 3,
          'like': 3,
          'nwith': 3,
          'back': 3,
          'nits': 3,
          'armed': 2,
          'forces': 2,
          'future': 2,
          'film': 2,
          'taken': 2,
          'recognize': 2,
          'humor': 2,
          'approach': 2,
          'intentionally': 2,
          'campy': 2,
          'high': 2,
          'school': 2,
          'join': 2,
          'whole': 2,
          'carmen': 2,
          'enlisted': 2,
          'shes': 2,
          'cast': 2,
          'carl': 2,
          'doogie': 2,
          'leaves': 2,
          'good': 2,
          'call': 2,
          'time': 2,
          'closely': 2,
          'clothes': 2,
          'alien': 2,
          'group': 2,
          'spoof': 2,
          'love': 2,
          'young': 2,
          'scifiaction': 2,
          'youre': 2,
          'comedy': 2,
          'cult': 2,
          'cheesy': 2,
          'fun': 2,
          'watch': 2,
          'barbie': 2,
          'special': 2,
          'effects': 2,
          'quite': 2,
          'awesome': 2,
          'brainless': 2,
          'luckily': 1,
          'got': 1,
          'nsome': 1,
          'knew': 1,
          'supposed': 1,
          'silly': 1,
          'nfor': 1,
          'didnt': 1,
          'could': 1,
          'miss': 1,
          'nfrom': 1,
          'beginning': 1,
          'see': 1,
          'interactive': 1,
          'internetlike': 1,
          'promotional': 1,
          'video': 1,
          'obvious': 1,
          'lightly': 1,
          'ni': 1,
          'guess': 1,
          'without': 1,
          'blatant': 1,
          'oneliners': 1,
          'alone': 1,
          'style': 1,
          'slapstick': 1,
          'dont': 1,
          'goofy': 1,
          'nsuch': 1,
          'dry': 1,
          'must': 1,
          'left': 1,
          'disillusioned': 1,
          'nfirst': 1,
          'thing': 1,
          'seeing': 1,
          'movie': 1,
          'lighten': 1,
          'nmeet': 1,
          'equivalent': 1,
          'beverly': 1,
          'hills': 1,
          '90210': 1,
          'meets': 1,
          'mighty': 1,
          'morphin': 1,
          'power': 1,
          'rangers': 1,
          'nfour': 1,
          'close': 1,
          'friends': 1,
          'graduating': 1,
          'means': 1,
          'fighting': 1,
          'galaxy': 1,
          'country': 1,
          'njohnny': 1,
          'casper': 1,
          'van': 1,
          'dien': 1,
          'infantry': 1,
          'mostly': 1,
          'girlfriend': 1,
          'ibanez': 1,
          'denise': 1,
          'richards': 1,
          'pilot': 1,
          'ndizzy': 1,
          'flores': 1,
          'dina': 1,
          'meyer': 1,
          'trooper': 1,
          'possible': 1,
          'joining': 1,
          'merely': 1,
          'follow': 1,
          'always': 1,
          'eyes': 1,
          'saw': 1,
          'three': 1,
          'street': 1,
          'youd': 1,
          'automatically': 1,
          'start': 1,
          'searching': 1,
          'fashion': 1,
          'designers': 1,
          'photographers': 1,
          'never': 1,
          'movies': 1,
          'looked': 1,
          'cutout': 1,
          'cover': 1,
          'seventeen': 1,
          'magazine': 1,
          'nthe': 1,
          'lone': 1,
          'nonsupermodel': 1,
          'jenkins': 1,
          'played': 1,
          'howser': 1,
          'neil': 1,
          'patrick': 1,
          'harris': 1,
          'brainiac': 1,
          'gets': 1,
          'military': 1,
          'intelligence': 1,
          'division': 1,
          'top': 1,
          'secret': 1,
          'department': 1,
          'pretty': 1,
          'er': 1,
          'picture': 1,
          'n': 1,
          'put': 1,
          'drooling': 1,
          'efforts': 1,
          'deserving': 1,
          'characters': 1,
          'nright': 1,
          'bat': 1,
          'becomes': 1,
          'star': 1,
          'show': 1,
          'far': 1,
          'surpassing': 1,
          'soldiers': 1,
          'becoming': 1,
          'squadron': 1,
          'leader': 1,
          'short': 1,
          'period': 1,
          'nbut': 1,
          'horrific': 1,
          'accident': 1,
          'standard': 1,
          'training': 1,
          'exercise': 1,
          'follows': 1,
          'breakup': 1,
          'quits': 1,
          'bags': 1,
          'packed': 1,
          'civilian': 1,
          'johnny': 1,
          'walk': 1,
          'base': 1,
          'catch': 1,
          'next': 1,
          'flight': 1,
          'nwell': 1,
          'sorry': 1,
          'suave': 1,
          'theres': 1,
          'place': 1,
          'especially': 1,
          'gigantic': 1,
          'insects': 1,
          'destroyed': 1,
          'nthats': 1,
          'right': 1,
          'planet': 1,
          'attacked': 1,
          'colony': 1,
          'arachnidlike': 1,
          'beings': 1,
          'raid': 1,
          'isnt': 1,
          'going': 1,
          'destroy': 1,
          'sudden': 1,
          'change': 1,
          'heart': 1,
          'game': 1,
          'following': 1,
          'fellow': 1,
          'fight': 1,
          'mean': 1,
          'daddy': 1,
          'long': 1,
          'legs': 1,
          'nwhat': 1,
          'really': 1,
          'even': 1,
          'remotely': 1,
          'touches': 1,
          'soap': 1,
          'opera': 1,
          'affairs': 1,
          'scifi': 1,
          'thirst': 1,
          'shared': 1,
          'age': 1,
          'etc': 1,
          'nothing': 1,
          'seriously': 1,
          'almost': 1,
          'satire': 1,
          'adults': 1,
          'clueless': 1,
          'sly': 1,
          'futuristic': 1,
          'recognizably': 1,
          'subtle': 1,
          'many': 1,
          'wont': 1,
          'spoofery': 1,
          'deem': 1,
          'wrong': 1,
          'scifiactioncomedy': 1,
          'level': 1,
          'favorites': 1,
          'evil': 1,
          'dead': 1,
          '2': 1,
          'may': 1,
          'road': 1,
          'status': 1,
          'well': 1,
          'ngore': 1,
          'factor': 1,
          'heavily': 1,
          'brought': 1,
          'reviews': 1,
          'meant': 1,
          'nyes': 1,
          'graphic': 1,
          'also': 1,
          'brutally': 1,
          'phony': 1,
          'thats': 1,
          'makes': 1,
          'great': 1,
          'nnot': 1,
          'since': 1,
          'old': 1,
          'mr': 1,
          'bill': 1,
          'skits': 1,
          'saturday': 1,
          'night': 1,
          'live': 1,
          'torture': 1,
          'mutilation': 1,
          'joy': 1,
          'npeople': 1,
          'laughing': 1,
          'loud': 1,
          'every': 1,
          'body': 1,
          'severed': 1,
          'half': 1,
          'head': 1,
          'viciously': 1,
          'decapitated': 1,
          'nperhaps': 1,
          'brings': 1,
          'fond': 1,
          'memories': 1,
          'severities': 1,
          'inflicted': 1,
          'upon': 1,
          'sisters': 1,
          'dolls': 1,
          'children': 1,
          'actors': 1,
          'resembling': 1,
          'ken': 1,
          'chance': 1,
          'case': 1,
          'whether': 1,
          'fully': 1,
          'aware': 1,
          'nstarship': 1,
          'slow': 1,
          'parts': 1,
          'truly': 1,
          'alternative': 1,
          'typical': 1,
          'flick': 1,
          'lame': 1,
          'juvenile': 1,
          'naside': 1,
          'astounding': 1,
          'nwhen': 1,
          'spaceship': 1,
          'passes': 1,
          'meteor': 1,
          'spectacle': 1,
          'visually': 1,
          'crisp': 1,
          'captivating': 1,
          'looking': 1,
          'epitome': 1,
          'search': 1,
          'na': 1,
          'beautiful': 1,
          'fastpaced': 1,
          'action': 1,
          'acting': 1,
          'lot': 1,
          'nthis': 1,
          'heaven': 1,
          'njust': 1,
          'remember': 1,
          'think': 1,
          'npos': 1}),
 Counter({'comedy': 4,
          'romantic': 3,
          'hill': 2,
          'actress': 2,
          'none': 2,
          'grant': 2,
          'spike': 2,
          'beautiful': 2,
          'good': 2,
          'nin': 2,
          'says': 2,
          'woman': 2,
          'happy': 1,
          'bastards': 1,
          '30second': 1,
          'review': 1,
          'nnotting': 1,
          'na': 1,
          'cute': 1,
          'writer': 1,
          'hit': 1,
          'four': 1,
          'weddings': 1,
          'funeral': 1,
          'notting': 1,
          'stars': 1,
          'julia': 1,
          'roberts': 1,
          'anna': 1,
          'scott': 1,
          'popular': 1,
          '15': 1,
          'million': 1,
          'asking': 1,
          'price': 1,
          'movies': 1,
          'day': 1,
          'wanders': 1,
          'travel': 1,
          'book': 1,
          'store': 1,
          'owned': 1,
          'simple': 1,
          'london': 1,
          'resident': 1,
          'played': 1,
          'hugh': 1,
          'sparks': 1,
          'somehow': 1,
          'begin': 1,
          'fly': 1,
          'nsure': 1,
          'points': 1,
          'turmoil': 1,
          'putting': 1,
          'grants': 1,
          'slightly': 1,
          'disgusting': 1,
          'hilarious': 1,
          'roommate': 1,
          'annas': 1,
          'pesky': 1,
          'exboyfriend': 1,
          'alec': 1,
          'baldwin': 1,
          'humorous': 1,
          'cameo': 1,
          'top': 1,
          'damn': 1,
          'press': 1,
          'nits': 1,
          'fresh': 1,
          'sort': 1,
          'complexity': 1,
          'see': 1,
          'different': 1,
          'say': 1,
          'stubborn': 1,
          'father': 1,
          'right': 1,
          'time': 1,
          'like': 1,
          'seen': 1,
          'usual': 1,
          'flicks': 1,
          'nroberts': 1,
          'terrific': 1,
          'astonishingly': 1,
          'surprisingly': 1,
          'straightforward': 1,
          'guy': 1,
          'still': 1,
          'trying': 1,
          'get': 1,
          'hold': 1,
          'actually': 1,
          'happened': 1,
          'girl': 1,
          'short': 1,
          'sweet': 1,
          'lot': 1,
          'laughs': 1,
          'particularly': 1,
          'provided': 1,
          'teeshirt': 1,
          'really': 1,
          'attempt': 1,
          'turn': 1,
          'shows': 1,
          'front': 1,
          'shirt': 1,
          'world': 1,
          'non': 1,
          'back': 1,
          'n': 1,
          'fancy': 1,
          'f': 1,
          'k': 1,
          'npos': 1}),
 Counter({'nthe': 12,
          'movie': 7,
          'one': 5,
          'xfiles': 4,
          'cave': 4,
          'texas': 4,
          'mulder': 4,
          'truth': 4,
          'movies': 4,
          'film': 4,
          'nthere': 4,
          'good': 4,
          'ni': 3,
          'north': 3,
          'alien': 3,
          'fbi': 3,
          'agents': 3,
          'even': 3,
          'nbut': 3,
          'interesting': 3,
          'enough': 3,
          'makes': 3,
          'big': 2,
          'tv': 2,
          'nothing': 2,
          'dont': 2,
          'say': 2,
          'well': 2,
          'lot': 2,
          'things': 2,
          'captured': 2,
          'ooze': 2,
          'black': 2,
          'anderson': 2,
          'duchovny': 2,
          'bomb': 2,
          'building': 2,
          'across': 2,
          'street': 2,
          'know': 2,
          'right': 2,
          'time': 2,
          'antarctica': 2,
          'get': 2,
          'closer': 2,
          'plot': 2,
          'still': 2,
          'would': 2,
          'make': 2,
          'like': 2,
          'interest': 2,
          'audience': 2,
          'location': 2,
          'night': 2,
          'look': 2,
          'dark': 2,
          'tone': 2,
          'shot': 2,
          'way': 2,
          'looks': 2,
          'soundtrack': 2,
          'never': 2,
          'sound': 2,
          'first': 1,
          'fan': 1,
          'series': 1,
          'particularly': 1,
          'happen': 1,
          'watch': 1,
          'nhaving': 1,
          'said': 1,
          'liked': 1,
          'pretty': 1,
          'nfor': 1,
          'us': 1,
          'nonfans': 1,
          'theres': 1,
          'going': 1,
          'little': 1,
          'opens': 1,
          'ice': 1,
          '35': 1,
          '000': 1,
          'b': 1,
          'c': 1,
          'ntwo': 1,
          'protohumans': 1,
          'enter': 1,
          'find': 1,
          'space': 1,
          'cocooned': 1,
          'inside': 1,
          'breaks': 1,
          'free': 1,
          'kills': 1,
          'man': 1,
          'struggle': 1,
          'seemingly': 1,
          'bloody': 1,
          'jumps': 1,
          'today': 1,
          'boy': 1,
          'lucas': 1,
          'sling': 1,
          'blade': 1,
          'nwe': 1,
          'cut': 1,
          'scully': 1,
          'gillian': 1,
          'david': 1,
          'pulled': 1,
          'previous': 1,
          'assignment': 1,
          'investigations': 1,
          'paranormal': 1,
          'put': 1,
          'onto': 1,
          'squad': 1,
          'detail': 1,
          'na': 1,
          'caller': 1,
          'threatened': 1,
          'federal': 1,
          'dallas': 1,
          'non': 1,
          'hunch': 1,
          'checks': 1,
          'wouldnt': 1,
          'turns': 1,
          'finds': 1,
          'evacuate': 1,
          'defuse': 1,
          'nfive': 1,
          'people': 1,
          'die': 1,
          'blast': 1,
          'learns': 1,
          'victims': 1,
          'light': 1,
          'bulb': 1,
          'goes': 1,
          'head': 1,
          'two': 1,
          'team': 1,
          'investigate': 1,
          'orders': 1,
          'links': 1,
          'made': 1,
          'ntheir': 1,
          'search': 1,
          'leads': 1,
          'back': 1,
          'country': 1,
          'uninspired': 1,
          'got': 1,
          'feeling': 1,
          'learned': 1,
          'supposed': 1,
          'shock': 1,
          'amaze': 1,
          'nit': 1,
          'didnt': 1,
          'possible': 1,
          'existence': 1,
          'aliens': 1,
          'earth': 1,
          'explored': 1,
          'many': 1,
          'times': 1,
          'could': 1,
          'hardly': 1,
          'count': 1,
          'point': 1,
          'extent': 1,
          'hidden': 1,
          'nits': 1,
          'slightly': 1,
          'angle': 1,
          'raises': 1,
          'expectations': 1,
          'high': 1,
          'nif': 1,
          'whole': 1,
          'mediocre': 1,
          'perhaps': 1,
          'boring': 1,
          'qualities': 1,
          'recommend': 1,
          'pacing': 1,
          'brisk': 1,
          'hold': 1,
          'nbefore': 1,
          'tired': 1,
          'follow': 1,
          'hot': 1,
          'tip': 1,
          'another': 1,
          'forth': 1,
          'locations': 1,
          'computergenerated': 1,
          'sets': 1,
          'either': 1,
          'artificial': 1,
          'settings': 1,
          'desert': 1,
          'nevada': 1,
          'edge': 1,
          'suburbia': 1,
          'endless': 1,
          'fields': 1,
          'snow': 1,
          'actually': 1,
          'somewhere': 1,
          'america': 1,
          'nmake': 1,
          'fantastic': 1,
          'feel': 1,
          'real': 1,
          'nward': 1,
          'russells': 1,
          'cinematography': 1,
          'overall': 1,
          'ominous': 1,
          'appropriate': 1,
          'intended': 1,
          'films': 1,
          'nrussell': 1,
          'able': 1,
          'something': 1,
          'innocuous': 1,
          'cornfield': 1,
          'foreboding': 1,
          'nwhen': 1,
          'set': 1,
          'darkness': 1,
          'picture': 1,
          'quality': 1,
          'rich': 1,
          'detailed': 1,
          'nfinally': 1,
          'specifically': 1,
          'incredible': 1,
          'camera': 1,
          'crosses': 1,
          'tracks': 1,
          'front': 1,
          'fast': 1,
          'oncoming': 1,
          'train': 1,
          'faked': 1,
          'dangerous': 1,
          'great': 1,
          'also': 1,
          'used': 1,
          'convey': 1,
          'skip': 1,
          'nto': 1,
          'next': 1,
          'paragraph': 1,
          'yet': 1,
          'see': 1,
          'spoiler': 1,
          'following': 1,
          'sentences': 1,
          'opening': 1,
          'prehistoric': 1,
          'sequence': 1,
          'howling': 1,
          'wind': 1,
          'dogs': 1,
          'giving': 1,
          'characters': 1,
          'escape': 1,
          'lonely': 1,
          'terrible': 1,
          'nin': 1,
          'effective': 1,
          'sequences': 1,
          'metallic': 1,
          'doors': 1,
          'suddenly': 1,
          'slam': 1,
          'open': 1,
          'release': 1,
          'cloud': 1,
          'buzzing': 1,
          'bees': 1,
          'visuals': 1,
          'scene': 1,
          'surprising': 1,
          'frightening': 1,
          'question': 1,
          'stars': 1,
          'neven': 1,
          'pair': 1,
          'actors': 1,
          'combination': 1,
          'nboth': 1,
          'easy': 1,
          'eyes': 1,
          'together': 1,
          'timing': 1,
          'banter': 1,
          'energy': 1,
          'hint': 1,
          'chemistry': 1,
          'gets': 1,
          'professional': 1,
          'relationship': 1,
          'nthey': 1,
          'couple': 1,
          'kids': 1,
          'exploring': 1,
          'empty': 1,
          'end': 1,
          'might': 1,
          'romantic': 1,
          'theyre': 1,
          'interested': 1,
          'environs': 1,
          'nno': 1,
          'single': 1,
          'element': 1,
          'really': 1,
          'outstanding': 1,
          'sense': 1,
          'paranoia': 1,
          'show': 1,
          'popular': 1,
          'done': 1,
          'summer': 1,
          'adventures': 1,
          'come': 1,
          'along': 1,
          'npos': 1}),
 Counter({'film': 14,
          'may': 11,
          'come': 9,
          'see': 8,
          'nbut': 8,
          'heaven': 8,
          'dreams': 7,
          'get': 7,
          'nthe': 7,
          'nchris': 7,
          'chris': 7,
          'annie': 7,
          'story': 6,
          'nits': 6,
          'even': 5,
          'plot': 5,
          'us': 5,
          'well': 5,
          'life': 5,
          'also': 5,
          'real': 5,
          'find': 4,
          'quite': 4,
          'complex': 4,
          'could': 4,
          'definitely': 4,
          'screenplay': 4,
          'would': 4,
          'nwhat': 4,
          'movie': 4,
          'like': 3,
          'ward': 3,
          'computer': 3,
          'nthis': 3,
          'one': 3,
          'films': 3,
          'nit': 3,
          'goes': 3,
          'back': 3,
          'city': 3,
          'vision': 3,
          'doubt': 3,
          'around': 3,
          'make': 3,
          'thought': 3,
          'visuals': 3,
          'hell': 3,
          'two': 3,
          'williams': 3,
          'almost': 3,
          'seen': 3,
          'good': 3,
          'oscar': 3,
          'nomination': 3,
          'job': 3,
          'many': 2,
          'people': 2,
          'much': 2,
          'new': 2,
          'director': 2,
          'vincent': 2,
          'colors': 2,
          'know': 2,
          'tell': 2,
          'audiences': 2,
          'previews': 2,
          'everyone': 2,
          'fluid': 2,
          'afterlife': 2,
          'extremely': 2,
          'order': 2,
          'done': 2,
          'dont': 2,
          'ni': 2,
          'pure': 2,
          'gets': 2,
          'put': 2,
          'mind': 2,
          'year': 2,
          'going': 2,
          'begins': 2,
          'startled': 2,
          'nannie': 2,
          'annabella': 2,
          'sciorra': 2,
          'whose': 2,
          'paintings': 2,
          'colorful': 2,
          'children': 2,
          'jessica': 2,
          'brooks': 2,
          'josh': 2,
          'paddock': 2,
          'killed': 2,
          'car': 2,
          'crash': 2,
          'problem': 2,
          'nothing': 2,
          'njust': 2,
          'albert': 2,
          'gooding': 2,
          'jr': 2,
          'point': 2,
          'crucial': 2,
          'away': 2,
          'work': 2,
          'nhowever': 2,
          'na': 2,
          'search': 2,
          'love': 2,
          'n': 2,
          'never': 2,
          'nhis': 2,
          'makes': 2,
          'state': 2,
          'nin': 2,
          'von': 2,
          'sydow': 2,
          'sea': 2,
          'faces': 2,
          'designer': 2,
          'last': 2,
          'nand': 2,
          'audience': 2,
          'isnt': 2,
          'attention': 2,
          'impressed': 2,
          'performances': 2,
          'really': 2,
          'distracting': 2,
          'herzog': 2,
          'images': 2,
          'nsome': 2,
          'title': 2,
          'visionary': 1,
          'nmost': 1,
          'animated': 1,
          'landscapes': 1,
          'vibrant': 1,
          'little': 1,
          'plainly': 1,
          'found': 1,
          'nwalking': 1,
          'theater': 1,
          'disgust': 1,
          'none': 1,
          'member': 1,
          'awakened': 1,
          'ended': 1,
          'ndont': 1,
          'believe': 1,
          'possibly': 1,
          'adultoriented': 1,
          'recent': 1,
          'years': 1,
          'nkids': 1,
          'bored': 1,
          'slow': 1,
          'plotting': 1,
          'storyline': 1,
          'presents': 1,
          'forth': 1,
          'time': 1,
          'boundaries': 1,
          'nthink': 1,
          'angels': 1,
          'nnow': 1,
          'add': 1,
          'unique': 1,
          'nboth': 1,
          'deal': 1,
          'box': 1,
          'office': 1,
          'ncosting': 1,
          '85': 1,
          'million': 1,
          'money': 1,
          'due': 1,
          'nfor': 1,
          'titanics': 1,
          'simple': 1,
          'cliche': 1,
          'proof': 1,
          'james': 1,
          'cameron': 1,
          'written': 1,
          'nearly': 1,
          'wrong': 1,
          'hope': 1,
          'visceral': 1,
          'enjoyment': 1,
          'hardly': 1,
          'ever': 1,
          'screen': 1,
          'place': 1,
          'second': 1,
          'best': 1,
          'comes': 1,
          'surpasses': 1,
          'dark': 1,
          'nfull': 1,
          'rich': 1,
          'shocking': 1,
          'probably': 1,
          'die': 1,
          'youll': 1,
          'end': 1,
          'boats': 1,
          'colliding': 1,
          'lake': 1,
          'christy': 1,
          'nielsen': 1,
          'robin': 1,
          'sudden': 1,
          'jolt': 1,
          'beauty': 1,
          'woman': 1,
          'boat': 1,
          'spies': 1,
          'eventually': 1,
          'bond': 1,
          'married': 1,
          'artist': 1,
          'lush': 1,
          'surrealistic': 1,
          'doctor': 1,
          'loves': 1,
          'nthey': 1,
          'marie': 1,
          'ian': 1,
          'day': 1,
          'destroys': 1,
          'nshe': 1,
          'tries': 1,
          'commit': 1,
          'suicide': 1,
          'fails': 1,
          'institution': 1,
          'copes': 1,
          'realizing': 1,
          'arent': 1,
          'anymore': 1,
          'change': 1,
          'trying': 1,
          'save': 1,
          'victim': 1,
          'version': 1,
          'rather': 1,
          'nguided': 1,
          'cuba': 1,
          'explores': 1,
          'surroundings': 1,
          'delight': 1,
          'joy': 1,
          'nthat': 1,
          'realizes': 1,
          'miserable': 1,
          'without': 1,
          'nprior': 1,
          'try': 1,
          'comfort': 1,
          'pain': 1,
          'felt': 1,
          'decides': 1,
          'leave': 1,
          'alone': 1,
          'nlittle': 1,
          'realize': 1,
          'happen': 1,
          'next': 1,
          'nim': 1,
          'say': 1,
          'rest': 1,
          'critics': 1,
          'however': 1,
          'give': 1,
          'ncertainly': 1,
          'dying': 1,
          'dies': 1,
          'nstory': 1,
          'necessarily': 1,
          'important': 1,
          'deals': 1,
          'strangely': 1,
          'virtually': 1,
          'heard': 1,
          'god': 1,
          'devil': 1,
          'couple': 1,
          'comments': 1,
          'maintains': 1,
          'focus': 1,
          'soul': 1,
          'mates': 1,
          'exclaims': 1,
          'nheaven': 1,
          'movies': 1,
          'always': 1,
          'depicted': 1,
          'glowing': 1,
          'white': 1,
          'purity': 1,
          'nusually': 1,
          'looks': 1,
          'rests': 1,
          'among': 1,
          'clouds': 1,
          'different': 1,
          'route': 1,
          'shows': 1,
          'memories': 1,
          'brought': 1,
          'thoughts': 1,
          'anything': 1,
          'drew': 1,
          'become': 1,
          'ive': 1,
          'anyone': 1,
          'use': 1,
          'paint': 1,
          'says': 1,
          'nequally': 1,
          'depictions': 1,
          'cast': 1,
          'normal': 1,
          'stereotypes': 1,
          'fire': 1,
          'brimstone': 1,
          'ninstead': 1,
          'gloriously': 1,
          'horrific': 1,
          'scene': 1,
          'tracker': 1,
          'max': 1,
          'arrive': 1,
          'nthousands': 1,
          'heads': 1,
          'stuck': 1,
          'ground': 1,
          'bodies': 1,
          'somewhere': 1,
          'else': 1,
          'nmostly': 1,
          'dead': 1,
          'silent': 1,
          'quips': 1,
          'made': 1,
          'lighten': 1,
          'mood': 1,
          'truly': 1,
          'frightening': 1,
          'sequence': 1,
          'nproduction': 1,
          'eugenio': 1,
          'zanetti': 1,
          'nusing': 1,
          'art': 1,
          'technology': 1,
          'worlds': 1,
          'created': 1,
          'exploration': 1,
          'nsometimes': 1,
          'scenes': 1,
          'play': 1,
          'visual': 1,
          'impact': 1,
          'necessary': 1,
          'appreciate': 1,
          'seeing': 1,
          'ncostume': 1,
          'yvonne': 1,
          'blake': 1,
          'appears': 1,
          'incredible': 1,
          'providing': 1,
          'interesting': 1,
          'costumes': 1,
          'ncinematographer': 1,
          'eduardo': 1,
          'serra': 1,
          'luscious': 1,
          'wings': 1,
          'dove': 1,
          'difficult': 1,
          'cinematographers': 1,
          'working': 1,
          'special': 1,
          'effects': 1,
          'serras': 1,
          'entire': 1,
          'universe': 1,
          'generated': 1,
          'image': 1,
          'masterful': 1,
          'nwriter': 1,
          'ron': 1,
          'bass': 1,
          'adapting': 1,
          'novel': 1,
          'richard': 1,
          'matheson': 1,
          'provides': 1,
          'set': 1,
          'vague': 1,
          'details': 1,
          'allowing': 1,
          'viewers': 1,
          'think': 1,
          'meaning': 1,
          'puts': 1,
          'together': 1,
          'final': 1,
          'example': 1,
          'german': 1,
          'expressionism': 1,
          'turn': 1,
          'portion': 1,
          'nyour': 1,
          'average': 1,
          'goer': 1,
          'likely': 1,
          'used': 1,
          'expressionistic': 1,
          'techniques': 1,
          'draw': 1,
          'religious': 1,
          'shouldnt': 1,
          'take': 1,
          'far': 1,
          'nrobin': 1,
          'continuously': 1,
          'dramatic': 1,
          'comedic': 1,
          'roles': 1,
          'suffering': 1,
          'comedy': 1,
          'perfection': 1,
          'stuff': 1,
          'confined': 1,
          'effective': 1,
          'drama': 1,
          'strong': 1,
          'doubtful': 1,
          'another': 1,
          'wouldnt': 1,
          'surprise': 1,
          'cop': 1,
          'land': 1,
          'breakout': 1,
          'role': 1,
          'garner': 1,
          'needed': 1,
          'possible': 1,
          'academy': 1,
          'doesnt': 1,
          'award': 1,
          'types': 1,
          'ncuba': 1,
          'better': 1,
          'hes': 1,
          'certainly': 1,
          'nmax': 1,
          'underused': 1,
          'treat': 1,
          'goers': 1,
          'werner': 1,
          'appear': 1,
          'recognize': 1,
          'father': 1,
          'lost': 1,
          'hard': 1,
          'attracted': 1,
          'considering': 1,
          'thinks': 1,
          'starving': 1,
          'great': 1,
          'noverall': 1,
          'sciorras': 1,
          'rated': 1,
          'pg13': 1,
          'thematic': 1,
          'elements': 1,
          'involving': 1,
          'death': 1,
          'disturbing': 1,
          'language': 1,
          'partial': 1,
          'nudity': 1,
          'aimed': 1,
          'adult': 1,
          'absolutely': 1,
          'glorious': 1,
          'slows': 1,
          'considerably': 1,
          'midsection': 1,
          'immersed': 1,
          'nby': 1,
          'way': 1,
          'controversy': 1,
          'surrounded': 1,
          'mistaken': 1,
          'sexual': 1,
          'term': 1,
          'becomes': 1,
          'wet': 1,
          'understand': 1,
          'actuality': 1,
          'soliloquy': 1,
          'hamlet': 1,
          'let': 1,
          'npos': 1}),
 Counter({'martial': 10,
          'arts': 10,
          'nthe': 7,
          'lee': 6,
          'two': 5,
          'movies': 5,
          'skills': 4,
          'scenes': 4,
          'one': 3,
          'could': 3,
          'kung': 3,
          'fu': 3,
          'plot': 3,
          'time': 3,
          'enter': 3,
          'dragon': 3,
          'bruce': 3,
          'lees': 3,
          'island': 3,
          'years': 3,
          'kelly': 3,
          'although': 3,
          'top': 3,
          'latter': 2,
          'hong': 2,
          'kong': 2,
          'flicks': 2,
          'probably': 2,
          'real': 2,
          'later': 2,
          'appreciate': 2,
          'like': 2,
          'intended': 2,
          'philosophy': 2,
          'nit': 2,
          'still': 2,
          'death': 2,
          'actor': 2,
          'nlee': 2,
          'shaolin': 2,
          'monk': 2,
          'expert': 2,
          'remote': 2,
          'han': 2,
          'personal': 2,
          'sister': 2,
          'ago': 2,
          'also': 2,
          'jim': 2,
          'black': 2,
          'order': 2,
          'many': 2,
          'bond': 2,
          'elements': 2,
          'main': 2,
          'hero': 2,
          'nin': 2,
          'even': 2,
          'impressive': 2,
          'actors': 2,
          'saxon': 2,
          'obligatory': 2,
          'good': 2,
          'guy': 2,
          'nothing': 2,
          'typical': 2,
          'today': 2,
          'genre': 2,
          'movie': 2,
          'growing': 1,
          '1970s': 1,
          'boys': 1,
          'school': 1,
          'used': 1,
          'divide': 1,
          'groups': 1,
          'based': 1,
          'action': 1,
          'preferences': 1,
          'first': 1,
          'included': 1,
          'liked': 1,
          'featured': 1,
          'spectacular': 1,
          'car': 1,
          'chases': 1,
          'lots': 1,
          'machinegun': 1,
          'fire': 1,
          'huge': 1,
          'explosions': 1,
          'preferred': 1,
          'precise': 1,
          'thought': 1,
          'imitate': 1,
          'stunts': 1,
          'life': 1,
          'ndecades': 1,
          'refining': 1,
          'cinematic': 1,
          'taste': 1,
          'began': 1,
          'actually': 1,
          'overexposure': 1,
          'shootemup': 1,
          'idiocy': 1,
          '1980s': 1,
          'ramboids': 1,
          'nyes': 1,
          'cheap': 1,
          'predictable': 1,
          'formulaic': 1,
          'asked': 1,
          'little': 1,
          'production': 1,
          'values': 1,
          'aside': 1,
          'nbut': 1,
          'rules': 1,
          'hands': 1,
          'capable': 1,
          'director': 1,
          'become': 1,
          'terrific': 1,
          'guilty': 1,
          'pleasure': 1,
          'source': 1,
          'relaxation': 1,
          'best': 1,
          'passed': 1,
          'test': 1,
          'managed': 1,
          'keep': 1,
          'cult': 1,
          'status': 1,
          'quarter': 1,
          'century': 1,
          'nmade': 1,
          '1973': 1,
          'joint': 1,
          'hollywood': 1,
          'venture': 1,
          'bring': 1,
          'western': 1,
          'audience': 1,
          'succeeded': 1,
          'debatable': 1,
          'whether': 1,
          'merit': 1,
          'unfortunate': 1,
          'mysterious': 1,
          'immortalised': 1,
          'myth': 1,
          'plays': 1,
          'quiet': 1,
          'nhe': 1,
          'approached': 1,
          'interpol': 1,
          'official': 1,
          'asks': 1,
          'join': 1,
          'triannual': 1,
          'tournament': 1,
          'held': 1,
          'owned': 1,
          'controlled': 1,
          'renegade': 1,
          'ninterpol': 1,
          'suspects': 1,
          'business': 1,
          'cover': 1,
          'narcotics': 1,
          'gunrunning': 1,
          'prostitution': 1,
          'operations': 1,
          'must': 1,
          'find': 1,
          'evidence': 1,
          'necessary': 1,
          'authorities': 1,
          'intervene': 1,
          'accepts': 1,
          'mission': 1,
          'reasons': 1,
          'oharra': 1,
          'hans': 1,
          'brutal': 1,
          'bodyguard': 1,
          'responsible': 1,
          'tragic': 1,
          'destination': 1,
          'colourful': 1,
          'experts': 1,
          'us': 1,
          'williams': 1,
          'played': 1,
          'activist': 1,
          'running': 1,
          'racist': 1,
          'police': 1,
          'friend': 1,
          'roper': 1,
          'wants': 1,
          'make': 1,
          'money': 1,
          'pay': 1,
          'gambling': 1,
          'debts': 1,
          'ways': 1,
          'influenced': 1,
          'james': 1,
          '007': 1,
          'franchise': 1,
          'would': 1,
          'return': 1,
          'favour': 1,
          'using': 1,
          'man': 1,
          'golden': 1,
          'gun': 1,
          'faced': 1,
          'powerhungry': 1,
          'megalomaniac': 1,
          'alone': 1,
          'whole': 1,
          'army': 1,
          'bad': 1,
          'guys': 1,
          'non': 1,
          'hand': 1,
          'believable': 1,
          'deprived': 1,
          'guns': 1,
          'supertech': 1,
          'gadgets': 1,
          'rely': 1,
          'survive': 1,
          'extremely': 1,
          'thin': 1,
          'allowed': 1,
          'internal': 1,
          'battles': 1,
          'natural': 1,
          'instinct': 1,
          'avenge': 1,
          'antiviolent': 1,
          'provided': 1,
          'opportunities': 1,
          'evaluate': 1,
          'acting': 1,
          'new': 1,
          'screen': 1,
          'presence': 1,
          'nalthough': 1,
          'john': 1,
          'white': 1,
          'share': 1,
          'spot': 1,
          'served': 1,
          'comic': 1,
          'relief': 1,
          'shame': 1,
          'see': 1,
          'definitely': 1,
          'worse': 1,
          'steal': 1,
          'lines': 1,
          'worst': 1,
          'possible': 1,
          'blaxploitation': 1,
          'cliches': 1,
          'sound': 1,
          'damn': 1,
          'nother': 1,
          'including': 1,
          'shih': 1,
          'kien': 1,
          'turns': 1,
          'convincing': 1,
          'bondian': 1,
          'villain': 1,
          'fist': 1,
          'fodder': 1,
          'among': 1,
          'young': 1,
          'jackie': 1,
          'chan': 1,
          'nfighting': 1,
          '25': 1,
          'mostly': 1,
          'lack': 1,
          'gore': 1,
          'associated': 1,
          'way': 1,
          'realistic': 1,
          'personally': 1,
          'staged': 1,
          'demanding': 1,
          'blow': 1,
          'incapacitate': 1,
          'kill': 1,
          'opponent': 1,
          'nim': 1,
          'fan': 1,
          'comparing': 1,
          'simply': 1,
          'cant': 1,
          'avoid': 1,
          'difference': 1,
          'todays': 1,
          'fights': 1,
          'masses': 1,
          'bloody': 1,
          'pulp': 1,
          'manage': 1,
          'get': 1,
          'floor': 1,
          'win': 1,
          'end': 1,
          'nso': 1,
          'despite': 1,
          'obvious': 1,
          'flaws': 1,
          'preclude': 1,
          '100': 1,
          'times': 1,
          'incredibly': 1,
          'entertaining': 1,
          'piece': 1,
          'cinema': 1,
          'flick': 1,
          'enjoyed': 1,
          'dont': 1,
          'particular': 1,
          'npos': 1}),
 Counter({'george': 11,
          'life': 10,
          'film': 10,
          'movie': 10,
          'time': 7,
          'christmas': 6,
          'nthis': 5,
          'however': 5,
          'nthe': 5,
          'family': 5,
          'much': 5,
          'nthere': 5,
          'wonderful': 4,
          'save': 4,
          'nbut': 4,
          'sacrificing': 4,
          'make': 4,
          'enough': 4,
          'little': 4,
          'nit': 4,
          'one': 3,
          'perfect': 3,
          'good': 3,
          'greatest': 3,
          'bailey': 3,
          'stewart': 3,
          'bedford': 3,
          'trouble': 3,
          'always': 3,
          'angel': 3,
          'nclarence': 3,
          'wings': 3,
          'sure': 3,
          'bank': 3,
          'money': 3,
          'potter': 3,
          'get': 3,
          'especially': 3,
          'great': 3,
          'ni': 3,
          'really': 3,
          'isnt': 2,
          'beautiful': 2,
          'feelgood': 2,
          'falls': 2,
          'see': 2,
          'clarence': 2,
          'without': 2,
          'true': 2,
          'first': 2,
          'baileys': 2,
          'living': 2,
          'away': 2,
          'brother': 2,
          'else': 2,
          'mr': 2,
          'barrymore': 2,
          'would': 2,
          'like': 2,
          'nits': 2,
          'feel': 2,
          'men': 2,
          'sex': 2,
          'roles': 2,
          'something': 2,
          'ncapra': 2,
          'humor': 2,
          'ending': 2,
          'sugar': 2,
          'everything': 2,
          'difficult': 2,
          'watching': 2,
          'makes': 2,
          'delightful': 2,
          'sense': 2,
          'relish': 2,
          'wife': 2,
          'including': 2,
          'frank': 2,
          'nno': 2,
          'people': 2,
          'capras': 2,
          'saw': 2,
          'nthey': 2,
          'loved': 2,
          'flawless': 2,
          'sweetest': 1,
          'tales': 1,
          'ever': 1,
          'made': 1,
          'natured': 1,
          'charm': 1,
          'performances': 1,
          'light': 1,
          'screen': 1,
          'glorious': 1,
          'results': 1,
          'nprobably': 1,
          'aims': 1,
          'heart': 1,
          'strikes': 1,
          'golden': 1,
          'arrow': 1,
          'non': 1,
          'eve': 1,
          'prayed': 1,
          'many': 1,
          'small': 1,
          'town': 1,
          'nyou': 1,
          'helped': 1,
          'others': 1,
          'needed': 1,
          'god': 1,
          'answers': 1,
          'prayers': 1,
          'sends': 1,
          'lovable': 1,
          'guardian': 1,
          'travers': 1,
          'try': 1,
          'got': 1,
          'problems': 1,
          'bell': 1,
          'rings': 1,
          'pass': 1,
          'case': 1,
          'way': 1,
          'earn': 1,
          'magical': 1,
          'become': 1,
          'go': 1,
          'cliffs': 1,
          'notes': 1,
          'version': 1,
          'nwe': 1,
          'hearing': 1,
          'brothers': 1,
          'college': 1,
          'education': 1,
          'business': 1,
          'dream': 1,
          'far': 1,
          'support': 1,
          'even': 1,
          'happy': 1,
          'working': 1,
          'somewhere': 1,
          'nwhen': 1,
          'owns': 1,
          'gives': 1,
          'honeymoon': 1,
          'sold': 1,
          'evil': 1,
          'wants': 1,
          'nothing': 1,
          'less': 1,
          'none': 1,
          'gets': 1,
          'chance': 1,
          'nuncle': 1,
          'billy': 1,
          'mitchell': 1,
          'loses': 1,
          '8': 1,
          '000': 1,
          'banks': 1,
          'nwithout': 1,
          'must': 1,
          'close': 1,
          'ngeorge': 1,
          'stuck': 1,
          'tremendous': 1,
          'bind': 1,
          'contemplates': 1,
          'suicide': 1,
          'faithful': 1,
          'servant': 1,
          'pick': 1,
          'show': 1,
          'leadin': 1,
          'famous': 1,
          'last': 1,
          'scene': 1,
          'finally': 1,
          'sees': 1,
          'happiness': 1,
          'faults': 1,
          'beginning': 1,
          'dated': 1,
          'details': 1,
          'treatment': 1,
          'women': 1,
          'weirdly': 1,
          'place': 1,
          '90s': 1,
          'revisionist': 1,
          'look': 1,
          'nall': 1,
          'drink': 1,
          'slap': 1,
          'wives': 1,
          'portions': 1,
          'endearing': 1,
          'moments': 1,
          'puts': 1,
          'mocking': 1,
          '50s': 1,
          'remarkably': 1,
          'enjoyable': 1,
          'story': 1,
          'hackneyed': 1,
          'feels': 1,
          'well': 1,
          'sugarish': 1,
          'ntheres': 1,
          'uneasy': 1,
          'feeling': 1,
          'sequences': 1,
          'either': 1,
          'helping': 1,
          'somebody': 1,
          'nice': 1,
          'liking': 1,
          'times': 1,
          'wit': 1,
          'jimmy': 1,
          'middle': 1,
          'part': 1,
          'never': 1,
          'boring': 1,
          'interesting': 1,
          'right': 1,
          'finale': 1,
          'beautifully': 1,
          'done': 1,
          'monumental': 1,
          'cliches': 1,
          'actors': 1,
          'overplay': 1,
          'perfection': 1,
          'ndonna': 1,
          'reed': 1,
          'loving': 1,
          'obeidient': 1,
          'lionel': 1,
          'gloriously': 1,
          'grump': 1,
          'neveryone': 1,
          'magnificent': 1,
          'bert': 1,
          'ernie': 1,
          'ward': 1,
          'bond': 1,
          'faylen': 1,
          'general': 1,
          'goodness': 1,
          'everyone': 1,
          'knows': 1,
          'making': 1,
          'nstewart': 1,
          'king': 1,
          'nhe': 1,
          'sometimes': 1,
          'awkward': 1,
          'saying': 1,
          'merry': 1,
          'objects': 1,
          'animate': 1,
          'inanimate': 1,
          'james': 1,
          'hes': 1,
          'lovably': 1,
          'throughout': 1,
          'nhave': 1,
          'complained': 1,
          'shouldnt': 1,
          'nbetter': 1,
          'yet': 1,
          'phenomenal': 1,
          'reason': 1,
          'classics': 1,
          'invented': 1,
          'movies': 1,
          'aid': 1,
          'quest': 1,
          'films': 1,
          'complain': 1,
          'reworking': 1,
          'carol': 1,
          'ive': 1,
          'said': 1,
          'admit': 1,
          '11': 1,
          'year': 1,
          'old': 1,
          'kid': 1,
          'sister': 1,
          'troubles': 1,
          'nis': 1,
          'sugarcoated': 1,
          'nmaybe': 1,
          'matter': 1,
          'watched': 1,
          'families': 1,
          'around': 1,
          'coffee': 1,
          'table': 1,
          'eggnog': 1,
          'plate': 1,
          'hope': 1,
          'flaws': 1,
          'acheivement': 1,
          'say': 1,
          'lot': 1,
          'nfor': 1,
          '121': 1,
          '129': 1,
          'minutes': 1,
          'rest': 1,
          'excused': 1,
          'perfectly': 1,
          'cant': 1,
          'love': 1,
          'digesting': 1,
          'sitting': 1,
          'appreciating': 1,
          'special': 1,
          'npos': 1}),
 Counter({'film': 6,
          'nthe': 5,
          'family': 4,
          'sitcom': 3,
          'like': 3,
          'characters': 3,
          'sets': 3,
          'point': 3,
          'essential': 3,
          'circumcision': 2,
          'psychic': 2,
          'wounds': 2,
          'parents': 2,
          'images': 2,
          'faster': 2,
          'funny': 2,
          'direction': 2,
          'put': 2,
          'different': 2,
          'journey': 2,
          'arquette': 2,
          'tea': 2,
          'disasters': 2,
          'dialogue': 2,
          'seems': 2,
          'really': 2,
          'find': 2,
          'allen': 2,
          'state': 2,
          'opening': 1,
          'segment': 1,
          'something': 1,
          'foretaste': 1,
          'ntheres': 1,
          'guys': 1,
          'voice': 1,
          'telling': 1,
          'us': 1,
          'tries': 1,
          'imagine': 1,
          'biological': 1,
          'look': 1,
          'screen': 1,
          'see': 1,
          'variety': 1,
          'oldish': 1,
          'men': 1,
          'women': 1,
          'nas': 1,
          'imagination': 1,
          'plays': 1,
          'n': 1,
          'picture': 1,
          'motley': 1,
          'mixandmatch': 1,
          'shuffle': 1,
          'unlikely': 1,
          'marriages': 1,
          'businesswomen': 1,
          'bums': 1,
          'matrons': 1,
          'paint': 1,
          'salesmen': 1,
          'coming': 1,
          'frenzy': 1,
          'nits': 1,
          'witty': 1,
          'summing': 1,
          'themes': 1,
          'might': 1,
          'guess': 1,
          'yet': 1,
          'pattern': 1,
          'way': 1,
          'story': 1,
          'goes': 1,
          'nwhat': 1,
          'starts': 1,
          'step': 1,
          'fairly': 1,
          'sensible': 1,
          'gets': 1,
          'taken': 1,
          'road': 1,
          'trip': 1,
          'detour': 1,
          'two': 1,
          'finds': 1,
          'freewheeling': 1,
          'towards': 1,
          'immin': 1,
          'ent': 1,
          'crash': 1,
          'nthat': 1,
          'may': 1,
          'sound': 1,
          'average': 1,
          'general': 1,
          'idea': 1,
          'doesnt': 1,
          'first': 1,
          'seem': 1,
          'wildly': 1,
          'distant': 1,
          'standardissue': 1,
          'hollywood': 1,
          'comedy': 1,
          'man': 1,
          'adopted': 1,
          'child': 1,
          'ben': 1,
          'still': 1,
          'er': 1,
          'meet': 1,
          'real': 1,
          'along': 1,
          'wife': 1,
          'patricia': 1,
          'baby': 1,
          'pretty': 1,
          'psychologyresearcher': 1,
          'leoni': 1,
          'tow': 1,
          'nvarious': 1,
          'mixups': 1,
          'shenanigans': 1,
          'oddball': 1,
          'yup': 1,
          'follow': 1,
          'nbut': 1,
          'think': 1,
          'youve': 1,
          'david': 1,
          'russell': 1,
          'made': 1,
          'spanking': 1,
          'monkey': 1,
          'take': 1,
          'another': 1,
          'dimension': 1,
          'dreaded': 1,
          'tname': 1,
          'inevitable': 1,
          'reference': 1,
          'drug': 1,
          'overdose': 1,
          'scene': 1,
          'casting': 1,
          'true': 1,
          'romance': 1,
          'footmassage': 1,
          'master': 1,
          'hasnt': 1,
          'got': 1,
          'monopoly': 1,
          'plot': 1,
          'twists': 1,
          'fast': 1,
          'irreverent': 1,
          'lines': 1,
          'absurdities': 1,
          'ordinary': 1,
          'speech': 1,
          'nwhether': 1,
          'oral': 1,
          'sex': 1,
          'carjacking': 1,
          'beauties': 1,
          'armpit': 1,
          'area': 1,
          'ronald': 1,
          'reagan': 1,
          'script': 1,
          'never': 1,
          'run': 1,
          'hilarious': 1,
          'invention': 1,
          'best': 1,
          'thing': 1,
          'words': 1,
          'arent': 1,
          'punchlines': 1,
          'great': 1,
          'precisely': 1,
          'theyre': 1,
          'said': 1,
          'character': 1,
          'leonis': 1,
          'neuroticallycharged': 1,
          'psychobabbler': 1,
          'whos': 1,
          'able': 1,
          'say': 1,
          'assault': 1,
          'understandable': 1,
          'threatening': 1,
          'cast': 1,
          'excellent': 1,
          'throughout': 1,
          'rather': 1,
          'singling': 1,
          'anybody': 1,
          'kudos': 1,
          'due': 1,
          'fine': 1,
          'ensemble': 1,
          'acting': 1,
          'sometimes': 1,
          'frenetically': 1,
          'overlapping': 1,
          'sense': 1,
          'dozen': 1,
          'reagents': 1,
          'colliding': 1,
          'fission': 1,
          'nthere': 1,
          'elements': 1,
          'woody': 1,
          'mention': 1,
          'handheld': 1,
          'camera': 1,
          'loose': 1,
          'improvisational': 1,
          'feel': 1,
          'scenes': 1,
          'nlike': 1,
          'russells': 1,
          'interests': 1,
          'volatile': 1,
          'sexual': 1,
          'politics': 1,
          'couples': 1,
          'neurotic': 1,
          'obsessions': 1,
          'pare': 1,
          'nts': 1,
          'children': 1,
          'everybody': 1,
          'nstill': 1,
          'youre': 1,
          'expecting': 1,
          'privileged': 1,
          'moment': 1,
          'revelation': 1,
          'emotional': 1,
          'outpouring': 1,
          'la': 1,
          'murphy': 1,
          'brown': 1,
          'frasier': 1,
          'fillintheblankamericancomedy': 1,
          'well': 1,
          'wont': 1,
          'happen': 1,
          'expectations': 1,
          'lead': 1,
          'search': 1,
          'f': 1,
          'origins': 1,
          'hopes': 1,
          'selfhealing': 1,
          'knock': 1,
          'nif': 1,
          'conventional': 1,
          'structure': 1,
          'slightly': 1,
          'loopy': 1,
          'catastrophic': 1,
          'conditions': 1,
          'rediscover': 1,
          'lovey': 1,
          'oneness': 1,
          'flirting': 1,
          'charact': 1,
          'ers': 1,
          'embark': 1,
          'seek': 1,
          'plunging': 1,
          'weirdness': 1,
          'dysfunctional': 1,
          'chaos': 1,
          'go': 1,
          'nand': 1,
          'suggests': 1,
          'better': 1,
          'learn': 1,
          'love': 1,
          'nsomehow': 1,
          'perversely': 1,
          'feelgood': 1,
          'cinema': 1,
          'right': 1,
          'manic': 1,
          'end': 1,
          'npos': 1}),
 Counter({'film': 12,
          'nthe': 5,
          'english': 5,
          'nosferatu': 4,
          'dracula': 4,
          'german': 4,
          'herzog': 4,
          'version': 4,
          'one': 4,
          'story': 4,
          'count': 4,
          'nthis': 3,
          'stokers': 3,
          'vampire': 3,
          'still': 3,
          'mike': 2,
          'watson': 2,
          'bram': 2,
          'cinematic': 2,
          'herzogs': 2,
          'beautiful': 2,
          'quality': 2,
          'long': 2,
          'language': 2,
          'last': 2,
          'video': 2,
          'anchor': 2,
          'bay': 2,
          'available': 2,
          'dialogue': 2,
          'years': 2,
          'harker': 2,
          'castle': 2,
          'creepy': 2,
          'kinski': 2,
          'harkers': 2,
          'nupon': 2,
          'adjani': 2,
          'tale': 2,
          'much': 2,
          'largely': 2,
          'simply': 2,
          'nwhen': 2,
          'vuh': 2,
          'quite': 2,
          'without': 2,
          'music': 2,
          'vampyre': 1,
          'germany': 1,
          '1979': 1,
          'na': 1,
          'review': 1,
          'copyright': 1,
          '1999': 1,
          'extraordinary': 1,
          'retelling': 1,
          'filmmaker': 1,
          'werner': 1,
          'deserves': 1,
          'prominent': 1,
          'places': 1,
          'lore': 1,
          'ninspired': 1,
          'f': 1,
          'w': 1,
          'murnaus': 1,
          '1922': 1,
          'silent': 1,
          'name': 1,
          'work': 1,
          'exquisite': 1,
          'bleakness': 1,
          'oddly': 1,
          'touching': 1,
          'tragedy': 1,
          'uniquely': 1,
          'haunting': 1,
          'lingers': 1,
          'afterwards': 1,
          'original': 1,
          'fulllength': 1,
          'versions': 1,
          'received': 1,
          'release': 1,
          'u': 1,
          'distributor': 1,
          'entertainment': 1,
          'gorgeous': 1,
          'widescreen': 1,
          'prints': 1,
          'nuntil': 1,
          'shortened': 1,
          'europe': 1,
          'nboth': 1,
          'rereleases': 1,
          'restore': 1,
          'full': 1,
          'length': 1,
          'viewers': 1,
          'wary': 1,
          'due': 1,
          'often': 1,
          'stilted': 1,
          'napparently': 1,
          'coach': 1,
          'set': 1,
          'filming': 1,
          'incompetent': 1,
          'voices': 1,
          'also': 1,
          'seem': 1,
          'dubbed': 1,
          'subtitles': 1,
          'remains': 1,
          'definitive': 1,
          'neveryone': 1,
          'knows': 1,
          'nhis': 1,
          'bastardised': 1,
          'brief': 1,
          'reminder': 1,
          'basic': 1,
          'plot': 1,
          'certainly': 1,
          'wont': 1,
          'hurt': 1,
          'njonathan': 1,
          'young': 1,
          'lawyer': 1,
          'sent': 1,
          'gloomy': 1,
          'transylvania': 1,
          'business': 1,
          'played': 1,
          'klaus': 1,
          'wants': 1,
          'buy': 1,
          'house': 1,
          'hometown': 1,
          'seeing': 1,
          'photo': 1,
          'wife': 1,
          'radiant': 1,
          'isabelle': 1,
          'instantly': 1,
          'falls': 1,
          'love': 1,
          'nlocking': 1,
          'sets': 1,
          'journey': 1,
          'meet': 1,
          'woman': 1,
          'whose': 1,
          'beauty': 1,
          'bewitches': 1,
          'divining': 1,
          'identity': 1,
          'seduces': 1,
          'lures': 1,
          'death': 1,
          'morning': 1,
          'sun': 1,
          'rises': 1,
          'nthat': 1,
          'familiar': 1,
          'millions': 1,
          'elevated': 1,
          'realm': 1,
          'use': 1,
          'term': 1,
          'tad': 1,
          'reluctantly': 1,
          'art': 1,
          'nnosferatu': 1,
          'meditation': 1,
          'shot': 1,
          'blueish': 1,
          'white': 1,
          'filters': 1,
          'peopled': 1,
          'characters': 1,
          'perform': 1,
          'half': 1,
          'hypnotised': 1,
          'films': 1,
          'surreal': 1,
          'dreamlike': 1,
          'utterly': 1,
          'mesmerising': 1,
          'nthere': 1,
          'enjoy': 1,
          'ill': 1,
          'limit': 1,
          'praise': 1,
          'key': 1,
          'points': 1,
          'nholding': 1,
          'together': 1,
          'kinskis': 1,
          'remarkable': 1,
          'performance': 1,
          'npast': 1,
          'screen': 1,
          'portrayals': 1,
          'including': 1,
          'bela': 1,
          'lugosis': 1,
          'famous': 1,
          'turn': 1,
          'dimensional': 1,
          'tended': 1,
          'towards': 1,
          'camp': 1,
          'nbut': 1,
          'oh': 1,
          'boy': 1,
          'something': 1,
          'far': 1,
          'compelling': 1,
          'naided': 1,
          'startling': 1,
          'makeup': 1,
          'job': 1,
          'portrays': 1,
          'draculas': 1,
          'vampirism': 1,
          'pure': 1,
          'evil': 1,
          'sort': 1,
          'loathsome': 1,
          'disease': 1,
          'man': 1,
          'dreadfully': 1,
          'lonely': 1,
          'nhe': 1,
          'lives': 1,
          'utter': 1,
          'solitude': 1,
          'shunned': 1,
          'locals': 1,
          'hideous': 1,
          'appearance': 1,
          'reputation': 1,
          'bloodlust': 1,
          'nkinskis': 1,
          'portrayal': 1,
          'deeply': 1,
          'affecting': 1,
          'dies': 1,
          'almost': 1,
          'feel': 1,
          'mans': 1,
          'tortured': 1,
          'soul': 1,
          'freed': 1,
          'nthen': 1,
          'theres': 1,
          'unforgettable': 1,
          'soundtrack': 1,
          'composed': 1,
          'group': 1,
          'popul': 1,
          'nit': 1,
          'eerily': 1,
          'evocative': 1,
          'impossible': 1,
          'imagine': 1,
          'npopul': 1,
          'longtime': 1,
          'collaborators': 1,
          'play': 1,
          'ancientsounding': 1,
          'kind': 1,
          'spacemusic': 1,
          'using': 1,
          'piano': 1,
          'chants': 1,
          'exotic': 1,
          'instruments': 1,
          'first': 1,
          'saw': 1,
          'ago': 1,
          'impressed': 1,
          'tracked': 1,
          'bought': 1,
          'number': 1,
          'albums': 1,
          'listen': 1,
          'tantric': 1,
          'songs': 1,
          'taken': 1,
          'nits': 1,
          'testament': 1,
          'musics': 1,
          'depth': 1,
          'powerful': 1,
          'pictures': 1,
          'album': 1,
          'highly': 1,
          'respected': 1,
          'ambient': 1,
          'world': 1,
          'label': 1,
          'celestial': 1,
          'harmonies': 1,
          'timely': 1,
          'rerelease': 1,
          'nafter': 1,
          'francis': 1,
          'ford': 1,
          'coppolas': 1,
          'unscary': 1,
          'woefully': 1,
          'overblown': 1,
          '1992': 1,
          'joy': 1,
          'go': 1,
          'back': 1,
          'see': 1,
          'amazing': 1,
          'things': 1,
          'done': 1,
          'centuryold': 1,
          'nto': 1,
          'aficionados': 1,
          'greatest': 1,
          'ever': 1,
          'made': 1,
          'nwithout': 1,
          'doubt': 1,
          'unmistakable': 1,
          'classic': 1,
          'genre': 1,
          'ndont': 1,
          'miss': 1,
          'npos': 1}),
 Counter({'death': 7,
          'movie': 6,
          'horror': 5,
          'nthe': 4,
          'like': 4,
          'one': 4,
          'time': 4,
          'others': 4,
          'final': 3,
          'destination': 3,
          'would': 3,
          'entertaining': 3,
          'nthis': 3,
          'crash': 3,
          'leaving': 3,
          'plane': 3,
          'even': 2,
          'know': 2,
          'director': 2,
          'wong': 2,
          'show': 2,
          'xfiles': 2,
          'plot': 2,
          'characters': 2,
          'nit': 2,
          'fbi': 2,
          'agents': 2,
          'mulder': 2,
          'scully': 2,
          'seen': 2,
          'great': 2,
          'last': 2,
          'still': 2,
          'bunch': 2,
          'nwhat': 2,
          'unique': 2,
          'already': 2,
          'die': 2,
          'nalex': 2,
          'dreams': 2,
          'take': 2,
          'survivors': 2,
          'seven': 2,
          'scenes': 2,
          'films': 2,
          'character': 2,
          'named': 2,
          'plays': 2,
          'carter': 2,
          'cowriters': 1,
          'james': 1,
          'jeffrey': 1,
          'reddick': 1,
          'creepy': 1,
          'helped': 1,
          'create': 1,
          'hit': 1,
          'television': 1,
          'inevitably': 1,
          'made': 1,
          'connection': 1,
          'similarities': 1,
          'apparent': 1,
          'inexplicable': 1,
          'phenomenon': 1,
          'mysterious': 1,
          'overall': 1,
          'dark': 1,
          'ominous': 1,
          'settings': 1,
          'perfectly': 1,
          'fitting': 1,
          'see': 1,
          'investigate': 1,
          'case': 1,
          'witness': 1,
          'stuff': 1,
          'weekly': 1,
          'basis': 1,
          'fact': 1,
          'much': 1,
          'welcome': 1,
          'change': 1,
          'bland': 1,
          'dimensional': 1,
          'nanother': 1,
          'important': 1,
          'similarity': 1,
          'succeed': 1,
          'thrilling': 1,
          'accomplishment': 1,
          'teen': 1,
          'especially': 1,
          'compared': 1,
          'trash': 1,
          'genre': 1,
          'released': 1,
          'couple': 1,
          'years': 1,
          'urban': 1,
          'legend': 1,
          'summer': 1,
          'classic': 1,
          'examples': 1,
          'helps': 1,
          'premise': 1,
          'nunlike': 1,
          'average': 1,
          'flick': 1,
          'invincible': 1,
          'psycho': 1,
          'knife': 1,
          'chases': 1,
          'blonde': 1,
          'cheerleaders': 1,
          'villain': 1,
          'presented': 1,
          'unusual': 1,
          'grim': 1,
          'reaper': 1,
          'predestined': 1,
          'naccording': 1,
          'brief': 1,
          'history': 1,
          'lesson': 1,
          'given': 1,
          'film': 1,
          'everyone': 1,
          'meant': 1,
          'certain': 1,
          'people': 1,
          '100': 1,
          '17': 1,
          'whatever': 1,
          'chooses': 1,
          'dead': 1,
          'cant': 1,
          'really': 1,
          'kill': 1,
          'way': 1,
          'defeat': 1,
          'cheat': 1,
          'question': 1,
          'dilemma': 1,
          'faces': 1,
          'alex': 1,
          'group': 1,
          'teenagers': 1,
          'airplane': 1,
          'class': 1,
          'trip': 1,
          'paris': 1,
          'begins': 1,
          'realize': 1,
          'little': 1,
          'real': 1,
          'eventually': 1,
          'gets': 1,
          'six': 1,
          'kicked': 1,
          'right': 1,
          'takes': 1,
          'nshortly': 1,
          'indeed': 1,
          'confused': 1,
          'feeling': 1,
          'immortal': 1,
          'nhowever': 1,
          'isnt': 1,
          'yet': 1,
          'gradually': 1,
          'kills': 1,
          'currently': 1,
          'alive': 1,
          'frantically': 1,
          'trying': 1,
          'trick': 1,
          'allows': 1,
          'creative': 1,
          'original': 1,
          'nsome': 1,
          'build': 1,
          'perfect': 1,
          'amount': 1,
          'tension': 1,
          'elaborate': 1,
          'climax': 1,
          'unexpected': 1,
          'leave': 1,
          'jaw': 1,
          'wide': 1,
          'open': 1,
          'shock': 1,
          'ncreativity': 1,
          'originality': 1,
          'two': 1,
          'adjectives': 1,
          'lacking': 1,
          'nowadays': 1,
          'nsure': 1,
          'traditional': 1,
          'share': 1,
          'jerks': 1,
          'outsiders': 1,
          'ali': 1,
          'larters': 1,
          'particularly': 1,
          'annoying': 1,
          'shocks': 1,
          'beginning': 1,
          'end': 1,
          'extremely': 1,
          'nalso': 1,
          'sense': 1,
          'seriously': 1,
          'nhe': 1,
          'knows': 1,
          'another': 1,
          'guilty': 1,
          'pleasure': 1,
          'wont': 1,
          'win': 1,
          'academy': 1,
          'awards': 1,
          'golden': 1,
          'globe': 1,
          'myriad': 1,
          'inside': 1,
          'jokes': 1,
          'gags': 1,
          'famous': 1,
          'directors': 1,
          'jerk': 1,
          'creator': 1,
          'chris': 1,
          'song': 1,
          'john': 1,
          'denver': 1,
          'died': 1,
          'whenever': 1,
          'near': 1,
          'guys': 1,
          'good': 1,
          'making': 1,
          'nand': 1,
          'watching': 1,
          'npos': 1}),
 Counter({'nit': 8,
          'one': 6,
          'movie': 5,
          'seen': 5,
          'less': 5,
          'drifting': 4,
          'clouds': 4,
          'lauri': 4,
          'ilona': 4,
          'nthere': 4,
          'lives': 4,
          'nthe': 4,
          'kaurism': 3,
          'ki': 3,
          'would': 3,
          'story': 3,
          'nhe': 3,
          'humour': 3,
          'people': 3,
          'movies': 3,
          'ntheir': 3,
          'characters': 3,
          'must': 3,
          'us': 3,
          'every': 3,
          'ending': 3,
          'aki': 2,
          'might': 2,
          'comedy': 2,
          'sense': 2,
          'couple': 2,
          'capitalism': 2,
          'loses': 2,
          'job': 2,
          'position': 2,
          'restaurant': 2,
          'nlauri': 2,
          'years': 2,
          'deadpan': 2,
          'nthis': 2,
          'rest': 2,
          'political': 2,
          'environment': 2,
          'happens': 2,
          'colour': 2,
          'almost': 2,
          'something': 2,
          'money': 2,
          'films': 2,
          'great': 2,
          'emotions': 2,
          'nif': 2,
          'brings': 2,
          'humiliating': 2,
          'employer': 2,
          'give': 2,
          'take': 1,
          'number': 1,
          'fill': 1,
          'form': 1,
          'wait': 1,
          'turn': 1,
          'nstarring': 1,
          'kati': 1,
          'outinen': 1,
          'kari': 1,
          'v': 1,
          'n': 1,
          'nen': 1,
          'sakari': 1,
          'kuosmanen': 1,
          'elina': 1,
          'salo': 1,
          'written': 1,
          'directed': 1,
          'cinematography': 1,
          'timo': 1,
          'salminen': 1,
          'possible': 1,
          'call': 1,
          'satire': 1,
          'black': 1,
          'imply': 1,
          'anger': 1,
          'vitriol': 1,
          'energy': 1,
          'get': 1,
          'rage': 1,
          'vitality': 1,
          'gone': 1,
          'sad': 1,
          'slow': 1,
          'married': 1,
          'caught': 1,
          'wheels': 1,
          'grinds': 1,
          'inexorably': 1,
          'onward': 1,
          'tram': 1,
          'driver': 1,
          'everyone': 1,
          'drives': 1,
          'cars': 1,
          'nowadays': 1,
          'nwithin': 1,
          'months': 1,
          'head': 1,
          'waiter': 1,
          'bought': 1,
          'chain': 1,
          'entire': 1,
          'staff': 1,
          'replaced': 1,
          'na': 1,
          'conversation': 1,
          'early': 1,
          'film': 1,
          'reveals': 1,
          'lot': 1,
          'situation': 1,
          'surprised': 1,
          'buying': 1,
          'tv': 1,
          'greets': 1,
          'little': 1,
          'enthusiasm': 1,
          'nshe': 1,
          'notes': 1,
          'havent': 1,
          'finished': 1,
          'paying': 1,
          'bookshelves': 1,
          'couch': 1,
          'yet': 1,
          'says': 1,
          'four': 1,
          'payments': 1,
          'done': 1,
          'buy': 1,
          'books': 1,
          'shelves': 1,
          'pass': 1,
          'wasnt': 1,
          'spoken': 1,
          'resigned': 1,
          'weariness': 1,
          'sets': 1,
          'tone': 1,
          'idiosyncracy': 1,
          'periphery': 1,
          'centre': 1,
          'frustration': 1,
          'futility': 1,
          'sorrow': 1,
          'ways': 1,
          'logic': 1,
          'profit': 1,
          'reduces': 1,
          'worth': 1,
          'equated': 1,
          'solely': 1,
          'earning': 1,
          'capacity': 1,
          'element': 1,
          'commentary': 1,
          'critique': 1,
          'mechanisms': 1,
          'stultifying': 1,
          'social': 1,
          'creates': 1,
          'subsumed': 1,
          'personal': 1,
          'two': 1,
          'nothing': 1,
          'else': 1,
          'matters': 1,
          'live': 1,
          'starved': 1,
          'friendship': 1,
          'respect': 1,
          'culture': 1,
          'passion': 1,
          'nthey': 1,
          'go': 1,
          'walk': 1,
          'past': 1,
          'old': 1,
          'posters': 1,
          'latalante': 1,
          'largent': 1,
          'pointless': 1,
          'violent': 1,
          'unfunny': 1,
          'house': 1,
          'workplaces': 1,
          'uniformly': 1,
          'unpleasant': 1,
          'painted': 1,
          'upholstered': 1,
          'lifeless': 1,
          'colours': 1,
          'ugly': 1,
          'greens': 1,
          'dull': 1,
          'reds': 1,
          'insipid': 1,
          'blues': 1,
          'full': 1,
          'inelegantly': 1,
          'functional': 1,
          'objects': 1,
          'appliances': 1,
          'art': 1,
          'design': 1,
          'impeccable': 1,
          'tawdriness': 1,
          'director': 1,
          'often': 1,
          'matches': 1,
          'clothes': 1,
          'background': 1,
          'andor': 1,
          'lighting': 1,
          'seems': 1,
          'physically': 1,
          'fading': 1,
          'suggestion': 1,
          'sexuality': 1,
          'relationship': 1,
          'sleep': 1,
          'separate': 1,
          'beds': 1,
          'gestures': 1,
          'affection': 1,
          'lack': 1,
          'heat': 1,
          'desire': 1,
          'bound': 1,
          'complex': 1,
          'desperate': 1,
          'love': 1,
          'downward': 1,
          'downsized': 1,
          'downtrodden': 1,
          'momentum': 1,
          'comic': 1,
          'setback': 1,
          'succeeds': 1,
          'another': 1,
          'bottoming': 1,
          'stakes': 1,
          'remaining': 1,
          'spin': 1,
          'roulette': 1,
          'wheel': 1,
          'tempting': 1,
          'play': 1,
          'laughs': 1,
          'farce': 1,
          'wit': 1,
          'strength': 1,
          'sober': 1,
          'empathic': 1,
          'manner': 1,
          'observes': 1,
          'ilonas': 1,
          'misfortunes': 1,
          'nirony': 1,
          'injustice': 1,
          'nsituations': 1,
          'settings': 1,
          'broad': 1,
          'exaggeratedthis': 1,
          'realismbut': 1,
          'distorted': 1,
          'authentic': 1,
          'difficult': 1,
          'laugh': 1,
          'anything': 1,
          'despite': 1,
          'droll': 1,
          'performances': 1,
          'laconic': 1,
          'thats': 1,
          'compassion': 1,
          'understanding': 1,
          'manifold': 1,
          'indignities': 1,
          'suffered': 1,
          'shows': 1,
          'woman': 1,
          'thirtyeight': 1,
          'worked': 1,
          'long': 1,
          'hard': 1,
          'win': 1,
          'respectable': 1,
          'forced': 1,
          'accept': 1,
          'dishwasher': 1,
          'twobit': 1,
          'man': 1,
          'nearing': 1,
          '50': 1,
          'confront': 1,
          'wifes': 1,
          'former': 1,
          'demanding': 1,
          'wages': 1,
          'crap': 1,
          'beaten': 1,
          'unable': 1,
          'land': 1,
          'single': 1,
          'punch': 1,
          'cronies': 1,
          'refuse': 1,
          'nall': 1,
          'observed': 1,
          'keenly': 1,
          'economy': 1,
          'cut': 1,
          'line': 1,
          'dialogue': 1,
          'judicious': 1,
          'novelistic': 1,
          'telling': 1,
          'focus': 1,
          'concentration': 1,
          'short': 1,
          'bear': 1,
          'nbut': 1,
          'gained': 1,
          'nuance': 1,
          'acumen': 1,
          'rather': 1,
          'undermined': 1,
          'material': 1,
          'barely': 1,
          'accommodates': 1,
          '96minute': 1,
          'running': 1,
          'length': 1,
          'ni': 1,
          'many': 1,
          'far': 1,
          'profound': 1,
          'humane': 1,
          'necessary': 1,
          'filled': 1,
          'urge': 1,
          'watch': 1,
          'need': 1,
          'twice': 1,
          'detail': 1,
          'implication': 1,
          'absorbed': 1,
          'viewing': 1,
          'large': 1,
          'audience': 1,
          'pitched': 1,
          'selling': 1,
          'point': 1,
          'understatement': 1,
          'restraint': 1,
          'melancholy': 1,
          'unremarkable': 1,
          'best': 1,
          'behind': 1,
          'dreams': 1,
          'dissipated': 1,
          'takes': 1,
          'effort': 1,
          'muster': 1,
          'pay': 1,
          'bills': 1,
          'make': 1,
          'fascinating': 1,
          'merely': 1,
          'marketable': 1,
          'shame': 1,
          'precisely': 1,
          'pays': 1,
          'attention': 1,
          'prefer': 1,
          'ignore': 1,
          'engages': 1,
          'touches': 1,
          'resolvessurprisingly': 1,
          'movinglyinto': 1,
          'resembling': 1,
          'happy': 1,
          'thing': 1,
          'greater': 1,
          'illluck': 1,
          'governs': 1,
          'refusal': 1,
          'despair': 1,
          'persistence': 1,
          'rewarded': 1,
          'called': 1,
          'feelgood': 1,
          'elsewhere': 1,
          'differs': 1,
          'kind': 1,
          'endings': 1,
          'truly': 1,
          'earned': 1,
          'npos': 1}),
 Counter({'helen': 8,
          'two': 7,
          'paltrow': 6,
          'doors': 6,
          'life': 6,
          'gwyneth': 5,
          'nin': 5,
          'gerry': 5,
          'fate': 4,
          'stories': 4,
          'train': 4,
          'sliding': 4,
          'one': 4,
          'different': 4,
          'james': 4,
          'british': 4,
          'love': 3,
          'monty': 3,
          'american': 3,
          'nsliding': 3,
          'story': 3,
          'film': 3,
          'home': 3,
          'early': 3,
          'livein': 3,
          'john': 3,
          'doesnt': 3,
          'takes': 3,
          'python': 3,
          'london': 2,
          'gal': 2,
          'true': 2,
          'nthe': 2,
          'subway': 2,
          'meaning': 2,
          'lover': 2,
          'lynch': 2,
          'path': 2,
          'future': 2,
          'back': 2,
          'forth': 2,
          'meets': 2,
          'charming': 2,
          'lydia': 2,
          'new': 2,
          'heart': 2,
          'way': 2,
          'fans': 2,
          'quirky': 2,
          'romance': 2,
          'nwhen': 2,
          'boyfriend': 2,
          'shes': 2,
          'isnt': 2,
          'hunk': 2,
          'hospital': 2,
          'us': 2,
          'characters': 2,
          'seem': 2,
          'scenes': 2,
          'containing': 2,
          'nbut': 2,
          'slightly': 2,
          'ingredients': 1,
          'running': 1,
          'joke': 1,
          'pythons': 1,
          'spanish': 1,
          'inquisition': 1,
          'nsynopsis': 1,
          'actress': 1,
          'dark': 1,
          'hair': 1,
          'playing': 1,
          'londoner': 1,
          'nbelieve': 1,
          'gimmick': 1,
          'really': 1,
          'follows': 1,
          'directions': 1,
          'beginning': 1,
          'likeable': 1,
          'gets': 1,
          'unexpectedly': 1,
          'fired': 1,
          'advertising': 1,
          'job': 1,
          'nso': 1,
          'goes': 1,
          'station': 1,
          'return': 1,
          'apartment': 1,
          'sleeping': 1,
          'nhelen': 1,
          'know': 1,
          'fateful': 1,
          'junction': 1,
          '1': 1,
          'enters': 1,
          'door': 1,
          '2': 1,
          'stays': 1,
          'platform': 1,
          'another': 1,
          'shows': 1,
          'happens': 1,
          'paths': 1,
          'switching': 1,
          'intertwined': 1,
          'parallel': 1,
          'talkative': 1,
          'fan': 1,
          'named': 1,
          'hannah': 1,
          'narriving': 1,
          'discovers': 1,
          'sex': 1,
          'former': 1,
          'jeanne': 1,
          'tripplehorn': 1,
          'nthis': 1,
          'leads': 1,
          'moves': 1,
          'nhelens': 1,
          'winsome': 1,
          'friend': 1,
          'helps': 1,
          'recover': 1,
          'broken': 1,
          'encourages': 1,
          'start': 1,
          'business': 1,
          'experiences': 1,
          'nshe': 1,
          'misses': 1,
          'never': 1,
          'get': 1,
          'enough': 1,
          'discover': 1,
          'gerrys': 1,
          'infidelity': 1,
          'odd': 1,
          'menial': 1,
          'jobs': 1,
          'faces': 1,
          'constant': 1,
          'sneaking': 1,
          'suspicion': 1,
          'right': 1,
          'relationship': 1,
          'nwill': 1,
          'truth': 1,
          'finally': 1,
          'work': 1,
          'number': 1,
          'problems': 1,
          'setbacks': 1,
          'scenarios': 1,
          'nopinion': 1,
          'rejoice': 1,
          'ye': 1,
          'watchers': 1,
          'flicks': 1,
          'nat': 1,
          'last': 1,
          'heres': 1,
          'proof': 1,
          'theres': 1,
          'still': 1,
          'creativity': 1,
          '1990s': 1,
          'filmmaking': 1,
          'refreshingly': 1,
          'anything': 1,
          'year': 1,
          'nnot': 1,
          'wellacted': 1,
          'heartwarming': 1,
          'also': 1,
          'easily': 1,
          'paltrows': 1,
          'best': 1,
          'recent': 1,
          'performance': 1,
          'screams': 1,
          'unfaithful': 1,
          'shagging': 1,
          'wanker': 1,
          'phrase': 1,
          'better': 1,
          'left': 1,
          'untranslated': 1,
          'sounds': 1,
          'like': 1,
          'knows': 1,
          'talking': 1,
          'nnor': 1,
          'go': 1,
          'overboard': 1,
          'formulaic': 1,
          'stereotypes': 1,
          'nnobody': 1,
          'scrambles': 1,
          'around': 1,
          'danger': 1,
          'screaming': 1,
          'find': 1,
          'matter': 1,
          'darling': 1,
          'finds': 1,
          'boat': 1,
          'starlight': 1,
          'take': 1,
          'easy': 1,
          'leap': 1,
          'arms': 1,
          'since': 1,
          'supposed': 1,
          'recovering': 1,
          'heartache': 1,
          'nand': 1,
          'handsome': 1,
          'stereotypical': 1,
          'screen': 1,
          'either': 1,
          'stud': 1,
          'snob': 1,
          'ninstead': 1,
          'hes': 1,
          'nervous': 1,
          'indecisive': 1,
          'almost': 1,
          'helpless': 1,
          'nanother': 1,
          'example': 1,
          'protagonists': 1,
          'lies': 1,
          'wounded': 1,
          'gives': 1,
          'neither': 1,
          'miracle': 1,
          'maudlin': 1,
          'tragedy': 1,
          'surprises': 1,
          'third': 1,
          'variation': 1,
          'words': 1,
          'nonstereotyped': 1,
          'human': 1,
          'local': 1,
          'nthere': 1,
          'minor': 1,
          'inconveniences': 1,
          'nsince': 1,
          'switches': 1,
          'possible': 1,
          'fates': 1,
          'occasionally': 1,
          'difficult': 1,
          'distinguish': 1,
          'ndistinguishing': 1,
          'problem': 1,
          'sports': 1,
          'hairstyles': 1,
          'look': 1,
          'confusing': 1,
          'nalso': 1,
          'quite': 1,
          'snappy': 1,
          'comebacks': 1,
          'referring': 1,
          'pop': 1,
          'culture': 1,
          'seinfeld': 1,
          'woody': 1,
          'allen': 1,
          'etc': 1,
          'spoken': 1,
          'forced': 1,
          'given': 1,
          'remaining': 1,
          'dialogue': 1,
          'predominantly': 1,
          'slang': 1,
          'npossibly': 1,
          'attempt': 1,
          'screenwriter': 1,
          'balance': 1,
          'audiences': 1,
          'feel': 1,
          'comfortable': 1,
          'original': 1,
          'happy': 1,
          'little': 1,
          'philosophy': 1,
          'thrown': 1,
          'nmonty': 1,
          'anybody': 1,
          'npos': 1}),
 Counter({'flanagan': 7,
          'sick': 5,
          'life': 5,
          'bob': 4,
          'pain': 4,
          'death': 3,
          'sheree': 3,
          'nthe': 3,
          'disease': 3,
          'acts': 3,
          'also': 3,
          'last': 3,
          'supermasochist': 2,
          'rose': 2,
          'kirby': 2,
          'dick': 2,
          'film': 2,
          'age': 2,
          'cystic': 2,
          'fibrosis': 2,
          'lungs': 2,
          'much': 2,
          'crumb': 2,
          'nbut': 2,
          'man': 2,
          'art': 2,
          'scene': 2,
          'humor': 2,
          'moments': 2,
          'cinematic': 2,
          'nby': 1,
          'fernando': 1,
          'vallejo': 1,
          'nstarring': 1,
          'ninterviews': 1,
          'kathe': 1,
          'burkhart': 1,
          'rita': 1,
          'valencia': 1,
          'nproduced': 1,
          'directed': 1,
          'nrunning': 1,
          'time': 1,
          '90': 1,
          'mins': 1,
          'nthis': 1,
          'rated': 1,
          'central': 1,
          'themes': 1,
          'love': 1,
          'subsequent': 1,
          'effect': 1,
          'persons': 1,
          'nits': 1,
          'protagonist': 1,
          'died': 1,
          '52': 1,
          'suffered': 1,
          'mortal': 1,
          'debilitates': 1,
          'saturating': 1,
          'thick': 1,
          'coats': 1,
          'mucus': 1,
          'preventing': 1,
          'normal': 1,
          'breathing': 1,
          'movie': 1,
          'recouperating': 1,
          'attempting': 1,
          'nan': 1,
          'audacious': 1,
          'fabulously': 1,
          'triumphant': 1,
          'docudrama': 1,
          'chronicles': 1,
          'vicious': 1,
          'unthinkable': 1,
          'sadomasochism': 1,
          'conducted': 1,
          'mistress': 1,
          '15': 1,
          'years': 1,
          'amazingly': 1,
          'provided': 1,
          'footage': 1,
          'nflanagans': 1,
          'idelogy': 1,
          'crosses': 1,
          'realms': 1,
          'rebelliousness': 1,
          'becomes': 1,
          'transcendental': 1,
          'similar': 1,
          'terry': 1,
          'zwigoffs': 1,
          'brilliant': 1,
          '1994': 1,
          'explored': 1,
          'dysfunction': 1,
          'artist': 1,
          'painting': 1,
          'sympathetic': 1,
          'portrait': 1,
          'realistic': 1,
          'one': 1,
          'nboth': 1,
          'revelled': 1,
          'defects': 1,
          'content': 1,
          'enduring': 1,
          'via': 1,
          'inflicted': 1,
          'young': 1,
          'courageously': 1,
          'defying': 1,
          'god': 1,
          'irish': 1,
          'catholic': 1,
          'turning': 1,
          'body': 1,
          'work': 1,
          'unraveled': 1,
          'museums': 1,
          'lectures': 1,
          'nbehold': 1,
          'works': 1,
          'physical': 1,
          'namong': 1,
          'metal': 1,
          'ball': 1,
          'inserted': 1,
          'inside': 1,
          'anus': 1,
          'disturbing': 1,
          'decade': 1,
          'nailing': 1,
          'penis': 1,
          'board': 1,
          'nflanagan': 1,
          'great': 1,
          'intelligence': 1,
          'wit': 1,
          'well': 1,
          'adopting': 1,
          'sense': 1,
          'candidness': 1,
          'scarcely': 1,
          'seen': 1,
          'modern': 1,
          'filmmaking': 1,
          'nnot': 1,
          'approach': 1,
          'peforming': 1,
          'burlesque': 1,
          'front': 1,
          'audience': 1,
          'revitalized': 1,
          'approachment': 1,
          'nmost': 1,
          'make': 1,
          'past': 1,
          'earlier': 1,
          'twenties': 1,
          'theres': 1,
          'subplot': 1,
          'involving': 1,
          'female': 1,
          'devotee': 1,
          'knew': 1,
          'awaiting': 1,
          'n': 1,
          'outstanding': 1,
          'thing': 1,
          'flanagans': 1,
          'relationship': 1,
          'nbrimming': 1,
          'honesty': 1,
          'sensual': 1,
          'stimulation': 1,
          'unapologetically': 1,
          'sad': 1,
          'powerful': 1,
          'bond': 1,
          'lifts': 1,
          'rare': 1,
          'high': 1,
          'forget': 1,
          'auditorium': 1,
          'become': 1,
          'part': 1,
          'people': 1,
          'see': 1,
          'hero': 1,
          'murmuring': 1,
          'words': 1,
          'wife': 1,
          'hospital': 1,
          'bed': 1,
          'struggles': 1,
          'raw': 1,
          'tender': 1,
          'hideous': 1,
          'nit': 1,
          'goes': 1,
          'step': 1,
          'beyond': 1,
          'intimacy': 1,
          'npos': 1}),
 Counter({'finn': 8,
          'expectations': 7,
          'great': 6,
          'quite': 6,
          'estella': 5,
          'films': 3,
          'n': 3,
          'also': 3,
          'story': 3,
          'romeo': 3,
          'high': 2,
          'release': 2,
          'date': 2,
          'late': 2,
          'chances': 2,
          'enough': 2,
          'classic': 2,
          'especially': 2,
          'juliet': 2,
          'life': 2,
          'finns': 2,
          'ms': 2,
          'bancroft': 2,
          'past': 2,
          'never': 2,
          'de': 2,
          'niro': 2,
          'new': 2,
          'art': 2,
          'shes': 2,
          'thats': 2,
          'much': 2,
          'though': 2,
          'nthe': 2,
          'often': 2,
          'understand': 2,
          'would': 2,
          'physical': 2,
          'level': 2,
          'nice': 2,
          'end': 2,
          'studio': 1,
          'must': 1,
          'pushed': 1,
          'december': 1,
          'january': 1,
          'appeared': 1,
          'last': 1,
          'minute': 1,
          'therefore': 1,
          'putting': 1,
          'academy': 1,
          'awards': 1,
          'time': 1,
          '1999': 1,
          'nits': 1,
          'actually': 1,
          'smart': 1,
          'move': 1,
          'updated': 1,
          'take': 1,
          'charles': 1,
          'dickens': 1,
          'tale': 1,
          'isnt': 1,
          'oscar': 1,
          'fodder': 1,
          'strong': 1,
          'distinguished': 1,
          'cinematic': 1,
          'dumping': 1,
          'ground': 1,
          'usually': 1,
          'makes': 1,
          'first': 1,
          'five': 1,
          'six': 1,
          'weeks': 1,
          'given': 1,
          'year': 1,
          'demonstrates': 1,
          'modernize': 1,
          'right': 1,
          'excruciatingly': 1,
          'wretched': 1,
          'excesses': 1,
          'baz': 1,
          'luhrmanns': 1,
          'william': 1,
          'shakespeares': 1,
          'opens': 1,
          'somewhere': 1,
          '1970s': 1,
          'florida': 1,
          'original': 1,
          'set': 1,
          '19thcentury': 1,
          'england': 1,
          'eightyearold': 1,
          'jeremy': 1,
          'james': 1,
          'kissner': 1,
          'meets': 1,
          'trio': 1,
          'people': 1,
          'profound': 1,
          'effect': 1,
          'future': 1,
          'ntheres': 1,
          'icy': 1,
          '11yearold': 1,
          'raquel': 1,
          'beaudene': 1,
          'pseudoplaymate': 1,
          'dinsmoor': 1,
          'anne': 1,
          'estellas': 1,
          'auntie': 1,
          'whos': 1,
          'offkilter': 1,
          'romance': 1,
          'took': 1,
          'mysterious': 1,
          'prisoner': 1,
          'robert': 1,
          'saves': 1,
          'nfinn': 1,
          'lives': 1,
          'sisters': 1,
          'affable': 1,
          'boyfriend': 1,
          'lone': 1,
          'stars': 1,
          'chris': 1,
          'cooper': 1,
          'fancies': 1,
          'aspiring': 1,
          'artist': 1,
          'proves': 1,
          'prowess': 1,
          'whipping': 1,
          'unusual': 1,
          'portrait': 1,
          'using': 1,
          'dinsmoors': 1,
          'lipstick': 1,
          'eyebrow': 1,
          'pencil': 1,
          'wallpaper': 1,
          'dilapidating': 1,
          'mansion': 1,
          'nflash': 1,
          'forward': 1,
          '90s': 1,
          'brief': 1,
          'stop': 1,
          '80s': 1,
          'played': 1,
          'ethan': 1,
          'hawke': 1,
          'despondent': 1,
          'strange': 1,
          'hotandcold': 1,
          'relationship': 1,
          'elusive': 1,
          'gwyneth': 1,
          'paltrow': 1,
          'receives': 1,
          'bit': 1,
          'money': 1,
          'unknown': 1,
          'benefactor': 1,
          'cash': 1,
          'send': 1,
          'york': 1,
          'focus': 1,
          'career': 1,
          'nthere': 1,
          'seems': 1,
          'gain': 1,
          'everything': 1,
          'could': 1,
          'ever': 1,
          'want': 1,
          'wealth': 1,
          'prestige': 1,
          'place': 1,
          'glamorous': 1,
          'world': 1,
          'nwhen': 1,
          'resurfaces': 1,
          'albeit': 1,
          'aloof': 1,
          'fianc': 1,
          'hank': 1,
          'azaria': 1,
          'sees': 1,
          'chance': 1,
          'renew': 1,
          'mutual': 1,
          'attraction': 1,
          'nbut': 1,
          'ghost': 1,
          'going': 1,
          'paying': 1,
          'visit': 1,
          'ncomparisons': 1,
          'aforementioned': 1,
          'seem': 1,
          'inevitable': 1,
          'since': 1,
          'ones': 1,
          'recent': 1,
          'memory': 1,
          'plop': 1,
          'drama': 1,
          'current': 1,
          'setting': 1,
          'better': 1,
          'venture': 1,
          'treats': 1,
          'source': 1,
          'evenhanded': 1,
          'respect': 1,
          'sure': 1,
          'whether': 1,
          'spoof': 1,
          'homage': 1,
          'movie': 1,
          'visual': 1,
          'banquet': 1,
          'thanks': 1,
          'emmanuel': 1,
          'lubezkis': 1,
          'sexy': 1,
          'cinematography': 1,
          'notably': 1,
          'captures': 1,
          'revisited': 1,
          'fountain': 1,
          'kiss': 1,
          'two': 1,
          'leads': 1,
          'luscious': 1,
          'erotic': 1,
          'charge': 1,
          'steamier': 1,
          'surprisingly': 1,
          'muted': 1,
          'love': 1,
          'scenes': 1,
          'eclectic': 1,
          'rock': 1,
          'soundtrack': 1,
          'compliments': 1,
          'onscreen': 1,
          'action': 1,
          'beautifully': 1,
          'songs': 1,
          'tori': 1,
          'amos': 1,
          'mono': 1,
          'duncan': 1,
          'sheik': 1,
          'nacting': 1,
          'credits': 1,
          'firstrate': 1,
          'hiding': 1,
          'screenplays': 1,
          'occasional': 1,
          'slipups': 1,
          'nhawke': 1,
          'sincere': 1,
          'solid': 1,
          'leading': 1,
          'man': 1,
          'something': 1,
          'learned': 1,
          'gattaca': 1,
          'likeable': 1,
          'guy': 1,
          'npaltrows': 1,
          'hand': 1,
          'rather': 1,
          'underdeveloped': 1,
          'nwhile': 1,
          'actress': 1,
          'icily': 1,
          'seductive': 1,
          'best': 1,
          'told': 1,
          'character': 1,
          'result': 1,
          'hard': 1,
          'appreciate': 1,
          'beyond': 1,
          'oh': 1,
          'sometimes': 1,
          'root': 1,
          'although': 1,
          'dont': 1,
          'fueling': 1,
          'fire': 1,
          'nrobert': 1,
          'sophisticated': 1,
          'benevolent': 1,
          'kind': 1,
          'role': 1,
          'rarely': 1,
          'gets': 1,
          'play': 1,
          'acting': 1,
          'spectrum': 1,
          'macabre': 1,
          'throaty': 1,
          'delight': 1,
          'mambos': 1,
          'sucks': 1,
          'cigarettes': 1,
          'eerie': 1,
          'enthusiasm': 1,
          'make': 1,
          'norma': 1,
          'desmond': 1,
          'jealous': 1,
          'nalfonso': 1,
          'cuarons': 1,
          'visually': 1,
          'elegant': 1,
          'direction': 1,
          'helps': 1,
          'distract': 1,
          'dry': 1,
          'moments': 1,
          'pop': 1,
          'frequently': 1,
          'around': 1,
          'movies': 1,
          'climax': 1,
          'nanother': 1,
          'problem': 1,
          'predictability': 1,
          'guess': 1,
          'way': 1,
          'plot': 1,
          'even': 1,
          'arent': 1,
          'familiar': 1,
          'ndespite': 1,
          'script': 1,
          'flaws': 1,
          'undeniably': 1,
          'romantic': 1,
          'without': 1,
          'corny': 1,
          'gloppy': 1,
          'nand': 1,
          'frankly': 1,
          'see': 1,
          'film': 1,
          'embraces': 1,
          'softened': 1,
          'sensuality': 1,
          'explicit': 1,
          'sexuality': 1,
          'nperhaps': 1,
          'renovated': 1,
          'awfully': 1,
          'close': 1,
          'valentines': 1,
          'day': 1,
          'helping': 1,
          'seemingly': 1,
          'average': 1,
          'box': 1,
          'office': 1,
          'npos': 1}),
 Counter({'bond': 11,
          'film': 7,
          'action': 5,
          'nthe': 5,
          'theres': 4,
          'james': 4,
          'films': 4,
          'way': 4,
          'carver': 4,
          'kind': 3,
          'like': 3,
          'works': 3,
          'story': 3,
          '8': 2,
          'matt': 2,
          'using': 2,
          'ever': 2,
          'cliches': 2,
          'tomorrow': 2,
          'never': 2,
          'dies': 2,
          'sequences': 2,
          'always': 2,
          'make': 2,
          'nwhen': 2,
          'come': 2,
          'nthis': 2,
          'could': 2,
          'take': 2,
          'scene': 2,
          'chinese': 2,
          'seems': 2,
          'going': 2,
          'brosnon': 2,
          'escape': 2,
          'jet': 2,
          'tries': 2,
          'get': 2,
          'villain': 2,
          'ability': 2,
          'create': 2,
          'yet': 2,
          'perfect': 2,
          'media': 2,
          'plot': 2,
          'two': 2,
          'run': 2,
          'yeoh': 2,
          'seen': 1,
          'december': 1,
          '28': 1,
          '1997': 1,
          '45': 1,
          'p': 1,
          'crossgates': 1,
          'mall': 1,
          'cinema': 1,
          '18': 1,
          'guilderland': 1,
          'ny': 1,
          'theater': 1,
          'perreault': 1,
          'sister': 1,
          'jena': 1,
          'free': 1,
          'paid': 1,
          'prepaid': 1,
          'passes': 1,
          'nif': 1,
          'exception': 1,
          'perils': 1,
          'excessive': 1,
          'non': 1,
          'stop': 1,
          'nand': 1,
          'proves': 1,
          'pushing': 1,
          'extreme': 1,
          'nopening': 1,
          'almost': 1,
          'break': 1,
          'done': 1,
          'properly': 1,
          'actually': 1,
          'exciting': 1,
          'foreshadow': 1,
          'things': 1,
          'starts': 1,
          'right': 1,
          'foot': 1,
          'establishing': 1,
          'atmosphere': 1,
          'found': 1,
          'movie': 1,
          'sense': 1,
          'selfaware': 1,
          'enclosed': 1,
          'universe': 1,
          'movies': 1,
          'place': 1,
          'nfirst': 1,
          'hightech': 1,
          'slightly': 1,
          'complicated': 1,
          'involving': 1,
          'british': 1,
          'warship': 1,
          'crossing': 1,
          'unfriendly': 1,
          'waters': 1,
          'ntheres': 1,
          'definite': 1,
          'tension': 1,
          'unknown': 1,
          'certainly': 1,
          'hostile': 1,
          'third': 1,
          'party': 1,
          'involved': 1,
          'manipulating': 1,
          'sides': 1,
          'ends': 1,
          'tragedy': 1,
          'clear': 1,
          'powerful': 1,
          'conspiracy': 1,
          'else': 1,
          'call': 1,
          'case': 1,
          'uses': 1,
          'good': 1,
          'judgment': 1,
          'introduces': 1,
          'us': 1,
          'nas': 1,
          'enemy': 1,
          'portrayed': 1,
          'evil': 1,
          'mysterious': 1,
          'clearly': 1,
          'obviously': 1,
          'depicted': 1,
          'outandout': 1,
          'hero': 1,
          'nhe': 1,
          'singlehandedly': 1,
          'takes': 1,
          'small': 1,
          'army': 1,
          'terrorists': 1,
          'must': 1,
          'nick': 1,
          'time': 1,
          'flying': 1,
          'away': 1,
          'fighter': 1,
          'copilot': 1,
          'strangle': 1,
          'terrorist': 1,
          'another': 1,
          'shoot': 1,
          'might': 1,
          'sound': 1,
          'notorious': 1,
          'knows': 1,
          'attention': 1,
          'quickly': 1,
          'nits': 1,
          'payoff': 1,
          'obvious': 1,
          'instead': 1,
          'processes': 1,
          'top': 1,
          'apologizing': 1,
          'creating': 1,
          'witty': 1,
          'hysterical': 1,
          'comedy': 1,
          'nit': 1,
          'less': 1,
          'emphasis': 1,
          'placed': 1,
          'villains': 1,
          'thrillers': 1,
          'anymore': 1,
          'political': 1,
          'correctness': 1,
          'plain': 1,
          'coppingout': 1,
          'behalf': 1,
          'filmmakers': 1,
          'even': 1,
          'term': 1,
          'sounds': 1,
          'passe': 1,
          'nwhat': 1,
          'deserves': 1,
          'kudos': 1,
          'heinous': 1,
          'making': 1,
          'seem': 1,
          'completely': 1,
          'plausible': 1,
          'njonathon': 1,
          'pryce': 1,
          'delivers': 1,
          'performance': 1,
          'arrogant': 1,
          'cunning': 1,
          'elliot': 1,
          'mogul': 1,
          'whose': 1,
          'goal': 1,
          'world': 1,
          'massive': 1,
          'empire': 1,
          'nuclear': 1,
          'weapons': 1,
          'nthrough': 1,
          'interesting': 1,
          'detective': 1,
          'work': 1,
          'english': 1,
          'ministry': 1,
          'defense': 1,
          'believe': 1,
          'behind': 1,
          'trouble': 1,
          'brewing': 1,
          'southern': 1,
          'asian': 1,
          'seas': 1,
          'accurately': 1,
          'cover': 1,
          'news': 1,
          'nnot': 1,
          'original': 1,
          'idea': 1,
          'conflict': 1,
          'one': 1,
          'carry': 1,
          'reality': 1,
          'nsurprisingly': 1,
          'detailed': 1,
          'allows': 1,
          'specific': 1,
          'become': 1,
          'hook': 1,
          'course': 1,
          'cool': 1,
          'gadgets': 1,
          'plenty': 1,
          'goes': 1,
          'investigate': 1,
          'finds': 1,
          'jam': 1,
          'along': 1,
          'much': 1,
          'concentrates': 1,
          'individual': 1,
          'conflicts': 1,
          'general': 1,
          'nsomehow': 1,
          'agent': 1,
          'wai': 1,
          'lin': 1,
          'bumps': 1,
          'many': 1,
          'times': 1,
          'find': 1,
          'working': 1,
          'together': 1,
          'chemistry': 1,
          'rigid': 1,
          'also': 1,
          'spite': 1,
          'constantly': 1,
          'goons': 1,
          'manages': 1,
          'balance': 1,
          'stunts': 1,
          'special': 1,
          'effects': 1,
          'clever': 1,
          'nalthough': 1,
          'far': 1,
          'quite': 1,
          'impressive': 1,
          'terms': 1,
          'cliche': 1,
          'cartoony': 1,
          'plausibility': 1,
          'issue': 1,
          'npos': 1}),
 Counter({'war': 6,
          'nthe': 5,
          'movie': 5,
          'one': 3,
          'nbut': 3,
          'thin': 3,
          'red': 3,
          'line': 3,
          'american': 3,
          'james': 2,
          'jones': 2,
          'number': 2,
          'world': 2,
          'ii': 2,
          'perhaps': 2,
          'novel': 2,
          'masterpiece': 2,
          'malick': 2,
          'cast': 2,
          'characters': 2,
          'soldier': 2,
          'command': 2,
          'plays': 2,
          'perspective': 2,
          'issues': 2,
          'stake': 2,
          'want': 2,
          'win': 2,
          'hours': 2,
          'end': 2,
          'major': 1,
          'novelists': 1,
          'middle': 1,
          'twentieth': 1,
          'century': 1,
          'written': 1,
          'fictional': 1,
          'works': 1,
          'effects': 1,
          'individual': 1,
          'na': 1,
          'veteran': 1,
          'witness': 1,
          'pearl': 1,
          'harbor': 1,
          'bombings': 1,
          'novels': 1,
          'grounded': 1,
          'realism': 1,
          'poetic': 1,
          'nature': 1,
          'nthey': 1,
          'reminiscent': 1,
          'stephen': 1,
          'crane': 1,
          'blunt': 1,
          'eloquence': 1,
          'trait': 1,
          'lends': 1,
          'razorsharp': 1,
          'focus': 1,
          'none': 1,
          'matches': 1,
          'scope': 1,
          'autobiographical': 1,
          'cinematic': 1,
          'director': 1,
          'terrence': 1,
          'books': 1,
          'principal': 1,
          'thirty': 1,
          'trimmed': 1,
          'rendition': 1,
          'still': 1,
          'retains': 1,
          'endearing': 1,
          'value': 1,
          'neach': 1,
          'roles': 1,
          'everyman': 1,
          'quality': 1,
          'emphasizing': 1,
          'examination': 1,
          'ntheres': 1,
          'definitive': 1,
          'chain': 1,
          'present': 1,
          'also': 1,
          'motivations': 1,
          'importantly': 1,
          'intrinsic': 1,
          'dynamic': 1,
          'effective': 1,
          'voiceover': 1,
          'used': 1,
          'nmalick': 1,
          'several': 1,
          'relating': 1,
          'thoughts': 1,
          'giving': 1,
          'viewer': 1,
          'greater': 1,
          'many': 1,
          'ntold': 1,
          'limited': 1,
          'thirdperson': 1,
          'opposed': 1,
          'topdown': 1,
          'omniscient': 1,
          'view': 1,
          'entails': 1,
          'struggle': 1,
          'infantry': 1,
          'company': 1,
          'cforcharlie': 1,
          'take': 1,
          'hill': 1,
          'conflict': 1,
          'guadalcanal': 1,
          'south': 1,
          'pacific': 1,
          'island': 1,
          'seen': 1,
          'top': 1,
          'brass': 1,
          'key': 1,
          'position': 1,
          'armed': 1,
          'forces': 1,
          'hold': 1,
          'nand': 1,
          'nin': 1,
          'excellent': 1,
          'performance': 1,
          'nick': 1,
          'nolte': 1,
          'cforcharlies': 1,
          'commanding': 1,
          'officer': 1,
          'lt': 1,
          'col': 1,
          'gordon': 1,
          'tall': 1,
          'nhes': 1,
          'aging': 1,
          'embodies': 1,
          'winatallcosts': 1,
          'mentality': 1,
          'impress': 1,
          'superior': 1,
          'john': 1,
          'travolta': 1,
          'questionable': 1,
          'cameo': 1,
          'nthis': 1,
          'philosophy': 1,
          'opposite': 1,
          'captain': 1,
          'bugger': 1,
          'staros': 1,
          'elias': 1,
          'koteas': 1,
          'dearly': 1,
          'values': 1,
          'life': 1,
          'every': 1,
          'men': 1,
          'nat': 1,
          'front': 1,
          'privates': 1,
          'corporals': 1,
          'adrien': 1,
          'brody': 1,
          'caviezel': 1,
          'ben': 1,
          'chaplin': 1,
          'et': 1,
          'al': 1,
          'lead': 1,
          '1st': 1,
          'sgt': 1,
          'nwelsh': 1,
          'sean': 1,
          'penn': 1,
          'must': 1,
          'actually': 1,
          'execute': 1,
          'suicide': 1,
          'orders': 1,
          'handed': 1,
          'filled': 1,
          'intense': 1,
          'visual': 1,
          'poetry': 1,
          'nearly': 1,
          'three': 1,
          'long': 1,
          'nalthough': 1,
          'interest': 1,
          'level': 1,
          'high': 1,
          'throughout': 1,
          'first': 1,
          'two': 1,
          'climax': 1,
          'comes': 1,
          'fortyfive': 1,
          'minutes': 1,
          'goes': 1,
          'without': 1,
          'saying': 1,
          'drags': 1,
          'back': 1,
          'doubtless': 1,
          'compared': 1,
          '1998s': 1,
          'saving': 1,
          'private': 1,
          'ryan': 1,
          'countless': 1,
          'times': 1,
          'belittle': 1,
          'films': 1,
          'although': 1,
          'similarities': 1,
          'abound': 1,
          'differences': 1,
          'ndirector': 1,
          'story': 1,
          'tell': 1,
          'interested': 1,
          'listening': 1,
          'outstanding': 1,
          'npos': 1}),
 Counter({'film': 8,
          'nthe': 6,
          'jeanne': 5,
          'time': 4,
          'nand': 4,
          'nothing': 4,
          'life': 3,
          'nin': 3,
          'lost': 3,
          'besson': 3,
          'girl': 3,
          'france': 3,
          'nhe': 3,
          'god': 3,
          'english': 3,
          'malcovich': 3,
          'characters': 3,
          'part': 3,
          'messenger': 3,
          'darc': 2,
          'history': 2,
          'story': 2,
          'nshe': 2,
          'saint': 2,
          'peasant': 2,
          'stake': 2,
          'tries': 2,
          'blood': 2,
          'support': 2,
          'age': 2,
          'jovovich': 2,
          'jeannes': 2,
          'starts': 2,
          'army': 2,
          'wise': 2,
          'dunaway': 2,
          'john': 2,
          'grand': 2,
          'battlefield': 2,
          'sequences': 2,
          'occasionally': 2,
          'dreamy': 2,
          'adrenaline': 2,
          'pumping': 2,
          'nbut': 2,
          'although': 2,
          'small': 2,
          'confused': 2,
          'sense': 2,
          'end': 2,
          'nthere': 2,
          'brave': 2,
          'nit': 2,
          'energetic': 1,
          'visually': 1,
          'stunning': 1,
          'intellectually': 1,
          'hollow': 1,
          'recreation': 1,
          'mysterious': 1,
          'ocean': 1,
          'mystery': 1,
          'controversy': 1,
          'creates': 1,
          'perfect': 1,
          'launching': 1,
          'pad': 1,
          'talented': 1,
          'creative': 1,
          'directors': 1,
          'basically': 1,
          'alter': 1,
          'wish': 1,
          'came': 1,
          'people': 1,
          'desperately': 1,
          'needed': 1,
          'na': 1,
          'hero': 1,
          'could': 1,
          'rescue': 1,
          'misery': 1,
          'deliver': 1,
          'peace': 1,
          'happiness': 1,
          'ndirectorwriter': 1,
          'luc': 1,
          'nikita': 1,
          'leon': 1,
          'portrays': 1,
          'version': 1,
          'commanded': 1,
          'armies': 1,
          'burned': 1,
          'witchcraft': 1,
          'nbesson': 1,
          'recreate': 1,
          'person': 1,
          'behind': 1,
          'legend': 1,
          'show': 1,
          'villain': 1,
          'shows': 1,
          'human': 1,
          'almost': 1,
          'pouring': 1,
          'sky': 1,
          'air': 1,
          'smelled': 1,
          'rotten': 1,
          'flesh': 1,
          'hard': 1,
          'keep': 1,
          'sanity': 1,
          'hope': 1,
          'nat': 1,
          '13': 1,
          'milla': 1,
          'watches': 1,
          'sister': 1,
          'murdered': 1,
          'raped': 1,
          'soldiers': 1,
          'nthis': 1,
          'terrible': 1,
          'event': 1,
          'makes': 1,
          'lasting': 1,
          'impact': 1,
          'mind': 1,
          'ngod': 1,
          'longer': 1,
          'become': 1,
          'obsession': 1,
          'seeing': 1,
          'visions': 1,
          'signs': 1,
          'command': 1,
          'raise': 1,
          'free': 1,
          'siege': 1,
          'tyranny': 1,
          'nwith': 1,
          'help': 1,
          'yolande': 1,
          'daragon': 1,
          'faye': 1,
          'charles': 1,
          'vii': 1,
          'whose': 1,
          'royal': 1,
          'ambitions': 1,
          'raises': 1,
          'marches': 1,
          'towards': 1,
          'walls': 1,
          'nafter': 1,
          'stays': 1,
          'mostly': 1,
          'demonstrates': 1,
          'ability': 1,
          'direct': 1,
          'amazing': 1,
          'action': 1,
          'resorting': 1,
          'calmer': 1,
          'tempo': 1,
          'movie': 1,
          'filled': 1,
          'symbolic': 1,
          'images': 1,
          'pure': 1,
          'artistic': 1,
          'craftsmanship': 1,
          'create': 1,
          'surreal': 1,
          'paranoiac': 1,
          'atmosphere': 1,
          'space': 1,
          'hysterically': 1,
          'jumping': 1,
          'back': 1,
          'forth': 1,
          'thoughts': 1,
          'imagination': 1,
          'conscience': 1,
          'nbessons': 1,
          'visual': 1,
          'style': 1,
          'permits': 1,
          'audience': 1,
          'enter': 1,
          'medieval': 1,
          'feel': 1,
          'smell': 1,
          'fresh': 1,
          'body': 1,
          'heat': 1,
          'battle': 1,
          'far': 1,
          'flawless': 1,
          'script': 1,
          'needs': 1,
          'lot': 1,
          'polishing': 1,
          'nexcept': 1,
          'real': 1,
          'star': 1,
          'cast': 1,
          'assembled': 1,
          'props': 1,
          'alive': 1,
          'costumes': 1,
          'wearing': 1,
          'nas': 1,
          'maiden': 1,
          'lorraine': 1,
          'portrayed': 1,
          'simple': 1,
          'divine': 1,
          'task': 1,
          'latter': 1,
          'see': 1,
          'hysterical': 1,
          'brink': 1,
          'madness': 1,
          'past': 1,
          'purity': 1,
          'innocence': 1,
          'ever': 1,
          'njovovich': 1,
          'handles': 1,
          'panache': 1,
          'one': 1,
          'might': 1,
          'expect': 1,
          'though': 1,
          'screen': 1,
          'incredible': 1,
          'excessive': 1,
          'titus': 1,
          'surpass': 1,
          'rather': 1,
          'overacted': 1,
          'simply': 1,
          'unprofessional': 1,
          'performance': 1,
          'even': 1,
          'hoffman': 1,
          'manages': 1,
          'breathe': 1,
          'dreadfully': 1,
          'nbesides': 1,
          'casting': 1,
          'bessons': 1,
          'mistake': 1,
          'extreme': 1,
          'patriotism': 1,
          'ruins': 1,
          'gloriously': 1,
          'crafted': 1,
          'painting': 1,
          'viscously': 1,
          'evil': 1,
          'englishmen': 1,
          'murder': 1,
          'pillage': 1,
          'betray': 1,
          'smile': 1,
          'faces': 1,
          'incredibly': 1,
          'noble': 1,
          'frenchmen': 1,
          'represented': 1,
          'three': 1,
          'musketeers': 1,
          'gilles': 1,
          'de': 1,
          'rais': 1,
          'vincent': 1,
          'cassel': 1,
          'aulon': 1,
          'desmond': 1,
          'harrington': 1,
          'strong': 1,
          'la': 1,
          'hire': 1,
          'richard': 1,
          'ridings': 1,
          'nthough': 1,
          'actor': 1,
          'perform': 1,
          'well': 1,
          'symbols': 1,
          'banners': 1,
          'proclaim': 1,
          'glory': 1,
          'thus': 1,
          'realism': 1,
          'muscles': 1,
          'instead': 1,
          'brains': 1,
          'relief': 1,
          'lays': 1,
          'armor': 1,
          'thinking': 1,
          'ndustin': 1,
          'hoffmans': 1,
          'appearance': 1,
          'helps': 1,
          'ends': 1,
          'elegantly': 1,
          'surprisingly': 1,
          'effective': 1,
          'climax': 1,
          'worthy': 1,
          'praise': 1,
          'njeannes': 1,
          'character': 1,
          'unlocked': 1,
          'whether': 1,
          'picture': 1,
          'never': 1,
          'quite': 1,
          'explained': 1,
          'nwas': 1,
          'driven': 1,
          'hunger': 1,
          'revenge': 1,
          'truly': 1,
          'poses': 1,
          'many': 1,
          'questions': 1,
          'answers': 1,
          'completely': 1,
          'obvious': 1,
          'nbess': 1,
          'fairly': 1,
          'good': 1,
          'much': 1,
          'remember': 1,
          'leave': 1,
          'theater': 1,
          'nmaybe': 1,
          'sound': 1,
          'certainly': 1,
          'dialogue': 1,
          'elegant': 1,
          'lesson': 1,
          'mtvgeneration': 1,
          'presents': 1,
          'interesting': 1,
          'material': 1,
          'works': 1,
          'better': 1,
          'npos': 1}),
 Counter({'nthe': 11,
          'attacks': 9,
          'mars': 8,
          'alien': 7,
          'invasion': 5,
          'independence': 5,
          'day': 5,
          'burtons': 4,
          'human': 4,
          'first': 4,
          'movie': 4,
          'films': 4,
          'red': 3,
          'nis': 3,
          'old': 3,
          'movies': 3,
          'special': 3,
          'america': 3,
          'people': 3,
          'world': 3,
          'burton': 3,
          'aliens': 3,
          'sure': 2,
          'work': 2,
          'tim': 2,
          'comedy': 2,
          'works': 2,
          'nand': 2,
          'doesnt': 2,
          'invading': 2,
          'planet': 2,
          'blasting': 2,
          'us': 2,
          'released': 2,
          'effects': 2,
          'nbut': 2,
          'big': 2,
          'beings': 2,
          'greedy': 2,
          'saucers': 2,
          'dead': 2,
          'nits': 2,
          'next': 2,
          'way': 2,
          'characters': 2,
          'setting': 2,
          'good': 2,
          'thing': 2,
          'stars': 2,
          'lot': 2,
          'president': 2,
          'take': 2,
          'power': 2,
          'role': 2,
          'martians': 2,
          'show': 2,
          'funny': 2,
          'invaders': 2,
          'little': 2,
          'scenes': 2,
          'make': 2,
          'production': 2,
          'actually': 2,
          'im': 1,
          'quite': 1,
          'say': 1,
          'obviously': 1,
          'deranged': 1,
          'genius': 1,
          'nwhen': 1,
          'twisted': 1,
          'really': 1,
          'breathtaking': 1,
          'hilarious': 1,
          'equal': 1,
          'measure': 1,
          'dull': 1,
          'nim': 1,
          'even': 1,
          'often': 1,
          'counts': 1,
          'gleefully': 1,
          'evil': 1,
          'force': 1,
          'gets': 1,
          'business': 1,
          'kingdom': 1,
          'come': 1,
          'brilliant': 1,
          'nmars': 1,
          'based': 1,
          'rather': 1,
          'unsavory': 1,
          'series': 1,
          'trading': 1,
          'cards': 1,
          'topps': 1,
          '1950s': 1,
          'takes': 1,
          'cues': 1,
          'sources': 1,
          'summers': 1,
          'flicks': 1,
          'disaster': 1,
          'bigbudget': 1,
          'extravaganzas': 1,
          'unlike': 1,
          'painfully': 1,
          'middleoftheroad': 1,
          'appeal': 1,
          'hearts': 1,
          'minds': 1,
          'wallets': 1,
          'nhas': 1,
          'fully': 1,
          'developed': 1,
          'personal': 1,
          'sense': 1,
          'wonder': 1,
          'difference': 1,
          'celebrated': 1,
          'resilience': 1,
          'nportrays': 1,
          'hapless': 1,
          'schmucks': 1,
          'title': 1,
          'sequence': 1,
          'splendid': 1,
          'incredible': 1,
          'swarm': 1,
          'flying': 1,
          'rises': 1,
          'canals': 1,
          'storms': 1,
          'earthward': 1,
          'solar': 1,
          'system': 1,
          'formation': 1,
          'spinning': 1,
          'metal': 1,
          'ringers': 1,
          'forces': 1,
          'past': 1,
          'appearance': 1,
          'screen': 1,
          'combination': 1,
          'danny': 1,
          'elfmans': 1,
          'thundering': 1,
          'theremindriven': 1,
          'score': 1,
          'absolutely': 1,
          'jawdropping': 1,
          'overwhelming': 1,
          'swear': 1,
          'trouble': 1,
          'breathing': 1,
          'lays': 1,
          'low': 1,
          '40': 1,
          'minutes': 1,
          'nwe': 1,
          'get': 1,
          'glimpse': 1,
          'leader': 1,
          'resplendent': 1,
          'purplesequined': 1,
          'cape': 1,
          'television': 1,
          'message': 1,
          'broadcast': 1,
          'naturally': 1,
          'communicate': 1,
          'earthlings': 1,
          'preempt': 1,
          'regularly': 1,
          'scheduled': 1,
          'programming': 1,
          'mostly': 1,
          'act': 1,
          'spent': 1,
          'developing': 1,
          'mildly': 1,
          'comic': 1,
          'situations': 1,
          'drawing': 1,
          'quirky': 1,
          'dishearteningly': 1,
          'drab': 1,
          'picture': 1,
          'according': 1,
          'compelling': 1,
          'personality': 1,
          'belongs': 1,
          'interested': 1,
          'making': 1,
          'caricatures': 1,
          'nanyone': 1,
          'comes': 1,
          'nexpecting': 1,
          'see': 1,
          'one': 1,
          'favorite': 1,
          'actor': 1,
          'bound': 1,
          'disappointed': 1,
          'exceptions': 1,
          'dispatched': 1,
          'film': 1,
          'progresses': 1,
          'njack': 1,
          'nicholson': 1,
          'fun': 1,
          'united': 1,
          'states': 1,
          'fizzles': 1,
          'sleazy': 1,
          'las': 1,
          'vegas': 1,
          'hotel': 1,
          'developer': 1,
          'rod': 1,
          'steiger': 1,
          'amusing': 1,
          'enough': 1,
          'dr': 1,
          'strangeloves': 1,
          'buck': 1,
          'turgidson': 1,
          'glenn': 1,
          'close': 1,
          'brings': 1,
          'star': 1,
          'lady': 1,
          'martin': 1,
          'short': 1,
          'presidential': 1,
          'aide': 1,
          'meets': 1,
          'white': 1,
          'houses': 1,
          'kennedy': 1,
          'room': 1,
          'secluded': 1,
          'nook': 1,
          'unwittingly': 1,
          'tries': 1,
          'seduce': 1,
          'dressed': 1,
          'bighaired': 1,
          'pointybreasted': 1,
          'sexpot': 1,
          'lisa': 1,
          'marie': 1,
          'flame': 1,
          'played': 1,
          'vampira': 1,
          'ed': 1,
          'wood': 1,
          'earlier': 1,
          'scene': 1,
          'made': 1,
          'clear': 1,
          'studied': 1,
          'sexuality': 1,
          'pages': 1,
          'issue': 1,
          'playboy': 1,
          'nsarah': 1,
          'jessica': 1,
          'parker': 1,
          'hosts': 1,
          'tv': 1,
          'michael': 1,
          'j': 1,
          'fox': 1,
          'newsman': 1,
          'husband': 1,
          'octogenarian': 1,
          'sylvia': 1,
          'sidney': 1,
          'part': 1,
          'woman': 1,
          'cackles': 1,
          'blew': 1,
          'congress': 1,
          'plays': 1,
          'decisive': 1,
          'defeat': 1,
          'menace': 1,
          'njim': 1,
          'brown': 1,
          'tom': 1,
          'jones': 1,
          'vegasbased': 1,
          'heroes': 1,
          'director': 1,
          'barbet': 1,
          'schroeder': 1,
          'reversal': 1,
          'fortune': 1,
          'cameo': 1,
          'unfortunate': 1,
          'french': 1,
          'nalso': 1,
          'hand': 1,
          'underutilized': 1,
          'annette': 1,
          'bening': 1,
          'pierce': 1,
          'brosnan': 1,
          'pam': 1,
          'grier': 1,
          'lukas': 1,
          'haas': 1,
          'natalie': 1,
          'portman': 1,
          'latter': 1,
          'two': 1,
          'also': 1,
          'woody': 1,
          'allens': 1,
          'everyone': 1,
          'says': 1,
          'love': 1,
          'real': 1,
          'course': 1,
          'computergenerated': 1,
          'theyre': 1,
          'fantastic': 1,
          'nwith': 1,
          'bare': 1,
          'brains': 1,
          'glistening': 1,
          'atop': 1,
          'grinning': 1,
          'skullfaces': 1,
          'round': 1,
          'eggeyes': 1,
          'pupils': 1,
          'darting': 1,
          'animated': 1,
          'malevolence': 1,
          'incarnate': 1,
          'joe': 1,
          'dantes': 1,
          'gremlins': 1,
          'closest': 1,
          'equivalent': 1,
          'recent': 1,
          'memory': 1,
          'monsters': 1,
          'inventive': 1,
          'raison': 1,
          'detre': 1,
          'crimes': 1,
          'mankind': 1,
          'famous': 1,
          'monuments': 1,
          'crumble': 1,
          'assault': 1,
          'easter': 1,
          'island': 1,
          'turned': 1,
          'bowling': 1,
          'alley': 1,
          'nasty': 1,
          'buggers': 1,
          'perform': 1,
          'hideous': 1,
          'medical': 1,
          'experiments': 1,
          'captured': 1,
          'humans': 1,
          'sheer': 1,
          'level': 1,
          'mayhem': 1,
          'staggering': 1,
          'especially': 1,
          'attack': 1,
          'iridescent': 1,
          'skeletons': 1,
          'nparents': 1,
          'urged': 1,
          'pay': 1,
          'attention': 1,
          'pg13': 1,
          'rating': 1,
          'earned': 1,
          'vary': 1,
          'charming': 1,
          'astonishing': 1,
          'deliciously': 1,
          'cheesy': 1,
          'least': 1,
          'couple': 1,
          'shots': 1,
          'mass': 1,
          'destruction': 1,
          'seem': 1,
          'engineered': 1,
          'specifically': 1,
          'response': 1,
          'although': 1,
          'nwas': 1,
          'long': 1,
          'release': 1,
          'ncinematographer': 1,
          'peter': 1,
          'suschitzky': 1,
          'makes': 1,
          'wynn': 1,
          'thomass': 1,
          'wildly': 1,
          'imaginative': 1,
          'design': 1,
          'thomas': 1,
          'helped': 1,
          'define': 1,
          'spike': 1,
          'lee': 1,
          'style': 1,
          'took': 1,
          'time': 1,
          'nregimen': 1,
          'shoot': 1,
          'crash': 1,
          'david': 1,
          'cronenberg': 1,
          'ncronenbergs': 1,
          'almost': 1,
          'certainly': 1,
          'somber': 1,
          'wont': 1,
          'u': 1,
          'early': 1,
          'year': 1,
          'surely': 1,
          'similarly': 1,
          'elegant': 1,
          'nightmare': 1,
          'nthis': 1,
          'nice': 1,
          'n': 1,
          'studio': 1,
          'executive': 1,
          'duped': 1,
          'giving': 1,
          '70': 1,
          'million': 1,
          'nby': 1,
          'final': 1,
          'nearly': 1,
          'empty': 1,
          'holocaustravaged': 1,
          'conveniently': 1,
          'avoided': 1,
          'epic': 1,
          'suggests': 1,
          'weve': 1,
          'got': 1,
          'may': 1,
          'worth': 1,
          'saving': 1,
          'many': 1,
          'victims': 1,
          'naive': 1,
          'disastrously': 1,
          'selfabsorbed': 1,
          'since': 1,
          'wicked': 1,
          'charm': 1,
          'dependent': 1,
          'ability': 1,
          'partly': 1,
          'wishfulfillment': 1,
          'fantasy': 1,
          'surviving': 1,
          'cast': 1,
          'members': 1,
          'innocents': 1,
          'entertainers': 1,
          'triumph': 1,
          'determining': 1,
          'ultimate': 1,
          'elitists': 1,
          'susceptible': 1,
          'kitschiest': 1,
          'strains': 1,
          'american': 1,
          'pop': 1,
          'culture': 1,
          'nultimately': 1,
          'messy': 1,
          'masterpiece': 1,
          'years': 1,
          'funniest': 1,
          'weird': 1,
          'winking': 1,
          'affirmation': 1,
          'npos': 1}),
 Counter({'damme': 4,
          'movie': 4,
          'van': 4,
          'action': 3,
          'rodman': 3,
          'good': 3,
          'get': 3,
          'quinn': 3,
          'like': 3,
          'nvan': 2,
          'nice': 2,
          'gets': 2,
          'want': 2,
          'double': 2,
          'team': 2,
          'dennis': 2,
          'hes': 2,
          'dammes': 2,
          'fun': 2,
          'back': 2,
          'one': 2,
          'mission': 2,
          'spy': 2,
          'would': 2,
          'character': 2,
          'also': 2,
          'old': 2,
          'named': 2,
          'stavros': 2,
          'various': 2,
          'seen': 2,
          'capsule': 1,
          'trippy': 1,
          'hyperspeed': 1,
          'machine': 1,
          'hong': 1,
          'kongs': 1,
          'accomplished': 1,
          'tsui': 1,
          'hark': 1,
          'chemistry': 1,
          'stunts': 1,
          'eyepopping': 1,
          'stuff': 1,
          'blowed': 1,
          'real': 1,
          'ni': 1,
          'admit': 1,
          'set': 1,
          'loathe': 1,
          'reeked': 1,
          'cheapjack': 1,
          'timingoriented': 1,
          'marketing': 1,
          'stick': 1,
          'quick': 1,
          'hot': 1,
          'something': 1,
          'jeanclaude': 1,
          'flagging': 1,
          'career': 1,
          'nsurprise': 1,
          'transcends': 1,
          'dumb': 1,
          'roots': 1,
          'turns': 1,
          'mess': 1,
          'nbring': 1,
          'friends': 1,
          'pretzels': 1,
          'blast': 1,
          'jack': 1,
          'exagent': 1,
          'brought': 1,
          'last': 1,
          'youd': 1,
          'think': 1,
          'worth': 1,
          'shoe': 1,
          'phone': 1,
          'run': 1,
          'hell': 1,
          'hears': 1,
          'words': 1,
          'nbut': 1,
          'pregnant': 1,
          'wife': 1,
          'whos': 1,
          'sculptor': 1,
          'unpleasant': 1,
          'pressure': 1,
          'used': 1,
          'come': 1,
          'nhes': 1,
          'assigned': 1,
          'take': 1,
          'enemy': 1,
          'terrorist': 1,
          'mickey': 1,
          'rourke': 1,
          'looking': 1,
          'oddly': 1,
          'subdued': 1,
          'may': 1,
          'tricks': 1,
          'nin': 1,
          'first': 1,
          'showdown': 1,
          'wears': 1,
          'ambitions': 1,
          'proudly': 1,
          'sleeve': 1,
          'nonstop': 1,
          'nan': 1,
          'amusement': 1,
          'park': 1,
          'hospital': 1,
          'private': 1,
          'retired': 1,
          'retreat': 1,
          'rome': 1,
          'houses': 1,
          'planes': 1,
          'cars': 1,
          'modes': 1,
          'transport': 1,
          'coliseum': 1,
          'nall': 1,
          'become': 1,
          'arenas': 1,
          'bonerattling': 1,
          'shootouts': 1,
          'punchouts': 1,
          'filmed': 1,
          'nthey': 1,
          'better': 1,
          'described': 1,
          'reason': 1,
          'enough': 1,
          'see': 1,
          'film': 1,
          'jawdropping': 1,
          'scene': 1,
          'taking': 1,
          'man': 1,
          'uses': 1,
          'switchblade': 1,
          'feet': 1,
          'n': 1,
          'dextrous': 1,
          'athlete': 1,
          'fighter': 1,
          'often': 1,
          'upstaged': 1,
          'nthere': 1,
          'touches': 1,
          'nstavros': 1,
          'thing': 1,
          'retire': 1,
          'peace': 1,
          'families': 1,
          'nthat': 1,
          'ambition': 1,
          'ties': 1,
          'together': 1,
          'ways': 1,
          'humanizes': 1,
          'bit': 1,
          'none': 1,
          'things': 1,
          'hk': 1,
          'movies': 1,
          'theres': 1,
          'always': 1,
          'form': 1,
          'human': 1,
          'element': 1,
          'thats': 1,
          'carried': 1,
          'well': 1,
          'nit': 1,
          'gives': 1,
          'weight': 1,
          'scenes': 1,
          'otherwise': 1,
          'forgettable': 1,
          'nalso': 1,
          'playing': 1,
          'weapons': 1,
          'dealer': 1,
          'yaz': 1,
          'sticks': 1,
          'fistful': 1,
          'broken': 1,
          'fingers': 1,
          'funny': 1,
          'standing': 1,
          'nrodman': 1,
          'natural': 1,
          'screen': 1,
          'watch': 1,
          'especially': 1,
          'slinging': 1,
          'bad': 1,
          'guys': 1,
          'basketballs': 1,
          'deserves': 1,
          'based': 1,
          'whats': 1,
          'lightweight': 1,
          'fastmoving': 1,
          'entertainment': 1,
          'showcases': 1,
          'pieces': 1,
          'excellently': 1,
          'npos': 1}),
 Counter({'grodin': 6,
          'heartbreak': 5,
          'kid': 5,
          'character': 5,
          'nthe': 5,
          'nas': 4,
          'sheppard': 3,
          'time': 3,
          'film': 3,
          'charles': 2,
          'cybill': 2,
          'one': 2,
          'obnoxious': 2,
          'characters': 2,
          'long': 2,
          'guy': 2,
          'movie': 2,
          'way': 2,
          'ever': 2,
          'bride': 2,
          'type': 2,
          'written': 2,
          'nhowever': 2,
          'problem': 2,
          'grodins': 2,
          'scene': 2,
          'n': 2,
          'relationships': 2,
          'hes': 2,
          'could': 2,
          'reviewed': 1,
          'aug': 1,
          '26th1998': 1,
          'nstarring': 1,
          'eddie': 1,
          'albert': 1,
          'nin': 1,
          'plays': 1,
          'unbelievably': 1,
          'ive': 1,
          'seen': 1,
          'screen': 1,
          'nhes': 1,
          'spends': 1,
          'virtually': 1,
          'entire': 1,
          'running': 1,
          'bullshitting': 1,
          'situation': 1,
          'another': 1,
          'ni': 1,
          'doubt': 1,
          'expressed': 1,
          'genuine': 1,
          'feeling': 1,
          'opens': 1,
          'gotten': 1,
          'married': 1,
          'miami': 1,
          'beach': 1,
          'honeymoon': 1,
          'nhalfway': 1,
          'begins': 1,
          'resent': 1,
          'nby': 1,
          'arrives': 1,
          'hotel': 1,
          'met': 1,
          'ready': 1,
          'divorce': 1,
          'wife': 1,
          'played': 1,
          'person': 1,
          'nothing': 1,
          'good': 1,
          'enough': 1,
          'phrase': 1,
          'grass': 1,
          'always': 1,
          'greener': 1,
          'side': 1,
          'fence': 1,
          'practically': 1,
          'mind': 1,
          'finds': 1,
          'something': 1,
          'really': 1,
          'wants': 1,
          'pursue': 1,
          'takes': 1,
          'immediately': 1,
          'loses': 1,
          'interest': 1,
          'end': 1,
          'hilarious': 1,
          'sad': 1,
          'reason': 1,
          'ncharles': 1,
          'smarmy': 1,
          'best': 1,
          'quite': 1,
          'appealing': 1,
          'object': 1,
          'desire': 1,
          'real': 1,
          'stealer': 1,
          'jeannie': 1,
          'berlin': 1,
          'daughter': 1,
          'director': 1,
          'elaine': 1,
          'may': 1,
          'whiny': 1,
          'nshe': 1,
          'owns': 1,
          'every': 1,
          'shes': 1,
          'makes': 1,
          'almost': 1,
          'want': 1,
          'root': 1,
          'trying': 1,
          'neil': 1,
          'simon': 1,
          'shows': 1,
          'nsimon': 1,
          'loves': 1,
          'deconstruct': 1,
          'analyze': 1,
          'human': 1,
          'top': 1,
          'game': 1,
          'maddeningly': 1,
          'everyone': 1,
          'knows': 1,
          'george': 1,
          'costanza': 1,
          'seinfeld': 1,
          'seems': 1,
          'modelled': 1,
          'funny': 1,
          'billed': 1,
          'comedy': 1,
          'much': 1,
          'see': 1,
          'realism': 1,
          'would': 1,
          'nice': 1,
          'chuckle': 1,
          'date': 1,
          'nit': 1,
          'extremely': 1,
          'negative': 1,
          'view': 1,
          'seeing': 1,
          'girlfriendboyfriend': 1,
          'hazardus': 1,
          'health': 1,
          'npos': 1}),
 Counter({'movie': 7,
          'see': 4,
          'osment': 3,
          'thing': 2,
          'ive': 2,
          'willis': 2,
          'whole': 2,
          'better': 2,
          'sixth': 2,
          'sense': 2,
          'cute': 2,
          'year': 2,
          'nif': 2,
          'director': 2,
          'performance': 2,
          'seen': 2,
          'matches': 2,
          'none': 2,
          'like': 2,
          'curious': 1,
          'found': 1,
          'called': 1,
          'carry': 1,
          'hes': 1,
          'much': 1,
          'neven': 1,
          'though': 1,
          'name': 1,
          'doesnt': 1,
          'pivotal': 1,
          'role': 1,
          'nthat': 1,
          'honour': 1,
          'goes': 1,
          'haley': 1,
          'plays': 1,
          'cole': 1,
          'sear': 1,
          'pun': 1,
          'seer': 1,
          '9': 1,
          'old': 1,
          'boy': 1,
          'ghosts': 1,
          'precious': 1,
          'going': 1,
          'maudlin': 1,
          'would': 1,
          'nothing': 1,
          'movieoftheweek': 1,
          'thankfully': 1,
          'instances': 1,
          'blows': 1,
          'everyone': 1,
          'else': 1,
          'screen': 1,
          'bravura': 1,
          'nwe': 1,
          'get': 1,
          'fears': 1,
          'vulnerabilities': 1,
          'strengths': 1,
          'intelligence': 1,
          'makes': 1,
          'one': 1,
          'best': 1,
          'movies': 1,
          'nthe': 1,
          'cast': 1,
          'quality': 1,
          'giving': 1,
          'fairly': 1,
          'low': 1,
          'key': 1,
          'subject': 1,
          'matter': 1,
          'target': 1,
          'nthis': 1,
          'isnt': 1,
          'sfxfest': 1,
          'haunting': 1,
          'gorefest': 1,
          'id': 1,
          'call': 1,
          'supernatural': 1,
          'drama': 1,
          'interested': 1,
          'characters': 1,
          'dazzling': 1,
          'makeup': 1,
          'caveat': 1,
          'theres': 1,
          'lovely': 1,
          'twist': 1,
          'something': 1,
          'usual': 1,
          'suspects': 1,
          'end': 1,
          'replaying': 1,
          'head': 1,
          'rethinking': 1,
          'ni': 1,
          'extremely': 1,
          'lucky': 1,
          'sneak': 1,
          'preview': 1,
          'toronto': 1,
          'hype': 1,
          'critical': 1,
          'reviews': 1,
          'went': 1,
          'biases': 1,
          'anyone': 1,
          'want': 1,
          'talk': 1,
          'dont': 1,
          'let': 1,
          'nlet': 1,
          'explain': 1,
          'pace': 1,
          'youll': 1,
          'enjoy': 1,
          'vastly': 1,
          'npos': 1}),
 Counter({'nthe': 8,
          'film': 5,
          'emperors': 4,
          'new': 4,
          'groove': 4,
          'emperor': 3,
          'like': 3,
          'make': 3,
          'characters': 2,
          'funny': 2,
          'would': 2,
          'humor': 2,
          'dry': 2,
          'story': 2,
          'schizophrenia': 2,
          'adventures': 2,
          'kuzco': 2,
          'spade': 2,
          'eartha': 2,
          'kitt': 2,
          'assistant': 2,
          'kronk': 2,
          'llama': 2,
          'john': 2,
          'theme': 2,
          'disney': 2,
          'films': 2,
          'days': 2,
          'singer': 2,
          'old': 2,
          'dialogue': 2,
          'several': 2,
          'thing': 2,
          'best': 2,
          'enjoy': 2,
          'ill': 1,
          'first': 1,
          'admit': 1,
          'didnt': 1,
          'expect': 1,
          'much': 1,
          'celine': 1,
          'dionesque': 1,
          'songanddance': 1,
          'numbers': 1,
          'cuddly': 1,
          'become': 1,
          'crosspromotion': 1,
          'devices': 1,
          'mcdonalds': 1,
          'happy': 1,
          'meals': 1,
          'hollywood': 1,
          'stars': 1,
          'trying': 1,
          'gain': 1,
          'credibility': 1,
          'adding': 1,
          'voiceover': 1,
          'job': 1,
          'resume': 1,
          'ni': 1,
          'dead': 1,
          'wrong': 1,
          'things': 1,
          'ndamn': 1,
          'nand': 1,
          'cute': 1,
          'dangerous': 1,
          'ones': 1,
          'script': 1,
          'fast': 1,
          'furious': 1,
          'singing': 1,
          'dancing': 1,
          'animation': 1,
          'clean': 1,
          'give': 1,
          'walt': 1,
          'warm': 1,
          'feeling': 1,
          'aimed': 1,
          'cynicism': 1,
          'goodness': 1,
          'us': 1,
          'ridiculously': 1,
          'weird': 1,
          'comes': 1,
          'strange': 1,
          'acid': 1,
          'trip': 1,
          'involving': 1,
          'talking': 1,
          'crossdressing': 1,
          'llamas': 1,
          'nheres': 1,
          'plot': 1,
          'try': 1,
          'follow': 1,
          'along': 1,
          'nset': 1,
          'mythical': 1,
          'kingdom': 1,
          'follows': 1,
          'david': 1,
          'arrogant': 1,
          'egocentric': 1,
          'nwhen': 1,
          'fires': 1,
          'powerhungry': 1,
          'advisor': 1,
          'yzma': 1,
          'seinfelds': 1,
          'patrick': 1,
          'warburton': 1,
          'change': 1,
          'nkuzco': 1,
          'gets': 1,
          'stranded': 1,
          'jungle': 1,
          'must': 1,
          'rely': 1,
          'pacha': 1,
          'goodman': 1,
          'llamaherder': 1,
          'whose': 1,
          'home': 1,
          'replaced': 1,
          'kuzcos': 1,
          'water': 1,
          'world': 1,
          'park': 1,
          'save': 1,
          'nthen': 1,
          'fun': 1,
          'starts': 1,
          'nfor': 1,
          'next': 1,
          'sixty': 1,
          'minutes': 1,
          'audience': 1,
          'treated': 1,
          'something': 1,
          'unheard': 1,
          'imagination': 1,
          'nyzma': 1,
          'voiced': 1,
          'talented': 1,
          'looks': 1,
          'cross': 1,
          'norma': 1,
          'desmond': 1,
          'joan': 1,
          'crawford': 1,
          'really': 1,
          'vegas': 1,
          'showgirl': 1,
          'oblivious': 1,
          'quick': 1,
          'sharp': 1,
          'feels': 1,
          'episode': 1,
          'seinfeld': 1,
          'sense': 1,
          'ndavid': 1,
          'goodmans': 1,
          'character': 1,
          'interactions': 1,
          'feel': 1,
          'youre': 1,
          'watching': 1,
          'hopecrosby': 1,
          'nspade': 1,
          'beyond': 1,
          'shoots': 1,
          'belt': 1,
          'occasions': 1,
          'laughed': 1,
          'loud': 1,
          'times': 1,
          'nneedless': 1,
          'say': 1,
          'extremely': 1,
          'rare': 1,
          'screenings': 1,
          'part': 1,
          'audacious': 1,
          'sheer': 1,
          'weirdness': 1,
          'factor': 1,
          'high': 1,
          'ncrossdressing': 1,
          'duality': 1,
          'soul': 1,
          'people': 1,
          'turned': 1,
          'every': 1,
          'animal': 1,
          'noahs': 1,
          'boat': 1,
          'cpr': 1,
          'homoerotic': 1,
          'tendencies': 1,
          'song': 1,
          'michael': 1,
          'jackson': 1,
          'dance': 1,
          'moves': 1,
          'guy': 1,
          'communicate': 1,
          'squirrel': 1,
          'oddities': 1,
          'true': 1,
          'orginal': 1,
          'nsimply': 1,
          'put': 1,
          'one': 1,
          'childrens': 1,
          'holiday': 1,
          'season': 1,
          'nkids': 1,
          'parents': 1,
          'nthats': 1,
          'tough': 1,
          'pull': 1,
          'single': 1,
          'package': 1,
          'manages': 1,
          'npos': 1}),
 Counter({'impact': 6,
          'nthe': 6,
          'deep': 5,
          'disaster': 5,
          'film': 4,
          'news': 4,
          'even': 3,
          'characters': 3,
          'personal': 3,
          'snicker': 2,
          'comet': 2,
          'first': 2,
          'every': 2,
          'opening': 2,
          'moments': 2,
          'movie': 2,
          'jenny': 2,
          'leoni': 2,
          'nbcs': 2,
          'msnbc': 2,
          'films': 2,
          'presented': 2,
          'director': 2,
          'leder': 2,
          'work': 2,
          'er': 2,
          'guest': 2,
          'challenge': 2,
          'make': 2,
          'emotions': 2,
          'rather': 2,
          'fact': 2,
          'effects': 2,
          'seeing': 1,
          'single': 1,
          'frame': 1,
          'would': 1,
          'easy': 1,
          'collision': 1,
          'course': 1,
          'earth': 1,
          'threatens': 1,
          'existence': 1,
          'life': 1,
          'planet': 1,
          'nit': 1,
          'latest': 1,
          'entry': 1,
          'decades': 1,
          'dubious': 1,
          'revival': 1,
          '70s': 1,
          'two': 1,
          'sky': 1,
          'falling': 1,
          'flicks': 1,
          'hit': 1,
          'screens': 1,
          'year': 1,
          'coming': 1,
          'julys': 1,
          'armageddon': 1,
          'meteor': 1,
          'threat': 1,
          'nits': 1,
          'tagline': 1,
          'oceans': 1,
          'rise': 1,
          'ncities': 1,
          'fall': 1,
          'nhope': 1,
          'survives': 1,
          'cornball': 1,
          'utterly': 1,
          'ridiculous': 1,
          'collapsing': 1,
          'tunnel': 1,
          'thriller': 1,
          'daylight': 1,
          'came': 1,
          'alone': 1,
          'way': 1,
          'nis': 1,
          'together': 1,
          'bit': 1,
          'treacly': 1,
          'offer': 1,
          'cheesiness': 1,
          'confined': 1,
          'conventions': 1,
          'usual': 1,
          'roll': 1,
          'call': 1,
          'major': 1,
          'problems': 1,
          'introduced': 1,
          'prominent': 1,
          'stories': 1,
          'ambitious': 1,
          'tv': 1,
          'reporter': 1,
          'lerner': 1,
          'tea': 1,
          'distraught': 1,
          'father': 1,
          'maximilian': 1,
          'schell': 1,
          'left': 1,
          'mother': 1,
          'vanessa': 1,
          'redgrave': 1,
          'younger': 1,
          'woman': 1,
          'rya': 1,
          'kihlstedt': 1,
          'nwhat': 1,
          'snickerworthy': 1,
          'coventure': 1,
          'paramount': 1,
          'dreamworks': 1,
          'skg': 1,
          'aggressively': 1,
          'pushes': 1,
          'another': 1,
          'highprofile': 1,
          'corporate': 1,
          'collaboration': 1,
          'microsoft': 1,
          'cable': 1,
          'network': 1,
          'employs': 1,
          'ostensible': 1,
          'main': 1,
          'character': 1,
          'nin': 1,
          'vision': 1,
          'america': 1,
          'television': 1,
          'source': 1,
          'choice': 1,
          'home': 1,
          'reality': 1,
          'reaches': 1,
          'fraction': 1,
          'country': 1,
          'initial': 1,
          'signs': 1,
          'point': 1,
          'toward': 1,
          'something': 1,
          'along': 1,
          'lines': 1,
          'volcano': 1,
          'dantes': 1,
          'peak': 1,
          'theres': 1,
          'one': 1,
          'thing': 1,
          'underestimated': 1,
          'skills': 1,
          'mimi': 1,
          'nshe': 1,
          'emmy': 1,
          'helming': 1,
          'smash': 1,
          'essentially': 1,
          'weekly': 1,
          'episode': 1,
          'featuring': 1,
          'new': 1,
          'set': 1,
          'stars': 1,
          'medical': 1,
          'crises': 1,
          'format': 1,
          'twofold': 1,
          '1': 1,
          'audience': 1,
          'care': 1,
          'regardless': 1,
          'briefly': 1,
          'seen': 1,
          'thinly': 1,
          'written': 1,
          '2': 1,
          'powerfully': 1,
          'tug': 1,
          'without': 1,
          'heavyhanded': 1,
          'overly': 1,
          'melodramatic': 1,
          'nhaving': 1,
          'passed': 1,
          'numerous': 1,
          'episodes': 1,
          'showed': 1,
          'flair': 1,
          'creating': 1,
          'suspense': 1,
          'peacemaker': 1,
          'could': 1,
          'better': 1,
          'fit': 1,
          'bring': 1,
          'michael': 1,
          'tolkin': 1,
          'bruce': 1,
          'joel': 1,
          'rubins': 1,
          'formulaic': 1,
          'screenplay': 1,
          'screen': 1,
          'nas': 1,
          'countdown': 1,
          'progresses': 1,
          'ominous': 1,
          'feeling': 1,
          'doom': 1,
          'palpable': 1,
          'leading': 1,
          'final': 1,
          'act': 1,
          'take': 1,
          'surprisingly': 1,
          'convincing': 1,
          'affecting': 1,
          'emotional': 1,
          'dimension': 1,
          'ntheres': 1,
          'nothing': 1,
          'profoundly': 1,
          'move': 1,
          'anyone': 1,
          'anything': 1,
          'manages': 1,
          'touch': 1,
          'heart': 1,
          'high': 1,
          'achievement': 1,
          'genre': 1,
          'generally': 1,
          'concerned': 1,
          'nsituations': 1,
          'initially': 1,
          'feel': 1,
          'contrived': 1,
          'jennys': 1,
          'familial': 1,
          'crisis': 1,
          'teenage': 1,
          'romance': 1,
          'sarah': 1,
          'hotchner': 1,
          'leelee': 1,
          'sobieski': 1,
          'discoverer': 1,
          'leo': 1,
          'biederman': 1,
          'elijah': 1,
          'wood': 1,
          'achieve': 1,
          'poignance': 1,
          'vaguely': 1,
          'drawn': 1,
          'including': 1,
          'u': 1,
          'president': 1,
          'tom': 1,
          'beck': 1,
          'morgan': 1,
          'freeman': 1,
          'astronaut': 1,
          'spurgeon': 1,
          'fish': 1,
          'tanner': 1,
          'robert': 1,
          'duvall': 1,
          'faceless': 1,
          'crew': 1,
          'ron': 1,
          'eldard': 1,
          'jon': 1,
          'favreau': 1,
          'mary': 1,
          'mccormack': 1,
          'blair': 1,
          'underwood': 1,
          'alexander': 1,
          'baluyev': 1,
          'aboard': 1,
          'cometbombing': 1,
          'spacecraft': 1,
          'messiah': 1,
          'share': 1,
          'touching': 1,
          'latter': 1,
          'owes': 1,
          'debt': 1,
          'actors': 1,
          'solid': 1,
          'job': 1,
          'wellcast': 1,
          'possible': 1,
          'exception': 1,
          'delivers': 1,
          'decent': 1,
          'performance': 1,
          'trademark': 1,
          'unconventional': 1,
          'speech': 1,
          'rhythms': 1,
          'line': 1,
          'delivery': 1,
          'somewhat': 1,
          'hard': 1,
          'buy': 1,
          'star': 1,
          'broadcaster': 1,
          'nalthough': 1,
          'catastrophic': 1,
          'theme': 1,
          'impressive': 1,
          'special': 1,
          'giant': 1,
          'ocean': 1,
          'waves': 1,
          'particularly': 1,
          'spectacular': 1,
          'place': 1,
          'category': 1,
          'likes': 1,
          'twister': 1,
          '90s': 1,
          'successfully': 1,
          'marry': 1,
          'advanced': 1,
          'technology': 1,
          'ring': 1,
          'truea': 1,
          'makes': 1,
          'genuine': 1,
          'isnt': 1,
          'hoped': 1,
          'npos': 1}),
 Counter({'snatch': 6,
          'nthe': 6,
          'top': 5,
          'diamond': 4,
          'irish': 4,
          'ritchie': 4,
          'characters': 4,
          'brick': 4,
          'nwhen': 4,
          'two': 3,
          'comedy': 3,
          'first': 3,
          'london': 3,
          'action': 3,
          'one': 3,
          'makes': 3,
          'feel': 3,
          'would': 3,
          'fixed': 2,
          'dog': 2,
          'director': 2,
          'sophomore': 2,
          'lock': 2,
          'stock': 2,
          'smoking': 2,
          'barrels': 2,
          'underworld': 2,
          'beginning': 2,
          'nhis': 2,
          'see': 2,
          'doesnt': 2,
          'criminal': 2,
          'collection': 2,
          'gangster': 2,
          'avi': 2,
          'frankie': 2,
          'deal': 2,
          'head': 2,
          'bet': 2,
          'boxing': 2,
          'ruthless': 2,
          'vinnie': 2,
          'goes': 2,
          'turkish': 2,
          'local': 2,
          'ford': 2,
          'put': 2,
          'gypsy': 2,
          'mickey': 2,
          'oneil': 2,
          'mickeys': 2,
          'gives': 2,
          'talented': 2,
          'unique': 2,
          'cast': 2,
          'like': 2,
          'large': 2,
          'actors': 2,
          'laugh': 2,
          'im': 2,
          'npitt': 2,
          'hard': 2,
          'nthere': 2,
          'heist': 1,
          'flawless': 1,
          '84': 1,
          'carat': 1,
          'bare': 1,
          'knuckle': 1,
          'fights': 1,
          'gypsies': 1,
          'goings': 1,
          'guy': 1,
          'ritchiess': 1,
          'feature': 1,
          'n': 1,
          'introd': 1,
          'helmerscripter': 1,
          'hyperkinetic': 1,
          'face': 1,
          'grabbed': 1,
          'viewers': 1,
          'attention': 1,
          'end': 1,
          'protagonists': 1,
          'innocents': 1,
          'set': 1,
          'adrift': 1,
          'sharks': 1,
          'swim': 1,
          'eaten': 1,
          'alive': 1,
          'nwith': 1,
          'remake': 1,
          'work': 1,
          'delve': 1,
          'deeply': 1,
          'underbelly': 1,
          'mining': 1,
          'rich': 1,
          'process': 1,
          'nfrom': 1,
          'tosses': 1,
          'theft': 1,
          'fabulous': 1,
          'desire': 1,
          'new': 1,
          'york': 1,
          'dennis': 1,
          'farina': 1,
          'nen': 1,
          'route': 1,
          'antwerp': 1,
          'thief': 1,
          'courier': 1,
          'four': 1,
          'fingers': 1,
          'benicio': 1,
          'del': 1,
          'toro': 1,
          'stops': 1,
          'make': 1,
          'separate': 1,
          'avis': 1,
          'partner': 1,
          'cousin': 1,
          'doug': 1,
          'mike': 1,
          'reid': 1,
          'nfrankies': 1,
          'addiction': 1,
          'gambling': 1,
          'tempts': 1,
          'making': 1,
          'illegal': 1,
          'match': 1,
          'boris': 1,
          'blade': 1,
          'rade': 1,
          'sherbedgia': 1,
          'russian': 1,
          'mobster': 1,
          'turns': 1,
          'setup': 1,
          'robbery': 1,
          'trio': 1,
          'bumbling': 1,
          'incompetents': 1,
          'robbie': 1,
          'gee': 1,
          'sol': 1,
          'lennie': 1,
          'james': 1,
          'portly': 1,
          'tyrone': 1,
          'ade': 1,
          'miserably': 1,
          'awry': 1,
          'nmeanwhile': 1,
          'couple': 1,
          'young': 1,
          'toughs': 1,
          'jason': 1,
          'stratham': 1,
          'tommy': 1,
          'stephen': 1,
          'graham': 1,
          'trying': 1,
          'break': 1,
          'game': 1,
          'help': 1,
          'villain': 1,
          'alan': 1,
          'also': 1,
          'owns': 1,
          'pig': 1,
          'farm': 1,
          'fighter': 1,
          'punch': 1,
          'wild': 1,
          'named': 1,
          'figure': 1,
          'loose': 1,
          'canon': 1,
          'contender': 1,
          'fight': 1,
          'nmickey': 1,
          'proves': 1,
          'less': 1,
          'reliable': 1,
          'tommys': 1,
          'nbrick': 1,
          'impressed': 1,
          'performance': 1,
          'decides': 1,
          'another': 1,
          'chance': 1,
          'calmly': 1,
          'explaining': 1,
          'takes': 1,
          '16': 1,
          'pigs': 1,
          'eight': 1,
          'minutes': 1,
          'completely': 1,
          'devour': 1,
          'corpse': 1,
          'get': 1,
          'precious': 1,
          'rock': 1,
          'jumps': 1,
          'plane': 1,
          'hires': 1,
          'legend': 1,
          'bullet': 1,
          'tooth': 1,
          'tony': 1,
          'jones': 1,
          'find': 1,
          'nthings': 1,
          'spiral': 1,
          'control': 1,
          'forces': 1,
          'collision': 1,
          'course': 1,
          'doublecross': 1,
          'doubledeals': 1,
          'ate': 1,
          'squeaky': 1,
          'toy': 1,
          'nguy': 1,
          'mr': 1,
          'madonna': 1,
          'extraordinarily': 1,
          'auteur': 1,
          'wonderful': 1,
          'knack': 1,
          'pulling': 1,
          'together': 1,
          'crew': 1,
          'feeding': 1,
          'funny': 1,
          'gritty': 1,
          'dialog': 1,
          'spews': 1,
          'mouths': 1,
          'machine': 1,
          'gun': 1,
          'fire': 1,
          'helmer': 1,
          'marshals': 1,
          'ensemble': 1,
          'frantically': 1,
          'paced': 1,
          'caper': 1,
          'queasy': 1,
          'time': 1,
          'description': 1,
          'example': 1,
          'assemblage': 1,
          'nonactors': 1,
          'roughandtumble': 1,
          'settings': 1,
          'earthy': 1,
          'depiction': 1,
          'londons': 1,
          'credit': 1,
          'performances': 1,
          'among': 1,
          'equals': 1,
          'might': 1,
          'say': 1,
          'worth': 1,
          'noting': 1,
          'nalan': 1,
          'brilliant': 1,
          'evil': 1,
          'refuses': 1,
          'sugar': 1,
          'tea': 1,
          'sweet': 1,
          'enough': 1,
          'shiver': 1,
          'even': 1,
          'best': 1,
          'ive': 1,
          'seen': 1,
          'years': 1,
          'outstanding': 1,
          'perf': 1,
          'given': 1,
          'none': 1,
          'brad': 1,
          'pitt': 1,
          'name': 1,
          'actor': 1,
          'movies': 1,
          'popularity': 1,
          'may': 1,
          'hang': 1,
          'upon': 1,
          'least': 1,
          'initially': 1,
          'drinking': 1,
          'fighting': 1,
          'highly': 1,
          'unreliable': 1,
          'nearly': 1,
          'incomprehensible': 1,
          'brogue': 1,
          'dialect': 1,
          'pikers': 1,
          'travelers': 1,
          'europe': 1,
          'nthis': 1,
          'brigand': 1,
          'steal': 1,
          'fillings': 1,
          'teeth': 1,
          'especially': 1,
          'benefit': 1,
          'beloved': 1,
          'mum': 1,
          'sorcha': 1,
          'cusack': 1,
          'threaten': 1,
          'safety': 1,
          'family': 1,
          'enemy': 1,
          'stopped': 1,
          'puts': 1,
          'credible': 1,
          'spin': 1,
          'character': 1,
          'incredible': 1,
          'physical': 1,
          'stuff': 1,
          'bareknuckle': 1,
          'boxer': 1,
          'production': 1,
          'team': 1,
          'behind': 1,
          'camera': 1,
          'includes': 1,
          'alumni': 1,
          'producer': 1,
          'matthew': 1,
          'vaughn': 1,
          'lenser': 1,
          'tim': 1,
          'mauricejones': 1,
          'technical': 1,
          'artist': 1,
          'bring': 1,
          'hyperactive': 1,
          'imagination': 1,
          'author': 1,
          'visual': 1,
          'life': 1,
          'patent': 1,
          'look': 1,
          'reeks': 1,
          'signature': 1,
          'sure': 1,
          'translate': 1,
          'future': 1,
          'works': 1,
          'much': 1,
          'talent': 1,
          'filmmaker': 1,
          'branch': 1,
          'directions': 1,
          'nnonetheless': 1,
          'terrific': 1,
          'effort': 1,
          'darn': 1,
          'good': 1,
          'hoot': 1,
          'boot': 1,
          'ni': 1,
          'give': 1,
          'b': 1,
          'npos': 1}),
 Counter({'film': 6,
          'smart': 4,
          'tbwp': 3,
          'bit': 3,
          'simply': 3,
          'times': 2,
          'ploy': 2,
          'successful': 2,
          'suspect': 2,
          '3': 2,
          'students': 2,
          'search': 2,
          'blair': 2,
          'witch': 2,
          'put': 2,
          'beginning': 2,
          'fact': 2,
          'ni': 2,
          'cant': 2,
          'probably': 1,
          'single': 1,
          'profitable': 1,
          'ever': 1,
          'nnot': 1,
          'surprising': 1,
          'considering': 1,
          'tiny': 1,
          'us100': 1,
          '000': 1,
          'budget': 1,
          'date': 1,
          'earned': 1,
          'excess': 1,
          'us130': 1,
          'million': 1,
          'nthats': 1,
          'shocking': 1,
          '100': 1,
          'profit': 1,
          'nrumours': 1,
          'internet': 1,
          'marketing': 1,
          'gaining': 1,
          'cultlike': 1,
          'fanatics': 1,
          'word': 1,
          'mouth': 1,
          'coupled': 1,
          'strings': 1,
          'excellent': 1,
          'reviews': 1,
          'exploded': 1,
          'boxoffice': 1,
          'raking': 1,
          'millions': 1,
          'opening': 1,
          'weekend': 1,
          'nshot': 1,
          '16mm': 1,
          'video': 1,
          'chronicles': 1,
          'forays': 1,
          'go': 1,
          'legendary': 1,
          'naudiences': 1,
          'firstperson': 1,
          'perspective': 1,
          'entire': 1,
          'misadventure': 1,
          'often': 1,
          'wobbly': 1,
          'blurry': 1,
          'takes': 1,
          'getting': 1,
          'used': 1,
          'nthis': 1,
          'supposed': 1,
          'material': 1,
          'discovered': 1,
          'woods': 1,
          'disappeared': 1,
          'edited': 1,
          'onto': 1,
          'screen': 1,
          'benefit': 1,
          'audiences': 1,
          'ntbwp': 1,
          'nfilmed': 1,
          'look': 1,
          'really': 1,
          'stockshoot': 1,
          'bunch': 1,
          'school': 1,
          'project': 1,
          'one': 1,
          'may': 1,
          'like': 1,
          'truly': 1,
          'lazy': 1,
          'approach': 1,
          'filmmaking': 1,
          'nsimply': 1,
          'amazing': 1,
          'respect': 1,
          'must': 1,
          'say': 1,
          'ntalk': 1,
          'impact': 1,
          'oh': 1,
          'yes': 1,
          'quite': 1,
          'audience': 1,
          'find': 1,
          'deeply': 1,
          'disturbing': 1,
          'especially': 1,
          'last': 1,
          'im': 1,
          'revealing': 1,
          'nyou': 1,
          'see': 1,
          'help': 1,
          'feel': 1,
          'tad': 1,
          'cheated': 1,
          'knowing': 1,
          'commercially': 1,
          'become': 1,
          'ncould': 1,
          'finally': 1,
          'indiefilm': 1,
          'unwittingly': 1,
          'found': 1,
          'formula': 1,
          'commercial': 1,
          'appeal': 1,
          'big': 1,
          'players': 1,
          'right': 1,
          'nwell': 1,
          'guess': 1,
          'stays': 1,
          'highly': 1,
          'original': 1,
          'clever': 1,
          'definitely': 1,
          'leave': 1,
          'something': 1,
          'dreadful': 1,
          'talk': 1,
          'think': 1,
          'weeks': 1,
          'prior': 1,
          'watching': 1,
          'nno': 1,
          'gore': 1,
          'special': 1,
          'effects': 1,
          'get': 1,
          'terribly': 1,
          'npos': 1}),
 Counter({'political': 7,
          'strawberry': 6,
          'ni': 6,
          'revolution': 6,
          'cuba': 6,
          'criticism': 6,
          'film': 4,
          'nthe': 4,
          'cubas': 3,
          'memorias': 3,
          'state': 3,
          'castros': 3,
          'cant': 3,
          'movie': 3,
          'nhe': 3,
          'see': 2,
          'chocolate': 2,
          'best': 2,
          'directed': 2,
          'alea': 2,
          'saw': 2,
          'cuban': 2,
          'probably': 2,
          'current': 2,
          'party': 2,
          'like': 2,
          'honest': 2,
          'nas': 2,
          'revolutions': 2,
          'takes': 2,
          'right': 2,
          'castro': 2,
          'young': 2,
          'diego': 2,
          'government': 2,
          'art': 2,
          'work': 2,
          'davids': 2,
          'guy': 2,
          'wants': 2,
          'fine': 2,
          'artists': 2,
          'point': 2,
          'starting': 1,
          'write': 1,
          'review': 1,
          'going': 1,
          'oscar': 1,
          'nominee': 1,
          'foreign': 1,
          'tomas': 1,
          'gutierrez': 1,
          'also': 1,
          'sometimes': 1,
          'circles': 1,
          'critically': 1,
          'acclaimed': 1,
          'del': 1,
          'subdesarrollo': 1,
          'memories': 1,
          'underdevelopment': 1,
          'part': 1,
          'cinema': 1,
          'class': 1,
          'back': 1,
          'late': 1,
          '70s': 1,
          'merged': 1,
          'politics': 1,
          'mundane': 1,
          'elements': 1,
          'human': 1,
          'condition': 1,
          'knew': 1,
          'statesanctioned': 1,
          'missive': 1,
          'expect': 1,
          'follow': 1,
          'suit': 1,
          'nfellow': 1,
          'internetters': 1,
          'primarily': 1,
          'newsgroup': 1,
          'dedicated': 1,
          'soc': 1,
          'culture': 1,
          'mentioned': 1,
          'harsh': 1,
          'affairs': 1,
          'jumped': 1,
          'conclusion': 1,
          'nothing': 1,
          'veiled': 1,
          'attempt': 1,
          'espousing': 1,
          'lineit': 1,
          'looks': 1,
          'aint': 1,
          'nhaving': 1,
          'first': 1,
          'hand': 1,
          'extensive': 1,
          'anecdotal': 1,
          'knowledge': 1,
          'repressiveness': 1,
          'conceive': 1,
          'tolerating': 1,
          'adversarial': 1,
          'imagine': 1,
          'letting': 1,
          'anyone': 1,
          'even': 1,
          'suggest': 1,
          'failure': 1,
          'leader': 1,
          'failed': 1,
          'movement': 1,
          'kids': 1,
          'say': 1,
          'days': 1,
          'duh': 1,
          'needs': 1,
          'physical': 1,
          'spiritual': 1,
          'crumbling': 1,
          'self': 1,
          'evident': 1,
          'proper': 1,
          'questions': 1,
          'put': 1,
          'relate': 1,
          'legitimacy': 1,
          'bet': 1,
          'power': 1,
          'granted': 1,
          'produced': 1,
          'control': 1,
          'question': 1,
          'run': 1,
          'show': 1,
          'ongoing': 1,
          '36': 1,
          'years': 1,
          'nthats': 1,
          'believe': 1,
          'regime': 1,
          'nlets': 1,
          'happens': 1,
          'room': 1,
          'goes': 1,
          'dark': 1,
          'screen': 1,
          'lights': 1,
          'filmtwice': 1,
          'remained': 1,
          'intact': 1,
          'nstrawberry': 1,
          'negotiates': 1,
          'relationship': 1,
          'dialectic': 1,
          'materialist': 1,
          'describes': 1,
          'homosexual': 1,
          'photographer': 1,
          '1979': 1,
          'man': 1,
          'david': 1,
          'son': 1,
          'peasants': 1,
          'symbol': 1,
          'reason': 1,
          'ngrateful': 1,
          'opportunity': 1,
          'receive': 1,
          'university': 1,
          'education': 1,
          'studies': 1,
          'science': 1,
          'instead': 1,
          'literature': 1,
          'avocation': 1,
          'perceives': 1,
          'duty': 1,
          'ntherein': 1,
          'lies': 1,
          'likely': 1,
          'unintended': 1,
          'irony': 1,
          'since': 1,
          'need': 1,
          'theoreticians': 1,
          'ncubas': 1,
          'ndiegos': 1,
          'lifestyle': 1,
          'antithesis': 1,
          'revolutionary': 1,
          'life': 1,
          'enjoys': 1,
          'finer': 1,
          'thingstea': 1,
          'opera': 1,
          'voluntary': 1,
          'nhis': 1,
          'small': 1,
          'apartment': 1,
          'sensual': 1,
          'oasis': 1,
          'moniker': 1,
          'bourgeois': 1,
          'figuratively': 1,
          'hangs': 1,
          'head': 1,
          'early': 1,
          'parts': 1,
          'nhowever': 1,
          'revolucionario': 1,
          'way': 1,
          'supporting': 1,
          'roles': 1,
          'filled': 1,
          'aging': 1,
          'busybody': 1,
          'heart': 1,
          'gold': 1,
          'troubled': 1,
          'psyche': 1,
          'roommate': 1,
          'rally': 1,
          'communist': 1,
          'line': 1,
          'expected': 1,
          'extreme': 1,
          'exgirlfriend': 1,
          'dumped': 1,
          'another': 1,
          'yet': 1,
          'bed': 1,
          'leaves': 1,
          'italy': 1,
          'husband': 1,
          'german': 1,
          'gay': 1,
          'sculptor': 1,
          'whose': 1,
          'attempting': 1,
          'exhibit': 1,
          'strikes': 1,
          'faustian': 1,
          'pact': 1,
          'ngutierrez': 1,
          'codirector': 1,
          'juan': 1,
          'carlos': 1,
          'tabio': 1,
          'job': 1,
          'almost': 1,
          'showing': 1,
          'homosexuals': 1,
          'revolutionaries': 1,
          'nheck': 1,
          'towards': 1,
          'end': 1,
          'begin': 1,
          'think': 1,
          'deserves': 1,
          'medal': 1,
          'patriotic': 1,
          'fervor': 1,
          'really': 1,
          'loves': 1,
          'supposedly': 1,
          'everybody': 1,
          'else': 1,
          'make': 1,
          'better': 1,
          'exposing': 1,
          'correcting': 1,
          'flaws': 1,
          'nreal': 1,
          'missing': 1,
          'though': 1,
          'nthis': 1,
          'window': 1,
          'dressing': 1,
          'nluis': 1,
          'aguilar': 1,
          'leons': 1,
          'op': 1,
          'ned': 1,
          'npiece': 1,
          'fresa': 1,
          'miami': 1,
          'herald': 1,
          '10': 1,
          'march': 1,
          '1995': 1,
          '21a': 1,
          'color': 1,
          'judgment': 1,
          'presaged': 1,
          'intuition': 1,
          'naguilar': 1,
          'leon': 1,
          'expressed': 1,
          'sentiment': 1,
          'films': 1,
          'angle': 1,
          'many': 1,
          'artistic': 1,
          'manifestations': 1,
          'sprang': 1,
          'totally': 1,
          'manipulated': 1,
          'environment': 1,
          'critic': 1,
          'ivan': 1,
          'de': 1,
          'la': 1,
          'nuez': 1,
          'well': 1,
          'states': 1,
          'latest': 1,
          'issue': 1,
          'magazine': 1,
          'postmodern': 1,
          'notes': 1,
          'silenced': 1,
          'refuse': 1,
          'accept': 1,
          'charade': 1,
          'provoke': 1,
          'institutions': 1,
          'legitimize': 1,
          'forbidding': 1,
          'go': 1,
          'beyond': 1,
          'nalthough': 1,
          'terrible': 1,
          'propaganda': 1,
          'otherwise': 1,
          'npos': 1}),
 Counter({'film': 8,
          'like': 8,
          'crime': 7,
          'job': 7,
          'nthe': 7,
          'heist': 6,
          'one': 5,
          'score': 5,
          'nhe': 5,
          'last': 4,
          '4': 4,
          'even': 4,
          'nick': 4,
          'time': 4,
          'montreal': 4,
          'seems': 4,
          'friend': 3,
          'played': 3,
          'norton': 3,
          'young': 3,
          'plot': 3,
          'nthis': 3,
          'nthere': 3,
          'never': 3,
          'safe': 3,
          'wrong': 3,
          'good': 3,
          'house': 3,
          'mission': 3,
          'impossible': 3,
          'much': 3,
          'role': 3,
          '1950s': 2,
          '1960s': 2,
          'deniro': 2,
          'safecracker': 2,
          'wants': 2,
          'personal': 2,
          'nedward': 2,
          'plays': 2,
          'suspense': 2,
          'little': 2,
          '2': 2,
          'ni': 2,
          'must': 2,
          'seen': 2,
          'audience': 2,
          'probably': 2,
          'taking': 2,
          'script': 2,
          'nnick': 2,
          'nearly': 2,
          'telling': 2,
          'jazz': 2,
          'bassett': 2,
          'nshe': 2,
          'crook': 2,
          'njack': 2,
          'way': 2,
          'steal': 2,
          'customs': 2,
          'episode': 2,
          'needed': 2,
          'story': 2,
          'oz': 2,
          'lowkey': 2,
          'music': 2,
          'nit': 2,
          'attractive': 2,
          'scale': 2,
          'capsule': 1,
          'style': 1,
          'set': 1,
          'present': 1,
          'nrobert': 1,
          'stars': 1,
          'riskadverse': 1,
          'retire': 1,
          'form': 1,
          'takes': 1,
          'request': 1,
          'marlon': 1,
          'brando': 1,
          'hotshot': 1,
          'sharpster': 1,
          'also': 1,
          'mostly': 1,
          'straightforward': 1,
          'nonsense': 1,
          'n': 1,
          'sure': 1,
          'almost': 1,
          'identical': 1,
          'made': 1,
          'adult': 1,
          'wanted': 1,
          'theaters': 1,
          'teens': 1,
          'superhuman': 1,
          'acrobats': 1,
          'nosedives': 1,
          'buildings': 1,
          'entrapment': 1,
          'rock': 1,
          'ballet': 1,
          'martial': 1,
          'arts': 1,
          'basic': 1,
          'decent': 1,
          'distinctly': 1,
          'credible': 1,
          'unflashy': 1,
          'robert': 1,
          'managed': 1,
          'successful': 1,
          'risks': 1,
          'nif': 1,
          'bet': 1,
          'pun': 1,
          'intended': 1,
          'backs': 1,
          'nsometimes': 1,
          'bets': 1,
          'turn': 1,
          'nwhen': 1,
          'goes': 1,
          'unnerved': 1,
          'enough': 1,
          'decide': 1,
          'nature': 1,
          'get': 1,
          'game': 1,
          'returns': 1,
          'home': 1,
          'owns': 1,
          'club': 1,
          'decides': 1,
          'manage': 1,
          'full': 1,
          'proposes': 1,
          'girl': 1,
          'diane': 1,
          'angela': 1,
          'condition': 1,
          'stay': 1,
          'retired': 1,
          'nbut': 1,
          'deal': 1,
          'cemented': 1,
          'max': 1,
          'kingpin': 1,
          'supposedly': 1,
          'easy': 1,
          'part': 1,
          'particularly': 1,
          'right': 1,
          'hometown': 1,
          'nmore': 1,
          'details': 1,
          'seem': 1,
          'complicate': 1,
          'nnicks': 1,
          'partner': 1,
          'smart': 1,
          'uncontrollable': 1,
          'jack': 1,
          'edward': 1,
          'treats': 1,
          'locked': 1,
          'front': 1,
          'door': 1,
          'welcome': 1,
          'mat': 1,
          'associates': 1,
          'homes': 1,
          'knowitall': 1,
          'everything': 1,
          'avoiding': 1,
          'rubbing': 1,
          'people': 1,
          'ntogether': 1,
          'plan': 1,
          'priceless': 1,
          'historic': 1,
          'artifact': 1,
          'kario': 1,
          'salem': 1,
          'lem': 1,
          'dobbs': 1,
          'scott': 1,
          'marshall': 1,
          'smith': 1,
          'works': 1,
          'old': 1,
          'television': 1,
          'series': 1,
          'nwe': 1,
          'see': 1,
          'pieces': 1,
          'put': 1,
          'together': 1,
          'minute': 1,
          'changes': 1,
          'things': 1,
          'go': 1,
          'team': 1,
          'might': 1,
          'bad': 1,
          'choices': 1,
          'write': 1,
          'scripts': 1,
          'tom': 1,
          'cruise': 1,
          'films': 1,
          'complications': 1,
          'however': 1,
          'fewer': 1,
          'make': 1,
          'believable': 1,
          'cold': 1,
          'noirish': 1,
          'supposed': 1,
          'ndirector': 1,
          'frank': 1,
          'voices': 1,
          'yoda': 1,
          'miss': 1,
          'piggy': 1,
          'proves': 1,
          'surprisingly': 1,
          'directing': 1,
          'serious': 1,
          'adequate': 1,
          'cast': 1,
          'flashy': 1,
          'scenestealing': 1,
          'acting': 1,
          'flashiest': 1,
          'todays': 1,
          'standards': 1,
          'double': 1,
          'pretends': 1,
          'brain': 1,
          'damage': 1,
          'victim': 1,
          'hired': 1,
          'none': 1,
          'nice': 1,
          'ncharacter': 1,
          'mentioned': 1,
          'stephen': 1,
          'jamie': 1,
          'harrold': 1,
          'nstephen': 1,
          'master': 1,
          'hacker': 1,
          'lives': 1,
          'mothers': 1,
          'basement': 1,
          'lot': 1,
          'screaming': 1,
          'directions': 1,
          'person': 1,
          'risk': 1,
          'adverse': 1,
          'would': 1,
          'want': 1,
          'depend': 1,
          'upon': 1,
          'remains': 1,
          'climactic': 1,
          'nthen': 1,
          'pace': 1,
          'really': 1,
          'picks': 1,
          'nbefore': 1,
          'stops': 1,
          'twice': 1,
          'interludes': 1,
          'nthough': 1,
          'lets': 1,
          'woody': 1,
          'allen': 1,
          'sweet': 1,
          'lowdown': 1,
          'non': 1,
          'subject': 1,
          'howard': 1,
          'shore': 1,
          'adds': 1,
          'tension': 1,
          'scenes': 1,
          'melody': 1,
          'nangela': 1,
          'misused': 1,
          'celebrity': 1,
          'totally': 1,
          'minor': 1,
          'less': 1,
          'famous': 1,
          'actress': 1,
          'break': 1,
          'nothing': 1,
          'demand': 1,
          'give': 1,
          'look': 1,
          'reward': 1,
          'nspeaking': 1,
          'attracting': 1,
          'older': 1,
          'learned': 1,
          'appreciate': 1,
          'sort': 1,
          'rate': 1,
          '7': 1,
          '0': 1,
          '10': 1,
          'npos': 1}),
 Counter({'beautiful': 9,
          'life': 6,
          'thats': 4,
          'love': 3,
          'still': 3,
          'dont': 2,
          'movie': 2,
          'short': 2,
          'see': 2,
          'roberto': 2,
          'benigni': 2,
          'nlife': 2,
          'even': 2,
          'though': 2,
          'much': 2,
          'nim': 2,
          'guy': 2,
          'woman': 2,
          'biggest': 2,
          'heart': 2,
          'concentration': 2,
          'camp': 2,
          'ni': 2,
          'son': 2,
          'let': 1,
          'following': 1,
          'quirks': 1,
          'review': 1,
          'fool': 1,
          'believing': 1,
          'anything': 1,
          'ultimate': 1,
          'labour': 1,
          'nbut': 1,
          'one': 1,
          'humour': 1,
          'im': 1,
          'ugly': 1,
          'looking': 1,
          'man': 1,
          'obnoxious': 1,
          'laugh': 1,
          'havent': 1,
          'amounted': 1,
          'except': 1,
          'working': 1,
          'finer': 1,
          'intricacies': 1,
          'waitering': 1,
          'lucky': 1,
          'sort': 1,
          'especially': 1,
          'strips': 1,
          'away': 1,
          'venner': 1,
          'superficiality': 1,
          'find': 1,
          'new': 1,
          'age': 1,
          'sensitive': 1,
          'entire': 1,
          'world': 1,
          'underneath': 1,
          'jew': 1,
          'nthe': 1,
          'nazis': 1,
          'put': 1,
          'matters': 1,
          'makes': 1,
          'nmy': 1,
          'ability': 1,
          'entertain': 1,
          'somehow': 1,
          'convinces': 1,
          'living': 1,
          'somewhat': 1,
          'get': 1,
          'shot': 1,
          'efforts': 1,
          'hey': 1,
          'thing': 1,
          'jove': 1,
          'give': 1,
          'crap': 1,
          'nby': 1,
          'far': 1,
          'decade': 1,
          'well': 1,
          'deserves': 1,
          'every': 1,
          'nomination': 1,
          'award': 1,
          'achieved': 1,
          'nwell': 1,
          'done': 1,
          'film': 1,
          'directors': 1,
          'actors': 1,
          'like': 1,
          'npos': 1}),
 Counter({'right': 11,
          'gavins': 7,
          'life': 5,
          'getting': 4,
          'movie': 4,
          'film': 4,
          'ngetting': 4,
          'gavin': 4,
          'nthe': 3,
          'ngavin': 3,
          'character': 3,
          'ngavins': 3,
          'performance': 3,
          'also': 3,
          'far': 2,
          'virginity': 2,
          'kleiser': 2,
          'us': 2,
          'thanks': 2,
          'memorable': 2,
          'shy': 2,
          'home': 2,
          'parents': 2,
          'salon': 2,
          'single': 2,
          'beauty': 2,
          'woman': 2,
          'joan': 2,
          'redgrave': 2,
          'rich': 2,
          'simple': 2,
          'find': 2,
          'seems': 2,
          'limited': 2,
          'quite': 2,
          'part': 2,
          'minnie': 2,
          'great': 2,
          'mother': 2,
          'jane': 2,
          'two': 2,
          'meals': 2,
          'cry': 1,
          'teenage': 1,
          'sex': 1,
          'comedy': 1,
          'might': 1,
          'expect': 1,
          'summer': 1,
          'male': 1,
          'directed': 1,
          'randal': 1,
          'brought': 1,
          'bubblegum': 1,
          'classics': 1,
          'grease': 1,
          'blue': 1,
          'lagoon': 1,
          'nbut': 1,
          'kleisers': 1,
          'surprisingly': 1,
          'good': 1,
          'direction': 1,
          'intelligent': 1,
          'script': 1,
          'pleasantly': 1,
          'quiet': 1,
          'moving': 1,
          'filmone': 1,
          'geared': 1,
          'strictly': 1,
          'toward': 1,
          'sophisticated': 1,
          'adult': 1,
          'audience': 1,
          'stars': 1,
          'jesse': 1,
          'birdsall': 1,
          'emily': 1,
          'lloyds': 1,
          'boyfriend': 1,
          'wish': 1,
          'painfully': 1,
          '31yearold': 1,
          'hairdresser': 1,
          'lives': 1,
          'whogaspis': 1,
          'still': 1,
          'virgin': 1,
          'problem': 1,
          'whatsoever': 1,
          'making': 1,
          'small': 1,
          'talk': 1,
          'elderly': 1,
          'women': 1,
          'clamor': 1,
          'services': 1,
          'hair': 1,
          'expose': 1,
          '30yearold': 1,
          'hes': 1,
          'mess': 1,
          'nmuch': 1,
          'surprise': 1,
          'finally': 1,
          'brings': 1,
          'shell': 1,
          'robs': 1,
          'lynn': 1,
          'married': 1,
          'lonely': 1,
          '45yearold': 1,
          'story': 1,
          'awkward': 1,
          'haphazard': 1,
          'efforts': 1,
          'get': 1,
          'fulfill': 1,
          'one': 1,
          'rare': 1,
          'movies': 1,
          'devotes': 1,
          'entirely': 1,
          'indepth': 1,
          'development': 1,
          'selfconscious': 1,
          'voiceover': 1,
          'narration': 1,
          'experiences': 1,
          'firmly': 1,
          'thrusts': 1,
          'psyche': 1,
          'nwe': 1,
          'observe': 1,
          'fascinating': 1,
          'metamorphosis': 1,
          'passive': 1,
          'introversion': 1,
          'assertive': 1,
          'selfconfident': 1,
          'maturity': 1,
          'nbirdsalls': 1,
          'superb': 1,
          'understated': 1,
          'real': 1,
          'backbone': 1,
          'convincing': 1,
          'authentic': 1,
          'throughout': 1,
          'charm': 1,
          'lies': 1,
          'wide': 1,
          'array': 1,
          'people': 1,
          'inhabit': 1,
          'invade': 1,
          'ndespite': 1,
          'screen': 1,
          'time': 1,
          'makes': 1,
          'splash': 1,
          'middleaged': 1,
          'seducer': 1,
          'nfor': 1,
          'supporting': 1,
          'unusually': 1,
          'impressively': 1,
          'complex': 1,
          'large': 1,
          'redgraves': 1,
          'magnificent': 1,
          'pursued': 1,
          'perhaps': 1,
          'plagued': 1,
          'totally': 1,
          'neurotic': 1,
          'daughter': 1,
          'aristocrat': 1,
          'nafter': 1,
          'meet': 1,
          'party': 1,
          'takes': 1,
          'pleasure': 1,
          'disrupting': 1,
          'safe': 1,
          'nhelena': 1,
          'bonham': 1,
          'carter': 1,
          'delightfully': 1,
          'pathetic': 1,
          'kooky': 1,
          'role': 1,
          'sir': 1,
          'john': 1,
          'gielgud': 1,
          'tongue': 1,
          'cheek': 1,
          'embodies': 1,
          'height': 1,
          'arrogance': 1,
          'father': 1,
          'eventual': 1,
          'loveinterest': 1,
          'jenny': 1,
          'adorable': 1,
          'twentyyearold': 1,
          'assists': 1,
          'london': 1,
          'stage': 1,
          'actress': 1,
          'horrocks': 1,
          'fine': 1,
          'yields': 1,
          'touchingly': 1,
          'sweet': 1,
          'npeter': 1,
          'cook': 1,
          'british': 1,
          'satirist': 1,
          'appears': 1,
          'briefly': 1,
          'uptight': 1,
          'employer': 1,
          'scenes': 1,
          'treat': 1,
          'overprotective': 1,
          'pat': 1,
          'heywood': 1,
          'even': 1,
          'woody': 1,
          'allen': 1,
          'would': 1,
          'overbearing': 1,
          'almost': 1,
          'steals': 1,
          'nher': 1,
          'activities': 1,
          'treating': 1,
          'like': 1,
          '10yearold': 1,
          'preparing': 1,
          'exotic': 1,
          'inedible': 1,
          'scalding': 1,
          'hot': 1,
          'curry': 1,
          'baked': 1,
          'chicken': 1,
          'chocolate': 1,
          'sauce': 1,
          'fathers': 1,
          'attempts': 1,
          'avoid': 1,
          'eating': 1,
          'extremely': 1,
          'amusing': 1,
          'wellcrafted': 1,
          'except': 1,
          'minor': 1,
          'shortcomings': 1,
          'nfirst': 1,
          '15': 1,
          'minutes': 1,
          'long': 1,
          'consequently': 1,
          'loses': 1,
          'momentum': 1,
          'times': 1,
          'nsecond': 1,
          'includes': 1,
          'altogether': 1,
          'extraneous': 1,
          'subplot': 1,
          'domestic': 1,
          'problems': 1,
          'best': 1,
          'friend': 1,
          'harry': 1,
          'unfaithful': 1,
          'lover': 1,
          'winthrop': 1,
          'noverall': 1,
          'however': 1,
          'humor': 1,
          'depth': 1,
          'sophistication': 1,
          'outstanding': 1,
          'acting': 1,
          'ndirector': 1,
          'screenwriter': 1,
          'elizabeth': 1,
          'howard': 1,
          'adapting': 1,
          'highly': 1,
          'acclaimed': 1,
          'novel': 1,
          'deserve': 1,
          'praise': 1,
          'finding': 1,
          'tone': 1,
          'tale': 1,
          'growth': 1,
          'maturation': 1,
          'selfdiscovery': 1,
          'npos': 1}),
 Counter({'mystery': 6,
          'usual': 4,
          'crime': 4,
          'movies': 4,
          'soze': 4,
          'name': 4,
          'movie': 4,
          'nthe': 3,
          'suspects': 3,
          'story': 3,
          'nits': 3,
          'keyser': 3,
          'criminals': 3,
          'police': 3,
          'intelligent': 2,
          'upandcoming': 2,
          'director': 2,
          'bryan': 2,
          'singer': 2,
          'one': 2,
          'end': 2,
          'watch': 2,
          'scenes': 2,
          'new': 2,
          'get': 2,
          'times': 2,
          'good': 2,
          'also': 2,
          'brought': 2,
          'lineup': 2,
          'baldwin': 2,
          'byrne': 2,
          'kevin': 2,
          'spacey': 2,
          'supporting': 2,
          'actor': 2,
          'ever': 2,
          'exist': 2,
          'kris': 2,
          'kross': 2,
          'palminteri': 2,
          'five': 2,
          'stealing': 2,
          'drugs': 2,
          'matter': 1,
          'suspect': 1,
          'isnt': 1,
          'action': 1,
          'thriller': 1,
          'everything': 1,
          'revealed': 1,
          'rapidfire': 1,
          'immediately': 1,
          'want': 1,
          'rewind': 1,
          'earlier': 1,
          'take': 1,
          'light': 1,
          'nplot': 1,
          'twists': 1,
          'agogo': 1,
          'gave': 1,
          'trying': 1,
          'figure': 1,
          'awhile': 1,
          'sat': 1,
          'back': 1,
          'waited': 1,
          'reveal': 1,
          'nkeyser': 1,
          'youll': 1,
          'hear': 1,
          'least': 1,
          'hundred': 1,
          'reason': 1,
          'mysterious': 1,
          'possibly': 1,
          'even': 1,
          'mythical': 1,
          'boss': 1,
          'sums': 1,
          'latin': 1,
          'means': 1,
          'maybe': 1,
          'shouldnt': 1,
          'bought': 1,
          'foreignlanguage': 1,
          'dictionary': 1,
          'company': 1,
          'makes': 1,
          '99cent': 1,
          'encyclopedias': 1,
          'sold': 1,
          'supermarkets': 1,
          'nat': 1,
          'opening': 1,
          'group': 1,
          'known': 1,
          'including': 1,
          'mcmanus': 1,
          'stephen': 1,
          'keaton': 1,
          'gabriel': 1,
          'fenster': 1,
          'benicio': 1,
          'del': 1,
          'toro': 1,
          'buckney': 1,
          'pollack': 1,
          'verbal': 1,
          'winner': 1,
          'best': 1,
          'academy': 1,
          'awardsymbol': 1,
          '153': 1,
          'f': 1,
          'roman': 1,
          '10': 1,
          'h': 1,
          'performance': 1,
          'nverbal': 1,
          'sonamed': 1,
          'frequently': 1,
          'rambles': 1,
          'anything': 1,
          'nothing': 1,
          'nhe': 1,
          'earns': 1,
          'narrator': 1,
          'spouting': 1,
          'memorable': 1,
          'lines': 1,
          'like': 1,
          'greatest': 1,
          'trick': 1,
          'devil': 1,
          'pulled': 1,
          'convincing': 1,
          'world': 1,
          'didnt': 1,
          'although': 1,
          'obviously': 1,
          'else': 1,
          'could': 1,
          'explain': 1,
          'comeback': 1,
          '1996': 1,
          'interrogated': 1,
          'detective': 1,
          'chazz': 1,
          'multiple': 1,
          'zs': 1,
          'okay': 1,
          'book': 1,
          'nwe': 1,
          'see': 1,
          'unfold': 1,
          'retells': 1,
          'felons': 1,
          'upon': 1,
          'released': 1,
          'revenge': 1,
          'exposing': 1,
          'corrupt': 1,
          'taxi': 1,
          'service': 1,
          'whereby': 1,
          'elite': 1,
          'pay': 1,
          'smuggled': 1,
          'town': 1,
          'cop': 1,
          'cars': 1,
          'money': 1,
          'car': 1,
          'definite': 1,
          'case': 1,
          'male': 1,
          'bonding': 1,
          'later': 1,
          'find': 1,
          'together': 1,
          'unseen': 1,
          'sends': 1,
          'minion': 1,
          'offer': 1,
          'cant': 1,
          'refuse': 1,
          'nnamely': 1,
          'destroy': 1,
          'sozes': 1,
          'main': 1,
          'competitors': 1,
          'organized': 1,
          'infiltrating': 1,
          'ship': 1,
          'shooting': 1,
          'bunch': 1,
          'people': 1,
          'burning': 1,
          '91': 1,
          'million': 1,
          'cash': 1,
          'nspacey': 1,
          'terrific': 1,
          'job': 1,
          'bringing': 1,
          'seemingly': 1,
          'unintelligent': 1,
          'cripple': 1,
          'character': 1,
          'life': 1,
          'rest': 1,
          'make': 1,
          'cast': 1,
          'deftly': 1,
          'mixes': 1,
          'violence': 1,
          'explosions': 1,
          'underlying': 1,
          'sense': 1,
          'suspense': 1,
          'keeping': 1,
          'viewer': 1,
          'guessing': 1,
          'still': 1,
          'leaving': 1,
          'details': 1,
          'open': 1,
          'scrutiny': 1,
          'discussion': 1,
          'ni': 1,
          'suppose': 1,
          'would': 1,
          'cleared': 1,
          'really': 1,
          'rewound': 1,
          'watched': 1,
          'instead': 1,
          'changing': 1,
          'channel': 1,
          'wondering': 1,
          'disbelief': 1,
          'hell': 1,
          'mtv': 1,
          'na': 1,
          'different': 1,
          'guess': 1,
          'may': 1,
          'turn': 1,
          '_murder_': 1,
          'video': 1,
          'comes': 1,
          'npos': 1}),
 Counter({'love': 8,
          'film': 8,
          'nthe': 7,
          'dangerous': 6,
          'beauty': 6,
          'venice': 6,
          'veronica': 6,
          'including': 5,
          'like': 4,
          'story': 4,
          'time': 4,
          'mccormack': 4,
          'marco': 4,
          'good': 4,
          'courtesan': 4,
          'n': 4,
          'women': 3,
          'society': 3,
          'dark': 3,
          'place': 3,
          'rest': 3,
          'nhowever': 3,
          'marcos': 3,
          'nshe': 3,
          'men': 3,
          'character': 3,
          'relationship': 3,
          'role': 3,
          'inquisition': 3,
          'never': 3,
          'performance': 3,
          'whose': 3,
          'nothing': 2,
          'nit': 2,
          'certainly': 2,
          'short': 2,
          'true': 2,
          'sexual': 2,
          'roles': 2,
          'pleasure': 2,
          'marshall': 2,
          'herskovitz': 2,
          'doesnt': 2,
          'could': 2,
          'lead': 2,
          'nat': 2,
          'republic': 2,
          'told': 2,
          'get': 2,
          'catherine': 2,
          'class': 2,
          'rufus': 2,
          'sewell': 2,
          'wealthy': 2,
          'period': 2,
          'married': 2,
          'power': 2,
          'nveronica': 2,
          'despite': 2,
          'charm': 2,
          'looks': 2,
          'heart': 2,
          'intelligent': 2,
          'chance': 2,
          'often': 2,
          'mother': 2,
          'bisset': 2,
          'quite': 2,
          'well': 2,
          'ways': 2,
          'multiple': 2,
          'platt': 2,
          'even': 2,
          'yet': 2,
          'small': 2,
          'kind': 2,
          'also': 2,
          'nhe': 2,
          'seems': 2,
          '1993': 2,
          'life': 2,
          'make': 2,
          'nherskovitz': 2,
          'strong': 2,
          'real': 2,
          'really': 1,
          'grandiose': 1,
          'soap': 1,
          'opera': 1,
          'set': 1,
          'circa': 1,
          '1583': 1,
          'beautifully': 1,
          'filmed': 1,
          'wonderfully': 1,
          'acted': 1,
          'entertaining': 1,
          'lacks': 1,
          'fundamental': 1,
          'seriousness': 1,
          'ndealing': 1,
          'themes': 1,
          'forbidden': 1,
          'religious': 1,
          'intolerance': 1,
          'subordination': 1,
          'freedom': 1,
          'sin': 1,
          'highcultured': 1,
          'still': 1,
          'feels': 1,
          'brightly': 1,
          'lit': 1,
          'fluff': 1,
          'director': 1,
          'want': 1,
          'follow': 1,
          'trail': 1,
          'opts': 1,
          'genial': 1,
          'livelier': 1,
          'relatively': 1,
          'shallow': 1,
          'interpretation': 1,
          'takes': 1,
          'renaissance': 1,
          'capital': 1,
          'europe': 1,
          'thrived': 1,
          'central': 1,
          'juncture': 1,
          'eastwest': 1,
          'commerce': 1,
          'almost': 1,
          'entirely': 1,
          'viewpoint': 1,
          'aristocracy': 1,
          'bourgeoisie': 1,
          'rarely': 1,
          'see': 1,
          'lived': 1,
          'abundance': 1,
          'detail': 1,
          'concerning': 1,
          'lives': 1,
          'livelihoods': 1,
          'upper': 1,
          'classes': 1,
          'hedonistic': 1,
          'lifestyles': 1,
          'constant': 1,
          'merriment': 1,
          'centers': 1,
          'franco': 1,
          'lower': 1,
          'woman': 1,
          'falls': 1,
          'venier': 1,
          'son': 1,
          'aristocratic': 1,
          'parents': 1,
          'jeroen': 1,
          'krabb': 1,
          'joanna': 1,
          'cassidy': 1,
          'nunfortunately': 1,
          'culture': 1,
          'view': 1,
          'marriage': 1,
          'act': 1,
          'rather': 1,
          'business': 1,
          'transaction': 1,
          'rich': 1,
          'families': 1,
          'sons': 1,
          'daughters': 1,
          'order': 1,
          'secure': 1,
          'wealth': 1,
          'ensure': 1,
          'outsiders': 1,
          'couldnt': 1,
          'outsider': 1,
          'nafter': 1,
          'affair': 1,
          'breaks': 1,
          'news': 1,
          'marry': 1,
          'beautiful': 1,
          'enter': 1,
          'world': 1,
          'albeit': 1,
          'wife': 1,
          'decides': 1,
          'become': 1,
          'welleducated': 1,
          'ravishing': 1,
          'sold': 1,
          'sexuality': 1,
          'privilege': 1,
          'wining': 1,
          'dining': 1,
          'elite': 1,
          'na': 1,
          'mere': 1,
          'prostitute': 1,
          'afforded': 1,
          'special': 1,
          'greatly': 1,
          'revered': 1,
          'respected': 1,
          'envied': 1,
          'one': 1,
          'point': 1,
          'mentions': 1,
          'rulers': 1,
          'obtain': 1,
          'political': 1,
          'advice': 1,
          'courtesans': 1,
          'lieutenants': 1,
          'goes': 1,
          'transformation': 1,
          'help': 1,
          'paola': 1,
          'jacqueline': 1,
          'famed': 1,
          'nonce': 1,
          'enters': 1,
          'lifestyle': 1,
          'finds': 1,
          'suits': 1,
          'allowed': 1,
          'read': 1,
          'books': 1,
          'wants': 1,
          'given': 1,
          'opportunity': 1,
          'publish': 1,
          'poetry': 1,
          'richest': 1,
          'powerful': 1,
          'throwing': 1,
          'feet': 1,
          'awestruck': 1,
          'ntheir': 1,
          'develops': 1,
          'playful': 1,
          'bantering': 1,
          'utilizing': 1,
          'newfound': 1,
          'constantly': 1,
          'rejecting': 1,
          'advances': 1,
          'nin': 1,
          'many': 1,
          'sad': 1,
          'unable': 1,
          'consumed': 1,
          'relationships': 1,
          'unwilling': 1,
          'man': 1,
          'based': 1,
          'factual': 1,
          'book': 1,
          'margaret': 1,
          'rosenthal': 1,
          'flows': 1,
          'along': 1,
          'smoothly': 1,
          'serenely': 1,
          'grand': 1,
          'canal': 1,
          'running': 1,
          'plot': 1,
          'lines': 1,
          'veronicas': 1,
          'adversarial': 1,
          'court': 1,
          'poet': 1,
          'oliver': 1,
          'obtaining': 1,
          'frances': 1,
          'military': 1,
          'assistance': 1,
          'venices': 1,
          'battle': 1,
          'turks': 1,
          'dreaded': 1,
          'shadow': 1,
          'plague': 1,
          'encroachment': 1,
          'spanish': 1,
          'confusing': 1,
          'overbearing': 1,
          'nmuch': 1,
          'films': 1,
          'success': 1,
          'due': 1,
          'glowing': 1,
          'nknown': 1,
          'chiefly': 1,
          'part': 1,
          'played': 1,
          'lover': 1,
          'murder': 1,
          'raised': 1,
          'mel': 1,
          'gibsons': 1,
          'ire': 1,
          'braveheart': 1,
          '1995': 1,
          'shows': 1,
          'gifts': 1,
          'inarguable': 1,
          'talent': 1,
          'leading': 1,
          'lady': 1,
          'exquisite': 1,
          'classical': 1,
          'would': 1,
          'treasured': 1,
          'witty': 1,
          'sensual': 1,
          'vulnerable': 1,
          'easily': 1,
          'transmits': 1,
          'single': 1,
          'flash': 1,
          'eyes': 1,
          'filled': 1,
          'earlier': 1,
          'month': 1,
          'city': 1,
          'assured': 1,
          'solid': 1,
          'hollywood': 1,
          'unusual': 1,
          'ray': 1,
          'liotta': 1,
          'perfectly': 1,
          'home': 1,
          'dramas': 1,
          'noliver': 1,
          'plays': 1,
          'variation': 1,
          'comic': 1,
          'relief': 1,
          'come': 1,
          'inhabit': 1,
          'second': 1,
          'skin': 1,
          'although': 1,
          'deals': 1,
          'cheap': 1,
          'blow': 1,
          'end': 1,
          'improbably': 1,
          'join': 1,
          'turn': 1,
          'bad': 1,
          'guy': 1,
          'nplatt': 1,
          'actor': 1,
          'hes': 1,
          'hard': 1,
          'hate': 1,
          'njacqueline': 1,
          'proves': 1,
          'every': 1,
          'bit': 1,
          'stirring': 1,
          'ever': 1,
          'fred': 1,
          'ward': 1,
          'turns': 1,
          'moving': 1,
          'uncle': 1,
          'herskovitzs': 1,
          'sophomore': 1,
          'directorial': 1,
          'effort': 1,
          'overlooked': 1,
          'jack': 1,
          'bear': 1,
          'npartnered': 1,
          'edward': 1,
          'zwick': 1,
          'spent': 1,
          'producer': 1,
          'television': 1,
          'thirtysomething': 1,
          'socalled': 1,
          'movies': 1,
          'legends': 1,
          'fall': 1,
          'nhis': 1,
          'directing': 1,
          'style': 1,
          'best': 1,
          'described': 1,
          'transparent': 1,
          'gets': 1,
          'way': 1,
          'discernible': 1,
          'flourish': 1,
          'particular': 1,
          'distinctions': 1,
          'approached': 1,
          'number': 1,
          'overdosing': 1,
          'aspect': 1,
          'wisely': 1,
          'avoids': 1,
          'contains': 1,
          'enough': 1,
          'bare': 1,
          'flesh': 1,
          'ribald': 1,
          'sex': 1,
          'appropriately': 1,
          'erotic': 1,
          'much': 1,
          'exploitative': 1,
          'aided': 1,
          'supporting': 1,
          'crew': 1,
          'luscious': 1,
          'photography': 1,
          'bojan': 1,
          'bazelli': 1,
          'previous': 1,
          'efforts': 1,
          'include': 1,
          'highlystylized': 1,
          'thriller': 1,
          'kalifornia': 1,
          'abel': 1,
          'ferraras': 1,
          'scifi': 1,
          'body': 1,
          'snatchers': 1,
          '1994': 1,
          'nbazelli': 1,
          'captures': 1,
          'bold': 1,
          'colors': 1,
          'brings': 1,
          'sixteenthcentury': 1,
          'wide': 1,
          'panoramic': 1,
          'shots': 1,
          'enhanced': 1,
          'digital': 1,
          'imagery': 1,
          'details': 1,
          'found': 1,
          'production': 1,
          'design': 1,
          'norman': 1,
          'garwood': 1,
          'brazil': 1,
          'princess': 1,
          'bride': 1,
          'costumes': 1,
          'gabriella': 1,
          'pescucci': 1,
          'age': 1,
          'innocence': 1,
          'problem': 1,
          'stick': 1,
          'nits': 1,
          'welltold': 1,
          'interesting': 1,
          'characters': 1,
          'easy': 1,
          'shrug': 1,
          'youve': 1,
          'left': 1,
          'theater': 1,
          'sequence': 1,
          'truly': 1,
          'indelible': 1,
          'pulled': 1,
          'front': 1,
          'hypocrisy': 1,
          'threatened': 1,
          'death': 1,
          'penalty': 1,
          'transgressions': 1,
          'comes': 1,
          'simply': 1,
          'melodramatic': 1,
          'conventional': 1,
          'tries': 1,
          'might': 1,
          'nailbiter': 1,
          'somehow': 1,
          'outcome': 1,
          'foregone': 1,
          'conclusion': 1,
          'carries': 1,
          'weight': 1,
          'potential': 1,
          'severity': 1,
          'subject': 1,
          'matter': 1,
          'npos': 1}),
 Counter({'breakdown': 7,
          'one': 6,
          'nit': 5,
          'jeff': 5,
          'man': 5,
          'plot': 4,
          'nthe': 4,
          'russell': 4,
          'movie': 4,
          'car': 3,
          'easy': 3,
          'doesnt': 3,
          'well': 3,
          'villains': 3,
          'ordinary': 3,
          'far': 2,
          'nso': 2,
          'nowhere': 2,
          'suspense': 2,
          'thriller': 2,
          'nkurt': 2,
          'amy': 2,
          'couple': 2,
          'brand': 2,
          'new': 2,
          'driver': 2,
          'later': 2,
          'red': 2,
          'njeff': 2,
          'cars': 2,
          'j': 2,
          'walsh': 2,
          'truck': 2,
          'town': 2,
          'diner': 2,
          'film': 2,
          'nthere': 2,
          'would': 2,
          'many': 2,
          'made': 2,
          'good': 2,
          'actors': 2,
          'acting': 2,
          'pursuing': 2,
          'action': 2,
          'hitchcock': 2,
          'like': 2,
          'imagine': 1,
          'scenario': 1,
          'family': 1,
          'members': 1,
          'scudding': 1,
          'long': 1,
          'excruciating': 1,
          'crosscountry': 1,
          'trips': 1,
          'city': 1,
          'deserted': 1,
          'rural': 1,
          'routes': 1,
          'trip': 1,
          'idyllic': 1,
          'abruptly': 1,
          'malfunctions': 1,
          'stranded': 1,
          'middle': 1,
          'situation': 1,
          'perfectly': 1,
          'plausible': 1,
          'panorama': 1,
          'musters': 1,
          'throbbing': 1,
          'skillfully': 1,
          'executed': 1,
          'tautness': 1,
          'cobble': 1,
          'distinct': 1,
          'gripping': 1,
          'nowadays': 1,
          'bungle': 1,
          'rudimentary': 1,
          'holes': 1,
          'cliches': 1,
          'derives': 1,
          'masterful': 1,
          'titillating': 1,
          'climax': 1,
          'finale': 1,
          'engrosses': 1,
          'viewer': 1,
          'total': 1,
          'absorption': 1,
          'somewhat': 1,
          'reminiscent': 1,
          '1988s': 1,
          'vanishing': 1,
          'kathleen': 1,
          'quinlan': 1,
          'respectively': 1,
          'play': 1,
          'taylor': 1,
          'massachusetts': 1,
          'en': 1,
          'route': 1,
          'california': 1,
          'job': 1,
          'nwhen': 1,
          'stop': 1,
          'gas': 1,
          'somewhere': 1,
          'arid': 1,
          'southwest': 1,
          'confronted': 1,
          'pugnacious': 1,
          'important': 1,
          'player': 1,
          'department': 1,
          'nminutes': 1,
          'strikingly': 1,
          'jeep': 1,
          'grand': 1,
          'cherokee': 1,
          'unexpectedly': 1,
          'stops': 1,
          'detect': 1,
          'problem': 1,
          'allows': 1,
          'take': 1,
          'ride': 1,
          'nt': 1,
          'heedful': 1,
          'convey': 1,
          'nearest': 1,
          'meet': 1,
          'local': 1,
          'facile': 1,
          'turn': 1,
          'pseudosuspenser': 1,
          'instead': 1,
          'opts': 1,
          'maximum': 1,
          'fervor': 1,
          'manages': 1,
          'restart': 1,
          'arrives': 1,
          'sight': 1,
          'ndisconcerted': 1,
          'coffee': 1,
          'shops': 1,
          'bartender': 1,
          'informs': 1,
          'search': 1,
          'wife': 1,
          'twenty': 1,
          'miles': 1,
          'trouble': 1,
          'arises': 1,
          'nand': 1,
          'shall': 1,
          'reveal': 1,
          'anything': 1,
          'else': 1,
          'since': 1,
          'spoiling': 1,
          'fun': 1,
          'whats': 1,
          'head': 1,
          'involving': 1,
          'tight': 1,
          'scenes': 1,
          'final': 1,
          'climactic': 1,
          'period': 1,
          'includes': 1,
          'magnificent': 1,
          'chase': 1,
          'three': 1,
          'huge': 1,
          'feeling': 1,
          'legs': 1,
          'pure': 1,
          'foam': 1,
          'pleasure': 1,
          'part': 1,
          'classic': 1,
          'confrontation': 1,
          'vs': 1,
          'evil': 1,
          'rooting': 1,
          'guys': 1,
          'case': 1,
          'topnotch': 1,
          'hollywood': 1,
          'overblow': 1,
          'gradually': 1,
          'gains': 1,
          'reliance': 1,
          'role': 1,
          'progresses': 1,
          'assume': 1,
          'alteration': 1,
          'letterperfect': 1,
          'nsuffice': 1,
          'say': 1,
          'undergoes': 1,
          'transformation': 1,
          'jolly': 1,
          'guy': 1,
          'frantically': 1,
          'loved': 1,
          'nnot': 1,
          'wellpaid': 1,
          'deliver': 1,
          'type': 1,
          'performances': 1,
          'nas': 1,
          'everyday': 1,
          'pulls': 1,
          'extremely': 1,
          'convincingly': 1,
          'also': 1,
          'surprised': 1,
          'rigorous': 1,
          'physicality': 1,
          'effectively': 1,
          'practices': 1,
          'almost': 1,
          'throughout': 1,
          'films': 1,
          '93': 1,
          'minutes': 1,
          'nalthough': 1,
          'blotted': 1,
          'portentous': 1,
          'sequences': 1,
          'done': 1,
          'yet': 1,
          'tightness': 1,
          'generated': 1,
          'subtle': 1,
          'circumstances': 1,
          'presented': 1,
          'nfaced': 1,
          'enigma': 1,
          'wifes': 1,
          'whereabouts': 1,
          'succeeds': 1,
          'conveying': 1,
          'us': 1,
          'realistic': 1,
          'territory': 1,
          'veritable': 1,
          'characters': 1,
          'including': 1,
          'cryptic': 1,
          'essence': 1,
          'make': 1,
          'nwhats': 1,
          'impressive': 1,
          'however': 1,
          'feature': 1,
          'debut': 1,
          'writerdirector': 1,
          'jonathan': 1,
          'mostow': 1,
          'nmostow': 1,
          'hitherto': 1,
          'directed': 1,
          'showtime': 1,
          'flight': 1,
          'black': 1,
          'angle': 1,
          'alleviates': 1,
          'contrivances': 1,
          'generics': 1,
          'script': 1,
          'gingerly': 1,
          'trajectory': 1,
          'efficiently': 1,
          'letting': 1,
          'tone': 1,
          'mood': 1,
          'story': 1,
          'generate': 1,
          'nailbiting': 1,
          'sought': 1,
          'affair': 1,
          'ncontrary': 1,
          'american': 1,
          'thrillers': 1,
          'rely': 1,
          'visual': 1,
          'flair': 1,
          'aesthetics': 1,
          'substance': 1,
          'nafter': 1,
          'gain': 1,
          'vast': 1,
          'notoriety': 1,
          'arent': 1,
          'routine': 1,
          'outofthisworld': 1,
          'idiosyncratic': 1,
          'psychos': 1,
          'harming': 1,
          'particular': 1,
          'objective': 1,
          'baddies': 1,
          'acted': 1,
          'normal': 1,
          'seemingly': 1,
          'inoffensive': 1,
          'townspeople': 1,
          'beneath': 1,
          'trustworthy': 1,
          'layer': 1,
          'conduct': 1,
          'amoral': 1,
          'business': 1,
          'corruption': 1,
          'murder': 1,
          'smartly': 1,
          'portrays': 1,
          'men': 1,
          'loathsome': 1,
          'rednecks': 1,
          'things': 1,
          'world': 1,
          'becoming': 1,
          'rather': 1,
          'root': 1,
          'jon': 1,
          'voight': 1,
          'anaconda': 1,
          'todays': 1,
          'movies': 1,
          'nworth': 1,
          'special': 1,
          'mentioning': 1,
          'previously': 1,
          'worked': 1,
          'kurt': 1,
          'executive': 1,
          'decision': 1,
          'leader': 1,
          'gang': 1,
          'renders': 1,
          'deliciously': 1,
          'wicked': 1,
          'performance': 1,
          'temporarily': 1,
          'stepping': 1,
          'minor': 1,
          'roles': 1,
          'known': 1,
          'nalfred': 1,
          'used': 1,
          'suspenseand': 1,
          'stimulate': 1,
          'way': 1,
          'aiding': 1,
          'audiences': 1,
          'fascination': 1,
          'stories': 1,
          'slowly': 1,
          'realizing': 1,
          'mans': 1,
          'biggest': 1,
          'fears': 1,
          'nbreakdown': 1,
          'yields': 1,
          'exactly': 1,
          'magnificently': 1,
          'taps': 1,
          'psyche': 1,
          'looking': 1,
          'sort': 1,
          'superhero': 1,
          'ndespite': 1,
          'two': 1,
          'iffy': 1,
          'moments': 1,
          'even': 1,
          'think': 1,
          'approve': 1,
          'n': 1,
          '1': 1,
          '33': 1,
          'npos': 1}),
 Counter({'film': 6,
          'nthe': 6,
          'sex': 5,
          'lies': 4,
          'videotape': 4,
          'probably': 4,
          'macdowell': 3,
          'john': 3,
          'even': 3,
          'best': 3,
          'would': 3,
          'one': 3,
          'cannes': 2,
          'independent': 2,
          'films': 2,
          'four': 2,
          'characters': 2,
          'nann': 2,
          'gallagher': 2,
          'cynthia': 2,
          'graham': 2,
          'comes': 2,
          'clearly': 2,
          'picture': 2,
          'since': 2,
          'come': 2,
          'well': 2,
          'final': 2,
          'steve': 1,
          'soderberghs': 1,
          'grand': 1,
          'prize': 1,
          'festival': 1,
          '1989': 1,
          'arguably': 1,
          'began': 1,
          'resurgence': 1,
          'nmade': 1,
          'shoestring': 1,
          'budget': 1,
          '1': 1,
          '2': 1,
          'million': 1,
          'relatively': 1,
          'unknown': 1,
          'actors': 1,
          'provocative': 1,
          'thoroughly': 1,
          'original': 1,
          'drama': 1,
          'mostly': 1,
          'focuses': 1,
          'central': 1,
          'late': 1,
          '20searly': 1,
          '30s': 1,
          'andie': 1,
          'unfulfilled': 1,
          'housewife': 1,
          'married': 1,
          'peter': 1,
          'insensitive': 1,
          'lawyer': 1,
          'unbeknownst': 1,
          'affair': 1,
          'younger': 1,
          'sister': 1,
          'laura': 1,
          'san': 1,
          'giacomo': 1,
          'ncomplicating': 1,
          'matters': 1,
          'worse': 1,
          'james': 1,
          'spader': 1,
          'actor': 1,
          'johns': 1,
          'old': 1,
          'college': 1,
          'buddy': 1,
          'stay': 1,
          'house': 1,
          'absolutely': 1,
          'though': 1,
          'stated': 1,
          'little': 1,
          'interest': 1,
          'nthat': 1,
          'setup': 1,
          'last': 1,
          'hour': 1,
          'entitled': 1,
          'keep': 1,
          'rest': 1,
          'story': 1,
          'developments': 1,
          'bay': 1,
          'genuine': 1,
          'surprise': 1,
          'ndirector': 1,
          'steven': 1,
          'soderbergh': 1,
          'proven': 1,
          'wildly': 1,
          'offbeat': 1,
          'filmmaker': 1,
          'ranging': 1,
          'mainstream': 1,
          '1998s': 1,
          'sight': 1,
          'downright': 1,
          'kafkaesque': 1,
          '1997s': 1,
          'schizopolis': 1,
          'nhe': 1,
          'type': 1,
          'director': 1,
          'obviously': 1,
          'takes': 1,
          'lot': 1,
          'chances': 1,
          'believes': 1,
          'work': 1,
          'confident': 1,
          'maybe': 1,
          'date': 1,
          'performances': 1,
          'superb': 1,
          'leads': 1,
          'stands': 1,
          'main': 1,
          'character': 1,
          'nshe': 1,
          'always': 1,
          'winning': 1,
          'actress': 1,
          'threedimensional': 1,
          'role': 1,
          'close': 1,
          'second': 1,
          'altmans': 1,
          '1993': 1,
          'mosaic': 1,
          'short': 1,
          'cuts': 1,
          'parts': 1,
          'perfectly': 1,
          'cast': 1,
          'spaders': 1,
          'ominous': 1,
          'gallaghers': 1,
          'selfinvolved': 1,
          'giacomos': 1,
          'outspoken': 1,
          'act': 1,
          'especially': 1,
          'right': 1,
          'left': 1,
          'field': 1,
          'turns': 1,
          'shocking': 1,
          'oddly': 1,
          'touching': 1,
          'criminal': 1,
          'give': 1,
          'away': 1,
          'secrets': 1,
          'nsuffice': 1,
          'say': 1,
          'powerful': 1,
          'sequence': 1,
          'ann': 1,
          'able': 1,
          'somewhat': 1,
          'shell': 1,
          'learns': 1,
          'valuable': 1,
          'lesson': 1,
          'honesty': 1,
          'deception': 1,
          'fault': 1,
          'however': 1,
          'almost': 1,
          'emotionally': 1,
          'cold': 1,
          'isolated': 1,
          'another': 1,
          'often': 1,
          'unlikable': 1,
          'nif': 1,
          'extra': 1,
          'scenes': 1,
          'helped': 1,
          'relationship': 1,
          'isnt': 1,
          'quite': 1,
          'explored': 1,
          'liked': 1,
          'n': 1,
          'although': 1,
          'minorly': 1,
          'flawed': 1,
          'still': 1,
          'easily': 1,
          'brave': 1,
          'adult': 1,
          'motion': 1,
          'far': 1,
          'mature': 1,
          'honest': 1,
          'subject': 1,
          'matter': 1,
          'usual': 1,
          'nsoderbergh': 1,
          'knew': 1,
          'making': 1,
          'product': 1,
          'certainly': 1,
          'proves': 1,
          'npos': 1}),
 Counter({'film': 10,
          'mm': 9,
          'welles': 6,
          '8': 6,
          'snuff': 5,
          'private': 4,
          'detective': 4,
          'violence': 4,
          'man': 4,
          'n8': 4,
          'nhe': 4,
          'world': 3,
          'pornographers': 3,
          'one': 3,
          'long': 3,
          'movie': 3,
          'real': 3,
          'see': 3,
          'films': 3,
          'slowly': 3,
          'character': 3,
          'seems': 3,
          'fact': 3,
          'tom': 2,
          'underground': 2,
          'perverse': 2,
          'movies': 2,
          'time': 2,
          'present': 2,
          'sexual': 2,
          'nit': 2,
          'get': 2,
          'nthis': 2,
          'strong': 2,
          'however': 2,
          'intelligent': 2,
          'thriller': 2,
          'cage': 2,
          'couple': 2,
          'phoenix': 2,
          'despite': 2,
          'nthe': 2,
          'really': 2,
          'evil': 2,
          'unpredictable': 2,
          'schumacher': 2,
          'batman': 2,
          'responsible': 2,
          'horror': 2,
          'falling': 2,
          'certainly': 2,
          'minor': 2,
          'walker': 2,
          'seven': 2,
          'kill': 2,
          'end': 2,
          'rating': 2,
          'give': 2,
          'none': 2,
          'would': 2,
          'victims': 2,
          'mother': 2,
          'scene': 2,
          'scenes': 2,
          'like': 2,
          'synopsis': 1,
          'hired': 1
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-25-0ae20e033049> in <module>
----> 1 pprint(bag_of_words)

~\Anaconda3\lib\pprint.py in pprint(object, stream, indent, width, depth, compact)
     51         stream=stream, indent=indent, width=width, depth=depth,
     52         compact=compact)
---> 53     printer.pprint(object)
     54 
     55 def pformat(object, indent=1, width=80, depth=None, *, compact=False):

~\Anaconda3\lib\pprint.py in pprint(self, object)
    137 
    138     def pprint(self, object):
--> 139         self._format(object, self._stream, 0, 0, {}, 0)
    140         self._stream.write("\n")
    141 

~\Anaconda3\lib\pprint.py in _format(self, object, stream, indent, allowance, context, level)
    165             if p is not None:
    166                 context[objid] = 1
--> 167                 p(self, object, stream, indent, allowance, context, level + 1)
    168                 del context[objid]
    169                 return

~\Anaconda3\lib\pprint.py in _pprint_list(self, object, stream, indent, allowance, context, level)
    208         stream.write('[')
    209         self._format_items(object, stream, indent, allowance + 1,
--> 210                            context, level)
    211         stream.write(']')
    212 

~\Anaconda3\lib\pprint.py in _format_items(self, items, stream, indent, allowance, context, level)
    387             self._format(ent, stream, indent,
    388                          allowance if last else 1,
--> 389                          context, level)
    390 
    391     def _repr(self, object, context, level):

~\Anaconda3\lib\pprint.py in _format(self, object, stream, indent, allowance, context, level)
    165             if p is not None:
    166                 context[objid] = 1
--> 167                 p(self, object, stream, indent, allowance, context, level + 1)
    168                 del context[objid]
    169                 return

~\Anaconda3\lib\pprint.py in _pprint_counter(self, object, stream, indent, allowance, context, level)
    429         self._format_dict_items(items, stream,
    430                                 indent + len(cls.__name__) + 1, allowance + 2,
--> 431                                 context, level)
    432         stream.write('})')
    433 

~\Anaconda3\lib\pprint.py in _format_dict_items(self, items, stream, indent, allowance, context, level)
    344             self._format(ent, stream, indent + len(rep) + 2,
    345                          allowance if last else 1,
--> 346                          context, level)
    347             if not last:
    348                 write(delimnl)

~\Anaconda3\lib\pprint.py in _format(self, object, stream, indent, allowance, context, level)
    174                 del context[objid]
    175                 return
--> 176         stream.write(rep)
    177 
    178     _dispatch = {}

~\Anaconda3\lib\site-packages\ipykernel\iostream.py in write(self, string)
    398             is_child = (not self._is_master_process())
    399             # only touch the buffer in the IO thread to avoid races
--> 400             self.pub_thread.schedule(lambda : self._buffer.write(string))
    401             if is_child:
    402                 # newlines imply flush in subprocesses

~\Anaconda3\lib\site-packages\ipykernel\iostream.py in schedule(self, f)
    201             self._events.append(f)
    202             # wake event thread (message content is ignored)
--> 203             self._event_pipe.send(b'')
    204         else:
    205             f()

~\Anaconda3\lib\site-packages\zmq\sugar\socket.py in send(self, data, flags, copy, track, routing_id, group)
    393                                  copy_threshold=self.copy_threshold)
    394             data.group = group
--> 395         return super(Socket, self).send(data, flags=flags, copy=copy, track=track)
    396 
    397     def send_multipart(self, msg_parts, flags=0, copy=True, track=False, **kwargs):

zmq/backend/cython/socket.pyx in zmq.backend.cython.socket.Socket.send()

zmq/backend/cython/socket.pyx in zmq.backend.cython.socket.Socket.send()

zmq/backend/cython/socket.pyx in zmq.backend.cython.socket._send_copy()

~\Anaconda3\lib\site-packages\zmq\backend\cython\checkrc.pxd in zmq.backend.cython.checkrc._check_rc()

KeyboardInterrupt: 
In [ ]:
def normalize_df(df):
    names = df.columns 
    df["total"] = df.sum(axis = 1)
    for name in names: 
        df[name] = df[name]/df["total"]
    return(df)
In [ ]:
large_df = pd.DataFrame.from_records(bag_fo)
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
movies_df
In [ ]: